diff --git a/.eslintrc.json b/.eslintrc.json index 3020a913..79db27c1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -116,7 +116,6 @@ "no-label-var": "error", "no-restricted-globals": "error", "no-undef-init": "error", - "no-undefined": "error", "block-spacing": "error", "brace-style": ["error", "1tbs", { "allowSingleLine": true }], "comma-style": "error", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e63809aa..fcb47c5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,31 +2,29 @@ name: Artifact on: push: - branches: [ master, 'Release-*' ] tags: [ 'v*' ] release: types: [released] - # Triggers the workflow only when merging pull request to the branches. - pull_request: - types: [closed] - branches: [ master, 'Release-*' ] - # Allows you to run this workflow manually from the Actions tab workflow_dispatch: - + inputs: + version: + description: 'Release version' + required: true + jobs: build: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 18.x - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-npm-packages with: path: node_modules @@ -37,7 +35,7 @@ jobs: run: npm ci --legacy-peer-deps - name: Cache build frontend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-frontend with: path: frontend @@ -47,7 +45,7 @@ jobs: run: npm run buildfrontend - name: Cache build backend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-backend with: path: backend @@ -61,26 +59,32 @@ jobs: needs: build steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache build frontend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-frontend with: path: frontend key: ${{ runner.os }}-frontend-${{ github.sha }} - name: Cache build backend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-backend with: path: backend key: ${{ runner.os }}-backend-${{ github.sha }} - name: Compress files - run: tar -czf /tmp/rtlbuild.tar.gz frontend backend rtl.js package.json package-lock.json - - - uses: actions/upload-artifact@v2 + env: + VERSION: "${{ github.event.release.tag_name || github.event.inputs.version || '' }}" + run: | + tar -czf /tmp/rtl-build-$VERSION.tar.gz frontend backend rtl.js package.json package-lock.json + zip -r /tmp/rtl-build-$VERSION.zip frontend backend rtl.js package.json package-lock.json + + - uses: actions/upload-artifact@v3 with: - name: rtl-build-${{ github.event.release.tag_name }} - path: /tmp/rtlbuild.tar.gz + name: rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }} + path: | + /tmp/rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }}.tar.gz + /tmp/rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }}.zip diff --git a/backend/controllers/cln/invoices.js b/backend/controllers/cln/invoices.js index 2f26a949..0ff81ff7 100644 --- a/backend/controllers/cln/invoices.js +++ b/backend/controllers/cln/invoices.js @@ -10,11 +10,11 @@ export const deleteExpiredInvoice = (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/delexpiredinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/autoclean-once'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoices Deleted', data: body }); - res.status(204).json({ status: 'Invoice Deleted Successfully' }); + res.status(201).json({ status: 'Cleaned Invoices: ' + body.autoclean.expiredinvoices.cleaned + ', Uncleaned Invoices: ' + body.autoclean.expiredinvoices.uncleaned }); }).catch((errRes) => { const err = common.handleError(errRes, 'Invoice', 'Delete Invoice Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/backend/controllers/cln/offers.js b/backend/controllers/cln/offers.js index f427d538..13080bd9 100644 --- a/backend/controllers/cln/offers.js +++ b/backend/controllers/cln/offers.js @@ -83,7 +83,7 @@ export const disableOffer = (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/disableOffer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableoffer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Disabled', data: body }); diff --git a/backend/controllers/eclair/channels.js b/backend/controllers/eclair/channels.js index e4bbfca8..7b883de7 100644 --- a/backend/controllers/eclair/channels.js +++ b/backend/controllers/eclair/channels.js @@ -28,7 +28,7 @@ export const simplifyAllChannels = (selNode, channels) => { }); channelNodeIds = channelNodeIds.substring(1); options.url = selNode.settings.lnServerUrl + '/nodes'; - options.form = { nodeIds: channelNodeIds }; + options.form = channelNodeIds; logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Node Ids to find alias', data: channelNodeIds }); return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Filtered Nodes Received', data: nodes }); diff --git a/backend/controllers/lnd/channels.js b/backend/controllers/lnd/channels.js index 66d091e0..5f35b7ad 100644 --- a/backend/controllers/lnd/channels.js +++ b/backend/controllers/lnd/channels.js @@ -155,47 +155,6 @@ export const postChannel = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }; -export const postTransactions = (req, res, next) => { - const { paymentReq, paymentAmount, feeLimit, outgoingChannel, allowSelfPayment, lastHopPubkey } = req.body; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sending Payment..' }); - 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/channels/transaction-stream'; - options.form = { payment_request: paymentReq }; - if (paymentAmount) { - options.form.amt = paymentAmount; - } - if (feeLimit) { - options.form.fee_limit = feeLimit; - } - if (outgoingChannel) { - options.form.outgoing_chan_id = outgoingChannel; - } - if (allowSelfPayment) { - options.form.allow_self_payment = allowSelfPayment; - } - if (lastHopPubkey) { - options.form.last_hop_pubkey = Buffer.from(lastHopPubkey, 'hex').toString('base64'); - } - options.form = JSON.stringify(options.form); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Send Payment Options', data: options.form }); - request.post(options).then((body) => { - body = body.result ? body.result : body; - if (body.payment_error) { - const err = common.handleError(body.payment_error, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - } - else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Payment Sent', data: body }); - res.status(201).json(body); - } - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); -}; export const closeChannel = (req, res, next) => { try { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closing Channel..' }); diff --git a/backend/controllers/lnd/payments.js b/backend/controllers/lnd/payments.js index 208a1883..56814bf5 100644 --- a/backend/controllers/lnd/payments.js +++ b/backend/controllers/lnd/payments.js @@ -97,3 +97,33 @@ export const paymentLookup = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }; +export const sendPayment = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Payment..' }); + 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/send'; + if (req.body.last_hop_pubkey) { + 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; + 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) => { + 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') { + const err = common.handleError(common.titleCase(body.result.failure_reason.replace(/_/g, ' ').replace('FAILURE REASON ', '')), 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + if (body.result.status === 'SUCCEEDED') { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent', data: body.result }); + res.status(201).json(body.result); + } + }).catch((errRes) => { + const err = common.handleError(errRes, 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; diff --git a/backend/routes/lnd/channels.js b/backend/routes/lnd/channels.js index 6bc1aa7f..27d64b93 100644 --- a/backend/routes/lnd/channels.js +++ b/backend/routes/lnd/channels.js @@ -1,13 +1,12 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, postTransactions, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; +import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; const router = Router(); router.get('/', isAuthenticated, getAllChannels); router.get('/pending', isAuthenticated, getPendingChannels); router.get('/closed', isAuthenticated, getClosedChannels); router.post('/', isAuthenticated, postChannel); -router.post('/transactions', isAuthenticated, postTransactions); router.delete('/:channelPoint', isAuthenticated, closeChannel); router.post('/chanPolicy', isAuthenticated, postChanPolicy); export default router; diff --git a/backend/routes/lnd/payments.js b/backend/routes/lnd/payments.js index 9a496d38..6cb156a4 100644 --- a/backend/routes/lnd/payments.js +++ b/backend/routes/lnd/payments.js @@ -1,11 +1,12 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup } from '../../controllers/lnd/payments.js'; +import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup, sendPayment } from '../../controllers/lnd/payments.js'; const router = Router(); router.get('/', isAuthenticated, getPayments); router.get('/alltransactions', isAuthenticated, getAllLightningTransactions); router.get('/decode/:payRequest', isAuthenticated, decodePayment); router.get('/lookup/:paymentHash', isAuthenticated, paymentLookup); router.post('/', isAuthenticated, decodePayments); +router.post('/send', isAuthenticated, sendPayment); export default router; diff --git a/backend/utils/common.js b/backend/utils/common.js index 797bf8b5..bfc11e9e 100644 --- a/backend/utils/common.js +++ b/backend/utils/common.js @@ -395,7 +395,8 @@ export class CommonService { } }); }; - this.readCookie = () => { + this.readCookie = (config) => { + this.appConfig.SSO = config.SSO; const exists = fs.existsSync(this.appConfig.SSO.rtlCookiePath); if (exists) { try { diff --git a/backend/utils/config.js b/backend/utils/config.js index c34f8a23..8267cc30 100644 --- a/backend/utils/config.js +++ b/backend/utils/config.js @@ -146,7 +146,7 @@ export class ConfigService { this.common.nodes[idx] = { settings: { blockExplorerUrl: '' }, authentication: {} }; this.common.nodes[idx].index = node.index; this.common.nodes[idx].lnNode = node.lnNode; - this.common.nodes[idx].lnImplementation = (process?.env?.lnImplementation) ? process?.env?.lnImplementation : node.lnImplementation ? node.lnImplementation : 'LND'; + this.common.nodes[idx].lnImplementation = (process?.env?.LN_IMPLEMENTATION) ? process?.env?.LN_IMPLEMENTATION : node.lnImplementation ? node.lnImplementation : 'LND'; if (this.common.nodes[idx].lnImplementation === 'CLT') { this.common.nodes[idx].lnImplementation = 'CLN'; } @@ -343,7 +343,7 @@ export class ConfigService { this.errMsg = 'Please set rtlCookiePath value for single sign on option!'; } else { - this.common.readCookie(); + this.common.readCookie(config); } } }; diff --git a/docker/README.md b/docker/README.md index dcd9254d..0e3134d6 100644 --- a/docker/README.md +++ b/docker/README.md @@ -74,6 +74,7 @@ docker build -t rtl:${RTL_VERSION} -f dockerfiles/Dockerfile . 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 diff --git a/frontend/17.6fa7154eb6e447e2.js b/frontend/17.6fa7154eb6e447e2.js new file mode 100644 index 00000000..07a24de3 --- /dev/null +++ b/frontend/17.6fa7154eb6e447e2.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[17],{9017:(Rp,Et,_)=>{_.r(Et),_.d(Et,{ECLModule:()=>vp});var p=_(177),b=_(1188),Ut=_(9881),t=_(4438),h=_(2920),V=_(7575);function zt(n,o){1&n&&t.nrm(0,"mat-progress-bar",3)}let xt=(()=>{class n{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof b.Z:this.loading=!0;break;case i instanceof b.wF:case i instanceof b.j5:case i instanceof b.L6:this.loading=!1}})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-root"]],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(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,zt,1,0,"mat-progress-bar",2),t.nrm(2,"router-outlet",null,0),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",a.loading))},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,b.n3],data:{animation:[Ut.E]}})}}return n})();var u=_(1413),f=_(6977),rt=_(3993),Lt=_(614),F=_(5383),l=_(4416),U=_(9647),C=_(2730),P=_(8570),R=_(9640),M=_(2571),w=_(60),L=_(6038),j=_(8834),E=_(5596),St=_(6195),ct=_(9213),mt=_(9115),D=_(6850);const vt=n=>({backgroundColor:n});function Jt(n,o){if(1&n&&t.nrm(0,"span",6),2&n){const e=t.XpG();t.Y8G("ngStyle",t.eq3(1,vt,null==e.information?null:e.information.color))}}function qt(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(4),t.Y8G("ngStyle",t.eq3(4,vt,null==e.information?null:e.information.color)),t.R7$(),t.SpI(" ",t.bMT(6,2,null==e.information?null:e.information.color)," ")}}function Qt(n,o){if(1&n&&(t.j41(0,"span",2),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}let Zt=(()=>{class n{constructor(e){this.commonService=e,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},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(i,a){1&i&&(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,Jt,1,3,"span",3),t.k0s()(),t.DNE(7,qt,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,Qt,2,1,"span",5),t.k0s()()),2&i&&(t.R7$(5),t.SpI(" ",null==a.information?null:a.information.alias," "),t.R7$(),t.Y8G("ngIf",!a.showColorFieldSeparately),t.R7$(),t.Y8G("ngIf",a.showColorFieldSeparately),t.R7$(5),t.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):""),t.R7$(4),t.Y8G("ngForOf",a.chains))},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,p.Pc]})}}return n})();function Wt(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(5),t.SpI("",t.bMT(6,5,e.balances.lightning)," Sats"),t.R7$(2),t.FS9("value",e.balances.lightning/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(13,7,e.balances.onchain)," Sats"),t.R7$(2),t.FS9("value",e.balances.onchain/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(20,9,e.balances.total)," Sats")}}function Kt(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let te=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static{this.\u0275fac=function(i){return new(i||n)}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},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(i,a){if(1&i&&t.DNE(0,Wt,21,11,"div",1)(1,Kt,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,p.QX]})}}return n})();function ee(n,o){if(1&n&&(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&n){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 ne(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let ie=(()=>{class n{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 i=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/i)*i/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{this.\u0275fac=function(i){return new(i||n)}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},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(i,a){if(1&i&&t.DNE(0,ee,39,18,"div",1)(1,ne,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}}return n})();function ae(n,o){if(1&n&&(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&n){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 oe(n,o){if(1&n&&(t.j41(0,"div",9)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let se=(()=>{class n{constructor(){this.channelsStatus={}}static{this.\u0275fac=function(i){return new(i||n)}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},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(i,a){if(1&i&&t.DNE(0,ae,42,18,"div",1)(1,oe,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}}return n})();var g=_(6467),Z=_(1997),J=_(4823),A=_(497);const le=()=>["../connections/channels/open"],re=(n,o)=>({filterColumn:n,filterValue:o});function ce(n,o){if(1&n&&(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&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(23,le))("state",t.l_i(24,re,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,11,(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,15,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",i.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,18,(null==e?null:e.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,20,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function me(n,o){if(1&n&&(t.j41(0,"div",17),t.DNE(1,ce,20,27,"div",18),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function pe(n,o){if(1&n&&(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,me,2,1,"div",16),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.R7$(8),t.SpI("",t.i5U(9,7,(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,10,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,12,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("value",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",i)}}function ue(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",26),t.EFF(1," No channels available. "),t.j41(2,"button",27),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.goToChannels())}),t.EFF(3,"Open Channel"),t.k0s()()}}function de(n,o){if(1&n&&(t.j41(0,"div",28)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let he=(()=>{class n{constructor(e){this.router=e,this.faBalanceScale=F.GR4,this.faDumbbell=F.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(i,a){if(1&i&&t.DNE(0,pe,24,15,"div",2)(1,ue,4,0,"ng-template",null,0,t.C5r)(3,de,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.Sq,p.bT,w.aY,h.DJ,h.sA,h.UI,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}}return n})();const fe=(n,o,e)=>({"mb-4":n,"mb-2":o,"mb-1":e}),_e=()=>["../connections/channels/open"],ge=(n,o)=>({filterColumn:n,filterValue:o});function Ce(n,o){if(1&n&&(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&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toRemote||0,"1.0-0")," Sats")}}function ye(n,o){if(1&n&&(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&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toLocal||0,"1.0-0")," Sats")}}function be(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toRemote||0)/i.totalLiquidity*100:0)}}function Fe(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toLocal||0)/i.totalLiquidity*100:0)}}function Ee(n,o){if(1&n&&(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,Ce,5,4,"mat-hint",17)(6,ye,5,4,"mat-hint",17),t.k0s(),t.DNE(7,be,1,1,"mat-progress-bar",18)(8,Fe,1,1,"mat-progress-bar",18),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(14,_e))("state",t.l_i(15,ge,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,10,e.alias||e.shortChannelId,0,24),"",(e.alias||e.shortChannelId).length>25?"...":""," "),t.R7$(3),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction),t.R7$(),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction)}}function xe(n,o){if(1&n&&(t.j41(0,"div",12),t.DNE(1,Ee,9,18,"div",13),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function Le(n,o){if(1&n&&(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,xe,2,1,"div",11),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.Y8G("ngClass",t.sMw(7,fe,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",i)}}function Se(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",24),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.goToChannels())}),t.EFF(1,"Open Channel"),t.k0s()}}function ve(n,o){if(1&n&&(t.j41(0,"div",22),t.EFF(1," No channels available. "),t.DNE(2,Se,2,0,"button",23),t.k0s()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngIf","Out"===e.direction)}}function Re(n,o){if(1&n&&(t.j41(0,"div",25)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let Ie=(()=>{class n{constructor(e,i){this.router=e,this.commonService=i,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix),t.rXU(M.h))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(i,a){if(1&i&&t.DNE(0,Le,12,11,"div",2)(1,ve,3,1,"ng-template",null,0,t.C5r)(3,Re,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,h.DJ,h.sA,h.UI,L.PW,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX]})}}return n})();var q=_(6697),k=_(6695),x=_(2042),c=_(9159),S=_(2798),H=_(5964),T=_(5428),B=_(5351),pt=_(3017),Q=_(4054),K=_(1534),d=_(9417),O=_(9631),W=_(9587);const ke=["paymentReq"];function Te(n,o){if(1&n&&(t.j41(0,"span",23),t.nrm(1,"fa-icon",24),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function we(n,o){if(1&n&&t.nrm(0,"span",25),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function je(n,o){if(1&n&&(t.j41(0,"mat-hint",20),t.EFF(1),t.DNE(2,Te,2,1,"span",21)(3,we,1,1,"span",22),t.EFF(4),t.k0s()),2&n){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 De(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function Ge(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.paymentDecodedHint)}}function Pe(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment amount is required."),t.k0s())}function Ae(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.paymentAmount,a)||(s.paymentAmount=a),t.Njj(a)}),t.bIt("change",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.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,Pe,2,0,"mat-error",14),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.R50("ngModel",e.paymentAmount),t.R7$(4),t.Y8G("ngIf",!e.paymentAmount)}}function Ne(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.paymentError)}}function Me(n,o){if(1&n&&(t.j41(0,"div",27),t.nrm(1,"fa-icon",28),t.DNE(2,Ne,2,1,"span",14),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.paymentError)}}let Be=(()=>{class n{constructor(e,i,a,s,r,m,I,y){this.dialogRef=e,this.store=i,this.eclEffects=a,this.logger=s,this.commonService=r,this.decimalPipe=m,this.actions=I,this.dataService=y,this.faExclamationTriangle=F.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=l.nv[0],this.feeLimitTypes=l.nv,this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_PAYMENT_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"SendPayment"===e.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=e.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,q.s)(1)).subscribe({next:e=>{this.paymentDecoded=e,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:i=>{this.convertedCurrency=i,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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{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:e=>{this.logger.error(e),this.paymentDecodedHintPre="ERROR: "+(e.message?e.message:"string"==typeof e?e:JSON.stringify(e)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,T.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(e){this.paymentRequest=e&&"string"==typeof e?e.trim():e,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,q.s)(1)).subscribe({next:i=>{this.paymentDecoded=i,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{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:i=>{this.logger.error(i),this.paymentDecodedHintPre="ERROR: "+(i.message?i.message:"string"==typeof i?i:JSON.stringify(i)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(e){delete this.paymentDecoded.amount,this.paymentDecoded.amount=e}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(R.il),t.rXU(pt.B),t.rXU(P.gP),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En),t.rXU(K.u))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(i,a){if(1&i&&t.GBs(ke,5),2&i){let s;t.mGM(s=t.lsd())&&(a.paymentReq=s.first)}},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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.Njj(a.onPaymentRequestEntry(m))})("matTextareaAutosize",function(){return t.eBV(s),t.Njj(!0)}),t.k0s(),t.DNE(16,je,5,4,"mat-hint",13)(17,De,2,0,"mat-error",14)(18,Ge,2,1,"mat-error",14),t.k0s(),t.DNE(19,Ae,8,2,"mat-form-field",15)(20,Me,3,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(23,"Clear Fields"),t.k0s(),t.j41(24,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onSendPayment())}),t.EFF(25,"Send Payment"),t.k0s()()()()()()}if(2&i){const s=t.sdS(15);t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.Y8G("ngModel",a.paymentRequest),t.R7$(2),t.Y8G("ngIf",a.paymentRequest&&""!==a.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!a.paymentRequest),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.decodeError),t.R7$(),t.Y8G("ngIf",a.zeroAmtInvoice),t.R7$(),t.Y8G("ngIf",""!==a.paymentError)}},dependencies:[p.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,W.N]})}}return n})();var Y=_(9454);const $e=["scrollContainer"];function Ve(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(5),t.JRh(e.description)}}function Oe(n,o){1&n&&t.nrm(0,"mat-divider",14)}function He(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-expansion-panel",23),t.bIt("opened",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onExpansionOpen(!0))})("closed",function(){t.eBV(e);const a=t.XpG();return t.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&n){const e=o.$implicit,i=o.index,a=t.XpG();t.Y8G("expanded",a.expansionOpen),t.R7$(4),t.SpI("Part ",i+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 Ye=(()=>{class n{constructor(e,i){this.dialogRef=e,this.data=i,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(e){this.expansionOpen=e}onClose(){this.dialogRef.close(!1)}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(i,a){if(1&i&&t.GBs($e,5),2&i){let s;t.mGM(s=t.lsd())&&(a.scrollContainer=s.first)}},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(i,a){if(1&i){const s=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 t.eBV(s),t.Njj(a.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,Ve,6,1,"div",15)(54,Oe,1,0,"mat-divider",16),t.j41(55,"div",9)(56,"div",2)(57,"mat-accordion"),t.DNE(58,He,36,14,"mat-expansion-panel",17),t.k0s()()()()(),t.j41(59,"div",18)(60,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.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&i&&(t.R7$(16),t.JRh(t.bMT(17,10,a.payment.recipientAmount)),t.R7$(6),t.JRh(t.i5U(23,12,a.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(a.payment.id),t.R7$(7),t.JRh(a.payment.paymentHash),t.R7$(7),t.JRh(a.payment.paymentPreimage),t.R7$(7),t.JRh(a.payment.recipientNodeAlias),t.R7$(2),t.Y8G("ngIf",a.description),t.R7$(),t.Y8G("ngIf",a.description),t.R7$(4),t.Y8G("ngForOf",a.payment.parts),t.R7$(6),t.Y8G("mat-dialog-close",!1))},dependencies:[p.Sq,p.bT,h.DJ,h.sA,h.UI,B.tx,j.$z,j.$0,E.m2,E.MM,Y.BS,Y.GK,Y.Z2,Y.WN,ct.An,Z.q,A.Ld,p.QX,p.vh]})}}return n})();var v=_(1771),at=_(7541),z=_(2929),X=_(6600);const Xe=["sendPaymentForm"],Ue=()=>["all"],ze=n=>({"error-border":n}),Je=()=>["no_payment"],$=n=>({width:n}),qe=n=>({"display-none":n});function Qe(n,o){if(1&n&&(t.j41(0,"span",18),t.nrm(1,"fa-icon",19),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Ze(n,o){if(1&n&&t.nrm(0,"span",20),2&n){const e=t.XpG(3);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function We(n,o){if(1&n&&(t.j41(0,"mat-hint",15),t.EFF(1),t.DNE(2,Qe,2,1,"span",16)(3,Ze,1,1,"span",17),t.EFF(4),t.k0s()),2&n){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 Ke(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function tn(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.Njj(s.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return t.eBV(e),t.Njj(!0)}),t.k0s(),t.DNE(7,We,5,4,"mat-hint",10)(8,Ke,2,0,"mat-error",11),t.k0s(),t.j41(9,"div",12)(10,"button",13),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(11,"Clear Field"),t.k0s(),t.j41(12,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSendPayment())}),t.EFF(13,"Send Payment"),t.k0s()()()}if(2&n){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 en(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",21)(1,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openSendPaymentModal())}),t.EFF(2,"Send Payment"),t.k0s()()}}function nn(n,o){if(1&n&&(t.j41(0,"mat-option",66),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function an(n,o){1&n&&t.nrm(0,"mat-progress-bar",67)}function on(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Date/Time"),t.k0s())}function sn(n,o){if(1&n&&(t.j41(0,"td",69),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function ln(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"ID"),t.k0s())}function rn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id)}}function cn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination Node ID"),t.k0s())}function mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId)}}function pn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination"),t.k0s())}function un(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias)}}function dn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Description"),t.k0s())}function hn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function fn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Payment Hash"),t.k0s())}function _n(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function gn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Preimage"),t.k0s())}function Cn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage)}}function yn(n,o){1&n&&(t.j41(0,"th",72),t.EFF(1,"Amount (Sats)"),t.k0s())}function bn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",73),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.recipientAmount))}}function Fn(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function En(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",78)(1,"button",79),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onPaymentClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function xn(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No payment available."),t.k0s())}function Ln(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting payments..."),t.k0s())}function Sn(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function vn(n,o){if(1&n&&(t.j41(0,"td",80),t.DNE(1,xn,2,0,"p",11)(2,Ln,2,0,"p",11)(3,Sn,2,1,"p",11),t.k0s()),2&n){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 Rn(n,o){if(1&n&&(t.j41(0,"span",81),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function In(n,o){if(1&n&&(t.qex(0),t.DNE(1,Rn,3,4,"span",82),t.bVm()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function kn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",81),t.EFF(2),t.k0s(),t.DNE(3,In,2,1,"ng-container",11),t.k0s()),2&n){const e=o.$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 Tn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.id)}}function wn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Tn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function jn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,wn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Dn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelId)}}function Gn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Dn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Pn(n,o){if(1&n&&(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&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function An(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelAlias)}}function Nn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,An,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Nn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Bn(n,o){if(1&n&&(t.j41(0,"span",84),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.amount,"1.0-0")," ")}}function $n(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Bn,3,4,"span",85),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Vn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",84),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.DNE(4,$n,2,1,"span",11),t.k0s()),2&n){const e=o.$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 On(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Hn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,On,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Yn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Hn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Xn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Un(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Xn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function zn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Un,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Jn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function qn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Jn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Qn(n,o){if(1&n&&(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&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Zn(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",89)(1,"button",90),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onPartClick(a,s))}),t.EFF(2),t.k0s()()}if(2&n){const e=o.index;t.R7$(2),t.SpI("View ",e+1,"")}}function Wn(n,o){if(1&n&&(t.j41(0,"div"),t.DNE(1,Zn,3,1,"div",88),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Kn(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",69)(1,"span",86)(2,"button",87),t.bIt("click",function(){const a=t.eBV(e).$implicit;return t.Njj(a.is_expanded=!a.is_expanded)}),t.EFF(3),t.k0s()(),t.DNE(4,Wn,2,1,"div",11),t.k0s()}if(2&n){const e=o.$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 ti(n,o){1&n&&t.nrm(0,"tr",91)}function ei(n,o){if(1&n&&t.nrm(0,"tr",92),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,qe,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function ni(n,o){1&n&&t.nrm(0,"tr",93)}function ii(n,o){1&n&&t.nrm(0,"tr",91)}function ai(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,nn,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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",32)(18,"div",33),t.DNE(19,an,1,0,"mat-progress-bar",34),t.j41(20,"table",35,2),t.qex(22,36),t.DNE(23,on,2,0,"th",37)(24,sn,3,4,"td",38),t.bVm(),t.qex(25,39),t.DNE(26,ln,2,0,"th",37)(27,rn,4,4,"td",38),t.bVm(),t.qex(28,40),t.DNE(29,cn,2,0,"th",37)(30,mn,4,4,"td",38),t.bVm(),t.qex(31,41),t.DNE(32,pn,2,0,"th",37)(33,un,4,4,"td",38),t.bVm(),t.qex(34,42),t.DNE(35,dn,2,0,"th",37)(36,hn,4,4,"td",38),t.bVm(),t.qex(37,43),t.DNE(38,fn,2,0,"th",37)(39,_n,4,4,"td",38),t.bVm(),t.qex(40,44),t.DNE(41,gn,2,0,"th",37)(42,Cn,4,4,"td",38),t.bVm(),t.qex(43,45),t.DNE(44,yn,2,0,"th",46)(45,bn,4,3,"td",38),t.bVm(),t.qex(46,47),t.DNE(47,Fn,6,0,"th",48)(48,En,3,0,"td",49),t.bVm(),t.qex(49,50),t.DNE(50,vn,4,3,"td",51),t.bVm(),t.qex(51,52),t.DNE(52,kn,4,2,"td",38),t.bVm(),t.qex(53,53),t.DNE(54,jn,5,5,"td",38),t.bVm(),t.qex(55,54),t.DNE(56,Pn,5,5,"td",38),t.bVm(),t.qex(57,55),t.DNE(58,Mn,5,5,"td",38),t.bVm(),t.qex(59,56),t.DNE(60,Vn,5,5,"td",38),t.bVm(),t.qex(61,57),t.DNE(62,Yn,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,Qn,5,5,"td",38),t.bVm(),t.qex(67,60),t.DNE(68,Kn,5,2,"td",38),t.bVm(),t.DNE(69,ti,1,0,"tr",61)(70,ei,1,3,"tr",62)(71,ni,1,0,"tr",63)(72,ii,1,0,"tr",64),t.k0s()()(),t.nrm(73,"mat-paginator",65),t.k0s()}if(2&n){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,Ue).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,Je)),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 Rt=(()=>{class n{constructor(e,i,a,s,r,m,I,y){this.logger=e,this.commonService=i,this.store=a,this.rtlEffects=s,this.decimalPipe=r,this.dataService=m,this.datePipe=I,this.camelCaseWithSpaces=y,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"firstPartTimestamp",sortOrder:l.oi.DESCENDING},this.faHistory=F.Int,this.newlyAddedPayment="",this.information={},this.payments=new c.I6([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(i=>this.partColumns.push("group_"+i)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.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,T.CK)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=e.payments&&e.payments.sent&&e.payments.sent.length>0?e.payments.sent:[],this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.payments.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.firstPartTimestamp?this.datePipe.transform(new Date(e.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"firstPartTimestamp":a=this.datePipe.transform(new Date(e.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=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 a.includes(i)}}loadPaymentsTable(e){this.payments=new c.I6(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(i,a)=>{switch(a){case"firstPartTimestamp":return this.commonService.sortByKey(i.parts,"timestamp","number",this.sort?.direction),i.firstPartTimestamp;case"id":return this.commonService.sortByKey(i.parts,"id","string",this.sort?.direction),i.id;case"recipientNodeAlias":return this.commonService.sortByKey(i.parts,"toChannelAlias","string",this.sort?.direction),i.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(i.parts,"amount","number",this.sort?.direction),i.recipientAmount;default:return i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]: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,q.s)(1)).subscribe(e=>{this.paymentDecoded=e,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,v.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(i=>{i&&(this.store.dispatch((0,T.Fd)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,v.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.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:l.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(a=>{a&&(this.paymentDecoded.amount=a[0].inputValue,this.store.dispatch((0,T.Fd)({payload:{invoice:this.paymentRequest,amountMsat:1e3*a[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(e){this.paymentRequest=e,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,q.s)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.amount?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[4])).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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{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,v.xO)({payload:{data:{component:Be}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(e,i){return i.parts&&i.parts.length>1}onPaymentClick(e){e.paymentHash&&""!==e.paymentHash.trim()?this.dataService.decodePayments(e.paymentHash).pipe((0,q.s)(1)).subscribe({next:i=>{setTimeout(()=>{this.showPaymentView(e,i.length&&i.length>0?i[0]:[])},0)},error:i=>{this.showPaymentView(e,[])}}):this.showPaymentView(e,[])}showPaymentView(e,i){this.store.dispatch((0,v.xO)({payload:{data:{sentPaymentInfo:i,payment:e,component:Ye}}}))}onPartClick(e,i){i.paymentHash&&""!==i.paymentHash.trim()?this.dataService.decodePayments(i.paymentHash).pipe((0,q.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPartView(e,i,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPartView(e,i,[])}}):this.showPartView(e,i,[])}showPartView(e,i,a){const s=[[{key:"paymentHash",value:i.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"paymentPreimage",value:i.paymentPreimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"Channel",width:100,type:l.UN.STRING}],[{key:"id",value:e.id,title:"Part ID",width:50,type:l.UN.STRING},{key:"timestamp",value:e.timestamp,title:"Time",width:50,type:l.UN.DATE_TIME}],[{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"feesPaid",value:e.feesPaid,title:"Fee (Sats)",width:50,type:l.UN.NUMBER}]];a&&a.length>0&&a[0].paymentRequest&&a[0].paymentRequest.description&&""!==a[0].paymentRequest.description&&s.splice(3,0,[{key:"description",value:a[0].paymentRequest.description,title:"Description",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Part Information",message:s}}}))}onPageChange(e){this.store.dispatch((0,T.CK)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const e=JSON.parse(JSON.stringify(this.payments.data)),i=e?.reduce((a,s)=>(s.paymentHash&&""!==s.paymentHash.trim()&&(a=""===a?s.paymentHash:a+","+s.paymentHash),a),"");this.dataService.decodePayments(i).pipe((0,f.Q)(this.unSubs[5])).subscribe(a=>{a.forEach((r,m)=>{r.length>0&&r[0].paymentRequest&&r[0].paymentRequest.description&&""!==r[0].paymentRequest.description&&(e[m].description=r[0].paymentRequest.description)});const s=e?.reduce((r,m)=>r.concat(m),[]);this.commonService.downloadFile(s,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(at.H),t.rXU(p.QX),t.rXU(K.u),t.rXU(p.vh),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(i,a){if(1&i&&(t.GBs(Xe,5),t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,tn,14,3,"form",4)(2,en,3,0,"div",5)(3,ai,74,21,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,k.iy,A.ZF,A.Ld,p.QX,p.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 n})();var tt=_(6114);function oi(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function si(n,o){1&n&&(t.j41(0,"span",29),t.EFF(1,"= "),t.k0s())}function li(n,o){if(1&n&&(t.j41(0,"span",30),t.nrm(1,"fa-icon",31),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function ri(n,o){if(1&n&&t.nrm(0,"span",32),2&n){const e=t.XpG();t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function ci(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(t.bMT(2,2,e))}}function mi(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.invoiceError)}}function pi(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.DNE(2,mi,2,1,"span",11),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.invoiceError)}}let ui=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.store=a,this.decimalPipe=s,this.commonService=r,this.actions=m,this.faExclamationTriangle=F.zpE,this.convertedCurrency=null,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,f.Q)(this.unSubs[2]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===e.payload.action&&(e.payload.status===l.wn.ERROR&&(this.invoiceError=e.payload.message),e.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(e){if(this.invoiceError="",!this.description)return!0;let i=this.expiry?this.expiry:l.It;this.expiry&&this.selTimeUnit!==l.F7.SECS&&(i=this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS));let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,T.iO)({payload:a}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onTimeUnitChange(e){this.expiry&&this.selTimeUnit!==e.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,e.value)),this.selTimeUnit=e.value}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(Q.En))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-create-invoices"]],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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.description,m)||(a.description=m),t.Njj(m)}),t.k0s(),t.DNE(15,oi,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(m){return t.eBV(s),t.DH7(a.invoiceValue,m)||(a.invoiceValue=m),t.Njj(m)}),t.bIt("keyup",function(){return t.eBV(s),t.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(21,"span",15),t.EFF(22,"Sats "),t.k0s(),t.j41(23,"mat-hint",16),t.DNE(24,si,2,0,"span",17)(25,li,2,1,"span",18)(26,ri,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(m){return t.eBV(s),t.DH7(a.expiry,m)||(a.expiry=m),t.Njj(m)}),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(m){return t.eBV(s),t.Njj(a.onTimeUnitChange(m))}),t.DNE(37,ci,3,4,"mat-option",24),t.k0s()()(),t.DNE(38,pi,3,2,"div",25),t.j41(39,"div",26)(40,"button",27),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(41,"Clear Field"),t.k0s(),t.j41(42,"button",28),t.bIt("click",function(){t.eBV(s);const m=t.sdS(10);return t.Njj(a.onAddInvoice(m))}),t.EFF(43,"Create Invoice"),t.k0s()()()()()()}2&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",a.description),t.R7$(),t.Y8G("ngIf",!a.description),t.R7$(5),t.Y8G("step",100)("min",1),t.R50("ngModel",a.invoiceValue),t.R7$(4),t.Y8G("ngIf",""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"FA"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"SVG"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.SpI(" ",a.invoiceValueHint," "),t.R7$(4),t.Y8G("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),t.R50("ngModel",a.expiry),t.R7$(2),t.SpI("",t.bMT(34,17,a.selTimeUnit)," "),t.R7$(3),t.Y8G("value",a.selTimeUnit),t.R7$(),t.Y8G("ngForOf",a.timeUnits),t.R7$(),t.Y8G("ngIf",""!==a.invoiceError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,S.VO,X.wT,W.N,tt.V,p.PV]})}}return n})();var di=_(6439);const hi=()=>["all"],fi=n=>({"error-border":n}),_i=()=>["no_invoice"],ut=n=>({"mr-0":n}),dt=n=>({width:n}),gi=n=>({"display-none":n});function Ci(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function yi(n,o){1&n&&(t.j41(0,"span",21),t.EFF(1,"= "),t.k0s())}function bi(n,o){if(1&n&&(t.j41(0,"span",22),t.nrm(1,"fa-icon",23),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Fi(n,o){if(1&n&&t.nrm(0,"span",24),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Ei(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.description,a)||(s.description=a),t.Njj(a)}),t.k0s(),t.DNE(6,Ci,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){t.eBV(e);const s=t.XpG();return t.DH7(s.invoiceValue,a)||(s.invoiceValue=a),t.Njj(a)}),t.bIt("keyup",function(){t.eBV(e);const a=t.XpG();return t.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,yi,2,0,"span",15)(16,bi,2,1,"span",16)(17,Fi,1,1,"span",17),t.EFF(18),t.k0s()(),t.j41(19,"div",18)(20,"button",19),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(21,"Clear Field"),t.k0s(),t.j41(22,"button",20),t.bIt("click",function(){t.eBV(e);const a=t.sdS(1),s=t.XpG();return t.Njj(s.onAddInvoice(a))}),t.EFF(23,"Create Invoice"),t.k0s()()()}if(2&n){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 xi(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",25)(1,"button",26),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openCreateInvoiceModal())}),t.EFF(2,"Create Invoice"),t.k0s()()}}function Li(n,o){if(1&n&&(t.j41(0,"mat-option",63),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Si(n,o){1&n&&t.nrm(0,"mat-progress-bar",64)}function vi(n,o){1&n&&t.nrm(0,"th",65)}function Ri(n,o){if(1&n&&t.nrm(0,"span",70),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ii(n,o){if(1&n&&t.nrm(0,"span",71),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function ki(n,o){if(1&n&&t.nrm(0,"span",72),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ti(n,o){if(1&n&&(t.j41(0,"td",66),t.DNE(1,Ri,1,3,"span",67)(2,Ii,1,3,"span",68)(3,ki,1,3,"span",69),t.k0s()),2&n){const e=o.$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 wi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Created"),t.k0s())}function ji(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Di(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Expiry"),t.k0s())}function Gi(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Pi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Settled"),t.k0s())}function Ai(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Ni(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Node ID"),t.k0s())}function Mi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Bi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Description"),t.k0s())}function $i(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function Vi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Payment Hash"),t.k0s())}function Oi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Hi(n,o){1&n&&(t.j41(0,"th",76),t.EFF(1,"Amount (Sats)"),t.k0s())}function Yi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amount?t.i5U(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function Xi(n,o){1&n&&(t.j41(0,"th",78),t.EFF(1," Amount Settled (Sats)"),t.k0s())}function Ui(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amountSettled?t.i5U(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function zi(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Ji(n,o){if(1&n){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=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onInvoiceClick(a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",82),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onRefreshInvoice(a))}),t.EFF(7,"Refresh"),t.k0s()()()()}}function qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No invoice available."),t.k0s())}function Qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting invoices..."),t.k0s())}function Zi(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Wi(n,o){if(1&n&&(t.j41(0,"td",85),t.DNE(1,qi,2,0,"p",10)(2,Qi,2,0,"p",10)(3,Zi,2,1,"p",10),t.k0s()),2&n){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 Ki(n,o){if(1&n&&t.nrm(0,"tr",86),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,gi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function ta(n,o){1&n&&t.nrm(0,"tr",87)}function ea(n,o){1&n&&t.nrm(0,"tr",88)}function na(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Li,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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",37),t.DNE(18,Si,1,0,"mat-progress-bar",38),t.j41(19,"table",39,2),t.qex(21,40),t.DNE(22,vi,1,0,"th",41)(23,Ti,4,3,"td",42),t.bVm(),t.qex(24,43),t.DNE(25,wi,2,0,"th",44)(26,ji,3,4,"td",42),t.bVm(),t.qex(27,45),t.DNE(28,Di,2,0,"th",44)(29,Gi,3,4,"td",42),t.bVm(),t.qex(30,46),t.DNE(31,Pi,2,0,"th",44)(32,Ai,3,4,"td",42),t.bVm(),t.qex(33,47),t.DNE(34,Ni,2,0,"th",44)(35,Mi,4,4,"td",42),t.bVm(),t.qex(36,48),t.DNE(37,Bi,2,0,"th",44)(38,$i,4,4,"td",42),t.bVm(),t.qex(39,49),t.DNE(40,Vi,2,0,"th",44)(41,Oi,4,4,"td",42),t.bVm(),t.qex(42,50),t.DNE(43,Hi,2,0,"th",51)(44,Yi,4,4,"td",42),t.bVm(),t.qex(45,52),t.DNE(46,Xi,2,0,"th",53)(47,Ui,4,4,"td",42),t.bVm(),t.qex(48,54),t.DNE(49,zi,6,0,"th",55)(50,Ji,8,0,"td",56),t.bVm(),t.qex(51,57),t.DNE(52,Wi,4,3,"td",58),t.bVm(),t.DNE(53,Ki,1,3,"tr",59)(54,ta,1,0,"tr",60)(55,ea,1,0,"tr",61),t.k0s()(),t.nrm(56,"mat-paginator",62),t.k0s()}if(2&n){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,hi).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,fi,""!==e.errorMessage)),t.R7$(34),t.Y8G("matFooterRowDef",t.lJ4(18,_i)),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=(()=>{class n{constructor(e,i,a,s,r,m,I){this.logger=e,this.store=i,this.decimalPipe=a,this.commonService=s,this.datePipe=r,this.actions=m,this.camelCaseWithSpaces=I,this.calledFrom="transactions",this.faHistory=F.Int,this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"expiresAt",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new c.I6([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.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,T.Do)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.rN).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=e.invoices&&e.invoices.length>0?e.invoices:[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SET_LOOKUP_ECL&&this.invoiceJSONArr&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.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,v.xO)({payload:{data:{pageSize:this.pageSize,component:ui}}}))}onAddInvoice(e){if(!this.description)return!0;const i=this.expiry?this.expiry:l.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,T.iO)({payload:a})),this.resetData()}onInvoiceClick(e){this.store.dispatch((0,v.xO)({payload:{data:{invoice:e,newlyAdded:!1,component:di.Z}}}))}onRefreshInvoice(e){this.store.dispatch((0,T.Yi)({payload:e.paymentHash}))}updateInvoicesData(e){this.invoiceJSONArr=this.invoiceJSONArr?.map(i=>i.paymentHash===e.paymentHash?e:i)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.invoices.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"status":a=e?.status&&"expired"!==e?.status&&"unknown"!==e?.status?e.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":a=e[this.selFilterBy]?.toString()||"-";break;default:a=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===a.indexOf(i):a.includes(i)}}loadInvoicesTable(e){this.invoices=new c.I6(e?[...e]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]: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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[5])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onPageChange(e){this.store.dispatch((0,T.Do)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(p.vh),t.rXU(Q.En),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,Ei,24,9,"form",4)(2,xi,3,0,"div",5)(3,na,57,19,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,k.iy,A.ZF,A.Ld,tt.V,p.QX,p.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return n})();const kt=n=>({"dashboard-card-content":!0,"error-border":n}),ia=n=>({"p-0":n});function aa(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(11);t.Y8G("matMenuTriggerFor",e)}}function oa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG().$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function sa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){t.eBV(e);const a=t.XpG(3);return t.Njj(a.onsortChannelsBy())}),t.EFF(1),t.k0s()}if(2&n){const e=t.XpG(3);t.R7$(),t.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score","")}}function la(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ra(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",31),2&n){const e=t.XpG(3);t.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function ca(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ma(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-capacity-info",33),2&n){const e=t.XpG(3);t.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function pa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-fee-info",34),2&n){const e=t.XpG(3);t.Y8G("fees",e.fees)("errorMessage",e.errorMessages[1])}}function ua(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-status-info",35),2&n){const e=t.XpG(3);t.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function da(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function ha(n,o){if(1&n&&(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,aa,3,1,"button",15),t.j41(10,"mat-menu",16,1),t.DNE(12,oa,2,1,"button",17)(13,sa,2,1,"button",18),t.k0s()()()(),t.j41(14,"mat-card-content",19),t.DNE(15,la,1,0,"mat-progress-bar",20),t.j41(16,"div",21),t.DNE(17,ra,1,2,"rtl-ecl-node-info",22)(18,ca,1,2,"rtl-ecl-balances-info",23)(19,ma,1,4,"rtl-ecl-channel-capacity-info",24)(20,pa,1,2,"rtl-ecl-fee-info",25)(21,ua,1,2,"rtl-ecl-channel-status-info",26)(22,da,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=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.FS9("fxFlex","capacity"===e.id?90:70),t.Y8G("ngClass",t.eq3(16,kt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===e.id&&i.apiCallStatusFees.status===i.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 fa(n,o){if(1&n&&(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,ha,23,18,"mat-grid-tile",10),t.k0s()()),2&n){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 _a(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(9);t.Y8G("matMenuTriggerFor",e)}}function ga(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Ca(n,o){if(1&n&&(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,_a,3,1,"button",15),t.j41(8,"mat-menu",16,2),t.DNE(10,ga,2,1,"button",17),t.k0s()()()()),2&n){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 ya(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ba(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",44),2&n){const e=t.XpG(3);t.Y8G("information",e.information)}}function Fa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Ea(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","In")("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function xa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","Out")("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function La(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Sa(n,o){if(1&n&&(t.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),t.nrm(3,"rtl-ecl-lightning-invoices",49),t.k0s(),t.j41(4,"mat-tab",50),t.nrm(5,"rtl-ecl-lightning-payments",51),t.k0s()(),t.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),t.EFF(9,"more_vert"),t.k0s()(),t.j41(10,"mat-menu",16,3),t.DNE(12,La,2,1,"button",17),t.k0s()()()),2&n){const e=t.sdS(11),i=t.XpG().$implicit;t.R7$(3),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("matMenuTriggerFor",e),t.R7$(5),t.Y8G("ngForOf",i.goToOptions)}}function va(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function Ra(n,o){if(1&n&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",38),t.DNE(2,Ca,11,4,"mat-card-header",39),t.j41(3,"mat-card-content",40),t.DNE(4,ya,1,0,"mat-progress-bar",20),t.j41(5,"div",21),t.DNE(6,ba,1,1,"rtl-ecl-node-info",41)(7,Fa,1,2,"rtl-ecl-balances-info",23)(8,Ea,1,4,"rtl-ecl-channel-liquidity-info",42)(9,xa,1,4,"rtl-ecl-channel-liquidity-info",42)(10,Sa,13,4,"span",43)(11,va,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(),t.Y8G("ngClass",t.eq3(13,ia,"transactions"===e.id)),t.R7$(),t.Y8G("ngIf","transactions"!==e.id),t.R7$(),t.FS9("fxFlex","transactions"===e.id?100:"balance"===e.id?70:90),t.Y8G("ngClass",t.eq3(15,kt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.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 Ia(n,o){if(1&n&&(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,Ra,12,17,"mat-grid-tile",10),t.k0s()),2&n){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 ka=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.router=s,this.faSmile=Lt.Qpm,this.faFrown=Lt.wB1,this.faAngleDoubleDown=F.WxX,this.faAngleDoubleUp=F.$sC,this.faChartPie=F.W1p,this.faBolt=F.zm_,this.faServer=F.D6w,this.faNetworkWired=F.eGi,this.userPersonaEnum=l.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:l.wn.COMPLETED},this.apiCallStatusFees={status:l.wn.COMPLETED},this.apiCallStatusOCBal={status:l.wn.COMPLETED},this.apiCallStatusAllChannels={status:l.wn.COMPLETED},this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.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===l.f7.SM||this.screenSize===l.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(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.b_).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=e.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=e.information}),this.store.select(C.oR).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessages[1]="",this.apiCallStatusFees=e.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=e.fees}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[3]),(0,rt.E)(this.store.select(C.DW))).subscribe(([e,i])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=e.apiCallStatus,this.apiCallStatusOCBal=i.apiCallStatus,this.apiCallStatusAllChannels.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=e.activeChannels,this.onchainBalance=i.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=e.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const a=e.lightningBalance.localBalance?+e.lightningBalance.localBalance:0,s=e.lightningBalance.remoteBalance?+e.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:a,remoteBalance:s,balancedness:+(1-Math.abs((a-s)/(a+s))).toFixed(3)},this.channelsStatus=e.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(m=>(m.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(m=>(m.toLocal||0)>0),"toLocal"))),this.channels.forEach(m=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(m.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(m.toLocal||0)}),this.logger.info(e)})}onNavigateTo(e){this.router.navigateByUrl("/ecl/"+e)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((e,i)=>{const a=+(e.toLocal||0)+ +(e.toRemote||0),s=+(i.toLocal||0)+ +(i.toRemote||0);return a>s?-1:a{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-home"]],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",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","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"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(i,a){if(1&i&&t.DNE(0,fa,7,4,"div",4)(1,Ia,6,4,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",(null==a.selNode?null:a.selNode.settings.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,p.ux,p.e1,p.fG,w.aY,h.DJ,h.sA,h.UI,L.PW,j.iY,E.RN,E.m2,E.MM,E.dh,St.B_,St.NS,ct.An,mt.kk,mt.fb,mt.Cp,V.HM,D.mq,D.T8,Zt,te,ie,se,he,Ie,Rt,It]})}}return n})();const Ta=["form"];function wa(n,o){if(1&n&&(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&n){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 ja(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Bitcoin address is required."),t.k0s())}function Da(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.amountError)}}function Ga(n,o){if(1&n&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e)}}function Pa(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Target Confirmation Blocks is required."),t.k0s())}function Aa(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.sendFundError)}}function Na(n,o){if(1&n&&(t.j41(0,"div",35),t.nrm(1,"fa-icon",31),t.DNE(2,Aa,2,1,"span",15),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.sendFundError)}}let Tt=(()=>{class n{constructor(e,i,a,s,r,m,I){this.dialogRef=e,this.logger=i,this.dataService=a,this.store=s,this.commonService=r,this.decimalPipe=m,this.actions=I,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.iW_,this.addressTypes=[],this.selectedAddress=l.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=l.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.k,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.amountError="Amount is Required.",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[0])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[2]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(e=>{e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,v.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"SendOnchainFunds"===e.payload.action&&(this.sendFundError=e.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==l.BQ.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:e=>{this.transaction.amount=parseInt(e[l.BQ.SATS]),this.selAmountUnit=l.BQ.SATS,this.store.dispatch((0,T.Lz)({payload:this.transaction}))},error:e=>{this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+e}}):this.store.dispatch((0,T.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(e){const i=this,a=this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit;let s=e.value===this.amountUnits[2]?l.BQ.OTHER:e.value;this.transaction.amount&&this.selAmountUnit!==e.value&&this.commonService.convertCurrency(this.transaction.amount,a,s,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[4])).subscribe({next:r=>{this.selAmountUnit=e.value,i.transaction.amount=+i.decimalPipe.transform(r[s],i.currencyUnitFormats[s]).replace(/,/g,"")},error:r=>{this.amountError="Conversion Error: "+r,this.selAmountUnit=a,s=a}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(P.gP),t.rXU(K.u),t.rXU(R.il),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(i,a){if(1&i&&t.GBs(Ta,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},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(i,a){if(1&i){const s=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,wa,16,6,"div",11),t.j41(10,"form",12,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onSendFunds())})("reset",function(){return t.eBV(s),t.Njj(a.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(m){return t.eBV(s),t.DH7(a.transaction.address,m)||(a.transaction.address=m),t.Njj(m)}),t.k0s(),t.DNE(17,ja,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(m){return t.eBV(s),t.DH7(a.transaction.amount,m)||(a.transaction.amount=m),t.Njj(m)}),t.k0s(),t.j41(23,"span",18),t.EFF(24),t.k0s(),t.DNE(25,Da,2,1,"mat-error",15),t.k0s(),t.j41(26,"mat-form-field",19)(27,"mat-select",20),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.onAmountUnitChange(m))}),t.DNE(28,Ga,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(m){return t.eBV(s),t.DH7(a.transaction.blocks,m)||(a.transaction.blocks=m),t.Njj(m)}),t.k0s(),t.DNE(35,Pa,2,0,"mat-error",15),t.k0s()(),t.nrm(36,"div",25),t.DNE(37,Na,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&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(3),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(6),t.R50("ngModel",a.transaction.address),t.R7$(2),t.Y8G("ngIf",!a.transaction.address),t.R7$(4),t.Y8G("step",100)("min",0),t.R50("ngModel",a.transaction.amount),t.R7$(3),t.SpI("",a.selAmountUnit," "),t.R7$(),t.Y8G("ngIf",!a.transaction.amount),t.R7$(2),t.Y8G("value",a.selAmountUnit),t.R7$(),t.Y8G("ngForOf",a.amountUnits),t.R7$(5),t.Y8G("step",1)("min",0),t.R50("ngModel",a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",!a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",""!==a.sendFundError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.TL,g.yw,S.VO,X.wT,W.N,tt.V]})}}return n})();var ht=_(5837);const Ma=()=>["all"],Ba=n=>({"error-border":n}),$a=()=>["no_transaction"],ft=n=>({width:n}),Va=n=>({"display-none":n});function Oa(n,o){if(1&n&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Ha(n,o){1&n&&t.nrm(0,"mat-progress-bar",35)}function Ya(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Date/Time"),t.k0s())}function Xa(n,o){if(1&n&&(t.j41(0,"td",37),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Ua(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Address"),t.k0s())}function za(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.address)}}function Ja(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Blockhash"),t.k0s())}function qa(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.blockHash)}}function Qa(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Transaction ID"),t.k0s())}function Za(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.txid)}}function Wa(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ka(n,o){if(1&n&&(t.j41(0,"span",43),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.amount))}}function to(n,o){if(1&n&&(t.j41(0,"span",44),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.SpI("(",t.bMT(2,1,-1*(null==e?null:e.amount)),")")}}function eo(n,o){if(1&n&&(t.j41(0,"td",37),t.DNE(1,Ka,3,3,"span",41)(2,to,3,3,"span",42),t.k0s()),2&n){const e=o.$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 no(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Fees (Sats)"),t.k0s())}function io(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.fees))}}function ao(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Confirmations"),t.k0s())}function oo(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==e?null:e.confirmations)," ")}}function so(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function lo(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onTransactionClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function ro(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No transaction available."),t.k0s())}function co(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting transactions..."),t.k0s())}function mo(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function po(n,o){if(1&n&&(t.j41(0,"td",51),t.DNE(1,ro,2,0,"p",52)(2,co,2,0,"p",52)(3,mo,2,1,"p",52),t.k0s()),2&n){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 uo(n,o){if(1&n&&t.nrm(0,"tr",53),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Va,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function ho(n,o){1&n&&t.nrm(0,"tr",54)}function fo(n,o){1&n&&t.nrm(0,"tr",55)}let _o=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.faHistory=F.Int,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.listTransactions=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.apiCallStatus.status===l.wn.COMPLETED&&(this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.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,T.mh)({payload:{count:1e3,skip:0}}))),this.logger.info(this.displayedColumns))}),this.store.select(C.gN).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),e.transactions&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadTransactionsTable(e.transactions),this.logger.info(e)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.listTransactions.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=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 a.includes(i)}}onTransactionClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:e.blockHash||e.blockId_opt,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"txid",value:e.txid,title:"Transaction ID",width:100,explorerLink:"tx"}],[{key:"timestamp",value:e.timestamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"confirmations",value:e.confirmations,title:"Number of Confirmations",width:50,type:l.UN.NUMBER}],[{key:"fees",value:e.fees,title:"Fees (Sats)",width:50,type:l.UN.NUMBER},{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"address",value:e.address,title:"Address",width:100,type:l.UN.STRING}]]}}}))}loadTransactionsTable(e){this.listTransactions=new c.I6([...e]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onPageChange(e){this.store.dispatch((0,T.mh)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Oa,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,Ha,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,Ya,2,0,"th",16)(24,Xa,3,4,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Ua,2,0,"th",16)(27,za,4,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Ja,2,0,"th",16)(30,qa,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,Qa,2,0,"th",16)(33,Za,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,Wa,2,0,"th",22)(36,eo,3,2,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,no,2,0,"th",22)(39,io,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,ao,2,0,"th",22)(42,oo,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,so,6,0,"th",26)(45,lo,3,0,"td",27),t.bVm(),t.qex(46,28),t.DNE(47,po,4,3,"td",29),t.bVm(),t.DNE(48,uo,1,3,"tr",30)(49,ho,1,0,"tr",31)(50,fo,1,0,"tr",32),t.k0s(),t.nrm(51,"mat-paginator",33),t.k0s()()()}2&i&&(t.R7$(3),t.Y8G("icon",a.faHistory),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Ma).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(3),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",t.eq3(16,Ba,""!==a.errorMessage)),t.R7$(28),t.Y8G("matFooterRowDef",t.lJ4(18,$a)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,k.iy,A.ZF,A.Ld,p.QX,p.vh]})}}return n})();function go(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Co=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.faExchangeAlt=F._qq,this.faChartPie=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[2])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.onchainBalance.total||0},{title:"Confirmed",dataValue:i.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:i.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,v.xO)({payload:{data:{component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,go,2,3,"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&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk,_o]})}}return n})();var wt=_(1975);function yo(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Channels"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activeChannels)}}function bo(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Peers"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activePeers)}}let Fo=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=F.gdJ,this.faChartPie=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.activeChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.balances=[{title:"Total Balance",dataValue:e.onchainBalance.total||0},{title:"Confirmed",dataValue:e.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:e.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-connections"]],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(i,a){1&i&&(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(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(16,"mat-tab"),t.DNE(17,yo,2,1,"ng-template",8),t.k0s(),t.j41(18,"mat-tab"),t.DNE(19,bo,2,1,"ng-template",8),t.k0s()(),t.j41(20,"div",9),t.nrm(21,"router-outlet"),t.k0s()()()()),2&i&&(t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faUsers),t.R7$(6),t.R50("selectedIndex",a.activeLink))},dependencies:[w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,wt.k,D.ES,D.mq,D.T8,ht.f,b.n3]})}}return n})();function Eo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let xo=(()=>{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,this.faExchangeAlt=F._qq,this.faChartPie=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(U._c))).subscribe(([i,a])=>{this.currencyUnits=a?.settings.currencyUnits||[],this.balances=a&&a.settings.userPersona===l.HW.OPERATOR?[{title:"Local Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,Eo,2,3,"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&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk]})}}return n})();function Lo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let So=(()=>{class n{constructor(e){this.router=e,this.faMapSigns=F.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 u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,Lo,2,3,"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&i){const s=t.sdS(12);t.R7$(2),t.Y8G("icon",a.faMapSigns),t.R7$(7),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}}return n})();var ot=_(5951),jt=_(450),et=_(6013);const vo=["peersForm"],Ro=["stepper"];function Io(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.peerFormLabel)}}function ko(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function To(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.peerConnectionError)}}function wo(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.channelFormLabel)}}function jo(n,o){if(1&n&&(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&n){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 Do(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Go(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Po(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Ao(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function No(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.channelConnectionError)}}let Dt=(()=>{class n{constructor(e,i,a,s,r,m,I){this.dialogRef=e,this.data=i,this.store=a,this.formBuilder=s,this.actions=r,this.logger=m,this.dataService=I,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.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 u.B,new u.B,new u.B,new u.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:["",[d.k0.required]],peerAddress:[this.peerAddress,[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],feeRate:[null],hiddenAmount:["",[d.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e,this.channelFormGroup.controls.isPrivate.setValue(!!e?.settings.unannouncedChannels)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.NEWLY_ADDED_PEER_ECL||e.type===l.Uu.FETCH_CHANNELS_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.NEWLY_ADDED_PEER_ECL&&(this.logger.info(e.payload),this.flgEditable=!1,this.newlyAddedPeer=e.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),e.type===l.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&("SaveNewPeer"===e.payload.action?this.peerConnectionError=e.payload.message:"SaveNewChannel"===e.payload.action&&(this.channelConnectionError=e.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,T.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,T.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(e){switch(e.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)"}e.selectedIndex{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(d.ze),t.rXU(Q.En),t.rXU(P.gP),t.rXU(K.u))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(i,a){if(1&i&&(t.GBs(vo,5),t.GBs(Ro,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.stepper=s.first)}},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(i,a){if(1&i){const s=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 t.eBV(s),t.Njj(a.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(m){return t.eBV(s),t.Njj(a.stepSelectionChanged(m))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,Io,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,ko,2,0,"mat-error",15),t.k0s(),t.DNE(20,To,4,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onConnectPeer())}),t.EFF(23),t.k0s()()()(),t.j41(24,"mat-step",10)(25,"form",19),t.DNE(26,wo,1,1,"ng-template",20),t.j41(27,"div",21),t.DNE(28,jo,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,Do,2,0,"mat-error",15)(40,Go,2,0,"mat-error",15)(41,Po,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,Ao,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,No,4,2,"div",16),t.j41(53,"div",17)(54,"button",31),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onOpenChannel())}),t.EFF(55),t.k0s()()()()(),t.j41(56,"div",32)(57,"button",33),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(58),t.k0s()()()()()()}2&i&&(t.R7$(10),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",a.peerFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.peerFormGroup),t.R7$(6),t.Y8G("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),t.R7$(),t.Y8G("ngIf",""!==a.peerConnectionError),t.R7$(3),t.JRh(""!==a.peerConnectionError?"Retry":"Add Peer"),t.R7$(),t.Y8G("stepControl",a.channelFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.channelFormGroup),t.R7$(3),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.SpI("Remaining: ",t.bMT(36,23,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0)),""),t.R7$(4),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),t.R7$(4),t.Y8G("step",1)("min",a.recommendedFee.minimumFee||0),t.R7$(2),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.feeRate.errors?null:a.channelFormGroup.controls.feeRate.errors.minimum),t.R7$(4),t.Y8G("ngIf",""!==a.channelConnectionError),t.R7$(3),t.JRh(""!==a.channelConnectionError?"Retry":"Open Channel"),t.R7$(3),t.JRh(null!=a.newlyAddedPeer&&a.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,jt.sG,et.V5,et.Ti,et.M6,W.N,tt.V,p.QX]})}}return n})();var Gt=_(5416),Pt=_(9157);const Mo=n=>({"background-color":n});function Bo(n,o){if(1&n&&(t.j41(0,"span",10)(1,"div"),t.EFF(2),t.nI1(3,"titlecase"),t.k0s()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(2),t.Lme("",i.nodeFeaturesEnum[e.key]||e.key,": ",t.bMT(3,2,e.value),"")}}function $o(n,o){1&n&&(t.j41(0,"th",24),t.EFF(1,"Address"),t.k0s())}function Vo(n,o){if(1&n&&(t.j41(0,"td",25),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Oo(n,o){1&n&&(t.j41(0,"th",26)(1,"div",27),t.EFF(2,"Actions"),t.k0s()())}function Ho(n,o){if(1&n){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=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onConnectNode(a))}),t.EFF(5,"Connect"),t.k0s(),t.j41(6,"mat-option",32),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG(2);return t.Njj(s.onCopyNodeURI(a))}),t.EFF(7,"Copy URI"),t.k0s()()()()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(6),t.Y8G("payload",(null==i.lookupResult?null:i.lookupResult.nodeId)+"@"+e)}}function Yo(n,o){1&n&&t.nrm(0,"tr",33)}function Xo(n,o){1&n&&t.nrm(0,"tr",34)}function Uo(n,o){if(1&n&&(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,Bo,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,$o,2,0,"th",17)(44,Vo,2,1,"td",18),t.bVm(),t.qex(45,19),t.DNE(46,Oo,3,0,"th",20)(47,Ho,8,1,"td",21),t.bVm(),t.DNE(48,Yo,1,0,"tr",22)(49,Xo,1,0,"tr",23),t.k0s()()()()),2&n){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,Mo,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=(()=>{class n{constructor(e,i,a){this.logger=e,this.snackBar=i,this.store=a,this.lookupResult={},this.addresses=new c.I6([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=l.Uq,this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.addresses=new c.I6(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0})}onConnectNode(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:e}:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(Gt.UG),t.rXU(R.il))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(i,a){if(1&i&&t.GBs(x.B4,5),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first)}},inputs:{lookupResult:"lookupResult"},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(i,a){1&i&&t.DNE(0,Uo,50,21,"div",1),2&i&&t.Y8G("ngIf",a.lookupResult)},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,Z.q,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,Pt.U,p.PV,p.vh,p.lG]})}}return n})();const Jo=["form"],qo=n=>({"mt-1":!0,"mt-2":n});function Qo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function Zo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function Wo(n,o){if(1&n&&(t.j41(0,"div"),t.nrm(1,"rtl-ecl-node-lookup",25),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("lookupResult",e.nodeLookupValue)}}function Ko(n,o){if(1&n&&(t.j41(0,"span",23),t.DNE(1,Wo,2,1,"div",24),t.k0s()),2&n){const e=t.XpG(2),i=t.sdS(23);t.R7$(),t.Y8G("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",i)}}function ts(n,o){1&n&&(t.j41(0,"span"),t.EFF(1,' fxFlex="100"'),t.j41(2,"h3"),t.EFF(3,"Error! Unable to find details!"),t.k0s()())}function es(n,o){if(1&n&&(t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.k0s()(),t.j41(4,"div",20),t.DNE(5,Ko,2,2,"span",21)(6,ts,4,0,"span",22),t.k0s()()),2&n){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 ns(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find details!"),t.k0s())}let is=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.actions=s,this.lookupKeyCtrl=new d.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=F.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.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,f.Q)(this.unSubs[0]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{if(e.type===l.Uu.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=e.payload[0]?JSON.parse(JSON.stringify(e.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(e.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"Lookup"===e.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{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,T.zU)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(e){this.resetData(),this.selectedFieldId=e.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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(Q.En))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lookups"]],viewQuery:function(i,a){if(1&i&&t.GBs(Jo,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},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(i,a){if(1&i){const s=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,Qo,2,1,"mat-error",12)(15,Zo,2,1,"mat-error",12),t.k0s(),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(18,"Clear"),t.k0s(),t.j41(19,"button",15),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onLookup())}),t.EFF(20,"Lookup"),t.k0s()()(),t.DNE(21,es,7,3,"div",16),t.k0s()()(),t.DNE(22,ns,2,0,"ng-template",null,2,t.C5r)}2&i&&(t.R7$(7),t.Y8G("value",0),t.R7$(2),t.Y8G("ngClass",t.eq3(7,qo,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),t.R7$(2),t.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),t.R7$(),t.Y8G("formControl",a.lookupKeyCtrl),t.R7$(2),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.required),t.R7$(),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.invalid),t.R7$(6),t.Y8G("ngIf",a.flgSetLookupValue))},dependencies:[p.YU,p.bT,p.ux,p.e1,p.fG,d.qT,d.me,d.BC,d.cb,d.YS,d.cV,d.l_,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,O.fg,g.rl,g.nJ,g.TL,ot.VT,ot._g,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 n})();var as=_(396);let os=(()=>{class n{constructor(e,i){this.store=e,this.eclEffects=i,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,T.XT)()),this.eclEffects.setNewAddress.pipe((0,q.s)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,v.xO)({payload:{data:{address:this.newAddress,addressType:"",component:as.f}}}))},0)})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-receive"]],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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onGenerateAddress()}),t.EFF(3,"Generate Address"),t.k0s()()())},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}}return n})(),ss=(()=>{class n{constructor(e,i){this.store=e,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,v.xO)({payload:{data:{sweepAll:this.sweepAll,component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.nX))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-send"]],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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.openSendFundsModal()}),t.EFF(3),t.k0s()()()),2&i&&(t.R7$(3),t.JRh(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}}return n})();var _t=_(9172),At=_(6354),st=_(850),ls=_(92);const rs=["form"];function cs(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function ms(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer alias is required."),t.k0s())}function ps(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer not found in the list."),t.k0s())}function us(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(4,"mat-autocomplete",34,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(6,cs,2,2,"mat-option",35),t.nI1(7,"async"),t.k0s(),t.DNE(8,ms,2,0,"mat-error",20)(9,ps,2,0,"mat-error",20),t.k0s()}if(2&n){const e=t.sdS(5),i=t.XpG();t.R7$(3),t.Y8G("formControl",i.selectedPeer)("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(7,6,i.filteredPeers)),t.R7$(2),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function ds(n,o){1&n&&t.eu8(0)}function hs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function fs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function _s(n,o){if(1&n&&(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&n){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 gs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Cs(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.channelConnectionError)}}function ys(n,o){if(1&n&&(t.j41(0,"div",41),t.nrm(1,"fa-icon",38),t.DNE(2,Cs,2,1,"span",20),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.channelConnectionError)}}function bs(n,o){if(1&n&&(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&n){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 Fs(n,o){if(1&n&&t.DNE(0,bs,27,6,"mat-expansion-panel",42),2&n){const e=t.XpG();t.Y8G("ngIf",e.peer)}}let Nt=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.dialogRef=i,this.data=a,this.store=s,this.actions=r,this.dataService=m,this.selectedPeer=new d.hs,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.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 u.B,new u.B,new u.B,new u.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(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.settings.unannouncedChannels}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(a=>a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||a.type===l.Uu.FETCH_CHANNELS_ECL)).subscribe(a=>{a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&a.payload.status===l.wn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===l.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let e="",i="";this.sortedPeers=this.peers.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",ei?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,f.Q)(this.unSubs[2]),(0,_t.Z)(""),(0,At.T)(a=>"string"==typeof a?a:a.alias?a.alias:a.nodeId),(0,At.T)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(e){return this.sortedPeers?.filter(i=>0===i.alias?.toLowerCase().indexOf(e?e.toLowerCase():""))}displayFn(e){return e&&e.alias?e.alias:e&&e.nodeId?e.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 e=this.peers?.filter(i=>i.alias?.length===this.selectedPeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===e.length&&e[0].nodeId&&(this.selectedPubkey=e[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(e){this.advancedTitle="Advanced Options",e?this.feeRate&&this.feeRate>0&&(this.advancedTitle=this.advancedTitle+" | Fee (Sats/vByte): "+this.feeRate):this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[3])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}})}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.feeRate&&this.recommendedFee.minimumFee>this.feeRate)return!0;const e={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(e.feeRate=this.feeRate),this.store.dispatch((0,T.vL)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(Q.En),t.rXU(K.u))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(i,a){if(1&i&&t.GBs(rs,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},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(i,a){if(1&i){const s=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 t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",11)(9,"form",12,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onOpenChannel())})("reset",function(){return t.eBV(s),t.Njj(a.resetData())}),t.j41(11,"div",13),t.DNE(12,us,10,8,"mat-form-field",14),t.k0s(),t.DNE(13,ds,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(m){return t.eBV(s),t.DH7(a.fundingAmount,m)||(a.fundingAmount=m),t.Njj(m)}),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,hs,2,0,"mat-error",20)(27,fs,2,1,"mat-error",20),t.k0s(),t.j41(28,"div",21)(29,"mat-slide-toggle",22),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.isPrivate,m)||(a.isPrivate=m),t.Njj(m)}),t.EFF(30,"Private Channel"),t.k0s()()(),t.j41(31,"mat-expansion-panel",23),t.bIt("closed",function(){return t.eBV(s),t.Njj(a.onAdvancedPanelToggle(!0))})("opened",function(){return t.eBV(s),t.Njj(a.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,_s,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(m){return t.eBV(s),t.DH7(a.feeRate,m)||(a.feeRate=m),t.Njj(m)}),t.k0s(),t.j41(45,"mat-hint"),t.EFF(46),t.k0s(),t.DNE(47,gs,2,1,"mat-error",20),t.k0s()()()()()(),t.DNE(48,ys,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,Fs,1,1,"ng-template",null,3,t.C5r)}if(2&i){const s=t.sdS(20),r=t.sdS(55);t.R7$(5),t.JRh(a.alertTitle),t.R7$(7),t.Y8G("ngIf",!a.peer&&a.peers&&a.peers.length>0),t.R7$(),t.Y8G("ngTemplateOutlet",r),t.R7$(6),t.Y8G("step",1e3)("min",1)("max",a.totalBalance),t.R50("ngModel",a.fundingAmount),t.R7$(3),t.SpI("Remaining: ",t.bMT(23,19,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),""),t.R7$(4),t.Y8G("ngIf",null==s.errors?null:s.errors.required),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.max),t.R7$(2),t.R50("ngModel",a.isPrivate),t.R7$(6),t.JRh(a.advancedTitle),t.R7$(2),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(6),t.Y8G("step",1)("min",a.recommendedFee.minimumFee),t.R50("ngModel",a.feeRate),t.R7$(3),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",a.feeRate&&a.feeRate{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.numOfOpenChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0,this.numOfPendingChannels=e.channelsStatus&&e.channelsStatus.pending&&e.channelsStatus.pending.channels?e.channelsStatus.pending.channels:0,this.numOfInactiveChannels=e.channelsStatus&&e.channelsStatus.inactive&&e.channelsStatus.inactive.channels?e.channelsStatus.inactive.channels:0,this.logger.info(e)}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.peers=e.peers}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[5])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Nt}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channels-tables"]],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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onOpenChannel()}),t.EFF(3,"Open Channel"),t.k0s()(),t.j41(4,"div",3)(5,"mat-tab-group",4),t.mxI("selectedIndexChange",function(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(6,"mat-tab"),t.DNE(7,Es,2,1,"ng-template",5),t.k0s(),t.j41(8,"mat-tab"),t.DNE(9,xs,2,1,"ng-template",5),t.k0s(),t.j41(10,"mat-tab"),t.DNE(11,Ls,2,1,"ng-template",5),t.k0s()(),t.j41(12,"div",6),t.nrm(13,"router-outlet"),t.k0s()()()),2&i&&(t.R7$(5),t.R50("selectedIndex",a.activeLink))},dependencies:[h.DJ,h.sA,h.UI,j.$z,wt.k,D.ES,D.mq,D.T8,b.n3]})}}return n})();const vs=n=>({"xs-scroll-y":n}),Rs=(n,o)=>({"mt-2":n,"mt-1":o});function Is(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(4),t.JRh(e.channel.shortChannelId)}}function ks(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(4),t.JRh(t.bMT(5,1,e.channel.state))}}function Ts(n,o){if(1&n&&(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&n){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 ws(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Show Advanced"),t.k0s())}function js(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Hide Advanced"),t.k0s())}function Ds(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",23),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onShowAdvanced())}),t.DNE(1,ws,2,0,"p",24)(2,js,2,0,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.sdS(3),i=t.XpG();t.R7$(),t.Y8G("ngIf",!i.showAdvanced)("ngIfElse",e)}}function Gs(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",25),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Short Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.shortChannelId)}}function Ps(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",26),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.channelId)}}let gt=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.logger=a,this.commonService=s,this.snackBar=r,this.router=m,this.faReceipt=F.Mf0,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=l.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(e){this.snackBar.open("open"===this.channelsType?"Short channel ID "+e+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+e)}onGoToLink(e,i){this.router.navigateByUrl("/ecl/graph/lookups",{state:{lookupType:e,lookupValue:i}}),this.onClose()}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(P.gP),t.rXU(M.h),t.rXU(Gt.UG),t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-information"]],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(i,a){1&i&&(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 a.onClose()}),t.EFF(8,"X"),t.k0s()(),t.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10),t.DNE(12,Is,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,ks,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 a.onGoToLink("0",a.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,Ts,29,14,"div",18),t.j41(55,"div",19),t.DNE(56,Ds,4,2,"button",20)(57,Gs,2,1,"button",21)(58,Ps,2,1,"button",22),t.k0s()()()()()),2&i&&(t.R7$(4),t.Y8G("icon",a.faReceipt),t.R7$(5),t.Y8G("ngClass",t.eq3(22,vs,a.screenSize===a.screenSizeEnum.XS)),t.R7$(3),t.Y8G("ngIf","open"===a.channelsType),t.R7$(5),t.JRh(a.channel.alias),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.channelId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.SpI(" ",a.channel.nodeId," "),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(40,20,a.channel.state)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.announceChannel?"No":"Yes"),t.R7$(5),t.JRh(a.channel.isInitiator?"Yes":"No"),t.R7$(),t.Y8G("inset",!0),t.R7$(),t.Y8G("ngIf",a.showAdvanced&&"open"===a.channelsType),t.R7$(),t.Y8G("ngClass",t.l_i(24,Rs,!a.showAdvanced,a.showAdvanced)),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType))},dependencies:[p.YU,p.bT,w.aY,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,E.MM,Z.q,J.oV,Pt.U,W.N,p.QX,p.PV]})}}return n})();var Ct=_(7673),yt=_(1001),As=_(6949);const nt=(n,o)=>({"small-svg":n,"large-svg":o});function Ns(n,o){1&n&&t.eu8(0)}function Ms(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Bs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function $s(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Vs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Os(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let Hs=(()=>{class n{constructor(e){this.commonService=e,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=l.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{this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(i,a){if(1&i&&t.DNE(0,Ns,1,0,"ng-container",5)(1,Ms,47,5,"ng-template",null,0,t.C5r)(3,Bs,96,5,"ng-template",null,1,t.C5r)(5,$s,68,5,"ng-template",null,2,t.C5r)(7,Vs,53,5,"ng-template",null,3,t.C5r)(9,Os,52,5,"ng-template",null,4,t.C5r),2&i){const s=t.sdS(2),r=t.sdS(4),m=t.sdS(6),I=t.sdS(8),y=t.sdS(10);t.Y8G("ngTemplateOutlet",1===a.stepNumber?s:2===a.stepNumber?r:3===a.stepNumber?m:4===a.stepNumber?I:y)}},dependencies:[p.YU,p.T3,h.DJ,h.sA,h.UI,L.PW,E.Lc,E.dh],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:[As.k]}})}}return n})();const Ys=["stepper"],Xs=()=>[1,2,3,4,5],Us=(n,o)=>({"dot-primary":n,"dot-primary-lighter":o});function zs(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG(2);t.JRh(e.inputFormLabel)}}function Js(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function qs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Qs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){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 Zs(n,o){if(1&n&&(t.j41(0,"mat-option",50),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.Lme("",e.alias," - ",e.shortChannelId,"")}}function Ws(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer is required."),t.k0s())}function Ks(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer not found in the list."),t.k0s())}function tl(n,o){1&n&&t.EFF(0,"Status")}function el(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function nl(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(""!==e.rebalanceStatus.invoice?"check":"close")}}function il(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function al(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.rebalanceStatus.paymentRoute?"check":"close")}}function ol(n,o){if(1&n&&(t.j41(0,"span",42),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",e," ")}}function sl(n,o){if(1&n&&(t.j41(0,"div",7),t.DNE(1,ol,2,1,"span",53),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function ll(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function rl(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function cl(n,o){1&n&&t.nrm(0,"div",7)}function ml(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",54),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function pl(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.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,Js,2,0,"mat-error",29)(43,qs,2,0,"mat-error",29)(44,Qs,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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(49,"mat-autocomplete",32,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(51,Zs,2,3,"mat-option",33),t.nI1(52,"async"),t.k0s(),t.DNE(53,Ws,2,0,"mat-error",29)(54,Ks,2,0,"mat-error",29),t.k0s()(),t.j41(55,"div",34)(56,"button",35),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onRebalance())}),t.EFF(57,"Rebalance"),t.k0s()()()(),t.j41(58,"mat-step",36)(59,"form",23),t.DNE(60,tl,1,0,"ng-template",24),t.j41(61,"div",37),t.DNE(62,el,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,nl,2,1,"mat-icon",41),t.k0s()()(),t.j41(69,"div",7)(70,"span",42),t.EFF(71),t.k0s()()(),t.DNE(72,il,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,al,2,1,"mat-icon",41),t.k0s()()(),t.DNE(79,sl,2,1,"div",5),t.k0s(),t.DNE(80,ll,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,rl,2,1,"mat-icon",41),t.k0s()()(),t.DNE(87,cl,1,0,"div",44),t.k0s()(),t.j41(88,"h4",45),t.EFF(89),t.k0s(),t.j41(90,"div",46),t.DNE(91,ml,2,0,"button",47),t.k0s()()()(),t.j41(92,"div",48)(93,"button",49),t.EFF(94,"Close"),t.k0s()()()()()}if(2&n){const e=t.sdS(50),i=t.XpG(),a=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(15),t.Y8G("icon",i.faInfoCircle),t.R7$(7),t.JRh(t.bMT(23,38,i.selChannel.alias)),t.R7$(5),t.JRh(i.selChannel.shortChannelId),t.R7$(),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",i.inputFormGroup)("editable",i.flgEditable),t.R7$(),t.Y8G("formGroup",i.inputFormGroup),t.R7$(6),t.Y8G("step",100),t.R7$(2),t.Lme("(Local Bal: ",null==i.selChannel?null:i.selChannel.toLocal,", Remaining: ",(null==i.selChannel?null:i.selChannel.toLocal)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.R7$(3),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),t.R7$(4),t.Y8G("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(52,40,i.filteredActiveChannels)),t.R7$(2),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.R7$(4),t.Y8G("stepControl",i.statusFormGroup),t.R7$(),t.Y8G("formGroup",i.statusFormGroup),t.R7$(3),t.Y8G("ngIf",""===i.rebalanceStatus.invoice),t.R7$(5),t.JRh(""===i.rebalanceStatus.invoice?"Searching invoice...":i.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.invoice),t.R7$(3),t.JRh(i.rebalanceStatus.invoice),t.R7$(),t.Y8G("ngIf",!(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error||i.rebalanceStatus.paymentRoute||"pending"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type))),t.R7$(5),t.JRh(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Route failed":i.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.paymentRoute),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("expanded",!!i.rebalanceStatus.paymentStatus),t.R7$(4),t.JRh(i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus)("ngIfElse",a),t.R7$(2),t.JRh(i.rebalanceStatus.paymentStatus?i.rebalanceStatus.paymentStatus&&null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.R7$(2),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function ul(n,o){1&n&&t.eu8(0)}function dl(n,o){if(1&n&&t.DNE(0,ul,1,0,"ng-container",55),2&n){const e=t.XpG(),i=t.sdS(4),a=t.sdS(6);t.Y8G("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?i:a)}}function hl(n,o){if(1&n&&(t.j41(0,"div",7)(1,"span",42),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.SpI("Error: ",e.rebalanceStatus.paymentStatus.error,"")}}function fl(n,o){if(1&n&&(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&n){let e;const i=t.XpG();t.R7$(6),t.JRh(i.rebalanceStatus.paymentStatus.feesPaid?i.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.R7$(5),t.JRh(i.rebalanceStatus.paymentRoute&&""!==i.rebalanceStatus.paymentRoute?null==(e=i.rebalanceStatus.paymentRoute.split(","))?null:e.length:0),t.R7$(7),t.JRh(i.rebalanceStatus.paymentHash),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.paymentId),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.parentId)}}function _l(n,o){if(1&n){const e=t.RV6();t.j41(0,"span",76),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onStepChanged(a))}),t.nrm(1,"p",77),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,Us,i.stepNumber===e,i.stepNumber!==e))}}function gl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",78),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function Cl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function yl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function bl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function Fl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function El(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return a.flgShowInfo=!1,t.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){t.eBV(e);const s=t.XpG();return t.DH7(s.stepNumber,a)||(s.stepNumber=a),t.Njj(a)}),t.k0s()(),t.j41(10,"div",68),t.DNE(11,_l,2,4,"span",69),t.k0s(),t.j41(12,"div",70),t.DNE(13,gl,2,0,"button",71)(14,Cl,2,0,"button",72)(15,yl,2,0,"button",73)(16,bl,2,0,"button",74)(17,Fl,2,0,"button",75),t.k0s()()()}if(2&n){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,Xs)),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 xl=(()=>{class n{constructor(e,i,a,s,r,m,I){this.dialogRef=e,this.data=i,this.logger=a,this.dataService=s,this.formBuilder=r,this.store=m,this.decimalPipe=I,this.faInfoCircle=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){let e="",i="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.channelId!==this.selChannel.channelId&&a.toRemote&&a.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",ei?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,d.k0.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,f.Q)(this.unSubs[0]),(0,_t.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,f.Q)(this.unSubs[1]),(0,_t.Z)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,Ct.of)(this.filterActiveChannels()))})}stepSelectionChanged(e){switch(e.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,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.logger.info(e),this.rebalanceStatus=e,this.flgEditable=!0,this.store.dispatch((0,T.$Q)())},error:e=>{this.logger.error(e),this.rebalanceStatus=e,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(e=>e.toRemote&&e.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&e.channelId!==this.selChannel.channelId&&(0===e.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===e.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 e=this.activeChannels?.filter(i=>i.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));e&&e.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(e[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(e){return e&&e.alias?e.alias:e&&e.shortChannelId?e.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(e){this.animationDirection=e{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(P.gP),t.rXU(K.u),t.rXU(d.ok),t.rXU(R.il),t.rXU(p.QX))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(i,a){if(1&i&&t.GBs(Ys,5),2&i){let s;t.mGM(s=t.lsd())&&(a.stepper=s.first)}},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(i,a){1&i&&t.DNE(0,pl,95,42,"div",5)(1,dl,1,1,"ng-template",null,0,t.C5r)(3,hl,3,1,"ng-template",null,1,t.C5r)(5,fl,33,5,"ng-template",null,2,t.C5r)(7,El,18,10,"div",6),2&i&&(t.Y8G("ngIf",!a.flgShowInfo),t.R7$(7),t.Y8G("ngIf",a.flgShowInfo))},dependencies:[p.YU,p.Sq,p.bT,p.T3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,L.PW,B.tx,j.$z,E.m2,E.MM,Y.GK,Y.Z2,Y.WN,ct.An,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,Z.q,V.HM,X.wT,et.V5,et.Ti,et.M6,st.$3,st.pN,W.N,Hs,p.Jj,p.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:[yt.C]}})}}return n})();const Ll=()=>["all"],Sl=n=>({"error-border":n}),vl=()=>["no_peer"],bt=n=>({width:n}),Rl=n=>({"display-none":n});function Il(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function kl(n,o){1&n&&t.nrm(0,"mat-progress-bar",37)}function Tl(n,o){1&n&&t.nrm(0,"th",38)}function wl(n,o){if(1&n&&(t.j41(0,"span",42),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function jl(n,o){if(1&n&&(t.j41(0,"span",44),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Dl(n,o){if(1&n&&(t.j41(0,"td",39),t.DNE(1,wl,2,1,"span",40)(2,jl,2,1,"span",41),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Gl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Short Channel ID"),t.k0s())}function Pl(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function Al(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Channel ID"),t.k0s())}function Nl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ml(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Alias"),t.k0s())}function Bl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function $l(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Node ID"),t.k0s())}function Vl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Ol(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Initiator"),t.k0s())}function Hl(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Yl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Base Fee (mSats)"),t.k0s())}function Xl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Ul(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Fee Rate (mili mSats)"),t.k0s())}function zl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function Jl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function ql(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Ql(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Zl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Wl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Balance Score"),t.k0s())}function Kl(n,o){if(1&n&&(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&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("value",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 tr(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onChannelUpdate("all"))}),t.EFF(5,"Update Fee Policy"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(7,"Download CSV"),t.k0s()()()()}}function er(n,o){if(1&n){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 s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelUpdate(a))}),t.EFF(7,"Update Fee Policy"),t.k0s(),t.j41(8,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onCircularRebalance(a))}),t.EFF(9,"Circular Rebalance"),t.k0s(),t.j41(10,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!1))}),t.EFF(11,"Close Channel"),t.k0s(),t.j41(12,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(13,"Force Close"),t.k0s()()()()}}function nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No peers connected. Add a peer in order to open a channel."),t.k0s())}function ir(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No channel available."),t.k0s())}function ar(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting channels..."),t.k0s())}function or(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function sr(n,o){if(1&n&&(t.j41(0,"td",59),t.DNE(1,nr,2,0,"p",60)(2,ir,2,0,"p",60)(3,ar,2,0,"p",60)(4,or,2,1,"p",60),t.k0s()),2&n){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 lr(n,o){if(1&n&&t.nrm(0,"tr",61),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Rl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function rr(n,o){1&n&&t.nrm(0,"tr",62)}function cr(n,o){1&n&&t.nrm(0,"tr",63)}let mr=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.router=r,this.camelCaseWithSpaces=m,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.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(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=e.activeChannels,this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{channels:this.activeChannels,selChannel:e,information:this.information},component:xl}}}))}onChannelUpdate(e){"all"!==e&&e?.state&&"NORMAL"!==e?.state||(this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"string"==typeof e&&"all"===e?"Update fee policy for all channels":"Update fee policy for Channel: "+(e?.alias||e?.shortChannelId?e?.alias&&e?.shortChannelId?e?.alias+" ("+e?.shortChannelId+")":e?.alias?e?.alias:e?.shortChannelId:e?.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:l.UN.NUMBER,inputValue:e&&typeof e?.feeBaseMsat<"u"?e?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:l.UN.NUMBER,inputValue:e&&typeof e?.feeProportionalMillionths<"u"?e?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(s=>{if(s){const r=s[0].inputValue,m=s[1].inputValue;let I=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let y="";"all"===e?(this.activeChannels.forEach(G=>{y=y+","+G.nodeId}),y=y.substring(1),I={baseFeeMsat:r,feeRate:m,nodeIds:y}):I={baseFeeMsat:r,feeRate:m,nodeId:e?.nodeId}}else{let y="";"all"===e?(this.activeChannels.forEach(G=>{y=y+","+G.channelId}),y=y.substring(1),I={baseFeeMsat:r,feeRate:m,channelIds:y}):I={baseFeeMsat:r,feeRate:m,channelId:e?.channelId}}this.store.dispatch((0,T.fy)({payload:I}))}}),this.applyFilter())}percentHintFunction(e){return(e/1e4).toString()+"%"}onChannelClose(e,i){this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[6])).subscribe(m=>{m&&this.store.dispatch((0,T.w0)({payload:{channelId:e.channelId,force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"open",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=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 a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(b.Ix),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,Il,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,kl,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,Tl,1,0,"th",13)(20,Dl,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Gl,2,0,"th",16)(23,Pl,2,1,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Al,2,0,"th",16)(26,Nl,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Ml,2,0,"th",16)(29,Bl,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,$l,2,0,"th",16)(32,Vl,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Ol,2,0,"th",16)(35,Hl,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Yl,2,0,"th",22)(38,Xl,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Ul,2,0,"th",22)(41,zl,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Jl,2,0,"th",22)(44,ql,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,Ql,2,0,"th",22)(47,Zl,4,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,Wl,2,0,"th",16)(50,Kl,6,4,"td",14),t.bVm(),t.qex(51,27),t.DNE(52,tr,8,0,"th",28)(53,er,14,0,"td",29),t.bVm(),t.qex(54,30),t.DNE(55,sr,5,4,"td",31),t.bVm(),t.DNE(56,lr,1,3,"tr",32)(57,rr,1,0,"tr",33)(58,cr,1,0,"tr",34),t.k0s()(),t.nrm(59,"mat-paginator",35),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,Ll).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,Sl,""!==a.errorMessage)),t.R7$(40),t.Y8G("matFooterRowDef",t.lJ4(17,vl)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,k.iy,A.ZF,A.Ld,p.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 n})();const pr=()=>["all"],ur=n=>({"error-border":n}),dr=()=>["no_channel"],Mt=n=>({width:n}),hr=n=>({"display-none":n});function fr(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function _r(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function gr(n,o){1&n&&t.nrm(0,"th",35)}function Cr(n,o){if(1&n&&(t.j41(0,"span",39),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function yr(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function br(n,o){if(1&n&&(t.j41(0,"td",36),t.DNE(1,Cr,2,1,"span",37)(2,yr,2,1,"span",38),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Fr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"State"),t.k0s())}function Er(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function xr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Channel ID"),t.k0s())}function Lr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Sr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Alias"),t.k0s())}function vr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.alias)}}function Rr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Node ID"),t.k0s())}function Ir(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function kr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Initiator"),t.k0s())}function Tr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function wr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function jr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Dr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Gr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Pr(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Ar(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",51)(1,"button",52),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function Nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No pending channel available."),t.k0s())}function Mr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting pending channels..."),t.k0s())}function Br(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function $r(n,o){if(1&n&&(t.j41(0,"td",53),t.DNE(1,Nr,2,0,"p",54)(2,Mr,2,0,"p",54)(3,Br,2,1,"p",54),t.k0s()),2&n){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 Vr(n,o){if(1&n&&t.nrm(0,"tr",55),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,hr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Or(n,o){1&n&&t.nrm(0,"tr",56)}function Hr(n,o){1&n&&t.nrm(0,"tr",57)}let Yr=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.camelCaseWithSpaces=s,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=e.pendingChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"pending",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=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 a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,fr,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,_r,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,gr,1,0,"th",13)(20,br,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Fr,2,0,"th",16)(23,Er,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,xr,2,0,"th",16)(26,Lr,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Sr,2,0,"th",16)(29,vr,2,1,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Rr,2,0,"th",16)(32,Ir,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,kr,2,0,"th",16)(35,Tr,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,wr,2,0,"th",22)(38,jr,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Dr,2,0,"th",22)(41,Gr,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Pr,6,0,"th",25)(44,Ar,3,0,"td",26),t.bVm(),t.qex(45,27),t.DNE(46,$r,4,3,"td",28),t.bVm(),t.DNE(47,Vr,1,3,"tr",29)(48,Or,1,0,"tr",30)(49,Hr,1,0,"tr",31),t.k0s()(),t.nrm(50,"mat-paginator",32),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,pr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,ur,""!==a.errorMessage)),t.R7$(31),t.Y8G("matFooterRowDef",t.lJ4(17,dr)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,k.iy,A.ZF,A.Ld,p.QX,p.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return n})();const Xr=()=>["all"],Ur=n=>({"error-border":n}),zr=()=>["no_peer"],Bt=n=>({"mr-0":n}),$t=n=>({width:n}),Jr=n=>({"display-none":n});function qr(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Qr(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function Zr(n,o){1&n&&t.nrm(0,"th",37)}function Wr(n,o){if(1&n&&t.nrm(0,"span",41),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function Kr(n,o){if(1&n&&t.nrm(0,"span",42),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function t1(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,Wr,1,3,"span",39)(2,Kr,1,3,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function e1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Alias"),t.k0s())}function n1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function i1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Node ID"),t.k0s())}function a1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function o1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Network Address"),t.k0s())}function s1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",null==e?null:e.address," ")}}function l1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Channels"),t.k0s())}function r1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.channels)}}function c1(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function m1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onPeerDetach(a))}),t.EFF(1,"Disconnect"),t.k0s()}}function p1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onConnectPeer(a))}),t.EFF(1,"Reconnect"),t.k0s()}}function u1(n,o){if(1&n){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 s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onPeerClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",49),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onOpenChannel(a))}),t.EFF(7,"Open Channel"),t.k0s(),t.DNE(8,m1,2,0,"mat-option",51)(9,p1,2,0,"mat-option",51),t.k0s()()()}if(2&n){const e=o.$implicit;t.R7$(8),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function d1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No connected peer."),t.k0s())}function h1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting peers..."),t.k0s())}function f1(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function _1(n,o){if(1&n&&(t.j41(0,"td",52),t.DNE(1,d1,2,0,"p",53)(2,h1,2,0,"p",53)(3,f1,2,1,"p",53),t.k0s()),2&n){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 g1(n,o){if(1&n&&t.nrm(0,"tr",54),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Jr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function C1(n,o){1&n&&t.nrm(0,"tr",55)}function y1(n,o){1&n&&t.nrm(0,"tr",56)}let b1=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.actions=s,this.commonService=r,this.camelCaseWithSpaces=m,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.faUsers=F.gdJ,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new c.I6([]),this.information={},this.availableBalance=0,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=e.peers,this.loadPeersTable(this.peersData),this.logger.info(e)}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_PEERS_ECL)).subscribe(e=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(e,i){const a=[[{key:"nodeId",value:e.nodeId,title:"Public Key",width:100}],[{key:"address",value:e.address,title:"Address",width:50},{key:"alias",value:e.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(e.state||""),title:"State",width:50},{key:"channels",value:e.channels,title:"Channels",width:50}]];this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:e.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:e.nodeId,message:a}}}))}onConnectPeer(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:e.nodeId?e:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onOpenChannel(e){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:e,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Nt}}}))}onPeerDetach(e){this.store.dispatch(e&&e.channels&&e.channels>0?(0,v.xO)({payload:{data:{type:l.A$.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(e.alias?e.alias:e.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,T.Lc)({payload:{nodeId:e.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.peers.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"state":a=e?.state?.toLowerCase()||"";break;default:a=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===a.indexOf(i):a.includes(i)}}loadPeersTable(e){this.peers=new c.I6(e?[...e]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(Q.En),t.rXU(M.h),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"button",4),t.bIt("click",function(){return t.eBV(s),t.Njj(a.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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(16,"perfect-scrollbar"),t.DNE(17,qr,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(22,"div",15),t.DNE(23,Qr,1,0,"mat-progress-bar",16),t.j41(24,"table",17,1),t.qex(26,18),t.DNE(27,Zr,1,0,"th",19)(28,t1,3,2,"td",20),t.bVm(),t.qex(29,21),t.DNE(30,e1,2,0,"th",22)(31,n1,4,4,"td",20),t.bVm(),t.qex(32,23),t.DNE(33,i1,2,0,"th",22)(34,a1,4,4,"td",20),t.bVm(),t.qex(35,24),t.DNE(36,o1,2,0,"th",22)(37,s1,2,1,"td",20),t.bVm(),t.qex(38,25),t.DNE(39,l1,2,0,"th",22)(40,r1,2,1,"td",20),t.bVm(),t.qex(41,26),t.DNE(42,c1,6,0,"th",27)(43,u1,10,2,"td",28),t.bVm(),t.qex(44,29),t.DNE(45,_1,4,3,"td",30),t.bVm(),t.DNE(46,g1,1,3,"tr",31)(47,C1,1,0,"tr",32)(48,y1,1,0,"tr",33),t.k0s()(),t.nrm(49,"mat-paginator",34),t.k0s()()}2&i&&(t.R7$(8),t.Y8G("icon",a.faUsers),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Xr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",t.eq3(16,Ur,""!==a.errorMessage)),t.R7$(22),t.Y8G("matFooterRowDef",t.lJ4(18,zr)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,k.iy,A.ZF,A.Ld],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return n})();const F1=["queryRoutesForm"],E1=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),Vt=n=>({"max-width":n});function x1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Destination Node ID is required."),t.k0s())}function L1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function S1(n,o){1&n&&t.nrm(0,"mat-progress-bar",23)}function v1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," Alias"),t.k0s())}function R1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.alias)}}function I1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," ID"),t.k0s())}function k1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function T1(n,o){1&n&&(t.j41(0,"th",40)(1,"div",44),t.EFF(2,"Actions"),t.k0s()())}function w1(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",45)(1,"button",46),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onHopClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function j1(n,o){1&n&&t.nrm(0,"tr",47)}function D1(n,o){1&n&&t.nrm(0,"tr",48)}function G1(n,o){if(1&n&&(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,v1,2,0,"th",33)(15,R1,4,4,"td",34),t.bVm(),t.qex(16,35),t.DNE(17,I1,2,0,"th",33)(18,k1,4,4,"td",34),t.bVm(),t.qex(19,36),t.DNE(20,T1,3,0,"th",33)(21,w1,3,0,"td",37),t.bVm(),t.DNE(22,j1,1,0,"tr",38)(23,D1,1,0,"tr",39),t.k0s()()()()()),2&n){const e=o.$implicit,i=o.index,a=t.XpG();t.R7$(5),t.SpI("Route ",i+1,""),t.R7$(2),t.JRh(t.bMT(8,6,e.amount/1e3)),t.R7$(4),t.Y8G("dataSource",a.qrHops[i])("ngClass",t.eq3(8,E1,"error"===a.flgLoading[0])),t.R7$(11),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns)}}let P1=(()=>{class n{constructor(e,i,a){this.store=e,this.eclEffects=i,this.commonService=a,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=F.TBz,this.faExclamationTriangle=F.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new c.I6([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{e&&e.routes&&e.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=e.routes,this.allQRoutes.forEach((i,a)=>{this.qrHops[a]=new c.I6([...i.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,T.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(e){this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:e.alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"nodeId",value:e.nodeId,title:"Node ID",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B),t.rXU(M.h))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(i,a){if(1&i&&t.GBs(F1,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"form",4,0),t.bIt("ngSubmit",function(){t.eBV(s);const m=t.sdS(2);return t.Njj(m.form.valid&&a.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(m){return t.eBV(s),t.DH7(a.nodeId,m)||(a.nodeId=m),t.Njj(m)}),t.k0s(),t.DNE(12,x1,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(m){return t.eBV(s),t.DH7(a.amount,m)||(a.amount=m),t.Njj(m)}),t.k0s(),t.DNE(17,L1,2,0,"mat-error",9),t.k0s(),t.j41(18,"div",12)(19,"button",13),t.bIt("click",function(){return t.eBV(s),t.Njj(a.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,S1,1,0,"mat-progress-bar",19),t.j41(29,"div",20)(30,"div",21),t.DNE(31,G1,24,10,"div",22),t.k0s()()()}2&i&&(t.R7$(4),t.Y8G("icon",a.faExclamationTriangle),t.R7$(6),t.R50("ngModel",a.nodeId),t.R7$(2),t.Y8G("ngIf",!a.nodeId),t.R7$(4),t.Y8G("step",1e3)("min",0),t.R50("ngModel",a.amount),t.R7$(),t.Y8G("ngIf",!a.amount),t.R7$(8),t.Y8G("icon",a.faRoute),t.R7$(3),t.Y8G("ngIf",!0===a.flgLoading[0]),t.R7$(3),t.Y8G("ngForOf",a.allQRoutes))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,Y.GK,Y.Z2,Y.WN,Y.Q6,O.fg,g.rl,g.nJ,g.TL,V.HM,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,tt.V,p.QX]})}}return n})();const A1=()=>["all"],N1=n=>({"error-border":n}),M1=()=>["no_channel"],Ft=n=>({width:n}),B1=n=>({"display-none":n});function $1(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function V1(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function O1(n,o){1&n&&t.nrm(0,"th",37)}function H1(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function Y1(n,o){if(1&n&&(t.j41(0,"span",43),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function X1(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,H1,2,1,"span",39)(2,Y1,2,1,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!e.announceChannel),t.R7$(),t.Y8G("ngIf",e.announceChannel)}}function U1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"State"),t.k0s())}function z1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function J1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Short Channel ID"),t.k0s())}function q1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function Q1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Channel ID"),t.k0s())}function Z1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function W1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Alias"),t.k0s())}function K1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.alias)}}function tc(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Node ID"),t.k0s())}function ec(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function nc(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Initiator"),t.k0s())}function ic(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function ac(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function oc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function sc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function lc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function rc(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Balance Score"),t.k0s())}function cc(n,o){if(1&n&&(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&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function mc(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function pc(n,o){if(1&n){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 s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",55),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(7,"Force Close"),t.k0s()()()()}}function uc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No inactive channel available."),t.k0s())}function dc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting inactive channels..."),t.k0s())}function hc(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function fc(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,uc,2,0,"p",59)(2,dc,2,0,"p",59)(3,hc,2,1,"p",59),t.k0s()),2&n){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 _c(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,B1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function gc(n,o){1&n&&t.nrm(0,"tr",61)}function Cc(n,o){1&n&&t.nrm(0,"tr",62)}let yc=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.camelCaseWithSpaces=r,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=e.inactiveChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(e,i){this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(m=>{m&&this.store.dispatch((0,T.w0)({payload:{channelId:e.channelId||"",force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"inactive",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=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 a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,$1,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,V1,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,O1,1,0,"th",13)(20,X1,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,U1,2,0,"th",16)(23,z1,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,J1,2,0,"th",16)(26,q1,2,1,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Q1,2,0,"th",16)(29,Z1,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,W1,2,0,"th",16)(32,K1,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,tc,2,0,"th",16)(35,ec,4,4,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,nc,2,0,"th",16)(38,ic,2,1,"td",14),t.bVm(),t.qex(39,22),t.DNE(40,ac,2,0,"th",23)(41,oc,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,sc,2,0,"th",23)(44,lc,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,rc,2,0,"th",16)(47,cc,6,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,mc,6,0,"th",27)(50,pc,8,0,"td",28),t.bVm(),t.qex(51,29),t.DNE(52,fc,4,3,"td",30),t.bVm(),t.DNE(53,_c,1,3,"tr",31)(54,gc,1,0,"tr",32)(55,Cc,1,0,"tr",33),t.k0s()(),t.nrm(56,"mat-paginator",34),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,A1).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,N1,""!==a.errorMessage)),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(17,M1)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,k.iy,A.ZF,A.Ld,p.QX,p.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 n})();const bc=()=>["all"],Fc=()=>["no_event"],Ec=n=>({"ml-0":n}),it=n=>({width:n}),xc=n=>({"display-none":n});function Lc(n,o){if(1&n&&(t.j41(0,"div",6),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Sc(n,o){if(1&n&&(t.j41(0,"mat-option",14),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function vc(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(7,"perfect-scrollbar"),t.DNE(8,Sc,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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()()}if(2&n){const e=t.XpG();t.R7$(6),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(3,bc).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter)}}function Rc(n,o){1&n&&t.nrm(0,"mat-progress-bar",42)}function Ic(n,o){1&n&&t.nrm(0,"th",43)}function kc(n,o){if(1&n&&(t.nrm(0,"span",46),t.nI1(1,"camelcase")),2&n){const e=t.XpG().$implicit,i=t.XpG(2);t.FS9("matTooltip",t.bMT(1,2,null==e?null:e.type)),t.Y8G("ngClass",t.eq3(4,Ec,i.screenSize===i.screenSizeEnum.XS))}}function Tc(n,o){if(1&n&&(t.j41(0,"td",44),t.DNE(1,kc,2,6,"span",45),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","payment-relayed"!==(null==e?null:e.type))}}function wc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Date/Time"),t.k0s())}function jc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function Dc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel ID"),t.k0s())}function Gc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelId)}}function Pc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel Short ID"),t.k0s())}function Ac(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.fromShortChannelId)}}function Nc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel"),t.k0s())}function Mc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelAlias)}}function Bc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel ID"),t.k0s())}function $c(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelId)}}function Vc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel Short ID"),t.k0s())}function Oc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.toShortChannelId)}}function Hc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel"),t.k0s())}function Yc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelAlias)}}function Xc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Payment Hash"),t.k0s())}function Uc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function zc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount In (Sats)"),t.k0s())}function Jc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountIn))}}function qc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount Out (Sats)"),t.k0s())}function Qc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountOut))}}function Zc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Fee Earned (Sats)"),t.k0s())}function Wc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function Kc(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function tm(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",56)(1,"button",57),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG(2);return t.Njj(r.onForwardingEventClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function em(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No forwarding history available."),t.k0s())}function nm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting forwarding history..."),t.k0s())}function im(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function am(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,em,2,0,"p",59)(2,nm,2,0,"p",59)(3,im,2,1,"p",59),t.k0s()),2&n){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 om(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,xc,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function sm(n,o){1&n&&t.nrm(0,"tr",61)}function lm(n,o){1&n&&t.nrm(0,"tr",62)}function rm(n,o){if(1&n&&(t.j41(0,"div",15),t.DNE(1,Rc,1,0,"mat-progress-bar",16),t.j41(2,"table",17,0),t.qex(4,18),t.DNE(5,Ic,1,0,"th",19)(6,Tc,2,1,"td",20),t.bVm(),t.qex(7,21),t.DNE(8,wc,2,0,"th",22)(9,jc,3,4,"td",20),t.bVm(),t.qex(10,23),t.DNE(11,Dc,2,0,"th",22)(12,Gc,4,4,"td",20),t.bVm(),t.qex(13,24),t.DNE(14,Pc,2,0,"th",22)(15,Ac,2,1,"td",20),t.bVm(),t.qex(16,25),t.DNE(17,Nc,2,0,"th",22)(18,Mc,4,4,"td",20),t.bVm(),t.qex(19,26),t.DNE(20,Bc,2,0,"th",22)(21,$c,4,4,"td",20),t.bVm(),t.qex(22,27),t.DNE(23,Vc,2,0,"th",22)(24,Oc,2,1,"td",20),t.bVm(),t.qex(25,28),t.DNE(26,Hc,2,0,"th",22)(27,Yc,4,4,"td",20),t.bVm(),t.qex(28,29),t.DNE(29,Xc,2,0,"th",22)(30,Uc,4,4,"td",20),t.bVm(),t.qex(31,30),t.DNE(32,zc,2,0,"th",31)(33,Jc,4,3,"td",20),t.bVm(),t.qex(34,32),t.DNE(35,qc,2,0,"th",31)(36,Qc,4,3,"td",20),t.bVm(),t.qex(37,33),t.DNE(38,Zc,2,0,"th",31)(39,Wc,4,3,"td",20),t.bVm(),t.qex(40,34),t.DNE(41,Kc,6,0,"th",35)(42,tm,3,0,"td",36),t.bVm(),t.qex(43,37),t.DNE(44,am,4,3,"td",38),t.bVm(),t.DNE(45,om,1,3,"tr",39)(46,sm,1,0,"tr",40)(47,lm,1,0,"tr",41),t.k0s()()),2&n){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,Fc)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}function cm(n,o){if(1&n&&t.nrm(0,"mat-paginator",63),2&n){const e=t.XpG();t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Ot=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:l.wn.COMPLETED,action:"FetchPayments"},this.eventsData=e.eventsData.currentValue,e.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),e.selFilter&&!e.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=e.pageSettings.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=e.payments&&e.payments.relayed?e.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(e,i){const a=[[{key:"paymentHash",value:e.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"timestamp",value:Math.round((e.timestamp||0)/1e3),title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"fee",value:(e.amountIn||0)-(e.amountOut||0),title:"Fee Earned (Sats)",width:50,type:l.UN.NUMBER}],[{key:"amountIn",value:e.amountIn,title:"Amount In (Sats)",width:50,type:l.UN.NUMBER},{key:"amountOut",value:e.amountOut,title:"Amount Out (Sats)",width:50,type:l.UN.NUMBER}],[{key:"fromChannelAlias",value:e.fromChannelAlias,title:"From Channel Alias",width:50,type:l.UN.STRING},{key:"fromShortChannelId",value:e.fromShortChannelId,title:"From Short Channel ID",width:50,type:l.UN.STRING}],[{key:"fromChannelId",value:e.fromChannelId,title:"From Channel ID",width:100,type:l.UN.STRING}],[{key:"toChannelAlias",value:e.toChannelAlias,title:"To Channel Alias",width:50,type:l.UN.STRING},{key:"toShortChannelId",value:e.toShortChannelId,title:"To Short Channel ID",width:50,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"To Channel ID",width:100,type:l.UN.STRING}]];"payment-relayed"!==e.type&&a?.unshift([{key:"type",value:this.commonService.camelCase(e.type),title:"Relay Type",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:a}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(e){const i=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column):this.commonService.titleCase(e)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(e.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":a=(e.amountIn-e.amountOut).toString()||"0";break;default:a=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 a.includes(i)}}loadForwardingEventsTable(e){this.forwardingHistoryEvents=new c.I6([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(i,a)=>"fee"===a?i.amountIn-i.amountOut:i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(k.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,Lc,2,1,"div",2)(2,vc,13,4,"div",3)(3,rm,48,8,"div",4)(4,cm,1,3,"mat-paginator",5),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,k.iy,A.ZF,A.Ld,p.QX,p.vh,z.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 n})();const mm=["tableIn"],pm=["tableOut"],um=["paginatorIn"],dm=["paginatorOut"],hm=(n,o)=>({"mt-2":n,"mt-1":o}),fm=()=>["no_incoming_event"],_m=n=>({"mt-2":n}),gm=()=>["no_outgoing_event"],lt=n=>({width:n}),Ht=n=>({"display-none":n});function Cm(n,o){if(1&n&&(t.j41(0,"div",7),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function ym(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function bm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Fm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Em(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function xm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Lm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Sm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function vm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function Rm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Im(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function km(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Tm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No incoming routing peer available."),t.k0s())}function wm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting incoming routing peers..."),t.k0s())}function jm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Dm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,Tm,2,0,"p",42)(2,wm,2,0,"p",42)(3,jm,2,1,"p",42),t.k0s()),2&n){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 Gm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Pm(n,o){1&n&&t.nrm(0,"tr",44)}function Am(n,o){1&n&&t.nrm(0,"tr",45)}function Nm(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function Mm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Bm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function $m(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Vm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Om(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Hm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Ym(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function Xm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Um(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function zm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Jm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No outgoing routing peer available."),t.k0s())}function qm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting outgoing routing peers..."),t.k0s())}function Qm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Zm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,Jm,2,0,"p",42)(2,qm,2,0,"p",42)(3,Qm,2,1,"p",42),t.k0s()),2&n){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 Wm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function Km(n,o){1&n&&t.nrm(0,"tr",44)}function tp(n,o){1&n&&t.nrm(0,"tr",45)}function ep(n,o){if(1&n&&(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,ym,1,0,"mat-progress-bar",14),t.j41(8,"table",15,0),t.qex(10,16),t.DNE(11,bm,2,0,"th",17)(12,Fm,4,4,"td",18),t.bVm(),t.qex(13,19),t.DNE(14,Em,2,0,"th",17)(15,xm,4,4,"td",18),t.bVm(),t.qex(16,20),t.DNE(17,Lm,2,0,"th",21)(18,Sm,4,3,"td",18),t.bVm(),t.qex(19,22),t.DNE(20,vm,2,0,"th",21)(21,Rm,4,3,"td",18),t.bVm(),t.qex(22,23),t.DNE(23,Im,2,0,"th",21)(24,km,4,3,"td",18),t.bVm(),t.qex(25,24),t.DNE(26,Dm,4,3,"td",25),t.bVm(),t.DNE(27,Gm,1,3,"tr",26)(28,Pm,1,0,"tr",27)(29,Am,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,Nm,1,0,"mat-progress-bar",14),t.j41(39,"table",32,2),t.qex(41,16),t.DNE(42,Mm,2,0,"th",17)(43,Bm,4,4,"td",18),t.bVm(),t.qex(44,19),t.DNE(45,$m,2,0,"th",17)(46,Vm,4,4,"td",18),t.bVm(),t.qex(47,20),t.DNE(48,Om,2,0,"th",21)(49,Hm,4,3,"td",18),t.bVm(),t.qex(50,22),t.DNE(51,Ym,2,0,"th",21)(52,Xm,4,3,"td",18),t.bVm(),t.qex(53,23),t.DNE(54,Um,2,0,"th",21)(55,zm,4,3,"td",18),t.bVm(),t.qex(56,33),t.DNE(57,Zm,4,3,"td",25),t.bVm(),t.DNE(58,Wm,1,3,"tr",26)(59,Km,1,0,"tr",27)(60,tp,1,0,"tr",28),t.k0s(),t.nrm(61,"mat-paginator",29,3),t.k0s()()()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngClass",t.l_i(22,hm,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,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),t.R7$(3),t.Y8G("ngClass",t.eq3(26,_m,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,gm)),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 np=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.camelCaseWithSpaces=s,this.nodePageDefs=l.WW,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"totalFee",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.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(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(e)})}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(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(e,i)=>{let a="";return a="all"===this.selFilterByIn?JSON.stringify(e).toLowerCase():"string"==typeof e[this.selFilterByIn]?e[this.selFilterByIn].toLowerCase():"boolean"==typeof e[this.selFilterByIn]?e[this.selFilterByIn]?"yes":"no":e[this.selFilterByIn].toString(),a.includes(i)},this.routingPeersOutgoing.filterPredicate=(e,i)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(e).toLowerCase();break;case"total_amount":case"total_fee":a=(+(e[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof e[this.selFilterByOut]?e[this.selFilterByOut].toLowerCase():"boolean"==typeof e[this.selFilterByOut]?e[this.selFilterByOut]?"yes":"no":e[this.selFilterByOut].toString()}return a.includes(i)}}loadRoutingPeersTable(e){if(e.length>0){const i=this.groupRoutingPeers(e);this.routingPeersIncoming=new c.I6(i[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.I6(i[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(e){const i=[],a=[];return e.forEach(s=>{const r=i.find(I=>I.channelId===s.fromChannelId),m=a.find(I=>I.channelId===s.toChannelId);r?(r.events++,r.totalAmount=+r.totalAmount+ +s.amountIn,r.totalFee=s.amountIn-s.amountOut+ +r.totalFee):i.push({channelId:s.fromChannelId,alias:s.fromChannelAlias,events:1,totalAmount:+s.amountIn,totalFee:s.amountIn-s.amountOut}),m?(m.events++,m.totalAmount=+m.totalAmount+ +s.amountOut,m.totalFee=s.amountIn-s.amountOut+ +m.totalFee):a.push({channelId:s.toChannelId,alias:s.toChannelAlias,events:1,totalAmount:+s.amountOut,totalFee:s.amountIn-s.amountOut})}),[this.commonService.sortDescByKey(i,"totalFee"),this.commonService.sortDescByKey(a,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(z.Qu))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(mm,5,x.B4),t.GBs(pm,5,x.B4),t.GBs(um,5),t.GBs(dm,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sortIn=s.first),t.mGM(s=t.lsd())&&(a.sortOut=s.first),t.mGM(s=t.lsd())&&(a.paginatorIn=s.first),t.mGM(s=t.lsd())&&(a.paginatorOut=s.first)}},features:[t.Jv_([{provide:k.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",4),t.DNE(1,Cm,2,1,"div",5)(2,ep,63,29,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.bT,p.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,V.HM,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,k.iy,A.Ld,p.QX]})}}return n})();function ip(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",8),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let ap=(()=>{class n{constructor(e){this.router=e,this.faChartBar=F.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-reports"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(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,ip,2,3,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),t.k0s()()()),2&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faChartBar),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}}return n})();var Yt=_(6064),Xt=_(4655);function op(n,o){if(1&n&&(t.j41(0,"div",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){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 sp(n,o){1&n&&(t.j41(0,"div",15),t.EFF(1,"No routing report for the selected period"),t.k0s())}function lp(n,o){if(1&n&&(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&n){const e=o.model,i=t.XpG(2);t.R7$(2),t.SpI("Events: ",t.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0),""),t.R7$(3),t.SpI("Fee: ",t.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"),"")}}function rp(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical",16),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,lp,7,7,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){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 cp(n,o){if(1&n&&t.nrm(0,"rtl-ecl-forwarding-history",18),2&n){const e=t.XpG();t.Y8G("pageId","reports")("tableId","routing")("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let mp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.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=l.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.events=e.payments&&e.payments.relayed?e.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(e)}),this.commonService.containerSizeUpdated.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(e,i){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()+" To "+i.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(r=>{Math.floor((r.timestamp||0)/1e3)>=a&&Math.floor((r.timestamp||0)/1e3)0&&"ngx-charts"===e.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(e){this.eventFilterValue=this.reportPeriod===l.rs[1]?e.name+"/"+this.startDate.getFullYear():e.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}prepareEventsReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.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,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.KR[e].days+1:l.KR[e].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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(M.h),t.rXU(R.il))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},decls:17,vars:7,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"],[3,"pageId","tableId","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"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3)(3,"mat-radio-group",4),t.mxI("ngModelChange",function(r){return t.DH7(a.selReportBy,r)||(a.selReportBy=r),r}),t.bIt("change",function(){return a.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,op,4,8,"div",9)(12,sp,2,0,"div",10),t.j41(13,"div",11),t.DNE(14,rp,3,11,"ngx-charts-bar-vertical",12),t.k0s(),t.j41(15,"div",11),t.DNE(16,cp,1,4,"rtl-ecl-forwarding-history",13),t.k0s()()()),2&i&&(t.R7$(3),t.R50("ngModel",a.selReportBy),t.R7$(3),t.FS9("value",a.reportBy.FEES),t.R7$(2),t.FS9("value",a.reportBy.EVENTS),t.R7$(3),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(),t.Y8G("ngIf",a.routingReportData.length<=0||a.filteredEventsBySelectedPeriod.length<=0),t.R7$(2),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(2),t.Y8G("ngIf",a.filteredEventsBySelectedPeriod.length>0))},dependencies:[p.bT,d.BC,d.vS,h.DJ,h.sA,h.UI,ot.VT,ot._g,Yt.L8,Xt.m,Ot,p.QX],data:{animation:[yt.q]}})}}return n})();var pp=_(5085);function up(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){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 dp(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){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 hp(n,o){if(1&n&&(t.j41(0,"div",9),t.DNE(1,up,4,7,"div",10)(2,dp,4,7,"div",10),t.k0s()),2&n){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 fp(n,o){1&n&&(t.j41(0,"div",12),t.EFF(1,"No transactions report for the selected period"),t.k0s())}function _p(n,o){if(1&n&&(t.j41(0,"span",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=o.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 gp(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical-2d",13),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,_p,4,9,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){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 Cp(n,o){if(1&n&&t.nrm(0,"rtl-transactions-report-table",15),2&n){const e=t.XpG();t.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let yp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.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=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(C.KT).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(C.rN))).subscribe(([e,i])=>{this.payments=e.payments.sent?e.payments.sent:[],this.invoices=i.invoices?i.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,f.Q)(this.unSubs[2])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(e){"svg"===e.srcElement.tagName&&e.srcElement.classList.length>0&&"ngx-charts"===e.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(e){this.transactionFilterValue=this.reportPeriod===l.rs[1]?e.series.toString()+"/"+this.startDate.getFullYear():e.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(e,i){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3),r=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const m=this.payments?.filter(y=>y.firstPartTimestamp&&Math.floor(y.firstPartTimestamp/1e3)>=a&&Math.floor(y.firstPartTimestamp/1e3)"received"===y.status&&y.timestamp&&y.timestamp>=a&&y.timestamp{const G=new Date(y.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[G].series[0].value=r[G].series[0].value+y.recipientAmount,r[G].series[0].extra.total=r[G].series[0].extra.total+1,this.transactionsReportSummary}),I?.map(y=>{const G=new Date(1e3*(y.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[G].series[1].value=r[G].series[1].value+y.amountSettled,r[G].series[1].extra.total=r[G].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let y=0;y{const G=Math.floor((Math.floor((y.firstPartTimestamp||0)/1e3)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[G].series[0].value=r[G].series[0].value+y.recipientAmount,r[G].series[0].extra.total=r[G].series[0].extra.total+1,this.transactionsReportSummary}),I?.map(y=>{const G=Math.floor(((y.timestamp||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[G].series[1].value=r[G].series[1].value+y.amountSettled,r[G].series[1].extra.total=r[G].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((e,i)=>i.series[0].extra.total>0||i.series[1].extra.total>0?e.concat({date:i.date,amount_paid:i.series[0].value,num_payments:i.series[0].extra.total,amount_received:i.series[1].value,num_invoices:i.series[1].extra.total}):e,[])}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.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,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.KR[e].days+1:l.KR[e].days}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(P.gP),t.rXU(M.h),t.rXU(R.il))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},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(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3),t.DNE(3,hp,3,3,"div",4)(4,fp,2,0,"div",5),t.j41(5,"div",6),t.DNE(6,gp,3,13,"ngx-charts-bar-vertical-2d",7),t.k0s(),t.j41(7,"div",6),t.DNE(8,Cp,1,5,"rtl-transactions-report-table",8),t.k0s()()()),2&i&&(t.R7$(3),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(),t.Y8G("ngIf",a.transactionsNonZeroReportData.length<=0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0))},dependencies:[p.bT,h.DJ,h.sA,h.UI,Yt.Dl,Xt.m,pp.T,p.QX],data:{animation:[yt.q]}})}}return n})();var N=_(7186),bp=_(13);function Fp(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",9),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Ep=(()=>{class n{constructor(e){this.router=e,this.faSearch=F.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))}}static{this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-graph"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,Fp,2,3,"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&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faSearch),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}}return n})();const xp=[{path:"",component:xt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ka,canActivate:[(0,N.fe)()]},{path:"onchain",component:Co,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:os,canActivate:[(0,N.fe)()]},{path:"send",component:ss,canActivate:[(0,N.fe)()]}]},{path:"connections",component:Fo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Ss,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:mr,canActivate:[(0,N.fe)()]},{path:"pending",component:Yr,canActivate:[(0,N.fe)()]},{path:"inactive",component:yc,canActivate:[(0,N.fe)()]}]},{path:"peers",component:b1,data:{sweepAll:!1},canActivate:[(0,N.fe)()]}]},{path:"transactions",component:xo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Rt,canActivate:[(0,N.fe)()]},{path:"invoices",component:It,canActivate:[(0,N.fe)()]}]},{path:"routing",component:So,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ot,canActivate:[(0,N.fe)()]},{path:"peers",component:np,canActivate:[(0,N.fe)()]}]},{path:"reports",component:ap,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:mp,canActivate:[(0,N.fe)()]},{path:"transactions",component:yp,canActivate:[(0,N.fe)()]}]},{path:"graph",component:Ep,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:is,canActivate:[(0,N.fe)()]},{path:"queryroutes",component:P1,canActivate:[(0,N.fe)()]}]},{path:"**",component:bp.X}]}],Lp=b.iI.forChild(xp);var Sp=_(9029);let vp=(()=>{class n{static{this.\u0275fac=function(i){return new(i||n)}}static{this.\u0275mod=t.$C({type:n,bootstrap:[xt]})}static{this.\u0275inj=t.G2t({imports:[p.MD,Sp.G,Lp]})}}return n})()}}]); \ No newline at end of file diff --git a/frontend/17.d00d31d08d7bad32.js b/frontend/17.d00d31d08d7bad32.js deleted file mode 100644 index 525d4b80..00000000 --- a/frontend/17.d00d31d08d7bad32.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[17],{9017:(vp,Et,_)=>{_.r(Et),_.d(Et,{ECLModule:()=>Sp});var p=_(177),b=_(1188),Ut=_(9881),t=_(4438),h=_(2920),V=_(7575);function zt(n,o){1&n&&t.nrm(0,"mat-progress-bar",3)}let xt=(()=>{class n{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof b.Z:this.loading=!0;break;case i instanceof b.wF:case i instanceof b.j5:case i instanceof b.L6:this.loading=!1}})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-root"]],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(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,zt,1,0,"mat-progress-bar",2),t.nrm(2,"router-outlet",null,0),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",a.loading))},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,b.n3],data:{animation:[Ut.E]}})}return n})();var u=_(1413),f=_(6977),rt=_(3993),Lt=_(614),F=_(5383),l=_(4416),U=_(9647),C=_(2730),G=_(8570),R=_(9640),M=_(2571),w=_(60),L=_(6038),j=_(8834),E=_(5596),St=_(6195),ct=_(9213),mt=_(9115),D=_(6850);const vt=n=>({backgroundColor:n});function Jt(n,o){if(1&n&&t.nrm(0,"span",6),2&n){const e=t.XpG();t.Y8G("ngStyle",t.eq3(1,vt,null==e.information?null:e.information.color))}}function qt(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(4),t.Y8G("ngStyle",t.eq3(4,vt,null==e.information?null:e.information.color)),t.R7$(),t.SpI(" ",t.bMT(6,2,null==e.information?null:e.information.color)," ")}}function Qt(n,o){if(1&n&&(t.j41(0,"span",2),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}let Zt=(()=>{class n{constructor(e){this.commonService=e,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},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(i,a){1&i&&(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,Jt,1,3,"span",3),t.k0s()(),t.DNE(7,qt,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,Qt,2,1,"span",5),t.k0s()()),2&i&&(t.R7$(5),t.SpI(" ",null==a.information?null:a.information.alias," "),t.R7$(),t.Y8G("ngIf",!a.showColorFieldSeparately),t.R7$(),t.Y8G("ngIf",a.showColorFieldSeparately),t.R7$(5),t.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):""),t.R7$(4),t.Y8G("ngForOf",a.chains))},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,p.Pc]})}return n})();function Wt(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(5),t.SpI("",t.bMT(6,5,e.balances.lightning)," Sats"),t.R7$(2),t.FS9("value",e.balances.lightning/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(13,7,e.balances.onchain)," Sats"),t.R7$(2),t.FS9("value",e.balances.onchain/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(20,9,e.balances.total)," Sats")}}function Kt(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let te=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},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(i,a){if(1&i&&t.DNE(0,Wt,21,11,"div",1)(1,Kt,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,p.QX]})}return n})();function ee(n,o){if(1&n&&(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&n){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 ne(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let ie=(()=>{class n{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 i=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/i)*i/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=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},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(i,a){if(1&i&&t.DNE(0,ee,39,18,"div",1)(1,ne,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}return n})();function ae(n,o){if(1&n&&(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&n){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 oe(n,o){if(1&n&&(t.j41(0,"div",9)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let se=(()=>{class n{constructor(){this.channelsStatus={}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},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(i,a){if(1&i&&t.DNE(0,ae,42,18,"div",1)(1,oe,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}return n})();var g=_(6467),Z=_(1997),J=_(4823),A=_(497);const le=()=>["../connections/channels/open"],re=(n,o)=>({filterColumn:n,filterValue:o});function ce(n,o){if(1&n&&(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&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(23,le))("state",t.l_i(24,re,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,11,(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,15,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",i.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,18,(null==e?null:e.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,20,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function me(n,o){if(1&n&&(t.j41(0,"div",17),t.DNE(1,ce,20,27,"div",18),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function pe(n,o){if(1&n&&(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,me,2,1,"div",16),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.R7$(8),t.SpI("",t.i5U(9,7,(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,10,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,12,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("value",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",i)}}function ue(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",26),t.EFF(1," No channels available. "),t.j41(2,"button",27),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.goToChannels())}),t.EFF(3,"Open Channel"),t.k0s()()}}function de(n,o){if(1&n&&(t.j41(0,"div",28)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let he=(()=>{class n{constructor(e){this.router=e,this.faBalanceScale=F.GR4,this.faDumbbell=F.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(i,a){if(1&i&&t.DNE(0,pe,24,15,"div",2)(1,ue,4,0,"ng-template",null,0,t.C5r)(3,de,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.Sq,p.bT,w.aY,h.DJ,h.sA,h.UI,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();const fe=(n,o,e)=>({"mb-4":n,"mb-2":o,"mb-1":e}),_e=()=>["../connections/channels/open"],ge=(n,o)=>({filterColumn:n,filterValue:o});function Ce(n,o){if(1&n&&(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&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toRemote||0,"1.0-0")," Sats")}}function ye(n,o){if(1&n&&(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&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toLocal||0,"1.0-0")," Sats")}}function be(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toRemote||0)/i.totalLiquidity*100:0)}}function Fe(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toLocal||0)/i.totalLiquidity*100:0)}}function Ee(n,o){if(1&n&&(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,Ce,5,4,"mat-hint",17)(6,ye,5,4,"mat-hint",17),t.k0s(),t.DNE(7,be,1,1,"mat-progress-bar",18)(8,Fe,1,1,"mat-progress-bar",18),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(14,_e))("state",t.l_i(15,ge,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,10,e.alias||e.shortChannelId,0,24),"",(e.alias||e.shortChannelId).length>25?"...":""," "),t.R7$(3),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction),t.R7$(),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction)}}function xe(n,o){if(1&n&&(t.j41(0,"div",12),t.DNE(1,Ee,9,18,"div",13),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function Le(n,o){if(1&n&&(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,xe,2,1,"div",11),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.Y8G("ngClass",t.sMw(7,fe,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",i)}}function Se(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",24),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.goToChannels())}),t.EFF(1,"Open Channel"),t.k0s()}}function ve(n,o){if(1&n&&(t.j41(0,"div",22),t.EFF(1," No channels available. "),t.DNE(2,Se,2,0,"button",23),t.k0s()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngIf","Out"===e.direction)}}function Re(n,o){if(1&n&&(t.j41(0,"div",25)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let Ie=(()=>{class n{constructor(e,i){this.router=e,this.commonService=i,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix),t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(i,a){if(1&i&&t.DNE(0,Le,12,11,"div",2)(1,ve,3,1,"ng-template",null,0,t.C5r)(3,Re,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,h.DJ,h.sA,h.UI,L.PW,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX]})}return n})();var q=_(6697),I=_(6695),x=_(2042),c=_(9159),S=_(2798),H=_(5964),k=_(5428),B=_(5351),pt=_(3017),Q=_(4054),et=_(1534),d=_(9417),O=_(9631),W=_(9587);const ke=["paymentReq"];function Te(n,o){if(1&n&&(t.j41(0,"span",23),t.nrm(1,"fa-icon",24),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function we(n,o){if(1&n&&t.nrm(0,"span",25),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function je(n,o){if(1&n&&(t.j41(0,"mat-hint",20),t.EFF(1),t.DNE(2,Te,2,1,"span",21)(3,we,1,1,"span",22),t.EFF(4),t.k0s()),2&n){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 De(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function Pe(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.paymentDecodedHint)}}function Ge(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment amount is required."),t.k0s())}function Ae(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.paymentAmount,a)||(s.paymentAmount=a),t.Njj(a)}),t.bIt("change",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.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,Ge,2,0,"mat-error",14),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.R50("ngModel",e.paymentAmount),t.R7$(4),t.Y8G("ngIf",!e.paymentAmount)}}function Ne(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.paymentError)}}function Me(n,o){if(1&n&&(t.j41(0,"div",27),t.nrm(1,"fa-icon",28),t.DNE(2,Ne,2,1,"span",14),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.paymentError)}}let Be=(()=>{class n{constructor(e,i,a,s,r,m,T,y){this.dialogRef=e,this.store=i,this.eclEffects=a,this.logger=s,this.commonService=r,this.decimalPipe=m,this.actions=T,this.dataService=y,this.faExclamationTriangle=F.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=l.nv[0],this.feeLimitTypes=l.nv,this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_PAYMENT_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"SendPayment"===e.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=e.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,q.s)(1)).subscribe({next:e=>{this.paymentDecoded=e,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:i=>{this.convertedCurrency=i,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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{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:e=>{this.logger.error(e),this.paymentDecodedHintPre="ERROR: "+(e.message?e.message:"string"==typeof e?e:JSON.stringify(e)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,k.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(e){this.paymentRequest=e&&"string"==typeof e?e.trim():e,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,q.s)(1)).subscribe({next:i=>{this.paymentDecoded=i,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{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:i=>{this.logger.error(i),this.paymentDecodedHintPre="ERROR: "+(i.message?i.message:"string"==typeof i?i:JSON.stringify(i)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(e){delete this.paymentDecoded.amount,this.paymentDecoded.amount=e}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(R.il),t.rXU(pt.B),t.rXU(G.gP),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(i,a){if(1&i&&t.GBs(ke,5),2&i){let s;t.mGM(s=t.lsd())&&(a.paymentReq=s.first)}},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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.Njj(a.onPaymentRequestEntry(m))})("matTextareaAutosize",function(){return t.eBV(s),t.Njj(!0)}),t.k0s(),t.DNE(16,je,5,4,"mat-hint",13)(17,De,2,0,"mat-error",14)(18,Pe,2,1,"mat-error",14),t.k0s(),t.DNE(19,Ae,8,2,"mat-form-field",15)(20,Me,3,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(23,"Clear Fields"),t.k0s(),t.j41(24,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onSendPayment())}),t.EFF(25,"Send Payment"),t.k0s()()()()()()}if(2&i){const s=t.sdS(15);t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.Y8G("ngModel",a.paymentRequest),t.R7$(2),t.Y8G("ngIf",a.paymentRequest&&""!==a.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!a.paymentRequest),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.decodeError),t.R7$(),t.Y8G("ngIf",a.zeroAmtInvoice),t.R7$(),t.Y8G("ngIf",""!==a.paymentError)}},dependencies:[p.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,W.N]})}return n})();var Y=_(9454);const $e=["scrollContainer"];function Ve(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(5),t.JRh(e.description)}}function Oe(n,o){1&n&&t.nrm(0,"mat-divider",14)}function He(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-expansion-panel",23),t.bIt("opened",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onExpansionOpen(!0))})("closed",function(){t.eBV(e);const a=t.XpG();return t.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&n){const e=o.$implicit,i=o.index,a=t.XpG();t.Y8G("expanded",a.expansionOpen),t.R7$(4),t.SpI("Part ",i+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 Ye=(()=>{class n{constructor(e,i){this.dialogRef=e,this.data=i,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(e){this.expansionOpen=e}onClose(){this.dialogRef.close(!1)}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(i,a){if(1&i&&t.GBs($e,5),2&i){let s;t.mGM(s=t.lsd())&&(a.scrollContainer=s.first)}},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(i,a){if(1&i){const s=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 t.eBV(s),t.Njj(a.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,Ve,6,1,"div",15)(54,Oe,1,0,"mat-divider",16),t.j41(55,"div",9)(56,"div",2)(57,"mat-accordion"),t.DNE(58,He,36,14,"mat-expansion-panel",17),t.k0s()()()()(),t.j41(59,"div",18)(60,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.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&i&&(t.R7$(16),t.JRh(t.bMT(17,10,a.payment.recipientAmount)),t.R7$(6),t.JRh(t.i5U(23,12,a.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(a.payment.id),t.R7$(7),t.JRh(a.payment.paymentHash),t.R7$(7),t.JRh(a.payment.paymentPreimage),t.R7$(7),t.JRh(a.payment.recipientNodeAlias),t.R7$(2),t.Y8G("ngIf",a.description),t.R7$(),t.Y8G("ngIf",a.description),t.R7$(4),t.Y8G("ngForOf",a.payment.parts),t.R7$(6),t.Y8G("mat-dialog-close",!1))},dependencies:[p.Sq,p.bT,h.DJ,h.sA,h.UI,B.tx,j.$z,j.$0,E.m2,E.MM,Y.BS,Y.GK,Y.Z2,Y.WN,ct.An,Z.q,A.Ld,p.QX,p.vh]})}return n})();var v=_(1771),at=_(7541),z=_(2929),X=_(6600);const Xe=["sendPaymentForm"],Ue=()=>["all"],ze=n=>({"error-border":n}),Je=()=>["no_payment"],$=n=>({width:n}),qe=n=>({"display-none":n});function Qe(n,o){if(1&n&&(t.j41(0,"span",18),t.nrm(1,"fa-icon",19),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Ze(n,o){if(1&n&&t.nrm(0,"span",20),2&n){const e=t.XpG(3);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function We(n,o){if(1&n&&(t.j41(0,"mat-hint",15),t.EFF(1),t.DNE(2,Qe,2,1,"span",16)(3,Ze,1,1,"span",17),t.EFF(4),t.k0s()),2&n){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 Ke(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function tn(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.Njj(s.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return t.eBV(e),t.Njj(!0)}),t.k0s(),t.DNE(7,We,5,4,"mat-hint",10)(8,Ke,2,0,"mat-error",11),t.k0s(),t.j41(9,"div",12)(10,"button",13),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(11,"Clear Field"),t.k0s(),t.j41(12,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSendPayment())}),t.EFF(13,"Send Payment"),t.k0s()()()}if(2&n){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 en(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",21)(1,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openSendPaymentModal())}),t.EFF(2,"Send Payment"),t.k0s()()}}function nn(n,o){if(1&n&&(t.j41(0,"mat-option",66),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function an(n,o){1&n&&t.nrm(0,"mat-progress-bar",67)}function on(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Date/Time"),t.k0s())}function sn(n,o){if(1&n&&(t.j41(0,"td",69),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function ln(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"ID"),t.k0s())}function rn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id)}}function cn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination Node ID"),t.k0s())}function mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId)}}function pn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination"),t.k0s())}function un(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias)}}function dn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Description"),t.k0s())}function hn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function fn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Payment Hash"),t.k0s())}function _n(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function gn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Preimage"),t.k0s())}function Cn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage)}}function yn(n,o){1&n&&(t.j41(0,"th",72),t.EFF(1,"Amount (Sats)"),t.k0s())}function bn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",73),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.recipientAmount))}}function Fn(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function En(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",78)(1,"button",79),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onPaymentClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function xn(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No payment available."),t.k0s())}function Ln(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting payments..."),t.k0s())}function Sn(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function vn(n,o){if(1&n&&(t.j41(0,"td",80),t.DNE(1,xn,2,0,"p",11)(2,Ln,2,0,"p",11)(3,Sn,2,1,"p",11),t.k0s()),2&n){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 Rn(n,o){if(1&n&&(t.j41(0,"span",81),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function In(n,o){if(1&n&&(t.qex(0),t.DNE(1,Rn,3,4,"span",82),t.bVm()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function kn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",81),t.EFF(2),t.k0s(),t.DNE(3,In,2,1,"ng-container",11),t.k0s()),2&n){const e=o.$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 Tn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.id)}}function wn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Tn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function jn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,wn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Dn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelId)}}function Pn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Dn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Gn(n,o){if(1&n&&(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&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function An(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelAlias)}}function Nn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,An,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Nn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Bn(n,o){if(1&n&&(t.j41(0,"span",84),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.amount,"1.0-0")," ")}}function $n(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Bn,3,4,"span",85),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Vn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",84),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.DNE(4,$n,2,1,"span",11),t.k0s()),2&n){const e=o.$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 On(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Hn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,On,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Yn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Hn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Xn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Un(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Xn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function zn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Un,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Jn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function qn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Jn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Qn(n,o){if(1&n&&(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&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Zn(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",89)(1,"button",90),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onPartClick(a,s))}),t.EFF(2),t.k0s()()}if(2&n){const e=o.index;t.R7$(2),t.SpI("View ",e+1,"")}}function Wn(n,o){if(1&n&&(t.j41(0,"div"),t.DNE(1,Zn,3,1,"div",88),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Kn(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",69)(1,"span",86)(2,"button",87),t.bIt("click",function(){const a=t.eBV(e).$implicit;return t.Njj(a.is_expanded=!a.is_expanded)}),t.EFF(3),t.k0s()(),t.DNE(4,Wn,2,1,"div",11),t.k0s()}if(2&n){const e=o.$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 ti(n,o){1&n&&t.nrm(0,"tr",91)}function ei(n,o){if(1&n&&t.nrm(0,"tr",92),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,qe,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function ni(n,o){1&n&&t.nrm(0,"tr",93)}function ii(n,o){1&n&&t.nrm(0,"tr",91)}function ai(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,nn,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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",32)(18,"div",33),t.DNE(19,an,1,0,"mat-progress-bar",34),t.j41(20,"table",35,2),t.qex(22,36),t.DNE(23,on,2,0,"th",37)(24,sn,3,4,"td",38),t.bVm(),t.qex(25,39),t.DNE(26,ln,2,0,"th",37)(27,rn,4,4,"td",38),t.bVm(),t.qex(28,40),t.DNE(29,cn,2,0,"th",37)(30,mn,4,4,"td",38),t.bVm(),t.qex(31,41),t.DNE(32,pn,2,0,"th",37)(33,un,4,4,"td",38),t.bVm(),t.qex(34,42),t.DNE(35,dn,2,0,"th",37)(36,hn,4,4,"td",38),t.bVm(),t.qex(37,43),t.DNE(38,fn,2,0,"th",37)(39,_n,4,4,"td",38),t.bVm(),t.qex(40,44),t.DNE(41,gn,2,0,"th",37)(42,Cn,4,4,"td",38),t.bVm(),t.qex(43,45),t.DNE(44,yn,2,0,"th",46)(45,bn,4,3,"td",38),t.bVm(),t.qex(46,47),t.DNE(47,Fn,6,0,"th",48)(48,En,3,0,"td",49),t.bVm(),t.qex(49,50),t.DNE(50,vn,4,3,"td",51),t.bVm(),t.qex(51,52),t.DNE(52,kn,4,2,"td",38),t.bVm(),t.qex(53,53),t.DNE(54,jn,5,5,"td",38),t.bVm(),t.qex(55,54),t.DNE(56,Gn,5,5,"td",38),t.bVm(),t.qex(57,55),t.DNE(58,Mn,5,5,"td",38),t.bVm(),t.qex(59,56),t.DNE(60,Vn,5,5,"td",38),t.bVm(),t.qex(61,57),t.DNE(62,Yn,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,Qn,5,5,"td",38),t.bVm(),t.qex(67,60),t.DNE(68,Kn,5,2,"td",38),t.bVm(),t.DNE(69,ti,1,0,"tr",61)(70,ei,1,3,"tr",62)(71,ni,1,0,"tr",63)(72,ii,1,0,"tr",64),t.k0s()()(),t.nrm(73,"mat-paginator",65),t.k0s()}if(2&n){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,Ue).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,Je)),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 Rt=(()=>{class n{constructor(e,i,a,s,r,m,T,y){this.logger=e,this.commonService=i,this.store=a,this.rtlEffects=s,this.decimalPipe=r,this.dataService=m,this.datePipe=T,this.camelCaseWithSpaces=y,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"firstPartTimestamp",sortOrder:l.oi.DESCENDING},this.faHistory=F.Int,this.newlyAddedPayment="",this.information={},this.payments=new c.I6([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(i=>this.partColumns.push("group_"+i)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.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,k.CK)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=e.payments&&e.payments.sent&&e.payments.sent.length>0?e.payments.sent:[],this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.payments.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.firstPartTimestamp?this.datePipe.transform(new Date(e.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"firstPartTimestamp":a=this.datePipe.transform(new Date(e.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=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 a.includes(i)}}loadPaymentsTable(e){this.payments=new c.I6(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(i,a)=>{switch(a){case"firstPartTimestamp":return this.commonService.sortByKey(i.parts,"timestamp","number",this.sort?.direction),i.firstPartTimestamp;case"id":return this.commonService.sortByKey(i.parts,"id","string",this.sort?.direction),i.id;case"recipientNodeAlias":return this.commonService.sortByKey(i.parts,"toChannelAlias","string",this.sort?.direction),i.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(i.parts,"amount","number",this.sort?.direction),i.recipientAmount;default:return i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]: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,q.s)(1)).subscribe(e=>{this.paymentDecoded=e,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,v.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(i=>{i&&(this.store.dispatch((0,k.Fd)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,v.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.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:l.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(a=>{a&&(this.paymentDecoded.amount=a[0].inputValue,this.store.dispatch((0,k.Fd)({payload:{invoice:this.paymentRequest,amountMsat:1e3*a[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(e){this.paymentRequest=e,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,q.s)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.amount?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[4])).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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{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,v.xO)({payload:{data:{component:Be}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(e,i){return i.parts&&i.parts.length>1}onPaymentClick(e){e.paymentHash&&""!==e.paymentHash.trim()?this.dataService.decodePayments(e.paymentHash).pipe((0,q.s)(1)).subscribe({next:i=>{setTimeout(()=>{this.showPaymentView(e,i.length&&i.length>0?i[0]:[])},0)},error:i=>{this.showPaymentView(e,[])}}):this.showPaymentView(e,[])}showPaymentView(e,i){this.store.dispatch((0,v.xO)({payload:{data:{sentPaymentInfo:i,payment:e,component:Ye}}}))}onPartClick(e,i){i.paymentHash&&""!==i.paymentHash.trim()?this.dataService.decodePayments(i.paymentHash).pipe((0,q.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPartView(e,i,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPartView(e,i,[])}}):this.showPartView(e,i,[])}showPartView(e,i,a){const s=[[{key:"paymentHash",value:i.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"paymentPreimage",value:i.paymentPreimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"Channel",width:100,type:l.UN.STRING}],[{key:"id",value:e.id,title:"Part ID",width:50,type:l.UN.STRING},{key:"timestamp",value:e.timestamp,title:"Time",width:50,type:l.UN.DATE_TIME}],[{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"feesPaid",value:e.feesPaid,title:"Fee (Sats)",width:50,type:l.UN.NUMBER}]];a&&a.length>0&&a[0].paymentRequest&&a[0].paymentRequest.description&&""!==a[0].paymentRequest.description&&s.splice(3,0,[{key:"description",value:a[0].paymentRequest.description,title:"Description",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Part Information",message:s}}}))}onPageChange(e){this.store.dispatch((0,k.CK)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const e=JSON.parse(JSON.stringify(this.payments.data)),i=e?.reduce((a,s)=>(s.paymentHash&&""!==s.paymentHash.trim()&&(a=""===a?s.paymentHash:a+","+s.paymentHash),a),"");this.dataService.decodePayments(i).pipe((0,f.Q)(this.unSubs[5])).subscribe(a=>{a.forEach((r,m)=>{r.length>0&&r[0].paymentRequest&&r[0].paymentRequest.description&&""!==r[0].paymentRequest.description&&(e[m].description=r[0].paymentRequest.description)});const s=e?.reduce((r,m)=>r.concat(m),[]);this.commonService.downloadFile(s,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(at.H),t.rXU(p.QX),t.rXU(et.u),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(i,a){if(1&i&&(t.GBs(Xe,5),t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,tn,14,3,"form",4)(2,en,3,0,"div",5)(3,ai,74,21,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.ZF,A.Ld,p.QX,p.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 n})();var K=_(6114);function oi(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function si(n,o){1&n&&(t.j41(0,"span",29),t.EFF(1,"= "),t.k0s())}function li(n,o){if(1&n&&(t.j41(0,"span",30),t.nrm(1,"fa-icon",31),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function ri(n,o){if(1&n&&t.nrm(0,"span",32),2&n){const e=t.XpG();t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function ci(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(t.bMT(2,2,e))}}function mi(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.invoiceError)}}function pi(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.DNE(2,mi,2,1,"span",11),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.invoiceError)}}let ui=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.store=a,this.decimalPipe=s,this.commonService=r,this.actions=m,this.faExclamationTriangle=F.zpE,this.convertedCurrency=null,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,f.Q)(this.unSubs[2]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===e.payload.action&&(e.payload.status===l.wn.ERROR&&(this.invoiceError=e.payload.message),e.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(e){if(this.invoiceError="",!this.description)return!0;let i=this.expiry?this.expiry:l.It;this.expiry&&this.selTimeUnit!==l.F7.SECS&&(i=this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS));let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.iO)({payload:a}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onTimeUnitChange(e){this.expiry&&this.selTimeUnit!==e.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,e.value)),this.selTimeUnit=e.value}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-create-invoices"]],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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.description,m)||(a.description=m),t.Njj(m)}),t.k0s(),t.DNE(15,oi,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(m){return t.eBV(s),t.DH7(a.invoiceValue,m)||(a.invoiceValue=m),t.Njj(m)}),t.bIt("keyup",function(){return t.eBV(s),t.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(21,"span",15),t.EFF(22,"Sats "),t.k0s(),t.j41(23,"mat-hint",16),t.DNE(24,si,2,0,"span",17)(25,li,2,1,"span",18)(26,ri,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(m){return t.eBV(s),t.DH7(a.expiry,m)||(a.expiry=m),t.Njj(m)}),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(m){return t.eBV(s),t.Njj(a.onTimeUnitChange(m))}),t.DNE(37,ci,3,4,"mat-option",24),t.k0s()()(),t.DNE(38,pi,3,2,"div",25),t.j41(39,"div",26)(40,"button",27),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(41,"Clear Field"),t.k0s(),t.j41(42,"button",28),t.bIt("click",function(){t.eBV(s);const m=t.sdS(10);return t.Njj(a.onAddInvoice(m))}),t.EFF(43,"Create Invoice"),t.k0s()()()()()()}2&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",a.description),t.R7$(),t.Y8G("ngIf",!a.description),t.R7$(5),t.Y8G("step",100)("min",1),t.R50("ngModel",a.invoiceValue),t.R7$(4),t.Y8G("ngIf",""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"FA"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"SVG"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.SpI(" ",a.invoiceValueHint," "),t.R7$(4),t.Y8G("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),t.R50("ngModel",a.expiry),t.R7$(2),t.SpI("",t.bMT(34,17,a.selTimeUnit)," "),t.R7$(3),t.Y8G("value",a.selTimeUnit),t.R7$(),t.Y8G("ngForOf",a.timeUnits),t.R7$(),t.Y8G("ngIf",""!==a.invoiceError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,S.VO,X.wT,W.N,K.V,p.PV]})}return n})();var di=_(6439);const hi=()=>["all"],fi=n=>({"error-border":n}),_i=()=>["no_invoice"],ut=n=>({"mr-0":n}),dt=n=>({width:n}),gi=n=>({"display-none":n});function Ci(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function yi(n,o){1&n&&(t.j41(0,"span",21),t.EFF(1,"= "),t.k0s())}function bi(n,o){if(1&n&&(t.j41(0,"span",22),t.nrm(1,"fa-icon",23),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Fi(n,o){if(1&n&&t.nrm(0,"span",24),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Ei(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.description,a)||(s.description=a),t.Njj(a)}),t.k0s(),t.DNE(6,Ci,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){t.eBV(e);const s=t.XpG();return t.DH7(s.invoiceValue,a)||(s.invoiceValue=a),t.Njj(a)}),t.bIt("keyup",function(){t.eBV(e);const a=t.XpG();return t.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,yi,2,0,"span",15)(16,bi,2,1,"span",16)(17,Fi,1,1,"span",17),t.EFF(18),t.k0s()(),t.j41(19,"div",18)(20,"button",19),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(21,"Clear Field"),t.k0s(),t.j41(22,"button",20),t.bIt("click",function(){t.eBV(e);const a=t.sdS(1),s=t.XpG();return t.Njj(s.onAddInvoice(a))}),t.EFF(23,"Create Invoice"),t.k0s()()()}if(2&n){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 xi(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",25)(1,"button",26),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openCreateInvoiceModal())}),t.EFF(2,"Create Invoice"),t.k0s()()}}function Li(n,o){if(1&n&&(t.j41(0,"mat-option",63),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Si(n,o){1&n&&t.nrm(0,"mat-progress-bar",64)}function vi(n,o){1&n&&t.nrm(0,"th",65)}function Ri(n,o){if(1&n&&t.nrm(0,"span",70),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ii(n,o){if(1&n&&t.nrm(0,"span",71),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function ki(n,o){if(1&n&&t.nrm(0,"span",72),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ti(n,o){if(1&n&&(t.j41(0,"td",66),t.DNE(1,Ri,1,3,"span",67)(2,Ii,1,3,"span",68)(3,ki,1,3,"span",69),t.k0s()),2&n){const e=o.$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 wi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Created"),t.k0s())}function ji(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Di(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Expiry"),t.k0s())}function Pi(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Gi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Settled"),t.k0s())}function Ai(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Ni(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Node ID"),t.k0s())}function Mi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Bi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Description"),t.k0s())}function $i(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function Vi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Payment Hash"),t.k0s())}function Oi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Hi(n,o){1&n&&(t.j41(0,"th",76),t.EFF(1,"Amount (Sats)"),t.k0s())}function Yi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amount?t.i5U(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function Xi(n,o){1&n&&(t.j41(0,"th",78),t.EFF(1," Amount Settled (Sats)"),t.k0s())}function Ui(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amountSettled?t.i5U(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function zi(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Ji(n,o){if(1&n){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=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onInvoiceClick(a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",82),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onRefreshInvoice(a))}),t.EFF(7,"Refresh"),t.k0s()()()()}}function qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No invoice available."),t.k0s())}function Qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting invoices..."),t.k0s())}function Zi(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Wi(n,o){if(1&n&&(t.j41(0,"td",85),t.DNE(1,qi,2,0,"p",10)(2,Qi,2,0,"p",10)(3,Zi,2,1,"p",10),t.k0s()),2&n){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 Ki(n,o){if(1&n&&t.nrm(0,"tr",86),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,gi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function ta(n,o){1&n&&t.nrm(0,"tr",87)}function ea(n,o){1&n&&t.nrm(0,"tr",88)}function na(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Li,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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",37),t.DNE(18,Si,1,0,"mat-progress-bar",38),t.j41(19,"table",39,2),t.qex(21,40),t.DNE(22,vi,1,0,"th",41)(23,Ti,4,3,"td",42),t.bVm(),t.qex(24,43),t.DNE(25,wi,2,0,"th",44)(26,ji,3,4,"td",42),t.bVm(),t.qex(27,45),t.DNE(28,Di,2,0,"th",44)(29,Pi,3,4,"td",42),t.bVm(),t.qex(30,46),t.DNE(31,Gi,2,0,"th",44)(32,Ai,3,4,"td",42),t.bVm(),t.qex(33,47),t.DNE(34,Ni,2,0,"th",44)(35,Mi,4,4,"td",42),t.bVm(),t.qex(36,48),t.DNE(37,Bi,2,0,"th",44)(38,$i,4,4,"td",42),t.bVm(),t.qex(39,49),t.DNE(40,Vi,2,0,"th",44)(41,Oi,4,4,"td",42),t.bVm(),t.qex(42,50),t.DNE(43,Hi,2,0,"th",51)(44,Yi,4,4,"td",42),t.bVm(),t.qex(45,52),t.DNE(46,Xi,2,0,"th",53)(47,Ui,4,4,"td",42),t.bVm(),t.qex(48,54),t.DNE(49,zi,6,0,"th",55)(50,Ji,8,0,"td",56),t.bVm(),t.qex(51,57),t.DNE(52,Wi,4,3,"td",58),t.bVm(),t.DNE(53,Ki,1,3,"tr",59)(54,ta,1,0,"tr",60)(55,ea,1,0,"tr",61),t.k0s()(),t.nrm(56,"mat-paginator",62),t.k0s()}if(2&n){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,hi).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,fi,""!==e.errorMessage)),t.R7$(34),t.Y8G("matFooterRowDef",t.lJ4(18,_i)),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=(()=>{class n{constructor(e,i,a,s,r,m,T){this.logger=e,this.store=i,this.decimalPipe=a,this.commonService=s,this.datePipe=r,this.actions=m,this.camelCaseWithSpaces=T,this.calledFrom="transactions",this.faHistory=F.Int,this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"expiresAt",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new c.I6([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.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,k.Do)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.rN).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=e.invoices&&e.invoices.length>0?e.invoices:[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SET_LOOKUP_ECL&&this.invoiceJSONArr&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.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,v.xO)({payload:{data:{pageSize:this.pageSize,component:ui}}}))}onAddInvoice(e){if(!this.description)return!0;const i=this.expiry?this.expiry:l.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.iO)({payload:a})),this.resetData()}onInvoiceClick(e){this.store.dispatch((0,v.xO)({payload:{data:{invoice:e,newlyAdded:!1,component:di.Z}}}))}onRefreshInvoice(e){this.store.dispatch((0,k.Yi)({payload:e.paymentHash}))}updateInvoicesData(e){this.invoiceJSONArr=this.invoiceJSONArr?.map(i=>i.paymentHash===e.paymentHash?e:i)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.invoices.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"status":a=e?.status&&"expired"!==e?.status&&"unknown"!==e?.status?e.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":a=e[this.selFilterBy]?.toString()||"-";break;default:a=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===a.indexOf(i):a.includes(i)}}loadInvoicesTable(e){this.invoices=new c.I6(e?[...e]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]: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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[5])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onPageChange(e){this.store.dispatch((0,k.Do)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(p.vh),t.rXU(Q.En),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,Ei,24,9,"form",4)(2,xi,3,0,"div",5)(3,na,57,19,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,K.V,p.QX,p.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const kt=n=>({"dashboard-card-content":!0,"error-border":n}),ia=n=>({"p-0":n});function aa(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(11);t.Y8G("matMenuTriggerFor",e)}}function oa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG().$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function sa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){t.eBV(e);const a=t.XpG(3);return t.Njj(a.onsortChannelsBy())}),t.EFF(1),t.k0s()}if(2&n){const e=t.XpG(3);t.R7$(),t.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score","")}}function la(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ra(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",31),2&n){const e=t.XpG(3);t.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function ca(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ma(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-capacity-info",33),2&n){const e=t.XpG(3);t.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function pa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-fee-info",34),2&n){const e=t.XpG(3);t.Y8G("fees",e.fees)("errorMessage",e.errorMessages[1])}}function ua(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-status-info",35),2&n){const e=t.XpG(3);t.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function da(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function ha(n,o){if(1&n&&(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,aa,3,1,"button",15),t.j41(10,"mat-menu",16,1),t.DNE(12,oa,2,1,"button",17)(13,sa,2,1,"button",18),t.k0s()()()(),t.j41(14,"mat-card-content",19),t.DNE(15,la,1,0,"mat-progress-bar",20),t.j41(16,"div",21),t.DNE(17,ra,1,2,"rtl-ecl-node-info",22)(18,ca,1,2,"rtl-ecl-balances-info",23)(19,ma,1,4,"rtl-ecl-channel-capacity-info",24)(20,pa,1,2,"rtl-ecl-fee-info",25)(21,ua,1,2,"rtl-ecl-channel-status-info",26)(22,da,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=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.FS9("fxFlex","capacity"===e.id?90:70),t.Y8G("ngClass",t.eq3(16,kt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===e.id&&i.apiCallStatusFees.status===i.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 fa(n,o){if(1&n&&(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,ha,23,18,"mat-grid-tile",10),t.k0s()()),2&n){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 _a(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(9);t.Y8G("matMenuTriggerFor",e)}}function ga(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Ca(n,o){if(1&n&&(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,_a,3,1,"button",15),t.j41(8,"mat-menu",16,2),t.DNE(10,ga,2,1,"button",17),t.k0s()()()()),2&n){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 ya(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ba(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",44),2&n){const e=t.XpG(3);t.Y8G("information",e.information)}}function Fa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Ea(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","In")("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function xa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","Out")("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function La(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Sa(n,o){if(1&n&&(t.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),t.nrm(3,"rtl-ecl-lightning-invoices",49),t.k0s(),t.j41(4,"mat-tab",50),t.nrm(5,"rtl-ecl-lightning-payments",51),t.k0s()(),t.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),t.EFF(9,"more_vert"),t.k0s()(),t.j41(10,"mat-menu",16,3),t.DNE(12,La,2,1,"button",17),t.k0s()()()),2&n){const e=t.sdS(11),i=t.XpG().$implicit;t.R7$(3),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("matMenuTriggerFor",e),t.R7$(5),t.Y8G("ngForOf",i.goToOptions)}}function va(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function Ra(n,o){if(1&n&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",38),t.DNE(2,Ca,11,4,"mat-card-header",39),t.j41(3,"mat-card-content",40),t.DNE(4,ya,1,0,"mat-progress-bar",20),t.j41(5,"div",21),t.DNE(6,ba,1,1,"rtl-ecl-node-info",41)(7,Fa,1,2,"rtl-ecl-balances-info",23)(8,Ea,1,4,"rtl-ecl-channel-liquidity-info",42)(9,xa,1,4,"rtl-ecl-channel-liquidity-info",42)(10,Sa,13,4,"span",43)(11,va,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(),t.Y8G("ngClass",t.eq3(13,ia,"transactions"===e.id)),t.R7$(),t.Y8G("ngIf","transactions"!==e.id),t.R7$(),t.FS9("fxFlex","transactions"===e.id?100:"balance"===e.id?70:90),t.Y8G("ngClass",t.eq3(15,kt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.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 Ia(n,o){if(1&n&&(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,Ra,12,17,"mat-grid-tile",10),t.k0s()),2&n){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 ka=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.router=s,this.faSmile=Lt.Qpm,this.faFrown=Lt.wB1,this.faAngleDoubleDown=F.WxX,this.faAngleDoubleUp=F.$sC,this.faChartPie=F.W1p,this.faBolt=F.zm_,this.faServer=F.D6w,this.faNetworkWired=F.eGi,this.userPersonaEnum=l.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:l.wn.COMPLETED},this.apiCallStatusFees={status:l.wn.COMPLETED},this.apiCallStatusOCBal={status:l.wn.COMPLETED},this.apiCallStatusAllChannels={status:l.wn.COMPLETED},this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.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===l.f7.SM||this.screenSize===l.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(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.b_).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=e.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=e.information}),this.store.select(C.oR).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessages[1]="",this.apiCallStatusFees=e.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=e.fees}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[3]),(0,rt.E)(this.store.select(C.DW))).subscribe(([e,i])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=e.apiCallStatus,this.apiCallStatusOCBal=i.apiCallStatus,this.apiCallStatusAllChannels.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=e.activeChannels,this.onchainBalance=i.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=e.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const a=e.lightningBalance.localBalance?+e.lightningBalance.localBalance:0,s=e.lightningBalance.remoteBalance?+e.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:a,remoteBalance:s,balancedness:+(1-Math.abs((a-s)/(a+s))).toFixed(3)},this.channelsStatus=e.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(m=>(m.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(m=>(m.toLocal||0)>0),"toLocal"))),this.channels.forEach(m=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(m.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(m.toLocal||0)}),this.logger.info(e)})}onNavigateTo(e){this.router.navigateByUrl("/ecl/"+e)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((e,i)=>{const a=+(e.toLocal||0)+ +(e.toRemote||0),s=+(i.toLocal||0)+ +(i.toRemote||0);return a>s?-1:a{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-home"]],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",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","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"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(i,a){if(1&i&&t.DNE(0,fa,7,4,"div",4)(1,Ia,6,4,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",(null==a.selNode?null:a.selNode.settings.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,p.ux,p.e1,p.fG,w.aY,h.DJ,h.sA,h.UI,L.PW,j.iY,E.RN,E.m2,E.MM,E.dh,St.B_,St.NS,ct.An,mt.kk,mt.fb,mt.Cp,V.HM,D.mq,D.T8,Zt,te,ie,se,he,Ie,Rt,It]})}return n})();const Ta=["form"];function wa(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Bitcoin address is required."),t.k0s())}function ja(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.amountError)}}function Da(n,o){if(1&n&&(t.j41(0,"mat-option",29),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e)}}function Pa(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Target Confirmation Blocks is required."),t.k0s())}function Ga(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.sendFundError)}}function Aa(n,o){if(1&n&&(t.j41(0,"div",30),t.nrm(1,"fa-icon",31),t.DNE(2,Ga,2,1,"span",14),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.sendFundError)}}let Tt=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.logger=i,this.store=a,this.commonService=s,this.decimalPipe=r,this.actions=m,this.faExclamationTriangle=F.zpE,this.addressTypes=[],this.selectedAddress=l.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=l.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.k,this.amountError="Amount is Required.",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(e=>{e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,v.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"SendOnchainFunds"===e.payload.action&&(this.sendFundError=e.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==l.BQ.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.transaction.amount=parseInt(e[l.BQ.SATS]),this.selAmountUnit=l.BQ.SATS,this.store.dispatch((0,k.Lz)({payload:this.transaction}))},error:e=>{this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+e}}):this.store.dispatch((0,k.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(e){const i=this,a=this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit;let s=e.value===this.amountUnits[2]?l.BQ.OTHER:e.value;this.transaction.amount&&this.selAmountUnit!==e.value&&this.commonService.convertCurrency(this.transaction.amount,a,s,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:r=>{this.selAmountUnit=e.value,i.transaction.amount=+i.decimalPipe.transform(r[s],i.currencyUnitFormats[s]).replace(/,/g,"")},error:r=>{this.amountError="Conversion Error: "+r,this.selAmountUnit=a,s=a}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(i,a){if(1&i&&t.GBs(Ta,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:42,vars:15,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"],[1,"padding-gap-x-large"],["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"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(i,a){if(1&i){const s=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)(9,"form",11,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onSendFunds())})("reset",function(){return t.eBV(s),t.Njj(a.resetData())}),t.j41(11,"mat-form-field",12)(12,"mat-label"),t.EFF(13,"Bitcoin Address"),t.k0s(),t.j41(14,"input",13,1),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.address,m)||(a.transaction.address=m),t.Njj(m)}),t.k0s(),t.DNE(16,wa,2,0,"mat-error",14),t.k0s(),t.j41(17,"mat-form-field",15)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",16,2),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.amount,m)||(a.transaction.amount=m),t.Njj(m)}),t.k0s(),t.j41(22,"span",17),t.EFF(23),t.k0s(),t.DNE(24,ja,2,1,"mat-error",14),t.k0s(),t.j41(25,"mat-form-field",18)(26,"mat-select",19),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.onAmountUnitChange(m))}),t.DNE(27,Da,2,2,"mat-option",20),t.k0s()(),t.j41(28,"div",21)(29,"mat-form-field",22)(30,"mat-label"),t.EFF(31,"Target Confirmation Blocks"),t.k0s(),t.j41(32,"input",23,3),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.blocks,m)||(a.transaction.blocks=m),t.Njj(m)}),t.k0s(),t.DNE(34,Pa,2,0,"mat-error",14),t.k0s()(),t.nrm(35,"div",24),t.DNE(36,Aa,3,2,"div",25),t.j41(37,"div",26)(38,"button",27),t.EFF(39,"Clear Fields"),t.k0s(),t.j41(40,"button",28),t.EFF(41,"Send Funds"),t.k0s()()()()()()}2&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",a.transaction.address),t.R7$(2),t.Y8G("ngIf",!a.transaction.address),t.R7$(4),t.Y8G("step",100)("min",0),t.R50("ngModel",a.transaction.amount),t.R7$(3),t.SpI("",a.selAmountUnit," "),t.R7$(),t.Y8G("ngIf",!a.transaction.amount),t.R7$(2),t.Y8G("value",a.selAmountUnit),t.R7$(),t.Y8G("ngForOf",a.amountUnits),t.R7$(5),t.Y8G("step",1)("min",0),t.R50("ngModel",a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",!a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",""!==a.sendFundError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.TL,g.yw,S.VO,X.wT,W.N,K.V]})}return n})();var ht=_(5837);const Na=()=>["all"],Ma=n=>({"error-border":n}),Ba=()=>["no_transaction"],ft=n=>({width:n}),$a=n=>({"display-none":n});function Va(n,o){if(1&n&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Oa(n,o){1&n&&t.nrm(0,"mat-progress-bar",35)}function Ha(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Date/Time"),t.k0s())}function Ya(n,o){if(1&n&&(t.j41(0,"td",37),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Xa(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Address"),t.k0s())}function Ua(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.address)}}function za(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Blockhash"),t.k0s())}function Ja(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.blockHash)}}function qa(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Transaction ID"),t.k0s())}function Qa(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.txid)}}function Za(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Amount (Sats)"),t.k0s())}function Wa(n,o){if(1&n&&(t.j41(0,"span",43),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.amount))}}function Ka(n,o){if(1&n&&(t.j41(0,"span",44),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.SpI("(",t.bMT(2,1,-1*(null==e?null:e.amount)),")")}}function to(n,o){if(1&n&&(t.j41(0,"td",37),t.DNE(1,Wa,3,3,"span",41)(2,Ka,3,3,"span",42),t.k0s()),2&n){const e=o.$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 eo(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Fees (Sats)"),t.k0s())}function no(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.fees))}}function io(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Confirmations"),t.k0s())}function ao(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==e?null:e.confirmations)," ")}}function oo(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function so(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onTransactionClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function lo(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No transaction available."),t.k0s())}function ro(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting transactions..."),t.k0s())}function co(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function mo(n,o){if(1&n&&(t.j41(0,"td",51),t.DNE(1,lo,2,0,"p",52)(2,ro,2,0,"p",52)(3,co,2,1,"p",52),t.k0s()),2&n){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 po(n,o){if(1&n&&t.nrm(0,"tr",53),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,$a,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function uo(n,o){1&n&&t.nrm(0,"tr",54)}function ho(n,o){1&n&&t.nrm(0,"tr",55)}let fo=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.faHistory=F.Int,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.listTransactions=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.apiCallStatus.status===l.wn.COMPLETED&&(this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.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,k.mh)({payload:{count:1e3,skip:0}}))),this.logger.info(this.displayedColumns))}),this.store.select(C.gN).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),e.transactions&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadTransactionsTable(e.transactions),this.logger.info(e)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.listTransactions.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=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 a.includes(i)}}onTransactionClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:e.blockHash||e.blockId_opt,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"txid",value:e.txid,title:"Transaction ID",width:100,explorerLink:"tx"}],[{key:"timestamp",value:e.timestamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"confirmations",value:e.confirmations,title:"Number of Confirmations",width:50,type:l.UN.NUMBER}],[{key:"fees",value:e.fees,title:"Fees (Sats)",width:50,type:l.UN.NUMBER},{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"address",value:e.address,title:"Address",width:100,type:l.UN.STRING}]]}}}))}loadTransactionsTable(e){this.listTransactions=new c.I6([...e]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onPageChange(e){this.store.dispatch((0,k.mh)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Va,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,Oa,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,Ha,2,0,"th",16)(24,Ya,3,4,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Xa,2,0,"th",16)(27,Ua,4,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,za,2,0,"th",16)(30,Ja,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,qa,2,0,"th",16)(33,Qa,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,Za,2,0,"th",22)(36,to,3,2,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,eo,2,0,"th",22)(39,no,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,io,2,0,"th",22)(42,ao,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,oo,6,0,"th",26)(45,so,3,0,"td",27),t.bVm(),t.qex(46,28),t.DNE(47,mo,4,3,"td",29),t.bVm(),t.DNE(48,po,1,3,"tr",30)(49,uo,1,0,"tr",31)(50,ho,1,0,"tr",32),t.k0s(),t.nrm(51,"mat-paginator",33),t.k0s()()()}2&i&&(t.R7$(3),t.Y8G("icon",a.faHistory),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Na).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(3),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",t.eq3(16,Ma,""!==a.errorMessage)),t.R7$(28),t.Y8G("matFooterRowDef",t.lJ4(18,Ba)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.ZF,A.Ld,p.QX,p.vh]})}return n})();function _o(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let go=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.faExchangeAlt=F._qq,this.faChartPie=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[2])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.onchainBalance.total||0},{title:"Confirmed",dataValue:i.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:i.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,v.xO)({payload:{data:{component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,_o,2,3,"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&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk,fo]})}return n})();var wt=_(1975);function Co(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Channels"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activeChannels)}}function yo(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Peers"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activePeers)}}let bo=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=F.gdJ,this.faChartPie=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.activeChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.balances=[{title:"Total Balance",dataValue:e.onchainBalance.total||0},{title:"Confirmed",dataValue:e.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:e.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-connections"]],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(i,a){1&i&&(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(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(16,"mat-tab"),t.DNE(17,Co,2,1,"ng-template",8),t.k0s(),t.j41(18,"mat-tab"),t.DNE(19,yo,2,1,"ng-template",8),t.k0s()(),t.j41(20,"div",9),t.nrm(21,"router-outlet"),t.k0s()()()()),2&i&&(t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faUsers),t.R7$(6),t.R50("selectedIndex",a.activeLink))},dependencies:[w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,wt.k,D.ES,D.mq,D.T8,ht.f,b.n3]})}return n})();function Fo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Eo=(()=>{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,this.faExchangeAlt=F._qq,this.faChartPie=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(U._c))).subscribe(([i,a])=>{this.currencyUnits=a?.settings.currencyUnits||[],this.balances=a&&a.settings.userPersona===l.HW.OPERATOR?[{title:"Local Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,Fo,2,3,"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&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk]})}return n})();function xo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Lo=(()=>{class n{constructor(e){this.router=e,this.faMapSigns=F.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 u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,xo,2,3,"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&i){const s=t.sdS(12);t.R7$(2),t.Y8G("icon",a.faMapSigns),t.R7$(7),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();var ot=_(5951),jt=_(450),tt=_(6013);const So=["peersForm"],vo=["stepper"];function Ro(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.peerFormLabel)}}function Io(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function ko(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.peerConnectionError)}}function To(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.channelFormLabel)}}function wo(n,o){if(1&n&&(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&n){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 jo(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Do(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Po(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Go(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Ao(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.channelConnectionError)}}let Dt=(()=>{class n{constructor(e,i,a,s,r,m,T){this.dialogRef=e,this.data=i,this.store=a,this.formBuilder=s,this.actions=r,this.logger=m,this.dataService=T,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.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 u.B,new u.B,new u.B,new u.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:["",[d.k0.required]],peerAddress:[this.peerAddress,[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],feeRate:[null],hiddenAmount:["",[d.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e,this.channelFormGroup.controls.isPrivate.setValue(!!e?.settings.unannouncedChannels)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.NEWLY_ADDED_PEER_ECL||e.type===l.Uu.FETCH_CHANNELS_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.NEWLY_ADDED_PEER_ECL&&(this.logger.info(e.payload),this.flgEditable=!1,this.newlyAddedPeer=e.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),e.type===l.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&("SaveNewPeer"===e.payload.action?this.peerConnectionError=e.payload.message:"SaveNewChannel"===e.payload.action&&(this.channelConnectionError=e.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,k.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,k.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(e){switch(e.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)"}e.selectedIndex{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(d.ze),t.rXU(Q.En),t.rXU(G.gP),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(i,a){if(1&i&&(t.GBs(So,5),t.GBs(vo,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.stepper=s.first)}},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(i,a){if(1&i){const s=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 t.eBV(s),t.Njj(a.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(m){return t.eBV(s),t.Njj(a.stepSelectionChanged(m))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,Ro,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,Io,2,0,"mat-error",15),t.k0s(),t.DNE(20,ko,4,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onConnectPeer())}),t.EFF(23),t.k0s()()()(),t.j41(24,"mat-step",10)(25,"form",19),t.DNE(26,To,1,1,"ng-template",20),t.j41(27,"div",21),t.DNE(28,wo,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,jo,2,0,"mat-error",15)(40,Do,2,0,"mat-error",15)(41,Po,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,Go,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,Ao,4,2,"div",16),t.j41(53,"div",17)(54,"button",31),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onOpenChannel())}),t.EFF(55),t.k0s()()()()(),t.j41(56,"div",32)(57,"button",33),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(58),t.k0s()()()()()()}2&i&&(t.R7$(10),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",a.peerFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.peerFormGroup),t.R7$(6),t.Y8G("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),t.R7$(),t.Y8G("ngIf",""!==a.peerConnectionError),t.R7$(3),t.JRh(""!==a.peerConnectionError?"Retry":"Add Peer"),t.R7$(),t.Y8G("stepControl",a.channelFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.channelFormGroup),t.R7$(3),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.SpI("Remaining: ",t.bMT(36,23,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0)),""),t.R7$(4),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),t.R7$(4),t.Y8G("step",1)("min",a.recommendedFee.minimumFee||0),t.R7$(2),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.feeRate.errors?null:a.channelFormGroup.controls.feeRate.errors.minimum),t.R7$(4),t.Y8G("ngIf",""!==a.channelConnectionError),t.R7$(3),t.JRh(""!==a.channelConnectionError?"Retry":"Open Channel"),t.R7$(3),t.JRh(null!=a.newlyAddedPeer&&a.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,jt.sG,tt.V5,tt.Ti,tt.M6,W.N,K.V,p.QX]})}return n})();var Pt=_(5416),Gt=_(9157);const No=n=>({"background-color":n});function Mo(n,o){if(1&n&&(t.j41(0,"span",10)(1,"div"),t.EFF(2),t.nI1(3,"titlecase"),t.k0s()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(2),t.Lme("",i.nodeFeaturesEnum[e.key]||e.key,": ",t.bMT(3,2,e.value),"")}}function Bo(n,o){1&n&&(t.j41(0,"th",24),t.EFF(1,"Address"),t.k0s())}function $o(n,o){if(1&n&&(t.j41(0,"td",25),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Vo(n,o){1&n&&(t.j41(0,"th",26)(1,"div",27),t.EFF(2,"Actions"),t.k0s()())}function Oo(n,o){if(1&n){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=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onConnectNode(a))}),t.EFF(5,"Connect"),t.k0s(),t.j41(6,"mat-option",32),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG(2);return t.Njj(s.onCopyNodeURI(a))}),t.EFF(7,"Copy URI"),t.k0s()()()()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(6),t.Y8G("payload",(null==i.lookupResult?null:i.lookupResult.nodeId)+"@"+e)}}function Ho(n,o){1&n&&t.nrm(0,"tr",33)}function Yo(n,o){1&n&&t.nrm(0,"tr",34)}function Xo(n,o){if(1&n&&(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,Mo,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,Bo,2,0,"th",17)(44,$o,2,1,"td",18),t.bVm(),t.qex(45,19),t.DNE(46,Vo,3,0,"th",20)(47,Oo,8,1,"td",21),t.bVm(),t.DNE(48,Ho,1,0,"tr",22)(49,Yo,1,0,"tr",23),t.k0s()()()()),2&n){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,No,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 Uo=(()=>{class n{constructor(e,i,a){this.logger=e,this.snackBar=i,this.store=a,this.lookupResult={},this.addresses=new c.I6([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=l.Uq,this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.addresses=new c.I6(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0})}onConnectNode(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:e}:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(Pt.UG),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(i,a){if(1&i&&t.GBs(x.B4,5),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first)}},inputs:{lookupResult:"lookupResult"},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(i,a){1&i&&t.DNE(0,Xo,50,21,"div",1),2&i&&t.Y8G("ngIf",a.lookupResult)},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,Z.q,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,Gt.U,p.PV,p.vh,p.lG]})}return n})();const zo=["form"],Jo=n=>({"mt-1":!0,"mt-2":n});function qo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function Qo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function Zo(n,o){if(1&n&&(t.j41(0,"div"),t.nrm(1,"rtl-ecl-node-lookup",25),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("lookupResult",e.nodeLookupValue)}}function Wo(n,o){if(1&n&&(t.j41(0,"span",23),t.DNE(1,Zo,2,1,"div",24),t.k0s()),2&n){const e=t.XpG(2),i=t.sdS(23);t.R7$(),t.Y8G("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",i)}}function Ko(n,o){1&n&&(t.j41(0,"span"),t.EFF(1,' fxFlex="100"'),t.j41(2,"h3"),t.EFF(3,"Error! Unable to find details!"),t.k0s()())}function ts(n,o){if(1&n&&(t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.k0s()(),t.j41(4,"div",20),t.DNE(5,Wo,2,2,"span",21)(6,Ko,4,0,"span",22),t.k0s()()),2&n){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 es(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find details!"),t.k0s())}let ns=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.actions=s,this.lookupKeyCtrl=new d.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=F.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.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,f.Q)(this.unSubs[0]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{if(e.type===l.Uu.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=e.payload[0]?JSON.parse(JSON.stringify(e.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(e.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"Lookup"===e.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{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,k.zU)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(e){this.resetData(),this.selectedFieldId=e.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(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lookups"]],viewQuery:function(i,a){if(1&i&&t.GBs(zo,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},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(i,a){if(1&i){const s=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,qo,2,1,"mat-error",12)(15,Qo,2,1,"mat-error",12),t.k0s(),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(18,"Clear"),t.k0s(),t.j41(19,"button",15),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onLookup())}),t.EFF(20,"Lookup"),t.k0s()()(),t.DNE(21,ts,7,3,"div",16),t.k0s()()(),t.DNE(22,es,2,0,"ng-template",null,2,t.C5r)}2&i&&(t.R7$(7),t.Y8G("value",0),t.R7$(2),t.Y8G("ngClass",t.eq3(7,Jo,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),t.R7$(2),t.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),t.R7$(),t.Y8G("formControl",a.lookupKeyCtrl),t.R7$(2),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.required),t.R7$(),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.invalid),t.R7$(6),t.Y8G("ngIf",a.flgSetLookupValue))},dependencies:[p.YU,p.bT,p.ux,p.e1,p.fG,d.qT,d.me,d.BC,d.cb,d.YS,d.cV,d.l_,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,O.fg,g.rl,g.nJ,g.TL,ot.VT,ot._g,Uo],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})();var is=_(396);let as=(()=>{class n{constructor(e,i){this.store=e,this.eclEffects=i,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,k.XT)()),this.eclEffects.setNewAddress.pipe((0,q.s)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,v.xO)({payload:{data:{address:this.newAddress,addressType:"",component:is.f}}}))},0)})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-receive"]],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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onGenerateAddress()}),t.EFF(3,"Generate Address"),t.k0s()()())},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}return n})(),os=(()=>{class n{constructor(e,i){this.store=e,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,v.xO)({payload:{data:{sweepAll:this.sweepAll,component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.nX))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-send"]],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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.openSendFundsModal()}),t.EFF(3),t.k0s()()()),2&i&&(t.R7$(3),t.JRh(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}return n})();var _t=_(9172),At=_(6354),st=_(850),ss=_(92);const ls=["form"];function rs(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function cs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer alias is required."),t.k0s())}function ms(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer not found in the list."),t.k0s())}function ps(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(4,"mat-autocomplete",34,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(6,rs,2,2,"mat-option",35),t.nI1(7,"async"),t.k0s(),t.DNE(8,cs,2,0,"mat-error",20)(9,ms,2,0,"mat-error",20),t.k0s()}if(2&n){const e=t.sdS(5),i=t.XpG();t.R7$(3),t.Y8G("formControl",i.selectedPeer)("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(7,6,i.filteredPeers)),t.R7$(2),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function us(n,o){1&n&&t.eu8(0)}function ds(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function hs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function fs(n,o){if(1&n&&(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&n){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 _s(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function gs(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.channelConnectionError)}}function Cs(n,o){if(1&n&&(t.j41(0,"div",41),t.nrm(1,"fa-icon",38),t.DNE(2,gs,2,1,"span",20),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.channelConnectionError)}}function ys(n,o){if(1&n&&(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&n){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 bs(n,o){if(1&n&&t.DNE(0,ys,27,6,"mat-expansion-panel",42),2&n){const e=t.XpG();t.Y8G("ngIf",e.peer)}}let Nt=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.dialogRef=i,this.data=a,this.store=s,this.actions=r,this.dataService=m,this.selectedPeer=new d.hs,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.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 u.B,new u.B,new u.B,new u.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(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.settings.unannouncedChannels}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(a=>a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||a.type===l.Uu.FETCH_CHANNELS_ECL)).subscribe(a=>{a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&a.payload.status===l.wn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===l.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let e="",i="";this.sortedPeers=this.peers.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",ei?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,f.Q)(this.unSubs[2]),(0,_t.Z)(""),(0,At.T)(a=>"string"==typeof a?a:a.alias?a.alias:a.nodeId),(0,At.T)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(e){return this.sortedPeers?.filter(i=>0===i.alias?.toLowerCase().indexOf(e?e.toLowerCase():""))}displayFn(e){return e&&e.alias?e.alias:e&&e.nodeId?e.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 e=this.peers?.filter(i=>i.alias?.length===this.selectedPeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===e.length&&e[0].nodeId&&(this.selectedPubkey=e[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(e){this.advancedTitle="Advanced Options",e?this.feeRate&&this.feeRate>0&&(this.advancedTitle=this.advancedTitle+" | Fee (Sats/vByte): "+this.feeRate):this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[3])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}})}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.feeRate&&this.recommendedFee.minimumFee>this.feeRate)return!0;const e={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(e.feeRate=this.feeRate),this.store.dispatch((0,k.vL)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(Q.En),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(i,a){if(1&i&&t.GBs(ls,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},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(i,a){if(1&i){const s=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 t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",11)(9,"form",12,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onOpenChannel())})("reset",function(){return t.eBV(s),t.Njj(a.resetData())}),t.j41(11,"div",13),t.DNE(12,ps,10,8,"mat-form-field",14),t.k0s(),t.DNE(13,us,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(m){return t.eBV(s),t.DH7(a.fundingAmount,m)||(a.fundingAmount=m),t.Njj(m)}),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,ds,2,0,"mat-error",20)(27,hs,2,1,"mat-error",20),t.k0s(),t.j41(28,"div",21)(29,"mat-slide-toggle",22),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.isPrivate,m)||(a.isPrivate=m),t.Njj(m)}),t.EFF(30,"Private Channel"),t.k0s()()(),t.j41(31,"mat-expansion-panel",23),t.bIt("closed",function(){return t.eBV(s),t.Njj(a.onAdvancedPanelToggle(!0))})("opened",function(){return t.eBV(s),t.Njj(a.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,fs,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(m){return t.eBV(s),t.DH7(a.feeRate,m)||(a.feeRate=m),t.Njj(m)}),t.k0s(),t.j41(45,"mat-hint"),t.EFF(46),t.k0s(),t.DNE(47,_s,2,1,"mat-error",20),t.k0s()()()()()(),t.DNE(48,Cs,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,bs,1,1,"ng-template",null,3,t.C5r)}if(2&i){const s=t.sdS(20),r=t.sdS(55);t.R7$(5),t.JRh(a.alertTitle),t.R7$(7),t.Y8G("ngIf",!a.peer&&a.peers&&a.peers.length>0),t.R7$(),t.Y8G("ngTemplateOutlet",r),t.R7$(6),t.Y8G("step",1e3)("min",1)("max",a.totalBalance),t.R50("ngModel",a.fundingAmount),t.R7$(3),t.SpI("Remaining: ",t.bMT(23,19,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),""),t.R7$(4),t.Y8G("ngIf",null==s.errors?null:s.errors.required),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.max),t.R7$(2),t.R50("ngModel",a.isPrivate),t.R7$(6),t.JRh(a.advancedTitle),t.R7$(2),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(6),t.Y8G("step",1)("min",a.recommendedFee.minimumFee),t.R50("ngModel",a.feeRate),t.R7$(3),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",a.feeRate&&a.feeRate{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.numOfOpenChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0,this.numOfPendingChannels=e.channelsStatus&&e.channelsStatus.pending&&e.channelsStatus.pending.channels?e.channelsStatus.pending.channels:0,this.numOfInactiveChannels=e.channelsStatus&&e.channelsStatus.inactive&&e.channelsStatus.inactive.channels?e.channelsStatus.inactive.channels:0,this.logger.info(e)}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.peers=e.peers}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[5])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Nt}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channels-tables"]],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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onOpenChannel()}),t.EFF(3,"Open Channel"),t.k0s()(),t.j41(4,"div",3)(5,"mat-tab-group",4),t.mxI("selectedIndexChange",function(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(6,"mat-tab"),t.DNE(7,Fs,2,1,"ng-template",5),t.k0s(),t.j41(8,"mat-tab"),t.DNE(9,Es,2,1,"ng-template",5),t.k0s(),t.j41(10,"mat-tab"),t.DNE(11,xs,2,1,"ng-template",5),t.k0s()(),t.j41(12,"div",6),t.nrm(13,"router-outlet"),t.k0s()()()),2&i&&(t.R7$(5),t.R50("selectedIndex",a.activeLink))},dependencies:[h.DJ,h.sA,h.UI,j.$z,wt.k,D.ES,D.mq,D.T8,b.n3]})}return n})();const Ss=n=>({"xs-scroll-y":n}),vs=(n,o)=>({"mt-2":n,"mt-1":o});function Rs(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(4),t.JRh(e.channel.shortChannelId)}}function Is(n,o){if(1&n&&(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&n){const e=t.XpG();t.R7$(4),t.JRh(t.bMT(5,1,e.channel.state))}}function ks(n,o){if(1&n&&(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&n){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 Ts(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Show Advanced"),t.k0s())}function ws(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Hide Advanced"),t.k0s())}function js(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",23),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onShowAdvanced())}),t.DNE(1,Ts,2,0,"p",24)(2,ws,2,0,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.sdS(3),i=t.XpG();t.R7$(),t.Y8G("ngIf",!i.showAdvanced)("ngIfElse",e)}}function Ds(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",25),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Short Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.shortChannelId)}}function Ps(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",26),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.channelId)}}let gt=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.logger=a,this.commonService=s,this.snackBar=r,this.router=m,this.faReceipt=F.Mf0,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=l.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(e){this.snackBar.open("open"===this.channelsType?"Short channel ID "+e+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+e)}onGoToLink(e,i){this.router.navigateByUrl("/ecl/graph/lookups",{state:{lookupType:e,lookupValue:i}}),this.onClose()}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(G.gP),t.rXU(M.h),t.rXU(Pt.UG),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-information"]],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(i,a){1&i&&(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 a.onClose()}),t.EFF(8,"X"),t.k0s()(),t.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10),t.DNE(12,Rs,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,Is,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 a.onGoToLink("0",a.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,ks,29,14,"div",18),t.j41(55,"div",19),t.DNE(56,js,4,2,"button",20)(57,Ds,2,1,"button",21)(58,Ps,2,1,"button",22),t.k0s()()()()()),2&i&&(t.R7$(4),t.Y8G("icon",a.faReceipt),t.R7$(5),t.Y8G("ngClass",t.eq3(22,Ss,a.screenSize===a.screenSizeEnum.XS)),t.R7$(3),t.Y8G("ngIf","open"===a.channelsType),t.R7$(5),t.JRh(a.channel.alias),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.channelId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.SpI(" ",a.channel.nodeId," "),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(40,20,a.channel.state)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.announceChannel?"No":"Yes"),t.R7$(5),t.JRh(a.channel.isInitiator?"Yes":"No"),t.R7$(),t.Y8G("inset",!0),t.R7$(),t.Y8G("ngIf",a.showAdvanced&&"open"===a.channelsType),t.R7$(),t.Y8G("ngClass",t.l_i(24,vs,!a.showAdvanced,a.showAdvanced)),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType))},dependencies:[p.YU,p.bT,w.aY,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,E.MM,Z.q,J.oV,Gt.U,W.N,p.QX,p.PV]})}return n})();var Ct=_(7673),yt=_(1001),Gs=_(6949);const nt=(n,o)=>({"small-svg":n,"large-svg":o});function As(n,o){1&n&&t.eu8(0)}function Ns(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Ms(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Bs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function $s(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Vs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.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()()(),t.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&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let Os=(()=>{class n{constructor(e){this.commonService=e,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=l.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#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(i,a){if(1&i&&t.DNE(0,As,1,0,"ng-container",5)(1,Ns,47,5,"ng-template",null,0,t.C5r)(3,Ms,96,5,"ng-template",null,1,t.C5r)(5,Bs,68,5,"ng-template",null,2,t.C5r)(7,$s,53,5,"ng-template",null,3,t.C5r)(9,Vs,52,5,"ng-template",null,4,t.C5r),2&i){const s=t.sdS(2),r=t.sdS(4),m=t.sdS(6),T=t.sdS(8),y=t.sdS(10);t.Y8G("ngTemplateOutlet",1===a.stepNumber?s:2===a.stepNumber?r:3===a.stepNumber?m:4===a.stepNumber?T:y)}},dependencies:[p.YU,p.T3,h.DJ,h.sA,h.UI,L.PW,E.Lc,E.dh],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:[Gs.k]}})}return n})();const Hs=["stepper"],Ys=()=>[1,2,3,4,5],Xs=(n,o)=>({"dot-primary":n,"dot-primary-lighter":o});function Us(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG(2);t.JRh(e.inputFormLabel)}}function zs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Js(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function qs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){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 Qs(n,o){if(1&n&&(t.j41(0,"mat-option",50),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.Lme("",e.alias," - ",e.shortChannelId,"")}}function Zs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer is required."),t.k0s())}function Ws(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer not found in the list."),t.k0s())}function Ks(n,o){1&n&&t.EFF(0,"Status")}function tl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function el(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(""!==e.rebalanceStatus.invoice?"check":"close")}}function nl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function il(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.rebalanceStatus.paymentRoute?"check":"close")}}function al(n,o){if(1&n&&(t.j41(0,"span",42),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",e," ")}}function ol(n,o){if(1&n&&(t.j41(0,"div",7),t.DNE(1,al,2,1,"span",53),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function sl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function ll(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function rl(n,o){1&n&&t.nrm(0,"div",7)}function cl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",54),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function ml(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.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,Us,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,zs,2,0,"mat-error",29)(43,Js,2,0,"mat-error",29)(44,qs,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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(49,"mat-autocomplete",32,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(51,Qs,2,3,"mat-option",33),t.nI1(52,"async"),t.k0s(),t.DNE(53,Zs,2,0,"mat-error",29)(54,Ws,2,0,"mat-error",29),t.k0s()(),t.j41(55,"div",34)(56,"button",35),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onRebalance())}),t.EFF(57,"Rebalance"),t.k0s()()()(),t.j41(58,"mat-step",36)(59,"form",23),t.DNE(60,Ks,1,0,"ng-template",24),t.j41(61,"div",37),t.DNE(62,tl,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,el,2,1,"mat-icon",41),t.k0s()()(),t.j41(69,"div",7)(70,"span",42),t.EFF(71),t.k0s()()(),t.DNE(72,nl,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,il,2,1,"mat-icon",41),t.k0s()()(),t.DNE(79,ol,2,1,"div",5),t.k0s(),t.DNE(80,sl,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,ll,2,1,"mat-icon",41),t.k0s()()(),t.DNE(87,rl,1,0,"div",44),t.k0s()(),t.j41(88,"h4",45),t.EFF(89),t.k0s(),t.j41(90,"div",46),t.DNE(91,cl,2,0,"button",47),t.k0s()()()(),t.j41(92,"div",48)(93,"button",49),t.EFF(94,"Close"),t.k0s()()()()()}if(2&n){const e=t.sdS(50),i=t.XpG(),a=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(15),t.Y8G("icon",i.faInfoCircle),t.R7$(7),t.JRh(t.bMT(23,38,i.selChannel.alias)),t.R7$(5),t.JRh(i.selChannel.shortChannelId),t.R7$(),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",i.inputFormGroup)("editable",i.flgEditable),t.R7$(),t.Y8G("formGroup",i.inputFormGroup),t.R7$(6),t.Y8G("step",100),t.R7$(2),t.Lme("(Local Bal: ",null==i.selChannel?null:i.selChannel.toLocal,", Remaining: ",(null==i.selChannel?null:i.selChannel.toLocal)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.R7$(3),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),t.R7$(4),t.Y8G("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(52,40,i.filteredActiveChannels)),t.R7$(2),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.R7$(4),t.Y8G("stepControl",i.statusFormGroup),t.R7$(),t.Y8G("formGroup",i.statusFormGroup),t.R7$(3),t.Y8G("ngIf",""===i.rebalanceStatus.invoice),t.R7$(5),t.JRh(""===i.rebalanceStatus.invoice?"Searching invoice...":i.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.invoice),t.R7$(3),t.JRh(i.rebalanceStatus.invoice),t.R7$(),t.Y8G("ngIf",!(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error||i.rebalanceStatus.paymentRoute||"pending"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type))),t.R7$(5),t.JRh(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Route failed":i.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.paymentRoute),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("expanded",!!i.rebalanceStatus.paymentStatus),t.R7$(4),t.JRh(i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus)("ngIfElse",a),t.R7$(2),t.JRh(i.rebalanceStatus.paymentStatus?i.rebalanceStatus.paymentStatus&&null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.R7$(2),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function pl(n,o){1&n&&t.eu8(0)}function ul(n,o){if(1&n&&t.DNE(0,pl,1,0,"ng-container",55),2&n){const e=t.XpG(),i=t.sdS(4),a=t.sdS(6);t.Y8G("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?i:a)}}function dl(n,o){if(1&n&&(t.j41(0,"div",7)(1,"span",42),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.SpI("Error: ",e.rebalanceStatus.paymentStatus.error,"")}}function hl(n,o){if(1&n&&(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&n){let e;const i=t.XpG();t.R7$(6),t.JRh(i.rebalanceStatus.paymentStatus.feesPaid?i.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.R7$(5),t.JRh(i.rebalanceStatus.paymentRoute&&""!==i.rebalanceStatus.paymentRoute?null==(e=i.rebalanceStatus.paymentRoute.split(","))?null:e.length:0),t.R7$(7),t.JRh(i.rebalanceStatus.paymentHash),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.paymentId),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.parentId)}}function fl(n,o){if(1&n){const e=t.RV6();t.j41(0,"span",76),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onStepChanged(a))}),t.nrm(1,"p",77),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,Xs,i.stepNumber===e,i.stepNumber!==e))}}function _l(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",78),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function gl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function Cl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function yl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function bl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function Fl(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return a.flgShowInfo=!1,t.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){t.eBV(e);const s=t.XpG();return t.DH7(s.stepNumber,a)||(s.stepNumber=a),t.Njj(a)}),t.k0s()(),t.j41(10,"div",68),t.DNE(11,fl,2,4,"span",69),t.k0s(),t.j41(12,"div",70),t.DNE(13,_l,2,0,"button",71)(14,gl,2,0,"button",72)(15,Cl,2,0,"button",73)(16,yl,2,0,"button",74)(17,bl,2,0,"button",75),t.k0s()()()}if(2&n){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,Ys)),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 El=(()=>{class n{constructor(e,i,a,s,r,m,T){this.dialogRef=e,this.data=i,this.logger=a,this.dataService=s,this.formBuilder=r,this.store=m,this.decimalPipe=T,this.faInfoCircle=F.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){let e="",i="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.channelId!==this.selChannel.channelId&&a.toRemote&&a.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",ei?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,d.k0.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,f.Q)(this.unSubs[0]),(0,_t.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,f.Q)(this.unSubs[1]),(0,_t.Z)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,Ct.of)(this.filterActiveChannels()))})}stepSelectionChanged(e){switch(e.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,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.logger.info(e),this.rebalanceStatus=e,this.flgEditable=!0,this.store.dispatch((0,k.$Q)())},error:e=>{this.logger.error(e),this.rebalanceStatus=e,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(e=>e.toRemote&&e.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&e.channelId!==this.selChannel.channelId&&(0===e.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===e.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 e=this.activeChannels?.filter(i=>i.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));e&&e.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(e[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(e){return e&&e.alias?e.alias:e&&e.shortChannelId?e.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(e){this.animationDirection=e{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(G.gP),t.rXU(et.u),t.rXU(d.ok),t.rXU(R.il),t.rXU(p.QX))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(i,a){if(1&i&&t.GBs(Hs,5),2&i){let s;t.mGM(s=t.lsd())&&(a.stepper=s.first)}},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(i,a){1&i&&t.DNE(0,ml,95,42,"div",5)(1,ul,1,1,"ng-template",null,0,t.C5r)(3,dl,3,1,"ng-template",null,1,t.C5r)(5,hl,33,5,"ng-template",null,2,t.C5r)(7,Fl,18,10,"div",6),2&i&&(t.Y8G("ngIf",!a.flgShowInfo),t.R7$(7),t.Y8G("ngIf",a.flgShowInfo))},dependencies:[p.YU,p.Sq,p.bT,p.T3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,L.PW,B.tx,j.$z,E.m2,E.MM,Y.GK,Y.Z2,Y.WN,ct.An,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,Z.q,V.HM,X.wT,tt.V5,tt.Ti,tt.M6,st.$3,st.pN,W.N,Os,p.Jj,p.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:[yt.C]}})}return n})();const xl=()=>["all"],Ll=n=>({"error-border":n}),Sl=()=>["no_peer"],bt=n=>({width:n}),vl=n=>({"display-none":n});function Rl(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Il(n,o){1&n&&t.nrm(0,"mat-progress-bar",37)}function kl(n,o){1&n&&t.nrm(0,"th",38)}function Tl(n,o){if(1&n&&(t.j41(0,"span",42),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function wl(n,o){if(1&n&&(t.j41(0,"span",44),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function jl(n,o){if(1&n&&(t.j41(0,"td",39),t.DNE(1,Tl,2,1,"span",40)(2,wl,2,1,"span",41),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Dl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Short Channel ID"),t.k0s())}function Pl(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function Gl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Channel ID"),t.k0s())}function Al(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Nl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Alias"),t.k0s())}function Ml(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Bl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Node ID"),t.k0s())}function $l(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Vl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Initiator"),t.k0s())}function Ol(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Hl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Base Fee (mSats)"),t.k0s())}function Yl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Xl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Fee Rate (mili mSats)"),t.k0s())}function Ul(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function zl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Jl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function ql(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Ql(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Zl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Balance Score"),t.k0s())}function Wl(n,o){if(1&n&&(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&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("value",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 Kl(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onChannelUpdate("all"))}),t.EFF(5,"Update Fee Policy"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(7,"Download CSV"),t.k0s()()()()}}function tr(n,o){if(1&n){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 s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelUpdate(a))}),t.EFF(7,"Update Fee Policy"),t.k0s(),t.j41(8,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onCircularRebalance(a))}),t.EFF(9,"Circular Rebalance"),t.k0s(),t.j41(10,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!1))}),t.EFF(11,"Close Channel"),t.k0s(),t.j41(12,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(13,"Force Close"),t.k0s()()()()}}function er(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No peers connected. Add a peer in order to open a channel."),t.k0s())}function nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No channel available."),t.k0s())}function ir(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting channels..."),t.k0s())}function ar(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function or(n,o){if(1&n&&(t.j41(0,"td",59),t.DNE(1,er,2,0,"p",60)(2,nr,2,0,"p",60)(3,ir,2,0,"p",60)(4,ar,2,1,"p",60),t.k0s()),2&n){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 sr(n,o){if(1&n&&t.nrm(0,"tr",61),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,vl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function lr(n,o){1&n&&t.nrm(0,"tr",62)}function rr(n,o){1&n&&t.nrm(0,"tr",63)}let cr=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.router=r,this.camelCaseWithSpaces=m,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.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(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=e.activeChannels,this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{channels:this.activeChannels,selChannel:e,information:this.information},component:El}}}))}onChannelUpdate(e){"all"!==e&&e?.state&&"NORMAL"!==e?.state||(this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"string"==typeof e&&"all"===e?"Update fee policy for all channels":"Update fee policy for Channel: "+(e?.alias||e?.shortChannelId?e?.alias&&e?.shortChannelId?e?.alias+" ("+e?.shortChannelId+")":e?.alias?e?.alias:e?.shortChannelId:e?.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:l.UN.NUMBER,inputValue:e&&typeof e?.feeBaseMsat<"u"?e?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:l.UN.NUMBER,inputValue:e&&typeof e?.feeProportionalMillionths<"u"?e?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(s=>{if(s){const r=s[0].inputValue,m=s[1].inputValue;let T=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let y="";"all"===e?(this.activeChannels.forEach(P=>{y=y+","+P.nodeId}),y=y.substring(1),T={baseFeeMsat:r,feeRate:m,nodeIds:y}):T={baseFeeMsat:r,feeRate:m,nodeId:e?.nodeId}}else{let y="";"all"===e?(this.activeChannels.forEach(P=>{y=y+","+P.channelId}),y=y.substring(1),T={baseFeeMsat:r,feeRate:m,channelIds:y}):T={baseFeeMsat:r,feeRate:m,channelId:e?.channelId}}this.store.dispatch((0,k.fy)({payload:T}))}}),this.applyFilter())}percentHintFunction(e){return(e/1e4).toString()+"%"}onChannelClose(e,i){this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[6])).subscribe(m=>{m&&this.store.dispatch((0,k.w0)({payload:{channelId:e.channelId,force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"open",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=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 a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]: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(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(b.Ix),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,Rl,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,Il,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,kl,1,0,"th",13)(20,jl,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Dl,2,0,"th",16)(23,Pl,2,1,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Gl,2,0,"th",16)(26,Al,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Nl,2,0,"th",16)(29,Ml,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Bl,2,0,"th",16)(32,$l,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Vl,2,0,"th",16)(35,Ol,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Hl,2,0,"th",22)(38,Yl,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Xl,2,0,"th",22)(41,Ul,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,zl,2,0,"th",22)(44,Jl,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,ql,2,0,"th",22)(47,Ql,4,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,Zl,2,0,"th",16)(50,Wl,6,4,"td",14),t.bVm(),t.qex(51,27),t.DNE(52,Kl,8,0,"th",28)(53,tr,14,0,"td",29),t.bVm(),t.qex(54,30),t.DNE(55,or,5,4,"td",31),t.bVm(),t.DNE(56,sr,1,3,"tr",32)(57,lr,1,0,"tr",33)(58,rr,1,0,"tr",34),t.k0s()(),t.nrm(59,"mat-paginator",35),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,xl).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,Ll,""!==a.errorMessage)),t.R7$(40),t.Y8G("matFooterRowDef",t.lJ4(17,Sl)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.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 n})();const mr=()=>["all"],pr=n=>({"error-border":n}),ur=()=>["no_channel"],Mt=n=>({width:n}),dr=n=>({"display-none":n});function hr(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function fr(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function _r(n,o){1&n&&t.nrm(0,"th",35)}function gr(n,o){if(1&n&&(t.j41(0,"span",39),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function Cr(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function yr(n,o){if(1&n&&(t.j41(0,"td",36),t.DNE(1,gr,2,1,"span",37)(2,Cr,2,1,"span",38),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function br(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"State"),t.k0s())}function Fr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function Er(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Channel ID"),t.k0s())}function xr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Lr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Alias"),t.k0s())}function Sr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.alias)}}function vr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Node ID"),t.k0s())}function Rr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Ir(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Initiator"),t.k0s())}function kr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Tr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function wr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function jr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Dr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Pr(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Gr(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",51)(1,"button",52),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function Ar(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No pending channel available."),t.k0s())}function Nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting pending channels..."),t.k0s())}function Mr(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function Br(n,o){if(1&n&&(t.j41(0,"td",53),t.DNE(1,Ar,2,0,"p",54)(2,Nr,2,0,"p",54)(3,Mr,2,1,"p",54),t.k0s()),2&n){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 $r(n,o){if(1&n&&t.nrm(0,"tr",55),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,dr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Vr(n,o){1&n&&t.nrm(0,"tr",56)}function Or(n,o){1&n&&t.nrm(0,"tr",57)}let Hr=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.camelCaseWithSpaces=s,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=e.pendingChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"pending",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=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 a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]: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(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,hr,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,fr,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,_r,1,0,"th",13)(20,yr,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,br,2,0,"th",16)(23,Fr,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Er,2,0,"th",16)(26,xr,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Lr,2,0,"th",16)(29,Sr,2,1,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,vr,2,0,"th",16)(32,Rr,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Ir,2,0,"th",16)(35,kr,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Tr,2,0,"th",22)(38,wr,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,jr,2,0,"th",22)(41,Dr,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Pr,6,0,"th",25)(44,Gr,3,0,"td",26),t.bVm(),t.qex(45,27),t.DNE(46,Br,4,3,"td",28),t.bVm(),t.DNE(47,$r,1,3,"tr",29)(48,Vr,1,0,"tr",30)(49,Or,1,0,"tr",31),t.k0s()(),t.nrm(50,"mat-paginator",32),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,mr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,pr,""!==a.errorMessage)),t.R7$(31),t.Y8G("matFooterRowDef",t.lJ4(17,ur)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const Yr=()=>["all"],Xr=n=>({"error-border":n}),Ur=()=>["no_peer"],Bt=n=>({"mr-0":n}),$t=n=>({width:n}),zr=n=>({"display-none":n});function Jr(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function qr(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function Qr(n,o){1&n&&t.nrm(0,"th",37)}function Zr(n,o){if(1&n&&t.nrm(0,"span",41),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function Wr(n,o){if(1&n&&t.nrm(0,"span",42),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function Kr(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,Zr,1,3,"span",39)(2,Wr,1,3,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function t1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Alias"),t.k0s())}function e1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function n1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Node ID"),t.k0s())}function i1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function a1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Network Address"),t.k0s())}function o1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",null==e?null:e.address," ")}}function s1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Channels"),t.k0s())}function l1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.channels)}}function r1(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function c1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onPeerDetach(a))}),t.EFF(1,"Disconnect"),t.k0s()}}function m1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onConnectPeer(a))}),t.EFF(1,"Reconnect"),t.k0s()}}function p1(n,o){if(1&n){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 s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onPeerClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",49),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onOpenChannel(a))}),t.EFF(7,"Open Channel"),t.k0s(),t.DNE(8,c1,2,0,"mat-option",51)(9,m1,2,0,"mat-option",51),t.k0s()()()}if(2&n){const e=o.$implicit;t.R7$(8),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function u1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No connected peer."),t.k0s())}function d1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting peers..."),t.k0s())}function h1(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function f1(n,o){if(1&n&&(t.j41(0,"td",52),t.DNE(1,u1,2,0,"p",53)(2,d1,2,0,"p",53)(3,h1,2,1,"p",53),t.k0s()),2&n){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 _1(n,o){if(1&n&&t.nrm(0,"tr",54),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,zr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function g1(n,o){1&n&&t.nrm(0,"tr",55)}function C1(n,o){1&n&&t.nrm(0,"tr",56)}let y1=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.actions=s,this.commonService=r,this.camelCaseWithSpaces=m,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.faUsers=F.gdJ,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new c.I6([]),this.information={},this.availableBalance=0,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=e.peers,this.loadPeersTable(this.peersData),this.logger.info(e)}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_PEERS_ECL)).subscribe(e=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(e,i){const a=[[{key:"nodeId",value:e.nodeId,title:"Public Key",width:100}],[{key:"address",value:e.address,title:"Address",width:50},{key:"alias",value:e.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(e.state||""),title:"State",width:50},{key:"channels",value:e.channels,title:"Channels",width:50}]];this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:e.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:e.nodeId,message:a}}}))}onConnectPeer(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:e.nodeId?e:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onOpenChannel(e){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:e,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Nt}}}))}onPeerDetach(e){this.store.dispatch(e&&e.channels&&e.channels>0?(0,v.xO)({payload:{data:{type:l.A$.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(e.alias?e.alias:e.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,k.Lc)({payload:{nodeId:e.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.peers.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"state":a=e?.state?.toLowerCase()||"";break;default:a=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===a.indexOf(i):a.includes(i)}}loadPeersTable(e){this.peers=new c.I6(e?[...e]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[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(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(Q.En),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"button",4),t.bIt("click",function(){return t.eBV(s),t.Njj(a.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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(16,"perfect-scrollbar"),t.DNE(17,Jr,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(22,"div",15),t.DNE(23,qr,1,0,"mat-progress-bar",16),t.j41(24,"table",17,1),t.qex(26,18),t.DNE(27,Qr,1,0,"th",19)(28,Kr,3,2,"td",20),t.bVm(),t.qex(29,21),t.DNE(30,t1,2,0,"th",22)(31,e1,4,4,"td",20),t.bVm(),t.qex(32,23),t.DNE(33,n1,2,0,"th",22)(34,i1,4,4,"td",20),t.bVm(),t.qex(35,24),t.DNE(36,a1,2,0,"th",22)(37,o1,2,1,"td",20),t.bVm(),t.qex(38,25),t.DNE(39,s1,2,0,"th",22)(40,l1,2,1,"td",20),t.bVm(),t.qex(41,26),t.DNE(42,r1,6,0,"th",27)(43,p1,10,2,"td",28),t.bVm(),t.qex(44,29),t.DNE(45,f1,4,3,"td",30),t.bVm(),t.DNE(46,_1,1,3,"tr",31)(47,g1,1,0,"tr",32)(48,C1,1,0,"tr",33),t.k0s()(),t.nrm(49,"mat-paginator",34),t.k0s()()}2&i&&(t.R7$(8),t.Y8G("icon",a.faUsers),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Yr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",t.eq3(16,Xr,""!==a.errorMessage)),t.R7$(22),t.Y8G("matFooterRowDef",t.lJ4(18,Ur)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const b1=["queryRoutesForm"],F1=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),Vt=n=>({"max-width":n});function E1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Destination Node ID is required."),t.k0s())}function x1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function L1(n,o){1&n&&t.nrm(0,"mat-progress-bar",23)}function S1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," Alias"),t.k0s())}function v1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.alias)}}function R1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," ID"),t.k0s())}function I1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function k1(n,o){1&n&&(t.j41(0,"th",40)(1,"div",44),t.EFF(2,"Actions"),t.k0s()())}function T1(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",45)(1,"button",46),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onHopClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function w1(n,o){1&n&&t.nrm(0,"tr",47)}function j1(n,o){1&n&&t.nrm(0,"tr",48)}function D1(n,o){if(1&n&&(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,S1,2,0,"th",33)(15,v1,4,4,"td",34),t.bVm(),t.qex(16,35),t.DNE(17,R1,2,0,"th",33)(18,I1,4,4,"td",34),t.bVm(),t.qex(19,36),t.DNE(20,k1,3,0,"th",33)(21,T1,3,0,"td",37),t.bVm(),t.DNE(22,w1,1,0,"tr",38)(23,j1,1,0,"tr",39),t.k0s()()()()()),2&n){const e=o.$implicit,i=o.index,a=t.XpG();t.R7$(5),t.SpI("Route ",i+1,""),t.R7$(2),t.JRh(t.bMT(8,6,e.amount/1e3)),t.R7$(4),t.Y8G("dataSource",a.qrHops[i])("ngClass",t.eq3(8,F1,"error"===a.flgLoading[0])),t.R7$(11),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns)}}let P1=(()=>{class n{constructor(e,i,a){this.store=e,this.eclEffects=i,this.commonService=a,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=F.TBz,this.faExclamationTriangle=F.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new c.I6([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{e&&e.routes&&e.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=e.routes,this.allQRoutes.forEach((i,a)=>{this.qrHops[a]=new c.I6([...i.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,k.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(e){this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:e.alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"nodeId",value:e.nodeId,title:"Node ID",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B),t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(i,a){if(1&i&&t.GBs(b1,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"form",4,0),t.bIt("ngSubmit",function(){t.eBV(s);const m=t.sdS(2);return t.Njj(m.form.valid&&a.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(m){return t.eBV(s),t.DH7(a.nodeId,m)||(a.nodeId=m),t.Njj(m)}),t.k0s(),t.DNE(12,E1,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(m){return t.eBV(s),t.DH7(a.amount,m)||(a.amount=m),t.Njj(m)}),t.k0s(),t.DNE(17,x1,2,0,"mat-error",9),t.k0s(),t.j41(18,"div",12)(19,"button",13),t.bIt("click",function(){return t.eBV(s),t.Njj(a.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,L1,1,0,"mat-progress-bar",19),t.j41(29,"div",20)(30,"div",21),t.DNE(31,D1,24,10,"div",22),t.k0s()()()}2&i&&(t.R7$(4),t.Y8G("icon",a.faExclamationTriangle),t.R7$(6),t.R50("ngModel",a.nodeId),t.R7$(2),t.Y8G("ngIf",!a.nodeId),t.R7$(4),t.Y8G("step",1e3)("min",0),t.R50("ngModel",a.amount),t.R7$(),t.Y8G("ngIf",!a.amount),t.R7$(8),t.Y8G("icon",a.faRoute),t.R7$(3),t.Y8G("ngIf",!0===a.flgLoading[0]),t.R7$(3),t.Y8G("ngForOf",a.allQRoutes))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,Y.GK,Y.Z2,Y.WN,Y.Q6,O.fg,g.rl,g.nJ,g.TL,V.HM,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,K.V,p.QX]})}return n})();const G1=()=>["all"],A1=n=>({"error-border":n}),N1=()=>["no_channel"],Ft=n=>({width:n}),M1=n=>({"display-none":n});function B1(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function $1(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function V1(n,o){1&n&&t.nrm(0,"th",37)}function O1(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function H1(n,o){if(1&n&&(t.j41(0,"span",43),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Y1(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,O1,2,1,"span",39)(2,H1,2,1,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!e.announceChannel),t.R7$(),t.Y8G("ngIf",e.announceChannel)}}function X1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"State"),t.k0s())}function U1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function z1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Short Channel ID"),t.k0s())}function J1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function q1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Channel ID"),t.k0s())}function Q1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Z1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Alias"),t.k0s())}function W1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.alias)}}function K1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Node ID"),t.k0s())}function tc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function ec(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Initiator"),t.k0s())}function nc(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function ic(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function ac(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function oc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function sc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function lc(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Balance Score"),t.k0s())}function rc(n,o){if(1&n&&(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&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function cc(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function mc(n,o){if(1&n){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 s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",55),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(7,"Force Close"),t.k0s()()()()}}function pc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No inactive channel available."),t.k0s())}function uc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting inactive channels..."),t.k0s())}function dc(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function hc(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,pc,2,0,"p",59)(2,uc,2,0,"p",59)(3,dc,2,1,"p",59),t.k0s()),2&n){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 fc(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,M1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function _c(n,o){1&n&&t.nrm(0,"tr",61)}function gc(n,o){1&n&&t.nrm(0,"tr",62)}let Cc=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.camelCaseWithSpaces=r,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=e.inactiveChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(e,i){this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(m=>{m&&this.store.dispatch((0,k.w0)({payload:{channelId:e.channelId||"",force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"inactive",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=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 a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]: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(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){if(1&i){const s=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(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,B1,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(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,$1,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,V1,1,0,"th",13)(20,Y1,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,X1,2,0,"th",16)(23,U1,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,z1,2,0,"th",16)(26,J1,2,1,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,q1,2,0,"th",16)(29,Q1,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Z1,2,0,"th",16)(32,W1,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,K1,2,0,"th",16)(35,tc,4,4,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,ec,2,0,"th",16)(38,nc,2,1,"td",14),t.bVm(),t.qex(39,22),t.DNE(40,ic,2,0,"th",23)(41,ac,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,oc,2,0,"th",23)(44,sc,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,lc,2,0,"th",16)(47,rc,6,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,cc,6,0,"th",27)(50,mc,8,0,"td",28),t.bVm(),t.qex(51,29),t.DNE(52,hc,4,3,"td",30),t.bVm(),t.DNE(53,fc,1,3,"tr",31)(54,_c,1,0,"tr",32)(55,gc,1,0,"tr",33),t.k0s()(),t.nrm(56,"mat-paginator",34),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,G1).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,A1,""!==a.errorMessage)),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(17,N1)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.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 n})();const yc=()=>["all"],bc=()=>["no_event"],Fc=n=>({"ml-0":n}),it=n=>({width:n}),Ec=n=>({"display-none":n});function xc(n,o){if(1&n&&(t.j41(0,"div",6),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Lc(n,o){if(1&n&&(t.j41(0,"mat-option",14),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Sc(n,o){if(1&n){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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(7,"perfect-scrollbar"),t.DNE(8,Lc,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){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()()}if(2&n){const e=t.XpG();t.R7$(6),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(3,yc).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter)}}function vc(n,o){1&n&&t.nrm(0,"mat-progress-bar",42)}function Rc(n,o){1&n&&t.nrm(0,"th",43)}function Ic(n,o){if(1&n&&(t.nrm(0,"span",46),t.nI1(1,"camelcase")),2&n){const e=t.XpG().$implicit,i=t.XpG(2);t.FS9("matTooltip",t.bMT(1,2,null==e?null:e.type)),t.Y8G("ngClass",t.eq3(4,Fc,i.screenSize===i.screenSizeEnum.XS))}}function kc(n,o){if(1&n&&(t.j41(0,"td",44),t.DNE(1,Ic,2,6,"span",45),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","payment-relayed"!==(null==e?null:e.type))}}function Tc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Date/Time"),t.k0s())}function wc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function jc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel ID"),t.k0s())}function Dc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelId)}}function Pc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel Short ID"),t.k0s())}function Gc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.fromShortChannelId)}}function Ac(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel"),t.k0s())}function Nc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelAlias)}}function Mc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel ID"),t.k0s())}function Bc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelId)}}function $c(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel Short ID"),t.k0s())}function Vc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.toShortChannelId)}}function Oc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel"),t.k0s())}function Hc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelAlias)}}function Yc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Payment Hash"),t.k0s())}function Xc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Uc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount In (Sats)"),t.k0s())}function zc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountIn))}}function Jc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount Out (Sats)"),t.k0s())}function qc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountOut))}}function Qc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Fee Earned (Sats)"),t.k0s())}function Zc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function Wc(n,o){if(1&n){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(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Kc(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",56)(1,"button",57),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG(2);return t.Njj(r.onForwardingEventClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function tm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No forwarding history available."),t.k0s())}function em(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting forwarding history..."),t.k0s())}function nm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function im(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,tm,2,0,"p",59)(2,em,2,0,"p",59)(3,nm,2,1,"p",59),t.k0s()),2&n){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 am(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ec,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function om(n,o){1&n&&t.nrm(0,"tr",61)}function sm(n,o){1&n&&t.nrm(0,"tr",62)}function lm(n,o){if(1&n&&(t.j41(0,"div",15),t.DNE(1,vc,1,0,"mat-progress-bar",16),t.j41(2,"table",17,0),t.qex(4,18),t.DNE(5,Rc,1,0,"th",19)(6,kc,2,1,"td",20),t.bVm(),t.qex(7,21),t.DNE(8,Tc,2,0,"th",22)(9,wc,3,4,"td",20),t.bVm(),t.qex(10,23),t.DNE(11,jc,2,0,"th",22)(12,Dc,4,4,"td",20),t.bVm(),t.qex(13,24),t.DNE(14,Pc,2,0,"th",22)(15,Gc,2,1,"td",20),t.bVm(),t.qex(16,25),t.DNE(17,Ac,2,0,"th",22)(18,Nc,4,4,"td",20),t.bVm(),t.qex(19,26),t.DNE(20,Mc,2,0,"th",22)(21,Bc,4,4,"td",20),t.bVm(),t.qex(22,27),t.DNE(23,$c,2,0,"th",22)(24,Vc,2,1,"td",20),t.bVm(),t.qex(25,28),t.DNE(26,Oc,2,0,"th",22)(27,Hc,4,4,"td",20),t.bVm(),t.qex(28,29),t.DNE(29,Yc,2,0,"th",22)(30,Xc,4,4,"td",20),t.bVm(),t.qex(31,30),t.DNE(32,Uc,2,0,"th",31)(33,zc,4,3,"td",20),t.bVm(),t.qex(34,32),t.DNE(35,Jc,2,0,"th",31)(36,qc,4,3,"td",20),t.bVm(),t.qex(37,33),t.DNE(38,Qc,2,0,"th",31)(39,Zc,4,3,"td",20),t.bVm(),t.qex(40,34),t.DNE(41,Wc,6,0,"th",35)(42,Kc,3,0,"td",36),t.bVm(),t.qex(43,37),t.DNE(44,im,4,3,"td",38),t.bVm(),t.DNE(45,am,1,3,"tr",39)(46,om,1,0,"tr",40)(47,sm,1,0,"tr",41),t.k0s()()),2&n){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,bc)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}function rm(n,o){if(1&n&&t.nrm(0,"mat-paginator",63),2&n){const e=t.XpG();t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Ot=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:l.wn.COMPLETED,action:"FetchPayments"},this.eventsData=e.eventsData.currentValue,e.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),e.selFilter&&!e.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=e.pageSettings.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=e.payments&&e.payments.relayed?e.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(e,i){const a=[[{key:"paymentHash",value:e.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"timestamp",value:Math.round((e.timestamp||0)/1e3),title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"fee",value:(e.amountIn||0)-(e.amountOut||0),title:"Fee Earned (Sats)",width:50,type:l.UN.NUMBER}],[{key:"amountIn",value:e.amountIn,title:"Amount In (Sats)",width:50,type:l.UN.NUMBER},{key:"amountOut",value:e.amountOut,title:"Amount Out (Sats)",width:50,type:l.UN.NUMBER}],[{key:"fromChannelAlias",value:e.fromChannelAlias,title:"From Channel Alias",width:50,type:l.UN.STRING},{key:"fromShortChannelId",value:e.fromShortChannelId,title:"From Short Channel ID",width:50,type:l.UN.STRING}],[{key:"fromChannelId",value:e.fromChannelId,title:"From Channel ID",width:100,type:l.UN.STRING}],[{key:"toChannelAlias",value:e.toChannelAlias,title:"To Channel Alias",width:50,type:l.UN.STRING},{key:"toShortChannelId",value:e.toShortChannelId,title:"To Short Channel ID",width:50,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"To Channel ID",width:100,type:l.UN.STRING}]];"payment-relayed"!==e.type&&a?.unshift([{key:"type",value:this.commonService.camelCase(e.type),title:"Relay Type",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:a}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(e){const i=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column):this.commonService.titleCase(e)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(e.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":a=(e.amountIn-e.amountOut).toString()||"0";break;default:a=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 a.includes(i)}}loadForwardingEventsTable(e){this.forwardingHistoryEvents=new c.I6([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(i,a)=>"fee"===a?i.amountIn-i.amountOut:i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[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(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,xc,2,1,"div",2)(2,Sc,13,4,"div",3)(3,lm,48,8,"div",4)(4,rm,1,3,"mat-paginator",5),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.vh,z.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 n})();const cm=["tableIn"],mm=["tableOut"],pm=["paginatorIn"],um=["paginatorOut"],dm=(n,o)=>({"mt-2":n,"mt-1":o}),hm=()=>["no_incoming_event"],fm=n=>({"mt-2":n}),_m=()=>["no_outgoing_event"],lt=n=>({width:n}),Ht=n=>({"display-none":n});function gm(n,o){if(1&n&&(t.j41(0,"div",7),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Cm(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function ym(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function bm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Fm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Em(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function xm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Lm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Sm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function vm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Rm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Im(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function km(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No incoming routing peer available."),t.k0s())}function Tm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting incoming routing peers..."),t.k0s())}function wm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function jm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,km,2,0,"p",42)(2,Tm,2,0,"p",42)(3,wm,2,1,"p",42),t.k0s()),2&n){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 Dm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Pm(n,o){1&n&&t.nrm(0,"tr",44)}function Gm(n,o){1&n&&t.nrm(0,"tr",45)}function Am(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function Nm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Mm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Bm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function $m(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Vm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Om(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Hm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ym(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Xm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Um(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function zm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No outgoing routing peer available."),t.k0s())}function Jm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting outgoing routing peers..."),t.k0s())}function qm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Qm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,zm,2,0,"p",42)(2,Jm,2,0,"p",42)(3,qm,2,1,"p",42),t.k0s()),2&n){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 Zm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function Wm(n,o){1&n&&t.nrm(0,"tr",44)}function Km(n,o){1&n&&t.nrm(0,"tr",45)}function tp(n,o){if(1&n&&(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,Cm,1,0,"mat-progress-bar",14),t.j41(8,"table",15,0),t.qex(10,16),t.DNE(11,ym,2,0,"th",17)(12,bm,4,4,"td",18),t.bVm(),t.qex(13,19),t.DNE(14,Fm,2,0,"th",17)(15,Em,4,4,"td",18),t.bVm(),t.qex(16,20),t.DNE(17,xm,2,0,"th",21)(18,Lm,4,3,"td",18),t.bVm(),t.qex(19,22),t.DNE(20,Sm,2,0,"th",21)(21,vm,4,3,"td",18),t.bVm(),t.qex(22,23),t.DNE(23,Rm,2,0,"th",21)(24,Im,4,3,"td",18),t.bVm(),t.qex(25,24),t.DNE(26,jm,4,3,"td",25),t.bVm(),t.DNE(27,Dm,1,3,"tr",26)(28,Pm,1,0,"tr",27)(29,Gm,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,Am,1,0,"mat-progress-bar",14),t.j41(39,"table",32,2),t.qex(41,16),t.DNE(42,Nm,2,0,"th",17)(43,Mm,4,4,"td",18),t.bVm(),t.qex(44,19),t.DNE(45,Bm,2,0,"th",17)(46,$m,4,4,"td",18),t.bVm(),t.qex(47,20),t.DNE(48,Vm,2,0,"th",21)(49,Om,4,3,"td",18),t.bVm(),t.qex(50,22),t.DNE(51,Hm,2,0,"th",21)(52,Ym,4,3,"td",18),t.bVm(),t.qex(53,23),t.DNE(54,Xm,2,0,"th",21)(55,Um,4,3,"td",18),t.bVm(),t.qex(56,33),t.DNE(57,Qm,4,3,"td",25),t.bVm(),t.DNE(58,Zm,1,3,"tr",26)(59,Wm,1,0,"tr",27)(60,Km,1,0,"tr",28),t.k0s(),t.nrm(61,"mat-paginator",29,3),t.k0s()()()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngClass",t.l_i(22,dm,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,hm)),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,fm,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,_m)),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 ep=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.camelCaseWithSpaces=s,this.nodePageDefs=l.WW,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"totalFee",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.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(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(e)})}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(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(e,i)=>{let a="";return a="all"===this.selFilterByIn?JSON.stringify(e).toLowerCase():"string"==typeof e[this.selFilterByIn]?e[this.selFilterByIn].toLowerCase():"boolean"==typeof e[this.selFilterByIn]?e[this.selFilterByIn]?"yes":"no":e[this.selFilterByIn].toString(),a.includes(i)},this.routingPeersOutgoing.filterPredicate=(e,i)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(e).toLowerCase();break;case"total_amount":case"total_fee":a=(+(e[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof e[this.selFilterByOut]?e[this.selFilterByOut].toLowerCase():"boolean"==typeof e[this.selFilterByOut]?e[this.selFilterByOut]?"yes":"no":e[this.selFilterByOut].toString()}return a.includes(i)}}loadRoutingPeersTable(e){if(e.length>0){const i=this.groupRoutingPeers(e);this.routingPeersIncoming=new c.I6(i[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.I6(i[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(e){const i=[],a=[];return e.forEach(s=>{const r=i.find(T=>T.channelId===s.fromChannelId),m=a.find(T=>T.channelId===s.toChannelId);r?(r.events++,r.totalAmount=+r.totalAmount+ +s.amountIn,r.totalFee=s.amountIn-s.amountOut+ +r.totalFee):i.push({channelId:s.fromChannelId,alias:s.fromChannelAlias,events:1,totalAmount:+s.amountIn,totalFee:s.amountIn-s.amountOut}),m?(m.events++,m.totalAmount=+m.totalAmount+ +s.amountOut,m.totalFee=s.amountIn-s.amountOut+ +m.totalFee):a.push({channelId:s.toChannelId,alias:s.toChannelAlias,events:1,totalAmount:+s.amountOut,totalFee:s.amountIn-s.amountOut})}),[this.commonService.sortDescByKey(i,"totalFee"),this.commonService.sortDescByKey(a,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(cm,5,x.B4),t.GBs(mm,5,x.B4),t.GBs(pm,5),t.GBs(um,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sortIn=s.first),t.mGM(s=t.lsd())&&(a.sortOut=s.first),t.mGM(s=t.lsd())&&(a.paginatorIn=s.first),t.mGM(s=t.lsd())&&(a.paginatorOut=s.first)}},features:[t.Jv_([{provide:I.xX,useValue:(0,l.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(i,a){1&i&&(t.j41(0,"div",4),t.DNE(1,gm,2,1,"div",5)(2,tp,63,29,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.bT,p.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,V.HM,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.Ld,p.QX]})}return n})();function np(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",8),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let ip=(()=>{class n{constructor(e){this.router=e,this.faChartBar=F.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-reports"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(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,np,2,3,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),t.k0s()()()),2&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faChartBar),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();var Yt=_(6064),Xt=_(4655);function ap(n,o){if(1&n&&(t.j41(0,"div",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){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 op(n,o){1&n&&(t.j41(0,"div",15),t.EFF(1,"No routing report for the selected period"),t.k0s())}function sp(n,o){if(1&n&&(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&n){const e=o.model,i=t.XpG(2);t.R7$(2),t.SpI("Events: ",t.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0),""),t.R7$(3),t.SpI("Fee: ",t.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"),"")}}function lp(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical",16),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,sp,7,7,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){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 rp(n,o){if(1&n&&t.nrm(0,"rtl-ecl-forwarding-history",18),2&n){const e=t.XpG();t.Y8G("pageId","reports")("tableId","routing")("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let cp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.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=l.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.events=e.payments&&e.payments.relayed?e.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(e)}),this.commonService.containerSizeUpdated.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(e,i){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()+" To "+i.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(r=>{Math.floor((r.timestamp||0)/1e3)>=a&&Math.floor((r.timestamp||0)/1e3)0&&"ngx-charts"===e.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(e){this.eventFilterValue=this.reportPeriod===l.rs[1]?e.name+"/"+this.startDate.getFullYear():e.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}prepareEventsReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.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,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.KR[e].days+1:l.KR[e].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(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},decls:17,vars:7,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"],[3,"pageId","tableId","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"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3)(3,"mat-radio-group",4),t.mxI("ngModelChange",function(r){return t.DH7(a.selReportBy,r)||(a.selReportBy=r),r}),t.bIt("change",function(){return a.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,ap,4,8,"div",9)(12,op,2,0,"div",10),t.j41(13,"div",11),t.DNE(14,lp,3,11,"ngx-charts-bar-vertical",12),t.k0s(),t.j41(15,"div",11),t.DNE(16,rp,1,4,"rtl-ecl-forwarding-history",13),t.k0s()()()),2&i&&(t.R7$(3),t.R50("ngModel",a.selReportBy),t.R7$(3),t.FS9("value",a.reportBy.FEES),t.R7$(2),t.FS9("value",a.reportBy.EVENTS),t.R7$(3),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(),t.Y8G("ngIf",a.routingReportData.length<=0||a.filteredEventsBySelectedPeriod.length<=0),t.R7$(2),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(2),t.Y8G("ngIf",a.filteredEventsBySelectedPeriod.length>0))},dependencies:[p.bT,d.BC,d.vS,h.DJ,h.sA,h.UI,ot.VT,ot._g,Yt.L8,Xt.m,Ot,p.QX],data:{animation:[yt.q]}})}return n})();var mp=_(5085);function pp(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){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 up(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){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 dp(n,o){if(1&n&&(t.j41(0,"div",9),t.DNE(1,pp,4,7,"div",10)(2,up,4,7,"div",10),t.k0s()),2&n){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 hp(n,o){1&n&&(t.j41(0,"div",12),t.EFF(1,"No transactions report for the selected period"),t.k0s())}function fp(n,o){if(1&n&&(t.j41(0,"span",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=o.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 _p(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical-2d",13),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,fp,4,9,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){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 gp(n,o){if(1&n&&t.nrm(0,"rtl-transactions-report-table",15),2&n){const e=t.XpG();t.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let Cp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.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=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(C.KT).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(C.rN))).subscribe(([e,i])=>{this.payments=e.payments.sent?e.payments.sent:[],this.invoices=i.invoices?i.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,f.Q)(this.unSubs[2])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(e){"svg"===e.srcElement.tagName&&e.srcElement.classList.length>0&&"ngx-charts"===e.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(e){this.transactionFilterValue=this.reportPeriod===l.rs[1]?e.series.toString()+"/"+this.startDate.getFullYear():e.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(e,i){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3),r=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const m=this.payments?.filter(y=>y.firstPartTimestamp&&Math.floor(y.firstPartTimestamp/1e3)>=a&&Math.floor(y.firstPartTimestamp/1e3)"received"===y.status&&y.timestamp&&y.timestamp>=a&&y.timestamp{const P=new Date(y.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[P].series[0].value=r[P].series[0].value+y.recipientAmount,r[P].series[0].extra.total=r[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(y=>{const P=new Date(1e3*(y.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[P].series[1].value=r[P].series[1].value+y.amountSettled,r[P].series[1].extra.total=r[P].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let y=0;y{const P=Math.floor((Math.floor((y.firstPartTimestamp||0)/1e3)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[P].series[0].value=r[P].series[0].value+y.recipientAmount,r[P].series[0].extra.total=r[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(y=>{const P=Math.floor(((y.timestamp||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[P].series[1].value=r[P].series[1].value+y.amountSettled,r[P].series[1].extra.total=r[P].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((e,i)=>i.series[0].extra.total>0||i.series[1].extra.total>0?e.concat({date:i.date,amount_paid:i.series[0].value,num_payments:i.series[0].extra.total,amount_received:i.series[1].value,num_invoices:i.series[1].extra.total}):e,[])}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.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,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.KR[e].days+1:l.KR[e].days}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},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(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3),t.DNE(3,dp,3,3,"div",4)(4,hp,2,0,"div",5),t.j41(5,"div",6),t.DNE(6,_p,3,13,"ngx-charts-bar-vertical-2d",7),t.k0s(),t.j41(7,"div",6),t.DNE(8,gp,1,5,"rtl-transactions-report-table",8),t.k0s()()()),2&i&&(t.R7$(3),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(),t.Y8G("ngIf",a.transactionsNonZeroReportData.length<=0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0))},dependencies:[p.bT,h.DJ,h.sA,h.UI,Yt.Dl,Xt.m,mp.T,p.QX],data:{animation:[yt.q]}})}return n})();var N=_(7186),yp=_(13);function bp(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",9),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Fp=(()=>{class n{constructor(e){this.router=e,this.faSearch=F.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-graph"]],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,"active","routerLink","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","active","routerLink"]],template:function(i,a){if(1&i&&(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,bp,2,3,"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&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faSearch),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();const Ep=[{path:"",component:xt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ka,canActivate:[(0,N.fe)()]},{path:"onchain",component:go,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:as,canActivate:[(0,N.fe)()]},{path:"send",component:os,canActivate:[(0,N.fe)()]}]},{path:"connections",component:bo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Ls,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:cr,canActivate:[(0,N.fe)()]},{path:"pending",component:Hr,canActivate:[(0,N.fe)()]},{path:"inactive",component:Cc,canActivate:[(0,N.fe)()]}]},{path:"peers",component:y1,data:{sweepAll:!1},canActivate:[(0,N.fe)()]}]},{path:"transactions",component:Eo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Rt,canActivate:[(0,N.fe)()]},{path:"invoices",component:It,canActivate:[(0,N.fe)()]}]},{path:"routing",component:Lo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ot,canActivate:[(0,N.fe)()]},{path:"peers",component:ep,canActivate:[(0,N.fe)()]}]},{path:"reports",component:ip,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:cp,canActivate:[(0,N.fe)()]},{path:"transactions",component:Cp,canActivate:[(0,N.fe)()]}]},{path:"graph",component:Fp,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:ns,canActivate:[(0,N.fe)()]},{path:"queryroutes",component:P1,canActivate:[(0,N.fe)()]}]},{path:"**",component:yp.X}]}],xp=b.iI.forChild(Ep);var Lp=_(9029);let Sp=(()=>{class n{static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275mod=t.$C({type:n,bootstrap:[xt]});static#n=this.\u0275inj=t.G2t({imports:[p.MD,Lp.G,xp]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/190.03f035c34a56c8be.js b/frontend/190.03f035c34a56c8be.js new file mode 100644 index 00000000..8212ce84 --- /dev/null +++ b/frontend/190.03f035c34a56c8be.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[190],{9190:(GC,$e,g)=>{g.r($e),g.d($e,{LNDModule:()=>LC});var d=g(177),x=g(1188),pt=g(9881),e=g(4438),h=g(2920),B=g(7575);function mt(n,s){1&n&&e.nrm(0,"mat-progress-bar",3)}let Ae=(()=>{class n{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof x.Z:this.loading=!0;break;case a instanceof x.wF:case a instanceof x.j5:case a instanceof x.L6:this.loading=!1}})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lnd-root"]],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,i){1&a&&(e.j41(0,"div",1),e.DNE(1,mt,1,0,"mat-progress-bar",2),e.nrm(2,"router-outlet",null,0),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.loading))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,x.n3],data:{animation:[pt.E]}})}}return n})();var u=g(1413),_=g(6977),he=g(3993),Y=g(5964),Me=g(614),b=g(5383),l=g(4416),X=g(9647),y=g(3536),j=g(8570),I=g(9640),Q=g(4054),N=g(2571),M=g(60),L=g(6038),G=g(8834),T=g(5596),_e=g(6195),ie=g(9213),ve=g(9115),P=g(6850),w=g(6695),k=g(2042),p=g(9159),R=g(2798),O=g(5351),v=g(190),m=g(9417),$=g(9631),f=g(6467),V=g(6600),me=g(450),Z=g(4823),K=g(9587),te=g(6114);function ut(n,s){1&n&&(e.j41(0,"span",32),e.EFF(1,"= "),e.k0s())}function dt(n,s){if(1&n&&(e.j41(0,"span",33),e.nrm(1,"fa-icon",34),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ht(n,s){if(1&n&&e.nrm(0,"span",35),2&n){const t=e.XpG();e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function _t(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(e.bMT(2,2,t))}}function ft(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.invoiceError)}}function gt(n,s){if(1&n&&(e.j41(0,"div",37),e.nrm(1,"fa-icon",38),e.DNE(2,ft,2,1,"span",39),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.invoiceError)}}let Ct=(()=>{class n{constructor(t,a,i,o,r,c){this.dialogRef=t,this.data=a,this.store=i,this.decimalPipe=o,this.commonService=r,this.actions=c,this.faExclamationTriangle=b.zpE,this.convertedCurrency=null,this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===t.payload.action&&(this.invoiceError=t.payload.message,t.payload.status===l.wn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="";let a=0;a=this.expiry?this.selTimeUnit!==l.F7.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS):this.expiry:l.It,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,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=l.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(Q.En))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-create-invoices"]],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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.memo,c)||(i.memo=c),e.Njj(c)}),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(c){return e.eBV(o),e.DH7(i.invoiceValue,c)||(i.invoiceValue=c),e.Njj(c)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(19,"span",13),e.EFF(20,"Sats "),e.k0s(),e.j41(21,"mat-hint",14),e.DNE(22,ut,2,0,"span",15)(23,dt,2,1,"span",16)(24,ht,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(c){return e.eBV(o),e.DH7(i.expiry,c)||(i.expiry=c),e.Njj(c)}),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(c){return e.eBV(o),e.Njj(i.onTimeUnitChange(c))}),e.DNE(35,_t,3,4,"mat-option",21),e.k0s()(),e.j41(36,"div",22)(37,"div",23)(38,"mat-slide-toggle",24),e.mxI("ngModelChange",function(c){return e.eBV(o),e.DH7(i.private,c)||(i.private=c),e.Njj(c)}),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(c){return e.eBV(o),e.DH7(i.isAmp,c)||(i.isAmp=c),e.Njj(c)}),e.EFF(44,"AMP Invoice"),e.k0s(),e.j41(45,"mat-icon",27),e.EFF(46,"info_outline"),e.k0s()()(),e.DNE(47,gt,3,2,"div",28),e.j41(48,"div",29)(49,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(50,"Clear Field"),e.k0s(),e.j41(51,"button",31),e.bIt("click",function(){e.eBV(o);const c=e.sdS(10);return e.Njj(i.onAddInvoice(c))}),e.EFF(52,"Create Invoice"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.R50("ngModel",i.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",i.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"FA"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"SVG"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.SpI(" ",i.invoiceValueHint," "),e.R7$(4),e.Y8G("step",i.selTimeUnit===i.timeUnitEnum.SECS?300:i.selTimeUnit===i.timeUnitEnum.MINS?10:i.selTimeUnit===i.timeUnitEnum.HOURS?2:1)("min",1),e.R50("ngModel",i.expiry),e.R7$(2),e.SpI("",e.bMT(32,18,i.selTimeUnit)," "),e.R7$(3),e.Y8G("value",i.selTimeUnit),e.R7$(),e.Y8G("ngForOf",i.timeUnits),e.R7$(3),e.R50("ngModel",i.private),e.R7$(5),e.R50("ngModel",i.isAmp),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceError))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.MV,f.yw,R.VO,V.wT,me.sG,Z.oV,K.N,te.V,d.PV]})}}return n})();var yt=g(6391),E=g(1771),q=g(2929),A=g(497);const bt=()=>["all"],Ft=n=>({"error-border":n}),xt=()=>["no_invoice"],fe=n=>({"mr-0":n}),se=n=>({width:n}),vt=n=>({"display-none":n});function Tt(n,s){1&n&&(e.j41(0,"span",19),e.EFF(1,"= "),e.k0s())}function St(n,s){if(1&n&&(e.j41(0,"span",20),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function kt(n,s){if(1&n&&e.nrm(0,"span",22),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function Rt(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.memo,i)||(o.memo=i),e.Njj(i)}),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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.invoiceValue,i)||(o.invoiceValue=i),e.Njj(i)}),e.bIt("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(10,"span",11),e.EFF(11,"Sats "),e.k0s(),e.j41(12,"mat-hint",12),e.DNE(13,Tt,2,0,"span",13)(14,St,2,1,"span",14)(15,kt,1,1,"span",15),e.EFF(16),e.k0s()(),e.j41(17,"div",16)(18,"button",17),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(19,"Clear Field"),e.k0s(),e.j41(20,"button",18),e.bIt("click",function(){e.eBV(t);const i=e.sdS(1),o=e.XpG();return e.Njj(o.onAddInvoice(i))}),e.EFF(21,"Create Invoice"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",t.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.SpI(" ",t.invoiceValueHint," ")}}function Et(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openCreateInvoiceModal())}),e.EFF(2,"Create Invoice"),e.k0s()()}}function It(n,s){if(1&n&&(e.j41(0,"mat-option",72),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Lt(n,s){1&n&&e.nrm(0,"mat-progress-bar",73)}function wt(n,s){1&n&&e.nrm(0,"th",74)}function jt(n,s){if(1&n&&e.nrm(0,"span",80),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Gt(n,s){if(1&n&&e.nrm(0,"span",81),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Dt(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Nt(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Pt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,jt,1,3,"span",76)(2,Gt,1,3,"span",77)(3,Dt,1,3,"span",78)(4,Nt,1,3,"span",79),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","OPEN"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","SETTLED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","ACCEPTED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","CANCELED"===(null==t?null:t.state))}}function $t(n,s){1&n&&e.nrm(0,"th",84)}function At(n,s){if(1&n&&(e.j41(0,"span",87),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Mt(n,s){if(1&n&&(e.j41(0,"span",88),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEye)}}function Bt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,At,2,1,"span",85)(2,Mt,2,1,"span",86),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function Ot(n,s){1&n&&e.nrm(0,"th",89)}function Vt(n,s){if(1&n&&(e.j41(0,"span",92),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnToDots)}}function Yt(n,s){if(1&n&&(e.j41(0,"span",93),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnRight)}}function Xt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Vt,2,1,"span",90)(2,Yt,2,1,"span",91),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.is_keysend),e.R7$(),e.Y8G("ngIf",!t.is_keysend)}}function Ut(n,s){1&n&&e.nrm(0,"th",94)}function Ht(n,s){if(1&n&&(e.j41(0,"span",97),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faMoneyBill1)}}function qt(n,s){if(1&n&&(e.j41(0,"span",98),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faBurst)}}function zt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Ht,2,1,"span",95)(2,qt,2,1,"span",96),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",!t.is_amp),e.R7$(),e.Y8G("ngIf",t.is_amp)}}function Jt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Created"),e.k0s())}function Wt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm"),"")}}function Qt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Settled"),e.k0s())}function Zt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(0!=+(null==t?null:t.settle_date)?e.i5U(2,1,1e3*+(null==t?null:t.settle_date),"dd/MMM/y HH:mm"):"-")}}function Kt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Memo"),e.k0s())}function en(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.memo)}}function tn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage"),e.k0s())}function nn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_preimage)}}function an(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage Hash"),e.k0s())}function sn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_hash)}}function on(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Address"),e.k0s())}function ln(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_addr)}}function rn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Request"),e.k0s())}function cn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function pn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Description Hash"),e.k0s())}function mn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function un(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Expiry"),e.k0s())}function dn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.expiry)," ")}}function hn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"CLTV Expiry"),e.k0s())}function _n(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.cltv_expiry)," ")}}function fn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Add Index"),e.k0s())}function gn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.add_index)," ")}}function Cn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Settle Index"),e.k0s())}function yn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.settle_index)," ")}}function bn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount (Sats)"),e.k0s())}function Fn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.value)," ")}}function xn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount Settled (Sats)"),e.k0s())}function vn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_paid_sat)," ")}}function Tn(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Sn(n,s){if(1&n){const t=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 i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onInvoiceClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",107),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onRefreshInvoice(i))}),e.EFF(7,"Refresh"),e.k0s()()()()}}function kn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No invoice available."),e.k0s())}function Rn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting invoices..."),e.k0s())}function En(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function In(n,s){if(1&n&&(e.j41(0,"td",110),e.DNE(1,kn,2,0,"p",111)(2,Rn,2,0,"p",111)(3,En,2,1,"p",111),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Ln(n,s){if(1&n&&e.nrm(0,"tr",112),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,vt,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function wn(n,s){1&n&&e.nrm(0,"tr",113)}function jn(n,s){1&n&&e.nrm(0,"tr",114)}function Gn(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,It,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",35),e.DNE(18,Lt,1,0,"mat-progress-bar",36),e.j41(19,"table",37,1),e.qex(21,38),e.DNE(22,wt,1,0,"th",39)(23,Pt,5,4,"td",40),e.bVm(),e.qex(24,41),e.DNE(25,$t,1,0,"th",42)(26,Bt,3,2,"td",40),e.bVm(),e.qex(27,43),e.DNE(28,Ot,1,0,"th",44)(29,Xt,3,2,"td",40),e.bVm(),e.qex(30,45),e.DNE(31,Ut,1,0,"th",46)(32,zt,3,2,"td",40),e.bVm(),e.qex(33,47),e.DNE(34,Jt,2,0,"th",48)(35,Wt,3,4,"td",40),e.bVm(),e.qex(36,49),e.DNE(37,Qt,2,0,"th",48)(38,Zt,3,4,"td",40),e.bVm(),e.qex(39,50),e.DNE(40,Kt,2,0,"th",48)(41,en,4,4,"td",40),e.bVm(),e.qex(42,51),e.DNE(43,tn,2,0,"th",48)(44,nn,4,4,"td",40),e.bVm(),e.qex(45,52),e.DNE(46,an,2,0,"th",48)(47,sn,4,4,"td",40),e.bVm(),e.qex(48,53),e.DNE(49,on,2,0,"th",48)(50,ln,4,4,"td",40),e.bVm(),e.qex(51,54),e.DNE(52,rn,2,0,"th",48)(53,cn,4,4,"td",40),e.bVm(),e.qex(54,55),e.DNE(55,pn,2,0,"th",48)(56,mn,4,4,"td",40),e.bVm(),e.qex(57,56),e.DNE(58,un,2,0,"th",57)(59,dn,4,3,"td",40),e.bVm(),e.qex(60,58),e.DNE(61,hn,2,0,"th",57)(62,_n,4,3,"td",40),e.bVm(),e.qex(63,59),e.DNE(64,fn,2,0,"th",57)(65,gn,4,3,"td",40),e.bVm(),e.qex(66,60),e.DNE(67,Cn,2,0,"th",57)(68,yn,4,3,"td",40),e.bVm(),e.qex(69,61),e.DNE(70,bn,2,0,"th",57)(71,Fn,4,3,"td",40),e.bVm(),e.qex(72,62),e.DNE(73,xn,2,0,"th",57)(74,vn,4,3,"td",40),e.bVm(),e.qex(75,63),e.DNE(76,Tn,6,0,"th",64)(77,Sn,8,0,"td",65),e.bVm(),e.qex(78,66),e.DNE(79,In,4,3,"td",67),e.bVm(),e.DNE(80,Ln,1,3,"tr",68)(81,wn,1,0,"tr",69)(82,jn,1,0,"tr",70),e.k0s(),e.j41(83,"mat-paginator",71),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,bt).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(2),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",e.eq3(17,Ft,""!==t.errorMessage)),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(19,xt)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalInvoices)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Be=(()=>{class n{constructor(t,a,i,o,r,c,F){this.logger=t,this.store=a,this.decimalPipe=i,this.commonService=o,this.datePipe=r,this.actions=c,this.camelCaseWithReplace=F,this.calledFrom="transactions",this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.faHistory=b.Int,this.faArrowsTurnToDots=b.If6,this.faArrowsTurnRight=b.peG,this.faBurst=b.M29,this.faMoneyBill1=b.Ccf,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new p.I6([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=t.listInvoices.total_invoices||0,this.firstOffset=+(t.listInvoices.first_index_offset||-1),this.lastOffset=+(t.listInvoices.last_index_offset||-1),this.invoicesData=t.listInvoices.invoices||[],this.invoicesData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[4]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.SET_LOOKUP_LND&&this.invoicesData&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(t){const a=this.expiry?this.expiry:l.It;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(t){this.store.dispatch((0,E.xO)({payload:{data:{invoice:t,newlyAdded:!1,component:yt.H}}}))}onRefreshInvoice(t){t&&t.r_hash&&this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!0,paymentHash:Buffer.from(t.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(t){this.invoicesData=this.invoicesData?.map(a=>a.r_hash===t.r_hash?t:a)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.settle_date?this.datePipe.transform(new Date(1e3*t.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"creation_date":case"settle_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":i=t?.private?"private":"public";break;case"is_keysend":i=t?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":i=t?.is_amp?"atomic multi path payment":"non atomic payment";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_keysend"===this.selFilterBy||"is_amp"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadInvoicesTable(t){this.invoices=new p.I6(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t){let a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.previousPageIndex&&t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0),this.store.dispatch((0,v.Do)({payload:{num_max_invoices:t.pageSize,index_offset:i,reversed:a}}))}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[5])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,E.xO)({payload:{data:{pageSize:this.pageSize,component:Ct}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(d.vh),e.rXU(Q.En),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-invoices"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,Rt,22,8,"form",3)(2,Et,3,0,"div",4)(3,Gn,84,20,"div",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.yw,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,Z.oV,w.iy,A.ZF,A.Ld,te.V,d.QX,d.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 n})();var J=g(6697),W=g(1534),U=g(9454),oe=g(850);const Dn=["paymentReq"];function Nn(n,s){if(1&n&&(e.j41(0,"span",36),e.nrm(1,"fa-icon",37),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function Pn(n,s){if(1&n&&e.nrm(0,"span",38),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function $n(n,s){if(1&n&&(e.j41(0,"mat-hint",33),e.EFF(1),e.DNE(2,Nn,2,1,"span",34)(3,Pn,1,1,"span",35),e.EFF(4),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function An(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function Mn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.paymentDecodedHint)}}function Bn(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment amount is required."),e.k0s())}function On(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.paymentAmount,i)||(o.paymentAmount=i),e.Njj(i)}),e.bIt("change",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountChange(i))}),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,Bn,2,0,"mat-error",16),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.R50("ngModel",t.paymentAmount),e.R7$(4),e.Y8G("ngIf",!t.paymentAmount)}}function Vn(n,s){if(1&n&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",null==t?null:t.name," ")}}function Yn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.selFeeLimitType?null:t.selFeeLimitType.placeholder," is required.")}}function Xn(n,s){if(1&n&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh((null==t?null:t.remote_alias)||(null==t?null:t.chan_id))}}function Un(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Channel not found in the list."),e.k0s())}function Hn(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentError)}}function qn(n,s){if(1&n&&(e.j41(0,"div",41),e.nrm(1,"fa-icon",42),e.DNE(2,Hn,2,1,"span",16),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.paymentError)}}let zn=(()=>{class n{constructor(t,a,i,o,r,c,F){this.dialogRef=t,this.store=a,this.logger=i,this.commonService=o,this.decimalPipe=r,this.actions=c,this.dataService=F,this.faExclamationTriangle=b.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 m.hs,this.isAmp=!1,this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.feeLimitTypes=l.nv,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(i=>{this.activeChannels=i.channels&&i.channels.length?i.channels?.filter(o=>o.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND)).subscribe(i=>{i.type===l.QP.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SendPayment"===i.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=i.payload.message)});let t="",a="";this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"",ta?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,_.Q)(this.unSubs[3])).subscribe(i=>{"string"==typeof i&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(t=>0===(t.remote_alias?t.remote_alias.toLowerCase():t.chan_id?t.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(t.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}onSelectedChannelChanged(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const t=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(a=>{const i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"";return i.length===this.selectedChannelCtrl.value.length&&0===i.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];t&&t.length>0?(this.selectedChannelCtrl.setValue(t[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 t={uiMessage:l.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,l.C6)(this.selFeeLimitType.id,this.feeLimit,+this.paymentDecoded.num_satoshis||0),fromDialog:!0};this.store.dispatch((0,v.Fd)({payload:t}))}else{this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=this.paymentAmount?.toString()||"";const t={uiMessage:l.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,l.C6)(this.selFeeLimitType.id,this.feeLimit,this.paymentAmount||0),fromDialog:!0};this.store.dispatch((0,v.Fd)({payload:t}))}}onAmountChange(t){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(t){this.paymentRequest=t,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,J.s)(1)).subscribe({next:a=>{this.paymentDecoded=a,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"BTC",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[4])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(i.OTHER?i.OTHER:0,l.k.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:i=>{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:a=>{this.logger.error(a),this.paymentDecodedHintPre="ERROR: "+a.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(t,a){if(t&&!a){const i=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)+(""!==i?" | First Outgoing Channel: "+i:"")}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=l.nv[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(I.il),e.rXU(j.gP),e.rXU(N.h),e.rXU(d.QX),e.rXU(Q.En),e.rXU(W.u))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(a,i){if(1&a&&e.GBs(Dn,5),2&a){let o;e.mGM(o=e.lsd())&&(i.paymentReq=o.first)}},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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.Njj(i.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return e.eBV(o),e.Njj(!0)}),e.k0s(),e.DNE(16,$n,5,4,"mat-hint",15)(17,An,2,0,"mat-error",16)(18,Mn,2,1,"mat-error",16),e.k0s(),e.DNE(19,On,8,2,"mat-form-field",17),e.j41(20,"mat-expansion-panel",18),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0,!1))})("opened",function(){return e.eBV(o),e.Njj(i.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(c){return e.eBV(o),e.DH7(i.selFeeLimitType,c)||(i.selFeeLimitType=c),e.Njj(c)}),e.DNE(30,Vn,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(c){return e.eBV(o),e.DH7(i.feeLimit,c)||(i.feeLimit=c),e.Njj(c)}),e.k0s(),e.DNE(36,Yn,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 e.eBV(o),e.Njj(i.onSelectedChannelChanged())}),e.DNE(43,Xn,2,2,"mat-option",22),e.k0s(),e.DNE(44,Un,2,0,"mat-error",16),e.k0s(),e.j41(45,"mat-slide-toggle",28),e.mxI("ngModelChange",function(c){return e.eBV(o),e.DH7(i.isAmp,c)||(i.isAmp=c),e.Njj(c)}),e.EFF(46,"AMP Payment"),e.k0s()()(),e.DNE(47,qn,3,2,"div",29),e.j41(48,"div",30)(49,"button",31),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(50,"Clear Fields"),e.k0s(),e.j41(51,"button",32),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onSendPayment())}),e.EFF(52,"Send Payment"),e.k0s()()()()()()}if(2&a){const o=e.sdS(15),r=e.sdS(42);e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.Y8G("ngModel",i.paymentRequest),e.R7$(2),e.Y8G("ngIf",i.paymentRequest&&""!==i.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!i.paymentRequest),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.decodeError),e.R7$(),e.Y8G("ngIf",i.zeroAmtInvoice),e.R7$(5),e.JRh(i.advancedTitle),e.R7$(5),e.R50("value",i.selFeeLimitType),e.R7$(),e.Y8G("ngForOf",i.feeLimitTypes),e.R7$(3),e.JRh(null==i.selFeeLimitType?null:i.selFeeLimitType.placeholder),e.R7$(),e.Y8G("step",1)("min",0)("disabled",i.selFeeLimitType===i.feeLimitTypes[0]),e.R50("ngModel",i.feeLimit),e.R7$(2),e.Y8G("ngIf",i.selFeeLimitType!==i.feeLimitTypes[0]&&!i.feeLimit),e.R7$(4),e.Y8G("formControl",i.selectedChannelCtrl)("matAutocomplete",r),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",i.filteredMinAmtActvChannels),e.R7$(),e.Y8G("ngIf",null==i.selectedChannelCtrl.errors?null:i.selectedChannelCtrl.errors.notfound),e.R7$(),e.R50("ngModel",i.isAmp),e.R7$(2),e.Y8G("ngIf",""!==i.paymentError)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.l_,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,$.fg,f.rl,f.nJ,f.MV,f.TL,R.VO,V.wT,me.sG,oe.$3,oe.pN,K.N,te.V]})}}return n})();var ue=g(7541);const Jn=["sendPaymentForm"],Wn=()=>["all"],Qn=n=>({"error-border":n}),Zn=()=>["no_payment"],le=n=>({"mr-0":n}),ne=n=>({width:n}),Kn=n=>({"display-none":n});function ei(n,s){if(1&n&&(e.j41(0,"span",18),e.nrm(1,"fa-icon",19),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ti(n,s){if(1&n&&e.nrm(0,"span",20),2&n){const t=e.XpG(3);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function ni(n,s){if(1&n&&(e.j41(0,"mat-hint",15),e.EFF(1),e.DNE(2,ei,2,1,"span",16)(3,ti,1,1,"span",17),e.EFF(4),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function ii(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function ai(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPaymentRequestEntry(i))})("matTextareaAutosize",function(){return e.eBV(t),e.Njj(!0)}),e.k0s(),e.DNE(7,ni,5,4,"mat-hint",10)(8,ii,2,0,"mat-error",11),e.k0s(),e.j41(9,"div",12)(10,"button",13),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendPayment())}),e.EFF(13,"Send Payment"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngModel",t.paymentRequest),e.R7$(2),e.Y8G("ngIf",t.paymentRequest&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!t.paymentRequest)}}function si(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openSendPaymentModal())}),e.EFF(2,"Send Payment"),e.k0s()()}}function oi(n,s){if(1&n&&(e.j41(0,"mat-option",76),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function li(n,s){1&n&&e.nrm(0,"mat-progress-bar",77)}function ri(n,s){1&n&&e.nrm(0,"th",78)}function ci(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function pi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function mi(n,s){if(1&n&&(e.j41(0,"td",79),e.DNE(1,ci,1,3,"span",80)(2,pi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status))}}function ui(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Creation Date"),e.k0s())}function di(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm")," ")}}function hi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Hash"),e.k0s())}function _i(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash)}}function fi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Request"),e.k0s())}function gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function Ci(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Preimage"),e.k0s())}function yi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage)}}function bi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description"),e.k0s())}function Fi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description)}}function xi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description Hash"),e.k0s())}function vi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function Ti(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Failure Reason"),e.k0s())}function Si(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.brH(2,1,null==t?null:t.failure_reason,"failure_reason","_")," ")}}function ki(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Payment Index"),e.k0s())}function Ri(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.payment_index))}}function Ei(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Fee (Sats)"),e.k0s())}function Ii(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.fee))}}function Li(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Value (Sats)"),e.k0s())}function wi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.value))}}function ji(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Hops"),e.k0s())}function Gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh((null==t||null==t.htlcs[0]||null==t.htlcs[0].route||null==t.htlcs[0].route.hops?null:t.htlcs[0].route.hops.length)||0)}}function Di(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Ni(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",93)(1,"button",94),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onPaymentClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Pi(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No payment available."),e.k0s())}function $i(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting payments..."),e.k0s())}function Ai(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function Mi(n,s){if(1&n&&(e.j41(0,"td",95),e.DNE(1,Pi,2,0,"p",11)(2,$i,2,0,"p",11)(3,Ai,2,1,"p",11),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Bi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Oi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Vi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Yi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Xi(n,s){if(1&n&&(e.j41(0,"span",96),e.DNE(1,Vi,1,3,"span",80)(2,Yi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===t.status),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==t.status)}}function Ui(n,s){if(1&n&&(e.qex(0),e.DNE(1,Xi,3,2,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Hi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.DNE(2,Bi,1,3,"span",80)(3,Oi,1,3,"span",81),e.k0s(),e.DNE(4,Ui,2,1,"ng-container",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function qi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,t.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function zi(n,s){if(1&n&&(e.qex(0),e.DNE(1,qi,3,4,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ji(n,s){if(1&n&&(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&n){const t=s.$implicit;e.R7$(2),e.SpI(" Total Attempts: ",null==t||null==t.htlcs?null:t.htlcs.length," "),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Wi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.index;e.R7$(),e.SpI(" HTLC ",t+1," ")}}function Qi(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Wi,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Zi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,Qi,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ki(n,s){1&n&&e.nrm(0,"span",96)}function ea(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Ki,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ta(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ea,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function na(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.preimage," ")}}function ia(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,na,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function aa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ia,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function sa(n,s){1&n&&e.nrm(0,"span",96)}function oa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,sa,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function la(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,oa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ra(n,s){1&n&&e.nrm(0,"span",96)}function ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ra,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function pa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ma(n,s){1&n&&e.nrm(0,"span",96)}function ua(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ma,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function da(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.nI1(3,"camelcaseWithReplace"),e.k0s(),e.DNE(4,ua,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.brH(3,2,null==t?null:t.failure_reason,"failure_reason","_")," "),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ha(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,t.attempt_id)," ")}}function _a(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ha,3,3,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function fa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,_a,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,2,null==t?null:t.payment_index)),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ga(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_fees,"1.0-0")," ")}}function Ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ga,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ya(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.fee,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ba(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_amt,"1.0-0")," ")}}function Fa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ba,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function xa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Fa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.value,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function va(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,(null==t.route||null==t.route.hops?null:t.route.hops.length)||0,"1.0-0")," ")}}function Ta(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,va,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Sa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2,"-"),e.k0s(),e.DNE(3,Ta,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(3),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ka(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",104)(1,"button",105),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Ra(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,ka,3,1,"div",103),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ea(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",79)(1,"span",101)(2,"button",102),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!(null!=i&&i.is_expanded))}),e.EFF(3),e.k0s()(),e.DNE(4,Ra,2,1,"div",11),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(null!=t&&t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ia(n,s){1&n&&e.nrm(0,"tr",106)}function La(n,s){if(1&n&&e.nrm(0,"tr",107),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Kn,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function wa(n,s){1&n&&e.nrm(0,"tr",108)}function ja(n,s){1&n&&e.nrm(0,"tr",106)}function Ga(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,oi,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",33)(18,"div",34),e.DNE(19,li,1,0,"mat-progress-bar",35),e.j41(20,"table",36,2),e.qex(22,37),e.DNE(23,ri,1,0,"th",38)(24,mi,3,2,"td",39),e.bVm(),e.qex(25,40),e.DNE(26,ui,2,0,"th",41)(27,di,3,4,"td",39),e.bVm(),e.qex(28,42),e.DNE(29,hi,2,0,"th",41)(30,_i,4,4,"td",39),e.bVm(),e.qex(31,43),e.DNE(32,fi,2,0,"th",41)(33,gi,4,4,"td",39),e.bVm(),e.qex(34,44),e.DNE(35,Ci,2,0,"th",41)(36,yi,4,4,"td",39),e.bVm(),e.qex(37,45),e.DNE(38,bi,2,0,"th",41)(39,Fi,4,4,"td",39),e.bVm(),e.qex(40,46),e.DNE(41,xi,2,0,"th",41)(42,vi,4,4,"td",39),e.bVm(),e.qex(43,47),e.DNE(44,Ti,2,0,"th",41)(45,Si,3,5,"td",39),e.bVm(),e.qex(46,48),e.DNE(47,ki,2,0,"th",49)(48,Ri,4,3,"td",39),e.bVm(),e.qex(49,50),e.DNE(50,Ei,2,0,"th",49)(51,Ii,4,3,"td",39),e.bVm(),e.qex(52,51),e.DNE(53,Li,2,0,"th",49)(54,wi,4,3,"td",39),e.bVm(),e.qex(55,52),e.DNE(56,ji,2,0,"th",49)(57,Gi,3,1,"td",39),e.bVm(),e.qex(58,53),e.DNE(59,Di,6,0,"th",54)(60,Ni,3,0,"td",55),e.bVm(),e.qex(61,56),e.DNE(62,Mi,4,3,"td",57),e.bVm(),e.qex(63,58),e.DNE(64,Hi,5,3,"td",39),e.bVm(),e.qex(65,59),e.DNE(66,Ji,4,2,"td",39),e.bVm(),e.qex(67,60),e.DNE(68,Zi,5,5,"td",39),e.bVm(),e.qex(69,61),e.DNE(70,ta,5,5,"td",39),e.bVm(),e.qex(71,62),e.DNE(72,aa,5,5,"td",39),e.bVm(),e.qex(73,63),e.DNE(74,la,5,5,"td",39),e.bVm(),e.qex(75,64),e.DNE(76,pa,5,5,"td",39),e.bVm(),e.qex(77,65),e.DNE(78,da,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,ya,5,5,"td",39),e.bVm(),e.qex(83,68),e.DNE(84,xa,5,5,"td",39),e.bVm(),e.qex(85,69),e.DNE(86,Sa,4,1,"td",39),e.bVm(),e.qex(87,70),e.DNE(88,Ea,5,2,"td",39),e.bVm(),e.DNE(89,Ia,1,0,"tr",71)(90,La,1,3,"tr",72)(91,wa,1,0,"tr",73)(92,ja,1,0,"tr",74),e.k0s(),e.j41(93,"mat-paginator",75),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(18,Wn).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(3),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",e.eq3(19,Qn,""!==t.errorMessage)),e.R7$(69),e.Y8G("matRowDefColumns",t.htlcColumns)("matRowDefWhen",t.is_group),e.R7$(),e.Y8G("matFooterRowDef",e.lJ4(21,Zn)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalPayments)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Oe=(()=>{class n{constructor(t,a,i,o,r,c,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=c,this.datePipe=F,this.camelCaseWithReplace=C,this.calledFrom="transactions",this.faHistory=b.Int,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedPayment="",this.information={},this.peers=[],this.payments=new p.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=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(a=>this.htlcColumns.push("group_"+a)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.KT).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(t.listPayments.first_index_offset||-1),this.lastOffset=+(t.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(t)})}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,J.s)(1)).subscribe(t=>{this.paymentDecoded=t,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,E.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(a=>{a&&(this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,E.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.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:l.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(i=>{i&&(this.paymentDecoded.num_satoshis=i[0].inputValue,this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,amt:i[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,E.xO)({payload:{data:{component:zn}}}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,J.s)(1)).subscribe(a=>{this.paymentDecoded=a,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[6])).subscribe({next:i=>{this.convertedCurrency=i,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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{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(t){let a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0);const o=t.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(o,o+this.pageSize))}is_group(t,a){return a.htlcs&&a.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(t){const a=this;return new Promise((i,o)=>{const r=a.peers.find(c=>c.pub_key===t.pub_key);r&&r.alias?i("
Channel: "+r.alias.padEnd(20)+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"):a.dataService.getAliasesFromPubkeys(t.pub_key||"",!1).pipe((0,_.Q)(a.unSubs[7])).subscribe({next:c=>i("
Channel: "+(c.node&&c.node.alias?c.node.alias.padEnd(20):t.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"),error:c=>i("
Channel: "+(t.pub_key?t.pub_key?.substring(0,17)+"...":"")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
")})})}onHTLCClick(t,a){a.payment_request&&""!==a.payment_request.trim()?this.dataService.decodePayment(a.payment_request,!1).pipe((0,J.s)(1)).subscribe({next:i=>{setTimeout(()=>{this.showHTLCView(t,a,i)},0)},error:i=>{this.showHTLCView(t,a)}}):this.showHTLCView(t,a)}showHTLCView(t,a,i){t.route&&t.route.hops&&t.route.hops.length?Promise.all(t.route.hops.map(o=>this.getHopDetails(o))).then(o=>{this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,o),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}):this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,[]),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}prepareData(t,a,i,o){const r=[[{key:"payment_hash",value:a.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"preimage",value:t.preimage,title:"Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:a.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:33,type:l.UN.STRING},{key:"attempt_time_ns",value:+(t.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:l.UN.DATE_TIME},{key:"resolve_time_ns",value:+(t.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:l.UN.DATE_TIME}],[{key:"total_amt",value:t.route?.total_amt,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"total_fees",value:t.route?.total_fees,title:"Fee (Sats)",width:33,type:l.UN.NUMBER},{key:"total_time_lock",value:t.route?.total_time_lock,title:"Total Time Lock",width:34,type:l.UN.NUMBER}],[{key:"hops",value:o,title:"Hops",width:100,type:l.UN.ARRAY}]];return i&&i.description&&""!==i.description&&r.splice(3,0,[{key:"description",value:i.description,title:"Description",width:100,type:l.UN.STRING}]),r}onPaymentClick(t){if(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>0){const a=t.htlcs[0].route.hops?.reduce((i,o)=>o.pub_key&&""===i?o.pub_key:i+","+o.pub_key,"");this.dataService.getAliasesFromPubkeys(a,!0).pipe((0,_.Q)(this.unSubs[8])).subscribe(i=>{this.showPaymentView(t,i?.reduce((o,r)=>""===o?r:o+"\n"+r,""))})}else this.showPaymentView(t,"")}showPaymentView(t,a){const i=[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:t.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:50,type:l.UN.STRING},{key:"creation_date",value:t.creation_date,title:"Creation Date",width:50,type:l.UN.DATE_TIME}],[{key:"value_msat",value:t.value_msat,title:"Value (mSats)",width:50,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:50,type:l.UN.NUMBER}],[{key:"path",value:a,title:"Path",width:100,type:l.UN.STRING}]];t.payment_request&&""!==t.payment_request.trim()?this.dataService.decodePayment(t.payment_request,!1).pipe((0,J.s)(1)).subscribe(o=>{o&&o.description&&""!==o.description&&i.splice(3,0,[{key:"description",value:o.description,title:"Description",width:100,type:l.UN.STRING}]),setTimeout(()=>{this.openPaymentAlert(i,!!(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(i,!1)}openPaymentAlert(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Information",message:t,scrollable:a}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"status":case"group_status":i="SUCCEEDED"===t?.status?"succeeded":"failed";break;case"creation_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":i=this.camelCaseWithReplace.transform(t.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":i=t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length?t.htlcs[0].route.hops.length.toString():"0";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"failure_reason"===this.selFilterBy||"group_failure_reason"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadPaymentsTable(t){this.payments=new p.I6(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(a,i)=>"hops"===i?a.htlcs.length&&a.htlcs[0]&&a.htlcs[0].route&&a.htlcs[0].route.hops&&a.htlcs[0].route.hops.length?a.htlcs[0].route.hops.length:0:a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),a=t?.reduce((i,o)=>(o.payment_request&&""!==o.payment_request.trim()&&(i=""===i?o.payment_request:i+","+o.payment_request),i),"");this.dataService.decodePayments(a).pipe((0,_.Q)(this.unSubs[9])).subscribe(i=>{let o=0;i.forEach((c,F)=>{if(c){for(;t[F+o].payment_hash!==c.payment_hash;)o+=1;t[F+o].description=c.description}});const r=t?.reduce((c,F)=>c.concat(F),[]);this.commonService.downloadFile(r,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(W.u),e.rXU(I.il),e.rXU(ue.H),e.rXU(d.QX),e.rXU(d.vh),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-payments"]],viewQuery:function(a,i){if(1&a&&(e.GBs(Jn,5),e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",3),e.DNE(1,ai,14,3,"form",4)(2,si,3,0,"div",5)(3,Ga,94,22,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,Z.oV,w.iy,A.ZF,A.Ld,d.QX,d.vh,q.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 n})();const Ve=n=>({backgroundColor:n});function Da(n,s){if(1&n&&e.nrm(0,"span",8),2&n){const t=e.XpG();e.Y8G("ngStyle",e.eq3(1,Ve,null==t.information?null:t.information.color))}}function Na(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(4),e.Y8G("ngStyle",e.eq3(4,Ve,null==t.information?null:t.information.color)),e.R7$(),e.SpI(" ",e.bMT(6,2,null==t.information?null:t.information.color)," ")}}function Pa(n,s){1&n&&e.nrm(0,"span",10)}function $a(n,s){1&n&&e.nrm(0,"span",11)}function Aa(n,s){if(1&n&&(e.j41(0,"span",2),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}let Ye=(()=>{class n{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain)+" "+this.commonService.titleCase(t.network))}))}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},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(a,i){1&a&&(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,Da,1,3,"span",3),e.k0s()(),e.DNE(7,Na,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,Pa,1,0,"span",5)(17,$a,1,0,"span",6)(18,Aa,2,1,"span",7),e.k0s()()),2&a&&(e.R7$(5),e.SpI(" ",null==i.information?null:i.information.alias," "),e.R7$(),e.Y8G("ngIf",!i.showColorFieldSeparately),e.R7$(),e.Y8G("ngIf",i.showColorFieldSeparately),e.R7$(5),e.JRh(null!=i.information&&i.information.lnImplementation||null!=i.information&&i.information.version?(null==i.information?null:i.information.lnImplementation)+" "+(null==i.information?null:i.information.version):""),e.R7$(4),e.Y8G("ngIf",null==i.information?null:i.information.synced_to_chain),e.R7$(),e.Y8G("ngIf",!(null!=i.information&&i.information.synced_to_chain)),e.R7$(),e.Y8G("ngForOf",i.chains))},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,Z.oV,d.Pc]})}}return n})();function Ma(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,5,null==t.balances?null:t.balances.lightning)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.lightning)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(13,7,null==t.balances?null:t.balances.onchain)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.onchain)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(20,9,null==t.balances?null:t.balances.total)," Sats")}}function Ba(n,s){if(1&n&&(e.j41(0,"div",6)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Oa=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static{this.\u0275fac=function(a){return new(a||n)}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},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,i){if(1&a&&e.DNE(0,Ma,21,11,"div",1)(1,Ba,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,d.QX]})}}return n})();function Va(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(6),e.SpI("",e.bMT(7,6,null==t.fees?null:t.fees.day_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(13,8,null==t.fees?null:t.fees.week_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(19,10,null==t.fees?null:t.fees.month_fee_sum)," Sats"),e.R7$(10),e.JRh(e.bMT(29,12,null==t.fees?null:t.fees.daily_tx_count)),e.R7$(6),e.JRh(e.bMT(35,14,null==t.fees?null:t.fees.weekly_tx_count)),e.R7$(6),e.JRh(e.bMT(41,16,null==t.fees?null:t.fees.monthly_tx_count))}}function Ya(n,s){if(1&n&&(e.j41(0,"div",8)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Xe=(()=>{class n{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 a=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/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{this.\u0275fac=function(a){return new(a||n)}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},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(a,i){if(1&a&&e.DNE(0,Va,45,18,"div",1)(1,Ya,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}}return n})();function Xa(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(7),e.JRh(e.bMT(8,8,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(15,10,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(22,12,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(29,14,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.num_channels)||0)),e.R7$(7),e.SpI("",e.bMT(36,16,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(42,18,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(48,20,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(54,22,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.capacity)||0)," Sats")}}function Ua(n,s){if(1&n&&(e.j41(0,"div",10)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ue=(()=>{class n{constructor(){this.channelsStatus={}}static{this.\u0275fac=function(a){return new(a||n)}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},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(a,i){if(1&a&&e.DNE(0,Xa,55,24,"div",1)(1,Ua,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}}return n})();var ee=g(1997);const Ha=()=>["../connections/channels/open"],qa=(n,s)=>({filterColumn:n,filterValue:s});function za(n,s){if(1&n&&(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&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(21,Ha))("state",e.l_i(22,qa,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,11,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(6),e.SpI("",e.bMT(9,15,t.local_balance||0)," Sats"),e.R7$(3),e.Y8G("icon",a.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,17,t.balancedness||0),") "),e.R7$(5),e.SpI("",e.bMT(18,19,t.remote_balance||0)," Sats"),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function Ja(n,s){if(1&n&&(e.j41(0,"div",17),e.DNE(1,za,20,25,"div",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function Wa(n,s){if(1&n&&(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,Ja,2,1,"div",16),e.k0s()()),2&n){const t=e.XpG(),a=e.sdS(2);e.R7$(8),e.SpI("",e.bMT(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0)," Sats"),e.R7$(3),e.Y8G("icon",t.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,9,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),e.R7$(5),e.SpI("",e.bMT(18,11,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0)," Sats"),e.R7$(2),e.FS9("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),e.R7$(4),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function Qa(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",26),e.EFF(1," No channels available. "),e.j41(2,"button",27),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.goToChannels())}),e.EFF(3,"Open Channel"),e.k0s()()}}function Za(n,s){if(1&n&&(e.j41(0,"div",28)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ka=(()=>{class n{constructor(t){this.router=t,this.faBalanceScale=b.GR4,this.faDumbbell=b.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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,i){if(1&a&&e.DNE(0,Wa,24,13,"div",2)(1,Qa,4,0,"ng-template",null,0,e.C5r)(3,Za,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.Sq,d.bT,M.aY,h.DJ,h.sA,h.UI,G.$z,f.MV,ee.q,B.HM,Z.oV,A.Ld,x.Wk,d.P9,d.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}}return n})();var He=g(8711),qe=g(4104);const es=(n,s,t)=>({"mb-4":n,"mb-2":s,"mb-1":t}),ts=()=>["../connections/channels/open"],ns=(n,s)=>({filterColumn:n,filterValue:s});function is(n,s){if(1&n&&(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&n){const t=e.XpG().$implicit;e.R7$(3),e.SpI("",e.bMT(4,1,t.remote_balance||0)," Sats")}}function as(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2).$implicit,o=e.XpG(3);return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function ss(n,s){if(1&n&&(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,as,2,0,"button",23),e.k0s()),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.R7$(4),e.SpI("",e.bMT(5,2,t.local_balance||0)," Sats"),e.R7$(2),e.Y8G("ngIf",a.showLoop)}}function os(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.remote_balance||0)/a.totalLiquidity*100:0)}}function ls(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.local_balance||0)/a.totalLiquidity*100:0)}}function rs(n,s){if(1&n&&(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,is,5,3,"mat-hint",16)(6,ss,7,4,"div",17),e.k0s(),e.DNE(7,os,1,1,"mat-progress-bar",18)(8,ls,1,1,"mat-progress-bar",18),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(14,ts))("state",e.l_i(15,ns,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,10,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(3),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction),e.R7$(),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction)}}function cs(n,s){if(1&n&&(e.j41(0,"div",11),e.DNE(1,rs,9,18,"div",12),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function ps(n,s){if(1&n&&(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,cs,2,1,"div",10),e.k0s()),2&n){const t=e.XpG(),a=e.sdS(2);e.Y8G("ngClass",e.sMw(6,es,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),e.R7$(5),e.SpI("",e.bMT(6,4,t.totalLiquidity)," Sats"),e.R7$(5),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function ms(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.goToChannels())}),e.EFF(1,"Open Channel"),e.k0s()}}function us(n,s){if(1&n&&(e.j41(0,"div",26),e.EFF(1," No channels available. "),e.DNE(2,ms,2,0,"button",27),e.k0s()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngIf","Out"===t.direction)}}function ds(n,s){if(1&n&&(e.j41(0,"div",29)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let hs=(()=>{class n{constructor(t,a,i,o){this.router=t,this.loopService=a,this.commonService=i,this.store=o,this.targetConf=6,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.showLoop=!(!t?.settings.swapServerUrl||""===t.settings.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix),e.rXU(qe.Q),e.rXU(N.h),e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(a,i){if(1&a&&e.DNE(0,ps,11,10,"div",2)(1,us,3,1,"ng-template",null,0,e.C5r)(3,ds,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,G.$z,f.MV,ee.q,B.HM,Z.oV,A.Ld,x.Wk,d.P9,d.QX]})}}return n})();const ze=n=>({"dashboard-card-content":!0,"error-border":n}),_s=n=>({"p-0":n});function fs(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(11);e.Y8G("matMenuTriggerFor",t)}}function gs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG().$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Cs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){e.eBV(t);const i=e.XpG(3);return e.Njj(i.onsortChannelsBy())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG(3);e.R7$(),e.SpI("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function ys(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function bs(n,s){if(1&n&&e.nrm(0,"rtl-node-info",31),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function Fs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function xs(n,s){if(1&n&&e.nrm(0,"rtl-channel-capacity-info",33),2&n){const t=e.XpG(3);e.Y8G("sortBy",t.sortField)("channelBalances",t.channelBalances)("allChannels",t.allChannelsCapacity)("errorMessage",t.errorMessages[3])}}function vs(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",34),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[1])}}function Ts(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",35),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function Ss(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function ks(n,s){if(1&n&&(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,gs,2,1,"button",17)(13,Cs,2,1,"button",18),e.k0s()()()(),e.j41(14,"mat-card-content",19),e.DNE(15,ys,1,0,"mat-progress-bar",20),e.j41(16,"div",21),e.DNE(17,bs,1,2,"rtl-node-info",22)(18,Fs,1,2,"rtl-balances-info",23)(19,xs,1,4,"rtl-channel-capacity-info",24)(20,vs,1,2,"rtl-fee-info",25)(21,Ts,1,2,"rtl-channel-status-info",26)(22,Ss,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(5),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions),e.R7$(),e.Y8G("ngIf","capacity"===t.id),e.R7$(),e.FS9("fxFlex","node"===t.id||"balance"===t.id?70:"fee"===t.id||"status"===t.id?78:90),e.Y8G("ngClass",e.eq3(16,ze,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR))),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)),e.R7$(),e.Y8G("ngSwitch",t.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 Rs(n,s){if(1&n&&(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,ks,23,18,"mat-grid-tile",10),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),e.R7$(2),e.JRh(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.R7$(),e.Y8G("rowHeight",t.operatorCardHeight),e.R7$(),e.Y8G("ngForOf",t.operatorCards)}}function Es(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(9);e.Y8G("matMenuTriggerFor",t)}}function Is(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Ls(n,s){if(1&n&&(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,Es,3,1,"button",15),e.j41(8,"mat-menu",16,2),e.DNE(10,Is,2,1,"button",17),e.k0s()()()()),2&n){const t=e.XpG().$implicit;e.R7$(3),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions)}}function ws(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function js(n,s){if(1&n&&e.nrm(0,"rtl-node-info",45),2&n){const t=e.XpG(3);e.Y8G("information",t.information)}}function Gs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function Ds(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","In")("totalLiquidity",t.totalInboundLiquidity)("allChannels",t.allInboundChannels)("errorMessage",t.errorMessages[3])}}function Ns(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("allChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[3])}}function Ps(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function $s(n,s){if(1&n&&(e.j41(0,"span",47)(1,"mat-tab-group",48)(2,"mat-tab",49),e.nrm(3,"rtl-lightning-invoices",50),e.k0s(),e.j41(4,"mat-tab",51),e.nrm(5,"rtl-lightning-payments",50),e.k0s()(),e.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),e.EFF(9,"more_vert"),e.k0s()(),e.j41(10,"mat-menu",16,3),e.DNE(12,Ps,2,1,"button",17),e.k0s()()()),2&n){const t=e.sdS(11),a=e.XpG().$implicit;e.R7$(3),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("matMenuTriggerFor",t),e.R7$(5),e.Y8G("ngForOf",a.goToOptions)}}function As(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ms(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",38),e.DNE(2,Ls,11,4,"mat-card-header",39),e.j41(3,"mat-card-content",40),e.DNE(4,ws,1,0,"mat-progress-bar",20),e.j41(5,"div",41),e.DNE(6,js,1,1,"rtl-node-info",42)(7,Gs,1,2,"rtl-balances-info",23)(8,Ds,1,4,"rtl-channel-liquidity-info",43)(9,Ns,1,4,"rtl-channel-liquidity-info",43)(10,$s,13,4,"span",44)(11,As,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(),e.Y8G("ngClass",e.eq3(13,_s,"transactions"===t.id)),e.R7$(),e.Y8G("ngIf","transactions"!==t.id),e.R7$(),e.FS9("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),e.Y8G("ngClass",e.eq3(15,ze,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.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 Bs(n,s){if(1&n&&(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,Ms,12,17,"mat-grid-tile",10),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faSmile),e.R7$(2),e.SpI("Welcome ",t.information.alias,"! Your node is up and running."),e.R7$(),e.Y8G("rowHeight",t.merchantCardHeight),e.R7$(),e.Y8G("ngForOf",t.merchantCards)}}let Os=(()=>{class n{constructor(t,a,i,o,r){switch(this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.router=r,this.faSmile=Me.Qpm,this.faFrown=Me.wB1,this.faAngleDoubleDown=b.WxX,this.faAngleDoubleUp=b.$sC,this.faChartPie=b.W1p,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.flgChildInfoUpdated=!1,this.userPersonaEnum=l.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=l.f7,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case l.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 l.f7.SM:case l.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(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,he.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.oR).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=t.apiCallStatus,this.apiCallStatusBlockchainBalance.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=t.blockchainBalance.total_balance&&+t.blockchainBalance.total_balance>=0?+t.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const a=t.lightningBalance&&t.lightningBalance.local?+t.lightningBalance.local:0,i=t.lightningBalance&&t.lightningBalance.remote?+t.lightningBalance.remote:0;this.channelBalances={localBalance:a,remoteBalance:i,balancedness:+(1-Math.abs((a-i)/(a+i))).toFixed(3)},this.balances.lightning=t.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=t.channelsSummary.active?.num_channels||0,this.inactiveChannels=t.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=t.channels?.filter(r=>!0===r.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(r=>r.remote_balance&&r.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.local_balance&&r.local_balance>0),"local_balance"))),this.allChannels.forEach(r=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(r.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(r.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(t)}),this.actions.pipe((0,_.Q)(this.unSubs[5]),(0,Y.p)(t=>t.type===l.QP.FETCH_FEES_LND||t.type===l.QP.SET_FEES_LND)).subscribe(t=>{t.type===l.QP.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),t.type===l.QP.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(t){"inactive"===t?this.router.navigateByUrl("/lnd/connections",{state:{filterColumn:"active",filterValue:t}}):this.router.navigateByUrl("/lnd/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((t,a)=>{const i=+(t.local_balance||0)+ +(t.remote_balance||0),o=+(a.local_balance||0)+ +(a.remote_balance||0);return i>o?-1:i{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(Q.En),e.rXU(N.h),e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-home"]],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",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","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"],[3,"calledFrom"],["label","Pay"],[1,"underline"]],template:function(a,i){if(1&a&&e.DNE(0,Rs,7,4,"div",4)(1,Bs,6,4,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",(null==i.selNode?null:i.selNode.settings.userPersona)===i.userPersonaEnum.OPERATOR)("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,M.aY,h.DJ,h.sA,h.UI,L.PW,G.iY,T.RN,T.m2,T.MM,T.dh,_e.B_,_e.NS,ie.An,ve.kk,ve.fb,ve.Cp,B.HM,P.mq,P.T8,Be,Oe,Ye,Oa,Xe,Ue,Ka,hs]})}}return n})();var Te=g(1975),Se=g(5837);function Vs(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Channels"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activeChannels)}}function Ys(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Peers"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activePeers)}}let Xs=(()=>{class n{constructor(t,a,i){this.store=t,this.logger=a,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=b.gdJ,this.faChartPie=b.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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.selNode=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.activeChannels=t.channelsSummary.active?.num_channels||0,this.logger.info(t)}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:t.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:t.blockchainBalance.unconfirmed_balance||0}],this.logger.info(t)})}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(j.gP),e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-connections"]],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,i){1&a&&(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(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(16,"mat-tab"),e.DNE(17,Vs,2,1,"ng-template",8),e.k0s(),e.j41(18,"mat-tab"),e.DNE(19,Ys,2,1,"ng-template",8),e.k0s()(),e.j41(20,"div",9),e.nrm(21,"router-outlet"),e.k0s()()()()),2&a&&(e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faUsers),e.R7$(6),e.R50("selectedIndex",i.activeLink))},dependencies:[M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,Te.k,P.ES,P.mq,P.T8,Se.f,x.n3]})}}return n})();var ke=g(9172),Je=g(6354),We=g(92);const Us=["form"];function Hs(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t.alias?t.alias:t.pub_key?t.pub_key:"")}}function qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer alias is required."),e.k0s())}function zs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer not found in the list."),e.k0s())}function Js(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(6,Hs,2,2,"mat-option",28),e.nI1(7,"async"),e.k0s(),e.DNE(8,qs,2,0,"mat-error",20)(9,zs,2,0,"mat-error",20),e.k0s()}if(2&n){const t=e.sdS(5),a=e.XpG();e.R7$(3),e.Y8G("formControl",a.selectedPeer)("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(7,6,a.filteredPeers)),e.R7$(2),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.notfound)}}function Ws(n,s){1&n&&e.eu8(0)}function Qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Zs(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function Ks(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function eo(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function to(n,s){if(1&n&&(e.j41(0,"mat-hint"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)")}}function no(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Target Confirmation Blocks is required."),e.k0s())}function io(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fee is required."),e.k0s())}function ao(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function so(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",32)(1,"mat-slide-toggle",45),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.taprootChannel,i)||(o.taprootChannel=i),e.Njj(i)}),e.EFF(2,"Taproot Channel"),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.R50("ngModel",t.taprootChannel)}}function oo(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.channelConnectionError)}}function lo(n,s){if(1&n&&(e.j41(0,"div",46),e.nrm(1,"fa-icon",43),e.DNE(2,oo,2,1,"span",20),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.channelConnectionError)}}function ro(n,s){if(1&n&&(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&n){const t=e.XpG(2);e.R7$(6),e.JRh((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.address)),e.R7$(7),e.JRh(t.peer.pub_key),e.R7$(7),e.JRh(null==t.peer?null:t.peer.address),e.R7$(5),e.JRh(null!=t.peer&&t.peer.inbound?"True":"False")}}function co(n,s){if(1&n&&e.DNE(0,ro,26,4,"mat-expansion-panel",47),2&n){const t=e.XpG();e.Y8G("ngIf",t.peer)}}let Qe=(()=>{class n{constructor(t,a,i,o,r,c,F){this.logger=t,this.dialogRef=a,this.data=i,this.store=o,this.actions=r,this.commonService=c,this.dataService=F,this.selectedPeer=new m.hs,this.amount=new m.hs,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.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=l.XG,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.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(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.isPrivate=!!i?.settings.unannouncedChannels}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.FETCH_CHANNELS_LND)).subscribe(i=>{i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message),i.type===l.QP.FETCH_CHANNELS_LND&&this.dialogRef.close()});let t="",a="";this.sortedPeers=this.peers.sort((i,o)=>(t=i.alias?i.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",a=o.alias?o.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",ta?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(""),(0,Je.T)(i=>"string"==typeof i?i:i.alias?i.alias:i.pub_key),(0,Je.T)(i=>i?this.filterPeers(i):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(a=>0===a.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.pub_key?t.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 t=this.peers?.filter(a=>a.alias?.length===this.selectedPeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].pub_key&&(this.selectedPubkey=t[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,v.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(t){this.advancedTitle=t?"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(t){this.transTypeValue="",t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(Q.En),e.rXU(N.h),e.rXU(W.u))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-open-channel"]],viewQuery:function(a,i){if(1&a&&e.GBs(Us,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0),e.bIt("submit",function(){return e.eBV(o),e.Njj(i.onOpenChannel())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.j41(11,"div",13),e.DNE(12,Js,10,8,"mat-form-field",14),e.k0s(),e.DNE(13,Ws,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(c){return e.eBV(o),e.DH7(i.fundingAmount,c)||(i.fundingAmount=c),e.Njj(c)}),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,Qs,2,0,"mat-error",20)(27,Zs,2,1,"mat-error",20),e.k0s(),e.j41(28,"div",21)(29,"mat-slide-toggle",22),e.mxI("ngModelChange",function(c){return e.eBV(o),e.DH7(i.isPrivate,c)||(i.isPrivate=c),e.Njj(c)}),e.EFF(30,"Private Channel"),e.k0s()()(),e.j41(31,"mat-expansion-panel",23),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0))})("opened",function(){return e.eBV(o),e.Njj(i.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,Ks,16,6,"div",25),e.j41(38,"div",16)(39,"mat-form-field",26)(40,"mat-select",27),e.mxI("valueChange",function(c){return e.eBV(o),e.DH7(i.selTransType,c)||(i.selTransType=c),e.Njj(c)}),e.bIt("selectionChange",function(c){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(c))}),e.DNE(41,eo,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(c){return e.eBV(o),e.DH7(i.transTypeValue,c)||(i.transTypeValue=c),e.Njj(c)}),e.k0s(),e.DNE(47,to,2,1,"mat-hint",20)(48,no,2,0,"mat-error",20)(49,io,2,0,"mat-error",20)(50,ao,2,1,"mat-error",20),e.k0s()(),e.j41(51,"div",30),e.DNE(52,so,3,1,"div",31),e.j41(53,"div",32)(54,"mat-slide-toggle",33),e.mxI("ngModelChange",function(c){return e.eBV(o),e.DH7(i.spendUnconfirmed,c)||(i.spendUnconfirmed=c),e.Njj(c)}),e.EFF(55,"Spend Unconfirmed Output"),e.k0s()()()()()(),e.DNE(56,lo,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,co,1,1,"ng-template",null,3,e.C5r)}if(2&a){const o=e.sdS(20),r=e.sdS(63);e.R7$(5),e.JRh(i.alertTitle),e.R7$(7),e.Y8G("ngIf",!i.peer&&i.peers&&i.peers.length>0),e.R7$(),e.Y8G("ngTemplateOutlet",r),e.R7$(6),e.Y8G("step",1e3)("min",1)("max",i.totalBalance),e.R50("ngModel",i.fundingAmount),e.R7$(3),e.SpI("(Remaining: ",e.bMT(23,28,i.totalBalance-(i.fundingAmount?i.fundingAmount:0)),")"),e.R7$(4),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.max),e.R7$(2),e.R50("ngModel",i.isPrivate),e.R7$(6),e.JRh(i.advancedTitle),e.R7$(2),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(3),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.selTransType?"Default":"1"===i.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("required","0"!==i.selTransType)("disabled","0"===i.selTransType)("step",1)("min","2"===i.selTransType?i.recommendedFee.minimumFee:0),e.R50("ngModel",i.transTypeValue),e.R7$(2),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf","1"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&i.transTypeValue&&+i.transTypeValue{class n{constructor(t,a,i,o,r,c,F,C,S){this.dialogRef=t,this.data=a,this.store=i,this.lndEffects=o,this.formBuilder=r,this.actions=c,this.logger=F,this.commonService=C,this.dataService=S,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.peerAddress="",this.totalBalance=0,this.transTypes=l.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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[m.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:""):"",[m.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selTransType:[l.XG[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,he.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!i?.settings.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(a.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{a===l.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([m.k0.required]))}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(a=>a.type===l.QP.NEWLY_ADDED_PEER_LND||a.type===l.QP.FETCH_PENDING_CHANNELS_LND||a.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(a=>{a.type===l.QP.NEWLY_ADDED_PEER_LND&&(this.logger.info(a.payload),this.flgEditable=!1,this.newlyAddedPeer=a.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),a.type===l.QP.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),a.type===l.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===l.wn.ERROR&&("SaveNewPeer"===a.payload.action||"FetchGraphNode"===a.payload.action?this.peerConnectionError=a.payload.message:"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const t=this.peerFormGroup.controls.peerAddress.value.search("@");let a="",i="";t>-1?(a=this.peerFormGroup.controls.peerAddress.value.substring(0,t),i=this.peerFormGroup.controls.peerAddress.value.substring(t+1),this.connectPeerWithParams(a,i)):(this.store.dispatch((0,v.t0)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,J.s)(1)).subscribe(o=>{setTimeout(()=>{i=o.node.addresses&&o.node.addresses.length&&o.node.addresses.length>0&&o.node.addresses[0].addr?o.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,i)},0)}))}connectPeerWithParams(t,a){this.store.dispatch((0,v.sq)({payload:{pubkey:t,host:a,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,v.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(t){this.channelFormGroup.controls.transTypeValue.setValue(""),t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){switch(t.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)"}t.selectedIndex{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(re.L),e.rXU(m.ze),e.rXU(Q.En),e.rXU(j.gP),e.rXU(N.h),e.rXU(W.u))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-connect-peer"]],viewQuery:function(a,i){if(1&a&&(e.GBs(po,5),e.GBs(mo,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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(c){return e.eBV(o),e.Njj(i.stepSelectionChanged(c))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,uo,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,ho,2,0,"mat-error",15),e.k0s(),e.DNE(20,_o,4,2,"div",16),e.j41(21,"div",17)(22,"button",18),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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,go,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,Co,2,0,"mat-error",15)(40,yo,2,0,"mat-error",15)(41,bo,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(c){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(c))}),e.DNE(50,Fo,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,xo,2,1,"mat-hint",15)(56,vo,2,1,"mat-error",15)(57,To,2,1,"mat-error",15),e.k0s()(),e.j41(58,"div",29),e.DNE(59,So,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,ko,4,2,"div",16),e.j41(64,"div",17)(65,"button",38),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onOpenChannel())}),e.EFF(66),e.k0s()()()()(),e.j41(67,"div",39)(68,"button",40),e.EFF(69),e.k0s()()()()()()}2&a&&(e.R7$(10),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",i.peerFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.peerFormGroup),e.R7$(6),e.Y8G("ngIf",null==i.peerFormGroup.controls.peerAddress.errors?null:i.peerFormGroup.controls.peerAddress.errors.required),e.R7$(),e.Y8G("ngIf",""!==i.peerConnectionError),e.R7$(3),e.JRh(""!==i.peerConnectionError?"Retry":"Add Peer"),e.R7$(),e.Y8G("stepControl",i.channelFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.channelFormGroup),e.R7$(3),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.SpI("Remaining: ",e.bMT(36,29,i.totalBalance-(i.channelFormGroup.controls.fundingAmount.value?i.channelFormGroup.controls.fundingAmount.value:0)),""),e.R7$(4),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.max),e.R7$(9),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.channelFormGroup.controls.selTransType.value?"Default":"1"===i.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("step",1)("min","2"===i.channelFormGroup.controls.selTransType.value?i.recommendedFee.minimumFee:0)("required","0"!==i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.required),e.R7$(),e.Y8G("ngIf",i.channelFormGroup.controls.transTypeValue.value&&(null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.minimum)),e.R7$(2),e.Y8G("ngIf",i.isTaprootAvailable),e.R7$(4),e.Y8G("ngIf",""!==i.channelConnectionError),e.R7$(3),e.JRh(""!==i.channelConnectionError?"Retry":"Open Channel"),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(null!=i.newlyAddedPeer&&i.newlyAddedPeer.pub_key?"Do It Later":"Close"))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,R.VO,V.wT,me.sG,H.V5,H.Ti,H.M6,K.N,te.V,d.QX]})}}return n})();const Ro=()=>["all"],Eo=n=>({"error-border":n}),Io=()=>["no_peer"],Re=n=>({width:n}),Lo=n=>({"display-none":n});function wo(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function jo(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Go(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Alias"),e.k0s())}function Do(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function No(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Public Key"),e.k0s())}function Po(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function $o(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Address"),e.k0s())}function Ao(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.address)}}function Mo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Sync Type"),e.k0s())}function Bo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,null==t?null:t.sync_type,"sync","_"))}}function Oo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Inbound"),e.k0s())}function Vo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.inbound?"Yes":"No")}}function Yo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Sent"),e.k0s())}function Xo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_sent)," ")}}function Uo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Received"),e.k0s())}function Ho(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_recv)," ")}}function qo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Sent"),e.k0s())}function zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_sent)," ")}}function Jo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Received"),e.k0s())}function Wo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_recv)," ")}}function Qo(n,s){1&n&&(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 Zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.ping_time)," ")}}function Ko(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function el(n,s){if(1&n){const t=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(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onPeerClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenChannel(i))}),e.EFF(7,"Open Channel"),e.k0s(),e.j41(8,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onPeerDetach(i))}),e.EFF(9,"Disconnect"),e.k0s()()()()}}function tl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No connected peer."),e.k0s())}function nl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting peers..."),e.k0s())}function il(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function al(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,tl,2,0,"p",53)(2,nl,2,0,"p",53)(3,il,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function sl(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Lo,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function ol(n,s){1&n&&e.nrm(0,"tr",55)}function ll(n,s){1&n&&e.nrm(0,"tr",56)}let rl=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.store=a,this.rtlEffects=i,this.commonService=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.availableBalance=0,this.faUsers=b.gdJ,this.displayedColumns=[],this.peersData=[],this.peers=new p.I6([]),this.information={},this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers,this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",showQRName:"Public Key",showQRField:t.pub_key,message:[[{key:"pub_key",value:t.pub_key,title:"Public Key",width:100}],[{key:"address",value:t.address,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:40},{key:"inbound",value:t.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:t.ping_time,title:"Ping Time (\xb5s)",width:30,type:l.UN.NUMBER}],[{key:"sat_sent",value:t.sat_sent,title:"Satoshis Sent",width:50,type:l.UN.NUMBER},{key:"sat_recv",value:t.sat_recv,title:"Satoshis Received",width:50,type:l.UN.NUMBER}],[{key:"bytes_sent",value:t.bytes_sent,title:"Bytes Sent",width:50,type:l.UN.NUMBER},{key:"bytes_recv",value:t.bytes_recv,title:"Bytes Received",width:50,type:l.UN.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:Ze}}}))}onOpenChannel(t){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},component:Qe}}}))}onPeerDetach(t){this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[4])).subscribe(i=>{i&&this.store.dispatch((0,v.ed)({payload:{pubkey:t.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"sync_type":i=this.camelCaseWithReplace.transform(t.sync_type||"","sync","_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"sync_type"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadPeersTable(t){this.peers=new p.I6(t?[...t]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(ue.H),e.rXU(N.h),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"button",3),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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(c){return e.eBV(o),e.DH7(i.selFilterBy,c)||(i.selFilterBy=c),e.Njj(c)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(15,"perfect-scrollbar"),e.DNE(16,wo,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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(21,"div",14),e.DNE(22,jo,1,0,"mat-progress-bar",15),e.j41(23,"table",16,0),e.qex(25,17),e.DNE(26,Go,2,0,"th",18)(27,Do,4,4,"td",19),e.bVm(),e.qex(28,20),e.DNE(29,No,2,0,"th",18)(30,Po,4,4,"td",19),e.bVm(),e.qex(31,21),e.DNE(32,$o,2,0,"th",18)(33,Ao,4,4,"td",19),e.bVm(),e.qex(34,22),e.DNE(35,Mo,2,0,"th",18)(36,Bo,3,5,"td",19),e.bVm(),e.qex(37,23),e.DNE(38,Oo,2,0,"th",18)(39,Vo,2,1,"td",19),e.bVm(),e.qex(40,24),e.DNE(41,Yo,2,0,"th",25)(42,Xo,4,3,"td",19),e.bVm(),e.qex(43,26),e.DNE(44,Uo,2,0,"th",25)(45,Ho,4,3,"td",19),e.bVm(),e.qex(46,27),e.DNE(47,qo,2,0,"th",25)(48,zo,4,3,"td",19),e.bVm(),e.qex(49,28),e.DNE(50,Jo,2,0,"th",25)(51,Wo,4,3,"td",19),e.bVm(),e.qex(52,29),e.DNE(53,Qo,5,0,"th",25)(54,Zo,4,3,"td",19),e.bVm(),e.qex(55,30),e.DNE(56,Ko,6,0,"th",31)(57,el,10,0,"td",32),e.bVm(),e.qex(58,33),e.DNE(59,al,4,3,"td",34),e.bVm(),e.DNE(60,sl,1,3,"tr",35)(61,ol,1,0,"tr",36)(62,ll,1,0,"tr",37),e.k0s()(),e.nrm(63,"mat-paginator",38),e.k0s()()}2&a&&(e.R7$(7),e.Y8G("icon",i.faUsers),e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(15,Ro).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.peers)("ngClass",e.eq3(16,Eo,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(18,Io)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,A.ZF,A.Ld,d.QX,q.VD]})}}return n})();function cl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Open"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numOpenChannels)}}function pl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Pending"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numPendingChannels)}}function ml(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Closed"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numClosedChannels)}}function ul(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Active HTLCs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numActiveHTLCs)}}let dl=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.numOpenChannels=t.channels&&t.channels.length?t.channels.length:0,this.numActiveHTLCs=t.channels?.reduce((a,i)=>a+(i.pending_htlcs&&i.pending_htlcs.length>0?i.pending_htlcs.length:0),0),this.logger.info(t)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPendingChannels=t.pendingChannelsSummary.total_channels?t.pendingChannelsSummary.total_channels:0}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.numClosedChannels=t.closedChannels&&t.closedChannels.length?t.closedChannels.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.totalBalance=+(t.blockchainBalance.total_balance||0)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[6])).subscribe(t=>{this.peers=t.peers,this.peers.forEach(a=>{(!a.alias||""===a.alias)&&(a.alias=a.pub_key?.substring(0,20))}),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Qe}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channels-tables"]],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(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.onOpenChannel()}),e.EFF(3,"Open Channel"),e.k0s()(),e.j41(4,"div",3)(5,"mat-tab-group",4),e.mxI("selectedIndexChange",function(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(6,"mat-tab"),e.DNE(7,cl,2,1,"ng-template",5),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,pl,2,1,"ng-template",5),e.k0s(),e.j41(10,"mat-tab"),e.DNE(11,ml,2,1,"ng-template",5),e.k0s(),e.j41(12,"mat-tab"),e.DNE(13,ul,2,1,"ng-template",5),e.k0s()(),e.j41(14,"div",6),e.nrm(15,"router-outlet"),e.k0s()()()),2&a&&(e.R7$(5),e.R50("selectedIndex",i.activeLink))},dependencies:[h.DJ,h.sA,h.UI,G.$z,Te.k,P.ES,P.mq,P.T8,x.n3]})}}return n})();var ae=g(5416),ge=g(9157);const hl=n=>({"xs-scroll-y":n});function _l(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(6),e.JRh(e.bMT(7,17,t.channel.commit_fee)),e.R7$(6),e.JRh(e.bMT(13,19,t.channel.commit_weight)),e.R7$(6),e.JRh(e.bMT(19,21,t.channel.fee_per_kw)),e.R7$(6),e.JRh(t.channel.static_remote_key?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.R7$(2),e.JRh(e.bMT(32,23,t.channel.total_satoshis_sent)),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.R7$(2),e.JRh(e.bMT(38,25,t.channel.total_satoshis_received)),e.R7$(6),e.JRh(e.bMT(44,27,t.channel.unsettled_balance)),e.R7$(6),e.JRh(e.bMT(50,29,t.channel.csv_delay)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(58,31,t.channel.local_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(64,33,t.channel.remote_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(70,35,t.channel.lifetime)),e.R7$(6),e.JRh(e.bMT(76,37,null==t.channel||null==t.channel.pending_htlcs?null:t.channel.pending_htlcs.length)),e.R7$(2),e.Y8G("inset",!0)}}function fl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function gl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Cl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",27),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onCopyChanID(i))}),e.EFF(1,"Copy Channel ID"),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("payload",t.channel.chan_id)}}function yl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"OK"),e.k0s()}}let Ee=(()=>{class n{constructor(t,a,i,o,r,c){this.dialogRef=t,this.data=a,this.logger=i,this.commonService=o,this.snackBar=r,this.router=c,this.faReceipt=b.Mf0,this.faUpRightFromSquare=b.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=l.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(t){this.snackBar.open("Channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.channel_point,"_blank")}onGoToLink(t,a){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:t,lookupValue:a}}),this.onClose()}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(N.h),e.rXU(ae.UG),e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-information"]],decls:95,vars:38,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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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 e.eBV(o),e.Njj(i.onGoToLink("1",i.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 e.eBV(o),e.Njj(i.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 e.eBV(o),e.Njj(i.onGoToLink("0",i.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,_l,78,39,"div",21),e.j41(88,"div",22)(89,"button",23),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onShowAdvanced())}),e.DNE(90,fl,2,0,"p",24)(91,gl,2,0,"ng-template",null,0,e.C5r),e.k0s(),e.DNE(93,Cl,2,1,"button",25)(94,yl,2,0,"button",26),e.k0s()()()()()}if(2&a){const o=e.sdS(92);e.R7$(4),e.Y8G("icon",i.faReceipt),e.R7$(5),e.Y8G("ngClass",e.eq3(36,hl,i.screenSize===i.screenSizeEnum.XS)),e.R7$(7),e.SpI(" ",i.channel.chan_id," "),e.R7$(5),e.JRh(i.channel.remote_alias),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.channel_point," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.remote_pubkey," "),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(44,26,i.channel.local_balance)),e.R7$(6),e.JRh(e.bMT(50,28,i.channel.remote_balance)),e.R7$(6),e.JRh(e.bMT(56,30,i.channel.capacity)),e.R7$(6),e.JRh(e.bMT(62,32,i.channel.uptime)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.channel.active?"Yes":"No"),e.R7$(5),e.JRh(i.channel.private?"Yes":"No"),e.R7$(5),e.JRh(i.channel.initiator?"Yes":"No"),e.R7$(5),e.JRh(e.bMT(85,34,i.channel.num_updates)),e.R7$(2),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",i.showAdvanced),e.R7$(3),e.Y8G("ngIf",!i.showAdvanced)("ngIfElse",o),e.R7$(3),e.Y8G("ngIf",i.showCopy),e.R7$(),e.Y8G("ngIf",!i.showCopy)}},dependencies:[d.YU,d.bT,M.aY,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,T.MM,ee.q,Z.oV,ge.U,K.N,d.QX]})}}return n})();var Ie=g(7673),Le=g(1001),bl=g(6949);const de=(n,s)=>({"small-svg":n,"large-svg":s});function Fl(n,s){1&n&&e.eu8(0)}function xl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,de,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function vl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,de,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Tl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,de,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Sl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,de,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function kl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,de,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}let Rl=(()=>{class n{constructor(t){this.commonService=t,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(t){2===t.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===t.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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,i){if(1&a&&e.DNE(0,Fl,1,0,"ng-container",5)(1,xl,47,5,"ng-template",null,0,e.C5r)(3,vl,96,5,"ng-template",null,1,e.C5r)(5,Tl,68,5,"ng-template",null,2,e.C5r)(7,Sl,53,5,"ng-template",null,3,e.C5r)(9,kl,52,5,"ng-template",null,4,e.C5r),2&a){const o=e.sdS(2),r=e.sdS(4),c=e.sdS(6),F=e.sdS(8),C=e.sdS(10);e.Y8G("ngTemplateOutlet",1===i.stepNumber?o:2===i.stepNumber?r:3===i.stepNumber?c:4===i.stepNumber?F:C)}},dependencies:[d.YU,d.T3,h.DJ,h.sA,h.UI,L.PW,T.Lc,T.dh],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:[bl.k]}})}}return n})();const El=["stepper"],Il=()=>[1,2,3,4,5],Ll=(n,s)=>({"dot-primary":n,"dot-primary-lighter":s});function wl(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.inputFormLabel)}}function jl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount must be a positive number."),e.k0s())}function Dl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",null==t.selChannel?null:t.selChannel.local_balance,".")}}function Nl(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.Lme("",t.remote_alias," - ",t.chan_id,"")}}function Pl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer is required."),e.k0s())}function $l(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer not found in the list."),e.k0s())}function Al(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.feeFormLabel)}}function Ml(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.name," ")}}function Bl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," is required.")}}function Ol(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," must be a positive number.")}}function Vl(n,s){1&n&&e.EFF(0,"Invoice/Payment")}function Yl(n,s){1&n&&(e.j41(0,"mat-icon",55),e.EFF(1,"check"),e.k0s())}function Xl(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function Ul(n,s){if(1&n&&(e.j41(0,"mat-icon",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(null!=t.paymentStatus&&t.paymentStatus.error?"close":"check")}}function Hl(n,s){1&n&&e.nrm(0,"div",7)}function ql(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function zl(n,s){if(1&n&&(e.j41(0,"h4",57),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentStatus&&t.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function Jl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",58),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function Wl(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.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(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.j41(30,"mat-step",22)(31,"form",23),e.DNE(32,wl,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,jl,2,0,"mat-error",29)(43,Gl,2,0,"mat-error",29)(44,Dl,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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.k0s(),e.j41(49,"mat-autocomplete",32,4),e.bIt("optionSelected",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(51,Nl,2,3,"mat-option",33),e.nI1(52,"async"),e.k0s(),e.DNE(53,Pl,2,0,"mat-error",29)(54,$l,2,0,"mat-error",29),e.k0s()(),e.j41(55,"div",34)(56,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectFee())}),e.EFF(57,"Select Fee"),e.k0s()()()(),e.j41(58,"mat-step",22)(59,"form",23),e.DNE(60,Al,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,Ml,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,Bl,2,1,"mat-error",29)(73,Ol,2,1,"mat-error",29),e.k0s()()(),e.j41(74,"div",34)(75,"button",39),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRebalance())}),e.EFF(76,"Rebalance"),e.k0s()()()(),e.j41(77,"mat-step",40)(78,"form",23),e.DNE(79,Vl,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,Yl,2,0,"mat-icon",44),e.k0s()()(),e.j41(87,"div",7)(88,"span",45),e.EFF(89),e.k0s()()(),e.DNE(90,Xl,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,Ul,2,1,"mat-icon",44),e.k0s()()(),e.DNE(97,Hl,1,0,"div",48),e.k0s(),e.DNE(98,ql,1,0,"mat-progress-bar",46),e.k0s(),e.DNE(99,zl,2,1,"h4",49),e.j41(100,"div",50),e.DNE(101,Jl,2,0,"button",51),e.k0s()()()(),e.j41(102,"div",52)(103,"button",53),e.EFF(104,"Close"),e.k0s()()()()()}if(2&n){const t=e.sdS(50),a=e.XpG(),i=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(15),e.Y8G("icon",a.faInfoCircle),e.R7$(7),e.JRh(e.bMT(23,42,a.selChannel.remote_alias)),e.R7$(5),e.JRh(a.selChannel.chan_id),e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",a.inputFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.inputFormGroup),e.R7$(6),e.Y8G("step",100),e.R7$(2),e.Lme("(Local Bal: ",null==a.selChannel?null:a.selChannel.local_balance,", Remaining: ",(null==a.selChannel?null:a.selChannel.local_balance)-(a.inputFormGroup.controls.rebalanceAmount.value?a.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.R7$(3),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.max),e.R7$(4),e.Y8G("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(52,44,a.filteredActiveChannels)),e.R7$(2),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.R7$(4),e.Y8G("stepControl",a.feeFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.feeFormGroup),e.R7$(8),e.Y8G("ngForOf",a.feeLimitTypes),e.R7$(3),e.JRh(a.feeFormGroup.controls.selFeeLimitType.value?a.feeFormGroup.controls.selFeeLimitType.value.placeholder:a.feeLimitTypes[0].placeholder),e.R7$(),e.Y8G("step",1),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.required),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.min),e.R7$(4),e.Y8G("stepControl",a.statusFormGroup),e.R7$(),e.Y8G("formGroup",a.statusFormGroup),e.R7$(7),e.JRh(a.flgInvoiceGenerated?a.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated),e.R7$(3),e.JRh(a.paymentRequest),e.R7$(),e.Y8G("ngIf",!a.flgInvoiceGenerated),e.R7$(),e.Y8G("expanded",(a.flgInvoiceGenerated||a.flgReusingInvoice)&&a.flgPaymentSent),e.R7$(4),e.JRh(a.flgInvoiceGenerated||a.flgPaymentSent?a.flgPaymentSent?null!=a.paymentStatus&&a.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.R7$(),e.Y8G("ngIf",a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",!a.paymentStatus)("ngIfElse",i),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&!a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&a.flgPaymentSent),e.R7$(2),e.Y8G("ngIf",a.paymentStatus&&a.paymentStatus.error),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function Ql(n,s){1&n&&e.eu8(0)}function Zl(n,s){if(1&n&&e.DNE(0,Ql,1,0,"ng-container",59),2&n){const t=e.XpG(),a=e.sdS(4),i=e.sdS(6);e.Y8G("ngTemplateOutlet",t.paymentStatus.error?a:i)}}function Kl(n,s){if(1&n&&(e.j41(0,"div",7)(1,"span",45),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Error: ",t.paymentStatus.error,"")}}function er(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(6),e.JRh(t.paymentStatus.payment_hash),e.R7$(5),e.SpI("Total Fees (",t.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.R7$(2),e.JRh(t.paymentStatus.payment_route.total_fees_msat?t.paymentStatus.payment_route.total_fees_msat:t.paymentStatus.payment_route.total_fees?t.paymentStatus.payment_route.total_fees:0),e.R7$(5),e.JRh(t.paymentStatus&&t.paymentStatus.payment_route&&t.paymentStatus.payment_route.hops&&t.paymentStatus.payment_route.hops.length?t.paymentStatus.payment_route.hops.length:0)}}function tr(n,s){if(1&n){const t=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onStepChanged(i))}),e.nrm(1,"p",81),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,Ll,a.stepNumber===t,a.stepNumber!==t))}}function nr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function ir(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function ar(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function sr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function or(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function lr(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return i.flgShowInfo=!1,e.Njj(i.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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.stepNumber,i)||(o.stepNumber=i),e.Njj(i)}),e.k0s()(),e.j41(10,"div",72),e.DNE(11,tr,2,4,"span",73),e.k0s(),e.j41(12,"div",74),e.DNE(13,nr,2,0,"button",75)(14,ir,2,0,"button",76)(15,ar,2,0,"button",77)(16,sr,2,0,"button",78)(17,or,2,0,"button",79),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("animationDirection",t.animationDirection),e.R50("stepNumber",t.stepNumber),e.R7$(2),e.Y8G("ngForOf",e.lJ4(9,Il)),e.R7$(2),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber>1&&t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber<5)}}let rr=(()=>{class n{constructor(t,a,i,o,r,c,F,C){this.dialogRef=t,this.data=a,this.logger=i,this.store=o,this.actions=r,this.formBuilder=c,this.decimalPipe=F,this.commonService=C,this.faInfoCircle=b.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=l.f7,this.animationDirection="forward",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let t="",a="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(i=>i.active&&i.chan_id!==this.selChannel.chan_id&&i.remote_balance&&i.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",ta?1:0)),l.nv.forEach((i,o)=>{o>0&&this.feeLimitTypes.push(i)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[m.k0.required]],rebalanceAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,m.k0.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],m.k0.required],feeLimit:["",[m.k0.required,m.k0.min(0)]],hiddenFeeLimit:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.invoices=i.listInvoices,this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.SET_QUERY_ROUTES_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND||i.type===l.QP.NEWLY_SAVED_INVOICE_LND)).subscribe(i=>{i.type===l.QP.SET_QUERY_ROUTES_LND&&(this.queryRoute=i.payload),i.type===l.QP.SEND_PAYMENT_STATUS_LND&&(this.logger.info(i.payload),this.flgPaymentSent=!0,this.paymentStatus=i.payload,this.flgEditable=!0),i.type===l.QP.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(i.payload),this.flgInvoiceGenerated=!0,this.sendPayment(i.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(0)).subscribe(i=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ie.of)(i?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,_.Q)(this.unSubs[3]),(0,ke.Z)("")).subscribe(i=>{"string"==typeof i&&(this.filteredActiveChannels=(0,Ie.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(t){switch(t.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"}t.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 t=this.findUnsettledInvoice();t?(this.flgReusingInvoice=!0,this.sendPayment(t.payment_request||"")):this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:l.It,is_amp:!1,pageSize:l.md,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(t=>(!t.settle_date||0==+t.settle_date)&&t.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==t.state)}sendPayment(t){if(this.flgInvoiceGenerated=!0,this.paymentRequest=t,"percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0){const a={uiMessage:l.MZ.NO_SPINNER,payment_request:t,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:Math.ceil((0,l.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,v.Fd)({payload:a}))}else{const a={uiMessage:l.MZ.NO_SPINNER,payment_request:t,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:(0,l.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,v.Fd)({payload:a}))}}filterActiveChannels(){return this.activeChannels?.filter(t=>t.remote_balance&&t.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&t.chan_id!==this.selChannel.chan_id&&(0===t.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===t.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 t=this.activeChannels?.filter(a=>a.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===a.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));t&&t.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(t[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(t){this.animationDirection=t{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(I.il),e.rXU(Q.En),e.rXU(m.ze),e.rXU(d.QX),e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance"]],viewQuery:function(a,i){if(1&a&&e.GBs(El,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},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(a,i){1&a&&e.DNE(0,Wl,105,46,"div",5)(1,Zl,1,1,"ng-template",null,0,e.C5r)(3,Kl,3,1,"ng-template",null,1,e.C5r)(5,er,19,4,"ng-template",null,2,e.C5r)(7,lr,18,10,"div",6),2&a&&(e.Y8G("ngIf",!i.flgShowInfo),e.R7$(7),e.Y8G("ngIf",i.flgShowInfo))},dependencies:[d.YU,d.Sq,d.bT,d.T3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,L.PW,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,ee.q,B.HM,R.VO,V.wT,H.V5,H.Ti,H.M6,oe.$3,oe.pN,K.N,Rl,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:[Le.C]}})}}return n})();function cr(n,s){if(1&n&&(e.j41(0,"div",18)(1,"p",19)(2,"mat-icon",20),e.EFF(3,"close"),e.k0s(),e.EFF(4),e.k0s()()),2&n){const t=e.XpG();e.R7$(4),e.JRh(t.errorMsg)}}function pr(n,s){if(1&n&&(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&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle)}}function mr(n,s){if(1&n&&(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&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function ur(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function dr(n,s){1&n&&(e.j41(0,"mat-form-field",34)(1,"mat-label"),e.EFF(2,"Default"),e.k0s(),e.nrm(3,"input",35),e.k0s())}function hr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function _r(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,hr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function fr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function gr(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,fr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function Cr(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21),e.DNE(1,pr,4,1,"div",22)(2,mr,16,6,"div",22),e.j41(3,"div",23)(4,"mat-form-field",24)(5,"mat-select",25),e.mxI("valueChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSelTransTypeChanged(i))}),e.DNE(6,ur,2,2,"mat-option",26),e.k0s()(),e.DNE(7,dr,4,0,"mat-form-field",27)(8,_r,6,4,"mat-form-field",28)(9,gr,6,4,"mat-form-field",28),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channelToClose.active),e.R7$(),e.Y8G("ngIf",t.recommendedFee.minimumFee),e.R7$(3),e.Y8G("disabled",!t.channelToClose.active),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","0"===t.selTransType),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType)}}function yr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(1,"Clear"),e.k0s()}}function br(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",41),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onCloseChannel())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG();e.R7$(),e.JRh(t.channelToClose.active?"Close Channel":"Force Close")}}function Fr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",42),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"Ok"),e.k0s()}}let xr=(()=>{class n{constructor(t,a,i,o,r,c){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.actions=r,this.logger=c,this.transTypes=l.XG,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.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 u.B,new u.B]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNELS_LND)).subscribe(t=>{if(t.type===l.QP.SET_CHANNELS_LND){const a=t.payload.find(i=>i.chan_id===this.data.channel.chan_id);a&&a.pending_htlcs&&a.pending_htlcs.length&&a.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.ERROR&&"FetchAllChannels"===t.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+t.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const t={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(t.targetConf=this.blocks),this.fees&&(t.satPerByte=this.fees),this.store.dispatch((0,v.w0)({payload:t})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onSelTransTypeChanged(t){"2"===t.value&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(W.u),e.rXU(I.il),e.rXU(Q.En),e.rXU(j.gP))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-close-channel"]],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(a,i){1&a&&(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 i.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,cr,5,1,"div",12)(14,Cr,10,8,"div",13),e.k0s(),e.j41(15,"div",14),e.DNE(16,yr,2,0,"button",15)(17,br,2,1,"button",16)(18,Fr,2,0,"button",17),e.k0s()()()()()),2&a&&(e.R7$(5),e.JRh(i.channelToClose.active?"Close Channel":"Force Close Channel"),e.R7$(7),e.SpI("",i.channelToClose.active?"Closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point):"Force closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point)," "),e.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(2),e.Y8G("ngIf",i.channelToClose.active&&!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,te.V]})}}return n})();const vr=()=>["all"],Tr=n=>({"error-border":n}),Sr=()=>["no_channel"],Ce=n=>({width:n}),kr=n=>({"display-none":n});function Rr(n,s){if(1&n&&(e.j41(0,"mat-option",49),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Er(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function Ir(n,s){1&n&&e.nrm(0,"th",51)}function Lr(n,s){1&n&&e.nrm(0,"span",55)}function wr(n,s){1&n&&e.nrm(0,"span",56)}function jr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Lr,1,0,"span",53)(2,wr,1,0,"span",54),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.active),e.R7$(),e.Y8G("ngIf",!t.active)}}function Gr(n,s){1&n&&e.nrm(0,"th",57)}function Dr(n,s){if(1&n&&(e.j41(0,"span",60),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Nr(n,s){if(1&n&&(e.j41(0,"span",62),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEye)}}function Pr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Dr,2,1,"span",58)(2,Nr,2,1,"span",59),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function $r(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Peer"),e.k0s())}function Ar(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_alias)}}function Mr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Pubkey"),e.k0s())}function Br(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_pubkey)}}function Or(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel Point"),e.k0s())}function Vr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel_point)}}function Yr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel ID"),e.k0s())}function Xr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.chan_id)}}function Ur(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Initiator"),e.k0s())}function Hr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.initiator?"Yes":"No")}}function qr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Static Remote Key"),e.k0s())}function zr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.static_remote_key?"Yes":"No")}}function Jr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function Wr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function Qr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function Zr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function Kr(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function e1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function t1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Weight"),e.k0s())}function n1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function i1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Fee/KW"),e.k0s())}function a1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function s1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Updates"),e.k0s())}function o1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function l1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function r1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function c1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Capacity (Sats)"),e.k0s())}function p1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function m1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function u1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function d1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function h1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function _1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Sent"),e.k0s())}function f1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_sent)," ")}}function g1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Received"),e.k0s())}function C1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_received)," ")}}function y1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function b1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_balance)," ")}}function F1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function x1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_balance)," ")}}function v1(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Balance Score"),e.k0s())}function T1(n,s){if(1&n&&(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&n){const t=s.$implicit;e.R7$(3),e.JRh(e.bMT(4,2,t.balancedness||0)),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function S1(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onChannelUpdate("all"))}),e.EFF(5,"Update Fee Policy"),e.k0s(),e.j41(6,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(7,"Download CSV"),e.k0s()()()()}}function k1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onCircularRebalance(i))}),e.EFF(1,"Circular Rebalance"),e.k0s()}}function R1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function E1(n,s){if(1&n){const t=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(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(6,"View Info"),e.k0s(),e.j41(7,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onViewRemotePolicy(i))}),e.EFF(8,"View Remote Fee "),e.k0s(),e.j41(9,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelUpdate(i))}),e.EFF(10,"Update Fee Policy"),e.k0s(),e.DNE(11,k1,2,0,"mat-option",77)(12,R1,2,0,"mat-option",77),e.j41(13,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelClose(i))}),e.EFF(14,"Close Channel"),e.k0s()()()()()}if(2&n){const t=e.XpG();e.R7$(11),e.Y8G("ngIf",+t.versionsArr[0]>0||+t.versionsArr[1]>=9),e.R7$(),e.Y8G("ngIf",t.selNode.swapServerUrl)}}function I1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No peers connected. Add a peer in order to open a channel."),e.k0s())}function L1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function w1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function j1(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function G1(n,s){if(1&n&&(e.j41(0,"td",78),e.DNE(1,I1,2,0,"p",79)(2,L1,2,0,"p",79)(3,w1,2,0,"p",79)(4,j1,2,1,"p",79),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function D1(n,s){if(1&n&&e.nrm(0,"tr",80),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,kr,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function N1(n,s){1&n&&e.nrm(0,"tr",81)}function P1(n,s){1&n&&e.nrm(0,"tr",82)}let $1=(()=>{class n{constructor(t,a,i,o,r,c,F,C){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.rtlEffects=r,this.decimalPipe=c,this.loopService=F,this.camelCaseWithReplace=C,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:l.md,sortBy:"balancedness",sortOrder:l.oi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=l.HW,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.versionsArr=[],this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.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(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPeers=t.peers&&t.peers.length?t.peers.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.totalBalance=t.blockchainBalance?.total_balance?+t.blockchainBalance?.total_balance:0}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(t.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.GET_REMOTE_POLICY,channelID:t.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,J.s)(1)).subscribe(a=>{if(!a.fee_base_msat&&!a.fee_rate_milli_msat&&!a.time_lock_delta)return!1;const i=[[{key:"fee_base_msat",value:a.fee_base_msat,title:"Base Fees (mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:l.UN.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:a.time_lock_delta,title:"Time Lock Delta",width:25,type:l.UN.NUMBER}]],o="Remote policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point);setTimeout(()=>{this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:o,message:i}}}))},0)})}onCircularRebalance(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{channels:this.channelsData,selChannel:t},component:rr}}}))}onChannelUpdate(t){"all"===t?(this.store.dispatch((0,E.I1)({payload:{data:{type:l.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:l.UN.NUMBER,inputValue:1e3,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[6])).subscribe(i=>{i&&this.store.dispatch((0,v.fy)({payload:{baseFeeMsat:i[0].inputValue,feeRate:i[1].inputValue,timeLockDelta:i[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,v.ij)({payload:{uiMessage:l.MZ.GET_CHAN_POLICY,channelID:t.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,J.s)(1)).subscribe(a=>{this.myChanPolicy=a.node1_pub===this.information.identity_pubkey?a.node1_policy:a.node2_pub===this.information.identity_pubkey?a.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const i="Update fee policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point),o=[];setTimeout(()=>{this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:i,noBtnText:"Cancel",yesBtnText:"Update Channel",message:o,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[7])).subscribe(a=>{if(a){const i={baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:t.channel_point};a.length>3&&a[3]&&a[4]&&(i.minHtlcMsat=a[3].inputValue,i.maxHtlcMsat=a[4].inputValue),this.store.dispatch((0,v.fy)({payload:i}))}})),this.applyFilter()}onChannelClose(t){t.active&&this.store.dispatch((0,v.$Q)()),this.store.dispatch((0,E.xO)({payload:{data:{channel:t,component:xr}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,selNode:this.selNode,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.active?"active":"inactive")+(t.chan_id?t.chan_id.toLowerCase():"")+(t.remote_pubkey?t.remote_pubkey.toLowerCase():"")+(t.remote_alias?t.remote_alias.toLowerCase():"")+(t.capacity?t.capacity:"")+(t.local_balance?t.local_balance:"")+(t.remote_balance?t.remote_balance:"")+(t.total_satoshis_sent?t.total_satoshis_sent:"")+(t.total_satoshis_received?t.total_satoshis_received:"")+(t.commit_fee?t.commit_fee:"")+(t.private?"private":"public");break;case"active":i=t?.active?"active":"inactive";break;case"private":i=t?.private?"private":"public";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadChannelsTable(t){this.channels=new p.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(t){let c=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",c=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",c=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",c=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",c=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",c=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/c),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%c/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/c),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%c/F),"2.0-0"):"---"}),t}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[8])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(t){return(t/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h),e.rXU(ue.H),e.rXU(d.QX),e.rXU(qe.Q),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-open-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.selFilterBy,c)||(i.selFilterBy=c),e.Njj(c)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Rr,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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Er,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Ir,1,0,"th",13)(20,jr,3,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Gr,1,0,"th",16)(23,Pr,3,2,"td",14),e.bVm(),e.qex(24,17),e.DNE(25,$r,2,0,"th",18)(26,Ar,4,4,"td",14),e.bVm(),e.qex(27,19),e.DNE(28,Mr,2,0,"th",18)(29,Br,4,4,"td",14),e.bVm(),e.qex(30,20),e.DNE(31,Or,2,0,"th",18)(32,Vr,4,4,"td",14),e.bVm(),e.qex(33,21),e.DNE(34,Yr,2,0,"th",18)(35,Xr,4,4,"td",14),e.bVm(),e.qex(36,22),e.DNE(37,Ur,2,0,"th",18)(38,Hr,2,1,"td",14),e.bVm(),e.qex(39,23),e.DNE(40,qr,2,0,"th",18)(41,zr,2,1,"td",14),e.bVm(),e.qex(42,24),e.DNE(43,Jr,2,1,"th",25)(44,Wr,3,1,"td",14),e.bVm(),e.qex(45,26),e.DNE(46,Qr,2,1,"th",25)(47,Zr,3,1,"td",14),e.bVm(),e.qex(48,27),e.DNE(49,Kr,2,0,"th",25)(50,e1,4,3,"td",14),e.bVm(),e.qex(51,28),e.DNE(52,t1,2,0,"th",25)(53,n1,4,3,"td",14),e.bVm(),e.qex(54,29),e.DNE(55,i1,2,0,"th",25)(56,a1,4,3,"td",14),e.bVm(),e.qex(57,30),e.DNE(58,s1,2,0,"th",25)(59,o1,4,3,"td",14),e.bVm(),e.qex(60,31),e.DNE(61,l1,2,0,"th",25)(62,r1,4,3,"td",14),e.bVm(),e.qex(63,32),e.DNE(64,c1,2,0,"th",25)(65,p1,4,3,"td",14),e.bVm(),e.qex(66,33),e.DNE(67,m1,2,0,"th",25)(68,u1,4,3,"td",14),e.bVm(),e.qex(69,34),e.DNE(70,d1,2,0,"th",25)(71,h1,4,3,"td",14),e.bVm(),e.qex(72,35),e.DNE(73,_1,2,0,"th",25)(74,f1,4,3,"td",14),e.bVm(),e.qex(75,36),e.DNE(76,g1,2,0,"th",25)(77,C1,4,3,"td",14),e.bVm(),e.qex(78,37),e.DNE(79,y1,2,0,"th",25)(80,b1,4,3,"td",14),e.bVm(),e.qex(81,38),e.DNE(82,F1,2,0,"th",25)(83,x1,4,3,"td",14),e.bVm(),e.qex(84,39),e.DNE(85,v1,2,0,"th",18)(86,T1,6,4,"td",14),e.bVm(),e.qex(87,40),e.DNE(88,S1,8,0,"th",41)(89,E1,15,2,"td",42),e.bVm(),e.qex(90,43),e.DNE(91,G1,5,4,"td",44),e.bVm(),e.DNE(92,D1,1,3,"tr",45)(93,N1,1,0,"tr",46)(94,P1,1,0,"tr",47),e.k0s()(),e.nrm(95,"mat-paginator",48),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,vr).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",(null==i.apiCallStatus?null:i.apiCallStatus.status)===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,Tr,""!==i.errorMessage)),e.R7$(76),e.Y8G("matFooterRowDef",e.lJ4(17,Sr)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,$.fg,f.rl,f.nJ,f.MV,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,Z.oV,w.iy,A.ZF,A.Ld,d.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 n})();const A1=["outputIdx"];function M1(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(4),e.JRh(e.bMT(6,2,t.dustOutputValue))}}function B1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Index for change output is required."),e.k0s())}function O1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid index value."),e.k0s())}function V1(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Y1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function X1(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,Y1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function U1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function H1(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,U1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function q1(n,s){if(1&n&&(e.j41(0,"div",35),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(2),e.JRh(t.bumpFeeError)}}let Ke=(()=>{class n{set outputIndx(t){t&&(this.outputIdx=t)}constructor(t,a,i,o,r){this.dialogRef=t,this.data=a,this.logger=i,this.dataService=o,this.store=r,this.faUpRightFromSquare=b.k02,this.txid="",this.outputIndex=null,this.transTypes=[...l.XG],this.selTransType="2",this.blocks=null,this.fees=null,this.faCopy=b.jPR,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){if(this.transTypes=this.transTypes.splice(1),this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[];this.txid=t[0]||(this.data.pendingChannel.channel&&this.data.pendingChannel.channel.channel_point?this.data.pendingChannel.channel.channel_point:""),this.outputIndex=t[1]&&""!==t[1]&&0==+t[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(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.dataService.getBlockExplorerTransaction(this.txid).pipe((0,_.Q)(this.unSubs[2])).subscribe({next:t=>{this.dustOutputValue=t.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:t=>{this.logger.error(t)}})}onBumpFee(){if(this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[],a=t.length>1&&t[1]&&""!==t[1]?+t[1]:null;if(a&&this.outputIndex===a)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,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.dialogRef.close(!1)},error:t=>{this.logger.error(t),this.bumpFeeError=t.message?t.message:t}})}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(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(W.u),e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-bump-fee"]],viewQuery:function(a,i){if(1&a&&e.GBs(A1,5),2&a){let o;e.mGM(o=e.lsd())&&(i.outputIndx=o.first)}},decls:46,vars:19,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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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 e.eBV(o),e.Njj(i.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,M1,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(c){return e.eBV(o),e.DH7(i.outputIndex,c)||(i.outputIndex=c),e.Njj(c)}),e.k0s(),e.DNE(33,B1,2,0,"mat-error",22)(34,O1,2,0,"mat-error",22),e.k0s(),e.j41(35,"mat-form-field",23)(36,"mat-select",24),e.mxI("valueChange",function(c){return e.eBV(o),e.DH7(i.selTransType,c)||(i.selTransType=c),e.Njj(c)}),e.bIt("selectionChange",function(){return e.eBV(o),i.blocks=null,e.Njj(i.fees=null)}),e.DNE(37,V1,2,2,"mat-option",25),e.k0s()(),e.DNE(38,X1,6,4,"mat-form-field",26)(39,H1,6,4,"mat-form-field",26),e.k0s(),e.DNE(40,q1,4,2,"div",27),e.k0s()(),e.j41(41,"div",28)(42,"button",29),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(43,"Clear"),e.k0s(),e.j41(44,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBumpFee())}),e.EFF(45),e.k0s()()()()()()}if(2&a){const o=e.sdS(32);e.R7$(12),e.SpI(" ",i.txid?"Bump fee for transaction ID: "+i.txid:"Bump fee: "," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(3),e.Y8G("icon",i.faInfoCircle),e.R7$(5),e.SpI("- High: ",i.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",i.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",i.recommendedFee.hourFee||"Unknown",""),e.R7$(),e.Y8G("ngIf",i.flgShowDustWarning),e.R7$(5),e.Y8G("step",1)("min",0),e.R50("ngModel",i.outputIndex),e.R7$(2),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.OutputIndexError),e.R7$(2),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(),e.Y8G("ngIf","1"===i.selTransType),e.R7$(),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf",""!==i.bumpFeeError),e.R7$(5),e.JRh(""!==i.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,Z.oV,K.N,te.V,d.QX]})}}return n})();const ye=n=>({"error-border bordered-box":n,"bordered-box":!0}),z1=()=>["no_pending_open"],J1=()=>["no_pending_force_closing"],W1=()=>["no_pending_closing"],Q1=()=>["no_pending_wait_closing"],z=n=>({width:n}),we=n=>({"display-none":n}),Z1=n=>({"py-0":!0,"display-none":n});function K1(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function ec(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function tc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function nc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function ic(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function sc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function oc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function lc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function rc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function cc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function pc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function mc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Confirmation Height"),e.k0s())}function uc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.confirmation_height))}}function dc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function hc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_fee))}}function _c(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Weight"),e.k0s())}function fc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_weight))}}function gc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Fee/KW"),e.k0s())}function Cc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_per_kw))}}function yc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function Fc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function xc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function vc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Tc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Sc(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function kc(n,s){if(1&n){const t=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 i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",51),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBumpFee(i))}),e.EFF(7,"Bump Fee"),e.k0s()()()()}}function Rc(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ec(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Ic(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Lc(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Rc,2,0,"p",53)(2,Ec,2,0,"p",53)(3,Ic,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function wc(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingOpenChannels&&(null==t.pendingOpenChannels?null:t.pendingOpenChannels.data)&&(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)>0))}}function jc(n,s){1&n&&e.nrm(0,"tr",55)}function Gc(n,s){1&n&&e.nrm(0,"tr",56)}function Dc(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Nc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Pc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function $c(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Mc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Oc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Vc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Yc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function Xc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Uc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Hc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function Jc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Maturity Height"),e.k0s())}function Wc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.maturity_height))}}function Qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Blocks till Maturity"),e.k0s())}function Zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.blocks_til_maturity))}}function Kc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Recovered Balance (Sats)"),e.k0s())}function ep(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.recovered_balance))}}function tp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function np(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function ap(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function sp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function op(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function lp(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function rp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",57),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onForceClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function cp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function pp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function up(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,cp,2,0,"p",53)(2,pp,2,0,"p",53)(3,mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function dp(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingForceClosingChannels&&(null==t.pendingForceClosingChannels?null:t.pendingForceClosingChannels.data)&&(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)>0))}}function hp(n,s){1&n&&e.nrm(0,"tr",55)}function _p(n,s){1&n&&e.nrm(0,"tr",56)}function fp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function gp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Cp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function yp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function bp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Fp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function xp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function vp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Tp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Sp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function kp(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Rp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Ep(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Lp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function wp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function jp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function Gp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Dp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Np(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Pp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",58),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function $p(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ap(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Bp(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,$p,2,0,"p",53)(2,Ap,2,0,"p",53)(3,Mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Op(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingClosingChannels&&(null==t.pendingClosingChannels?null:t.pendingClosingChannels.data)&&(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)>0))}}function Vp(n,s){1&n&&e.nrm(0,"tr",55)}function Yp(n,s){1&n&&e.nrm(0,"tr",56)}function Xp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Up(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Hp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Jp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Wp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Kp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function em(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function tm(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function nm(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function im(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function am(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function sm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function om(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function lm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function rm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function cm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function pm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function mm(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function um(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",59),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onWaitClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function dm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function hm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function _m(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function fm(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,dm,2,0,"p",53)(2,hm,2,0,"p",53)(3,_m,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function gm(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Z1,t.pendingWaitClosingChannels&&(null==t.pendingWaitClosingChannels?null:t.pendingWaitClosingChannels.data)&&(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)>0))}}function Cm(n,s){1&n&&e.nrm(0,"tr",55)}function ym(n,s){1&n&&e.nrm(0,"tr",56)}let bm=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.commonService=i,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new p.I6([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new p.I6([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new p.I6([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new p.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId),this.displayedOpenColumns=this.screenSize===l.f7.XS||this.screenSize===l.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId),this.displayedForceClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId),this.displayedClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId),this.displayedWaitClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=t.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(t)})}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(t){const a=JSON.parse(JSON.stringify(t,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:100,type:l.UN.STRING}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:100,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"confirmation_height",value:o.confirmation_height,title:"Confirmation Height",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"fee_per_kw",value:o.fee_per_kw,title:"Fee/KW",width:25,type:l.UN.NUMBER},{key:"commit_weight",value:o.commit_weight,title:"Commit Weight",width:25,type:l.UN.NUMBER},{key:"commit_fee",value:o.commit_fee,title:"Commit Fee",width:50,type:l.UN.NUMBER}]]}}}))}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{pendingChannel:t,component:Ke}}}))}onForceClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:o.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"maturity_height",value:o.maturity_height,title:"Maturity Height",width:25,type:l.UN.NUMBER},{key:"blocks_til_maturity",value:o.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:l.UN.NUMBER},{key:"recovered_balance",value:o.recovered_balance,title:"Recovered Balance",width:50,type:l.UN.NUMBER}]]}}}))}onClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:50,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:50,type:l.UN.NUMBER}]]}}}))}onWaitClosingClick(t){const a=JSON.parse(JSON.stringify(t,["limbo_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o=JSON.parse(JSON.stringify(t.commitments,["local_txid"],2)),r={};Object.assign(r,a,i,o),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:r.local_txid,title:"Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:r.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:r.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:r.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:r.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:r.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:r.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:r.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}]]}}}))}loadOpenChannelsTable(t){this.pendingOpenChannelsLength=t.length?t.length:0,this.pendingOpenChannels=new p.I6([...t]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(t){this.pendingForceClosingChannelsLength=t.length?t.length:0,this.pendingForceClosingChannels=new p.I6([...t]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(t){this.pendingClosingChannelsLength=t.length?t.length:0,this.pendingClosingChannels=new p.I6([...t]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(t){this.pendingWaitClosingChannelsLength=t.length?t.length:0,this.pendingWaitClosingChannels=new p.I6([...t]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-pending-table"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(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,K1,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,ec,1,0,"mat-progress-bar",4),e.j41(12,"table",7,0),e.qex(14,8),e.DNE(15,tc,2,0,"th",9)(16,nc,4,4,"td",10),e.bVm(),e.qex(17,11),e.DNE(18,ic,2,0,"th",9)(19,ac,4,4,"td",10),e.bVm(),e.qex(20,12),e.DNE(21,sc,2,0,"th",9)(22,oc,4,4,"td",10),e.bVm(),e.qex(23,13),e.DNE(24,lc,2,0,"th",9)(25,rc,3,4,"td",10),e.bVm(),e.qex(26,14),e.DNE(27,cc,2,0,"th",9)(28,pc,3,5,"td",10),e.bVm(),e.qex(29,15),e.DNE(30,mc,2,0,"th",16)(31,uc,4,3,"td",10),e.bVm(),e.qex(32,17),e.DNE(33,dc,2,0,"th",16)(34,hc,4,3,"td",10),e.bVm(),e.qex(35,18),e.DNE(36,_c,2,0,"th",16)(37,fc,4,3,"td",10),e.bVm(),e.qex(38,19),e.DNE(39,gc,2,0,"th",16)(40,Cc,4,3,"td",10),e.bVm(),e.qex(41,20),e.DNE(42,yc,2,0,"th",16)(43,bc,4,3,"td",10),e.bVm(),e.qex(44,21),e.DNE(45,Fc,2,0,"th",16)(46,xc,4,3,"td",10),e.bVm(),e.qex(47,22),e.DNE(48,vc,2,0,"th",16)(49,Tc,4,3,"td",10),e.bVm(),e.qex(50,23),e.DNE(51,Sc,3,0,"th",24)(52,kc,8,0,"td",25),e.bVm(),e.qex(53,26),e.DNE(54,Lc,4,3,"td",27),e.bVm(),e.DNE(55,wc,1,3,"tr",28)(56,jc,1,0,"tr",29)(57,Gc,1,0,"tr",30),e.k0s()()(),e.DNE(58,Dc,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,Nc,2,0,"th",9)(68,Pc,4,4,"td",10),e.bVm(),e.qex(69,8),e.DNE(70,$c,2,0,"th",9)(71,Ac,4,4,"td",10),e.bVm(),e.qex(72,11),e.DNE(73,Mc,2,0,"th",9)(74,Bc,4,4,"td",10),e.bVm(),e.qex(75,12),e.DNE(76,Oc,2,0,"th",9)(77,Vc,4,4,"td",10),e.bVm(),e.qex(78,13),e.DNE(79,Yc,2,0,"th",9)(80,Xc,3,4,"td",10),e.bVm(),e.qex(81,14),e.DNE(82,Uc,2,0,"th",9)(83,Hc,3,5,"td",10),e.bVm(),e.qex(84,33),e.DNE(85,qc,2,0,"th",16)(86,zc,4,3,"td",10),e.bVm(),e.qex(87,34),e.DNE(88,Jc,2,0,"th",16)(89,Wc,4,3,"td",10),e.bVm(),e.qex(90,35),e.DNE(91,Qc,2,0,"th",16)(92,Zc,4,3,"td",10),e.bVm(),e.qex(93,36),e.DNE(94,Kc,2,0,"th",16)(95,ep,4,3,"td",10),e.bVm(),e.qex(96,20),e.DNE(97,tp,2,0,"th",16)(98,np,4,3,"td",10),e.bVm(),e.qex(99,21),e.DNE(100,ip,2,0,"th",16)(101,ap,4,3,"td",10),e.bVm(),e.qex(102,22),e.DNE(103,sp,2,0,"th",16)(104,op,4,3,"td",10),e.bVm(),e.qex(105,23),e.DNE(106,lp,3,0,"th",24)(107,rp,3,0,"td",25),e.bVm(),e.qex(108,37),e.DNE(109,up,4,3,"td",27),e.bVm(),e.DNE(110,dp,1,3,"tr",28)(111,hp,1,0,"tr",29)(112,_p,1,0,"tr",30),e.k0s()()(),e.DNE(113,fp,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,gp,2,0,"th",9)(123,Cp,4,4,"td",10),e.bVm(),e.qex(124,8),e.DNE(125,yp,2,0,"th",9)(126,bp,4,4,"td",10),e.bVm(),e.qex(127,11),e.DNE(128,Fp,2,0,"th",9)(129,xp,4,4,"td",10),e.bVm(),e.qex(130,12),e.DNE(131,vp,2,0,"th",9)(132,Tp,4,4,"td",10),e.bVm(),e.qex(133,13),e.DNE(134,Sp,2,0,"th",9)(135,kp,3,4,"td",10),e.bVm(),e.qex(136,14),e.DNE(137,Rp,2,0,"th",9)(138,Ep,3,5,"td",10),e.bVm(),e.qex(139,20),e.DNE(140,Ip,2,0,"th",16)(141,Lp,4,3,"td",10),e.bVm(),e.qex(142,21),e.DNE(143,wp,2,0,"th",16)(144,jp,4,3,"td",10),e.bVm(),e.qex(145,22),e.DNE(146,Gp,2,0,"th",16)(147,Dp,4,3,"td",10),e.bVm(),e.qex(148,23),e.DNE(149,Np,3,0,"th",24)(150,Pp,3,0,"td",25),e.bVm(),e.qex(151,38),e.DNE(152,Bp,4,3,"td",27),e.bVm(),e.DNE(153,Op,1,3,"tr",28)(154,Vp,1,0,"tr",29)(155,Yp,1,0,"tr",30),e.k0s()()(),e.DNE(156,Xp,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,Up,2,0,"th",9)(166,Hp,4,4,"td",10),e.bVm(),e.qex(167,8),e.DNE(168,qp,2,0,"th",9)(169,zp,4,4,"td",10),e.bVm(),e.qex(170,11),e.DNE(171,Jp,2,0,"th",9)(172,Wp,4,4,"td",10),e.bVm(),e.qex(173,12),e.DNE(174,Qp,2,0,"th",9)(175,Zp,4,4,"td",10),e.bVm(),e.qex(176,13),e.DNE(177,Kp,2,0,"th",9)(178,em,3,4,"td",10),e.bVm(),e.qex(179,14),e.DNE(180,tm,2,0,"th",9)(181,nm,3,5,"td",10),e.bVm(),e.qex(182,33),e.DNE(183,im,2,0,"th",16)(184,am,4,3,"td",10),e.bVm(),e.qex(185,20),e.DNE(186,sm,2,0,"th",16)(187,om,4,3,"td",10),e.bVm(),e.qex(188,21),e.DNE(189,lm,2,0,"th",16)(190,rm,4,3,"td",10),e.bVm(),e.qex(191,22),e.DNE(192,cm,2,0,"th",16)(193,pm,4,3,"td",10),e.bVm(),e.qex(194,23),e.DNE(195,mm,3,0,"th",24)(196,um,3,0,"td",25),e.bVm(),e.qex(197,39),e.DNE(198,fm,4,3,"td",27),e.bVm(),e.DNE(199,gm,1,3,"tr",28)(200,Cm,1,0,"tr",29)(201,ym,1,0,"tr",30),e.k0s()()()()()),2&a&&(e.R7$(2),e.SpI("Total Limbo Balance: ",e.bMT(3,38,i.pendingChannels.total_limbo_balance)," Sats"),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Open (",i.pendingOpenChannelsLength,")"),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.openTableSetting.sortBy)("matSortDirection",i.openTableSetting.sortOrder)("dataSource",i.pendingOpenChannels)("ngClass",e.eq3(40,ye,""!==i.errorMessage)),e.R7$(43),e.Y8G("matFooterRowDef",e.lJ4(42,z1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedOpenColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedOpenColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Force Closing (",i.pendingForceClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.forceClosingTableSetting.sortBy)("matSortDirection",i.forceClosingTableSetting.sortOrder)("dataSource",i.pendingForceClosingChannels)("ngClass",e.eq3(43,ye,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(45,J1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedForceClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedForceClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Closing (",i.pendingClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.closingTableSetting.sortBy)("matSortDirection",i.closingTableSetting.sortOrder)("dataSource",i.pendingClosingChannels)("ngClass",e.eq3(46,ye,""!==i.errorMessage)),e.R7$(34),e.Y8G("matFooterRowDef",e.lJ4(48,W1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Waiting Close (",i.pendingWaitClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.waitingCloseTableSetting.sortBy)("matSortDirection",i.waitingCloseTableSetting.sortOrder)("dataSource",i.pendingWaitClosingChannels)("ngClass",e.eq3(49,ye,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(51,Q1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedWaitClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedWaitClosingColumns))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,U.BS,U.GK,U.Z2,U.WN,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,A.Ld,d.QX,q.VD],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]})}}return n})();const Fm=()=>["all"],xm=n=>({"error-border":n,"overflow-auto":!0}),vm=()=>["no_closed_channel"],ce=n=>({width:n}),Tm=n=>({"display-none":n});function Sm(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function km(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Rm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Type"),e.k0s())}function Em(n,s){if(1&n&&(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&n){const t=s.$implicit,a=e.XpG();e.R7$(2),e.Y8G("matTooltip",a.channelClosureType[t.close_type].tooltip),e.R7$(2),e.SpI(" ",a.channelClosureType[t.close_type].name," ")}}function Im(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Peer"),e.k0s())}function Lm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function wm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Pubkey"),e.k0s())}function jm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function Gm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel Point"),e.k0s())}function Dm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function Nm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel ID"),e.k0s())}function Pm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function $m(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Closing Tx Hash"),e.k0s())}function Am(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.closing_tx_hash)}}function Mm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Chain Hash"),e.k0s())}function Bm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chain_hash)}}function Om(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Open Initiator"),e.k0s())}function Vm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.open_initiator,"initiator_"))}}function Ym(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Initiator"),e.k0s())}function Xm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.close_initiator,"initiator_"))}}function Um(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Timelocked Balance (Sats)"),e.k0s())}function Hm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.time_locked_balance)," ")}}function qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function Jm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Close Height"),e.k0s())}function Wm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.close_height)," ")}}function Qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Settled Balance (Sats)"),e.k0s())}function Zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.settled_balance)," ")}}function Km(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function eu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",39)(1,"span",45)(2,"button",50),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onClosedChannelClick(o,i))}),e.EFF(3,"View Info"),e.k0s()()()}}function tu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No closed channel available."),e.k0s())}function nu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting closed channels..."),e.k0s())}function iu(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function au(n,s){if(1&n&&(e.j41(0,"td",51),e.DNE(1,tu,2,0,"p",52)(2,nu,2,0,"p",52)(3,iu,2,1,"p",52),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function su(n,s){if(1&n&&e.nrm(0,"tr",53),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Tm,(null==t.closedChannels?null:t.closedChannels.data)&&(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)>0))}}function ou(n,s){1&n&&e.nrm(0,"tr",54)}function lu(n,s){1&n&&e.nrm(0,"tr",55)}let ru=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.commonService=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:l.md,sortBy:"close_type",sortOrder:l.oi.DESCENDING},this.channelClosureType=l.tj,this.faHistory=b.Int,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new p.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=t.closedChannels,this.closedChannelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(t)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.closedChannels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"close_type":i=t.close_type&&this.channelClosureType[t.close_type]&&this.channelClosureType[t.close_type].name?this.channelClosureType[t.close_type].name.toLowerCase():"";break;case"open_initiator":case"close_initiator":i=this.camelCaseWithReplace.transform(t[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"close_type"===this.selFilterBy||"open_initiator"===this.selFilterBy||"close_initiator"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}onClosedChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[t.close_type].name,title:"Close Type",width:30,type:l.UN.STRING},{key:"settled_balance",value:t.settled_balance,title:"Settled Balance",width:30,type:l.UN.NUMBER},{key:"time_locked_balance",value:t.time_locked_balance,title:"Time Locked Balance",width:40,type:l.UN.NUMBER}],[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:30},{key:"capacity",value:t.capacity,title:"Capacity",width:30,type:l.UN.NUMBER},{key:"close_height",value:t.close_height,title:"Close Height",width:40,type:l.UN.NUMBER}],[{key:"remote_alias",value:t.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:t.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:t.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:t.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:l.UN.STRING}]]}}}))}loadClosedChannelsTable(t){this.closedChannels=new p.I6([...t]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-closed-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.selFilterBy,c)||(i.selFilterBy=c),e.Njj(c)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Sm,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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,km,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Rm,2,0,"th",13)(20,Em,5,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Im,2,0,"th",13)(23,Lm,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,wm,2,0,"th",13)(26,jm,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Gm,2,0,"th",13)(29,Dm,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Nm,2,0,"th",13)(32,Pm,4,4,"td",14),e.bVm(),e.qex(33,19),e.DNE(34,$m,2,0,"th",13)(35,Am,4,4,"td",14),e.bVm(),e.qex(36,20),e.DNE(37,Mm,2,0,"th",13)(38,Bm,4,4,"td",14),e.bVm(),e.qex(39,21),e.DNE(40,Om,2,0,"th",13)(41,Vm,3,4,"td",14),e.bVm(),e.qex(42,22),e.DNE(43,Ym,2,0,"th",13)(44,Xm,3,4,"td",14),e.bVm(),e.qex(45,23),e.DNE(46,Um,2,0,"th",24)(47,Hm,4,3,"td",14),e.bVm(),e.qex(48,25),e.DNE(49,qm,2,0,"th",24)(50,zm,4,3,"td",14),e.bVm(),e.qex(51,26),e.DNE(52,Jm,2,0,"th",24)(53,Wm,4,3,"td",14),e.bVm(),e.qex(54,27),e.DNE(55,Qm,2,0,"th",24)(56,Zm,4,3,"td",14),e.bVm(),e.qex(57,28),e.DNE(58,Km,6,0,"th",29)(59,eu,4,0,"td",14),e.bVm(),e.qex(60,30),e.DNE(61,au,4,3,"td",31),e.bVm(),e.DNE(62,su,1,3,"tr",32)(63,ou,1,0,"tr",33)(64,lu,1,0,"tr",34),e.k0s()(),e.nrm(65,"mat-paginator",35),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Fm).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.closedChannels)("ngClass",e.eq3(15,xm,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(17,vm)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,Z.oV,w.iy,A.ZF,A.Ld,d.QX,q.VD]})}}return n})();const cu=()=>["all"],pu=n=>({"error-border":n}),mu=()=>["no_channel"],uu=n=>({"display-none":n});function du(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function hu(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function _u(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Amount (Sats)"),e.k0s())}function fu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.amount)," ")}}function gu(n,s){if(1&n&&(e.qex(0),e.DNE(1,fu,3,3,"span",39),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Cu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,gu,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" Active HTLCs: ",null==t||null==t.pending_htlcs?null:t.pending_htlcs.length," "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function yu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Alias/Incoming"),e.k0s())}function bu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null!=t&&t.incoming?"Yes":"No"," ")}}function Fu(n,s){if(1&n&&(e.qex(0),e.DNE(1,bu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function xu(n,s){if(1&n&&(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&n){const t=s.$implicit;e.R7$(2),e.JRh(null==t?null:t.remote_alias),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function vu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Forwarding Channel"),e.k0s())}function Tu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.forwarding_channel," ")}}function Su(n,s){if(1&n&&(e.qex(0),e.DNE(1,Tu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function ku(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Su,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Ru(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"HTLC Index"),e.k0s()())}function Eu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.htlc_index)," ")}}function Iu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Eu,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Lu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Iu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function wu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Forwarding HTLC Index"),e.k0s()())}function ju(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.forwarding_htlc_index)," ")}}function Gu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ju,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Du(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Gu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Nu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Expiration Height"),e.k0s()())}function Pu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t?null:t.expiration_height,"1.0-0")," ")}}function $u(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Pu,3,4,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Au(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,$u,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Mu(n,s){1&n&&(e.j41(0,"th",43)(1,"span",40),e.EFF(2,"Hash Lock"),e.k0s()())}function Bu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.hash_lock," ")}}function Ou(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Bu,2,1,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Vu(n,s){if(1&n&&(e.j41(0,"td",44)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Ou,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Yu(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Xu(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",53)(1,"button",54),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG();return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Uu(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,Xu,3,1,"div",52),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Hu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"span",50)(2,"button",51),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!i.is_expanded)}),e.EFF(3),e.k0s()(),e.DNE(4,Uu,2,1,"div",38),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function qu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No active htlc available."),e.k0s())}function zu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting active htlcs..."),e.k0s())}function Ju(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Wu(n,s){if(1&n&&(e.j41(0,"td",55),e.DNE(1,qu,2,0,"p",38)(2,zu,2,0,"p",38)(3,Ju,2,1,"p",38),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Qu(n,s){if(1&n&&e.nrm(0,"tr",56),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,uu,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Zu(n,s){1&n&&e.nrm(0,"tr",57)}function Ku(n,s){1&n&&e.nrm(0,"tr",58)}let ed=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:l.md,sortBy:"expiration_height",sortOrder:l.oi.DESCENDING},this.channels=new p.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=t.channels?.filter(a=>a.pending_htlcs&&a.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:a.remote_alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"amount",value:t.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"incoming",value:t.incoming?"Yes":"No",title:"Incoming",width:50,type:l.UN.STRING}],[{key:"expiration_height",value:t.expiration_height,title:"Expiration Height",width:50,type:l.UN.NUMBER},{key:"hash_lock",value:t.hash_lock,title:"Hash Lock",width:50,type:l.UN.STRING}]]}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?(t.remote_alias?t.remote_alias.toLowerCase():"")+t.pending_htlcs?.map(o=>JSON.stringify(o)+(o.incoming?"yes":"no")):typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadHTLCsTable(t){this.channels=new p.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>{switch(i){case"amount":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a.pending_htlcs&&a.pending_htlcs.length?a.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(a.pending_htlcs,i,"boolean",this.sort?.direction),a.remote_alias?a.remote_alias:a.remote_pubkey?a.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a;default:return a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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((i,o)=>i.concat(o.pending_htlcs?o.pending_htlcs:o),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.selFilterBy,c)||(i.selFilterBy=c),e.Njj(c)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,du,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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,hu,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,_u,2,0,"th",13)(20,Cu,4,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,yu,2,0,"th",13)(23,xu,4,2,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,vu,2,0,"th",13)(26,ku,4,2,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Ru,3,0,"th",18)(29,Lu,4,2,"td",14),e.bVm(),e.qex(30,19),e.DNE(31,wu,3,0,"th",18)(32,Du,4,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nu,3,0,"th",18)(35,Au,4,2,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Mu,3,0,"th",22)(38,Vu,4,2,"td",23),e.bVm(),e.qex(39,24),e.DNE(40,Yu,6,0,"th",25)(41,Hu,5,2,"td",26),e.bVm(),e.qex(42,27),e.DNE(43,Wu,4,3,"td",28),e.bVm(),e.DNE(44,Qu,1,3,"tr",29)(45,Zu,1,0,"tr",30)(46,Ku,1,0,"tr",31),e.k0s()(),e.nrm(47,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,cu).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,pu,""!==i.errorMessage)),e.R7$(28),e.Y8G("matFooterRowDef",e.lJ4(17,mu)),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:[d.YU,d.Sq,d.bT,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,A.ZF,A.Ld,d.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 n})();function td(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Wallet password is required."),e.k0s())}let nd=(()=>{class n{constructor(t){this.store=t,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,v.WE)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-unlock-wallet"]],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(a,i){1&a&&(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(r){return e.DH7(i.walletPassword,r)||(i.walletPassword=r),r}),e.k0s(),e.j41(6,"mat-hint"),e.EFF(7,"Enter Wallet Password"),e.k0s(),e.DNE(8,td,2,0,"mat-error",4),e.k0s(),e.j41(9,"div",5)(10,"button",6),e.bIt("click",function(){return i.resetData()}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",7),e.bIt("click",function(){return i.onUnlockWallet()}),e.EFF(13,"Unlock Wallet"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.walletPassword),e.R7$(3),e.Y8G("ngIf",!i.walletPassword))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,K.N]})}}return n})();var id=g(7768);function ad(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return i.proceed=!1,e.Njj(i.warnRes=!0)}),e.EFF(6,"Do Not Proceed"),e.k0s(),e.j41(7,"button",9),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.proceed=!0,e.Njj(i.warnRes=!0)}),e.EFF(8,"Proceed"),e.k0s()()()()}}function sd(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.warnRes=!1)}),e.EFF(5,"Go Back"),e.k0s()()()}}function od(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function ld(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password must be at least 8 characters in length."),e.k0s())}function rd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password is required."),e.k0s())}function cd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password must be at least 8 characters in length."),e.k0s())}function pd(n,s){1&n&&(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 md(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Cipher seed is required."),e.k0s())}function ud(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.k0s())}function dd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Passphrase is required."),e.k0s())}function hd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"vpn_key"),e.k0s())}function _d(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"swap_calls"),e.k0s())}function fd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"fingerprint"),e.k0s())}function gd(n,s){if(1&n){const t=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,od,2,0,"mat-error",2)(11,ld,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,rd,2,0,"mat-error",2)(19,cd,2,0,"mat-error",2),e.k0s(),e.DNE(20,pd,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,md,2,0,"mat-error",2)(36,ud,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,dd,2,0,"mat-error",2),e.k0s()(),e.j41(54,"div",28)(55,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInitWallet())}),e.EFF(60,"Initialize Wallet"),e.k0s()()()(),e.DNE(61,hd,2,0,"ng-template",38)(62,_d,2,0,"ng-template",39)(63,fd,2,0,"ng-template",40),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",t.passwordFormGroup),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.R7$(),e.Y8G("ngIf",(null==t.passwordFormGroup.errors?null:t.passwordFormGroup.errors.unmatchedPasswords)&&(t.passwordFormGroup.controls.initWalletPassword.touched||t.passwordFormGroup.controls.initWalletPassword.dirty)&&(t.passwordFormGroup.controls.initWalletConfirmPassword.touched||t.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.R7$(4),e.Y8G("stepControl",t.cipherFormGroup),e.R7$(),e.Y8G("formGroup",t.cipherFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.required),e.R7$(),e.Y8G("ngIf",!(null!=t.cipherFormGroup.controls.cipherSeed.errors&&t.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.R7$(6),e.Y8G("stepControl",t.passphraseFormGroup),e.R7$(),e.Y8G("formGroup",t.passphraseFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.passphraseFormGroup.controls.passphrase.errors?null:t.passphraseFormGroup.controls.passphrase.errors.required)}}function Cd(n,s){if(1&n&&(e.j41(0,"span",48),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function yd(n,s){if(1&n){const t=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,Cd,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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(14,"Go To Home"),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngForOf",t.genSeedResponse)}}function bd(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(6,"Restart"),e.k0s()()()()}}function Fd(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(8,"Go To Home"),e.k0s()()()()}}function xd(n){const s=n.get("initWalletPassword"),t=n.get("initWalletConfirmPassword");return s&&t&&s.value!==t.value?{unmatchedPasswords:!0}:null}function vd(n){const s=n.value.toString().trim().split(",")||[];return s&&24!==s.length?{invalidCipher:!0}:null}let Td=(()=>{class n{constructor(t,a,i){this.store=t,this.formBuilder=a,this.lndEffects=i,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[m.k0.required,m.k0.minLength(8)]],initWalletConfirmPassword:["",[m.k0.required,m.k0.minLength(8)]]},{validators:xd}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[vd]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,_.Q)(this.unsubs[0])).subscribe(t=>{t?(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,_.Q)(this.unsubs[1])).subscribe(t=>{t?(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,_.Q)(this.unsubs[2])).subscribe(t=>{this.initWalletResponse=t}),this.lndEffects.genSeedResponse.pipe((0,_.Q)(this.unsubs[3])).subscribe(t=>{this.genSeedResponse=t,this.store.dispatch((0,v.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 t=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,v.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t}}))}else this.store.dispatch((0,v.oX)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,v.X9)()),this.store.dispatch((0,v.Br)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(m.ze),e.rXU(re.L))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-initialize-wallet"]],viewQuery:function(a,i){if(1&a&&e.GBs(H.M6,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},features:[e.Jv_([{provide:id.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"],["fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet",3,"labelPosition"],["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"],["fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet",3,"labelPosition"],["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(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,ad,9,0,"div",2)(2,sd,6,0,"div",3)(3,gd,64,17,"mat-vertical-stepper",4)(4,yd,15,1,"div",2)(5,bd,7,0,"div",2)(6,Fd,9,0,"div",2),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.insecureLND&&!i.warnRes),e.R7$(),e.Y8G("ngIf",i.warnRes&&!i.proceed),e.R7$(),e.Y8G("ngIf",(!i.insecureLND||i.warnRes&&i.proceed)&&i.genSeedResponse.length<=0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""!==i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length<=0&&""!==i.initWalletResponse))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.cV,m.j4,m.JD,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,me.sG,H.V5,H.M6,H.F7,H.FR,H.xJ]})}}return n})(),Sd=(()=>{class n{constructor(){this.faWallet=b.BA1}static{this.\u0275fac=function(a){return new(a||n)}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-wallet"]],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(a,i){1&a&&(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&a&&(e.R7$(),e.Y8G("icon",i.faWallet))},dependencies:[M.aY,h.DJ,h.sA,T.RN,T.m2,P.mq,P.T8,nd,Td]})}}return n})();function kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Rd=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faExchangeAlt=b._qq,this.faChartPie=b.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1]),(0,he.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.currencyUnits=i?.settings.currencyUnits||[],this.balances=i?.settings.userPersona===l.HW.OPERATOR?[{title:"Local Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,kd,2,3,"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&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk]})}}return n})();function Ed(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Id=(()=>{class n{constructor(t){this.router=t,this.faSearch=b.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-graph"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,Ed,2,3,"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&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faSearch),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}}return n})();const Ld=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),je=n=>({width:n});function wd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Destination pubkey is required."),e.k0s())}function jd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gd(n,s){1&n&&e.nrm(0,"mat-progress-bar",39)}function Dd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Hop"),e.k0s())}function Nd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.hop_sequence)}}function Pd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer"),e.k0s())}function $d(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pubkey_alias)}}function Ad(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer Pubkey"),e.k0s())}function Md(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function Bd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Channel ID"),e.k0s())}function Od(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function Vd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"TLV Payload"),e.k0s())}function Yd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.tlv_payload?"Yes":"No")}}function Xd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Expiry"),e.k0s())}function Ud(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.expiry))}}function Hd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.chan_capacity))}}function zd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Amount To Fwd (Sats)"),e.k0s())}function Jd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_to_forward)," ")}}function Wd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Fee (mSats)"),e.k0s())}function Qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.fee_msat)," ")}}function Zd(n,s){1&n&&(e.j41(0,"th",46)(1,"div",47),e.EFF(2,"Actions"),e.k0s()())}function Kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onHopClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function eh(n,s){1&n&&e.nrm(0,"tr",50)}function th(n,s){1&n&&e.nrm(0,"tr",51)}let nh=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:l.md,sortBy:"hop_sequence",sortOrder:l.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new p.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=b.TBz,this.faExclamationTriangle=b.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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,_.Q)(this.unSubs[1])).subscribe(t=>{this.qrHops=new p.I6([]),t.routes&&t.routes.length&&t.routes.length>0&&t.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new p.I6([...t.routes[0].hops]),this.qrHops.data=t.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new p.I6([]),this.flgLoading[0]=!0,this.store.dispatch((0,v.T4)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:t.hop_sequence,title:"Sequence",width:33,type:l.UN.NUMBER},{key:"amt_to_forward",value:t.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:34,type:l.UN.NUMBER}],[{key:"chan_capacity",value:t.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:l.UN.NUMBER},{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:l.UN.NUMBER}],[{key:"pubkey_alias",value:t.pubkey_alias,title:"Peer Alias",width:50,type:l.UN.STRING},{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING}],[{key:"pub_key",value:t.pub_key,title:"Peer Pubkey",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-query-routes"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",3)(1,"form",4,0),e.bIt("ngSubmit",function(){e.eBV(o);const c=e.sdS(2);return e.Njj(c.form.valid&&i.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(c){return e.eBV(o),e.DH7(i.destinationPubkey,c)||(i.destinationPubkey=c),e.Njj(c)}),e.k0s(),e.DNE(12,wd,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(c){return e.eBV(o),e.DH7(i.amount,c)||(i.amount=c),e.Njj(c)}),e.k0s(),e.DNE(17,jd,2,0,"mat-error",9),e.k0s(),e.j41(18,"div",12)(19,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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,Gd,1,0,"mat-progress-bar",20),e.j41(30,"table",21,2),e.qex(32,22),e.DNE(33,Dd,2,0,"th",23)(34,Nd,2,1,"td",24),e.bVm(),e.qex(35,25),e.DNE(36,Pd,2,0,"th",23)(37,$d,4,4,"td",24),e.bVm(),e.qex(38,26),e.DNE(39,Ad,2,0,"th",23)(40,Md,4,4,"td",24),e.bVm(),e.qex(41,27),e.DNE(42,Bd,2,0,"th",23)(43,Od,4,4,"td",24),e.bVm(),e.qex(44,28),e.DNE(45,Vd,2,0,"th",23)(46,Yd,2,1,"td",24),e.bVm(),e.qex(47,29),e.DNE(48,Xd,2,0,"th",30)(49,Ud,4,3,"td",24),e.bVm(),e.qex(50,31),e.DNE(51,Hd,2,0,"th",30)(52,qd,4,3,"td",24),e.bVm(),e.qex(53,32),e.DNE(54,zd,2,0,"th",30)(55,Jd,4,3,"td",24),e.bVm(),e.qex(56,33),e.DNE(57,Wd,2,0,"th",30)(58,Qd,4,3,"td",24),e.bVm(),e.qex(59,34),e.DNE(60,Zd,3,0,"th",35)(61,Kd,3,0,"td",36),e.bVm(),e.DNE(62,eh,1,0,"tr",37)(63,th,1,0,"tr",38),e.k0s()()()}2&a&&(e.R7$(4),e.Y8G("icon",i.faExclamationTriangle),e.R7$(6),e.R50("ngModel",i.destinationPubkey),e.R7$(2),e.Y8G("ngIf",!i.destinationPubkey),e.R7$(4),e.Y8G("step",1e3)("min",0),e.R50("ngModel",i.amount),e.R7$(),e.Y8G("ngIf",!i.amount),e.R7$(8),e.Y8G("icon",i.faRoute),e.R7$(4),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.qrHops)("ngClass",e.eq3(15,Ld,"error"===i.flgLoading[0])),e.R7$(32),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns))},dependencies:[d.YU,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.TL,B.HM,k.B4,k.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,A.Ld,te.V,d.QX]})}}return n})();var pe=g(5951);function ih(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1"),e.k0s())}function ah(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1 (Your Node)"),e.k0s())}function sh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2"),e.k0s())}function oh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2 (Your Node)"),e.k0s())}function lh(n,s){if(1&n&&(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,ih,2,0,"h3",12)(32,ah,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,sh,2,0,"h3",12)(78,oh,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&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.channel_id),e.R7$(5),e.JRh(t.lookupResult.chan_point),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(20,39,1e3*t.lookupResult.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(26,42,t.lookupResult.capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(4),e.Y8G("ngIf",!t.node1_match),e.R7$(),e.Y8G("ngIf",t.node1_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node1_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node1_policy&&t.lookupResult.node1_policy.disabled?"Yes":"No"),e.R7$(3),e.Y8G("ngIf",!t.node2_match),e.R7$(),e.Y8G("ngIf",t.node2_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node2_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node2_policy&&t.lookupResult.node2_policy.disabled?"Yes":"No")}}let rh=(()=>{class n{constructor(t){this.store=t,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.lookupResult.node1_pub===t.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===t.identity_pubkey&&(this.node2_match=!0)})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},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(a,i){1&a&&e.DNE(0,lh,121,44,"div",0),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.bT,h.DJ,h.sA,h.UI,ee.q,d.QX,d.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})();const ch=n=>({"background-color":n});function ph(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Lme("",a.nodeFeaturesEnum[t.value.name]||t.value.name,": ",t.value.is_required?"Mandatory":"Optional","")}}function mh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Network"),e.k0s())}function uh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.network)}}function dh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Address"),e.k0s())}function hh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.addr)}}function _h(n,s){1&n&&(e.j41(0,"th",29)(1,"div",30),e.EFF(2,"Actions"),e.k0s()())}function fh(n,s){if(1&n){const t=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 i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onConnectNode(i))}),e.EFF(5,"Connect"),e.k0s(),e.j41(6,"mat-option",35),e.bIt("copied",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onCopyNodeURI(i))}),e.EFF(7,"Copy URI"),e.k0s()()()()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(6),e.Y8G("payload",a.lookupResult.node.pub_key+"@"+t.addr)}}function gh(n,s){1&n&&e.nrm(0,"tr",36)}function Ch(n,s){1&n&&e.nrm(0,"tr",37)}function yh(n,s){if(1&n&&(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,ph,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,mh,2,0,"th",19)(51,uh,2,1,"td",20),e.bVm(),e.qex(52,21),e.DNE(53,dh,2,0,"th",19)(54,hh,2,1,"td",20),e.bVm(),e.qex(55,22),e.DNE(56,_h,3,0,"th",23)(57,fh,8,1,"td",24),e.bVm(),e.DNE(58,gh,1,0,"tr",25)(59,Ch,1,0,"tr",26),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.node.alias),e.R7$(),e.Y8G("ngStyle",e.eq3(24,ch,null==t.lookupResult.node?null:t.lookupResult.node.color)),e.R7$(),e.JRh(null==t.lookupResult.node?null:t.lookupResult.node.color),e.R7$(5),e.JRh(t.lookupResult.node.pub_key),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(22,15,1e3*t.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(28,18,t.lookupResult.total_capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(36,20,t.lookupResult.num_channels)),e.R7$(5),e.Y8G("ngForOf",e.bMT(41,22,t.lookupResult.node.features)),e.R7$(2),e.Y8G("inset",!0),e.R7$(5),e.Y8G("dataSource",t.lookupResult.node.addresses),e.R7$(11),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}let bh=(()=>{class n{constructor(t,a,i){this.logger=t,this.snackBar=a,this.store=i,this.nodeFeaturesEnum=l._U,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0})}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}onConnectNode(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:t.addr},information:this.information,balance:this.availableBalance},component:Ze}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(ae.UG),e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},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(a,i){1&a&&e.DNE(0,yh,60,26,"div",1),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,ee.q,R.VO,R.$2,V.wT,k.B4,k.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,A.Ld,ge.U,d.QX,d.vh,d.lG]})}}return n})();const Fh=n=>({"mt-1":!0,"mt-2":n}),xh=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function vh(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Th(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function Sh(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function kh(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,Sh,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,xh,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function Rh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-node-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Eh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-channel-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Ih(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function Lh(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,Rh,2,1,"span",25)(6,Eh,2,1,"span",25)(7,Ih,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let et=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,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=b.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.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,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&t.payload.hasOwnProperty("node")||1===this.selectedFieldId&&t.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!t.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!t.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&"Lookup"===t.payload.action&&(this.errorMessage="",t.payload.status===l.wn.ERROR&&(this.errorMessage="object"==typeof t.payload.message?JSON.stringify(t.payload.message):t.payload.message),t.payload.status===l.wn.INITIATED&&(this.errorMessage=l.MZ.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,v.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(Q.En))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookups"]],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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.selectedFieldId,c)||(i.selectedFieldId=c),e.Njj(c)}),e.bIt("change",function(c){return e.eBV(o),e.Njj(i.onSelectChange(c))}),e.DNE(7,vh,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(c){return e.eBV(o),e.DH7(i.lookupKey,c)||(i.lookupKey=c),e.Njj(c)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,Th,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,kh,3,5,"div",15)(20,Lh,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,Fh,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,rh,bh],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})();var Ge=g(5084);function wh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function jh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function Gh(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",28),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Dh=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faMapSigns=b.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 u.B,new u.B,new u.B]}ngOnInit(){this.onEventsFetch();const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,v.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,v.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,v.kv)({payload:{forwarding_events:[]}})),this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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(c){return e.eBV(o),e.DH7(i.startDate,c)||(i.startDate=c),e.Njj(c)}),e.k0s(),e.nrm(16,"mat-datepicker-toggle",17)(17,"mat-datepicker",18,2),e.DNE(19,wh,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(c){return e.eBV(o),e.DH7(i.endDate,c)||(i.endDate=c),e.Njj(c)}),e.k0s(),e.nrm(25,"mat-datepicker-toggle",17)(26,"mat-datepicker",18,4),e.DNE(28,jh,2,0,"mat-error",19),e.k0s()(),e.j41(29,"div",21)(30,"button",22),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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,Gh,2,3,"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&a){const o=e.sdS(15),r=e.sdS(18),c=e.sdS(24),F=e.sdS(27),C=e.sdS(38);e.R7$(2),e.Y8G("icon",i.faMapSigns),e.R7$(12),e.Y8G("matDatepicker",r)("max",i.today),e.R50("ngModel",i.startDate),e.R7$(2),e.Y8G("for",r),e.R7$(),e.Y8G("startAt",i.startDate),e.R7$(2),e.Y8G("ngIf",o.errors),e.R7$(4),e.Y8G("matDatepicker",F)("min",i.startDate)("max",i.today),e.R50("ngModel",i.endDate),e.R7$(2),e.Y8G("for",F),e.R7$(),e.Y8G("startAt",i.endDate),e.R7$(2),e.Y8G("ngIf",c.errors),e.R7$(7),e.Y8G("tabPanel",C),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.RN,T.m2,Ge.Vh,Ge.bZ,Ge.bU,$.fg,f.rl,f.nJ,f.TL,f.yw,P.Bu,P.hQ,P.Ql,We.z,te.V,x.n3,x.Wk]})}}return n})();const Nh=()=>["all"],Ph=()=>["no_event"],be=n=>({width:n}),$h=n=>({"display-none":n});function Ah(n,s){if(1&n&&(e.j41(0,"div",6),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function Mh(n,s){if(1&n&&(e.j41(0,"mat-option",14),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Bh(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Mh,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(6),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Nh).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function Oh(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Vh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Timestamp"),e.k0s())}function Yh(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.timestamp,"dd/MMM/y HH:mm"))}}function Xh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Alias"),e.k0s())}function Uh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_in)}}function Hh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Channel"),e.k0s())}function qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_in)}}function zh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Alias"),e.k0s())}function Jh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_out)}}function Wh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Channel"),e.k0s())}function Qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_out)}}function Zh(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Inbound Amount (Sats)"),e.k0s())}function Kh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_in))}}function e_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Outbound Amount (Sats)"),e.k0s())}function t_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_out))}}function n_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Fee (mSats)"),e.k0s())}function i_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_msat))}}function a_(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function s_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onForwardingEventClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function o_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No forwarding history available."),e.k0s())}function l_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting forwarding history..."),e.k0s())}function r_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function c_(n,s){if(1&n&&(e.j41(0,"td",50),e.DNE(1,o_,2,0,"p",51)(2,l_,2,0,"p",51)(3,r_,2,1,"p",51),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function p_(n,s){if(1&n&&e.nrm(0,"tr",52),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,$h,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function m_(n,s){1&n&&e.nrm(0,"tr",53)}function u_(n,s){1&n&&e.nrm(0,"tr",54)}function d_(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,Oh,1,0,"mat-progress-bar",16),e.j41(2,"table",17,0),e.qex(4,18),e.DNE(5,Vh,2,0,"th",19)(6,Yh,3,4,"td",20),e.bVm(),e.qex(7,21),e.DNE(8,Xh,2,0,"th",19)(9,Uh,4,4,"td",20),e.bVm(),e.qex(10,22),e.DNE(11,Hh,2,0,"th",19)(12,qh,4,4,"td",20),e.bVm(),e.qex(13,23),e.DNE(14,zh,2,0,"th",19)(15,Jh,4,4,"td",20),e.bVm(),e.qex(16,24),e.DNE(17,Wh,2,0,"th",19)(18,Qh,4,4,"td",20),e.bVm(),e.qex(19,25),e.DNE(20,Zh,2,0,"th",26)(21,Kh,4,3,"td",20),e.bVm(),e.qex(22,27),e.DNE(23,e_,2,0,"th",26)(24,t_,4,3,"td",20),e.bVm(),e.qex(25,28),e.DNE(26,n_,2,0,"th",26)(27,i_,4,3,"td",20),e.bVm(),e.qex(28,29),e.DNE(29,a_,6,0,"th",30)(30,s_,3,0,"td",31),e.bVm(),e.qex(31,32),e.DNE(32,c_,4,3,"td",33),e.bVm(),e.DNE(33,p_,1,3,"tr",34)(34,m_,1,0,"tr",35)(35,u_,1,0,"tr",36),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(7,Ph)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function h_(n,s){if(1&n&&e.nrm(0,"mat-paginator",55),2&n){const t=e.XpG();e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let tt=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new p.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:l.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,t.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),t.selFilter&&!t.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=t.forwardingHistory.forwarding_events||[],this.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}onForwardingEventClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:t.timestamp,title:"Timestamp",width:25,type:l.UN.DATE_TIME},{key:"amt_in",value:t.amt_in,title:"Inbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"amt_out",value:t.amt_out,title:"Outbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:25,type:l.UN.NUMBER}],[{key:"alias_in",value:t.alias_in,title:"Inbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_in",value:t.chan_id_in,title:"Inbound Channel ID",width:25,type:l.UN.STRING},{key:"alias_out",value:t.alias_out,title:"Outbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_out",value:t.chan_id_out,title:"Outbound Channel ID",width:25,type:l.UN.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.timestamp?this.datePipe.transform(new Date(1e3*t.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"timestamp":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new p.I6(t?[...t]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-forwarding-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,Ah,2,1,"div",2)(2,Bh,13,4,"div",3)(3,d_,36,8,"div",4)(4,h_,1,3,"mat-paginator",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,A.ZF,A.Ld,d.QX,d.vh]})}}return n})();const __=["tableIn"],f_=["tableOut"],g_=["paginatorIn"],C_=["paginatorOut"],y_=(n,s)=>({"mt-2":n,"mt-1":s}),b_=()=>["no_incoming_event"],F_=n=>({"mt-2":n}),x_=()=>["no_outgoing_event"],Fe=n=>({width:n}),nt=n=>({"display-none":n});function v_(n,s){if(1&n&&(e.j41(0,"div",7),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function T_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function S_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function k_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function R_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function E_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function I_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function L_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function w_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function j_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function G_(n,s){1&n&&(e.j41(0,"th",41)(1,"div",42),e.EFF(2,"Actions"),e.k0s()())}function D_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",43)(1,"button",44),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onRoutingPeerClick(o,i,"in"))}),e.EFF(2,"View Info"),e.k0s()()}}function N_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No incoming routing peer available."),e.k0s())}function P_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting incoming routing peers..."),e.k0s())}function $_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function A_(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,N_,2,0,"p",46)(2,P_,2,0,"p",46)(3,$_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function M_(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function B_(n,s){1&n&&e.nrm(0,"tr",48)}function O_(n,s){1&n&&e.nrm(0,"tr",49)}function V_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function Y_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function X_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function U_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function H_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function q_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function z_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function J_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function W_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function Q_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No outgoing routing peer available."),e.k0s())}function Z_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting outgoing routing peers..."),e.k0s())}function K_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function e0(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,Q_,2,0,"p",46)(2,Z_,2,0,"p",46)(3,K_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function t0(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function n0(n,s){1&n&&e.nrm(0,"tr",48)}function i0(n,s){1&n&&e.nrm(0,"tr",49)}function a0(n,s){if(1&n&&(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,T_,1,0,"mat-progress-bar",14),e.j41(8,"table",15,0),e.qex(10,16),e.DNE(11,S_,2,0,"th",17)(12,k_,4,4,"td",18),e.bVm(),e.qex(13,19),e.DNE(14,R_,2,0,"th",17)(15,E_,4,4,"td",18),e.bVm(),e.qex(16,20),e.DNE(17,I_,2,0,"th",21)(18,L_,4,3,"td",18),e.bVm(),e.qex(19,22),e.DNE(20,w_,2,0,"th",21)(21,j_,4,3,"td",18),e.bVm(),e.qex(22,23),e.DNE(23,G_,3,0,"th",24)(24,D_,3,0,"td",25),e.bVm(),e.qex(25,26),e.DNE(26,A_,4,3,"td",27),e.bVm(),e.DNE(27,M_,1,3,"tr",28)(28,B_,1,0,"tr",29)(29,O_,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,V_,1,0,"mat-progress-bar",14),e.j41(39,"table",32,2),e.qex(41,16),e.DNE(42,Y_,2,0,"th",17)(43,X_,4,4,"td",18),e.bVm(),e.qex(44,19),e.DNE(45,U_,2,0,"th",17)(46,H_,4,4,"td",18),e.bVm(),e.qex(47,20),e.DNE(48,q_,2,0,"th",21)(49,z_,4,3,"td",18),e.bVm(),e.qex(50,22),e.DNE(51,J_,2,0,"th",21)(52,W_,4,3,"td",18),e.bVm(),e.qex(53,33),e.DNE(54,e0,4,3,"td",27),e.bVm(),e.DNE(55,t0,1,3,"tr",28)(56,n0,1,0,"tr",29)(57,i0,1,0,"tr",30),e.k0s()(),e.nrm(58,"mat-paginator",31,3),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngClass",e.l_i(18,y_,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersIncoming),e.R7$(19),e.Y8G("matFooterRowDef",e.lJ4(21,b_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),e.R7$(3),e.Y8G("ngClass",e.eq3(22,F_,t.screenSize!==t.screenSizeEnum.LG)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersOutgoing),e.R7$(16),e.Y8G("matFooterRowDef",e.lJ4(24,x_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let s0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"total_amount",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new p.I6([]),this.routingPeersOutgoing=new p.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.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(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(t,a,i){let o=" Routing Information";o="in"===i?"Incoming"+o:"Outgoing"+o,this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:o,message:[[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:l.UN.STRING}],[{key:"events",value:t.events,title:"Events",width:50,type:l.UN.NUMBER},{key:"total_amount",value:t.total_amount,title:"Total Amount (Sats)",width:50,type:l.UN.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterByIn?JSON.stringify(t).toLowerCase():"string"==typeof t[this.selFilterByIn]?t[this.selFilterByIn].toLowerCase():"boolean"==typeof t[this.selFilterByIn]?t[this.selFilterByIn]?"yes":"no":t[this.selFilterByIn].toString(),i.includes(a)},this.routingPeersOutgoing.filterPredicate=(t,a)=>{let i="";switch(this.selFilterByOut){case"all":i=JSON.stringify(t).toLowerCase();break;case"total_amount":case"total_fee":i=(+(t[this.selFilterByOut]||0)/1e3).toString()||"";break;default:i="string"==typeof t[this.selFilterByOut]?t[this.selFilterByOut].toLowerCase():"boolean"==typeof t[this.selFilterByOut]?t[this.selFilterByOut]?"yes":"no":t[this.selFilterByOut].toString()}return i.includes(a)}}loadRoutingPeersTable(t){if(t.length>0){const a=this.groupRoutingPeers(t);this.routingPeersIncoming=new p.I6(a[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new p.I6(a[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),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(t){const a=[],i=[];return t.forEach(o=>{const r=a.find(F=>F.chan_id===o.chan_id_in),c=i.find(F=>F.chan_id===o.chan_id_out);r?(r.events++,r.total_amount=+r.total_amount+ +(o.amt_in||0)):a.push({chan_id:o.chan_id_in,alias:o.alias_in,events:1,total_amount:+(o.amt_in||0)}),c?(c.events++,c.total_amount=+c.total_amount+ +(o.amt_out||0)):i.push({chan_id:o.chan_id_out,alias:o.alias_out,events:1,total_amount:+(o.amt_out||0)})}),[this.commonService.sortDescByKey(a,"total_amount"),this.commonService.sortDescByKey(i,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(__,5,k.B4),e.GBs(f_,5,k.B4),e.GBs(g_,5),e.GBs(C_,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sortIn=o.first),e.mGM(o=e.lsd())&&(i.sortOut=o.first),e.mGM(o=e.lsd())&&(i.paginatorIn=o.first),e.mGM(o=e.lsd())&&(i.paginatorOut=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,v_,2,1,"div",5)(2,a0,60,25,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,B.HM,k.B4,k.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,A.Ld,d.QX]})}}return n})();function o0(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",8),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let l0=(()=>{class n{constructor(t){this.router=t,this.faChartBar=b.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-reports"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(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,o0,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),e.k0s()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faChartBar),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}}return n})();var it=g(6064),at=g(4655);const r0=n=>({"error-border":n});function c0(n,s){1&n&&e.nrm(0,"mat-progress-bar",17)}function p0(n,s){if(1&n&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.events.total_fee_msat),e.R7$(),e.Lme("",e.i5U(2,3,t.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.bMT(3,6,(null==t.events||null==t.events.forwarding_events?null:t.events.forwarding_events.length)||0)," Events")}}function m0(n,s){1&n&&(e.j41(0,"div",19),e.EFF(1,"No routing report for the selected period"),e.k0s())}function u0(n,s){if(1&n&&(e.j41(0,"div",20),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(2,r0,"Getting Forwarding History..."!==t.errorMessage&&""!==t.errorMessage)),e.R7$(),e.JRh(t.errorMessage)}}function d0(n,s){if(1&n&&(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&n){const t=s.model,a=e.XpG(2);e.R7$(2),e.SpI("Events: ",e.bMT(3,2,(a.selReportBy===a.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),e.R7$(3),e.SpI("Fee: ",e.i5U(6,4,(a.selReportBy===a.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function h0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical",21),e.bIt("select",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,d0,7,7,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function _0(n,s){if(1&n&&e.nrm(0,"rtl-forwarding-history",23),2&n){const t=e.XpG();e.Y8G("pageId","reports")("tableId","routing")("eventsData",null==t.events?null:t.events.forwarding_events)("selFilter",t.eventFilterValue)}}let f0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.dataService=a,this.commonService=i,this.store=o,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.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=l.f7,this.errorMessage="",this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(t,a){this.errorMessage=l.MZ.GET_FORWARDING_HISTORY;const i=Math.round(t.getTime()/1e3).toString(),o=Math.round(a.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",i,o).pipe((0,_.Q)(this.unSubs[2])).subscribe({next:r=>{this.errorMessage="",r.forwarding_events&&r.forwarding_events.length?(r.forwarding_events=r.forwarding_events.reverse(),this.events=r,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(t):this.prepareFeeReport(t)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:r=>{this.errorMessage=r}})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===l.rs[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}prepareEventsReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.KR[t].days+1:l.KR[t].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(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(W.u),e.rXU(N.h),e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},decls:20,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"],["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"],[3,"pageId","tableId","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"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.j41(2,"div",3)(3,"mat-radio-group",4),e.mxI("ngModelChange",function(r){return e.DH7(i.selReportBy,r)||(i.selReportBy=r),r}),e.bIt("change",function(){return i.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,c0,1,0,"mat-progress-bar",8),e.j41(11,"div",9),e.DNE(12,p0,4,8,"div",10)(13,m0,2,0,"div",11)(14,u0,2,4,"div",12),e.j41(15,"div",13),e.DNE(16,h0,3,11,"ngx-charts-bar-vertical",14),e.k0s()(),e.j41(17,"div",15)(18,"div",13),e.DNE(19,_0,1,4,"rtl-forwarding-history",16),e.k0s()()()),2&a&&(e.R7$(3),e.R50("ngModel",i.selReportBy),e.R7$(3),e.FS9("value",i.reportBy.FEES),e.R7$(2),e.FS9("value",i.reportBy.EVENTS),e.R7$(2),e.Y8G("ngIf","Getting Forwarding History..."===i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(),e.Y8G("ngIf",(i.routingReportData.length<=0||i.events.forwarding_events.length<=0)&&""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(3),e.Y8G("ngIf",i.events&&(null==i.events?null:i.events.forwarding_events)&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0))},dependencies:[d.YU,d.bT,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,B.HM,pe.VT,pe._g,it.L8,at.m,tt,d.QX],data:{animation:[Le.q]}})}}return n})();var g0=g(9584),C0=g(5085);function y0(n,s){1&n&&(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 b0(n,s){if(1&n&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function F0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Paid ",e.i5U(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function x0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Received ",e.i5U(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function v0(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,F0,4,7,"div",16)(2,x0,4,7,"div",16),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.transactionsReportSummary),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod>0),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function T0(n,s){1&n&&(e.j41(0,"div",18),e.EFF(1,"No transactions report for the selected period"),e.k0s())}function S0(n,s){if(1&n&&(e.j41(0,"span",21),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=s.model;e.R7$(),e.LHq("",t.name,": ",e.i5U(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",e.bMT(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function k0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical-2d",20),e.bIt("select",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,S0,4,9,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG(2);e.Y8G("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:8)}}function R0(n,s){if(1&n&&(e.j41(0,"div",10),e.DNE(1,k0,3,13,"ngx-charts-bar-vertical-2d",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.transactionsReportData.length>0&&t.transactionsNonZeroReportData.length>0)}}function E0(n,s){if(1&n&&e.nrm(0,"rtl-transactions-report-table",22),2&n){const t=e.XpG();e.Y8G("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let I0=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.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=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(g0.av).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(y.n_).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{t.apiCallStatus.status===l.wn.UN_INITIATED&&this.store.dispatch((0,v.tG)()),this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=t.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=t.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(t)}),this.commonService.containerSizeUpdated.pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===l.rs[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,a){const i=Math.round(t.getTime()/1e3),o=Math.round(a.getTime()/1e3),r=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const c=this.payments?.filter(C=>"SUCCEEDED"===C.status&&C.creation_date&&C.creation_date>=i&&C.creation_dateC.settled&&C.creation_date&&+C.creation_date>=i&&+C.creation_date{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let C=0;C{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((t,a)=>a.series[0].extra.total>0||a.series[1].extra.total>0?t.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}):t,[])}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.KR[t].days+1:l.KR[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},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(a,i){1&a&&(e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"rtl-horizontal-scroller",4),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.DNE(4,y0,4,0,"div",5)(5,b0,2,1,"div",6)(6,v0,3,3,"div",7)(7,T0,2,0,"div",8)(8,R0,2,1,"div",9),e.j41(9,"div",10),e.DNE(10,E0,1,5,"rtl-transactions-report-table",11),e.k0s()()()()),2&a&&(e.R7$(4),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.ERROR),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length<=0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(2),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,it.Dl,at.m,C0.T,d.QX],data:{animation:[Le.q]}})}}return n})();const L0=["form"];function w0(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle)}}function j0(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"UTXO Label is required."),e.k0s())}function G0(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.labelError)}}function D0(n,s){if(1&n&&(e.j41(0,"div",19),e.nrm(1,"fa-icon",18),e.DNE(2,G0,2,1,"span",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.labelError)}}let N0=(()=>{class n{constructor(t,a,i,o,r,c){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.snackBar=r,this.commonService=c,this.faExclamationTriangle=b.zpE,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.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,_.Q)(this.unSubs[0])).subscribe({next:t=>{this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:t=>{this.labelError=t}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(W.u),e.rXU(I.il),e.rXU(ae.UG),e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(a,i){if(1&a&&e.GBs(L0,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},decls:23,vars:5,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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.onLabelUTXO())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.DNE(11,w0,4,1,"div",9),e.j41(12,"mat-form-field",10)(13,"mat-label"),e.EFF(14,"UTXO Label"),e.k0s(),e.j41(15,"input",11),e.mxI("ngModelChange",function(c){return e.eBV(o),e.DH7(i.label,c)||(i.label=c),e.Njj(c)}),e.k0s(),e.DNE(16,j0,2,0,"mat-error",12),e.k0s(),e.DNE(17,D0,3,2,"div",13),e.j41(18,"div",14)(19,"button",15),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",16),e.EFF(22,"Label UTXO"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(5),e.Y8G("ngIf",i.label.toLowerCase().includes("sweep")&&"0"===i.utxo.confirmations),e.R7$(4),e.R50("ngModel",i.label),e.R7$(),e.Y8G("ngIf",!i.label),e.R7$(),e.Y8G("ngIf",""!==i.labelError))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,K.N]})}}return n})();const st=()=>["all"],P0=n=>({"error-border":n}),$0=()=>["no_utxo"],De=n=>({width:n}),A0=n=>({"display-none":n});function M0(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function B0(n,s){1&n&&e.nrm(0,"mat-progress-bar",35)}function O0(n,s){1&n&&e.nrm(0,"th",36)}function V0(n,s){1&n&&(e.j41(0,"span",39)(1,"mat-icon",40),e.EFF(2,"warning"),e.k0s()())}function Y0(n,s){if(1&n&&(e.j41(0,"td",37),e.DNE(1,V0,3,0,"span",38),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(),i=e.sdS(52);e.R7$(),e.Y8G("ngIf",t.amount_sat0))}}function df(n,s){1&n&&e.nrm(0,"tr",57)}function hf(n,s){1&n&&e.nrm(0,"tr",58)}function _f(n,s){1&n&&e.nrm(0,"mat-icon",40)}let ff=(()=>{class n{constructor(t,a,i,o,r,c,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=c,this.camelCaseWithReplace=F,this.snackBar=C,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=b.ymQ,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:l.md,sortBy:"tx_id",sortOrder:l.oi.DESCENDING},this.addressType=l.aG,this.displayedColumns=[],this.listUTXOs=new p.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.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(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=t.utxos?.filter(a=>+(a.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(t)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.label?t.label.toLowerCase():"")+(t.outpoint?.txid_str?t.outpoint.txid_str.toLowerCase():"")+(t.outpoint?.output_index?t.outpoint?.output_index:"")+(t.outpoint?.txid_bytes?t.outpoint?.txid_bytes.toLowerCase():"")+(t.address?t.address.toLowerCase():"")+(t.address_type?this.addressType[t.address_type].name.toLowerCase():"")+(t.amount_sat?t.amount_sat:"")+(t.confirmations?t.confirmations:"");break;case"is_dust":i=+(t?.amount_sat||0)"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}onUTXOClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:t.outpoint?.txid_str,title:"Transaction ID",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"output_index",value:t.outpoint?.output_index,title:"Output Index",width:34,type:l.UN.NUMBER},{key:"amount_sat",value:t.amount_sat,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"confirmations",value:t.confirmations,title:"Confirmations",width:33,type:l.UN.NUMBER}],[{key:"address_type",value:t.address_type?this.addressType[t.address_type].name:"",title:"Address Type",width:34},{key:"address",value:t.address,title:"Address",width:66}],[{key:"pk_script",value:t.pk_script,title:"PK Script",width:100,type:l.UN.STRING}]]}}}))}loadUTXOsTable(t){this.listUTXOs=new p.I6([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(a,i)=>{switch(i){case"is_dust":return+(a.amount_sat||0){i&&this.dataService.leaseUTXO(t.outpoint?.txid_bytes||"",t.outpoint?.output_index||0).pipe((0,_.Q)(this.unSubs[0])).subscribe({next:o=>{this.snackBar.open("The UTXO has been leased till "+new Date(o).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:o=>{this.snackBar.open(o+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{selUTXO:t,component:Ke}}}))}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(W.u),e.rXU(I.il),e.rXU(ue.H),e.rXU(d.QX),e.rXU(q.VD),e.rXU(ae.UG))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.selFilterBy,c)||(i.selFilterBy=c),e.Njj(c)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,M0,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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",9)(14,"div",10),e.DNE(15,B0,1,0,"mat-progress-bar",11),e.j41(16,"table",12,0),e.qex(18,13),e.DNE(19,O0,1,0,"th",14)(20,Y0,2,2,"td",15),e.bVm(),e.qex(21,16),e.DNE(22,X0,2,0,"th",17)(23,U0,4,4,"td",15),e.bVm(),e.qex(24,18),e.DNE(25,H0,2,0,"th",19)(26,q0,3,1,"td",15),e.bVm(),e.qex(27,20),e.DNE(28,z0,2,0,"th",17)(29,J0,4,4,"td",15),e.bVm(),e.qex(30,21),e.DNE(31,W0,2,0,"th",17)(32,Q0,3,1,"td",15),e.bVm(),e.qex(33,22),e.DNE(34,Z0,2,0,"th",17)(35,K0,4,4,"td",15),e.bVm(),e.qex(36,23),e.DNE(37,ef,2,0,"th",19)(38,tf,4,3,"td",15),e.bVm(),e.qex(39,24),e.DNE(40,nf,2,0,"th",19)(41,af,4,3,"td",15),e.bVm(),e.qex(42,25),e.DNE(43,sf,6,0,"th",26)(44,lf,11,1,"td",27),e.bVm(),e.qex(45,28),e.DNE(46,mf,4,3,"td",29),e.bVm(),e.DNE(47,uf,1,3,"tr",30)(48,df,1,0,"tr",31)(49,hf,1,0,"tr",32),e.k0s(),e.nrm(50,"mat-paginator",33),e.k0s()()(),e.DNE(51,_f,1,0,"ng-template",null,1,e.C5r)}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",i.utxos&&i.utxos.length>0&&i.dustUtxos&&i.dustUtxos.length>0&&!i.isDustUTXO?e.lJ4(14,st).concat(i.displayedColumns.slice(0,-1)):e.lJ4(15,st).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listUTXOs)("ngClass",e.eq3(16,P0,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(18,$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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,Z.oV,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return n})();const gf=()=>["all"],Cf=n=>({"error-border":n}),yf=()=>["no_transaction"],Ne=n=>({width:n}),bf=n=>({"display-none":n});function Ff(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function xf(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function vf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Date/Time"),e.k0s())}function Tf(n,s){if(1&n&&(e.j41(0,"td",35),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.time_stamp,"dd/MMM/y HH:mm"))}}function Sf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Label"),e.k0s())}function kf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.label)}}function Rf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Block Hash"),e.k0s())}function Ef(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.block_hash)}}function If(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Transaction Hash"),e.k0s())}function Lf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.tx_hash)}}function wf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Amount (Sats)"),e.k0s())}function jf(n,s){if(1&n&&(e.j41(0,"span",41),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.JRh(e.bMT(2,1,t.amount))}}function Gf(n,s){if(1&n&&(e.j41(0,"span",42),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.SpI("(",e.bMT(2,1,-1*t.amount),")")}}function Df(n,s){if(1&n&&(e.j41(0,"td",35),e.DNE(1,jf,3,3,"span",39)(2,Gf,3,3,"span",40),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.amount>0||0===t.amount),e.R7$(),e.Y8G("ngIf",t.amount<0)}}function Nf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Fees (Sats)"),e.k0s())}function Pf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_fees))}}function $f(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Block Height"),e.k0s())}function Af(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.block_height))}}function Mf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Confirmations"),e.k0s())}function Bf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==t?null:t.num_confirmations)," ")}}function Of(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Vf(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",47)(1,"button",48),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onTransactionClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Yf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No transaction available."),e.k0s())}function Xf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting transactions..."),e.k0s())}function Uf(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Hf(n,s){if(1&n&&(e.j41(0,"td",49),e.DNE(1,Yf,2,0,"p",50)(2,Xf,2,0,"p",50)(3,Uf,2,1,"p",50),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function qf(n,s){if(1&n&&e.nrm(0,"tr",51),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,bf,(null==t.listTransactions?null:t.listTransactions.data)&&(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)>0))}}function zf(n,s){1&n&&e.nrm(0,"tr",52)}function Jf(n,s){1&n&&e.nrm(0,"tr",53)}let Wf=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"time_stamp",sortOrder:l.oi.DESCENDING},this.faHistory=b.Int,this.displayedColumns=[],this.listTransactions=new p.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.gN).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.transactions&&t.transactions.length>0&&(this.transactions=t.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(t)})}onTransactionClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:t.block_hash,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"tx_hash",value:t.tx_hash,title:"Transaction Hash",width:100,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"time_stamp",value:t.time_stamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"block_height",value:t.block_height,title:"Block Height",width:50,type:l.UN.NUMBER}],[{key:"num_confirmations",value:t.num_confirmations,title:"Number of Confirmations",width:34,type:l.UN.NUMBER},{key:"total_fees",value:t.total_fees,title:"Total Fees (Sats)",width:33,type:l.UN.NUMBER},{key:"amount",value:t.amount,title:"Amount (Sats)",width:33,type:l.UN.NUMBER}],[{key:"dest_addresses",value:t.dest_addresses,title:"Destination Addresses",width:100,type:l.UN.ARRAY}]],scrollable:t.dest_addresses&&t.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.listTransactions.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.time_stamp?this.datePipe.transform(new Date(1e3*t.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"time_stamp":i=this.datePipe.transform(new Date(1e3*(t?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadTransactionsTable(t){this.listTransactions=new p.I6([...t]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.selFilterBy,c)||(i.selFilterBy=c),e.Njj(c)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Ff,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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",8)(14,"div",9),e.DNE(15,xf,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,vf,2,0,"th",13)(20,Tf,3,4,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Sf,2,0,"th",13)(23,kf,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Rf,2,0,"th",13)(26,Ef,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,If,2,0,"th",13)(29,Lf,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,wf,2,0,"th",19)(32,Df,3,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nf,2,0,"th",19)(35,Pf,4,3,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,$f,2,0,"th",19)(38,Af,4,3,"td",14),e.bVm(),e.qex(39,22),e.DNE(40,Mf,2,0,"th",19)(41,Bf,4,3,"td",14),e.bVm(),e.qex(42,23),e.DNE(43,Of,6,0,"th",24)(44,Vf,3,0,"td",25),e.bVm(),e.qex(45,26),e.DNE(46,Hf,4,3,"td",27),e.bVm(),e.DNE(47,qf,1,3,"tr",28)(48,zf,1,0,"tr",29)(49,Jf,1,0,"tr",30),e.k0s(),e.nrm(50,"mat-paginator",31),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,gf).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listTransactions)("ngClass",e.eq3(15,Cf,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(17,yf)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,A.ZF,A.Ld,d.QX,d.vh]})}}return n})();function Qf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numUtxos)}}function Zf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Transactions"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numTransactions)}}function Kf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Dust UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numDustUtxos)}}let e2=(()=>{class n{constructor(t,a){this.logger=t,this.store=a,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.bkB,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length,this.numDustUtxos=t.utxos?.filter(a=>a.amount_sat&&+a.amount_sat{t.transactions&&t.transactions.length>0&&(this.numTransactions=t.transactions.length),this.logger.info(t)})}onSelectedIndexChanged(t){this.selectedTableIndexChange.emit(t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},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(a,i){1&a&&(e.j41(0,"div",0)(1,"mat-tab-group",1),e.bIt("selectedIndexChange",function(r){return i.onSelectedIndexChanged(r)}),e.j41(2,"mat-tab"),e.DNE(3,Qf,2,1,"ng-template",2),e.nrm(4,"rtl-on-chain-utxos",3),e.k0s(),e.j41(5,"mat-tab"),e.DNE(6,Zf,2,1,"ng-template",2),e.nrm(7,"rtl-on-chain-transaction-history",4),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,Kf,2,1,"ng-template",2),e.nrm(10,"rtl-on-chain-utxos",3),e.k0s()()()),2&a&&(e.R7$(),e.Y8G("selectedIndex",i.selectedTableIndex),e.R7$(3),e.Y8G("isDustUTXO",!1)("dustAmount",i.DUST_AMOUNT),e.R7$(6),e.Y8G("isDustUTXO",!0)("dustAmount",i.DUST_AMOUNT))},dependencies:[h.DJ,h.sA,h.UI,Te.k,P.ES,P.mq,P.T8,ff,Wf]})}}return n})();const t2=(n,s)=>[n,s];function n2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=null==i?null:i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.Y8G("active",a.activeLink===(null==t?null:t.link))("routerLink",e.l_i(3,t2,null==t?null:t.link,null==a.selectedTable?null:a.selectedTable.name)),e.R7$(),e.JRh(null==t?null:t.name)}}let i2=(()=>{class n{constructor(t,a,i){this.store=t,this.router=a,this.activatedRoute=i,this.faExchangeAlt=b._qq,this.faChartPie=b.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(a=>a.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===a.urlAfterRedirects.substring(a.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:a.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:a.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(a=>a.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain"]],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(a,i){if(1&a){const o=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,n2,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(c){return e.eBV(o),e.Njj(i.onSelectedTableIndexChanged(c))}),e.k0s()()()()()}if(2&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links),e.R7$(6),e.Y8G("selectedTableIndex",null==i.selectedTable?null:i.selectedTable.id)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk,e2]})}}return n})();var a2=g(396);function s2(n,s){if(1&n&&(e.j41(0,"mat-option",6),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.addressTp," ")}}let o2=(()=>{class n{constructor(t,a,i){this.store=t,this.lndEffects=a,this.commonService=i,this.addressTypes=[],this.selectedAddressType=l.Ld[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(t.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?l.Ld:l.Ld.filter(a=>"4"!==a.addressId)})}onGenerateAddress(){this.store.dispatch((0,v.XT)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,J.s)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,E.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:a2.f}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-receive"]],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(a,i){1&a&&(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(r){return e.DH7(i.selectedAddressType,r)||(i.selectedAddressType=r),r}),e.DNE(6,s2,2,2,"mat-option",4),e.k0s()(),e.j41(7,"div")(8,"button",5),e.bIt("click",function(){return i.onGenerateAddress()}),e.EFF(9,"Generate Address"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.selectedAddressType),e.R7$(),e.Y8G("ngForOf",i.addressTypes))},dependencies:[d.Sq,m.BC,m.vS,h.DJ,h.sA,h.UI,G.$z,f.rl,f.nJ,R.VO,V.wT]})}}return n})();var l2=g(2852);const r2=["form"],c2=["formSweepAll"],p2=["stepper"];function m2(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function u2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function d2(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.amountError)}}function h2(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t)}}function _2(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function f2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function g2(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionBlocks,i)||(o.transactionBlocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,f2,2,0,"mat-error",23),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionBlocks),e.R7$(2),e.Y8G("ngIf",!t.transactionBlocks)}}function C2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function y2(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionFees,i)||(o.transactionFees=i),e.Njj(i)}),e.k0s(),e.DNE(5,C2,2,0,"mat-error",23),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionFees),e.R7$(2),e.Y8G("ngIf",!t.transactionFees)}}function b2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function F2(n,s){if(1&n&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,b2,2,1,"span",23),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function x2(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",20,1),e.bIt("submit",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())})("reset",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAddress,i)||(o.transactionAddress=i),e.Njj(i)}),e.k0s(),e.DNE(7,u2,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAmount,i)||(o.transactionAmount=i),e.Njj(i)}),e.k0s(),e.j41(13,"span",26),e.EFF(14),e.k0s(),e.DNE(15,d2,2,1,"mat-error",23),e.k0s(),e.j41(16,"mat-form-field",27)(17,"mat-select",28),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountUnitChange(i))}),e.DNE(18,h2,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.DNE(22,_2,2,2,"mat-option",29),e.k0s()(),e.DNE(23,g2,6,4,"mat-form-field",33)(24,y2,6,4,"mat-form-field",33),e.k0s(),e.nrm(25,"div",34),e.DNE(26,F2,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&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.transactionAddress),e.R7$(2),e.Y8G("ngIf",!t.transactionAddress),e.R7$(4),e.Y8G("step",100)("min",0),e.R50("ngModel",t.transactionAmount),e.R7$(3),e.SpI("",t.selAmountUnit," "),e.R7$(),e.Y8G("ngIf",!t.transactionAmount),e.R7$(2),e.Y8G("value",t.selAmountUnit),e.R7$(),e.Y8G("ngForOf",t.amountUnits),e.R7$(3),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType),e.R7$(2),e.Y8G("ngIf",""!==t.sendFundError)}}function v2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(3);e.JRh(t.passwordFormLabel)}}function T2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function S2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-step",47)(1,"form",66),e.DNE(2,v2,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,T2,2,0,"mat-error",23),e.k0s()(),e.j41(9,"div",68)(10,"button",69),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onAuthenticate())}),e.EFF(11,"Confirm"),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.Y8G("stepControl",t.passwordFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function k2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.sendFundFormLabel)}}function R2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function E2(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function I2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function L2(n,s){if(1&n&&(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,I2,2,0,"mat-error",23),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionBlocks.errors?null:t.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function w2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function j2(n,s){if(1&n&&(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,w2,2,0,"mat-error",23),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionFees.errors?null:t.sendFundFormGroup.controls.transactionFees.errors.required)}}function G2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.confirmFormLabel)}}function D2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function N2(n,s){if(1&n&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,D2,2,1,"span",23),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function P2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",44)(1,"mat-vertical-stepper",45,6),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.DNE(3,S2,12,4,"mat-step",46),e.j41(4,"mat-step",47)(5,"form",48),e.DNE(6,k2,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,R2,2,0,"mat-error",23),e.k0s(),e.j41(13,"mat-form-field",53)(14,"mat-select",54),e.DNE(15,E2,2,2,"mat-option",29),e.k0s()(),e.DNE(16,L2,5,3,"mat-form-field",55)(17,j2,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,G2,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,N2,3,2,"div",35),e.j41(30,"div",56)(31,"button",63),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())}),e.EFF(32,"Sweep All Funds"),e.k0s()()()()()(),e.j41(33,"div",64)(34,"button",65),e.EFF(35),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("ngIf",!t.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.sendFundFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),e.R7$(3),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(4),e.Y8G("stepControl",t.confirmFormGroup),e.R7$(),e.Y8G("formGroup",t.confirmFormGroup),e.R7$(4),e.Y8G("icon",t.faExclamationTriangle),e.R7$(3),e.Y8G("ngIf",""!==t.sendFundError),e.R7$(5),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(t.flgValidated?"Close":"Cancel")}}let $2=(()=>{class n{constructor(t,a,i,o,r,c,F,C,S,wC,jC){this.dialogRef=t,this.data=a,this.logger=i,this.dataService=o,this.store=r,this.rtlEffects=c,this.commonService=F,this.decimalPipe=C,this.snackBar=S,this.actions=wC,this.formBuilder=jC,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.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=l.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[0])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[m.k0.required]],password:["",[m.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",m.k0.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",m.k0.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{"1"===t?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([m.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([m.k0.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(X.qv).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.appConfig=t}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[4]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(t=>{t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,E.UI)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,E.oz)({payload:l2(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,J.s)(1)).subscribe(t=>{"ERROR"!==t?(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 t={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(t.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(t.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(t.fees=this.sendFundFormGroup.controls.transactionFees.value)):(t.address=this.transactionAddress,"1"===this.selTransType&&(t.blocks=this.transactionBlocks),"2"===this.selTransType&&(t.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==l.BQ.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,_.Q)(this.unSubs[5])).subscribe({next:a=>{this.selAmountUnit=l.BQ.SATS,t.amount=+(this.decimalPipe.transform(a[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,v.aB)({payload:t}))},error:a=>{this.transactionAmount=null,this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+a}}):this.store.dispatch((0,v.aB)({payload:t}))}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(t){switch(this.sendFundError="",t.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)}t.selectedIndex{this.selAmountUnit=t.value,a.transactionAmount=+(a.decimalPipe.transform(c[o],a.currencyUnitFormats[o])?.replace(/,/g,"")||0)},error:c=>{a.transactionAmount=null,this.amountError="Conversion Error: "+c,this.selAmountUnit=i,o=i}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(W.u),e.rXU(I.il),e.rXU(ue.H),e.rXU(N.h),e.rXU(d.QX),e.rXU(ae.UG),e.rXU(Q.En),e.rXU(m.ze))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(a,i){if(1&a&&(e.GBs(r2,7),e.GBs(c2,5),e.GBs(p2,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.formSweepAll=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},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(a,i){if(1&a&&(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,m2,16,6,"div",14)(10,x2,32,14,"form",15),e.k0s()()(),e.DNE(11,P2,36,15,"ng-template",null,0,e.C5r)),2&a){const o=e.sdS(12);e.R7$(5),e.JRh(i.sweepAll?"Sweep All Funds":"Send Funds"),e.R7$(),e.Y8G("mat-dialog-close",!1),e.R7$(3),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(),e.Y8G("ngIf",!i.sweepAll)("ngIfElse",o)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,f.yw,R.VO,V.wT,H.V5,H.Ti,H.M6,H.F7,K.N,te.V]})}}return n})(),ot=(()=>{class n{constructor(t,a){this.store=t,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,E.xO)({payload:{data:{sweepAll:this.sweepAll,component:$2}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.nX))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-send"]],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,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.openSendFundsModal()}),e.EFF(3),e.k0s()()()),2&a&&(e.R7$(3),e.JRh(i.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,G.$z]})}}return n})();const A2=n=>({"mt-1":n}),lt=n=>({"dashboard-card-content":!0,"error-border":n});function M2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function B2(n,s){if(1&n&&e.nrm(0,"rtl-node-info",27),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!0)}}function O2(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",28),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function V2(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",29),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[2])}}function Y2(n,s){if(1&n&&(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,M2,1,0,"mat-progress-bar",21),e.j41(11,"div",22),e.DNE(12,B2,1,2,"rtl-node-info",23)(13,O2,1,2,"rtl-channel-status-info",24)(14,V2,1,2,"rtl-fee-info",25),e.k0s()()()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(4),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(3),e.Y8G("ngClass",e.eq3(10,lt,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","status"),e.R7$(),e.Y8G("ngSwitchCase","fee")}}function X2(n,s){if(1&n&&(e.j41(0,"mat-grid-list",11),e.DNE(1,Y2,15,12,"mat-grid-tile",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngForOf",t.nodeCards)}}function U2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function H2(n,s){1&n&&e.eu8(0)}function q2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,H2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function z2(n,s){1&n&&e.eu8(0)}function J2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,z2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(13);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function W2(n,s){1&n&&e.eu8(0)}function Q2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,W2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(15);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function Z2(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.DNE(3,U2,1,0,"mat-progress-bar",21),e.j41(4,"div",22),e.DNE(5,q2,2,1,"div",33)(6,J2,2,1,"div",33)(7,Q2,2,1,"div",33),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(2),e.Y8G("ngClass",e.eq3(8,lt,a.apiCallStatusNetwork.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf",a.apiCallStatusNetwork.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","general"),e.R7$(),e.Y8G("ngSwitchCase","channels"),e.R7$(),e.Y8G("ngSwitchCase","degrees")}}function K2(n,s){if(1&n&&(e.j41(0,"div",36)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessages[1])}}function eg(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,3,t.networkInfo.total_network_capacity)," Sats"),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.num_nodes)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.num_channels))}}function tg(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,3,t.networkInfo.max_channel_size)),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.avg_channel_size)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.min_channel_size))}}function ng(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,2,t.networkInfo.max_out_degree)),e.R7$(6),e.JRh(e.i5U(12,4,t.networkInfo.avg_out_degree,"1.0-2"))}}let ig=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.faProjectDiagram=b.qFF,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=l.f7,this.userPersonaEnum=l.HW,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.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(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,he.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.tA).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusNetwork=t.apiCallStatus,this.apiCallStatusNetwork.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=t.networkInfo}),this.store.select(y.oR).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.logger.info(t)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-network-info"]],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(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,X2,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,Z2,8,10,"mat-grid-tile",10),e.k0s()(),e.DNE(8,K2,3,1,"ng-template",null,0,e.C5r)(10,eg,19,9,"ng-template",null,1,e.C5r)(12,tg,19,9,"ng-template",null,2,e.C5r)(14,ng,16,7,"ng-template",null,3,e.C5r)),2&a&&(e.R7$(),e.Y8G("ngIf",i.selNode.settings.userPersona!==i.userPersonaEnum.OPERATOR),e.R7$(),e.Y8G("ngClass",e.eq3(4,A2,i.screenSize!==i.screenSizeEnum.XS)),e.R7$(),e.Y8G("icon",i.faProjectDiagram),e.R7$(4),e.Y8G("ngForOf",i.networkCards))},dependencies:[d.YU,d.Sq,d.bT,d.T3,d.ux,d.e1,M.aY,h.DJ,h.sA,h.UI,L.PW,T.RN,T.m2,_e.B_,_e.NS,B.HM,Ye,Xe,Ue,d.QX]})}}return n})();function ag(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let sg=(()=>{class n{constructor(t){this.router=t,this.faDownload=b.cbP,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-backup"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,ag,2,3,"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&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faDownload),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}}return n})();const og=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),lg=()=>["no_channel"],rg=n=>({"max-width":n}),cg=n=>({"display-none":n});function pg(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRestoreChannels({}))}),e.EFF(5,"Restore All"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function mg(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function ug(n,s){if(1&n&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function dg(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function hg(n,s){1&n&&(e.j41(0,"th",31),e.EFF(1,"Channel Point"),e.k0s())}function _g(n,s){if(1&n&&(e.j41(0,"td",32)(1,"div",33)(2,"span",34),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,rg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function fg(n,s){1&n&&(e.j41(0,"th",35)(1,"div",36),e.EFF(2,"Actions"),e.k0s()())}function gg(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",32)(1,"span",37)(2,"button",38),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onRestoreChannels(i))}),e.EFF(3,"Restore"),e.k0s()()()}}function Cg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No singular channel backups available."),e.k0s())}function yg(n,s){if(1&n&&(e.j41(0,"td",39),e.DNE(1,Cg,2,0,"p",40),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channels||!t.channels.data||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)}}function bg(n,s){if(1&n&&e.nrm(0,"tr",41),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,cg,t.channels&&t.channels.data&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Fg(n,s){1&n&&e.nrm(0,"tr",42)}function xg(n,s){1&n&&e.nrm(0,"tr",43)}let vg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new p.I6([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,v.$J)()),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.lndEffects.setRestoreChannelList.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.allRestoreExists=t.all_restore_exists,this.channelsData=t.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||t&&t.files)&&(this.flgLoading[0]=!1),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(t){this.store.dispatch((0,v.Lf)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(t){this.channels=new p.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-restore-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1),e.DNE(1,pg,6,1,"div",2)(2,mg,5,1,"div",3)(3,ug,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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(12,"div",10),e.DNE(13,dg,1,0,"mat-progress-bar",11),e.j41(14,"table",12,0),e.qex(16,13),e.DNE(17,hg,2,0,"th",14)(18,_g,4,4,"td",15),e.bVm(),e.qex(19,16),e.DNE(20,fg,3,0,"th",17)(21,gg,4,0,"td",15),e.bVm(),e.qex(22,18),e.DNE(23,yg,2,1,"td",19),e.bVm(),e.DNE(24,bg,1,3,"tr",20)(25,Fg,1,0,"tr",21)(26,xg,1,0,"tr",22),e.k0s()(),e.nrm(27,"mat-paginator",23),e.k0s()}2&a&&(e.R7$(),e.Y8G("ngIf",i.allRestoreExists),e.R7$(),e.Y8G("ngIf",!i.allRestoreExists&&(!i.channels||(null==i.channels||null==i.channels.data?null:i.channels.data.length)<=0)),e.R7$(),e.Y8G("ngIf",!i.allRestoreExists&&i.channels&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)>0),e.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(13,og,"error"===i.flgLoading[0])),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(15,lg)),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:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,k.B4,k.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,A.Ld]})}}return n})();const Tg=n=>({"error-border":n}),Sg=()=>["no_channel"],kg=n=>({"max-width":n}),Rg=n=>({"display-none":n});function Eg(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function Ig(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Channel Point"),e.k0s())}function Lg(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,kg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function wg(n,s){1&n&&(e.j41(0,"th",38)(1,"div",39),e.EFF(2,"Actions"),e.k0s()())}function jg(n,s){if(1&n){const t=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(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBackupChannels(i))}),e.EFF(7,"Backup"),e.k0s(),e.j41(8,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onDownloadBackup(i))}),e.EFF(9,"Download Backup"),e.k0s(),e.j41(10,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onVerifyChannels(i))}),e.EFF(11,"Verify"),e.k0s()()()()}}function Gg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function Dg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function Ng(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Pg(n,s){if(1&n&&(e.j41(0,"td",43),e.DNE(1,Gg,2,0,"p",44)(2,Dg,2,0,"p",44)(3,Ng,2,1,"p",44),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function $g(n,s){if(1&n&&e.nrm(0,"tr",45),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Rg,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Ag(n,s){1&n&&e.nrm(0,"tr",46)}function Mg(n,s){1&n&&e.nrm(0,"tr",47)}let Bg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.faArchive=b.Oh6,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new p.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.channels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.SET_CHANNELS_LND||t.type===l.aU.SHOW_FILE)).subscribe(t=>{t.type===l.QP.SET_CHANNELS_LND&&(this.selectedChannel=null),t.type===l.aU.SHOW_FILE&&(this.commonService.downloadFile(t.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(t){this.store.dispatch((0,v.H2)({payload:{uiMessage:l.MZ.BACKUP_CHANNEL,channelPoint:t.channel_point?t.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(t){this.store.dispatch((0,v.L)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}onDownloadBackup(t){this.selectedChannel=t,this.store.dispatch((0,E.t2)({payload:{channelPoint:t.channel_point?t.channel_point:"all"}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!1,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(t){this.channels=new p.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(Q.En),e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-backup-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.onVerifyChannels({}))}),e.EFF(14,"Verify All"),e.k0s(),e.j41(15,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBackupChannels({}))}),e.EFF(16,"Backup All"),e.k0s(),e.j41(17,"button",9),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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(c){return e.eBV(o),e.DH7(i.selFilter,c)||(i.selFilter=c),e.Njj(c)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(30,"div",18),e.DNE(31,Eg,1,0,"mat-progress-bar",19),e.j41(32,"table",20,0),e.qex(34,21),e.DNE(35,Ig,2,0,"th",22)(36,Lg,4,4,"td",23),e.bVm(),e.qex(37,24),e.DNE(38,wg,3,0,"th",25)(39,jg,12,0,"td",26),e.bVm(),e.qex(40,27),e.DNE(41,Pg,4,3,"td",28),e.bVm(),e.DNE(42,$g,1,3,"tr",29)(43,Ag,1,0,"tr",30)(44,Mg,1,0,"tr",31),e.k0s()(),e.nrm(45,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(3),e.Y8G("icon",i.faExclamationTriangle),e.R7$(4),e.Y8G("icon",i.faInfoCircle),e.R7$(4),e.SpI("",i.selNode.settings.channelBackupPath,"."),e.R7$(10),e.Y8G("icon",i.faArchive),e.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(14,Tg,""!==i.errorMessage)),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(16,Sg)),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:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.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,A.Ld]})}}return n})();function Og(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Vg=(()=>{class n{constructor(t){this.router=t,this.faUserCheck=b.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign-verify-message"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,Og,2,3,"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&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faUserCheck),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}}return n})();function Yg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}let Xg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new u.B,new u.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(W.u),e.rXU(ae.UG),e.rXU(j.gP))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign"]],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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.message,c)||(i.message=c),e.Njj(c)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onMessageChange())}),e.k0s(),e.DNE(7,Yg,2,0,"mat-error",5),e.k0s(),e.j41(8,"div",6)(9,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(10,"Clear Field"),e.k0s(),e.j41(11,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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(c){return e.eBV(o),e.Njj(i.onCopyField(c))}),e.EFF(21,"Copy Signature"),e.k0s()()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(6),e.Y8G("inset",!0),e.R7$(5),e.JRh(i.signature),e.R7$(2),e.Y8G("payload",i.signature))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,K.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}}return n})();function Ug(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}function Hg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Signature is required."),e.k0s())}function qg(n,s){1&n&&(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(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Pubkey Used"),e.k0s())}function Jg(n,s){if(1&n&&(e.j41(0,"div",20)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(2),e.JRh(null==t.verifyRes?null:t.verifyRes.pubkey)}}function Wg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onCopyField(i))}),e.EFF(2,"Copy Pubkey"),e.k0s()()}if(2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function Qg(n,s){if(1&n&&(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,Jg,3,1,"div",18)(5,Wg,3,1,"div",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(2),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid)}}let Zg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new u.B,new u.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,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(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(W.u),e.rXU(ae.UG),e.rXU(j.gP))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-verify"]],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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.message,c)||(i.message=c),e.Njj(c)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(7,Ug,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(c){return e.eBV(o),e.DH7(i.signature,c)||(i.signature=c),e.Njj(c)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(13,Hg,2,0,"mat-error",6),e.k0s(),e.DNE(14,qg,4,0,"p",8),e.j41(15,"div",9)(16,"button",10),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(17,"Clear Fields"),e.k0s(),e.j41(18,"button",11),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onVerify())}),e.EFF(19,"Verify"),e.k0s()(),e.DNE(20,Qg,6,4,"div",12),e.k0s()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(4),e.R50("ngModel",i.signature),e.R7$(2),e.Y8G("ngIf",!i.signature),e.R7$(),e.Y8G("ngIf",i.showVerifyStatus&&!i.verifyRes.valid),e.R7$(6),e.Y8G("ngIf",i.showVerifyStatus&&i.verifyRes.valid))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,K.N]})}}return n})();var Kg=g(13),D=g(7186);const e4=()=>["all"],t4=()=>["no_non_routing_event"],xe=n=>({"max-width":n}),n4=n=>({"display-none":n});function i4(n,s){if(1&n&&(e.j41(0,"div",5),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function a4(n,s){if(1&n&&(e.j41(0,"mat-option",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function s4(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG(2);return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,a4,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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,e4).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function o4(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function l4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel ID"),e.k0s())}function r4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function c4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Alias"),e.k0s())}function p4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function m4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Pubkey"),e.k0s())}function u4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function d4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel Point"),e.k0s())}function h4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function _4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function f4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function g4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function C4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function y4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function b4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function F4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Weight"),e.k0s())}function x4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function v4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Fee/KW"),e.k0s())}function T4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function S4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Updates"),e.k0s())}function k4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function R4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function E4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function I4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Capacity (Sats)"),e.k0s())}function L4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function w4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function j4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function G4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function D4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function N4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Sent"),e.k0s())}function P4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_sent))}}function $4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Received"),e.k0s())}function A4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_received))}}function M4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function B4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.local_balance))}}function O4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function V4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.remote_balance))}}function Y4(n,s){1&n&&(e.j41(0,"th",57)(1,"div",58),e.EFF(2,"Actions"),e.k0s()())}function X4(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",59)(1,"button",60),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(3);return e.Njj(o.onManagePeer(i))}),e.EFF(2,"Manage"),e.k0s()()}}function U4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"All peers are routing."),e.k0s())}function H4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting non routing peers..."),e.k0s())}function q4(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(4);e.R7$(),e.JRh(t.errorMessage)}}function z4(n,s){if(1&n&&(e.j41(0,"td",61),e.DNE(1,U4,2,0,"p",62)(2,H4,2,0,"p",62)(3,q4,2,1,"p",62),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function J4(n,s){if(1&n&&e.nrm(0,"tr",63),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,n4,(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)>0))}}function W4(n,s){1&n&&e.nrm(0,"tr",64)}function Q4(n,s){1&n&&e.nrm(0,"tr",65)}function Z4(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,o4,1,0,"mat-progress-bar",19),e.j41(2,"table",20,1),e.qex(4,21),e.DNE(5,l4,2,0,"th",22)(6,r4,4,4,"td",23),e.bVm(),e.qex(7,24),e.DNE(8,c4,2,0,"th",22)(9,p4,4,4,"td",23),e.bVm(),e.qex(10,25),e.DNE(11,m4,2,0,"th",22)(12,u4,4,4,"td",23),e.bVm(),e.qex(13,26),e.DNE(14,d4,2,0,"th",22)(15,h4,4,4,"td",23),e.bVm(),e.qex(16,27),e.DNE(17,_4,2,1,"th",28)(18,f4,3,1,"td",23),e.bVm(),e.qex(19,29),e.DNE(20,g4,2,1,"th",28)(21,C4,3,1,"td",23),e.bVm(),e.qex(22,30),e.DNE(23,y4,2,0,"th",28)(24,b4,4,3,"td",23),e.bVm(),e.qex(25,31),e.DNE(26,F4,2,0,"th",28)(27,x4,4,3,"td",23),e.bVm(),e.qex(28,32),e.DNE(29,v4,2,0,"th",28)(30,T4,4,3,"td",23),e.bVm(),e.qex(31,33),e.DNE(32,S4,2,0,"th",28)(33,k4,4,3,"td",23),e.bVm(),e.qex(34,34),e.DNE(35,R4,2,0,"th",28)(36,E4,4,3,"td",23),e.bVm(),e.qex(37,35),e.DNE(38,I4,2,0,"th",28)(39,L4,4,3,"td",23),e.bVm(),e.qex(40,36),e.DNE(41,w4,2,0,"th",28)(42,j4,4,3,"td",23),e.bVm(),e.qex(43,37),e.DNE(44,G4,2,0,"th",28)(45,D4,4,3,"td",23),e.bVm(),e.qex(46,38),e.DNE(47,N4,2,0,"th",28)(48,P4,4,3,"td",23),e.bVm(),e.qex(49,39),e.DNE(50,$4,2,0,"th",28)(51,A4,4,3,"td",23),e.bVm(),e.qex(52,40),e.DNE(53,M4,2,0,"th",28)(54,B4,4,3,"td",23),e.bVm(),e.qex(55,41),e.DNE(56,O4,2,0,"th",28)(57,V4,4,3,"td",23),e.bVm(),e.qex(58,42),e.DNE(59,Y4,3,0,"th",43)(60,X4,3,0,"td",44),e.bVm(),e.qex(61,45),e.DNE(62,z4,4,3,"td",46),e.bVm(),e.DNE(63,J4,1,3,"tr",47)(64,W4,1,0,"tr",48)(65,Q4,1,0,"tr",49),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.nonRoutingPeers),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(7,t4)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function K4(n,s){if(1&n&&(e.j41(0,"div",6),e.DNE(1,s4,14,4,"div",7)(2,Z4,66,8,"div",8),e.nrm(3,"mat-paginator",9,0),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let eC=(()=>{class n{constructor(t,a,i,o,r,c,F){this.logger=t,this.commonService=a,this.store=i,this.router=o,this.activatedRoute=r,this.decimalPipe=c,this.camelCaseWithReplace=F,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:l.md,sortBy:"remote_alias",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new p.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=t.channels,this.logger.info(t)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}calculateUptime(t){let c=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",c=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",c=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",c=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",c=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",c=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/c),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%c/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/c),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%c/F),"2.0-0"):"---"}),t}onManagePeer(t){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:t.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?JSON.stringify(t).toLowerCase():typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadNonRoutingPeersTable(t){if(t.length>0){const a=this.calculateUptime(this.activeChannels?.filter(i=>t.findIndex(o=>o.chan_id_in===i.chan_id||o.chan_id_out===i.chan_id)<0));this.nonRoutingPeers=new p.I6(a),this.nonRoutingPeers.sort=this.sort,this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new p.I6([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX),e.rXU(d.QX),e.rXU(q.VD))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-non-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,i4,2,1,"div",3)(2,K4,5,5,"div",4),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,V.wT,k.B4,k.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,A.ZF,A.Ld,d.QX]})}}return n})();var rt=g(3838);let tC=(()=>{class n{constructor(t){this.dataService=t,this.paths="",this.unSubs=[new u.B,new u.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 t=this.payment.htlcs[0].route.hops?.reduce((a,i)=>""===a&&i.pub_key?i.pub_key:a+","+i.pub_key,"");this.dataService.getAliasesFromPubkeys(t,!0).pipe((0,_.Q)(this.unSubs[0])).subscribe(a=>{this.paths=a?.reduce((i,o)=>""===i?o:i+"\n"+o,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,J.s)(1)).subscribe(t=>{t&&t.description&&""!==t.description&&(this.payment.description=t.description)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(W.u))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},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(a,i){1&a&&(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&a&&(e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_hash),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_preimage),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_request),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.description),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(null==i.payment?null:i.payment.status),e.R7$(6),e.JRh(null==i.payment?null:i.payment.creation_date),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(e.bMT(50,16,null==i.payment?null:i.payment.value_msat)),e.R7$(7),e.JRh(e.bMT(57,18,null==i.payment?null:i.payment.fee_msat)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.paths),e.R7$(),e.Y8G("inset",!0))},dependencies:[h.DJ,h.sA,h.UI,T.m2,ee.q,d.QX]})}}return n})();var nC=g(8288);const ct=n=>({"display-none":n}),Pe=n=>({"mr-0":n});function iC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function aC(n,s){1&n&&(e.j41(0,"span",23),e.EFF(1,"N/A"),e.k0s())}function sC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function oC(n,s){1&n&&(e.j41(0,"span",24),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function lC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}function rC(n,s){1&n&&(e.qex(0),e.EFF(1," (zero amount) "),e.bVm())}function cC(n,s){if(1&n&&e.nrm(0,"span",38),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function pC(n,s){if(1&n&&e.nrm(0,"span",39),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function mC(n,s){if(1&n&&e.nrm(0,"span",40),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function uC(n,s){if(1&n&&(e.j41(0,"div",27)(1,"div",32)(2,"span",33),e.DNE(3,cC,1,3,"span",34)(4,pC,1,3,"span",35)(5,mC,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&n){const t=s.$implicit,a=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SETTLED"===t.state),e.R7$(),e.Y8G("ngIf","ACCEPTED"===t.state),e.R7$(),e.Y8G("ngIf","CANCELED"===t.state),e.R7$(),e.SpI(" ",t.chan_id," "),e.R7$(2),e.JRh(e.i5U(9,6,+t.amt_msat/1e3||0,a.getDecimalFormat(t))),e.R7$(2),e.Y8G("inset",!0)}}function dC(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",11)(1,"mat-expansion-panel",25),e.bIt("opened",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.flgOpened=!0)})("closed",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.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,uC,11,9,"div",31),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(12),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngForOf",null==t.invoice?null:t.invoice.htlcs)}}function hC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}let _C=(()=>{class n{constructor(t){this.commonService=t,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220)}getDecimalFormat(t){return t.amt_msat<1e3?"1.0-4":"1.0-0"}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,iC,1,3,"qr-code",2)(3,aC,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,sC,1,3,"qr-code",2)(9,oC,2,0,"span",8),e.k0s(),e.DNE(10,lC,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,rC,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,dC,14,2,"div",21)(89,hC,1,1,"mat-divider",9),e.k0s()()()()()()),2&a&&(e.R7$(),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(41,ct,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(4),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(43,ct,i.screenSize!==i.screenSizeEnum.XS&&i.screenSize!==i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM),e.R7$(5),e.JRh(i.screenSize===i.screenSizeEnum.XS?"Amount":"Amount Requested"),e.R7$(2),e.SpI("",e.bMT(18,31,(null==i.invoice?null:i.invoice.value)||0)," Sats"),e.R7$(2),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.value)||"0"===(null==i.invoice?null:i.invoice.value)),e.R7$(6),e.SpI("",e.bMT(26,33,null==i.invoice?null:i.invoice.amt_paid_sat)," Sats"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(34,35,1e3*(null==i.invoice?null:i.invoice.creation_date),"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(0!=+(null==i.invoice?null:i.invoice.settle_date)?e.i5U(40,38,1e3*+(null==i.invoice?null:i.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.memo),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.payment_request)||"N/A"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_hash)||""),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_preimage)||"-"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.state),e.R7$(5),e.JRh(null==i.invoice?null:i.invoice.expiry),e.R7$(5),e.JRh(null!=i.invoice&&i.invoice.private?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0))},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,T.m2,U.GK,U.Z2,U.WN,ee.q,Z.oV,nC.Um,A.Ld,d.QX,d.vh]})}}return n})();const fC=n=>({"mt-1":!0,"mt-2":n}),gC=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function CC(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function yC(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function bC(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function FC(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,bC,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,gC,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function xC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-payment-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payment",t.lookupValue)}}function vC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-invoice-lookup",29),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("invoice",t.lookupValue)}}function TC(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function SC(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,xC,2,1,"span",25)(6,vC,2,1,"span",25)(7,TC,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let kC=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,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=b.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND)).subscribe(t=>{this.flgSetLookupValue=!t.payload.error,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.errorMessage=t.payload.error?this.commonService.extractErrorMessage(t.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,v.jk)({payload:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!1,paymentHash:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static{this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(Q.En))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookup-transactions"]],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(a,i){if(1&a){const o=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(c){return e.eBV(o),e.DH7(i.selectedFieldId,c)||(i.selectedFieldId=c),e.Njj(c)}),e.bIt("change",function(c){return e.eBV(o),e.Njj(i.onSelectChange(c))}),e.DNE(7,CC,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(c){return e.eBV(o),e.DH7(i.lookupKey,c)||(i.lookupKey=c),e.Njj(c)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,yC,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,FC,3,5,"div",15)(20,SC,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,fC,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,tC,_C],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})();const RC=[{path:"",component:Ae,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Os,canActivate:[(0,D.jn)()]},{path:"wallet",component:Sd,canActivate:[D.q_]},{path:"onchain",component:i2,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:o2,canActivate:[(0,D.jn)()]},{path:"send/:selTab",component:ot,data:{sweepAll:!1},canActivate:[(0,D.jn)()]},{path:"sweep/:selTab",component:ot,data:{sweepAll:!0},canActivate:[(0,D.jn)()]}]},{path:"connections",component:Xs,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:dl,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:$1,canActivate:[(0,D.jn)()]},{path:"pending",component:bm,canActivate:[(0,D.jn)()]},{path:"closed",component:ru,canActivate:[(0,D.jn)()]},{path:"activehtlcs",component:ed,canActivate:[(0,D.jn)()]}]},{path:"peers",component:rl,data:{sweepAll:!1},canActivate:[(0,D.jn)()]}]},{path:"transactions",component:Rd,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Oe,canActivate:[(0,D.jn)()]},{path:"invoices",component:Be,canActivate:[(0,D.jn)()]},{path:"lookuptransactions",component:kC,canActivate:[(0,D.jn)()]}]},{path:"messages",component:Vg,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Xg,canActivate:[(0,D.jn)()]},{path:"verify",component:Zg,canActivate:[(0,D.jn)()]}]},{path:"channelbackup",component:sg,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:Bg,canActivate:[(0,D.jn)()]},{path:"restore",component:vg,canActivate:[(0,D.jn)()]}]},{path:"routing",component:Dh,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:tt,canActivate:[(0,D.jn)()]},{path:"peers",component:s0,canActivate:[(0,D.jn)()]},{path:"nonroutingprs",component:eC,canActivate:[(0,D.jn)()]}]},{path:"reports",component:l0,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:f0,canActivate:[(0,D.jn)()]},{path:"transactions",component:I0,canActivate:[(0,D.jn)()]}]},{path:"graph",component:Id,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"queryroutes",component:nh,canActivate:[(0,D.jn)()]}]},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"network",component:ig,canActivate:[(0,D.jn)()]},{path:"**",component:Kg.X},{path:"rates",redirectTo:"network"}]}],EC=x.iI.forChild(RC);var IC=g(9029);let LC=(()=>{class n{static{this.\u0275fac=function(a){return new(a||n)}}static{this.\u0275mod=e.$C({type:n,bootstrap:[Ae]})}static{this.\u0275inj=e.G2t({imports:[d.MD,IC.G,EC]})}}return n})()}}]); \ No newline at end of file diff --git a/frontend/190.88ca997666a3998a.js b/frontend/190.88ca997666a3998a.js deleted file mode 100644 index 3e3501a7..00000000 --- a/frontend/190.88ca997666a3998a.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[190],{9190:(wC,$e,g)=>{g.r($e),g.d($e,{LNDModule:()=>IC});var d=g(177),x=g(1188),pt=g(9881),e=g(4438),h=g(2920),B=g(7575);function mt(n,s){1&n&&e.nrm(0,"mat-progress-bar",3)}let Ae=(()=>{class n{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof x.Z:this.loading=!0;break;case a instanceof x.wF:case a instanceof x.j5:case a instanceof x.L6:this.loading=!1}})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lnd-root"]],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,i){1&a&&(e.j41(0,"div",1),e.DNE(1,mt,1,0,"mat-progress-bar",2),e.nrm(2,"router-outlet",null,0),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.loading))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,x.n3],data:{animation:[pt.E]}})}return n})();var u=g(1413),_=g(6977),de=g(3993),Y=g(5964),Me=g(614),b=g(5383),l=g(4416),X=g(9647),y=g(3536),j=g(8570),I=g(9640),W=g(4054),N=g(2571),M=g(60),L=g(6038),G=g(8834),T=g(5596),he=g(6195),ie=g(9213),ve=g(9115),P=g(6850),w=g(6695),k=g(2042),c=g(9159),R=g(2798),O=g(5351),v=g(190),m=g(9417),$=g(9631),f=g(6467),V=g(6600),_e=g(450),Q=g(4823),Z=g(9587),te=g(6114);function ut(n,s){1&n&&(e.j41(0,"span",32),e.EFF(1,"= "),e.k0s())}function dt(n,s){if(1&n&&(e.j41(0,"span",33),e.nrm(1,"fa-icon",34),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ht(n,s){if(1&n&&e.nrm(0,"span",35),2&n){const t=e.XpG();e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function _t(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(e.bMT(2,2,t))}}function ft(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.invoiceError)}}function gt(n,s){if(1&n&&(e.j41(0,"div",37),e.nrm(1,"fa-icon",38),e.DNE(2,ft,2,1,"span",39),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.invoiceError)}}let Ct=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.store=i,this.decimalPipe=o,this.commonService=r,this.actions=p,this.faExclamationTriangle=b.zpE,this.convertedCurrency=null,this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===t.payload.action&&(this.invoiceError=t.payload.message,t.payload.status===l.wn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="";let a=0;a=this.expiry?this.selTimeUnit!==l.F7.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS):this.expiry:l.It,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,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=l.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-create-invoices"]],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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.memo,p)||(i.memo=p),e.Njj(p)}),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(p){return e.eBV(o),e.DH7(i.invoiceValue,p)||(i.invoiceValue=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(19,"span",13),e.EFF(20,"Sats "),e.k0s(),e.j41(21,"mat-hint",14),e.DNE(22,ut,2,0,"span",15)(23,dt,2,1,"span",16)(24,ht,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(p){return e.eBV(o),e.DH7(i.expiry,p)||(i.expiry=p),e.Njj(p)}),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(p){return e.eBV(o),e.Njj(i.onTimeUnitChange(p))}),e.DNE(35,_t,3,4,"mat-option",21),e.k0s()(),e.j41(36,"div",22)(37,"div",23)(38,"mat-slide-toggle",24),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.private,p)||(i.private=p),e.Njj(p)}),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(p){return e.eBV(o),e.DH7(i.isAmp,p)||(i.isAmp=p),e.Njj(p)}),e.EFF(44,"AMP Invoice"),e.k0s(),e.j41(45,"mat-icon",27),e.EFF(46,"info_outline"),e.k0s()()(),e.DNE(47,gt,3,2,"div",28),e.j41(48,"div",29)(49,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(50,"Clear Field"),e.k0s(),e.j41(51,"button",31),e.bIt("click",function(){e.eBV(o);const p=e.sdS(10);return e.Njj(i.onAddInvoice(p))}),e.EFF(52,"Create Invoice"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.R50("ngModel",i.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",i.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"FA"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"SVG"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.SpI(" ",i.invoiceValueHint," "),e.R7$(4),e.Y8G("step",i.selTimeUnit===i.timeUnitEnum.SECS?300:i.selTimeUnit===i.timeUnitEnum.MINS?10:i.selTimeUnit===i.timeUnitEnum.HOURS?2:1)("min",1),e.R50("ngModel",i.expiry),e.R7$(2),e.SpI("",e.bMT(32,18,i.selTimeUnit)," "),e.R7$(3),e.Y8G("value",i.selTimeUnit),e.R7$(),e.Y8G("ngForOf",i.timeUnits),e.R7$(3),e.R50("ngModel",i.private),e.R7$(5),e.R50("ngModel",i.isAmp),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceError))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.MV,f.yw,R.VO,V.wT,_e.sG,Q.oV,Z.N,te.V,d.PV]})}return n})();var yt=g(6391),E=g(1771),q=g(2929),A=g(497);const bt=()=>["all"],Ft=n=>({"error-border":n}),xt=()=>["no_invoice"],fe=n=>({"mr-0":n}),se=n=>({width:n}),vt=n=>({"display-none":n});function Tt(n,s){1&n&&(e.j41(0,"span",19),e.EFF(1,"= "),e.k0s())}function St(n,s){if(1&n&&(e.j41(0,"span",20),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function kt(n,s){if(1&n&&e.nrm(0,"span",22),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function Rt(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.memo,i)||(o.memo=i),e.Njj(i)}),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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.invoiceValue,i)||(o.invoiceValue=i),e.Njj(i)}),e.bIt("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(10,"span",11),e.EFF(11,"Sats "),e.k0s(),e.j41(12,"mat-hint",12),e.DNE(13,Tt,2,0,"span",13)(14,St,2,1,"span",14)(15,kt,1,1,"span",15),e.EFF(16),e.k0s()(),e.j41(17,"div",16)(18,"button",17),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(19,"Clear Field"),e.k0s(),e.j41(20,"button",18),e.bIt("click",function(){e.eBV(t);const i=e.sdS(1),o=e.XpG();return e.Njj(o.onAddInvoice(i))}),e.EFF(21,"Create Invoice"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",t.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.SpI(" ",t.invoiceValueHint," ")}}function Et(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openCreateInvoiceModal())}),e.EFF(2,"Create Invoice"),e.k0s()()}}function It(n,s){if(1&n&&(e.j41(0,"mat-option",72),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Lt(n,s){1&n&&e.nrm(0,"mat-progress-bar",73)}function wt(n,s){1&n&&e.nrm(0,"th",74)}function jt(n,s){if(1&n&&e.nrm(0,"span",80),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Gt(n,s){if(1&n&&e.nrm(0,"span",81),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Dt(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Nt(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Pt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,jt,1,3,"span",76)(2,Gt,1,3,"span",77)(3,Dt,1,3,"span",78)(4,Nt,1,3,"span",79),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","OPEN"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","SETTLED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","ACCEPTED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","CANCELED"===(null==t?null:t.state))}}function $t(n,s){1&n&&e.nrm(0,"th",84)}function At(n,s){if(1&n&&(e.j41(0,"span",87),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Mt(n,s){if(1&n&&(e.j41(0,"span",88),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEye)}}function Bt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,At,2,1,"span",85)(2,Mt,2,1,"span",86),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function Ot(n,s){1&n&&e.nrm(0,"th",89)}function Vt(n,s){if(1&n&&(e.j41(0,"span",92),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnToDots)}}function Yt(n,s){if(1&n&&(e.j41(0,"span",93),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnRight)}}function Xt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Vt,2,1,"span",90)(2,Yt,2,1,"span",91),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.is_keysend),e.R7$(),e.Y8G("ngIf",!t.is_keysend)}}function Ut(n,s){1&n&&e.nrm(0,"th",94)}function Ht(n,s){if(1&n&&(e.j41(0,"span",97),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faMoneyBill1)}}function qt(n,s){if(1&n&&(e.j41(0,"span",98),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faBurst)}}function zt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Ht,2,1,"span",95)(2,qt,2,1,"span",96),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",!t.is_amp),e.R7$(),e.Y8G("ngIf",t.is_amp)}}function Jt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Created"),e.k0s())}function Wt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm"),"")}}function Qt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Settled"),e.k0s())}function Zt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(0!=+(null==t?null:t.settle_date)?e.i5U(2,1,1e3*+(null==t?null:t.settle_date),"dd/MMM/y HH:mm"):"-")}}function Kt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Memo"),e.k0s())}function en(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.memo)}}function tn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage"),e.k0s())}function nn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_preimage)}}function an(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage Hash"),e.k0s())}function sn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_hash)}}function on(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Address"),e.k0s())}function ln(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_addr)}}function rn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Request"),e.k0s())}function cn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function pn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Description Hash"),e.k0s())}function mn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function un(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Expiry"),e.k0s())}function dn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.expiry)," ")}}function hn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"CLTV Expiry"),e.k0s())}function _n(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.cltv_expiry)," ")}}function fn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Add Index"),e.k0s())}function gn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.add_index)," ")}}function Cn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Settle Index"),e.k0s())}function yn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.settle_index)," ")}}function bn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount (Sats)"),e.k0s())}function Fn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.value)," ")}}function xn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount Settled (Sats)"),e.k0s())}function vn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_paid_sat)," ")}}function Tn(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Sn(n,s){if(1&n){const t=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 i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onInvoiceClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",107),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onRefreshInvoice(i))}),e.EFF(7,"Refresh"),e.k0s()()()()}}function kn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No invoice available."),e.k0s())}function Rn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting invoices..."),e.k0s())}function En(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function In(n,s){if(1&n&&(e.j41(0,"td",110),e.DNE(1,kn,2,0,"p",111)(2,Rn,2,0,"p",111)(3,En,2,1,"p",111),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Ln(n,s){if(1&n&&e.nrm(0,"tr",112),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,vt,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function wn(n,s){1&n&&e.nrm(0,"tr",113)}function jn(n,s){1&n&&e.nrm(0,"tr",114)}function Gn(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,It,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",35),e.DNE(18,Lt,1,0,"mat-progress-bar",36),e.j41(19,"table",37,1),e.qex(21,38),e.DNE(22,wt,1,0,"th",39)(23,Pt,5,4,"td",40),e.bVm(),e.qex(24,41),e.DNE(25,$t,1,0,"th",42)(26,Bt,3,2,"td",40),e.bVm(),e.qex(27,43),e.DNE(28,Ot,1,0,"th",44)(29,Xt,3,2,"td",40),e.bVm(),e.qex(30,45),e.DNE(31,Ut,1,0,"th",46)(32,zt,3,2,"td",40),e.bVm(),e.qex(33,47),e.DNE(34,Jt,2,0,"th",48)(35,Wt,3,4,"td",40),e.bVm(),e.qex(36,49),e.DNE(37,Qt,2,0,"th",48)(38,Zt,3,4,"td",40),e.bVm(),e.qex(39,50),e.DNE(40,Kt,2,0,"th",48)(41,en,4,4,"td",40),e.bVm(),e.qex(42,51),e.DNE(43,tn,2,0,"th",48)(44,nn,4,4,"td",40),e.bVm(),e.qex(45,52),e.DNE(46,an,2,0,"th",48)(47,sn,4,4,"td",40),e.bVm(),e.qex(48,53),e.DNE(49,on,2,0,"th",48)(50,ln,4,4,"td",40),e.bVm(),e.qex(51,54),e.DNE(52,rn,2,0,"th",48)(53,cn,4,4,"td",40),e.bVm(),e.qex(54,55),e.DNE(55,pn,2,0,"th",48)(56,mn,4,4,"td",40),e.bVm(),e.qex(57,56),e.DNE(58,un,2,0,"th",57)(59,dn,4,3,"td",40),e.bVm(),e.qex(60,58),e.DNE(61,hn,2,0,"th",57)(62,_n,4,3,"td",40),e.bVm(),e.qex(63,59),e.DNE(64,fn,2,0,"th",57)(65,gn,4,3,"td",40),e.bVm(),e.qex(66,60),e.DNE(67,Cn,2,0,"th",57)(68,yn,4,3,"td",40),e.bVm(),e.qex(69,61),e.DNE(70,bn,2,0,"th",57)(71,Fn,4,3,"td",40),e.bVm(),e.qex(72,62),e.DNE(73,xn,2,0,"th",57)(74,vn,4,3,"td",40),e.bVm(),e.qex(75,63),e.DNE(76,Tn,6,0,"th",64)(77,Sn,8,0,"td",65),e.bVm(),e.qex(78,66),e.DNE(79,In,4,3,"td",67),e.bVm(),e.DNE(80,Ln,1,3,"tr",68)(81,wn,1,0,"tr",69)(82,jn,1,0,"tr",70),e.k0s(),e.j41(83,"mat-paginator",71),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,bt).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(2),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",e.eq3(17,Ft,""!==t.errorMessage)),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(19,xt)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalInvoices)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Be=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.store=a,this.decimalPipe=i,this.commonService=o,this.datePipe=r,this.actions=p,this.camelCaseWithReplace=F,this.calledFrom="transactions",this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.faHistory=b.Int,this.faArrowsTurnToDots=b.If6,this.faArrowsTurnRight=b.peG,this.faBurst=b.M29,this.faMoneyBill1=b.Ccf,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new c.I6([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=t.listInvoices.total_invoices||0,this.firstOffset=+(t.listInvoices.first_index_offset||-1),this.lastOffset=+(t.listInvoices.last_index_offset||-1),this.invoicesData=t.listInvoices.invoices||[],this.invoicesData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[4]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.SET_LOOKUP_LND&&this.invoicesData&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(t){const a=this.expiry?this.expiry:l.It;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(t){this.store.dispatch((0,E.xO)({payload:{data:{invoice:t,newlyAdded:!1,component:yt.H}}}))}onRefreshInvoice(t){t&&t.r_hash&&this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!0,paymentHash:Buffer.from(t.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(t){this.invoicesData=this.invoicesData?.map(a=>a.r_hash===t.r_hash?t:a)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.settle_date?this.datePipe.transform(new Date(1e3*t.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"creation_date":case"settle_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":i=t?.private?"private":"public";break;case"is_keysend":i=t?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":i=t?.is_amp?"atomic multi path payment":"non atomic payment";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_keysend"===this.selFilterBy||"is_amp"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadInvoicesTable(t){this.invoices=new c.I6(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t){let a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.previousPageIndex&&t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0),this.store.dispatch((0,v.Do)({payload:{num_max_invoices:t.pageSize,index_offset:i,reversed:a}}))}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[5])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,E.xO)({payload:{data:{pageSize:this.pageSize,component:Ct}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(d.vh),e.rXU(W.En),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-invoices"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,Rt,22,8,"form",3)(2,Et,3,0,"div",4)(3,Gn,84,20,"div",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.yw,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,te.V,d.QX,d.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 n})();var J=g(6697),K=g(1534),U=g(9454),oe=g(850);const Dn=["paymentReq"];function Nn(n,s){if(1&n&&(e.j41(0,"span",35),e.nrm(1,"fa-icon",36),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function Pn(n,s){if(1&n&&e.nrm(0,"span",37),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function $n(n,s){if(1&n&&(e.j41(0,"mat-hint",32),e.EFF(1),e.DNE(2,Nn,2,1,"span",33)(3,Pn,1,1,"span",34),e.EFF(4),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function An(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function Mn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.paymentDecodedHint)}}function Bn(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment amount is required."),e.k0s())}function On(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",6)(1,"mat-label"),e.EFF(2,"Amount (Sats)"),e.k0s(),e.j41(3,"input",38,4),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.paymentAmount,i)||(o.paymentAmount=i),e.Njj(i)}),e.bIt("change",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountChange(i))}),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,Bn,2,0,"mat-error",16),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.R50("ngModel",t.paymentAmount),e.R7$(4),e.Y8G("ngIf",!t.paymentAmount)}}function Vn(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",null==t?null:t.name," ")}}function Yn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.selFeeLimitType?null:t.selFeeLimitType.placeholder," is required.")}}function Xn(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh((null==t?null:t.remote_alias)||(null==t?null:t.chan_id))}}function Un(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Channel not found in the list."),e.k0s())}function Hn(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentError)}}function qn(n,s){if(1&n&&(e.j41(0,"div",40),e.nrm(1,"fa-icon",41),e.DNE(2,Hn,2,1,"span",16),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.paymentError)}}let zn=(()=>{class n{constructor(t,a,i,o,r,p,F){this.dialogRef=t,this.store=a,this.logger=i,this.commonService=o,this.decimalPipe=r,this.actions=p,this.dataService=F,this.faExclamationTriangle=b.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 m.hs,this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.feeLimitTypes=l.nv,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(i=>{this.activeChannels=i.channels&&i.channels.length?i.channels?.filter(o=>o.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND)).subscribe(i=>{i.type===l.QP.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SendPayment"===i.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=i.payload.message)});let t="",a="";this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"",ta?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,_.Q)(this.unSubs[3])).subscribe(i=>{"string"==typeof i&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(t=>0===(t.remote_alias?t.remote_alias.toLowerCase():t.chan_id?t.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(t.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}onSelectedChannelChanged(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const t=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(a=>{const i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"";return i.length===this.selectedChannelCtrl.value.length&&0===i.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];t&&t.length>0?(this.selectedChannelCtrl.setValue(t[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;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,this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}}))):(this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=this.paymentAmount?.toString()||"",this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:this.paymentAmount||0,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}})))}onAmountChange(t){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(t){this.paymentRequest=t,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,J.s)(1)).subscribe({next:a=>{this.paymentDecoded=a,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"BTC",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[4])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(i.OTHER?i.OTHER:0,l.k.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:i=>{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:a=>{this.logger.error(a),this.paymentDecodedHintPre="ERROR: "+a.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(t,a){if(t&&!a){const i=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)+(""!==i?" | First Outgoing Channel: "+i:"")}else this.advancedTitle="Advanced Options"}resetData(){this.paymentDecoded={},this.paymentRequest="",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=l.nv[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(I.il),e.rXU(j.gP),e.rXU(N.h),e.rXU(d.QX),e.rXU(W.En),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(a,i){if(1&a&&e.GBs(Dn,5),2&a){let o;e.mGM(o=e.lsd())&&(i.paymentReq=o.first)}},decls:51,vars:21,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","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","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","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","","id","sendBtn","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"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,i){if(1&a){const o=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(p){return e.eBV(o),e.Njj(i.onPaymentRequestEntry(p))})("matTextareaAutosize",function(){return e.eBV(o),e.Njj(!0)}),e.k0s(),e.DNE(16,$n,5,4,"mat-hint",15)(17,An,2,0,"mat-error",16)(18,Mn,2,1,"mat-error",16),e.k0s(),e.DNE(19,On,8,2,"mat-form-field",17),e.j41(20,"mat-expansion-panel",18),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0,!1))})("opened",function(){return e.eBV(o),e.Njj(i.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(p){return e.eBV(o),e.DH7(i.selFeeLimitType,p)||(i.selFeeLimitType=p),e.Njj(p)}),e.DNE(30,Vn,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(p){return e.eBV(o),e.DH7(i.feeLimit,p)||(i.feeLimit=p),e.Njj(p)}),e.k0s(),e.DNE(36,Yn,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 e.eBV(o),e.Njj(i.onSelectedChannelChanged())}),e.DNE(43,Xn,2,2,"mat-option",22),e.k0s(),e.DNE(44,Un,2,0,"mat-error",16),e.k0s()()(),e.DNE(45,qn,3,2,"div",28),e.j41(46,"div",29)(47,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(48,"Clear Fields"),e.k0s(),e.j41(49,"button",31),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onSendPayment())}),e.EFF(50,"Send Payment"),e.k0s()()()()()()}if(2&a){const o=e.sdS(15),r=e.sdS(42);e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.Y8G("ngModel",i.paymentRequest),e.R7$(2),e.Y8G("ngIf",i.paymentRequest&&""!==i.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!i.paymentRequest),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.decodeError),e.R7$(),e.Y8G("ngIf",i.zeroAmtInvoice),e.R7$(5),e.JRh(i.advancedTitle),e.R7$(5),e.R50("value",i.selFeeLimitType),e.R7$(),e.Y8G("ngForOf",i.feeLimitTypes),e.R7$(3),e.JRh(null==i.selFeeLimitType?null:i.selFeeLimitType.placeholder),e.R7$(),e.Y8G("step",1)("min",0)("disabled",i.selFeeLimitType===i.feeLimitTypes[0]),e.R50("ngModel",i.feeLimit),e.R7$(2),e.Y8G("ngIf",i.selFeeLimitType!==i.feeLimitTypes[0]&&!i.feeLimit),e.R7$(4),e.Y8G("formControl",i.selectedChannelCtrl)("matAutocomplete",r),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",i.filteredMinAmtActvChannels),e.R7$(),e.Y8G("ngIf",null==i.selectedChannelCtrl.errors?null:i.selectedChannelCtrl.errors.notfound),e.R7$(),e.Y8G("ngIf",""!==i.paymentError)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.l_,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,$.fg,f.rl,f.nJ,f.MV,f.TL,R.VO,V.wT,oe.$3,oe.pN,Z.N,te.V]})}return n})();var me=g(7541);const Jn=["sendPaymentForm"],Wn=()=>["all"],Qn=n=>({"error-border":n}),Zn=()=>["no_payment"],le=n=>({"mr-0":n}),ne=n=>({width:n}),Kn=n=>({"display-none":n});function ei(n,s){if(1&n&&(e.j41(0,"span",18),e.nrm(1,"fa-icon",19),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ti(n,s){if(1&n&&e.nrm(0,"span",20),2&n){const t=e.XpG(3);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function ni(n,s){if(1&n&&(e.j41(0,"mat-hint",15),e.EFF(1),e.DNE(2,ei,2,1,"span",16)(3,ti,1,1,"span",17),e.EFF(4),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function ii(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function ai(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPaymentRequestEntry(i))})("matTextareaAutosize",function(){return e.eBV(t),e.Njj(!0)}),e.k0s(),e.DNE(7,ni,5,4,"mat-hint",10)(8,ii,2,0,"mat-error",11),e.k0s(),e.j41(9,"div",12)(10,"button",13),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendPayment())}),e.EFF(13,"Send Payment"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngModel",t.paymentRequest),e.R7$(2),e.Y8G("ngIf",t.paymentRequest&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!t.paymentRequest)}}function si(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openSendPaymentModal())}),e.EFF(2,"Send Payment"),e.k0s()()}}function oi(n,s){if(1&n&&(e.j41(0,"mat-option",76),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function li(n,s){1&n&&e.nrm(0,"mat-progress-bar",77)}function ri(n,s){1&n&&e.nrm(0,"th",78)}function ci(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function pi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function mi(n,s){if(1&n&&(e.j41(0,"td",79),e.DNE(1,ci,1,3,"span",80)(2,pi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status))}}function ui(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Creation Date"),e.k0s())}function di(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm")," ")}}function hi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Hash"),e.k0s())}function _i(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash)}}function fi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Request"),e.k0s())}function gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function Ci(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Preimage"),e.k0s())}function yi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage)}}function bi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description"),e.k0s())}function Fi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description)}}function xi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description Hash"),e.k0s())}function vi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function Ti(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Failure Reason"),e.k0s())}function Si(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.brH(2,1,null==t?null:t.failure_reason,"failure_reason","_")," ")}}function ki(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Payment Index"),e.k0s())}function Ri(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.payment_index))}}function Ei(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Fee (Sats)"),e.k0s())}function Ii(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.fee))}}function Li(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Value (Sats)"),e.k0s())}function wi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.value))}}function ji(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Hops"),e.k0s())}function Gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh((null==t||null==t.htlcs[0]||null==t.htlcs[0].route||null==t.htlcs[0].route.hops?null:t.htlcs[0].route.hops.length)||0)}}function Di(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Ni(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",93)(1,"button",94),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onPaymentClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Pi(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No payment available."),e.k0s())}function $i(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting payments..."),e.k0s())}function Ai(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function Mi(n,s){if(1&n&&(e.j41(0,"td",95),e.DNE(1,Pi,2,0,"p",11)(2,$i,2,0,"p",11)(3,Ai,2,1,"p",11),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Bi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Oi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Vi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Yi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Xi(n,s){if(1&n&&(e.j41(0,"span",96),e.DNE(1,Vi,1,3,"span",80)(2,Yi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===t.status),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==t.status)}}function Ui(n,s){if(1&n&&(e.qex(0),e.DNE(1,Xi,3,2,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Hi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.DNE(2,Bi,1,3,"span",80)(3,Oi,1,3,"span",81),e.k0s(),e.DNE(4,Ui,2,1,"ng-container",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function qi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,t.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function zi(n,s){if(1&n&&(e.qex(0),e.DNE(1,qi,3,4,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ji(n,s){if(1&n&&(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&n){const t=s.$implicit;e.R7$(2),e.SpI(" Total Attempts: ",null==t||null==t.htlcs?null:t.htlcs.length," "),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Wi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.index;e.R7$(),e.SpI(" HTLC ",t+1," ")}}function Qi(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Wi,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Zi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,Qi,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ki(n,s){1&n&&e.nrm(0,"span",96)}function ea(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Ki,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ta(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ea,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function na(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.preimage," ")}}function ia(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,na,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function aa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ia,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function sa(n,s){1&n&&e.nrm(0,"span",96)}function oa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,sa,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function la(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,oa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ra(n,s){1&n&&e.nrm(0,"span",96)}function ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ra,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function pa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ma(n,s){1&n&&e.nrm(0,"span",96)}function ua(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ma,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function da(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.nI1(3,"camelcaseWithReplace"),e.k0s(),e.DNE(4,ua,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.brH(3,2,null==t?null:t.failure_reason,"failure_reason","_")," "),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ha(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,t.attempt_id)," ")}}function _a(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ha,3,3,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function fa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,_a,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,2,null==t?null:t.payment_index)),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ga(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_fees,"1.0-0")," ")}}function Ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ga,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ya(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.fee,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ba(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_amt,"1.0-0")," ")}}function Fa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ba,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function xa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Fa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.value,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function va(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,(null==t.route||null==t.route.hops?null:t.route.hops.length)||0,"1.0-0")," ")}}function Ta(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,va,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Sa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2,"-"),e.k0s(),e.DNE(3,Ta,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(3),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ka(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",104)(1,"button",105),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Ra(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,ka,3,1,"div",103),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ea(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",79)(1,"span",101)(2,"button",102),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!(null!=i&&i.is_expanded))}),e.EFF(3),e.k0s()(),e.DNE(4,Ra,2,1,"div",11),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(null!=t&&t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ia(n,s){1&n&&e.nrm(0,"tr",106)}function La(n,s){if(1&n&&e.nrm(0,"tr",107),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Kn,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function wa(n,s){1&n&&e.nrm(0,"tr",108)}function ja(n,s){1&n&&e.nrm(0,"tr",106)}function Ga(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,oi,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",33)(18,"div",34),e.DNE(19,li,1,0,"mat-progress-bar",35),e.j41(20,"table",36,2),e.qex(22,37),e.DNE(23,ri,1,0,"th",38)(24,mi,3,2,"td",39),e.bVm(),e.qex(25,40),e.DNE(26,ui,2,0,"th",41)(27,di,3,4,"td",39),e.bVm(),e.qex(28,42),e.DNE(29,hi,2,0,"th",41)(30,_i,4,4,"td",39),e.bVm(),e.qex(31,43),e.DNE(32,fi,2,0,"th",41)(33,gi,4,4,"td",39),e.bVm(),e.qex(34,44),e.DNE(35,Ci,2,0,"th",41)(36,yi,4,4,"td",39),e.bVm(),e.qex(37,45),e.DNE(38,bi,2,0,"th",41)(39,Fi,4,4,"td",39),e.bVm(),e.qex(40,46),e.DNE(41,xi,2,0,"th",41)(42,vi,4,4,"td",39),e.bVm(),e.qex(43,47),e.DNE(44,Ti,2,0,"th",41)(45,Si,3,5,"td",39),e.bVm(),e.qex(46,48),e.DNE(47,ki,2,0,"th",49)(48,Ri,4,3,"td",39),e.bVm(),e.qex(49,50),e.DNE(50,Ei,2,0,"th",49)(51,Ii,4,3,"td",39),e.bVm(),e.qex(52,51),e.DNE(53,Li,2,0,"th",49)(54,wi,4,3,"td",39),e.bVm(),e.qex(55,52),e.DNE(56,ji,2,0,"th",49)(57,Gi,3,1,"td",39),e.bVm(),e.qex(58,53),e.DNE(59,Di,6,0,"th",54)(60,Ni,3,0,"td",55),e.bVm(),e.qex(61,56),e.DNE(62,Mi,4,3,"td",57),e.bVm(),e.qex(63,58),e.DNE(64,Hi,5,3,"td",39),e.bVm(),e.qex(65,59),e.DNE(66,Ji,4,2,"td",39),e.bVm(),e.qex(67,60),e.DNE(68,Zi,5,5,"td",39),e.bVm(),e.qex(69,61),e.DNE(70,ta,5,5,"td",39),e.bVm(),e.qex(71,62),e.DNE(72,aa,5,5,"td",39),e.bVm(),e.qex(73,63),e.DNE(74,la,5,5,"td",39),e.bVm(),e.qex(75,64),e.DNE(76,pa,5,5,"td",39),e.bVm(),e.qex(77,65),e.DNE(78,da,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,ya,5,5,"td",39),e.bVm(),e.qex(83,68),e.DNE(84,xa,5,5,"td",39),e.bVm(),e.qex(85,69),e.DNE(86,Sa,4,1,"td",39),e.bVm(),e.qex(87,70),e.DNE(88,Ea,5,2,"td",39),e.bVm(),e.DNE(89,Ia,1,0,"tr",71)(90,La,1,3,"tr",72)(91,wa,1,0,"tr",73)(92,ja,1,0,"tr",74),e.k0s(),e.j41(93,"mat-paginator",75),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(18,Wn).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(3),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",e.eq3(19,Qn,""!==t.errorMessage)),e.R7$(69),e.Y8G("matRowDefColumns",t.htlcColumns)("matRowDefWhen",t.is_group),e.R7$(),e.Y8G("matFooterRowDef",e.lJ4(21,Zn)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalPayments)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Oe=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=p,this.datePipe=F,this.camelCaseWithReplace=C,this.calledFrom="transactions",this.faHistory=b.Int,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedPayment="",this.information={},this.peers=[],this.payments=new c.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=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(a=>this.htlcColumns.push("group_"+a)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.KT).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(t.listPayments.first_index_offset||-1),this.lastOffset=+(t.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(t)})}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,J.s)(1)).subscribe(t=>{this.paymentDecoded=t,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,E.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(a=>{a&&(this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,E.I1)({payload:{data:{type:l.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:l.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.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:l.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(i=>{i&&(this.paymentDecoded.num_satoshis=i[0].inputValue,this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:i[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,E.xO)({payload:{data:{component:zn}}}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,J.s)(1)).subscribe(a=>{this.paymentDecoded=a,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,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[6])).subscribe({next:i=>{this.convertedCurrency=i,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,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{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(t){let a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0);const o=t.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(o,o+this.pageSize))}is_group(t,a){return a.htlcs&&a.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(t){const a=this;return new Promise((i,o)=>{const r=a.peers.find(p=>p.pub_key===t.pub_key);r&&r.alias?i("
Channel: "+r.alias.padEnd(20)+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"):a.dataService.getAliasesFromPubkeys(t.pub_key||"",!1).pipe((0,_.Q)(a.unSubs[7])).subscribe({next:p=>i("
Channel: "+(p.node&&p.node.alias?p.node.alias.padEnd(20):t.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"),error:p=>i("
Channel: "+(t.pub_key?t.pub_key?.substring(0,17)+"...":"")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
")})})}onHTLCClick(t,a){a.payment_request&&""!==a.payment_request.trim()?this.dataService.decodePayment(a.payment_request,!1).pipe((0,J.s)(1)).subscribe({next:i=>{setTimeout(()=>{this.showHTLCView(t,a,i)},0)},error:i=>{this.showHTLCView(t,a)}}):this.showHTLCView(t,a)}showHTLCView(t,a,i){t.route&&t.route.hops&&t.route.hops.length?Promise.all(t.route.hops.map(o=>this.getHopDetails(o))).then(o=>{this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,o),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}):this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,[]),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}prepareData(t,a,i,o){const r=[[{key:"payment_hash",value:a.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"preimage",value:t.preimage,title:"Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:a.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:33,type:l.UN.STRING},{key:"attempt_time_ns",value:+(t.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:l.UN.DATE_TIME},{key:"resolve_time_ns",value:+(t.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:l.UN.DATE_TIME}],[{key:"total_amt",value:t.route?.total_amt,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"total_fees",value:t.route?.total_fees,title:"Fee (Sats)",width:33,type:l.UN.NUMBER},{key:"total_time_lock",value:t.route?.total_time_lock,title:"Total Time Lock",width:34,type:l.UN.NUMBER}],[{key:"hops",value:o,title:"Hops",width:100,type:l.UN.ARRAY}]];return i&&i.description&&""!==i.description&&r.splice(3,0,[{key:"description",value:i.description,title:"Description",width:100,type:l.UN.STRING}]),r}onPaymentClick(t){if(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>0){const a=t.htlcs[0].route.hops?.reduce((i,o)=>o.pub_key&&""===i?o.pub_key:i+","+o.pub_key,"");this.dataService.getAliasesFromPubkeys(a,!0).pipe((0,_.Q)(this.unSubs[8])).subscribe(i=>{this.showPaymentView(t,i?.reduce((o,r)=>""===o?r:o+"\n"+r,""))})}else this.showPaymentView(t,"")}showPaymentView(t,a){const i=[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:t.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:50,type:l.UN.STRING},{key:"creation_date",value:t.creation_date,title:"Creation Date",width:50,type:l.UN.DATE_TIME}],[{key:"value_msat",value:t.value_msat,title:"Value (mSats)",width:50,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:50,type:l.UN.NUMBER}],[{key:"path",value:a,title:"Path",width:100,type:l.UN.STRING}]];t.payment_request&&""!==t.payment_request.trim()?this.dataService.decodePayment(t.payment_request,!1).pipe((0,J.s)(1)).subscribe(o=>{o&&o.description&&""!==o.description&&i.splice(3,0,[{key:"description",value:o.description,title:"Description",width:100,type:l.UN.STRING}]),setTimeout(()=>{this.openPaymentAlert(i,!!(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(i,!1)}openPaymentAlert(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Information",message:t,scrollable:a}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"status":case"group_status":i="SUCCEEDED"===t?.status?"succeeded":"failed";break;case"creation_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":i=this.camelCaseWithReplace.transform(t.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":i=t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length?t.htlcs[0].route.hops.length.toString():"0";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"failure_reason"===this.selFilterBy||"group_failure_reason"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadPaymentsTable(t){this.payments=new c.I6(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(a,i)=>"hops"===i?a.htlcs.length&&a.htlcs[0]&&a.htlcs[0].route&&a.htlcs[0].route.hops&&a.htlcs[0].route.hops.length?a.htlcs[0].route.hops.length:0:a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),a=t?.reduce((i,o)=>(o.payment_request&&""!==o.payment_request.trim()&&(i=""===i?o.payment_request:i+","+o.payment_request),i),"");this.dataService.decodePayments(a).pipe((0,_.Q)(this.unSubs[9])).subscribe(i=>{let o=0;i.forEach((p,F)=>{if(p){for(;t[F+o].payment_hash!==p.payment_hash;)o+=1;t[F+o].description=p.description}});const r=t?.reduce((p,F)=>p.concat(F),[]);this.commonService.downloadFile(r,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u),e.rXU(I.il),e.rXU(me.H),e.rXU(d.QX),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-payments"]],viewQuery:function(a,i){if(1&a&&(e.GBs(Jn,5),e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",3),e.DNE(1,ai,14,3,"form",4)(2,si,3,0,"div",5)(3,Ga,94,22,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX,d.vh,q.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 n})();const Ve=n=>({backgroundColor:n});function Da(n,s){if(1&n&&e.nrm(0,"span",8),2&n){const t=e.XpG();e.Y8G("ngStyle",e.eq3(1,Ve,null==t.information?null:t.information.color))}}function Na(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(4),e.Y8G("ngStyle",e.eq3(4,Ve,null==t.information?null:t.information.color)),e.R7$(),e.SpI(" ",e.bMT(6,2,null==t.information?null:t.information.color)," ")}}function Pa(n,s){1&n&&e.nrm(0,"span",10)}function $a(n,s){1&n&&e.nrm(0,"span",11)}function Aa(n,s){if(1&n&&(e.j41(0,"span",2),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}let Ye=(()=>{class n{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain)+" "+this.commonService.titleCase(t.network))}))}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},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(a,i){1&a&&(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,Da,1,3,"span",3),e.k0s()(),e.DNE(7,Na,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,Pa,1,0,"span",5)(17,$a,1,0,"span",6)(18,Aa,2,1,"span",7),e.k0s()()),2&a&&(e.R7$(5),e.SpI(" ",null==i.information?null:i.information.alias," "),e.R7$(),e.Y8G("ngIf",!i.showColorFieldSeparately),e.R7$(),e.Y8G("ngIf",i.showColorFieldSeparately),e.R7$(5),e.JRh(null!=i.information&&i.information.lnImplementation||null!=i.information&&i.information.version?(null==i.information?null:i.information.lnImplementation)+" "+(null==i.information?null:i.information.version):""),e.R7$(4),e.Y8G("ngIf",null==i.information?null:i.information.synced_to_chain),e.R7$(),e.Y8G("ngIf",!(null!=i.information&&i.information.synced_to_chain)),e.R7$(),e.Y8G("ngForOf",i.chains))},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,Q.oV,d.Pc]})}return n})();function Ma(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,5,null==t.balances?null:t.balances.lightning)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.lightning)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(13,7,null==t.balances?null:t.balances.onchain)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.onchain)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(20,9,null==t.balances?null:t.balances.total)," Sats")}}function Ba(n,s){if(1&n&&(e.j41(0,"div",6)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Oa=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},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,i){if(1&a&&e.DNE(0,Ma,21,11,"div",1)(1,Ba,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,d.QX]})}return n})();function Va(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(6),e.SpI("",e.bMT(7,6,null==t.fees?null:t.fees.day_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(13,8,null==t.fees?null:t.fees.week_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(19,10,null==t.fees?null:t.fees.month_fee_sum)," Sats"),e.R7$(10),e.JRh(e.bMT(29,12,null==t.fees?null:t.fees.daily_tx_count)),e.R7$(6),e.JRh(e.bMT(35,14,null==t.fees?null:t.fees.weekly_tx_count)),e.R7$(6),e.JRh(e.bMT(41,16,null==t.fees?null:t.fees.monthly_tx_count))}}function Ya(n,s){if(1&n&&(e.j41(0,"div",8)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Xe=(()=>{class n{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 a=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/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#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},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(a,i){if(1&a&&e.DNE(0,Va,45,18,"div",1)(1,Ya,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}return n})();function Xa(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(7),e.JRh(e.bMT(8,8,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(15,10,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(22,12,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(29,14,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.num_channels)||0)),e.R7$(7),e.SpI("",e.bMT(36,16,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(42,18,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(48,20,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(54,22,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.capacity)||0)," Sats")}}function Ua(n,s){if(1&n&&(e.j41(0,"div",10)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ue=(()=>{class n{constructor(){this.channelsStatus={}}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},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(a,i){if(1&a&&e.DNE(0,Xa,55,24,"div",1)(1,Ua,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}return n})();var ee=g(1997);const Ha=()=>["../connections/channels/open"],qa=(n,s)=>({filterColumn:n,filterValue:s});function za(n,s){if(1&n&&(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&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(21,Ha))("state",e.l_i(22,qa,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,11,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(6),e.SpI("",e.bMT(9,15,t.local_balance||0)," Sats"),e.R7$(3),e.Y8G("icon",a.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,17,t.balancedness||0),") "),e.R7$(5),e.SpI("",e.bMT(18,19,t.remote_balance||0)," Sats"),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function Ja(n,s){if(1&n&&(e.j41(0,"div",17),e.DNE(1,za,20,25,"div",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function Wa(n,s){if(1&n&&(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,Ja,2,1,"div",16),e.k0s()()),2&n){const t=e.XpG(),a=e.sdS(2);e.R7$(8),e.SpI("",e.bMT(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0)," Sats"),e.R7$(3),e.Y8G("icon",t.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,9,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),e.R7$(5),e.SpI("",e.bMT(18,11,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0)," Sats"),e.R7$(2),e.FS9("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),e.R7$(4),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function Qa(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",26),e.EFF(1," No channels available. "),e.j41(2,"button",27),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.goToChannels())}),e.EFF(3,"Open Channel"),e.k0s()()}}function Za(n,s){if(1&n&&(e.j41(0,"div",28)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ka=(()=>{class n{constructor(t){this.router=t,this.faBalanceScale=b.GR4,this.faDumbbell=b.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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,i){if(1&a&&e.DNE(0,Wa,24,13,"div",2)(1,Qa,4,0,"ng-template",null,0,e.C5r)(3,Za,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.Sq,d.bT,M.aY,h.DJ,h.sA,h.UI,G.$z,f.MV,ee.q,B.HM,Q.oV,A.Ld,x.Wk,d.P9,d.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();var He=g(8711),qe=g(4104);const es=(n,s,t)=>({"mb-4":n,"mb-2":s,"mb-1":t}),ts=()=>["../connections/channels/open"],ns=(n,s)=>({filterColumn:n,filterValue:s});function is(n,s){if(1&n&&(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&n){const t=e.XpG().$implicit;e.R7$(3),e.SpI("",e.bMT(4,1,t.remote_balance||0)," Sats")}}function as(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2).$implicit,o=e.XpG(3);return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function ss(n,s){if(1&n&&(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,as,2,0,"button",23),e.k0s()),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.R7$(4),e.SpI("",e.bMT(5,2,t.local_balance||0)," Sats"),e.R7$(2),e.Y8G("ngIf",a.showLoop)}}function os(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.remote_balance||0)/a.totalLiquidity*100:0)}}function ls(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.local_balance||0)/a.totalLiquidity*100:0)}}function rs(n,s){if(1&n&&(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,is,5,3,"mat-hint",16)(6,ss,7,4,"div",17),e.k0s(),e.DNE(7,os,1,1,"mat-progress-bar",18)(8,ls,1,1,"mat-progress-bar",18),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(14,ts))("state",e.l_i(15,ns,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,10,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(3),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction),e.R7$(),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction)}}function cs(n,s){if(1&n&&(e.j41(0,"div",11),e.DNE(1,rs,9,18,"div",12),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function ps(n,s){if(1&n&&(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,cs,2,1,"div",10),e.k0s()),2&n){const t=e.XpG(),a=e.sdS(2);e.Y8G("ngClass",e.sMw(6,es,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),e.R7$(5),e.SpI("",e.bMT(6,4,t.totalLiquidity)," Sats"),e.R7$(5),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function ms(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.goToChannels())}),e.EFF(1,"Open Channel"),e.k0s()}}function us(n,s){if(1&n&&(e.j41(0,"div",26),e.EFF(1," No channels available. "),e.DNE(2,ms,2,0,"button",27),e.k0s()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngIf","Out"===t.direction)}}function ds(n,s){if(1&n&&(e.j41(0,"div",29)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let hs=(()=>{class n{constructor(t,a,i,o){this.router=t,this.loopService=a,this.commonService=i,this.store=o,this.targetConf=6,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.showLoop=!(!t?.settings.swapServerUrl||""===t.settings.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix),e.rXU(qe.Q),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(a,i){if(1&a&&e.DNE(0,ps,11,10,"div",2)(1,us,3,1,"ng-template",null,0,e.C5r)(3,ds,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,G.$z,f.MV,ee.q,B.HM,Q.oV,A.Ld,x.Wk,d.P9,d.QX]})}return n})();const ze=n=>({"dashboard-card-content":!0,"error-border":n}),_s=n=>({"p-0":n});function fs(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(11);e.Y8G("matMenuTriggerFor",t)}}function gs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG().$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Cs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){e.eBV(t);const i=e.XpG(3);return e.Njj(i.onsortChannelsBy())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG(3);e.R7$(),e.SpI("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function ys(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function bs(n,s){if(1&n&&e.nrm(0,"rtl-node-info",31),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function Fs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function xs(n,s){if(1&n&&e.nrm(0,"rtl-channel-capacity-info",33),2&n){const t=e.XpG(3);e.Y8G("sortBy",t.sortField)("channelBalances",t.channelBalances)("allChannels",t.allChannelsCapacity)("errorMessage",t.errorMessages[3])}}function vs(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",34),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[1])}}function Ts(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",35),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function Ss(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function ks(n,s){if(1&n&&(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,gs,2,1,"button",17)(13,Cs,2,1,"button",18),e.k0s()()()(),e.j41(14,"mat-card-content",19),e.DNE(15,ys,1,0,"mat-progress-bar",20),e.j41(16,"div",21),e.DNE(17,bs,1,2,"rtl-node-info",22)(18,Fs,1,2,"rtl-balances-info",23)(19,xs,1,4,"rtl-channel-capacity-info",24)(20,vs,1,2,"rtl-fee-info",25)(21,Ts,1,2,"rtl-channel-status-info",26)(22,Ss,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(5),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions),e.R7$(),e.Y8G("ngIf","capacity"===t.id),e.R7$(),e.FS9("fxFlex","node"===t.id||"balance"===t.id?70:"fee"===t.id||"status"===t.id?78:90),e.Y8G("ngClass",e.eq3(16,ze,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR))),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)),e.R7$(),e.Y8G("ngSwitch",t.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 Rs(n,s){if(1&n&&(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,ks,23,18,"mat-grid-tile",10),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),e.R7$(2),e.JRh(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.R7$(),e.Y8G("rowHeight",t.operatorCardHeight),e.R7$(),e.Y8G("ngForOf",t.operatorCards)}}function Es(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(9);e.Y8G("matMenuTriggerFor",t)}}function Is(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Ls(n,s){if(1&n&&(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,Es,3,1,"button",15),e.j41(8,"mat-menu",16,2),e.DNE(10,Is,2,1,"button",17),e.k0s()()()()),2&n){const t=e.XpG().$implicit;e.R7$(3),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions)}}function ws(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function js(n,s){if(1&n&&e.nrm(0,"rtl-node-info",45),2&n){const t=e.XpG(3);e.Y8G("information",t.information)}}function Gs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function Ds(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","In")("totalLiquidity",t.totalInboundLiquidity)("allChannels",t.allInboundChannels)("errorMessage",t.errorMessages[3])}}function Ns(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("allChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[3])}}function Ps(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function $s(n,s){if(1&n&&(e.j41(0,"span",47)(1,"mat-tab-group",48)(2,"mat-tab",49),e.nrm(3,"rtl-lightning-invoices",50),e.k0s(),e.j41(4,"mat-tab",51),e.nrm(5,"rtl-lightning-payments",50),e.k0s()(),e.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),e.EFF(9,"more_vert"),e.k0s()(),e.j41(10,"mat-menu",16,3),e.DNE(12,Ps,2,1,"button",17),e.k0s()()()),2&n){const t=e.sdS(11),a=e.XpG().$implicit;e.R7$(3),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("matMenuTriggerFor",t),e.R7$(5),e.Y8G("ngForOf",a.goToOptions)}}function As(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ms(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",38),e.DNE(2,Ls,11,4,"mat-card-header",39),e.j41(3,"mat-card-content",40),e.DNE(4,ws,1,0,"mat-progress-bar",20),e.j41(5,"div",41),e.DNE(6,js,1,1,"rtl-node-info",42)(7,Gs,1,2,"rtl-balances-info",23)(8,Ds,1,4,"rtl-channel-liquidity-info",43)(9,Ns,1,4,"rtl-channel-liquidity-info",43)(10,$s,13,4,"span",44)(11,As,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(),e.Y8G("ngClass",e.eq3(13,_s,"transactions"===t.id)),e.R7$(),e.Y8G("ngIf","transactions"!==t.id),e.R7$(),e.FS9("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),e.Y8G("ngClass",e.eq3(15,ze,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.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 Bs(n,s){if(1&n&&(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,Ms,12,17,"mat-grid-tile",10),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faSmile),e.R7$(2),e.SpI("Welcome ",t.information.alias,"! Your node is up and running."),e.R7$(),e.Y8G("rowHeight",t.merchantCardHeight),e.R7$(),e.Y8G("ngForOf",t.merchantCards)}}let Os=(()=>{class n{constructor(t,a,i,o,r){switch(this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.router=r,this.faSmile=Me.Qpm,this.faFrown=Me.wB1,this.faAngleDoubleDown=b.WxX,this.faAngleDoubleUp=b.$sC,this.faChartPie=b.W1p,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.flgChildInfoUpdated=!1,this.userPersonaEnum=l.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=l.f7,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case l.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 l.f7.SM:case l.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(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.oR).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=t.apiCallStatus,this.apiCallStatusBlockchainBalance.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=t.blockchainBalance.total_balance&&+t.blockchainBalance.total_balance>=0?+t.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const a=t.lightningBalance&&t.lightningBalance.local?+t.lightningBalance.local:0,i=t.lightningBalance&&t.lightningBalance.remote?+t.lightningBalance.remote:0;this.channelBalances={localBalance:a,remoteBalance:i,balancedness:+(1-Math.abs((a-i)/(a+i))).toFixed(3)},this.balances.lightning=t.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=t.channelsSummary.active?.num_channels||0,this.inactiveChannels=t.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=t.channels?.filter(r=>!0===r.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(r=>r.remote_balance&&r.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.local_balance&&r.local_balance>0),"local_balance"))),this.allChannels.forEach(r=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(r.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(r.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(t)}),this.actions.pipe((0,_.Q)(this.unSubs[5]),(0,Y.p)(t=>t.type===l.QP.FETCH_FEES_LND||t.type===l.QP.SET_FEES_LND)).subscribe(t=>{t.type===l.QP.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),t.type===l.QP.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(t){"inactive"===t?this.router.navigateByUrl("/lnd/connections",{state:{filterColumn:"active",filterValue:t}}):this.router.navigateByUrl("/lnd/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((t,a)=>{const i=+(t.local_balance||0)+ +(t.remote_balance||0),o=+(a.local_balance||0)+ +(a.remote_balance||0);return i>o?-1:i{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-home"]],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",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","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"],[3,"calledFrom"],["label","Pay"],[1,"underline"]],template:function(a,i){if(1&a&&e.DNE(0,Rs,7,4,"div",4)(1,Bs,6,4,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",(null==i.selNode?null:i.selNode.settings.userPersona)===i.userPersonaEnum.OPERATOR)("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,M.aY,h.DJ,h.sA,h.UI,L.PW,G.iY,T.RN,T.m2,T.MM,T.dh,he.B_,he.NS,ie.An,ve.kk,ve.fb,ve.Cp,B.HM,P.mq,P.T8,Be,Oe,Ye,Oa,Xe,Ue,Ka,hs]})}return n})();var Te=g(1975),Se=g(5837);function Vs(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Channels"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activeChannels)}}function Ys(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Peers"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activePeers)}}let Xs=(()=>{class n{constructor(t,a,i){this.store=t,this.logger=a,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=b.gdJ,this.faChartPie=b.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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.selNode=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.activeChannels=t.channelsSummary.active?.num_channels||0,this.logger.info(t)}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:t.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:t.blockchainBalance.unconfirmed_balance||0}],this.logger.info(t)})}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(j.gP),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-connections"]],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,i){1&a&&(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(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(16,"mat-tab"),e.DNE(17,Vs,2,1,"ng-template",8),e.k0s(),e.j41(18,"mat-tab"),e.DNE(19,Ys,2,1,"ng-template",8),e.k0s()(),e.j41(20,"div",9),e.nrm(21,"router-outlet"),e.k0s()()()()),2&a&&(e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faUsers),e.R7$(6),e.R50("selectedIndex",i.activeLink))},dependencies:[M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,Te.k,P.ES,P.mq,P.T8,Se.f,x.n3]})}return n})();var ke=g(9172),Je=g(6354),We=g(92);const Us=["form"];function Hs(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t.alias?t.alias:t.pub_key?t.pub_key:"")}}function qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer alias is required."),e.k0s())}function zs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer not found in the list."),e.k0s())}function Js(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(6,Hs,2,2,"mat-option",28),e.nI1(7,"async"),e.k0s(),e.DNE(8,qs,2,0,"mat-error",20)(9,zs,2,0,"mat-error",20),e.k0s()}if(2&n){const t=e.sdS(5),a=e.XpG();e.R7$(3),e.Y8G("formControl",a.selectedPeer)("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(7,6,a.filteredPeers)),e.R7$(2),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.notfound)}}function Ws(n,s){1&n&&e.eu8(0)}function Qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Zs(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function Ks(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function eo(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function to(n,s){if(1&n&&(e.j41(0,"mat-hint"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)")}}function no(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Target Confirmation Blocks is required."),e.k0s())}function io(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fee is required."),e.k0s())}function ao(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function so(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",32)(1,"mat-slide-toggle",45),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.taprootChannel,i)||(o.taprootChannel=i),e.Njj(i)}),e.EFF(2,"Taproot Channel"),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.R50("ngModel",t.taprootChannel)}}function oo(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.channelConnectionError)}}function lo(n,s){if(1&n&&(e.j41(0,"div",46),e.nrm(1,"fa-icon",43),e.DNE(2,oo,2,1,"span",20),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.channelConnectionError)}}function ro(n,s){if(1&n&&(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&n){const t=e.XpG(2);e.R7$(6),e.JRh((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.address)),e.R7$(7),e.JRh(t.peer.pub_key),e.R7$(7),e.JRh(null==t.peer?null:t.peer.address),e.R7$(5),e.JRh(null!=t.peer&&t.peer.inbound?"True":"False")}}function co(n,s){if(1&n&&e.DNE(0,ro,26,4,"mat-expansion-panel",47),2&n){const t=e.XpG();e.Y8G("ngIf",t.peer)}}let Qe=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.dialogRef=a,this.data=i,this.store=o,this.actions=r,this.commonService=p,this.dataService=F,this.selectedPeer=new m.hs,this.amount=new m.hs,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.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=l.XG,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.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(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.isPrivate=!!i?.settings.unannouncedChannels}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.FETCH_CHANNELS_LND)).subscribe(i=>{i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message),i.type===l.QP.FETCH_CHANNELS_LND&&this.dialogRef.close()});let t="",a="";this.sortedPeers=this.peers.sort((i,o)=>(t=i.alias?i.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",a=o.alias?o.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",ta?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(""),(0,Je.T)(i=>"string"==typeof i?i:i.alias?i.alias:i.pub_key),(0,Je.T)(i=>i?this.filterPeers(i):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(a=>0===a.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.pub_key?t.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 t=this.peers?.filter(a=>a.alias?.length===this.selectedPeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].pub_key&&(this.selectedPubkey=t[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,v.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(t){this.advancedTitle=t?"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(t){this.transTypeValue="",t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-open-channel"]],viewQuery:function(a,i){if(1&a&&e.GBs(Us,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0),e.bIt("submit",function(){return e.eBV(o),e.Njj(i.onOpenChannel())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.j41(11,"div",13),e.DNE(12,Js,10,8,"mat-form-field",14),e.k0s(),e.DNE(13,Ws,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(p){return e.eBV(o),e.DH7(i.fundingAmount,p)||(i.fundingAmount=p),e.Njj(p)}),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,Qs,2,0,"mat-error",20)(27,Zs,2,1,"mat-error",20),e.k0s(),e.j41(28,"div",21)(29,"mat-slide-toggle",22),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.isPrivate,p)||(i.isPrivate=p),e.Njj(p)}),e.EFF(30,"Private Channel"),e.k0s()()(),e.j41(31,"mat-expansion-panel",23),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0))})("opened",function(){return e.eBV(o),e.Njj(i.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,Ks,16,6,"div",25),e.j41(38,"div",16)(39,"mat-form-field",26)(40,"mat-select",27),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selTransType,p)||(i.selTransType=p),e.Njj(p)}),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(p))}),e.DNE(41,eo,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(p){return e.eBV(o),e.DH7(i.transTypeValue,p)||(i.transTypeValue=p),e.Njj(p)}),e.k0s(),e.DNE(47,to,2,1,"mat-hint",20)(48,no,2,0,"mat-error",20)(49,io,2,0,"mat-error",20)(50,ao,2,1,"mat-error",20),e.k0s()(),e.j41(51,"div",30),e.DNE(52,so,3,1,"div",31),e.j41(53,"div",32)(54,"mat-slide-toggle",33),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.spendUnconfirmed,p)||(i.spendUnconfirmed=p),e.Njj(p)}),e.EFF(55,"Spend Unconfirmed Output"),e.k0s()()()()()(),e.DNE(56,lo,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,co,1,1,"ng-template",null,3,e.C5r)}if(2&a){const o=e.sdS(20),r=e.sdS(63);e.R7$(5),e.JRh(i.alertTitle),e.R7$(7),e.Y8G("ngIf",!i.peer&&i.peers&&i.peers.length>0),e.R7$(),e.Y8G("ngTemplateOutlet",r),e.R7$(6),e.Y8G("step",1e3)("min",1)("max",i.totalBalance),e.R50("ngModel",i.fundingAmount),e.R7$(3),e.SpI("(Remaining: ",e.bMT(23,28,i.totalBalance-(i.fundingAmount?i.fundingAmount:0)),")"),e.R7$(4),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.max),e.R7$(2),e.R50("ngModel",i.isPrivate),e.R7$(6),e.JRh(i.advancedTitle),e.R7$(2),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(3),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.selTransType?"Default":"1"===i.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("required","0"!==i.selTransType)("disabled","0"===i.selTransType)("step",1)("min","2"===i.selTransType?i.recommendedFee.minimumFee:0),e.R50("ngModel",i.transTypeValue),e.R7$(2),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf","1"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&i.transTypeValue&&+i.transTypeValue{class n{constructor(t,a,i,o,r,p,F,C,S){this.dialogRef=t,this.data=a,this.store=i,this.lndEffects=o,this.formBuilder=r,this.actions=p,this.logger=F,this.commonService=C,this.dataService=S,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.peerAddress="",this.totalBalance=0,this.transTypes=l.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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[m.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:""):"",[m.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selTransType:[l.XG[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!i?.settings.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(a.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{a===l.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([m.k0.required]))}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(a=>a.type===l.QP.NEWLY_ADDED_PEER_LND||a.type===l.QP.FETCH_PENDING_CHANNELS_LND||a.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(a=>{a.type===l.QP.NEWLY_ADDED_PEER_LND&&(this.logger.info(a.payload),this.flgEditable=!1,this.newlyAddedPeer=a.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),a.type===l.QP.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),a.type===l.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===l.wn.ERROR&&("SaveNewPeer"===a.payload.action||"FetchGraphNode"===a.payload.action?this.peerConnectionError=a.payload.message:"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const t=this.peerFormGroup.controls.peerAddress.value.search("@");let a="",i="";t>-1?(a=this.peerFormGroup.controls.peerAddress.value.substring(0,t),i=this.peerFormGroup.controls.peerAddress.value.substring(t+1),this.connectPeerWithParams(a,i)):(this.store.dispatch((0,v.t0)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,J.s)(1)).subscribe(o=>{setTimeout(()=>{i=o.node.addresses&&o.node.addresses.length&&o.node.addresses.length>0&&o.node.addresses[0].addr?o.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,i)},0)}))}connectPeerWithParams(t,a){this.store.dispatch((0,v.sq)({payload:{pubkey:t,host:a,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,v.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(t){this.channelFormGroup.controls.transTypeValue.setValue(""),t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){switch(t.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)"}t.selectedIndex{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(re.L),e.rXU(m.ze),e.rXU(W.En),e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-connect-peer"]],viewQuery:function(a,i){if(1&a&&(e.GBs(po,5),e.GBs(mo,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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(p){return e.eBV(o),e.Njj(i.stepSelectionChanged(p))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,uo,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,ho,2,0,"mat-error",15),e.k0s(),e.DNE(20,_o,4,2,"div",16),e.j41(21,"div",17)(22,"button",18),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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,go,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,Co,2,0,"mat-error",15)(40,yo,2,0,"mat-error",15)(41,bo,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(p){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(p))}),e.DNE(50,Fo,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,xo,2,1,"mat-hint",15)(56,vo,2,1,"mat-error",15)(57,To,2,1,"mat-error",15),e.k0s()(),e.j41(58,"div",29),e.DNE(59,So,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,ko,4,2,"div",16),e.j41(64,"div",17)(65,"button",38),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onOpenChannel())}),e.EFF(66),e.k0s()()()()(),e.j41(67,"div",39)(68,"button",40),e.EFF(69),e.k0s()()()()()()}2&a&&(e.R7$(10),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",i.peerFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.peerFormGroup),e.R7$(6),e.Y8G("ngIf",null==i.peerFormGroup.controls.peerAddress.errors?null:i.peerFormGroup.controls.peerAddress.errors.required),e.R7$(),e.Y8G("ngIf",""!==i.peerConnectionError),e.R7$(3),e.JRh(""!==i.peerConnectionError?"Retry":"Add Peer"),e.R7$(),e.Y8G("stepControl",i.channelFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.channelFormGroup),e.R7$(3),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.SpI("Remaining: ",e.bMT(36,29,i.totalBalance-(i.channelFormGroup.controls.fundingAmount.value?i.channelFormGroup.controls.fundingAmount.value:0)),""),e.R7$(4),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.max),e.R7$(9),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.channelFormGroup.controls.selTransType.value?"Default":"1"===i.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("step",1)("min","2"===i.channelFormGroup.controls.selTransType.value?i.recommendedFee.minimumFee:0)("required","0"!==i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.required),e.R7$(),e.Y8G("ngIf",i.channelFormGroup.controls.transTypeValue.value&&(null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.minimum)),e.R7$(2),e.Y8G("ngIf",i.isTaprootAvailable),e.R7$(4),e.Y8G("ngIf",""!==i.channelConnectionError),e.R7$(3),e.JRh(""!==i.channelConnectionError?"Retry":"Open Channel"),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(null!=i.newlyAddedPeer&&i.newlyAddedPeer.pub_key?"Do It Later":"Close"))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,R.VO,V.wT,_e.sG,H.V5,H.Ti,H.M6,Z.N,te.V,d.QX]})}return n})();const Ro=()=>["all"],Eo=n=>({"error-border":n}),Io=()=>["no_peer"],Re=n=>({width:n}),Lo=n=>({"display-none":n});function wo(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function jo(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Go(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Alias"),e.k0s())}function Do(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function No(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Public Key"),e.k0s())}function Po(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function $o(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Address"),e.k0s())}function Ao(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.address)}}function Mo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Sync Type"),e.k0s())}function Bo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,null==t?null:t.sync_type,"sync","_"))}}function Oo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Inbound"),e.k0s())}function Vo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.inbound?"Yes":"No")}}function Yo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Sent"),e.k0s())}function Xo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_sent)," ")}}function Uo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Received"),e.k0s())}function Ho(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_recv)," ")}}function qo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Sent"),e.k0s())}function zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_sent)," ")}}function Jo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Received"),e.k0s())}function Wo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_recv)," ")}}function Qo(n,s){1&n&&(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 Zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.ping_time)," ")}}function Ko(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function el(n,s){if(1&n){const t=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(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onPeerClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenChannel(i))}),e.EFF(7,"Open Channel"),e.k0s(),e.j41(8,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onPeerDetach(i))}),e.EFF(9,"Disconnect"),e.k0s()()()()}}function tl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No connected peer."),e.k0s())}function nl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting peers..."),e.k0s())}function il(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function al(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,tl,2,0,"p",53)(2,nl,2,0,"p",53)(3,il,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function sl(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Lo,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function ol(n,s){1&n&&e.nrm(0,"tr",55)}function ll(n,s){1&n&&e.nrm(0,"tr",56)}let rl=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.store=a,this.rtlEffects=i,this.commonService=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.availableBalance=0,this.faUsers=b.gdJ,this.displayedColumns=[],this.peersData=[],this.peers=new c.I6([]),this.information={},this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers,this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",showQRName:"Public Key",showQRField:t.pub_key,message:[[{key:"pub_key",value:t.pub_key,title:"Public Key",width:100}],[{key:"address",value:t.address,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:40},{key:"inbound",value:t.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:t.ping_time,title:"Ping Time (\xb5s)",width:30,type:l.UN.NUMBER}],[{key:"sat_sent",value:t.sat_sent,title:"Satoshis Sent",width:50,type:l.UN.NUMBER},{key:"sat_recv",value:t.sat_recv,title:"Satoshis Received",width:50,type:l.UN.NUMBER}],[{key:"bytes_sent",value:t.bytes_sent,title:"Bytes Sent",width:50,type:l.UN.NUMBER},{key:"bytes_recv",value:t.bytes_recv,title:"Bytes Received",width:50,type:l.UN.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:Ze}}}))}onOpenChannel(t){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},component:Qe}}}))}onPeerDetach(t){this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[4])).subscribe(i=>{i&&this.store.dispatch((0,v.ed)({payload:{pubkey:t.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"sync_type":i=this.camelCaseWithReplace.transform(t.sync_type||"","sync","_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"sync_type"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadPeersTable(t){this.peers=new c.I6(t?[...t]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(me.H),e.rXU(N.h),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"button",3),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(15,"perfect-scrollbar"),e.DNE(16,wo,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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(21,"div",14),e.DNE(22,jo,1,0,"mat-progress-bar",15),e.j41(23,"table",16,0),e.qex(25,17),e.DNE(26,Go,2,0,"th",18)(27,Do,4,4,"td",19),e.bVm(),e.qex(28,20),e.DNE(29,No,2,0,"th",18)(30,Po,4,4,"td",19),e.bVm(),e.qex(31,21),e.DNE(32,$o,2,0,"th",18)(33,Ao,4,4,"td",19),e.bVm(),e.qex(34,22),e.DNE(35,Mo,2,0,"th",18)(36,Bo,3,5,"td",19),e.bVm(),e.qex(37,23),e.DNE(38,Oo,2,0,"th",18)(39,Vo,2,1,"td",19),e.bVm(),e.qex(40,24),e.DNE(41,Yo,2,0,"th",25)(42,Xo,4,3,"td",19),e.bVm(),e.qex(43,26),e.DNE(44,Uo,2,0,"th",25)(45,Ho,4,3,"td",19),e.bVm(),e.qex(46,27),e.DNE(47,qo,2,0,"th",25)(48,zo,4,3,"td",19),e.bVm(),e.qex(49,28),e.DNE(50,Jo,2,0,"th",25)(51,Wo,4,3,"td",19),e.bVm(),e.qex(52,29),e.DNE(53,Qo,5,0,"th",25)(54,Zo,4,3,"td",19),e.bVm(),e.qex(55,30),e.DNE(56,Ko,6,0,"th",31)(57,el,10,0,"td",32),e.bVm(),e.qex(58,33),e.DNE(59,al,4,3,"td",34),e.bVm(),e.DNE(60,sl,1,3,"tr",35)(61,ol,1,0,"tr",36)(62,ll,1,0,"tr",37),e.k0s()(),e.nrm(63,"mat-paginator",38),e.k0s()()}2&a&&(e.R7$(7),e.Y8G("icon",i.faUsers),e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(15,Ro).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.peers)("ngClass",e.eq3(16,Eo,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(18,Io)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,q.VD]})}return n})();function cl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Open"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numOpenChannels)}}function pl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Pending"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numPendingChannels)}}function ml(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Closed"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numClosedChannels)}}function ul(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Active HTLCs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numActiveHTLCs)}}let dl=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.numOpenChannels=t.channels&&t.channels.length?t.channels.length:0,this.numActiveHTLCs=t.channels?.reduce((a,i)=>a+(i.pending_htlcs&&i.pending_htlcs.length>0?i.pending_htlcs.length:0),0),this.logger.info(t)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPendingChannels=t.pendingChannelsSummary.total_channels?t.pendingChannelsSummary.total_channels:0}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.numClosedChannels=t.closedChannels&&t.closedChannels.length?t.closedChannels.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.totalBalance=+(t.blockchainBalance.total_balance||0)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[6])).subscribe(t=>{this.peers=t.peers,this.peers.forEach(a=>{(!a.alias||""===a.alias)&&(a.alias=a.pub_key?.substring(0,20))}),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Qe}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channels-tables"]],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(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.onOpenChannel()}),e.EFF(3,"Open Channel"),e.k0s()(),e.j41(4,"div",3)(5,"mat-tab-group",4),e.mxI("selectedIndexChange",function(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(6,"mat-tab"),e.DNE(7,cl,2,1,"ng-template",5),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,pl,2,1,"ng-template",5),e.k0s(),e.j41(10,"mat-tab"),e.DNE(11,ml,2,1,"ng-template",5),e.k0s(),e.j41(12,"mat-tab"),e.DNE(13,ul,2,1,"ng-template",5),e.k0s()(),e.j41(14,"div",6),e.nrm(15,"router-outlet"),e.k0s()()()),2&a&&(e.R7$(5),e.R50("selectedIndex",i.activeLink))},dependencies:[h.DJ,h.sA,h.UI,G.$z,Te.k,P.ES,P.mq,P.T8,x.n3]})}return n})();var ae=g(5416),ge=g(9157);const hl=n=>({"xs-scroll-y":n});function _l(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(6),e.JRh(e.bMT(7,17,t.channel.commit_fee)),e.R7$(6),e.JRh(e.bMT(13,19,t.channel.commit_weight)),e.R7$(6),e.JRh(e.bMT(19,21,t.channel.fee_per_kw)),e.R7$(6),e.JRh(t.channel.static_remote_key?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.R7$(2),e.JRh(e.bMT(32,23,t.channel.total_satoshis_sent)),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.R7$(2),e.JRh(e.bMT(38,25,t.channel.total_satoshis_received)),e.R7$(6),e.JRh(e.bMT(44,27,t.channel.unsettled_balance)),e.R7$(6),e.JRh(e.bMT(50,29,t.channel.csv_delay)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(58,31,t.channel.local_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(64,33,t.channel.remote_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(70,35,t.channel.lifetime)),e.R7$(6),e.JRh(e.bMT(76,37,null==t.channel||null==t.channel.pending_htlcs?null:t.channel.pending_htlcs.length)),e.R7$(2),e.Y8G("inset",!0)}}function fl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function gl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Cl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",27),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onCopyChanID(i))}),e.EFF(1,"Copy Channel ID"),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("payload",t.channel.chan_id)}}function yl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"OK"),e.k0s()}}let Ee=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.logger=i,this.commonService=o,this.snackBar=r,this.router=p,this.faReceipt=b.Mf0,this.faUpRightFromSquare=b.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=l.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(t){this.snackBar.open("Channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.channel_point,"_blank")}onGoToLink(t,a){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:t,lookupValue:a}}),this.onClose()}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(N.h),e.rXU(ae.UG),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-information"]],decls:95,vars:38,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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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 e.eBV(o),e.Njj(i.onGoToLink("1",i.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 e.eBV(o),e.Njj(i.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 e.eBV(o),e.Njj(i.onGoToLink("0",i.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,_l,78,39,"div",21),e.j41(88,"div",22)(89,"button",23),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onShowAdvanced())}),e.DNE(90,fl,2,0,"p",24)(91,gl,2,0,"ng-template",null,0,e.C5r),e.k0s(),e.DNE(93,Cl,2,1,"button",25)(94,yl,2,0,"button",26),e.k0s()()()()()}if(2&a){const o=e.sdS(92);e.R7$(4),e.Y8G("icon",i.faReceipt),e.R7$(5),e.Y8G("ngClass",e.eq3(36,hl,i.screenSize===i.screenSizeEnum.XS)),e.R7$(7),e.SpI(" ",i.channel.chan_id," "),e.R7$(5),e.JRh(i.channel.remote_alias),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.channel_point," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.remote_pubkey," "),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(44,26,i.channel.local_balance)),e.R7$(6),e.JRh(e.bMT(50,28,i.channel.remote_balance)),e.R7$(6),e.JRh(e.bMT(56,30,i.channel.capacity)),e.R7$(6),e.JRh(e.bMT(62,32,i.channel.uptime)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.channel.active?"Yes":"No"),e.R7$(5),e.JRh(i.channel.private?"Yes":"No"),e.R7$(5),e.JRh(i.channel.initiator?"Yes":"No"),e.R7$(5),e.JRh(e.bMT(85,34,i.channel.num_updates)),e.R7$(2),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",i.showAdvanced),e.R7$(3),e.Y8G("ngIf",!i.showAdvanced)("ngIfElse",o),e.R7$(3),e.Y8G("ngIf",i.showCopy),e.R7$(),e.Y8G("ngIf",!i.showCopy)}},dependencies:[d.YU,d.bT,M.aY,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,T.MM,ee.q,Q.oV,ge.U,Z.N,d.QX]})}return n})();var Ie=g(7673),Le=g(1001),bl=g(6949);const ue=(n,s)=>({"small-svg":n,"large-svg":s});function Fl(n,s){1&n&&e.eu8(0)}function xl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function vl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Tl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Sl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function kl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.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()()(),e.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&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}let Rl=(()=>{class n{constructor(t){this.commonService=t,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(t){2===t.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===t.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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,i){if(1&a&&e.DNE(0,Fl,1,0,"ng-container",5)(1,xl,47,5,"ng-template",null,0,e.C5r)(3,vl,96,5,"ng-template",null,1,e.C5r)(5,Tl,68,5,"ng-template",null,2,e.C5r)(7,Sl,53,5,"ng-template",null,3,e.C5r)(9,kl,52,5,"ng-template",null,4,e.C5r),2&a){const o=e.sdS(2),r=e.sdS(4),p=e.sdS(6),F=e.sdS(8),C=e.sdS(10);e.Y8G("ngTemplateOutlet",1===i.stepNumber?o:2===i.stepNumber?r:3===i.stepNumber?p:4===i.stepNumber?F:C)}},dependencies:[d.YU,d.T3,h.DJ,h.sA,h.UI,L.PW,T.Lc,T.dh],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:[bl.k]}})}return n})();const El=["stepper"],Il=()=>[1,2,3,4,5],Ll=(n,s)=>({"dot-primary":n,"dot-primary-lighter":s});function wl(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.inputFormLabel)}}function jl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount must be a positive number."),e.k0s())}function Dl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",null==t.selChannel?null:t.selChannel.local_balance,".")}}function Nl(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.Lme("",t.remote_alias," - ",t.chan_id,"")}}function Pl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer is required."),e.k0s())}function $l(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer not found in the list."),e.k0s())}function Al(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.feeFormLabel)}}function Ml(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.name," ")}}function Bl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," is required.")}}function Ol(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," must be a positive number.")}}function Vl(n,s){1&n&&e.EFF(0,"Invoice/Payment")}function Yl(n,s){1&n&&(e.j41(0,"mat-icon",55),e.EFF(1,"check"),e.k0s())}function Xl(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function Ul(n,s){if(1&n&&(e.j41(0,"mat-icon",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(null!=t.paymentStatus&&t.paymentStatus.error?"close":"check")}}function Hl(n,s){1&n&&e.nrm(0,"div",7)}function ql(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function zl(n,s){if(1&n&&(e.j41(0,"h4",57),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentStatus&&t.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function Jl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",58),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function Wl(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.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(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.j41(30,"mat-step",22)(31,"form",23),e.DNE(32,wl,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,jl,2,0,"mat-error",29)(43,Gl,2,0,"mat-error",29)(44,Dl,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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.k0s(),e.j41(49,"mat-autocomplete",32,4),e.bIt("optionSelected",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(51,Nl,2,3,"mat-option",33),e.nI1(52,"async"),e.k0s(),e.DNE(53,Pl,2,0,"mat-error",29)(54,$l,2,0,"mat-error",29),e.k0s()(),e.j41(55,"div",34)(56,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectFee())}),e.EFF(57,"Select Fee"),e.k0s()()()(),e.j41(58,"mat-step",22)(59,"form",23),e.DNE(60,Al,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,Ml,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,Bl,2,1,"mat-error",29)(73,Ol,2,1,"mat-error",29),e.k0s()()(),e.j41(74,"div",34)(75,"button",39),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRebalance())}),e.EFF(76,"Rebalance"),e.k0s()()()(),e.j41(77,"mat-step",40)(78,"form",23),e.DNE(79,Vl,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,Yl,2,0,"mat-icon",44),e.k0s()()(),e.j41(87,"div",7)(88,"span",45),e.EFF(89),e.k0s()()(),e.DNE(90,Xl,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,Ul,2,1,"mat-icon",44),e.k0s()()(),e.DNE(97,Hl,1,0,"div",48),e.k0s(),e.DNE(98,ql,1,0,"mat-progress-bar",46),e.k0s(),e.DNE(99,zl,2,1,"h4",49),e.j41(100,"div",50),e.DNE(101,Jl,2,0,"button",51),e.k0s()()()(),e.j41(102,"div",52)(103,"button",53),e.EFF(104,"Close"),e.k0s()()()()()}if(2&n){const t=e.sdS(50),a=e.XpG(),i=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(15),e.Y8G("icon",a.faInfoCircle),e.R7$(7),e.JRh(e.bMT(23,42,a.selChannel.remote_alias)),e.R7$(5),e.JRh(a.selChannel.chan_id),e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",a.inputFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.inputFormGroup),e.R7$(6),e.Y8G("step",100),e.R7$(2),e.Lme("(Local Bal: ",null==a.selChannel?null:a.selChannel.local_balance,", Remaining: ",(null==a.selChannel?null:a.selChannel.local_balance)-(a.inputFormGroup.controls.rebalanceAmount.value?a.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.R7$(3),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.max),e.R7$(4),e.Y8G("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(52,44,a.filteredActiveChannels)),e.R7$(2),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.R7$(4),e.Y8G("stepControl",a.feeFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.feeFormGroup),e.R7$(8),e.Y8G("ngForOf",a.feeLimitTypes),e.R7$(3),e.JRh(a.feeFormGroup.controls.selFeeLimitType.value?a.feeFormGroup.controls.selFeeLimitType.value.placeholder:a.feeLimitTypes[0].placeholder),e.R7$(),e.Y8G("step",1),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.required),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.min),e.R7$(4),e.Y8G("stepControl",a.statusFormGroup),e.R7$(),e.Y8G("formGroup",a.statusFormGroup),e.R7$(7),e.JRh(a.flgInvoiceGenerated?a.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated),e.R7$(3),e.JRh(a.paymentRequest),e.R7$(),e.Y8G("ngIf",!a.flgInvoiceGenerated),e.R7$(),e.Y8G("expanded",(a.flgInvoiceGenerated||a.flgReusingInvoice)&&a.flgPaymentSent),e.R7$(4),e.JRh(a.flgInvoiceGenerated||a.flgPaymentSent?a.flgPaymentSent?null!=a.paymentStatus&&a.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.R7$(),e.Y8G("ngIf",a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",!a.paymentStatus)("ngIfElse",i),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&!a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&a.flgPaymentSent),e.R7$(2),e.Y8G("ngIf",a.paymentStatus&&a.paymentStatus.error),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function Ql(n,s){1&n&&e.eu8(0)}function Zl(n,s){if(1&n&&e.DNE(0,Ql,1,0,"ng-container",59),2&n){const t=e.XpG(),a=e.sdS(4),i=e.sdS(6);e.Y8G("ngTemplateOutlet",t.paymentStatus.error?a:i)}}function Kl(n,s){if(1&n&&(e.j41(0,"div",7)(1,"span",45),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Error: ",t.paymentStatus.error,"")}}function er(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(6),e.JRh(t.paymentStatus.payment_hash),e.R7$(5),e.SpI("Total Fees (",t.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.R7$(2),e.JRh(t.paymentStatus.payment_route.total_fees_msat?t.paymentStatus.payment_route.total_fees_msat:t.paymentStatus.payment_route.total_fees?t.paymentStatus.payment_route.total_fees:0),e.R7$(5),e.JRh(t.paymentStatus&&t.paymentStatus.payment_route&&t.paymentStatus.payment_route.hops&&t.paymentStatus.payment_route.hops.length?t.paymentStatus.payment_route.hops.length:0)}}function tr(n,s){if(1&n){const t=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onStepChanged(i))}),e.nrm(1,"p",81),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,Ll,a.stepNumber===t,a.stepNumber!==t))}}function nr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function ir(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function ar(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function sr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function or(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function lr(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return i.flgShowInfo=!1,e.Njj(i.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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.stepNumber,i)||(o.stepNumber=i),e.Njj(i)}),e.k0s()(),e.j41(10,"div",72),e.DNE(11,tr,2,4,"span",73),e.k0s(),e.j41(12,"div",74),e.DNE(13,nr,2,0,"button",75)(14,ir,2,0,"button",76)(15,ar,2,0,"button",77)(16,sr,2,0,"button",78)(17,or,2,0,"button",79),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("animationDirection",t.animationDirection),e.R50("stepNumber",t.stepNumber),e.R7$(2),e.Y8G("ngForOf",e.lJ4(9,Il)),e.R7$(2),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber>1&&t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber<5)}}let rr=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.dialogRef=t,this.data=a,this.logger=i,this.store=o,this.actions=r,this.formBuilder=p,this.decimalPipe=F,this.commonService=C,this.faInfoCircle=b.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=l.f7,this.animationDirection="forward",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let t="",a="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(i=>i.active&&i.chan_id!==this.selChannel.chan_id&&i.remote_balance&&i.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",ta?1:0)),l.nv.forEach((i,o)=>{o>0&&this.feeLimitTypes.push(i)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[m.k0.required]],rebalanceAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,m.k0.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],m.k0.required],feeLimit:["",[m.k0.required,m.k0.min(0)]],hiddenFeeLimit:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.invoices=i.listInvoices,this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.SET_QUERY_ROUTES_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND||i.type===l.QP.NEWLY_SAVED_INVOICE_LND)).subscribe(i=>{i.type===l.QP.SET_QUERY_ROUTES_LND&&(this.queryRoute=i.payload),i.type===l.QP.SEND_PAYMENT_STATUS_LND&&(this.logger.info(i.payload),this.flgPaymentSent=!0,this.paymentStatus=i.payload,this.flgEditable=!0),i.type===l.QP.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(i.payload),this.flgInvoiceGenerated=!0,this.sendPayment(i.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(0)).subscribe(i=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ie.of)(i?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,_.Q)(this.unSubs[3]),(0,ke.Z)("")).subscribe(i=>{"string"==typeof i&&(this.filteredActiveChannels=(0,Ie.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(t){switch(t.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"}t.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 t=this.findUnsettledInvoice();t?(this.flgReusingInvoice=!0,this.sendPayment(t.payment_request||"")):this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:l.It,is_amp:!1,pageSize:l.md,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(t=>(!t.settle_date||0==+t.settle_date)&&t.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==t.state)}sendPayment(t){this.flgInvoiceGenerated=!0,this.paymentRequest=t,this.store.dispatch((0,v.Fd)("percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0?{payload:{uiMessage:l.MZ.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:"fixed",feeLimit:Math.ceil(+this.feeFormGroup.controls.feeLimit.value*+this.inputFormGroup.controls.rebalanceAmount.value/100),allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}:{payload:{uiMessage:l.MZ.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:this.feeFormGroup.controls.selFeeLimitType.value.id,feeLimit:this.feeFormGroup.controls.feeLimit.value,allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}))}filterActiveChannels(){return this.activeChannels?.filter(t=>t.remote_balance&&t.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&t.chan_id!==this.selChannel.chan_id&&(0===t.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===t.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 t=this.activeChannels?.filter(a=>a.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===a.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));t&&t.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(t[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(t){this.animationDirection=t{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(m.ze),e.rXU(d.QX),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance"]],viewQuery:function(a,i){if(1&a&&e.GBs(El,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},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(a,i){1&a&&e.DNE(0,Wl,105,46,"div",5)(1,Zl,1,1,"ng-template",null,0,e.C5r)(3,Kl,3,1,"ng-template",null,1,e.C5r)(5,er,19,4,"ng-template",null,2,e.C5r)(7,lr,18,10,"div",6),2&a&&(e.Y8G("ngIf",!i.flgShowInfo),e.R7$(7),e.Y8G("ngIf",i.flgShowInfo))},dependencies:[d.YU,d.Sq,d.bT,d.T3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,L.PW,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,ee.q,B.HM,R.VO,V.wT,H.V5,H.Ti,H.M6,oe.$3,oe.pN,Z.N,Rl,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:[Le.C]}})}return n})();function cr(n,s){if(1&n&&(e.j41(0,"div",18)(1,"p",19)(2,"mat-icon",20),e.EFF(3,"close"),e.k0s(),e.EFF(4),e.k0s()()),2&n){const t=e.XpG();e.R7$(4),e.JRh(t.errorMsg)}}function pr(n,s){if(1&n&&(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&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle)}}function mr(n,s){if(1&n&&(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&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function ur(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function dr(n,s){1&n&&(e.j41(0,"mat-form-field",34)(1,"mat-label"),e.EFF(2,"Default"),e.k0s(),e.nrm(3,"input",35),e.k0s())}function hr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function _r(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,hr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function fr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function gr(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,fr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function Cr(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21),e.DNE(1,pr,4,1,"div",22)(2,mr,16,6,"div",22),e.j41(3,"div",23)(4,"mat-form-field",24)(5,"mat-select",25),e.mxI("valueChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSelTransTypeChanged(i))}),e.DNE(6,ur,2,2,"mat-option",26),e.k0s()(),e.DNE(7,dr,4,0,"mat-form-field",27)(8,_r,6,4,"mat-form-field",28)(9,gr,6,4,"mat-form-field",28),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channelToClose.active),e.R7$(),e.Y8G("ngIf",t.recommendedFee.minimumFee),e.R7$(3),e.Y8G("disabled",!t.channelToClose.active),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","0"===t.selTransType),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType)}}function yr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(1,"Clear"),e.k0s()}}function br(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",41),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onCloseChannel())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG();e.R7$(),e.JRh(t.channelToClose.active?"Close Channel":"Force Close")}}function Fr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",42),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"Ok"),e.k0s()}}let xr=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.actions=r,this.logger=p,this.transTypes=l.XG,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.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 u.B,new u.B]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNELS_LND)).subscribe(t=>{if(t.type===l.QP.SET_CHANNELS_LND){const a=t.payload.find(i=>i.chan_id===this.data.channel.chan_id);a&&a.pending_htlcs&&a.pending_htlcs.length&&a.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.ERROR&&"FetchAllChannels"===t.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+t.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const t={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(t.targetConf=this.blocks),this.fees&&(t.satPerByte=this.fees),this.store.dispatch((0,v.w0)({payload:t})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onSelTransTypeChanged(t){"2"===t.value&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(K.u),e.rXU(I.il),e.rXU(W.En),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-close-channel"]],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(a,i){1&a&&(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 i.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,cr,5,1,"div",12)(14,Cr,10,8,"div",13),e.k0s(),e.j41(15,"div",14),e.DNE(16,yr,2,0,"button",15)(17,br,2,1,"button",16)(18,Fr,2,0,"button",17),e.k0s()()()()()),2&a&&(e.R7$(5),e.JRh(i.channelToClose.active?"Close Channel":"Force Close Channel"),e.R7$(7),e.SpI("",i.channelToClose.active?"Closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point):"Force closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point)," "),e.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(2),e.Y8G("ngIf",i.channelToClose.active&&!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,te.V]})}return n})();const vr=()=>["all"],Tr=n=>({"error-border":n}),Sr=()=>["no_channel"],Ce=n=>({width:n}),kr=n=>({"display-none":n});function Rr(n,s){if(1&n&&(e.j41(0,"mat-option",49),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Er(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function Ir(n,s){1&n&&e.nrm(0,"th",51)}function Lr(n,s){1&n&&e.nrm(0,"span",55)}function wr(n,s){1&n&&e.nrm(0,"span",56)}function jr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Lr,1,0,"span",53)(2,wr,1,0,"span",54),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.active),e.R7$(),e.Y8G("ngIf",!t.active)}}function Gr(n,s){1&n&&e.nrm(0,"th",57)}function Dr(n,s){if(1&n&&(e.j41(0,"span",60),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Nr(n,s){if(1&n&&(e.j41(0,"span",62),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEye)}}function Pr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Dr,2,1,"span",58)(2,Nr,2,1,"span",59),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function $r(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Peer"),e.k0s())}function Ar(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_alias)}}function Mr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Pubkey"),e.k0s())}function Br(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_pubkey)}}function Or(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel Point"),e.k0s())}function Vr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel_point)}}function Yr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel ID"),e.k0s())}function Xr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.chan_id)}}function Ur(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Initiator"),e.k0s())}function Hr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.initiator?"Yes":"No")}}function qr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Static Remote Key"),e.k0s())}function zr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.static_remote_key?"Yes":"No")}}function Jr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function Wr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function Qr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function Zr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function Kr(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function e1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function t1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Weight"),e.k0s())}function n1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function i1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Fee/KW"),e.k0s())}function a1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function s1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Updates"),e.k0s())}function o1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function l1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function r1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function c1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Capacity (Sats)"),e.k0s())}function p1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function m1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function u1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function d1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function h1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function _1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Sent"),e.k0s())}function f1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_sent)," ")}}function g1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Received"),e.k0s())}function C1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_received)," ")}}function y1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function b1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_balance)," ")}}function F1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function x1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_balance)," ")}}function v1(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Balance Score"),e.k0s())}function T1(n,s){if(1&n&&(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&n){const t=s.$implicit;e.R7$(3),e.JRh(e.bMT(4,2,t.balancedness||0)),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function S1(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onChannelUpdate("all"))}),e.EFF(5,"Update Fee Policy"),e.k0s(),e.j41(6,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(7,"Download CSV"),e.k0s()()()()}}function k1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onCircularRebalance(i))}),e.EFF(1,"Circular Rebalance"),e.k0s()}}function R1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function E1(n,s){if(1&n){const t=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(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(6,"View Info"),e.k0s(),e.j41(7,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onViewRemotePolicy(i))}),e.EFF(8,"View Remote Fee "),e.k0s(),e.j41(9,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelUpdate(i))}),e.EFF(10,"Update Fee Policy"),e.k0s(),e.DNE(11,k1,2,0,"mat-option",77)(12,R1,2,0,"mat-option",77),e.j41(13,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelClose(i))}),e.EFF(14,"Close Channel"),e.k0s()()()()()}if(2&n){const t=e.XpG();e.R7$(11),e.Y8G("ngIf",+t.versionsArr[0]>0||+t.versionsArr[1]>=9),e.R7$(),e.Y8G("ngIf",t.selNode.swapServerUrl)}}function I1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No peers connected. Add a peer in order to open a channel."),e.k0s())}function L1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function w1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function j1(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function G1(n,s){if(1&n&&(e.j41(0,"td",78),e.DNE(1,I1,2,0,"p",79)(2,L1,2,0,"p",79)(3,w1,2,0,"p",79)(4,j1,2,1,"p",79),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function D1(n,s){if(1&n&&e.nrm(0,"tr",80),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,kr,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function N1(n,s){1&n&&e.nrm(0,"tr",81)}function P1(n,s){1&n&&e.nrm(0,"tr",82)}let $1=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.rtlEffects=r,this.decimalPipe=p,this.loopService=F,this.camelCaseWithReplace=C,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:l.md,sortBy:"balancedness",sortOrder:l.oi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=l.HW,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.versionsArr=[],this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.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(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPeers=t.peers&&t.peers.length?t.peers.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.totalBalance=t.blockchainBalance?.total_balance?+t.blockchainBalance?.total_balance:0}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(t.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.GET_REMOTE_POLICY,channelID:t.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,J.s)(1)).subscribe(a=>{if(!a.fee_base_msat&&!a.fee_rate_milli_msat&&!a.time_lock_delta)return!1;const i=[[{key:"fee_base_msat",value:a.fee_base_msat,title:"Base Fees (mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:l.UN.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:a.time_lock_delta,title:"Time Lock Delta",width:25,type:l.UN.NUMBER}]],o="Remote policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point);setTimeout(()=>{this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:o,message:i}}}))},0)})}onCircularRebalance(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{channels:this.channelsData,selChannel:t},component:rr}}}))}onChannelUpdate(t){"all"===t?(this.store.dispatch((0,E.I1)({payload:{data:{type:l.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:l.UN.NUMBER,inputValue:1e3,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[6])).subscribe(i=>{i&&this.store.dispatch((0,v.fy)({payload:{baseFeeMsat:i[0].inputValue,feeRate:i[1].inputValue,timeLockDelta:i[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,v.ij)({payload:{uiMessage:l.MZ.GET_CHAN_POLICY,channelID:t.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,J.s)(1)).subscribe(a=>{this.myChanPolicy=a.node1_pub===this.information.identity_pubkey?a.node1_policy:a.node2_pub===this.information.identity_pubkey?a.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const i="Update fee policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point),o=[];setTimeout(()=>{this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:i,noBtnText:"Cancel",yesBtnText:"Update Channel",message:o,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[7])).subscribe(a=>{if(a){const i={baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:t.channel_point};a.length>3&&a[3]&&a[4]&&(i.minHtlcMsat=a[3].inputValue,i.maxHtlcMsat=a[4].inputValue),this.store.dispatch((0,v.fy)({payload:i}))}})),this.applyFilter()}onChannelClose(t){t.active&&this.store.dispatch((0,v.$Q)()),this.store.dispatch((0,E.xO)({payload:{data:{channel:t,component:xr}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,selNode:this.selNode,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.active?"active":"inactive")+(t.chan_id?t.chan_id.toLowerCase():"")+(t.remote_pubkey?t.remote_pubkey.toLowerCase():"")+(t.remote_alias?t.remote_alias.toLowerCase():"")+(t.capacity?t.capacity:"")+(t.local_balance?t.local_balance:"")+(t.remote_balance?t.remote_balance:"")+(t.total_satoshis_sent?t.total_satoshis_sent:"")+(t.total_satoshis_received?t.total_satoshis_received:"")+(t.commit_fee?t.commit_fee:"")+(t.private?"private":"public");break;case"active":i=t?.active?"active":"inactive";break;case"private":i=t?.private?"private":"public";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadChannelsTable(t){this.channels=new c.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(t){let p=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",p=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",p=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",p=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",p=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",p=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%p/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%p/F),"2.0-0"):"---"}),t}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[8])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(t){return(t/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h),e.rXU(me.H),e.rXU(d.QX),e.rXU(qe.Q),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-open-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Rr,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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Er,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Ir,1,0,"th",13)(20,jr,3,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Gr,1,0,"th",16)(23,Pr,3,2,"td",14),e.bVm(),e.qex(24,17),e.DNE(25,$r,2,0,"th",18)(26,Ar,4,4,"td",14),e.bVm(),e.qex(27,19),e.DNE(28,Mr,2,0,"th",18)(29,Br,4,4,"td",14),e.bVm(),e.qex(30,20),e.DNE(31,Or,2,0,"th",18)(32,Vr,4,4,"td",14),e.bVm(),e.qex(33,21),e.DNE(34,Yr,2,0,"th",18)(35,Xr,4,4,"td",14),e.bVm(),e.qex(36,22),e.DNE(37,Ur,2,0,"th",18)(38,Hr,2,1,"td",14),e.bVm(),e.qex(39,23),e.DNE(40,qr,2,0,"th",18)(41,zr,2,1,"td",14),e.bVm(),e.qex(42,24),e.DNE(43,Jr,2,1,"th",25)(44,Wr,3,1,"td",14),e.bVm(),e.qex(45,26),e.DNE(46,Qr,2,1,"th",25)(47,Zr,3,1,"td",14),e.bVm(),e.qex(48,27),e.DNE(49,Kr,2,0,"th",25)(50,e1,4,3,"td",14),e.bVm(),e.qex(51,28),e.DNE(52,t1,2,0,"th",25)(53,n1,4,3,"td",14),e.bVm(),e.qex(54,29),e.DNE(55,i1,2,0,"th",25)(56,a1,4,3,"td",14),e.bVm(),e.qex(57,30),e.DNE(58,s1,2,0,"th",25)(59,o1,4,3,"td",14),e.bVm(),e.qex(60,31),e.DNE(61,l1,2,0,"th",25)(62,r1,4,3,"td",14),e.bVm(),e.qex(63,32),e.DNE(64,c1,2,0,"th",25)(65,p1,4,3,"td",14),e.bVm(),e.qex(66,33),e.DNE(67,m1,2,0,"th",25)(68,u1,4,3,"td",14),e.bVm(),e.qex(69,34),e.DNE(70,d1,2,0,"th",25)(71,h1,4,3,"td",14),e.bVm(),e.qex(72,35),e.DNE(73,_1,2,0,"th",25)(74,f1,4,3,"td",14),e.bVm(),e.qex(75,36),e.DNE(76,g1,2,0,"th",25)(77,C1,4,3,"td",14),e.bVm(),e.qex(78,37),e.DNE(79,y1,2,0,"th",25)(80,b1,4,3,"td",14),e.bVm(),e.qex(81,38),e.DNE(82,F1,2,0,"th",25)(83,x1,4,3,"td",14),e.bVm(),e.qex(84,39),e.DNE(85,v1,2,0,"th",18)(86,T1,6,4,"td",14),e.bVm(),e.qex(87,40),e.DNE(88,S1,8,0,"th",41)(89,E1,15,2,"td",42),e.bVm(),e.qex(90,43),e.DNE(91,G1,5,4,"td",44),e.bVm(),e.DNE(92,D1,1,3,"tr",45)(93,N1,1,0,"tr",46)(94,P1,1,0,"tr",47),e.k0s()(),e.nrm(95,"mat-paginator",48),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,vr).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",(null==i.apiCallStatus?null:i.apiCallStatus.status)===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,Tr,""!==i.errorMessage)),e.R7$(76),e.Y8G("matFooterRowDef",e.lJ4(17,Sr)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,$.fg,f.rl,f.nJ,f.MV,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.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 n})();const A1=["outputIdx"];function M1(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(4),e.JRh(e.bMT(6,2,t.dustOutputValue))}}function B1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Index for change output is required."),e.k0s())}function O1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid index value."),e.k0s())}function V1(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Y1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function X1(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,Y1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function U1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function H1(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,U1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function q1(n,s){if(1&n&&(e.j41(0,"div",35),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(2),e.JRh(t.bumpFeeError)}}let Ke=(()=>{class n{set outputIndx(t){t&&(this.outputIdx=t)}constructor(t,a,i,o,r){this.dialogRef=t,this.data=a,this.logger=i,this.dataService=o,this.store=r,this.faUpRightFromSquare=b.k02,this.txid="",this.outputIndex=null,this.transTypes=[...l.XG],this.selTransType="2",this.blocks=null,this.fees=null,this.faCopy=b.jPR,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){if(this.transTypes=this.transTypes.splice(1),this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[];this.txid=t[0]||(this.data.pendingChannel.channel&&this.data.pendingChannel.channel.channel_point?this.data.pendingChannel.channel.channel_point:""),this.outputIndex=t[1]&&""!==t[1]&&0==+t[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(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.dataService.getBlockExplorerTransaction(this.txid).pipe((0,_.Q)(this.unSubs[2])).subscribe({next:t=>{this.dustOutputValue=t.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:t=>{this.logger.error(t)}})}onBumpFee(){if(this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[],a=t.length>1&&t[1]&&""!==t[1]?+t[1]:null;if(a&&this.outputIndex===a)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,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.dialogRef.close(!1)},error:t=>{this.logger.error(t),this.bumpFeeError=t.message?t.message:t}})}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(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(K.u),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-bump-fee"]],viewQuery:function(a,i){if(1&a&&e.GBs(A1,5),2&a){let o;e.mGM(o=e.lsd())&&(i.outputIndx=o.first)}},decls:46,vars:19,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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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 e.eBV(o),e.Njj(i.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,M1,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(p){return e.eBV(o),e.DH7(i.outputIndex,p)||(i.outputIndex=p),e.Njj(p)}),e.k0s(),e.DNE(33,B1,2,0,"mat-error",22)(34,O1,2,0,"mat-error",22),e.k0s(),e.j41(35,"mat-form-field",23)(36,"mat-select",24),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selTransType,p)||(i.selTransType=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.blocks=null,e.Njj(i.fees=null)}),e.DNE(37,V1,2,2,"mat-option",25),e.k0s()(),e.DNE(38,X1,6,4,"mat-form-field",26)(39,H1,6,4,"mat-form-field",26),e.k0s(),e.DNE(40,q1,4,2,"div",27),e.k0s()(),e.j41(41,"div",28)(42,"button",29),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(43,"Clear"),e.k0s(),e.j41(44,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBumpFee())}),e.EFF(45),e.k0s()()()()()()}if(2&a){const o=e.sdS(32);e.R7$(12),e.SpI(" ",i.txid?"Bump fee for transaction ID: "+i.txid:"Bump fee: "," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(3),e.Y8G("icon",i.faInfoCircle),e.R7$(5),e.SpI("- High: ",i.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",i.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",i.recommendedFee.hourFee||"Unknown",""),e.R7$(),e.Y8G("ngIf",i.flgShowDustWarning),e.R7$(5),e.Y8G("step",1)("min",0),e.R50("ngModel",i.outputIndex),e.R7$(2),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.OutputIndexError),e.R7$(2),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(),e.Y8G("ngIf","1"===i.selTransType),e.R7$(),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf",""!==i.bumpFeeError),e.R7$(5),e.JRh(""!==i.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,Q.oV,Z.N,te.V,d.QX]})}return n})();const ye=n=>({"error-border bordered-box":n,"bordered-box":!0}),z1=()=>["no_pending_open"],J1=()=>["no_pending_force_closing"],W1=()=>["no_pending_closing"],Q1=()=>["no_pending_wait_closing"],z=n=>({width:n}),we=n=>({"display-none":n}),Z1=n=>({"py-0":!0,"display-none":n});function K1(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function ec(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function tc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function nc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function ic(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function sc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function oc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function lc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function rc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function cc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function pc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function mc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Confirmation Height"),e.k0s())}function uc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.confirmation_height))}}function dc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function hc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_fee))}}function _c(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Weight"),e.k0s())}function fc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_weight))}}function gc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Fee/KW"),e.k0s())}function Cc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_per_kw))}}function yc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function Fc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function xc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function vc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Tc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Sc(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function kc(n,s){if(1&n){const t=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 i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",51),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBumpFee(i))}),e.EFF(7,"Bump Fee"),e.k0s()()()()}}function Rc(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ec(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Ic(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Lc(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Rc,2,0,"p",53)(2,Ec,2,0,"p",53)(3,Ic,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function wc(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingOpenChannels&&(null==t.pendingOpenChannels?null:t.pendingOpenChannels.data)&&(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)>0))}}function jc(n,s){1&n&&e.nrm(0,"tr",55)}function Gc(n,s){1&n&&e.nrm(0,"tr",56)}function Dc(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Nc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Pc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function $c(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Mc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Oc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Vc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Yc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function Xc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Uc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Hc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function Jc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Maturity Height"),e.k0s())}function Wc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.maturity_height))}}function Qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Blocks till Maturity"),e.k0s())}function Zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.blocks_til_maturity))}}function Kc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Recovered Balance (Sats)"),e.k0s())}function ep(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.recovered_balance))}}function tp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function np(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function ap(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function sp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function op(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function lp(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function rp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",57),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onForceClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function cp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function pp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function up(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,cp,2,0,"p",53)(2,pp,2,0,"p",53)(3,mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function dp(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingForceClosingChannels&&(null==t.pendingForceClosingChannels?null:t.pendingForceClosingChannels.data)&&(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)>0))}}function hp(n,s){1&n&&e.nrm(0,"tr",55)}function _p(n,s){1&n&&e.nrm(0,"tr",56)}function fp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function gp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Cp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function yp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function bp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Fp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function xp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function vp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Tp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Sp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function kp(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Rp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Ep(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Lp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function wp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function jp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function Gp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Dp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Np(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Pp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",58),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function $p(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ap(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Bp(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,$p,2,0,"p",53)(2,Ap,2,0,"p",53)(3,Mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Op(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingClosingChannels&&(null==t.pendingClosingChannels?null:t.pendingClosingChannels.data)&&(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)>0))}}function Vp(n,s){1&n&&e.nrm(0,"tr",55)}function Yp(n,s){1&n&&e.nrm(0,"tr",56)}function Xp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Up(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Hp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Jp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Wp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Kp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function em(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function tm(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function nm(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function im(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function am(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function sm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function om(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function lm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function rm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function cm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function pm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function mm(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function um(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",59),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onWaitClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function dm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function hm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function _m(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function fm(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,dm,2,0,"p",53)(2,hm,2,0,"p",53)(3,_m,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function gm(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Z1,t.pendingWaitClosingChannels&&(null==t.pendingWaitClosingChannels?null:t.pendingWaitClosingChannels.data)&&(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)>0))}}function Cm(n,s){1&n&&e.nrm(0,"tr",55)}function ym(n,s){1&n&&e.nrm(0,"tr",56)}let bm=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.commonService=i,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new c.I6([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new c.I6([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new c.I6([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new c.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId),this.displayedOpenColumns=this.screenSize===l.f7.XS||this.screenSize===l.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId),this.displayedForceClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId),this.displayedClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId),this.displayedWaitClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=t.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(t)})}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(t){const a=JSON.parse(JSON.stringify(t,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:100,type:l.UN.STRING}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:100,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"confirmation_height",value:o.confirmation_height,title:"Confirmation Height",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"fee_per_kw",value:o.fee_per_kw,title:"Fee/KW",width:25,type:l.UN.NUMBER},{key:"commit_weight",value:o.commit_weight,title:"Commit Weight",width:25,type:l.UN.NUMBER},{key:"commit_fee",value:o.commit_fee,title:"Commit Fee",width:50,type:l.UN.NUMBER}]]}}}))}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{pendingChannel:t,component:Ke}}}))}onForceClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:o.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"maturity_height",value:o.maturity_height,title:"Maturity Height",width:25,type:l.UN.NUMBER},{key:"blocks_til_maturity",value:o.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:l.UN.NUMBER},{key:"recovered_balance",value:o.recovered_balance,title:"Recovered Balance",width:50,type:l.UN.NUMBER}]]}}}))}onClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:50,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:50,type:l.UN.NUMBER}]]}}}))}onWaitClosingClick(t){const a=JSON.parse(JSON.stringify(t,["limbo_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o=JSON.parse(JSON.stringify(t.commitments,["local_txid"],2)),r={};Object.assign(r,a,i,o),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:r.local_txid,title:"Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:r.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:r.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:r.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:r.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:r.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:r.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:r.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}]]}}}))}loadOpenChannelsTable(t){this.pendingOpenChannelsLength=t.length?t.length:0,this.pendingOpenChannels=new c.I6([...t]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(t){this.pendingForceClosingChannelsLength=t.length?t.length:0,this.pendingForceClosingChannels=new c.I6([...t]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(t){this.pendingClosingChannelsLength=t.length?t.length:0,this.pendingClosingChannels=new c.I6([...t]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(t){this.pendingWaitClosingChannelsLength=t.length?t.length:0,this.pendingWaitClosingChannels=new c.I6([...t]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-pending-table"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(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,K1,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,ec,1,0,"mat-progress-bar",4),e.j41(12,"table",7,0),e.qex(14,8),e.DNE(15,tc,2,0,"th",9)(16,nc,4,4,"td",10),e.bVm(),e.qex(17,11),e.DNE(18,ic,2,0,"th",9)(19,ac,4,4,"td",10),e.bVm(),e.qex(20,12),e.DNE(21,sc,2,0,"th",9)(22,oc,4,4,"td",10),e.bVm(),e.qex(23,13),e.DNE(24,lc,2,0,"th",9)(25,rc,3,4,"td",10),e.bVm(),e.qex(26,14),e.DNE(27,cc,2,0,"th",9)(28,pc,3,5,"td",10),e.bVm(),e.qex(29,15),e.DNE(30,mc,2,0,"th",16)(31,uc,4,3,"td",10),e.bVm(),e.qex(32,17),e.DNE(33,dc,2,0,"th",16)(34,hc,4,3,"td",10),e.bVm(),e.qex(35,18),e.DNE(36,_c,2,0,"th",16)(37,fc,4,3,"td",10),e.bVm(),e.qex(38,19),e.DNE(39,gc,2,0,"th",16)(40,Cc,4,3,"td",10),e.bVm(),e.qex(41,20),e.DNE(42,yc,2,0,"th",16)(43,bc,4,3,"td",10),e.bVm(),e.qex(44,21),e.DNE(45,Fc,2,0,"th",16)(46,xc,4,3,"td",10),e.bVm(),e.qex(47,22),e.DNE(48,vc,2,0,"th",16)(49,Tc,4,3,"td",10),e.bVm(),e.qex(50,23),e.DNE(51,Sc,3,0,"th",24)(52,kc,8,0,"td",25),e.bVm(),e.qex(53,26),e.DNE(54,Lc,4,3,"td",27),e.bVm(),e.DNE(55,wc,1,3,"tr",28)(56,jc,1,0,"tr",29)(57,Gc,1,0,"tr",30),e.k0s()()(),e.DNE(58,Dc,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,Nc,2,0,"th",9)(68,Pc,4,4,"td",10),e.bVm(),e.qex(69,8),e.DNE(70,$c,2,0,"th",9)(71,Ac,4,4,"td",10),e.bVm(),e.qex(72,11),e.DNE(73,Mc,2,0,"th",9)(74,Bc,4,4,"td",10),e.bVm(),e.qex(75,12),e.DNE(76,Oc,2,0,"th",9)(77,Vc,4,4,"td",10),e.bVm(),e.qex(78,13),e.DNE(79,Yc,2,0,"th",9)(80,Xc,3,4,"td",10),e.bVm(),e.qex(81,14),e.DNE(82,Uc,2,0,"th",9)(83,Hc,3,5,"td",10),e.bVm(),e.qex(84,33),e.DNE(85,qc,2,0,"th",16)(86,zc,4,3,"td",10),e.bVm(),e.qex(87,34),e.DNE(88,Jc,2,0,"th",16)(89,Wc,4,3,"td",10),e.bVm(),e.qex(90,35),e.DNE(91,Qc,2,0,"th",16)(92,Zc,4,3,"td",10),e.bVm(),e.qex(93,36),e.DNE(94,Kc,2,0,"th",16)(95,ep,4,3,"td",10),e.bVm(),e.qex(96,20),e.DNE(97,tp,2,0,"th",16)(98,np,4,3,"td",10),e.bVm(),e.qex(99,21),e.DNE(100,ip,2,0,"th",16)(101,ap,4,3,"td",10),e.bVm(),e.qex(102,22),e.DNE(103,sp,2,0,"th",16)(104,op,4,3,"td",10),e.bVm(),e.qex(105,23),e.DNE(106,lp,3,0,"th",24)(107,rp,3,0,"td",25),e.bVm(),e.qex(108,37),e.DNE(109,up,4,3,"td",27),e.bVm(),e.DNE(110,dp,1,3,"tr",28)(111,hp,1,0,"tr",29)(112,_p,1,0,"tr",30),e.k0s()()(),e.DNE(113,fp,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,gp,2,0,"th",9)(123,Cp,4,4,"td",10),e.bVm(),e.qex(124,8),e.DNE(125,yp,2,0,"th",9)(126,bp,4,4,"td",10),e.bVm(),e.qex(127,11),e.DNE(128,Fp,2,0,"th",9)(129,xp,4,4,"td",10),e.bVm(),e.qex(130,12),e.DNE(131,vp,2,0,"th",9)(132,Tp,4,4,"td",10),e.bVm(),e.qex(133,13),e.DNE(134,Sp,2,0,"th",9)(135,kp,3,4,"td",10),e.bVm(),e.qex(136,14),e.DNE(137,Rp,2,0,"th",9)(138,Ep,3,5,"td",10),e.bVm(),e.qex(139,20),e.DNE(140,Ip,2,0,"th",16)(141,Lp,4,3,"td",10),e.bVm(),e.qex(142,21),e.DNE(143,wp,2,0,"th",16)(144,jp,4,3,"td",10),e.bVm(),e.qex(145,22),e.DNE(146,Gp,2,0,"th",16)(147,Dp,4,3,"td",10),e.bVm(),e.qex(148,23),e.DNE(149,Np,3,0,"th",24)(150,Pp,3,0,"td",25),e.bVm(),e.qex(151,38),e.DNE(152,Bp,4,3,"td",27),e.bVm(),e.DNE(153,Op,1,3,"tr",28)(154,Vp,1,0,"tr",29)(155,Yp,1,0,"tr",30),e.k0s()()(),e.DNE(156,Xp,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,Up,2,0,"th",9)(166,Hp,4,4,"td",10),e.bVm(),e.qex(167,8),e.DNE(168,qp,2,0,"th",9)(169,zp,4,4,"td",10),e.bVm(),e.qex(170,11),e.DNE(171,Jp,2,0,"th",9)(172,Wp,4,4,"td",10),e.bVm(),e.qex(173,12),e.DNE(174,Qp,2,0,"th",9)(175,Zp,4,4,"td",10),e.bVm(),e.qex(176,13),e.DNE(177,Kp,2,0,"th",9)(178,em,3,4,"td",10),e.bVm(),e.qex(179,14),e.DNE(180,tm,2,0,"th",9)(181,nm,3,5,"td",10),e.bVm(),e.qex(182,33),e.DNE(183,im,2,0,"th",16)(184,am,4,3,"td",10),e.bVm(),e.qex(185,20),e.DNE(186,sm,2,0,"th",16)(187,om,4,3,"td",10),e.bVm(),e.qex(188,21),e.DNE(189,lm,2,0,"th",16)(190,rm,4,3,"td",10),e.bVm(),e.qex(191,22),e.DNE(192,cm,2,0,"th",16)(193,pm,4,3,"td",10),e.bVm(),e.qex(194,23),e.DNE(195,mm,3,0,"th",24)(196,um,3,0,"td",25),e.bVm(),e.qex(197,39),e.DNE(198,fm,4,3,"td",27),e.bVm(),e.DNE(199,gm,1,3,"tr",28)(200,Cm,1,0,"tr",29)(201,ym,1,0,"tr",30),e.k0s()()()()()),2&a&&(e.R7$(2),e.SpI("Total Limbo Balance: ",e.bMT(3,38,i.pendingChannels.total_limbo_balance)," Sats"),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Open (",i.pendingOpenChannelsLength,")"),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.openTableSetting.sortBy)("matSortDirection",i.openTableSetting.sortOrder)("dataSource",i.pendingOpenChannels)("ngClass",e.eq3(40,ye,""!==i.errorMessage)),e.R7$(43),e.Y8G("matFooterRowDef",e.lJ4(42,z1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedOpenColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedOpenColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Force Closing (",i.pendingForceClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.forceClosingTableSetting.sortBy)("matSortDirection",i.forceClosingTableSetting.sortOrder)("dataSource",i.pendingForceClosingChannels)("ngClass",e.eq3(43,ye,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(45,J1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedForceClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedForceClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Closing (",i.pendingClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.closingTableSetting.sortBy)("matSortDirection",i.closingTableSetting.sortOrder)("dataSource",i.pendingClosingChannels)("ngClass",e.eq3(46,ye,""!==i.errorMessage)),e.R7$(34),e.Y8G("matFooterRowDef",e.lJ4(48,W1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Waiting Close (",i.pendingWaitClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.waitingCloseTableSetting.sortBy)("matSortDirection",i.waitingCloseTableSetting.sortOrder)("dataSource",i.pendingWaitClosingChannels)("ngClass",e.eq3(49,ye,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(51,Q1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedWaitClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedWaitClosingColumns))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,U.BS,U.GK,U.Z2,U.WN,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,A.Ld,d.QX,q.VD],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]})}return n})();const Fm=()=>["all"],xm=n=>({"error-border":n,"overflow-auto":!0}),vm=()=>["no_closed_channel"],ce=n=>({width:n}),Tm=n=>({"display-none":n});function Sm(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function km(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Rm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Type"),e.k0s())}function Em(n,s){if(1&n&&(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&n){const t=s.$implicit,a=e.XpG();e.R7$(2),e.Y8G("matTooltip",a.channelClosureType[t.close_type].tooltip),e.R7$(2),e.SpI(" ",a.channelClosureType[t.close_type].name," ")}}function Im(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Peer"),e.k0s())}function Lm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function wm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Pubkey"),e.k0s())}function jm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function Gm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel Point"),e.k0s())}function Dm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function Nm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel ID"),e.k0s())}function Pm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function $m(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Closing Tx Hash"),e.k0s())}function Am(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.closing_tx_hash)}}function Mm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Chain Hash"),e.k0s())}function Bm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chain_hash)}}function Om(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Open Initiator"),e.k0s())}function Vm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.open_initiator,"initiator_"))}}function Ym(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Initiator"),e.k0s())}function Xm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.close_initiator,"initiator_"))}}function Um(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Timelocked Balance (Sats)"),e.k0s())}function Hm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.time_locked_balance)," ")}}function qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function Jm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Close Height"),e.k0s())}function Wm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.close_height)," ")}}function Qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Settled Balance (Sats)"),e.k0s())}function Zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.settled_balance)," ")}}function Km(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function eu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",39)(1,"span",45)(2,"button",50),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onClosedChannelClick(o,i))}),e.EFF(3,"View Info"),e.k0s()()()}}function tu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No closed channel available."),e.k0s())}function nu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting closed channels..."),e.k0s())}function iu(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function au(n,s){if(1&n&&(e.j41(0,"td",51),e.DNE(1,tu,2,0,"p",52)(2,nu,2,0,"p",52)(3,iu,2,1,"p",52),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function su(n,s){if(1&n&&e.nrm(0,"tr",53),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Tm,(null==t.closedChannels?null:t.closedChannels.data)&&(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)>0))}}function ou(n,s){1&n&&e.nrm(0,"tr",54)}function lu(n,s){1&n&&e.nrm(0,"tr",55)}let ru=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.commonService=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:l.md,sortBy:"close_type",sortOrder:l.oi.DESCENDING},this.channelClosureType=l.tj,this.faHistory=b.Int,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=t.closedChannels,this.closedChannelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(t)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.closedChannels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"close_type":i=t.close_type&&this.channelClosureType[t.close_type]&&this.channelClosureType[t.close_type].name?this.channelClosureType[t.close_type].name.toLowerCase():"";break;case"open_initiator":case"close_initiator":i=this.camelCaseWithReplace.transform(t[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"close_type"===this.selFilterBy||"open_initiator"===this.selFilterBy||"close_initiator"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}onClosedChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[t.close_type].name,title:"Close Type",width:30,type:l.UN.STRING},{key:"settled_balance",value:t.settled_balance,title:"Settled Balance",width:30,type:l.UN.NUMBER},{key:"time_locked_balance",value:t.time_locked_balance,title:"Time Locked Balance",width:40,type:l.UN.NUMBER}],[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:30},{key:"capacity",value:t.capacity,title:"Capacity",width:30,type:l.UN.NUMBER},{key:"close_height",value:t.close_height,title:"Close Height",width:40,type:l.UN.NUMBER}],[{key:"remote_alias",value:t.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:t.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:t.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:t.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:l.UN.STRING}]]}}}))}loadClosedChannelsTable(t){this.closedChannels=new c.I6([...t]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-closed-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Sm,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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,km,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Rm,2,0,"th",13)(20,Em,5,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Im,2,0,"th",13)(23,Lm,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,wm,2,0,"th",13)(26,jm,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Gm,2,0,"th",13)(29,Dm,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Nm,2,0,"th",13)(32,Pm,4,4,"td",14),e.bVm(),e.qex(33,19),e.DNE(34,$m,2,0,"th",13)(35,Am,4,4,"td",14),e.bVm(),e.qex(36,20),e.DNE(37,Mm,2,0,"th",13)(38,Bm,4,4,"td",14),e.bVm(),e.qex(39,21),e.DNE(40,Om,2,0,"th",13)(41,Vm,3,4,"td",14),e.bVm(),e.qex(42,22),e.DNE(43,Ym,2,0,"th",13)(44,Xm,3,4,"td",14),e.bVm(),e.qex(45,23),e.DNE(46,Um,2,0,"th",24)(47,Hm,4,3,"td",14),e.bVm(),e.qex(48,25),e.DNE(49,qm,2,0,"th",24)(50,zm,4,3,"td",14),e.bVm(),e.qex(51,26),e.DNE(52,Jm,2,0,"th",24)(53,Wm,4,3,"td",14),e.bVm(),e.qex(54,27),e.DNE(55,Qm,2,0,"th",24)(56,Zm,4,3,"td",14),e.bVm(),e.qex(57,28),e.DNE(58,Km,6,0,"th",29)(59,eu,4,0,"td",14),e.bVm(),e.qex(60,30),e.DNE(61,au,4,3,"td",31),e.bVm(),e.DNE(62,su,1,3,"tr",32)(63,ou,1,0,"tr",33)(64,lu,1,0,"tr",34),e.k0s()(),e.nrm(65,"mat-paginator",35),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Fm).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.closedChannels)("ngClass",e.eq3(15,xm,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(17,vm)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX,q.VD]})}return n})();const cu=()=>["all"],pu=n=>({"error-border":n}),mu=()=>["no_channel"],uu=n=>({"display-none":n});function du(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function hu(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function _u(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Amount (Sats)"),e.k0s())}function fu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.amount)," ")}}function gu(n,s){if(1&n&&(e.qex(0),e.DNE(1,fu,3,3,"span",39),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Cu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,gu,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" Active HTLCs: ",null==t||null==t.pending_htlcs?null:t.pending_htlcs.length," "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function yu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Alias/Incoming"),e.k0s())}function bu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null!=t&&t.incoming?"Yes":"No"," ")}}function Fu(n,s){if(1&n&&(e.qex(0),e.DNE(1,bu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function xu(n,s){if(1&n&&(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&n){const t=s.$implicit;e.R7$(2),e.JRh(null==t?null:t.remote_alias),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function vu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Forwarding Channel"),e.k0s())}function Tu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.forwarding_channel," ")}}function Su(n,s){if(1&n&&(e.qex(0),e.DNE(1,Tu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function ku(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Su,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Ru(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"HTLC Index"),e.k0s()())}function Eu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.htlc_index)," ")}}function Iu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Eu,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Lu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Iu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function wu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Forwarding HTLC Index"),e.k0s()())}function ju(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.forwarding_htlc_index)," ")}}function Gu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ju,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Du(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Gu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Nu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Expiration Height"),e.k0s()())}function Pu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t?null:t.expiration_height,"1.0-0")," ")}}function $u(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Pu,3,4,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Au(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,$u,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Mu(n,s){1&n&&(e.j41(0,"th",43)(1,"span",40),e.EFF(2,"Hash Lock"),e.k0s()())}function Bu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.hash_lock," ")}}function Ou(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Bu,2,1,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Vu(n,s){if(1&n&&(e.j41(0,"td",44)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Ou,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Yu(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Xu(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",53)(1,"button",54),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG();return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Uu(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,Xu,3,1,"div",52),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Hu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"span",50)(2,"button",51),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!i.is_expanded)}),e.EFF(3),e.k0s()(),e.DNE(4,Uu,2,1,"div",38),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function qu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No active htlc available."),e.k0s())}function zu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting active htlcs..."),e.k0s())}function Ju(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Wu(n,s){if(1&n&&(e.j41(0,"td",55),e.DNE(1,qu,2,0,"p",38)(2,zu,2,0,"p",38)(3,Ju,2,1,"p",38),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Qu(n,s){if(1&n&&e.nrm(0,"tr",56),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,uu,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Zu(n,s){1&n&&e.nrm(0,"tr",57)}function Ku(n,s){1&n&&e.nrm(0,"tr",58)}let ed=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:l.md,sortBy:"expiration_height",sortOrder:l.oi.DESCENDING},this.channels=new c.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=t.channels?.filter(a=>a.pending_htlcs&&a.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:a.remote_alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"amount",value:t.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"incoming",value:t.incoming?"Yes":"No",title:"Incoming",width:50,type:l.UN.STRING}],[{key:"expiration_height",value:t.expiration_height,title:"Expiration Height",width:50,type:l.UN.NUMBER},{key:"hash_lock",value:t.hash_lock,title:"Hash Lock",width:50,type:l.UN.STRING}]]}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?(t.remote_alias?t.remote_alias.toLowerCase():"")+t.pending_htlcs?.map(o=>JSON.stringify(o)+(o.incoming?"yes":"no")):typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadHTLCsTable(t){this.channels=new c.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>{switch(i){case"amount":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a.pending_htlcs&&a.pending_htlcs.length?a.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(a.pending_htlcs,i,"boolean",this.sort?.direction),a.remote_alias?a.remote_alias:a.remote_pubkey?a.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a;default:return a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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((i,o)=>i.concat(o.pending_htlcs?o.pending_htlcs:o),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,du,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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,hu,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,_u,2,0,"th",13)(20,Cu,4,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,yu,2,0,"th",13)(23,xu,4,2,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,vu,2,0,"th",13)(26,ku,4,2,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Ru,3,0,"th",18)(29,Lu,4,2,"td",14),e.bVm(),e.qex(30,19),e.DNE(31,wu,3,0,"th",18)(32,Du,4,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nu,3,0,"th",18)(35,Au,4,2,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Mu,3,0,"th",22)(38,Vu,4,2,"td",23),e.bVm(),e.qex(39,24),e.DNE(40,Yu,6,0,"th",25)(41,Hu,5,2,"td",26),e.bVm(),e.qex(42,27),e.DNE(43,Wu,4,3,"td",28),e.bVm(),e.DNE(44,Qu,1,3,"tr",29)(45,Zu,1,0,"tr",30)(46,Ku,1,0,"tr",31),e.k0s()(),e.nrm(47,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,cu).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,pu,""!==i.errorMessage)),e.R7$(28),e.Y8G("matFooterRowDef",e.lJ4(17,mu)),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:[d.YU,d.Sq,d.bT,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.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 n})();function td(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Wallet password is required."),e.k0s())}let nd=(()=>{class n{constructor(t){this.store=t,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,v.WE)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-unlock-wallet"]],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(a,i){1&a&&(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(r){return e.DH7(i.walletPassword,r)||(i.walletPassword=r),r}),e.k0s(),e.j41(6,"mat-hint"),e.EFF(7,"Enter Wallet Password"),e.k0s(),e.DNE(8,td,2,0,"mat-error",4),e.k0s(),e.j41(9,"div",5)(10,"button",6),e.bIt("click",function(){return i.resetData()}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",7),e.bIt("click",function(){return i.onUnlockWallet()}),e.EFF(13,"Unlock Wallet"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.walletPassword),e.R7$(3),e.Y8G("ngIf",!i.walletPassword))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,Z.N]})}return n})();var id=g(7768);function ad(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return i.proceed=!1,e.Njj(i.warnRes=!0)}),e.EFF(6,"Do Not Proceed"),e.k0s(),e.j41(7,"button",9),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.proceed=!0,e.Njj(i.warnRes=!0)}),e.EFF(8,"Proceed"),e.k0s()()()()}}function sd(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.warnRes=!1)}),e.EFF(5,"Go Back"),e.k0s()()()}}function od(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function ld(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password must be at least 8 characters in length."),e.k0s())}function rd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password is required."),e.k0s())}function cd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password must be at least 8 characters in length."),e.k0s())}function pd(n,s){1&n&&(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 md(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Cipher seed is required."),e.k0s())}function ud(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.k0s())}function dd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Passphrase is required."),e.k0s())}function hd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"vpn_key"),e.k0s())}function _d(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"swap_calls"),e.k0s())}function fd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"fingerprint"),e.k0s())}function gd(n,s){if(1&n){const t=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,od,2,0,"mat-error",2)(11,ld,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,rd,2,0,"mat-error",2)(19,cd,2,0,"mat-error",2),e.k0s(),e.DNE(20,pd,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,md,2,0,"mat-error",2)(36,ud,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,dd,2,0,"mat-error",2),e.k0s()(),e.j41(54,"div",28)(55,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInitWallet())}),e.EFF(60,"Initialize Wallet"),e.k0s()()()(),e.DNE(61,hd,2,0,"ng-template",38)(62,_d,2,0,"ng-template",39)(63,fd,2,0,"ng-template",40),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",t.passwordFormGroup),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.R7$(),e.Y8G("ngIf",(null==t.passwordFormGroup.errors?null:t.passwordFormGroup.errors.unmatchedPasswords)&&(t.passwordFormGroup.controls.initWalletPassword.touched||t.passwordFormGroup.controls.initWalletPassword.dirty)&&(t.passwordFormGroup.controls.initWalletConfirmPassword.touched||t.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.R7$(4),e.Y8G("stepControl",t.cipherFormGroup),e.R7$(),e.Y8G("formGroup",t.cipherFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.required),e.R7$(),e.Y8G("ngIf",!(null!=t.cipherFormGroup.controls.cipherSeed.errors&&t.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.R7$(6),e.Y8G("stepControl",t.passphraseFormGroup),e.R7$(),e.Y8G("formGroup",t.passphraseFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.passphraseFormGroup.controls.passphrase.errors?null:t.passphraseFormGroup.controls.passphrase.errors.required)}}function Cd(n,s){if(1&n&&(e.j41(0,"span",48),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function yd(n,s){if(1&n){const t=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,Cd,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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(14,"Go To Home"),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngForOf",t.genSeedResponse)}}function bd(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(6,"Restart"),e.k0s()()()()}}function Fd(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(8,"Go To Home"),e.k0s()()()()}}function xd(n){const s=n.get("initWalletPassword"),t=n.get("initWalletConfirmPassword");return s&&t&&s.value!==t.value?{unmatchedPasswords:!0}:null}function vd(n){const s=n.value.toString().trim().split(",")||[];return s&&24!==s.length?{invalidCipher:!0}:null}let Td=(()=>{class n{constructor(t,a,i){this.store=t,this.formBuilder=a,this.lndEffects=i,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[m.k0.required,m.k0.minLength(8)]],initWalletConfirmPassword:["",[m.k0.required,m.k0.minLength(8)]]},{validators:xd}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[vd]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,_.Q)(this.unsubs[0])).subscribe(t=>{t?(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,_.Q)(this.unsubs[1])).subscribe(t=>{t?(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,_.Q)(this.unsubs[2])).subscribe(t=>{this.initWalletResponse=t}),this.lndEffects.genSeedResponse.pipe((0,_.Q)(this.unsubs[3])).subscribe(t=>{this.genSeedResponse=t,this.store.dispatch((0,v.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 t=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,v.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t}}))}else this.store.dispatch((0,v.oX)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,v.X9)()),this.store.dispatch((0,v.Br)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(m.ze),e.rXU(re.L))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-initialize-wallet"]],viewQuery:function(a,i){if(1&a&&e.GBs(H.M6,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},features:[e.Jv_([{provide:id.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"],["fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet",3,"labelPosition"],["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"],["fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet",3,"labelPosition"],["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(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,ad,9,0,"div",2)(2,sd,6,0,"div",3)(3,gd,64,17,"mat-vertical-stepper",4)(4,yd,15,1,"div",2)(5,bd,7,0,"div",2)(6,Fd,9,0,"div",2),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.insecureLND&&!i.warnRes),e.R7$(),e.Y8G("ngIf",i.warnRes&&!i.proceed),e.R7$(),e.Y8G("ngIf",(!i.insecureLND||i.warnRes&&i.proceed)&&i.genSeedResponse.length<=0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""!==i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length<=0&&""!==i.initWalletResponse))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.cV,m.j4,m.JD,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,_e.sG,H.V5,H.M6,H.F7,H.FR,H.xJ]})}return n})(),Sd=(()=>{class n{constructor(){this.faWallet=b.BA1}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-wallet"]],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(a,i){1&a&&(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&a&&(e.R7$(),e.Y8G("icon",i.faWallet))},dependencies:[M.aY,h.DJ,h.sA,T.RN,T.m2,P.mq,P.T8,nd,Td]})}return n})();function kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Rd=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faExchangeAlt=b._qq,this.faChartPie=b.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1]),(0,de.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.currencyUnits=i?.settings.currencyUnits||[],this.balances=i?.settings.userPersona===l.HW.OPERATOR?[{title:"Local Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,kd,2,3,"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&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk]})}return n})();function Ed(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Id=(()=>{class n{constructor(t){this.router=t,this.faSearch=b.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-graph"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,Ed,2,3,"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&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faSearch),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();const Ld=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),je=n=>({width:n});function wd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Destination pubkey is required."),e.k0s())}function jd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gd(n,s){1&n&&e.nrm(0,"mat-progress-bar",39)}function Dd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Hop"),e.k0s())}function Nd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.hop_sequence)}}function Pd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer"),e.k0s())}function $d(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pubkey_alias)}}function Ad(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer Pubkey"),e.k0s())}function Md(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function Bd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Channel ID"),e.k0s())}function Od(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function Vd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"TLV Payload"),e.k0s())}function Yd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.tlv_payload?"Yes":"No")}}function Xd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Expiry"),e.k0s())}function Ud(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.expiry))}}function Hd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.chan_capacity))}}function zd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Amount To Fwd (Sats)"),e.k0s())}function Jd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_to_forward)," ")}}function Wd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Fee (mSats)"),e.k0s())}function Qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.fee_msat)," ")}}function Zd(n,s){1&n&&(e.j41(0,"th",46)(1,"div",47),e.EFF(2,"Actions"),e.k0s()())}function Kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onHopClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function eh(n,s){1&n&&e.nrm(0,"tr",50)}function th(n,s){1&n&&e.nrm(0,"tr",51)}let nh=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:l.md,sortBy:"hop_sequence",sortOrder:l.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new c.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=b.TBz,this.faExclamationTriangle=b.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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,_.Q)(this.unSubs[1])).subscribe(t=>{this.qrHops=new c.I6([]),t.routes&&t.routes.length&&t.routes.length>0&&t.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new c.I6([...t.routes[0].hops]),this.qrHops.data=t.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new c.I6([]),this.flgLoading[0]=!0,this.store.dispatch((0,v.T4)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:t.hop_sequence,title:"Sequence",width:33,type:l.UN.NUMBER},{key:"amt_to_forward",value:t.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:34,type:l.UN.NUMBER}],[{key:"chan_capacity",value:t.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:l.UN.NUMBER},{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:l.UN.NUMBER}],[{key:"pubkey_alias",value:t.pubkey_alias,title:"Peer Alias",width:50,type:l.UN.STRING},{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING}],[{key:"pub_key",value:t.pub_key,title:"Peer Pubkey",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-query-routes"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",3)(1,"form",4,0),e.bIt("ngSubmit",function(){e.eBV(o);const p=e.sdS(2);return e.Njj(p.form.valid&&i.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(p){return e.eBV(o),e.DH7(i.destinationPubkey,p)||(i.destinationPubkey=p),e.Njj(p)}),e.k0s(),e.DNE(12,wd,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(p){return e.eBV(o),e.DH7(i.amount,p)||(i.amount=p),e.Njj(p)}),e.k0s(),e.DNE(17,jd,2,0,"mat-error",9),e.k0s(),e.j41(18,"div",12)(19,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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,Gd,1,0,"mat-progress-bar",20),e.j41(30,"table",21,2),e.qex(32,22),e.DNE(33,Dd,2,0,"th",23)(34,Nd,2,1,"td",24),e.bVm(),e.qex(35,25),e.DNE(36,Pd,2,0,"th",23)(37,$d,4,4,"td",24),e.bVm(),e.qex(38,26),e.DNE(39,Ad,2,0,"th",23)(40,Md,4,4,"td",24),e.bVm(),e.qex(41,27),e.DNE(42,Bd,2,0,"th",23)(43,Od,4,4,"td",24),e.bVm(),e.qex(44,28),e.DNE(45,Vd,2,0,"th",23)(46,Yd,2,1,"td",24),e.bVm(),e.qex(47,29),e.DNE(48,Xd,2,0,"th",30)(49,Ud,4,3,"td",24),e.bVm(),e.qex(50,31),e.DNE(51,Hd,2,0,"th",30)(52,qd,4,3,"td",24),e.bVm(),e.qex(53,32),e.DNE(54,zd,2,0,"th",30)(55,Jd,4,3,"td",24),e.bVm(),e.qex(56,33),e.DNE(57,Wd,2,0,"th",30)(58,Qd,4,3,"td",24),e.bVm(),e.qex(59,34),e.DNE(60,Zd,3,0,"th",35)(61,Kd,3,0,"td",36),e.bVm(),e.DNE(62,eh,1,0,"tr",37)(63,th,1,0,"tr",38),e.k0s()()()}2&a&&(e.R7$(4),e.Y8G("icon",i.faExclamationTriangle),e.R7$(6),e.R50("ngModel",i.destinationPubkey),e.R7$(2),e.Y8G("ngIf",!i.destinationPubkey),e.R7$(4),e.Y8G("step",1e3)("min",0),e.R50("ngModel",i.amount),e.R7$(),e.Y8G("ngIf",!i.amount),e.R7$(8),e.Y8G("icon",i.faRoute),e.R7$(4),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.qrHops)("ngClass",e.eq3(15,Ld,"error"===i.flgLoading[0])),e.R7$(32),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns))},dependencies:[d.YU,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.TL,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,te.V,d.QX]})}return n})();var pe=g(5951);function ih(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1"),e.k0s())}function ah(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1 (Your Node)"),e.k0s())}function sh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2"),e.k0s())}function oh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2 (Your Node)"),e.k0s())}function lh(n,s){if(1&n&&(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,ih,2,0,"h3",12)(32,ah,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,sh,2,0,"h3",12)(78,oh,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&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.channel_id),e.R7$(5),e.JRh(t.lookupResult.chan_point),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(20,39,1e3*t.lookupResult.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(26,42,t.lookupResult.capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(4),e.Y8G("ngIf",!t.node1_match),e.R7$(),e.Y8G("ngIf",t.node1_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node1_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node1_policy&&t.lookupResult.node1_policy.disabled?"Yes":"No"),e.R7$(3),e.Y8G("ngIf",!t.node2_match),e.R7$(),e.Y8G("ngIf",t.node2_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node2_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node2_policy&&t.lookupResult.node2_policy.disabled?"Yes":"No")}}let rh=(()=>{class n{constructor(t){this.store=t,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.lookupResult.node1_pub===t.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===t.identity_pubkey&&(this.node2_match=!0)})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},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(a,i){1&a&&e.DNE(0,lh,121,44,"div",0),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.bT,h.DJ,h.sA,h.UI,ee.q,d.QX,d.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})();const ch=n=>({"background-color":n});function ph(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Lme("",a.nodeFeaturesEnum[t.value.name]||t.value.name,": ",t.value.is_required?"Mandatory":"Optional","")}}function mh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Network"),e.k0s())}function uh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.network)}}function dh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Address"),e.k0s())}function hh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.addr)}}function _h(n,s){1&n&&(e.j41(0,"th",29)(1,"div",30),e.EFF(2,"Actions"),e.k0s()())}function fh(n,s){if(1&n){const t=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 i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onConnectNode(i))}),e.EFF(5,"Connect"),e.k0s(),e.j41(6,"mat-option",35),e.bIt("copied",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onCopyNodeURI(i))}),e.EFF(7,"Copy URI"),e.k0s()()()()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(6),e.Y8G("payload",a.lookupResult.node.pub_key+"@"+t.addr)}}function gh(n,s){1&n&&e.nrm(0,"tr",36)}function Ch(n,s){1&n&&e.nrm(0,"tr",37)}function yh(n,s){if(1&n&&(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,ph,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,mh,2,0,"th",19)(51,uh,2,1,"td",20),e.bVm(),e.qex(52,21),e.DNE(53,dh,2,0,"th",19)(54,hh,2,1,"td",20),e.bVm(),e.qex(55,22),e.DNE(56,_h,3,0,"th",23)(57,fh,8,1,"td",24),e.bVm(),e.DNE(58,gh,1,0,"tr",25)(59,Ch,1,0,"tr",26),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.node.alias),e.R7$(),e.Y8G("ngStyle",e.eq3(24,ch,null==t.lookupResult.node?null:t.lookupResult.node.color)),e.R7$(),e.JRh(null==t.lookupResult.node?null:t.lookupResult.node.color),e.R7$(5),e.JRh(t.lookupResult.node.pub_key),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(22,15,1e3*t.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(28,18,t.lookupResult.total_capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(36,20,t.lookupResult.num_channels)),e.R7$(5),e.Y8G("ngForOf",e.bMT(41,22,t.lookupResult.node.features)),e.R7$(2),e.Y8G("inset",!0),e.R7$(5),e.Y8G("dataSource",t.lookupResult.node.addresses),e.R7$(11),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}let bh=(()=>{class n{constructor(t,a,i){this.logger=t,this.snackBar=a,this.store=i,this.nodeFeaturesEnum=l._U,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0})}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}onConnectNode(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:t.addr},information:this.information,balance:this.availableBalance},component:Ze}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(ae.UG),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},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(a,i){1&a&&e.DNE(0,yh,60,26,"div",1),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,ee.q,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,ge.U,d.QX,d.vh,d.lG]})}return n})();const Fh=n=>({"mt-1":!0,"mt-2":n}),xh=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function vh(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Th(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function Sh(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function kh(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,Sh,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,xh,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function Rh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-node-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Eh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-channel-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Ih(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function Lh(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,Rh,2,1,"span",25)(6,Eh,2,1,"span",25)(7,Ih,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let et=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,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=b.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.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,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&t.payload.hasOwnProperty("node")||1===this.selectedFieldId&&t.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!t.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!t.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&"Lookup"===t.payload.action&&(this.errorMessage="",t.payload.status===l.wn.ERROR&&(this.errorMessage="object"==typeof t.payload.message?JSON.stringify(t.payload.message):t.payload.message),t.payload.status===l.wn.INITIATED&&(this.errorMessage=l.MZ.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,v.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookups"]],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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.selectedFieldId,p)||(i.selectedFieldId=p),e.Njj(p)}),e.bIt("change",function(p){return e.eBV(o),e.Njj(i.onSelectChange(p))}),e.DNE(7,vh,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(p){return e.eBV(o),e.DH7(i.lookupKey,p)||(i.lookupKey=p),e.Njj(p)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,Th,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,kh,3,5,"div",15)(20,Lh,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,Fh,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,rh,bh],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})();var Ge=g(5084);function wh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function jh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function Gh(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",28),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Dh=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faMapSigns=b.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 u.B,new u.B,new u.B]}ngOnInit(){this.onEventsFetch();const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,v.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,v.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,v.kv)({payload:{forwarding_events:[]}})),this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.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(p){return e.eBV(o),e.DH7(i.startDate,p)||(i.startDate=p),e.Njj(p)}),e.k0s(),e.nrm(16,"mat-datepicker-toggle",17)(17,"mat-datepicker",18,2),e.DNE(19,wh,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(p){return e.eBV(o),e.DH7(i.endDate,p)||(i.endDate=p),e.Njj(p)}),e.k0s(),e.nrm(25,"mat-datepicker-toggle",17)(26,"mat-datepicker",18,4),e.DNE(28,jh,2,0,"mat-error",19),e.k0s()(),e.j41(29,"div",21)(30,"button",22),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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,Gh,2,3,"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&a){const o=e.sdS(15),r=e.sdS(18),p=e.sdS(24),F=e.sdS(27),C=e.sdS(38);e.R7$(2),e.Y8G("icon",i.faMapSigns),e.R7$(12),e.Y8G("matDatepicker",r)("max",i.today),e.R50("ngModel",i.startDate),e.R7$(2),e.Y8G("for",r),e.R7$(),e.Y8G("startAt",i.startDate),e.R7$(2),e.Y8G("ngIf",o.errors),e.R7$(4),e.Y8G("matDatepicker",F)("min",i.startDate)("max",i.today),e.R50("ngModel",i.endDate),e.R7$(2),e.Y8G("for",F),e.R7$(),e.Y8G("startAt",i.endDate),e.R7$(2),e.Y8G("ngIf",p.errors),e.R7$(7),e.Y8G("tabPanel",C),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.RN,T.m2,Ge.Vh,Ge.bZ,Ge.bU,$.fg,f.rl,f.nJ,f.TL,f.yw,P.Bu,P.hQ,P.Ql,We.z,te.V,x.n3,x.Wk]})}return n})();const Nh=()=>["all"],Ph=()=>["no_event"],be=n=>({width:n}),$h=n=>({"display-none":n});function Ah(n,s){if(1&n&&(e.j41(0,"div",6),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function Mh(n,s){if(1&n&&(e.j41(0,"mat-option",14),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Bh(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Mh,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(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(6),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Nh).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function Oh(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Vh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Timestamp"),e.k0s())}function Yh(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.timestamp,"dd/MMM/y HH:mm"))}}function Xh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Alias"),e.k0s())}function Uh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_in)}}function Hh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Channel"),e.k0s())}function qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_in)}}function zh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Alias"),e.k0s())}function Jh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_out)}}function Wh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Channel"),e.k0s())}function Qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_out)}}function Zh(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Inbound Amount (Sats)"),e.k0s())}function Kh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_in))}}function e_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Outbound Amount (Sats)"),e.k0s())}function t_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_out))}}function n_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Fee (mSats)"),e.k0s())}function i_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_msat))}}function a_(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function s_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onForwardingEventClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function o_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No forwarding history available."),e.k0s())}function l_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting forwarding history..."),e.k0s())}function r_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function c_(n,s){if(1&n&&(e.j41(0,"td",50),e.DNE(1,o_,2,0,"p",51)(2,l_,2,0,"p",51)(3,r_,2,1,"p",51),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function p_(n,s){if(1&n&&e.nrm(0,"tr",52),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,$h,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function m_(n,s){1&n&&e.nrm(0,"tr",53)}function u_(n,s){1&n&&e.nrm(0,"tr",54)}function d_(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,Oh,1,0,"mat-progress-bar",16),e.j41(2,"table",17,0),e.qex(4,18),e.DNE(5,Vh,2,0,"th",19)(6,Yh,3,4,"td",20),e.bVm(),e.qex(7,21),e.DNE(8,Xh,2,0,"th",19)(9,Uh,4,4,"td",20),e.bVm(),e.qex(10,22),e.DNE(11,Hh,2,0,"th",19)(12,qh,4,4,"td",20),e.bVm(),e.qex(13,23),e.DNE(14,zh,2,0,"th",19)(15,Jh,4,4,"td",20),e.bVm(),e.qex(16,24),e.DNE(17,Wh,2,0,"th",19)(18,Qh,4,4,"td",20),e.bVm(),e.qex(19,25),e.DNE(20,Zh,2,0,"th",26)(21,Kh,4,3,"td",20),e.bVm(),e.qex(22,27),e.DNE(23,e_,2,0,"th",26)(24,t_,4,3,"td",20),e.bVm(),e.qex(25,28),e.DNE(26,n_,2,0,"th",26)(27,i_,4,3,"td",20),e.bVm(),e.qex(28,29),e.DNE(29,a_,6,0,"th",30)(30,s_,3,0,"td",31),e.bVm(),e.qex(31,32),e.DNE(32,c_,4,3,"td",33),e.bVm(),e.DNE(33,p_,1,3,"tr",34)(34,m_,1,0,"tr",35)(35,u_,1,0,"tr",36),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(7,Ph)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function h_(n,s){if(1&n&&e.nrm(0,"mat-paginator",55),2&n){const t=e.XpG();e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let tt=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:l.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,t.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),t.selFilter&&!t.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=t.forwardingHistory.forwarding_events||[],this.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}onForwardingEventClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:t.timestamp,title:"Timestamp",width:25,type:l.UN.DATE_TIME},{key:"amt_in",value:t.amt_in,title:"Inbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"amt_out",value:t.amt_out,title:"Outbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:25,type:l.UN.NUMBER}],[{key:"alias_in",value:t.alias_in,title:"Inbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_in",value:t.chan_id_in,title:"Inbound Channel ID",width:25,type:l.UN.STRING},{key:"alias_out",value:t.alias_out,title:"Outbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_out",value:t.chan_id_out,title:"Outbound Channel ID",width:25,type:l.UN.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.timestamp?this.datePipe.transform(new Date(1e3*t.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"timestamp":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new c.I6(t?[...t]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-forwarding-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,Ah,2,1,"div",2)(2,Bh,13,4,"div",3)(3,d_,36,8,"div",4)(4,h_,1,3,"mat-paginator",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,d.vh]})}return n})();const __=["tableIn"],f_=["tableOut"],g_=["paginatorIn"],C_=["paginatorOut"],y_=(n,s)=>({"mt-2":n,"mt-1":s}),b_=()=>["no_incoming_event"],F_=n=>({"mt-2":n}),x_=()=>["no_outgoing_event"],Fe=n=>({width:n}),nt=n=>({"display-none":n});function v_(n,s){if(1&n&&(e.j41(0,"div",7),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function T_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function S_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function k_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function R_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function E_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function I_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function L_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function w_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function j_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function G_(n,s){1&n&&(e.j41(0,"th",41)(1,"div",42),e.EFF(2,"Actions"),e.k0s()())}function D_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",43)(1,"button",44),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onRoutingPeerClick(o,i,"in"))}),e.EFF(2,"View Info"),e.k0s()()}}function N_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No incoming routing peer available."),e.k0s())}function P_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting incoming routing peers..."),e.k0s())}function $_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function A_(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,N_,2,0,"p",46)(2,P_,2,0,"p",46)(3,$_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function M_(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function B_(n,s){1&n&&e.nrm(0,"tr",48)}function O_(n,s){1&n&&e.nrm(0,"tr",49)}function V_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function Y_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function X_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function U_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function H_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function q_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function z_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function J_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function W_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function Q_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No outgoing routing peer available."),e.k0s())}function Z_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting outgoing routing peers..."),e.k0s())}function K_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function e0(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,Q_,2,0,"p",46)(2,Z_,2,0,"p",46)(3,K_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function t0(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function n0(n,s){1&n&&e.nrm(0,"tr",48)}function i0(n,s){1&n&&e.nrm(0,"tr",49)}function a0(n,s){if(1&n&&(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,T_,1,0,"mat-progress-bar",14),e.j41(8,"table",15,0),e.qex(10,16),e.DNE(11,S_,2,0,"th",17)(12,k_,4,4,"td",18),e.bVm(),e.qex(13,19),e.DNE(14,R_,2,0,"th",17)(15,E_,4,4,"td",18),e.bVm(),e.qex(16,20),e.DNE(17,I_,2,0,"th",21)(18,L_,4,3,"td",18),e.bVm(),e.qex(19,22),e.DNE(20,w_,2,0,"th",21)(21,j_,4,3,"td",18),e.bVm(),e.qex(22,23),e.DNE(23,G_,3,0,"th",24)(24,D_,3,0,"td",25),e.bVm(),e.qex(25,26),e.DNE(26,A_,4,3,"td",27),e.bVm(),e.DNE(27,M_,1,3,"tr",28)(28,B_,1,0,"tr",29)(29,O_,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,V_,1,0,"mat-progress-bar",14),e.j41(39,"table",32,2),e.qex(41,16),e.DNE(42,Y_,2,0,"th",17)(43,X_,4,4,"td",18),e.bVm(),e.qex(44,19),e.DNE(45,U_,2,0,"th",17)(46,H_,4,4,"td",18),e.bVm(),e.qex(47,20),e.DNE(48,q_,2,0,"th",21)(49,z_,4,3,"td",18),e.bVm(),e.qex(50,22),e.DNE(51,J_,2,0,"th",21)(52,W_,4,3,"td",18),e.bVm(),e.qex(53,33),e.DNE(54,e0,4,3,"td",27),e.bVm(),e.DNE(55,t0,1,3,"tr",28)(56,n0,1,0,"tr",29)(57,i0,1,0,"tr",30),e.k0s()(),e.nrm(58,"mat-paginator",31,3),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngClass",e.l_i(18,y_,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersIncoming),e.R7$(19),e.Y8G("matFooterRowDef",e.lJ4(21,b_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),e.R7$(3),e.Y8G("ngClass",e.eq3(22,F_,t.screenSize!==t.screenSizeEnum.LG)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersOutgoing),e.R7$(16),e.Y8G("matFooterRowDef",e.lJ4(24,x_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let s0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"total_amount",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.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(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(t,a,i){let o=" Routing Information";o="in"===i?"Incoming"+o:"Outgoing"+o,this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:o,message:[[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:l.UN.STRING}],[{key:"events",value:t.events,title:"Events",width:50,type:l.UN.NUMBER},{key:"total_amount",value:t.total_amount,title:"Total Amount (Sats)",width:50,type:l.UN.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterByIn?JSON.stringify(t).toLowerCase():"string"==typeof t[this.selFilterByIn]?t[this.selFilterByIn].toLowerCase():"boolean"==typeof t[this.selFilterByIn]?t[this.selFilterByIn]?"yes":"no":t[this.selFilterByIn].toString(),i.includes(a)},this.routingPeersOutgoing.filterPredicate=(t,a)=>{let i="";switch(this.selFilterByOut){case"all":i=JSON.stringify(t).toLowerCase();break;case"total_amount":case"total_fee":i=(+(t[this.selFilterByOut]||0)/1e3).toString()||"";break;default:i="string"==typeof t[this.selFilterByOut]?t[this.selFilterByOut].toLowerCase():"boolean"==typeof t[this.selFilterByOut]?t[this.selFilterByOut]?"yes":"no":t[this.selFilterByOut].toString()}return i.includes(a)}}loadRoutingPeersTable(t){if(t.length>0){const a=this.groupRoutingPeers(t);this.routingPeersIncoming=new c.I6(a[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.I6(a[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(t){const a=[],i=[];return t.forEach(o=>{const r=a.find(F=>F.chan_id===o.chan_id_in),p=i.find(F=>F.chan_id===o.chan_id_out);r?(r.events++,r.total_amount=+r.total_amount+ +(o.amt_in||0)):a.push({chan_id:o.chan_id_in,alias:o.alias_in,events:1,total_amount:+(o.amt_in||0)}),p?(p.events++,p.total_amount=+p.total_amount+ +(o.amt_out||0)):i.push({chan_id:o.chan_id_out,alias:o.alias_out,events:1,total_amount:+(o.amt_out||0)})}),[this.commonService.sortDescByKey(a,"total_amount"),this.commonService.sortDescByKey(i,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(__,5,k.B4),e.GBs(f_,5,k.B4),e.GBs(g_,5),e.GBs(C_,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sortIn=o.first),e.mGM(o=e.lsd())&&(i.sortOut=o.first),e.mGM(o=e.lsd())&&(i.paginatorIn=o.first),e.mGM(o=e.lsd())&&(i.paginatorOut=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,v_,2,1,"div",5)(2,a0,60,25,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld,d.QX]})}return n})();function o0(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",8),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let l0=(()=>{class n{constructor(t){this.router=t,this.faChartBar=b.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-reports"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(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,o0,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),e.k0s()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faChartBar),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();var it=g(6064),at=g(4655);const r0=n=>({"error-border":n});function c0(n,s){1&n&&e.nrm(0,"mat-progress-bar",17)}function p0(n,s){if(1&n&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.events.total_fee_msat),e.R7$(),e.Lme("",e.i5U(2,3,t.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.bMT(3,6,(null==t.events||null==t.events.forwarding_events?null:t.events.forwarding_events.length)||0)," Events")}}function m0(n,s){1&n&&(e.j41(0,"div",19),e.EFF(1,"No routing report for the selected period"),e.k0s())}function u0(n,s){if(1&n&&(e.j41(0,"div",20),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(2,r0,"Getting Forwarding History..."!==t.errorMessage&&""!==t.errorMessage)),e.R7$(),e.JRh(t.errorMessage)}}function d0(n,s){if(1&n&&(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&n){const t=s.model,a=e.XpG(2);e.R7$(2),e.SpI("Events: ",e.bMT(3,2,(a.selReportBy===a.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),e.R7$(3),e.SpI("Fee: ",e.i5U(6,4,(a.selReportBy===a.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function h0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical",21),e.bIt("select",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,d0,7,7,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function _0(n,s){if(1&n&&e.nrm(0,"rtl-forwarding-history",23),2&n){const t=e.XpG();e.Y8G("pageId","reports")("tableId","routing")("eventsData",null==t.events?null:t.events.forwarding_events)("selFilter",t.eventFilterValue)}}let f0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.dataService=a,this.commonService=i,this.store=o,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.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=l.f7,this.errorMessage="",this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(t,a){this.errorMessage=l.MZ.GET_FORWARDING_HISTORY;const i=Math.round(t.getTime()/1e3).toString(),o=Math.round(a.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",i,o).pipe((0,_.Q)(this.unSubs[2])).subscribe({next:r=>{this.errorMessage="",r.forwarding_events&&r.forwarding_events.length?(r.forwarding_events=r.forwarding_events.reverse(),this.events=r,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(t):this.prepareFeeReport(t)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:r=>{this.errorMessage=r}})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===l.rs[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}prepareEventsReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.KR[t].days+1:l.KR[t].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(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(K.u),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},decls:20,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"],["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"],[3,"pageId","tableId","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"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.j41(2,"div",3)(3,"mat-radio-group",4),e.mxI("ngModelChange",function(r){return e.DH7(i.selReportBy,r)||(i.selReportBy=r),r}),e.bIt("change",function(){return i.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,c0,1,0,"mat-progress-bar",8),e.j41(11,"div",9),e.DNE(12,p0,4,8,"div",10)(13,m0,2,0,"div",11)(14,u0,2,4,"div",12),e.j41(15,"div",13),e.DNE(16,h0,3,11,"ngx-charts-bar-vertical",14),e.k0s()(),e.j41(17,"div",15)(18,"div",13),e.DNE(19,_0,1,4,"rtl-forwarding-history",16),e.k0s()()()),2&a&&(e.R7$(3),e.R50("ngModel",i.selReportBy),e.R7$(3),e.FS9("value",i.reportBy.FEES),e.R7$(2),e.FS9("value",i.reportBy.EVENTS),e.R7$(2),e.Y8G("ngIf","Getting Forwarding History..."===i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(),e.Y8G("ngIf",(i.routingReportData.length<=0||i.events.forwarding_events.length<=0)&&""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(3),e.Y8G("ngIf",i.events&&(null==i.events?null:i.events.forwarding_events)&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0))},dependencies:[d.YU,d.bT,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,B.HM,pe.VT,pe._g,it.L8,at.m,tt,d.QX],data:{animation:[Le.q]}})}return n})();var g0=g(9584),C0=g(5085);function y0(n,s){1&n&&(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 b0(n,s){if(1&n&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function F0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Paid ",e.i5U(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function x0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Received ",e.i5U(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function v0(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,F0,4,7,"div",16)(2,x0,4,7,"div",16),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.transactionsReportSummary),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod>0),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function T0(n,s){1&n&&(e.j41(0,"div",18),e.EFF(1,"No transactions report for the selected period"),e.k0s())}function S0(n,s){if(1&n&&(e.j41(0,"span",21),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=s.model;e.R7$(),e.LHq("",t.name,": ",e.i5U(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",e.bMT(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function k0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical-2d",20),e.bIt("select",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,S0,4,9,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG(2);e.Y8G("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:8)}}function R0(n,s){if(1&n&&(e.j41(0,"div",10),e.DNE(1,k0,3,13,"ngx-charts-bar-vertical-2d",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.transactionsReportData.length>0&&t.transactionsNonZeroReportData.length>0)}}function E0(n,s){if(1&n&&e.nrm(0,"rtl-transactions-report-table",22),2&n){const t=e.XpG();e.Y8G("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let I0=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.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=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(g0.av).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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(y.n_).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{t.apiCallStatus.status===l.wn.UN_INITIATED&&this.store.dispatch((0,v.tG)()),this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=t.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=t.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(t)}),this.commonService.containerSizeUpdated.pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===l.rs[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,a){const i=Math.round(t.getTime()/1e3),o=Math.round(a.getTime()/1e3),r=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const p=this.payments?.filter(C=>"SUCCEEDED"===C.status&&C.creation_date&&C.creation_date>=i&&C.creation_dateC.settled&&C.creation_date&&+C.creation_date>=i&&+C.creation_date{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let C=0;C{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((t,a)=>a.series[0].extra.total>0||a.series[1].extra.total>0?t.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}):t,[])}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.KR[t].days+1:l.KR[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},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(a,i){1&a&&(e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"rtl-horizontal-scroller",4),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.DNE(4,y0,4,0,"div",5)(5,b0,2,1,"div",6)(6,v0,3,3,"div",7)(7,T0,2,0,"div",8)(8,R0,2,1,"div",9),e.j41(9,"div",10),e.DNE(10,E0,1,5,"rtl-transactions-report-table",11),e.k0s()()()()),2&a&&(e.R7$(4),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.ERROR),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length<=0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(2),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,it.Dl,at.m,C0.T,d.QX],data:{animation:[Le.q]}})}return n})();const L0=["form"];function w0(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle)}}function j0(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"UTXO Label is required."),e.k0s())}function G0(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.labelError)}}function D0(n,s){if(1&n&&(e.j41(0,"div",19),e.nrm(1,"fa-icon",18),e.DNE(2,G0,2,1,"span",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.labelError)}}let N0=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.snackBar=r,this.commonService=p,this.faExclamationTriangle=b.zpE,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.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,_.Q)(this.unSubs[0])).subscribe({next:t=>{this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:t=>{this.labelError=t}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(K.u),e.rXU(I.il),e.rXU(ae.UG),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(a,i){if(1&a&&e.GBs(L0,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},decls:23,vars:5,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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.onLabelUTXO())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.DNE(11,w0,4,1,"div",9),e.j41(12,"mat-form-field",10)(13,"mat-label"),e.EFF(14,"UTXO Label"),e.k0s(),e.j41(15,"input",11),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.label,p)||(i.label=p),e.Njj(p)}),e.k0s(),e.DNE(16,j0,2,0,"mat-error",12),e.k0s(),e.DNE(17,D0,3,2,"div",13),e.j41(18,"div",14)(19,"button",15),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",16),e.EFF(22,"Label UTXO"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(5),e.Y8G("ngIf",i.label.toLowerCase().includes("sweep")&&"0"===i.utxo.confirmations),e.R7$(4),e.R50("ngModel",i.label),e.R7$(),e.Y8G("ngIf",!i.label),e.R7$(),e.Y8G("ngIf",""!==i.labelError))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,Z.N]})}return n})();const st=()=>["all"],P0=n=>({"error-border":n}),$0=()=>["no_utxo"],De=n=>({width:n}),A0=n=>({"display-none":n});function M0(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function B0(n,s){1&n&&e.nrm(0,"mat-progress-bar",35)}function O0(n,s){1&n&&e.nrm(0,"th",36)}function V0(n,s){1&n&&(e.j41(0,"span",39)(1,"mat-icon",40),e.EFF(2,"warning"),e.k0s()())}function Y0(n,s){if(1&n&&(e.j41(0,"td",37),e.DNE(1,V0,3,0,"span",38),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(),i=e.sdS(52);e.R7$(),e.Y8G("ngIf",t.amount_sat0))}}function df(n,s){1&n&&e.nrm(0,"tr",57)}function hf(n,s){1&n&&e.nrm(0,"tr",58)}function _f(n,s){1&n&&e.nrm(0,"mat-icon",40)}let ff=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=p,this.camelCaseWithReplace=F,this.snackBar=C,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=b.ymQ,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:l.md,sortBy:"tx_id",sortOrder:l.oi.DESCENDING},this.addressType=l.aG,this.displayedColumns=[],this.listUTXOs=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.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(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=t.utxos?.filter(a=>+(a.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(t)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.label?t.label.toLowerCase():"")+(t.outpoint?.txid_str?t.outpoint.txid_str.toLowerCase():"")+(t.outpoint?.output_index?t.outpoint?.output_index:"")+(t.outpoint?.txid_bytes?t.outpoint?.txid_bytes.toLowerCase():"")+(t.address?t.address.toLowerCase():"")+(t.address_type?this.addressType[t.address_type].name.toLowerCase():"")+(t.amount_sat?t.amount_sat:"")+(t.confirmations?t.confirmations:"");break;case"is_dust":i=+(t?.amount_sat||0)"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}onUTXOClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:t.outpoint?.txid_str,title:"Transaction ID",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"output_index",value:t.outpoint?.output_index,title:"Output Index",width:34,type:l.UN.NUMBER},{key:"amount_sat",value:t.amount_sat,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"confirmations",value:t.confirmations,title:"Confirmations",width:33,type:l.UN.NUMBER}],[{key:"address_type",value:t.address_type?this.addressType[t.address_type].name:"",title:"Address Type",width:34},{key:"address",value:t.address,title:"Address",width:66}],[{key:"pk_script",value:t.pk_script,title:"PK Script",width:100,type:l.UN.STRING}]]}}}))}loadUTXOsTable(t){this.listUTXOs=new c.I6([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(a,i)=>{switch(i){case"is_dust":return+(a.amount_sat||0){i&&this.dataService.leaseUTXO(t.outpoint?.txid_bytes||"",t.outpoint?.output_index||0).pipe((0,_.Q)(this.unSubs[0])).subscribe({next:o=>{this.snackBar.open("The UTXO has been leased till "+new Date(o).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:o=>{this.snackBar.open(o+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{selUTXO:t,component:Ke}}}))}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u),e.rXU(I.il),e.rXU(me.H),e.rXU(d.QX),e.rXU(q.VD),e.rXU(ae.UG))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,M0,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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",9)(14,"div",10),e.DNE(15,B0,1,0,"mat-progress-bar",11),e.j41(16,"table",12,0),e.qex(18,13),e.DNE(19,O0,1,0,"th",14)(20,Y0,2,2,"td",15),e.bVm(),e.qex(21,16),e.DNE(22,X0,2,0,"th",17)(23,U0,4,4,"td",15),e.bVm(),e.qex(24,18),e.DNE(25,H0,2,0,"th",19)(26,q0,3,1,"td",15),e.bVm(),e.qex(27,20),e.DNE(28,z0,2,0,"th",17)(29,J0,4,4,"td",15),e.bVm(),e.qex(30,21),e.DNE(31,W0,2,0,"th",17)(32,Q0,3,1,"td",15),e.bVm(),e.qex(33,22),e.DNE(34,Z0,2,0,"th",17)(35,K0,4,4,"td",15),e.bVm(),e.qex(36,23),e.DNE(37,ef,2,0,"th",19)(38,tf,4,3,"td",15),e.bVm(),e.qex(39,24),e.DNE(40,nf,2,0,"th",19)(41,af,4,3,"td",15),e.bVm(),e.qex(42,25),e.DNE(43,sf,6,0,"th",26)(44,lf,11,1,"td",27),e.bVm(),e.qex(45,28),e.DNE(46,mf,4,3,"td",29),e.bVm(),e.DNE(47,uf,1,3,"tr",30)(48,df,1,0,"tr",31)(49,hf,1,0,"tr",32),e.k0s(),e.nrm(50,"mat-paginator",33),e.k0s()()(),e.DNE(51,_f,1,0,"ng-template",null,1,e.C5r)}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",i.utxos&&i.utxos.length>0&&i.dustUtxos&&i.dustUtxos.length>0&&!i.isDustUTXO?e.lJ4(14,st).concat(i.displayedColumns.slice(0,-1)):e.lJ4(15,st).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listUTXOs)("ngClass",e.eq3(16,P0,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(18,$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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const gf=()=>["all"],Cf=n=>({"error-border":n}),yf=()=>["no_transaction"],Ne=n=>({width:n}),bf=n=>({"display-none":n});function Ff(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function xf(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function vf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Date/Time"),e.k0s())}function Tf(n,s){if(1&n&&(e.j41(0,"td",35),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.time_stamp,"dd/MMM/y HH:mm"))}}function Sf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Label"),e.k0s())}function kf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.label)}}function Rf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Block Hash"),e.k0s())}function Ef(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.block_hash)}}function If(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Transaction Hash"),e.k0s())}function Lf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.tx_hash)}}function wf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Amount (Sats)"),e.k0s())}function jf(n,s){if(1&n&&(e.j41(0,"span",41),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.JRh(e.bMT(2,1,t.amount))}}function Gf(n,s){if(1&n&&(e.j41(0,"span",42),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.SpI("(",e.bMT(2,1,-1*t.amount),")")}}function Df(n,s){if(1&n&&(e.j41(0,"td",35),e.DNE(1,jf,3,3,"span",39)(2,Gf,3,3,"span",40),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.amount>0||0===t.amount),e.R7$(),e.Y8G("ngIf",t.amount<0)}}function Nf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Fees (Sats)"),e.k0s())}function Pf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_fees))}}function $f(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Block Height"),e.k0s())}function Af(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.block_height))}}function Mf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Confirmations"),e.k0s())}function Bf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==t?null:t.num_confirmations)," ")}}function Of(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Vf(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",47)(1,"button",48),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onTransactionClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Yf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No transaction available."),e.k0s())}function Xf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting transactions..."),e.k0s())}function Uf(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Hf(n,s){if(1&n&&(e.j41(0,"td",49),e.DNE(1,Yf,2,0,"p",50)(2,Xf,2,0,"p",50)(3,Uf,2,1,"p",50),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function qf(n,s){if(1&n&&e.nrm(0,"tr",51),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,bf,(null==t.listTransactions?null:t.listTransactions.data)&&(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)>0))}}function zf(n,s){1&n&&e.nrm(0,"tr",52)}function Jf(n,s){1&n&&e.nrm(0,"tr",53)}let Wf=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"time_stamp",sortOrder:l.oi.DESCENDING},this.faHistory=b.Int,this.displayedColumns=[],this.listTransactions=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.gN).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.transactions&&t.transactions.length>0&&(this.transactions=t.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(t)})}onTransactionClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:t.block_hash,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"tx_hash",value:t.tx_hash,title:"Transaction Hash",width:100,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"time_stamp",value:t.time_stamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"block_height",value:t.block_height,title:"Block Height",width:50,type:l.UN.NUMBER}],[{key:"num_confirmations",value:t.num_confirmations,title:"Number of Confirmations",width:34,type:l.UN.NUMBER},{key:"total_fees",value:t.total_fees,title:"Total Fees (Sats)",width:33,type:l.UN.NUMBER},{key:"amount",value:t.amount,title:"Amount (Sats)",width:33,type:l.UN.NUMBER}],[{key:"dest_addresses",value:t.dest_addresses,title:"Destination Addresses",width:100,type:l.UN.ARRAY}]],scrollable:t.dest_addresses&&t.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.listTransactions.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.time_stamp?this.datePipe.transform(new Date(1e3*t.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"time_stamp":i=this.datePipe.transform(new Date(1e3*(t?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadTransactionsTable(t){this.listTransactions=new c.I6([...t]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]: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(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Ff,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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",8)(14,"div",9),e.DNE(15,xf,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,vf,2,0,"th",13)(20,Tf,3,4,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Sf,2,0,"th",13)(23,kf,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Rf,2,0,"th",13)(26,Ef,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,If,2,0,"th",13)(29,Lf,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,wf,2,0,"th",19)(32,Df,3,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nf,2,0,"th",19)(35,Pf,4,3,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,$f,2,0,"th",19)(38,Af,4,3,"td",14),e.bVm(),e.qex(39,22),e.DNE(40,Mf,2,0,"th",19)(41,Bf,4,3,"td",14),e.bVm(),e.qex(42,23),e.DNE(43,Of,6,0,"th",24)(44,Vf,3,0,"td",25),e.bVm(),e.qex(45,26),e.DNE(46,Hf,4,3,"td",27),e.bVm(),e.DNE(47,qf,1,3,"tr",28)(48,zf,1,0,"tr",29)(49,Jf,1,0,"tr",30),e.k0s(),e.nrm(50,"mat-paginator",31),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,gf).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listTransactions)("ngClass",e.eq3(15,Cf,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(17,yf)),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:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,d.vh]})}return n})();function Qf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numUtxos)}}function Zf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Transactions"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numTransactions)}}function Kf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Dust UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numDustUtxos)}}let e2=(()=>{class n{constructor(t,a){this.logger=t,this.store=a,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.bkB,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length,this.numDustUtxos=t.utxos?.filter(a=>a.amount_sat&&+a.amount_sat{t.transactions&&t.transactions.length>0&&(this.numTransactions=t.transactions.length),this.logger.info(t)})}onSelectedIndexChanged(t){this.selectedTableIndexChange.emit(t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},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(a,i){1&a&&(e.j41(0,"div",0)(1,"mat-tab-group",1),e.bIt("selectedIndexChange",function(r){return i.onSelectedIndexChanged(r)}),e.j41(2,"mat-tab"),e.DNE(3,Qf,2,1,"ng-template",2),e.nrm(4,"rtl-on-chain-utxos",3),e.k0s(),e.j41(5,"mat-tab"),e.DNE(6,Zf,2,1,"ng-template",2),e.nrm(7,"rtl-on-chain-transaction-history",4),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,Kf,2,1,"ng-template",2),e.nrm(10,"rtl-on-chain-utxos",3),e.k0s()()()),2&a&&(e.R7$(),e.Y8G("selectedIndex",i.selectedTableIndex),e.R7$(3),e.Y8G("isDustUTXO",!1)("dustAmount",i.DUST_AMOUNT),e.R7$(6),e.Y8G("isDustUTXO",!0)("dustAmount",i.DUST_AMOUNT))},dependencies:[h.DJ,h.sA,h.UI,Te.k,P.ES,P.mq,P.T8,ff,Wf]})}return n})();const t2=(n,s)=>[n,s];function n2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=null==i?null:i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.Y8G("active",a.activeLink===(null==t?null:t.link))("routerLink",e.l_i(3,t2,null==t?null:t.link,null==a.selectedTable?null:a.selectedTable.name)),e.R7$(),e.JRh(null==t?null:t.name)}}let i2=(()=>{class n{constructor(t,a,i){this.store=t,this.router=a,this.activatedRoute=i,this.faExchangeAlt=b._qq,this.faChartPie=b.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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(a=>a.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===a.urlAfterRedirects.substring(a.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:a.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:a.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(a=>a.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain"]],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(a,i){if(1&a){const o=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,n2,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(p){return e.eBV(o),e.Njj(i.onSelectedTableIndexChanged(p))}),e.k0s()()()()()}if(2&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links),e.R7$(6),e.Y8G("selectedTableIndex",null==i.selectedTable?null:i.selectedTable.id)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk,e2]})}return n})();var a2=g(396);function s2(n,s){if(1&n&&(e.j41(0,"mat-option",6),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.addressTp," ")}}let o2=(()=>{class n{constructor(t,a,i){this.store=t,this.lndEffects=a,this.commonService=i,this.addressTypes=[],this.selectedAddressType=l.Ld[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(t.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?l.Ld:l.Ld.filter(a=>"4"!==a.addressId)})}onGenerateAddress(){this.store.dispatch((0,v.XT)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,J.s)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,E.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:a2.f}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-receive"]],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(a,i){1&a&&(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(r){return e.DH7(i.selectedAddressType,r)||(i.selectedAddressType=r),r}),e.DNE(6,s2,2,2,"mat-option",4),e.k0s()(),e.j41(7,"div")(8,"button",5),e.bIt("click",function(){return i.onGenerateAddress()}),e.EFF(9,"Generate Address"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.selectedAddressType),e.R7$(),e.Y8G("ngForOf",i.addressTypes))},dependencies:[d.Sq,m.BC,m.vS,h.DJ,h.sA,h.UI,G.$z,f.rl,f.nJ,R.VO,V.wT]})}return n})();var l2=g(2852);const r2=["form"],c2=["formSweepAll"],p2=["stepper"];function m2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function u2(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.amountError)}}function d2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t)}}function h2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function _2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function f2(n,s){if(1&n){const t=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,4),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionBlocks,i)||(o.transactionBlocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,_2,2,0,"mat-error",18),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionBlocks),e.R7$(2),e.Y8G("ngIf",!t.transactionBlocks)}}function g2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function C2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",37,5),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionFees,i)||(o.transactionFees=i),e.Njj(i)}),e.k0s(),e.DNE(5,g2,2,0,"mat-error",18),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionFees),e.R7$(2),e.Y8G("ngIf",!t.transactionFees)}}function y2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function b2(n,s){if(1&n&&(e.j41(0,"div",38),e.nrm(1,"fa-icon",39),e.DNE(2,y2,2,1,"span",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function F2(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",15,1),e.bIt("submit",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())})("reset",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.j41(2,"mat-form-field",16)(3,"mat-label"),e.EFF(4,"Bitcoin Address"),e.k0s(),e.j41(5,"input",17,2),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAddress,i)||(o.transactionAddress=i),e.Njj(i)}),e.k0s(),e.DNE(7,m2,2,0,"mat-error",18),e.k0s(),e.j41(8,"mat-form-field",19)(9,"mat-label"),e.EFF(10,"Amount"),e.k0s(),e.j41(11,"input",20,3),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAmount,i)||(o.transactionAmount=i),e.Njj(i)}),e.k0s(),e.j41(13,"span",21),e.EFF(14),e.k0s(),e.DNE(15,u2,2,1,"mat-error",18),e.k0s(),e.j41(16,"mat-form-field",22)(17,"mat-select",23),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountUnitChange(i))}),e.DNE(18,d2,2,2,"mat-option",24),e.k0s()(),e.j41(19,"div",25)(20,"mat-form-field",26)(21,"mat-select",27),e.mxI("valueChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.DNE(22,h2,2,2,"mat-option",24),e.k0s()(),e.DNE(23,f2,6,4,"mat-form-field",28)(24,C2,6,4,"mat-form-field",28),e.k0s(),e.nrm(25,"div",29),e.DNE(26,b2,3,2,"div",30),e.j41(27,"div",31)(28,"button",32),e.EFF(29,"Clear Fields"),e.k0s(),e.j41(30,"button",33),e.EFF(31,"Send Funds"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.transactionAddress),e.R7$(2),e.Y8G("ngIf",!t.transactionAddress),e.R7$(4),e.Y8G("step",100)("min",0),e.R50("ngModel",t.transactionAmount),e.R7$(3),e.SpI("",t.selAmountUnit," "),e.R7$(),e.Y8G("ngIf",!t.transactionAmount),e.R7$(2),e.Y8G("value",t.selAmountUnit),e.R7$(),e.Y8G("ngForOf",t.amountUnits),e.R7$(3),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType),e.R7$(2),e.Y8G("ngIf",""!==t.sendFundError)}}function x2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(3);e.JRh(t.passwordFormLabel)}}function v2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function T2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-step",43)(1,"form",62),e.DNE(2,x2,1,1,"ng-template",56),e.j41(3,"div",7)(4,"mat-form-field",63)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",64),e.DNE(8,v2,2,0,"mat-error",18),e.k0s()(),e.j41(9,"div",65)(10,"button",66),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onAuthenticate())}),e.EFF(11,"Confirm"),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.Y8G("stepControl",t.passwordFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function S2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.sendFundFormLabel)}}function k2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function R2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function E2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function I2(n,s){if(1&n&&(e.j41(0,"mat-form-field",67)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.nrm(3,"input",68),e.DNE(4,E2,2,0,"mat-error",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionBlocks.errors?null:t.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function L2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function w2(n,s){if(1&n&&(e.j41(0,"mat-form-field",67)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.nrm(3,"input",69),e.DNE(4,L2,2,0,"mat-error",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionFees.errors?null:t.sendFundFormGroup.controls.transactionFees.errors.required)}}function j2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.confirmFormLabel)}}function G2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function D2(n,s){if(1&n&&(e.j41(0,"div",38),e.nrm(1,"fa-icon",39),e.DNE(2,G2,2,1,"span",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function N2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",40)(1,"mat-vertical-stepper",41,6),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.DNE(3,T2,12,4,"mat-step",42),e.j41(4,"mat-step",43)(5,"form",44),e.DNE(6,S2,1,1,"ng-template",45),e.j41(7,"div",46)(8,"mat-form-field",47)(9,"mat-label"),e.EFF(10,"Bitcoin Address"),e.k0s(),e.nrm(11,"input",48),e.DNE(12,k2,2,0,"mat-error",18),e.k0s(),e.j41(13,"mat-form-field",49)(14,"mat-select",50),e.DNE(15,R2,2,2,"mat-option",24),e.k0s()(),e.DNE(16,I2,5,3,"mat-form-field",51)(17,w2,5,3,"mat-form-field",51),e.k0s(),e.j41(18,"div",52)(19,"button",53),e.EFF(20,"Next"),e.k0s()()()(),e.j41(21,"mat-step",54)(22,"form",55),e.DNE(23,j2,1,1,"ng-template",56),e.j41(24,"div",40)(25,"div",57),e.nrm(26,"fa-icon",58),e.j41(27,"span"),e.EFF(28,"You are about to sweep all funds from RTL. Are you sure?"),e.k0s()(),e.DNE(29,D2,3,2,"div",30),e.j41(30,"div",52)(31,"button",59),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())}),e.EFF(32,"Sweep All Funds"),e.k0s()()()()()(),e.j41(33,"div",60)(34,"button",61),e.EFF(35),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("ngIf",!t.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.sendFundFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),e.R7$(3),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(4),e.Y8G("stepControl",t.confirmFormGroup),e.R7$(),e.Y8G("formGroup",t.confirmFormGroup),e.R7$(4),e.Y8G("icon",t.faExclamationTriangle),e.R7$(3),e.Y8G("ngIf",""!==t.sendFundError),e.R7$(5),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(t.flgValidated?"Close":"Cancel")}}let P2=(()=>{class n{constructor(t,a,i,o,r,p,F,C,S,LC){this.dialogRef=t,this.data=a,this.logger=i,this.store=o,this.rtlEffects=r,this.commonService=p,this.decimalPipe=F,this.snackBar=C,this.actions=S,this.formBuilder=LC,this.faExclamationTriangle=b.zpE,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=l.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.k,this.sendFundError="",this.flgValidated=!1,this.flgEditable=!0,this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[m.k0.required]],password:["",[m.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",m.k0.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",m.k0.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{"1"===t?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([m.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([m.k0.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(X.qv).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.appConfig=t}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[3]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(t=>{t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,E.UI)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,E.oz)({payload:l2(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,J.s)(1)).subscribe(t=>{"ERROR"!==t?(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 t={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(t.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(t.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(t.fees=this.sendFundFormGroup.controls.transactionFees.value)):(t.address=this.transactionAddress,"1"===this.selTransType&&(t.blocks=this.transactionBlocks),"2"===this.selTransType&&(t.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==l.BQ.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,_.Q)(this.unSubs[4])).subscribe({next:a=>{this.selAmountUnit=l.BQ.SATS,t.amount=+(this.decimalPipe.transform(a[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,v.aB)({payload:t}))},error:a=>{this.transactionAmount=null,this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+a}}):this.store.dispatch((0,v.aB)({payload:t}))}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(t){switch(this.sendFundError="",t.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)}t.selectedIndex{this.selAmountUnit=t.value,a.transactionAmount=+(a.decimalPipe.transform(p[o],a.currencyUnitFormats[o])?.replace(/,/g,"")||0)},error:p=>{a.transactionAmount=null,this.amountError="Conversion Error: "+p,this.selAmountUnit=i,o=i}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(I.il),e.rXU(me.H),e.rXU(N.h),e.rXU(d.QX),e.rXU(ae.UG),e.rXU(W.En),e.rXU(m.ze))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(a,i){if(1&a&&(e.GBs(r2,7),e.GBs(c2,5),e.GBs(p2,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.formSweepAll=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},decls:12,vars:4,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"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["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"],[1,"mr-1","alert-icon",3,"icon"],["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"],["fxLayout","column","fxFlex","100"],["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(a,i){if(1&a&&(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,F2,32,14,"form",14),e.k0s()()(),e.DNE(10,N2,36,15,"ng-template",null,0,e.C5r)),2&a){const o=e.sdS(11);e.R7$(5),e.JRh(i.sweepAll?"Sweep All Funds":"Send Funds"),e.R7$(),e.Y8G("mat-dialog-close",!1),e.R7$(3),e.Y8G("ngIf",!i.sweepAll)("ngIfElse",o)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,f.yw,R.VO,V.wT,H.V5,H.Ti,H.M6,H.F7,Z.N,te.V]})}return n})(),ot=(()=>{class n{constructor(t,a){this.store=t,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,E.xO)({payload:{data:{sweepAll:this.sweepAll,component:P2}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.nX))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-send"]],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,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.openSendFundsModal()}),e.EFF(3),e.k0s()()()),2&a&&(e.R7$(3),e.JRh(i.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,G.$z]})}return n})();const $2=n=>({"mt-1":n}),lt=n=>({"dashboard-card-content":!0,"error-border":n});function A2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function M2(n,s){if(1&n&&e.nrm(0,"rtl-node-info",27),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!0)}}function B2(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",28),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function O2(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",29),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[2])}}function V2(n,s){if(1&n&&(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,A2,1,0,"mat-progress-bar",21),e.j41(11,"div",22),e.DNE(12,M2,1,2,"rtl-node-info",23)(13,B2,1,2,"rtl-channel-status-info",24)(14,O2,1,2,"rtl-fee-info",25),e.k0s()()()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(4),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(3),e.Y8G("ngClass",e.eq3(10,lt,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","status"),e.R7$(),e.Y8G("ngSwitchCase","fee")}}function Y2(n,s){if(1&n&&(e.j41(0,"mat-grid-list",11),e.DNE(1,V2,15,12,"mat-grid-tile",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngForOf",t.nodeCards)}}function X2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function U2(n,s){1&n&&e.eu8(0)}function H2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,U2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function q2(n,s){1&n&&e.eu8(0)}function z2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,q2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(13);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function J2(n,s){1&n&&e.eu8(0)}function W2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,J2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(15);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function Q2(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.DNE(3,X2,1,0,"mat-progress-bar",21),e.j41(4,"div",22),e.DNE(5,H2,2,1,"div",33)(6,z2,2,1,"div",33)(7,W2,2,1,"div",33),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(2),e.Y8G("ngClass",e.eq3(8,lt,a.apiCallStatusNetwork.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf",a.apiCallStatusNetwork.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","general"),e.R7$(),e.Y8G("ngSwitchCase","channels"),e.R7$(),e.Y8G("ngSwitchCase","degrees")}}function Z2(n,s){if(1&n&&(e.j41(0,"div",36)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessages[1])}}function K2(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,3,t.networkInfo.total_network_capacity)," Sats"),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.num_nodes)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.num_channels))}}function eg(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,3,t.networkInfo.max_channel_size)),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.avg_channel_size)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.min_channel_size))}}function tg(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,2,t.networkInfo.max_out_degree)),e.R7$(6),e.JRh(e.i5U(12,4,t.networkInfo.avg_out_degree,"1.0-2"))}}let ng=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.faProjectDiagram=b.qFF,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=l.f7,this.userPersonaEnum=l.HW,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.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(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.tA).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusNetwork=t.apiCallStatus,this.apiCallStatusNetwork.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=t.networkInfo}),this.store.select(y.oR).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.logger.info(t)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-network-info"]],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(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,Y2,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,Q2,8,10,"mat-grid-tile",10),e.k0s()(),e.DNE(8,Z2,3,1,"ng-template",null,0,e.C5r)(10,K2,19,9,"ng-template",null,1,e.C5r)(12,eg,19,9,"ng-template",null,2,e.C5r)(14,tg,16,7,"ng-template",null,3,e.C5r)),2&a&&(e.R7$(),e.Y8G("ngIf",i.selNode.settings.userPersona!==i.userPersonaEnum.OPERATOR),e.R7$(),e.Y8G("ngClass",e.eq3(4,$2,i.screenSize!==i.screenSizeEnum.XS)),e.R7$(),e.Y8G("icon",i.faProjectDiagram),e.R7$(4),e.Y8G("ngForOf",i.networkCards))},dependencies:[d.YU,d.Sq,d.bT,d.T3,d.ux,d.e1,M.aY,h.DJ,h.sA,h.UI,L.PW,T.RN,T.m2,he.B_,he.NS,B.HM,Ye,Xe,Ue,d.QX]})}return n})();function ig(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let ag=(()=>{class n{constructor(t){this.router=t,this.faDownload=b.cbP,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-backup"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,ig,2,3,"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&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faDownload),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();const sg=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),og=()=>["no_channel"],lg=n=>({"max-width":n}),rg=n=>({"display-none":n});function cg(n,s){if(1&n){const t=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(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRestoreChannels({}))}),e.EFF(5,"Restore All"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function pg(n,s){if(1&n&&(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&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function mg(n,s){if(1&n&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function ug(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function dg(n,s){1&n&&(e.j41(0,"th",31),e.EFF(1,"Channel Point"),e.k0s())}function hg(n,s){if(1&n&&(e.j41(0,"td",32)(1,"div",33)(2,"span",34),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function _g(n,s){1&n&&(e.j41(0,"th",35)(1,"div",36),e.EFF(2,"Actions"),e.k0s()())}function fg(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",32)(1,"span",37)(2,"button",38),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onRestoreChannels(i))}),e.EFF(3,"Restore"),e.k0s()()()}}function gg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No singular channel backups available."),e.k0s())}function Cg(n,s){if(1&n&&(e.j41(0,"td",39),e.DNE(1,gg,2,0,"p",40),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channels||!t.channels.data||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)}}function yg(n,s){if(1&n&&e.nrm(0,"tr",41),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,rg,t.channels&&t.channels.data&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function bg(n,s){1&n&&e.nrm(0,"tr",42)}function Fg(n,s){1&n&&e.nrm(0,"tr",43)}let xg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.I6([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,v.$J)()),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.lndEffects.setRestoreChannelList.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.allRestoreExists=t.all_restore_exists,this.channelsData=t.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||t&&t.files)&&(this.flgLoading[0]=!1),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(t){this.store.dispatch((0,v.Lf)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(t){this.channels=new c.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-restore-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1),e.DNE(1,cg,6,1,"div",2)(2,pg,5,1,"div",3)(3,mg,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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(12,"div",10),e.DNE(13,ug,1,0,"mat-progress-bar",11),e.j41(14,"table",12,0),e.qex(16,13),e.DNE(17,dg,2,0,"th",14)(18,hg,4,4,"td",15),e.bVm(),e.qex(19,16),e.DNE(20,_g,3,0,"th",17)(21,fg,4,0,"td",15),e.bVm(),e.qex(22,18),e.DNE(23,Cg,2,1,"td",19),e.bVm(),e.DNE(24,yg,1,3,"tr",20)(25,bg,1,0,"tr",21)(26,Fg,1,0,"tr",22),e.k0s()(),e.nrm(27,"mat-paginator",23),e.k0s()}2&a&&(e.R7$(),e.Y8G("ngIf",i.allRestoreExists),e.R7$(),e.Y8G("ngIf",!i.allRestoreExists&&(!i.channels||(null==i.channels||null==i.channels.data?null:i.channels.data.length)<=0)),e.R7$(),e.Y8G("ngIf",!i.allRestoreExists&&i.channels&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)>0),e.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(13,sg,"error"===i.flgLoading[0])),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(15,og)),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:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld]})}return n})();const vg=n=>({"error-border":n}),Tg=()=>["no_channel"],Sg=n=>({"max-width":n}),kg=n=>({"display-none":n});function Rg(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function Eg(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Channel Point"),e.k0s())}function Ig(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Sg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function Lg(n,s){1&n&&(e.j41(0,"th",38)(1,"div",39),e.EFF(2,"Actions"),e.k0s()())}function wg(n,s){if(1&n){const t=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(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBackupChannels(i))}),e.EFF(7,"Backup"),e.k0s(),e.j41(8,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onDownloadBackup(i))}),e.EFF(9,"Download Backup"),e.k0s(),e.j41(10,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onVerifyChannels(i))}),e.EFF(11,"Verify"),e.k0s()()()()}}function jg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function Gg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function Dg(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Ng(n,s){if(1&n&&(e.j41(0,"td",43),e.DNE(1,jg,2,0,"p",44)(2,Gg,2,0,"p",44)(3,Dg,2,1,"p",44),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Pg(n,s){if(1&n&&e.nrm(0,"tr",45),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,kg,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function $g(n,s){1&n&&e.nrm(0,"tr",46)}function Ag(n,s){1&n&&e.nrm(0,"tr",47)}let Mg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.faArchive=b.Oh6,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.channels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.SET_CHANNELS_LND||t.type===l.aU.SHOW_FILE)).subscribe(t=>{t.type===l.QP.SET_CHANNELS_LND&&(this.selectedChannel=null),t.type===l.aU.SHOW_FILE&&(this.commonService.downloadFile(t.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(t){this.store.dispatch((0,v.H2)({payload:{uiMessage:l.MZ.BACKUP_CHANNEL,channelPoint:t.channel_point?t.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(t){this.store.dispatch((0,v.L)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}onDownloadBackup(t){this.selectedChannel=t,this.store.dispatch((0,E.t2)({payload:{channelPoint:t.channel_point?t.channel_point:"all"}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!1,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(t){this.channels=new c.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-backup-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.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(a,i){if(1&a){const o=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 e.eBV(o),e.Njj(i.onVerifyChannels({}))}),e.EFF(14,"Verify All"),e.k0s(),e.j41(15,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBackupChannels({}))}),e.EFF(16,"Backup All"),e.k0s(),e.j41(17,"button",9),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(30,"div",18),e.DNE(31,Rg,1,0,"mat-progress-bar",19),e.j41(32,"table",20,0),e.qex(34,21),e.DNE(35,Eg,2,0,"th",22)(36,Ig,4,4,"td",23),e.bVm(),e.qex(37,24),e.DNE(38,Lg,3,0,"th",25)(39,wg,12,0,"td",26),e.bVm(),e.qex(40,27),e.DNE(41,Ng,4,3,"td",28),e.bVm(),e.DNE(42,Pg,1,3,"tr",29)(43,$g,1,0,"tr",30)(44,Ag,1,0,"tr",31),e.k0s()(),e.nrm(45,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(3),e.Y8G("icon",i.faExclamationTriangle),e.R7$(4),e.Y8G("icon",i.faInfoCircle),e.R7$(4),e.SpI("",i.selNode.settings.channelBackupPath,"."),e.R7$(10),e.Y8G("icon",i.faArchive),e.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(14,vg,""!==i.errorMessage)),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(16,Tg)),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:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld]})}return n})();function Bg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Og=(()=>{class n{constructor(t){this.router=t,this.faUserCheck=b.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign-verify-message"]],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,"active","routerLink","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","active","routerLink"]],template:function(a,i){if(1&a&&(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,Bg,2,3,"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&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faUserCheck),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();function Vg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}let Yg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new u.B,new u.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u),e.rXU(ae.UG),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign"]],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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.message,p)||(i.message=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onMessageChange())}),e.k0s(),e.DNE(7,Vg,2,0,"mat-error",5),e.k0s(),e.j41(8,"div",6)(9,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(10,"Clear Field"),e.k0s(),e.j41(11,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.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(p){return e.eBV(o),e.Njj(i.onCopyField(p))}),e.EFF(21,"Copy Signature"),e.k0s()()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(6),e.Y8G("inset",!0),e.R7$(5),e.JRh(i.signature),e.R7$(2),e.Y8G("payload",i.signature))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,Z.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return n})();function Xg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}function Ug(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Signature is required."),e.k0s())}function Hg(n,s){1&n&&(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 qg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Pubkey Used"),e.k0s())}function zg(n,s){if(1&n&&(e.j41(0,"div",20)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(2),e.JRh(null==t.verifyRes?null:t.verifyRes.pubkey)}}function Jg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onCopyField(i))}),e.EFF(2,"Copy Pubkey"),e.k0s()()}if(2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function Wg(n,s){if(1&n&&(e.j41(0,"div",15),e.nrm(1,"mat-divider",16),e.j41(2,"div",17),e.DNE(3,qg,2,0,"p",6),e.k0s(),e.DNE(4,zg,3,1,"div",18)(5,Jg,3,1,"div",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(2),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid)}}let Qg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new u.B,new u.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,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(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u),e.rXU(ae.UG),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-verify"]],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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.message,p)||(i.message=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(7,Xg,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(p){return e.eBV(o),e.DH7(i.signature,p)||(i.signature=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(13,Ug,2,0,"mat-error",6),e.k0s(),e.DNE(14,Hg,4,0,"p",8),e.j41(15,"div",9)(16,"button",10),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(17,"Clear Fields"),e.k0s(),e.j41(18,"button",11),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onVerify())}),e.EFF(19,"Verify"),e.k0s()(),e.DNE(20,Wg,6,4,"div",12),e.k0s()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(4),e.R50("ngModel",i.signature),e.R7$(2),e.Y8G("ngIf",!i.signature),e.R7$(),e.Y8G("ngIf",i.showVerifyStatus&&!i.verifyRes.valid),e.R7$(6),e.Y8G("ngIf",i.showVerifyStatus&&i.verifyRes.valid))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,Z.N]})}return n})();var Zg=g(13),D=g(7186);const Kg=()=>["all"],e4=()=>["no_non_routing_event"],xe=n=>({"max-width":n}),t4=n=>({"display-none":n});function n4(n,s){if(1&n&&(e.j41(0,"div",5),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function i4(n,s){if(1&n&&(e.j41(0,"mat-option",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function a4(n,s){if(1&n){const t=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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG(2);return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,i4,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(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Kg).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function s4(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function o4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel ID"),e.k0s())}function l4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function r4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Alias"),e.k0s())}function c4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function p4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Pubkey"),e.k0s())}function m4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function u4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel Point"),e.k0s())}function d4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function h4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function _4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function f4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function g4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function C4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function y4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function b4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Weight"),e.k0s())}function F4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function x4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Fee/KW"),e.k0s())}function v4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function T4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Updates"),e.k0s())}function S4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function k4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function R4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function E4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Capacity (Sats)"),e.k0s())}function I4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function L4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function w4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function j4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function G4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function D4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Sent"),e.k0s())}function N4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_sent))}}function P4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Received"),e.k0s())}function $4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_received))}}function A4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function M4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.local_balance))}}function B4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function O4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.remote_balance))}}function V4(n,s){1&n&&(e.j41(0,"th",57)(1,"div",58),e.EFF(2,"Actions"),e.k0s()())}function Y4(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",59)(1,"button",60),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(3);return e.Njj(o.onManagePeer(i))}),e.EFF(2,"Manage"),e.k0s()()}}function X4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"All peers are routing."),e.k0s())}function U4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting non routing peers..."),e.k0s())}function H4(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(4);e.R7$(),e.JRh(t.errorMessage)}}function q4(n,s){if(1&n&&(e.j41(0,"td",61),e.DNE(1,X4,2,0,"p",62)(2,U4,2,0,"p",62)(3,H4,2,1,"p",62),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function z4(n,s){if(1&n&&e.nrm(0,"tr",63),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,t4,(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)>0))}}function J4(n,s){1&n&&e.nrm(0,"tr",64)}function W4(n,s){1&n&&e.nrm(0,"tr",65)}function Q4(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,s4,1,0,"mat-progress-bar",19),e.j41(2,"table",20,1),e.qex(4,21),e.DNE(5,o4,2,0,"th",22)(6,l4,4,4,"td",23),e.bVm(),e.qex(7,24),e.DNE(8,r4,2,0,"th",22)(9,c4,4,4,"td",23),e.bVm(),e.qex(10,25),e.DNE(11,p4,2,0,"th",22)(12,m4,4,4,"td",23),e.bVm(),e.qex(13,26),e.DNE(14,u4,2,0,"th",22)(15,d4,4,4,"td",23),e.bVm(),e.qex(16,27),e.DNE(17,h4,2,1,"th",28)(18,_4,3,1,"td",23),e.bVm(),e.qex(19,29),e.DNE(20,f4,2,1,"th",28)(21,g4,3,1,"td",23),e.bVm(),e.qex(22,30),e.DNE(23,C4,2,0,"th",28)(24,y4,4,3,"td",23),e.bVm(),e.qex(25,31),e.DNE(26,b4,2,0,"th",28)(27,F4,4,3,"td",23),e.bVm(),e.qex(28,32),e.DNE(29,x4,2,0,"th",28)(30,v4,4,3,"td",23),e.bVm(),e.qex(31,33),e.DNE(32,T4,2,0,"th",28)(33,S4,4,3,"td",23),e.bVm(),e.qex(34,34),e.DNE(35,k4,2,0,"th",28)(36,R4,4,3,"td",23),e.bVm(),e.qex(37,35),e.DNE(38,E4,2,0,"th",28)(39,I4,4,3,"td",23),e.bVm(),e.qex(40,36),e.DNE(41,L4,2,0,"th",28)(42,w4,4,3,"td",23),e.bVm(),e.qex(43,37),e.DNE(44,j4,2,0,"th",28)(45,G4,4,3,"td",23),e.bVm(),e.qex(46,38),e.DNE(47,D4,2,0,"th",28)(48,N4,4,3,"td",23),e.bVm(),e.qex(49,39),e.DNE(50,P4,2,0,"th",28)(51,$4,4,3,"td",23),e.bVm(),e.qex(52,40),e.DNE(53,A4,2,0,"th",28)(54,M4,4,3,"td",23),e.bVm(),e.qex(55,41),e.DNE(56,B4,2,0,"th",28)(57,O4,4,3,"td",23),e.bVm(),e.qex(58,42),e.DNE(59,V4,3,0,"th",43)(60,Y4,3,0,"td",44),e.bVm(),e.qex(61,45),e.DNE(62,q4,4,3,"td",46),e.bVm(),e.DNE(63,z4,1,3,"tr",47)(64,J4,1,0,"tr",48)(65,W4,1,0,"tr",49),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.nonRoutingPeers),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(7,e4)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function Z4(n,s){if(1&n&&(e.j41(0,"div",6),e.DNE(1,a4,14,4,"div",7)(2,Q4,66,8,"div",8),e.nrm(3,"mat-paginator",9,0),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let K4=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.commonService=a,this.store=i,this.router=o,this.activatedRoute=r,this.decimalPipe=p,this.camelCaseWithReplace=F,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:l.md,sortBy:"remote_alias",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.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:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=t.channels,this.logger.info(t)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}calculateUptime(t){let p=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",p=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",p=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",p=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",p=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",p=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%p/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%p/F),"2.0-0"):"---"}),t}onManagePeer(t){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:t.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?JSON.stringify(t).toLowerCase():typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadNonRoutingPeersTable(t){if(t.length>0){const a=this.calculateUptime(this.activeChannels?.filter(i=>t.findIndex(o=>o.chan_id_in===i.chan_id||o.chan_id_out===i.chan_id)<0));this.nonRoutingPeers=new c.I6(a),this.nonRoutingPeers.sort=this.sort,this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new c.I6([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX),e.rXU(d.QX),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-non-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.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(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,n4,2,1,"div",3)(2,Z4,5,5,"div",4),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX]})}return n})();var rt=g(3838);let eC=(()=>{class n{constructor(t){this.dataService=t,this.paths="",this.unSubs=[new u.B,new u.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 t=this.payment.htlcs[0].route.hops?.reduce((a,i)=>""===a&&i.pub_key?i.pub_key:a+","+i.pub_key,"");this.dataService.getAliasesFromPubkeys(t,!0).pipe((0,_.Q)(this.unSubs[0])).subscribe(a=>{this.paths=a?.reduce((i,o)=>""===i?o:i+"\n"+o,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,J.s)(1)).subscribe(t=>{t&&t.description&&""!==t.description&&(this.payment.description=t.description)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},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(a,i){1&a&&(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&a&&(e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_hash),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_preimage),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_request),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.description),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(null==i.payment?null:i.payment.status),e.R7$(6),e.JRh(null==i.payment?null:i.payment.creation_date),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(e.bMT(50,16,null==i.payment?null:i.payment.value_msat)),e.R7$(7),e.JRh(e.bMT(57,18,null==i.payment?null:i.payment.fee_msat)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.paths),e.R7$(),e.Y8G("inset",!0))},dependencies:[h.DJ,h.sA,h.UI,T.m2,ee.q,d.QX]})}return n})();var tC=g(8288);const ct=n=>({"display-none":n}),Pe=n=>({"mr-0":n});function nC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function iC(n,s){1&n&&(e.j41(0,"span",23),e.EFF(1,"N/A"),e.k0s())}function aC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function sC(n,s){1&n&&(e.j41(0,"span",24),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function oC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}function lC(n,s){1&n&&(e.qex(0),e.EFF(1," (zero amount) "),e.bVm())}function rC(n,s){if(1&n&&e.nrm(0,"span",38),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function cC(n,s){if(1&n&&e.nrm(0,"span",39),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function pC(n,s){if(1&n&&e.nrm(0,"span",40),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function mC(n,s){if(1&n&&(e.j41(0,"div",27)(1,"div",32)(2,"span",33),e.DNE(3,rC,1,3,"span",34)(4,cC,1,3,"span",35)(5,pC,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&n){const t=s.$implicit,a=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SETTLED"===t.state),e.R7$(),e.Y8G("ngIf","ACCEPTED"===t.state),e.R7$(),e.Y8G("ngIf","CANCELED"===t.state),e.R7$(),e.SpI(" ",t.chan_id," "),e.R7$(2),e.JRh(e.i5U(9,6,+t.amt_msat/1e3||0,a.getDecimalFormat(t))),e.R7$(2),e.Y8G("inset",!0)}}function uC(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",11)(1,"mat-expansion-panel",25),e.bIt("opened",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.flgOpened=!0)})("closed",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.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,mC,11,9,"div",31),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(12),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngForOf",null==t.invoice?null:t.invoice.htlcs)}}function dC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}let hC=(()=>{class n{constructor(t){this.commonService=t,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220)}getDecimalFormat(t){return t.amt_msat<1e3?"1.0-4":"1.0-0"}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,nC,1,3,"qr-code",2)(3,iC,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,aC,1,3,"qr-code",2)(9,sC,2,0,"span",8),e.k0s(),e.DNE(10,oC,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,lC,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,uC,14,2,"div",21)(89,dC,1,1,"mat-divider",9),e.k0s()()()()()()),2&a&&(e.R7$(),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(41,ct,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(4),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(43,ct,i.screenSize!==i.screenSizeEnum.XS&&i.screenSize!==i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM),e.R7$(5),e.JRh(i.screenSize===i.screenSizeEnum.XS?"Amount":"Amount Requested"),e.R7$(2),e.SpI("",e.bMT(18,31,(null==i.invoice?null:i.invoice.value)||0)," Sats"),e.R7$(2),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.value)||"0"===(null==i.invoice?null:i.invoice.value)),e.R7$(6),e.SpI("",e.bMT(26,33,null==i.invoice?null:i.invoice.amt_paid_sat)," Sats"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(34,35,1e3*(null==i.invoice?null:i.invoice.creation_date),"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(0!=+(null==i.invoice?null:i.invoice.settle_date)?e.i5U(40,38,1e3*+(null==i.invoice?null:i.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.memo),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.payment_request)||"N/A"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_hash)||""),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_preimage)||"-"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.state),e.R7$(5),e.JRh(null==i.invoice?null:i.invoice.expiry),e.R7$(5),e.JRh(null!=i.invoice&&i.invoice.private?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0))},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,T.m2,U.GK,U.Z2,U.WN,ee.q,Q.oV,tC.Um,A.Ld,d.QX,d.vh]})}return n})();const _C=n=>({"mt-1":!0,"mt-2":n}),fC=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function gC(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function CC(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function yC(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function bC(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,yC,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,fC,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function FC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-payment-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payment",t.lookupValue)}}function xC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-invoice-lookup",29),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("invoice",t.lookupValue)}}function vC(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function TC(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,FC,2,1,"span",25)(6,xC,2,1,"span",25)(7,vC,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let SC=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,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=b.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND)).subscribe(t=>{this.flgSetLookupValue=!t.payload.error,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.errorMessage=t.payload.error?this.commonService.extractErrorMessage(t.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,v.jk)({payload:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!1,paymentHash:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookup-transactions"]],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(a,i){if(1&a){const o=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(p){return e.eBV(o),e.DH7(i.selectedFieldId,p)||(i.selectedFieldId=p),e.Njj(p)}),e.bIt("change",function(p){return e.eBV(o),e.Njj(i.onSelectChange(p))}),e.DNE(7,gC,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(p){return e.eBV(o),e.DH7(i.lookupKey,p)||(i.lookupKey=p),e.Njj(p)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,CC,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,bC,3,5,"div",15)(20,TC,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,_C,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,eC,hC],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})();const kC=[{path:"",component:Ae,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Os,canActivate:[(0,D.jn)()]},{path:"wallet",component:Sd,canActivate:[D.q_]},{path:"onchain",component:i2,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:o2,canActivate:[(0,D.jn)()]},{path:"send/:selTab",component:ot,data:{sweepAll:!1},canActivate:[(0,D.jn)()]},{path:"sweep/:selTab",component:ot,data:{sweepAll:!0},canActivate:[(0,D.jn)()]}]},{path:"connections",component:Xs,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:dl,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:$1,canActivate:[(0,D.jn)()]},{path:"pending",component:bm,canActivate:[(0,D.jn)()]},{path:"closed",component:ru,canActivate:[(0,D.jn)()]},{path:"activehtlcs",component:ed,canActivate:[(0,D.jn)()]}]},{path:"peers",component:rl,data:{sweepAll:!1},canActivate:[(0,D.jn)()]}]},{path:"transactions",component:Rd,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Oe,canActivate:[(0,D.jn)()]},{path:"invoices",component:Be,canActivate:[(0,D.jn)()]},{path:"lookuptransactions",component:SC,canActivate:[(0,D.jn)()]}]},{path:"messages",component:Og,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Yg,canActivate:[(0,D.jn)()]},{path:"verify",component:Qg,canActivate:[(0,D.jn)()]}]},{path:"channelbackup",component:ag,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:Mg,canActivate:[(0,D.jn)()]},{path:"restore",component:xg,canActivate:[(0,D.jn)()]}]},{path:"routing",component:Dh,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:tt,canActivate:[(0,D.jn)()]},{path:"peers",component:s0,canActivate:[(0,D.jn)()]},{path:"nonroutingprs",component:K4,canActivate:[(0,D.jn)()]}]},{path:"reports",component:l0,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:f0,canActivate:[(0,D.jn)()]},{path:"transactions",component:I0,canActivate:[(0,D.jn)()]}]},{path:"graph",component:Id,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"queryroutes",component:nh,canActivate:[(0,D.jn)()]}]},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"network",component:ng,canActivate:[(0,D.jn)()]},{path:"**",component:Zg.X},{path:"rates",redirectTo:"network"}]}],RC=x.iI.forChild(kC);var EC=g(9029);let IC=(()=>{class n{static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275mod=e.$C({type:n,bootstrap:[Ae]});static#n=this.\u0275inj=e.G2t({imports:[d.MD,EC.G,RC]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/193.0e1a81316bbc29da.js b/frontend/193.0e1a81316bbc29da.js new file mode 100644 index 00000000..88eaa104 --- /dev/null +++ b/frontend/193.0e1a81316bbc29da.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[193],{5837:(q,G,n)=>{n.d(G,{f:()=>I});var e=n(1413),S=n(6977),f=n(4416),t=n(9647),l=n(4438),A=n(2571),R=n(9640),b=n(177),v=n(2920),c=n(9213),w=n(4823),D=n(6850);function E(L,x){if(1&L&&(l.j41(0,"mat-icon",10),l.EFF(1,"info_outline"),l.k0s()),2&L){const m=l.XpG().$implicit;l.Y8G("matTooltip",m.tooltip)}}function T(L,x){if(1&L&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&L){const m=l.XpG().$implicit;l.R7$(),l.SpI(" ",l.i5U(2,1,m.dataValue,"1.0-0")," ")}}function N(L,x){if(1&L&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&L){const m=l.XpG().$implicit,o=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,m[o.currencyUnitEnum.BTC],o.currencyUnitFormats.BTC)," ")}}function B(L,x){if(1&L&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&L){const m=l.XpG().$implicit,o=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,m[o.currencyUnitEnum.OTHER],o.currencyUnitFormats.OTHER)," ")}}function Y(L,x){if(1&L&&(l.j41(0,"div",6)(1,"div",7),l.EFF(2),l.DNE(3,E,2,1,"mat-icon",8),l.k0s(),l.DNE(4,T,3,4,"span",9)(5,N,3,4,"span",9)(6,B,3,4,"span",9),l.k0s()),2&L){const m=x.$implicit,o=l.XpG().$implicit,g=l.XpG();l.R7$(2),l.SpI(" ",m.title," "),l.R7$(),l.Y8G("ngIf",m.tooltip),l.R7$(),l.Y8G("ngIf",o===g.currencyUnitEnum.SATS),l.R7$(),l.Y8G("ngIf",o===g.currencyUnitEnum.BTC),l.R7$(),l.Y8G("ngIf",g.fiatConversion&&o!==g.currencyUnitEnum.SATS&&o!==g.currencyUnitEnum.BTC&&""===g.conversionErrorMsg)}}function P(L,x){if(1&L&&(l.j41(0,"div",12)(1,"div",13),l.EFF(2),l.k0s()()),2&L){const m=l.XpG(2);l.R7$(2),l.JRh(m.conversionErrorMsg)}}function k(L,x){if(1&L&&(l.j41(0,"mat-tab",2)(1,"div",3),l.DNE(2,Y,7,5,"div",4),l.k0s(),l.DNE(3,P,3,1,"div",5),l.k0s()),2&L){const m=x.$implicit,o=l.XpG();l.FS9("label",m),l.R7$(2),l.Y8G("ngForOf",o.values),l.R7$(),l.Y8G("ngIf",o.fiatConversion&&m!==o.currencyUnitEnum.SATS&&m!==o.currencyUnitEnum.BTC&&""!==o.conversionErrorMsg)}}let I=(()=>{class L{constructor(m,o){this.commonService=m,this.store=o,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(t._c).pipe((0,S.Q)(this.unSubs[0])).subscribe(m=>{this.fiatConversion=m.settings.fiatConversion,this.currencyUnits=m.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,S.Q)(this.unSubs[1])).subscribe(m=>{this.values[0][f.BQ.BTC]=m.BTC}),this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,S.Q)(this.unSubs[2])).subscribe({next:m=>{if(this.values[0][f.BQ.OTHER]=m.OTHER,m.unit&&""!==m.unit)for(let o=1;o{this.values[o][f.BQ.BTC]=M.BTC}),this.commonService.convertCurrency(g.dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,S.Q)(this.unSubs[4])).subscribe({next:M=>{this.values[o][f.BQ.OTHER]=M.OTHER},error:M=>{this.conversionErrorMsg="Conversion Error: "+M}})}},error:m=>{this.conversionErrorMsg="Conversion Error: "+m}})}ngOnDestroy(){this.unSubs.forEach(m=>{m.next(null),m.complete()})}static{this.\u0275fac=function(o){return new(o||L)(l.rXU(A.h),l.rXU(R.il))}}static{this.\u0275cmp=l.VBU({type:L,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},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(o,g){1&o&&(l.j41(0,"mat-tab-group",0),l.DNE(1,k,4,3,"mat-tab",1),l.k0s()),2&o&&(l.R7$(),l.Y8G("ngForOf",g.currencyUnits))},dependencies:[b.Sq,b.bT,v.DJ,v.sA,v.UI,c.An,w.oV,D.mq,D.T8,b.QX]})}}return L})()},396:(q,G,n)=>{n.d(G,{f:()=>m});var e=n(5351),S=n(5383),f=n(4416),t=n(4438),l=n(8570),A=n(2571),R=n(5416),b=n(177),v=n(60),c=n(2920),w=n(6038),D=n(8834),E=n(5596),T=n(1997),N=n(8288),B=n(9157),Y=n(9587);const P=o=>({"display-none":o});function k(o,g){if(1&o&&(t.j41(0,"div",20),t.nrm(1,"qr-code",21),t.k0s()),2&o){const M=t.XpG();t.Y8G("ngClass",t.eq3(4,P,M.screenSize===M.screenSizeEnum.XS||M.screenSize===M.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",M.address)("size",M.qrWidth)("errorCorrectionLevel","L")}}function I(o,g){if(1&o&&(t.j41(0,"div",22),t.nrm(1,"qr-code",21),t.k0s()),2&o){const M=t.XpG();t.Y8G("ngClass",t.eq3(4,P,M.screenSize!==M.screenSizeEnum.XS&&M.screenSize!==M.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",M.address)("size",M.qrWidth)("errorCorrectionLevel","L")}}function L(o,g){if(1&o&&(t.j41(0,"div",13)(1,"div",14)(2,"h4",15),t.EFF(3,"Address Type"),t.k0s(),t.j41(4,"span",23),t.EFF(5),t.k0s()()()),2&o){const M=t.XpG();t.R7$(5),t.JRh(M.addressType)}}function x(o,g){1&o&&t.nrm(0,"mat-divider",17)}let m=(()=>{class o{constructor(M,F,h,j,U){this.dialogRef=M,this.data=F,this.logger=h,this.commonService=j,this.snackBar=U,this.faReceipt=S.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(M){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+M)}static{this.\u0275fac=function(F){return new(F||o)(t.rXU(e.CP),t.rXU(e.Vh),t.rXU(l.gP),t.rXU(A.h),t.rXU(R.UG))}}static{this.\u0275cmp=t.VBU({type:o,selectors:[["rtl-on-chain-generated-address"]],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"],[3,"value","size","errorCorrectionLevel"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(F,h){1&F&&(t.j41(0,"div",0),t.DNE(1,k,2,6,"div",1),t.j41(2,"div",2)(3,"mat-card-header",3)(4,"div",4),t.nrm(5,"fa-icon",5),t.j41(6,"span",6),t.EFF(7),t.k0s()(),t.j41(8,"button",7),t.bIt("click",function(){return h.onClose()}),t.EFF(9,"X"),t.k0s()(),t.j41(10,"mat-card-content",8)(11,"div",9),t.DNE(12,I,2,6,"div",10)(13,L,6,1,"div",11)(14,x,1,0,"mat-divider",12),t.j41(15,"div",13)(16,"div",14)(17,"h4",15),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",16),t.EFF(20),t.k0s()()(),t.nrm(21,"mat-divider",17),t.j41(22,"div",18)(23,"button",19),t.bIt("copied",function(U){return h.onCopyAddress(U)}),t.EFF(24,"Copy Address"),t.k0s()()()()()()),2&F&&(t.R7$(),t.Y8G("ngIf",h.address),t.R7$(4),t.Y8G("icon",h.faReceipt),t.R7$(2),t.JRh(h.screenSize===h.screenSizeEnum.XS?"Address":"Generated Address"),t.R7$(5),t.Y8G("ngIf",h.address),t.R7$(),t.Y8G("ngIf",""!==h.addressType),t.R7$(),t.Y8G("ngIf",""!==h.addressType),t.R7$(6),t.JRh(h.address),t.R7$(3),t.Y8G("payload",h.address))},dependencies:[b.YU,b.bT,v.aY,c.DJ,c.sA,c.UI,w.PW,D.$z,E.m2,E.MM,T.q,N.Um,B.U,Y.N]})}}return o})()},4655:(q,G,n)=>{n.d(G,{m:()=>Q});var e=n(4438),S=n(6949),f=n(4416),t=n(8570),l=n(177),A=n(9417),R=n(2920),b=n(8834),v=n(5084),c=n(9213),w=n(9631),D=n(6467),E=n(2798),T=n(6600);let N=(()=>{class r extends T.xW{constructor(s){super(s)}format(s,d){return"MMM YYYY"===d?f.KR[s.getMonth()].name+", "+s.getFullYear():"YYYY"===d?s.getFullYear().toString():s.getDate()+"/"+f.KR[s.getMonth()].name+"/"+s.getFullYear()}static{this.\u0275fac=function(d){return new(d||r)(e.KVO(T.Ju,8))}}static{this.\u0275prov=e.jDH({token:r,factory:r.\u0275fac})}}return r})();const B={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},Y={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let P=(()=>{class r{static{this.\u0275fac=function(d){return new(d||r)}}static{this.\u0275dir=e.FsC({type:r,selectors:[["","monthlyDate",""]],features:[e.Jv_([{provide:T.MJ,useClass:N},{provide:T.de,useValue:B}])]})}}return r})(),k=(()=>{class r{static{this.\u0275fac=function(d){return new(d||r)}}static{this.\u0275dir=e.FsC({type:r,selectors:[["","yearlyDate",""]],features:[e.Jv_([{provide:T.MJ,useClass:N},{provide:T.de,useValue:Y}])]})}}return r})();var I=n(92),L=n(6114);const x=["monthlyDatepicker"],m=["yearlyDatepicker"],o=()=>({animationDirection:"forward"}),g=()=>({animationDirection:"backward"}),M=()=>({animationDirection:""});function F(r,O){if(1&r&&e.eu8(0,13),2&r){e.XpG();const s=e.sdS(19);e.Y8G("ngTemplateOutlet",s)("ngTemplateOutletContext",e.lJ4(2,o))}}function h(r,O){if(1&r&&e.eu8(0,13),2&r){e.XpG();const s=e.sdS(19);e.Y8G("ngTemplateOutlet",s)("ngTemplateOutletContext",e.lJ4(2,g))}}function j(r,O){if(1&r&&e.eu8(0,13),2&r){e.XpG();const s=e.sdS(19);e.Y8G("ngTemplateOutlet",s)("ngTemplateOutletContext",e.lJ4(2,M))}}function U(r,O){if(1&r&&(e.j41(0,"mat-option",21),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&r){const s=O.$implicit;e.Y8G("value",s),e.R7$(),e.SpI(" ",e.bMT(2,2,s)," ")}}function K(r,O){if(1&r){const s=e.RV6();e.j41(0,"mat-form-field",22)(1,"input",23,1),e.mxI("ngModelChange",function(p){e.eBV(s);const u=e.XpG(2);return e.DH7(u.selectedValue,p)||(u.selectedValue=p),e.Njj(p)}),e.k0s(),e.nrm(3,"mat-datepicker-toggle",24),e.j41(4,"mat-datepicker",25,2),e.bIt("monthSelected",function(p){e.eBV(s);const u=e.XpG(2);return e.Njj(u.onMonthSelected(p))})("dateSelected",function(p){e.eBV(s);const u=e.XpG(2);return e.Njj(u.onMonthSelected(p))}),e.k0s()()}if(2&r){const s=e.sdS(5),d=e.XpG(2);e.R7$(),e.Y8G("matDatepicker",s)("min",d.first)("max",d.last),e.R50("ngModel",d.selectedValue),e.R7$(2),e.Y8G("for",s),e.R7$(),e.Y8G("startAt",d.selectedValue)}}function H(r,O){if(1&r){const s=e.RV6();e.j41(0,"mat-form-field",26)(1,"input",27,3),e.mxI("ngModelChange",function(p){e.eBV(s);const u=e.XpG(2);return e.DH7(u.selectedValue,p)||(u.selectedValue=p),e.Njj(p)}),e.k0s(),e.nrm(3,"mat-datepicker-toggle",24),e.j41(4,"mat-datepicker",28,4),e.bIt("yearSelected",function(p){e.eBV(s);const u=e.XpG(2);return e.Njj(u.onYearSelected(p))})("monthSelected",function(p){e.eBV(s);const u=e.XpG(2);return e.Njj(u.onYearSelected(p))})("dateSelected",function(p){e.eBV(s);const u=e.XpG(2);return e.Njj(u.onYearSelected(p))}),e.k0s()()}if(2&r){const s=e.sdS(5),d=e.XpG(2);e.R7$(),e.Y8G("matDatepicker",s)("min",d.first)("max",d.last),e.R50("ngModel",d.selectedValue),e.R7$(2),e.Y8G("for",s),e.R7$(),e.Y8G("startAt",d.selectedValue)}}function X(r,O){if(1&r){const s=e.RV6();e.j41(0,"div",14)(1,"div",15)(2,"mat-select",16),e.mxI("ngModelChange",function(p){e.eBV(s);const u=e.XpG();return e.DH7(u.selScrollRange,p)||(u.selScrollRange=p),e.Njj(p)}),e.bIt("selectionChange",function(p){e.eBV(s);const u=e.XpG();return e.Njj(u.onRangeChanged(p))}),e.DNE(3,U,3,4,"mat-option",17),e.k0s()(),e.j41(4,"div",18),e.DNE(5,K,6,6,"mat-form-field",19)(6,H,6,6,"mat-form-field",20),e.k0s()()}if(2&r){const s=e.XpG();e.Y8G("@sliderAnimation",s.animationDirection),e.R7$(2),e.R50("ngModel",s.selScrollRange),e.R7$(),e.Y8G("ngForOf",s.scrollRanges),e.R7$(2),e.Y8G("ngIf",s.selScrollRange===s.scrollRanges[0]),e.R7$(),e.Y8G("ngIf",s.selScrollRange===s.scrollRanges[1])}}let Q=(()=>{class r{constructor(s){this.logger=s,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(s){this.selScrollRange=s.value,this.onStepChange("LAST")}onMonthSelected(s){this.selectedValue=s,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(s){this.selectedValue=s,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(s){switch(this.logger.info(s),s){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(s){"monthlyDate"===s.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===s.srcElement.name&&this.yearlyDatepicker.open()}static{this.\u0275fac=function(d){return new(d||r)(e.rXU(t.gP))}}static{this.\u0275cmp=e.VBU({type:r,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(d,p){if(1&d&&(e.GBs(x,5),e.GBs(m,5)),2&d){let u;e.mGM(u=e.lsd())&&(p.monthlyDatepicker=u.first),e.mGM(u=e.lsd())&&(p.yearlyDatepicker=u.first)}},hostBindings:function(d,p){1&d&&e.bIt("click",function(V){return p.onChartMouseUp(V)})},outputs:{stepChanged:"stepChanged"},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(d,p){if(1&d){const u=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"button",7),e.bIt("click",function(){return e.eBV(u),e.Njj(p.onStepChange("FIRST"))}),e.j41(3,"mat-icon"),e.EFF(4,"skip_previous"),e.k0s()(),e.j41(5,"button",8),e.bIt("click",function(){return e.eBV(u),e.Njj(p.onStepChange("PREVIOUS"))}),e.j41(6,"mat-icon"),e.EFF(7,"navigate_before"),e.k0s()()(),e.DNE(8,F,1,3,"ng-container",9)(9,h,1,3,"ng-container",9)(10,j,1,3,"ng-container",9),e.j41(11,"div",10)(12,"button",11),e.bIt("click",function(){return e.eBV(u),e.Njj(p.onStepChange("NEXT"))}),e.j41(13,"mat-icon"),e.EFF(14,"navigate_next"),e.k0s()(),e.j41(15,"button",12),e.bIt("click",function(){return e.eBV(u),e.Njj(p.onStepChange("LAST"))}),e.j41(16,"mat-icon"),e.EFF(17,"skip_next"),e.k0s()()()(),e.DNE(18,X,7,5,"ng-template",null,0,e.C5r)}2&d&&(e.R7$(5),e.Y8G("disabled",p.disablePrev),e.R7$(3),e.Y8G("ngIf","forward"===p.animationDirection),e.R7$(),e.Y8G("ngIf","backward"===p.animationDirection),e.R7$(),e.Y8G("ngIf",""===p.animationDirection),e.R7$(2),e.Y8G("disabled",p.disableNext))},dependencies:[l.Sq,l.bT,l.T3,A.me,A.BC,A.vS,R.DJ,R.sA,R.UI,b.iY,v.Vh,v.bZ,v.bU,c.An,w.fg,D.rl,D.yw,E.VO,T.wT,P,k,I.z,L.V,l.PV],data:{animation:[S.k]}})}}return r})()},5085:(q,G,n)=>{n.d(G,{T:()=>e2});var e=n(6695),S=n(2042),f=n(9159),t=n(2798),l=n(4416),A=n(1771),R=n(1413),b=n(6977),v=n(9647),c=n(4438),w=n(2571),D=n(9640),E=n(177),T=n(2929),N=n(9417),B=n(2920),Y=n(6038),P=n(8834),k=n(9631),I=n(6467),L=n(6600),x=n(497);const m=()=>["all"],o=()=>["no_transaction"],g=i=>({"display-none":i});function M(i,_){if(1&i&&(c.j41(0,"mat-option",30),c.EFF(1),c.k0s()),2&i){const a=_.$implicit,C=c.XpG();c.Y8G("value",a),c.R7$(),c.JRh(C.getLabel(a))}}function F(i,_){1&i&&(c.j41(0,"th",31),c.EFF(1,"Date"),c.k0s())}function h(i,_){if(1&i&&(c.j41(0,"td",32),c.EFF(1),c.nI1(2,"date"),c.k0s()),2&i){const a=_.$implicit,C=c.XpG();c.R7$(),c.JRh(c.i5U(2,1,null==a?null:a.date,C.dataRange===C.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function j(i,_){1&i&&(c.j41(0,"th",33),c.EFF(1,"Amount Paid (Sats)"),c.k0s())}function U(i,_){if(1&i&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&i){const a=_.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==a?null:a.amount_paid,"1.0-2"))}}function K(i,_){1&i&&(c.j41(0,"th",33),c.EFF(1,"# Payments"),c.k0s())}function H(i,_){if(1&i&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&i){const a=_.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==a?null:a.num_payments))}}function X(i,_){1&i&&(c.j41(0,"th",33),c.EFF(1,"Amount Received (Sats)"),c.k0s())}function Q(i,_){if(1&i&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&i){const a=_.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==a?null:a.amount_received,"1.0-2"))}}function r(i,_){1&i&&(c.j41(0,"th",33),c.EFF(1,"# Invoices"),c.k0s())}function O(i,_){if(1&i&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&i){const a=_.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==a?null:a.num_invoices))}}function s(i,_){if(1&i){const a=c.RV6();c.j41(0,"th",35)(1,"div",36)(2,"mat-select",37),c.nrm(3,"mat-select-trigger"),c.j41(4,"mat-option",38),c.bIt("click",function(){c.eBV(a);const z=c.XpG();return c.Njj(z.onDownloadCSV())}),c.EFF(5,"Download CSV"),c.k0s()()()()}}function d(i,_){if(1&i){const a=c.RV6();c.j41(0,"td",39)(1,"button",40),c.bIt("click",function(){const z=c.eBV(a).$implicit,y=c.XpG();return c.Njj(y.onTransactionClick(z))}),c.EFF(2,"View Info"),c.k0s()()}}function p(i,_){1&i&&(c.j41(0,"p"),c.EFF(1,"No transaction available."),c.k0s())}function u(i,_){if(1&i&&(c.j41(0,"td",41),c.DNE(1,p,2,0,"p",42),c.k0s()),2&i){const a=c.XpG();c.R7$(),c.Y8G("ngIf",!(null!=a.transactions&&a.transactions.data)||(null==a.transactions||null==a.transactions.data?null:a.transactions.data.length)<1)}}function V(i,_){if(1&i&&c.nrm(0,"tr",43),2&i){const a=c.XpG();c.Y8G("ngClass",c.eq3(1,g,(null==a.transactions?null:a.transactions.data)&&(null==a.transactions||null==a.transactions.data?null:a.transactions.data.length)>0))}}function J(i,_){1&i&&c.nrm(0,"tr",44)}function c2(i,_){1&i&&c.nrm(0,"tr",45)}let e2=(()=>{class i{constructor(a,C,z,y){this.commonService=a,this.store=C,this.datePipe=z,this.camelCaseWithReplace=y,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 R.B,new R.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(a){a.dataList&&!a.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.loadTransactionsTable(this.dataList)),a.selFilter&&!a.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(v._c).pipe((0,b.Q)(this.unSubs[0])).subscribe(a=>{this.nodePageDefs="CLN"===a.lnImplementation?l.Jd:"ECL"===a.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(a){const C=[[{key:"date",value:this.datePipe.transform(a.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(a.amount_paid),title:"Amount Paid (Sats)",width:50,type:l.UN.NUMBER},{key:"num_payments",value:a.num_payments,title:"# Payments",width:50,type:l.UN.NUMBER}],[{key:"amount_received",value:Math.round(a.amount_received),title:"Amount Received (Sats)",width:50,type:l.UN.NUMBER},{key:"num_invoices",value:a.num_invoices,title:"# Invoices",width:50,type:l.UN.NUMBER}]];this.store.dispatch((0,A.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Summary",message:C}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(a){const C=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(z=>z.column===a);return C?C.label?C.label:this.camelCaseWithReplace.transform(C.column,"_"):this.commonService.titleCase(a)}setFilterPredicate(){this.transactions.filterPredicate=(a,C)=>{let z="";switch(this.selFilterBy){case"all":z=(a.date?(this.datePipe.transform(a.date,"dd/MMM")+"/"+a.date.getFullYear()).toLowerCase():"")+JSON.stringify(a).toLowerCase();break;case"date":z=this.datePipe.transform(new Date(a[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:z=typeof a[this.selFilterBy]>"u"?"":"string"==typeof a[this.selFilterBy]?a[this.selFilterBy].toLowerCase():"boolean"==typeof a[this.selFilterBy]?a[this.selFilterBy]?"yes":"no":a[this.selFilterBy].toString()}return z.includes(C)}}loadTransactionsTable(a){this.transactions=new f.I6(a?[...a]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(a,C)=>a[C]&&isNaN(a[C])?a[C].toLocaleLowerCase():a[C]?+a[C]: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(a=>{a.next(),a.complete()})}static{this.\u0275fac=function(C){return new(C||i)(c.rXU(w.h),c.rXU(D.il),c.rXU(E.vh),c.rXU(T.VD))}}static{this.\u0275cmp=c.VBU({type:i,selectors:[["rtl-transactions-report-table"]],viewQuery:function(C,z){if(1&C&&(c.GBs(S.B4,5),c.GBs(e.iy,5)),2&C){let y;c.mGM(y=c.lsd())&&(z.sort=y.first),c.mGM(y=c.lsd())&&(z.paginator=y.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},features:[c.Jv_([{provide:t.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:e.xX,useValue:(0,l.on)("Transactions")}]),c.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(C,z){if(1&C){const y=c.RV6();c.j41(0,"div",1)(1,"div",2)(2,"div",3),c.nrm(3,"div",4),c.j41(4,"div",5)(5,"mat-form-field",6)(6,"mat-label"),c.EFF(7,"Filter By"),c.k0s(),c.j41(8,"mat-select",7),c.mxI("ngModelChange",function(W){return c.eBV(y),c.DH7(z.selFilterBy,W)||(z.selFilterBy=W),c.Njj(W)}),c.bIt("selectionChange",function(){return c.eBV(y),z.selFilter="",c.Njj(z.applyFilter())}),c.j41(9,"perfect-scrollbar"),c.DNE(10,M,2,2,"mat-option",8),c.k0s()()(),c.j41(11,"mat-form-field",6)(12,"mat-label"),c.EFF(13,"Filter"),c.k0s(),c.j41(14,"input",9),c.mxI("ngModelChange",function(W){return c.eBV(y),c.DH7(z.selFilter,W)||(z.selFilter=W),c.Njj(W)}),c.bIt("input",function(){return c.eBV(y),c.Njj(z.applyFilter())})("keyup",function(){return c.eBV(y),c.Njj(z.applyFilter())}),c.k0s()()()(),c.j41(15,"div",10)(16,"div",11)(17,"table",12,0),c.qex(19,13),c.DNE(20,F,2,0,"th",14)(21,h,3,4,"td",15),c.bVm(),c.qex(22,16),c.DNE(23,j,2,0,"th",17)(24,U,4,4,"td",15),c.bVm(),c.qex(25,18),c.DNE(26,K,2,0,"th",17)(27,H,4,3,"td",15),c.bVm(),c.qex(28,19),c.DNE(29,X,2,0,"th",17)(30,Q,4,4,"td",15),c.bVm(),c.qex(31,20),c.DNE(32,r,2,0,"th",17)(33,O,4,3,"td",15),c.bVm(),c.qex(34,21),c.DNE(35,s,6,0,"th",22)(36,d,3,0,"td",23),c.bVm(),c.qex(37,24),c.DNE(38,u,2,1,"td",25),c.bVm(),c.DNE(39,V,1,3,"tr",26)(40,J,1,0,"tr",27)(41,c2,1,0,"tr",28),c.k0s(),c.nrm(42,"mat-paginator",29),c.k0s()()()()}2&C&&(c.R7$(8),c.R50("ngModel",z.selFilterBy),c.R7$(2),c.Y8G("ngForOf",c.lJ4(12,m).concat(z.displayedColumns.slice(0,-1))),c.R7$(4),c.R50("ngModel",z.selFilter),c.R7$(3),c.Y8G("matSortActive",z.tableSetting.sortBy)("matSortDirection",z.tableSetting.sortOrder)("dataSource",z.transactions),c.R7$(22),c.Y8G("matFooterRowDef",c.lJ4(13,o)),c.R7$(),c.Y8G("matHeaderRowDef",z.displayedColumns),c.R7$(),c.Y8G("matRowDefColumns",z.displayedColumns),c.R7$(),c.Y8G("pageSize",z.pageSize)("pageSizeOptions",z.pageSizeOptions)("showFirstLastButtons",z.screenSize!==z.screenSizeEnum.XS))},dependencies:[E.YU,E.Sq,E.bT,N.me,N.BC,N.vS,B.DJ,B.sA,B.UI,Y.PW,P.$z,k.fg,I.rl,I.nJ,t.VO,t.$2,L.wT,S.B4,S.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,x.ZF,x.Ld,E.QX,E.vh]})}}return i})()},614:(q,G,n)=>{n.d(G,{Qpm:()=>s1,wB1:()=>I2});const I2={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 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"]},s1={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 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.b1206fbf24aa1327.js b/frontend/193.b1206fbf24aa1327.js deleted file mode 100644 index 795a130a..00000000 --- a/frontend/193.b1206fbf24aa1327.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[193],{5837:(J,G,r)=>{r.d(G,{f:()=>P});var a=r(1413),L=r(6977),f=r(4416),t=r(9647),e=r(4438),F=r(2571),A=r(9640),E=r(177),S=r(2920),c=r(9213),I=r(4823),R=r(6850);function y(z,V){if(1&z&&(e.j41(0,"mat-icon",10),e.EFF(1,"info_outline"),e.k0s()),2&z){const m=e.XpG().$implicit;e.Y8G("matTooltip",m.tooltip)}}function x(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,m.dataValue,"1.0-0")," ")}}function b(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit,s=e.XpG(2);e.R7$(),e.SpI(" ",e.i5U(2,1,m[s.currencyUnitEnum.BTC],s.currencyUnitFormats.BTC)," ")}}function D(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit,s=e.XpG(2);e.R7$(),e.SpI(" ",e.i5U(2,1,m[s.currencyUnitEnum.OTHER],s.currencyUnitFormats.OTHER)," ")}}function U(z,V){if(1&z&&(e.j41(0,"div",6)(1,"div",7),e.EFF(2),e.DNE(3,y,2,1,"mat-icon",8),e.k0s(),e.DNE(4,x,3,4,"span",9)(5,b,3,4,"span",9)(6,D,3,4,"span",9),e.k0s()),2&z){const m=V.$implicit,s=e.XpG().$implicit,_=e.XpG();e.R7$(2),e.SpI(" ",m.title," "),e.R7$(),e.Y8G("ngIf",m.tooltip),e.R7$(),e.Y8G("ngIf",s===_.currencyUnitEnum.SATS),e.R7$(),e.Y8G("ngIf",s===_.currencyUnitEnum.BTC),e.R7$(),e.Y8G("ngIf",_.fiatConversion&&s!==_.currencyUnitEnum.SATS&&s!==_.currencyUnitEnum.BTC&&""===_.conversionErrorMsg)}}function k(z,V){if(1&z&&(e.j41(0,"div",12)(1,"div",13),e.EFF(2),e.k0s()()),2&z){const m=e.XpG(2);e.R7$(2),e.JRh(m.conversionErrorMsg)}}function B(z,V){if(1&z&&(e.j41(0,"mat-tab",2)(1,"div",3),e.DNE(2,U,7,5,"div",4),e.k0s(),e.DNE(3,k,3,1,"div",5),e.k0s()),2&z){const m=V.$implicit,s=e.XpG();e.FS9("label",m),e.R7$(2),e.Y8G("ngForOf",s.values),e.R7$(),e.Y8G("ngIf",s.fiatConversion&&m!==s.currencyUnitEnum.SATS&&m!==s.currencyUnitEnum.BTC&&""!==s.conversionErrorMsg)}}let P=(()=>{class z{constructor(m,s){this.commonService=m,this.store=s,this.values=[],this.currencyUnitEnum=f.BQ,this.currencyUnitFormats=f.k,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new a.B,new a.B,new a.B,new a.B,new a.B]}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()}ngOnInit(){this.store.select(t._c).pipe((0,L.Q)(this.unSubs[0])).subscribe(m=>{this.fiatConversion=m.settings.fiatConversion,this.currencyUnits=m.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,L.Q)(this.unSubs[1])).subscribe(m=>{this.values[0][f.BQ.BTC]=m.BTC}),this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,L.Q)(this.unSubs[2])).subscribe({next:m=>{if(this.values[0][f.BQ.OTHER]=m.OTHER,m.unit&&""!==m.unit)for(let s=1;s{this.values[s][f.BQ.BTC]=C.BTC}),this.commonService.convertCurrency(_.dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,L.Q)(this.unSubs[4])).subscribe({next:C=>{this.values[s][f.BQ.OTHER]=C.OTHER},error:C=>{this.conversionErrorMsg="Conversion Error: "+C}})}},error:m=>{this.conversionErrorMsg="Conversion Error: "+m}})}ngOnDestroy(){this.unSubs.forEach(m=>{m.next(null),m.complete()})}static#c=this.\u0275fac=function(s){return new(s||z)(e.rXU(F.h),e.rXU(A.il))};static#a=this.\u0275cmp=e.VBU({type:z,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},features:[e.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(s,_){1&s&&(e.j41(0,"mat-tab-group",0),e.DNE(1,B,4,3,"mat-tab",1),e.k0s()),2&s&&(e.R7$(),e.Y8G("ngForOf",_.currencyUnits))},dependencies:[E.Sq,E.bT,S.DJ,S.sA,S.UI,c.An,I.oV,R.mq,R.T8,E.QX]})}return z})()},396:(J,G,r)=>{r.d(G,{f:()=>m});var a=r(5351),L=r(5383),f=r(4416),t=r(4438),e=r(8570),F=r(2571),A=r(5416),E=r(177),S=r(60),c=r(2920),I=r(6038),R=r(8834),y=r(5596),x=r(1997),b=r(8288),D=r(9157),U=r(9587);const k=s=>({"display-none":s});function B(s,_){if(1&s&&(t.j41(0,"div",20),t.nrm(1,"qr-code",21),t.k0s()),2&s){const C=t.XpG();t.Y8G("ngClass",t.eq3(4,k,C.screenSize===C.screenSizeEnum.XS||C.screenSize===C.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",C.address)("size",C.qrWidth)("errorCorrectionLevel","L")}}function P(s,_){if(1&s&&(t.j41(0,"div",22),t.nrm(1,"qr-code",21),t.k0s()),2&s){const C=t.XpG();t.Y8G("ngClass",t.eq3(4,k,C.screenSize!==C.screenSizeEnum.XS&&C.screenSize!==C.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",C.address)("size",C.qrWidth)("errorCorrectionLevel","L")}}function z(s,_){if(1&s&&(t.j41(0,"div",13)(1,"div",14)(2,"h4",15),t.EFF(3,"Address Type"),t.k0s(),t.j41(4,"span",23),t.EFF(5),t.k0s()()()),2&s){const C=t.XpG();t.R7$(5),t.JRh(C.addressType)}}function V(s,_){1&s&&t.nrm(0,"mat-divider",17)}let m=(()=>{class s{constructor(C,T,H,w,O){this.dialogRef=C,this.data=T,this.logger=H,this.commonService=w,this.snackBar=O,this.faReceipt=L.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(C){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+C)}static#c=this.\u0275fac=function(T){return new(T||s)(t.rXU(a.CP),t.rXU(a.Vh),t.rXU(e.gP),t.rXU(F.h),t.rXU(A.UG))};static#a=this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-on-chain-generated-address"]],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"],[3,"value","size","errorCorrectionLevel"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(T,H){1&T&&(t.j41(0,"div",0),t.DNE(1,B,2,6,"div",1),t.j41(2,"div",2)(3,"mat-card-header",3)(4,"div",4),t.nrm(5,"fa-icon",5),t.j41(6,"span",6),t.EFF(7),t.k0s()(),t.j41(8,"button",7),t.bIt("click",function(){return H.onClose()}),t.EFF(9,"X"),t.k0s()(),t.j41(10,"mat-card-content",8)(11,"div",9),t.DNE(12,P,2,6,"div",10)(13,z,6,1,"div",11)(14,V,1,0,"mat-divider",12),t.j41(15,"div",13)(16,"div",14)(17,"h4",15),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",16),t.EFF(20),t.k0s()()(),t.nrm(21,"mat-divider",17),t.j41(22,"div",18)(23,"button",19),t.bIt("copied",function(O){return H.onCopyAddress(O)}),t.EFF(24,"Copy Address"),t.k0s()()()()()()),2&T&&(t.R7$(),t.Y8G("ngIf",H.address),t.R7$(4),t.Y8G("icon",H.faReceipt),t.R7$(2),t.JRh(H.screenSize===H.screenSizeEnum.XS?"Address":"Generated Address"),t.R7$(5),t.Y8G("ngIf",H.address),t.R7$(),t.Y8G("ngIf",""!==H.addressType),t.R7$(),t.Y8G("ngIf",""!==H.addressType),t.R7$(6),t.JRh(H.address),t.R7$(3),t.Y8G("payload",H.address))},dependencies:[E.YU,E.bT,S.aY,c.DJ,c.sA,c.UI,I.PW,R.$z,y.m2,y.MM,x.q,b.Um,D.U,U.N]})}return s})()},4655:(J,G,r)=>{r.d(G,{m:()=>q});var a=r(4438),L=r(6949),f=r(4416),t=r(8570),e=r(177),F=r(9417),A=r(2920),E=r(8834),S=r(5084),c=r(9213),I=r(9631),R=r(6467),y=r(2798),x=r(6600);let b=(()=>{class o extends x.xW{constructor(i){super(i)}format(i,d){return"MMM YYYY"===d?f.KR[i.getMonth()].name+", "+i.getFullYear():"YYYY"===d?i.getFullYear().toString():i.getDate()+"/"+f.KR[i.getMonth()].name+"/"+i.getFullYear()}static#c=this.\u0275fac=function(d){return new(d||o)(a.KVO(x.Ju,8))};static#a=this.\u0275prov=a.jDH({token:o,factory:o.\u0275fac})}return o})();const D={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 k=(()=>{class o{static#c=this.\u0275fac=function(d){return new(d||o)};static#a=this.\u0275dir=a.FsC({type:o,selectors:[["","monthlyDate",""]],features:[a.Jv_([{provide:x.MJ,useClass:b},{provide:x.de,useValue:D}])]})}return o})(),B=(()=>{class o{static#c=this.\u0275fac=function(d){return new(d||o)};static#a=this.\u0275dir=a.FsC({type:o,selectors:[["","yearlyDate",""]],features:[a.Jv_([{provide:x.MJ,useClass:b},{provide:x.de,useValue:U}])]})}return o})();var P=r(92),z=r(6114);const V=["monthlyDatepicker"],m=["yearlyDatepicker"],s=()=>({animationDirection:"forward"}),_=()=>({animationDirection:"backward"}),C=()=>({animationDirection:""});function T(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,s))}}function H(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,_))}}function w(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,C))}}function O(o,N){if(1&o&&(a.j41(0,"mat-option",21),a.EFF(1),a.nI1(2,"titlecase"),a.k0s()),2&o){const i=N.$implicit;a.Y8G("value",i),a.R7$(),a.SpI(" ",a.bMT(2,2,i)," ")}}function $(o,N){if(1&o){const i=a.RV6();a.j41(0,"mat-form-field",22)(1,"input",23,1),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG(2);return a.DH7(p.selectedValue,h)||(p.selectedValue=h),a.Njj(h)}),a.k0s(),a.nrm(3,"mat-datepicker-toggle",24),a.j41(4,"mat-datepicker",25,2),a.bIt("monthSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onMonthSelected(h))})("dateSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onMonthSelected(h))}),a.k0s()()}if(2&o){const i=a.sdS(5),d=a.XpG(2);a.R7$(),a.Y8G("matDatepicker",i)("min",d.first)("max",d.last),a.R50("ngModel",d.selectedValue),a.R7$(2),a.Y8G("for",i),a.R7$(),a.Y8G("startAt",d.selectedValue)}}function W(o,N){if(1&o){const i=a.RV6();a.j41(0,"mat-form-field",26)(1,"input",27,3),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG(2);return a.DH7(p.selectedValue,h)||(p.selectedValue=h),a.Njj(h)}),a.k0s(),a.nrm(3,"mat-datepicker-toggle",24),a.j41(4,"mat-datepicker",28,4),a.bIt("yearSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))})("monthSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))})("dateSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))}),a.k0s()()}if(2&o){const i=a.sdS(5),d=a.XpG(2);a.R7$(),a.Y8G("matDatepicker",i)("min",d.first)("max",d.last),a.R50("ngModel",d.selectedValue),a.R7$(2),a.Y8G("for",i),a.R7$(),a.Y8G("startAt",d.selectedValue)}}function X(o,N){if(1&o){const i=a.RV6();a.j41(0,"div",14)(1,"div",15)(2,"mat-select",16),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG();return a.DH7(p.selScrollRange,h)||(p.selScrollRange=h),a.Njj(h)}),a.bIt("selectionChange",function(h){a.eBV(i);const p=a.XpG();return a.Njj(p.onRangeChanged(h))}),a.DNE(3,O,3,4,"mat-option",17),a.k0s()(),a.j41(4,"div",18),a.DNE(5,$,6,6,"mat-form-field",19)(6,W,6,6,"mat-form-field",20),a.k0s()()}if(2&o){const i=a.XpG();a.Y8G("@sliderAnimation",i.animationDirection),a.R7$(2),a.R50("ngModel",i.selScrollRange),a.R7$(),a.Y8G("ngForOf",i.scrollRanges),a.R7$(2),a.Y8G("ngIf",i.selScrollRange===i.scrollRanges[0]),a.R7$(),a.Y8G("ngIf",i.selScrollRange===i.scrollRanges[1])}}let q=(()=>{class o{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 a.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#c=this.\u0275fac=function(d){return new(d||o)(a.rXU(t.gP))};static#a=this.\u0275cmp=a.VBU({type:o,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(d,h){if(1&d&&(a.GBs(V,5),a.GBs(m,5)),2&d){let p;a.mGM(p=a.lsd())&&(h.monthlyDatepicker=p.first),a.mGM(p=a.lsd())&&(h.yearlyDatepicker=p.first)}},hostBindings:function(d,h){1&d&&a.bIt("click",function(Y){return h.onChartMouseUp(Y)})},outputs:{stepChanged:"stepChanged"},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(d,h){if(1&d){const p=a.RV6();a.j41(0,"div",5)(1,"div",6)(2,"button",7),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("FIRST"))}),a.j41(3,"mat-icon"),a.EFF(4,"skip_previous"),a.k0s()(),a.j41(5,"button",8),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("PREVIOUS"))}),a.j41(6,"mat-icon"),a.EFF(7,"navigate_before"),a.k0s()()(),a.DNE(8,T,1,3,"ng-container",9)(9,H,1,3,"ng-container",9)(10,w,1,3,"ng-container",9),a.j41(11,"div",10)(12,"button",11),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("NEXT"))}),a.j41(13,"mat-icon"),a.EFF(14,"navigate_next"),a.k0s()(),a.j41(15,"button",12),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("LAST"))}),a.j41(16,"mat-icon"),a.EFF(17,"skip_next"),a.k0s()()()(),a.DNE(18,X,7,5,"ng-template",null,0,a.C5r)}2&d&&(a.R7$(5),a.Y8G("disabled",h.disablePrev),a.R7$(3),a.Y8G("ngIf","forward"===h.animationDirection),a.R7$(),a.Y8G("ngIf","backward"===h.animationDirection),a.R7$(),a.Y8G("ngIf",""===h.animationDirection),a.R7$(2),a.Y8G("disabled",h.disableNext))},dependencies:[e.Sq,e.bT,e.T3,F.me,F.BC,F.vS,A.DJ,A.sA,A.UI,E.iY,S.Vh,S.bZ,S.bU,c.An,I.fg,R.rl,R.yw,y.VO,x.wT,k,B,P.z,z.V,e.PV],data:{animation:[L.k]}})}return o})()},5085:(J,G,r)=>{r.d(G,{T:()=>a2});var a=r(6695),L=r(2042),f=r(9159),t=r(2798),e=r(4416),F=r(1771),A=r(1413),E=r(6977),S=r(9647),c=r(4438),I=r(2571),R=r(9640),y=r(177),x=r(2929),b=r(9417),D=r(2920),U=r(6038),k=r(8834),B=r(9631),P=r(6467),z=r(6600),V=r(497);const m=()=>["all"],s=()=>["no_transaction"],_=l=>({"display-none":l});function C(l,M){if(1&l&&(c.j41(0,"mat-option",30),c.EFF(1),c.k0s()),2&l){const n=M.$implicit,v=c.XpG();c.Y8G("value",n),c.R7$(),c.JRh(v.getLabel(n))}}function T(l,M){1&l&&(c.j41(0,"th",31),c.EFF(1,"Date"),c.k0s())}function H(l,M){if(1&l&&(c.j41(0,"td",32),c.EFF(1),c.nI1(2,"date"),c.k0s()),2&l){const n=M.$implicit,v=c.XpG();c.R7$(),c.JRh(c.i5U(2,1,null==n?null:n.date,v.dataRange===v.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function w(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"Amount Paid (Sats)"),c.k0s())}function O(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==n?null:n.amount_paid,"1.0-2"))}}function $(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"# Payments"),c.k0s())}function W(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==n?null:n.num_payments))}}function X(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"Amount Received (Sats)"),c.k0s())}function q(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==n?null:n.amount_received,"1.0-2"))}}function o(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"# Invoices"),c.k0s())}function N(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==n?null:n.num_invoices))}}function i(l,M){if(1&l){const n=c.RV6();c.j41(0,"th",35)(1,"div",36)(2,"mat-select",37),c.nrm(3,"mat-select-trigger"),c.j41(4,"mat-option",38),c.bIt("click",function(){c.eBV(n);const u=c.XpG();return c.Njj(u.onDownloadCSV())}),c.EFF(5,"Download CSV"),c.k0s()()()()}}function d(l,M){if(1&l){const n=c.RV6();c.j41(0,"td",39)(1,"button",40),c.bIt("click",function(){const u=c.eBV(n).$implicit,g=c.XpG();return c.Njj(g.onTransactionClick(u))}),c.EFF(2,"View Info"),c.k0s()()}}function h(l,M){1&l&&(c.j41(0,"p"),c.EFF(1,"No transaction available."),c.k0s())}function p(l,M){if(1&l&&(c.j41(0,"td",41),c.DNE(1,h,2,0,"p",42),c.k0s()),2&l){const n=c.XpG();c.R7$(),c.Y8G("ngIf",!(null!=n.transactions&&n.transactions.data)||(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)<1)}}function Y(l,M){if(1&l&&c.nrm(0,"tr",43),2&l){const n=c.XpG();c.Y8G("ngClass",c.eq3(1,_,(null==n.transactions?null:n.transactions.data)&&(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)>0))}}function Q(l,M){1&l&&c.nrm(0,"tr",44)}function c2(l,M){1&l&&c.nrm(0,"tr",45)}let a2=(()=>{class l{constructor(n,v,u,g){this.commonService=n,this.store=v,this.datePipe=u,this.camelCaseWithReplace=g,this.dataRange=e.rs[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:e.md,sortBy:"date",sortOrder:e.oi.DESCENDING},this.nodePageDefs=e._1,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=e.rs,this.transactions=new f.I6([]),this.pageSize=e.md,this.pageSizeOptions=e.xp,this.screenSize="",this.screenSizeEnum=e.f7,this.unSubs=[new A.B,new A.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(n){n.dataList&&!n.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.md,this.loadTransactionsTable(this.dataList)),n.selFilter&&!n.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(S._c).pipe((0,E.Q)(this.unSubs[0])).subscribe(n=>{this.nodePageDefs="CLN"===n.lnImplementation?e.Jd:"ECL"===n.lnImplementation?e.WW:e._1}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.md,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){setTimeout(()=>{this.setTableWidgets()},0)}onTransactionClick(n){const v=[[{key:"date",value:this.datePipe.transform(n.date,this.dataRange===e.rs[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:e.UN.DATE}],[{key:"amount_paid",value:Math.round(n.amount_paid),title:"Amount Paid (Sats)",width:50,type:e.UN.NUMBER},{key:"num_payments",value:n.num_payments,title:"# Payments",width:50,type:e.UN.NUMBER}],[{key:"amount_received",value:Math.round(n.amount_received),title:"Amount Received (Sats)",width:50,type:e.UN.NUMBER},{key:"num_invoices",value:n.num_invoices,title:"# Invoices",width:50,type:e.UN.NUMBER}]];this.store.dispatch((0,F.xO)({payload:{data:{type:e.A$.INFORMATION,alertTitle:"Transaction Summary",message:v}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(n){const v=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(u=>u.column===n);return v?v.label?v.label:this.camelCaseWithReplace.transform(v.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.transactions.filterPredicate=(n,v)=>{let u="";switch(this.selFilterBy){case"all":u=(n.date?(this.datePipe.transform(n.date,"dd/MMM")+"/"+n.date.getFullYear()).toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"date":u=this.datePipe.transform(new Date(n[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:u=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 u.includes(v)}}loadTransactionsTable(n){this.transactions=new f.I6(n?[...n]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(n,v)=>n[v]&&isNaN(n[v])?n[v].toLocaleLowerCase():n[v]?+n[v]: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(n=>{n.next(),n.complete()})}static#c=this.\u0275fac=function(v){return new(v||l)(c.rXU(I.h),c.rXU(R.il),c.rXU(y.vh),c.rXU(x.VD))};static#a=this.\u0275cmp=c.VBU({type:l,selectors:[["rtl-transactions-report-table"]],viewQuery:function(v,u){if(1&v&&(c.GBs(L.B4,5),c.GBs(a.iy,5)),2&v){let g;c.mGM(g=c.lsd())&&(u.sort=g.first),c.mGM(g=c.lsd())&&(u.paginator=g.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},features:[c.Jv_([{provide:t.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:a.xX,useValue:(0,e.on)("Transactions")}]),c.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(v,u){if(1&v){const g=c.RV6();c.j41(0,"div",1)(1,"div",2)(2,"div",3),c.nrm(3,"div",4),c.j41(4,"div",5)(5,"mat-form-field",6)(6,"mat-label"),c.EFF(7,"Filter By"),c.k0s(),c.j41(8,"mat-select",7),c.mxI("ngModelChange",function(j){return c.eBV(g),c.DH7(u.selFilterBy,j)||(u.selFilterBy=j),c.Njj(j)}),c.bIt("selectionChange",function(){return c.eBV(g),u.selFilter="",c.Njj(u.applyFilter())}),c.j41(9,"perfect-scrollbar"),c.DNE(10,C,2,2,"mat-option",8),c.k0s()()(),c.j41(11,"mat-form-field",6)(12,"mat-label"),c.EFF(13,"Filter"),c.k0s(),c.j41(14,"input",9),c.mxI("ngModelChange",function(j){return c.eBV(g),c.DH7(u.selFilter,j)||(u.selFilter=j),c.Njj(j)}),c.bIt("input",function(){return c.eBV(g),c.Njj(u.applyFilter())})("keyup",function(){return c.eBV(g),c.Njj(u.applyFilter())}),c.k0s()()()(),c.j41(15,"div",10)(16,"div",11)(17,"table",12,0),c.qex(19,13),c.DNE(20,T,2,0,"th",14)(21,H,3,4,"td",15),c.bVm(),c.qex(22,16),c.DNE(23,w,2,0,"th",17)(24,O,4,4,"td",15),c.bVm(),c.qex(25,18),c.DNE(26,$,2,0,"th",17)(27,W,4,3,"td",15),c.bVm(),c.qex(28,19),c.DNE(29,X,2,0,"th",17)(30,q,4,4,"td",15),c.bVm(),c.qex(31,20),c.DNE(32,o,2,0,"th",17)(33,N,4,3,"td",15),c.bVm(),c.qex(34,21),c.DNE(35,i,6,0,"th",22)(36,d,3,0,"td",23),c.bVm(),c.qex(37,24),c.DNE(38,p,2,1,"td",25),c.bVm(),c.DNE(39,Y,1,3,"tr",26)(40,Q,1,0,"tr",27)(41,c2,1,0,"tr",28),c.k0s(),c.nrm(42,"mat-paginator",29),c.k0s()()()()}2&v&&(c.R7$(8),c.R50("ngModel",u.selFilterBy),c.R7$(2),c.Y8G("ngForOf",c.lJ4(12,m).concat(u.displayedColumns.slice(0,-1))),c.R7$(4),c.R50("ngModel",u.selFilter),c.R7$(3),c.Y8G("matSortActive",u.tableSetting.sortBy)("matSortDirection",u.tableSetting.sortOrder)("dataSource",u.transactions),c.R7$(22),c.Y8G("matFooterRowDef",c.lJ4(13,s)),c.R7$(),c.Y8G("matHeaderRowDef",u.displayedColumns),c.R7$(),c.Y8G("matRowDefColumns",u.displayedColumns),c.R7$(),c.Y8G("pageSize",u.pageSize)("pageSizeOptions",u.pageSizeOptions)("showFirstLastButtons",u.screenSize!==u.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,b.me,b.BC,b.vS,D.DJ,D.sA,D.UI,U.PW,k.$z,B.fg,P.rl,P.nJ,t.VO,t.$2,z.wT,L.B4,L.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,a.iy,V.ZF,V.Ld,y.QX,y.vh]})}return l})()},614:(J,G,r)=>{r.d(G,{Qpm:()=>i1,wB1:()=>P2});var P2={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 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"]},i1={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 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 b73ca59b..c387d5d6 100644 --- a/frontend/3rdpartylicenses.txt +++ b/frontend/3rdpartylicenses.txt @@ -1,5 +1,27 @@ @angular/animations MIT +The MIT License + +Copyright (c) 2010-2024 Google LLC. https://angular.dev/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. + @angular/cdk MIT @@ -28,15 +50,81 @@ THE SOFTWARE. @angular/common MIT +The MIT License + +Copyright (c) 2010-2024 Google LLC. https://angular.dev/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. + @angular/core MIT +The MIT License + +Copyright (c) 2010-2024 Google LLC. https://angular.dev/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. + @angular/flex-layout MIT @angular/forms MIT +The MIT License + +Copyright (c) 2010-2024 Google LLC. https://angular.dev/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. + @angular/material MIT @@ -65,9 +153,53 @@ THE SOFTWARE. @angular/platform-browser MIT +The MIT License + +Copyright (c) 2010-2024 Google LLC. https://angular.dev/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. + @angular/router MIT +The MIT License + +Copyright (c) 2010-2024 Google LLC. https://angular.dev/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. + @babel/runtime MIT @@ -1565,9 +1697,6 @@ THE SOFTWARE. elliptic MIT -encode-utf8 -MIT - events MIT MIT diff --git a/frontend/853.50b06a24091d386f.js b/frontend/853.50b06a24091d386f.js new file mode 100644 index 00000000..50369184 --- /dev/null +++ b/frontend/853.50b06a24091d386f.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[853],{4853:(Za,Pt,Te)=>{"use strict";Te.r(Pt),Te.d(Pt,{CLNModule:()=>bh});var oe=Te(177),un=Te(1188),Y=Te(9881),A=Te(4438),r=Te(2920),g=Te(7575);function i(t,I){1&t&&A.nrm(0,"mat-progress-bar",3)}let s=(()=>{class t{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(c=>{switch(!0){case c instanceof un.Z:this.loading=!0;break;case c instanceof un.wF:case c instanceof un.j5:case c instanceof un.L6:this.loading=!1}})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-root"]],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(c,l){1&c&&(A.j41(0,"div",1),A.DNE(1,i,1,0,"mat-progress-bar",2),A.nrm(2,"router-outlet",null,0),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf",l.loading))},dependencies:[oe.bT,r.DJ,r.sA,r.UI,g.HM,un.n3],data:{animation:[Y.E]}})}}return t})();var o=Te(1413),m=Te(6977),u=Te(3993),f=Te(614),B=Te(5383),a=Te(4416),d=Te(9647),h=Te(9584),E=Te(8570),n=Te(9640),C=Te(2571),P=Te(60),M=Te(6038),N=Te(8834),Q=Te(5596),X=Te(6195),D=Te(9213),F=Te(9115),y=Te(6850),K=Te(5964),v=Te(6695),b=Te(2042),w=Te(9159),Z=Te(2798),oA=Te(5351),q=Te(8430),fA=Te(4054),_=Te(9417),CA=Te(9631),KA=Te(6467),pA=Te(6600),NA=Te(450),zA=Te(4823),O=Te(9587),mA=Te(6114);function tA(t,I){1&t&&(A.j41(0,"span",31),A.EFF(1,"= "),A.k0s())}function $(t,I){if(1&t&&(A.j41(0,"span",32),A.nrm(1,"fa-icon",33),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function hA(t,I){if(1&t&&A.nrm(0,"span",34),2&t){const e=A.XpG();A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function yA(t,I){if(1&t&&(A.j41(0,"mat-option",35),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(A.bMT(2,2,e))}}function GA(t,I){if(1&t&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.invoiceError)}}function j(t,I){if(1&t&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",37),A.DNE(2,GA,2,1,"span",38),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.invoiceError)}}let U=(()=>{class t{constructor(e,c,l,W,LA,VA){this.dialogRef=e,this.data=c,this.store=l,this.decimalPipe=W,this.commonService=LA,this.actions=VA,this.faExclamationTriangle=B.zpE,this.convertedCurrency=null,this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=a.md,this.timeUnitEnum=a.F7,this.timeUnits=a.SY,this.selTimeUnit=a.F7.SECS,this.invoiceError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(h.mH).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,m.Q)(this.unSubs[2]),(0,K.p)(e=>e.type===a.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(e=>{e.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===e.payload.action&&(e.payload.status===a.wn.ERROR&&(this.invoiceError=e.payload.message),e.payload.status===a.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(e){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let c=this.expiry?this.expiry:a.It;this.selTimeUnit!==a.F7.SECS&&this.expiry&&(c=this.commonService.convertTime(this.expiry,this.selTimeUnit,a.F7.SECS)),this.store.dispatch((0,q.VK)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:c,exposeprivatechannels:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=a.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.invoiceValueHint="",this.invoiceValue&&this.invoiceValue>99&&this.commonService.convertCurrency(this.invoiceValue,a.BQ.SATS,a.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:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,a.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onTimeUnitChange(e){this.expiry&&this.selTimeUnit!==e.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,e.value)),this.selTimeUnit=e.value}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(n.il),A.rXU(oe.QX),A.rXU(C.h),A.rXU(fA.En))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-create-invoices"]],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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.description,VA)||(l.description=VA),A.Njj(VA)}),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(VA){return A.eBV(W),A.DH7(l.invoiceValue,VA)||(l.invoiceValue=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.onInvoiceValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint",15),A.DNE(23,tA,2,0,"span",16)(24,$,2,1,"span",17)(25,hA,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(VA){return A.eBV(W),A.DH7(l.expiry,VA)||(l.expiry=VA),A.Njj(VA)}),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(VA){return A.eBV(W),A.Njj(l.onTimeUnitChange(VA))}),A.DNE(36,yA,3,4,"mat-option",23),A.k0s()()(),A.j41(37,"div",24)(38,"mat-slide-toggle",25),A.mxI("ngModelChange",function(VA){return A.eBV(W),A.DH7(l.private,VA)||(l.private=VA),A.Njj(VA)}),A.EFF(39,"Private Routing Hints"),A.k0s(),A.j41(40,"mat-icon",26),A.EFF(41,"info_outline"),A.k0s()(),A.DNE(42,j,3,2,"div",27),A.j41(43,"div",28)(44,"button",29),A.bIt("click",function(){return A.eBV(W),A.Njj(l.resetData())}),A.EFF(45,"Clear Field"),A.k0s(),A.j41(46,"button",30),A.bIt("click",function(){A.eBV(W);const VA=A.sdS(10);return A.Njj(l.onAddInvoice(VA))}),A.EFF(47,"Create Invoice"),A.k0s()()()()()()}2&c&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",l.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",l.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==l.invoiceValueHint),A.R7$(),A.Y8G("ngIf",l.convertedCurrency&&"FA"===l.convertedCurrency.iconType&&""!==l.invoiceValueHint),A.R7$(),A.Y8G("ngIf",l.convertedCurrency&&"SVG"===l.convertedCurrency.iconType&&""!==l.invoiceValueHint),A.R7$(),A.SpI(" ",l.invoiceValueHint," "),A.R7$(4),A.Y8G("step",l.selTimeUnit===l.timeUnitEnum.SECS?300:l.selTimeUnit===l.timeUnitEnum.MINS?10:l.selTimeUnit===l.timeUnitEnum.HOURS?2:1)("min",1),A.R50("ngModel",l.expiry),A.R7$(2),A.SpI("",A.bMT(33,17,l.selTimeUnit)," "),A.R7$(3),A.Y8G("value",l.selTimeUnit),A.R7$(),A.Y8G("ngForOf",l.timeUnits),A.R7$(2),A.R50("ngModel",l.private),A.R7$(4),A.Y8G("ngIf",""!==l.invoiceError))},dependencies:[oe.Sq,oe.bT,_.qT,_.me,_.Q0,_.BC,_.cb,_.VZ,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,oA.tx,N.$z,Q.m2,Q.MM,D.An,CA.fg,KA.rl,KA.nJ,KA.MV,KA.yw,Z.VO,pA.wT,NA.sG,zA.oV,O.N,mA.V,oe.PV]})}}return t})();var rA=Te(8321),AA=Te(1771),PA=Te(7541),IA=Te(2929),cA=Te(497);const dA=()=>["all"],vA=t=>({"error-border":t}),xA=()=>["no_invoice"],SA=t=>({"mr-0":t}),EA=t=>({width:t}),WA=t=>({"display-none":t});function ge(t,I){1&t&&(A.j41(0,"span",19),A.EFF(1,"= "),A.k0s())}function Be(t,I){if(1&t&&(A.j41(0,"span",20),A.nrm(1,"fa-icon",21),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function le(t,I){if(1&t&&A.nrm(0,"span",22),2&t){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function we(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.description,l)||(W.description=l),A.Njj(l)}),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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.invoiceValue,l)||(W.invoiceValue=l),A.Njj(l)}),A.bIt("keyup",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onInvoiceValueChange())}),A.k0s(),A.j41(10,"span",11),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",12),A.DNE(13,ge,2,0,"span",13)(14,Be,2,1,"span",14)(15,le,1,1,"span",15),A.EFF(16),A.k0s()(),A.j41(17,"div",16)(18,"button",17),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.resetData())}),A.EFF(19,"Clear Field"),A.k0s(),A.j41(20,"button",18),A.bIt("click",function(){A.eBV(e);const l=A.sdS(1),W=A.XpG();return A.Njj(W.onAddInvoice(l))}),A.EFF(21,"Create Invoice"),A.k0s()()()}if(2&t){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 Me(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDeleteExpiredInvoices())}),A.EFF(2,"Delete Expired"),A.k0s(),A.j41(3,"button",25),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.openCreateInvoiceModal())}),A.EFF(4,"Create Invoice"),A.k0s()()}}function HA(t,I){if(1&t&&(A.j41(0,"mat-option",62),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function _A(t,I){1&t&&A.nrm(0,"mat-progress-bar",63)}function Ce(t,I){1&t&&A.nrm(0,"th",64)}function me(t,I){if(1&t&&A.nrm(0,"span",69),2&t){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,SA,e.screenSize===e.screenSizeEnum.XS))}}function De(t,I){if(1&t&&A.nrm(0,"span",70),2&t){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,SA,e.screenSize===e.screenSizeEnum.XS))}}function Fe(t,I){if(1&t&&A.nrm(0,"span",71),2&t){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,SA,e.screenSize===e.screenSizeEnum.XS))}}function MA(t,I){if(1&t&&(A.j41(0,"td",65),A.DNE(1,me,1,3,"span",66)(2,De,1,3,"span",67)(3,Fe,1,3,"span",68),A.k0s()),2&t){const e=I.$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 BA(t,I){1&t&&(A.j41(0,"th",72),A.EFF(1,"Expiry Date"),A.k0s())}function T(t,I){if(1&t&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.expires_at),"dd/MMM/y HH:mm")," ")}}function k(t,I){1&t&&(A.j41(0,"th",72),A.EFF(1,"Date Settled"),A.k0s())}function aA(t,I){if(1&t&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.paid_at),"dd/MMM/y HH:mm")||"-")}}function DA(t,I){1&t&&(A.j41(0,"th",72),A.EFF(1,"Type"),A.k0s())}function iA(t,I){if(1&t&&(A.j41(0,"td",65),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11&&e.label.includes("keysend-")?"Keysend":"Bolt11")}}function kA(t,I){1&t&&(A.j41(0,"th",72),A.EFF(1,"Description"),A.k0s())}function Xe(t,I){if(1&t&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,EA,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.description)}}function J(t,I){1&t&&(A.j41(0,"th",72),A.EFF(1,"Label"),A.k0s())}function $A(t,I){if(1&t&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,EA,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function te(t,I){1&t&&(A.j41(0,"th",72),A.EFF(1,"Payment Hash"),A.k0s())}function QA(t,I){if(1&t&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,EA,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function JA(t,I){1&t&&(A.j41(0,"th",72),A.EFF(1,"Invoice"),A.k0s())}function ce(t,I){if(1&t&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,EA,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function Se(t,I){1&t&&(A.j41(0,"th",75),A.EFF(1,"Amount (Sats)"),A.k0s())}function xe(t,I){if(1&t&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 Ue(t,I){1&t&&(A.j41(0,"th",75),A.EFF(1,"Amount Settled (Sats)"),A.k0s())}function Oe(t,I){if(1&t&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 tr(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG(2);return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Ie(t,I){if(1&t){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 l=A.eBV(e).$implicit,W=A.XpG(2);return A.Njj(W.onInvoiceClick(l))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",80),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG(2);return A.Njj(W.onRefreshInvoice(l))}),A.EFF(7,"Refresh"),A.k0s()()()()}}function pe(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No invoice available."),A.k0s())}function ke(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting invoices..."),A.k0s())}function Ve(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Nn(t,I){if(1&t&&(A.j41(0,"td",83),A.DNE(1,pe,2,0,"p",84)(2,ke,2,0,"p",84)(3,Ve,2,1,"p",84),A.k0s()),2&t){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 ur(t,I){if(1&t&&A.nrm(0,"tr",85),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,WA,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function Xr(t,I){1&t&&A.nrm(0,"tr",86)}function tn(t,I){1&t&&A.nrm(0,"tr",87)}function ar(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilterBy,l)||(W.selFilterBy=l),A.Njj(l)}),A.bIt("selectionChange",function(){A.eBV(e);const l=A.XpG();return l.selFilter="",A.Njj(l.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,HA,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilter,l)||(W.selFilter=l),A.Njj(l)}),A.bIt("input",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())})("keyup",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(17,"div",36),A.DNE(18,_A,1,0,"mat-progress-bar",37),A.j41(19,"table",38,1),A.qex(21,39),A.DNE(22,Ce,1,0,"th",40)(23,MA,4,3,"td",41),A.bVm(),A.qex(24,42),A.DNE(25,BA,2,0,"th",43)(26,T,3,4,"td",41),A.bVm(),A.qex(27,44),A.DNE(28,k,2,0,"th",43)(29,aA,3,4,"td",41),A.bVm(),A.qex(30,45),A.DNE(31,DA,2,0,"th",43)(32,iA,2,1,"td",41),A.bVm(),A.qex(33,46),A.DNE(34,kA,2,0,"th",43)(35,Xe,4,4,"td",41),A.bVm(),A.qex(36,47),A.DNE(37,J,2,0,"th",43)(38,$A,4,4,"td",41),A.bVm(),A.qex(39,48),A.DNE(40,te,2,0,"th",43)(41,QA,4,4,"td",41),A.bVm(),A.qex(42,49),A.DNE(43,JA,2,0,"th",43)(44,ce,4,4,"td",41),A.bVm(),A.qex(45,50),A.DNE(46,Se,2,0,"th",51)(47,xe,4,4,"td",41),A.bVm(),A.qex(48,52),A.DNE(49,Ue,2,0,"th",51)(50,Oe,4,4,"td",41),A.bVm(),A.qex(51,53),A.DNE(52,tr,6,0,"th",54)(53,Ie,8,0,"td",55),A.bVm(),A.qex(54,56),A.DNE(55,Nn,4,3,"td",57),A.bVm(),A.DNE(56,ur,1,3,"tr",58)(57,Xr,1,0,"tr",59)(58,tn,1,0,"tr",60),A.k0s()(),A.nrm(59,"mat-paginator",61),A.k0s()}if(2&t){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,dA).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,vA,""!==e.errorMessage)),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(18,xA)),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 Un=(()=>{class t{constructor(e,c,l,W,LA,VA,cr,hn){this.logger=e,this.store=c,this.decimalPipe=l,this.commonService=W,this.rtlEffects=LA,this.datePipe=VA,this.actions=cr,this.camelCaseWithReplace=hn,this.calledFrom="transactions",this.faHistory=B.Int,this.nodePageDefs=a.Jd,this.convertedCurrency=null,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:a.md,sortBy:"expires_at",sortOrder:a.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new w.I6([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(h.mH).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.Pj).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=e.listInvoices.invoices||[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,m.Q)(this.unSubs[4]),(0,K.p)(e=>e.type===a.TC.SET_LOOKUP_CLN||e.type===a.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(e=>{e.type===a.TC.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.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,AA.xO)({payload:{data:{pageSize:this.pageSize,component:U}}}))}onAddInvoice(e){this.invoiceValue||(this.invoiceValue=0);const c=this.expiry?this.expiry:a.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,q.VK)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:c,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,AA.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(e=>{e&&this.store.dispatch((0,q.a5)({payload:null}))})}onInvoiceClick(e){this.store.dispatch((0,AA.xO)({payload:{data:{invoice:{amount_msat:e.amount_msat,label:e.label,expires_at:e.expires_at,paid_at:e.paid_at,bolt11:e.bolt11,payment_hash:e.payment_hash,description:e.description,status:e.status,amount_received_msat:e.amount_received_msat},newlyAdded:!1,component:rA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.invoices.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=this.datePipe.transform(new Date(1e3*(e.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(e.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(e.bolt12?"bolt12":e.bolt11?"bolt11":"keysend")+JSON.stringify(e).toLowerCase();break;case"status":l="paid"===e?.status?"paid":"unpaid"===e?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":l=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":l=e?.bolt12?"bolt12":e?.bolt11&&e?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":l=((e.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":l=((e.amount_received_msat||0)/1e3).toString()||"";break;default:l=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||"type"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,a.BQ.SATS,a.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:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,a.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onRefreshInvoice(e){this.store.dispatch((0,q.Yi)({payload:e.label}))}updateInvoicesData(e){this.invoiceJSONArr=this.invoiceJSONArr?.map(c=>c.label===e.label?e:c)}loadInvoicesTable(e){this.invoices=new w.I6(e?[...e]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(c,l)=>{switch(l){case"msatoshi":return c.amount_msat;case"msatoshi_received":return c.amount_received_msat;default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(oe.QX),A.rXU(C.h),A.rXU(PA.H),A.rXU(oe.vh),A.rXU(fA.En),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){1&c&&(A.j41(0,"div",2),A.DNE(1,we,22,8,"form",3)(2,Me,5,0,"div",4)(3,ar,60,19,"div",5),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf","home"===l.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===l.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===l.calledFrom))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.qT,_.me,_.Q0,_.BC,_.cb,_.VZ,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,KA.MV,KA.yw,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld,mA.V,oe.QX,oe.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return t})();var In=Te(6697),wn=Te(1534),Ir=Te(2765),wr=Te(5951);const Tn=["sendPaymentForm"],qn=["paymentAmt"],_n=["offerAmt"],dr=["paymentReq"],Lr=["offerReq"];function Gr(t,I){if(1&t&&(A.j41(0,"mat-radio-button",26),A.EFF(1,"Offer"),A.k0s()),2&t){const e=A.XpG();A.FS9("value",e.paymentTypes.OFFER)}}function Yr(t,I){1&t&&A.eu8(0)}function Hr(t,I){if(1&t&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentError)}}function Jr(t,I){if(1&t&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,Hr,2,1,"span",29),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.paymentError)}}function Kr(t,I){if(1&t&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Ae(t,I){if(1&t&&A.nrm(0,"span",39),2&t){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function FA(t,I){if(1&t&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,Kr,2,1,"span",35)(3,Ae,1,1,"span",36),A.EFF(4),A.k0s()),2&t){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 re(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function TA(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentDecodedHint)}}function RA(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Payment amount is required."),A.k0s())}function bA(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG(2);return A.DH7(W.paymentAmount,l)||(W.paymentAmount=l),A.Njj(l)}),A.bIt("change",function(l){A.eBV(e);const W=A.XpG(2);return A.Njj(W.onAmountChange(l))}),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,RA,2,0,"mat-error",29),A.k0s()}if(2&t){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.paymentAmount),A.R7$(4),A.Y8G("ngIf",!e.paymentAmount)}}function OA(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onPaymentRequestEntry(l))})("matTextareaAutosize",function(){return A.eBV(e),A.Njj(!0)}),A.k0s(),A.DNE(5,FA,5,4,"mat-hint",32)(6,re,2,0,"mat-error",29)(7,TA,2,1,"mat-error",29),A.k0s(),A.DNE(8,bA,8,2,"mat-form-field",33)}if(2&t){const e=A.sdS(4),c=A.XpG();A.R7$(3),A.Y8G("ngModel",c.paymentRequest),A.R7$(2),A.Y8G("ngIf",c.paymentRequest&&""!==c.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!c.paymentRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",c.zeroAmtInvoice)}}function ne(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Pubkey is required."),A.k0s())}function UA(t,I){1&t&&(A.j41(0,"span",45),A.EFF(1,"= "),A.k0s())}function ie(t,I){if(1&t&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function ZA(t,I){if(1&t&&A.nrm(0,"span",39),2&t){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function de(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Keysend amount is required."),A.k0s())}function ye(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.pubkey,l)||(W.pubkey=l),A.Njj(l)}),A.k0s(),A.DNE(4,ne,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.keysendAmount,l)||(W.keysendAmount=l),A.Njj(l)}),A.bIt("keyup",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onKeysendAmountChange())}),A.k0s(),A.j41(10,"span",43),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",34),A.DNE(13,UA,2,0,"span",44)(14,ie,2,1,"span",35)(15,ZA,1,1,"span",36),A.EFF(16),A.k0s(),A.DNE(17,de,2,0,"mat-error",29),A.k0s()}if(2&t){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 Ye(t,I){if(1&t&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function He(t,I){if(1&t&&A.nrm(0,"span",39),2&t){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function Ze(t,I){if(1&t&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,Ye,2,1,"span",35)(3,He,1,1,"span",36),A.EFF(4),A.k0s()),2&t){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 an(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Offer request is required."),A.k0s())}function fe(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.offerDecodedHint)}}function Re(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Offer amount is required."),A.k0s())}function qe(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG(2);return A.DH7(W.offerAmount,l)||(W.offerAmount=l),A.Njj(l)}),A.bIt("change",function(l){A.eBV(e);const W=A.XpG(2);return A.Njj(W.onAmountChange(l))}),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,Re,2,0,"mat-error",29),A.k0s()}if(2&t){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerAmount),A.R7$(4),A.Y8G("ngIf",!e.offerAmount)}}function ze(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG(2);return A.DH7(W.offerTitle,l)||(W.offerTitle=l),A.Njj(l)}),A.k0s()()}if(2&t){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerTitle)}}function en(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onPaymentRequestEntry(l))})("matTextareaAutosize",function(){return A.eBV(e),A.Njj(!0)}),A.k0s(),A.DNE(5,Ze,5,4,"mat-hint",32)(6,an,2,0,"mat-error",29)(7,fe,2,1,"mat-error",29),A.k0s(),A.DNE(8,qe,8,2,"mat-form-field",33),A.j41(9,"div",47)(10,"mat-checkbox",48),A.mxI("ngModelChange",function(l){A.eBV(e);const W=A.XpG();return A.DH7(W.flgSaveToDB,l)||(W.flgSaveToDB=l),A.Njj(l)}),A.EFF(11,"Bookmark Offer"),A.k0s(),A.j41(12,"mat-icon",49),A.EFF(13,"info_outline"),A.k0s()(),A.DNE(14,ze,4,1,"mat-form-field",50)}if(2&t){const e=A.sdS(4),c=A.XpG();A.R7$(3),A.Y8G("ngModel",c.offerRequest),A.R7$(2),A.Y8G("ngIf",c.offerRequest&&""!==c.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",!c.offerRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",c.zeroAmtOffer),A.R7$(2),A.R50("ngModel",c.flgSaveToDB),A.R7$(4),A.Y8G("ngIf",c.flgSaveToDB||""!==c.offerTitle)}}let je=(()=>{class t{set payReq(e){e&&(this.paymentReq=e)}set offrReq(e){e&&(this.offerReq=e)}constructor(e,c,l,W,LA,VA,cr,hn){this.dialogRef=e,this.data=c,this.store=l,this.logger=W,this.commonService=LA,this.decimalPipe=VA,this.actions=cr,this.dataService=hn,this.faExclamationTriangle=B.zpE,this.convertedCurrency=null,this.paymentTypes=a.Y0,this.paymentType=a.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=a.nv[0],this.feeLimitTypes=a.nv,this.paymentError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case a.Y0.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case a.Y0.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case a.Y0.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,m.Q)(this.unSubs[3]),(0,K.p)(e=>e.type===a.TC.UPDATE_API_CALL_STATUS_CLN||e.type===a.TC.SEND_PAYMENT_STATUS_CLN||e.type===a.TC.SET_OFFER_INVOICE_CLN)).subscribe(e=>{e.type===a.TC.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),e.type===a.TC.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=e.payload,this.sendPayment()),e.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&e.payload.status===a.wn.ERROR&&("SendPayment"===e.payload.action&&(delete this.paymentDecoded.amount_msat,this.paymentError=e.payload.message),"DecodePayment"===e.payload.action&&(this.paymentType===a.Y0.INVOICE&&(this.paymentDecodedHintPre="ERROR: "+e.payload.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===a.Y0.OFFER&&(this.offerDecodedHintPre="ERROR: "+e.payload.message,this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})),this.paymentType===a.Y0.KEYSEND&&(this.keysendValueHint="ERROR: "+e.payload.message)),"FetchOfferInvoice"===e.payload.action&&this.paymentType===a.Y0.OFFER&&(this.paymentError=e.payload.message))})}onSendPayment(){switch(this.paymentType){case a.Y0.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case a.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(e=>{"bolt12 offer"===e.type&&e.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=e,this.setPaymentDecodedDetails())}));break;case a.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(e=>{"bolt11 invoice"===e.type&&e.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=e,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,q.Fd)({payload:{uiMessage:a.MZ.SEND_KEYSEND,paymentType:a.Y0.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===a.Y0.INVOICE?this.store.dispatch((0,q.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:a.MZ.SEND_PAYMENT,paymentType:a.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:a.MZ.SEND_PAYMENT,paymentType:a.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===a.Y0.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,q.Fd)({payload:{uiMessage:a.MZ.SEND_PAYMENT,paymentType:a.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,q.Ew)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(e){this.paymentType===a.Y0.INVOICE?(this.paymentRequest=e,this.resetInvoiceDetails()):this.paymentType===a.Y0.OFFER&&(this.offerRequest=e,this.resetOfferDetails()),e.length>100&&this.dataService.decodePayment(e,!0).pipe((0,m.Q)(this.unSubs[6])).subscribe(c=>{this.paymentType===a.Y0.INVOICE?"bolt12 offer"===c.type&&c.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=c,this.setPaymentDecodedDetails()):this.paymentType===a.Y0.OFFER&&("bolt11 invoice"===c.type&&c.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=c,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(e){this.paymentType===a.Y0.INVOICE&&(delete this.paymentDecoded.amount_msat,this.paymentDecoded.amount_msat=+e.target.value),this.paymentType===a.Y0.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=e.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,a.BQ.SATS,a.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:e=>{this.convertedCurrency=e,this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats (",this.offerDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,a.k.OTHER)+" "+this.convertedCurrency.unit+") | Description: "+this.offerDecoded.offer_description},error:e=>{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,a.BQ.SATS,a.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:e=>{this.convertedCurrency=e,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,a.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:e=>{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 a.Y0.KEYSEND:this.pubkey="",this.keysendValueHint="",this.keysendAmount=null;break;case a.Y0.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=a.nv[0],this.resetInvoiceDetails();break;case a.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,a.BQ.SATS,a.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:e=>{this.convertedCurrency=e,this.keysendValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,a.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.keysendValueHint="Conversion Error: "+e}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(n.il),A.rXU(E.gP),A.rXU(C.h),A.rXU(oe.QX),A.rXU(fA.En),A.rXU(wn.u))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(c,l){if(1&c&&(A.GBs(Tn,5),A.GBs(qn,5),A.GBs(_n,5),A.GBs(dr,5),A.GBs(Lr,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.form=W.first),A.mGM(W=A.lsd())&&(l.paymentAmt=W.first),A.mGM(W=A.lsd())&&(l.offerAmt=W.first),A.mGM(W=A.lsd())&&(l.payReq=W.first),A.mGM(W=A.lsd())&&(l.offrReq=W.first)}},decls:30,vars:7,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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.paymentType,VA)||(l.paymentType=VA),A.Njj(VA)}),A.bIt("change",function(){return A.eBV(W),A.Njj(l.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,Gr,2,1,"mat-radio-button",19),A.k0s(),A.j41(15,"form",20,0),A.bIt("submit",function(){return A.eBV(W),A.Njj(l.onSendPayment())})("reset",function(){return A.eBV(W),A.Njj(l.resetData())}),A.DNE(17,Yr,1,0,"ng-container",21)(18,Jr,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,OA,9,5,"ng-template",null,1,A.C5r)(26,ye,18,8,"ng-template",null,2,A.C5r)(28,en,15,7,"ng-template",null,3,A.C5r)}if(2&c){const W=A.sdS(25),LA=A.sdS(27),VA=A.sdS(29);A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.R50("ngModel",l.paymentType),A.R7$(),A.FS9("value",l.paymentTypes.INVOICE),A.R7$(2),A.FS9("value",l.paymentTypes.KEYSEND),A.R7$(2),A.Y8G("ngIf",l.selNode.settings.enableOffers),A.R7$(3),A.Y8G("ngTemplateOutlet",l.paymentType===l.paymentTypes.KEYSEND?LA:l.paymentType===l.paymentTypes.OFFER?VA:W),A.R7$(),A.Y8G("ngIf",""!==l.paymentError)}},dependencies:[oe.bT,oe.T3,_.qT,_.me,_.BC,_.cb,_.YS,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,oA.tx,N.$z,Q.m2,Q.MM,Ir.So,D.An,CA.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,wr.VT,wr._g,zA.oV,O.N]})}}return t})();const fn=["sendPaymentForm"],on=()=>["all"],pn=t=>({"error-border":t}),Hn=()=>["no_payment"],mn=t=>({width:t}),Fn=t=>({"display-none":t});function kn(t,I){if(1&t&&(A.j41(0,"span",18),A.nrm(1,"fa-icon",19),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function $n(t,I){if(1&t&&A.nrm(0,"span",20),2&t){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function Mr(t,I){if(1&t&&(A.j41(0,"mat-hint",15),A.EFF(1),A.DNE(2,kn,2,1,"span",16)(3,$n,1,1,"span",17),A.EFF(4),A.k0s()),2&t){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 ir(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function Qr(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onPaymentRequestEntry(l))})("matTextareaAutosize",function(){return A.eBV(e),A.Njj(!0)}),A.k0s(),A.DNE(7,Mr,5,4,"mat-hint",10)(8,ir,2,0,"mat-error",11),A.k0s(),A.j41(9,"div",12)(10,"button",13),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.resetData())}),A.EFF(11,"Clear Field"),A.k0s(),A.j41(12,"button",14),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onSendPayment())}),A.EFF(13,"Send Payment"),A.k0s()()()}if(2&t){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 Dr(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",21)(1,"button",14),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.openSendPaymentModal())}),A.EFF(2,"Send Payment"),A.k0s()()}}function Yn(t,I){if(1&t&&(A.j41(0,"mat-option",70),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function Er(t,I){1&t&&A.nrm(0,"mat-progress-bar",71)}function wA(t,I){1&t&&A.nrm(0,"th",72)}function G(t,I){1&t&&A.nrm(0,"span",76)}function L(t,I){1&t&&A.nrm(0,"span",77)}function z(t,I){if(1&t&&(A.j41(0,"td",73),A.DNE(1,G,1,0,"span",74)(2,L,1,0,"span",75),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function H(t,I){1&t&&(A.j41(0,"th",78),A.EFF(1,"Created At"),A.k0s())}function uA(t,I){if(1&t&&(A.j41(0,"td",73),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.created_at),"dd/MMM/y HH:mm")," ")}}function XA(t,I){1&t&&(A.j41(0,"th",78),A.EFF(1,"Type"),A.k0s())}function qA(t,I){if(1&t&&(A.j41(0,"td",73),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11?"Bolt11":"Keysend")}}function ae(t,I){1&t&&(A.j41(0,"th",78),A.EFF(1,"Payment Hash"),A.k0s())}function he(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Ee(t,I){1&t&&(A.j41(0,"th",78),A.EFF(1,"Invoice"),A.k0s())}function Ke(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function ve(t,I){1&t&&(A.j41(0,"th",78),A.EFF(1,"Label"),A.k0s())}function be(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function Le(t,I){1&t&&(A.j41(0,"th",78),A.EFF(1,"Destination"),A.k0s())}function Je(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination)}}function cn(t,I){1&t&&(A.j41(0,"th",78),A.EFF(1,"Memo"),A.k0s())}function $e(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo)}}function gn(t,I){1&t&&(A.j41(0,"th",81),A.EFF(1,"Sats Sent"),A.k0s())}function bn(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_sent_msat)/1e3,"1.0-4"))}}function nn(t,I){1&t&&(A.j41(0,"th",81),A.EFF(1,"Sats Received"),A.k0s())}function We(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_msat)/1e3,"1.0-4"))}}function Sn(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG(2);return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Zn(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",87)(1,"button",88),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG(2);return A.Njj(W.onPaymentClick(l))}),A.EFF(2,"View Info"),A.k0s()()}}function Mn(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No payment available."),A.k0s())}function Fr(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting payments..."),A.k0s())}function Pr(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function or(t,I){if(1&t&&(A.j41(0,"td",89),A.DNE(1,Mn,2,0,"p",11)(2,Fr,2,0,"p",11)(3,Pr,2,1,"p",11),A.k0s()),2&t){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 kr(t,I){1&t&&A.nrm(0,"span",76)}function Br(t,I){1&t&&A.nrm(0,"span",77)}function Or(t,I){1&t&&A.nrm(0,"span",76)}function et(t,I){1&t&&A.nrm(0,"span",77)}function jr(t,I){if(1&t&&(A.j41(0,"span",90),A.DNE(1,Or,1,0,"span",74)(2,et,1,0,"span",75),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function Xt(t,I){if(1&t&&(A.qex(0),A.DNE(1,jr,3,2,"span",91),A.bVm()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ft(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",90),A.DNE(2,kr,1,0,"span",74)(3,Br,1,0,"span",75),A.k0s(),A.DNE(4,Xt,2,1,"ng-container",11),A.k0s()),2&t){const e=I.$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 wt(t,I){if(1&t&&(A.j41(0,"span",90),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*e.created_at,"dd/MMM/y HH:mm")," ")}}function Vr(t,I){if(1&t&&(A.qex(0),A.DNE(1,wt,3,4,"span",91),A.bVm()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function It(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,Vr,2,1,"ng-container",11),A.k0s()),2&t){const e=I.$implicit;A.R7$(2),A.SpI(" Total Attempts: ",null==e?null:e.total_parts," "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Mt(t,I){1&t&&A.nrm(0,"span",90)}function Dt(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,Mt,1,0,"span",91),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function nt(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,Dt,2,1,"span",11),A.k0s()),2&t){const e=I.$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 Xa(t,I){if(1&t&&(A.j41(0,"span",90),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" Part ID ",e.partid?e.partid:0," ")}}function Wr(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,Xa,2,1,"span",91),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function wa(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Wr,2,1,"span",11),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Zr(t,I){if(1&t&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&t){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,mn,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function $i(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,Zr,2,3,"span",93),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function qa(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,$i,2,1,"span",11),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ao(t,I){if(1&t&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&t){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,mn,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function eo(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,Ao,2,3,"span",93),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function no(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,eo,2,1,"span",11),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ro(t,I){if(1&t&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&t){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,mn,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function to(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,ro,2,3,"span",93),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ao(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,to,2,1,"span",11),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ka(t,I){if(1&t&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&t){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,mn,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function io(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,Ka,2,3,"span",93),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function oo(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,io,2,1,"span",11),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,mn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function so(t,I){if(1&t&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=I.$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 co(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,so,3,4,"span",96),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function lo(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,co,2,1,"span",11),A.k0s()),2&t){const e=I.$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 go(t,I){if(1&t&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,e.amount_msat/1e3,e.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function uo(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,go,3,4,"span",96),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Bo(t,I){if(1&t&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,uo,2,1,"span",11),A.k0s()),2&t){const e=I.$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 fo(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",100)(1,"button",101),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG(4);return A.Njj(W.onPaymentClick(l))}),A.EFF(2),A.k0s()()}if(2&t){const e=I.$implicit;A.R7$(2),A.SpI("View ",e.partid?e.partid:0,"")}}function _a(t,I){if(1&t&&(A.j41(0,"div"),A.DNE(1,fo,3,1,"div",99),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function mo(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",73)(1,"span",97)(2,"button",98),A.bIt("click",function(){const l=A.eBV(e).$implicit;return A.Njj(l.is_expanded=!l.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,_a,2,1,"div",11),A.k0s()}if(2&t){const e=I.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function $a(t,I){1&t&&A.nrm(0,"tr",102)}function Ai(t,I){if(1&t&&A.nrm(0,"tr",103),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Fn,(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 ho(t,I){1&t&&A.nrm(0,"tr",104)}function Co(t,I){1&t&&A.nrm(0,"tr",102)}function Eo(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilterBy,l)||(W.selFilterBy=l),A.Njj(l)}),A.bIt("selectionChange",function(){A.eBV(e);const l=A.XpG();return l.selFilter="",A.Njj(l.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,Yn,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilter,l)||(W.selFilter=l),A.Njj(l)}),A.bIt("input",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())})("keyup",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(17,"div",32)(18,"div",33),A.DNE(19,Er,1,0,"mat-progress-bar",34),A.j41(20,"table",35,2),A.qex(22,36),A.DNE(23,wA,1,0,"th",37)(24,z,3,2,"td",38),A.bVm(),A.qex(25,39),A.DNE(26,H,2,0,"th",40)(27,uA,3,4,"td",38),A.bVm(),A.qex(28,41),A.DNE(29,XA,2,0,"th",40)(30,qA,2,1,"td",38),A.bVm(),A.qex(31,42),A.DNE(32,ae,2,0,"th",40)(33,he,4,4,"td",38),A.bVm(),A.qex(34,43),A.DNE(35,Ee,2,0,"th",40)(36,Ke,4,4,"td",38),A.bVm(),A.qex(37,44),A.DNE(38,ve,2,0,"th",40)(39,be,4,4,"td",38),A.bVm(),A.qex(40,45),A.DNE(41,Le,2,0,"th",40)(42,Je,4,4,"td",38),A.bVm(),A.qex(43,46),A.DNE(44,cn,2,0,"th",40)(45,$e,4,4,"td",38),A.bVm(),A.qex(46,47),A.DNE(47,gn,2,0,"th",48)(48,bn,4,4,"td",38),A.bVm(),A.qex(49,49),A.DNE(50,nn,2,0,"th",48)(51,We,4,4,"td",38),A.bVm(),A.qex(52,50),A.DNE(53,Sn,6,0,"th",51)(54,Zn,3,0,"td",52),A.bVm(),A.qex(55,53),A.DNE(56,or,4,3,"td",54),A.bVm(),A.qex(57,55),A.DNE(58,ft,5,3,"td",38),A.bVm(),A.qex(59,56),A.DNE(60,It,4,2,"td",38),A.bVm(),A.qex(61,57),A.DNE(62,nt,4,2,"td",38),A.bVm(),A.qex(63,58),A.DNE(64,wa,5,5,"td",38),A.bVm(),A.qex(65,59),A.DNE(66,qa,5,5,"td",38),A.bVm(),A.qex(67,60),A.DNE(68,no,5,5,"td",38),A.bVm(),A.qex(69,61),A.DNE(70,ao,5,5,"td",38),A.bVm(),A.qex(71,62),A.DNE(72,oo,5,5,"td",38),A.bVm(),A.qex(73,63),A.DNE(74,lo,5,5,"td",38),A.bVm(),A.qex(75,64),A.DNE(76,Bo,5,5,"td",38),A.bVm(),A.qex(77,65),A.DNE(78,mo,5,2,"td",38),A.bVm(),A.DNE(79,$a,1,0,"tr",66)(80,Ai,1,3,"tr",67)(81,ho,1,0,"tr",68)(82,Co,1,0,"tr",66),A.k0s()()(),A.nrm(83,"mat-paginator",69),A.k0s()}if(2&t){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,on).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,pn,""!==e.errorMessage)),A.R7$(59),A.Y8G("matRowDefColumns",e.mppColumns)("matRowDefWhen",e.is_group),A.R7$(),A.Y8G("matFooterRowDef",A.lJ4(21,Hn)),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 ei=(()=>{class t{constructor(e,c,l,W,LA,VA,cr,hn,gr){this.logger=e,this.commonService=c,this.store=l,this.rtlEffects=W,this.decimalPipe=LA,this.titleCasePipe=VA,this.datePipe=cr,this.dataService=hn,this.camelCaseWithReplace=gr,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:a.md,sortBy:"created_at",sortOrder:a.oi.DESCENDING},this.faHistory=B.Int,this.newlyAddedPayment="",this.information={},this.payments=new w.I6([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(h.mH).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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(c=>this.mppColumns.push("group_"+c)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:a.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(h.KT).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=e.payments||[],this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(e,c){return c.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(e=>{this.paymentDecoded=e,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,AA.I1)({payload:{data:{type:a.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:a.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.amount_msat/1e3,title:"Amount (Sats)",width:50,type:a.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:a.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,In.s)(1)).subscribe(c=>{c&&(this.store.dispatch((0,q.Fd)({payload:{uiMessage:a.MZ.SEND_PAYMENT,paymentType:a.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:a.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:a.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:a.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:a.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,In.s)(1)).subscribe(l=>{l&&(this.paymentDecoded.amount_msat=l[0].inputValue,this.store.dispatch((0,q.Fd)({payload:{uiMessage:a.MZ.SEND_PAYMENT,paymentType:a.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*l[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(e){this.paymentRequest=e,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,m.Q)(this.unSubs[5])).subscribe(c=>{this.paymentDecoded=c,this.paymentDecoded.amount_msat?this.selNode?.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/1e3||0,a.BQ.SATS,a.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:l=>{this.convertedCurrency=l,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,a.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:l=>{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,AA.xO)({payload:{data:{component:je}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(e){const c=[[{key:"payment_preimage",value:e.payment_preimage,title:"Payment Preimage",width:100,type:a.UN.STRING}],[{key:"id",value:e.id,title:"ID",width:20,type:a.UN.STRING},{key:"destination",value:e.destination,title:"Destination",width:80,type:a.UN.STRING}],[{key:"created_at",value:e.created_at,title:"Creation Date",width:50,type:a.UN.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(e.status),title:"Status",width:50,type:a.UN.STRING}],[{key:"amount_msat",value:e.amount_msat,title:"Amount (mSats)",width:50,type:a.UN.NUMBER},{key:"amount_sent_msat",value:e.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:a.UN.NUMBER}]];e.bolt11&&""!==e.bolt11&&c?.unshift([{key:"bolt11",value:e.bolt11,title:"Bolt 11",width:100,type:a.UN.STRING}]),e.bolt12&&""!==e.bolt12&&c?.unshift([{key:"bolt12",value:e.bolt12,title:"Bolt 12",width:100,type:a.UN.STRING}]),e.memo&&""!==e.memo&&c?.splice(2,0,[{key:"memo",value:e.memo,title:"Memo",width:100,type:a.UN.STRING}]),e.hasOwnProperty("partid")?c?.unshift([{key:"payment_hash",value:e.payment_hash,title:"Payment Hash",width:80,type:a.UN.STRING},{key:"partid",value:e.partid,title:"Part ID",width:20,type:a.UN.STRING}]):c?.unshift([{key:"payment_hash",value:e.payment_hash,title:"Payment Hash",width:100,type:a.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"Payment Information",message:c}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.payments.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.created_at?this.datePipe.transform(new Date(1e3*e.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(e.bolt12?"bolt12":e.bolt11?"bolt11":"keysend")+JSON.stringify(e).toLowerCase();break;case"status":l="complete"===e?.status?"completed":"incomplete/failed";break;case"created_at":l=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":l=((e.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":l=((e.amount_msat||0)/1e3).toString()||"";break;case"type":l=e?.bolt12?"bolt12":e?.bolt11?"bolt11":"keysend";break;default:l=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||"type"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}loadPaymentsTable(e){this.payments=new w.I6(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(c,l)=>{switch(l){case"msatoshi_sent":return c.amount_sent_msat;case"msatoshi":return c.amount_msat;default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const c=JSON.parse(JSON.stringify(this.payments.data))?.reduce((l,W)=>W.mpps?l.concat(W.mpps):(delete W.is_group,delete W.is_expanded,delete W.total_parts,l.concat(W)),[]);this.commonService.downloadFile(c,"Payments")}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(PA.H),A.rXU(oe.QX),A.rXU(oe.PV),A.rXU(oe.vh),A.rXU(wn.u),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(c,l){if(1&c&&(A.GBs(fn,5),A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.form=W.first),A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){1&c&&(A.j41(0,"div",3),A.DNE(1,Qr,14,3,"form",4)(2,Dr,3,0,"div",5)(3,Eo,84,22,"div",6),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf","home"===l.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===l.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===l.calledFrom))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.qT,_.me,_.BC,_.cb,_.YS,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,KA.MV,KA.TL,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld,oe.QX,oe.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 t})();const ni=t=>({backgroundColor:t});function Po(t,I){if(1&t&&A.nrm(0,"span",6),2&t){const e=A.XpG();A.Y8G("ngStyle",A.eq3(1,ni,"#"+(null==e.information?null:e.information.color)))}}function Xo(t,I){if(1&t&&(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&t){const e=A.XpG();A.R7$(4),A.Y8G("ngStyle",A.eq3(4,ni,"#"+(null==e.information?null:e.information.color))),A.R7$(),A.SpI(" ",A.bMT(6,2,null==e.information?null:e.information.color)," ")}}function wo(t,I){if(1&t&&(A.j41(0,"span",2),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(e)}}let ri=(()=>{class t{constructor(e){this.commonService=e,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(e=>{this.chains.push(this.commonService.titleCase(e.chain||"")+" "+this.commonService.titleCase(e.network||""))}))}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(C.h))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},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(c,l){1&c&&(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,Po,1,3,"span",3),A.k0s()(),A.DNE(7,Xo,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,wo,2,1,"span",5),A.k0s()()),2&c&&(A.R7$(5),A.SpI(" ",null==l.information?null:l.information.alias," "),A.R7$(),A.Y8G("ngIf",!l.showColorFieldSeparately),A.R7$(),A.Y8G("ngIf",l.showColorFieldSeparately),A.R7$(5),A.JRh(null!=l.information&&l.information.lnImplementation||null!=l.information&&l.information.version?(null==l.information?null:l.information.lnImplementation)+" "+(null==l.information?null:l.information.version):""),A.R7$(4),A.Y8G("ngForOf",l.chains))},dependencies:[oe.Sq,oe.bT,oe.B3,r.DJ,r.sA,r.UI,M.eI,oe.Pc]})}}return t})();function Ko(t,I){if(1&t&&(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&t){const e=A.XpG();A.R7$(5),A.SpI("",A.i5U(6,5,e.balances.lightning,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",e.balances.lightning/e.balances.total*100),A.R7$(5),A.SpI("",A.i5U(13,8,e.balances.onchain,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",e.balances.onchain/e.balances.total*100),A.R7$(5),A.SpI("",A.i5U(20,11,e.balances.total,"1.0-0")," Sats")}}function ti(t,I){if(1&t&&(A.j41(0,"div",6)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Qo=(()=>{class t{constructor(){this.balances={onchain:0,lightning:0,total:0}}static{this.\u0275fac=function(c){return new(c||t)}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},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(c,l){if(1&c&&A.DNE(0,Ko,21,14,"div",1)(1,ti,3,1,"ng-template",null,0,A.C5r),2&c){const W=A.sdS(2);A.Y8G("ngIf",""===(null==l.errorMessage?null:l.errorMessage.trim()))("ngIfElse",W)}},dependencies:[oe.bT,r.DJ,r.sA,r.UI,g.HM,oe.QX]})}}return t})();const po=()=>["../routing"];function vo(t,I){if(1&t&&(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&t){const e=A.XpG(2);A.R7$(4),A.JRh(A.bMT(5,1,null==e.fees?null:e.fees.totalTxCount))}}function Io(t,I){1&t&&(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&t&&(A.R7$(3),A.Y8G("routerLink",A.lJ4(1,po)))}function qr(t,I){if(1&t&&(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,vo,6,3,"div",7)(10,Io,5,2,"div",7),A.k0s()()),2&t){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 st(t,I){if(1&t&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let yt=(()=>{class t{constructor(){this.totalFees=[{name:"Total",value:0}]}static{this.\u0275fac=function(c){return new(c||t)}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},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(c,l){if(1&c&&A.DNE(0,qr,11,5,"div",1)(1,st,3,1,"ng-template",null,0,A.C5r),2&c){const W=A.sdS(2);A.Y8G("ngIf",""===(null==l.errorMessage?null:l.errorMessage.trim()))("ngIfElse",W)}},dependencies:[oe.bT,r.DJ,r.sA,r.UI,un.Wk,oe.QX]})}}return t})();function Mo(t,I){if(1&t&&(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&t){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 Do(t,I){if(1&t&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let ai=(()=>{class t{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static{this.\u0275fac=function(c){return new(c||t)}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},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(c,l){if(1&c&&A.DNE(0,Mo,42,21,"div",1)(1,Do,3,1,"ng-template",null,0,A.C5r),2&c){const W=A.sdS(2);A.Y8G("ngIf",""===(null==l.errorMessage?null:l.errorMessage.trim()))("ngIfElse",W)}},dependencies:[oe.bT,r.DJ,r.sA,r.UI,oe.QX]})}}return t})();var rt=Te(1997);const yo=()=>["../connections/channels/open"],Fo=(t,I)=>({filterColumn:t,filterValue:I});function xo(t,I){if(1&t&&(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&t){const e=I.$implicit,c=A.XpG(3);A.R7$(),A.FS9("matTooltip",e.alias||e.peer_id),A.FS9("matTooltipDisabled",(e.alias||e.peer_id).length<26),A.Y8G("routerLink",A.lJ4(23,yo))("state",A.l_i(24,Fo,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,11,e.alias||e.peer_id,0,24),"",(e.alias||e.peer_id).length>25?"...":""," "),A.R7$(6),A.SpI("",A.i5U(9,15,e.to_us_msat/1e3||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",c.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,18,e.balancedness||0),") "),A.R7$(5),A.SpI("",A.i5U(18,20,e.to_them_msat/1e3||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0)}}function No(t,I){if(1&t&&(A.j41(0,"div",17),A.DNE(1,xo,20,27,"div",18),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function Yo(t,I){if(1&t&&(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,No,2,1,"div",16),A.k0s()()),2&t){const e=A.XpG(),c=A.sdS(2);A.R7$(8),A.SpI("",A.i5U(9,7,(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,10,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),A.R7$(5),A.SpI("",A.i5U(18,12,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",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",c)}}function To(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",26),A.EFF(1," No channels available. "),A.j41(2,"button",27),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.goToChannels())}),A.EFF(3,"Open Channel"),A.k0s()()}}function bo(t,I){if(1&t&&(A.j41(0,"div",28)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Uo=(()=>{class t{constructor(e){this.router=e,this.faBalanceScale=B.GR4,this.faDumbbell=B.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(c,l){if(1&c&&A.DNE(0,Yo,24,15,"div",2)(1,To,4,0,"ng-template",null,0,A.C5r)(3,bo,3,1,"ng-template",null,1,A.C5r),2&c){const W=A.sdS(4);A.Y8G("ngIf",""===(null==l.errorMessage?null:l.errorMessage.trim()))("ngIfElse",W)}},dependencies:[oe.Sq,oe.bT,P.aY,r.DJ,r.sA,r.UI,N.$z,KA.MV,rt.q,g.HM,zA.oV,cA.Ld,un.Wk,oe.P9,oe.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}}return t})();const So=(t,I,e)=>({"mb-4":t,"mb-2":I,"mb-1":e}),Ro=()=>["../connections/channels/open"],Lo=(t,I)=>({filterColumn:t,filterValue:I});function Go(t,I){if(1&t&&(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&t){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 Oo(t,I){if(1&t&&(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&t){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 ko(t,I){if(1&t&&A.nrm(0,"mat-progress-bar",21),2&t){const e=A.XpG().$implicit,c=A.XpG(3);A.FS9("value",c.totalLiquidity>0?(e.to_them_msat/1e3||0)/c.totalLiquidity*100:0)}}function Wo(t,I){if(1&t&&A.nrm(0,"mat-progress-bar",21),2&t){const e=A.XpG().$implicit,c=A.XpG(3);A.FS9("value",c.totalLiquidity>0?(e.to_us_msat/1e3||0)/c.totalLiquidity*100:0)}}function ii(t,I){if(1&t&&(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,Go,5,4,"mat-hint",17)(6,Oo,5,4,"mat-hint",17),A.k0s(),A.DNE(7,ko,1,1,"mat-progress-bar",18)(8,Wo,1,1,"mat-progress-bar",18),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(3);A.R7$(),A.FS9("matTooltip",e.alias||e.peer_id),A.FS9("matTooltipDisabled",(e.alias||e.peer_id).length<26),A.Y8G("routerLink",A.lJ4(14,Ro))("state",A.l_i(15,Lo,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,10,e.alias||e.peer_id,0,24),"",(e.alias||e.peer_id).length>25?"...":""," "),A.R7$(3),A.Y8G("ngIf","In"===c.direction),A.R7$(),A.Y8G("ngIf","Out"===c.direction),A.R7$(),A.Y8G("ngIf","In"===c.direction),A.R7$(),A.Y8G("ngIf","Out"===c.direction)}}function zo(t,I){if(1&t&&(A.j41(0,"div",12),A.DNE(1,ii,9,18,"div",13),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function Ho(t,I){if(1&t&&(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,zo,2,1,"div",11),A.k0s()()),2&t){const e=A.XpG(),c=A.sdS(2);A.Y8G("ngClass",A.sMw(7,So,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",c)}}function Jo(t,I){if(1&t){const e=A.RV6();A.j41(0,"button",25),A.bIt("click",function(){A.eBV(e);const l=A.XpG(2);return A.Njj(l.goToChannels())}),A.EFF(1,"Open Channel"),A.k0s()}}function jo(t,I){if(1&t&&(A.j41(0,"div",22)(1,"div",23)(2,"div"),A.EFF(3,"No channels available."),A.k0s(),A.DNE(4,Jo,2,0,"button",24),A.k0s()()),2&t){const e=A.XpG();A.R7$(4),A.Y8G("ngIf","Out"===e.direction)}}function Vo(t,I){if(1&t&&(A.j41(0,"div",26)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Zo=(()=>{class t{constructor(e,c){this.router=e,this.commonService=c,this.screenSize="",this.screenSizeEnum=a.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(un.Ix),A.rXU(C.h))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(c,l){if(1&c&&A.DNE(0,Ho,12,11,"div",2)(1,jo,5,1,"ng-template",null,0,A.C5r)(3,Vo,3,1,"ng-template",null,1,A.C5r),2&c){const W=A.sdS(4);A.Y8G("ngIf",""===(null==l.errorMessage?null:l.errorMessage.trim()))("ngIfElse",W)}},dependencies:[oe.YU,oe.Sq,oe.bT,r.DJ,r.sA,r.UI,M.PW,N.$z,KA.MV,rt.q,g.HM,zA.oV,cA.Ld,un.Wk,oe.P9,oe.QX]})}}return t})();const oi=t=>({"dashboard-card-content":!0,"error-border":t}),qo=t=>({"p-0":t});function _o(t,I){if(1&t&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&t){A.XpG();const e=A.sdS(11);A.Y8G("matMenuTriggerFor",e)}}function $o(t,I){if(1&t){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const l=A.eBV(e).index,W=A.XpG().$implicit,LA=A.XpG(2);return A.Njj(LA.onNavigateTo(W.links[l]))}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit;A.R7$(),A.JRh(e)}}function As(t,I){if(1&t){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){A.eBV(e);const l=A.XpG(3);return A.Njj(l.onsortChannelsBy())}),A.EFF(1),A.k0s()}if(2&t){const e=A.XpG(3);A.R7$(),A.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score","")}}function es(t,I){1&t&&A.nrm(0,"mat-progress-bar",30)}function ln(t,I){if(1&t&&A.nrm(0,"rtl-cln-node-info",31),2&t){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function ns(t,I){if(1&t&&A.nrm(0,"rtl-cln-balances-info",32),2&t){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function Vt(t,I){if(1&t&&A.nrm(0,"rtl-cln-channel-capacity-info",33),2&t){const e=A.XpG(3);A.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("activeChannels",e.activeChannelsCapacity)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[1])}}function Zt(t,I){if(1&t&&A.nrm(0,"rtl-cln-fee-info",34),2&t){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function Kt(t,I){if(1&t&&A.nrm(0,"rtl-cln-channel-status-info",35),2&t){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1]+" "+e.errorMessages[2])}}function ct(t,I){1&t&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function Qa(t,I){if(1&t&&(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,_o,3,1,"button",15),A.j41(10,"mat-menu",16,1),A.DNE(12,$o,2,1,"button",17)(13,As,2,1,"button",18),A.k0s()()()(),A.j41(14,"mat-card-content",19),A.DNE(15,es,1,0,"mat-progress-bar",20),A.j41(16,"div",21),A.DNE(17,ln,1,2,"rtl-cln-node-info",22)(18,ns,1,2,"rtl-cln-balances-info",23)(19,Vt,1,4,"rtl-cln-channel-capacity-info",24)(20,Zt,1,2,"rtl-cln-fee-info",25)(21,Kt,1,2,"rtl-cln-channel-status-info",26)(22,ct,2,0,"h3",27),A.k0s()()()()),2&t){const e=I.$implicit,c=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.FS9("fxFlex","capacity"===e.id?90:70),A.Y8G("ngClass",A.eq3(16,oi,"node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||"balance"===e.id&&c.apiCallStatusBalances.status===c.apiCallStatusEnum.ERROR||"capacity"===e.id&&(c.apiCallStatusChannels.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusBalances.status===c.apiCallStatusEnum.ERROR)||"fee"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusChannels.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusFHistory.status===c.apiCallStatusEnum.ERROR)||"status"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusChannels.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusBalances.status===c.apiCallStatusEnum.ERROR))),A.R7$(),A.Y8G("ngIf","node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||"balance"===e.id&&c.apiCallStatusBalances.status===c.apiCallStatusEnum.INITIATED||"capacity"===e.id&&(c.apiCallStatusChannels.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusBalances.status===c.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusChannels.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusFHistory.status===c.apiCallStatusEnum.INITIATED)||"status"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusChannels.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusBalances.status===c.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 rs(t,I){if(1&t&&(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,Qa,23,18,"mat-grid-tile",10),A.k0s()()),2&t){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 ts(t,I){if(1&t&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&t){A.XpG();const e=A.sdS(9);A.Y8G("matMenuTriggerFor",e)}}function as(t,I){if(1&t){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const l=A.eBV(e).index,W=A.XpG(2).$implicit,LA=A.XpG(2);return A.Njj(LA.onNavigateTo(W.links[l]))}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit;A.R7$(),A.JRh(e)}}function Qt(t,I){if(1&t&&(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,ts,3,1,"button",15),A.j41(8,"mat-menu",16,2),A.DNE(10,as,2,1,"button",17),A.k0s()()()()),2&t){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 pt(t,I){1&t&&A.nrm(0,"mat-progress-bar",30)}function pa(t,I){if(1&t&&A.nrm(0,"rtl-cln-node-info",44),2&t){const e=A.XpG(3);A.Y8G("information",e.information)}}function va(t,I){if(1&t&&A.nrm(0,"rtl-cln-balances-info",32),2&t){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function Ia(t,I){if(1&t&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&t){const e=A.XpG(3);A.Y8G("direction","In")("totalLiquidity",e.totalInboundLiquidity)("activeChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function is(t,I){if(1&t&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&t){const e=A.XpG(3);A.Y8G("direction","Out")("totalLiquidity",e.totalOutboundLiquidity)("activeChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function si(t,I){if(1&t){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const l=A.eBV(e).index,W=A.XpG(2).$implicit,LA=A.XpG(2);return A.Njj(LA.onNavigateTo(W.links[l]))}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit;A.R7$(),A.JRh(e)}}function os(t,I){if(1&t&&(A.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),A.nrm(3,"rtl-cln-lightning-invoices-table",49),A.k0s(),A.j41(4,"mat-tab",50),A.nrm(5,"rtl-cln-lightning-payments",51),A.k0s()(),A.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),A.EFF(9,"more_vert"),A.k0s()(),A.j41(10,"mat-menu",16,3),A.DNE(12,si,2,1,"button",17),A.k0s()()()),2&t){const e=A.sdS(11),c=A.XpG().$implicit;A.R7$(3),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("matMenuTriggerFor",e),A.R7$(5),A.Y8G("ngForOf",c.goToOptions)}}function ss(t,I){1&t&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function cs(t,I){if(1&t&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",38),A.DNE(2,Qt,11,4,"mat-card-header",39),A.j41(3,"mat-card-content",40),A.DNE(4,pt,1,0,"mat-progress-bar",20),A.j41(5,"div",21),A.DNE(6,pa,1,1,"rtl-cln-node-info",41)(7,va,1,2,"rtl-cln-balances-info",23)(8,Ia,1,4,"rtl-cln-channel-liquidity-info",42)(9,is,1,4,"rtl-cln-channel-liquidity-info",42)(10,os,13,4,"span",43)(11,ss,2,0,"h3",27),A.k0s()()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(),A.Y8G("ngClass",A.eq3(13,qo,"transactions"===e.id)),A.R7$(),A.Y8G("ngIf","transactions"!==e.id),A.R7$(),A.FS9("fxFlex","transactions"===e.id?100:"balance"===e.id?70:90),A.Y8G("ngClass",A.eq3(15,oi,"node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||"balance"===e.id&&c.apiCallStatusBalances.status===c.apiCallStatusEnum.ERROR||("inboundLiq"===e.id||"outboundLiq"===e.id)&&c.apiCallStatusChannels.status===c.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||"balance"===e.id&&c.apiCallStatusBalances.status===c.apiCallStatusEnum.INITIATED||("inboundLiq"===e.id||"outboundLiq"===e.id)&&c.apiCallStatusChannels.status===c.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 ls(t,I){if(1&t&&(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,cs,12,17,"mat-grid-tile",10),A.k0s()),2&t){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 gs=(()=>{class t{constructor(e,c,l,W){this.logger=e,this.store=c,this.commonService=l,this.router=W,this.faSmile=f.Qpm,this.faFrown=f.wB1,this.faAngleDoubleDown=B.WxX,this.faAngleDoubleUp=B.$sC,this.faChartPie=B.W1p,this.faBolt=B.zm_,this.faServer=B.D6w,this.faNetworkWired=B.eGi,this.userPersonaEnum=a.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=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.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===a.f7.SM||this.screenSize===a.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(h.RQ).pipe((0,m.Q)(this.unSubs[0]),(0,u.E)(this.store.select(d._c))).subscribe(([e,c])=>{this.errorMessages[0]="",this.errorMessages[3]="",this.apiCallStatusNodeInfo=e.apisCallStatus[0],this.apiCallStatusFHistory=e.apisCallStatus[1],this.apiCallStatusNodeInfo.status===a.wn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===a.wn.ERROR&&(this.errorMessages[3]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=c,this.information=e.information,this.fees=e.fees}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessages[2]="",this.apiCallStatusChannels=e.apiCallStatus,this.apiCallStatusChannels.status===a.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=e.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(c=>!!c.to_them_msat&&c.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(c=>!!c.to_us_msat&&c.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(c=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((c.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((c.to_us_msat||0)/1e3)}),this.channelsStatus.active.channels=e.activeChannels.length||0,this.channelsStatus.pending.channels=e.pendingChannels.length||0,this.channelsStatus.inactive.channels=e.inactiveChannels.length||0,this.logger.info(e)}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessages[1]="",this.apiCallStatusBalances=e.apiCallStatus,this.apiCallStatusBalances.status===a.wn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=e.balance,this.balances.onchain=e.balance.totalBalance||0,this.balances.lightning=e.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const c=e.localRemoteBalance.localBalance?+e.localRemoteBalance.localBalance:0,l=e.localRemoteBalance.remoteBalance?+e.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:c,remoteBalance:l,balancedness:+(1-Math.abs((c-l)/(c+l))).toFixed(3)},this.channelsStatus.active.capacity=e.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=e.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=e.localRemoteBalance.inactiveBalance||0,this.logger.info(e)})}onNavigateTo(e){this.router.navigateByUrl("/cln/"+e)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((e,c)=>{const l=(e.to_us_msat?+e.to_us_msat:0)+(e.to_them_msat?+e.to_them_msat:0),W=(c.to_them_msat?+c.to_them_msat:0)+(c.to_them_msat?+c.to_them_msat:0);return l>W?-1:l{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(C.h),A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-home"]],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",3,"direction","totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","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"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(c,l){if(1&c&&A.DNE(0,rs,7,4,"div",4)(1,ls,6,4,"ng-template",null,0,A.C5r),2&c){const W=A.sdS(2);A.Y8G("ngIf",(null==l.selNode?null:l.selNode.settings.userPersona)===l.userPersonaEnum.OPERATOR)("ngIfElse",W)}},dependencies:[oe.YU,oe.Sq,oe.bT,oe.ux,oe.e1,oe.fG,P.aY,r.DJ,r.sA,r.UI,M.PW,N.iY,Q.RN,Q.m2,Q.MM,Q.dh,X.B_,X.NS,D.An,F.kk,F.fb,F.Cp,g.HM,y.mq,y.T8,Un,ei,ri,Qo,yt,ai,Uo,Zo]})}}return t})();var Ma=Te(4572),us=Te(2852),Ft=Te(5416),xr=Te(9454),Ne=Te(6013);const qt=["form"],_t=["formSweepAll"],mt=["stepper"],Da=(t,I)=>({"mr-6":t,"mr-2":I});function $t(t,I){if(1&t&&(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&t){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 Bs(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function ci(t,I){1&t&&(A.j41(0,"mat-hint"),A.EFF(1,"Amount replaced by UTXO balance"),A.k0s())}function fs(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.amountError)}}function xt(t,I){if(1&t&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e)}}function Aa(t,I){if(1&t&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function ms(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function li(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG(2);return A.DH7(W.customFeeRate,l)||(W.customFeeRate=l),A.Njj(l)}),A.k0s(),A.DNE(5,ms,2,0,"mat-error",23),A.k0s()}if(2&t){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 gi(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function ui(t,I){if(1&t&&(A.j41(0,"mat-option",51),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e),A.R7$(),A.SpI("",A.i5U(2,2,e.amount_msat/1e3,"1.0-0")," Sats")}}function hs(t,I){if(1&t&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function Cs(t,I){if(1&t&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,hs,2,1,"span",23),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function Nt(t,I){if(1&t){const e=A.RV6();A.j41(0,"form",20,1),A.bIt("submit",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onSendFunds())})("reset",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.transaction.destination,l)||(W.transaction.destination=l),A.Njj(l)}),A.k0s(),A.DNE(7,Bs,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.transaction.satoshi,l)||(W.transaction.satoshi=l),A.Njj(l)}),A.k0s(),A.DNE(13,ci,2,0,"mat-hint",23),A.j41(14,"span",26),A.EFF(15),A.k0s(),A.DNE(16,fs,2,1,"mat-error",23),A.k0s(),A.j41(17,"mat-form-field",27)(18,"mat-select",28),A.bIt("selectionChange",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onAmountUnitChange(l))}),A.DNE(19,xt,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFeeRate,l)||(W.selFeeRate=l),A.Njj(l)}),A.bIt("selectionChange",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.customFeeRate=null)}),A.DNE(27,Aa,2,2,"mat-option",29),A.k0s()(),A.DNE(28,li,6,5,"mat-form-field",35),A.k0s(),A.j41(29,"div",36)(30,"mat-checkbox",37),A.mxI("ngModelChange",function(l){A.eBV(e);const W=A.XpG();return A.DH7(W.flgMinConf,l)||(W.flgMinConf=l),A.Njj(l)}),A.bIt("change",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.flgMinConf?l.selFeeRate=null:l.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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.minConfValue,l)||(W.minConfValue=l),A.Njj(l)}),A.k0s(),A.DNE(36,gi,2,0,"mat-error",23),A.k0s()()(),A.j41(37,"mat-expansion-panel",40),A.bIt("closed",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onAdvancedPanelToggle(!0))})("opened",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selUTXOs,l)||(W.selUTXOs=l),A.Njj(l)}),A.bIt("selectionChange",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onUTXOSelectionChange(l))}),A.j41(48,"mat-select-trigger"),A.EFF(49),A.nI1(50,"number"),A.k0s(),A.DNE(51,ui,3,5,"mat-option",29),A.k0s()(),A.j41(52,"div",44)(53,"mat-slide-toggle",45),A.mxI("ngModelChange",function(l){A.eBV(e);const W=A.XpG();return A.DH7(W.flgUseAllBalance,l)||(W.flgUseAllBalance=l),A.Njj(l)}),A.bIt("change",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.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,Cs,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&t){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("fxFlex","customperkb"!==e.selFeeRate||e.flgMinConf?"100":"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,Da,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 ds(t,I){if(1&t&&A.EFF(0),2&t){const e=A.XpG(3);A.JRh(e.passwordFormLabel)}}function Es(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Password is required."),A.k0s())}function Ps(t,I){if(1&t){const e=A.RV6();A.j41(0,"mat-step",58)(1,"form",76),A.DNE(2,ds,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,Es,2,0,"mat-error",23),A.k0s()(),A.j41(9,"div",78)(10,"button",79),A.bIt("click",function(){A.eBV(e);const l=A.XpG(2);return A.Njj(l.onAuthenticate())}),A.EFF(11,"Confirm"),A.k0s()()()()}if(2&t){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 Bi(t,I){if(1&t&&A.EFF(0),2&t){const e=A.XpG(2);A.JRh(e.sendFundFormLabel)}}function Xs(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function ws(t,I){if(1&t&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function Ks(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Qs(t,I){if(1&t&&(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,Ks,2,0,"mat-error",23),A.k0s()),2&t){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 ps(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function fi(t,I){if(1&t&&A.EFF(0),2&t){const e=A.XpG(2);A.JRh(e.confirmFormLabel)}}function vs(t,I){if(1&t&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function Is(t,I){if(1&t&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,vs,2,1,"span",23),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function Ms(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",55)(1,"mat-vertical-stepper",56,6),A.bIt("selectionChange",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.stepSelectionChanged(l))}),A.DNE(3,Ps,12,4,"mat-step",57),A.j41(4,"mat-step",58)(5,"form",59),A.DNE(6,Bi,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,Xs,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,ws,2,2,"mat-option",29),A.k0s()(),A.DNE(20,Qs,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,ps,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,fi,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,Is,3,2,"div",47),A.j41(40,"div",66)(41,"button",73),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onSendFunds())}),A.EFF(42,"Sweep All Funds"),A.k0s()()()()()(),A.j41(43,"div",74)(44,"button",75),A.EFF(45),A.k0s()()()}if(2&t){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("fxFlex","customperkb"!==e.sendFundFormGroup.controls.selFeeRate.value||e.sendFundFormGroup.controls.flgMinConf.value?"100":"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,Da,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 mi=(()=>{class t{constructor(e,c,l,W,LA,VA,cr,hn,gr,Uh,Sh){this.dialogRef=e,this.data=c,this.logger=l,this.dataService=W,this.store=LA,this.commonService=VA,this.decimalPipe=cr,this.actions=hn,this.formBuilder=gr,this.rtlEffects=Uh,this.snackBar=Sh,this.faExclamationTriangle=B.zpE,this.faInfoCircle=B.iW_,this.sweepAll=!1,this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=a.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.feeRateTypes=a.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=a.A0,this.selAmountUnit=a.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=a.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=a.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,m.Q)(this.unSubs[0])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[_.k0.required]],password:["",[_.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",_.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(e=>{e?(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([_.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(e=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==e||this.sendFundFormGroup.controls.flgMinConf.value?null:[_.k0.required])}),(0,Ma.z)([this.store.select(d._c),this.store.select(d.qv)]).pipe((0,m.Q)(this.unSubs[3])).subscribe(([e,c])=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.appConfig=c}),this.store.select(h.mH).pipe((0,m.Q)(this.unSubs[4])).subscribe(e=>{this.information=e}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[5])).subscribe(e=>{this.utxos=this.commonService.sortAscByKey(e.utxos?.filter(c=>"confirmed"===c.status),"value"),this.logger.info(e)}),this.actions.pipe((0,m.Q)(this.unSubs[6]),(0,K.p)(e=>e.type===a.TC.UPDATE_API_CALL_STATUS_CLN||e.type===a.TC.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(e=>{e.type===a.TC.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,AA.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),e.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&e.payload.status===a.wn.ERROR&&"SetChannelTransaction"===e.payload.action&&(this.sendFundError=e.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,AA.oz)({payload:us(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,In.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."))})}onSendFunds(){if(this.sendFundError="",this.flgUseAllBalance&&(this.transaction.satoshi="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(e=>this.transaction.utxos?.push(e.txid+":"+e.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,q.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!==a.BQ.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,this.selAmountUnit===this.amountUnits[2]?a.BQ.OTHER:this.selAmountUnit,a.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,m.Q)(this.unSubs[7])).subscribe({next:e=>{this.transaction.satoshi=e[a.BQ.SATS],this.selAmountUnit=a.BQ.SATS,this.store.dispatch((0,q.aB)({payload:this.transaction}))},error:e=>{this.transaction.satoshi=null,this.selAmountUnit=a.BQ.SATS,this.amountError="Conversion Error: "+e}}):this.store.dispatch((0,q.aB)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=a.A0[0]}stepSelectionChanged(e){switch(this.sendFundError="",e.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(c=>c.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}e.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((c,l)=>c+(l.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=a.A0[0]):this.transaction.satoshi=null}onAmountUnitChange(e){const c=this,l=this.selAmountUnit===this.amountUnits[2]?a.BQ.OTHER:this.selAmountUnit;let W=e.value===this.amountUnits[2]?a.BQ.OTHER:e.value;this.transaction.satoshi&&this.selAmountUnit!==e.value&&this.commonService.convertCurrency(+this.transaction.satoshi,l,W,this.amountUnits[2],this.fiatConversion).pipe((0,m.Q)(this.unSubs[8])).subscribe({next:LA=>{this.selAmountUnit=e.value,c.transaction.satoshi=c.decimalPipe.transform(LA[W],c.currencyUnitFormats[W])?.replace(/,/g,"")},error:LA=>{c.transaction.satoshi=null,this.amountError="Conversion Error: "+LA,this.selAmountUnit=l,W=l}})}onAdvancedPanelToggle(e){this.advancedTitle=e&&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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(E.gP),A.rXU(wn.u),A.rXU(n.il),A.rXU(C.h),A.rXU(oe.QX),A.rXU(fA.En),A.rXU(_.ze),A.rXU(PA.H),A.rXU(Ft.UG))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(c,l){if(1&c&&(A.GBs(qt,7),A.GBs(_t,5),A.GBs(mt,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.form=W.first),A.mGM(W=A.lsd())&&(l.formSweepAll=W.first),A.mGM(W=A.lsd())&&(l.stepper=W.first)}},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,"fxFlex"],["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(c,l){if(1&c&&(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,$t,16,6,"div",14)(10,Nt,64,39,"form",15),A.k0s()()(),A.DNE(11,Ms,46,23,"ng-template",null,0,A.C5r)),2&c){const W=A.sdS(12);A.R7$(5),A.JRh(l.sweepAll?"Sweep All Funds":"Send Funds"),A.R7$(),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.Y8G("ngIf",l.recommendedFee.minimumFee),A.R7$(),A.Y8G("ngIf",!l.sweepAll)("ngIfElse",W)}},dependencies:[oe.YU,oe.Sq,oe.bT,_.qT,_.me,_.Q0,_.BC,_.cb,_.YS,_.VZ,_.vS,_.cV,_.j4,_.JD,P.aY,r.DJ,r.sA,r.UI,M.PW,oA.tx,N.$z,Q.m2,Q.MM,Ir.So,xr.GK,xr.Z2,xr.WN,D.An,CA.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,Z.VO,Z.$2,pA.wT,NA.sG,zA.oV,Ne.V5,Ne.Ti,Ne.M6,Ne.F7,O.N,mA.V,oe.QX]})}}return t})();var ya=Te(5837),pr=Te(1975);const Ds=()=>["all"],ys=t=>({"error-border":t}),Fs=()=>["no_utxo"],Fa=t=>({width:t}),xs=t=>({"display-none":t});function Ns(t,I){if(1&t&&(A.j41(0,"mat-option",37),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function Ys(t,I){1&t&&A.nrm(0,"mat-progress-bar",38)}function Ts(t,I){1&t&&A.nrm(0,"th",39)}function lt(t,I){1&t&&(A.j41(0,"span",42)(1,"mat-icon",43),A.EFF(2,"warning"),A.k0s()())}function bs(t,I){if(1&t&&(A.j41(0,"td",40),A.DNE(1,lt,3,0,"span",41),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(),l=A.sdS(56);A.R7$(),A.Y8G("ngIf",c.numDustUTXOs>0&&!c.isDustUTXO&&(null==e?null:e.amount_msat)/1e30||0===e.amount_msat),A.R7$(),A.Y8G("ngIf",e.amount_msat<0)}}function tt(t,I){1&t&&(A.j41(0,"th",52),A.EFF(1,"Blockheight"),A.k0s())}function Ci(t,I){if(1&t&&(A.j41(0,"td",40)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.SpI(" ",A.bMT(3,1,null==e?null:e.blockheight)," ")}}function vt(t,I){1&t&&(A.j41(0,"th",49),A.EFF(1,"Reserved"),A.k0s())}function di(t,I){if(1&t&&(A.j41(0,"td",40)(1,"span"),A.EFF(2),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(e.reserved?"Yes":"No")}}function Os(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function aa(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",61)(1,"button",62),A.bIt("click",function(l){const W=A.eBV(e).$implicit,LA=A.XpG();return A.Njj(LA.onUTXOClick(W,l))}),A.EFF(2,"View Info"),A.k0s()()}}function ia(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No utxos available."),A.k0s())}function ht(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting utxos..."),A.k0s())}function ks(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function oa(t,I){if(1&t&&(A.j41(0,"td",63),A.DNE(1,ia,2,0,"p",64)(2,ht,2,0,"p",64)(3,ks,2,1,"p",64),A.k0s()),2&t){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 Yt(t,I){if(1&t&&A.nrm(0,"tr",65),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,xs,(null==e.listUTXOs?null:e.listUTXOs.data)&&(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)>0))}}function Ws(t,I){1&t&&A.nrm(0,"tr",66)}function zs(t,I){1&t&&A.nrm(0,"tr",67)}function Hs(t,I){1&t&&A.nrm(0,"mat-icon",68)}let Ei=(()=>{class t{constructor(e,c,l,W){this.logger=e,this.commonService=c,this.store=l,this.camelCaseWithReplace=W,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:a.md,sortBy:"status",sortOrder:a.oi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new w.I6([]),this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),e.utxos&&e.utxos.length>0&&(this.dustUtxos=e.utxos?.filter(c=>+(c.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(e)})}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(e,c){const l=[[{key:"txid",value:e.txid,title:"Transaction ID",width:100,type:a.UN.STRING,explorerLink:"tx"}],[{key:"output",value:e.output,title:"Output",width:50,type:a.UN.NUMBER},{key:"amount_msat",value:(e.amount_msat||0)/1e3,title:"Value (Sats)",width:50,type:a.UN.NUMBER}],[{key:"status",value:this.commonService.titleCase(e.status||""),title:"Status",width:50,type:a.UN.STRING},{key:"blockheight",value:e.blockheight,title:"Blockheight",width:50,type:a.UN.NUMBER}],[{key:"address",value:e.address,title:"Address",width:100}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"UTXO Information",message:l}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column||"","_"):"is_dust"===e?"Dust":this.commonService.titleCase(e)}setFilterPredicate(){this.listUTXOs.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=JSON.stringify(e).toLowerCase();break;case"is_dust":l=(e?.amount_msat||0)/1e3"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"is_dust"===this.selFilterBy||"status"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}loadUTXOsTable(e){this.listUTXOs=new w.I6([...e]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(c,l)=>{switch(l){case"is_dust":return(c.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Ns,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(14,"div",10)(15,"div",11),A.DNE(16,Ys,1,0,"mat-progress-bar",12),A.j41(17,"table",13,0),A.qex(19,14),A.DNE(20,Ts,1,0,"th",15)(21,bs,2,2,"td",16),A.bVm(),A.qex(22,17),A.DNE(23,hi,1,0,"th",18)(24,gt,3,2,"td",16),A.bVm(),A.qex(25,19),A.DNE(26,Na,2,0,"th",20)(27,Us,4,4,"td",16),A.bVm(),A.qex(28,21),A.DNE(29,ea,2,0,"th",20)(30,na,4,4,"td",16),A.bVm(),A.qex(31,22),A.DNE(32,ra,2,0,"th",20)(33,Dn,4,4,"td",16),A.bVm(),A.qex(34,23),A.DNE(35,Ss,2,0,"th",24)(36,ut,4,3,"td",16),A.bVm(),A.qex(37,25),A.DNE(38,Rs,2,0,"th",24)(39,ta,3,2,"td",16),A.bVm(),A.qex(40,26),A.DNE(41,tt,2,0,"th",24)(42,Ci,4,3,"td",16),A.bVm(),A.qex(43,27),A.DNE(44,vt,2,0,"th",20)(45,di,3,1,"td",16),A.bVm(),A.qex(46,28),A.DNE(47,Os,6,0,"th",29)(48,aa,3,0,"td",30),A.bVm(),A.qex(49,31),A.DNE(50,oa,4,3,"td",32),A.bVm(),A.DNE(51,Yt,1,3,"tr",33)(52,Ws,1,0,"tr",34)(53,zs,1,0,"tr",35),A.k0s(),A.nrm(54,"mat-paginator",36),A.k0s()()(),A.DNE(55,Hs,1,0,"ng-template",null,1,A.C5r)}2&c&&(A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Ds).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(3),A.Y8G("ngIf",(null==l.apiCallStatus?null:l.apiCallStatus.status)===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.listUTXOs)("ngClass",A.eq3(15,ys,""!==l.errorMessage)),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(17,Fs)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,D.An,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld,oe.QX,oe.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 t})();function Js(t,I){if(1&t&&(A.j41(0,"span",4),A.EFF(1,"UTXOs"),A.k0s()),2&t){const e=A.XpG();A.FS9("matBadge",e.numUtxos)}}function js(t,I){if(1&t&&(A.j41(0,"span",5),A.EFF(1,"Dust UTXOs"),A.k0s()),2&t){const e=A.XpG();A.FS9("matBadge",e.numDustUtxos)}}let Vs=(()=>{class t{constructor(e,c){this.logger=e,this.store=c,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.bkB,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{e.utxos&&e.utxos.length>0&&(this.numUtxos=e.utxos.length||0,this.numDustUtxos=e.utxos?.filter(c=>+(c.amount_msat||0)/1e3{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},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(c,l){1&c&&(A.j41(0,"div",0)(1,"mat-tab-group",1),A.bIt("selectedIndexChange",function(LA){return l.onSelectedIndexChanged(LA)}),A.j41(2,"mat-tab"),A.DNE(3,Js,2,1,"ng-template",2),A.nrm(4,"rtl-cln-on-chain-utxos",3),A.k0s(),A.j41(5,"mat-tab"),A.DNE(6,js,2,1,"ng-template",2),A.nrm(7,"rtl-cln-on-chain-utxos",3),A.k0s()()()),2&c&&(A.R7$(),A.Y8G("selectedIndex",l.selectedTableIndex),A.R7$(3),A.Y8G("numDustUTXOs",l.numDustUtxos)("isDustUTXO",!1)("dustAmount",l.DUST_AMOUNT),A.R7$(3),A.Y8G("numDustUTXOs",l.numDustUtxos)("isDustUTXO",!0)("dustAmount",l.DUST_AMOUNT))},dependencies:[r.DJ,r.sA,r.UI,pr.k,y.ES,y.mq,y.T8,Ei]})}}return t})();const Zs=(t,I)=>[t,I];function qs(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",13),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.activeLink=null==l?null:l.link)}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit,c=A.XpG();A.Y8G("active",c.activeLink===(null==e?null:e.link))("routerLink",A.l_i(3,Zs,null==e?null:e.link,null==c.selectedTable?null:c.selectedTable.name)),A.R7$(),A.JRh(null==e?null:e.name)}}let _s=(()=>{class t{constructor(e,c,l){this.store=e,this.router=c,this.activatedRoute=l,this.faExchangeAlt=B._qq,this.faChartPie=B.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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){const e=this.links.find(c=>this.router.url.includes(c.link));this.activeLink=e?e.link:this.links[0].link,this.selectedTable=this.tables.find(c=>c.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(c=>c instanceof un.gx)).subscribe({next:c=>{const l=this.links.find(W=>c.urlAfterRedirects.includes(W.link));this.activeLink=l?l.link:this.links[0].link,this.selectedTable=this.tables.find(W=>W.name===c.urlAfterRedirects.substring(c.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(d._c).pipe((0,m.Q)(this.unSubs[1])).subscribe(c=>{this.selNode=c}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[2])).subscribe(c=>{this.balances=[{title:"Total Balance",dataValue:c.balance.totalBalance||0},{title:"Confirmed",dataValue:c.balance.confBalance||0},{title:"Unconfirmed",dataValue:c.balance.unconfBalance||0}]})}openSendFundsModal(e){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:e,component:mi}}}))}onSelectedTableIndexChanged(e){this.selectedTable=this.tables.find(c=>c.id===e)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(n.il),A.rXU(un.Ix),A.rXU(un.nX))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-on-chain"]],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(c,l){if(1&c){const W=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,qs,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(VA){return A.eBV(W),A.Njj(l.onSelectedTableIndexChanged(VA))}),A.k0s()()()()()}if(2&c){const W=A.sdS(18);A.R7$(),A.Y8G("icon",l.faChartPie),A.R7$(6),A.Y8G("values",l.balances),A.R7$(2),A.Y8G("icon",l.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",W),A.R7$(),A.Y8G("ngForOf",l.links),A.R7$(6),A.Y8G("selectedTableIndex",null==l.selectedTable?null:l.selectedTable.id)}},dependencies:[oe.Sq,P.aY,r.DJ,r.sA,r.UI,Q.RN,Q.m2,y.Bu,y.hQ,y.Ql,ya.f,un.n3,un.Wk,Vs]})}}return t})();function $s(t,I){if(1&t&&(A.j41(0,"span",10),A.EFF(1,"Channels"),A.k0s()),2&t){const e=A.XpG();A.FS9("matBadge",e.activeChannels)}}function A0(t,I){if(1&t&&(A.j41(0,"span",10),A.EFF(1,"Peers"),A.k0s()),2&t){const e=A.XpG();A.FS9("matBadge",e.activePeers)}}let e0=(()=>{class t{constructor(e,c,l){this.store=e,this.logger=c,this.router=l,this.activePeers=0,this.activeChannels=0,this.faUsers=B.gdJ,this.faChartPie=B.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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(e=>e instanceof un.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(c=>c.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels.length||0}),this.store.select(h.os).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0,this.logger.info(e)}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.balances=[{title:"Total Balance",dataValue:e.balance.totalBalance||0},{title:"Confirmed",dataValue:e.balance.confBalance||0},{title:"Unconfirmed",dataValue:e.balance.unconfBalance||0}]})}onSelectedTabChange(e){this.router.navigateByUrl("/cln/connections/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(n.il),A.rXU(E.gP),A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-connections"]],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(c,l){1&c&&(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(LA){return A.DH7(l.activeLink,LA)||(l.activeLink=LA),LA}),A.bIt("selectedTabChange",function(LA){return l.onSelectedTabChange(LA)}),A.j41(16,"mat-tab"),A.DNE(17,$s,2,1,"ng-template",8),A.k0s(),A.j41(18,"mat-tab"),A.DNE(19,A0,2,1,"ng-template",8),A.k0s()(),A.j41(20,"div",9),A.nrm(21,"router-outlet"),A.k0s()()()()),2&c&&(A.R7$(),A.Y8G("icon",l.faChartPie),A.R7$(6),A.Y8G("values",l.balances),A.R7$(2),A.Y8G("icon",l.faUsers),A.R7$(6),A.R50("selectedIndex",l.activeLink))},dependencies:[P.aY,r.DJ,r.sA,r.UI,Q.RN,Q.m2,pr.k,y.ES,y.mq,y.T8,ya.f,un.n3]})}}return t})();function n0(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.activeLink=l.link)}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit,c=A.XpG();A.FS9("routerLink",e.link),A.Y8G("active",c.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let r0=(()=>{class t{constructor(e,c,l){this.logger=e,this.store=c,this.router=l,this.faExchangeAlt=B._qq,this.faChartPie=B.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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){const e=this.links.find(c=>this.router.url.includes(c.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(c=>c instanceof un.gx)).subscribe({next:c=>{const l=this.links.find(W=>c.urlAfterRedirects.includes(W.link));this.activeLink=l?l.link:this.links[0].link,this.routerUrl=c.urlAfterRedirects}}),this.store.select(d._c).pipe((0,m.Q)(this.unSubs[1])).subscribe(c=>{if(this.selNode=c,this.selNode&&this.selNode.settings.enableOffers){this.store.dispatch((0,q.Eb)()),this.store.dispatch((0,q.Ml)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const l=this.links.find(W=>this.router.url.includes(W.link));this.activeLink=l?l.link:this.links[0].link}}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[2]),(0,u.E)(this.store.select(d._c))).subscribe(([c,l])=>{this.currencyUnits=l?.settings.currencyUnits||[],this.balances=l&&l.settings.userPersona===a.HW.OPERATOR?[{title:"Local Capacity",dataValue:c.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:c.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:c.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:c.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(c)})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-transactions"]],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,"active","routerLink","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","active","routerLink"]],template:function(c,l){if(1&c&&(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,n0,2,3,"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&c){const W=A.sdS(18);A.R7$(),A.Y8G("icon",l.faChartPie),A.R7$(6),A.Y8G("values",l.balances),A.R7$(2),A.Y8G("icon",l.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",W),A.R7$(),A.Y8G("ngForOf",l.links)}},dependencies:[oe.Sq,P.aY,r.DJ,r.sA,r.UI,Q.RN,Q.m2,y.Bu,y.hQ,y.Ql,ya.f,un.n3,un.Wk]})}}return t})();function sa(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.activeLink=l.link)}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit,c=A.XpG();A.FS9("routerLink",e.link),A.Y8G("active",c.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Ya=(()=>{class t{constructor(e){this.router=e,this.faMapSigns=B.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 o.B,new o.B,new o.B]}ngOnInit(){const e=this.links.find(c=>this.router.url.includes(c.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(c=>c instanceof un.gx)).subscribe({next:c=>{const l=this.links.find(W=>c.urlAfterRedirects.includes(W.link));this.activeLink=l?l.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-routing"]],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,"active","routerLink","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","active","routerLink"]],template:function(c,l){if(1&c&&(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,sa,2,3,"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&c){const W=A.sdS(12);A.R7$(2),A.Y8G("icon",l.faMapSigns),A.R7$(7),A.Y8G("tabPanel",W),A.R7$(),A.Y8G("ngForOf",l.links)}},dependencies:[oe.Sq,P.aY,r.DJ,r.sA,r.UI,Q.RN,Q.m2,y.Bu,y.hQ,y.Ql,un.n3,un.Wk]})}}return t})();function ca(t,I){1&t&&(A.j41(0,"h3",9),A.EFF(1,"Node 1"),A.k0s())}function Pi(t,I){1&t&&(A.j41(0,"h3",9),A.EFF(1,"Node 1 (Your Node)"),A.k0s())}function t0(t,I){1&t&&(A.j41(0,"h3",9),A.EFF(1,"Node 2"),A.k0s())}function la(t,I){1&t&&(A.j41(0,"h3",9),A.EFF(1,"Node 2 (Your Node)"),A.k0s())}function Tr(t,I){if(1&t&&(A.j41(0,"div",1),A.nrm(1,"mat-divider"),A.j41(2,"div",2)(3,"div",3)(4,"div",4),A.DNE(5,ca,2,0,"h3",5)(6,Pi,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,t0,2,0,"h3",5)(103,la,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&t){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 at=(()=>{class t{constructor(e){this.store=e,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.store.select(h.mH).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===e.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===e.id&&(this.node2_match=!0)})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(n.il))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},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(c,l){1&c&&A.DNE(0,Tr,197,72,"div",0),2&c&&A.Y8G("ngIf",l.lookupResult)},dependencies:[oe.bT,r.DJ,r.sA,r.UI,rt.q,oe.QX,oe.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})();const Ta=["peersForm"],ba=["stepper"],Ua=(t,I)=>({"mr-6":t,"mr-2":I});function a0(t,I){if(1&t&&A.EFF(0),2&t){const e=A.XpG();A.JRh(e.peerFormLabel)}}function Tt(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Address is required."),A.k0s())}function Xi(t,I){if(1&t&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.peerConnectionError)}}function i0(t,I){if(1&t&&A.EFF(0),2&t){const e=A.XpG();A.JRh(e.channelFormLabel)}}function o0(t,I){if(1&t&&(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&t){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 s0(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function c0(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Amount must be a positive number."),A.k0s())}function l0(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function g0(t,I){if(1&t&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function u0(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function B0(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function f0(t,I){if(1&t&&(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,u0,2,0,"mat-error",15)(7,B0,2,1,"mat-error",15),A.k0s()),2&t){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 m0(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function h0(t,I){if(1&t&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.channelConnectionError)}}let wi=(()=>{class t{constructor(e,c,l,W,LA,VA,cr,hn){this.dialogRef=e,this.data=c,this.store=l,this.formBuilder=W,this.actions=LA,this.logger=VA,this.commonService=cr,this.dataService=hn,this.faExclamationTriangle=B.zpE,this.faInfoCircle=B.iW_,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=a.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=a.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.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:["",[_.k0.required]],peerAddress:[this.peerAddress,[_.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[_.k0.required,_.k0.min(1),_.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[_.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e,this.channelFormGroup.controls.isPrivate.setValue(!!e?.settings.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{e?(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([_.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(e=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==e||this.channelFormGroup.controls.flgMinConf.value?null:[_.k0.required])}),this.actions.pipe((0,m.Q)(this.unSubs[3]),(0,K.p)(e=>e.type===a.TC.NEWLY_ADDED_PEER_CLN||e.type===a.TC.FETCH_CHANNELS_CLN||e.type===a.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(e=>{e.type===a.TC.NEWLY_ADDED_PEER_CLN&&(this.logger.info(e.payload),this.flgEditable=!1,this.newlyAddedPeer=e.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),e.type===a.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close(),e.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&e.payload.status===a.wn.ERROR&&("SaveNewPeer"===e.payload.action?this.peerConnectionError=e.payload.message:"SaveNewChannel"===e.payload.action&&(this.channelConnectionError=e.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,m.Q)(this.unSubs[4])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,q.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,q.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(e){switch(e.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)"}e.selectedIndex{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(n.il),A.rXU(_.ze),A.rXU(fA.En),A.rXU(E.gP),A.rXU(C.h),A.rXU(wn.u))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(c,l){if(1&c&&(A.GBs(Ta,5),A.GBs(ba,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.form=W.first),A.mGM(W=A.lsd())&&(l.stepper=W.first)}},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,"fxFlex"],["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(c,l){if(1&c){const W=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 A.eBV(W),A.Njj(l.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(VA){return A.eBV(W),A.Njj(l.stepSelectionChanged(VA))}),A.j41(12,"mat-step",10)(13,"form",11),A.DNE(14,a0,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,Tt,2,0,"mat-error",15),A.k0s(),A.DNE(20,Xi,4,2,"div",16),A.j41(21,"div",17)(22,"button",18),A.bIt("click",function(){return A.eBV(W),A.Njj(l.onConnectPeer())}),A.EFF(23),A.k0s()()()(),A.j41(24,"mat-step",10)(25,"form",19),A.bIt("ngSubmit",function(){return A.eBV(W),A.Njj(l.onOpenChannel())}),A.DNE(26,i0,1,1,"ng-template",20),A.j41(27,"div",21),A.DNE(28,o0,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,s0,2,0,"mat-error",15)(40,c0,2,0,"mat-error",15)(41,l0,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,g0,2,2,"mat-option",33),A.k0s()(),A.DNE(52,f0,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,m0,2,0,"mat-error",15),A.k0s()()()(),A.DNE(60,h0,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&c&&(A.R7$(10),A.Y8G("linear",!0),A.R7$(2),A.Y8G("stepControl",l.peerFormGroup)("editable",l.flgEditable),A.R7$(),A.Y8G("formGroup",l.peerFormGroup),A.R7$(6),A.Y8G("ngIf",null==l.peerFormGroup.controls.peerAddress.errors?null:l.peerFormGroup.controls.peerAddress.errors.required),A.R7$(),A.Y8G("ngIf",""!==l.peerConnectionError),A.R7$(3),A.JRh(""!==l.peerConnectionError?"Retry":"Add Peer"),A.R7$(),A.Y8G("stepControl",l.channelFormGroup)("editable",l.flgEditable),A.R7$(),A.Y8G("formGroup",l.channelFormGroup),A.R7$(3),A.Y8G("ngIf",l.recommendedFee.minimumFee),A.R7$(5),A.Y8G("step",1e3),A.R7$(2),A.SpI("Remaining: ",A.bMT(36,28,l.totalBalance-(l.channelFormGroup.controls.fundingAmount.value?l.channelFormGroup.controls.fundingAmount.value:0)),""),A.R7$(4),A.Y8G("ngIf",null==l.channelFormGroup.controls.fundingAmount.errors?null:l.channelFormGroup.controls.fundingAmount.errors.required),A.R7$(),A.Y8G("ngIf",null==l.channelFormGroup.controls.fundingAmount.errors?null:l.channelFormGroup.controls.fundingAmount.errors.min),A.R7$(),A.Y8G("ngIf",null==l.channelFormGroup.controls.fundingAmount.errors?null:l.channelFormGroup.controls.fundingAmount.errors.max),A.R7$(6),A.Y8G("fxFlex","customperkb"!==l.channelFormGroup.controls.selFeeRate.value||l.channelFormGroup.controls.flgMinConf.value?"100":"25"),A.R7$(4),A.Y8G("ngForOf",l.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===l.channelFormGroup.controls.selFeeRate.value&&!l.channelFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(30,Ua,l.screenSize===l.screenSizeEnum.XS||l.screenSize===l.screenSizeEnum.SM,l.screenSize===l.screenSizeEnum.MD||l.screenSize===l.screenSizeEnum.LG||l.screenSize===l.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",l.channelFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",l.channelFormGroup.controls.flgMinConf.value&&!l.channelFormGroup.controls.minConfValue.value),A.R7$(),A.Y8G("ngIf",""!==l.channelConnectionError),A.R7$(3),A.JRh(""!==l.channelConnectionError?"Retry":"Open Channel"),A.R7$(2),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(null!=l.newlyAddedPeer&&l.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[oe.YU,oe.Sq,oe.bT,_.qT,_.me,_.Q0,_.BC,_.cb,_.YS,_.VZ,_.j4,_.JD,P.aY,r.DJ,r.sA,r.UI,M.PW,oA.tx,N.$z,Q.m2,Q.MM,Ir.So,CA.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,Z.VO,pA.wT,NA.sG,Ne.V5,Ne.Ti,Ne.M6,O.N,mA.V,oe.QX]})}}return t})();var ga=Te(9157);const ua=t=>({"background-color":t});function Qn(t,I){if(1&t&&(A.j41(0,"span",7),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(e)}}function rn(t,I){1&t&&(A.j41(0,"th",27),A.EFF(1,"Type"),A.k0s())}function C0(t,I){if(1&t&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function Ki(t,I){1&t&&(A.j41(0,"th",27),A.EFF(1,"Address"),A.k0s())}function bt(t,I){if(1&t&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function Qi(t,I){1&t&&(A.j41(0,"th",27),A.EFF(1,"Port"),A.k0s())}function d0(t,I){if(1&t&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function E0(t,I){1&t&&(A.j41(0,"th",29)(1,"div",30),A.EFF(2,"Actions"),A.k0s()())}function pi(t,I){if(1&t){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 l=A.eBV(e).$implicit,W=A.XpG(2);return A.Njj(W.onConnectNode(l))}),A.EFF(5,"Connect"),A.k0s(),A.j41(6,"mat-option",35),A.bIt("copied",function(l){A.eBV(e);const W=A.XpG(2);return A.Njj(W.onCopyNodeURI(l))}),A.EFF(7,"Copy URI"),A.k0s()()()()}if(2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(6),A.Y8G("payload",(null==c.lookupResult?null:c.lookupResult.nodeid)+"@"+e.address+":"+e.port)}}function P0(t,I){1&t&&A.nrm(0,"tr",36)}function fr(t,I){1&t&&A.nrm(0,"tr",37)}function Sa(t,I){if(1&t&&(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,Qn,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,rn,2,0,"th",18)(36,C0,2,1,"td",19),A.bVm(),A.qex(37,20),A.DNE(38,Ki,2,0,"th",18)(39,bt,2,1,"td",19),A.bVm(),A.qex(40,21),A.DNE(41,Qi,2,0,"th",18)(42,d0,2,1,"td",19),A.bVm(),A.qex(43,22),A.DNE(44,E0,3,0,"th",23)(45,pi,8,1,"td",24),A.bVm(),A.DNE(46,P0,1,0,"tr",25)(47,fr,1,0,"tr",26),A.k0s()()()()),2&t){const e=A.XpG();A.R7$(7),A.JRh(null==e.lookupResult?null:e.lookupResult.alias),A.R7$(),A.Y8G("ngStyle",A.eq3(12,ua,"#"+(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 vi=(()=>{class t{constructor(e,c,l){this.logger=e,this.snackBar=c,this.store=l,this.featureDescriptions=[],this.addresses=new w.I6([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new o.B]}ngOnInit(){if(this.addresses=new w.I6(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(e,c)=>e[c]&&isNaN(e[c])?e[c].toLocaleLowerCase():e[c]?+e[c]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const e=parseInt(this.lookupResult.features,16);a.TH.forEach(c=>{e&1<{this.information=e.information,this.availableBalance=e.balance.totalBalance||0})}onConnectNode(e){this.store.dispatch((0,AA.xO)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+e.address+":"+e.port},information:this.information,balance:this.availableBalance},component:wi}}}))}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(Ft.UG),A.rXU(n.il))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(c,l){if(1&c&&A.GBs(b.B4,5),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first)}},inputs:{lookupResult:"lookupResult"},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(c,l){1&c&&A.DNE(0,Sa,48,14,"div",1),2&c&&A.Y8G("ngIf",l.lookupResult)},dependencies:[oe.Sq,oe.bT,oe.B3,r.DJ,r.sA,r.UI,M.eI,rt.q,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.KS,w.$R,w.YZ,w.NB,cA.Ld,ga.U,oe.vh]})}}return t})();const Ba=["form"],X0=t=>({"mt-1":!0,"mt-2":t});function Ct(t,I){if(1&t&&(A.j41(0,"mat-radio-button",17),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e.id)("checked",c.selectedFieldId===e.id),A.R7$(),A.SpI(" ",e.name," ")}}function _r(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function it(t,I){if(1&t&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-node-lookup",26),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.nodeLookupValue)}}function ot(t,I){if(1&t&&(A.j41(0,"span",24),A.DNE(1,it,2,1,"div",25),A.k0s()),2&t){const e=A.XpG(2),c=A.sdS(21);A.R7$(),A.Y8G("ngIf",""!==e.nodeLookupValue.nodeid)("ngIfElse",c)}}function w0(t,I){if(1&t&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-channel-lookup",26),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.channelLookupValue)}}function K0(t,I){if(1&t&&(A.j41(0,"span",24),A.DNE(1,w0,2,1,"div",25),A.k0s()),2&t){const e=A.XpG(2),c=A.sdS(21);A.R7$(),A.Y8G("ngIf",e.channelLookupValue.channels&&e.channelLookupValue.channels.length>0)("ngIfElse",c)}}function Q0(t,I){1&t&&(A.j41(0,"span"),A.EFF(1,' fxFlex="100"'),A.j41(2,"h3"),A.EFF(3,"Error! Unable to find details!"),A.k0s()())}function fa(t,I){if(1&t&&(A.j41(0,"div",18)(1,"div",19)(2,"span",20),A.EFF(3),A.k0s()(),A.j41(4,"div",21),A.DNE(5,ot,2,2,"span",22)(6,K0,2,2,"span",22)(7,Q0,4,0,"span",23),A.k0s()()),2&t){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 p0(t,I){1&t&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find details!"),A.k0s())}let Ii=(()=>{class t{constructor(e,c,l,W){this.logger=e,this.commonService=c,this.store=l,this.actions=W,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=B.MjD,this.screenSize="",this.screenSizeEnum=a.f7,this.unSubs=[new o.B,new o.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,K.p)(e=>e.type===a.TC.SET_LOOKUP_CLN||e.type===a.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(e=>{if(e.type===a.TC.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof e.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(e.payload[0]));break;case 1:this.channelLookupValue=e.payload.channels&&"object"!=typeof e.payload.channels?{channels:[]}:JSON.parse(JSON.stringify(e.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}e.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&e.payload.status===a.wn.ERROR&&"Lookup"===e.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,q.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,q.ij)({payload:{uiMessage:a.MZ.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(e){this.resetData(),this.selectedFieldId=e.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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(fA.En))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-lookups"]],viewQuery:function(c,l){if(1&c&&A.GBs(Ba,7),2&c){let W;A.mGM(W=A.lsd())&&(l.form=W.first)}},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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.selectedFieldId,VA)||(l.selectedFieldId=VA),A.Njj(VA)}),A.bIt("change",function(VA){return A.eBV(W),A.Njj(l.onSelectChange(VA))}),A.DNE(7,Ct,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(VA){return A.eBV(W),A.DH7(l.lookupKey,VA)||(l.lookupKey=VA),A.Njj(VA)}),A.bIt("change",function(){return A.eBV(W),A.Njj(l.clearLookupValue())}),A.k0s(),A.DNE(13,_r,2,1,"mat-error",12),A.k0s(),A.j41(14,"div",13)(15,"button",14),A.bIt("click",function(){return A.eBV(W),A.Njj(l.resetData())}),A.EFF(16,"Clear"),A.k0s(),A.j41(17,"button",15),A.bIt("click",function(){return A.eBV(W),A.Njj(l.onLookup())}),A.EFF(18,"Lookup"),A.k0s()()(),A.DNE(19,fa,8,4,"div",16),A.k0s()()(),A.DNE(20,p0,2,0,"ng-template",null,2,A.C5r)}2&c&&(A.R7$(6),A.R50("ngModel",l.selectedFieldId),A.R7$(),A.Y8G("ngForOf",l.lookupFields),A.R7$(),A.Y8G("ngClass",A.eq3(7,X0,l.screenSize===l.screenSizeEnum.XS||l.screenSize===l.screenSizeEnum.SM)),A.R7$(2),A.JRh((null==l.lookupFields[l.selectedFieldId]?null:l.lookupFields[l.selectedFieldId].placeholder)||"Lookup Key"),A.R7$(),A.R50("ngModel",l.lookupKey),A.R7$(2),A.Y8G("ngIf",!l.lookupKey),A.R7$(6),A.Y8G("ngIf",l.flgSetLookupValue))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.ux,oe.e1,oe.fG,_.qT,_.me,_.BC,_.cb,_.YS,_.vS,_.cV,r.DJ,r.sA,r.UI,M.PW,N.$z,Q.m2,CA.fg,KA.rl,KA.nJ,KA.TL,wr.VT,wr._g,at,vi],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})();var Ra=function(t){return t.KB="KB",t.KW="KW",t}(Ra||{});function v0(t,I){if(1&t&&(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&t){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 Pn(t,I){if(1&t&&(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&t){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 Mi(t,I){if(1&t&&(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&t){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 I0(t,I){if(1&t&&(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&t){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 M0(t,I){if(1&t&&(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,v0,8,3,"div",15)(69,Pn,8,3,"div",15)(70,Mi,8,3,"div",15)(71,I0,8,3,"div",15),A.k0s()()()),2&t){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 Di(t,I){if(1&t&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let D0=(()=>{class t{constructor(){this.perkbw={},this.displayedColumns=["blockcount","feerate"]}ngAfterContentChecked(){this.feeRateStyle===Ra.KB?this.perkbw=this.feeRates.perkb||{}:this.feeRateStyle===Ra.KW&&(this.perkbw=this.feeRates.perkw||{})}static{this.\u0275fac=function(c){return new(c||t)}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},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(c,l){if(1&c&&A.DNE(0,M0,72,28,"div",1)(1,Di,3,1,"ng-template",null,0,A.C5r),2&c){const W=A.sdS(2);A.Y8G("ngIf",""===(null==l.errorMessage?null:l.errorMessage.trim()))("ngIfElse",W)}},dependencies:[oe.bT,r.DJ,r.sA,r.UI,D.An,zA.oV,oe.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}}return t})();function y0(t,I){if(1&t&&(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&t){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 F0(t,I){if(1&t&&(A.j41(0,"div",13)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let yi=(()=>{class t{constructor(){}static{this.\u0275fac=function(c){return new(c||t)}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},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(c,l){if(1&c&&(A.j41(0,"div",1),A.DNE(1,y0,52,15,"div",2)(2,F0,3,1,"ng-template",null,0,A.C5r),A.k0s()),2&c){const W=A.sdS(3);A.R7$(),A.Y8G("ngIf",""===(null==l.errorMessage?null:l.errorMessage.trim()))("ngIfElse",W)}},dependencies:[oe.bT,r.DJ,r.sA,r.UI,D.An,zA.oV,oe.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}}return t})();const Ut=t=>({"dashboard-card-content":!0,"error-border":t});function Fi(t,I){1&t&&A.nrm(0,"mat-progress-bar",19)}function x0(t,I){if(1&t&&A.nrm(0,"rtl-cln-node-info",20),2&t){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function N0(t,I){if(1&t&&A.nrm(0,"rtl-cln-channel-status-info",21),2&t){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function Y0(t,I){if(1&t&&A.nrm(0,"rtl-cln-fee-info",22),2&t){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function T0(t,I){if(1&t&&A.nrm(0,"rtl-cln-fee-rates",23),2&t){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",e.errorMessages[4])}}function b0(t,I){if(1&t&&A.nrm(0,"rtl-cln-fee-rates",23),2&t){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",e.errorMessages[5])}}function U0(t,I){if(1&t&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&t){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function S0(t,I){if(1&t&&(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,Fi,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,x0,1,2,"rtl-cln-node-info",14)(13,N0,1,2,"rtl-cln-channel-status-info",15)(14,Y0,1,2,"rtl-cln-fee-info",16)(15,T0,1,3,"rtl-cln-fee-rates",17)(16,b0,1,3,"rtl-cln-fee-rates",17)(17,U0,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&t){const e=I.$implicit,c=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,Ut,"node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||"status"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusLRBal.status===c.apiCallStatusEnum.ERROR)||"fee"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusChannels.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusFHistory.status===c.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&c.apiCallStatusPerKB.status===c.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&c.apiCallStatusPerKW.status===c.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&c.apiCallStatusPerKW.status===c.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||"status"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusLRBal.status===c.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusChannels.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusFHistory.status===c.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&c.apiCallStatusPerKB.status===c.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&c.apiCallStatusPerKW.status===c.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&c.apiCallStatusPerKW.status===c.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 ma(t,I){if(1&t&&(A.j41(0,"mat-grid-list",2),A.DNE(1,S0,18,15,"mat-grid-tile",3),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsOperator)}}function R0(t,I){1&t&&A.nrm(0,"mat-progress-bar",19)}function La(t,I){if(1&t&&A.nrm(0,"rtl-cln-node-info",20),2&t){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function xi(t,I){if(1&t&&A.nrm(0,"rtl-cln-channel-status-info",21),2&t){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function L0(t,I){if(1&t&&A.nrm(0,"rtl-cln-fee-info",22),2&t){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function St(t,I){if(1&t&&A.nrm(0,"rtl-cln-fee-rates",23),2&t){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",e.errorMessages[4])}}function mr(t,I){if(1&t&&A.nrm(0,"rtl-cln-fee-rates",23),2&t){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",e.errorMessages[4])}}function ha(t,I){if(1&t&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&t){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function Ni(t,I){if(1&t&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",25),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,R0,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,La,1,2,"rtl-cln-node-info",14)(13,xi,1,2,"rtl-cln-channel-status-info",15)(14,L0,1,2,"rtl-cln-fee-info",16)(15,St,1,3,"rtl-cln-fee-rates",17)(16,mr,1,3,"rtl-cln-fee-rates",17)(17,ha,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&t){const e=I.$implicit,c=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,Ut,"node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||"status"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusLRBal.status===c.apiCallStatusEnum.ERROR)||"fee"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusChannels.status===c.apiCallStatusEnum.ERROR||c.apiCallStatusFHistory.status===c.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&c.apiCallStatusPerKB.status===c.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&c.apiCallStatusPerKW.status===c.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&c.apiCallStatusPerKW.status===c.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||"status"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusLRBal.status===c.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(c.apiCallStatusNodeInfo.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusChannels.status===c.apiCallStatusEnum.INITIATED||c.apiCallStatusFHistory.status===c.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&c.apiCallStatusPerKB.status===c.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&c.apiCallStatusPerKW.status===c.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&c.apiCallStatusPerKW.status===c.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 G0(t,I){if(1&t&&(A.j41(0,"mat-grid-list",2),A.DNE(1,Ni,18,15,"mat-grid-tile",3),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsMerchant)}}let O0=(()=>{class t{constructor(e,c,l){this.logger=e,this.commonService=c,this.store=l,this.faBolt=B.zm_,this.faServer=B.D6w,this.faNetworkWired=B.eGi,this.faLink=B.CQO,this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=a.f7,this.userPersonaEnum=a.HW,this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.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(h.RQ).pipe((0,m.Q)(this.unSubs[0]),(0,u.E)(this.store.select(d._c))).subscribe(([e,c])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=e.apisCallStatus[0],this.apiCallStatusNodeInfo.status===a.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=c,this.information=e.information,this.fees=e.fees,this.logger.info(e)}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[1]),(0,u.E)(this.store.select(h.Al))).subscribe(([e,c])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=c.apiCallStatus,this.apiCallStatusChannels=e.apiCallStatus,this.apiCallStatusLRBal.status===a.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===a.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=e.activeChannels.length||0,this.channelsStatus.pending.channels=e.pendingChannels.length||0,this.channelsStatus.inactive.channels=e.inactiveChannels.length||0,this.channelsStatus.active.capacity=c.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=c.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=c.localRemoteBalance.inactiveBalance||0}),this.store.select(h.Ie).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessages[3]="",this.apiCallStatusFHistory=e.apiCallStatus,this.apiCallStatusFHistory.status===a.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),e.forwardingHistory&&e.forwardingHistory.listForwards&&e.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=e.forwardingHistory.listForwards.length)}),this.store.select(h.kr).pipe((0,m.Q)(this.unSubs[4])).subscribe(e=>{this.errorMessages[4]="",this.apiCallStatusPerKB=e.apiCallStatus,this.apiCallStatusPerKB.status===a.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=e.feeRatesPerKB}),this.store.select(h.RB).pipe((0,m.Q)(this.unSubs[5])).subscribe(e=>{this.errorMessages[5]="",this.apiCallStatusPerKW=e.apiCallStatus,this.apiCallStatusPerKW.status===a.wn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=e.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-network-info"]],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",3,"feeRates","feeRateStyle","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"],[1,"h-100",3,"feeRates","feeRateStyle","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(c,l){1&c&&(A.j41(0,"div",0),A.DNE(1,ma,2,1,"mat-grid-list",1)(2,G0,2,1,"mat-grid-list",1),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf",l.selNode.settings.userPersona===l.userPersonaEnum.OPERATOR),A.R7$(),A.Y8G("ngIf",l.selNode.settings.userPersona===l.userPersonaEnum.MERCHANT))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.ux,oe.e1,P.aY,r.DJ,r.sA,r.UI,M.PW,Q.RN,Q.m2,X.B_,X.NS,g.HM,ri,yt,ai,D0,yi]})}}return t})();function k0(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.activeLink=l.link)}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit,c=A.XpG();A.FS9("routerLink",e.link),A.Y8G("active",c.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let W0=(()=>{class t{constructor(e){this.router=e,this.faUserCheck=B.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B]}ngOnInit(){const e=this.links.find(c=>this.router.url.includes(c.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(c=>c instanceof un.gx)).subscribe({next:c=>{const l=this.links.find(W=>c.urlAfterRedirects.includes(W.link));this.activeLink=l?l.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-sign-verify-message"]],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,"active","routerLink","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","active","routerLink"]],template:function(c,l){if(1&c&&(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,k0,2,3,"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&c){const W=A.sdS(10);A.R7$(),A.Y8G("icon",l.faUserCheck),A.R7$(6),A.Y8G("tabPanel",W),A.R7$(),A.Y8G("ngForOf",l.links)}},dependencies:[oe.Sq,P.aY,r.DJ,r.sA,r.UI,Q.RN,Q.m2,y.Bu,y.hQ,y.Ql,un.n3,un.Wk]})}}return t})();var z0=Te(396),Ga=Te(283);function H0(t,I){if(1&t&&(A.j41(0,"mat-option",6),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e),A.R7$(),A.SpI(" ",e.addressTp," ")}}let J0=(()=>{class t{constructor(e,c){this.store=e,this.clnEffects=c,this.addressTypes=a.Ld,this.selectedAddressType=a.Ld[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,q.XT)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,In.s)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,AA.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:z0.f}}}))},0)})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(n.il),A.rXU(Ga.i))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-on-chain-receive"]],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(c,l){1&c&&(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(LA){return A.DH7(l.selectedAddressType,LA)||(l.selectedAddressType=LA),LA}),A.DNE(6,H0,2,2,"mat-option",4),A.k0s()(),A.j41(7,"div")(8,"button",5),A.bIt("click",function(){return l.onGenerateAddress()}),A.EFF(9,"Generate Address"),A.k0s()()()()),2&c&&(A.R7$(5),A.R50("ngModel",l.selectedAddressType),A.R7$(),A.Y8G("ngForOf",l.addressTypes))},dependencies:[oe.Sq,_.BC,_.vS,r.DJ,r.sA,r.UI,N.$z,KA.rl,KA.nJ,Z.VO,pA.wT]})}}return t})(),Oa=(()=>{class t{constructor(e,c){this.store=e,this.activatedRoute=c,this.sweepAll=!1,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.activatedRoute.data.pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:this.sweepAll,component:mi}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(n.il),A.rXU(un.nX))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-on-chain-send"]],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(c,l){1&c&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return l.openSendFundsModal()}),A.EFF(3),A.k0s()()()),2&c&&(A.R7$(3),A.JRh(l.sweepAll?"Sweep All":"Send Funds"))},dependencies:[r.DJ,r.sA,r.UI,N.$z]})}}return t})();var j0=Te(9172),Yi=Te(6354),Ti=Te(850),$r=Te(92);const V0=["form"],Ca=(t,I)=>({"mr-6":t,"mr-2":I});function Z0(t,I){if(1&t&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e.alias?e.alias:e.id?e.id:"")}}function q0(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Peer alias is required."),A.k0s())}function _0(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Peer not found in the list."),A.k0s())}function bi(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onSelectedPeerChanged())}),A.k0s(),A.j41(4,"mat-autocomplete",47,4),A.bIt("optionSelected",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onSelectedPeerChanged())}),A.DNE(6,Z0,2,2,"mat-option",31),A.nI1(7,"async"),A.k0s(),A.DNE(8,q0,2,0,"mat-error",21)(9,_0,2,0,"mat-error",21),A.k0s()}if(2&t){const e=A.sdS(5),c=A.XpG();A.R7$(3),A.Y8G("formControl",c.selectedPeer)("matAutocomplete",e),A.R7$(),A.Y8G("displayWith",c.displayFn),A.R7$(2),A.Y8G("ngForOf",A.bMT(7,6,c.filteredPeers)),A.R7$(2),A.Y8G("ngIf",null==c.selectedPeer.errors?null:c.selectedPeer.errors.required),A.R7$(),A.Y8G("ngIf",null==c.selectedPeer.errors?null:c.selectedPeer.errors.notfound)}}function $0(t,I){1&t&&A.eu8(0)}function Ac(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function ec(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function nc(t,I){if(1&t&&(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&t){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 Ui(t,I){if(1&t&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function rc(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Si(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Ri(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.customFeeRate,l)||(W.customFeeRate=l),A.Njj(l)}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6),A.k0s(),A.DNE(7,rc,2,0,"mat-error",21)(8,Si,2,1,"mat-error",21),A.k0s()}if(2&t){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{class t{constructor(e,c,l,W,LA,VA,cr,hn){this.logger=e,this.dialogRef=c,this.data=l,this.store=W,this.actions=LA,this.decimalPipe=VA,this.commonService=cr,this.dataService=hn,this.selectedPeer=new _.hs,this.faExclamationTriangle=B.zpE,this.faInfoCircle=B.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=a.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=a.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.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(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(l=>{this.selNode=l,this.isPrivate=!!l?.settings.unannouncedChannels}),this.actions.pipe((0,m.Q)(this.unSubs[1]),(0,K.p)(l=>l.type===a.TC.UPDATE_API_CALL_STATUS_CLN||l.type===a.TC.FETCH_CHANNELS_CLN)).subscribe(l=>{l.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&l.payload.status===a.wn.ERROR&&"SaveNewChannel"===l.payload.action&&(this.channelConnectionError=l.payload.message),l.type===a.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let e="",c="";this.sortedPeers=this.peers.sort((l,W)=>(e=l.alias?l.alias.toLowerCase():l.id?l.id.toLowerCase():"",c=W.alias?W.alias.toLowerCase():l.id?l.id.toLowerCase():"",ec?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,m.Q)(this.unSubs[2]),(0,j0.Z)(""),(0,Yi.T)(l=>"string"==typeof l?l:l.alias?l.alias:l.id),(0,Yi.T)(l=>l?this.filterPeers(l):this.sortedPeers.slice()))}filterPeers(e){return this.sortedPeers?.filter(c=>0===c.alias?.toLowerCase().indexOf(e?e.toLowerCase():""))}displayFn(e){return e&&e.alias?e.alias:e&&e.id?e.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 e=this.peers?.filter(c=>c.alias?.length===this.selectedPeer.value.length&&0===c.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===e.length&&e[0].id&&(this.selectedPubkey=e[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(e){e?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(c=>c.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:c=>{this.recommendedFee=c},error:c=>{this.logger.error(c)}}))}onUTXOSelectionChange(e){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((c,l)=>c+(l.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 e={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};e.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(e.utxos=[],this.selUTXOs.forEach(c=>e.utxos.push(c.txid+":"+c.output))),this.store.dispatch((0,q.vL)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(n.il),A.rXU(fA.En),A.rXU(oe.QX),A.rXU(C.h),A.rXU(wn.u))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-open-channel"]],viewQuery:function(c,l){if(1&c&&A.GBs(V0,7),2&c){let W;A.mGM(W=A.lsd())&&(l.form=W.first)}},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,"fxFlex"],["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(c,l){if(1&c){const W=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 A.eBV(W),A.Njj(l.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.bIt("submit",function(){return A.eBV(W),A.Njj(l.onOpenChannel())})("reset",function(){return A.eBV(W),A.Njj(l.resetData())}),A.j41(11,"div",14),A.DNE(12,bi,10,8,"mat-form-field",15),A.k0s(),A.DNE(13,$0,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(VA){return A.eBV(W),A.DH7(l.fundingAmount,VA)||(l.fundingAmount=VA),A.Njj(VA)}),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,Ac,2,0,"mat-error",21)(27,ec,2,1,"mat-error",21),A.k0s(),A.j41(28,"div",22)(29,"mat-slide-toggle",23),A.mxI("ngModelChange",function(VA){return A.eBV(W),A.DH7(l.isPrivate,VA)||(l.isPrivate=VA),A.Njj(VA)}),A.EFF(30,"Private Channel"),A.k0s()()(),A.j41(31,"mat-expansion-panel",24),A.bIt("closed",function(){return A.eBV(W),A.Njj(l.onAdvancedPanelToggle(!0))})("opened",function(){return A.eBV(W),A.Njj(l.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,nc,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(VA){return A.eBV(W),A.DH7(l.selFeeRate,VA)||(l.selFeeRate=VA),A.Njj(VA)}),A.DNE(44,Ui,2,2,"mat-option",31),A.k0s()(),A.DNE(45,Ri,9,7,"mat-form-field",32),A.k0s(),A.j41(46,"div",33)(47,"mat-checkbox",34),A.mxI("ngModelChange",function(VA){return A.eBV(W),A.DH7(l.flgMinConf,VA)||(l.flgMinConf=VA),A.Njj(VA)}),A.bIt("change",function(){return A.eBV(W),A.Njj(l.flgMinConf?l.selFeeRate=null:l.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(VA){return A.eBV(W),A.DH7(l.minConfValue,VA)||(l.minConfValue=VA),A.Njj(VA)}),A.k0s(),A.DNE(53,Li,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(VA){return A.eBV(W),A.DH7(l.selUTXOs,VA)||(l.selUTXOs=VA),A.Njj(VA)}),A.bIt("selectionChange",function(VA){return A.eBV(W),A.Njj(l.onUTXOSelectionChange(VA))}),A.j41(58,"mat-select-trigger"),A.EFF(59),A.nI1(60,"number"),A.k0s(),A.DNE(61,tc,3,5,"mat-option",31),A.k0s()(),A.j41(62,"div",39)(63,"mat-slide-toggle",40),A.mxI("ngModelChange",function(VA){return A.eBV(W),A.DH7(l.flgUseAllBalance,VA)||(l.flgUseAllBalance=VA),A.Njj(VA)}),A.bIt("change",function(){return A.eBV(W),A.Njj(l.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,ic,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,sc,1,1,"ng-template",null,3,A.C5r)}if(2&c){const W=A.sdS(20),LA=A.sdS(74);A.R7$(5),A.JRh(l.alertTitle),A.R7$(7),A.Y8G("ngIf",!l.peer&&l.peers&&l.peers.length>0),A.R7$(),A.Y8G("ngTemplateOutlet",LA),A.R7$(6),A.Y8G("step",1e3)("min",1)("max",l.totalBalance)("disabled",l.flgUseAllBalance),A.R50("ngModel",l.fundingAmount),A.R7$(3),A.Lme("Remaining: ",A.bMT(23,35,l.totalBalance-(l.fundingAmount?l.fundingAmount:0)),"",l.flgUseAllBalance?". Amount replaced by UTXO balance":"",""),A.R7$(4),A.Y8G("ngIf",(null==W.errors?null:W.errors.required)||!l.fundingAmount),A.R7$(),A.Y8G("ngIf",null==W.errors?null:W.errors.max),A.R7$(2),A.R50("ngModel",l.isPrivate),A.R7$(6),A.JRh(l.advancedTitle),A.R7$(2),A.Y8G("ngIf",l.recommendedFee.minimumFee),A.R7$(3),A.Y8G("fxFlex","customperkb"!==l.selFeeRate||l.flgMinConf?"100":"40"),A.R7$(3),A.Y8G("disabled",l.flgMinConf),A.R50("value",l.selFeeRate),A.R7$(),A.Y8G("ngForOf",l.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===l.selFeeRate&&!l.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(39,Ca,l.screenSize===l.screenSizeEnum.XS||l.screenSize===l.screenSizeEnum.SM,l.screenSize===l.screenSizeEnum.MD||l.screenSize===l.screenSizeEnum.LG||l.screenSize===l.screenSizeEnum.XL)),A.R50("ngModel",l.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",l.flgMinConf)("disabled",!l.flgMinConf),A.R50("ngModel",l.minConfValue),A.R7$(2),A.Y8G("ngIf",l.flgMinConf&&!l.minConfValue),A.R7$(4),A.R50("value",l.selUTXOs),A.R7$(2),A.Lme("",A.bMT(60,37,l.totalSelectedUTXOAmount)," Sats (",l.selUTXOs.length>1?l.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",l.utxos),A.R7$(2),A.Y8G("disabled",l.selUTXOs.length<1),A.R50("ngModel",l.flgUseAllBalance),A.R7$(4),A.Y8G("ngIf",""!==l.channelConnectionError)}},dependencies:[oe.YU,oe.Sq,oe.bT,oe.T3,_.qT,_.me,_.Q0,_.BC,_.cb,_.YS,_.VZ,_.zX,_.vS,_.cV,_.l_,P.aY,r.DJ,r.sA,r.UI,M.PW,N.$z,Q.m2,Q.MM,Ir.So,xr.GK,xr.Z2,xr.WN,D.An,CA.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,rt.q,Z.VO,Z.$2,pA.wT,NA.sG,zA.oV,Ti.$3,Ti.pN,O.N,$r.z,mA.V,oe.Jj,oe.QX],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}}return t})();function cc(t,I){if(1&t&&(A.j41(0,"span",7),A.EFF(1,"Open"),A.k0s()),2&t){const e=A.XpG();A.FS9("matBadge",e.openChannels)}}function lc(t,I){if(1&t&&(A.j41(0,"span",7),A.EFF(1,"Pending/Inactive"),A.k0s()),2&t){const e=A.XpG();A.FS9("matBadge",e.pendingChannels)}}function gc(t,I){if(1&t&&(A.j41(0,"span",7),A.EFF(1,"Active HTLCs"),A.k0s()),2&t){const e=A.XpG();A.FS9("matBadge",e.activeHTLCs)}}let uc=(()=>{class t{constructor(e,c,l,W){this.logger=e,this.store=c,this.commonService=l,this.router=W,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 o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(e=>e instanceof un.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(c=>c.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(h.kQ).pipe((0,m.Q)(this.unSubs[1]),(0,u.E)(this.store.select(d._c))).subscribe(([e,c])=>{this.selNode=c,this.information=e.information,this.totalBalance=e.balance.totalBalance||0,this.logger.info(e)}),this.store.select(h.os).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.peers=e.peers}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.utxos=this.commonService.sortAscByKey(e.utxos?.filter(c=>"confirmed"===c.status),"value")}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[4])).subscribe(e=>{this.openChannels=e.activeChannels.length||0,this.pendingChannels=e.pendingChannels.length+e.inactiveChannels.length||0;const c=[...e.activeChannels,...e.pendingChannels,...e.inactiveChannels];this.activeHTLCs=c?.reduce((l,W)=>l+(W.htlcs&&W.htlcs.length>0?W.htlcs.length:0),0),this.logger.info(e)})}onOpenChannel(){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:ka}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/cln/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(C.h),A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channels-tables"]],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(c,l){1&c&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return l.onOpenChannel()}),A.EFF(3,"Open Channel"),A.k0s()(),A.j41(4,"div",3)(5,"mat-tab-group",4),A.mxI("selectedIndexChange",function(LA){return A.DH7(l.activeLink,LA)||(l.activeLink=LA),LA}),A.bIt("selectedTabChange",function(LA){return l.onSelectedTabChange(LA)}),A.j41(6,"mat-tab"),A.DNE(7,cc,2,1,"ng-template",5),A.k0s(),A.j41(8,"mat-tab"),A.DNE(9,lc,2,1,"ng-template",5),A.k0s(),A.j41(10,"mat-tab"),A.DNE(11,gc,2,1,"ng-template",5),A.k0s()(),A.j41(12,"div",6),A.nrm(13,"router-outlet"),A.k0s()()()),2&c&&(A.R7$(5),A.R50("selectedIndex",l.activeLink))},dependencies:[r.DJ,r.sA,r.UI,N.$z,pr.k,y.ES,y.mq,y.T8,un.n3]})}}return t})();const Bc=t=>({"xs-scroll-y":t}),fc=(t,I)=>({"mt-2":t,"mt-1":I});function Gi(t,I){if(1&t&&(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&t){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 Oi(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function mc(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function hc(t,I){if(1&t){const e=A.RV6();A.j41(0,"button",27),A.bIt("copied",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onCopyChanID(l))}),A.EFF(1,"Copy Short Channel ID"),A.k0s()}if(2&t){const e=A.XpG();A.Y8G("payload",e.channel.short_channel_id)}}function Cc(t,I){if(1&t){const e=A.RV6();A.j41(0,"button",28),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onClose())}),A.EFF(1,"OK"),A.k0s()}}let Ar=(()=>{class t{constructor(e,c,l,W,LA,VA){this.dialogRef=e,this.data=c,this.logger=l,this.commonService=W,this.snackBar=LA,this.router=VA,this.faReceipt=B.Mf0,this.faUpRightFromSquare=B.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=a.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(e){this.snackBar.open("Short channel ID "+e+" copied."),this.logger.info("Copied Text: "+e)}onGoToLink(e,c){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:e,lookupValue:c}}),this.onClose()}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.funding_txid,"_blank")}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(E.gP),A.rXU(C.h),A.rXU(Ft.UG),A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-information"]],decls:91,vars:38,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(c,l){if(1&c){const W=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 A.eBV(W),A.Njj(l.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 A.eBV(W),A.Njj(l.onGoToLink("1",l.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 A.eBV(W),A.Njj(l.onGoToLink("0",l.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 A.eBV(W),A.Njj(l.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,Gi,29,16,"div",21),A.j41(84,"div",22)(85,"button",23),A.bIt("click",function(){return A.eBV(W),A.Njj(l.onShowAdvanced())}),A.DNE(86,Oi,2,0,"p",24)(87,mc,2,0,"ng-template",null,0,A.C5r),A.k0s(),A.DNE(89,hc,2,1,"button",25)(90,Cc,2,0,"button",26),A.k0s()()()()()}if(2&c){const W=A.sdS(88);A.R7$(4),A.Y8G("icon",l.faReceipt),A.R7$(5),A.Y8G("ngClass",A.eq3(33,Bc,l.screenSize===l.screenSizeEnum.XS)),A.R7$(7),A.SpI(" ",l.channel.short_channel_id," "),A.R7$(5),A.JRh(l.channel.alias),A.R7$(7),A.JRh(l.channel.channel_id),A.R7$(7),A.SpI(" ",l.channel.peer_id," "),A.R7$(7),A.SpI(" ",l.channel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+l.selNode.settings.blockExplorerUrl),A.Y8G("icon",l.faUpRightFromSquare),A.R7$(7),A.JRh(A.i5U(51,21,null==l.channel?null:l.channel.state,"_")),A.R7$(6),A.JRh(l.channel.peer_connected?"Yes":"No"),A.R7$(5),A.JRh(l.channel.private?"Yes":"No"),A.R7$(7),A.JRh(A.i5U(69,24,l.channel.to_them_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(75,27,l.channel.to_us_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(81,30,l.channel.total_msat/1e3,"1.0-0")),A.R7$(3),A.Y8G("ngIf",l.showAdvanced),A.R7$(),A.Y8G("ngClass",A.l_i(35,fc,!l.showAdvanced,l.showAdvanced)),A.R7$(2),A.Y8G("ngIf",!l.showAdvanced)("ngIfElse",W),A.R7$(3),A.Y8G("ngIf",l.showCopy),A.R7$(),A.Y8G("ngIf",!l.showCopy)}},dependencies:[oe.YU,oe.bT,P.aY,r.DJ,r.sA,r.UI,M.PW,N.$z,Q.m2,Q.MM,rt.q,zA.oV,ga.U,O.N,oe.QX,IA.VD]})}}return t})();const dt=()=>["all"],dc=t=>({"error-border":t}),ki=()=>["no_peer"],Rt=t=>({width:t}),Ec=t=>({"display-none":t});function Wi(t,I){if(1&t&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function Pc(t,I){1&t&&A.nrm(0,"mat-progress-bar",40)}function Xc(t,I){1&t&&A.nrm(0,"th",41)}function zi(t,I){if(1&t&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function wc(t,I){if(1&t&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function Et(t,I){if(1&t&&(A.j41(0,"td",42),A.DNE(1,zi,2,1,"span",43)(2,wc,2,1,"span",44),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function Kc(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Short Channel ID"),A.k0s())}function Qc(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rt,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.short_channel_id)}}function pc(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function vc(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rt,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function Hi(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function Wa(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rt,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function At(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function Ic(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rt,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function Mc(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Dc(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rt,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function yc(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function Gc(t,I){if(1&t&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null!=e&&e.connected?"Connected":"Disconnected")}}function Fc(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function xc(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function Nc(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function Yc(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function Ji(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Total (Sats)"),A.k0s())}function Tc(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 nA(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Spendable (Sats)"),A.k0s())}function R(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 V(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function p(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 x(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function S(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 eA(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Balance Score"),A.k0s())}function lA(t,I){if(1&t&&(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&t){const e=I.$implicit;A.R7$(3),A.JRh(A.bMT(4,2,e.balancedness||0)),A.R7$(2),A.FS9("value",e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0)}}function gA(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onChannelUpdate("all"))}),A.EFF(5,"Update Fee Policy"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(7,"Download CSV"),A.k0s()()()()}}function sA(t,I){if(1&t){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(l){const W=A.eBV(e).$implicit,LA=A.XpG();return A.Njj(LA.onChannelClick(W,l))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onViewRemotePolicy(l))}),A.EFF(7,"View Remote Fee"),A.k0s(),A.j41(8,"mat-option",59),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onChannelUpdate(l))}),A.EFF(9,"Update Fee Policy"),A.k0s(),A.j41(10,"mat-option",59),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onChannelClose(l))}),A.EFF(11,"Close Channel"),A.k0s()()()()}}function YA(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function jA(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No channel available."),A.k0s())}function se(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting channels..."),A.k0s())}function ee(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function ue(t,I){if(1&t&&(A.j41(0,"td",62),A.DNE(1,YA,2,0,"p",63)(2,jA,2,0,"p",63)(3,se,2,0,"p",63)(4,ee,2,1,"p",63),A.k0s()),2&t){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 Pe(t,I){if(1&t&&A.nrm(0,"tr",64),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Ec,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Qe(t,I){1&t&&A.nrm(0,"tr",65)}function Ge(t,I){1&t&&A.nrm(0,"tr",66)}let An=(()=>{class t{constructor(e,c,l,W,LA,VA){this.logger=e,this.store=c,this.rtlEffects=l,this.clnEffects=W,this.commonService=LA,this.camelCaseWithReplace=VA,this.faEye=B.pS3,this.faEyeSlash=B.k6j,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:a.md,sortBy:"alias",sortOrder:a.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new w.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=a.G,this.selFilter="",this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.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.GX).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.information=e.information,this.numPeers=e.numPeers,this.totalBalance=e.balance.totalBalance||0,this.logger.info(e)}),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=e.activeChannels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(e)}),this.store.select(d._c).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.selNode=e})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(e){this.store.dispatch((0,q.ij)({payload:{uiMessage:a.MZ.GET_REMOTE_POLICY,shortChannelID:e.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,In.s)(1)).subscribe(c=>{if(c.channels&&0===c.channels.length)return!1;let l={};l=c.channels[0].source!==this.information.id?c.channels[0]:c.channels[1];const W=[[{key:"base_fee_millisatoshi",value:l.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:a.UN.NUMBER},{key:"fee_per_millionth",value:l.fee_per_millionth,title:"Fee/Millionth",width:33,type:a.UN.NUMBER},{key:"delay",value:l.delay,title:"Delay",width:33,type:a.UN.NUMBER}]],LA="Remote policy for Channel: "+(e.alias||e.short_channel_id?e.alias&&e.short_channel_id?e.alias+" ("+e.short_channel_id+")":e.alias?e.alias:e.short_channel_id:e.channel_id);setTimeout(()=>{this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:LA,message:W}}}))},0)})}onChannelUpdate(e){"all"!==e&&"ONCHAIN"===e.state||("all"===e?(this.store.dispatch((0,AA.I1)({payload:{data:{type:a.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:a.UN.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:a.UN.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,m.Q)(this.unSubs[4])).subscribe(c=>{c&&this.store.dispatch((0,q.fy)({payload:{feebase:c[0].inputValue,feeppm:c[1].inputValue,id:"all"}}))})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:a.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"Update fee policy for Channel: "+(e.alias||e.short_channel_id?e.alias&&e.short_channel_id?e.alias+" ("+e.short_channel_id+")":e.alias?e.alias:e.short_channel_id:e.channel_id),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:a.UN.NUMBER,inputValue:""===e.fee_base_msat?0:e.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:a.UN.NUMBER,inputValue:e.fee_proportional_millionths,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,m.Q)(this.unSubs[5])).subscribe(W=>{W&&this.store.dispatch((0,q.fy)({payload:{feebase:W[0].inputValue,feeppm:W[1].inputValue,id:e.channel_id}}))})),this.applyFilter())}percentHintFunction(e){return(e/1e4).toString()+"%"}onChannelClose(e){this.store.dispatch((0,AA.I1)({payload:{data:{type:a.A$.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(e.alias||e.short_channel_id?e.alias&&e.short_channel_id?e.alias+" ("+e.short_channel_id+")":e.alias?e.alias:e.short_channel_id:e.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,m.Q)(this.unSubs[6])).subscribe(c=>{c&&this.store.dispatch((0,q.w0)({payload:{id:e.id||"",channelId:e.channel_id||"",force:!1}}))})}onChannelClick(e,c){this.store.dispatch((0,AA.xO)({payload:{data:{channel:e,selNode:this.selNode,showCopy:!0,component:Ar}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column||"","_"):this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.peer_connected?"connected":"disconnected")+(e.channel_id?e.channel_id.toLowerCase():"")+(e.short_channel_id?e.short_channel_id.toLowerCase():"")+(e.id?e.id.toLowerCase():"")+(e.alias?e.alias.toLowerCase():"")+(e.private?"private":"public")+(e.state?e.state.toLowerCase():"")+(e.funding_txid?e.funding_txid.toLowerCase():"")+(e.to_them_msat?e.to_them_msat/1e3:"")+(e.to_us_msat?e.to_us_msat/1e3:"")+(e.total_msat?e.total_msat/1e3:"")+(e.their_reserve_msat?e.their_reserve_msat/1e3:"")+(e.our_reserve_msat?e.our_reserve_msat/1e3:"")+(e.spendable_msat?e.spendable_msat/1e3:"");break;case"private":l=e?.private?"private":"public";break;case"connected":l=e?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":l=((e.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":l=((e.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":l=((e.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":l=((e.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":l=((e.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":l=((e.their_reserve_msat||0)/1e3).toString()||"";break;default:l=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"connected"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}loadChannelsTable(e){this.channels=new w.I6([...e]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(c,l)=>{switch(l){case"msatoshi_total":return c.total_msat;case"spendable_msatoshi":return c.spendable_msat;case"msatoshi_to_us":return c.to_us_msat;case"msatoshi_to_them":return c.to_them_msat;case"our_channel_reserve_satoshis":return c.our_reserve_msat;case"their_channel_reserve_satoshis":return c.their_reserve_msat;default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(PA.H),A.rXU(Ga.i),A.rXU(C.h),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Wi,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.DNE(14,Pc,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,Xc,1,0,"th",13)(20,Et,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Kc,2,0,"th",16)(23,Qc,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,pc,2,0,"th",16)(26,vc,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Hi,2,0,"th",16)(29,Wa,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,At,2,0,"th",16)(32,Ic,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,Mc,2,0,"th",16)(35,Dc,4,4,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,yc,2,0,"th",16)(38,Gc,2,1,"td",14),A.bVm(),A.qex(39,22),A.DNE(40,Fc,2,0,"th",23)(41,xc,4,4,"td",14),A.bVm(),A.qex(42,24),A.DNE(43,Nc,2,0,"th",23)(44,Yc,4,4,"td",14),A.bVm(),A.qex(45,25),A.DNE(46,Ji,2,0,"th",23)(47,Tc,4,4,"td",14),A.bVm(),A.qex(48,26),A.DNE(49,nA,2,0,"th",23)(50,R,4,4,"td",14),A.bVm(),A.qex(51,27),A.DNE(52,V,2,0,"th",23)(53,p,4,4,"td",14),A.bVm(),A.qex(54,28),A.DNE(55,x,2,0,"th",23)(56,S,4,4,"td",14),A.bVm(),A.qex(57,29),A.DNE(58,eA,2,0,"th",16)(59,lA,6,4,"td",14),A.bVm(),A.qex(60,30),A.DNE(61,gA,8,0,"th",31)(62,sA,12,0,"td",32),A.bVm(),A.qex(63,33),A.DNE(64,ue,5,4,"td",34),A.bVm(),A.DNE(65,Pe,1,3,"tr",35)(66,Qe,1,0,"tr",36)(67,Ge,1,0,"tr",37),A.k0s()(),A.nrm(68,"mat-paginator",38),A.k0s()}2&c&&(A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,dt).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(),A.Y8G("ngIf",l.apiCallStatus.status===l.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.channels)("ngClass",A.eq3(15,dc,""!==l.errorMessage)),A.R7$(49),A.Y8G("matFooterRowDef",A.lJ4(17,ki)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,CA.fg,KA.rl,KA.nJ,KA.MV,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld,oe.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 t})();const _e=["outputIdx"];function sn(t,I){if(1&t&&(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&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(4),A.JRh(A.bMT(6,2,e.dustOutputValue))}}function Bn(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Output Index required."),A.k0s())}function En(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Invalid index value."),A.k0s())}function Xn(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Fees is required."),A.k0s())}function Wn(t,I){if(1&t&&(A.j41(0,"div",28),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.bumpFeeError)}}let sr=(()=>{class t{set outputIndx(e){e&&(this.outputIdx=e)}constructor(e,c,l,W,LA,VA){this.actions=e,this.dialogRef=c,this.data=l,this.store=W,this.logger=LA,this.dataService=VA,this.faUpRightFromSquare=B.k02,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=B.jPR,this.faInfoCircle=B.iW_,this.faExclamationTriangle=B.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.bumpFeeChannel=this.data.channel,this.logger.info(this.bumpFeeChannel),this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,m.Q)(this.unSubs[1])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}}),this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid).pipe((0,m.Q)(this.unSubs[2])).subscribe({next:e=>{this.outputIndex=0===e.vout.findIndex(c=>c.value===this.bumpFeeChannel.to_us_msat)?1:0,this.dustOutputValue=e.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:e=>{this.logger.error(e)}})}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,q.XT)({payload:a.Ld[0]})),this.actions.pipe((0,K.p)(e=>e.type===a.TC.SET_NEW_ADDRESS_CLN),(0,In.s)(1)).subscribe(e=>{this.store.dispatch((0,q.aB)({payload:{destination:e.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString()+"perkb",utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,K.p)(e=>e.type===a.TC.SET_CHANNEL_TRANSACTION_RES_CLN),(0,In.s)(1)).subscribe(e=>{this.store.dispatch((0,AA.UI)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,K.p)(e=>e.type===a.TC.UPDATE_API_CALL_STATUS_CLN),(0,m.Q)(this.unSubs[3])).subscribe(e=>{e.payload.status===a.wn.ERROR&&("SetChannelTransaction"===e.payload.action||"GenerateNewAddress"===e.payload.action)&&(this.logger.error(e.payload.message),this.bumpFeeError=e.payload.message)})}onExplorerClicked(e){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+e,"_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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(fA.En),A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(n.il),A.rXU(E.gP),A.rXU(wn.u))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(c,l){if(1&c&&A.GBs(_e,5),2&c){let W;A.mGM(W=A.lsd())&&(l.outputIndx=W.first)}},decls:47,vars:19,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(c,l){if(1&c){const W=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 A.eBV(W),A.Njj(l.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 A.eBV(W),A.Njj(l.onExplorerClicked(null==l.bumpFeeChannel?null:l.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,sn,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(VA){return A.eBV(W),A.DH7(l.outputIndex,VA)||(l.outputIndex=VA),A.Njj(VA)}),A.k0s(),A.DNE(33,Bn,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(VA){return A.eBV(W),A.DH7(l.fees,VA)||(l.fees=VA),A.Njj(VA)}),A.k0s(),A.DNE(40,Xn,2,0,"mat-error",21),A.k0s()(),A.DNE(41,Wn,4,2,"div",23),A.k0s()(),A.j41(42,"div",24)(43,"button",25),A.bIt("click",function(){return A.eBV(W),A.Njj(l.resetData())}),A.EFF(44,"Clear"),A.k0s(),A.j41(45,"button",26),A.bIt("click",function(){return A.eBV(W),A.Njj(l.onBumpFee())}),A.EFF(46),A.k0s()()()()()()}if(2&c){const W=A.sdS(32);A.R7$(12),A.SpI("Bump fee for transaction id: ",null==l.bumpFeeChannel?null:l.bumpFeeChannel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+l.selNode.settings.blockExplorerUrl),A.Y8G("icon",l.faUpRightFromSquare),A.R7$(3),A.Y8G("icon",l.faInfoCircle),A.R7$(5),A.SpI("- High: ",l.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",l.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",l.recommendedFee.hourFee||"Unknown",""),A.R7$(),A.Y8G("ngIf",l.flgShowDustWarning),A.R7$(5),A.Y8G("step",1)("min",0),A.R50("ngModel",l.outputIndex),A.R7$(2),A.Y8G("ngIf",null==W.errors?null:W.errors.required),A.R7$(),A.Y8G("ngIf",null==W.errors?null:W.errors.pendingChannelOutputIndex),A.R7$(4),A.Y8G("step",1)("min",0),A.R50("ngModel",l.fees),A.R7$(2),A.Y8G("ngIf",!l.fees),A.R7$(),A.Y8G("ngIf",""!==l.bumpFeeError),A.R7$(5),A.JRh(""!==l.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[oe.bT,_.qT,_.me,_.Q0,_.BC,_.cb,_.YS,_.VZ,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,N.$z,Q.m2,Q.MM,CA.fg,KA.rl,KA.nJ,KA.TL,zA.oV,O.N,mA.V,oe.QX]})}}return t})();const Ln=()=>["all"],Cn=t=>({"error-border":t}),er=()=>["no_peer"],yn=t=>({width:t}),jn=t=>({"display-none":t});function Kn(t,I){if(1&t&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function Gn(t,I){1&t&&A.nrm(0,"mat-progress-bar",40)}function nr(t,I){1&t&&A.nrm(0,"th",41)}function dn(t,I){if(1&t&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function rr(t,I){if(1&t&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function br(t,I){if(1&t&&(A.j41(0,"td",42),A.DNE(1,dn,2,1,"span",43)(2,rr,2,1,"span",44),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function hr(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function yr(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function Nr(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function Ur(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function vr(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function Sr(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function Cr(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function zr(t,I){if(1&t&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function vn(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function Rn(t,I){if(1&t&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null!=e&&e.connected?"Connected":"Disconnected")}}function xn(t,I){1&t&&(A.j41(0,"th",48),A.EFF(1,"State"),A.k0s())}function Vn(t,I){if(1&t&&(A.j41(0,"td",51),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("ngStyle",A.eq3(2,yn,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(),A.JRh(c.CLNChannelPendingState[null==e?null:e.state])}}function zn(t,I){1&t&&(A.j41(0,"th",52),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function lr(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function za(t,I){1&t&&(A.j41(0,"th",52),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function Rr(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function Ha(t,I){1&t&&(A.j41(0,"th",52),A.EFF(1,"Total (Sats)"),A.k0s())}function Ja(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 bc(t,I){1&t&&(A.j41(0,"th",52),A.EFF(1,"Spendable (Sats)"),A.k0s())}function Uc(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 da(t,I){1&t&&(A.j41(0,"th",52),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function Lt(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 ja(t,I){1&t&&(A.j41(0,"th",52),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function Ea(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 Pa(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Gt(t,I){if(1&t){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(e);const l=A.XpG().$implicit,W=A.XpG();return A.Njj(W.onChannelClose(l))}),A.EFF(1,"Close Channel"),A.k0s()}}function Ot(t,I){if(1&t){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(e);const l=A.XpG().$implicit,W=A.XpG();return A.Njj(W.onBumpFee(l))}),A.EFF(1,"Bump Fee"),A.k0s()}}function kt(t,I){if(1&t){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(l){const W=A.eBV(e).$implicit,LA=A.XpG();return A.Njj(LA.onChannelClick(W,l))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Gt,2,0,"mat-option",60)(7,Ot,2,0,"mat-option",60),A.k0s()()()}if(2&t){const e=I.$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 Wt(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function zt(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No pending/inactive channel available."),A.k0s())}function Ht(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting pending/inactive channels..."),A.k0s())}function Jt(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function jt(t,I){if(1&t&&(A.j41(0,"td",61),A.DNE(1,Wt,2,0,"p",62)(2,zt,2,0,"p",62)(3,Ht,2,0,"p",62)(4,Jt,2,1,"p",62),A.k0s()),2&t){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(t,I){if(1&t&&A.nrm(0,"tr",63),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,jn,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function ji(t,I){1&t&&A.nrm(0,"tr",64)}function Vi(t,I){1&t&&A.nrm(0,"tr",65)}let Zi=(()=>{class t{constructor(e,c,l,W,LA){this.logger=e,this.store=c,this.rtlEffects=l,this.commonService=W,this.camelCaseWithReplace=LA,this.faEye=B.pS3,this.faEyeSlash=B.k6j,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:a.md,sortBy:"alias",sortOrder:a.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new w.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=a.G,this.selFilter="",this.CLNChannelPendingState=a.Zb,this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(h.GX).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.information=e.information,this.numPeers=e.numPeers,this.totalBalance=e.balance.totalBalance||0,this.logger.info(e)}),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...e.pendingChannels,...e.inactiveChannels],this.channelsData=this.channelsData.sort((c,l)=>this.CLNChannelPendingState[c.state||""]>=this.CLNChannelPendingState[l.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(e)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onBumpFee(e){this.store.dispatch((0,AA.xO)({payload:{data:{channel:e,component:sr}}}))}onChannelClick(e,c){this.store.dispatch((0,AA.xO)({payload:{data:{channel:e,showCopy:!0,component:Ar}}}))}onChannelClose(e){this.store.dispatch((0,AA.I1)({payload:{data:{type:a.A$.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(e.alias||e.short_channel_id?e.alias&&e.short_channel_id?e.alias+" ("+e.short_channel_id+")":e.alias?e.alias:e.short_channel_id:e.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,m.Q)(this.unSubs[3])).subscribe(c=>{c&&this.store.dispatch((0,q.w0)({payload:{id:e.id,channelId:e.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column||"","_"):this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.peer_connected?"connected":"disconnected")+(e.channel_id?e.channel_id.toLowerCase():"")+(e.short_channel_id?e.short_channel_id.toLowerCase():"")+(e.id?e.id.toLowerCase():"")+(e.alias?e.alias.toLowerCase():"")+(e.private?"private":"public")+(e.state&&this.CLNChannelPendingState[e.state]?this.CLNChannelPendingState[e.state].toLowerCase():"")+(e.funding_txid?e.funding_txid.toLowerCase():"")+(e.to_us_msat?e.to_us_msat:"")+(e.to_them_msat?e.to_them_msat/1e3:"")+(e.total_msat?e.total_msat/1e3:"")+(e.their_reserve_msat?e.their_reserve_msat/1e3:"")+(e.our_reserve_msat?e.our_reserve_msat/1e3:"")+(e.spendable_msat?e.spendable_msat/1e3:"");break;case"private":l=e?.private?"private":"public";break;case"connected":l=e?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":l=((e.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":l=((e.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":l=((e.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":l=((e.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":l=((e.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":l=((e.their_reserve_msat||0)/1e3).toString()||"";break;case"state":l=e?.state?this.CLNChannelPendingState[e?.state]:"";break;default:l=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"connected"===this.selFilterBy||"state"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}loadChannelsTable(e){this.channels=new w.I6([...e]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(c,l)=>{switch(l){case"msatoshi_total":return c.total_msat;case"spendable_msatoshi":return c.spendable_msat;case"msatoshi_to_us":return c.to_us_msat;case"msatoshi_to_them":return c.to_them_msat;case"our_channel_reserve_satoshis":return c.our_reserve_msat;case"their_channel_reserve_satoshis":return c.their_reserve_msat;case"state":return this.CLNChannelPendingState[c.state];default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(PA.H),A.rXU(C.h),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Kn,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.DNE(14,Gn,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,nr,1,0,"th",13)(20,br,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,hr,2,0,"th",16)(23,yr,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,Nr,2,0,"th",16)(26,Ur,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,vr,2,0,"th",16)(29,Sr,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,Cr,2,0,"th",16)(32,zr,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,vn,2,0,"th",16)(35,Rn,2,1,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,xn,2,0,"th",16)(38,Vn,2,4,"td",22),A.bVm(),A.qex(39,23),A.DNE(40,zn,2,0,"th",24)(41,lr,4,4,"td",14),A.bVm(),A.qex(42,25),A.DNE(43,za,2,0,"th",24)(44,Rr,4,4,"td",14),A.bVm(),A.qex(45,26),A.DNE(46,Ha,2,0,"th",24)(47,Ja,4,4,"td",14),A.bVm(),A.qex(48,27),A.DNE(49,bc,2,0,"th",24)(50,Uc,4,4,"td",14),A.bVm(),A.qex(51,28),A.DNE(52,da,2,0,"th",24)(53,Lt,4,4,"td",14),A.bVm(),A.qex(54,29),A.DNE(55,ja,2,0,"th",24)(56,Ea,4,4,"td",14),A.bVm(),A.qex(57,30),A.DNE(58,Pa,6,0,"th",31)(59,kt,8,2,"td",32),A.bVm(),A.qex(60,33),A.DNE(61,jt,5,4,"td",34),A.bVm(),A.DNE(62,Bt,1,3,"tr",35)(63,ji,1,0,"tr",36)(64,Vi,1,0,"tr",37),A.k0s()(),A.nrm(65,"mat-paginator",38),A.k0s()}2&c&&(A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Ln).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(),A.Y8G("ngIf",l.apiCallStatus.status===l.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.channels)("ngClass",A.eq3(15,Cn,""!==l.errorMessage)),A.R7$(46),A.Y8G("matFooterRowDef",A.lJ4(17,er)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld,oe.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return t})();const qi=()=>["all"],Va=t=>({"error-border":t}),nl=()=>["no_peer"],Oc=t=>({"mr-0":t}),Sc=t=>({width:t}),rl=t=>({"display-none":t});function tl(t,I){if(1&t&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function al(t,I){1&t&&A.nrm(0,"mat-progress-bar",35)}function il(t,I){1&t&&A.nrm(0,"th",36)}function ol(t,I){if(1&t&&A.nrm(0,"span",40),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Oc,e.screenSize===e.screenSizeEnum.XS))}}function sl(t,I){if(1&t&&A.nrm(0,"span",41),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Oc,e.screenSize===e.screenSizeEnum.XS))}}function cl(t,I){if(1&t&&(A.j41(0,"td",37),A.DNE(1,ol,1,3,"span",38)(2,sl,1,3,"span",39),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.connected),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.connected))}}function ll(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Alias"),A.k0s())}function gl(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function ul(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"ID"),A.k0s())}function Bl(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function fl(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Network Address"),A.k0s())}function ml(t,I){1&t&&(A.j41(0,"span"),A.EFF(1,","),A.nrm(2,"br"),A.k0s())}function hl(t,I){if(1&t&&(A.j41(0,"span",44),A.EFF(1),A.DNE(2,ml,3,0,"span",46),A.k0s()),2&t){const e=I.$implicit,c=I.last;A.R7$(),A.JRh(e),A.R7$(),A.Y8G("ngIf",!c)}}function Cl(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",43),A.DNE(2,hl,3,2,"span",45),A.k0s()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(),A.Y8G("ngForOf",null==e?null:e.netaddr)}}function dl(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function El(t,I){if(1&t){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(e);const l=A.XpG().$implicit,W=A.XpG();return A.Njj(W.onPeerDetach(l))}),A.EFF(1,"Disconnect"),A.k0s()}}function Pl(t,I){if(1&t){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(e);const l=A.XpG().$implicit,W=A.XpG();return A.Njj(W.onConnectPeer(l))}),A.EFF(1,"Reconnect"),A.k0s()}}function Xl(t,I){if(1&t){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(l){const W=A.eBV(e).$implicit,LA=A.XpG();return A.Njj(LA.onPeerClick(W,l))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",50),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onOpenChannel(l))}),A.EFF(7,"Open Channel"),A.k0s(),A.DNE(8,El,2,0,"mat-option",52)(9,Pl,2,0,"mat-option",52),A.k0s()()()}if(2&t){const e=I.$implicit;A.R7$(8),A.Y8G("ngIf",e.connected),A.R7$(),A.Y8G("ngIf",!e.connected)}}function wl(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No connected peer."),A.k0s())}function Kl(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting peers..."),A.k0s())}function Ql(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function pl(t,I){if(1&t&&(A.j41(0,"td",53),A.DNE(1,wl,2,0,"p",46)(2,Kl,2,0,"p",46)(3,Ql,2,1,"p",46),A.k0s()),2&t){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 vl(t,I){if(1&t&&A.nrm(0,"tr",54),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,rl,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function Il(t,I){1&t&&A.nrm(0,"tr",55)}function Ml(t,I){1&t&&A.nrm(0,"tr",56)}let Dl=(()=>{class t{constructor(e,c,l,W,LA,VA){this.logger=e,this.store=c,this.rtlEffects=l,this.actions=W,this.commonService=LA,this.camelCaseWithReplace=VA,this.faUsers=B.gdJ,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:a.md,sortBy:"alias",sortOrder:a.oi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new w.I6([]),this.utxos=[],this.information={},this.availableBalance=0,this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(h.kQ).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.information=e.information,this.availableBalance=e.balance.totalBalance||0}),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.os).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=e.peers||[],this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(e)}),this.store.select(h.Al).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.utxos=this.commonService.sortAscByKey(e.utxos?.filter(c=>"confirmed"===c.status),"value")}),this.actions.pipe((0,m.Q)(this.unSubs[4]),(0,K.p)(e=>e.type===a.TC.SET_PEERS_CLN)).subscribe(e=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(e,c){this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:e.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",showQRName:"Public Key",showQRField:e.id,message:[[{key:"id",value:e.id,title:"Public Key",width:100}],[{key:"netaddr",value:e.netaddr,title:"Address",width:100}],[{key:"alias",value:e.alias,title:"Alias",width:50},{key:"connected",value:e.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(e){this.store.dispatch((0,AA.xO)({payload:{data:{message:{peer:e.id?e:null,information:this.information,balance:this.availableBalance},component:wi}}}))}onOpenChannel(e){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:e,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:ka}}}))}onPeerDetach(e){this.store.dispatch((0,AA.I1)({payload:{data:{type:a.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(e.alias?e.alias:e.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,m.Q)(this.unSubs[5])).subscribe(l=>{l&&this.store.dispatch((0,q.ed)({payload:{id:e.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.peers.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=JSON.stringify(e).toLowerCase();break;case"connected":l=e?.connected?"connected":"disconnected";break;case"netaddr":l=e.netaddr?e.netaddr.reduce((W,LA)=>W+LA," "):"";break;default:l=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"connected"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}loadPeersTable(e){this.peers=new w.I6([...e]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(c,l)=>{if("netaddr"===l){if(c.netaddr&&c.netaddr[0]){const W=c.netaddr[0].toString().split(".");return W[0]?+W[0]:c.netaddr[0]}return""}return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(PA.H),A.rXU(fA.En),A.rXU(C.h),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-peers"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"button",4),A.bIt("click",function(){return A.eBV(W),A.Njj(l.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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(16,"perfect-scrollbar"),A.DNE(17,tl,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(22,"div",15),A.DNE(23,al,1,0,"mat-progress-bar",16),A.j41(24,"table",17,1),A.qex(26,18),A.DNE(27,il,1,0,"th",19)(28,cl,3,2,"td",20),A.bVm(),A.qex(29,21),A.DNE(30,ll,2,0,"th",22)(31,gl,4,4,"td",20),A.bVm(),A.qex(32,23),A.DNE(33,ul,2,0,"th",22)(34,Bl,4,4,"td",20),A.bVm(),A.qex(35,24),A.DNE(36,fl,2,0,"th",22)(37,Cl,3,4,"td",20),A.bVm(),A.qex(38,25),A.DNE(39,dl,6,0,"th",26)(40,Xl,10,2,"td",27),A.bVm(),A.qex(41,28),A.DNE(42,pl,4,3,"td",29),A.bVm(),A.DNE(43,vl,1,3,"tr",30)(44,Il,1,0,"tr",31)(45,Ml,1,0,"tr",32),A.k0s()(),A.nrm(46,"mat-paginator",33),A.k0s()()}2&c&&(A.R7$(8),A.Y8G("icon",l.faUsers),A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,qi).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(2),A.Y8G("ngIf",l.apiCallStatus.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.peers)("ngClass",A.eq3(16,Va,""!==l.errorMessage)),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(18,nl)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.qT,_.me,_.BC,_.cb,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return t})();const yl=["queryRoutesForm"],Fl=t=>({"overflow-auto error-border":t,"overflow-auto":!0}),kc=t=>({width:t});function xl(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Destination pubkey is required."),A.k0s())}function Nl(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Yl(t,I){1&t&&A.nrm(0,"mat-progress-bar",36)}function Tl(t,I){1&t&&(A.j41(0,"th",37),A.EFF(1,"ID"),A.k0s())}function bl(t,I){if(1&t&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,kc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function Ul(t,I){1&t&&(A.j41(0,"th",37),A.EFF(1,"Alias"),A.k0s())}function Sl(t,I){if(1&t&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,kc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function Rl(t,I){1&t&&(A.j41(0,"th",37),A.EFF(1,"Channel"),A.k0s())}function Ll(t,I){if(1&t&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.channel)}}function Gl(t,I){1&t&&(A.j41(0,"th",37),A.EFF(1,"Direction"),A.k0s())}function Ol(t,I){if(1&t&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.direction)}}function kl(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"Delay"),A.k0s())}function Wl(t,I){if(1&t&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.SpI("",A.bMT(3,1,null==e?null:e.delay)," ")}}function zl(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"Amount (Sats)"),A.k0s())}function Hl(t,I){if(1&t&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,(null==e?null:e.amount_msat)/1e3))}}function Jl(t,I){1&t&&(A.j41(0,"th",43)(1,"div",44),A.EFF(2,"Actions"),A.k0s()())}function jl(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",45)(1,"button",46),A.bIt("click",function(l){const W=A.eBV(e).$implicit,LA=A.XpG();return A.Njj(LA.onHopClick(W,l))}),A.EFF(2,"View Info"),A.k0s()()}}function Vl(t,I){1&t&&A.nrm(0,"tr",47)}function Zl(t,I){1&t&&A.nrm(0,"tr",48)}let ql=(()=>{class t{constructor(e,c,l){this.store=e,this.clnEffects=c,this.commonService=l,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:a.md,sortBy:"id",sortOrder:a.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new w.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=B.TBz,this.faExclamationTriangle=B.zpE,this.screenSize="",this.screenSizeEnum=a.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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(e=>{this.qrHops.data=[],e.route&&e.route.length&&e.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new w.I6([...e.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(c,l)=>c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,q.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(e,c){this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:e.id,title:"ID",width:100,type:a.UN.STRING}],[{key:"channel",value:e.channel,title:"Channel",width:50,type:a.UN.STRING},{key:"alias",value:e.alias,title:"Peer Alias",width:50,type:a.UN.STRING}],[{key:"amount_msat",value:e.amount_msat,title:"Amount (mSat)",width:34,type:a.UN.NUMBER},{key:"direction",value:e.direction,title:"Direction",width:33,type:a.UN.STRING},{key:"delay",value:e.delay,title:"Delay",width:33,type:a.UN.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(n.il),A.rXU(Ga.i),A.rXU(C.h))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-query-routes"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(yl,7)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.form=W.first)}},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(c,l){if(1&c){const W=A.RV6();A.j41(0,"div",3)(1,"form",4,0),A.bIt("ngSubmit",function(){A.eBV(W);const VA=A.sdS(2);return A.Njj(VA.form.valid&&l.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(VA){return A.eBV(W),A.DH7(l.destinationPubkey,VA)||(l.destinationPubkey=VA),A.Njj(VA)}),A.k0s(),A.DNE(12,xl,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(VA){return A.eBV(W),A.DH7(l.amount,VA)||(l.amount=VA),A.Njj(VA)}),A.k0s(),A.DNE(17,Nl,2,0,"mat-error",9),A.k0s(),A.j41(18,"div",12)(19,"button",13),A.bIt("click",function(){return A.eBV(W),A.Njj(l.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,Yl,1,0,"mat-progress-bar",20),A.j41(30,"table",21,2),A.qex(32,22),A.DNE(33,Tl,2,0,"th",23)(34,bl,4,4,"td",24),A.bVm(),A.qex(35,25),A.DNE(36,Ul,2,0,"th",23)(37,Sl,4,4,"td",24),A.bVm(),A.qex(38,26),A.DNE(39,Rl,2,0,"th",23)(40,Ll,2,1,"td",24),A.bVm(),A.qex(41,27),A.DNE(42,Gl,2,0,"th",23)(43,Ol,2,1,"td",24),A.bVm(),A.qex(44,28),A.DNE(45,kl,2,0,"th",29)(46,Wl,4,3,"td",24),A.bVm(),A.qex(47,30),A.DNE(48,zl,2,0,"th",29)(49,Hl,4,3,"td",24),A.bVm(),A.qex(50,31),A.DNE(51,Jl,3,0,"th",32)(52,jl,3,0,"td",33),A.bVm(),A.DNE(53,Vl,1,0,"tr",34)(54,Zl,1,0,"tr",35),A.k0s()()()}2&c&&(A.R7$(4),A.Y8G("icon",l.faExclamationTriangle),A.R7$(6),A.R50("ngModel",l.destinationPubkey),A.R7$(2),A.Y8G("ngIf",!l.destinationPubkey),A.R7$(4),A.Y8G("step",1e3)("min",0),A.R50("ngModel",l.amount),A.R7$(),A.Y8G("ngIf",!l.amount),A.R7$(8),A.Y8G("icon",l.faRoute),A.R7$(4),A.Y8G("ngIf",!0===l.flgLoading[0]),A.R7$(),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.qrHops)("ngClass",A.eq3(15,Fl,"error"===l.flgLoading[0])),A.R7$(23),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns))},dependencies:[oe.YU,oe.bT,oe.B3,_.qT,_.me,_.Q0,_.BC,_.cb,_.YS,_.VZ,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,KA.TL,g.HM,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.KS,w.$R,w.YZ,w.NB,cA.Ld,mA.V,oe.QX]})}}return t})();function _l(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}let $l=(()=>{class t{constructor(e,c,l){this.dataService=e,this.snackBar=c,this.logger=l,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new o.B,new o.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.signedMessage=this.message,this.signature=e.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(e){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+e)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(wn.u),A.rXU(Ft.UG),A.rXU(E.gP))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-sign"]],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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.message,VA)||(l.message=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.onMessageChange())}),A.k0s(),A.DNE(7,_l,2,0,"mat-error",5),A.k0s(),A.j41(8,"div",6)(9,"button",7),A.bIt("click",function(){return A.eBV(W),A.Njj(l.resetData())}),A.EFF(10,"Clear Field"),A.k0s(),A.j41(11,"button",8),A.bIt("click",function(){return A.eBV(W),A.Njj(l.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(VA){return A.eBV(W),A.Njj(l.onCopyField(VA))}),A.EFF(21,"Copy Signature"),A.k0s()()()()}2&c&&(A.R7$(6),A.R50("ngModel",l.message),A.R7$(),A.Y8G("ngIf",!l.message),A.R7$(11),A.JRh(l.signature),A.R7$(2),A.Y8G("payload",l.signature))},dependencies:[oe.bT,_.qT,_.me,_.BC,_.cb,_.YS,_.vS,_.cV,r.DJ,r.sA,r.UI,N.$z,CA.fg,KA.rl,KA.nJ,KA.TL,rt.q,ga.U,O.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}}return t})();function Ag(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}function eg(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Signature is required."),A.k0s())}function ng(t,I){1&t&&(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 rg(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Pubkey Used"),A.k0s())}function tg(t,I){if(1&t&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&t){const e=A.XpG(2);A.R7$(2),A.JRh(null==e.verifyRes?null:e.verifyRes.pubkey)}}function ag(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",21)(1,"button",22),A.bIt("copied",function(l){A.eBV(e);const W=A.XpG(2);return A.Njj(W.onCopyField(l))}),A.EFF(2,"Copy Pubkey"),A.k0s()()}if(2&t){const e=A.XpG(2);A.R7$(),A.Y8G("payload",null==e.verifyRes?null:e.verifyRes.pubkey)}}function ig(t,I){if(1&t&&(A.j41(0,"div",15),A.nrm(1,"mat-divider",16),A.j41(2,"div",17),A.DNE(3,rg,2,0,"p",6),A.k0s(),A.DNE(4,tg,3,1,"div",18)(5,ag,3,1,"div",19),A.k0s()),2&t){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 og=(()=>{class t{constructor(e,c,l){this.dataService=e,this.snackBar=c,this.logger=l,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new o.B,new o.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(e=>{this.verifyRes=e,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(e){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+e)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(wn.u),A.rXU(Ft.UG),A.rXU(E.gP))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-verify"]],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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.message,VA)||(l.message=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.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(VA){return A.eBV(W),A.DH7(l.signature,VA)||(l.signature=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.onChange())}),A.k0s(),A.DNE(13,eg,2,0,"mat-error",6),A.k0s(),A.DNE(14,ng,4,0,"p",8),A.j41(15,"div",9)(16,"button",10),A.bIt("click",function(){return A.eBV(W),A.Njj(l.resetData())}),A.EFF(17,"Clear Fields"),A.k0s(),A.j41(18,"button",11),A.bIt("click",function(){return A.eBV(W),A.Njj(l.onVerify())}),A.EFF(19,"Verify"),A.k0s()(),A.DNE(20,ig,6,3,"div",12),A.k0s()()}2&c&&(A.R7$(6),A.R50("ngModel",l.message),A.R7$(),A.Y8G("ngIf",!l.message),A.R7$(4),A.R50("ngModel",l.signature),A.R7$(2),A.Y8G("ngIf",!l.signature),A.R7$(),A.Y8G("ngIf",l.showVerifyStatus&&!l.verifyRes.verified),A.R7$(6),A.Y8G("ngIf",l.showVerifyStatus&&l.verifyRes.verified))},dependencies:[oe.bT,_.qT,_.me,_.BC,_.cb,_.YS,_.vS,_.cV,r.DJ,r.sA,r.UI,N.$z,D.An,CA.fg,KA.rl,KA.nJ,KA.TL,rt.q,ga.U,O.N]})}}return t})();const sg=()=>["all"],cg=()=>["no_event"],Rc=t=>({width:t}),lg=t=>({"display-none":t});function gg(t,I){if(1&t&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function ug(t,I){if(1&t&&(A.j41(0,"mat-option",14),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function Bg(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilterBy,l)||(W.selFilterBy=l),A.Njj(l)}),A.bIt("selectionChange",function(){A.eBV(e);const l=A.XpG();return l.selFilter="",A.Njj(l.applyFilter())}),A.j41(7,"perfect-scrollbar"),A.DNE(8,ug,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilter,l)||(W.selFilter=l),A.Njj(l)}),A.bIt("input",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())})("keyup",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())}),A.k0s()()()()}if(2&t){const e=A.XpG();A.R7$(6),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(3,sg).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function fg(t,I){1&t&&A.nrm(0,"mat-progress-bar",39)}function mg(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"Received Time"),A.k0s())}function hg(t,I){if(1&t&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function Cg(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"Resolved Time"),A.k0s())}function dg(t,I){if(1&t&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function Eg(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"In Channel ID"),A.k0s())}function Pg(t,I){if(1&t&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function Xg(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"In Channel"),A.k0s())}function wg(t,I){if(1&t&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function Kg(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"Out Channel ID"),A.k0s())}function Qg(t,I){if(1&t&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function pg(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"Out Channel"),A.k0s())}function vg(t,I){if(1&t&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function Ig(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"Payment Hash"),A.k0s())}function Mg(t,I){if(1&t&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Dg(t,I){1&t&&(A.j41(0,"th",44),A.EFF(1,"Amount In (Sats)"),A.k0s())}function yg(t,I){if(1&t&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 Fg(t,I){1&t&&(A.j41(0,"th",44),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function xg(t,I){if(1&t&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 Ng(t,I){1&t&&(A.j41(0,"th",44),A.EFF(1,"Fee (mSat)"),A.k0s())}function Yg(t,I){if(1&t&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee)," ")}}function Tg(t,I){if(1&t&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee_msat)," ")}}function bg(t,I){if(1&t&&(A.j41(0,"td",41),A.DNE(1,Yg,3,3,"span",46)(2,Tg,3,3,"span",46),A.k0s()),2&t){const e=I.$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 Ug(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG(2);return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Sg(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(l){const W=A.eBV(e).$implicit,LA=A.XpG(2);return A.Njj(LA.onForwardingEventClick(W,l))}),A.EFF(2,"View Info"),A.k0s()()}}function Rg(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No forwarding history available."),A.k0s())}function Lg(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting forwarding history..."),A.k0s())}function Gg(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Og(t,I){if(1&t&&(A.j41(0,"td",53),A.DNE(1,Rg,2,0,"p",54)(2,Lg,2,0,"p",54)(3,Gg,2,1,"p",54),A.k0s()),2&t){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 kg(t,I){if(1&t&&A.nrm(0,"tr",55),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,lg,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function Wg(t,I){1&t&&A.nrm(0,"tr",56)}function zg(t,I){1&t&&A.nrm(0,"tr",57)}function Hg(t,I){if(1&t&&(A.j41(0,"div",15),A.DNE(1,fg,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,hg,3,4,"td",20),A.bVm(),A.qex(7,21),A.DNE(8,Cg,2,0,"th",19)(9,dg,3,4,"td",20),A.bVm(),A.qex(10,22),A.DNE(11,Eg,2,0,"th",19)(12,Pg,2,1,"td",20),A.bVm(),A.qex(13,23),A.DNE(14,Xg,2,0,"th",19)(15,wg,4,4,"td",20),A.bVm(),A.qex(16,24),A.DNE(17,Kg,2,0,"th",19)(18,Qg,2,1,"td",20),A.bVm(),A.qex(19,25),A.DNE(20,pg,2,0,"th",19)(21,vg,4,4,"td",20),A.bVm(),A.qex(22,26),A.DNE(23,Ig,2,0,"th",19)(24,Mg,4,4,"td",20),A.bVm(),A.qex(25,27),A.DNE(26,Dg,2,0,"th",28)(27,yg,4,4,"td",20),A.bVm(),A.qex(28,29),A.DNE(29,Fg,2,0,"th",28)(30,xg,4,4,"td",20),A.bVm(),A.qex(31,30),A.DNE(32,Ng,2,0,"th",28)(33,bg,3,2,"td",20),A.bVm(),A.qex(34,31),A.DNE(35,Ug,6,0,"th",32)(36,Sg,3,0,"td",33),A.bVm(),A.qex(37,34),A.DNE(38,Og,4,3,"td",35),A.bVm(),A.DNE(39,kg,1,3,"tr",36)(40,Wg,1,0,"tr",37)(41,zg,1,0,"tr",38),A.k0s()()),2&t){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,cg)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function Jg(t,I){if(1&t&&A.nrm(0,"mat-paginator",58),2&t){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Wc=(()=>{class t{constructor(e,c,l,W,LA){this.logger=e,this.commonService=c,this.store=l,this.datePipe=W,this.camelCaseWithReplace=LA,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:a.md,sortBy:"received_time",sortOrder:a.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new w.I6([]),this.totalForwardedTransactions=0,this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:a.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=e.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),e.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),e.selFilter&&!e.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=e.pageSettings.find(c=>c.pageId===this.pageId)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.pageId)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.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,In.s)(1)).subscribe(e=>{e.cln.apisCallStatus.FetchForwardingHistoryS.status===a.wn.UN_INITIATED&&!e.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,q.uK)({payload:{status:a.xk.SETTLED}}))}),this.store.select(h.Ie).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&e.forwardingHistory.listForwards&&(this.totalForwardedTransactions=e.forwardingHistory.totalForwards||0,this.successfulEvents=e.forwardingHistory.listForwards||[],this.successfulEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(e))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(e,c){const l=[[{key:"status",value:"Settled",title:"Status",width:50,type:a.UN.STRING},{key:"fee",value:e.fee_msat,title:"Fee (mSats)",width:50,type:a.UN.NUMBER}],[{key:"received_time",value:e.received_time,title:"Received Time",width:50,type:a.UN.DATE_TIME},{key:"resolved_time",value:e.resolved_time,title:"Resolved Time",width:50,type:a.UN.DATE_TIME}],[{key:"in_channel",value:e.in_channel_alias,title:"Inbound Channel",width:50,type:a.UN.STRING},{key:"out_channel",value:e.out_channel_alias,title:"Outbound Channel",width:50,type:a.UN.STRING}],[{key:"in_msatoshi",value:e.in_msat,title:"In (mSats)",width:50,type:a.UN.NUMBER},{key:"out_msatoshi",value:e.out_msat,title:"Out (mSats)",width:50,type:a.UN.NUMBER}]];e.payment_hash&&l.unshift([{key:"payment_hash",value:e.payment_hash,title:"Payment Hash",width:100,type:a.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"Event Information",message:l}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(e){const c=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.received_time?this.datePipe.transform(new Date(1e3*e.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(e.resolved_time?this.datePipe.transform(new Date(1e3*e.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(e.in_channel?e.in_channel.toLowerCase()+" ":"")+(e.out_channel?e.out_channel.toLowerCase()+" ":"")+(e.in_channel_alias?e.in_channel_alias.toLowerCase()+" ":"")+(e.out_channel_alias?e.out_channel_alias.toLowerCase()+" ":"")+(e.in_msat?+e.in_msat/1e3+" ":"")+(e.out_msat?+e.out_msat/1e3+" ":"")+(e.fee_msat?e.fee_msat+" ":"");break;case"received_time":case"resolved_time":l=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":l=(+(e.fee_msat||0)).toString()||"";break;case"in_msatoshi":l=(+(e.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":l=(+(e.out_msat||0)/1e3).toString()||"";break;default:l=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 l.includes(c)}}loadForwardingEventsTable(e){this.forwardingHistoryEvents=new w.I6([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(c,l)=>{switch(l){case"in_msatoshi":return c.in_msat;case"out_msatoshi":return c.out_msat;case"fee":return c.fee_msat;default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(oe.vh),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){1&c&&(A.j41(0,"div",1),A.DNE(1,gg,2,1,"div",2)(2,Bg,13,4,"div",3)(3,Hg,42,8,"div",4)(4,Jg,1,3,"mat-paginator",5),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf",""!==l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,v.iy,cA.ZF,cA.Ld,oe.QX,oe.vh]})}}return t})();const jg=()=>["all"],Vg=()=>["no_event"],zc=t=>({width:t}),Zg=t=>({"display-none":t});function qg(t,I){if(1&t&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function _g(t,I){if(1&t&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function $g(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilterBy,l)||(W.selFilterBy=l),A.Njj(l)}),A.bIt("selectionChange",function(){A.eBV(e);const l=A.XpG();return l.selFilter="",A.Njj(l.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,_g,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilter,l)||(W.selFilter=l),A.Njj(l)}),A.bIt("input",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())})("keyup",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())}),A.k0s()()()()()}if(2&t){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,jg).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function Au(t,I){1&t&&A.nrm(0,"mat-progress-bar",41)}function eu(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Received Time"),A.k0s())}function nu(t,I){if(1&t&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function ru(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Resolved Time"),A.k0s())}function tu(t,I){if(1&t&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function au(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"In Channel ID"),A.k0s())}function iu(t,I){if(1&t&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function ou(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"In Channel"),A.k0s())}function su(t,I){if(1&t&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,zc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function cu(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Out Channel ID"),A.k0s())}function lu(t,I){if(1&t&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function gu(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Out Channel"),A.k0s())}function uu(t,I){if(1&t&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,zc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function Bu(t,I){1&t&&(A.j41(0,"th",46),A.EFF(1,"Amount In (Sats)"),A.k0s())}function fu(t,I){if(1&t&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 mu(t,I){1&t&&(A.j41(0,"th",46),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function hu(t,I){if(1&t&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 Cu(t,I){1&t&&(A.j41(0,"th",46),A.EFF(1,"Fee (mSat)"),A.k0s())}function du(t,I){if(1&t&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee,"1.0-0")," ")}}function Eu(t,I){if(1&t&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee_msat,"1.0-0")," ")}}function Pu(t,I){if(1&t&&(A.j41(0,"td",43),A.DNE(1,du,3,4,"span",48)(2,Eu,3,4,"span",48),A.k0s()),2&t){const e=I.$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 Xu(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG(2);return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function wu(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",53)(1,"button",54),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG(2);return A.Njj(W.onFailedEventClick(l))}),A.EFF(2,"View Info"),A.k0s()()}}function Ku(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function Qu(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function pu(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function vu(t,I){if(1&t&&(A.j41(0,"td",55),A.DNE(1,Ku,2,0,"p",56)(2,Qu,2,0,"p",56)(3,pu,2,1,"p",56),A.k0s()),2&t){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 Iu(t,I){if(1&t&&A.nrm(0,"tr",57),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Zg,(null==e.failedForwardingEvents?null:e.failedForwardingEvents.data)&&(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)>0))}}function Mu(t,I){1&t&&A.nrm(0,"tr",58)}function Du(t,I){1&t&&A.nrm(0,"tr",59)}function yu(t,I){if(1&t&&(A.j41(0,"div",18),A.DNE(1,Au,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,eu,2,0,"th",22)(6,nu,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,ru,2,0,"th",22)(9,tu,3,4,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,au,2,0,"th",22)(12,iu,2,1,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,ou,2,0,"th",22)(15,su,4,4,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,cu,2,0,"th",22)(18,lu,2,1,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,gu,2,0,"th",22)(21,uu,4,4,"td",23),A.bVm(),A.qex(22,29),A.DNE(23,Bu,2,0,"th",30)(24,fu,4,4,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,mu,2,0,"th",30)(27,hu,4,4,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,Cu,2,0,"th",30)(30,Pu,3,2,"td",23),A.bVm(),A.qex(31,33),A.DNE(32,Xu,6,0,"th",34)(33,wu,3,0,"td",35),A.bVm(),A.qex(34,36),A.DNE(35,vu,4,3,"td",37),A.bVm(),A.DNE(36,Iu,1,3,"tr",38)(37,Mu,1,0,"tr",39)(38,Du,1,0,"tr",40),A.k0s()()),2&t){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,Vg)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function Fu(t,I){if(1&t&&A.nrm(0,"mat-paginator",60),2&t){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let xu=(()=>{class t{constructor(e,c,l,W,LA){this.logger=e,this.commonService=c,this.store=l,this.datePipe=W,this.camelCaseWithReplace=LA,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:a.md,sortBy:"received_time",sortOrder:a.oi.DESCENDING},this.faExclamationTriangle=B.zpE,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new w.I6([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,q.uK)({payload:{status:a.xk.FAILED}})),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.Dv).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=e.failedForwardingHistory.totalForwards||0,this.failedEvents=e.failedForwardingHistory.listForwards||[],this.failedEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(e)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(e){const c=[[{key:"received_time",value:e.received_time,title:"Received Time",width:50,type:a.UN.DATE_TIME},{key:"resolved_time",value:e.resolved_time,title:"Resolved Time",width:50,type:a.UN.DATE_TIME}],[{key:"in_channel_alias",value:e.in_channel_alias,title:"Inbound Channel",width:50,type:a.UN.STRING},{key:"out_channel_alias",value:e.out_channel_alias,title:"Outbound Channel",width:50,type:a.UN.STRING}],[{key:"in_msatoshi",value:e.in_msat,title:"Amount In (mSats)",width:33,type:a.UN.NUMBER},{key:"out_msatoshi",value:e.out_msat,title:"Amount Out (mSats)",width:33,type:a.UN.NUMBER},{key:"fee",value:e.fee_msat,title:"Fee (mSats)",width:34,type:a.UN.NUMBER}]];e.payment_hash&&c?.unshift([{key:"payment_hash",value:e.payment_hash,title:"Payment Hash",width:100,type:a.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"Failed Event Information",message:c}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.received_time?this.datePipe.transform(new Date(1e3*e.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(e.resolved_time?this.datePipe.transform(new Date(1e3*e.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(e.in_channel?e.in_channel.toLowerCase()+" ":"")+(e.out_channel?e.out_channel.toLowerCase()+" ":"")+(e.in_channel_alias?e.in_channel_alias.toLowerCase()+" ":"")+(e.out_channel_alias?e.out_channel_alias.toLowerCase()+" ":"")+(e.fee_msat?e.fee_msat+" ":"")+(e.in_msat?+e.in_msat/1e3+" ":"")+(e.out_msat?+e.out_msat/1e3+" ":"")+(e.fee_msat?e.fee_msat+" ":"");break;case"received_time":case"resolved_time":l=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":l=(e.fee_msat||0)?.toString()||"";break;case"in_msatoshi":l=(+(e.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":l=(+(e.out_msat||0)/1e3).toString()||"";break;default:l=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 l.includes(c)}}loadFailedEventsTable(e){this.failedForwardingEvents=new w.I6([...e]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(c,l)=>{switch(l){case"in_msatoshi":return c.in_msat;case"out_msatoshi":return c.out_msat;case"fee":return c.fee_msat;default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(oe.vh),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-failed-history"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){1&c&&(A.j41(0,"div",1),A.DNE(1,qg,2,1,"div",2)(2,$g,18,5,"div",3)(3,yu,39,8,"div",4)(4,Fu,1,3,"mat-paginator",5),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf",""!==l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,v.iy,cA.ZF,cA.Ld,oe.QX,oe.vh]})}}return t})();const Nu=["tableIn"],Yu=["tableOut"],Tu=["paginatorIn"],bu=["paginatorOut"],Uu=(t,I)=>({"mt-2":t,"mt-1":I}),Su=()=>["no_incoming_event"],Ru=t=>({"mt-2":t}),Lu=()=>["no_outgoing_event"],_i=t=>({width:t}),Hc=t=>({"display-none":t});function Gu(t,I){if(1&t&&(A.j41(0,"div",7),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function Ou(t,I){1&t&&A.nrm(0,"mat-progress-bar",34)}function ku(t,I){1&t&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function Wu(t,I){if(1&t&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,_i,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function zu(t,I){1&t&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function Hu(t,I){if(1&t&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,_i,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(e.alias)}}function Ju(t,I){1&t&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function ju(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function Vu(t,I){1&t&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function Zu(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 qu(t,I){1&t&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function _u(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 $u(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No incoming routing peer available."),A.k0s())}function AB(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting incoming routing peers..."),A.k0s())}function eB(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function nB(t,I){if(1&t&&(A.j41(0,"td",41),A.DNE(1,$u,2,0,"p",42)(2,AB,2,0,"p",42)(3,eB,2,1,"p",42),A.k0s()),2&t){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 rB(t,I){if(1&t&&A.nrm(0,"tr",43),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Hc,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function tB(t,I){1&t&&A.nrm(0,"tr",44)}function aB(t,I){1&t&&A.nrm(0,"tr",45)}function iB(t,I){1&t&&A.nrm(0,"mat-progress-bar",34)}function oB(t,I){1&t&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function sB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,_i,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function cB(t,I){1&t&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function lB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,_i,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(e.alias)}}function gB(t,I){1&t&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function uB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function BB(t,I){1&t&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function fB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 mB(t,I){1&t&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function hB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 CB(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No outgoing routing peer available."),A.k0s())}function dB(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting outgoing routing peers..."),A.k0s())}function EB(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function PB(t,I){if(1&t&&(A.j41(0,"td",41),A.DNE(1,CB,2,0,"p",42)(2,dB,2,0,"p",42)(3,EB,2,1,"p",42),A.k0s()),2&t){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 XB(t,I){if(1&t&&A.nrm(0,"tr",43),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Hc,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function wB(t,I){1&t&&A.nrm(0,"tr",44)}function KB(t,I){1&t&&A.nrm(0,"tr",45)}function QB(t,I){if(1&t&&(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,Ou,1,0,"mat-progress-bar",14),A.j41(8,"table",15,0),A.qex(10,16),A.DNE(11,ku,2,0,"th",17)(12,Wu,4,4,"td",18),A.bVm(),A.qex(13,19),A.DNE(14,zu,2,0,"th",17)(15,Hu,4,4,"td",18),A.bVm(),A.qex(16,20),A.DNE(17,Ju,2,0,"th",21)(18,ju,4,3,"td",18),A.bVm(),A.qex(19,22),A.DNE(20,Vu,2,0,"th",21)(21,Zu,4,4,"td",18),A.bVm(),A.qex(22,23),A.DNE(23,qu,2,0,"th",21)(24,_u,4,4,"td",18),A.bVm(),A.qex(25,24),A.DNE(26,nB,4,3,"td",25),A.bVm(),A.DNE(27,rB,1,3,"tr",26)(28,tB,1,0,"tr",27)(29,aB,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,iB,1,0,"mat-progress-bar",14),A.j41(39,"table",32,2),A.qex(41,16),A.DNE(42,oB,2,0,"th",17)(43,sB,4,4,"td",18),A.bVm(),A.qex(44,19),A.DNE(45,cB,2,0,"th",17)(46,lB,4,4,"td",18),A.bVm(),A.qex(47,20),A.DNE(48,gB,2,0,"th",21)(49,uB,4,3,"td",18),A.bVm(),A.qex(50,22),A.DNE(51,BB,2,0,"th",21)(52,fB,4,4,"td",18),A.bVm(),A.qex(53,23),A.DNE(54,mB,2,0,"th",21)(55,hB,4,4,"td",18),A.bVm(),A.qex(56,33),A.DNE(57,PB,4,3,"td",25),A.bVm(),A.DNE(58,XB,1,3,"tr",26)(59,wB,1,0,"tr",27)(60,KB,1,0,"tr",28),A.k0s(),A.nrm(61,"mat-paginator",29,3),A.k0s()()()),2&t){const e=A.XpG();A.R7$(2),A.Y8G("ngClass",A.l_i(22,Uu,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,Su)),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,Ru,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,Lu)),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 pB=(()=>{class t{constructor(e,c,l,W){this.logger=e,this.commonService=c,this.store=l,this.camelCaseWithReplace=W,this.eventsData=[],this.selFilter="",this.nodePageDefs=a.Jd,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:a.md,sortBy:"total_fee",sortOrder:a.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new w.I6([]),this.routingPeersOutgoing=new w.I6([]),this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:a.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=e.eventsData.currentValue,this.successfulEvents=this.eventsData,e.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}ngOnInit(){this.store.pipe((0,In.s)(1)).subscribe(e=>{e.cln.apisCallStatus.FetchForwardingHistoryS.status===a.wn.UN_INITIATED&&!e.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,q.uK)({payload:{status:a.xk.SETTLED}}))}),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:a.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(h.Ie).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=e.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(e))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(e,c)=>JSON.stringify(e).toLowerCase().includes(c),this.routingPeersOutgoing.filterPredicate=(e,c)=>JSON.stringify(e).toLowerCase().includes(c)}loadRoutingPeersTable(e){if(e.length>0){const c=this.groupRoutingPeers(e);this.routingPeersIncoming=new w.I6(c[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new w.I6(c[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new w.I6([]),this.routingPeersOutgoing=new w.I6([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(e){const c=[],l=[];return e.forEach(W=>{const LA=c?.find(cr=>cr.channel_id===W.in_channel),VA=l?.find(cr=>cr.channel_id===W.out_channel);LA?(LA.events++,LA.total_amount=+LA.total_amount+ +(W.in_msat||0),LA.total_fee=+(W.in_msat||0)-+(W.out_msat||0)+ +LA.total_fee):c.push({channel_id:W.in_channel,alias:W.in_channel_alias,events:1,total_amount:+(W.in_msat||0),total_fee:+(W.in_msat||0)-+(W.out_msat||0)}),VA?(VA.events++,VA.total_amount=+VA.total_amount+ +(W.out_msat||0),VA.total_fee=+(W.in_msat||0)-+(W.out_msat||0)+ +VA.total_fee):l.push({channel_id:W.out_channel,alias:W.out_channel_alias,events:1,total_amount:+(W.out_msat||0),total_fee:+(W.in_msat||0)-+(W.out_msat||0)})}),[this.commonService.sortDescByKey(c,"total_fee"),this.commonService.sortDescByKey(l,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(c,l){if(1&c&&(A.GBs(Nu,5,b.B4),A.GBs(Yu,5,b.B4),A.GBs(Tu,5),A.GBs(bu,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sortIn=W.first),A.mGM(W=A.lsd())&&(l.sortOut=W.first),A.mGM(W=A.lsd())&&(l.paginatorIn=W.first),A.mGM(W=A.lsd())&&(l.paginatorOut=W.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:v.xX,useValue:(0,a.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(c,l){1&c&&(A.j41(0,"div",4),A.DNE(1,Gu,2,1,"div",5)(2,QB,63,29,"div",6),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf",""!==l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage))},dependencies:[oe.YU,oe.bT,oe.B3,r.DJ,r.sA,r.UI,M.PW,M.eI,g.HM,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,v.iy,cA.Ld,oe.QX]})}}return t})();const vB=()=>["all"],IB=t=>({"error-border":t}),MB=()=>["no_channel"],Jc=t=>({width:t}),DB=t=>({"display-none":t});function yB(t,I){if(1&t&&(A.j41(0,"mat-option",33),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function FB(t,I){1&t&&A.nrm(0,"mat-progress-bar",34)}function xB(t,I){1&t&&(A.j41(0,"th",35),A.EFF(1,"Amount (Sats)"),A.k0s())}function NB(t,I){if(1&t&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,(null==e?null:e.amount_msat)/1e3,"1.0-2")," ")}}function YB(t,I){if(1&t&&(A.qex(0),A.DNE(1,NB,3,4,"span",39),A.bVm()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function TB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,YB,2,1,"ng-container",38),A.k0s()),2&t){const e=I.$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 bB(t,I){1&t&&(A.j41(0,"th",35),A.EFF(1,"Alias/Direction"),A.k0s())}function UB(t,I){if(1&t&&(A.j41(0,"span",37),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.direction)," ")}}function SB(t,I){if(1&t&&(A.qex(0),A.DNE(1,UB,3,3,"span",41),A.bVm()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function RB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,SB,2,1,"ng-container",38),A.k0s()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(null==e?null:e.alias),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function LB(t,I){1&t&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"HTLC ID"),A.k0s()())}function GB(t,I){if(1&t&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.id)," ")}}function OB(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,GB,3,3,"span",39),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function kB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,OB,2,1,"span",38),A.k0s()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(null==e?null:e.id),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function WB(t,I){1&t&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"Expiry"),A.k0s()())}function zB(t,I){if(1&t&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.expiry,"1.0-0")," ")}}function HB(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,zB,3,4,"span",39),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function JB(t,I){if(1&t&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,HB,2,1,"span",38),A.k0s()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function jB(t,I){1&t&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"State"),A.k0s()())}function VB(t,I){if(1&t&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"camelcaseWithReplace"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.state,"_")," ")}}function ZB(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,VB,3,4,"span",39),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function qB(t,I){if(1&t&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,ZB,2,1,"span",38),A.k0s()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function _B(t,I){1&t&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Local Trimmed"),A.k0s()())}function $B(t,I){if(1&t&&(A.j41(0,"span",40),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",null!=e&&e.local_trimmed?"Yes":"No"," ")}}function A1(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,$B,2,1,"span",39),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function e1(t,I){if(1&t&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,A1,2,1,"span",38),A.k0s()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function n1(t,I){1&t&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Payment Hash"),A.k0s()())}function r1(t,I){if(1&t&&(A.j41(0,"span",48)(1,"span",49),A.EFF(2),A.k0s()()),2&t){const e=I.$implicit,c=A.XpG(3);A.Y8G("ngStyle",A.eq3(2,Jc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function t1(t,I){if(1&t&&(A.j41(0,"span"),A.DNE(1,r1,3,4,"span",47),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function a1(t,I){if(1&t&&(A.j41(0,"td",44)(1,"span",45)(2,"span",46),A.EFF(3),A.k0s()(),A.DNE(4,t1,2,1,"span",38),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Jc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function i1(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function o1(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",58)(1,"button",59),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG(2).$implicit,LA=A.XpG();return A.Njj(LA.onHTLCClick(l,W))}),A.EFF(2),A.k0s()()}if(2&t){const e=I.index;A.R7$(2),A.SpI("View ",e+1,"")}}function s1(t,I){if(1&t&&(A.j41(0,"div"),A.DNE(1,o1,3,1,"div",57),A.k0s()),2&t){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function c1(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",54)(1,"span",55)(2,"button",56),A.bIt("click",function(){const l=A.eBV(e).$implicit;return A.Njj(l.is_expanded=!l.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,s1,2,1,"div",38),A.k0s()}if(2&t){const e=I.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function l1(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No active htlc available."),A.k0s())}function g1(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting active htlcs..."),A.k0s())}function u1(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function B1(t,I){if(1&t&&(A.j41(0,"td",60),A.DNE(1,l1,2,0,"p",38)(2,g1,2,0,"p",38)(3,u1,2,1,"p",38),A.k0s()),2&t){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 f1(t,I){if(1&t&&A.nrm(0,"tr",61),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,DB,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function m1(t,I){1&t&&A.nrm(0,"tr",62)}function h1(t,I){1&t&&A.nrm(0,"tr",63)}let C1=(()=>{class t{constructor(e,c,l,W){this.logger=e,this.commonService=c,this.store=l,this.camelCaseWithReplace=W,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:a.md,sortBy:"expiry",sortOrder:a.oi.DESCENDING},this.channels=new w.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.BM).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"");const c=[...e.activeChannels,...e.pendingChannels,...e.inactiveChannels];this.channelsJSONArr=c?.filter(l=>l.htlcs&&l.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(e,c){const l=[[{key:"alias",value:c.alias,title:"Alias",width:100,type:a.UN.STRING}],[{key:"amount_msat",value:(e.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:a.UN.NUMBER},{key:"direction",value:this.commonService.titleCase(e.direction||""),title:"Direction",width:50,type:a.UN.STRING}],[{key:"expiry",value:e.expiry,title:"Expiry",width:50,type:a.UN.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(e.state||"","_"),title:"State",width:50,type:a.UN.STRING}],[{key:"id",value:e.id,title:"HTLC ID",width:50,type:a.UN.STRING},{key:"local_trimmed",value:e.local_trimmed,title:"Local Trimmed",width:50,type:a.UN.BOOLEAN}],[{key:"payment_hash",value:e.payment_hash,title:"Payment Hash",width:100,type:a.UN.STRING}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"HTLC Information",message:l}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column||"","_"):this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.alias?e.alias.toLowerCase():"")+e.htlcs?.map(W=>JSON.stringify(W).toLowerCase()+(W.local_trimmed?" yes ":" no "));break;case"direction":l=e.htlcs?.map(W=>W.direction+" ").toString()||"";break;case"id":l=e.htlcs?.map(W=>W.id+" ").toString()||"";break;case"expiry":l=e.htlcs?.map(W=>W.expiry+" ").toString()||"";break;case"state":l=e.htlcs?.map(W=>this.camelCaseWithReplace.transform(W.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":l=e.htlcs?.map(W=>W.payment_hash+" ").toString()||"";break;case"local_trimmed":l=e.htlcs?.map(W=>W.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":l=e.htlcs?.map(W=>(W.amount_msat||0)/1e3)?.toString()||"";break;default:l=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 l.includes(c)}}loadHTLCsTable(e){this.channels=new w.I6(e?[...e]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(c,l)=>{switch(l){case"amount_msat":return this.commonService.sortByKey(c.htlcs,l,"number",this.sort?.direction),c.htlcs&&c.htlcs.length?c.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(c.htlcs,l,"string",this.sort?.direction),c;case"direction":return this.commonService.sortByKey(c.htlcs,l,"string",this.sort?.direction),c.alias?c.alias:c.id?c.id:null;case"expiry":return this.commonService.sortByKey(c.htlcs,l,"number",this.sort?.direction),c;case"local_trimmed":return this.commonService.sortByKey(c.htlcs,l,"boolean",this.sort?.direction),c;default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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((l,W)=>l.concat(W.htlcs?W.htlcs:W),[])}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,yB,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(14,"div",9),A.DNE(15,FB,1,0,"mat-progress-bar",10),A.j41(16,"table",11,0),A.qex(18,12),A.DNE(19,xB,2,0,"th",13)(20,TB,4,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,bB,2,0,"th",13)(23,RB,4,2,"td",14),A.bVm(),A.qex(24,16),A.DNE(25,LB,3,0,"th",17)(26,kB,4,2,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,WB,3,0,"th",17)(29,JB,4,2,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,jB,3,0,"th",20)(32,qB,4,2,"td",21),A.bVm(),A.qex(33,22),A.DNE(34,_B,3,0,"th",20)(35,e1,4,2,"td",21),A.bVm(),A.qex(36,23),A.DNE(37,n1,3,0,"th",20)(38,a1,5,5,"td",21),A.bVm(),A.qex(39,24),A.DNE(40,i1,6,0,"th",25)(41,c1,5,2,"td",26),A.bVm(),A.qex(42,27),A.DNE(43,B1,4,3,"td",28),A.bVm(),A.DNE(44,f1,1,3,"tr",29)(45,m1,1,0,"tr",30)(46,h1,1,0,"tr",31),A.k0s()(),A.nrm(47,"mat-paginator",32),A.k0s()}2&c&&(A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,vB).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(2),A.Y8G("ngIf",l.apiCallStatus.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.channels)("ngClass",A.eq3(15,IB,""!==l.errorMessage)),A.R7$(28),A.Y8G("matFooterRowDef",A.lJ4(17,MB)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,v.iy,cA.ZF,cA.Ld,oe.QX,oe.PV,IA.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 t})();function d1(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",8),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.activeLink=l.link)}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit,c=A.XpG();A.FS9("routerLink",e.link),A.Y8G("active",c.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let E1=(()=>{class t{constructor(e){this.router=e,this.faChartBar=B.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const e=this.links.find(c=>this.router.url.includes(c.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(c=>c instanceof un.gx)).subscribe({next:c=>{const l=this.links.find(W=>c.urlAfterRedirects.includes(W.link));this.activeLink=l?l.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-reports"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(c,l){if(1&c&&(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,d1,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),A.k0s()()()),2&c){const W=A.sdS(10);A.R7$(),A.Y8G("icon",l.faChartBar),A.R7$(6),A.Y8G("tabPanel",W),A.R7$(),A.Y8G("ngForOf",l.links)}},dependencies:[oe.Sq,P.aY,r.DJ,r.sA,Q.RN,Q.m2,y.Bu,y.hQ,y.Ql,un.n3,un.Wk]})}}return t})();var jc=Te(1001),Vc=Te(6064),Zc=Te(4655);function P1(t,I){1&t&&(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 X1(t,I){if(1&t&&(A.j41(0,"div",17),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function w1(t,I){if(1&t&&(A.j41(0,"div",18),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&t){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 K1(t,I){1&t&&(A.j41(0,"div",15),A.EFF(1,"No routing report for the selected period"),A.k0s())}function Q1(t,I){if(1&t&&(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&t){const e=I.model,c=A.XpG(2);A.R7$(2),A.SpI("Events: ",A.bMT(3,2,(c.selReportBy===c.reportBy.EVENTS?e.value:e.extra.totalEvents)||0),""),A.R7$(3),A.SpI("Fee: ",A.i5U(6,4,(c.selReportBy===c.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"),"")}}function p1(t,I){if(1&t){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical",19),A.bIt("select",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onChartBarSelected(l))})("mouseup",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onChartMouseUp(l))}),A.DNE(1,Q1,7,7,"ng-template",null,0,A.C5r),A.k0s()}if(2&t){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 v1(t,I){if(1&t&&A.nrm(0,"rtl-cln-forwarding-history",21),2&t){const e=A.XpG();A.Y8G("pageId","reports")("tableId","routing")("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let I1=(()=>{class t{constructor(e,c,l,W){this.logger=e,this.commonService=c,this.store=l,this.dataService=W,this.reportPeriod=a.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=a.aR,this.selReportBy=a.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=a.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===a.f7.XS||this.screenSize===a.f7.SM),this.store.pipe((0,In.s)(1)).subscribe(e=>{e.cln.apisCallStatus.FetchForwardingHistoryS.status===a.wn.UN_INITIATED&&!e.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,q.uK)({payload:{status:a.xk.SETTLED}}))}),this.store.select(h.Ie).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{e.forwardingHistory.status===a.xk.SETTLED&&(this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===a.wn.COMPLETED&&(this.events=e.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(e))}),this.commonService.containerSizeUpdated.pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case a.f7.MD:this.screenPaddingX=e.width/10;break;case a.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(e,c){const l=Math.round(e.getTime()/1e3),W=Math.round(c.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(LA=>{LA.received_time&&LA.received_time>=l&&LA.received_time0&&"ngx-charts"===e.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(e){this.eventFilterValue=this.reportPeriod===a.rs[1]?e.name+"/"+this.startDate.getFullYear():e.name.toString().padStart(2,"0")+"/"+a.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(e){const c=Math.round(e.getTime()/1e3),l=[];if(this.totalFeeMsat=0,this.reportPeriod===a.rs[1]){for(let W=0;W<12;W++)l.push({name:a.KR[W].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(W=>{const LA=W.received_time?new Date(1e3*+W.received_time).getMonth():12;return l[LA].extra.totalEvents=l[LA].extra.totalEvents+1,l[LA].value=l[LA].value+ +(W.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(W.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let W=0;W{const LA=W.received_time?Math.floor((+W.received_time-c)/this.secondsInADay):0;return l[LA].extra.totalEvents=l[LA].extra.totalEvents+1,l[LA].value=l[LA].value+ +(W.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(W.fee_msat||0),this.filteredEventsBySelectedPeriod})}return l}prepareEventsReport(e){const c=Math.round(e.getTime()/1e3),l=[];if(this.totalFeeMsat=0,this.reportPeriod===a.rs[1]){for(let W=0;W<12;W++)l.push({name:a.KR[W].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(W=>{const LA=W.received_time?new Date(1e3*+W.received_time).getMonth():12;return l[LA].value=l[LA].value+1,l[LA].extra.totalFees=l[LA].extra.totalFees+ +(W.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(W.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let W=0;W{const LA=W.received_time?Math.floor((+W.received_time-c)/this.secondsInADay):0;return l[LA].value=l[LA].value+1,l[LA].extra.totalFees=l[LA].extra.totalFees+ +(W.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(W.fee_msat||0),this.filteredEventsBySelectedPeriod})}return l}onSelectionChange(e){const c=e.selDate.getMonth(),l=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===a.rs[1]?(this.startDate=new Date(l,0,1,0,0,0),this.endDate=new Date(l,11,31,23,59,59)):(this.startDate=new Date(l,c,1,0,0,0),this.endDate=new Date(l,c,this.getMonthDays(c,l),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(e,c){return 1===e&&c%4==0?a.KR[e].days+1:a.KR[e].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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(wn.u))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-routing-report"]],hostBindings:function(c,l){1&c&&A.bIt("mouseup",function(LA){return l.onChartMouseUp(LA)})},decls:19,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 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"],[3,"pageId","tableId","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"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(c,l){1&c&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(LA){return l.onSelectionChange(LA)}),A.k0s(),A.j41(2,"div",3)(3,"mat-radio-group",4),A.mxI("ngModelChange",function(LA){return A.DH7(l.selReportBy,LA)||(l.selReportBy=LA),LA}),A.bIt("change",function(){return l.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,P1,4,0,"div",9)(12,X1,2,1,"div",10)(13,w1,4,8,"div",11)(14,K1,2,0,"div",9),A.j41(15,"div",12),A.DNE(16,p1,3,11,"ngx-charts-bar-vertical",13),A.k0s(),A.j41(17,"div",12),A.DNE(18,v1,1,4,"rtl-cln-forwarding-history",14),A.k0s()()()),2&c&&(A.R7$(3),A.R50("ngModel",l.selReportBy),A.R7$(3),A.FS9("value",l.reportBy.FEES),A.R7$(2),A.FS9("value",l.reportBy.EVENTS),A.R7$(3),A.Y8G("ngIf",(null==l.apiCallStatus?null:l.apiCallStatus.status)===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(null==l.apiCallStatus?null:l.apiCallStatus.status)===l.apiCallStatusEnum.ERROR),A.R7$(),A.Y8G("ngIf",(null==l.apiCallStatus?null:l.apiCallStatus.status)===l.apiCallStatusEnum.COMPLETED&&l.routingReportData.length>0&&l.filteredEventsBySelectedPeriod.length>0),A.R7$(),A.Y8G("ngIf",(null==l.apiCallStatus?null:l.apiCallStatus.status)===l.apiCallStatusEnum.COMPLETED&&(l.routingReportData.length<=0||l.filteredEventsBySelectedPeriod.length<=0)),A.R7$(2),A.Y8G("ngIf",l.routingReportData.length>0&&l.filteredEventsBySelectedPeriod.length>0),A.R7$(2),A.Y8G("ngIf",l.filteredEventsBySelectedPeriod&&l.filteredEventsBySelectedPeriod.length>0))},dependencies:[oe.bT,_.BC,_.vS,r.DJ,r.sA,r.UI,g.HM,wr.VT,wr._g,Vc.L8,Zc.m,Wc,oe.QX],data:{animation:[jc.q]}})}}return t})();var M1=Te(5085);function D1(t,I){if(1&t&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&t){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 y1(t,I){if(1&t&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&t){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 F1(t,I){if(1&t&&(A.j41(0,"div",9),A.DNE(1,D1,4,7,"div",10)(2,y1,4,7,"div",10),A.k0s()),2&t){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 x1(t,I){1&t&&(A.j41(0,"div",12),A.EFF(1,"No transactions report for the selected period"),A.k0s())}function N1(t,I){if(1&t&&(A.j41(0,"span",14),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&t){const e=I.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 Y1(t,I){if(1&t){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical-2d",13),A.bIt("select",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onChartBarSelected(l))})("mouseup",function(l){A.eBV(e);const W=A.XpG();return A.Njj(W.onChartMouseUp(l))}),A.DNE(1,N1,4,9,"ng-template",null,0,A.C5r),A.k0s()}if(2&t){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 T1(t,I){if(1&t&&A.nrm(0,"rtl-transactions-report-table",15),2&t){const e=A.XpG();A.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let b1=(()=>{class t{constructor(e,c,l){this.logger=e,this.commonService=c,this.store=l,this.scrollRanges=a.rs,this.reportPeriod=a.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:a.md,sortBy:"date",sortOrder:a.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=a.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===a.f7.XS||this.screenSize===a.f7.SM),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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(h.KT).pipe((0,m.Q)(this.unSubs[1]),(0,u.E)(this.store.select(h.Pj))).subscribe(([e,c])=>{this.payments=e.payments,this.invoices=c.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(e=>{switch(this.screenSize){case a.f7.MD:this.screenPaddingX=e.width/10;break;case a.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(e){"svg"===e.srcElement.tagName&&e.srcElement.classList.length>0&&"ngx-charts"===e.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(e){this.transactionFilterValue=this.reportPeriod===a.rs[1]?e.series+"/"+this.startDate.getFullYear():e.series.toString().padStart(2,"0")+"/"+a.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(e,c){const l=Math.round(e.getTime()/1e3),W=Math.round(c.getTime()/1e3),LA=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const VA=this.payments?.filter(hn=>"complete"===hn.status&&hn.created_at&&hn.created_at>=l&&hn.created_at"paid"===hn.status&&hn.paid_at&&hn.paid_at>=l&&hn.paid_at{const gr=new Date(1e3*(hn.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(hn.amount_sent_msat||0),LA[gr].series[0].value=LA[gr].series[0].value+(hn.amount_sent_msat||0)/1e3,LA[gr].series[0].extra.total=LA[gr].series[0].extra.total+1,this.transactionsReportSummary}),cr?.map(hn=>{const gr=new Date(1e3*+(hn.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(hn.amount_received_msat||0),LA[gr].series[1].value=LA[gr].series[1].value+(hn.amount_received_msat||0)/1e3,LA[gr].series[1].extra.total=LA[gr].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let hn=0;hn{const gr=Math.floor((+(hn.created_at||0)-l)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(hn.amount_sent_msat||0),LA[gr].series[0].value=LA[gr].series[0].value+(hn.amount_sent_msat||0)/1e3,LA[gr].series[0].extra.total=LA[gr].series[0].extra.total+1,this.transactionsReportSummary}),cr?.map(hn=>{const gr=Math.floor((+(hn.paid_at||0)-l)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(hn.amount_received_msat||0),LA[gr].series[1].value=LA[gr].series[1].value+(hn.amount_received_msat||0)/1e3,LA[gr].series[1].extra.total=LA[gr].series[1].extra.total+1,this.transactionsReportSummary})}return LA}prepareTableData(){return this.transactionsReportData?.reduce((e,c)=>c.series[0].extra.total>0||c.series[1].extra.total>0?e.concat({date:c.date,amount_paid:c.series[0].value,num_payments:c.series[0].extra.total,amount_received:c.series[1].value,num_invoices:c.series[1].extra.total}):e,[])}onSelectionChange(e){const c=e.selDate.getMonth(),l=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===a.rs[1]?(this.startDate=new Date(l,0,1,0,0,0),this.endDate=new Date(l,11,31,23,59,59)):(this.startDate=new Date(l,c,1,0,0,0),this.endDate=new Date(l,c,this.getMonthDays(c,l),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(e,c){return 1===e&&c%4==0?a.KR[e].days+1:a.KR[e].days}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(c,l){1&c&&A.bIt("mouseup",function(LA){return l.onChartMouseUp(LA)})},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(c,l){1&c&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(LA){return l.onSelectionChange(LA)}),A.k0s(),A.j41(2,"div",3),A.DNE(3,F1,3,3,"div",4)(4,x1,2,0,"div",5),A.j41(5,"div",6),A.DNE(6,Y1,3,13,"ngx-charts-bar-vertical-2d",7),A.k0s(),A.j41(7,"div",6),A.DNE(8,T1,1,5,"rtl-transactions-report-table",8),A.k0s()()()),2&c&&(A.R7$(3),A.Y8G("ngIf",l.transactionsNonZeroReportData.length>0),A.R7$(),A.Y8G("ngIf",l.transactionsNonZeroReportData.length<=0),A.R7$(2),A.Y8G("ngIf",l.transactionsNonZeroReportData.length>0),A.R7$(2),A.Y8G("ngIf",l.transactionsNonZeroReportData.length>0))},dependencies:[oe.bT,r.DJ,r.sA,r.UI,Vc.Dl,Zc.m,M1.T,oe.QX],data:{animation:[jc.q]}})}}return t})();var On=Te(7186),U1=Te(13);function S1(t,I){if(1&t){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.activeLink=l.link)}),A.EFF(1),A.k0s()}if(2&t){const e=I.$implicit,c=A.XpG();A.FS9("routerLink",e.link),A.Y8G("active",c.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let R1=(()=>{class t{constructor(e){this.router=e,this.faSearch=B.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const e=this.links.find(c=>this.router.url.includes(c.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,m.Q)(this.unSubs[0]),(0,K.p)(c=>c instanceof un.gx)).subscribe({next:c=>{const l=this.links.find(W=>c.urlAfterRedirects.includes(W.link));this.activeLink=l?l.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(un.Ix))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-graph"]],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,"active","routerLink","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","active","routerLink"]],template:function(c,l){if(1&c&&(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,S1,2,3,"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&c){const W=A.sdS(10);A.R7$(),A.Y8G("icon",l.faSearch),A.R7$(6),A.Y8G("tabPanel",W),A.R7$(),A.Y8G("ngForOf",l.links)}},dependencies:[oe.Sq,P.aY,r.DJ,r.sA,r.UI,Q.RN,Q.m2,y.Bu,y.hQ,y.Ql,un.n3,un.Wk]})}}return t})();var L1=Te(2643),G1=Te(7235);function O1(t,I){if(1&t&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.offerError)}}function k1(t,I){if(1&t&&(A.j41(0,"div",21),A.nrm(1,"fa-icon",22),A.DNE(2,O1,2,1,"span",23),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.offerError)}}let W1=(()=>{class t{constructor(e,c,l,W,LA,VA){this.dialogRef=e,this.data=c,this.store=l,this.decimalPipe=W,this.commonService=LA,this.actions=VA,this.faExclamationTriangle=B.zpE,this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=a.md,this.offerError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(h.mH).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.information=e,this.issuer=this.information.alias}),this.actions.pipe((0,m.Q)(this.unSubs[2]),(0,K.p)(e=>e.type===a.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(e=>{e.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===e.payload.action&&(e.payload.status===a.wn.ERROR&&(this.offerError=e.payload.message),e.payload.status===a.wn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="";const e=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,q.y0)({payload:{amount:e,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,a.BQ.SATS,a.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:e=>{this.offerValueHint="= "+this.decimalPipe.transform(e.OTHER,a.k.OTHER)+" "+e.unit},error:e=>{this.offerValueHint="Conversion Error: "+e}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(n.il),A.rXU(oe.QX),A.rXU(C.h),A.rXU(fA.En))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-create-offer"]],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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.description,VA)||(l.description=VA),A.Njj(VA)}),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(VA){return A.eBV(W),A.DH7(l.offerValue,VA)||(l.offerValue=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.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(VA){return A.eBV(W),A.DH7(l.issuer,VA)||(l.issuer=VA),A.Njj(VA)}),A.k0s()()(),A.DNE(28,k1,3,2,"div",17),A.j41(29,"div",18)(30,"button",19),A.bIt("click",function(){return A.eBV(W),A.Njj(l.resetData())}),A.EFF(31,"Clear Field"),A.k0s(),A.j41(32,"button",20),A.bIt("click",function(){return A.eBV(W),A.Njj(l.onAddOffer())}),A.EFF(33,"Create Offer"),A.k0s()()()()()()}2&c&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",l.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",l.offerValue),A.R7$(4),A.JRh(l.offerValueHint),A.R7$(4),A.R50("ngModel",l.issuer),A.R7$(),A.Y8G("ngIf",""!==l.offerError))},dependencies:[oe.bT,_.qT,_.me,_.Q0,_.BC,_.cb,_.VZ,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,oA.tx,N.$z,Q.m2,Q.MM,CA.fg,KA.rl,KA.nJ,KA.MV,KA.yw,O.N,mA.V]})}}return t})();var qc=Te(2142);const z1=()=>["all"],H1=t=>({"error-border":t}),J1=()=>["no_offer"],_c=t=>({"mr-0":t}),$c=t=>({width:t}),j1=t=>({"display-none":t});function V1(t,I){if(1&t&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function Z1(t,I){1&t&&A.nrm(0,"mat-progress-bar",35)}function q1(t,I){1&t&&A.nrm(0,"th",36)}function _1(t,I){if(1&t&&A.nrm(0,"span",40),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_c,e.screenSize===e.screenSizeEnum.XS))}}function $1(t,I){if(1&t&&A.nrm(0,"span",41),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_c,e.screenSize===e.screenSizeEnum.XS))}}function Af(t,I){if(1&t&&(A.j41(0,"td",37),A.DNE(1,_1,1,3,"span",38)(2,$1,1,3,"span",39),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",!e.active)}}function ef(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Offer ID"),A.k0s())}function nf(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$c,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.SpI(" ",e.offer_id," ")}}function rf(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Single Use"),A.k0s())}function tf(t,I){if(1&t&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(e.single_use?"Yes":"No")}}function af(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Used"),A.k0s())}function of(t,I){if(1&t&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ",e.used?"Yes":"No"," ")}}function sf(t,I){1&t&&(A.j41(0,"th",42),A.EFF(1,"Invoice"),A.k0s())}function cf(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$c,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.SpI(" ",e.bolt12," ")}}function lf(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function gf(t,I){if(1&t){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(e);const l=A.XpG().$implicit,W=A.XpG();return A.Njj(W.onDisableOffer(l))}),A.EFF(1,"Disable Offer"),A.k0s()}}function uf(t,I){if(1&t){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(e);const l=A.XpG().$implicit,W=A.XpG();return A.Njj(W.onPrintOffer(l))}),A.EFF(1,"Export QR code"),A.k0s()}}function Bf(t,I){if(1&t){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 l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onOfferClick(l))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,gf,2,0,"mat-option",51)(7,uf,2,0,"mat-option",51),A.k0s()()()}if(2&t){const e=I.$implicit;A.R7$(6),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",e.active)}}function ff(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No offer available."),A.k0s())}function mf(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting offers..."),A.k0s())}function hf(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Cf(t,I){if(1&t&&(A.j41(0,"td",52),A.DNE(1,ff,2,0,"p",53)(2,mf,2,0,"p",53)(3,hf,2,1,"p",53),A.k0s()),2&t){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 df(t,I){if(1&t&&A.nrm(0,"tr",54),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,j1,(null==e.offers?null:e.offers.data)&&(null==e.offers||null==e.offers.data?null:e.offers.data.length)>0))}}function Ef(t,I){1&t&&A.nrm(0,"tr",55)}function Pf(t,I){1&t&&A.nrm(0,"tr",56)}let Xf=(()=>{class t{constructor(e,c,l,W,LA,VA,cr){this.logger=e,this.store=c,this.commonService=l,this.rtlEffects=W,this.dataService=LA,this.decimalPipe=VA,this.camelCaseWithReplace=cr,this.faHistory=B.Int,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:a.md,sortBy:"offer_id",sortOrder:a.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=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(h.mH).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.O5).pipe((0,m.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=e.offers||[],this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,AA.xO)({payload:{data:{pageSize:this.pageSize,component:W1}}}))}onOfferClick(e){this.store.dispatch((0,AA.xO)({payload:{data:{offer:{used:e.used,single_use:e.single_use,active:e.active,offer_id:e.offer_id,bolt12:e.bolt12,created:e.created,label:e.label},newlyAdded:!1,component:qc.f}}}))}onDisableOffer(e){this.store.dispatch((0,AA.I1)({payload:{data:{type:a.A$.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(e.offer_id||e.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,m.Q)(this.unSubs[4])).subscribe(c=>{c&&this.store.dispatch((0,q.jQ)({payload:{offer_id:e.offer_id}}))})}onPrintOffer(e){this.dataService.decodePayment(e.bolt12,!1).pipe((0,In.s)(1)).subscribe(c=>{c.offer_id&&!c.offer_amount_msat&&(c.offer_amount_msat=0);const l={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:c.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:c.offer_description?c.offer_description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:e.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:c?.offer_amount_msat&&0!==c?.offer_amount_msat?this.decimalPipe.transform((c.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"}};L1.createPdf(l,null,null,G1.pdfMake.vfs).download("Offer-"+(c&&c.offer_description?c.offer_description:e.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.offers.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.active?" active":" inactive")+(e.used?" yes":" no")+(e.single_use?" single":" multiple")+JSON.stringify(e).toLowerCase(),("active"===c||"inactive"===c||"single"===c||"multiple"===c)&&(c=" "+c);break;case"active":l=e?.active?"active":"inactive";break;default:l=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"active"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}loadOffersTable(e){this.offers=new w.I6(e?[...e]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(c,l)=>c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(C.h),A.rXU(PA.H),A.rXU(wn.u),A.rXU(oe.QX),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-offers-table"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"button",3),A.bIt("click",function(){return A.eBV(W),A.Njj(l.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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(15,"perfect-scrollbar"),A.DNE(16,V1,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(21,"div",14),A.DNE(22,Z1,1,0,"mat-progress-bar",15),A.j41(23,"table",16,0),A.qex(25,17),A.DNE(26,q1,1,0,"th",18)(27,Af,3,2,"td",19),A.bVm(),A.qex(28,20),A.DNE(29,ef,2,0,"th",21)(30,nf,4,4,"td",19),A.bVm(),A.qex(31,22),A.DNE(32,rf,2,0,"th",21)(33,tf,2,1,"td",19),A.bVm(),A.qex(34,23),A.DNE(35,af,2,0,"th",21)(36,of,2,1,"td",19),A.bVm(),A.qex(37,24),A.DNE(38,sf,2,0,"th",21)(39,cf,4,4,"td",19),A.bVm(),A.qex(40,25),A.DNE(41,lf,6,0,"th",26)(42,Bf,8,2,"td",27),A.bVm(),A.qex(43,28),A.DNE(44,Cf,4,3,"td",29),A.bVm(),A.DNE(45,df,1,3,"tr",30)(46,Ef,1,0,"tr",31)(47,Pf,1,0,"tr",32),A.k0s()(),A.nrm(48,"mat-paginator",33),A.k0s()()}2&c&&(A.R7$(7),A.Y8G("icon",l.faHistory),A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,z1).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(2),A.Y8G("ngIf",(null==l.apiCallStatus?null:l.apiCallStatus.status)===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.offers)("ngClass",A.eq3(16,H1,""!==l.errorMessage)),A.R7$(22),A.Y8G("matFooterRowDef",A.lJ4(18,J1)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}}return t})();const wf=()=>["all"],Kf=t=>({"error-border":t}),Qf=()=>["no_offer"],Lc=t=>({width:t}),pf=t=>({"display-none":t});function vf(t,I){if(1&t&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function If(t,I){1&t&&A.nrm(0,"mat-progress-bar",35)}function Mf(t,I){1&t&&(A.j41(0,"th",36),A.EFF(1,"Updated At"),A.k0s())}function Df(t,I){if(1&t&&(A.j41(0,"td",37),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,e.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function yf(t,I){1&t&&(A.j41(0,"th",36),A.EFF(1,"Title"),A.k0s())}function Ff(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Lc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(e.title)}}function xf(t,I){1&t&&(A.j41(0,"th",36),A.EFF(1,"Description"),A.k0s())}function Nf(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Lc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(e.description)}}function Yf(t,I){1&t&&(A.j41(0,"th",36),A.EFF(1,"Issuer"),A.k0s())}function Tf(t,I){if(1&t&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(e.issuer)}}function bf(t,I){1&t&&(A.j41(0,"th",36),A.EFF(1,"Invoice"),A.k0s())}function Uf(t,I){if(1&t&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Lc,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(e.bolt12)}}function Sf(t,I){1&t&&(A.j41(0,"th",40),A.EFF(1,"Amount (Sats)"),A.k0s())}function Rf(t,I){if(1&t&&(A.j41(0,"td",37)(1,"span",41),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.JRh(0===e.amountMSat?"Open":A.bMT(3,1,e.amountMSat/1e3))}}function Lf(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Gf(t,I){if(1&t){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 l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onOfferBookmarkClick(l))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",45),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onRePayOffer(l))}),A.EFF(7,"Pay Again"),A.k0s(),A.j41(8,"mat-option",45),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onDeleteBookmark(l))}),A.EFF(9,"Delete Bookmark"),A.k0s()()()()}}function Of(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No offer bookmarked."),A.k0s())}function kf(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting offer bookmarks..."),A.k0s())}function Wf(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function zf(t,I){if(1&t&&(A.j41(0,"td",48),A.DNE(1,Of,2,0,"p",49)(2,kf,2,0,"p",49)(3,Wf,2,1,"p",49),A.k0s()),2&t){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 Hf(t,I){if(1&t&&A.nrm(0,"tr",50),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,pf,(null==e.offersBookmarks?null:e.offersBookmarks.data)&&(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)>0))}}function Jf(t,I){1&t&&A.nrm(0,"tr",51)}function jf(t,I){1&t&&A.nrm(0,"tr",52)}let Vf=(()=>{class t{constructor(e,c,l,W,LA,VA){this.logger=e,this.store=c,this.commonService=l,this.rtlEffects=W,this.datePipe=LA,this.camelCaseWithReplace=VA,this.faHistory=B.Int,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:a.md,sortBy:"lastUpdatedAt",sortOrder:a.oi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new w.I6([]),this.offersBookmarksJSONArr=[],this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.ip).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=e.offersBookmarks||[],this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(e){this.store.dispatch((0,AA.xO)({payload:{data:{offer:{bolt12:e.bolt12},newlyAdded:!1,component:qc.f}}}))}onDeleteBookmark(e){this.store.dispatch((0,AA.I1)({payload:{data:{type:a.A$.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(e.title||e.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,m.Q)(this.unSubs[2])).subscribe(c=>{c&&this.store.dispatch((0,q.ED)({payload:{bolt12:e.bolt12}}))})}onRePayOffer(e){this.store.dispatch((0,AA.xO)({payload:{data:{paymentType:a.Y0.OFFER,bolt12:e.bolt12,offerTitle:e.title,component:je}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=JSON.stringify(e).toLowerCase();break;case"lastUpdatedAt":l=this.datePipe.transform(new Date(e.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":l=(e.amountMSat&&0!==e.amountMSat?(e.amountMSat/1e3).toString():"Open")||"";break;default:l=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 l.includes(c)}}loadOffersTable(e){this.offersBookmarks=new w.I6(e?[...e]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(c,l)=>c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(C.h),A.rXU(PA.H),A.rXU(oe.vh),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(13,"perfect-scrollbar"),A.DNE(14,vf,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(19,"div",13),A.DNE(20,If,1,0,"mat-progress-bar",14),A.j41(21,"table",15,0),A.qex(23,16),A.DNE(24,Mf,2,0,"th",17)(25,Df,3,4,"td",18),A.bVm(),A.qex(26,19),A.DNE(27,yf,2,0,"th",17)(28,Ff,4,4,"td",18),A.bVm(),A.qex(29,20),A.DNE(30,xf,2,0,"th",17)(31,Nf,4,4,"td",18),A.bVm(),A.qex(32,21),A.DNE(33,Yf,2,0,"th",17)(34,Tf,2,1,"td",18),A.bVm(),A.qex(35,22),A.DNE(36,bf,2,0,"th",17)(37,Uf,4,4,"td",18),A.bVm(),A.qex(38,23),A.DNE(39,Sf,2,0,"th",24)(40,Rf,4,3,"td",18),A.bVm(),A.qex(41,25),A.DNE(42,Lf,6,0,"th",26)(43,Gf,10,0,"td",27),A.bVm(),A.qex(44,28),A.DNE(45,zf,4,3,"td",29),A.bVm(),A.DNE(46,Hf,1,3,"tr",30)(47,Jf,1,0,"tr",31)(48,jf,1,0,"tr",32),A.k0s()(),A.nrm(49,"mat-paginator",33),A.k0s()()}2&c&&(A.R7$(5),A.Y8G("icon",l.faHistory),A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,wf).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(2),A.Y8G("ngIf",(null==l.apiCallStatus?null:l.apiCallStatus.status)===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.offersBookmarks)("ngClass",A.eq3(16,Kf,""!==l.errorMessage)),A.R7$(25),A.Y8G("matFooterRowDef",A.lJ4(18,Qf)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,v.iy,cA.ZF,cA.Ld,oe.QX,oe.vh]})}}return t})();const Zf=()=>["all"],qf=()=>["no_event"],Al=t=>({width:t}),_f=t=>({"display-none":t});function $f(t,I){if(1&t&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function Am(t,I){if(1&t&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function em(t,I){if(1&t){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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilterBy,l)||(W.selFilterBy=l),A.Njj(l)}),A.bIt("selectionChange",function(){A.eBV(e);const l=A.XpG();return l.selFilter="",A.Njj(l.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,Am,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(l){A.eBV(e);const W=A.XpG();return A.DH7(W.selFilter,l)||(W.selFilter=l),A.Njj(l)}),A.bIt("input",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())})("keyup",function(){A.eBV(e);const l=A.XpG();return A.Njj(l.applyFilter())}),A.k0s()()()()()}if(2&t){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,Zf).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function nm(t,I){1&t&&A.nrm(0,"mat-progress-bar",40)}function rm(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"Received Time"),A.k0s())}function tm(t,I){if(1&t&&(A.j41(0,"td",42),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function am(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"In Channel ID"),A.k0s())}function im(t,I){if(1&t&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function om(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"In Channel"),A.k0s())}function sm(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Al,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function cm(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"Out Channel ID"),A.k0s())}function lm(t,I){if(1&t&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function gm(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"Out Channel"),A.k0s())}function um(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Al,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function Bm(t,I){1&t&&(A.j41(0,"th",45),A.EFF(1,"Amount In (Sats)"),A.k0s())}function fm(t,I){if(1&t&&(A.j41(0,"td",42)(1,"span",46),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 mm(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"Style"),A.k0s())}function hm(t,I){if(1&t&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.style)}}function Cm(t,I){1&t&&(A.j41(0,"th",41),A.EFF(1,"Fail Reason"),A.k0s())}function dm(t,I){if(1&t&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG(2);A.R7$(),A.JRh(c.CLNFailReason[null==e?null:e.failreason])}}function Em(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG(2);return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Pm(t,I){if(1&t){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG(2);return A.Njj(W.onFailedLocalEventClick(l))}),A.EFF(2,"View Info"),A.k0s()()}}function Xm(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function wm(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function Km(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Qm(t,I){if(1&t&&(A.j41(0,"td",53),A.DNE(1,Xm,2,0,"p",54)(2,wm,2,0,"p",54)(3,Km,2,1,"p",54),A.k0s()),2&t){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 pm(t,I){if(1&t&&A.nrm(0,"tr",55),2&t){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_f,(null==e.failedLocalForwardingEvents?null:e.failedLocalForwardingEvents.data)&&(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)>0))}}function vm(t,I){1&t&&A.nrm(0,"tr",56)}function Im(t,I){1&t&&A.nrm(0,"tr",57)}function Mm(t,I){if(1&t&&(A.j41(0,"div",18),A.DNE(1,nm,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,rm,2,0,"th",22)(6,tm,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,am,2,0,"th",22)(9,im,2,1,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,om,2,0,"th",22)(12,sm,4,4,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,cm,2,0,"th",22)(15,lm,2,1,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,gm,2,0,"th",22)(18,um,4,4,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,Bm,2,0,"th",29)(21,fm,4,4,"td",23),A.bVm(),A.qex(22,30),A.DNE(23,mm,2,0,"th",22)(24,hm,2,1,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,Cm,2,0,"th",22)(27,dm,2,1,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,Em,6,0,"th",33)(30,Pm,3,0,"td",34),A.bVm(),A.qex(31,35),A.DNE(32,Qm,4,3,"td",36),A.bVm(),A.DNE(33,pm,1,3,"tr",37)(34,vm,1,0,"tr",38)(35,Im,1,0,"tr",39),A.k0s()()),2&t){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,qf)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function Dm(t,I){if(1&t&&A.nrm(0,"mat-paginator",58),2&t){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let ym=(()=>{class t{constructor(e,c,l,W,LA){this.logger=e,this.commonService=c,this.store=l,this.datePipe=W,this.camelCaseWithReplace=LA,this.faExclamationTriangle=B.zpE,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:a.md,sortBy:"received_time",sortOrder:a.oi.DESCENDING},this.CLNFailReason=a.iI,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new w.I6([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.apiCallStatus=null,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,q.uK)({payload:{status:a.xk.LOCAL_FAILED}})),this.store.select(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(h.aJ).pipe((0,m.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=e.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=e.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(e)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(e){this.store.dispatch((0,AA.xO)({payload:{data:{type:a.A$.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:e.received_time,title:"Received Time",width:50,type:a.UN.DATE_TIME},{key:"in_channel_alias",value:e.in_channel_alias,title:"Inbound Channel",width:50,type:a.UN.STRING}],[{key:"in_msatoshi",value:e.in_msat,title:"Amount In (mSats)",width:100,type:a.UN.NUMBER}],[{key:"failreason",value:e.failreason?this.CLNFailReason[e.failreason]:"",title:"Reason for Failure",width:100,type:a.UN.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.received_time?this.datePipe.transform(new Date(1e3*e.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(e.in_channel_alias?e.in_channel_alias.toLowerCase():"")+(e.failreason&&this.CLNFailReason[e.failreason]?this.CLNFailReason[e.failreason].toLowerCase():"")+(e.in_msat?e.in_msat:"");break;case"received_time":l=this.datePipe.transform(new Date(1e3*(e.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":l=(+(e.in_msat||0)/1e3).toString()||"";break;case"failreason":l=e?.failreason?this.CLNFailReason[e?.failreason]:"";break;default:l=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"failreason"===this.selFilterBy?0===l.indexOf(c):l.includes(c)}}loadLocalfailedLocalEventsTable(e){this.failedLocalForwardingEvents=new w.I6([...e]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(c,l)=>{switch(l){case"in_msatoshi":return c.in_msat;case"failreason":return c.failreason?this.CLNFailReason[c.failreason]:"";default:return c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]: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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(C.h),A.rXU(n.il),A.rXU(oe.vh),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){1&c&&(A.j41(0,"div",1),A.DNE(1,$f,2,1,"div",2)(2,em,18,5,"div",3)(3,Mm,36,8,"div",4)(4,Dm,1,3,"mat-paginator",5),A.k0s()),2&c&&(A.R7$(),A.Y8G("ngIf",""!==l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage),A.R7$(),A.Y8G("ngIf",""===l.errorMessage))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.me,_.BC,_.vS,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,N.$z,CA.fg,KA.rl,KA.nJ,g.HM,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,v.iy,cA.ZF,cA.Ld,oe.QX,oe.vh]})}}return t})();const Fm=["form"];function xm(t,I){1&t&&A.eu8(0)}function Nm(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Requested amount is required."),A.k0s())}function Ym(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Fee rate is required."),A.k0s())}function Tm(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount is required."),A.k0s())}function bm(t,I){1&t&&(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 Um(t,I){if(1&t&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.SpI("Local amount must be less than or equal to ",e.totalBalance,".")}}function Sm(t,I){if(1&t&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.channelConnectionError)}}function Rm(t,I){if(1&t&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,Sm,2,1,"span",19),A.k0s()),2&t){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.channelConnectionError)}}function Lm(t,I){1&t&&(A.j41(0,"th",47),A.EFF(1,"Type"),A.k0s())}function Gm(t,I){if(1&t&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function Om(t,I){1&t&&(A.j41(0,"th",47),A.EFF(1,"Address"),A.k0s())}function km(t,I){if(1&t&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function Wm(t,I){1&t&&(A.j41(0,"th",47),A.EFF(1,"Port"),A.k0s())}function zm(t,I){if(1&t&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function Hm(t,I){1&t&&A.nrm(0,"tr",49)}function Jm(t,I){1&t&&A.nrm(0,"tr",50)}function jm(t,I){if(1&t&&(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,Lm,2,0,"th",41)(31,Gm,2,1,"td",42),A.bVm(),A.qex(32,43),A.DNE(33,Om,2,0,"th",41)(34,km,2,1,"td",42),A.bVm(),A.qex(35,44),A.DNE(36,Wm,2,0,"th",41)(37,zm,2,1,"td",42),A.bVm(),A.DNE(38,Hm,1,0,"tr",45)(39,Jm,1,0,"tr",46),A.k0s()()()()()),2&t){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 Vm(t,I){if(1&t&&A.DNE(0,jm,40,9,"mat-expansion-panel",29),2&t){const e=A.XpG();A.Y8G("ngIf",e.node)}}let Zm=(()=>{class t{constructor(e,c,l,W){this.dialogRef=e,this.data=c,this.actions=l,this.store=W,this.faExclamationTriangle=B.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 o.B,new o.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,K.p)(e=>e.type===a.TC.UPDATE_API_CALL_STATUS_CLN||e.type===a.TC.FETCH_CHANNELS_CLN)).subscribe(e=>{e.type===a.TC.UPDATE_API_CALL_STATUS_CLN&&e.payload.status===a.wn.ERROR&&"SaveNewChannel"===e.payload.action&&(this.channelConnectionError=e.payload.message),e.type===a.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 e={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,q.vL)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(oA.CP),A.rXU(oA.Vh),A.rXU(fA.En),A.rXU(n.il))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(c,l){if(1&c&&A.GBs(Fm,7),2&c){let W;A.mGM(W=A.lsd())&&(l.form=W.first)}},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(c,l){if(1&c){const W=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 A.eBV(W),A.Njj(l.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.DNE(11,xm,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(VA){return A.eBV(W),A.DH7(l.requestedAmount,VA)||(l.requestedAmount=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.calculateFee())}),A.k0s(),A.j41(18,"span",18),A.EFF(19," Sats "),A.k0s(),A.DNE(20,Nm,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(VA){return A.eBV(W),A.DH7(l.feeRate,VA)||(l.feeRate=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.calculateFee())}),A.k0s(),A.j41(26,"span",18),A.EFF(27," Sats/vByte "),A.k0s(),A.DNE(28,Ym,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(VA){return A.eBV(W),A.DH7(l.localAmount,VA)||(l.localAmount=VA),A.Njj(VA)}),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,Tm,2,0,"mat-error",19)(40,bm,2,0,"mat-error",19)(41,Um,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,Rm,3,2,"div",23),A.j41(47,"div",24)(48,"button",25),A.bIt("click",function(){return A.eBV(W),A.Njj(l.resetData())}),A.EFF(49,"Clear"),A.k0s(),A.j41(50,"button",26),A.bIt("click",function(){return A.eBV(W),A.Njj(l.onOpenChannel())}),A.EFF(51,"Execute"),A.k0s()()()()()(),A.DNE(52,Vm,1,1,"ng-template",null,4,A.C5r)}if(2&c){const W=A.sdS(17),LA=A.sdS(25),VA=A.sdS(33),cr=A.sdS(53);A.R7$(5),A.JRh(l.alertTitle),A.R7$(6),A.Y8G("ngTemplateOutlet",cr),A.R7$(5),A.Y8G("step",1e4)("min",0),A.R50("ngModel",l.requestedAmount),A.R7$(4),A.Y8G("ngIf",null==W.errors?null:W.errors.required),A.R7$(4),A.Y8G("step",10)("min",0),A.R50("ngModel",l.feeRate),A.R7$(4),A.Y8G("ngIf",null==LA.errors?null:LA.errors.required),A.R7$(4),A.Y8G("step",1e4)("min",2e4)("max",l.totalBalance),A.R50("ngModel",l.localAmount),A.R7$(3),A.SpI("Remaining: ",A.bMT(36,20,l.totalBalance-(l.localAmount?l.localAmount:0)),""),A.R7$(4),A.Y8G("ngIf",null==VA.errors?null:VA.errors.required),A.R7$(),A.Y8G("ngIf",null==VA.errors?null:VA.errors.min),A.R7$(),A.Y8G("ngIf",null==VA.errors?null:VA.errors.max),A.R7$(3),A.SpI("Total cost to lease ",A.bMT(45,22,l.node.channel_opening_fee)," (Sats)"),A.R7$(2),A.Y8G("ngIf",""!==l.channelConnectionError)}},dependencies:[oe.bT,oe.T3,_.qT,_.me,_.Q0,_.BC,_.cb,_.YS,_.VZ,_.zX,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,N.$z,Q.m2,Q.MM,xr.GK,xr.Z2,xr.WN,CA.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,rt.q,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.KS,w.$R,w.YZ,w.NB,O.N,$r.z,mA.V,oe.QX,oe.vh],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}}return t})();var qm=Te(6471);const _m=()=>["all"],$m=t=>({"error-border":t}),Ah=()=>["no_lqNode"],el=t=>({width:t}),eh=t=>({"display-none":t});function nh(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Channel amount is required."),A.k0s())}function rh(t,I){1&t&&(A.j41(0,"mat-error"),A.EFF(1,"Channel opening fee rate is required."),A.k0s())}function th(t,I){if(1&t&&(A.j41(0,"mat-option",49),A.EFF(1),A.k0s()),2&t){const e=I.$implicit,c=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(c.getLabel(e))}}function ah(t,I){1&t&&A.nrm(0,"mat-progress-bar",50)}function ih(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Alias"),A.k0s())}function oh(t,I){if(1&t&&(A.j41(0,"mat-chip",57),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.SpI(" ","tor"===e?"Tor":"ipv"===e?"Clearnet":e," ")}}function sh(t,I){if(1&t&&(A.j41(0,"td",52)(1,"div",53)(2,"span",54),A.EFF(3),A.j41(4,"mat-chip-list",55),A.DNE(5,oh,2,1,"mat-chip",56),A.k0s()()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,el,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.SpI(" ",null==e?null:e.alias," "),A.R7$(2),A.Y8G("ngForOf",e.address_types)}}function ch(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Node ID"),A.k0s())}function lh(t,I){if(1&t&&(A.j41(0,"td",52)(1,"div",53)(2,"span",58),A.EFF(3),A.k0s()()()),2&t){const e=I.$implicit,c=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,el,c.screenSize===c.screenSizeEnum.XS?"6rem":c.colWidth)),A.R7$(2),A.JRh(null==e?null:e.nodeid)}}function gh(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Last Announcement At"),A.k0s())}function uh(t,I){if(1&t&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function Bh(t,I){1&t&&(A.j41(0,"th",51),A.EFF(1,"Compact Lease"),A.k0s())}function fh(t,I){if(1&t&&(A.j41(0,"td",52),A.EFF(1),A.k0s()),2&t){const e=I.$implicit;A.R7$(),A.JRh(null==e||null==e.option_will_fund?null:e.option_will_fund.compact_lease)}}function mh(t,I){1&t&&(A.j41(0,"th",59),A.EFF(1," Lease Fee"),A.k0s())}function hh(t,I){if(1&t&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&t){const e=I.$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 Ch(t,I){1&t&&(A.j41(0,"th",59),A.EFF(1," Routing Fee"),A.k0s())}function dh(t,I){if(1&t&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&t){const e=I.$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 Eh(t,I){1&t&&(A.j41(0,"th",60),A.EFF(1,"Channel Opening Fee (Sats)"),A.k0s())}function Ph(t,I){if(1&t&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,e.channel_opening_fee,"1.0-0")," ")}}function Xh(t,I){1&t&&(A.j41(0,"th",60),A.EFF(1,"Funding Weight"),A.k0s())}function wh(t,I){if(1&t&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&t){const e=I.$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 Kh(t,I){if(1&t){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(){A.eBV(e);const l=A.XpG();return A.Njj(l.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Qh(t,I){if(1&t){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 l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onViewLeaseInfo(l))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",64),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.onOpenChannel(l))}),A.EFF(7,"Open Channel"),A.k0s(),A.j41(8,"mat-option",64),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.viewLeaseOn(l,"LN"))}),A.EFF(9,"View on Lnrouter"),A.k0s(),A.j41(10,"mat-option",64),A.bIt("click",function(){const l=A.eBV(e).$implicit,W=A.XpG();return A.Njj(W.viewLeaseOn(l,"AM"))}),A.EFF(11,"View on Amboss"),A.k0s()()()()}}function ph(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"No node with liquidity."),A.k0s())}function vh(t,I){1&t&&(A.j41(0,"p"),A.EFF(1,"Getting nodes with liquidity..."),A.k0s())}function Ih(t,I){if(1&t&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&t){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Mh(t,I){if(1&t&&(A.j41(0,"td",66),A.DNE(1,ph,2,0,"p",17)(2,vh,2,0,"p",17)(3,Ih,2,1,"p",17),A.k0s()),2&t){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 Dh(t,I){if(1&t&&A.nrm(0,"tr",67),2&t){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,eh,(null==e.liquidityNodes?null:e.liquidityNodes.data)&&(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)>0))}}function yh(t,I){1&t&&A.nrm(0,"tr",68)}function Fh(t,I){1&t&&A.nrm(0,"tr",69)}let xh=(()=>{class t{constructor(e,c,l,W,LA,VA,cr){this.logger=e,this.store=c,this.dataService=l,this.commonService=W,this.rtlEffects=LA,this.datePipe=VA,this.camelCaseWithReplace=cr,this.nodePageDefs=a.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:a.md,sortBy:"channel_opening_fee",sortOrder:a.oi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=B.e4L,this.faExclamationTriangle=B.zpE,this.faUsers=B.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 w.I6([]),this.pageSize=a.md,this.pageSizeOptions=a.xp,this.screenSize="",this.screenSizeEnum=a.f7,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=a.wn.INITIATED,this.apiCallStatusEnum=a.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.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(h.av).pipe((0,m.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",e.apiCallStatus.status===a.wn.ERROR&&(this.errorMessage=e.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId)||a.mu.find(c=>c.pageId===this.PAGE_ID)?.tables.find(c=>c.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===a.f7.XS||this.screenSize===a.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:a.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Ma.z)([this.store.select(h.kQ),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,m.Q)(this.unSubs[1])).subscribe({next:([e,c])=>{this.information=e.information,this.totalBalance=e.balance.totalBalance||0,this.logger.info(e),c&&!c.length&&(c=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(c)),this.listNodesCallStatus=a.wn.COMPLETED,c.forEach(l=>{l.address_types=Array.from(new Set(l.addresses?.reduce((LA,VA)=>((VA.type?.includes("ipv")||VA.type?.includes("tor"))&&LA.push(VA.type?.substring(0,3)),LA),[])))}),this.liquidityNodesData=c.filter(l=>l.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:e=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(e)),this.listNodesCallStatus=a.wn.ERROR,this.errorMessage=JSON.stringify(e)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(e=>{e.option_will_fund&&(e.channel_opening_fee=+(e.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(e.option_will_fund.lease_fee_basis||0)/1e4+ +(e.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(e){const c=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(l=>l.column===e);return c?c.label?c.label:this.camelCaseWithReplace.transform(c.column||"","_"):this.commonService.titleCase(e)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(e,c)=>{let l="";switch(this.selFilterBy){case"all":l=(e.alias?e.alias.toLocaleLowerCase():"")+(e.channel_opening_fee?e.channel_opening_fee+" Sats":"")+(e.option_will_fund?.lease_fee_base_msat?e.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(e.option_will_fund?.lease_fee_basis?e.option_will_fund?.lease_fee_basis/100+"%":"")+(e.option_will_fund?.channel_fee_max_base_msat?e.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(e.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*e.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(e.address_types?e.address_types.reduce((W,LA)=>W+("tor"===LA?" tor":"ipv"===LA?" clearnet":" "+LA.toLowerCase()),""):"");break;case"alias":l=(e?.alias?.toLowerCase()||" ")+e?.address_types?.reduce((W,LA)=>W+(LA?"ipv"===LA?"clearnet":LA:"")," ")||"";break;case"last_timestamp":l=this.datePipe.transform(new Date(1e3*(e.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":l=e?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":l=((e.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((e.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":l=((e.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(e.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:l=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 l.includes(c)}}loadLiqNodesTable(e){this.liquidityNodes=new w.I6([...e]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(c,l)=>c[l]&&isNaN(c[l])?c[l].toLocaleLowerCase():c[l]?+c[l]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(e,c){"LN"===c?window.open("https://lnrouter.app/node/"+e.nodeid,"_blank"):"AM"===c&&window.open("https://amboss.space/node/"+e.nodeid,"_blank")}onOpenChannel(e){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{node:e,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:Zm}}}))}onViewLeaseInfo(e){const c=e.addresses?.reduce((LA,VA)=>(VA.address&&VA.address.length>40&&(VA.address=VA.address.substring(0,39)+"..."),LA.concat(JSON.stringify(VA).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),l=[];if(e.features&&""!==e.features.trim()){const LA=parseInt(e.features,16);a.TH.forEach(VA=>{LA&1<{LA&&this.onOpenChannel(e)})}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(e=>{e.next(null),e.complete()})}static{this.\u0275fac=function(c){return new(c||t)(A.rXU(E.gP),A.rXU(n.il),A.rXU(wn.u),A.rXU(C.h),A.rXU(PA.H),A.rXU(oe.vh),A.rXU(IA.VD))}}static{this.\u0275cmp=A.VBU({type:t,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(c,l){if(1&c&&(A.GBs(b.B4,5),A.GBs(v.iy,5)),2&c){let W;A.mGM(W=A.lsd())&&(l.sort=W.first),A.mGM(W=A.lsd())&&(l.paginator=W.first)}},features:[A.Jv_([{provide:Z.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:v.xX,useValue:(0,a.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(c,l){if(1&c){const W=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(VA){return A.eBV(W),A.DH7(l.channelAmount,VA)||(l.channelAmount=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.onCalculateOpeningFee())}),A.k0s(),A.DNE(24,nh,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(VA){return A.eBV(W),A.DH7(l.channel_opening_feeRate,VA)||(l.channel_opening_feeRate=VA),A.Njj(VA)}),A.bIt("keyup",function(){return A.eBV(W),A.Njj(l.onCalculateOpeningFee())}),A.k0s(),A.DNE(29,rh,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(VA){return A.eBV(W),A.DH7(l.selFilterBy,VA)||(l.selFilterBy=VA),A.Njj(VA)}),A.bIt("selectionChange",function(){return A.eBV(W),l.selFilter="",A.Njj(l.applyFilter())}),A.j41(40,"perfect-scrollbar"),A.DNE(41,th,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(VA){return A.eBV(W),A.DH7(l.selFilter,VA)||(l.selFilter=VA),A.Njj(VA)}),A.bIt("input",function(){return A.eBV(W),A.Njj(l.applyFilter())})("keyup",function(){return A.eBV(W),A.Njj(l.applyFilter())}),A.k0s()()()(),A.j41(46,"div",26),A.DNE(47,ah,1,0,"mat-progress-bar",27),A.j41(48,"table",28,1),A.qex(50,29),A.DNE(51,ih,2,0,"th",30)(52,sh,6,5,"td",31),A.bVm(),A.qex(53,32),A.DNE(54,ch,2,0,"th",30)(55,lh,4,4,"td",31),A.bVm(),A.qex(56,33),A.DNE(57,gh,2,0,"th",30)(58,uh,3,4,"td",31),A.bVm(),A.qex(59,34),A.DNE(60,Bh,2,0,"th",30)(61,fh,2,1,"td",31),A.bVm(),A.qex(62,35),A.DNE(63,mh,2,0,"th",36)(64,hh,4,8,"td",31),A.bVm(),A.qex(65,37),A.DNE(66,Ch,2,0,"th",36)(67,dh,4,8,"td",31),A.bVm(),A.qex(68,38),A.DNE(69,Eh,2,0,"th",39)(70,Ph,4,4,"td",31),A.bVm(),A.qex(71,40),A.DNE(72,Xh,2,0,"th",39)(73,wh,4,4,"td",31),A.bVm(),A.qex(74,41),A.DNE(75,Kh,6,0,"th",36)(76,Qh,12,0,"td",42),A.bVm(),A.qex(77,43),A.DNE(78,Mh,4,3,"td",44),A.bVm(),A.DNE(79,Dh,1,3,"tr",45)(80,yh,1,0,"tr",46)(81,Fh,1,0,"tr",47),A.k0s()(),A.nrm(82,"mat-paginator",48),A.k0s()()()()}2&c&&(A.R7$(),A.Y8G("icon",l.faBullhorn),A.R7$(10),A.Y8G("icon",l.faExclamationTriangle),A.R7$(7),A.Y8G("matTooltip",l.askTooltipMsg),A.R7$(5),A.R50("ngModel",l.channelAmount),A.R7$(),A.Y8G("ngIf",!l.channelAmount),A.R7$(4),A.R50("ngModel",l.channel_opening_feeRate),A.R7$(),A.Y8G("ngIf",!l.channel_opening_feeRate),A.R7$(3),A.Y8G("icon",l.faUsers),A.R7$(7),A.R50("ngModel",l.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(22,_m).concat(l.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",l.selFilter),A.R7$(2),A.Y8G("ngIf",l.listNodesCallStatus===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",l.tableSetting.sortBy)("matSortDirection",l.tableSetting.sortOrder)("dataSource",l.liquidityNodes)("ngClass",A.eq3(23,$m,""!==l.errorMessage)),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(25,Ah)),A.R7$(),A.Y8G("matHeaderRowDef",l.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",l.displayedColumns),A.R7$(),A.Y8G("pageSize",l.pageSize)("pageSizeOptions",l.pageSizeOptions)("showFirstLastButtons",l.screenSize!==l.screenSizeEnum.XS))},dependencies:[oe.YU,oe.Sq,oe.bT,oe.B3,_.qT,_.me,_.Q0,_.BC,_.cb,_.YS,_.vS,_.cV,P.aY,r.DJ,r.sA,r.UI,M.PW,M.eI,Q.RN,Q.m2,D.An,CA.fg,KA.rl,KA.nJ,KA.TL,g.HM,qm.Jl,Z.VO,Z.$2,pA.wT,b.B4,b.aE,w.Zl,w.tL,w.ji,w.cC,w.YV,w.iL,w.Zq,w.xW,w.KS,w.$R,w.Qo,w.YZ,w.NB,w.iF,zA.oV,v.iy,cA.ZF,cA.Ld,O.N,oe.QX,oe.vh]})}}return t})();const Nh=[{path:"",component:s,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:gs,canActivate:[(0,On.Wz)()]},{path:"onchain",component:_s,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:J0,canActivate:[(0,On.Wz)()]},{path:"send/:selTab",component:Oa,data:{sweepAll:!1},canActivate:[(0,On.Wz)()]},{path:"sweep/:selTab",component:Oa,data:{sweepAll:!0},canActivate:[(0,On.Wz)()]}]},{path:"connections",component:e0,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:uc,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:An,canActivate:[(0,On.Wz)()]},{path:"pending",component:Zi,canActivate:[(0,On.Wz)()]},{path:"activehtlcs",component:C1,canActivate:[(0,On.Wz)()]}]},{path:"peers",component:Dl,data:{sweepAll:!1},canActivate:[(0,On.Wz)()]}]},{path:"liquidityads",component:xh,canActivate:[(0,On.Wz)()]},{path:"transactions",component:r0,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:ei,canActivate:[(0,On.Wz)()]},{path:"invoices",component:Un,canActivate:[(0,On.Wz)()]},{path:"offers",component:Xf,canActivate:[(0,On.Wz)()]},{path:"offrBookmarks",component:Vf,canActivate:[(0,On.Wz)()]}]},{path:"messages",component:W0,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:$l,canActivate:[(0,On.Wz)()]},{path:"verify",component:og,canActivate:[(0,On.Wz)()]}]},{path:"routing",component:Ya,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Wc,canActivate:[(0,On.Wz)()]},{path:"failedtransactions",component:xu,canActivate:[(0,On.Wz)()]},{path:"localfail",component:ym,canActivate:[(0,On.Wz)()]},{path:"routingpeers",component:pB,canActivate:[(0,On.Wz)()]}]},{path:"reports",component:E1,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:I1,canActivate:[(0,On.Wz)()]},{path:"transactions",component:b1,canActivate:[(0,On.Wz)()]}]},{path:"graph",component:R1,canActivate:[(0,On.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Ii,canActivate:[(0,On.Wz)()]},{path:"queryroutes",component:ql,canActivate:[(0,On.Wz)()]}]},{path:"rates",component:O0,canActivate:[(0,On.Wz)()]},{path:"**",component:U1.X},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],Yh=un.iI.forChild(Nh);var Th=Te(9029);let bh=(()=>{class t{static{this.\u0275fac=function(c){return new(c||t)}}static{this.\u0275mod=A.$C({type:t,bootstrap:[s]})}static{this.\u0275inj=A.G2t({imports:[oe.MD,Th.G,Yh]})}}return t})()},2643:function(Za){typeof self<"u"&&self,Za.exports=function(){var Pt={41783:function(Y,A){"use strict";A.OP=0,A.CL=1,A.CP=2,A.QU=3,A.GL=4,A.NS=5,A.EX=6,A.SY=7,A.IS=8,A.PR=9,A.PO=10,A.NU=11,A.AL=12,A.HL=13,A.ID=14,A.IN=15,A.HY=16,A.BA=17,A.BB=18,A.B2=19,A.ZW=20,A.CM=21,A.WJ=22,A.H2=23,A.H3=24,A.JL=25,A.JV=26,A.JT=27,A.RI=28,A.EB=29,A.EM=30,A.ZWJ=31,A.CB=32,A.AI=33,A.BK=34,A.CJ=35,A.CR=36,A.LF=37,A.NL=38,A.SA=39,A.SG=40,A.SP=41,A.XX=42},98282:function(Y,A){"use strict";A.DI_BRK=0,A.IN_BRK=1,A.CI_BRK=2,A.CP_BRK=3,A.PR_BRK=4,A.pairTable=[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4],[0,4,4,1,1,4,4,4,4,1,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,4,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[4,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,0,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,1,1,1,1,0,0,4,2,4,1,1,1,1,1,0,1,1,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,1,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,4,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,1,1,1,1,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,1,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,1,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0]]},57013:function(Y,A,r){"use strict";r(18756),A.EncodeStream=r(16176),A.DecodeStream=r(78984),A.Array=r(38637),A.LazyArray=r(88687),A.Bitfield=r(72959),A.Boolean=r(64888),A.Buffer=r(77324),A.Enum=r(71499),A.Optional=r(72526),A.Reserved=r(10298),A.String=r(36291),A.Struct=r(2731),A.VersionedStruct=r(48084);var g=r(76949),i=r(63787),s=r(41545);Object.assign(A,g,i,s)},38637:function(Y,A,r){"use strict";function g(B,a){var d=typeof Symbol<"u"&&B[Symbol.iterator]||B["@@iterator"];if(d)return(d=d.call(B)).next.bind(d);if(Array.isArray(B)||(d=function i(B,a){if(B){if("string"==typeof B)return s(B,a);var d={}.toString.call(B).slice(8,-1);return"Object"===d&&B.constructor&&(d=B.constructor.name),"Map"===d||"Set"===d?Array.from(B):"Arguments"===d||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(d)?s(B,a):void 0}}(B))||a&&B&&"number"==typeof B.length){d&&(B=d);var h=0;return function(){return h>=B.length?{done:!0}:{done:!1,value:B[h++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(B,a){(null==a||a>B.length)&&(a=B.length);for(var d=0,h=Array(a);dthis.buffer.length)return this.flush()},E.flush=function(){if(this.bufferOffset>0)return this.push(g.from(this.buffer.slice(0,this.bufferOffset))),this.bufferOffset=0},E.writeBuffer=function(C){return this.flush(),this.push(C),this.pos+=C.length},E.writeString=function(C,P){switch(void 0===P&&(P="ascii"),P){case"utf16le":case"ucs2":case"utf8":case"ascii":return this.writeBuffer(g.from(C,P));case"utf16be":for(var M=g.from(C,"utf16le"),N=0,Q=M.length-1;N>>16&255,this.buffer[this.bufferOffset++]=C>>>8&255,this.buffer[this.bufferOffset++]=255&C,this.pos+=3},E.writeUInt24LE=function(C){return this.ensure(3),this.buffer[this.bufferOffset++]=255&C,this.buffer[this.bufferOffset++]=C>>>8&255,this.buffer[this.bufferOffset++]=C>>>16&255,this.pos+=3},E.writeInt24BE=function(C){return this.writeUInt24BE(C>=0?C:C+16777215+1)},E.writeInt24LE=function(C){return this.writeUInt24LE(C>=0?C:C+16777215+1)},E.fill=function(C,P){if(P=this.length)){if(null==this.items[C]){var P=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.ctx)*C,this.items[C]=this.type.decode(this.stream,this.ctx),this.stream.pos=P}return this.items[C]}},E.toArray=function(){for(var C=[],P=0,M=this.length;P>1),(E=u.call(this,"Int"+a,d)||this)._point=1<d)throw new RangeError('The value "'+BA+'" is invalid for option "size"');var T=new Uint8Array(BA);return Object.setPrototypeOf(T,n.prototype),T}function n(BA,T,k){if("number"==typeof BA){if("string"==typeof T)throw new TypeError('The "string" argument must be of type string. Received type number');return N(BA)}return C(BA,T,k)}function C(BA,T,k){if("string"==typeof BA)return function Q(BA,T){if(("string"!=typeof T||""===T)&&(T="utf8"),!n.isEncoding(T))throw new TypeError("Unknown encoding: "+T);var k=0|b(BA,T),aA=E(k),DA=aA.write(BA,T);return DA!==k&&(aA=aA.slice(0,DA)),aA}(BA,T);if(ArrayBuffer.isView(BA))return function D(BA){if(Ce(BA,Uint8Array)){var T=new Uint8Array(BA);return F(T.buffer,T.byteOffset,T.byteLength)}return X(BA)}(BA);if(null==BA)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof BA);if(Ce(BA,ArrayBuffer)||BA&&Ce(BA.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ce(BA,SharedArrayBuffer)||BA&&Ce(BA.buffer,SharedArrayBuffer)))return F(BA,T,k);if("number"==typeof BA)throw new TypeError('The "value" argument must not be of type number. Received type number');var aA=BA.valueOf&&BA.valueOf();if(null!=aA&&aA!==BA)return n.from(aA,T,k);var DA=function y(BA){if(n.isBuffer(BA)){var T=0|K(BA.length),k=E(T);return 0===k.length||BA.copy(k,0,0,T),k}return void 0!==BA.length?"number"!=typeof BA.length||me(BA.length)?E(0):X(BA):"Buffer"===BA.type&&Array.isArray(BA.data)?X(BA.data):void 0}(BA);if(DA)return DA;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof BA[Symbol.toPrimitive])return n.from(BA[Symbol.toPrimitive]("string"),T,k);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof BA)}function P(BA){if("number"!=typeof BA)throw new TypeError('"size" argument must be of type number');if(BA<0)throw new RangeError('The value "'+BA+'" is invalid for option "size"')}function N(BA){return P(BA),E(BA<0?0:0|K(BA))}function X(BA){for(var T=BA.length<0?0:0|K(BA.length),k=E(T),aA=0;aA=d)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+d.toString(16)+" bytes");return 0|BA}function b(BA,T){if(n.isBuffer(BA))return BA.length;if(ArrayBuffer.isView(BA)||Ce(BA,ArrayBuffer))return BA.byteLength;if("string"!=typeof BA)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof BA);var k=BA.length,aA=arguments.length>2&&!0===arguments[2];if(!aA&&0===k)return 0;for(var DA=!1;;)switch(T){case"ascii":case"latin1":case"binary":return k;case"utf8":case"utf-8":return le(BA).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*k;case"hex":return k>>>1;case"base64":return HA(BA).length;default:if(DA)return aA?-1:le(BA).length;T=(""+T).toLowerCase(),DA=!0}}function w(BA,T,k){var aA=!1;if((void 0===T||T<0)&&(T=0),T>this.length||((void 0===k||k>this.length)&&(k=this.length),k<=0)||(k>>>=0)<=(T>>>=0))return"";for(BA||(BA="utf8");;)switch(BA){case"hex":return hA(this,T,k);case"utf8":case"utf-8":return zA(this,T,k);case"ascii":return tA(this,T,k);case"latin1":case"binary":return $(this,T,k);case"base64":return NA(this,T,k);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return yA(this,T,k);default:if(aA)throw new TypeError("Unknown encoding: "+BA);BA=(BA+"").toLowerCase(),aA=!0}}function Z(BA,T,k){var aA=BA[T];BA[T]=BA[k],BA[k]=aA}function oA(BA,T,k,aA,DA){if(0===BA.length)return-1;if("string"==typeof k?(aA=k,k=0):k>2147483647?k=2147483647:k<-2147483648&&(k=-2147483648),me(k=+k)&&(k=DA?0:BA.length-1),k<0&&(k=BA.length+k),k>=BA.length){if(DA)return-1;k=BA.length-1}else if(k<0){if(!DA)return-1;k=0}if("string"==typeof T&&(T=n.from(T,aA)),n.isBuffer(T))return 0===T.length?-1:q(BA,T,k,aA,DA);if("number"==typeof T)return T&=255,"function"==typeof Uint8Array.prototype.indexOf?DA?Uint8Array.prototype.indexOf.call(BA,T,k):Uint8Array.prototype.lastIndexOf.call(BA,T,k):q(BA,[T],k,aA,DA);throw new TypeError("val must be string, number or Buffer")}function q(BA,T,k,aA,DA){var $A,iA=1,kA=BA.length,Xe=T.length;if(void 0!==aA&&("ucs2"===(aA=String(aA).toLowerCase())||"ucs-2"===aA||"utf16le"===aA||"utf-16le"===aA)){if(BA.length<2||T.length<2)return-1;iA=2,kA/=2,Xe/=2,k/=2}function J(ce,Se){return 1===iA?ce[Se]:ce.readUInt16BE(Se*iA)}if(DA){var te=-1;for($A=k;$AkA&&(k=kA-Xe),$A=k;$A>=0;$A--){for(var QA=!0,JA=0;JADA&&(aA=DA):aA=DA;var kA,iA=T.length;for(aA>iA/2&&(aA=iA/2),kA=0;kA>8,iA.push(k%256),iA.push(aA);return iA}(T,BA.length-k),BA,k,aA)}function NA(BA,T,k){return f.fromByteArray(0===T&&k===BA.length?BA:BA.slice(T,k))}function zA(BA,T,k){k=Math.min(BA.length,k);for(var aA=[],DA=T;DA239?4:iA>223?3:iA>191?2:1;if(DA+Xe<=k){var J=void 0,$A=void 0,te=void 0,QA=void 0;switch(Xe){case 1:iA<128&&(kA=iA);break;case 2:128==(192&(J=BA[DA+1]))&&(QA=(31&iA)<<6|63&J)>127&&(kA=QA);break;case 3:$A=BA[DA+2],128==(192&(J=BA[DA+1]))&&128==(192&$A)&&(QA=(15&iA)<<12|(63&J)<<6|63&$A)>2047&&(QA<55296||QA>57343)&&(kA=QA);break;case 4:$A=BA[DA+2],te=BA[DA+3],128==(192&(J=BA[DA+1]))&&128==(192&$A)&&128==(192&te)&&(QA=(15&iA)<<18|(63&J)<<12|(63&$A)<<6|63&te)>65535&&QA<1114112&&(kA=QA)}}null===kA?(kA=65533,Xe=1):kA>65535&&(aA.push((kA-=65536)>>>10&1023|55296),kA=56320|1023&kA),aA.push(kA),DA+=Xe}return function mA(BA){var T=BA.length;if(T<=O)return String.fromCharCode.apply(String,BA);for(var k="",aA=0;aADA.length?(n.isBuffer(kA)||(kA=n.from(kA)),kA.copy(DA,iA)):Uint8Array.prototype.set.call(DA,kA,iA);else{if(!n.isBuffer(kA))throw new TypeError('"list" argument must be an Array of Buffers');kA.copy(DA,iA)}iA+=kA.length}return DA},n.byteLength=b,n.prototype._isBuffer=!0,n.prototype.swap16=function(){var T=this.length;if(T%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var k=0;kk&&(T+=" ... "),""},a&&(n.prototype[a]=n.prototype.inspect),n.prototype.compare=function(T,k,aA,DA,iA){if(Ce(T,Uint8Array)&&(T=n.from(T,T.offset,T.byteLength)),!n.isBuffer(T))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof T);if(void 0===k&&(k=0),void 0===aA&&(aA=T?T.length:0),void 0===DA&&(DA=0),void 0===iA&&(iA=this.length),k<0||aA>T.length||DA<0||iA>this.length)throw new RangeError("out of range index");if(DA>=iA&&k>=aA)return 0;if(DA>=iA)return-1;if(k>=aA)return 1;if(this===T)return 0;for(var kA=(iA>>>=0)-(DA>>>=0),Xe=(aA>>>=0)-(k>>>=0),J=Math.min(kA,Xe),$A=this.slice(DA,iA),te=T.slice(k,aA),QA=0;QA>>=0,isFinite(aA)?(aA>>>=0,void 0===DA&&(DA="utf8")):(DA=aA,aA=void 0)}var iA=this.length-k;if((void 0===aA||aA>iA)&&(aA=iA),T.length>0&&(aA<0||k<0)||k>this.length)throw new RangeError("Attempt to write outside buffer bounds");DA||(DA="utf8");for(var kA=!1;;)switch(DA){case"hex":return fA(this,T,k,aA);case"utf8":case"utf-8":return _(this,T,k,aA);case"ascii":case"latin1":case"binary":return CA(this,T,k,aA);case"base64":return KA(this,T,k,aA);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return pA(this,T,k,aA);default:if(kA)throw new TypeError("Unknown encoding: "+DA);DA=(""+DA).toLowerCase(),kA=!0}},n.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var O=4096;function tA(BA,T,k){var aA="";k=Math.min(BA.length,k);for(var DA=T;DAaA)&&(k=aA);for(var DA="",iA=T;iAk)throw new RangeError("Trying to access beyond buffer length")}function j(BA,T,k,aA,DA,iA){if(!n.isBuffer(BA))throw new TypeError('"buffer" argument must be a Buffer instance');if(T>DA||TBA.length)throw new RangeError("Index out of range")}function U(BA,T,k,aA,DA){SA(T,aA,DA,BA,k,7);var iA=Number(T&BigInt(4294967295));BA[k++]=iA,BA[k++]=iA>>=8,BA[k++]=iA>>=8,BA[k++]=iA>>=8;var kA=Number(T>>BigInt(32)&BigInt(4294967295));return BA[k++]=kA,BA[k++]=kA>>=8,BA[k++]=kA>>=8,BA[k++]=kA>>=8,k}function rA(BA,T,k,aA,DA){SA(T,aA,DA,BA,k,7);var iA=Number(T&BigInt(4294967295));BA[k+7]=iA,BA[k+6]=iA>>=8,BA[k+5]=iA>>=8,BA[k+4]=iA>>=8;var kA=Number(T>>BigInt(32)&BigInt(4294967295));return BA[k+3]=kA,BA[k+2]=kA>>=8,BA[k+1]=kA>>=8,BA[k]=kA>>=8,k+8}function AA(BA,T,k,aA,DA,iA){if(k+aA>BA.length)throw new RangeError("Index out of range");if(k<0)throw new RangeError("Index out of range")}function PA(BA,T,k,aA,DA){return T=+T,k>>>=0,DA||AA(BA,0,k,4),B.write(BA,T,k,aA,23,4),k+4}function IA(BA,T,k,aA,DA){return T=+T,k>>>=0,DA||AA(BA,0,k,8),B.write(BA,T,k,aA,52,8),k+8}n.prototype.slice=function(T,k){var aA=this.length;(T=~~T)<0?(T+=aA)<0&&(T=0):T>aA&&(T=aA),(k=void 0===k?aA:~~k)<0?(k+=aA)<0&&(k=0):k>aA&&(k=aA),k>>=0,k>>>=0,aA||GA(T,k,this.length);for(var DA=this[T],iA=1,kA=0;++kA>>=0,k>>>=0,aA||GA(T,k,this.length);for(var DA=this[T+--k],iA=1;k>0&&(iA*=256);)DA+=this[T+--k]*iA;return DA},n.prototype.readUint8=n.prototype.readUInt8=function(T,k){return T>>>=0,k||GA(T,1,this.length),this[T]},n.prototype.readUint16LE=n.prototype.readUInt16LE=function(T,k){return T>>>=0,k||GA(T,2,this.length),this[T]|this[T+1]<<8},n.prototype.readUint16BE=n.prototype.readUInt16BE=function(T,k){return T>>>=0,k||GA(T,2,this.length),this[T]<<8|this[T+1]},n.prototype.readUint32LE=n.prototype.readUInt32LE=function(T,k){return T>>>=0,k||GA(T,4,this.length),(this[T]|this[T+1]<<8|this[T+2]<<16)+16777216*this[T+3]},n.prototype.readUint32BE=n.prototype.readUInt32BE=function(T,k){return T>>>=0,k||GA(T,4,this.length),16777216*this[T]+(this[T+1]<<16|this[T+2]<<8|this[T+3])},n.prototype.readBigUInt64LE=Fe(function(T){EA(T>>>=0,"offset");var k=this[T],aA=this[T+7];(void 0===k||void 0===aA)&&WA(T,this.length-8);var DA=k+this[++T]*Math.pow(2,8)+this[++T]*Math.pow(2,16)+this[++T]*Math.pow(2,24),iA=this[++T]+this[++T]*Math.pow(2,8)+this[++T]*Math.pow(2,16)+aA*Math.pow(2,24);return BigInt(DA)+(BigInt(iA)<>>=0,"offset");var k=this[T],aA=this[T+7];(void 0===k||void 0===aA)&&WA(T,this.length-8);var DA=k*Math.pow(2,24)+this[++T]*Math.pow(2,16)+this[++T]*Math.pow(2,8)+this[++T],iA=this[++T]*Math.pow(2,24)+this[++T]*Math.pow(2,16)+this[++T]*Math.pow(2,8)+aA;return(BigInt(DA)<>>=0,k>>>=0,aA||GA(T,k,this.length);for(var DA=this[T],iA=1,kA=0;++kA=(iA*=128)&&(DA-=Math.pow(2,8*k)),DA},n.prototype.readIntBE=function(T,k,aA){T>>>=0,k>>>=0,aA||GA(T,k,this.length);for(var DA=k,iA=1,kA=this[T+--DA];DA>0&&(iA*=256);)kA+=this[T+--DA]*iA;return kA>=(iA*=128)&&(kA-=Math.pow(2,8*k)),kA},n.prototype.readInt8=function(T,k){return T>>>=0,k||GA(T,1,this.length),128&this[T]?-1*(255-this[T]+1):this[T]},n.prototype.readInt16LE=function(T,k){T>>>=0,k||GA(T,2,this.length);var aA=this[T]|this[T+1]<<8;return 32768&aA?4294901760|aA:aA},n.prototype.readInt16BE=function(T,k){T>>>=0,k||GA(T,2,this.length);var aA=this[T+1]|this[T]<<8;return 32768&aA?4294901760|aA:aA},n.prototype.readInt32LE=function(T,k){return T>>>=0,k||GA(T,4,this.length),this[T]|this[T+1]<<8|this[T+2]<<16|this[T+3]<<24},n.prototype.readInt32BE=function(T,k){return T>>>=0,k||GA(T,4,this.length),this[T]<<24|this[T+1]<<16|this[T+2]<<8|this[T+3]},n.prototype.readBigInt64LE=Fe(function(T){EA(T>>>=0,"offset");var k=this[T],aA=this[T+7];(void 0===k||void 0===aA)&&WA(T,this.length-8);var DA=this[T+4]+this[T+5]*Math.pow(2,8)+this[T+6]*Math.pow(2,16)+(aA<<24);return(BigInt(DA)<>>=0,"offset");var k=this[T],aA=this[T+7];(void 0===k||void 0===aA)&&WA(T,this.length-8);var DA=(k<<24)+this[++T]*Math.pow(2,16)+this[++T]*Math.pow(2,8)+this[++T];return(BigInt(DA)<>>=0,k||GA(T,4,this.length),B.read(this,T,!0,23,4)},n.prototype.readFloatBE=function(T,k){return T>>>=0,k||GA(T,4,this.length),B.read(this,T,!1,23,4)},n.prototype.readDoubleLE=function(T,k){return T>>>=0,k||GA(T,8,this.length),B.read(this,T,!0,52,8)},n.prototype.readDoubleBE=function(T,k){return T>>>=0,k||GA(T,8,this.length),B.read(this,T,!1,52,8)},n.prototype.writeUintLE=n.prototype.writeUIntLE=function(T,k,aA,DA){T=+T,k>>>=0,aA>>>=0,DA||j(this,T,k,aA,Math.pow(2,8*aA)-1,0);var kA=1,Xe=0;for(this[k]=255&T;++Xe>>=0,aA>>>=0,DA||j(this,T,k,aA,Math.pow(2,8*aA)-1,0);var kA=aA-1,Xe=1;for(this[k+kA]=255&T;--kA>=0&&(Xe*=256);)this[k+kA]=T/Xe&255;return k+aA},n.prototype.writeUint8=n.prototype.writeUInt8=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,1,255,0),this[k]=255&T,k+1},n.prototype.writeUint16LE=n.prototype.writeUInt16LE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,2,65535,0),this[k]=255&T,this[k+1]=T>>>8,k+2},n.prototype.writeUint16BE=n.prototype.writeUInt16BE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,2,65535,0),this[k]=T>>>8,this[k+1]=255&T,k+2},n.prototype.writeUint32LE=n.prototype.writeUInt32LE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,4,4294967295,0),this[k+3]=T>>>24,this[k+2]=T>>>16,this[k+1]=T>>>8,this[k]=255&T,k+4},n.prototype.writeUint32BE=n.prototype.writeUInt32BE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,4,4294967295,0),this[k]=T>>>24,this[k+1]=T>>>16,this[k+2]=T>>>8,this[k+3]=255&T,k+4},n.prototype.writeBigUInt64LE=Fe(function(T,k){return void 0===k&&(k=0),U(this,T,k,BigInt(0),BigInt("0xffffffffffffffff"))}),n.prototype.writeBigUInt64BE=Fe(function(T,k){return void 0===k&&(k=0),rA(this,T,k,BigInt(0),BigInt("0xffffffffffffffff"))}),n.prototype.writeIntLE=function(T,k,aA,DA){if(T=+T,k>>>=0,!DA){var iA=Math.pow(2,8*aA-1);j(this,T,k,aA,iA-1,-iA)}var kA=0,Xe=1,J=0;for(this[k]=255&T;++kA>>=0,!DA){var iA=Math.pow(2,8*aA-1);j(this,T,k,aA,iA-1,-iA)}var kA=aA-1,Xe=1,J=0;for(this[k+kA]=255&T;--kA>=0&&(Xe*=256);)T<0&&0===J&&0!==this[k+kA+1]&&(J=1),this[k+kA]=(T/Xe|0)-J&255;return k+aA},n.prototype.writeInt8=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,1,127,-128),T<0&&(T=255+T+1),this[k]=255&T,k+1},n.prototype.writeInt16LE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,2,32767,-32768),this[k]=255&T,this[k+1]=T>>>8,k+2},n.prototype.writeInt16BE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,2,32767,-32768),this[k]=T>>>8,this[k+1]=255&T,k+2},n.prototype.writeInt32LE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,4,2147483647,-2147483648),this[k]=255&T,this[k+1]=T>>>8,this[k+2]=T>>>16,this[k+3]=T>>>24,k+4},n.prototype.writeInt32BE=function(T,k,aA){return T=+T,k>>>=0,aA||j(this,T,k,4,2147483647,-2147483648),T<0&&(T=4294967295+T+1),this[k]=T>>>24,this[k+1]=T>>>16,this[k+2]=T>>>8,this[k+3]=255&T,k+4},n.prototype.writeBigInt64LE=Fe(function(T,k){return void 0===k&&(k=0),U(this,T,k,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),n.prototype.writeBigInt64BE=Fe(function(T,k){return void 0===k&&(k=0),rA(this,T,k,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),n.prototype.writeFloatLE=function(T,k,aA){return PA(this,T,k,!0,aA)},n.prototype.writeFloatBE=function(T,k,aA){return PA(this,T,k,!1,aA)},n.prototype.writeDoubleLE=function(T,k,aA){return IA(this,T,k,!0,aA)},n.prototype.writeDoubleBE=function(T,k,aA){return IA(this,T,k,!1,aA)},n.prototype.copy=function(T,k,aA,DA){if(!n.isBuffer(T))throw new TypeError("argument should be a Buffer");if(aA||(aA=0),!DA&&0!==DA&&(DA=this.length),k>=T.length&&(k=T.length),k||(k=0),DA>0&&DA=this.length)throw new RangeError("Index out of range");if(DA<0)throw new RangeError("sourceEnd out of bounds");DA>this.length&&(DA=this.length),T.length-k>>=0,aA=void 0===aA?this.length:aA>>>0,T||(T=0),"number"==typeof T)for(kA=k;kA=aA+4;k-=3)T="_"+BA.slice(k-3,k)+T;return""+BA.slice(0,k)+T}function SA(BA,T,k,aA,DA,iA){if(BA>k||BA3?0===T||T===BigInt(0)?">= 0"+kA+" and < 2"+kA+" ** "+8*(iA+1)+kA:">= -(2"+kA+" ** "+(8*(iA+1)-1)+kA+") and < 2 ** "+(8*(iA+1)-1)+kA:">= "+T+kA+" and <= "+k+kA,new cA.ERR_OUT_OF_RANGE("value",Xe,BA)}!function xA(BA,T,k){EA(T,"offset"),(void 0===BA[T]||void 0===BA[T+k])&&WA(T,BA.length-(k+1))}(aA,DA,iA)}function EA(BA,T){if("number"!=typeof BA)throw new cA.ERR_INVALID_ARG_TYPE(T,"number",BA)}function WA(BA,T,k){throw Math.floor(BA)!==BA?(EA(BA,k),new cA.ERR_OUT_OF_RANGE(k||"offset","an integer",BA)):T<0?new cA.ERR_BUFFER_OUT_OF_BOUNDS:new cA.ERR_OUT_OF_RANGE(k||"offset",">= "+(k?1:0)+" and <= "+T,BA)}dA("ERR_BUFFER_OUT_OF_BOUNDS",function(BA){return BA?BA+" is outside of buffer bounds":"Attempt to access memory outside buffer bounds"},RangeError),dA("ERR_INVALID_ARG_TYPE",function(BA,T){return'The "'+BA+'" argument must be of type number. Received type '+typeof T},TypeError),dA("ERR_OUT_OF_RANGE",function(BA,T,k){var aA='The value of "'+BA+'" is out of range.',DA=k;return Number.isInteger(k)&&Math.abs(k)>Math.pow(2,32)?DA=vA(String(k)):"bigint"==typeof k&&(DA=String(k),(k>Math.pow(BigInt(2),BigInt(32))||k<-Math.pow(BigInt(2),BigInt(32)))&&(DA=vA(DA)),DA+="n"),aA+" It must be "+T+". Received "+DA},RangeError);var ge=/[^+/0-9A-Za-z-_]/g;function le(BA,T){T=T||1/0;for(var k,aA=BA.length,DA=null,iA=[],kA=0;kA55295&&k<57344){if(!DA){if(k>56319){(T-=3)>-1&&iA.push(239,191,189);continue}if(kA+1===aA){(T-=3)>-1&&iA.push(239,191,189);continue}DA=k;continue}if(k<56320){(T-=3)>-1&&iA.push(239,191,189),DA=k;continue}k=65536+(DA-55296<<10|k-56320)}else DA&&(T-=3)>-1&&iA.push(239,191,189);if(DA=null,k<128){if((T-=1)<0)break;iA.push(k)}else if(k<2048){if((T-=2)<0)break;iA.push(k>>6|192,63&k|128)}else if(k<65536){if((T-=3)<0)break;iA.push(k>>12|224,k>>6&63|128,63&k|128)}else{if(!(k<1114112))throw new Error("Invalid code point");if((T-=4)<0)break;iA.push(k>>18|240,k>>12&63|128,k>>6&63|128,63&k|128)}}return iA}function HA(BA){return f.toByteArray(function Be(BA){if((BA=(BA=BA.split("=")[0]).trim().replace(ge,"")).length<2)return"";for(;BA.length%4!=0;)BA+="=";return BA}(BA))}function _A(BA,T,k,aA){var DA;for(DA=0;DA=T.length||DA>=BA.length);++DA)T[DA+k]=BA[DA];return DA}function Ce(BA,T){return BA instanceof T||null!=BA&&null!=BA.constructor&&null!=BA.constructor.name&&BA.constructor.name===T.name}function me(BA){return BA!=BA}var De=function(){for(var BA="0123456789abcdef",T=new Array(256),k=0;k<16;++k)for(var aA=16*k,DA=0;DA<16;++DA)T[aA+DA]=BA[k]+BA[DA];return T}();function Fe(BA){return typeof BigInt>"u"?MA:BA}function MA(){throw new Error("BigInt not supported")}},38719:function(Y,A,r){"use strict";r(10720),r(14032),Y.exports=typeof ArrayBuffer<"u"&&typeof DataView<"u"},36597:function(Y,A,r){"use strict";var fA,_,CA,g=r(38719),i=r(15567),s=r(32010),o=r(94578),m=r(24517),u=r(20340),f=r(52564),B=r(68664),a=r(48914),d=r(13711),h=r(95892).f,E=r(70176),n=r(69548),C=r(3840),P=r(38688),M=r(46859),N=s.Int8Array,Q=N&&N.prototype,X=s.Uint8ClampedArray,D=X&&X.prototype,F=N&&n(N),y=Q&&n(Q),K=Object.prototype,v=s.TypeError,b=P("toStringTag"),w=M("TYPED_ARRAY_TAG"),Z=M("TYPED_ARRAY_CONSTRUCTOR"),oA=g&&!!C&&"Opera"!==f(s.opera),q=!1,KA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},pA={BigInt64Array:8,BigUint64Array:8},zA=function(yA){if(!m(yA))return!1;var GA=f(yA);return u(KA,GA)||u(pA,GA)};for(fA in KA)(CA=(_=s[fA])&&_.prototype)?a(CA,Z,_):oA=!1;for(fA in pA)(CA=(_=s[fA])&&_.prototype)&&a(CA,Z,_);if((!oA||!o(F)||F===Function.prototype)&&(F=function(){throw v("Incorrect invocation")},oA))for(fA in KA)s[fA]&&C(s[fA],F);if((!oA||!y||y===K)&&(y=F.prototype,oA))for(fA in KA)s[fA]&&C(s[fA].prototype,y);if(oA&&n(D)!==y&&C(D,y),i&&!u(y,b))for(fA in q=!0,h(y,b,{get:function(){return m(this)?this[w]:void 0}}),KA)s[fA]&&a(s[fA],w,fA);Y.exports={NATIVE_ARRAY_BUFFER_VIEWS:oA,TYPED_ARRAY_CONSTRUCTOR:Z,TYPED_ARRAY_TAG:q&&w,aTypedArray:function(yA){if(zA(yA))return yA;throw v("Target is not a typed array")},aTypedArrayConstructor:function(yA){if(o(yA)&&(!C||E(F,yA)))return yA;throw v(B(yA)+" is not a typed array constructor")},exportTypedArrayMethod:function(yA,GA,j){if(i){if(j)for(var U in KA){var rA=s[U];if(rA&&u(rA.prototype,yA))try{delete rA.prototype[yA]}catch{}}(!y[yA]||j)&&d(y,yA,j?GA:oA&&Q[yA]||GA)}},exportTypedArrayStaticMethod:function(yA,GA,j){var U,rA;if(i){if(C){if(j)for(U in KA)if((rA=s[U])&&u(rA,yA))try{delete rA[yA]}catch{}if(F[yA]&&!j)return;try{return d(F,yA,j?GA:oA&&F[yA]||GA)}catch{}}for(U in KA)(rA=s[U])&&(!rA[yA]||j)&&d(rA,yA,GA)}},isView:function(yA){if(!m(yA))return!1;var GA=f(yA);return"DataView"===GA||u(KA,GA)||u(pA,GA)},isTypedArray:zA,TypedArray:F,TypedArrayPrototype:y}},89987:function(Y,A,r){"use strict";r(24863);var g=r(32010),i=r(38347),s=r(15567),o=r(38719),m=r(7081),u=r(48914),f=r(15341),B=r(47044),a=r(2868),d=r(26882),h=r(23417),E=r(71265),n=r(64397),C=r(69548),P=r(3840),M=r(6611).f,N=r(95892).f,Q=r(72864),X=r(73163),D=r(15216),F=r(70172),y=m.PROPER,K=m.CONFIGURABLE,v=F.get,b=F.set,w="ArrayBuffer",Z="DataView",oA="prototype",fA="Wrong index",_=g[w],CA=_,KA=CA&&CA[oA],pA=g[Z],NA=pA&&pA[oA],zA=Object.prototype,O=g.Array,mA=g.RangeError,tA=i(Q),$=i([].reverse),hA=n.pack,yA=n.unpack,GA=function(le){return[255&le]},j=function(le){return[255&le,le>>8&255]},U=function(le){return[255&le,le>>8&255,le>>16&255,le>>24&255]},rA=function(le){return le[3]<<24|le[2]<<16|le[1]<<8|le[0]},AA=function(le){return hA(le,23,4)},PA=function(le){return hA(le,52,8)},IA=function(le,we){N(le[oA],we,{get:function(){return v(this)[we]}})},cA=function(le,we,Me,HA){var _A=E(Me),Ce=v(le);if(_A+we>Ce.byteLength)throw mA(fA);var me=v(Ce.buffer).bytes,De=_A+Ce.byteOffset,Fe=X(me,De,De+we);return HA?Fe:$(Fe)},dA=function(le,we,Me,HA,_A,Ce){var me=E(Me),De=v(le);if(me+we>De.byteLength)throw mA(fA);for(var Fe=v(De.buffer).bytes,MA=me+De.byteOffset,BA=HA(+_A),T=0;TSA;)(EA=xA[SA++])in CA||u(CA,EA,_[EA]);KA.constructor=CA}P&&C(NA)!==zA&&P(NA,zA);var WA=new pA(new CA(2)),ge=i(NA.setInt8);WA.setInt8(0,2147483648),WA.setInt8(1,2147483649),(WA.getInt8(0)||!WA.getInt8(1))&&f(NA,{setInt8:function(le,we){ge(this,le,we<<24>>24)},setUint8:function(le,we){ge(this,le,we<<24>>24)}},{unsafe:!0})}else KA=(CA=function(le){a(this,KA);var we=E(le);b(this,{bytes:tA(O(we),0),byteLength:we}),s||(this.byteLength=we)})[oA],NA=(pA=function(le,we,Me){a(this,NA),a(le,KA);var HA=v(le).byteLength,_A=d(we);if(_A<0||_A>HA)throw mA("Wrong offset");if(_A+(Me=void 0===Me?HA-_A:h(Me))>HA)throw mA("Wrong length");b(this,{buffer:le,byteLength:Me,byteOffset:_A}),s||(this.buffer=le,this.byteLength=Me,this.byteOffset=_A)})[oA],s&&(IA(CA,"byteLength"),IA(pA,"buffer"),IA(pA,"byteLength"),IA(pA,"byteOffset")),f(NA,{getInt8:function(le){return cA(this,1,le)[0]<<24>>24},getUint8:function(le){return cA(this,1,le)[0]},getInt16:function(le){var we=cA(this,2,le,arguments.length>1?arguments[1]:void 0);return(we[1]<<8|we[0])<<16>>16},getUint16:function(le){var we=cA(this,2,le,arguments.length>1?arguments[1]:void 0);return we[1]<<8|we[0]},getInt32:function(le){return rA(cA(this,4,le,arguments.length>1?arguments[1]:void 0))},getUint32:function(le){return rA(cA(this,4,le,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(le){return yA(cA(this,4,le,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(le){return yA(cA(this,8,le,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(le,we){dA(this,1,le,GA,we)},setUint8:function(le,we){dA(this,1,le,GA,we)},setInt16:function(le,we){dA(this,2,le,j,we,arguments.length>2?arguments[2]:void 0)},setUint16:function(le,we){dA(this,2,le,j,we,arguments.length>2?arguments[2]:void 0)},setInt32:function(le,we){dA(this,4,le,U,we,arguments.length>2?arguments[2]:void 0)},setUint32:function(le,we){dA(this,4,le,U,we,arguments.length>2?arguments[2]:void 0)},setFloat32:function(le,we){dA(this,4,le,AA,we,arguments.length>2?arguments[2]:void 0)},setFloat64:function(le,we){dA(this,8,le,PA,we,arguments.length>2?arguments[2]:void 0)}});D(CA,w),D(pA,Z),Y.exports={ArrayBuffer:CA,DataView:pA}},10720:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(89987),o=r(51334),m="ArrayBuffer",u=s[m];g({global:!0,forced:i[m]!==u},{ArrayBuffer:u}),o(m)},6993:function(Y,A,r){"use strict";var g;Y.exports=(g=r(34559),r(49300),r(72342),r(36572),r(28395),function(){var i=g,o=i.lib.BlockCipher,m=i.algo,u=[],f=[],B=[],a=[],d=[],h=[],E=[],n=[],C=[],P=[];!function(){for(var Q=[],X=0;X<256;X++)Q[X]=X<128?X<<1:X<<1^283;var D=0,F=0;for(X=0;X<256;X++){var y=F^F<<1^F<<2^F<<3^F<<4;u[D]=y=y>>>8^255&y^99,f[y]=D;var w,K=Q[D],v=Q[K],b=Q[v];B[D]=(w=257*Q[y]^16843008*y)<<24|w>>>8,a[D]=w<<16|w>>>16,d[D]=w<<8|w>>>24,h[D]=w,E[y]=(w=16843009*b^65537*v^257*K^16843008*D)<<24|w>>>8,n[y]=w<<16|w>>>16,C[y]=w<<8|w>>>24,P[y]=w,D?(D=K^Q[Q[Q[b^K]]],F^=Q[Q[F]]):D=F=1}}();var M=[0,1,2,4,8,16,32,64,128,27,54],N=m.AES=o.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var D=this._keyPriorReset=this._key,F=D.words,y=D.sigBytes/4,v=4*((this._nRounds=y+6)+1),b=this._keySchedule=[],w=0;w6&&w%y==4&&(X=u[X>>>24]<<24|u[X>>>16&255]<<16|u[X>>>8&255]<<8|u[255&X]):(X=u[(X=X<<8|X>>>24)>>>24]<<24|u[X>>>16&255]<<16|u[X>>>8&255]<<8|u[255&X],X^=M[w/y|0]<<24),b[w]=b[w-y]^X);for(var Z=this._invKeySchedule=[],oA=0;oA>>24]]^n[u[X>>>16&255]]^C[u[X>>>8&255]]^P[u[255&X]]}}},encryptBlock:function(X,D){this._doCryptBlock(X,D,this._keySchedule,B,a,d,h,u)},decryptBlock:function(X,D){var F=X[D+1];X[D+1]=X[D+3],X[D+3]=F,this._doCryptBlock(X,D,this._invKeySchedule,E,n,C,P,f),F=X[D+1],X[D+1]=X[D+3],X[D+3]=F},_doCryptBlock:function(X,D,F,y,K,v,b,w){for(var Z=this._nRounds,oA=X[D]^F[0],q=X[D+1]^F[1],fA=X[D+2]^F[2],_=X[D+3]^F[3],CA=4,KA=1;KA>>24]^K[q>>>16&255]^v[fA>>>8&255]^b[255&_]^F[CA++],NA=y[q>>>24]^K[fA>>>16&255]^v[_>>>8&255]^b[255&oA]^F[CA++],zA=y[fA>>>24]^K[_>>>16&255]^v[oA>>>8&255]^b[255&q]^F[CA++],O=y[_>>>24]^K[oA>>>16&255]^v[q>>>8&255]^b[255&fA]^F[CA++];oA=pA,q=NA,fA=zA,_=O}pA=(w[oA>>>24]<<24|w[q>>>16&255]<<16|w[fA>>>8&255]<<8|w[255&_])^F[CA++],NA=(w[q>>>24]<<24|w[fA>>>16&255]<<16|w[_>>>8&255]<<8|w[255&oA])^F[CA++],zA=(w[fA>>>24]<<24|w[_>>>16&255]<<16|w[oA>>>8&255]<<8|w[255&q])^F[CA++],O=(w[_>>>24]<<24|w[oA>>>16&255]<<16|w[q>>>8&255]<<8|w[255&fA])^F[CA++],X[D]=pA,X[D+1]=NA,X[D+2]=zA,X[D+3]=O},keySize:8});i.AES=o._createHelper(N)}(),g.AES)},83122:function(Y,A,r){"use strict";var g;Y.exports=(g=r(34559),r(49300),r(72342),r(36572),r(28395),function(){var i=g,o=i.lib.BlockCipher,u=16,f=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],B=[[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]],a={pbox:[],sbox:[]};function d(P,M){var F=P.sbox[0][M>>24&255]+P.sbox[1][M>>16&255];return(F^=P.sbox[2][M>>8&255])+P.sbox[3][255&M]}function h(P,M,N){for(var D,Q=M,X=N,F=0;F=N&&(D=0);for(var y=0,K=0,v=0,b=0;b1;--F)D=Q^=P.pbox[F],Q=X=d(P,Q)^X,X=D;return D=Q,Q=X,X=D,{left:Q^=P.pbox[0],right:X^=P.pbox[1]}}(a,M[N],M[N+1]);M[N]=Q.left,M[N+1]=Q.right},blockSize:2,keySize:4,ivSize:2});i.Blowfish=o._createHelper(C)}(),g.Blowfish)},28395:function(Y,A,r){"use strict";var g,s,o,m,u,f,d,E,n,P,M,N,X,F,K,v,w,Z;r(39081),r(20731),r(23913),r(14032),r(57114),Y.exports=(g=r(34559),r(36572),void(g.lib.Cipher||(u=(o=(s=g).lib).WordArray,d=s.enc.Base64,E=s.algo.EvpKDF,n=o.Cipher=(f=o.BufferedBlockAlgorithm).extend({cfg:(m=o.Base).extend(),createEncryptor:function(q,fA){return this.create(this._ENC_XFORM_MODE,q,fA)},createDecryptor:function(q,fA){return this.create(this._DEC_XFORM_MODE,q,fA)},init:function(q,fA,_){this.cfg=this.cfg.extend(_),this._xformMode=q,this._key=fA,this.reset()},reset:function(){f.reset.call(this),this._doReset()},process:function(q){return this._append(q),this._process()},finalize:function(q){return q&&this._append(q),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function oA(q){return"string"==typeof q?Z:v}return function(q){return{encrypt:function(_,CA,KA){return oA(CA).encrypt(q,_,CA,KA)},decrypt:function(_,CA,KA){return oA(CA).decrypt(q,_,CA,KA)}}}}()}),o.StreamCipher=n.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),P=s.mode={},M=o.BlockCipherMode=m.extend({createEncryptor:function(q,fA){return this.Encryptor.create(q,fA)},createDecryptor:function(q,fA){return this.Decryptor.create(q,fA)},init:function(q,fA){this._cipher=q,this._iv=fA}}),N=P.CBC=function(){var oA=M.extend();function q(fA,_,CA){var KA,pA=this._iv;pA?(KA=pA,this._iv=void 0):KA=this._prevBlock;for(var NA=0;NA>>2]}},o.BlockCipher=n.extend({cfg:n.cfg.extend({mode:N,padding:X}),reset:function(){var q;n.reset.call(this);var fA=this.cfg,_=fA.iv,CA=fA.mode;this._xformMode==this._ENC_XFORM_MODE?q=CA.createEncryptor:(q=CA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==q?this._mode.init(this,_&&_.words):(this._mode=q.call(CA,this,_&&_.words),this._mode.__creator=q)},_doProcessBlock:function(q,fA){this._mode.processBlock(q,fA)},_doFinalize:function(){var q,fA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(fA.pad(this._data,this.blockSize),q=this._process(!0)):(q=this._process(!0),fA.unpad(q)),q},blockSize:4}),F=o.CipherParams=m.extend({init:function(q){this.mixIn(q)},toString:function(q){return(q||this.formatter).stringify(this)}}),K=(s.format={}).OpenSSL={stringify:function(q){var _=q.ciphertext,CA=q.salt;return(CA?u.create([1398893684,1701076831]).concat(CA).concat(_):_).toString(d)},parse:function(q){var fA,_=d.parse(q),CA=_.words;return 1398893684==CA[0]&&1701076831==CA[1]&&(fA=u.create(CA.slice(2,4)),CA.splice(0,4),_.sigBytes-=16),F.create({ciphertext:_,salt:fA})}},v=o.SerializableCipher=m.extend({cfg:m.extend({format:K}),encrypt:function(q,fA,_,CA){CA=this.cfg.extend(CA);var KA=q.createEncryptor(_,CA),pA=KA.finalize(fA),NA=KA.cfg;return F.create({ciphertext:pA,key:_,iv:NA.iv,algorithm:q,mode:NA.mode,padding:NA.padding,blockSize:q.blockSize,formatter:CA.format})},decrypt:function(q,fA,_,CA){return CA=this.cfg.extend(CA),fA=this._parse(fA,CA.format),q.createDecryptor(_,CA).finalize(fA.ciphertext)},_parse:function(q,fA){return"string"==typeof q?fA.parse(q,this):q}}),w=(s.kdf={}).OpenSSL={execute:function(q,fA,_,CA,KA){if(CA||(CA=u.random(8)),KA)var pA=E.create({keySize:fA+_,hasher:KA}).compute(q,CA);else pA=E.create({keySize:fA+_}).compute(q,CA);var NA=u.create(pA.words.slice(fA),4*_);return pA.sigBytes=4*fA,F.create({key:pA,iv:NA,salt:CA})}},Z=o.PasswordBasedCipher=v.extend({cfg:v.cfg.extend({kdf:w}),encrypt:function(q,fA,_,CA){var KA=(CA=this.cfg.extend(CA)).kdf.execute(_,q.keySize,q.ivSize,CA.salt,CA.hasher);CA.iv=KA.iv;var pA=v.encrypt.call(this,q,fA,KA.key,CA);return pA.mixIn(KA),pA},decrypt:function(q,fA,_,CA){CA=this.cfg.extend(CA),fA=this._parse(fA,CA.format);var KA=CA.kdf.execute(_,q.keySize,q.ivSize,fA.salt,CA.hasher);return CA.iv=KA.iv,v.decrypt.call(this,q,fA,KA.key,CA)}}))))},34559:function(Y,A,r){"use strict";var i;r(39081),r(81755),r(94845),r(20731),r(23913),r(10720),r(14032),r(57114),r(59735),r(73663),r(29883),r(35471),r(21012),r(88997),r(97464),r(2857),r(94715),r(13624),r(91132),r(62514),r(24597),r(88042),r(4660),r(92451),r(44206),r(66288),r(13250),r(3858),r(84538),r(64793),r(74202),r(52529),r(49109),i=function(){var g=g||function(i){var o;if(typeof window<"u"&&window.crypto&&(o=window.crypto),typeof self<"u"&&self.crypto&&(o=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(o=globalThis.crypto),!o&&typeof window<"u"&&window.msCrypto&&(o=window.msCrypto),!o&&typeof r.g<"u"&&r.g.crypto&&(o=r.g.crypto),!o)try{o=r(50477)}catch{}var m=function(){if(o){if("function"==typeof o.getRandomValues)try{return o.getRandomValues(new Uint32Array(1))[0]}catch{}if("function"==typeof o.randomBytes)try{return o.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},u=Object.create||function(){function Q(){}return function(X){var D;return Q.prototype=X,D=new Q,Q.prototype=null,D}}(),f={},B=f.lib={},a=B.Base=function(){return{extend:function(X){var D=u(this);return X&&D.mixIn(X),(!D.hasOwnProperty("init")||this.init===D.init)&&(D.init=function(){D.$super.init.apply(this,arguments)}),D.init.prototype=D,D.$super=this,D},create:function(){var X=this.extend();return X.init.apply(X,arguments),X},init:function(){},mixIn:function(X){for(var D in X)X.hasOwnProperty(D)&&(this[D]=X[D]);X.hasOwnProperty("toString")&&(this.toString=X.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),d=B.WordArray=a.extend({init:function(X,D){X=this.words=X||[],this.sigBytes=null!=D?D:4*X.length},toString:function(X){return(X||E).stringify(this)},concat:function(X){var D=this.words,F=X.words,y=this.sigBytes,K=X.sigBytes;if(this.clamp(),y%4)for(var v=0;v>>2]|=(F[v>>>2]>>>24-v%4*8&255)<<24-(y+v)%4*8;else for(var w=0;w>>2]=F[w>>>2];return this.sigBytes+=K,this},clamp:function(){var X=this.words,D=this.sigBytes;X[D>>>2]&=4294967295<<32-D%4*8,X.length=i.ceil(D/4)},clone:function(){var X=a.clone.call(this);return X.words=this.words.slice(0),X},random:function(X){for(var D=[],F=0;F>>2]>>>24-K%4*8&255;y.push((v>>>4).toString(16)),y.push((15&v).toString(16))}return y.join("")},parse:function(X){for(var D=X.length,F=[],y=0;y>>3]|=parseInt(X.substr(y,2),16)<<24-y%8*4;return new d.init(F,D/2)}},n=h.Latin1={stringify:function(X){for(var D=X.words,F=X.sigBytes,y=[],K=0;K>>2]>>>24-K%4*8&255));return y.join("")},parse:function(X){for(var D=X.length,F=[],y=0;y>>2]|=(255&X.charCodeAt(y))<<24-y%4*8;return new d.init(F,D)}},C=h.Utf8={stringify:function(X){try{return decodeURIComponent(escape(n.stringify(X)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(X){return n.parse(unescape(encodeURIComponent(X)))}},P=B.BufferedBlockAlgorithm=a.extend({reset:function(){this._data=new d.init,this._nDataBytes=0},_append:function(X){"string"==typeof X&&(X=C.parse(X)),this._data.concat(X),this._nDataBytes+=X.sigBytes},_process:function(X){var D,F=this._data,y=F.words,K=F.sigBytes,v=this.blockSize,w=K/(4*v),Z=(w=X?i.ceil(w):i.max((0|w)-this._minBufferSize,0))*v,oA=i.min(4*Z,K);if(Z){for(var q=0;q>>2]>>>24-C%4*8&255)<<16|(d[C+1>>>2]>>>24-(C+1)%4*8&255)<<8|d[C+2>>>2]>>>24-(C+2)%4*8&255,X=0;X<4&&C+.75*X>>6*(3-X)&63));var D=E.charAt(64);if(D)for(;n.length%4;)n.push(D);return n.join("")},parse:function(a){var d=a.length,h=this._map,E=this._reverseMap;if(!E){E=this._reverseMap=[];for(var n=0;n>>6-n%4*2;h[E>>>2]|=(C|P)<<24-E%4*8,E++}return o.create(h,E)}(a,d,E)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},g.enc.Base64)},375:function(Y,A,r){"use strict";var g,o;r(94845),Y.exports=(g=r(34559),o=g.lib.WordArray,g.enc.Base64url={stringify:function(a,d){void 0===d&&(d=!0);var h=a.words,E=a.sigBytes,n=d?this._safe_map:this._map;a.clamp();for(var C=[],P=0;P>>2]>>>24-P%4*8&255)<<16|(h[P+1>>>2]>>>24-(P+1)%4*8&255)<<8|h[P+2>>>2]>>>24-(P+2)%4*8&255,D=0;D<4&&P+.75*D>>6*(3-D)&63));var F=n.charAt(64);if(F)for(;C.length%4;)C.push(F);return C.join("")},parse:function(a,d){void 0===d&&(d=!0);var h=a.length,E=d?this._safe_map:this._map,n=this._reverseMap;if(!n){n=this._reverseMap=[];for(var C=0;C>>6-n%4*2;h[E>>>2]|=(C|P)<<24-E%4*8,E++}return o.create(h,E)}(a,h,n)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},g.enc.Base64url)},56217:function(Y,A,r){"use strict";var g;r(94845),Y.exports=(g=r(34559),function(){var o=g.lib.WordArray,m=g.enc;function f(B){return B<<8&4278255360|B>>>8&16711935}m.Utf16=m.Utf16BE={stringify:function(a){for(var d=a.words,h=a.sigBytes,E=[],n=0;n>>2]>>>16-n%4*8&65535));return E.join("")},parse:function(a){for(var d=a.length,h=[],E=0;E>>1]|=a.charCodeAt(E)<<16-E%2*16;return o.create(h,2*d)}},m.Utf16LE={stringify:function(a){for(var d=a.words,h=a.sigBytes,E=[],n=0;n>>2]>>>16-n%4*8&65535);E.push(String.fromCharCode(C))}return E.join("")},parse:function(a){for(var d=a.length,h=[],E=0;E>>1]|=f(a.charCodeAt(E)<<16-E%2*16);return o.create(h,2*d)}}}(),g.enc.Utf16)},36572:function(Y,A,r){"use strict";var g,i,s,o,m,u,B;r(39081),Y.exports=(g=r(34559),r(76289),r(30443),m=(s=(i=g).lib).WordArray,B=(u=i.algo).EvpKDF=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:u.MD5,iterations:1}),init:function(d){this.cfg=this.cfg.extend(d)},compute:function(d,h){for(var E,n=this.cfg,C=n.hasher.create(),P=m.create(),M=P.words,N=n.keySize,Q=n.iterations;M.lengthn&&(h=d.finalize(h)),h.clamp();for(var C=this._oKey=h.clone(),P=this._iKey=h.clone(),M=C.words,N=P.words,Q=0;Q>>2]|=f[d]<<24-d%4*8;m.call(this,a,B)}else m.apply(this,arguments)};u.prototype=o}}(),g.lib.WordArray},Y.exports=i(r(34559))},72342:function(Y,A,r){"use strict";var g;Y.exports=(g=r(34559),function(i){var s=g,o=s.lib,m=o.WordArray,u=o.Hasher,f=s.algo,B=[];!function(){for(var C=0;C<64;C++)B[C]=4294967296*i.abs(i.sin(C+1))|0}();var a=f.MD5=u.extend({_doReset:function(){this._hash=new m.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(P,M){for(var N=0;N<16;N++){var Q=M+N,X=P[Q];P[Q]=16711935&(X<<8|X>>>24)|4278255360&(X<<24|X>>>8)}var D=this._hash.words,F=P[M+0],y=P[M+1],K=P[M+2],v=P[M+3],b=P[M+4],w=P[M+5],Z=P[M+6],oA=P[M+7],q=P[M+8],fA=P[M+9],_=P[M+10],CA=P[M+11],KA=P[M+12],pA=P[M+13],NA=P[M+14],zA=P[M+15],O=D[0],mA=D[1],tA=D[2],$=D[3];O=d(O,mA,tA,$,F,7,B[0]),$=d($,O,mA,tA,y,12,B[1]),tA=d(tA,$,O,mA,K,17,B[2]),mA=d(mA,tA,$,O,v,22,B[3]),O=d(O,mA,tA,$,b,7,B[4]),$=d($,O,mA,tA,w,12,B[5]),tA=d(tA,$,O,mA,Z,17,B[6]),mA=d(mA,tA,$,O,oA,22,B[7]),O=d(O,mA,tA,$,q,7,B[8]),$=d($,O,mA,tA,fA,12,B[9]),tA=d(tA,$,O,mA,_,17,B[10]),mA=d(mA,tA,$,O,CA,22,B[11]),O=d(O,mA,tA,$,KA,7,B[12]),$=d($,O,mA,tA,pA,12,B[13]),tA=d(tA,$,O,mA,NA,17,B[14]),O=h(O,mA=d(mA,tA,$,O,zA,22,B[15]),tA,$,y,5,B[16]),$=h($,O,mA,tA,Z,9,B[17]),tA=h(tA,$,O,mA,CA,14,B[18]),mA=h(mA,tA,$,O,F,20,B[19]),O=h(O,mA,tA,$,w,5,B[20]),$=h($,O,mA,tA,_,9,B[21]),tA=h(tA,$,O,mA,zA,14,B[22]),mA=h(mA,tA,$,O,b,20,B[23]),O=h(O,mA,tA,$,fA,5,B[24]),$=h($,O,mA,tA,NA,9,B[25]),tA=h(tA,$,O,mA,v,14,B[26]),mA=h(mA,tA,$,O,q,20,B[27]),O=h(O,mA,tA,$,pA,5,B[28]),$=h($,O,mA,tA,K,9,B[29]),tA=h(tA,$,O,mA,oA,14,B[30]),O=E(O,mA=h(mA,tA,$,O,KA,20,B[31]),tA,$,w,4,B[32]),$=E($,O,mA,tA,q,11,B[33]),tA=E(tA,$,O,mA,CA,16,B[34]),mA=E(mA,tA,$,O,NA,23,B[35]),O=E(O,mA,tA,$,y,4,B[36]),$=E($,O,mA,tA,b,11,B[37]),tA=E(tA,$,O,mA,oA,16,B[38]),mA=E(mA,tA,$,O,_,23,B[39]),O=E(O,mA,tA,$,pA,4,B[40]),$=E($,O,mA,tA,F,11,B[41]),tA=E(tA,$,O,mA,v,16,B[42]),mA=E(mA,tA,$,O,Z,23,B[43]),O=E(O,mA,tA,$,fA,4,B[44]),$=E($,O,mA,tA,KA,11,B[45]),tA=E(tA,$,O,mA,zA,16,B[46]),O=n(O,mA=E(mA,tA,$,O,K,23,B[47]),tA,$,F,6,B[48]),$=n($,O,mA,tA,oA,10,B[49]),tA=n(tA,$,O,mA,NA,15,B[50]),mA=n(mA,tA,$,O,w,21,B[51]),O=n(O,mA,tA,$,KA,6,B[52]),$=n($,O,mA,tA,v,10,B[53]),tA=n(tA,$,O,mA,_,15,B[54]),mA=n(mA,tA,$,O,y,21,B[55]),O=n(O,mA,tA,$,q,6,B[56]),$=n($,O,mA,tA,zA,10,B[57]),tA=n(tA,$,O,mA,Z,15,B[58]),mA=n(mA,tA,$,O,pA,21,B[59]),O=n(O,mA,tA,$,b,6,B[60]),$=n($,O,mA,tA,CA,10,B[61]),tA=n(tA,$,O,mA,K,15,B[62]),mA=n(mA,tA,$,O,fA,21,B[63]),D[0]=D[0]+O|0,D[1]=D[1]+mA|0,D[2]=D[2]+tA|0,D[3]=D[3]+$|0},_doFinalize:function(){var P=this._data,M=P.words,N=8*this._nDataBytes,Q=8*P.sigBytes;M[Q>>>5]|=128<<24-Q%32;var X=i.floor(N/4294967296),D=N;M[15+(Q+64>>>9<<4)]=16711935&(X<<8|X>>>24)|4278255360&(X<<24|X>>>8),M[14+(Q+64>>>9<<4)]=16711935&(D<<8|D>>>24)|4278255360&(D<<24|D>>>8),P.sigBytes=4*(M.length+1),this._process();for(var F=this._hash,y=F.words,K=0;K<4;K++){var v=y[K];y[K]=16711935&(v<<8|v>>>24)|4278255360&(v<<24|v>>>8)}return F},clone:function(){var P=u.clone.call(this);return P._hash=this._hash.clone(),P}});function d(C,P,M,N,Q,X,D){var F=C+(P&M|~P&N)+Q+D;return(F<>>32-X)+P}function h(C,P,M,N,Q,X,D){var F=C+(P&N|M&~N)+Q+D;return(F<>>32-X)+P}function E(C,P,M,N,Q,X,D){var F=C+(P^M^N)+Q+D;return(F<>>32-X)+P}function n(C,P,M,N,Q,X,D){var F=C+(M^(P|~N))+Q+D;return(F<>>32-X)+P}s.MD5=u._createHelper(a),s.HmacMD5=u._createHmacHelper(a)}(Math),g.MD5)},2727:function(Y,A,r){"use strict";var g;r(20731),Y.exports=(g=r(34559),r(28395),g.mode.CFB=function(){var i=g.lib.BlockCipherMode.extend();function s(o,m,u,f){var B,a=this._iv;a?(B=a.slice(0),this._iv=void 0):B=this._prevBlock,f.encryptBlock(B,0);for(var d=0;d>24))u+=16777216;else{var f=u>>16&255,B=u>>8&255,a=255&u;255===f?(f=0,255===B?(B=0,255===a?a=0:++a):++B):++f,u=0,u+=f<<16,u+=B<<8,u+=a}return u}var m=i.Encryptor=i.extend({processBlock:function(f,B){var a=this._cipher,d=a.blockSize,h=this._iv,E=this._counter;h&&(E=this._counter=h.slice(0),this._iv=void 0),function o(u){return 0===(u[0]=s(u[0]))&&(u[1]=s(u[1])),u}(E);var n=E.slice(0);a.encryptBlock(n,0);for(var C=0;C>>2]|=f<<24-B%4*8,s.sigBytes+=f},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},g.pad.Ansix923)},99215:function(Y,A,r){"use strict";var g;r(39081),Y.exports=(g=r(34559),r(28395),g.pad.Iso10126={pad:function(s,o){var m=4*o,u=m-s.sigBytes%m;s.concat(g.lib.WordArray.random(u-1)).concat(g.lib.WordArray.create([u<<24],1))},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},g.pad.Iso10126)},43960:function(Y,A,r){"use strict";var g;r(39081),Y.exports=(g=r(34559),r(28395),g.pad.Iso97971={pad:function(s,o){s.concat(g.lib.WordArray.create([2147483648],1)),g.pad.ZeroPadding.pad(s,o)},unpad:function(s){g.pad.ZeroPadding.unpad(s),s.sigBytes--}},g.pad.Iso97971)},16934:function(Y,A,r){"use strict";var g;Y.exports=(g=r(34559),r(28395),g.pad.NoPadding={pad:function(){},unpad:function(){}},g.pad.NoPadding)},40681:function(Y,A,r){"use strict";var g;Y.exports=(g=r(34559),r(28395),g.pad.ZeroPadding={pad:function(s,o){var m=4*o;s.clamp(),s.sigBytes+=m-(s.sigBytes%m||m)},unpad:function(s){var o=s.words,m=s.sigBytes-1;for(m=s.sigBytes-1;m>=0;m--)if(o[m>>>2]>>>24-m%4*8&255){s.sigBytes=m+1;break}}},g.pad.ZeroPadding)},95729:function(Y,A,r){"use strict";var g,i,s,o,m,u,B,a;r(39081),Y.exports=(g=r(34559),r(26739),r(30443),m=(s=(i=g).lib).WordArray,B=(u=i.algo).HMAC,a=u.PBKDF2=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:u.SHA256,iterations:25e4}),init:function(h){this.cfg=this.cfg.extend(h)},compute:function(h,E){for(var n=this.cfg,C=B.create(n.hasher,h),P=m.create(),M=m.create([1]),N=P.words,Q=M.words,X=n.keySize,D=n.iterations;N.length>>16,E[1],E[0]<<16|E[3]>>>16,E[2],E[1]<<16|E[0]>>>16,E[3],E[2]<<16|E[1]>>>16],P=this._C=[E[2]<<16|E[2]>>>16,4294901760&E[0]|65535&E[1],E[3]<<16|E[3]>>>16,4294901760&E[1]|65535&E[2],E[0]<<16|E[0]>>>16,4294901760&E[2]|65535&E[3],E[1]<<16|E[1]>>>16,4294901760&E[3]|65535&E[0]];this._b=0;for(var M=0;M<4;M++)d.call(this);for(M=0;M<8;M++)P[M]^=C[M+4&7];if(n){var N=n.words,Q=N[0],X=N[1],D=16711935&(Q<<8|Q>>>24)|4278255360&(Q<<24|Q>>>8),F=16711935&(X<<8|X>>>24)|4278255360&(X<<24|X>>>8),y=D>>>16|4294901760&F,K=F<<16|65535&D;for(P[0]^=D,P[1]^=y,P[2]^=F,P[3]^=K,P[4]^=D,P[5]^=y,P[6]^=F,P[7]^=K,M=0;M<4;M++)d.call(this)}},_doProcessBlock:function(E,n){var C=this._X;d.call(this),u[0]=C[0]^C[5]>>>16^C[3]<<16,u[1]=C[2]^C[7]>>>16^C[5]<<16,u[2]=C[4]^C[1]>>>16^C[7]<<16,u[3]=C[6]^C[3]>>>16^C[1]<<16;for(var P=0;P<4;P++)u[P]=16711935&(u[P]<<8|u[P]>>>24)|4278255360&(u[P]<<24|u[P]>>>8),E[n+P]^=u[P]},blockSize:4,ivSize:2});function d(){for(var h=this._X,E=this._C,n=0;n<8;n++)f[n]=E[n];for(E[0]=E[0]+1295307597+this._b|0,E[1]=E[1]+3545052371+(E[0]>>>0>>0?1:0)|0,E[2]=E[2]+886263092+(E[1]>>>0>>0?1:0)|0,E[3]=E[3]+1295307597+(E[2]>>>0>>0?1:0)|0,E[4]=E[4]+3545052371+(E[3]>>>0>>0?1:0)|0,E[5]=E[5]+886263092+(E[4]>>>0>>0?1:0)|0,E[6]=E[6]+1295307597+(E[5]>>>0>>0?1:0)|0,E[7]=E[7]+3545052371+(E[6]>>>0>>0?1:0)|0,this._b=E[7]>>>0>>0?1:0,n=0;n<8;n++){var C=h[n]+E[n],P=65535&C,M=C>>>16;B[n]=((P*P>>>17)+P*M>>>15)+M*M^((4294901760&C)*C|0)+((65535&C)*C|0)}h[0]=B[0]+(B[7]<<16|B[7]>>>16)+(B[6]<<16|B[6]>>>16)|0,h[1]=B[1]+(B[0]<<8|B[0]>>>24)+B[7]|0,h[2]=B[2]+(B[1]<<16|B[1]>>>16)+(B[0]<<16|B[0]>>>16)|0,h[3]=B[3]+(B[2]<<8|B[2]>>>24)+B[1]|0,h[4]=B[4]+(B[3]<<16|B[3]>>>16)+(B[2]<<16|B[2]>>>16)|0,h[5]=B[5]+(B[4]<<8|B[4]>>>24)+B[3]|0,h[6]=B[6]+(B[5]<<16|B[5]>>>16)+(B[4]<<16|B[4]>>>16)|0,h[7]=B[7]+(B[6]<<8|B[6]>>>24)+B[5]|0}i.RabbitLegacy=o._createHelper(a)}(),g.RabbitLegacy)},55380:function(Y,A,r){"use strict";var g;Y.exports=(g=r(34559),r(49300),r(72342),r(36572),r(28395),function(){var i=g,o=i.lib.StreamCipher,u=[],f=[],B=[],a=i.algo.Rabbit=o.extend({_doReset:function(){for(var E=this._key.words,n=this.cfg.iv,C=0;C<4;C++)E[C]=16711935&(E[C]<<8|E[C]>>>24)|4278255360&(E[C]<<24|E[C]>>>8);var P=this._X=[E[0],E[3]<<16|E[2]>>>16,E[1],E[0]<<16|E[3]>>>16,E[2],E[1]<<16|E[0]>>>16,E[3],E[2]<<16|E[1]>>>16],M=this._C=[E[2]<<16|E[2]>>>16,4294901760&E[0]|65535&E[1],E[3]<<16|E[3]>>>16,4294901760&E[1]|65535&E[2],E[0]<<16|E[0]>>>16,4294901760&E[2]|65535&E[3],E[1]<<16|E[1]>>>16,4294901760&E[3]|65535&E[0]];for(this._b=0,C=0;C<4;C++)d.call(this);for(C=0;C<8;C++)M[C]^=P[C+4&7];if(n){var N=n.words,Q=N[0],X=N[1],D=16711935&(Q<<8|Q>>>24)|4278255360&(Q<<24|Q>>>8),F=16711935&(X<<8|X>>>24)|4278255360&(X<<24|X>>>8),y=D>>>16|4294901760&F,K=F<<16|65535&D;for(M[0]^=D,M[1]^=y,M[2]^=F,M[3]^=K,M[4]^=D,M[5]^=y,M[6]^=F,M[7]^=K,C=0;C<4;C++)d.call(this)}},_doProcessBlock:function(E,n){var C=this._X;d.call(this),u[0]=C[0]^C[5]>>>16^C[3]<<16,u[1]=C[2]^C[7]>>>16^C[5]<<16,u[2]=C[4]^C[1]>>>16^C[7]<<16,u[3]=C[6]^C[3]>>>16^C[1]<<16;for(var P=0;P<4;P++)u[P]=16711935&(u[P]<<8|u[P]>>>24)|4278255360&(u[P]<<24|u[P]>>>8),E[n+P]^=u[P]},blockSize:4,ivSize:2});function d(){for(var h=this._X,E=this._C,n=0;n<8;n++)f[n]=E[n];for(E[0]=E[0]+1295307597+this._b|0,E[1]=E[1]+3545052371+(E[0]>>>0>>0?1:0)|0,E[2]=E[2]+886263092+(E[1]>>>0>>0?1:0)|0,E[3]=E[3]+1295307597+(E[2]>>>0>>0?1:0)|0,E[4]=E[4]+3545052371+(E[3]>>>0>>0?1:0)|0,E[5]=E[5]+886263092+(E[4]>>>0>>0?1:0)|0,E[6]=E[6]+1295307597+(E[5]>>>0>>0?1:0)|0,E[7]=E[7]+3545052371+(E[6]>>>0>>0?1:0)|0,this._b=E[7]>>>0>>0?1:0,n=0;n<8;n++){var C=h[n]+E[n],P=65535&C,M=C>>>16;B[n]=((P*P>>>17)+P*M>>>15)+M*M^((4294901760&C)*C|0)+((65535&C)*C|0)}h[0]=B[0]+(B[7]<<16|B[7]>>>16)+(B[6]<<16|B[6]>>>16)|0,h[1]=B[1]+(B[0]<<8|B[0]>>>24)+B[7]|0,h[2]=B[2]+(B[1]<<16|B[1]>>>16)+(B[0]<<16|B[0]>>>16)|0,h[3]=B[3]+(B[2]<<8|B[2]>>>24)+B[1]|0,h[4]=B[4]+(B[3]<<16|B[3]>>>16)+(B[2]<<16|B[2]>>>16)|0,h[5]=B[5]+(B[4]<<8|B[4]>>>24)+B[3]|0,h[6]=B[6]+(B[5]<<16|B[5]>>>16)+(B[4]<<16|B[4]>>>16)|0,h[7]=B[7]+(B[6]<<8|B[6]>>>24)+B[5]|0}i.Rabbit=o._createHelper(a)}(),g.Rabbit)},76635:function(Y,A,r){"use strict";var g;r(14032),r(68067),Y.exports=(g=r(34559),r(49300),r(72342),r(36572),r(28395),function(){var i=g,o=i.lib.StreamCipher,m=i.algo,u=m.RC4=o.extend({_doReset:function(){for(var d=this._key,h=d.words,E=d.sigBytes,n=this._S=[],C=0;C<256;C++)n[C]=C;C=0;for(var P=0;C<256;C++){var M=C%E,Q=n[C];n[C]=n[P=(P+n[C]+(h[M>>>2]>>>24-M%4*8&255))%256],n[P]=Q}this._i=this._j=0},_doProcessBlock:function(d,h){d[h]^=f.call(this)},keySize:8,ivSize:0});function f(){for(var a=this._S,d=this._i,h=this._j,E=0,n=0;n<4;n++){var C=a[d=(d+1)%256];a[d]=a[h=(h+a[d])%256],a[h]=C,E|=a[(a[d]+a[h])%256]<<24-8*n}return this._i=d,this._j=h,E}i.RC4=o._createHelper(u);var B=m.RC4Drop=u.extend({cfg:u.cfg.extend({drop:192}),_doReset:function(){u._doReset.call(this);for(var d=this.cfg.drop;d>0;d--)f.call(this)}});i.RC4Drop=o._createHelper(B)}(),g.RC4)},76930:function(Y,A,r){"use strict";var g;Y.exports=(g=r(34559),function(){var s=g,o=s.lib,m=o.WordArray,u=o.Hasher,f=s.algo,B=m.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]),a=m.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]),d=m.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]),h=m.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]),E=m.create([0,1518500249,1859775393,2400959708,2840853838]),n=m.create([1352829926,1548603684,1836072691,2053994217,0]),C=f.RIPEMD160=u.extend({_doReset:function(){this._hash=m.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(y,K){for(var v=0;v<16;v++){var b=K+v,w=y[b];y[b]=16711935&(w<<8|w>>>24)|4278255360&(w<<24|w>>>8)}var pA,NA,zA,O,mA,tA,$,hA,yA,GA,j,Z=this._hash.words,oA=E.words,q=n.words,fA=B.words,_=a.words,CA=d.words,KA=h.words;for(tA=pA=Z[0],$=NA=Z[1],hA=zA=Z[2],yA=O=Z[3],GA=mA=Z[4],v=0;v<80;v+=1)j=pA+y[K+fA[v]]|0,j+=v<16?P(NA,zA,O)+oA[0]:v<32?M(NA,zA,O)+oA[1]:v<48?N(NA,zA,O)+oA[2]:v<64?Q(NA,zA,O)+oA[3]:X(NA,zA,O)+oA[4],j=(j=D(j|=0,CA[v]))+mA|0,pA=mA,mA=O,O=D(zA,10),zA=NA,NA=j,j=tA+y[K+_[v]]|0,j+=v<16?X($,hA,yA)+q[0]:v<32?Q($,hA,yA)+q[1]:v<48?N($,hA,yA)+q[2]:v<64?M($,hA,yA)+q[3]:P($,hA,yA)+q[4],j=(j=D(j|=0,KA[v]))+GA|0,tA=GA,GA=yA,yA=D(hA,10),hA=$,$=j;j=Z[1]+zA+yA|0,Z[1]=Z[2]+O+GA|0,Z[2]=Z[3]+mA+tA|0,Z[3]=Z[4]+pA+$|0,Z[4]=Z[0]+NA+hA|0,Z[0]=j},_doFinalize:function(){var y=this._data,K=y.words,v=8*this._nDataBytes,b=8*y.sigBytes;K[b>>>5]|=128<<24-b%32,K[14+(b+64>>>9<<4)]=16711935&(v<<8|v>>>24)|4278255360&(v<<24|v>>>8),y.sigBytes=4*(K.length+1),this._process();for(var w=this._hash,Z=w.words,oA=0;oA<5;oA++){var q=Z[oA];Z[oA]=16711935&(q<<8|q>>>24)|4278255360&(q<<24|q>>>8)}return w},clone:function(){var y=u.clone.call(this);return y._hash=this._hash.clone(),y}});function P(F,y,K){return F^y^K}function M(F,y,K){return F&y|~F&K}function N(F,y,K){return(F|~y)^K}function Q(F,y,K){return F&K|y&~K}function X(F,y,K){return F^(y|~K)}function D(F,y){return F<>>32-y}s.RIPEMD160=u._createHelper(C),s.HmacRIPEMD160=u._createHmacHelper(C)}(Math),g.RIPEMD160)},76289:function(Y,A,r){"use strict";var g,i,s,o,m,f,B;Y.exports=(g=r(34559),o=(s=(i=g).lib).WordArray,f=[],B=i.algo.SHA1=(m=s.Hasher).extend({_doReset:function(){this._hash=new o.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(d,h){for(var E=this._hash.words,n=E[0],C=E[1],P=E[2],M=E[3],N=E[4],Q=0;Q<80;Q++){if(Q<16)f[Q]=0|d[h+Q];else{var X=f[Q-3]^f[Q-8]^f[Q-14]^f[Q-16];f[Q]=X<<1|X>>>31}var D=(n<<5|n>>>27)+N+f[Q];D+=Q<20?1518500249+(C&P|~C&M):Q<40?1859775393+(C^P^M):Q<60?(C&P|C&M|P&M)-1894007588:(C^P^M)-899497514,N=M,M=P,P=C<<30|C>>>2,C=n,n=D}E[0]=E[0]+n|0,E[1]=E[1]+C|0,E[2]=E[2]+P|0,E[3]=E[3]+M|0,E[4]=E[4]+N|0},_doFinalize:function(){var d=this._data,h=d.words,E=8*this._nDataBytes,n=8*d.sigBytes;return h[n>>>5]|=128<<24-n%32,h[14+(n+64>>>9<<4)]=Math.floor(E/4294967296),h[15+(n+64>>>9<<4)]=E,d.sigBytes=4*h.length,this._process(),this._hash},clone:function(){var d=m.clone.call(this);return d._hash=this._hash.clone(),d}}),i.SHA1=m._createHelper(B),i.HmacSHA1=m._createHmacHelper(B),g.SHA1)},75230:function(Y,A,r){"use strict";var g,i,o,m,u,f;Y.exports=(g=r(34559),r(26739),o=(i=g).lib.WordArray,f=(m=i.algo).SHA224=(u=m.SHA256).extend({_doReset:function(){this._hash=new o.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var a=u._doFinalize.call(this);return a.sigBytes-=4,a}}),i.SHA224=u._createHelper(f),i.HmacSHA224=u._createHmacHelper(f),g.SHA224)},26739:function(Y,A,r){"use strict";var g;r(20731),Y.exports=(g=r(34559),function(i){var s=g,o=s.lib,m=o.WordArray,u=o.Hasher,f=s.algo,B=[],a=[];!function(){function E(M){for(var N=i.sqrt(M),Q=2;Q<=N;Q++)if(!(M%Q))return!1;return!0}function n(M){return 4294967296*(M-(0|M))|0}for(var C=2,P=0;P<64;)E(C)&&(P<8&&(B[P]=n(i.pow(C,.5))),a[P]=n(i.pow(C,.3333333333333333)),P++),C++}();var d=[],h=f.SHA256=u.extend({_doReset:function(){this._hash=new m.init(B.slice(0))},_doProcessBlock:function(n,C){for(var P=this._hash.words,M=P[0],N=P[1],Q=P[2],X=P[3],D=P[4],F=P[5],y=P[6],K=P[7],v=0;v<64;v++){if(v<16)d[v]=0|n[C+v];else{var b=d[v-15],Z=d[v-2];d[v]=((b<<25|b>>>7)^(b<<14|b>>>18)^b>>>3)+d[v-7]+((Z<<15|Z>>>17)^(Z<<13|Z>>>19)^Z>>>10)+d[v-16]}var fA=M&N^M&Q^N&Q,KA=K+((D<<26|D>>>6)^(D<<21|D>>>11)^(D<<7|D>>>25))+(D&F^~D&y)+a[v]+d[v];K=y,y=F,F=D,D=X+KA|0,X=Q,Q=N,N=M,M=KA+(((M<<30|M>>>2)^(M<<19|M>>>13)^(M<<10|M>>>22))+fA)|0}P[0]=P[0]+M|0,P[1]=P[1]+N|0,P[2]=P[2]+Q|0,P[3]=P[3]+X|0,P[4]=P[4]+D|0,P[5]=P[5]+F|0,P[6]=P[6]+y|0,P[7]=P[7]+K|0},_doFinalize:function(){var n=this._data,C=n.words,P=8*this._nDataBytes,M=8*n.sigBytes;return C[M>>>5]|=128<<24-M%32,C[14+(M+64>>>9<<4)]=i.floor(P/4294967296),C[15+(M+64>>>9<<4)]=P,n.sigBytes=4*C.length,this._process(),this._hash},clone:function(){var n=u.clone.call(this);return n._hash=this._hash.clone(),n}});s.SHA256=u._createHelper(h),s.HmacSHA256=u._createHmacHelper(h)}(Math),g.SHA256)},80767:function(Y,A,r){"use strict";var g;r(20731),Y.exports=(g=r(34559),r(26478),function(i){var s=g,o=s.lib,m=o.WordArray,u=o.Hasher,B=s.x64.Word,a=s.algo,d=[],h=[],E=[];!function(){for(var P=1,M=0,N=0;N<24;N++){d[P+5*M]=(N+1)*(N+2)/2%64;var X=(2*P+3*M)%5;P=M%5,M=X}for(P=0;P<5;P++)for(M=0;M<5;M++)h[P+5*M]=M+(2*P+3*M)%5*5;for(var D=1,F=0;F<24;F++){for(var y=0,K=0,v=0;v<7;v++){if(1&D){var b=(1<>>24)|4278255360&(F<<24|F>>>8),(K=Q[D]).high^=y=16711935&(y<<8|y>>>24)|4278255360&(y<<24|y>>>8),K.low^=F}for(var v=0;v<24;v++){for(var b=0;b<5;b++){for(var w=0,Z=0,oA=0;oA<5;oA++)w^=(K=Q[b+5*oA]).high,Z^=K.low;var q=n[b];q.high=w,q.low=Z}for(b=0;b<5;b++){var fA=n[(b+4)%5],_=n[(b+1)%5],CA=_.high,KA=_.low;for(w=fA.high^(CA<<1|KA>>>31),Z=fA.low^(KA<<1|CA>>>31),oA=0;oA<5;oA++)(K=Q[b+5*oA]).high^=w,K.low^=Z}for(var pA=1;pA<25;pA++){var NA=(K=Q[pA]).high,zA=K.low,O=d[pA];O<32?(w=NA<>>32-O,Z=zA<>>32-O):(w=zA<>>64-O,Z=NA<>>64-O);var mA=n[h[pA]];mA.high=w,mA.low=Z}var tA=n[0],$=Q[0];for(tA.high=$.high,tA.low=$.low,b=0;b<5;b++)for(oA=0;oA<5;oA++){var hA=n[pA=b+5*oA],yA=n[(b+1)%5+5*oA],GA=n[(b+2)%5+5*oA];(K=Q[pA]).high=hA.high^~yA.high&GA.high,K.low=hA.low^~yA.low&GA.low}var K,j=E[v];(K=Q[0]).high^=j.high,K.low^=j.low}},_doFinalize:function(){var M=this._data,N=M.words,X=8*M.sigBytes,D=32*this.blockSize;N[X>>>5]|=1<<24-X%32,N[(i.ceil((X+1)/D)*D>>>5)-1]|=128,M.sigBytes=4*N.length,this._process();for(var F=this._state,y=this.cfg.outputLength/8,K=y/8,v=[],b=0;b>>24)|4278255360&(Z<<24|Z>>>8),v.push(oA=16711935&(oA<<8|oA>>>24)|4278255360&(oA<<24|oA>>>8)),v.push(Z)}return new m.init(v,y)},clone:function(){for(var M=u.clone.call(this),N=M._state=this._state.slice(0),Q=0;Q<25;Q++)N[Q]=N[Q].clone();return M}});s.SHA3=u._createHelper(C),s.HmacSHA3=u._createHmacHelper(C)}(Math),g.SHA3)},371:function(Y,A,r){"use strict";var g,i,s,o,m,u,f,B;Y.exports=(g=r(34559),r(26478),r(97074),o=(s=(i=g).x64).Word,m=s.WordArray,B=(u=i.algo).SHA384=(f=u.SHA512).extend({_doReset:function(){this._hash=new m.init([new o.init(3418070365,3238371032),new o.init(1654270250,914150663),new o.init(2438529370,812702999),new o.init(355462360,4144912697),new o.init(1731405415,4290775857),new o.init(2394180231,1750603025),new o.init(3675008525,1694076839),new o.init(1203062813,3204075428)])},_doFinalize:function(){var d=f._doFinalize.call(this);return d.sigBytes-=16,d}}),i.SHA384=f._createHelper(B),i.HmacSHA384=f._createHmacHelper(B),g.SHA384)},97074:function(Y,A,r){"use strict";var i;i=function(g){return function(){var i=g,o=i.lib.Hasher,m=i.x64,u=m.Word,f=m.WordArray,B=i.algo;function a(){return u.create.apply(u,arguments)}var d=[a(1116352408,3609767458),a(1899447441,602891725),a(3049323471,3964484399),a(3921009573,2173295548),a(961987163,4081628472),a(1508970993,3053834265),a(2453635748,2937671579),a(2870763221,3664609560),a(3624381080,2734883394),a(310598401,1164996542),a(607225278,1323610764),a(1426881987,3590304994),a(1925078388,4068182383),a(2162078206,991336113),a(2614888103,633803317),a(3248222580,3479774868),a(3835390401,2666613458),a(4022224774,944711139),a(264347078,2341262773),a(604807628,2007800933),a(770255983,1495990901),a(1249150122,1856431235),a(1555081692,3175218132),a(1996064986,2198950837),a(2554220882,3999719339),a(2821834349,766784016),a(2952996808,2566594879),a(3210313671,3203337956),a(3336571891,1034457026),a(3584528711,2466948901),a(113926993,3758326383),a(338241895,168717936),a(666307205,1188179964),a(773529912,1546045734),a(1294757372,1522805485),a(1396182291,2643833823),a(1695183700,2343527390),a(1986661051,1014477480),a(2177026350,1206759142),a(2456956037,344077627),a(2730485921,1290863460),a(2820302411,3158454273),a(3259730800,3505952657),a(3345764771,106217008),a(3516065817,3606008344),a(3600352804,1432725776),a(4094571909,1467031594),a(275423344,851169720),a(430227734,3100823752),a(506948616,1363258195),a(659060556,3750685593),a(883997877,3785050280),a(958139571,3318307427),a(1322822218,3812723403),a(1537002063,2003034995),a(1747873779,3602036899),a(1955562222,1575990012),a(2024104815,1125592928),a(2227730452,2716904306),a(2361852424,442776044),a(2428436474,593698344),a(2756734187,3733110249),a(3204031479,2999351573),a(3329325298,3815920427),a(3391569614,3928383900),a(3515267271,566280711),a(3940187606,3454069534),a(4118630271,4000239992),a(116418474,1914138554),a(174292421,2731055270),a(289380356,3203993006),a(460393269,320620315),a(685471733,587496836),a(852142971,1086792851),a(1017036298,365543100),a(1126000580,2618297676),a(1288033470,3409855158),a(1501505948,4234509866),a(1607167915,987167468),a(1816402316,1246189591)],h=[];!function(){for(var n=0;n<80;n++)h[n]=a()}();var E=B.SHA512=o.extend({_doReset:function(){this._hash=new f.init([new u.init(1779033703,4089235720),new u.init(3144134277,2227873595),new u.init(1013904242,4271175723),new u.init(2773480762,1595750129),new u.init(1359893119,2917565137),new u.init(2600822924,725511199),new u.init(528734635,4215389547),new u.init(1541459225,327033209)])},_doProcessBlock:function(C,P){for(var M=this._hash.words,N=M[0],Q=M[1],X=M[2],D=M[3],F=M[4],y=M[5],K=M[6],v=M[7],b=N.high,w=N.low,Z=Q.high,oA=Q.low,q=X.high,fA=X.low,_=D.high,CA=D.low,KA=F.high,pA=F.low,NA=y.high,zA=y.low,O=K.high,mA=K.low,tA=v.high,$=v.low,hA=b,yA=w,GA=Z,j=oA,U=q,rA=fA,AA=_,PA=CA,IA=KA,cA=pA,dA=NA,vA=zA,xA=O,SA=mA,EA=tA,WA=$,ge=0;ge<80;ge++){var Be,le,we=h[ge];if(ge<16)le=we.high=0|C[P+2*ge],Be=we.low=0|C[P+2*ge+1];else{var Me=h[ge-15],HA=Me.high,_A=Me.low,me=(_A>>>1|HA<<31)^(_A>>>8|HA<<24)^(_A>>>7|HA<<25),De=h[ge-2],Fe=De.high,MA=De.low,T=(MA>>>19|Fe<<13)^(MA<<3|Fe>>>29)^(MA>>>6|Fe<<26),k=h[ge-7],iA=h[ge-16],Xe=iA.low;we.high=le=(le=(le=((HA>>>1|_A<<31)^(HA>>>8|_A<<24)^HA>>>7)+k.high+((Be=me+k.low)>>>0>>0?1:0))+((Fe>>>19|MA<<13)^(Fe<<3|MA>>>29)^Fe>>>6)+((Be+=T)>>>0>>0?1:0))+iA.high+((Be+=Xe)>>>0>>0?1:0),we.low=Be}var Ie,J=IA&dA^~IA&xA,$A=cA&vA^~cA&SA,te=hA&GA^hA&U^GA&U,ce=(yA>>>28|hA<<4)^(yA<<30|hA>>>2)^(yA<<25|hA>>>7),Ue=d[ge],tr=Ue.low,pe=EA+((IA>>>14|cA<<18)^(IA>>>18|cA<<14)^(IA<<23|cA>>>9))+((Ie=WA+((cA>>>14|IA<<18)^(cA>>>18|IA<<14)^(cA<<23|IA>>>9)))>>>0>>0?1:0),ke=ce+(yA&j^yA&rA^j&rA);EA=xA,WA=SA,xA=dA,SA=vA,dA=IA,vA=cA,IA=AA+(pe=(pe=(pe=pe+J+((Ie+=$A)>>>0<$A>>>0?1:0))+Ue.high+((Ie+=tr)>>>0>>0?1:0))+le+((Ie+=Be)>>>0>>0?1:0))+((cA=PA+Ie|0)>>>0>>0?1:0)|0,AA=U,PA=rA,U=GA,rA=j,GA=hA,j=yA,hA=pe+(((hA>>>28|yA<<4)^(hA<<30|yA>>>2)^(hA<<25|yA>>>7))+te+(ke>>>0>>0?1:0))+((yA=Ie+ke|0)>>>0>>0?1:0)|0}w=N.low=w+yA,N.high=b+hA+(w>>>0>>0?1:0),oA=Q.low=oA+j,Q.high=Z+GA+(oA>>>0>>0?1:0),fA=X.low=fA+rA,X.high=q+U+(fA>>>0>>0?1:0),CA=D.low=CA+PA,D.high=_+AA+(CA>>>0>>0?1:0),pA=F.low=pA+cA,F.high=KA+IA+(pA>>>0>>0?1:0),zA=y.low=zA+vA,y.high=NA+dA+(zA>>>0>>0?1:0),mA=K.low=mA+SA,K.high=O+xA+(mA>>>0>>0?1:0),$=v.low=$+WA,v.high=tA+EA+($>>>0>>0?1:0)},_doFinalize:function(){var C=this._data,P=C.words,M=8*this._nDataBytes,N=8*C.sigBytes;return P[N>>>5]|=128<<24-N%32,P[30+(N+128>>>10<<5)]=Math.floor(M/4294967296),P[31+(N+128>>>10<<5)]=M,C.sigBytes=4*P.length,this._process(),this._hash.toX32()},clone:function(){var C=o.clone.call(this);return C._hash=this._hash.clone(),C},blockSize:32});i.SHA512=o._createHelper(E),i.HmacSHA512=o._createHmacHelper(E)}(),g.SHA512},Y.exports=i(r(34559),r(26478))},64390:function(Y,A,r){"use strict";var g;r(20731),Y.exports=(g=r(34559),r(49300),r(72342),r(36572),r(28395),function(){var i=g,s=i.lib,o=s.WordArray,m=s.BlockCipher,u=i.algo,f=[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],B=[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],a=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],d=[{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}],h=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],E=u.DES=m.extend({_doReset:function(){for(var Q=this._key.words,X=[],D=0;D<56;D++){var F=f[D]-1;X[D]=Q[F>>>5]>>>31-F%32&1}for(var y=this._subKeys=[],K=0;K<16;K++){var v=y[K]=[],b=a[K];for(D=0;D<24;D++)v[D/6|0]|=X[(B[D]-1+b)%28]<<31-D%6,v[4+(D/6|0)]|=X[28+(B[D+24]-1+b)%28]<<31-D%6;for(v[0]=v[0]<<1|v[0]>>>31,D=1;D<7;D++)v[D]=v[D]>>>4*(D-1)+3;v[7]=v[7]<<5|v[7]>>>27}var w=this._invSubKeys=[];for(D=0;D<16;D++)w[D]=y[15-D]},encryptBlock:function(N,Q){this._doCryptBlock(N,Q,this._subKeys)},decryptBlock:function(N,Q){this._doCryptBlock(N,Q,this._invSubKeys)},_doCryptBlock:function(N,Q,X){this._lBlock=N[Q],this._rBlock=N[Q+1],n.call(this,4,252645135),n.call(this,16,65535),C.call(this,2,858993459),C.call(this,8,16711935),n.call(this,1,1431655765);for(var D=0;D<16;D++){for(var F=X[D],y=this._lBlock,K=this._rBlock,v=0,b=0;b<8;b++)v|=d[b][((K^F[b])&h[b])>>>0];this._lBlock=K,this._rBlock=y^v}var w=this._lBlock;this._lBlock=this._rBlock,this._rBlock=w,n.call(this,1,1431655765),C.call(this,8,16711935),C.call(this,2,858993459),n.call(this,16,65535),n.call(this,4,252645135),N[Q]=this._lBlock,N[Q+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function n(M,N){var Q=(this._lBlock>>>M^this._rBlock)&N;this._rBlock^=Q,this._lBlock^=Q<>>M^this._lBlock)&N;this._lBlock^=Q,this._rBlock^=Q<192.");var X=Q.slice(0,2),D=Q.length<4?Q.slice(0,2):Q.slice(2,4),F=Q.length<6?Q.slice(0,2):Q.slice(4,6);this._des1=E.createEncryptor(o.create(X)),this._des2=E.createEncryptor(o.create(D)),this._des3=E.createEncryptor(o.create(F))},encryptBlock:function(N,Q){this._des1.encryptBlock(N,Q),this._des2.decryptBlock(N,Q),this._des3.encryptBlock(N,Q)},decryptBlock:function(N,Q){this._des3.decryptBlock(N,Q),this._des2.encryptBlock(N,Q),this._des1.decryptBlock(N,Q)},keySize:6,ivSize:2,blockSize:2});i.TripleDES=m._createHelper(P)}(),g.TripleDES)},26478:function(Y,A,r){"use strict";var g,o,m,u,f;r(20731),Y.exports=(g=r(34559),m=(o=g.lib).Base,u=o.WordArray,(f=g.x64={}).Word=m.extend({init:function(h,E){this.high=h,this.low=E}}),f.WordArray=m.extend({init:function(h,E){h=this.words=h||[],this.sigBytes=null!=E?E:8*h.length},toX32:function(){for(var h=this.words,E=h.length,n=[],C=0;C=B.length?{done:!0}:{done:!1,value:B[h++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(B,a){(null==a||a>B.length)&&(a=B.length);for(var d=0,h=Array(a);d=0;--j){var U=this.tryEntries[j],rA=U.completion;if("root"===U.tryLoc)return GA("end");if(U.tryLoc<=this.prev){var AA=h.call(U,"catchLoc"),PA=h.call(U,"finallyLoc");if(AA&&PA){if(this.prev=0;--GA){var j=this.tryEntries[GA];if(j.tryLoc<=this.prev&&h.call(j,"finallyLoc")&&this.prev=0;--yA){var GA=this.tryEntries[yA];if(GA.finallyLoc===hA)return this.complete(GA.completion,GA.afterLoc),O(GA),v}},catch:function(hA){for(var yA=this.tryEntries.length-1;yA>=0;--yA){var GA=this.tryEntries[yA];if(GA.tryLoc===hA){var j=GA.completion;if("throw"===j.type){var U=j.arg;O(GA)}return U}}throw Error("illegal catch attempt")},delegateYield:function(hA,yA,GA){return this.delegate={iterator:tA(hA),resultName:yA,nextLoc:GA},"next"===this.method&&(this.arg=B),v}},a}r(65292),r(73844),r(35877),r(38178),r(11765),r(24863),r(43448),r(63956),r(71950),r(68067),r(57114),r(42437),r(69330),r(81755),r(20731),r(14032),r(61726),r(58281),r(6422),r(94712);Y.exports=function(){function B(d){this.stateTable=d.stateTable,this.accepting=d.accepting,this.tags=d.tags}var a=B.prototype;return a.match=function(h){var E,n=this;return(E={})[Symbol.iterator]=o().mark(function C(){var P,M,N,Q,X,D;return o().wrap(function(y){for(;;)switch(y.prev=y.next){case 0:P=1,M=null,N=null,Q=null,X=0;case 5:if(!(X=M)){y.next=13;break}return y.next=13,[M,N,n.tags[Q]];case 13:P=n.stateTable[1][D],M=null;case 15:0!==P&&null==M&&(M=X),n.accepting[P]&&(N=X),0===P&&(P=1);case 18:X++,y.next=5;break;case 21:if(!(null!=M&&null!=N&&N>=M)){y.next=24;break}return y.next=24,[M,N,n.tags[P]];case 24:case"end":return y.stop()}},C)}),E},a.apply=function(h,E){for(var C,n=g(this.match(h));!(C=n()).done;)for(var D,P=C.value,M=P[0],N=P[1],X=g(P[2]);!(D=X()).done;){var F=D.value;"function"==typeof E[F]&&E[F](M,N,h.slice(M,N+1))}},B}()},80646:function(Y,A,r){"use strict";var g=r(50621).Buffer;r(58028),r(20731),r(14032),r(68067);var i=r(48181),s=r(6729);Y.exports=function(){function o(u){var f;for(this.data=u,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){var B=this.readUInt32(),a="";for(f=0;f<4;f++)a+=String.fromCharCode(this.data[this.pos++]);switch(a){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(B);break;case"IDAT":for(f=0;f0)for(f=0;fthis.data.length)throw new Error("Incomplete or corrupt PNG file")}}o.decode=function(f,B){return i.readFile(f,function(a,d){return new o(d).decode(function(E){return B(E)})})},o.load=function(f){return new o(i.readFileSync(f))};var m=o.prototype;return m.read=function(f){for(var B=new Array(f),a=0;a"u")throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof f);return s(f,B,a)}),u.alloc||(u.alloc=function(f,B,a){if("number"!=typeof f)throw new TypeError('The "size" argument must be of type number. Received type '+typeof f);if(f<0||f>=2147483648)throw new RangeError('The value "'+f+'" is invalid for option "size"');var d=s(f);return B&&0!==B.length?"string"==typeof a?d.fill(B,a):d.fill(B):d.fill(0),d}),!o.kStringMaxLength)try{o.kStringMaxLength=g.binding("buffer").kStringMaxLength}catch{}o.constants||(o.constants={MAX_LENGTH:o.kMaxLength},o.kStringMaxLength&&(o.constants.MAX_STRING_LENGTH=o.kStringMaxLength)),Y.exports=o},57540:function(Y,A,r){"use strict";function g(P,M){var N=Object.keys(P);if(Object.getOwnPropertySymbols){var Q=Object.getOwnPropertySymbols(P);M&&(Q=Q.filter(function(X){return Object.getOwnPropertyDescriptor(P,X).enumerable})),N.push.apply(N,Q)}return N}function i(P){for(var M=1;M0?this.tail.next=Q:this.head=Q,this.tail=Q,++this.length}},{key:"unshift",value:function(N){var Q={data:N,next:this.head};0===this.length&&(this.tail=Q),this.head=Q,++this.length}},{key:"shift",value:function(){if(0!==this.length){var N=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,N}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(N){if(0===this.length)return"";for(var Q=this.head,X=""+Q.data;Q=Q.next;)X+=N+Q.data;return X}},{key:"concat",value:function(N){if(0===this.length)return d.alloc(0);for(var Q=d.allocUnsafe(N>>>0),X=this.head,D=0;X;)C(X.data,Q,D),D+=X.data.length,X=X.next;return Q}},{key:"consume",value:function(N,Q){var X;return NF.length?F.length:N;if(D+=y===F.length?F:F.slice(0,N),0==(N-=y)){y===F.length?(++X,this.head=Q.next?Q.next:this.tail=null):(this.head=Q,Q.data=F.slice(y));break}++X}return this.length-=X,D}},{key:"_getBuffer",value:function(N){var Q=d.allocUnsafe(N),X=this.head,D=1;for(X.data.copy(Q),N-=X.data.length;X=X.next;){var F=X.data,y=N>F.length?F.length:N;if(F.copy(Q,Q.length-N,0,y),0==(N-=y)){y===F.length?(++D,this.head=X.next?X.next:this.tail=null):(this.head=X,X.data=F.slice(y));break}++D}return this.length-=D,Q}},{key:n,value:function(N,Q){return E(this,i(i({},Q),{},{depth:0,customInspect:!1}))}}]),P}()},72361:function(Y,A,r){"use strict";r(41584);var g=r(50621),i=g.Buffer;function s(m,u){for(var f in m)u[f]=m[f]}function o(m,u,f){return i(m,u,f)}i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow?Y.exports=g:(s(g,A),A.Buffer=o),s(i,o),o.from=function(m,u,f){if("number"==typeof m)throw new TypeError("Argument must not be a number");return i(m,u,f)},o.alloc=function(m,u,f){if("number"!=typeof m)throw new TypeError("Argument must be a number");var B=i(m);return void 0!==u?"string"==typeof f?B.fill(u,f):B.fill(u):B.fill(0),B},o.allocUnsafe=function(m){if("number"!=typeof m)throw new TypeError("Argument must be a number");return i(m)},o.allocUnsafeSlow=function(m){if("number"!=typeof m)throw new TypeError("Argument must be a number");return g.SlowBuffer(m)}},41209:function(Y,A,r){"use strict";r(81755),r(20731),r(10720),r(14032),r(56912),r(59735),r(73663),r(29883),r(35471),r(21012),r(88997),r(97464),r(2857),r(94715),r(13624),r(91132),r(62514),r(24597),r(88042),r(4660),r(92451),r(44206),r(66288),r(13250),r(3858),r(84538),r(64793),r(74202),r(52529);var g=r(3483),s=r(51014).swap32LE;Y.exports=function(){function F(K){var v="function"==typeof K.readUInt32BE&&"function"==typeof K.slice;if(v||K instanceof Uint8Array){var b;if(v)this.highStart=K.readUInt32LE(0),this.errorValue=K.readUInt32LE(4),b=K.readUInt32LE(8),K=K.slice(12);else{var w=new DataView(K.buffer);this.highStart=w.getUint32(0,!0),this.errorValue=w.getUint32(4,!0),b=w.getUint32(8,!0),K=K.subarray(12)}K=g(K,new Uint8Array(b)),K=g(K,new Uint8Array(b)),s(K),this.data=new Uint32Array(K.buffer)}else{var Z=K;this.data=Z.data,this.highStart=Z.highStart,this.errorValue=Z.errorValue}}return F.prototype.get=function(v){return v<0||v>1114111?this.errorValue:v<55296||v>56319&&v<=65535?this.data[(this.data[v>>5]<<2)+(31&v)]:v<=65535?this.data[(this.data[2048+(v-55296>>5)]<<2)+(31&v)]:v>11)]+(v>>5&63)]<<2)+(31&v)]:this.data[this.data.length-4]},F}()},51014:function(Y,A,r){"use strict";r(81755),r(10720),r(14032),r(56912),r(59735),r(73663),r(29883),r(35471),r(21012),r(88997),r(97464),r(2857),r(94715),r(13624),r(91132),r(62514),r(24597),r(88042),r(4660),r(92451),r(44206),r(66288),r(13250),r(3858),r(84538),r(64793),r(74202),r(52529);var g=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],i=function(u,f,B){var a=u[f];u[f]=u[B],u[B]=a};Y.exports={swap32LE:function(u){g&&function(u){for(var f=u.length,B=0;B/)){for(;ie=OA();)ZA.childNodes.push(ie),ie.parentNode=ZA,ZA.textContent+=3===ie.nodeType||4===ie.nodeType?ie.nodeValue:ie.textContent;return(UA=re.match(/^<\/([\w:.-]+)\s*>/,!0))?(UA[1]===ZA.nodeName||(tn('parseXml: tag not matching, opening "'+ZA.nodeName+'" & closing "'+UA[1]+'"'),bA=!0),ZA):(tn('parseXml: tag not matching, opening "'+ZA.nodeName+'" & not closing'),bA=!0,ZA)}if(re.match(/^\/>/))return ZA;tn('parseXml: tag could not be parsed "'+ZA.nodeName+'"'),bA=!0}else{if(UA=re.match(/^/))return new FA(null,8,UA,bA);if(UA=re.match(/^<\?[\s\S]*?\?>/))return new FA(null,7,UA,bA);if(UA=re.match(/^/))return new FA(null,10,UA,bA);if(UA=re.match(/^/,!0))return new FA("#cdata-section",4,UA[1],bA);if(UA=re.match(/^([^<]+)/,!0))return new FA("#text",3,q(UA[1]),bA)}};RA=OA();)1!==RA.nodeType||TA?(1===RA.nodeType||3===RA.nodeType&&""!==RA.nodeValue.trim())&&tn("parseXml: data after document end has been discarded"):TA=RA;return re.matchAll()&&tn("parseXml: parsing error"),TA}function q(Ae){return Ae.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(FA,re,TA,RA){return re?String.fromCharCode(parseInt(re,10)):TA?String.fromCharCode(parseInt(TA,16)):RA&&d[RA]?String.fromCharCode(d[RA]):FA})}function fA(Ae){var FA,re;return Ae=(Ae||"").trim(),(FA=B[Ae])?re=[FA.slice(),1]:(FA=Ae.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(FA[1]=parseInt(FA[1]),FA[2]=parseInt(FA[2]),FA[3]=parseInt(FA[3]),FA[4]=parseFloat(FA[4]),FA[1]<256&&FA[2]<256&&FA[3]<256&&FA[4]<=1&&(re=[FA.slice(1,4),FA[4]])):(FA=Ae.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(FA[1]=parseInt(FA[1]),FA[2]=parseInt(FA[2]),FA[3]=parseInt(FA[3]),FA[1]<256&&FA[2]<256&&FA[3]<256&&(re=[FA.slice(1,4),1])):(FA=Ae.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(FA[1]=2.55*parseFloat(FA[1]),FA[2]=2.55*parseFloat(FA[2]),FA[3]=2.55*parseFloat(FA[3]),FA[1]<256&&FA[2]<256&&FA[3]<256&&(re=[FA.slice(1,4),1])):(FA=Ae.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?re=[[parseInt(FA[1],16),parseInt(FA[2],16),parseInt(FA[3],16)],1]:(FA=Ae.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(re=[[17*parseInt(FA[1],16),17*parseInt(FA[2],16),17*parseInt(FA[3],16)],1]),In?In(re,Ae):re}function _(Ae,FA,re){var TA=Ae[0].slice(),RA=Ae[1]*FA;if(re){for(var bA=0;bA=0;FA--)Ae=CA(wr[FA].savedMatrix,Ae);return Ae}function NA(){return(new Me).M(0,0).L(s.page.width,0).L(s.page.width,s.page.height).L(0,s.page.height).transform(zA(pA())).getBoundingBox()}function zA(Ae){var FA=Ae[0]*Ae[3]-Ae[1]*Ae[2];return[Ae[3]/FA,-Ae[1]/FA,-Ae[2]/FA,Ae[0]/FA,(Ae[2]*Ae[5]-Ae[3]*Ae[4])/FA,(Ae[1]*Ae[4]-Ae[0]*Ae[5])/FA]}function O(Ae){var FA=yA(Ae[0]),re=yA(Ae[1]),TA=yA(Ae[2]),RA=yA(Ae[3]),bA=yA(Ae[4]),OA=yA(Ae[5]);if(hA(FA*RA-re*TA,0))return[FA,re,TA,RA,bA,OA]}function mA(Ae){var FA=Ae[2]||0,re=Ae[1]||0,TA=Ae[0]||0;if($(FA,0)&&$(re,0))return[];if($(FA,0))return[-TA/re];var RA=re*re-4*FA*TA;return hA(RA,0)&&RA>0?[(-re+Math.sqrt(RA))/(2*FA),(-re-Math.sqrt(RA))/(2*FA)]:$(RA,0)?[-re/(2*FA)]:[]}function tA(Ae,FA){return(FA[0]||0)+(FA[1]||0)*Ae+(FA[2]||0)*Ae*Ae+(FA[3]||0)*Ae*Ae*Ae}function $(Ae,FA){return Math.abs(Ae-FA)<1e-10}function hA(Ae,FA){return Math.abs(Ae-FA)>=1e-10}function yA(Ae){return Ae>-1e21&&Ae<1e21?Math.round(1e6*Ae)/1e6:0}function j(Ae){for(var TA,FA=new Be((Ae||"").trim()),re=[1,0,0,1,0,0];TA=FA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){for(var RA=TA[1],bA=[],OA=new Be(TA[2].trim()),ne=void 0;ne=OA.matchNumber();)bA.push(Number(ne)),OA.matchSeparator();if("matrix"===RA&&6===bA.length)re=CA(re,[bA[0],bA[1],bA[2],bA[3],bA[4],bA[5]]);else if("translate"===RA&&2===bA.length)re=CA(re,[1,0,0,1,bA[0],bA[1]]);else if("translate"===RA&&1===bA.length)re=CA(re,[1,0,0,1,bA[0],0]);else if("scale"===RA&&2===bA.length)re=CA(re,[bA[0],0,0,bA[1],0,0]);else if("scale"===RA&&1===bA.length)re=CA(re,[bA[0],0,0,bA[0],0,0]);else if("rotate"===RA&&3===bA.length){var UA=bA[0]*Math.PI/180;re=CA(re,[1,0,0,1,bA[1],bA[2]],[Math.cos(UA),Math.sin(UA),-Math.sin(UA),Math.cos(UA),0,0],[1,0,0,1,-bA[1],-bA[2]])}else if("rotate"===RA&&1===bA.length){var ie=bA[0]*Math.PI/180;re=CA(re,[Math.cos(ie),Math.sin(ie),-Math.sin(ie),Math.cos(ie),0,0])}else if("skewX"===RA&&1===bA.length){var ZA=bA[0]*Math.PI/180;re=CA(re,[1,0,Math.tan(ZA),1,0,0])}else{if("skewY"!==RA||1!==bA.length)return;var de=bA[0]*Math.PI/180;re=CA(re,[1,Math.tan(de),0,1,0,0])}FA.matchSeparator()}if(!FA.matchAll())return re}function U(Ae,FA,re,TA,RA,bA){var OA=(Ae||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],ne=OA[1]||OA[4]||"meet",ZA=FA/TA,de=re/RA,ye={Min:0,Mid:.5,Max:1}[OA[2]||"Mid"]-(bA||0),Ye={Min:0,Mid:.5,Max:1}[OA[3]||"Mid"]-(bA||0);return"slice"===ne?de=ZA=Math.max(ZA,de):"meet"===ne&&(de=ZA=Math.min(ZA,de)),[ZA,0,0,de,ye*(FA-TA*ZA),Ye*(re-RA*de)]}function rA(Ae){var FA=Object.create(null);Ae=(Ae||"").trim().split(/;/);for(var re=0;refn&&(ze=fn,fn=en,en=ze),je>on&&(ze=on,on=je,je=ze);for(var pn=mA(ye),Hn=0;Hn=0&&pn[Hn]<=1){var mn=tA(pn[Hn],ZA);mnfn&&(fn=mn)}for(var Fn=mA(Ye),kn=0;kn=0&&Fn[kn]<=1){var $n=tA(Fn[kn],de);$non&&(on=$n)}return[en,je,fn,on]},this.getPointAtLength=function(ze){if($(ze,0))return this.startPoint;if($(ze,this.totalLength))return this.endPoint;if(!(ze<0||ze>this.totalLength))for(var en=1;en<=ie;en++){var je=He[en-1],fn=He[en];if(je<=ze&&ze<=fn){var on=(en-(fn-ze)/(fn-je))/ie,pn=tA(on,ZA),Hn=tA(on,de),mn=tA(on,ye),Fn=tA(on,Ye);return[pn,Hn,Math.atan2(Fn,mn)]}}}},we=function(FA,re,TA,RA){this.totalLength=Math.sqrt((TA-FA)*(TA-FA)+(RA-re)*(RA-re)),this.startPoint=[FA,re,Math.atan2(RA-re,TA-FA)],this.endPoint=[TA,RA,Math.atan2(RA-re,TA-FA)],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(bA){if(bA>=0&&bA<=this.totalLength){var OA=bA/this.totalLength||0;return[this.startPoint[0]+OA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+OA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},Me=function(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;var bA,OA,ne,FA=0,re=0,TA=0,RA=0;this.move=function(UA,ie){return FA=TA=UA,re=RA=ie,null},this.line=function(UA,ie){var ZA=new we(TA,RA,UA,ie);return TA=UA,RA=ie,ZA},this.curve=function(UA,ie,ZA,de,ye,Ye){var He=new le(TA,RA,UA,ie,ZA,de,ye,Ye);return TA=ye,RA=Ye,He},this.close=function(){var UA=new we(TA,RA,FA,re);return TA=FA,RA=re,UA},this.addCommand=function(UA){this.pathCommands.push(UA);var ie=this[UA[0]].apply(this,UA.slice(3));ie&&(ie.hasStart=UA[1],ie.hasEnd=UA[2],this.startPoint=this.startPoint||ie.startPoint,this.endPoint=ie.endPoint,this.pathSegments.push(ie),this.totalLength+=ie.totalLength)},this.M=function(UA,ie){return this.addCommand(["move",!0,!0,UA,ie]),bA="M",this},this.m=function(UA,ie){return this.M(TA+UA,RA+ie)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),bA="Z",this},this.L=function(UA,ie){return this.addCommand(["line",!0,!0,UA,ie]),bA="L",this},this.l=function(UA,ie){return this.L(TA+UA,RA+ie)},this.H=function(UA){return this.L(UA,RA)},this.h=function(UA){return this.L(TA+UA,RA)},this.V=function(UA){return this.L(TA,UA)},this.v=function(UA){return this.L(TA,RA+UA)},this.C=function(UA,ie,ZA,de,ye,Ye){return this.addCommand(["curve",!0,!0,UA,ie,ZA,de,ye,Ye]),bA="C",OA=ZA,ne=de,this},this.c=function(UA,ie,ZA,de,ye,Ye){return this.C(TA+UA,RA+ie,TA+ZA,RA+de,TA+ye,RA+Ye)},this.S=function(UA,ie,ZA,de){return this.C(TA+("C"===bA?TA-OA:0),RA+("C"===bA?RA-ne:0),UA,ie,ZA,de)},this.s=function(UA,ie,ZA,de){return this.C(TA+("C"===bA?TA-OA:0),RA+("C"===bA?RA-ne:0),TA+UA,RA+ie,TA+ZA,RA+de)},this.Q=function(UA,ie,ZA,de){return this.addCommand(["curve",!0,!0,TA+.6666666666666666*(UA-TA),RA+2/3*(ie-RA),ZA+2/3*(UA-ZA),de+2/3*(ie-de),ZA,de]),bA="Q",OA=UA,ne=ie,this},this.q=function(UA,ie,ZA,de){return this.Q(TA+UA,RA+ie,TA+ZA,RA+de)},this.T=function(UA,ie){return this.Q(TA+("Q"===bA?TA-OA:0),RA+("Q"===bA?RA-ne:0),UA,ie)},this.t=function(UA,ie){return this.Q(TA+("Q"===bA?TA-OA:0),RA+("Q"===bA?RA-ne:0),TA+UA,RA+ie)},this.A=function(UA,ie,ZA,de,ye,Ye,He){if($(UA,0)||$(ie,0))this.addCommand(["line",!0,!0,Ye,He]);else{ZA*=Math.PI/180,UA=Math.abs(UA),ie=Math.abs(ie),de=1*!!de,ye=1*!!ye;var Ze=Math.cos(ZA)*(TA-Ye)/2+Math.sin(ZA)*(RA-He)/2,an=Math.cos(ZA)*(RA-He)/2-Math.sin(ZA)*(TA-Ye)/2,fe=Ze*Ze/(UA*UA)+an*an/(ie*ie);fe>1&&(UA*=Math.sqrt(fe),ie*=Math.sqrt(fe));var Re=Math.sqrt(Math.max(0,UA*UA*ie*ie-UA*UA*an*an-ie*ie*Ze*Ze)/(UA*UA*an*an+ie*ie*Ze*Ze)),qe=(de===ye?-1:1)*Re*UA*an/ie,ze=(de===ye?1:-1)*Re*ie*Ze/UA,en=Math.cos(ZA)*qe-Math.sin(ZA)*ze+(TA+Ye)/2,je=Math.sin(ZA)*qe+Math.cos(ZA)*ze+(RA+He)/2,fn=Math.atan2((an-ze)/ie,(Ze-qe)/UA),on=Math.atan2((-an-ze)/ie,(-Ze-qe)/UA);0===ye&&on-fn>0?on-=2*Math.PI:1===ye&&on-fn<0&&(on+=2*Math.PI);for(var pn=Math.ceil(Math.abs(on-fn)/(Math.PI/Ir)),Hn=0;HnUA[2]&&(UA[2]=de[2]),de[1]UA[3]&&(UA[3]=de[3]);return UA[0]===1/0&&(UA[0]=0),UA[1]===1/0&&(UA[1]=0),UA[2]===-1/0&&(UA[2]=0),UA[3]===-1/0&&(UA[3]=0),UA},this.getPointAtLength=function(UA){if(UA>=0&&UA<=this.totalLength){for(var ie,ZA=0;ZARA.selector.specificity||(FA[bA]=RA.css[bA],re[bA]=RA.selector.specificity)}return FA}(FA),this.allowedChildren=[],this.attr=function(bA){if("function"==typeof FA.getAttribute)return FA.getAttribute(bA)},this.resolveUrl=function(bA){var OA=(bA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],ne=OA[1]||OA[3]||OA[5]||OA[7],UA=OA[2]||OA[4]||OA[6]||OA[8];if(UA){if(!ne){var ie=o.getElementById(UA);if(ie)return-1===this.stack.indexOf(ie)?ie:void tn('SVGtoPDF: loop of circular references for id "'+UA+'"')}if(wn){var ZA=Tn[ne];if(!ZA){(function GA(Ae){return"object"==typeof Ae&&null!==Ae&&"number"==typeof Ae.length})(ZA=wn(ne))||(ZA=[ZA]);for(var de=0;de=0&&ne[3]>=0?ne:OA},this.getPercent=function(bA,OA){var ne=this.attr(bA),UA=new Be((ne||"").trim()),de=UA.matchNumber();return!de||(UA.match("%")&&(de*=.01),UA.matchAll())?OA:Math.max(0,Math.min(1,de))},this.chooseValue=function(bA){for(var OA=0;OA=0&&(UA=ZA);break;case"stroke-miterlimit":null!=(ZA=parseFloat(ne))&&ZA>=1&&(UA=ZA);break;case"word-spacing":case"letter-spacing":UA=this.computeLength(ne,this.getViewport());break;case"stroke-dashoffset":if(null!=(UA=this.computeLength(ne,this.getViewport()))&&UA<0)for(var an=this.get("stroke-dasharray"),fe=0;fe0?OA:this.ref?this.ref.getChildren():[]},this.getPaint=function(OA,ne,UA,ie){var ZA="userSpaceOnUse"!==this.attr("patternUnits"),de="objectBoundingBox"===this.attr("patternContentUnits"),ye=this.getLength("x",ZA?1:this.getParentVWidth(),0),Ye=this.getLength("y",ZA?1:this.getParentVHeight(),0),He=this.getLength("width",ZA?1:this.getParentVWidth(),0),Ze=this.getLength("height",ZA?1:this.getParentVHeight(),0);de&&!ZA?(ye=(ye-OA[0])/(OA[2]-OA[0])||0,Ye=(Ye-OA[1])/(OA[3]-OA[1])||0,He=He/(OA[2]-OA[0])||0,Ze=Ze/(OA[3]-OA[1])||0):!de&&ZA&&(ye=OA[0]+ye*(OA[2]-OA[0]),Ye=OA[1]+Ye*(OA[3]-OA[1]),He*=OA[2]-OA[0],Ze*=OA[3]-OA[1]);var an=this.getViewbox("viewBox",[0,0,He,Ze]),Re=CA(U((this.attr("preserveAspectRatio")||"").trim(),He,Ze,an[2],an[3],0),[1,0,0,1,-an[0],-an[1]]),qe=j(this.attr("patternTransform"));if(de&&(qe=CA([OA[2]-OA[0],0,0,OA[3]-OA[1],OA[0],OA[1]],qe)),(qe=O(qe=CA(qe,[1,0,0,1,ye,Ye])))&&(Re=O(Re))&&(He=yA(He))&&(Ze=yA(Ze))){var ze=C([0,0,He,Ze]);return s.transform.apply(s,Re),this.drawChildren(UA,ie),P(ze),[Q(ze,He,Ze,qe),ne]}return TA?[TA[0],TA[1]*ne]:void 0},this.getVWidth=function(){var OA="userSpaceOnUse"!==this.attr("patternUnits"),ne=this.getLength("width",OA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,ne,0])[2]},this.getVHeight=function(){var OA="userSpaceOnUse"!==this.attr("patternUnits"),ne=this.getLength("height",OA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,ne])[3]}},DA=function(FA,re,TA){HA.call(this,FA,re),this.allowedChildren=["stop"],this.ref=function(){var OA=this.getUrl("href")||this.getUrl("xlink:href");if(OA&&OA.nodeName===FA.nodeName)return new DA(OA,re,TA)}.call(this);var RA=this.attr;this.attr=function(OA){var ne=RA.call(this,OA);return null!=ne||"href"===OA||"xlink:href"===OA?ne:this.ref?this.ref.attr(OA):null};var bA=this.getChildren;this.getChildren=function(){var OA=bA.call(this);return OA.length>0?OA:this.ref?this.ref.getChildren():[]},this.getPaint=function(OA,ne,UA,ie){var ZA=this.getChildren();if(0!==ZA.length){if(1===ZA.length){var de=ZA[0],ye=de.get("stop-color");return"none"===ye?void 0:_(ye,de.get("stop-opacity")*ne,ie)}var an,fe,Re,qe,ze,en,Ye="userSpaceOnUse"!==this.attr("gradientUnits"),He=j(this.attr("gradientTransform")),Ze=this.attr("spreadMethod"),je=0,fn=0,on=1;if(Ye&&(He=CA([OA[2]-OA[0],0,0,OA[3]-OA[1],OA[0],OA[1]],He)),He=O(He)){if("linearGradient"===this.name)fe=this.getLength("x1",Ye?1:this.getVWidth(),0),Re=this.getLength("x2",Ye?1:this.getVWidth(),Ye?1:this.getVWidth()),qe=this.getLength("y1",Ye?1:this.getVHeight(),0),ze=this.getLength("y2",Ye?1:this.getVHeight(),0);else{Re=this.getLength("cx",Ye?1:this.getVWidth(),Ye?.5:.5*this.getVWidth()),ze=this.getLength("cy",Ye?1:this.getVHeight(),Ye?.5:.5*this.getVHeight()),en=this.getLength("r",Ye?1:this.getViewport(),Ye?.5:.5*this.getViewport()),fe=this.getLength("fx",Ye?1:this.getVWidth(),Re),qe=this.getLength("fy",Ye?1:this.getVHeight(),ze),en<0&&tn("SvgElemGradient: negative r value");var pn=Math.sqrt(Math.pow(Re-fe,2)+Math.pow(ze-qe,2)),Hn=1;pn>en&&(fe=Re+(fe-Re)*(Hn=en/pn),qe=ze+(qe-ze)*Hn),en=Math.max(en,pn*Hn*1.000001)}if("reflect"===Ze||"repeat"===Ze){var mn=zA(He),Fn=KA([OA[0],OA[1]],mn),kn=KA([OA[2],OA[1]],mn),$n=KA([OA[2],OA[3]],mn),Mr=KA([OA[0],OA[3]],mn);"linearGradient"===this.name?(je=Math.max((Fn[0]-Re)*(Re-fe)+(Fn[1]-ze)*(ze-qe),(kn[0]-Re)*(Re-fe)+(kn[1]-ze)*(ze-qe),($n[0]-Re)*(Re-fe)+($n[1]-ze)*(ze-qe),(Mr[0]-Re)*(Re-fe)+(Mr[1]-ze)*(ze-qe))/(Math.pow(Re-fe,2)+Math.pow(ze-qe,2)),fn=Math.max((Fn[0]-fe)*(fe-Re)+(Fn[1]-qe)*(qe-ze),(kn[0]-fe)*(fe-Re)+(kn[1]-qe)*(qe-ze),($n[0]-fe)*(fe-Re)+($n[1]-qe)*(qe-ze),(Mr[0]-fe)*(fe-Re)+(Mr[1]-qe)*(qe-ze))/(Math.pow(Re-fe,2)+Math.pow(ze-qe,2))):je=Math.sqrt(Math.max(Math.pow(Fn[0]-Re,2)+Math.pow(Fn[1]-ze,2),Math.pow(kn[0]-Re,2)+Math.pow(kn[1]-ze,2),Math.pow($n[0]-Re,2)+Math.pow($n[1]-ze,2),Math.pow(Mr[0]-Re,2)+Math.pow(Mr[1]-ze,2)))/en-1,je=Math.ceil(je+.5),on=(fn=Math.ceil(fn+.5))+1+je}an="linearGradient"===this.name?s.linearGradient(fe-fn*(Re-fe),qe-fn*(ze-qe),Re+je*(Re-fe),ze+je*(ze-qe)):s.radialGradient(fe,qe,0,Re,ze,en+je*en);for(var ir=0;ir0&&an.stop((ir+0)/on,wA[0],wA[1]),an.stop((ir+Qr)/(je+fn+1),wA[0],wA[1]),Yn===ZA.length-1&&Qr<1&&an.stop((ir+1)/on,wA[0],wA[1])}return an.setTransform.apply(an,He),[an,1]}return TA?[TA[0],TA[1]*ne]:void 0}}},iA=function(FA,re){_A.call(this,FA,re),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(TA,RA){if("hidden"!==this.get("visibility")&&this.shape){if(s.save(),this.transform(),this.clip(),TA)this.shape.insertInDocument(),b(a.white),s.fill(this.get("clip-rule"));else{var OA;this.mask()&&(OA=C(NA()));var ne=this.shape.getSubPaths(),UA=this.getFill(TA,RA),ie=this.getStroke(TA,RA),ZA=this.get("stroke-width"),de=this.get("stroke-linecap");if(UA||ie){if(UA&&b(UA),ie){for(var ye=0;ye0&&ne[ye].startPoint&&ne[ye].startPoint.length>1){var Ye=ne[ye].startPoint[0],He=ne[ye].startPoint[1];b(ie),"square"===de?s.rect(Ye-.5*ZA,He-.5*ZA,ZA,ZA):"round"===de&&s.circle(Ye,He,.5*ZA),s.fill()}var Ze=this.get("stroke-dasharray"),an=this.get("stroke-dashoffset");if(hA(this.dashScale,1)){for(var fe=0;fe0&&ne[Re].insertInDocument();UA&&ie?s.fillAndStroke(this.get("fill-rule")):UA?s.fill(this.get("fill-rule")):ie&&s.stroke()}var qe=this.get("marker-start"),ze=this.get("marker-mid"),en=this.get("marker-end");if("none"!==qe||"none"!==ze||"none"!==en){var je=this.shape.getMarkers();if("none"!==qe&&new ce(qe,null).drawMarker(!1,RA,je[0],ZA),"none"!==ze)for(var on=1;on0&&OA>0?ne&&UA?(ne=Math.min(ne,.5*bA),UA=Math.min(UA,.5*OA),this.shape=(new Me).M(TA+ne,RA).L(TA+bA-ne,RA).A(ne,UA,0,0,1,TA+bA,RA+UA).L(TA+bA,RA+OA-UA).A(ne,UA,0,0,1,TA+bA-ne,RA+OA).L(TA+ne,RA+OA).A(ne,UA,0,0,1,TA,RA+OA-UA).L(TA,RA+UA).A(ne,UA,0,0,1,TA+ne,RA).Z()):this.shape=(new Me).M(TA,RA).L(TA+bA,RA).L(TA+bA,RA+OA).L(TA,RA+OA).Z():this.shape=new Me},Xe=function(FA,re){iA.call(this,FA,re);var TA=this.getLength("cx",this.getVWidth(),0),RA=this.getLength("cy",this.getVHeight(),0),bA=this.getLength("r",this.getViewport(),0);this.shape=bA>0?(new Me).M(TA+bA,RA).A(bA,bA,0,0,1,TA-bA,RA).A(bA,bA,0,0,1,TA+bA,RA).Z():new Me},J=function(FA,re){iA.call(this,FA,re);var TA=this.getLength("cx",this.getVWidth(),0),RA=this.getLength("cy",this.getVHeight(),0),bA=this.getLength("rx",this.getVWidth(),0),OA=this.getLength("ry",this.getVHeight(),0);this.shape=bA>0&&OA>0?(new Me).M(TA+bA,RA).A(bA,OA,0,0,1,TA-bA,RA).A(bA,OA,0,0,1,TA+bA,RA).Z():new Me},$A=function(FA,re){iA.call(this,FA,re);var TA=this.getLength("x1",this.getVWidth(),0),RA=this.getLength("y1",this.getVHeight(),0),bA=this.getLength("x2",this.getVWidth(),0),OA=this.getLength("y2",this.getVHeight(),0);this.shape=(new Me).M(TA,RA).L(bA,OA)},te=function(FA,re){iA.call(this,FA,re);var TA=this.getNumberList("points");this.shape=new Me;for(var RA=0;RA0?TA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},ce=function(FA,re){Ce.call(this,FA,re);var TA=this.getLength("markerWidth",this.getParentVWidth(),3),RA=this.getLength("markerHeight",this.getParentVHeight(),3),bA=this.getViewbox("viewBox",[0,0,TA,RA]);this.getVWidth=function(){return bA[2]},this.getVHeight=function(){return bA[3]},this.drawMarker=function(OA,ne,UA,ie){s.save();var ZA=this.attr("orient"),de=this.attr("markerUnits"),ye="auto"===ZA?UA[2]:(parseFloat(ZA)||0)*Math.PI/180,Ye="userSpaceOnUse"===de?1:ie;s.transform(Math.cos(ye)*Ye,Math.sin(ye)*Ye,-Math.sin(ye)*Ye,Math.cos(ye)*Ye,UA[0],UA[1]);var fe,He=this.getLength("refX",this.getVWidth(),0),Ze=this.getLength("refY",this.getVHeight(),0),an=U(this.attr("preserveAspectRatio"),TA,RA,bA[2],bA[3],.5);"hidden"===this.get("overflow")&&s.rect(an[0]*(bA[0]+bA[2]/2-He)-TA/2,an[3]*(bA[1]+bA[3]/2-Ze)-RA/2,TA,RA).clip(),s.transform.apply(s,an),s.translate(-He,-Ze),this.get("opacity")<1&&!OA&&(fe=C(NA())),this.drawChildren(OA,ne),fe&&(P(fe),s.fillOpacity(this.get("opacity")),M(fe)),s.restore()}},Se=function(FA,re){Ce.call(this,FA,re),this.useMask=function(TA){var RA=C(NA());s.save(),"objectBoundingBox"===this.attr("clipPathUnits")&&s.transform(TA[2]-TA[0],0,0,TA[3]-TA[1],TA[0],TA[1]),this.clip(),this.drawChildren(!0,!1),s.restore(),P(RA),N(RA,!0)}},xe=function(FA,re){Ce.call(this,FA,re),this.useMask=function(TA){var bA,OA,ne,UA,RA=C(NA());s.save(),"userSpaceOnUse"===this.attr("maskUnits")?(bA=this.getLength("x",this.getVWidth(),-.1*(TA[2]-TA[0])+TA[0]),OA=this.getLength("y",this.getVHeight(),-.1*(TA[3]-TA[1])+TA[1]),ne=this.getLength("width",this.getVWidth(),1.2*(TA[2]-TA[0])),UA=this.getLength("height",this.getVHeight(),1.2*(TA[3]-TA[1]))):(bA=this.getLength("x",this.getVWidth(),-.1)*(TA[2]-TA[0])+TA[0],OA=this.getLength("y",this.getVHeight(),-.1)*(TA[3]-TA[1])+TA[1],ne=this.getLength("width",this.getVWidth(),1.2)*(TA[2]-TA[0]),UA=this.getLength("height",this.getVHeight(),1.2)*(TA[3]-TA[1])),s.rect(bA,OA,ne,UA).clip(),"objectBoundingBox"===this.attr("maskContentUnits")&&s.transform(TA[2]-TA[0],0,0,TA[3]-TA[1],TA[0],TA[1]),this.clip(),this.drawChildren(!1,!0),s.restore(),P(RA),N(RA,!0)}},Ue=function(FA,re){_A.call(this,FA,re),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){for(var TA=new Me,RA=0;RA Tj")}s.addContent("ET")}}}"line-through"===this.get("text-decoration")&&this.decorate(.05*this._font.size,.5*(vA(this._font.font,this._font.size)+xA(this._font.font,this._font.size)),TA,RA)},this.decorate=function(TA,RA,bA,OA){var ne=this.getFill(bA,OA),UA=this.getStroke(bA,OA);ne&&b(ne),UA&&(w(UA),s.lineWidth(this.get("stroke-width")).miterLimit(this.get("stroke-miterlimit")).lineJoin(this.get("stroke-linejoin")).lineCap(this.get("stroke-linecap")).dash(this.get("stroke-dasharray"),{phase:this.get("stroke-dashoffset")}));for(var ie=0,ZA=this._pos;ie0?OA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((bA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===bA.nodeName){var ne=new JA(bA,this);this.pathObject=ne.shape.clone().transform(ne.get("transform")),this.pathLength=this.chooseValue(ne.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},pe=function(FA,re){Ue.call(this,FA,re),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(TA){var UA,ie,RA="",bA=FA.textContent,OA=[],ne=[],ZA=0,de=0;function ye(){if(ne.length)for(var fe=ne[ne.length-1],ze={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[UA+ie]*(fe.x+fe.width-ne[0].x)||0,en=0;enqe||fn<0)fe._pos[je].hidden=!0;else{var on=Re.getPointAtLength(fn*ze);hA(ze,1)&&(fe._pos[je].scale*=ze,fe._pos[je].width*=ze),fe._pos[je].x=on[0]-.5*fe._pos[je].width*Math.cos(on[2])-fe._pos[je].y*Math.sin(on[2]),fe._pos[je].y=on[1]-.5*fe._pos[je].width*Math.sin(on[2])+fe._pos[je].y*Math.cos(on[2]),fe._pos[je].rotate=on[2]+fe._pos[je].rotate,fe._pos[je].continuous=!1}}else for(var pn=0;pn0&&on<1/0)for(var pn=0;pn=2)for(var Hn=(Re-(fn-je))/(fe.length-1),mn=0;mn0})).forEach(function(AA){var PA={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(function(IA){void 0!==AA[IA]&&(PA[IA]=AA[IA])}),PA.startPosition=AA.positions[0],PA.pageNumbers=Array.from(new Set(AA.positions.map(function(IA){return IA.pageNumber}))),PA.pages=mA.length,PA.stack=d(AA.stack),AA.nodeInfo=PA});for(var tA=0;tA1)for(var U=tA+1,rA=O.length;U-1&&yA.push(O[U].nodeInfo),KA.length>2&&O[U].nodeInfo.pageNumbers.indexOf(hA+1)>-1&&GA.push(O[U].nodeInfo);if(KA.length>3)for(U=0;U-1&&j.push(O[U].nodeInfo);if(KA($.nodeInfo,yA,GA,j))return $.pageBreak="before",!0}}return!1}this.docPreprocessor=new i,this.docMeasure=new s(b,w,Z,this.imageMeasure,this.svgMeasure,this.tableLayouts,_);for(var zA=this.tryLayoutDocument(v,b,w,Z,oA,q,fA,_,CA);pA(zA.linearNodeList,zA.pages);)zA.linearNodeList.forEach(function(mA){mA.resetXY()}),zA=this.tryLayoutDocument(v,b,w,Z,oA,q,fA,_,CA);return zA.pages},y.prototype.tryLayoutDocument=function(v,b,w,Z,oA,q,fA,_,CA,KA){this.linearNodeList=[],v=this.docPreprocessor.preprocessDocument(v),v=this.docMeasure.measureDocument(v),this.writer=new m(new o(this.pageSize,this.pageMargins),this.tracker);var pA=this;return this.writer.context().tracker.startTracking("pageAdded",function(){pA.addBackground(oA)}),this.addBackground(oA),this.processNode(v),this.addHeadersAndFooters(q,fA),null!=CA&&this.addWatermark(CA,b,Z),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList}},y.prototype.addBackground=function(v){var b=N(v)?v:function(){return v},w=this.writer.context(),Z=w.getCurrentPage().pageSize,oA=b(w.page+1,Z);oA&&(this.writer.beginUnbreakableBlock(Z.width,Z.height),oA=this.docPreprocessor.preprocessDocument(oA),this.processNode(this.docMeasure.measureDocument(oA)),this.writer.commitUnbreakableBlock(0,0),w.backgroundLength[w.page]+=oA.positions.length)},y.prototype.addStaticRepeatable=function(v,b){this.addDynamicRepeatable(function(){return JSON.parse(JSON.stringify(v))},b)},y.prototype.addDynamicRepeatable=function(v,b){for(var Z=0,oA=this.writer.context().pages.length;Z1;)O.push({fontSize:hA}),(mA=zA.sizeOfRotatedText(pA.text,pA.angle,O)).width>KA.width?hA=(tA+($=hA))/2:mA.widthKA.height?(tA+($=hA))/2:((tA=hA)+$)/2),O.pop();return hA}(this.pageSize,v,b));var Z={text:v.text,font:b.provideFont(v.font,v.bold,v.italics),fontSize:v.fontSize,color:v.color,opacity:v.opacity,angle:v.angle};Z._size=function _(KA,pA){var NA=new Q(pA),zA=new X(null,{font:KA.font,bold:KA.bold,italics:KA.italics});return zA.push({fontSize:KA.fontSize}),{size:NA.sizeOfString(KA.text,zA),rotatedSize:NA.sizeOfRotatedText(KA.text,KA.angle,zA)}}(v,b);for(var oA=this.writer.context().pages,q=0,fA=oA.length;q0;CA--)_.push(fA);return _}(v._gap);Z&&(w-=(Z.length-1)*v._gap),u.buildColumnWidths(b,w);var oA=this.processRow({marginX:v._margin?[v._margin[0],v._margin[2]]:[0,0],cells:b,widths:b,gaps:Z});F(v.positions,oA.positions),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()},y.prototype._findStartingRowSpanCell=function(v,b){for(var w=1,Z=b-1;Z>=0;Z--){if(!v[Z]._span)return v[Z].rowSpan>1&&(v[Z].colSpan||1)===w?v[Z]:null;w++}return null},y.prototype._getPageBreak=function(v,b){return v.find(function(w){return w.prevPage===b})},y.prototype._getPageBreakListBySpan=function(v,b,w){if(!v||!v._breaksBySpan)return null;var Z=v._breaksBySpan.filter(function(fA){return fA.prevPage===b&&w<=fA.rowIndexOfSpanEnd}),oA=Number.MAX_VALUE,q=Number.MIN_VALUE;return Z.forEach(function(fA){q=Math.max(fA.prevY,q),oA=Math.min(fA.y,oA)}),{prevPage:b,prevY:q,y:oA}},y.prototype._findSameRowPageBreakByRowSpanData=function(v,b,w){return v?v.find(function(Z){return Z.prevPage===b&&w===Z.rowIndexOfSpanEnd}):null},y.prototype._updatePageBreaksData=function(v,b,w){var Z=this;Object.keys(b._bottomByPage).forEach(function(oA){var q=Number(oA),fA=Z._getPageBreak(v,q);if(fA&&(fA.prevY=Math.max(fA.prevY,b._bottomByPage[q])),b._breaksBySpan&&b._breaksBySpan.length>0){var _=b._breaksBySpan.filter(function(CA){return CA.prevPage===q&&w<=CA.rowIndexOfSpanEnd});_&&_.length>0&&_.forEach(function(CA){CA.prevY=Math.max(CA.prevY,b._bottomByPage[q])})}})},y.prototype._resolveBreakY=function(v,b,w){w.prevY=Math.max(v.prevY,b.prevY),w.y=Math.min(v.y,b.y)},y.prototype._storePageBreakData=function(v,b,w,Z){var oA,q;b?((q=this._findSameRowPageBreakByRowSpanData(Z&&Z._breaksBySpan||null,v.prevPage,v.rowIndex))||(q=Object.assign({},v,{rowIndexOfSpanEnd:v.rowIndex+v.rowSpan-1}),Z._breaksBySpan||(Z._breaksBySpan=[]),Z._breaksBySpan.push(q)),q.prevY=Math.max(q.prevY,v.prevY),q.y=Math.min(q.y,v.y),(oA=this._getPageBreak(w,v.prevPage))&&this._resolveBreakY(oA,q,oA)):(oA=this._getPageBreak(w,v.prevPage),q=this._getPageBreakListBySpan(Z,v.prevPage,v.rowIndex),oA||(oA=Object.assign({},v),w.push(oA)),q&&this._resolveBreakY(oA,q,oA),this._resolveBreakY(oA,v,oA))},y.prototype._colLeftOffset=function(v,b){return b&&b.length>v?b[v]:0},y.prototype._getRowSpanEndingCell=function(v,b,w,Z){if(w.rowSpan&&w.rowSpan>1){var oA=b+w.rowSpan-1;if(oA>=v.length)throw new Error("Row span for column "+Z+" (with indexes starting from 0) exceeded row count");return v[oA][Z]}return null},y.prototype.processRow=function(v){var b=v.marginX,w=void 0===b?[0,0]:b,Z=v.dontBreakRows,oA=void 0!==Z&&Z,q=v.rowsWithoutPageBreak,_=v.cells,CA=v.widths,KA=v.gaps,pA=v.tableNode,NA=v.tableBody,zA=v.rowIndex,O=v.height,mA=this,tA=oA||zA<=(void 0===q?0:q)-1,$=[],yA=[],GA=!1;CA=CA||_,!tA&&O>mA.writer.context().availableHeight&&(GA=!0);var j=1===mA.nestedLevel?w:null,U=pA?pA._bottomByPage:null;this.writer.context().beginColumnGroup(j,U);for(var rA=0,AA=_.length;rA1)for(var ge=1;ge0&&(le._isUnbreakableContext=!0,le._originalXOffset=mA.writer.originalX)),mA.writer.context().beginColumn(SA,EA,le),PA._span){if(PA._columnEndingContext){var we=0;oA&&(we=mA.writer.writer.contextStack[mA.writer.writer.contextStack.length-1].y-PA._startingRowSpanY);var HA=0;PA._isUnbreakableContext&&!mA.writer.transactionLevel&&(HA=PA._originalXOffset),mA.writer.context().markEnding(PA,HA,we)}}else mA.processNode(PA),mA.writer.context().updateBottomByPage(),F(yA,PA.positions)})}var IA=null,cA=_.length>0?_[_.length-1]:null;if(cA)if(cA._endingCell)IA=cA._endingCell;else if(!0===cA._span){var dA=this._findStartingRowSpanCell(_,_.length);dA&&(IA=dA._endingCell,this.writer.transactionLevel>0&&(IA._isUnbreakableContext=!0,IA._originalXOffset=this.writer.originalX))}GA&&!tA&&0===$.length&&(this.writer.context().moveDown(this.writer.context().availableHeight),this.writer.moveToNextPage());var vA=this.writer.context().completeColumnGroup(O,IA);return pA&&(pA._bottomByPage=vA,this._updatePageBreaksData($,pA,zA)),{pageBreaksBySpan:[],pageBreaks:$,positions:yA};function xA(SA){var EA=PA.rowSpan&&PA.rowSpan>1;EA&&(SA.rowSpan=PA.rowSpan),SA.rowIndex=zA,mA._storePageBreakData(SA,EA,$,pA)}},y.prototype.processList=function(v,b){var q,w=this,Z=v?b.ol:b.ul,oA=b._gapSize;this.writer.context().addMargin(oA.width),this.tracker.auto("lineAdded",function fA(_){if(q){var CA=q;if(q=null,CA.canvas){var KA=CA.canvas[0];C(KA,-CA._minWidth,0),w.writer.addVector(KA)}else if(CA._inlines){var pA=new B(w.pageSize.width);pA.addInline(CA._inlines[0]),pA.x=-CA._minWidth,pA.y=_.getAscenderHeight()-pA.getAscenderHeight(),w.writer.addLine(pA,!0)}}},function(){Z.forEach(function(_){q=_.listMarker,w.processNode(_),F(b.positions,_.positions)})}),this.writer.context().addMargin(-oA.width)},y.prototype.processTable=function(v){var b=this;this.nestedLevel++;var w=new f(v);w.beginTable(this.writer);for(var Z=v.table.heights,oA=0,q=v.table.body.length;oA1&&(zA._startingRowSpanY=b.writer.context().y)}),w.beginRow(oA,this.writer),"auto"===(fA=N(Z)?Z(oA):d(Z)?Z[oA]:Z)&&(fA=void 0);var _=this.writer.context().page,CA=this.processRow({marginX:v._margin?[v._margin[0],v._margin[2]]:[0,0],dontBreakRows:w.dontBreakRows,rowsWithoutPageBreak:w.rowsWithoutPageBreak,cells:v.table.body[oA],widths:v.table.widths,gaps:v._offsets.offsets,tableBody:v.table.body,tableNode:v,rowIndex:oA,height:fA});if(F(v.positions,CA.positions),!CA.pageBreaks||0===CA.pageBreaks.length){var pA=this._findSameRowPageBreakByRowSpanData(v&&v._breaksBySpan||null,_,oA);if(pA){var NA=this._getPageBreakListBySpan(v,pA.prevPage,oA);CA.pageBreaks.push(NA)}}w.endRow(oA,this.writer,CA.pageBreaks)}w.endTable(this.writer),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()},y.prototype.processLeaf=function(v){var b=this.buildNextLine(v);b&&(v.tocItem||v.id)&&(b._node=v);var w=b?b.getHeight():0,Z=v.maxHeight||-1;if(b){var oA=M(v);oA&&(b.id=oA)}if(v._tocItemRef&&(b._pageNodeRef=v._tocItemRef),v._pageRef&&(b._pageNodeRef=v._pageRef._nodeRef),b&&b.inlines&&d(b.inlines))for(var q=0,fA=b.inlines.length;q0&&(w.hasEnoughSpaceForInline(v._inlines[0],v._inlines.slice(1))||oA);){var q=!1,fA=v._inlines.shift();if(oA=!1,!fA.noWrap&&fA.text.length>1&&fA.width>w.getAvailableWidth()){var _=fA.width/fA.text.length,CA=Math.floor(w.getAvailableWidth()/_);if(CA<1&&(CA=1),CA"u"&&(i.pdfMake=g),Y.exports=g},80182:function(Y,A,r){"use strict";var g=r(9964);function i(vA){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(xA){return typeof xA}:function(xA){return xA&&"function"==typeof Symbol&&xA.constructor===Symbol&&xA!==Symbol.prototype?"symbol":typeof xA})(vA)}function s(vA,xA){for(var SA=0;SA1?SA-1:0),WA=1;WA1?SA-1:0),WA=1;WA1?SA-1:0),WA=1;WA1?SA-1:0),WA=1;WA"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 Q(O,mA){return(Q=Object.setPrototypeOf?Object.setPrototypeOf.bind():function($,hA){return $.__proto__=hA,$})(O,mA)}function X(O){return(X=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(tA){return tA.__proto__||Object.getPrototypeOf(tA)})(O)}function D(O){return(D="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(mA){return typeof mA}:function(mA){return mA&&"function"==typeof Symbol&&mA.constructor===Symbol&&mA!==Symbol.prototype?"symbol":typeof mA})(O)}var y=r(7187).inspect,v=r(35403).codes.ERR_INVALID_ARG_TYPE;function b(O,mA,tA){return(void 0===tA||tA>O.length)&&(tA=O.length),O.substring(tA-mA.length,tA)===mA}var Z="",oA="",q="",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 KA(O){var mA=Object.keys(O),tA=Object.create(Object.getPrototypeOf(O));return mA.forEach(function($){tA[$]=O[$]}),Object.defineProperty(tA,"message",{value:O.message}),tA}function pA(O){return y(O,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function NA(O,mA,tA){var $="",hA="",yA=0,GA="",j=!1,U=pA(O),rA=U.split("\n"),AA=pA(mA).split("\n"),PA=0,IA="";if("strictEqual"===tA&&"object"===D(O)&&"object"===D(mA)&&null!==O&&null!==mA&&(tA="strictEqualObject"),1===rA.length&&1===AA.length&&rA[0]!==AA[0]){var cA=rA[0].length+AA[0].length;if(cA<=10){if(!("object"===D(O)&&null!==O||"object"===D(mA)&&null!==mA||0===O&&0===mA))return"".concat(_[tA],"\n\n")+"".concat(rA[0]," !== ").concat(AA[0],"\n")}else if("strictEqualObject"!==tA&&cA<(g.stderr&&g.stderr.isTTY?g.stderr.columns:80)){for(;rA[0][PA]===AA[0][PA];)PA++;PA>2&&(IA="\n ".concat(function w(O,mA){if(mA=Math.floor(mA),0==O.length||0==mA)return"";var tA=O.length*mA;for(mA=Math.floor(Math.log(mA)/Math.log(2));mA;)O+=O,mA--;return O+O.substring(0,tA-O.length)}(" ",PA),"^"),PA=0)}}for(var vA=rA[rA.length-1],xA=AA[AA.length-1];vA===xA&&(PA++<2?GA="\n ".concat(vA).concat(GA):$=vA,rA.pop(),AA.pop(),0!==rA.length&&0!==AA.length);)vA=rA[rA.length-1],xA=AA[AA.length-1];var SA=Math.max(rA.length,AA.length);if(0===SA){var EA=U.split("\n");if(EA.length>30)for(EA[26]="".concat(Z,"...").concat(fA);EA.length>27;)EA.pop();return"".concat(_.notIdentical,"\n\n").concat(EA.join("\n"),"\n")}PA>3&&(GA="\n".concat(Z,"...").concat(fA).concat(GA),j=!0),""!==$&&(GA="\n ".concat($).concat(GA),$="");var WA=0,ge=_[tA]+"\n".concat(oA,"+ actual").concat(fA," ").concat(q,"- expected").concat(fA),Be=" ".concat(Z,"...").concat(fA," Lines skipped");for(PA=0;PA1&&PA>2&&(le>4?(hA+="\n".concat(Z,"...").concat(fA),j=!0):le>3&&(hA+="\n ".concat(AA[PA-2]),WA++),hA+="\n ".concat(AA[PA-1]),WA++),yA=PA,$+="\n".concat(q,"-").concat(fA," ").concat(AA[PA]),WA++;else if(AA.length1&&PA>2&&(le>4?(hA+="\n".concat(Z,"...").concat(fA),j=!0):le>3&&(hA+="\n ".concat(rA[PA-2]),WA++),hA+="\n ".concat(rA[PA-1]),WA++),yA=PA,hA+="\n".concat(oA,"+").concat(fA," ").concat(rA[PA]),WA++;else{var we=AA[PA],Me=rA[PA],HA=Me!==we&&(!b(Me,",")||Me.slice(0,-1)!==we);HA&&b(we,",")&&we.slice(0,-1)===Me&&(HA=!1,Me+=","),HA?(le>1&&PA>2&&(le>4?(hA+="\n".concat(Z,"...").concat(fA),j=!0):le>3&&(hA+="\n ".concat(rA[PA-2]),WA++),hA+="\n ".concat(rA[PA-1]),WA++),yA=PA,hA+="\n".concat(oA,"+").concat(fA," ").concat(Me),$+="\n".concat(q,"-").concat(fA," ").concat(we),WA+=2):(hA+=$,$="",(1===le||0===PA)&&(hA+="\n ".concat(Me),WA++))}if(WA>20&&PA30)for(cA[26]="".concat(Z,"...").concat(fA);cA.length>27;)cA.pop();yA=tA.call(this,1===cA.length?"".concat(IA," ").concat(cA[0]):"".concat(IA,"\n\n").concat(cA.join("\n"),"\n"))}else{var dA=pA(rA),vA="",xA=_[j];"notDeepEqual"===j||"notEqual"===j?(dA="".concat(_[j],"\n\n").concat(dA)).length>1024&&(dA="".concat(dA.slice(0,1021),"...")):(vA="".concat(pA(AA)),dA.length>512&&(dA="".concat(dA.slice(0,509),"...")),vA.length>512&&(vA="".concat(vA.slice(0,509),"...")),"deepEqual"===j||"equal"===j?dA="".concat(xA,"\n\n").concat(dA,"\n\nshould equal\n\n"):vA=" ".concat(j," ").concat(vA)),yA=tA.call(this,"".concat(dA).concat(vA))}return Error.stackTraceLimit=PA,yA.generatedMessage=!GA,Object.defineProperty(n(yA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),yA.code="ERR_ASSERTION",yA.actual=rA,yA.expected=AA,yA.operator=j,Error.captureStackTrace&&Error.captureStackTrace(n(yA),U),yA.name="AssertionError",E(yA)}return function f(O,mA,tA){return mA&&u(O.prototype,mA),tA&&u(O,tA),Object.defineProperty(O,"prototype",{writable:!1}),O}($,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:mA,value:function(yA,GA){return y(this,s(s({},GA),{},{customInspect:!1,depth:0}))}}]),$}(C(Error),y.custom);Y.exports=zA},35403:function(Y,A,r){"use strict";function g(y){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(K){return typeof K}:function(K){return K&&"function"==typeof Symbol&&K.constructor===Symbol&&K!==Symbol.prototype?"symbol":typeof K})(y)}function i(y,K){for(var v=0;v"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 w,b=n(y);if(K){var Z=n(this).constructor;w=Reflect.construct(b,arguments,Z)}else w=b.apply(this,arguments);return function d(y,K){if(K&&("object"===g(K)||"function"==typeof K))return K;if(void 0!==K)throw new TypeError("Derived constructors may only return object or undefined");return function h(y){if(void 0===y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y}(y)}(this,w)}}function n(y){return(n=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(v){return v.__proto__||Object.getPrototypeOf(v)})(y)}var P,M,C={};function N(y,K,v){v||(v=Error),C[y]=function(Z){!function f(y,K){if("function"!=typeof K&&null!==K)throw new TypeError("Super expression must either be null or a function");y.prototype=Object.create(K&&K.prototype,{constructor:{value:y,writable:!0,configurable:!0}}),Object.defineProperty(y,"prototype",{writable:!1}),K&&B(y,K)}(q,Z);var oA=a(q);function q(fA,_,CA){var KA;return function u(y,K){if(!(y instanceof K))throw new TypeError("Cannot call a class as a function")}(this,q),(KA=oA.call(this,function b(Z,oA,q){return"string"==typeof K?K:K(Z,oA,q)}(fA,_,CA))).code=y,KA}return function s(y,K,v){return K&&i(y.prototype,K),v&&i(y,v),Object.defineProperty(y,"prototype",{writable:!1}),y}(q)}(v)}function Q(y,K){if(Array.isArray(y)){var v=y.length;return y=y.map(function(b){return String(b)}),v>2?"one of ".concat(K," ").concat(y.slice(0,v-1).join(", "),", or ")+y[v-1]:2===v?"one of ".concat(K," ").concat(y[0]," or ").concat(y[1]):"of ".concat(K," ").concat(y[0])}return"of ".concat(K," ").concat(String(y))}N("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),N("ERR_INVALID_ARG_TYPE",function(y,K,v){var b,w;if(void 0===P&&(P=r(80182)),P("string"==typeof y,"'name' must be a string"),"string"==typeof K&&function X(y,K,v){return y.substr(!v||v<0?0:+v,K.length)===K}(K,"not ")?(b="must not be",K=K.replace(/^not /,"")):b="must be",function D(y,K,v){return(void 0===v||v>y.length)&&(v=y.length),y.substring(v-K.length,v)===K}(y," argument"))w="The ".concat(y," ").concat(b," ").concat(Q(K,"type"));else{var Z=function F(y,K,v){return"number"!=typeof v&&(v=0),!(v+K.length>y.length)&&-1!==y.indexOf(K,v)}(y,".")?"property":"argument";w='The "'.concat(y,'" ').concat(Z," ").concat(b," ").concat(Q(K,"type"))}return w+". Received type ".concat(g(v))},TypeError),N("ERR_INVALID_ARG_VALUE",function(y,K){var v=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===M&&(M=r(7187));var b=M.inspect(K);return b.length>128&&(b="".concat(b.slice(0,128),"...")),"The argument '".concat(y,"' ").concat(v,". Received ").concat(b)},TypeError,RangeError),N("ERR_INVALID_RETURN_VALUE",function(y,K,v){var b;return b=v&&v.constructor&&v.constructor.name?"instance of ".concat(v.constructor.name):"type ".concat(g(v)),"Expected ".concat(y,' to be returned from the "').concat(K,'"')+" function but got ".concat(b,".")},TypeError),N("ERR_MISSING_ARGS",function(){for(var y=arguments.length,K=new Array(y),v=0;v0,"At least one arg needs to be specified");var b="The ",w=K.length;switch(K=K.map(function(Z){return'"'.concat(Z,'"')}),w){case 1:b+="".concat(K[0]," argument");break;case 2:b+="".concat(K[0]," and ").concat(K[1]," arguments");break;default:b+=K.slice(0,w-1).join(", "),b+=", and ".concat(K[w-1]," arguments")}return"".concat(b," must be specified")},TypeError),Y.exports.codes=C},86781:function(Y,A,r){"use strict";function g(HA,_A){return function u(HA){if(Array.isArray(HA))return HA}(HA)||function m(HA,_A){var Ce=null==HA?null:typeof Symbol<"u"&&HA[Symbol.iterator]||HA["@@iterator"];if(null!=Ce){var me,De,Fe,MA,BA=[],T=!0,k=!1;try{if(Fe=(Ce=Ce.call(HA)).next,0===_A){if(Object(Ce)!==Ce)return;T=!1}else for(;!(T=(me=Fe.call(Ce)).done)&&(BA.push(me.value),BA.length!==_A);T=!0);}catch(aA){k=!0,De=aA}finally{try{if(!T&&null!=Ce.return&&(MA=Ce.return(),Object(MA)!==MA))return}finally{if(k)throw De}}return BA}}(HA,_A)||function s(HA,_A){if(HA){if("string"==typeof HA)return o(HA,_A);var Ce=Object.prototype.toString.call(HA).slice(8,-1);if("Object"===Ce&&HA.constructor&&(Ce=HA.constructor.name),"Map"===Ce||"Set"===Ce)return Array.from(HA);if("Arguments"===Ce||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(Ce))return o(HA,_A)}}(HA,_A)||function i(){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 o(HA,_A){(null==_A||_A>HA.length)&&(_A=HA.length);for(var Ce=0,me=new Array(_A);Ce<_A;Ce++)me[Ce]=HA[Ce];return me}function f(HA){return(f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(_A){return typeof _A}:function(_A){return _A&&"function"==typeof Symbol&&_A.constructor===Symbol&&_A!==Symbol.prototype?"symbol":typeof _A})(HA)}var B=void 0!==/a/g.flags,a=function(_A){var Ce=[];return _A.forEach(function(me){return Ce.push(me)}),Ce},d=function(_A){var Ce=[];return _A.forEach(function(me,De){return Ce.push([De,me])}),Ce},h=Object.is?Object.is:r(98527),E=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},n=Number.isNaN?Number.isNaN:r(7051);function C(HA){return HA.call.bind(HA)}var P=C(Object.prototype.hasOwnProperty),M=C(Object.prototype.propertyIsEnumerable),N=C(Object.prototype.toString),Q=r(7187).types,X=Q.isAnyArrayBuffer,D=Q.isArrayBufferView,F=Q.isDate,y=Q.isMap,K=Q.isRegExp,v=Q.isSet,b=Q.isNativeError,w=Q.isBoxedPrimitive,Z=Q.isNumberObject,oA=Q.isStringObject,q=Q.isBooleanObject,fA=Q.isBigIntObject,_=Q.isSymbolObject,CA=Q.isFloat32Array,KA=Q.isFloat64Array;function pA(HA){if(0===HA.length||HA.length>10)return!0;for(var _A=0;_A57)return!0}return 10===HA.length&&HA>=Math.pow(2,32)}function NA(HA){return Object.keys(HA).filter(pA).concat(E(HA).filter(Object.prototype.propertyIsEnumerable.bind(HA)))}function zA(HA,_A){if(HA===_A)return 0;for(var Ce=HA.length,me=_A.length,De=0,Fe=Math.min(Ce,me);De0?M-4:M;for(F=0;F>16&255,Q[X++]=C>>8&255,Q[X++]=255&C;return 2===N&&(C=g[n.charCodeAt(F)]<<2|g[n.charCodeAt(F+1)]>>4,Q[X++]=255&C),1===N&&(C=g[n.charCodeAt(F)]<<10|g[n.charCodeAt(F+1)]<<4|g[n.charCodeAt(F+2)]>>2,Q[X++]=C>>8&255,Q[X++]=255&C),Q},A.fromByteArray=function E(n){for(var C,P=n.length,M=P%3,N=[],Q=16383,X=0,D=P-M;XD?D:X+Q));return 1===M?N.push(r[(C=n[P-1])>>2]+r[C<<4&63]+"=="):2===M&&N.push(r[(C=(n[P-2]<<8)+n[P-1])>>10]+r[C>>4&63]+r[C<<2&63]+"="),N.join("")};for(var r=[],g=[],i=typeof Uint8Array<"u"?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)r[o]=s[o],g[s.charCodeAt(o)]=o;function u(n){var C=n.length;if(C%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var P=n.indexOf("=");return-1===P&&(P=C),[P,P===C?0:4-P%4]}function d(n){return r[n>>18&63]+r[n>>12&63]+r[n>>6&63]+r[63&n]}function h(n,C,P){for(var N=[],Q=C;Q0},s.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 o=this.buf_ptr_,m=this.input_.read(this.buf_,o,A);if(m<0)throw new Error("Unexpected end of input");if(m=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},s.prototype.readBits=function(o){32-this.bit_pos_>>this.bit_pos_&i[o];return this.bit_pos_+=o,m},Y.exports=s},7043:function(Y,A){A.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]),A.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},20980:function(Y,A,r){var i=r(98197).z,s=r(98197).y,o=r(34097),m=r(80614),u=r(81561).z,f=r(81561).u,B=r(7043),a=r(42210),d=r(87984),h=8,E=16,n=256,C=704,P=26,M=6,N=2,Q=8,X=255,D=1080,F=18,y=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),K=16,v=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),b=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),w=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 Z(rA){var AA;return 0===rA.readBits(1)?16:(AA=rA.readBits(3))>0?17+AA:(AA=rA.readBits(3))>0?8+AA:17}function oA(rA){if(rA.readBits(1)){var AA=rA.readBits(3);return 0===AA?1:rA.readBits(AA)+(1<1&&0===dA)throw new Error("Invalid size byte");AA.meta_block_length|=dA<<8*cA}}else for(cA=0;cA4&&0===vA)throw new Error("Invalid size nibble");AA.meta_block_length|=vA<<4*cA}return++AA.meta_block_length,!AA.input_end&&!AA.is_metadata&&(AA.is_uncompressed=rA.readBits(1)),AA}function _(rA,AA,PA){var cA;return PA.fillBitWindow(),(cA=rA[AA+=PA.val_>>>PA.bit_pos_&X].bits-Q)>0&&(PA.bit_pos_+=Q,AA+=rA[AA].value,AA+=PA.val_>>>PA.bit_pos_&(1<>=1,++EA;for(xA=0;xA0;++xA){var Ce,HA=y[xA],_A=0;IA.fillBitWindow(),IA.bit_pos_+=Me[_A+=IA.val_>>>IA.bit_pos_&15].bits,Be[HA]=Ce=Me[_A].value,0!==Ce&&(le-=32>>Ce,++we)}if(1!==we&&0!==le)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function CA(rA,AA,PA,IA){for(var cA=0,dA=h,vA=0,xA=0,SA=32768,EA=[],WA=0;WA<32;WA++)EA.push(new u(0,0));for(f(EA,0,5,rA,F);cA0;){var Be,ge=0;if(IA.readMoreInput(),IA.fillBitWindow(),IA.bit_pos_+=EA[ge+=IA.val_>>>IA.bit_pos_&31].bits,(Be=255&EA[ge].value)>Be);else{var we,Me,le=Be-14,HA=0;if(Be===E&&(HA=dA),xA!==HA&&(vA=0,xA=HA),we=vA,vA>0&&(vA-=2,vA<<=le),cA+(Me=(vA+=IA.readBits(le)+3)-we)>AA)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var _A=0;_A>>5]),this.htrees=new Uint32Array(AA)}function tA(rA,AA){var dA,vA,PA={num_htrees:null,context_map:null},cA=0;AA.readMoreInput();var xA=PA.num_htrees=oA(AA)+1,SA=PA.context_map=new Uint8Array(rA);if(xA<=1)return PA;for(AA.readBits(1)&&(cA=AA.readBits(4)+1),dA=[],vA=0;vA=rA)throw new Error("[DecodeContextMap] i >= context_map_size");SA[vA]=0,++vA}else SA[vA]=EA-cA,++vA}return AA.readBits(1)&&function O(rA,AA){var IA,PA=new Uint8Array(256);for(IA=0;IA<256;++IA)PA[IA]=IA;for(IA=0;IA=rA&&(WA-=rA),IA[PA]=WA,cA[xA+(1&dA[SA])]=WA,++dA[SA]}function hA(rA,AA,PA,IA,cA,dA){var EA,vA=cA+1,xA=PA&cA,SA=dA.pos_&o.IBUF_MASK;if(AA<8||dA.bit_pos_+(AA<<3)0;)dA.readMoreInput(),IA[xA++]=dA.readBits(8),xA===vA&&(rA.write(IA,vA),xA=0);else{if(dA.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;dA.bit_pos_<32;)IA[xA]=dA.val_>>>dA.bit_pos_,dA.bit_pos_+=8,++xA,--AA;if(SA+(EA=dA.bit_end_pos_-dA.bit_pos_>>3)>o.IBUF_MASK){for(var WA=o.IBUF_MASK+1-SA,ge=0;ge=vA)for(rA.write(IA,vA),xA-=vA,ge=0;ge=vA;){if(dA.input_.read(IA,xA,EA=vA-xA)AA.buffer.length){var tn=new Uint8Array(IA+MA);tn.set(AA.buffer),AA.buffer=tn}if(cA=Xr.input_end,BA=Xr.is_uncompressed,Xr.is_metadata)for(yA(me);MA>0;--MA)me.readMoreInput(),me.readBits(8);else if(0!==MA){if(BA){me.bit_pos_=me.bit_pos_+7&-8,hA(AA,MA,IA,WA,EA,me),IA+=MA;continue}for(PA=0;PA<3;++PA)aA[PA]=oA(me)+1,aA[PA]>=2&&(KA(aA[PA]+2,_A,PA*D,me),KA(P,Ce,PA*D,me),T[PA]=pA(Ce,PA*D,me),iA[PA]=1);for(me.readMoreInput(),J=(1<<(kA=me.readBits(2)))-1,$A=(Xe=K+(me.readBits(4)<0;){var In,wn,Ir,wr,Tn,qn,_n,dr,Gr,Yr,Hr,Jr;for(me.readMoreInput(),0===T[1]&&($(aA[1],_A,1,k,DA,iA,me),T[1]=pA(Ce,D,me),ur=HA[1].htrees[k[1]]),--T[1],(wn=(In=_(HA[1].codes,ur,me))>>6)>=2?(wn-=2,_n=-1):_n=0,wr=a.kCopyRangeLut[wn]+(7&In),Tn=a.kInsertLengthPrefixCode[Ir=a.kInsertRangeLut[wn]+(In>>3&7)].offset+me.readBits(a.kInsertLengthPrefixCode[Ir].nbits),qn=a.kCopyLengthPrefixCode[wr].offset+me.readBits(a.kCopyLengthPrefixCode[wr].nbits),we=WA[IA-1&EA],Me=WA[IA-2&EA],Gr=0;Gr4?3:qn-2))]],me))>=Xe&&(Jr=(_n-=Xe)&J,_n=Xe+((Kr=(2+(1&(_n>>=kA))<<(Hr=1+(_n>>1)))-4)+me.readBits(Hr)<(xA=IA=m.minDictionaryWordLength&&qn<=m.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+IA+" distance: "+dr+" len: "+qn+" bytes left: "+MA);var Kr=m.offsetsByLength[qn],Ae=dr-xA-1,FA=m.sizeBitsByLength[qn],RA=Ae>>FA;if(Kr+=(Ae&(1<=ge){AA.write(WA,SA);for(var OA=0;OA0&&(Be[3&le]=dr,++le),qn>MA)throw new Error("Invalid backward reference. pos: "+IA+" distance: "+dr+" len: "+qn+" bytes left: "+MA);for(Gr=0;Gr>=1;return(m&f-1)+f}function s(m,u,f,B,a){do{m[u+(B-=f)]=new r(a.bits,a.value)}while(B>0)}function o(m,u,f){for(var B=1<0;--y[E])s(m,u+C,P,X,new r(255&E,65535&F[n++])),C=i(C,E);for(N=D-1,M=-1,E=f+1,P=2;E<=g;++E,P<<=1)for(;y[E]>0;--y[E])(C&N)!==M&&(u+=X,D+=X=1<<(Q=o(y,E,f)),m[d+(M=C&N)]=new r(Q+f&255,u-d-M&65535)),s(m,u+(C>>f),P,X,new r(E-f&255,65535&F[n++])),C=i(C,E);return D}},42210:function(Y,A){function r(g,i){this.offset=g,this.nbits=i}A.kBlockLengthPrefixCode=[new r(1,2),new r(5,2),new r(9,2),new r(13,2),new r(17,3),new r(25,3),new r(33,3),new r(41,3),new r(49,4),new r(65,4),new r(81,4),new r(97,4),new r(113,5),new r(145,5),new r(177,5),new r(209,5),new r(241,6),new r(305,6),new r(369,7),new r(497,8),new r(753,9),new r(1265,10),new r(2289,11),new r(4337,12),new r(8433,13),new r(16625,24)],A.kInsertLengthPrefixCode=[new r(0,0),new r(1,0),new r(2,0),new r(3,0),new r(4,0),new r(5,0),new r(6,1),new r(8,1),new r(10,2),new r(14,2),new r(18,3),new r(26,3),new r(34,4),new r(50,4),new r(66,5),new r(98,5),new r(130,6),new r(194,7),new r(322,8),new r(578,9),new r(1090,10),new r(2114,12),new r(6210,14),new r(22594,24)],A.kCopyLengthPrefixCode=[new r(2,0),new r(3,0),new r(4,0),new r(5,0),new r(6,0),new r(7,0),new r(8,0),new r(9,0),new r(10,1),new r(12,1),new r(14,2),new r(18,2),new r(22,3),new r(30,3),new r(38,4),new r(54,4),new r(70,5),new r(102,5),new r(134,6),new r(198,7),new r(326,8),new r(582,9),new r(1094,10),new r(2118,24)],A.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],A.kCopyRangeLut=[0,8,0,8,16,0,16,8,16]},98197:function(Y,A){function r(i){this.buffer=i,this.pos=0}function g(i){this.buffer=i,this.pos=0}r.prototype.read=function(i,s,o){this.pos+o>this.buffer.length&&(o=this.buffer.length-this.pos);for(var m=0;mthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(i.subarray(0,s),this.pos),this.pos+=s,s},A.y=g},87984:function(Y,A,r){var g=r(80614),E=10,n=11;function K(w,Z,oA){this.prefix=new Uint8Array(w.length),this.transform=Z,this.suffix=new Uint8Array(oA.length);for(var q=0;q'),new K("",0,"\n"),new K("",3,""),new K("",0,"]"),new K("",0," for "),new K("",14,""),new K("",2,""),new K("",0," a "),new K("",0," that "),new K(" ",E,""),new K("",0,". "),new K(".",0,""),new K(" ",0,", "),new K("",15,""),new K("",0," with "),new K("",0,"'"),new K("",0," from "),new K("",0," by "),new K("",16,""),new K("",17,""),new K(" the ",0,""),new K("",4,""),new K("",0,". The "),new K("",n,""),new K("",0," on "),new K("",0," as "),new K("",0," is "),new K("",7,""),new K("",1,"ing "),new K("",0,"\n\t"),new K("",0,":"),new K(" ",0,". "),new K("",0,"ed "),new K("",20,""),new K("",18,""),new K("",6,""),new K("",0,"("),new K("",E,", "),new K("",8,""),new K("",0," at "),new K("",0,"ly "),new K(" the ",0," of "),new K("",5,""),new K("",9,""),new K(" ",E,", "),new K("",E,'"'),new K(".",0,"("),new K("",n," "),new K("",E,'">'),new K("",0,'="'),new K(" ",0,"."),new K(".com/",0,""),new K(" the ",0," of the "),new K("",E,"'"),new K("",0,". This "),new K("",0,","),new K(".",0," "),new K("",E,"("),new K("",E,"."),new K("",0," not "),new K(" ",0,'="'),new K("",0,"er "),new K(" ",n," "),new K("",0,"al "),new K(" ",n,""),new K("",0,"='"),new K("",n,'"'),new K("",E,". "),new K(" ",0,"("),new K("",0,"ful "),new K(" ",E,". "),new K("",0,"ive "),new K("",0,"less "),new K("",n,"'"),new K("",0,"est "),new K(" ",E,"."),new K("",n,'">'),new K(" ",0,"='"),new K("",E,","),new K("",0,"ize "),new K("",n,"."),new K("\xc2\xa0",0,""),new K(" ",0,","),new K("",E,'="'),new K("",n,'="'),new K("",0,"ous "),new K("",n,", "),new K("",E,"='"),new K(" ",E,","),new K(" ",n,'="'),new K(" ",n,", "),new K("",n,","),new K("",n,"("),new K("",n,". "),new K(" ",n,"."),new K("",n,"='"),new K(" ",n,". "),new K(" ",E,'="'),new K(" ",n,"='"),new K(" ",E,"='")];function b(w,Z){return w[Z]<192?(w[Z]>=97&&w[Z]<=122&&(w[Z]^=32),1):w[Z]<224?(w[Z+1]^=32,2):(w[Z+2]^=5,3)}A.kTransforms=v,A.kNumTransforms=v.length,A.transformDictionaryWord=function(w,Z,oA,q,fA){var O,_=v[fA].prefix,CA=v[fA].suffix,KA=v[fA].transform,pA=KA<12?0:KA-11,NA=0,zA=Z;pA>q&&(pA=q);for(var mA=0;mA<_.length;)w[Z++]=_[mA++];for(oA+=pA,q-=pA,KA<=9&&(q-=KA),NA=0;NA0;){var tA=b(w,O);O+=tA,q-=tA}for(var $=0;$A.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=E,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}h.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,s(this.init_done,"close before init"),s(this.mode<=A.UNZIP),this.mode===A.DEFLATE||this.mode===A.GZIP||this.mode===A.DEFLATERAW?m.deflateEnd(this.strm):(this.mode===A.INFLATE||this.mode===A.GUNZIP||this.mode===A.INFLATERAW||this.mode===A.UNZIP)&&u.inflateEnd(this.strm),this.mode=A.NONE,this.dictionary=null)},h.prototype.write=function(E,n,C,P,M,N,Q){return this._write(!0,E,n,C,P,M,N,Q)},h.prototype.writeSync=function(E,n,C,P,M,N,Q){return this._write(!1,E,n,C,P,M,N,Q)},h.prototype._write=function(E,n,C,P,M,N,Q,X){if(s.equal(arguments.length,8),s(this.init_done,"write before init"),s(this.mode!==A.NONE,"already finalized"),s.equal(!1,this.write_in_progress,"write already in progress"),s.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,s.equal(!1,void 0===n,"must provide flush value"),this.write_in_progress=!0,n!==A.Z_NO_FLUSH&&n!==A.Z_PARTIAL_FLUSH&&n!==A.Z_SYNC_FLUSH&&n!==A.Z_FULL_FLUSH&&n!==A.Z_FINISH&&n!==A.Z_BLOCK)throw new Error("Invalid flush value");if(null==C&&(C=g.alloc(0),M=0,P=0),this.strm.avail_in=M,this.strm.input=C,this.strm.next_in=P,this.strm.avail_out=X,this.strm.output=N,this.strm.next_out=Q,this.flush=n,!E)return this._process(),this._checkError()?this._afterSync():void 0;var D=this;return i.nextTick(function(){D._process(),D._after()}),this},h.prototype._afterSync=function(){var E=this.strm.avail_out,n=this.strm.avail_in;return this.write_in_progress=!1,[n,E]},h.prototype._process=function(){var E=null;switch(this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=m.deflate(this.strm,this.flush);break;case A.UNZIP:switch(this.strm.avail_in>0&&(E=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===E)break;if(31!==this.strm.input[E]){this.mode=A.INFLATE;break}if(this.gzip_id_bytes_read=1,E++,1===this.strm.avail_in)break;case 1:if(null===E)break;139===this.strm.input[E]?(this.gzip_id_bytes_read=2,this.mode=A.GUNZIP):this.mode=A.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:for(this.err=u.inflate(this.strm,this.flush),this.err===A.Z_NEED_DICT&&this.dictionary&&(this.err=u.inflateSetDictionary(this.strm,this.dictionary),this.err===A.Z_OK?this.err=u.inflate(this.strm,this.flush):this.err===A.Z_DATA_ERROR&&(this.err=A.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===A.GUNZIP&&this.err===A.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=u.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},h.prototype._checkError=function(){switch(this.err){case A.Z_OK:case A.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===A.Z_FINISH)return this._error("unexpected end of file"),!1;break;case A.Z_STREAM_END:break;case A.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},h.prototype._after=function(){if(this._checkError()){var E=this.strm.avail_out,n=this.strm.avail_in;this.write_in_progress=!1,this.callback(n,E),this.pending_close&&this.close()}},h.prototype._error=function(E){this.strm.msg&&(E=this.strm.msg),this.onerror(E,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},h.prototype.init=function(E,n,C,P,M){s(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),s(E>=8&&E<=15,"invalid windowBits"),s(n>=-1&&n<=9,"invalid compression level"),s(C>=1&&C<=9,"invalid memlevel"),s(P===A.Z_FILTERED||P===A.Z_HUFFMAN_ONLY||P===A.Z_RLE||P===A.Z_FIXED||P===A.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(n,E,C,P,M),this._setDictionary()},h.prototype.params=function(){throw new Error("deflateParams Not supported")},h.prototype.reset=function(){this._reset(),this._setDictionary()},h.prototype._init=function(E,n,C,P,M){switch(this.level=E,this.windowBits=n,this.memLevel=C,this.strategy=P,this.flush=A.Z_NO_FLUSH,this.err=A.Z_OK,(this.mode===A.GZIP||this.mode===A.GUNZIP)&&(this.windowBits+=16),this.mode===A.UNZIP&&(this.windowBits+=32),(this.mode===A.DEFLATERAW||this.mode===A.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new o,this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=m.deflateInit2(this.strm,this.level,A.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:case A.UNZIP:this.err=u.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==A.Z_OK&&this._error("Init error"),this.dictionary=M,this.write_in_progress=!1,this.init_done=!0},h.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:this.err=m.deflateSetDictionary(this.strm,this.dictionary)}this.err!==A.Z_OK&&this._error("Failed to set dictionary")}},h.prototype._reset=function(){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:case A.GZIP:this.err=m.deflateReset(this.strm);break;case A.INFLATE:case A.INFLATERAW:case A.GUNZIP:this.err=u.inflateReset(this.strm)}this.err!==A.Z_OK&&this._error("Failed to reset stream")},A.Zlib=h},6729:function(Y,A,r){"use strict";var g=r(9964),i=r(50621).Buffer,s=r(9760).Transform,o=r(72908),m=r(7187),u=r(80182).ok,f=r(50621).kMaxLength,B="Cannot create final Buffer. It would be larger than 0x"+f.toString(16)+" bytes";o.Z_MIN_WINDOWBITS=8,o.Z_MAX_WINDOWBITS=15,o.Z_DEFAULT_WINDOWBITS=15,o.Z_MIN_CHUNK=64,o.Z_MAX_CHUNK=1/0,o.Z_DEFAULT_CHUNK=16384,o.Z_MIN_MEMLEVEL=1,o.Z_MAX_MEMLEVEL=9,o.Z_DEFAULT_MEMLEVEL=8,o.Z_MIN_LEVEL=-1,o.Z_MAX_LEVEL=9,o.Z_DEFAULT_LEVEL=o.Z_DEFAULT_COMPRESSION;for(var a=Object.keys(o),d=0;d=f?mA=new RangeError(B):O=i.concat(CA,KA),CA=[],q.close(),_(mA,O)}q.on("error",function NA(O){q.removeListener("end",zA),q.removeListener("readable",pA),_(O)}),q.on("end",zA),q.end(fA),pA()}function N(q,fA){if("string"==typeof fA&&(fA=i.from(fA)),!i.isBuffer(fA))throw new TypeError("Not a string or buffer");return q._processChunk(fA,q._finishFlushFlag)}function Q(q){if(!(this instanceof Q))return new Q(q);w.call(this,q,o.DEFLATE)}function X(q){if(!(this instanceof X))return new X(q);w.call(this,q,o.INFLATE)}function D(q){if(!(this instanceof D))return new D(q);w.call(this,q,o.GZIP)}function F(q){if(!(this instanceof F))return new F(q);w.call(this,q,o.GUNZIP)}function y(q){if(!(this instanceof y))return new y(q);w.call(this,q,o.DEFLATERAW)}function K(q){if(!(this instanceof K))return new K(q);w.call(this,q,o.INFLATERAW)}function v(q){if(!(this instanceof v))return new v(q);w.call(this,q,o.UNZIP)}function b(q){return q===o.Z_NO_FLUSH||q===o.Z_PARTIAL_FLUSH||q===o.Z_SYNC_FLUSH||q===o.Z_FULL_FLUSH||q===o.Z_FINISH||q===o.Z_BLOCK}function w(q,fA){var _=this;if(this._opts=q=q||{},this._chunkSize=q.chunkSize||A.Z_DEFAULT_CHUNK,s.call(this,q),q.flush&&!b(q.flush))throw new Error("Invalid flush flag: "+q.flush);if(q.finishFlush&&!b(q.finishFlush))throw new Error("Invalid flush flag: "+q.finishFlush);if(this._flushFlag=q.flush||o.Z_NO_FLUSH,this._finishFlushFlag=typeof q.finishFlush<"u"?q.finishFlush:o.Z_FINISH,q.chunkSize&&(q.chunkSizeA.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+q.chunkSize);if(q.windowBits&&(q.windowBitsA.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+q.windowBits);if(q.level&&(q.levelA.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+q.level);if(q.memLevel&&(q.memLevelA.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+q.memLevel);if(q.strategy&&q.strategy!=A.Z_FILTERED&&q.strategy!=A.Z_HUFFMAN_ONLY&&q.strategy!=A.Z_RLE&&q.strategy!=A.Z_FIXED&&q.strategy!=A.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+q.strategy);if(q.dictionary&&!i.isBuffer(q.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new o.Zlib(fA);var CA=this;this._hadError=!1,this._handle.onerror=function(NA,zA){Z(CA),CA._hadError=!0;var O=new Error(NA);O.errno=zA,O.code=A.codes[zA],CA.emit("error",O)};var KA=A.Z_DEFAULT_COMPRESSION;"number"==typeof q.level&&(KA=q.level);var pA=A.Z_DEFAULT_STRATEGY;"number"==typeof q.strategy&&(pA=q.strategy),this._handle.init(q.windowBits||A.Z_DEFAULT_WINDOWBITS,KA,q.memLevel||A.Z_DEFAULT_MEMLEVEL,pA,q.dictionary),this._buffer=i.allocUnsafe(this._chunkSize),this._offset=0,this._level=KA,this._strategy=pA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!_._handle},configurable:!0,enumerable:!0})}function Z(q,fA){fA&&g.nextTick(fA),q._handle&&(q._handle.close(),q._handle=null)}function oA(q){q.emit("close")}Object.defineProperty(A,"codes",{enumerable:!0,value:Object.freeze(E),writable:!1}),A.Deflate=Q,A.Inflate=X,A.Gzip=D,A.Gunzip=F,A.DeflateRaw=y,A.InflateRaw=K,A.Unzip=v,A.createDeflate=function(q){return new Q(q)},A.createInflate=function(q){return new X(q)},A.createDeflateRaw=function(q){return new y(q)},A.createInflateRaw=function(q){return new K(q)},A.createGzip=function(q){return new D(q)},A.createGunzip=function(q){return new F(q)},A.createUnzip=function(q){return new v(q)},A.deflate=function(q,fA,_){return"function"==typeof fA&&(_=fA,fA={}),M(new Q(fA),q,_)},A.deflateSync=function(q,fA){return N(new Q(fA),q)},A.gzip=function(q,fA,_){return"function"==typeof fA&&(_=fA,fA={}),M(new D(fA),q,_)},A.gzipSync=function(q,fA){return N(new D(fA),q)},A.deflateRaw=function(q,fA,_){return"function"==typeof fA&&(_=fA,fA={}),M(new y(fA),q,_)},A.deflateRawSync=function(q,fA){return N(new y(fA),q)},A.unzip=function(q,fA,_){return"function"==typeof fA&&(_=fA,fA={}),M(new v(fA),q,_)},A.unzipSync=function(q,fA){return N(new v(fA),q)},A.inflate=function(q,fA,_){return"function"==typeof fA&&(_=fA,fA={}),M(new X(fA),q,_)},A.inflateSync=function(q,fA){return N(new X(fA),q)},A.gunzip=function(q,fA,_){return"function"==typeof fA&&(_=fA,fA={}),M(new F(fA),q,_)},A.gunzipSync=function(q,fA){return N(new F(fA),q)},A.inflateRaw=function(q,fA,_){return"function"==typeof fA&&(_=fA,fA={}),M(new K(fA),q,_)},A.inflateRawSync=function(q,fA){return N(new K(fA),q)},m.inherits(w,s),w.prototype.params=function(q,fA,_){if(qA.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+q);if(fA!=A.Z_FILTERED&&fA!=A.Z_HUFFMAN_ONLY&&fA!=A.Z_RLE&&fA!=A.Z_FIXED&&fA!=A.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+fA);if(this._level!==q||this._strategy!==fA){var CA=this;this.flush(o.Z_SYNC_FLUSH,function(){u(CA._handle,"zlib binding closed"),CA._handle.params(q,fA),CA._hadError||(CA._level=q,CA._strategy=fA,_&&_())})}else g.nextTick(_)},w.prototype.reset=function(){return u(this._handle,"zlib binding closed"),this._handle.reset()},w.prototype._flush=function(q){this._transform(i.alloc(0),"",q)},w.prototype.flush=function(q,fA){var _=this,CA=this._writableState;("function"==typeof q||void 0===q&&!fA)&&(fA=q,q=o.Z_FULL_FLUSH),CA.ended?fA&&g.nextTick(fA):CA.ending?fA&&this.once("end",fA):CA.needDrain?fA&&this.once("drain",function(){return _.flush(q,fA)}):(this._flushFlag=q,this.write(i.alloc(0),"",fA))},w.prototype.close=function(q){Z(this,q),g.nextTick(oA,this)},w.prototype._transform=function(q,fA,_){var CA,KA=this._writableState,NA=(KA.ending||KA.ended)&&(!q||KA.length===q.length);return null===q||i.isBuffer(q)?this._handle?(NA?CA=this._finishFlushFlag:(CA=this._flushFlag,q.length>=KA.length&&(this._flushFlag=this._opts.flush||o.Z_NO_FLUSH)),void this._processChunk(q,CA,_)):_(new Error("zlib binding closed")):_(new Error("invalid input"))},w.prototype._processChunk=function(q,fA,_){var CA=q&&q.length,KA=this._chunkSize-this._offset,pA=0,NA=this,zA="function"==typeof _;if(!zA){var tA,O=[],mA=0;this.on("error",function(j){tA=j}),u(this._handle,"zlib binding closed");do{var $=this._handle.writeSync(fA,q,pA,CA,this._buffer,this._offset,KA)}while(!this._hadError&&GA($[0],$[1]));if(this._hadError)throw tA;if(mA>=f)throw Z(this),new RangeError(B);var hA=i.concat(O,mA);return Z(this),hA}u(this._handle,"zlib binding closed");var yA=this._handle.write(fA,q,pA,CA,this._buffer,this._offset,KA);function GA(j,U){if(this&&(this.buffer=null,this.callback=null),!NA._hadError){var rA=KA-U;if(u(rA>=0,"have should not go down"),rA>0){var AA=NA._buffer.slice(NA._offset,NA._offset+rA);NA._offset+=rA,zA?NA.push(AA):(O.push(AA),mA+=AA.length)}if((0===U||NA._offset>=NA._chunkSize)&&(KA=NA._chunkSize,NA._offset=0,NA._buffer=i.allocUnsafe(NA._chunkSize)),0===U){if(pA+=CA-j,CA=j,!zA)return!0;var PA=NA._handle.write(fA,q,pA,CA,NA._buffer,NA._offset,NA._chunkSize);return PA.callback=GA,void(PA.buffer=q)}if(!zA)return!1;_()}}yA.buffer=q,yA.callback=GA},m.inherits(Q,w),m.inherits(X,w),m.inherits(D,w),m.inherits(F,w),m.inherits(y,w),m.inherits(K,w),m.inherits(v,w)},67913:function(Y,A,r){"use strict";var g=r(28651),i=r(26601),s=i(g("String.prototype.indexOf"));Y.exports=function(m,u){var f=g(m,!!u);return"function"==typeof f&&s(m,".prototype.")>-1?i(f):f}},26601:function(Y,A,r){"use strict";var g=r(5049),i=r(28651),s=r(86255),o=r(96785),m=i("%Function.prototype.apply%"),u=i("%Function.prototype.call%"),f=i("%Reflect.apply%",!0)||g.call(u,m),B=r(56649),a=i("%Math.max%");Y.exports=function(E){if("function"!=typeof E)throw new o("a function is required");var n=f(g,u,arguments);return s(n,1+a(0,E.length-(arguments.length-1)),!0)};var d=function(){return f(g,m,arguments)};B?B(Y.exports,"apply",{value:d}):Y.exports.apply=d},41613:function(Y,A,r){var g=r(50621).Buffer,i=function(){"use strict";function s(a,d,h,E){"object"==typeof d&&(h=d.depth,E=d.prototype,d=d.circular);var C=[],P=[],M=typeof g<"u";return typeof d>"u"&&(d=!0),typeof h>"u"&&(h=1/0),function N(Q,X){if(null===Q)return null;if(0==X)return Q;var D,F;if("object"!=typeof Q)return Q;if(s.__isArray(Q))D=[];else if(s.__isRegExp(Q))D=new RegExp(Q.source,B(Q)),Q.lastIndex&&(D.lastIndex=Q.lastIndex);else if(s.__isDate(Q))D=new Date(Q.getTime());else{if(M&&g.isBuffer(Q))return D=g.allocUnsafe?g.allocUnsafe(Q.length):new g(Q.length),Q.copy(D),D;typeof E>"u"?(F=Object.getPrototypeOf(Q),D=Object.create(F)):(D=Object.create(E),F=E)}if(d){var y=C.indexOf(Q);if(-1!=y)return P[y];C.push(Q),P.push(D)}for(var K in Q){var v;F&&(v=Object.getOwnPropertyDescriptor(F,K)),(!v||null!=v.set)&&(D[K]=N(Q[K],X-1))}return D}(a,h)}function o(a){return Object.prototype.toString.call(a)}function B(a){var d="";return a.global&&(d+="g"),a.ignoreCase&&(d+="i"),a.multiline&&(d+="m"),d}return s.clonePrototype=function(d){if(null===d)return null;var h=function(){};return h.prototype=d,new h},s.__objToStr=o,s.__isDate=function m(a){return"object"==typeof a&&"[object Date]"===o(a)},s.__isArray=function u(a){return"object"==typeof a&&"[object Array]"===o(a)},s.__isRegExp=function f(a){return"object"==typeof a&&"[object RegExp]"===o(a)},s.__getRegExpFlags=B,s}();Y.exports&&(Y.exports=i)},83043:function(Y,A,r){r(59883);var g=r(11206);Y.exports=g.Object.values},42075:function(Y,A,r){r(94910),r(81755),r(14032),r(68067),r(77074),r(44455),r(58605),r(58281);var g=r(11206);Y.exports=g.Promise},98168:function(Y,A,r){var g=r(90780);r(84151),r(98443),r(49261),r(67858),Y.exports=g},32631:function(Y,A,r){var g=r(32010),i=r(94578),s=r(68664),o=g.TypeError;Y.exports=function(m){if(i(m))return m;throw o(s(m)+" is not a function")}},69075:function(Y,A,r){var g=r(32010),i=r(20884),s=r(68664),o=g.TypeError;Y.exports=function(m){if(i(m))return m;throw o(s(m)+" is not a constructor")}},58659:function(Y,A,r){var g=r(32010),i=r(94578),s=g.String,o=g.TypeError;Y.exports=function(m){if("object"==typeof m||i(m))return m;throw o("Can't set "+s(m)+" as a prototype")}},71156:function(Y,A,r){var g=r(38688),i=r(10819),s=r(95892),o=g("unscopables"),m=Array.prototype;null==m[o]&&s.f(m,o,{configurable:!0,value:i(null)}),Y.exports=function(u){m[o][u]=!0}},36352:function(Y,A,r){"use strict";var g=r(69510).charAt;Y.exports=function(i,s,o){return s+(o?g(i,s).length:1)}},2868:function(Y,A,r){var g=r(32010),i=r(70176),s=g.TypeError;Y.exports=function(o,m){if(i(m,o))return o;throw s("Incorrect invocation")}},34984:function(Y,A,r){var g=r(32010),i=r(24517),s=g.String,o=g.TypeError;Y.exports=function(m){if(i(m))return m;throw o(s(m)+" is not an object")}},92642:function(Y,A,r){"use strict";var g=r(43162),i=r(74841),s=r(45495),o=Math.min;Y.exports=[].copyWithin||function(u,f){var B=g(this),a=s(B),d=i(u,a),h=i(f,a),E=arguments.length>2?arguments[2]:void 0,n=o((void 0===E?a:i(E,a))-h,a-d),C=1;for(h0;)h in B?B[d]=B[h]:delete B[d],d+=C,h+=C;return B}},72864:function(Y,A,r){"use strict";var g=r(43162),i=r(74841),s=r(45495);Y.exports=function(m){for(var u=g(this),f=s(u),B=arguments.length,a=i(B>1?arguments[1]:void 0,f),d=B>2?arguments[2]:void 0,h=void 0===d?f:i(d,f);h>a;)u[a++]=m;return u}},82938:function(Y,A,r){"use strict";var g=r(91102).forEach,s=r(81007)("forEach");Y.exports=s?[].forEach:function(m){return g(this,m,arguments.length>1?arguments[1]:void 0)}},34269:function(Y){Y.exports=function(A,r){for(var g=0,i=r.length,s=new A(i);i>g;)s[g]=r[g++];return s}},95717:function(Y,A,r){"use strict";var g=r(32010),i=r(25567),s=r(2834),o=r(43162),m=r(97738),u=r(89564),f=r(20884),B=r(45495),a=r(38639),d=r(15892),h=r(13872),E=g.Array;Y.exports=function(C){var P=o(C),M=f(this),N=arguments.length,Q=N>1?arguments[1]:void 0,X=void 0!==Q;X&&(Q=i(Q,N>2?arguments[2]:void 0));var y,K,v,b,w,Z,D=h(P),F=0;if(!D||this==E&&u(D))for(y=B(P),K=M?new this(y):E(y);y>F;F++)Z=X?Q(P[F],F):P[F],a(K,F,Z);else for(w=(b=d(P,D)).next,K=M?new this:[];!(v=s(w,b)).done;F++)Z=X?m(b,Q,[v.value,F],!0):v.value,a(K,F,Z);return K.length=F,K}},12636:function(Y,A,r){var g=r(98086),i=r(74841),s=r(45495),o=function(m){return function(u,f,B){var E,a=g(u),d=s(a),h=i(B,d);if(m&&f!=f){for(;d>h;)if((E=a[h++])!=E)return!0}else for(;d>h;h++)if((m||h in a)&&a[h]===f)return m||h||0;return!m&&-1}};Y.exports={includes:o(!0),indexOf:o(!1)}},91102:function(Y,A,r){var g=r(25567),i=r(38347),s=r(7514),o=r(43162),m=r(45495),u=r(45744),f=i([].push),B=function(a){var d=1==a,h=2==a,E=3==a,n=4==a,C=6==a,P=7==a,M=5==a||C;return function(N,Q,X,D){for(var oA,q,F=o(N),y=s(F),K=g(Q,X),v=m(y),b=0,w=D||u,Z=d?w(N,v):h||P?w(N,0):void 0;v>b;b++)if((M||b in y)&&(q=K(oA=y[b],b,F),a))if(d)Z[b]=q;else if(q)switch(a){case 3:return!0;case 5:return oA;case 6:return b;case 2:f(Z,oA)}else switch(a){case 4:return!1;case 7:f(Z,oA)}return C?-1:E||n?n:Z}};Y.exports={forEach:B(0),map:B(1),filter:B(2),some:B(3),every:B(4),find:B(5),findIndex:B(6),filterReject:B(7)}},84320:function(Y,A,r){"use strict";var g=r(58448),i=r(98086),s=r(26882),o=r(45495),m=r(81007),u=Math.min,f=[].lastIndexOf,B=!!f&&1/[1].lastIndexOf(1,-0)<0,a=m("lastIndexOf");Y.exports=B||!a?function(E){if(B)return g(f,this,arguments)||0;var n=i(this),C=o(n),P=C-1;for(arguments.length>1&&(P=u(P,s(arguments[1]))),P<0&&(P=C+P);P>=0;P--)if(P in n&&n[P]===E)return P||0;return-1}:f},56280:function(Y,A,r){var g=r(47044),i=r(38688),s=r(70091),o=i("species");Y.exports=function(m){return s>=51||!g(function(){var u=[];return(u.constructor={})[o]=function(){return{foo:1}},1!==u[m](Boolean).foo})}},81007:function(Y,A,r){"use strict";var g=r(47044);Y.exports=function(i,s){var o=[][i];return!!o&&g(function(){o.call(null,s||function(){throw 1},1)})}},32843:function(Y,A,r){var g=r(32010),i=r(32631),s=r(43162),o=r(7514),m=r(45495),u=g.TypeError,f=function(B){return function(a,d,h,E){i(d);var n=s(a),C=o(n),P=m(n),M=B?P-1:0,N=B?-1:1;if(h<2)for(;;){if(M in C){E=C[M],M+=N;break}if(M+=N,B?M<0:P<=M)throw u("Reduce of empty array with no initial value")}for(;B?M>=0:P>M;M+=N)M in C&&(E=d(E,C[M],M,n));return E}};Y.exports={left:f(!1),right:f(!0)}},73163:function(Y,A,r){var g=r(38347);Y.exports=g([].slice)},43977:function(Y,A,r){var g=r(73163),i=Math.floor,s=function(u,f){var B=u.length,a=i(B/2);return B<8?o(u,f):m(u,s(g(u,0,a),f),s(g(u,a),f),f)},o=function(u,f){for(var d,h,B=u.length,a=1;a0;)u[h]=u[--h];h!==a++&&(u[h]=d)}return u},m=function(u,f,B,a){for(var d=f.length,h=B.length,E=0,n=0;E1?arguments[1]:void 0);Z=Z?Z.next:b.first;)for(w(Z.value,Z.key,this);Z&&Z.removed;)Z=Z.previous},has:function(v){return!!y(this,v)}}),s(X,M?{get:function(v){var b=y(this,v);return b&&b.value},set:function(v,b){return F(this,0===v?0:v,b)}}:{add:function(v){return F(this,v=0===v?0:v,v)}}),a&&g(X,"size",{get:function(){return D(this).size}}),Q},setStrong:function(C,P,M){var N=P+" Iterator",Q=n(P),X=n(N);f(C,P,function(D,F){E(this,{type:N,target:D,state:Q(D),kind:F,last:void 0})},function(){for(var D=X(this),F=D.kind,y=D.last;y&&y.removed;)y=y.previous;return D.target&&(D.last=y=y?y.next:D.state.first)?"keys"==F?{value:y.key,done:!1}:"values"==F?{value:y.value,done:!1}:{value:[y.key,y.value],done:!1}:(D.target=void 0,{value:void 0,done:!0})},M?"entries":"values",!M,!0),B(P)}}},36673:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(38347),o=r(39599),m=r(13711),u=r(62148),f=r(80383),B=r(2868),a=r(94578),d=r(24517),h=r(47044),E=r(46769),n=r(15216),C=r(51868);Y.exports=function(P,M,N){var Q=-1!==P.indexOf("Map"),X=-1!==P.indexOf("Weak"),D=Q?"set":"add",F=i[P],y=F&&F.prototype,K=F,v={},b=function(CA){var KA=s(y[CA]);m(y,CA,"add"==CA?function(NA){return KA(this,0===NA?0:NA),this}:"delete"==CA?function(pA){return!(X&&!d(pA))&&KA(this,0===pA?0:pA)}:"get"==CA?function(NA){return X&&!d(NA)?void 0:KA(this,0===NA?0:NA)}:"has"==CA?function(NA){return!(X&&!d(NA))&&KA(this,0===NA?0:NA)}:function(NA,zA){return KA(this,0===NA?0:NA,zA),this})};if(o(P,!a(F)||!(X||y.forEach&&!h(function(){(new F).entries().next()}))))K=N.getConstructor(M,P,Q,D),u.enable();else if(o(P,!0)){var Z=new K,oA=Z[D](X?{}:-0,1)!=Z,q=h(function(){Z.has(1)}),fA=E(function(CA){new F(CA)}),_=!X&&h(function(){for(var CA=new F,KA=5;KA--;)CA[D](KA,KA);return!CA.has(-0)});fA||((K=M(function(CA,KA){B(CA,y);var pA=C(new F,CA,K);return null!=KA&&f(KA,pA[D],{that:pA,AS_ENTRIES:Q}),pA})).prototype=y,y.constructor=K),(q||_)&&(b("delete"),b("has"),Q&&b("get")),(_||oA)&&b(D),X&&y.clear&&delete y.clear}return v[P]=K,g({global:!0,forced:K!=F},v),n(K,P),X||N.setStrong(K,P,Q),K}},2675:function(Y,A,r){var g=r(20340),i=r(21594),s=r(72062),o=r(95892);Y.exports=function(m,u){for(var f=i(u),B=o.f,a=s.f,d=0;d"+d+""}},13945:function(Y,A,r){"use strict";var g=r(5844).IteratorPrototype,i=r(10819),s=r(97841),o=r(15216),m=r(15366),u=function(){return this};Y.exports=function(f,B,a){var d=B+" Iterator";return f.prototype=i(g,{next:s(1,a)}),o(f,d,!1,!0),m[d]=u,f}},48914:function(Y,A,r){var g=r(15567),i=r(95892),s=r(97841);Y.exports=g?function(o,m,u){return i.f(o,m,s(1,u))}:function(o,m,u){return o[m]=u,o}},97841:function(Y){Y.exports=function(A,r){return{enumerable:!(1&A),configurable:!(2&A),writable:!(4&A),value:r}}},38639:function(Y,A,r){"use strict";var g=r(63918),i=r(95892),s=r(97841);Y.exports=function(o,m,u){var f=g(m);f in o?i.f(o,f,s(0,u)):o[f]=u}},53087:function(Y,A,r){"use strict";var g=r(32010),i=r(34984),s=r(39629),o=g.TypeError;Y.exports=function(m){if(i(this),"string"===m||"default"===m)m="string";else if("number"!==m)throw o("Incorrect hint");return s(this,m)}},97001:function(Y,A,r){"use strict";var g=r(56475),i=r(2834),s=r(63432),o=r(7081),m=r(94578),u=r(13945),f=r(69548),B=r(3840),a=r(15216),d=r(48914),h=r(13711),E=r(38688),n=r(15366),C=r(5844),P=o.PROPER,M=o.CONFIGURABLE,N=C.IteratorPrototype,Q=C.BUGGY_SAFARI_ITERATORS,X=E("iterator"),D="keys",F="values",y="entries",K=function(){return this};Y.exports=function(v,b,w,Z,oA,q,fA){u(w,b,Z);var mA,tA,$,_=function(hA){if(hA===oA&&zA)return zA;if(!Q&&hA in pA)return pA[hA];switch(hA){case D:case F:case y:return function(){return new w(this,hA)}}return function(){return new w(this)}},CA=b+" Iterator",KA=!1,pA=v.prototype,NA=pA[X]||pA["@@iterator"]||oA&&pA[oA],zA=!Q&&NA||_(oA),O="Array"==b&&pA.entries||NA;if(O&&(mA=f(O.call(new v)))!==Object.prototype&&mA.next&&(!s&&f(mA)!==N&&(B?B(mA,N):m(mA[X])||h(mA,X,K)),a(mA,CA,!0,!0),s&&(n[CA]=K)),P&&oA==F&&NA&&NA.name!==F&&(!s&&M?d(pA,"name",F):(KA=!0,zA=function(){return i(NA,this)})),oA)if(tA={values:_(F),keys:q?zA:_(D),entries:_(y)},fA)for($ in tA)(Q||KA||!($ in pA))&&h(pA,$,tA[$]);else g({target:b,proto:!0,forced:Q||KA},tA);return(!s||fA)&&pA[X]!==zA&&h(pA,X,zA,{name:oA}),n[b]=zA,tA}},46042:function(Y,A,r){var g=r(11206),i=r(20340),s=r(75960),o=r(95892).f;Y.exports=function(m){var u=g.Symbol||(g.Symbol={});i(u,m)||o(u,m,{value:s.f(m)})}},15567:function(Y,A,r){var g=r(47044);Y.exports=!g(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},12072:function(Y,A,r){var g=r(32010),i=r(24517),s=g.document,o=i(s)&&i(s.createElement);Y.exports=function(m){return o?s.createElement(m):{}}},23327:function(Y){Y.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},67797:function(Y,A,r){var i=r(12072)("span").classList,s=i&&i.constructor&&i.constructor.prototype;Y.exports=s===Object.prototype?void 0:s},3809:function(Y,A,r){var i=r(40715).match(/firefox\/(\d+)/i);Y.exports=!!i&&+i[1]},3157:function(Y){Y.exports="object"==typeof window},21983:function(Y,A,r){var g=r(40715);Y.exports=/MSIE|Trident/.test(g)},70573:function(Y,A,r){var g=r(40715),i=r(32010);Y.exports=/ipad|iphone|ipod/i.test(g)&&void 0!==i.Pebble},17716:function(Y,A,r){var g=r(40715);Y.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(g)},95053:function(Y,A,r){var g=r(93975),i=r(32010);Y.exports="process"==g(i.process)},664:function(Y,A,r){var g=r(40715);Y.exports=/web0s(?!.*chrome)/i.test(g)},40715:function(Y,A,r){var g=r(38486);Y.exports=g("navigator","userAgent")||""},70091:function(Y,A,r){var f,B,g=r(32010),i=r(40715),s=g.process,o=g.Deno,m=s&&s.versions||o&&o.version,u=m&&m.v8;u&&(B=(f=u.split("."))[0]>0&&f[0]<4?1:+(f[0]+f[1])),!B&&i&&(!(f=i.match(/Edge\/(\d+)/))||f[1]>=74)&&(f=i.match(/Chrome\/(\d+)/))&&(B=+f[1]),Y.exports=B},41731:function(Y,A,r){var i=r(40715).match(/AppleWebKit\/(\d+)\./);Y.exports=!!i&&+i[1]},2416:function(Y){Y.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},45144:function(Y,A,r){var g=r(47044),i=r(97841);Y.exports=!g(function(){var s=Error("a");return!("stack"in s)||(Object.defineProperty(s,"stack",i(1,7)),7!==s.stack)})},56475:function(Y,A,r){var g=r(32010),i=r(72062).f,s=r(48914),o=r(13711),m=r(7421),u=r(2675),f=r(39599);Y.exports=function(B,a){var C,P,M,N,Q,d=B.target,h=B.global,E=B.stat;if(C=h?g:E?g[d]||m(d,{}):(g[d]||{}).prototype)for(P in a){if(N=a[P],M=B.noTargetGet?(Q=i(C,P))&&Q.value:C[P],!f(h?P:d+(E?".":"#")+P,B.forced)&&void 0!==M){if(typeof N==typeof M)continue;u(N,M)}(B.sham||M&&M.sham)&&s(N,"sham",!0),o(C,P,N,B)}}},47044:function(Y){Y.exports=function(A){try{return!!A()}catch{return!0}}},11813:function(Y,A,r){"use strict";r(61726);var g=r(38347),i=r(13711),s=r(49820),o=r(47044),m=r(38688),u=r(48914),f=m("species"),B=RegExp.prototype;Y.exports=function(a,d,h,E){var n=m(a),C=!o(function(){var Q={};return Q[n]=function(){return 7},7!=""[a](Q)}),P=C&&!o(function(){var Q=!1,X=/a/;return"split"===a&&((X={}).constructor={},X.constructor[f]=function(){return X},X.flags="",X[n]=/./[n]),X.exec=function(){return Q=!0,null},X[n](""),!Q});if(!C||!P||h){var M=g(/./[n]),N=d(n,""[a],function(Q,X,D,F,y){var K=g(Q),v=X.exec;return v===s||v===B.exec?C&&!y?{done:!0,value:M(X,D,F)}:{done:!0,value:K(D,X,F)}:{done:!1}});i(String.prototype,a,N[0]),i(B,n,N[1])}E&&u(B[n],"sham",!0)}},55481:function(Y,A,r){var g=r(47044);Y.exports=!g(function(){return Object.isExtensible(Object.preventExtensions({}))})},58448:function(Y){var A=Function.prototype,r=A.apply,i=A.call;Y.exports="object"==typeof Reflect&&Reflect.apply||(A.bind?i.bind(r):function(){return i.apply(r,arguments)})},25567:function(Y,A,r){var g=r(38347),i=r(32631),s=g(g.bind);Y.exports=function(o,m){return i(o),void 0===m?o:s?s(o,m):function(){return o.apply(m,arguments)}}},2834:function(Y){var A=Function.prototype.call;Y.exports=A.bind?A.bind(A):function(){return A.apply(A,arguments)}},7081:function(Y,A,r){var g=r(15567),i=r(20340),s=Function.prototype,o=g&&Object.getOwnPropertyDescriptor,m=i(s,"name"),u=m&&"something"===function(){}.name,f=m&&(!g||g&&o(s,"name").configurable);Y.exports={EXISTS:m,PROPER:u,CONFIGURABLE:f}},38347:function(Y){var A=Function.prototype,r=A.bind,g=A.call,i=r&&r.bind(g);Y.exports=r?function(s){return s&&i(g,s)}:function(s){return s&&function(){return g.apply(s,arguments)}}},38486:function(Y,A,r){var g=r(32010),i=r(94578);Y.exports=function(o,m){return arguments.length<2?function(o){return i(o)?o:void 0}(g[o]):g[o]&&g[o][m]}},13872:function(Y,A,r){var g=r(52564),i=r(51839),s=r(15366),m=r(38688)("iterator");Y.exports=function(u){if(null!=u)return i(u,m)||i(u,"@@iterator")||s[g(u)]}},15892:function(Y,A,r){var g=r(32010),i=r(2834),s=r(32631),o=r(34984),m=r(68664),u=r(13872),f=g.TypeError;Y.exports=function(B,a){var d=arguments.length<2?u(B):a;if(s(d))return o(i(d,B));throw f(m(B)+" is not iterable")}},51839:function(Y,A,r){var g=r(32631);Y.exports=function(i,s){var o=i[s];return null==o?void 0:g(o)}},29519:function(Y,A,r){var g=r(38347),i=r(43162),s=Math.floor,o=g("".charAt),m=g("".replace),u=g("".slice),f=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,B=/\$([$&'`]|\d{1,2})/g;Y.exports=function(a,d,h,E,n,C){var P=h+a.length,M=E.length,N=B;return void 0!==n&&(n=i(n),N=f),m(C,N,function(Q,X){var D;switch(o(X,0)){case"$":return"$";case"&":return a;case"`":return u(d,0,h);case"'":return u(d,P);case"<":D=n[u(X,1,-1)];break;default:var F=+X;if(0===F)return Q;if(F>M){var y=s(F/10);return 0===y?Q:y<=M?void 0===E[y-1]?o(X,1):E[y-1]+o(X,1):Q}D=E[F-1]}return void 0===D?"":D})}},32010:function(Y,A,r){var g=function(i){return i&&i.Math==Math&&i};Y.exports=g("object"==typeof globalThis&&globalThis)||g("object"==typeof window&&window)||g("object"==typeof self&&self)||g("object"==typeof r.g&&r.g)||function(){return this}()||Function("return this")()},20340:function(Y,A,r){var g=r(38347),i=r(43162),s=g({}.hasOwnProperty);Y.exports=Object.hasOwn||function(m,u){return s(i(m),u)}},90682:function(Y){Y.exports={}},61144:function(Y,A,r){var g=r(32010);Y.exports=function(i,s){var o=g.console;o&&o.error&&(1==arguments.length?o.error(i):o.error(i,s))}},520:function(Y,A,r){var g=r(38486);Y.exports=g("document","documentElement")},18904:function(Y,A,r){var g=r(15567),i=r(47044),s=r(12072);Y.exports=!g&&!i(function(){return 7!=Object.defineProperty(s("div"),"a",{get:function(){return 7}}).a})},64397:function(Y,A,r){var i=r(32010).Array,s=Math.abs,o=Math.pow,m=Math.floor,u=Math.log,f=Math.LN2;Y.exports={pack:function(d,h,E){var D,F,y,n=i(E),C=8*E-h-1,P=(1<>1,N=23===h?o(2,-24)-o(2,-77):0,Q=d<0||0===d&&1/d<0?1:0,X=0;for((d=s(d))!=d||d===1/0?(F=d!=d?1:0,D=P):(D=m(u(d)/f),d*(y=o(2,-D))<1&&(D--,y*=2),(d+=D+M>=1?N/y:N*o(2,1-M))*y>=2&&(D++,y/=2),D+M>=P?(F=0,D=P):D+M>=1?(F=(d*y-1)*o(2,h),D+=M):(F=d*o(2,M-1)*o(2,h),D=0));h>=8;n[X++]=255&F,F/=256,h-=8);for(D=D<0;n[X++]=255&D,D/=256,C-=8);return n[--X]|=128*Q,n},unpack:function(d,h){var D,E=d.length,n=8*E-h-1,C=(1<>1,M=n-7,N=E-1,Q=d[N--],X=127&Q;for(Q>>=7;M>0;X=256*X+d[N],N--,M-=8);for(D=X&(1<<-M)-1,X>>=-M,M+=h;M>0;D=256*D+d[N],N--,M-=8);if(0===X)X=1-P;else{if(X===C)return D?NaN:Q?-1/0:1/0;D+=o(2,h),X-=P}return(Q?-1:1)*D*o(2,X-h)}}},7514:function(Y,A,r){var g=r(32010),i=r(38347),s=r(47044),o=r(93975),m=g.Object,u=i("".split);Y.exports=s(function(){return!m("z").propertyIsEnumerable(0)})?function(f){return"String"==o(f)?u(f,""):m(f)}:m},51868:function(Y,A,r){var g=r(94578),i=r(24517),s=r(3840);Y.exports=function(o,m,u){var f,B;return s&&g(f=m.constructor)&&f!==u&&i(B=f.prototype)&&B!==u.prototype&&s(o,B),o}},10447:function(Y,A,r){var g=r(38347),i=r(94578),s=r(55480),o=g(Function.toString);i(s.inspectSource)||(s.inspectSource=function(m){return o(m)}),Y.exports=s.inspectSource},87811:function(Y,A,r){var g=r(24517),i=r(48914);Y.exports=function(s,o){g(o)&&"cause"in o&&i(s,"cause",o.cause)}},62148:function(Y,A,r){var g=r(56475),i=r(38347),s=r(90682),o=r(24517),m=r(20340),u=r(95892).f,f=r(6611),B=r(8807),a=r(46859),d=r(55481),h=!1,E=a("meta"),n=0,C=Object.isExtensible||function(){return!0},P=function(F){u(F,E,{value:{objectID:"O"+n++,weakData:{}}})},D=Y.exports={enable:function(){D.enable=function(){},h=!0;var F=f.f,y=i([].splice),K={};K[E]=1,F(K).length&&(f.f=function(v){for(var b=F(v),w=0,Z=b.length;wb;b++)if((Z=_(P[b]))&&B(C,Z))return Z;return new n(!1)}K=a(P,v)}for(oA=K.next;!(q=s(oA,K)).done;){try{Z=_(q.value)}catch(CA){h(K,"throw",CA)}if("object"==typeof Z&&Z&&B(C,Z))return Z}return new n(!1)}},50194:function(Y,A,r){var g=r(2834),i=r(34984),s=r(51839);Y.exports=function(o,m,u){var f,B;i(o);try{if(!(f=s(o,"return"))){if("throw"===m)throw u;return u}f=g(f,o)}catch(a){B=!0,f=a}if("throw"===m)throw u;if(B)throw f;return i(f),u}},5844:function(Y,A,r){"use strict";var d,h,E,g=r(47044),i=r(94578),s=r(10819),o=r(69548),m=r(13711),u=r(38688),f=r(63432),B=u("iterator"),a=!1;[].keys&&("next"in(E=[].keys())?(h=o(o(E)))!==Object.prototype&&(d=h):a=!0),null==d||g(function(){var C={};return d[B].call(C)!==C})?d={}:f&&(d=s(d)),i(d[B])||m(d,B,function(){return this}),Y.exports={IteratorPrototype:d,BUGGY_SAFARI_ITERATORS:a}},15366:function(Y){Y.exports={}},45495:function(Y,A,r){var g=r(23417);Y.exports=function(i){return g(i.length)}},59804:function(Y,A,r){var P,M,N,Q,X,D,F,y,g=r(32010),i=r(25567),s=r(72062).f,o=r(6616).set,m=r(17716),u=r(70573),f=r(664),B=r(95053),a=g.MutationObserver||g.WebKitMutationObserver,d=g.document,h=g.process,E=g.Promise,n=s(g,"queueMicrotask"),C=n&&n.value;C||(P=function(){var K,v;for(B&&(K=h.domain)&&K.exit();M;){v=M.fn,M=M.next;try{v()}catch(b){throw M?Q():N=void 0,b}}N=void 0,K&&K.enter()},m||B||f||!a||!d?!u&&E&&E.resolve?((F=E.resolve(void 0)).constructor=E,y=i(F.then,F),Q=function(){y(P)}):B?Q=function(){h.nextTick(P)}:(o=i(o,g),Q=function(){o(P)}):(X=!0,D=d.createTextNode(""),new a(P).observe(D,{characterData:!0}),Q=function(){D.data=X=!X})),Y.exports=C||function(K){var v={fn:K,next:void 0};N&&(N.next=v),M||(M=v,Q()),N=v}},5155:function(Y,A,r){var g=r(32010);Y.exports=g.Promise},46887:function(Y,A,r){var g=r(70091),i=r(47044);Y.exports=!!Object.getOwnPropertySymbols&&!i(function(){var s=Symbol();return!String(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&g&&g<41})},26168:function(Y,A,r){var g=r(32010),i=r(94578),s=r(10447),o=g.WeakMap;Y.exports=i(o)&&/native code/.test(s(o))},56614:function(Y,A,r){"use strict";var g=r(32631),i=function(s){var o,m;this.promise=new s(function(u,f){if(void 0!==o||void 0!==m)throw TypeError("Bad Promise constructor");o=u,m=f}),this.resolve=g(o),this.reject=g(m)};Y.exports.f=function(s){return new i(s)}},86392:function(Y,A,r){var g=r(25096);Y.exports=function(i,s){return void 0===i?arguments.length<2?"":s:g(i)}},93666:function(Y,A,r){var g=r(32010),i=r(28831),s=g.TypeError;Y.exports=function(o){if(i(o))throw s("The method doesn't accept regular expressions");return o}},59805:function(Y,A,r){var i=r(32010).isFinite;Y.exports=Number.isFinite||function(o){return"number"==typeof o&&i(o)}},87146:function(Y,A,r){"use strict";var g=r(15567),i=r(38347),s=r(2834),o=r(47044),m=r(84675),u=r(61146),f=r(55574),B=r(43162),a=r(7514),d=Object.assign,h=Object.defineProperty,E=i([].concat);Y.exports=!d||o(function(){if(g&&1!==d({b:1},d(h({},"a",{enumerable:!0,get:function(){h(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var n={},C={},P=Symbol(),M="abcdefghijklmnopqrst";return n[P]=7,M.split("").forEach(function(N){C[N]=N}),7!=d({},n)[P]||m(d({},C)).join("")!=M})?function(C,P){for(var M=B(C),N=arguments.length,Q=1,X=u.f,D=f.f;N>Q;)for(var b,F=a(arguments[Q++]),y=X?E(m(F),X(F)):m(F),K=y.length,v=0;K>v;)b=y[v++],(!g||s(D,F,b))&&(M[b]=F[b]);return M}:d},10819:function(Y,A,r){var N,g=r(34984),i=r(10196),s=r(2416),o=r(90682),m=r(520),u=r(12072),f=r(82194),d="prototype",h="script",E=f("IE_PROTO"),n=function(){},C=function(X){return"<"+h+">"+X+""},P=function(X){X.write(C("")),X.close();var D=X.parentWindow.Object;return X=null,D},Q=function(){try{N=new ActiveXObject("htmlfile")}catch{}Q=typeof document<"u"?document.domain&&N?P(N):function(){var F,X=u("iframe"),D="java"+h+":";return X.style.display="none",m.appendChild(X),X.src=String(D),(F=X.contentWindow.document).open(),F.write(C("document.F=Object")),F.close(),F.F}():P(N);for(var X=s.length;X--;)delete Q[d][s[X]];return Q()};o[E]=!0,Y.exports=Object.create||function(D,F){var y;return null!==D?(n[d]=g(D),y=new n,n[d]=null,y[E]=D):y=Q(),void 0===F?y:i(y,F)}},10196:function(Y,A,r){var g=r(15567),i=r(95892),s=r(34984),o=r(98086),m=r(84675);Y.exports=g?Object.defineProperties:function(f,B){s(f);for(var n,a=o(B),d=m(B),h=d.length,E=0;h>E;)i.f(f,n=d[E++],a[n]);return f}},95892:function(Y,A,r){var g=r(32010),i=r(15567),s=r(18904),o=r(34984),m=r(63918),u=g.TypeError,f=Object.defineProperty;A.f=i?f:function(a,d,h){if(o(a),d=m(d),o(h),s)try{return f(a,d,h)}catch{}if("get"in h||"set"in h)throw u("Accessors not supported");return"value"in h&&(a[d]=h.value),a}},72062:function(Y,A,r){var g=r(15567),i=r(2834),s=r(55574),o=r(97841),m=r(98086),u=r(63918),f=r(20340),B=r(18904),a=Object.getOwnPropertyDescriptor;A.f=g?a:function(h,E){if(h=m(h),E=u(E),B)try{return a(h,E)}catch{}if(f(h,E))return o(!i(s.f,h,E),h[E])}},8807:function(Y,A,r){var g=r(93975),i=r(98086),s=r(6611).f,o=r(73163),m="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Y.exports.f=function(B){return m&&"Window"==g(B)?function(f){try{return s(f)}catch{return o(m)}}(B):s(i(B))}},6611:function(Y,A,r){var g=r(64429),s=r(2416).concat("length","prototype");A.f=Object.getOwnPropertyNames||function(m){return g(m,s)}},61146:function(Y,A){A.f=Object.getOwnPropertySymbols},69548:function(Y,A,r){var g=r(32010),i=r(20340),s=r(94578),o=r(43162),m=r(82194),u=r(68494),f=m("IE_PROTO"),B=g.Object,a=B.prototype;Y.exports=u?B.getPrototypeOf:function(d){var h=o(d);if(i(h,f))return h[f];var E=h.constructor;return s(E)&&h instanceof E?E.prototype:h instanceof B?a:null}},70176:function(Y,A,r){var g=r(38347);Y.exports=g({}.isPrototypeOf)},64429:function(Y,A,r){var g=r(38347),i=r(20340),s=r(98086),o=r(12636).indexOf,m=r(90682),u=g([].push);Y.exports=function(f,B){var E,a=s(f),d=0,h=[];for(E in a)!i(m,E)&&i(a,E)&&u(h,E);for(;B.length>d;)i(a,E=B[d++])&&(~o(h,E)||u(h,E));return h}},84675:function(Y,A,r){var g=r(64429),i=r(2416);Y.exports=Object.keys||function(o){return g(o,i)}},55574:function(Y,A){"use strict";var r={}.propertyIsEnumerable,g=Object.getOwnPropertyDescriptor,i=g&&!r.call({1:2},1);A.f=i?function(o){var m=g(this,o);return!!m&&m.enumerable}:r},3840:function(Y,A,r){var g=r(38347),i=r(34984),s=r(58659);Y.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var u,o=!1,m={};try{(u=g(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(m,[]),o=m instanceof Array}catch{}return function(B,a){return i(B),s(a),o?u(B,a):B.__proto__=a,B}}():void 0)},80754:function(Y,A,r){var g=r(15567),i=r(38347),s=r(84675),o=r(98086),u=i(r(55574).f),f=i([].push),B=function(a){return function(d){for(var M,h=o(d),E=s(h),n=E.length,C=0,P=[];n>C;)M=E[C++],(!g||u(h,M))&&f(P,a?[M,h[M]]:h[M]);return P}};Y.exports={entries:B(!0),values:B(!1)}},52598:function(Y,A,r){"use strict";var g=r(24663),i=r(52564);Y.exports=g?{}.toString:function(){return"[object "+i(this)+"]"}},39629:function(Y,A,r){var g=r(32010),i=r(2834),s=r(94578),o=r(24517),m=g.TypeError;Y.exports=function(u,f){var B,a;if("string"===f&&s(B=u.toString)&&!o(a=i(B,u))||s(B=u.valueOf)&&!o(a=i(B,u))||"string"!==f&&s(B=u.toString)&&!o(a=i(B,u)))return a;throw m("Can't convert object to primitive value")}},21594:function(Y,A,r){var g=r(38486),i=r(38347),s=r(6611),o=r(61146),m=r(34984),u=i([].concat);Y.exports=g("Reflect","ownKeys")||function(B){var a=s.f(m(B)),d=o.f;return d?u(a,d(B)):a}},11206:function(Y,A,r){var g=r(32010);Y.exports=g},61900:function(Y){Y.exports=function(A){try{return{error:!1,value:A()}}catch(r){return{error:!0,value:r}}}},28617:function(Y,A,r){var g=r(34984),i=r(24517),s=r(56614);Y.exports=function(o,m){if(g(o),i(m)&&m.constructor===o)return m;var u=s.f(o);return(0,u.resolve)(m),u.promise}},15341:function(Y,A,r){var g=r(13711);Y.exports=function(i,s,o){for(var m in s)g(i,m,s[m],o);return i}},13711:function(Y,A,r){var g=r(32010),i=r(94578),s=r(20340),o=r(48914),m=r(7421),u=r(10447),f=r(70172),B=r(7081).CONFIGURABLE,a=f.get,d=f.enforce,h=String(String).split("String");(Y.exports=function(E,n,C,P){var D,M=!!P&&!!P.unsafe,N=!!P&&!!P.enumerable,Q=!!P&&!!P.noTargetGet,X=P&&void 0!==P.name?P.name:n;i(C)&&("Symbol("===String(X).slice(0,7)&&(X="["+String(X).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!s(C,"name")||B&&C.name!==X)&&o(C,"name",X),(D=d(C)).source||(D.source=h.join("string"==typeof X?X:""))),E!==g?(M?!Q&&E[n]&&(N=!0):delete E[n],N?E[n]=C:o(E,n,C)):N?E[n]=C:m(n,C)})(Function.prototype,"toString",function(){return i(this)&&a(this).source||u(this)})},66723:function(Y,A,r){var g=r(32010),i=r(2834),s=r(34984),o=r(94578),m=r(93975),u=r(49820),f=g.TypeError;Y.exports=function(B,a){var d=B.exec;if(o(d)){var h=i(d,B,a);return null!==h&&s(h),h}if("RegExp"===m(B))return i(u,B,a);throw f("RegExp#exec called on incompatible receiver")}},49820:function(Y,A,r){"use strict";var y,K,g=r(2834),i=r(38347),s=r(25096),o=r(21182),m=r(74846),u=r(464),f=r(10819),B=r(70172).get,a=r(84030),d=r(97739),h=u("native-string-replace",String.prototype.replace),E=RegExp.prototype.exec,n=E,C=i("".charAt),P=i("".indexOf),M=i("".replace),N=i("".slice),Q=(K=/b*/g,g(E,y=/a/,"a"),g(E,K,"a"),0!==y.lastIndex||0!==K.lastIndex),X=m.UNSUPPORTED_Y||m.BROKEN_CARET,D=void 0!==/()??/.exec("")[1];(Q||D||X||a||d)&&(n=function(K){var oA,q,fA,_,CA,KA,pA,v=this,b=B(v),w=s(K),Z=b.raw;if(Z)return Z.lastIndex=v.lastIndex,oA=g(n,Z,w),v.lastIndex=Z.lastIndex,oA;var NA=b.groups,zA=X&&v.sticky,O=g(o,v),mA=v.source,tA=0,$=w;if(zA&&(O=M(O,"y",""),-1===P(O,"g")&&(O+="g"),$=N(w,v.lastIndex),v.lastIndex>0&&(!v.multiline||v.multiline&&"\n"!==C(w,v.lastIndex-1))&&(mA="(?: "+mA+")",$=" "+$,tA++),q=new RegExp("^(?:"+mA+")",O)),D&&(q=new RegExp("^"+mA+"$(?!\\s)",O)),Q&&(fA=v.lastIndex),_=g(E,zA?q:v,$),zA?_?(_.input=N(_.input,tA),_[0]=N(_[0],tA),_.index=v.lastIndex,v.lastIndex+=_[0].length):v.lastIndex=0:Q&&_&&(v.lastIndex=v.global?_.index+_[0].length:fA),D&&_&&_.length>1&&g(h,_[0],q,function(){for(CA=1;CAb)","g");return"b"!==o.exec("b").groups.a||"bc"!=="b".replace(o,"$c")})},83943:function(Y,A,r){var i=r(32010).TypeError;Y.exports=function(s){if(null==s)throw i("Can't call method on "+s);return s}},7421:function(Y,A,r){var g=r(32010),i=Object.defineProperty;Y.exports=function(s,o){try{i(g,s,{value:o,configurable:!0,writable:!0})}catch{g[s]=o}return o}},51334:function(Y,A,r){"use strict";var g=r(38486),i=r(95892),s=r(38688),o=r(15567),m=s("species");Y.exports=function(u){var f=g(u);o&&f&&!f[m]&&(0,i.f)(f,m,{configurable:!0,get:function(){return this}})}},15216:function(Y,A,r){var g=r(95892).f,i=r(20340),o=r(38688)("toStringTag");Y.exports=function(m,u,f){m&&!i(m=f?m:m.prototype,o)&&g(m,o,{configurable:!0,value:u})}},82194:function(Y,A,r){var g=r(464),i=r(46859),s=g("keys");Y.exports=function(o){return s[o]||(s[o]=i(o))}},55480:function(Y,A,r){var g=r(32010),i=r(7421),s="__core-js_shared__",o=g[s]||i(s,{});Y.exports=o},464:function(Y,A,r){var g=r(63432),i=r(55480);(Y.exports=function(s,o){return i[s]||(i[s]=void 0!==o?o:{})})("versions",[]).push({version:"3.19.0",mode:g?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},27754:function(Y,A,r){var g=r(34984),i=r(69075),o=r(38688)("species");Y.exports=function(m,u){var B,f=g(m).constructor;return void 0===f||null==(B=g(f)[o])?u:i(B)}},7452:function(Y,A,r){var g=r(47044);Y.exports=function(i){return g(function(){var s=""[i]('"');return s!==s.toLowerCase()||s.split('"').length>3})}},69510:function(Y,A,r){var g=r(38347),i=r(26882),s=r(25096),o=r(83943),m=g("".charAt),u=g("".charCodeAt),f=g("".slice),B=function(a){return function(d,h){var P,M,E=s(o(d)),n=i(h),C=E.length;return n<0||n>=C?a?"":void 0:(P=u(E,n))<55296||P>56319||n+1===C||(M=u(E,n+1))<56320||M>57343?a?m(E,n):P:a?f(E,n,n+2):M-56320+(P-55296<<10)+65536}};Y.exports={codeAt:B(!1),charAt:B(!0)}},34858:function(Y,A,r){"use strict";var g=r(32010),i=r(26882),s=r(25096),o=r(83943),m=g.RangeError;Y.exports=function(f){var B=s(o(this)),a="",d=i(f);if(d<0||d==1/0)throw m("Wrong number of repetitions");for(;d>0;(d>>>=1)&&(B+=B))1&d&&(a+=B);return a}},68899:function(Y,A,r){var g=r(7081).PROPER,i=r(47044),s=r(43187);Y.exports=function(m){return i(function(){return!!s[m]()||"\u200b\x85\u180e"!=="\u200b\x85\u180e"[m]()||g&&s[m].name!==m})}},29841:function(Y,A,r){var g=r(38347),i=r(83943),s=r(25096),o=r(43187),m=g("".replace),u="["+o+"]",f=RegExp("^"+u+u+"*"),B=RegExp(u+u+"*$"),a=function(d){return function(h){var E=s(i(h));return 1&d&&(E=m(E,f,"")),2&d&&(E=m(E,B,"")),E}};Y.exports={start:a(1),end:a(2),trim:a(3)}},6616:function(Y,A,r){var y,K,v,b,g=r(32010),i=r(58448),s=r(25567),o=r(94578),m=r(20340),u=r(47044),f=r(520),B=r(73163),a=r(12072),d=r(17716),h=r(95053),E=g.setImmediate,n=g.clearImmediate,C=g.process,P=g.Dispatch,M=g.Function,N=g.MessageChannel,Q=g.String,X=0,D={},F="onreadystatechange";try{y=g.location}catch{}var w=function(fA){if(m(D,fA)){var _=D[fA];delete D[fA],_()}},Z=function(fA){return function(){w(fA)}},oA=function(fA){w(fA.data)},q=function(fA){g.postMessage(Q(fA),y.protocol+"//"+y.host)};(!E||!n)&&(E=function(_){var CA=B(arguments,1);return D[++X]=function(){i(o(_)?_:M(_),void 0,CA)},K(X),X},n=function(_){delete D[_]},h?K=function(fA){C.nextTick(Z(fA))}:P&&P.now?K=function(fA){P.now(Z(fA))}:N&&!d?(b=(v=new N).port2,v.port1.onmessage=oA,K=s(b.postMessage,b)):g.addEventListener&&o(g.postMessage)&&!g.importScripts&&y&&"file:"!==y.protocol&&!u(q)?(K=q,g.addEventListener("message",oA,!1)):K=F in a("script")?function(fA){f.appendChild(a("script"))[F]=function(){f.removeChild(this),w(fA)}}:function(fA){setTimeout(Z(fA),0)}),Y.exports={set:E,clear:n}},16679:function(Y,A,r){var g=r(38347);Y.exports=g(1..valueOf)},74841:function(Y,A,r){var g=r(26882),i=Math.max,s=Math.min;Y.exports=function(o,m){var u=g(o);return u<0?i(u+m,0):s(u,m)}},71265:function(Y,A,r){var g=r(32010),i=r(26882),s=r(23417),o=g.RangeError;Y.exports=function(m){if(void 0===m)return 0;var u=i(m),f=s(u);if(u!==f)throw o("Wrong length or index");return f}},98086:function(Y,A,r){var g=r(7514),i=r(83943);Y.exports=function(s){return g(i(s))}},26882:function(Y){var A=Math.ceil,r=Math.floor;Y.exports=function(g){var i=+g;return i!=i||0===i?0:(i>0?r:A)(i)}},23417:function(Y,A,r){var g=r(26882),i=Math.min;Y.exports=function(s){return s>0?i(g(s),9007199254740991):0}},43162:function(Y,A,r){var g=r(32010),i=r(83943),s=g.Object;Y.exports=function(o){return s(i(o))}},80670:function(Y,A,r){var g=r(32010),i=r(64913),s=g.RangeError;Y.exports=function(o,m){var u=i(o);if(u%m)throw s("Wrong offset");return u}},64913:function(Y,A,r){var g=r(32010),i=r(26882),s=g.RangeError;Y.exports=function(o){var m=i(o);if(m<0)throw s("The argument can't be less than 0");return m}},2644:function(Y,A,r){var g=r(32010),i=r(2834),s=r(24517),o=r(46290),m=r(51839),u=r(39629),f=r(38688),B=g.TypeError,a=f("toPrimitive");Y.exports=function(d,h){if(!s(d)||o(d))return d;var n,E=m(d,a);if(E){if(void 0===h&&(h="default"),n=i(E,d,h),!s(n)||o(n))return n;throw B("Can't convert object to primitive value")}return void 0===h&&(h="number"),u(d,h)}},63918:function(Y,A,r){var g=r(2644),i=r(46290);Y.exports=function(s){var o=g(s,"string");return i(o)?o:o+""}},24663:function(Y,A,r){var s={};s[r(38688)("toStringTag")]="z",Y.exports="[object z]"===String(s)},25096:function(Y,A,r){var g=r(32010),i=r(52564),s=g.String;Y.exports=function(o){if("Symbol"===i(o))throw TypeError("Cannot convert a Symbol value to a string");return s(o)}},68664:function(Y,A,r){var i=r(32010).String;Y.exports=function(s){try{return i(s)}catch{return"Object"}}},98828:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(2834),o=r(15567),m=r(28834),u=r(36597),f=r(89987),B=r(2868),a=r(97841),d=r(48914),h=r(17506),E=r(23417),n=r(71265),C=r(80670),P=r(63918),M=r(20340),N=r(52564),Q=r(24517),X=r(46290),D=r(10819),F=r(70176),y=r(3840),K=r(6611).f,v=r(83590),b=r(91102).forEach,w=r(51334),Z=r(95892),oA=r(72062),q=r(70172),fA=r(51868),_=q.get,CA=q.set,KA=Z.f,pA=oA.f,NA=Math.round,zA=i.RangeError,O=f.ArrayBuffer,mA=O.prototype,tA=f.DataView,$=u.NATIVE_ARRAY_BUFFER_VIEWS,hA=u.TYPED_ARRAY_CONSTRUCTOR,yA=u.TYPED_ARRAY_TAG,GA=u.TypedArray,j=u.TypedArrayPrototype,U=u.aTypedArrayConstructor,rA=u.isTypedArray,AA="BYTES_PER_ELEMENT",PA="Wrong length",IA=function(EA,WA){U(EA);for(var ge=0,Be=WA.length,le=new EA(Be);Be>ge;)le[ge]=WA[ge++];return le},cA=function(EA,WA){KA(EA,WA,{get:function(){return _(this)[WA]}})},dA=function(EA){var WA;return F(mA,EA)||"ArrayBuffer"==(WA=N(EA))||"SharedArrayBuffer"==WA},vA=function(EA,WA){return rA(EA)&&!X(WA)&&WA in EA&&h(+WA)&&WA>=0},xA=function(WA,ge){return ge=P(ge),vA(WA,ge)?a(2,WA[ge]):pA(WA,ge)},SA=function(WA,ge,Be){return ge=P(ge),!(vA(WA,ge)&&Q(Be)&&M(Be,"value"))||M(Be,"get")||M(Be,"set")||Be.configurable||M(Be,"writable")&&!Be.writable||M(Be,"enumerable")&&!Be.enumerable?KA(WA,ge,Be):(WA[ge]=Be.value,WA)};o?($||(oA.f=xA,Z.f=SA,cA(j,"buffer"),cA(j,"byteOffset"),cA(j,"byteLength"),cA(j,"length")),g({target:"Object",stat:!0,forced:!$},{getOwnPropertyDescriptor:xA,defineProperty:SA}),Y.exports=function(EA,WA,ge){var Be=EA.match(/\d+$/)[0]/8,le=EA+(ge?"Clamped":"")+"Array",we="get"+EA,Me="set"+EA,HA=i[le],_A=HA,Ce=_A&&_A.prototype,me={},MA=function(BA,T){KA(BA,T,{get:function(){return function(BA,T){var k=_(BA);return k.view[we](T*Be+k.byteOffset,!0)}(this,T)},set:function(k){return function(BA,T,k){var aA=_(BA);ge&&(k=(k=NA(k))<0?0:k>255?255:255&k),aA.view[Me](T*Be+aA.byteOffset,k,!0)}(this,T,k)},enumerable:!0})};$?m&&(_A=WA(function(BA,T,k,aA){return B(BA,Ce),fA(Q(T)?dA(T)?void 0!==aA?new HA(T,C(k,Be),aA):void 0!==k?new HA(T,C(k,Be)):new HA(T):rA(T)?IA(_A,T):s(v,_A,T):new HA(n(T)),BA,_A)}),y&&y(_A,GA),b(K(HA),function(BA){BA in _A||d(_A,BA,HA[BA])}),_A.prototype=Ce):(_A=WA(function(BA,T,k,aA){B(BA,Ce);var kA,Xe,J,DA=0,iA=0;if(Q(T)){if(!dA(T))return rA(T)?IA(_A,T):s(v,_A,T);kA=T,iA=C(k,Be);var $A=T.byteLength;if(void 0===aA){if($A%Be||(Xe=$A-iA)<0)throw zA(PA)}else if((Xe=E(aA)*Be)+iA>$A)throw zA(PA);J=Xe/Be}else J=n(T),kA=new O(Xe=J*Be);for(CA(BA,{buffer:kA,byteOffset:iA,byteLength:Xe,length:J,view:new tA(kA)});DA1?arguments[1]:void 0,M=void 0!==P,N=f(n);if(N&&!B(N))for(K=(y=u(n,N)).next,n=[];!(F=i(K,y)).done;)n.push(F.value);for(M&&C>2&&(P=g(P,arguments[2])),X=m(n),D=new(a(E))(X),Q=0;X>Q;Q++)D[Q]=M?P(n[Q],Q):n[Q];return D}},34815:function(Y,A,r){var g=r(36597),i=r(27754),s=g.TYPED_ARRAY_CONSTRUCTOR,o=g.aTypedArrayConstructor;Y.exports=function(m){return o(i(m,m[s]))}},46859:function(Y,A,r){var g=r(38347),i=0,s=Math.random(),o=g(1..toString);Y.exports=function(m){return"Symbol("+(void 0===m?"":m)+")_"+o(++i+s,36)}},9567:function(Y,A,r){var g=r(46887);Y.exports=g&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},75960:function(Y,A,r){var g=r(38688);A.f=g},38688:function(Y,A,r){var g=r(32010),i=r(464),s=r(20340),o=r(46859),m=r(46887),u=r(9567),f=i("wks"),B=g.Symbol,a=B&&B.for,d=u?B:B&&B.withoutSetter||o;Y.exports=function(h){if(!s(f,h)||!m&&"string"!=typeof f[h]){var E="Symbol."+h;f[h]=m&&s(B,h)?B[h]:u&&a?a(E):d(E)}return f[h]}},43187:function(Y){Y.exports="\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},94910:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(70176),o=r(69548),m=r(3840),u=r(2675),f=r(10819),B=r(48914),a=r(97841),d=r(34074),h=r(87811),E=r(80383),n=r(86392),C=r(45144),P=i.Error,M=[].push,N=function(D,F){var y=s(Q,this)?this:f(Q),K=arguments.length>2?arguments[2]:void 0;m&&(y=m(new P(void 0),o(y))),B(y,"message",n(F,"")),C&&B(y,"stack",d(y.stack,1)),h(y,K);var v=[];return E(D,M,{that:v}),B(y,"errors",v),y};m?m(N,P):u(N,P);var Q=N.prototype=f(P.prototype,{constructor:a(1,N),message:a(1,""),name:a(1,"AggregateError")});g({global:!0},{AggregateError:N})},39081:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(47044),o=r(59113),m=r(24517),u=r(43162),f=r(45495),B=r(38639),a=r(45744),d=r(56280),h=r(38688),E=r(70091),n=h("isConcatSpreadable"),C=9007199254740991,P="Maximum allowed index exceeded",M=i.TypeError,N=E>=51||!s(function(){var F=[];return F[n]=!1,F.concat()[0]!==F}),Q=d("concat"),X=function(F){if(!m(F))return!1;var y=F[n];return void 0!==y?!!y:o(F)};g({target:"Array",proto:!0,forced:!N||!Q},{concat:function(y){var w,Z,oA,q,fA,K=u(this),v=a(K,0),b=0;for(w=-1,oA=arguments.length;wC)throw M(P);for(Z=0;Z=C)throw M(P);B(v,b++,fA)}return v.length=b,v}})},68626:function(Y,A,r){var g=r(56475),i=r(92642),s=r(71156);g({target:"Array",proto:!0},{copyWithin:i}),s("copyWithin")},41584:function(Y,A,r){var g=r(56475),i=r(72864),s=r(71156);g({target:"Array",proto:!0},{fill:i}),s("fill")},49063:function(Y,A,r){"use strict";var g=r(56475),i=r(91102).filter;g({target:"Array",proto:!0,forced:!r(56280)("filter")},{filter:function(u){return i(this,u,arguments.length>1?arguments[1]:void 0)}})},97514:function(Y,A,r){"use strict";var g=r(56475),i=r(91102).find,s=r(71156),o="find",m=!0;o in[]&&Array(1)[o](function(){m=!1}),g({target:"Array",proto:!0,forced:m},{find:function(f){return i(this,f,arguments.length>1?arguments[1]:void 0)}}),s(o)},11765:function(Y,A,r){var g=r(56475),i=r(95717);g({target:"Array",stat:!0,forced:!r(46769)(function(m){Array.from(m)})},{from:i})},58028:function(Y,A,r){"use strict";var g=r(56475),i=r(12636).includes,s=r(71156);g({target:"Array",proto:!0},{includes:function(m){return i(this,m,arguments.length>1?arguments[1]:void 0)}}),s("includes")},81755:function(Y,A,r){"use strict";var g=r(98086),i=r(71156),s=r(15366),o=r(70172),m=r(97001),u="Array Iterator",f=o.set,B=o.getterFor(u);Y.exports=m(Array,"Array",function(a,d){f(this,{type:u,target:g(a),index:0,kind:d})},function(){var a=B(this),d=a.target,h=a.kind,E=a.index++;return!d||E>=d.length?(a.target=void 0,{value:void 0,done:!0}):"keys"==h?{value:E,done:!1}:"values"==h?{value:d[E],done:!1}:{value:[E,d[E]],done:!1}},"values"),s.Arguments=s.Array,i("keys"),i("values"),i("entries")},94845:function(Y,A,r){"use strict";var g=r(56475),i=r(38347),s=r(7514),o=r(98086),m=r(81007),u=i([].join),f=s!=Object,B=m("join",",");g({target:"Array",proto:!0,forced:f||!B},{join:function(d){return u(o(this),void 0===d?",":d)}})},80055:function(Y,A,r){"use strict";var g=r(56475),i=r(91102).map;g({target:"Array",proto:!0,forced:!r(56280)("map")},{map:function(u){return i(this,u,arguments.length>1?arguments[1]:void 0)}})},20731:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(59113),o=r(20884),m=r(24517),u=r(74841),f=r(45495),B=r(98086),a=r(38639),d=r(38688),h=r(56280),E=r(73163),n=h("slice"),C=d("species"),P=i.Array,M=Math.max;g({target:"Array",proto:!0,forced:!n},{slice:function(Q,X){var v,b,w,D=B(this),F=f(D),y=u(Q,F),K=u(void 0===X?F:X,F);if(s(D)&&((o(v=D.constructor)&&(v===P||s(v.prototype))||m(v)&&null===(v=v[C]))&&(v=void 0),v===P||void 0===v))return E(D,y,K);for(b=new(void 0===v?P:v)(M(K-y,0)),w=0;y3)){if(h)return!0;if(n)return n<603;var v,b,w,Z,K="";for(v=65;v<76;v++){switch(b=String.fromCharCode(v),v){case 66:case 69:case 70:case 72:w=3;break;case 68:case 71:w=4;break;default:w=2}for(Z=0;Z<47;Z++)C.push({k:b+Z,v:w})}for(C.sort(function(oA,q){return q.v-oA.v}),Z=0;Zu(b)?1:-1}}(v)),oA=w.length,q=0;q9007199254740991)throw h("Maximum allowed length exceeded");for(b=f(X,v),w=0;wD-v+K;w--)delete X[w-1]}else if(K>v)for(w=D-v;w>F;w--)oA=w+K-1,(Z=w+v-1)in X?X[oA]=X[Z]:delete X[oA];for(w=0;w2)if(fA=M(fA),43===(_=y(fA,0))||45===_){if(88===(CA=y(fA,2))||120===CA)return NaN}else if(48===_){switch(y(fA,1)){case 66:case 98:KA=2,pA=49;break;case 79:case 111:KA=8,pA=55;break;default:return+fA}for(zA=(NA=F(fA,2)).length,O=0;OpA)return NaN;return parseInt(NA,KA)}return+fA};if(o(N,!Q(" 0o1")||!Q("0b1")||Q("+0x1"))){for(var oA,b=function(fA){var _=arguments.length<1?0:Q(function(q){var fA=d(q,"number");return"bigint"==typeof fA?fA:v(fA)}(fA)),CA=this;return B(X,CA)&&h(function(){P(CA)})?f(Object(_),CA,b):_},w=g?E(Q):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),Z=0;w.length>Z;Z++)u(Q,oA=w[Z])&&!u(b,oA)&&C(b,oA,n(Q,oA));b.prototype=X,X.constructor=b,m(i,N,b)}},58549:function(Y,A,r){r(56475)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},70095:function(Y,A,r){r(56475)({target:"Number",stat:!0},{isFinite:r(59805)})},2876:function(Y,A,r){r(56475)({target:"Number",stat:!0},{isInteger:r(17506)})},10849:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(38347),o=r(26882),m=r(16679),u=r(34858),f=r(47044),B=i.RangeError,a=i.String,d=Math.floor,h=s(u),E=s("".slice),n=s(1..toFixed),C=function(D,F,y){return 0===F?y:F%2==1?C(D,F-1,y*D):C(D*D,F/2,y)},M=function(D,F,y){for(var K=-1,v=y;++K<6;)D[K]=(v+=F*D[K])%1e7,v=d(v/1e7)},N=function(D,F){for(var y=6,K=0;--y>=0;)D[y]=d((K+=D[y])/F),K=K%F*1e7},Q=function(D){for(var F=6,y="";--F>=0;)if(""!==y||0===F||0!==D[F]){var K=a(D[F]);y=""===y?K:y+h("0",7-K.length)+K}return y};g({target:"Number",proto:!0,forced:f(function(){return"0.000"!==n(8e-5,3)||"1"!==n(.9,0)||"1.25"!==n(1.255,2)||"1000000000000000128"!==n(0xde0b6b3a7640080,0)})||!f(function(){n({})})},{toFixed:function(F){var Z,oA,q,fA,y=m(this),K=o(F),v=[0,0,0,0,0,0],b="",w="0";if(K<0||K>20)throw B("Incorrect fraction digits");if(y!=y)return"NaN";if(y<=-1e21||y>=1e21)return a(y);if(y<0&&(b="-",y=-y),y>1e-21)if(oA=(Z=function(D){for(var F=0,y=D;y>=4096;)F+=12,y/=4096;for(;y>=2;)F+=1,y/=2;return F}(y*C(2,69,1))-69)<0?y*C(2,-Z,1):y/C(2,Z,1),oA*=4503599627370496,(Z=52-Z)>0){for(M(v,0,oA),q=K;q>=7;)M(v,1e7,0),q-=7;for(M(v,C(10,q,1),0),q=Z-1;q>=23;)N(v,8388608),q-=23;N(v,1<0?b+((fA=w.length)<=K?"0."+h("0",K-fA)+w:E(w,0,fA-K)+"."+E(w,fA-K)):b+w}})},18756:function(Y,A,r){var g=r(56475),i=r(87146);g({target:"Object",stat:!0,forced:Object.assign!==i},{assign:i})},75174:function(Y,A,r){var g=r(56475),i=r(55481),s=r(47044),o=r(24517),m=r(62148).onFreeze,u=Object.freeze;g({target:"Object",stat:!0,forced:s(function(){u(1)}),sham:!i},{freeze:function(a){return u&&o(a)?u(m(a)):a}})},57444:function(Y,A,r){var g=r(56475),i=r(47044),s=r(98086),o=r(72062).f,m=r(15567),u=i(function(){o(1)});g({target:"Object",stat:!0,forced:!m||u,sham:!m},{getOwnPropertyDescriptor:function(a,d){return o(s(a),d)}})},28331:function(Y,A,r){var g=r(56475),i=r(15567),s=r(21594),o=r(98086),m=r(72062),u=r(38639);g({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(B){for(var C,P,a=o(B),d=m.f,h=s(a),E={},n=0;h.length>n;)void 0!==(P=d(a,C=h[n++]))&&u(E,C,P);return E}})},71950:function(Y,A,r){var g=r(56475),i=r(47044),s=r(43162),o=r(69548),m=r(68494);g({target:"Object",stat:!0,forced:i(function(){o(1)}),sham:!m},{getPrototypeOf:function(B){return o(s(B))}})},37309:function(Y,A,r){var g=r(56475),i=r(43162),s=r(84675);g({target:"Object",stat:!0,forced:r(47044)(function(){s(1)})},{keys:function(f){return s(i(f))}})},14032:function(Y,A,r){var g=r(24663),i=r(13711),s=r(52598);g||i(Object.prototype,"toString",s,{unsafe:!0})},59883:function(Y,A,r){var g=r(56475),i=r(80754).values;g({target:"Object",stat:!0},{values:function(o){return i(o)}})},77074:function(Y,A,r){"use strict";var g=r(56475),i=r(2834),s=r(32631),o=r(56614),m=r(61900),u=r(80383);g({target:"Promise",stat:!0},{allSettled:function(B){var a=this,d=o.f(a),h=d.resolve,E=d.reject,n=m(function(){var C=s(a.resolve),P=[],M=0,N=1;u(B,function(Q){var X=M++,D=!1;N++,i(C,a,Q).then(function(F){D||(D=!0,P[X]={status:"fulfilled",value:F},--N||h(P))},function(F){D||(D=!0,P[X]={status:"rejected",reason:F},--N||h(P))})}),--N||h(P)});return n.error&&E(n.value),d.promise}})},44455:function(Y,A,r){"use strict";var g=r(56475),i=r(32631),s=r(38486),o=r(2834),m=r(56614),u=r(61900),f=r(80383),B="No one promise resolved";g({target:"Promise",stat:!0},{any:function(d){var h=this,E=s("AggregateError"),n=m.f(h),C=n.resolve,P=n.reject,M=u(function(){var N=i(h.resolve),Q=[],X=0,D=1,F=!1;f(d,function(y){var K=X++,v=!1;D++,o(N,h,y).then(function(b){v||F||(F=!0,C(b))},function(b){v||F||(v=!0,Q[K]=b,--D||P(new E(Q,B)))})}),--D||P(new E(Q,B))});return M.error&&P(M.value),n.promise}})},58605:function(Y,A,r){"use strict";var g=r(56475),i=r(63432),s=r(5155),o=r(47044),m=r(38486),u=r(94578),f=r(27754),B=r(28617),a=r(13711);if(g({target:"Promise",proto:!0,real:!0,forced:!!s&&o(function(){s.prototype.finally.call({then:function(){}},function(){})})},{finally:function(E){var n=f(this,m("Promise")),C=u(E);return this.then(C?function(P){return B(n,E()).then(function(){return P})}:E,C?function(P){return B(n,E()).then(function(){throw P})}:E)}}),!i&&u(s)){var h=m("Promise").prototype.finally;s.prototype.finally!==h&&a(s.prototype,"finally",h,{unsafe:!0})}},68067:function(Y,A,r){"use strict";var EA,WA,ge,Be,g=r(56475),i=r(63432),s=r(32010),o=r(38486),m=r(2834),u=r(5155),f=r(13711),B=r(15341),a=r(3840),d=r(15216),h=r(51334),E=r(32631),n=r(94578),C=r(24517),P=r(2868),M=r(10447),N=r(80383),Q=r(46769),X=r(27754),D=r(6616).set,F=r(59804),y=r(28617),K=r(61144),v=r(56614),b=r(61900),w=r(70172),Z=r(39599),oA=r(38688),q=r(3157),fA=r(95053),_=r(70091),CA=oA("species"),KA="Promise",pA=w.get,NA=w.set,zA=w.getterFor(KA),O=u&&u.prototype,mA=u,tA=O,$=s.TypeError,hA=s.document,yA=s.process,GA=v.f,j=GA,U=!!(hA&&hA.createEvent&&s.dispatchEvent),rA=n(s.PromiseRejectionEvent),AA="unhandledrejection",SA=!1,le=Z(KA,function(){var T=M(mA),k=T!==String(mA);if(!k&&66===_||i&&!tA.finally)return!0;if(_>=51&&/native code/.test(T))return!1;var aA=new mA(function(kA){kA(1)}),DA=function(kA){kA(function(){},function(){})};return(aA.constructor={})[CA]=DA,!(SA=aA.then(function(){})instanceof DA)||!k&&q&&!rA}),we=le||!Q(function(T){mA.all(T).catch(function(){})}),Me=function(T){var k;return!(!C(T)||!n(k=T.then))&&k},HA=function(T,k){if(!T.notified){T.notified=!0;var aA=T.reactions;F(function(){for(var DA=T.value,iA=1==T.state,kA=0;aA.length>kA;){var JA,ce,Se,Xe=aA[kA++],J=iA?Xe.ok:Xe.fail,$A=Xe.resolve,te=Xe.reject,QA=Xe.domain;try{J?(iA||(2===T.rejection&&De(T),T.rejection=1),!0===J?JA=DA:(QA&&QA.enter(),JA=J(DA),QA&&(QA.exit(),Se=!0)),JA===Xe.promise?te($("Promise-chain cycle")):(ce=Me(JA))?m(ce,JA,$A,te):$A(JA)):te(DA)}catch(xe){QA&&!Se&&QA.exit(),te(xe)}}T.reactions=[],T.notified=!1,k&&!T.rejection&&Ce(T)})}},_A=function(T,k,aA){var DA,iA;U?((DA=hA.createEvent("Event")).promise=k,DA.reason=aA,DA.initEvent(T,!1,!0),s.dispatchEvent(DA)):DA={promise:k,reason:aA},!rA&&(iA=s["on"+T])?iA(DA):T===AA&&K("Unhandled promise rejection",aA)},Ce=function(T){m(D,s,function(){var iA,k=T.facade,aA=T.value;if(me(T)&&(iA=b(function(){fA?yA.emit("unhandledRejection",aA,k):_A(AA,k,aA)}),T.rejection=fA||me(T)?2:1,iA.error))throw iA.value})},me=function(T){return 1!==T.rejection&&!T.parent},De=function(T){m(D,s,function(){var k=T.facade;fA?yA.emit("rejectionHandled",k):_A("rejectionhandled",k,T.value)})},Fe=function(T,k,aA){return function(DA){T(k,DA,aA)}},MA=function(T,k,aA){T.done||(T.done=!0,aA&&(T=aA),T.value=k,T.state=2,HA(T,!0))},BA=function(T,k,aA){if(!T.done){T.done=!0,aA&&(T=aA);try{if(T.facade===k)throw $("Promise can't be resolved itself");var DA=Me(k);DA?F(function(){var iA={done:!1};try{m(DA,k,Fe(BA,iA,T),Fe(MA,iA,T))}catch(kA){MA(iA,kA,T)}}):(T.value=k,T.state=1,HA(T,!1))}catch(iA){MA({done:!1},iA,T)}}};if(le&&(mA=function(k){P(this,tA),E(k),m(EA,this);var aA=pA(this);try{k(Fe(BA,aA),Fe(MA,aA))}catch(DA){MA(aA,DA)}},(EA=function(k){NA(this,{type:KA,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=B(tA=mA.prototype,{then:function(k,aA){var DA=zA(this),iA=DA.reactions,kA=GA(X(this,mA));return kA.ok=!n(k)||k,kA.fail=n(aA)&&aA,kA.domain=fA?yA.domain:void 0,DA.parent=!0,iA[iA.length]=kA,0!=DA.state&&HA(DA,!1),kA.promise},catch:function(T){return this.then(void 0,T)}}),WA=function(){var T=new EA,k=pA(T);this.promise=T,this.resolve=Fe(BA,k),this.reject=Fe(MA,k)},v.f=GA=function(T){return T===mA||T===ge?new WA(T):j(T)},!i&&n(u)&&O!==Object.prototype)){Be=O.then,SA||(f(O,"then",function(k,aA){var DA=this;return new mA(function(iA,kA){m(Be,DA,iA,kA)}).then(k,aA)},{unsafe:!0}),f(O,"catch",tA.catch,{unsafe:!0}));try{delete O.constructor}catch{}a&&a(O,tA)}g({global:!0,wrap:!0,forced:le},{Promise:mA}),d(mA,KA,!1,!0),h(KA),ge=o(KA),g({target:KA,stat:!0,forced:le},{reject:function(k){var aA=GA(this);return m(aA.reject,void 0,k),aA.promise}}),g({target:KA,stat:!0,forced:i||le},{resolve:function(k){return y(i&&this===ge?mA:this,k)}}),g({target:KA,stat:!0,forced:we},{all:function(k){var aA=this,DA=GA(aA),iA=DA.resolve,kA=DA.reject,Xe=b(function(){var J=E(aA.resolve),$A=[],te=0,QA=1;N(k,function(JA){var ce=te++,Se=!1;QA++,m(J,aA,JA).then(function(xe){Se||(Se=!0,$A[ce]=xe,--QA||iA($A))},kA)}),--QA||iA($A)});return Xe.error&&kA(Xe.value),DA.promise},race:function(k){var aA=this,DA=GA(aA),iA=DA.reject,kA=b(function(){var Xe=E(aA.resolve);N(k,function(J){m(Xe,aA,J).then(DA.resolve,iA)})});return kA.error&&iA(kA.value),DA.promise}})},61726:function(Y,A,r){"use strict";var g=r(56475),i=r(49820);g({target:"RegExp",proto:!0,forced:/./.exec!==i},{exec:i})},74516:function(Y,A,r){var g=r(15567),i=r(95892),s=r(21182),o=r(47044),m=RegExp.prototype;g&&o(function(){return"sy"!==Object.getOwnPropertyDescriptor(m,"flags").get.call({dotAll:!0,sticky:!0})})&&i.f(m,"flags",{configurable:!0,get:s})},57114:function(Y,A,r){"use strict";var g=r(38347),i=r(7081).PROPER,s=r(13711),o=r(34984),m=r(70176),u=r(25096),f=r(47044),B=r(21182),a="toString",d=RegExp.prototype,h=d[a],E=g(B);(f(function(){return"/a/b"!=h.call({source:"a",flags:"b"})})||i&&h.name!=a)&&s(RegExp.prototype,a,function(){var M=o(this),N=u(M.source),Q=M.flags;return"/"+N+"/"+u(void 0===Q&&m(d,M)&&!("flags"in d)?E(M):Q)},{unsafe:!0})},76014:function(Y,A,r){"use strict";r(36673)("Set",function(s){return function(){return s(this,arguments.length?arguments[0]:void 0)}},r(9649))},28356:function(Y,A,r){"use strict";var g=r(56475),i=r(91159);g({target:"String",proto:!0,forced:r(7452)("bold")},{bold:function(){return i(this,"b","","")}})},26663:function(Y,A,r){"use strict";var g=r(56475),i=r(69510).codeAt;g({target:"String",proto:!0},{codePointAt:function(o){return i(this,o)}})},65578:function(Y,A,r){var g=r(56475),i=r(32010),s=r(38347),o=r(74841),m=i.RangeError,u=String.fromCharCode,f=String.fromCodePoint,B=s([].join);g({target:"String",stat:!0,forced:!!f&&1!=f.length},{fromCodePoint:function(h){for(var P,E=[],n=arguments.length,C=0;n>C;){if(P=+arguments[C++],o(P,1114111)!==P)throw m(P+" is not a valid code point");E[C]=P<65536?u(P):u(55296+((P-=65536)>>10),P%1024+56320)}return B(E,"")}})},47458:function(Y,A,r){"use strict";var g=r(56475),i=r(38347),s=r(93666),o=r(83943),m=r(25096),u=r(91151),f=i("".indexOf);g({target:"String",proto:!0,forced:!u("includes")},{includes:function(a){return!!~f(m(o(this)),m(s(a)),arguments.length>1?arguments[1]:void 0)}})},62046:function(Y,A,r){"use strict";var g=r(56475),i=r(91159);g({target:"String",proto:!0,forced:r(7452)("italics")},{italics:function(){return i(this,"i","","")}})},58281:function(Y,A,r){"use strict";var g=r(69510).charAt,i=r(25096),s=r(70172),o=r(97001),m="String Iterator",u=s.set,f=s.getterFor(m);o(String,"String",function(B){u(this,{type:m,string:i(B),index:0})},function(){var E,a=f(this),d=a.string,h=a.index;return h>=d.length?{value:void 0,done:!0}:(E=g(d,h),a.index+=E.length,{value:E,done:!1})})},47259:function(Y,A,r){"use strict";var g=r(56475),i=r(91159);g({target:"String",proto:!0,forced:r(7452)("link")},{link:function(m){return i(this,"a","href",m)}})},71768:function(Y,A,r){"use strict";var g=r(56475),i=r(32010),s=r(2834),o=r(38347),m=r(13945),u=r(83943),f=r(23417),B=r(25096),a=r(34984),d=r(93975),h=r(70176),E=r(28831),n=r(21182),C=r(51839),P=r(13711),M=r(47044),N=r(38688),Q=r(27754),X=r(36352),D=r(66723),F=r(70172),y=r(63432),K=N("matchAll"),v="RegExp String",b=v+" Iterator",w=F.set,Z=F.getterFor(b),oA=RegExp.prototype,q=i.TypeError,fA=o(n),_=o("".indexOf),CA=o("".matchAll),KA=!!CA&&!M(function(){CA("a",/./)}),pA=m(function(O,mA,tA,$){w(this,{type:b,regexp:O,string:mA,global:tA,unicode:$,done:!1})},v,function(){var O=Z(this);if(O.done)return{value:void 0,done:!0};var mA=O.regexp,tA=O.string,$=D(mA,tA);return null===$?{value:void 0,done:O.done=!0}:O.global?(""===B($[0])&&(mA.lastIndex=X(tA,f(mA.lastIndex),O.unicode)),{value:$,done:!1}):(O.done=!0,{value:$,done:!1})}),NA=function(zA){var tA,$,hA,yA,GA,j,O=a(this),mA=B(zA);return tA=Q(O,RegExp),void 0===($=O.flags)&&h(oA,O)&&!("flags"in oA)&&($=fA(O)),hA=void 0===$?"":B($),yA=new tA(tA===RegExp?O.source:O,hA),GA=!!~_(hA,"g"),j=!!~_(hA,"u"),yA.lastIndex=f(O.lastIndex),new pA(yA,mA,GA,j)};g({target:"String",proto:!0,forced:KA},{matchAll:function(O){var tA,$,hA,yA,mA=u(this);if(null!=O){if(E(O)&&(tA=B(u("flags"in oA?O.flags:fA(O))),!~_(tA,"g")))throw q("`.matchAll` does not allow non-global regexes");if(KA)return CA(mA,O);if(void 0===(hA=C(O,K))&&y&&"RegExp"==d(O)&&(hA=NA),hA)return s(hA,O,mA)}else if(KA)return CA(mA,O);return $=B(mA),yA=new RegExp(O,"g"),y?s(NA,yA,$):yA[K]($)}}),y||K in oA||P(oA,K,NA)},6422:function(Y,A,r){"use strict";var g=r(2834),i=r(11813),s=r(34984),o=r(23417),m=r(25096),u=r(83943),f=r(51839),B=r(36352),a=r(66723);i("match",function(d,h,E){return[function(C){var P=u(this),M=null==C?void 0:f(C,d);return M?g(M,C,P):new RegExp(C)[d](m(P))},function(n){var C=s(this),P=m(n),M=E(h,C,P);if(M.done)return M.value;if(!C.global)return a(C,P);var N=C.unicode;C.lastIndex=0;for(var D,Q=[],X=0;null!==(D=a(C,P));){var F=m(D[0]);Q[X]=F,""===F&&(C.lastIndex=B(P,o(C.lastIndex),N)),X++}return 0===X?null:Q}]})},28264:function(Y,A,r){r(56475)({target:"String",proto:!0},{repeat:r(34858)})},46467:function(Y,A,r){"use strict";var g=r(58448),i=r(2834),s=r(38347),o=r(11813),m=r(47044),u=r(34984),f=r(94578),B=r(26882),a=r(23417),d=r(25096),h=r(83943),E=r(36352),n=r(51839),C=r(29519),P=r(66723),N=r(38688)("replace"),Q=Math.max,X=Math.min,D=s([].concat),F=s([].push),y=s("".indexOf),K=s("".slice),v=function(oA){return void 0===oA?oA:String(oA)},b="$0"==="a".replace(/./,"$0"),w=!!/./[N]&&""===/./[N]("a","$0");o("replace",function(oA,q,fA){var _=w?"$":"$0";return[function(KA,pA){var NA=h(this),zA=null==KA?void 0:n(KA,N);return zA?i(zA,KA,NA,pA):i(q,d(NA),KA,pA)},function(CA,KA){var pA=u(this),NA=d(CA);if("string"==typeof KA&&-1===y(KA,_)&&-1===y(KA,"$<")){var zA=fA(q,pA,NA,KA);if(zA.done)return zA.value}var O=f(KA);O||(KA=d(KA));var mA=pA.global;if(mA){var tA=pA.unicode;pA.lastIndex=0}for(var $=[];;){var hA=P(pA,NA);if(null===hA||(F($,hA),!mA))break;""===d(hA[0])&&(pA.lastIndex=E(NA,a(pA.lastIndex),tA))}for(var GA="",j=0,U=0;U<$.length;U++){for(var rA=d((hA=$[U])[0]),AA=Q(X(B(hA.index),NA.length),0),PA=[],IA=1;IA=j&&(GA+=K(NA,j,AA)+vA,j=AA+rA.length)}return GA+K(NA,j)}]},!!m(function(){var oA=/./;return oA.exec=function(){var q=[];return q.groups={a:"7"},q},"7"!=="".replace(oA,"$")})||!b||w)},7851:function(Y,A,r){"use strict";var g=r(58448),i=r(2834),s=r(38347),o=r(11813),m=r(28831),u=r(34984),f=r(83943),B=r(27754),a=r(36352),d=r(23417),h=r(25096),E=r(51839),n=r(73163),C=r(66723),P=r(49820),M=r(74846),N=r(47044),Q=M.UNSUPPORTED_Y,X=4294967295,D=Math.min,F=[].push,y=s(/./.exec),K=s(F),v=s("".slice),b=!N(function(){var w=/(?:)/,Z=w.exec;w.exec=function(){return Z.apply(this,arguments)};var oA="ab".split(w);return 2!==oA.length||"a"!==oA[0]||"b"!==oA[1]});o("split",function(w,Z,oA){var q;return q="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(fA,_){var CA=h(f(this)),KA=void 0===_?X:_>>>0;if(0===KA)return[];if(void 0===fA)return[CA];if(!m(fA))return i(Z,CA,fA,KA);for(var mA,tA,$,pA=[],zA=0,O=new RegExp(fA.source,(fA.ignoreCase?"i":"")+(fA.multiline?"m":"")+(fA.unicode?"u":"")+(fA.sticky?"y":"")+"g");(mA=i(P,O,CA))&&!((tA=O.lastIndex)>zA&&(K(pA,v(CA,zA,mA.index)),mA.length>1&&mA.index=KA));)O.lastIndex===mA.index&&O.lastIndex++;return zA===CA.length?($||!y(O,""))&&K(pA,""):K(pA,v(CA,zA)),pA.length>KA?n(pA,0,KA):pA}:"0".split(void 0,0).length?function(fA,_){return void 0===fA&&0===_?[]:i(Z,this,fA,_)}:Z,[function(_,CA){var KA=f(this),pA=null==_?void 0:E(_,w);return pA?i(pA,_,KA,CA):i(q,h(KA),_,CA)},function(fA,_){var CA=u(this),KA=h(fA),pA=oA(q,CA,KA,_,q!==Z);if(pA.done)return pA.value;var NA=B(CA,RegExp),zA=CA.unicode,mA=new NA(Q?"^(?:"+CA.source+")":CA,(CA.ignoreCase?"i":"")+(CA.multiline?"m":"")+(CA.unicode?"u":"")+(Q?"g":"y")),tA=void 0===_?X:_>>>0;if(0===tA)return[];if(0===KA.length)return null===C(mA,KA)?[KA]:[];for(var $=0,hA=0,yA=[];hA2?arguments[2]:void 0)})},29883:function(Y,A,r){"use strict";var g=r(36597),i=r(91102).every,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("every",function(u){return i(s(this),u,arguments.length>1?arguments[1]:void 0)})},35471:function(Y,A,r){"use strict";var g=r(36597),i=r(2834),s=r(72864),o=g.aTypedArray;(0,g.exportTypedArrayMethod)("fill",function(f){var B=arguments.length;return i(s,o(this),f,B>1?arguments[1]:void 0,B>2?arguments[2]:void 0)})},21012:function(Y,A,r){"use strict";var g=r(36597),i=r(91102).filter,s=r(59610),o=g.aTypedArray;(0,g.exportTypedArrayMethod)("filter",function(f){var B=i(o(this),f,arguments.length>1?arguments[1]:void 0);return s(this,B)})},97464:function(Y,A,r){"use strict";var g=r(36597),i=r(91102).findIndex,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("findIndex",function(u){return i(s(this),u,arguments.length>1?arguments[1]:void 0)})},88997:function(Y,A,r){"use strict";var g=r(36597),i=r(91102).find,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("find",function(u){return i(s(this),u,arguments.length>1?arguments[1]:void 0)})},3131:function(Y,A,r){r(98828)("Float32",function(i){return function(o,m,u){return i(this,o,m,u)}})},90868:function(Y,A,r){r(98828)("Float64",function(i){return function(o,m,u){return i(this,o,m,u)}})},2857:function(Y,A,r){"use strict";var g=r(36597),i=r(91102).forEach,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("forEach",function(u){i(s(this),u,arguments.length>1?arguments[1]:void 0)})},83326:function(Y,A,r){"use strict";var g=r(28834);(0,r(36597).exportTypedArrayStaticMethod)("from",r(83590),g)},94715:function(Y,A,r){"use strict";var g=r(36597),i=r(12636).includes,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("includes",function(u){return i(s(this),u,arguments.length>1?arguments[1]:void 0)})},13624:function(Y,A,r){"use strict";var g=r(36597),i=r(12636).indexOf,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("indexOf",function(u){return i(s(this),u,arguments.length>1?arguments[1]:void 0)})},75626:function(Y,A,r){r(98828)("Int16",function(i){return function(o,m,u){return i(this,o,m,u)}})},95756:function(Y,A,r){r(98828)("Int32",function(i){return function(o,m,u){return i(this,o,m,u)}})},65553:function(Y,A,r){r(98828)("Int8",function(i){return function(o,m,u){return i(this,o,m,u)}})},91132:function(Y,A,r){"use strict";var g=r(32010),i=r(38347),s=r(7081).PROPER,o=r(36597),m=r(81755),f=r(38688)("iterator"),B=g.Uint8Array,a=i(m.values),d=i(m.keys),h=i(m.entries),E=o.aTypedArray,n=o.exportTypedArrayMethod,C=B&&B.prototype[f],P=!!C&&"values"===C.name,M=function(){return a(E(this))};n("entries",function(){return h(E(this))}),n("keys",function(){return d(E(this))}),n("values",M,s&&!P),n(f,M,s&&!P)},62514:function(Y,A,r){"use strict";var g=r(36597),i=r(38347),s=g.aTypedArray,o=g.exportTypedArrayMethod,m=i([].join);o("join",function(f){return m(s(this),f)})},24597:function(Y,A,r){"use strict";var g=r(36597),i=r(58448),s=r(84320),o=g.aTypedArray;(0,g.exportTypedArrayMethod)("lastIndexOf",function(f){var B=arguments.length;return i(s,o(this),B>1?[f,arguments[1]]:[f])})},88042:function(Y,A,r){"use strict";var g=r(36597),i=r(91102).map,s=r(34815),o=g.aTypedArray;(0,g.exportTypedArrayMethod)("map",function(f){return i(o(this),f,arguments.length>1?arguments[1]:void 0,function(B,a){return new(s(B))(a)})})},92451:function(Y,A,r){"use strict";var g=r(36597),i=r(32843).right,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("reduceRight",function(u){var f=arguments.length;return i(s(this),u,f,f>1?arguments[1]:void 0)})},4660:function(Y,A,r){"use strict";var g=r(36597),i=r(32843).left,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("reduce",function(u){var f=arguments.length;return i(s(this),u,f,f>1?arguments[1]:void 0)})},44206:function(Y,A,r){"use strict";var g=r(36597),i=g.aTypedArray,o=Math.floor;(0,g.exportTypedArrayMethod)("reverse",function(){for(var d,u=this,f=i(u).length,B=o(f/2),a=0;a1?arguments[1]:void 0,1),C=this.length,P=m(E),M=s(P),N=0;if(M+n>C)throw f("Wrong length");for(;Nn;)P[n]=h[n++];return P},s(function(){new Int8Array(1).slice()}))},3858:function(Y,A,r){"use strict";var g=r(36597),i=r(91102).some,s=g.aTypedArray;(0,g.exportTypedArrayMethod)("some",function(u){return i(s(this),u,arguments.length>1?arguments[1]:void 0)})},84538:function(Y,A,r){"use strict";var g=r(32010),i=r(38347),s=r(47044),o=r(32631),m=r(43977),u=r(36597),f=r(3809),B=r(21983),a=r(70091),d=r(41731),h=g.Array,E=u.aTypedArray,n=u.exportTypedArrayMethod,C=g.Uint16Array,P=C&&i(C.prototype.sort),M=!(!P||s(function(){P(new C(2),null)})&&s(function(){P(new C(2),{})})),N=!!P&&!s(function(){if(a)return a<74;if(f)return f<67;if(B)return!0;if(d)return d<602;var F,y,X=new C(516),D=h(516);for(F=0;F<516;F++)y=F%4,X[F]=515-F,D[F]=F-2*y+3;for(P(X,function(K,v){return(K/4|0)-(v/4|0)}),F=0;F<516;F++)if(X[F]!==D[F])return!0});n("sort",function(D){return void 0!==D&&o(D),N?P(this,D):m(E(this),(X=D,function(D,F){return void 0!==X?+X(D,F)||0:F!=F?-1:D!=D?1:0===D&&0===F?1/D>0&&1/F<0?1:-1:D>F}));var X},!N||M)},64793:function(Y,A,r){"use strict";var g=r(36597),i=r(23417),s=r(74841),o=r(34815),m=g.aTypedArray;(0,g.exportTypedArrayMethod)("subarray",function(B,a){var d=m(this),h=d.length,E=s(B,h);return new(o(d))(d.buffer,d.byteOffset+E*d.BYTES_PER_ELEMENT,i((void 0===a?h:s(a,h))-E))})},74202:function(Y,A,r){"use strict";var g=r(32010),i=r(58448),s=r(36597),o=r(47044),m=r(73163),u=g.Int8Array,f=s.aTypedArray,B=s.exportTypedArrayMethod,a=[].toLocaleString,d=!!u&&o(function(){a.call(new u(1))});B("toLocaleString",function(){return i(a,d?m(f(this)):f(this),m(arguments))},o(function(){return[1,2].toLocaleString()!=new u([1,2]).toLocaleString()})||!o(function(){u.prototype.toLocaleString.call([1,2])}))},52529:function(Y,A,r){"use strict";var g=r(36597).exportTypedArrayMethod,i=r(47044),s=r(32010),o=r(38347),m=s.Uint8Array,u=m&&m.prototype||{},f=[].toString,B=o([].join);i(function(){f.call({})})&&(f=function(){return B(this)}),g("toString",f,u.toString!=f)},47969:function(Y,A,r){r(98828)("Uint16",function(i){return function(o,m,u){return i(this,o,m,u)}})},59735:function(Y,A,r){r(98828)("Uint32",function(i){return function(o,m,u){return i(this,o,m,u)}})},56912:function(Y,A,r){r(98828)("Uint8",function(i){return function(o,m,u){return i(this,o,m,u)}})},58099:function(Y,A,r){r(98828)("Uint8",function(i){return function(o,m,u){return i(this,o,m,u)}},!0)},84151:function(Y,A,r){r(94910)},49109:function(Y,A,r){r(64384)},98443:function(Y,A,r){r(77074)},67858:function(Y,A,r){r(44455)},49261:function(Y,A,r){"use strict";var g=r(56475),i=r(56614),s=r(61900);g({target:"Promise",stat:!0},{try:function(o){var m=i.f(this),u=s(o);return(u.error?m.reject:m.resolve)(u.value),m.promise}})},1083:function(Y,A,r){r(71768)},42437:function(Y,A,r){var g=r(32010),i=r(23327),s=r(67797),o=r(82938),m=r(48914),u=function(B){if(B&&B.forEach!==o)try{m(B,"forEach",o)}catch{B.forEach=o}};for(var f in i)i[f]&&u(g[f]&&g[f].prototype);u(s)},94712:function(Y,A,r){var g=r(32010),i=r(23327),s=r(67797),o=r(81755),m=r(48914),u=r(38688),f=u("iterator"),B=u("toStringTag"),a=o.values,d=function(E,n){if(E){if(E[f]!==a)try{m(E,f,a)}catch{E[f]=a}if(E[B]||m(E,B,n),i[n])for(var C in o)if(E[C]!==o[C])try{m(E,C,o[C])}catch{E[C]=o[C]}}};for(var h in i)d(g[h]&&g[h].prototype,h);d(s,"DOMTokenList")},90780:function(Y,A,r){var g=r(42075);r(94712),Y.exports=g},45728:function(Y,A,r){var g=r(35643),i=r(67906),s=r(98527),o=r(71689),m=r(64607),u=r(71230),f=Date.prototype.getTime;function B(E,n,C){var P=C||{};return!!(P.strict?s(E,n):E===n)||(!E||!n||"object"!=typeof E&&"object"!=typeof n?P.strict?s(E,n):E==n:function h(E,n,C){var P,M;if(typeof E!=typeof n||a(E)||a(n)||E.prototype!==n.prototype||i(E)!==i(n))return!1;var N=o(E),Q=o(n);if(N!==Q)return!1;if(N||Q)return E.source===n.source&&m(E)===m(n);if(u(E)&&u(n))return f.call(E)===f.call(n);var X=d(E),D=d(n);if(X!==D)return!1;if(X||D){if(E.length!==n.length)return!1;for(P=0;P=0;P--)if(F[P]!=y[P])return!1;for(P=F.length-1;P>=0;P--)if(!B(E[M=F[P]],n[M],C))return!1;return!0}(E,n,P))}function a(E){return null==E}function d(E){return!(!E||"object"!=typeof E||"number"!=typeof E.length||"function"!=typeof E.copy||"function"!=typeof E.slice||E.length>0&&"number"!=typeof E[0])}Y.exports=B},89295:function(Y,A,r){"use strict";var g=r(56649),i=r(57770),s=r(96785),o=r(68109);Y.exports=function(u,f,B){if(!u||"object"!=typeof u&&"function"!=typeof u)throw new s("`obj` must be an object or a function`");if("string"!=typeof f&&"symbol"!=typeof f)throw new s("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new s("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new s("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new s("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new s("`loose`, if provided, must be a boolean");var a=arguments.length>3?arguments[3]:null,d=arguments.length>4?arguments[4]:null,h=arguments.length>5?arguments[5]:null,E=arguments.length>6&&arguments[6],n=!!o&&o(u,f);if(g)g(u,f,{configurable:null===h&&n?n.configurable:!h,enumerable:null===a&&n?n.enumerable:!a,value:B,writable:null===d&&n?n.writable:!d});else{if(!E&&(a||d||h))throw new i("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");u[f]=B}}},77802:function(Y,A,r){"use strict";var g=r(35643),i="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),s=Object.prototype.toString,o=Array.prototype.concat,m=r(89295),f=r(18890)(),B=function(d,h,E,n){if(h in d)if(!0===n){if(d[h]===E)return}else if(!function(d){return"function"==typeof d&&"[object Function]"===s.call(d)}(n)||!n())return;f?m(d,h,E,!0):m(d,h,E)},a=function(d,h){var E=arguments.length>2?arguments[2]:{},n=g(h);i&&(n=o.call(n,Object.getOwnPropertySymbols(h)));for(var C=0;C0&&b.length>K&&!b.warned){b.warned=!0;var w=new Error("Possible EventEmitter memory leak detected. "+b.length+" "+String(D)+" listeners added. Use emitter.setMaxListeners() to increase limit");w.name="MaxListenersExceededWarning",w.emitter=X,w.type=D,w.count=b.length,function i(X){console&&console.warn&&console.warn(X)}(w)}return X}function a(){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 d(X,D,F){var y={fired:!1,wrapFn:void 0,target:X,type:D,listener:F},K=a.bind(y);return K.listener=F,y.wrapFn=K,K}function h(X,D,F){var y=X._events;if(void 0===y)return[];var K=y[D];return void 0===K?[]:"function"==typeof K?F?[K.listener||K]:[K]:F?function P(X){for(var D=new Array(X.length),F=0;F0&&(b=F[0]),b instanceof Error)throw b;var w=new Error("Unhandled error."+(b?" ("+b.message+")":""));throw w.context=b,w}var Z=v[D];if(void 0===Z)return!1;if("function"==typeof Z)r(Z,this,F);else{var oA=Z.length,q=n(Z,oA);for(y=0;y=0;b--)if(y[b]===F||y[b].listener===F){w=y[b].listener,v=b;break}if(v<0)return this;0===v?y.shift():function C(X,D){for(;D+1=0;K--)this.removeListener(D,F[K]);return this},o.prototype.listeners=function(D){return h(this,D,!0)},o.prototype.rawListeners=function(D){return h(this,D,!1)},o.listenerCount=function(X,D){return"function"==typeof X.listenerCount?X.listenerCount(D):E.call(X,D)},o.prototype.listenerCount=E,o.prototype.eventNames=function(){return this._eventsCount>0?g(this._events):[]}},72022:function(Y,A,r){"use strict";Y.exports=function(){if("object"==typeof globalThis)return globalThis;var g;try{g=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof r.g<"u")return r.g}return g}()},68404:function(Y,A,r){"use strict";var g=r(3746),i=Object.prototype.toString,s=Object.prototype.hasOwnProperty;Y.exports=function(a,d,h){if(!g(d))throw new TypeError("iterator must be a function");var E;arguments.length>=3&&(E=h),"[object Array]"===i.call(a)?function(a,d,h){for(var E=0,n=a.length;E"u"||!M?g:M(Uint8Array),X={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?g:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?g:ArrayBuffer,"%ArrayIteratorPrototype%":C&&M?M([][Symbol.iterator]()):g,"%AsyncFromSyncIteratorPrototype%":g,"%AsyncFunction%":N,"%AsyncGenerator%":N,"%AsyncGeneratorFunction%":N,"%AsyncIteratorPrototype%":N,"%Atomics%":typeof Atomics>"u"?g:Atomics,"%BigInt%":typeof BigInt>"u"?g:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?g:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?g:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?g:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":i,"%eval%":eval,"%EvalError%":s,"%Float32Array%":typeof Float32Array>"u"?g:Float32Array,"%Float64Array%":typeof Float64Array>"u"?g:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?g:FinalizationRegistry,"%Function%":a,"%GeneratorFunction%":N,"%Int8Array%":typeof Int8Array>"u"?g:Int8Array,"%Int16Array%":typeof Int16Array>"u"?g:Int16Array,"%Int32Array%":typeof Int32Array>"u"?g:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":C&&M?M(M([][Symbol.iterator]())):g,"%JSON%":"object"==typeof JSON?JSON:g,"%Map%":typeof Map>"u"?g:Map,"%MapIteratorPrototype%":typeof Map>"u"||!C||!M?g:M((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?g:Promise,"%Proxy%":typeof Proxy>"u"?g:Proxy,"%RangeError%":o,"%ReferenceError%":m,"%Reflect%":typeof Reflect>"u"?g:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?g:Set,"%SetIteratorPrototype%":typeof Set>"u"||!C||!M?g:M((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?g:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":C&&M?M(""[Symbol.iterator]()):g,"%Symbol%":C?Symbol:g,"%SyntaxError%":u,"%ThrowTypeError%":n,"%TypedArray%":Q,"%TypeError%":f,"%Uint8Array%":typeof Uint8Array>"u"?g:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?g:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?g:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?g:Uint32Array,"%URIError%":B,"%WeakMap%":typeof WeakMap>"u"?g:WeakMap,"%WeakRef%":typeof WeakRef>"u"?g:WeakRef,"%WeakSet%":typeof WeakSet>"u"?g:WeakSet};if(M)try{null.error}catch(pA){var D=M(M(pA));X["%Error.prototype%"]=D}var F=function pA(NA){var zA;if("%AsyncFunction%"===NA)zA=d("async function () {}");else if("%GeneratorFunction%"===NA)zA=d("function* () {}");else if("%AsyncGeneratorFunction%"===NA)zA=d("async function* () {}");else if("%AsyncGenerator%"===NA){var O=pA("%AsyncGeneratorFunction%");O&&(zA=O.prototype)}else if("%AsyncIteratorPrototype%"===NA){var mA=pA("%AsyncGenerator%");mA&&M&&(zA=M(mA.prototype))}return X[NA]=zA,zA},y={__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"]},K=r(5049),v=r(55215),b=K.call(Function.call,Array.prototype.concat),w=K.call(Function.apply,Array.prototype.splice),Z=K.call(Function.call,String.prototype.replace),oA=K.call(Function.call,String.prototype.slice),q=K.call(Function.call,RegExp.prototype.exec),fA=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,_=/\\(\\)?/g,KA=function(NA,zA){var mA,O=NA;if(v(y,O)&&(O="%"+(mA=y[O])[0]+"%"),v(X,O)){var tA=X[O];if(tA===N&&(tA=F(O)),typeof tA>"u"&&!zA)throw new f("intrinsic "+NA+" exists, but is not available. Please file an issue!");return{alias:mA,name:O,value:tA}}throw new u("intrinsic "+NA+" does not exist!")};Y.exports=function(NA,zA){if("string"!=typeof NA||0===NA.length)throw new f("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof zA)throw new f('"allowMissing" argument must be a boolean');if(null===q(/^%?[^%]*%?$/,NA))throw new u("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var O=function(NA){var zA=oA(NA,0,1),O=oA(NA,-1);if("%"===zA&&"%"!==O)throw new u("invalid intrinsic syntax, expected closing `%`");if("%"===O&&"%"!==zA)throw new u("invalid intrinsic syntax, expected opening `%`");var mA=[];return Z(NA,fA,function(tA,$,hA,yA){mA[mA.length]=hA?Z(yA,_,"$1"):$||tA}),mA}(NA),mA=O.length>0?O[0]:"",tA=KA("%"+mA+"%",zA),$=tA.name,hA=tA.value,yA=!1,GA=tA.alias;GA&&(mA=GA[0],w(O,b([0,1],GA)));for(var j=1,U=!0;j=O.length){var IA=h(hA,rA);hA=(U=!!IA)&&"get"in IA&&!("originalValue"in IA.get)?IA.get:hA[rA]}else U=v(hA,rA),hA=hA[rA];U&&!yA&&(X[$]=hA)}}return hA}},68109:function(Y,A,r){"use strict";var i=r(28651)("%Object.getOwnPropertyDescriptor%",!0);if(i)try{i([],"length")}catch{i=null}Y.exports=i},18890:function(Y,A,r){"use strict";var g=r(56649),i=function(){return!!g};i.hasArrayLengthDefineBug=function(){if(!g)return null;try{return 1!==g([],"length",{value:1}).length}catch{return!0}},Y.exports=i},85726:function(Y){"use strict";var A={__proto__:null,foo:{}},r=Object;Y.exports=function(){return{__proto__:A}.foo===A.foo&&!(A instanceof r)}},73257:function(Y,A,r){"use strict";var g=typeof Symbol<"u"&&Symbol,i=r(12843);Y.exports=function(){return"function"==typeof g&&"function"==typeof Symbol&&"symbol"==typeof g("foo")&&"symbol"==typeof Symbol("bar")&&i()}},12843:function(Y){"use strict";Y.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var r={},g=Symbol("test"),i=Object(g);if("string"==typeof g||"[object Symbol]"!==Object.prototype.toString.call(g)||"[object Symbol]"!==Object.prototype.toString.call(i))return!1;for(g in r[g]=42,r)return!1;if("function"==typeof Object.keys&&0!==Object.keys(r).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(r).length)return!1;var o=Object.getOwnPropertySymbols(r);if(1!==o.length||o[0]!==g||!Object.prototype.propertyIsEnumerable.call(r,g))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var m=Object.getOwnPropertyDescriptor(r,g);if(42!==m.value||!0!==m.enumerable)return!1}return!0}},26626:function(Y,A,r){"use strict";var g=r(12843);Y.exports=function(){return g()&&!!Symbol.toStringTag}},55215:function(Y,A,r){"use strict";var g=Function.prototype.call,i=Object.prototype.hasOwnProperty,s=r(5049);Y.exports=s.call(g,i)},35143:function(Y,A,r){"use strict";var g=r(16696).Buffer;A._dbcs=a;for(var i=-1,s=-2,o=-10,m=-1e3,u=new Array(256),B=0;B<256;B++)u[B]=i;function a(n,C){if(this.encodingName=n.encodingName,!n)throw new Error("DBCS codec is called without the data.");if(!n.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var P=n.table();this.decodeTables=[],this.decodeTables[0]=u.slice(0),this.decodeTableSeq=[];for(var M=0;Mm)throw new Error("gb18030 decode tables conflict at byte 2");for(var y=this.decodeTables[m-D[F]],K=129;K<=254;K++){if(y[K]===i)y[K]=m-Q;else{if(y[K]===m-Q)continue;if(y[K]>m)throw new Error("gb18030 decode tables conflict at byte 3")}for(var v=this.decodeTables[m-y[K]],b=48;b<=57;b++)v[b]===i&&(v[b]=s)}}}this.defaultCharUnicode=C.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var w={};if(n.encodeSkipVals)for(M=0;MC)return-1;for(var P=0,M=n.length;P>1);n[N]<=C?P=N:M=N}return P}a.prototype.encoder=d,a.prototype.decoder=h,a.prototype._getDecodeTrieNode=function(n){for(var C=[];n>0;n>>>=8)C.push(255&n);0==C.length&&C.push(0);for(var P=this.decodeTables[0],M=C.length-1;M>0;M--){var N=P[C[M]];if(N==i)P[C[M]]=m-this.decodeTables.length,this.decodeTables.push(P=u.slice(0));else{if(!(N<=m))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+n.toString(16));P=this.decodeTables[m-N]}}return P},a.prototype._addDecodeChunk=function(n){var C=parseInt(n[0],16),P=this._getDecodeTrieNode(C);C&=255;for(var M=1;M255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+n[0]+": too long"+C)},a.prototype._getEncodeBucket=function(n){var C=n>>8;return void 0===this.encodeTable[C]&&(this.encodeTable[C]=u.slice(0)),this.encodeTable[C]},a.prototype._setEncodeChar=function(n,C){var P=this._getEncodeBucket(n),M=255&n;P[M]<=o?this.encodeTableSeq[o-P[M]][-1]=C:P[M]==i&&(P[M]=C)},a.prototype._setEncodeSequence=function(n,C){var Q,P=n[0],M=this._getEncodeBucket(P),N=255&P;M[N]<=o?Q=this.encodeTableSeq[o-M[N]]:(Q={},M[N]!==i&&(Q[-1]=M[N]),M[N]=o-this.encodeTableSeq.length,this.encodeTableSeq.push(Q));for(var X=1;X=0)this._setEncodeChar(D,F),N=!0;else if(D<=m){var y=m-D;Q[y]||(this._fillEncodeTable(y,F<<8>>>0,P)?N=!0:Q[y]=!0)}else D<=o&&(this._setEncodeSequence(this.decodeTableSeq[o-D],F),N=!0)}return N},d.prototype.write=function(n){for(var C=g.alloc(n.length*(this.gb18030?4:3)),P=this.leadSurrogate,M=this.seqObj,N=-1,Q=0,X=0;;){if(-1===N){if(Q==n.length)break;var D=n.charCodeAt(Q++)}else D=N,N=-1;if(55296<=D&&D<57344)if(D<56320){if(-1===P){P=D;continue}P=D,D=i}else-1!==P?(D=65536+1024*(P-55296)+(D-56320),P=-1):D=i;else-1!==P&&(N=D,D=i,P=-1);var F=i;if(void 0!==M&&D!=i){var y=M[D];if("object"==typeof y){M=y;continue}"number"==typeof y?F=y:null==y&&void 0!==(y=M[-1])&&(F=y,N=D),M=void 0}else if(D>=0){var K=this.encodeTable[D>>8];if(void 0!==K&&(F=K[255&D]),F<=o){M=this.encodeTableSeq[o-F];continue}if(F==i&&this.gb18030){var v=E(this.gb18030.uChars,D);if(-1!=v){F=this.gb18030.gbChars[v]+(D-this.gb18030.uChars[v]),C[X++]=129+Math.floor(F/12600),F%=12600,C[X++]=48+Math.floor(F/1260),F%=1260,C[X++]=129+Math.floor(F/10),C[X++]=48+(F%=10);continue}}}F===i&&(F=this.defaultCharSingleByte),F<256?C[X++]=F:F<65536?(C[X++]=F>>8,C[X++]=255&F):F<16777216?(C[X++]=F>>16,C[X++]=F>>8&255,C[X++]=255&F):(C[X++]=F>>>24,C[X++]=F>>>16&255,C[X++]=F>>>8&255,C[X++]=255&F)}return this.seqObj=M,this.leadSurrogate=P,C.slice(0,X)},d.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var n=g.alloc(10),C=0;if(this.seqObj){var P=this.seqObj[-1];void 0!==P&&(P<256?n[C++]=P:(n[C++]=P>>8,n[C++]=255&P)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(n[C++]=this.defaultCharSingleByte,this.leadSurrogate=-1),n.slice(0,C)}},d.prototype.findIdx=E,h.prototype.write=function(n){for(var C=g.alloc(2*n.length),P=this.nodeIdx,M=this.prevBytes,N=this.prevBytes.length,Q=-this.prevBytes.length,D=0,F=0;D=0?n[D]:M[D+N];if(!((X=this.decodeTables[P][y])>=0))if(X===i)X=this.defaultCharUnicode.charCodeAt(0),D=Q;else if(X===s){if(D>=3)var K=12600*(n[D-3]-129)+1260*(n[D-2]-48)+10*(n[D-1]-129)+(y-48);else K=12600*(M[D-3+N]-129)+1260*((D-2>=0?n[D-2]:M[D-2+N])-48)+10*((D-1>=0?n[D-1]:M[D-1+N])-129)+(y-48);var v=E(this.gb18030.gbChars,K);X=this.gb18030.uChars[v]+K-this.gb18030.gbChars[v]}else{if(X<=m){P=m-X;continue}if(!(X<=o))throw new Error("iconv-lite internal error: invalid decoding table value "+X+" at "+P+"/"+y);for(var b=this.decodeTableSeq[o-X],w=0;w>8;X=b[b.length-1]}if(X>=65536){var Z=55296|(X-=65536)>>10;C[F++]=255&Z,C[F++]=Z>>8,X=56320|1023&X}C[F++]=255&X,C[F++]=X>>8,P=0,Q=D+1}return this.nodeIdx=P,this.prevBytes=Q>=0?Array.prototype.slice.call(n,Q):M.slice(Q+N).concat(Array.prototype.slice.call(n)),C.slice(0,F).toString("ucs2")},h.prototype.end=function(){for(var n="";this.prevBytes.length>0;){n+=this.defaultCharUnicode;var C=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,C.length>0&&(n+=this.write(C))}return this.prevBytes=[],this.nodeIdx=0,n}},90481:function(Y,A,r){"use strict";Y.exports={shiftjis:{type:"_dbcs",table:function(){return r(40679)},encodeAdd:{"\xa5":92,"\u203e":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return r(56406)},encodeAdd:{"\xa5":92,"\u203e":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return r(74488)}},gbk:{type:"_dbcs",table:function(){return r(74488).concat(r(55914))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return r(74488).concat(r(55914))},gb18030:function(){return r(99129)},encodeSkipVals:[128],encodeAdd:{"\u20ac":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return r(21166)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return r(72324)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return r(72324).concat(r(43267))},encodeSkipVals:[36457,36463,36478,36523,36532,36557,36560,36695,36713,36718,36811,36862,36973,36986,37060,37084,37105,37311,37551,37552,37553,37554,37585,37959,38090,38361,38652,39285,39798,39800,39803,39878,39902,39916,39926,40002,40019,40034,40040,40043,40055,40124,40125,40144,40279,40282,40388,40431,40443,40617,40687,40701,40800,40907,41079,41180,41183,36812,37576,38468,38637,41636,41637,41639,41638,41676,41678]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},26326:function(Y,A,r){"use strict";for(var g=[r(16793),r(24162),r(17100),r(11326),r(99948),r(99900),r(81492),r(35143),r(90481)],i=0;i>>6),d[h++]=128+(63&n)):(d[h++]=224+(n>>>12),d[h++]=128+(n>>>6&63),d[h++]=128+(63&n))}return d.slice(0,h)},f.prototype.end=function(){},B.prototype.write=function(a){for(var d=this.acc,h=this.contBytes,E=this.accBytes,n="",C=0;C0&&(n+=this.defaultCharUnicode,h=0),P<128?n+=String.fromCharCode(P):P<224?(d=31&P,h=1,E=1):P<240?(d=15&P,h=2,E=1):n+=this.defaultCharUnicode):h>0?(d=d<<6|63&P,E++,0==--h&&(n+=2===E&&d<128&&d>0||3===E&&d<2048?this.defaultCharUnicode:String.fromCharCode(d))):n+=this.defaultCharUnicode}return this.acc=d,this.contBytes=h,this.accBytes=E,n},B.prototype.end=function(){var a=0;return this.contBytes>0&&(a+=this.defaultCharUnicode),a}},99948:function(Y,A,r){"use strict";var g=r(16696).Buffer;function i(m,u){if(!m)throw new Error("SBCS codec is called without the data.");if(!m.chars||128!==m.chars.length&&256!==m.chars.length)throw new Error("Encoding '"+m.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(128===m.chars.length){for(var f="",B=0;B<128;B++)f+=String.fromCharCode(B);m.chars=f+m.chars}this.decodeBuf=g.from(m.chars,"ucs2");var a=g.alloc(65536,u.defaultCharSingleByte.charCodeAt(0));for(B=0;B?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xb0\xb7\u2219\u221a\u2592\u2500\u2502\u253c\u2524\u252c\u251c\u2534\u2510\u250c\u2514\u2518\u03b2\u221e\u03c6\xb1\xbd\xbc\u2248\xab\xbb\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufffd\xa0\xad\ufe82\xa3\xa4\ufe84\ufffd\ufffd\ufe8e\ufe8f\ufe95\ufe99\u060c\ufe9d\ufea1\ufea5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufed1\u061b\ufeb1\ufeb5\ufeb9\u061f\xa2\ufe80\ufe81\ufe83\ufe85\ufeca\ufe8b\ufe8d\ufe91\ufe93\ufe97\ufe9b\ufe9f\ufea3\ufea7\ufea9\ufeab\ufead\ufeaf\ufeb3\ufeb7\ufebb\ufebf\ufec1\ufec5\ufecb\ufecf\xa6\xac\xf7\xd7\ufec9\u0640\ufed3\ufed7\ufedb\ufedf\ufee3\ufee7\ufeeb\ufeed\ufeef\ufef3\ufebd\ufecc\ufece\ufecd\ufee1\ufe7d\u0651\ufee5\ufee9\ufeec\ufef0\ufef2\ufed0\ufed5\ufef5\ufef6\ufedd\ufed9\ufef1\u25a0\ufffd"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"\xc7\xfc\xe9\xe2\xe4\xe0\xe5\xe7\xea\xeb\xe8\xef\xee\xec\xc4\xc5\xc9\xe6\xc6\xf4\xf6\xf2\xfb\xf9\xff\xd6\xdc\xf8\xa3\xd8\u20a7\u0192\xe1\xed\xf3\xfa\xf1\xd1\xaa\xba\xbf\u2310\xac\xbd\xbc\xa1\xab\xa4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0386\ufffd\xb7\xac\xa6\u2018\u2019\u0388\u2015\u0389\u038a\u03aa\u038c\ufffd\ufffd\u038e\u03ab\xa9\u038f\xb2\xb3\u03ac\xa3\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03cd\u0391\u0392\u0393\u0394\u0395\u0396\u0397\xbd\u0398\u0399\xab\xbb\u2591\u2592\u2593\u2502\u2524\u039a\u039b\u039c\u039d\u2563\u2551\u2557\u255d\u039e\u039f\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u03a0\u03a1\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u2518\u250c\u2588\u2584\u03b4\u03b5\u2580\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u0384\xad\xb1\u03c5\u03c6\u03c7\xa7\u03c8\u0385\xb0\xa8\u03c9\u03cb\u03b0\u03ce\u25a0\xa0"},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\u203e\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\u0160\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\u017d\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\u0161\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\u017e\xff"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"\ufe88\xd7\xf7\uf8f6\uf8f5\uf8f4\uf8f7\ufe71\x88\u25a0\u2502\u2500\u2510\u250c\u2514\u2518\ufe79\ufe7b\ufe7d\ufe7f\ufe77\ufe8a\ufef0\ufef3\ufef2\ufece\ufecf\ufed0\ufef6\ufef8\ufefa\ufefc\xa0\uf8fa\uf8f9\uf8f8\xa4\uf8fb\ufe8b\ufe91\ufe97\ufe9b\ufe9f\ufea3\u060c\xad\ufea7\ufeb3\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufeb7\u061b\ufebb\ufebf\ufeca\u061f\ufecb\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\ufec7\u0639\u063a\ufecc\ufe82\ufe84\ufe8e\ufed3\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u064b\u064c\u064d\u064e\u064f\u0650\u0651\u0652\ufed7\ufedb\ufedf\uf8fc\ufef5\ufef7\ufef9\ufefb\ufee3\ufee7\ufeec\ufee9\ufffd"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0401\u0402\u0490\u0404\u0405\u0406\u0407\u0408\u0409\u040a\u040b\u040c\xad\u040e\u040f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2116\u0451\u0452\u0491\u0454\u0455\u0456\u0457\u0458\u0459\u045a\u045b\u045c\xa7\u045e\u045f"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0490\u0491\u0404\u0454\u0406\u0456\u0407\u0457\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e81\u0e82\u0e84\u0e87\u0e88\u0eaa\u0e8a\u0e8d\u0e94\u0e95\u0e96\u0e97\u0e99\u0e9a\u0e9b\u0e9c\u0e9d\u0e9e\u0e9f\u0ea1\u0ea2\u0ea3\u0ea5\u0ea7\u0eab\u0ead\u0eae\ufffd\ufffd\ufffd\u0eaf\u0eb0\u0eb2\u0eb3\u0eb4\u0eb5\u0eb6\u0eb7\u0eb8\u0eb9\u0ebc\u0eb1\u0ebb\u0ebd\ufffd\ufffd\ufffd\u0ec0\u0ec1\u0ec2\u0ec3\u0ec4\u0ec8\u0ec9\u0eca\u0ecb\u0ecc\u0ecd\u0ec6\ufffd\u0edc\u0edd\u20ad\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0ed0\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\ufffd\ufffd\xa2\xac\xa6\ufffd"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e48\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\u0e49\u0e4a\u0e4b\u20ac\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\xa2\xac\xa6\xa0"},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"\u20ac\x81\x82\x83\x84\u2026\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\u20ac\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"\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\u2126\u017e\xf8\xbf\xa1\xac\u221a\u0192\u2248\u0106\xab\u010c\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u0110\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\ufffd\xa9\u2044\xa4\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"},maccyrillic:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\xa2\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u2202\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},macgreek:{type:"_sbcs",chars:"\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\xad\xf9\xfb\xfc\u2020\u0393\u0394\u0398\u039b\u039e\u03a0\xdf\xae\xa9\u03a3\u03aa\xa7\u2260\xb0\u0387\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\xa0\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\ufffd"},maciceland:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\xd0\xf0\xde\xfe\xfd\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macroman:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macromania:{type:"_sbcs",chars:"\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\u015e\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\u0103\u015f\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\u0162\u0163\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macthai:{type:"_sbcs",chars:"\xab\xbb\u2026\uf88c\uf88f\uf892\uf895\uf898\uf88b\uf88e\uf891\uf894\uf897\u201c\u201d\uf899\ufffd\u2022\uf884\uf889\uf885\uf886\uf887\uf888\uf88a\uf88d\uf890\uf893\uf896\u2018\u2019\ufffd\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufeff\u200b\u2013\u2014\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u2122\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\xae\xa9\ufffd\ufffd\ufffd\ufffd"},macturkish:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\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\ufffd\xd2\xda\xdb\xd9\ufffd\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macukraine:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\u0490\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},koi8r:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u2553\u2554\u2555\u2556\u2557\u2558\u2559\u255a\u255b\u255c\u255d\u255e\u255f\u2560\u2561\u0401\u2562\u2563\u2564\u2565\u2566\u2567\u2568\u2569\u256a\u256b\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8u:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u255d\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8ru:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u045e\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u040e\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8t:{type:"_sbcs",chars:"\u049b\u0493\u201a\u0492\u201e\u2026\u2020\u2021\ufffd\u2030\u04b3\u2039\u04b2\u04b7\u04b6\ufffd\u049a\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\ufffd\u203a\ufffd\ufffd\ufffd\ufffd\ufffd\u04ef\u04ee\u0451\xa4\u04e3\xa6\xa7\ufffd\ufffd\ufffd\xab\xac\xad\xae\ufffd\xb0\xb1\xb2\u0401\ufffd\u04e2\xb6\xb7\ufffd\u2116\ufffd\xbb\ufffd\ufffd\ufffd\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},armscii8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\ufffd\u0587\u0589)(\xbb\xab\u2014.\u055d,-\u058a\u2026\u055c\u055b\u055e\u0531\u0561\u0532\u0562\u0533\u0563\u0534\u0564\u0535\u0565\u0536\u0566\u0537\u0567\u0538\u0568\u0539\u0569\u053a\u056a\u053b\u056b\u053c\u056c\u053d\u056d\u053e\u056e\u053f\u056f\u0540\u0570\u0541\u0571\u0542\u0572\u0543\u0573\u0544\u0574\u0545\u0575\u0546\u0576\u0547\u0577\u0548\u0578\u0549\u0579\u054a\u057a\u054b\u057b\u054c\u057c\u054d\u057d\u054e\u057e\u054f\u057f\u0550\u0580\u0551\u0581\u0552\u0582\u0553\u0583\u0554\u0584\u0555\u0585\u0556\u0586\u055a\ufffd"},rk1048:{type:"_sbcs",chars:"\u0402\u0403\u201a\u0453\u201e\u2026\u2020\u2021\u20ac\u2030\u0409\u2039\u040a\u049a\u04ba\u040f\u0452\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\u0459\u203a\u045a\u049b\u04bb\u045f\xa0\u04b0\u04b1\u04d8\xa4\u04e8\xa6\xa7\u0401\xa9\u0492\xab\xac\xad\xae\u04ae\xb0\xb1\u0406\u0456\u04e9\xb5\xb6\xb7\u0451\u2116\u0493\xbb\u04d9\u04a2\u04a3\u04af\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},tcvn:{type:"_sbcs",chars:"\0\xda\u1ee4\x03\u1eea\u1eec\u1eee\x07\b\t\n\v\f\r\x0e\x0f\x10\u1ee8\u1ef0\u1ef2\u1ef6\u1ef8\xdd\u1ef4\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xc0\u1ea2\xc3\xc1\u1ea0\u1eb6\u1eac\xc8\u1eba\u1ebc\xc9\u1eb8\u1ec6\xcc\u1ec8\u0128\xcd\u1eca\xd2\u1ece\xd5\xd3\u1ecc\u1ed8\u1edc\u1ede\u1ee0\u1eda\u1ee2\xd9\u1ee6\u0168\xa0\u0102\xc2\xca\xd4\u01a0\u01af\u0110\u0103\xe2\xea\xf4\u01a1\u01b0\u0111\u1eb0\u0300\u0309\u0303\u0301\u0323\xe0\u1ea3\xe3\xe1\u1ea1\u1eb2\u1eb1\u1eb3\u1eb5\u1eaf\u1eb4\u1eae\u1ea6\u1ea8\u1eaa\u1ea4\u1ec0\u1eb7\u1ea7\u1ea9\u1eab\u1ea5\u1ead\xe8\u1ec2\u1ebb\u1ebd\xe9\u1eb9\u1ec1\u1ec3\u1ec5\u1ebf\u1ec7\xec\u1ec9\u1ec4\u1ebe\u1ed2\u0129\xed\u1ecb\xf2\u1ed4\u1ecf\xf5\xf3\u1ecd\u1ed3\u1ed5\u1ed7\u1ed1\u1ed9\u1edd\u1edf\u1ee1\u1edb\u1ee3\xf9\u1ed6\u1ee7\u0169\xfa\u1ee5\u1eeb\u1eed\u1eef\u1ee9\u1ef1\u1ef3\u1ef7\u1ef9\xfd\u1ef5\u1ed0"},georgianacademy:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10ef\u10f0\u10f1\u10f2\u10f3\u10f4\u10f5\u10f6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},georgianps:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10f1\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10f2\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10f3\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10f4\u10ef\u10f0\u10f5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},pt154:{type:"_sbcs",chars:"\u0496\u0492\u04ee\u0493\u201e\u2026\u04b6\u04ae\u04b2\u04af\u04a0\u04e2\u04a2\u049a\u04ba\u04b8\u0497\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u04b3\u04b7\u04a1\u04e3\u04a3\u049b\u04bb\u04b9\xa0\u040e\u045e\u0408\u04e8\u0498\u04b0\xa7\u0401\xa9\u04d8\xab\xac\u04ef\xae\u049c\xb0\u04b1\u0406\u0456\u0499\u04e9\xb6\xb7\u0451\u2116\u04d9\xbb\u0458\u04aa\u04ab\u049d\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},viscii:{type:"_sbcs",chars:"\0\x01\u1eb2\x03\x04\u1eb4\u1eaa\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\u1ef6\x15\x16\x17\x18\u1ef8\x1a\x1b\x1c\x1d\u1ef4\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u1ea0\u1eae\u1eb0\u1eb6\u1ea4\u1ea6\u1ea8\u1eac\u1ebc\u1eb8\u1ebe\u1ec0\u1ec2\u1ec4\u1ec6\u1ed0\u1ed2\u1ed4\u1ed6\u1ed8\u1ee2\u1eda\u1edc\u1ede\u1eca\u1ece\u1ecc\u1ec8\u1ee6\u0168\u1ee4\u1ef2\xd5\u1eaf\u1eb1\u1eb7\u1ea5\u1ea7\u1ea9\u1ead\u1ebd\u1eb9\u1ebf\u1ec1\u1ec3\u1ec5\u1ec7\u1ed1\u1ed3\u1ed5\u1ed7\u1ee0\u01a0\u1ed9\u1edd\u1edf\u1ecb\u1ef0\u1ee8\u1eea\u1eec\u01a1\u1edb\u01af\xc0\xc1\xc2\xc3\u1ea2\u0102\u1eb3\u1eb5\xc8\xc9\xca\u1eba\xcc\xcd\u0128\u1ef3\u0110\u1ee9\xd2\xd3\xd4\u1ea1\u1ef7\u1eeb\u1eed\xd9\xda\u1ef9\u1ef5\xdd\u1ee1\u01b0\xe0\xe1\xe2\xe3\u1ea3\u0103\u1eef\u1eab\xe8\xe9\xea\u1ebb\xec\xed\u0129\u1ec9\u0111\u1ef1\xf2\xf3\xf4\xf5\u1ecf\u1ecd\u1ee5\xf9\xfa\u0169\u1ee7\xfd\u1ee3\u1eee"},iso646cn:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#\xa5%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},iso646jp:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\xa5]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},hproman8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xc0\xc2\xc8\xca\xcb\xce\xcf\xb4\u02cb\u02c6\xa8\u02dc\xd9\xdb\u20a4\xaf\xdd\xfd\xb0\xc7\xe7\xd1\xf1\xa1\xbf\xa4\xa3\xa5\xa7\u0192\xa2\xe2\xea\xf4\xfb\xe1\xe9\xf3\xfa\xe0\xe8\xf2\xf9\xe4\xeb\xf6\xfc\xc5\xee\xd8\xc6\xe5\xed\xf8\xe6\xc4\xec\xd6\xdc\xc9\xef\xdf\xd4\xc1\xc3\xe3\xd0\xf0\xcd\xcc\xd3\xd2\xd5\xf5\u0160\u0161\xda\u0178\xff\xde\xfe\xb7\xb5\xb6\xbe\u2014\xbc\xbd\xaa\xba\xab\u25a0\xbb\xb1\ufffd"},macintosh:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},ascii:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},tis620:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"}}},99900:function(Y){"use strict";Y.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"\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\xa0\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"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\u20ac\u25a0\xa0"},mik:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2514\u2534\u252c\u251c\u2500\u253c\u2563\u2551\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2510\u2591\u2592\u2593\u2502\u2524\u2116\xa7\u2557\u255d\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},cp720:{type:"_sbcs",chars:"\x80\x81\xe9\xe2\x84\xe0\x86\xe7\xea\xeb\xe8\xef\xee\x8d\x8e\x8f\x90\u0651\u0652\xf4\xa4\u0640\xfb\xf9\u0621\u0622\u0623\u0624\xa3\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\xab\xbb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0636\u0637\u0638\u0639\u063a\u0641\xb5\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u2261\u064b\u064c\u064d\u064e\u064f\u0650\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},17100:function(Y,A,r){"use strict";var g=r(16696).Buffer;function i(){}function s(){}function o(){this.overflowByte=-1}function m(a,d){this.iconv=d}function u(a,d){void 0===(a=a||{}).addBOM&&(a.addBOM=!0),this.encoder=d.iconv.getEncoder("utf-16le",a)}function f(a,d){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=a||{},this.iconv=d.iconv}function B(a,d){var h=[],E=0,n=0,C=0;A:for(var P=0;P=100)break A}return C>n?"utf-16be":C1114111)&&(E=n),E>=65536){var C=55296|(E-=65536)>>10;d[h++]=255&C,d[h++]=C>>8,E=56320|1023&E}return d[h++]=255&E,d[h++]=E>>8,h}function u(d,h){this.iconv=h}function f(d,h){void 0===(d=d||{}).addBOM&&(d.addBOM=!0),this.encoder=h.iconv.getEncoder(d.defaultEncoding||"utf-32le",d)}function B(d,h){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=d||{},this.iconv=h.iconv}function a(d,h){var E=[],n=0,C=0,P=0,M=0,N=0;A:for(var Q=0;Q16)&&P++,(0!==E[3]||E[2]>16)&&C++,0===E[0]&&0===E[1]&&(0!==E[2]||0!==E[3])&&N++,(0!==E[0]||0!==E[1])&&0===E[2]&&0===E[3]&&M++,E.length=0,++n>=100)break A}return N-P>M-C?"utf-32be":N-P0){for(;h0&&(M=this.iconv.decode(g.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",M},A.utf7imap=E,E.prototype.encoder=n,E.prototype.decoder=C,E.prototype.bomAware=!0,n.prototype.write=function(M){for(var N=this.inBase64,Q=this.base64Accum,X=this.base64AccumIdx,D=g.alloc(5*M.length+10),F=0,y=0;y0&&(F+=D.write(Q.slice(0,X).toString("base64").replace(/\//g,",").replace(/=+$/,""),F),X=0),D[F++]=d,N=!1),N||(D[F++]=K,38===K&&(D[F++]=d))):(N||(D[F++]=38,N=!0),N&&(Q[X++]=K>>8,Q[X++]=255&K,X==Q.length&&(F+=D.write(Q.toString("base64").replace(/\//g,","),F),X=0)))}return this.inBase64=N,this.base64AccumIdx=X,D.slice(0,F)},n.prototype.end=function(){var M=g.alloc(10),N=0;return this.inBase64&&(this.base64AccumIdx>0&&(N+=M.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),N),this.base64AccumIdx=0),M[N++]=d,this.inBase64=!1),M.slice(0,N)};var P=f.slice();P[44]=!0,C.prototype.write=function(M){for(var N="",Q=0,X=this.inBase64,D=this.base64Accum,F=0;F0&&(M=this.iconv.decode(g.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",M}},52331:function(Y,A){"use strict";function g(s,o){this.encoder=s,this.addBOM=!0}function i(s,o){this.decoder=s,this.pass=!1,this.options=o||{}}A.PrependBOM=g,g.prototype.write=function(s){return this.addBOM&&(s="\ufeff"+s,this.addBOM=!1),this.encoder.write(s)},g.prototype.end=function(){return this.encoder.end()},A.StripBOM=i,i.prototype.write=function(s){var o=this.decoder.write(s);return this.pass||!o||("\ufeff"===o[0]&&(o=o.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),o},i.prototype.end=function(){return this.decoder.end()}},54171:function(Y,A,r){"use strict";var o,g=r(16696).Buffer,i=r(52331),s=Y.exports;s.encodings=null,s.defaultCharUnicode="\ufffd",s.defaultCharSingleByte="?",s.encode=function(u,f,B){u=""+(u||"");var a=s.getEncoder(f,B),d=a.write(u),h=a.end();return h&&h.length>0?g.concat([d,h]):d},s.decode=function(u,f,B){"string"==typeof u&&(s.skipDecodeWarning||(console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding"),s.skipDecodeWarning=!0),u=g.from(""+(u||""),"binary"));var a=s.getDecoder(f,B),d=a.write(u),h=a.end();return h?d+h:d},s.encodingExists=function(u){try{return s.getCodec(u),!0}catch{return!1}},s.toEncoding=s.encode,s.fromEncoding=s.decode,s._codecDataCache={},s.getCodec=function(u){s.encodings||(s.encodings=r(26326));for(var f=s._canonicalizeEncoding(u),B={};;){var a=s._codecDataCache[f];if(a)return a;var d=s.encodings[f];switch(typeof d){case"string":f=d;break;case"object":for(var h in d)B[h]=d[h];B.encodingName||(B.encodingName=f),f=d.type;break;case"function":return B.encodingName||(B.encodingName=f),a=new d(B,s),s._codecDataCache[B.encodingName]=a,a;default:throw new Error("Encoding not recognized: '"+u+"' (searched as: '"+f+"')")}}},s._canonicalizeEncoding=function(m){return(""+m).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},s.getEncoder=function(u,f){var B=s.getCodec(u),a=new B.encoder(f,B);return B.bomAware&&f&&f.addBOM&&(a=new i.PrependBOM(a,f)),a},s.getDecoder=function(u,f){var B=s.getCodec(u),a=new B.decoder(f,B);return B.bomAware&&!(f&&!1===f.stripBOM)&&(a=new i.StripBOM(a,f)),a},s.enableStreamingAPI=function(u){if(!s.supportsStreams){var f=r(34506)(u);s.IconvLiteEncoderStream=f.IconvLiteEncoderStream,s.IconvLiteDecoderStream=f.IconvLiteDecoderStream,s.encodeStream=function(a,d){return new s.IconvLiteEncoderStream(s.getEncoder(a,d),d)},s.decodeStream=function(a,d){return new s.IconvLiteDecoderStream(s.getDecoder(a,d),d)},s.supportsStreams=!0}};try{o=r(16403)}catch{}o&&o.Transform?s.enableStreamingAPI(o):s.encodeStream=s.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},34506:function(Y,A,r){"use strict";var g=r(16696).Buffer;Y.exports=function(i){var s=i.Transform;function o(u,f){this.conv=u,(f=f||{}).decodeStrings=!1,s.call(this,f)}function m(u,f){this.conv=u,(f=f||{}).encoding=this.encoding="utf8",s.call(this,f)}return(o.prototype=Object.create(s.prototype,{constructor:{value:o}}))._transform=function(u,f,B){if("string"!=typeof u)return B(new Error("Iconv encoding stream needs strings as its input."));try{var a=this.conv.write(u);a&&a.length&&this.push(a),B()}catch(d){B(d)}},o.prototype._flush=function(u){try{var f=this.conv.end();f&&f.length&&this.push(f),u()}catch(B){u(B)}},o.prototype.collect=function(u){var f=[];return this.on("error",u),this.on("data",function(B){f.push(B)}),this.on("end",function(){u(null,g.concat(f))}),this},(m.prototype=Object.create(s.prototype,{constructor:{value:m}}))._transform=function(u,f,B){if(!(g.isBuffer(u)||u instanceof Uint8Array))return B(new Error("Iconv decoding stream needs buffers as its input."));try{var a=this.conv.write(u);a&&a.length&&this.push(a,this.encoding),B()}catch(d){B(d)}},m.prototype._flush=function(u){try{var f=this.conv.end();f&&f.length&&this.push(f,this.encoding),u()}catch(B){u(B)}},m.prototype.collect=function(u){var f="";return this.on("error",u),this.on("data",function(B){f+=B}),this.on("end",function(){u(null,f)}),this},{IconvLiteEncoderStream:o,IconvLiteDecoderStream:m}}},89029:function(Y,A){A.read=function(r,g,i,s,o){var m,u,f=8*o-s-1,B=(1<>1,d=-7,h=i?o-1:0,E=i?-1:1,n=r[g+h];for(h+=E,m=n&(1<<-d)-1,n>>=-d,d+=f;d>0;m=256*m+r[g+h],h+=E,d-=8);for(u=m&(1<<-d)-1,m>>=-d,d+=s;d>0;u=256*u+r[g+h],h+=E,d-=8);if(0===m)m=1-a;else{if(m===B)return u?NaN:1/0*(n?-1:1);u+=Math.pow(2,s),m-=a}return(n?-1:1)*u*Math.pow(2,m-s)},A.write=function(r,g,i,s,o,m){var u,f,B,a=8*m-o-1,d=(1<>1,E=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,n=s?0:m-1,C=s?1:-1,P=g<0||0===g&&1/g<0?1:0;for(g=Math.abs(g),isNaN(g)||g===1/0?(f=isNaN(g)?1:0,u=d):(u=Math.floor(Math.log(g)/Math.LN2),g*(B=Math.pow(2,-u))<1&&(u--,B*=2),(g+=u+h>=1?E/B:E*Math.pow(2,1-h))*B>=2&&(u++,B/=2),u+h>=d?(f=0,u=d):u+h>=1?(f=(g*B-1)*Math.pow(2,o),u+=h):(f=g*Math.pow(2,h-1)*Math.pow(2,o),u=0));o>=8;r[i+n]=255&f,n+=C,f/=256,o-=8);for(u=u<0;r[i+n]=255&u,n+=C,u/=256,a-=8);r[i+n-C]|=128*P}},89784:function(Y){Y.exports="function"==typeof Object.create?function(r,g){g&&(r.super_=g,r.prototype=Object.create(g.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}))}:function(r,g){if(g){r.super_=g;var i=function(){};i.prototype=g.prototype,r.prototype=new i,r.prototype.constructor=r}}},67906:function(Y,A,r){"use strict";var g=r(26626)(),s=r(67913)("Object.prototype.toString"),o=function(B){return!(g&&B&&"object"==typeof B&&Symbol.toStringTag in B)&&"[object Arguments]"===s(B)},m=function(B){return!!o(B)||null!==B&&"object"==typeof B&&"number"==typeof B.length&&B.length>=0&&"[object Array]"!==s(B)&&"[object Function]"===s(B.callee)},u=function(){return o(arguments)}();o.isLegacyArguments=m,Y.exports=u?o:m},3746:function(Y){"use strict";var g,i,A=Function.prototype.toString,r="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof r&&"function"==typeof Object.defineProperty)try{g=Object.defineProperty({},"length",{get:function(){throw i}}),i={},r(function(){throw 42},null,g)}catch(N){N!==i&&(r=null)}else r=null;var s=/^\s*class\b/,o=function(Q){try{var X=A.call(Q);return s.test(X)}catch{return!1}},m=function(Q){try{return!o(Q)&&(A.call(Q),!0)}catch{return!1}},u=Object.prototype.toString,n="function"==typeof Symbol&&!!Symbol.toStringTag,C=!(0 in[,]),P=function(){return!1};if("object"==typeof document){var M=document.all;u.call(M)===u.call(document.all)&&(P=function(Q){if((C||!Q)&&(typeof Q>"u"||"object"==typeof Q))try{var X=u.call(Q);return("[object HTMLAllCollection]"===X||"[object HTML document.all class]"===X||"[object HTMLCollection]"===X||"[object Object]"===X)&&null==Q("")}catch{}return!1})}Y.exports=r?function(Q){if(P(Q))return!0;if(!Q||"function"!=typeof Q&&"object"!=typeof Q)return!1;try{r(Q,null,g)}catch(X){if(X!==i)return!1}return!o(Q)&&m(Q)}:function(Q){if(P(Q))return!0;if(!Q||"function"!=typeof Q&&"object"!=typeof Q)return!1;if(n)return m(Q);if(o(Q))return!1;var X=u.call(Q);return!("[object Function]"!==X&&"[object GeneratorFunction]"!==X&&!/^\[object HTML/.test(X))&&m(Q)}},71230:function(Y,A,r){"use strict";var g=Date.prototype.getDay,s=Object.prototype.toString,m=r(26626)();Y.exports=function(f){return"object"==typeof f&&null!==f&&(m?function(f){try{return g.call(f),!0}catch{return!1}}(f):"[object Date]"===s.call(f))}},44610:function(Y,A,r){"use strict";var f,g=Object.prototype.toString,i=Function.prototype.toString,s=/^\s*(?:function)?\*/,o=r(26626)(),m=Object.getPrototypeOf;Y.exports=function(a){if("function"!=typeof a)return!1;if(s.test(i.call(a)))return!0;if(!o)return"[object GeneratorFunction]"===g.call(a);if(!m)return!1;if(typeof f>"u"){var h=function(){if(!o)return!1;try{return Function("return function*() {}")()}catch{}}();f=!!h&&m(h)}return m(a)===f}},82621:function(Y){"use strict";Y.exports=function(r){return r!=r}},7051:function(Y,A,r){"use strict";var g=r(26601),i=r(77802),s=r(82621),o=r(61320),m=r(35074),u=g(o(),Number);i(u,{getPolyfill:o,implementation:s,shim:m}),Y.exports=u},61320:function(Y,A,r){"use strict";var g=r(82621);Y.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:g}},35074:function(Y,A,r){"use strict";var g=r(77802),i=r(61320);Y.exports=function(){var o=i();return g(Number,{isNaN:o},{isNaN:function(){return Number.isNaN!==o}}),o}},71689:function(Y,A,r){"use strict";var s,o,m,u,g=r(67913),i=r(26626)();if(i){s=g("Object.prototype.hasOwnProperty"),o=g("RegExp.prototype.exec"),m={};var f=function(){throw m};u={toString:f,valueOf:f},"symbol"==typeof Symbol.toPrimitive&&(u[Symbol.toPrimitive]=f)}var B=g("Object.prototype.toString"),a=Object.getOwnPropertyDescriptor;Y.exports=i?function(E){if(!E||"object"!=typeof E)return!1;var n=a(E,"lastIndex");if(!n||!s(n,"value"))return!1;try{o(E,u)}catch(P){return P===m}}:function(E){return!(!E||"object"!=typeof E&&"function"!=typeof E)&&"[object RegExp]"===B(E)}},46094:function(Y,A,r){"use strict";var g=r(43381);Y.exports=function(s){return!!g(s)}},38834:function(Y,A,r){"use strict";var i=function s(K){return K&&K.__esModule?K:{default:K}}(r(48181));var o=r(9240),m=[0,1,1,2,4,8,1,1,2,4,8,4,8],n=void 0,C=function(v){try{return 65496===v.readUInt16BE(0)}catch{throw new Error("Unsupport file format.")}},P=function(v){try{var b=v.readUInt16BE(0);return 18761===b||19789===b}catch{throw new Error("Unsupport file format.")}},N=function(v,b,w,Z){var oA=w?v.readUInt16BE(0):v.readUInt16LE(0);if(0===oA)return{};for(var fA=v.slice(2),CA={},KA=0;KA4){var WA=(w?EA.readUInt32BE(0):EA.readUInt32LE(0))-Z;EA=v.slice(WA,WA+SA)}var ge=void 0;if(rA){switch(IA){case 1:ge=EA.readUInt8(0);break;case 2:ge=EA.toString("ascii").replace(/\0+$/,"");break;case 3:ge=w?EA.readUInt16BE(0):EA.readUInt16LE(0);break;case 4:ge=w?EA.readUInt32BE(0):EA.readUInt32LE(0);break;case 5:ge=[];for(var Be=0;Be1&&void 0!==arguments[1])||arguments[1]){var Z=(w=v.slice(2)).readUInt16BE(0);w=(w=(w=(w=w.slice(0,Z)).slice(2)).slice(5)).slice(1)}var CA="MM"===w.toString("ascii",0,2),NA=w.readUInt32BE(4),zA=w.readUInt32LE(4),O=CA?NA:zA;if((w=w.slice(O)).length>0&&((n=N(w,o.ifd,CA,O)).ExifIFDPointer&&(w=w.slice(n.ExifIFDPointer-O),n.SubExif=N(w,o.ifd,CA,n.ExifIFDPointer)),n.GPSInfoIFDPointer)){var mA=n.GPSInfoIFDPointer;w=w.slice(n.ExifIFDPointer?mA-n.ExifIFDPointer:mA-O),n.GPSInfo=N(w,o.gps,CA,mA)}},X=function K(v){var b=function(v){try{var b=v.readUInt16BE(0);return!!(b>=65504&&b<=65519)&&b-65504}catch{throw new Error("Invalid APP Tag.")}}(v);if(!1!==b){var w=v.readUInt16BE(2);1===b?Q(v):K(v.slice(2+w))}},D=function(v){if(!v)throw new Error("buffer not found");return n=void 0,C(v)?(v=v.slice(2),n={},X(v)):P(v)&&(n={},Q(v,!1)),n};A.fromBuffer=D,A.parse=function(v,b){n=void 0,new Promise(function(w,Z){v||Z(new Error("\u2753File not found.")),i.default.readFile(v,function(oA,q){if(oA)Z(oA);else try{if(C(q)){var fA=q.slice(2);n={},X(fA),w(n)}else P(q)?(n={},Q(q,!1),w(n)):Z(new Error("\u{1f631}Unsupport file type."))}catch(_){Z(_)}})},function(w){b(w,void 0)}).then(function(w){b(void 0,w)}).catch(function(w){b(w,void 0)})},A.parseSync=function(v){if(!v)throw new Error("File not found");var b=i.default.readFileSync(v);return D(b)}},63249:function(Y){"use strict";var A=function(r){return r!=r};Y.exports=function(g,i){return 0===g&&0===i?1/g==1/i:!!(g===i||A(g)&&A(i))}},98527:function(Y,A,r){"use strict";var g=r(77802),i=r(26601),s=r(63249),o=r(89636),m=r(3534),u=i(o(),Object);g(u,{getPolyfill:o,implementation:s,shim:m}),Y.exports=u},89636:function(Y,A,r){"use strict";var g=r(63249);Y.exports=function(){return"function"==typeof Object.is?Object.is:g}},3534:function(Y,A,r){"use strict";var g=r(89636),i=r(77802);Y.exports=function(){var o=g();return i(Object,{is:o},{is:function(){return Object.is!==o}}),o}},48461:function(Y,A,r){"use strict";var g;if(!Object.keys){var i=Object.prototype.hasOwnProperty,s=Object.prototype.toString,o=r(76515),m=Object.prototype.propertyIsEnumerable,u=!m.call({toString:null},"toString"),f=m.call(function(){},"prototype"),B=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],a=function(n){var C=n.constructor;return C&&C.prototype===n},d={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},h=function(){if(typeof window>"u")return!1;for(var n in window)try{if(!d["$"+n]&&i.call(window,n)&&null!==window[n]&&"object"==typeof window[n])try{a(window[n])}catch{return!0}}catch{return!0}return!1}();g=function(C){var P=null!==C&&"object"==typeof C,M="[object Function]"===s.call(C),N=o(C),Q=P&&"[object String]"===s.call(C),X=[];if(!P&&!M&&!N)throw new TypeError("Object.keys called on a non-object");var D=f&&M;if(Q&&C.length>0&&!i.call(C,0))for(var F=0;F0)for(var y=0;y"u"||!h)return a(n);try{return a(n)}catch{return!1}}(C),b=0;b=0&&"[object Function]"===A.call(g.callee)),s}},36521:function(Y,A,r){"use strict";var g=r(35643),i=r(12843)(),s=r(67913),o=Object,m=s("Array.prototype.push"),u=s("Object.prototype.propertyIsEnumerable"),f=i?Object.getOwnPropertySymbols:null;Y.exports=function(a,d){if(null==a)throw new TypeError("target must be an object");var h=o(a);if(1===arguments.length)return h;for(var E=1;E>>16&65535,u=0;0!==i;){i-=u=i>2e3?2e3:i;do{m=m+(o=o+g[s++]|0)|0}while(--u);o%=65521,m%=65521}return o|m<<16}},81607:function(Y){"use strict";Y.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}},99049:function(Y){"use strict";var r=function A(){for(var i,s=[],o=0;o<256;o++){i=o;for(var m=0;m<8;m++)i=1&i?3988292384^i>>>1:i>>>1;s[o]=i}return s}();Y.exports=function g(i,s,o,m){var u=r,f=m+o;i^=-1;for(var B=m;B>>8^u[255&(i^s[B])];return~i}},22925:function(Y,A,r){"use strict";var De,g=r(72519),i=r(22367),s=r(46911),o=r(99049),m=r(56228),u=0,a=4,h=0,n=-2,M=-1,D=4,y=2,K=8,v=9,q=286,fA=30,_=19,CA=2*q+1,KA=15,pA=3,NA=258,zA=NA+pA+1,mA=42,GA=113,j=666,U=1,rA=2,AA=3,PA=4;function cA(J,$A){return J.msg=m[$A],$A}function dA(J){return(J<<1)-(J>4?9:0)}function vA(J){for(var $A=J.length;--$A>=0;)J[$A]=0}function xA(J){var $A=J.state,te=$A.pending;te>J.avail_out&&(te=J.avail_out),0!==te&&(g.arraySet(J.output,$A.pending_buf,$A.pending_out,te,J.next_out),J.next_out+=te,$A.pending_out+=te,J.total_out+=te,J.avail_out-=te,$A.pending-=te,0===$A.pending&&($A.pending_out=0))}function SA(J,$A){i._tr_flush_block(J,J.block_start>=0?J.block_start:-1,J.strstart-J.block_start,$A),J.block_start=J.strstart,xA(J.strm)}function EA(J,$A){J.pending_buf[J.pending++]=$A}function WA(J,$A){J.pending_buf[J.pending++]=$A>>>8&255,J.pending_buf[J.pending++]=255&$A}function ge(J,$A,te,QA){var JA=J.avail_in;return JA>QA&&(JA=QA),0===JA?0:(J.avail_in-=JA,g.arraySet($A,J.input,J.next_in,JA,te),1===J.state.wrap?J.adler=s(J.adler,$A,JA,te):2===J.state.wrap&&(J.adler=o(J.adler,$A,JA,te)),J.next_in+=JA,J.total_in+=JA,JA)}function Be(J,$A){var JA,ce,te=J.max_chain_length,QA=J.strstart,Se=J.prev_length,xe=J.nice_match,Ue=J.strstart>J.w_size-zA?J.strstart-(J.w_size-zA):0,Oe=J.window,tr=J.w_mask,Ie=J.prev,pe=J.strstart+NA,ke=Oe[QA+Se-1],Ve=Oe[QA+Se];J.prev_length>=J.good_match&&(te>>=2),xe>J.lookahead&&(xe=J.lookahead);do{if(Oe[(JA=$A)+Se]===Ve&&Oe[JA+Se-1]===ke&&Oe[JA]===Oe[QA]&&Oe[++JA]===Oe[QA+1]){QA+=2,JA++;do{}while(Oe[++QA]===Oe[++JA]&&Oe[++QA]===Oe[++JA]&&Oe[++QA]===Oe[++JA]&&Oe[++QA]===Oe[++JA]&&Oe[++QA]===Oe[++JA]&&Oe[++QA]===Oe[++JA]&&Oe[++QA]===Oe[++JA]&&Oe[++QA]===Oe[++JA]&&QASe){if(J.match_start=$A,Se=ce,ce>=xe)break;ke=Oe[QA+Se-1],Ve=Oe[QA+Se]}}}while(($A=Ie[$A&tr])>Ue&&0!=--te);return Se<=J.lookahead?Se:J.lookahead}function le(J){var te,QA,JA,ce,Se,$A=J.w_size;do{if(ce=J.window_size-J.lookahead-J.strstart,J.strstart>=$A+($A-zA)){g.arraySet(J.window,J.window,$A,$A,0),J.match_start-=$A,J.strstart-=$A,J.block_start-=$A,te=QA=J.hash_size;do{JA=J.head[--te],J.head[te]=JA>=$A?JA-$A:0}while(--QA);te=QA=$A;do{JA=J.prev[--te],J.prev[te]=JA>=$A?JA-$A:0}while(--QA);ce+=$A}if(0===J.strm.avail_in)break;if(QA=ge(J.strm,J.window,J.strstart+J.lookahead,ce),J.lookahead+=QA,J.lookahead+J.insert>=pA)for(J.ins_h=J.window[Se=J.strstart-J.insert],J.ins_h=(J.ins_h<=pA&&(J.ins_h=(J.ins_h<=pA)if(QA=i._tr_tally(J,J.strstart-J.match_start,J.match_length-pA),J.lookahead-=J.match_length,J.match_length<=J.max_lazy_match&&J.lookahead>=pA){J.match_length--;do{J.strstart++,J.ins_h=(J.ins_h<=pA&&(J.ins_h=(J.ins_h<4096)&&(J.match_length=pA-1)),J.prev_length>=pA&&J.match_length<=J.prev_length){JA=J.strstart+J.lookahead-pA,QA=i._tr_tally(J,J.strstart-1-J.prev_match,J.prev_length-pA),J.lookahead-=J.prev_length-1,J.prev_length-=2;do{++J.strstart<=JA&&(J.ins_h=(J.ins_h<15&&(Se=2,QA-=16),JA<1||JA>v||te!==K||QA<8||QA>15||$A<0||$A>9||ce<0||ce>D)return cA(J,n);8===QA&&(QA=9);var xe=new MA;return J.state=xe,xe.strm=J,xe.wrap=Se,xe.gzhead=null,xe.w_bits=QA,xe.w_size=1<J.pending_buf_size-5&&(te=J.pending_buf_size-5);;){if(J.lookahead<=1){if(le(J),0===J.lookahead&&$A===u)return U;if(0===J.lookahead)break}J.strstart+=J.lookahead,J.lookahead=0;var QA=J.block_start+te;if((0===J.strstart||J.strstart>=QA)&&(J.lookahead=J.strstart-QA,J.strstart=QA,SA(J,!1),0===J.strm.avail_out)||J.strstart-J.block_start>=J.w_size-zA&&(SA(J,!1),0===J.strm.avail_out))return U}return J.insert=0,$A===a?(SA(J,!0),0===J.strm.avail_out?AA:PA):(J.strstart>J.block_start&&SA(J,!1),U)}),new me(4,4,8,4,Me),new me(4,5,16,8,Me),new me(4,6,32,32,Me),new me(4,4,16,16,HA),new me(8,16,32,32,HA),new me(8,16,128,128,HA),new me(8,32,128,256,HA),new me(32,128,258,1024,HA),new me(32,258,258,4096,HA)],A.deflateInit=function DA(J,$A){return aA(J,$A,K,15,8,0)},A.deflateInit2=aA,A.deflateReset=T,A.deflateResetKeep=BA,A.deflateSetHeader=function k(J,$A){return J&&J.state&&2===J.state.wrap?(J.state.gzhead=$A,h):n},A.deflate=function iA(J,$A){var te,QA,JA,ce;if(!J||!J.state||$A>5||$A<0)return J?cA(J,n):n;if(QA=J.state,!J.output||!J.input&&0!==J.avail_in||QA.status===j&&$A!==a)return cA(J,0===J.avail_out?-5:n);if(QA.strm=J,te=QA.last_flush,QA.last_flush=$A,QA.status===mA)if(2===QA.wrap)J.adler=0,EA(QA,31),EA(QA,139),EA(QA,8),QA.gzhead?(EA(QA,(QA.gzhead.text?1:0)+(QA.gzhead.hcrc?2:0)+(QA.gzhead.extra?4:0)+(QA.gzhead.name?8:0)+(QA.gzhead.comment?16:0)),EA(QA,255&QA.gzhead.time),EA(QA,QA.gzhead.time>>8&255),EA(QA,QA.gzhead.time>>16&255),EA(QA,QA.gzhead.time>>24&255),EA(QA,9===QA.level?2:QA.strategy>=2||QA.level<2?4:0),EA(QA,255&QA.gzhead.os),QA.gzhead.extra&&QA.gzhead.extra.length&&(EA(QA,255&QA.gzhead.extra.length),EA(QA,QA.gzhead.extra.length>>8&255)),QA.gzhead.hcrc&&(J.adler=o(J.adler,QA.pending_buf,QA.pending,0)),QA.gzindex=0,QA.status=69):(EA(QA,0),EA(QA,0),EA(QA,0),EA(QA,0),EA(QA,0),EA(QA,9===QA.level?2:QA.strategy>=2||QA.level<2?4:0),EA(QA,3),QA.status=GA);else{var Se=K+(QA.w_bits-8<<4)<<8;Se|=(QA.strategy>=2||QA.level<2?0:QA.level<6?1:6===QA.level?2:3)<<6,0!==QA.strstart&&(Se|=32),Se+=31-Se%31,QA.status=GA,WA(QA,Se),0!==QA.strstart&&(WA(QA,J.adler>>>16),WA(QA,65535&J.adler)),J.adler=1}if(69===QA.status)if(QA.gzhead.extra){for(JA=QA.pending;QA.gzindex<(65535&QA.gzhead.extra.length)&&(QA.pending!==QA.pending_buf_size||(QA.gzhead.hcrc&&QA.pending>JA&&(J.adler=o(J.adler,QA.pending_buf,QA.pending-JA,JA)),xA(J),JA=QA.pending,QA.pending!==QA.pending_buf_size));)EA(QA,255&QA.gzhead.extra[QA.gzindex]),QA.gzindex++;QA.gzhead.hcrc&&QA.pending>JA&&(J.adler=o(J.adler,QA.pending_buf,QA.pending-JA,JA)),QA.gzindex===QA.gzhead.extra.length&&(QA.gzindex=0,QA.status=73)}else QA.status=73;if(73===QA.status)if(QA.gzhead.name){JA=QA.pending;do{if(QA.pending===QA.pending_buf_size&&(QA.gzhead.hcrc&&QA.pending>JA&&(J.adler=o(J.adler,QA.pending_buf,QA.pending-JA,JA)),xA(J),JA=QA.pending,QA.pending===QA.pending_buf_size)){ce=1;break}ce=QA.gzindexJA&&(J.adler=o(J.adler,QA.pending_buf,QA.pending-JA,JA)),0===ce&&(QA.gzindex=0,QA.status=91)}else QA.status=91;if(91===QA.status)if(QA.gzhead.comment){JA=QA.pending;do{if(QA.pending===QA.pending_buf_size&&(QA.gzhead.hcrc&&QA.pending>JA&&(J.adler=o(J.adler,QA.pending_buf,QA.pending-JA,JA)),xA(J),JA=QA.pending,QA.pending===QA.pending_buf_size)){ce=1;break}ce=QA.gzindexJA&&(J.adler=o(J.adler,QA.pending_buf,QA.pending-JA,JA)),0===ce&&(QA.status=103)}else QA.status=103;if(103===QA.status&&(QA.gzhead.hcrc?(QA.pending+2>QA.pending_buf_size&&xA(J),QA.pending+2<=QA.pending_buf_size&&(EA(QA,255&J.adler),EA(QA,J.adler>>8&255),J.adler=0,QA.status=GA)):QA.status=GA),0!==QA.pending){if(xA(J),0===J.avail_out)return QA.last_flush=-1,h}else if(0===J.avail_in&&dA($A)<=dA(te)&&$A!==a)return cA(J,-5);if(QA.status===j&&0!==J.avail_in)return cA(J,-5);if(0!==J.avail_in||0!==QA.lookahead||$A!==u&&QA.status!==j){var Ue=2===QA.strategy?function Ce(J,$A){for(var te;;){if(0===J.lookahead&&(le(J),0===J.lookahead)){if($A===u)return U;break}if(J.match_length=0,te=i._tr_tally(J,0,J.window[J.strstart]),J.lookahead--,J.strstart++,te&&(SA(J,!1),0===J.strm.avail_out))return U}return J.insert=0,$A===a?(SA(J,!0),0===J.strm.avail_out?AA:PA):J.last_lit&&(SA(J,!1),0===J.strm.avail_out)?U:rA}(QA,$A):3===QA.strategy?function _A(J,$A){for(var te,QA,JA,ce,Se=J.window;;){if(J.lookahead<=NA){if(le(J),J.lookahead<=NA&&$A===u)return U;if(0===J.lookahead)break}if(J.match_length=0,J.lookahead>=pA&&J.strstart>0&&(QA=Se[JA=J.strstart-1])===Se[++JA]&&QA===Se[++JA]&&QA===Se[++JA]){ce=J.strstart+NA;do{}while(QA===Se[++JA]&&QA===Se[++JA]&&QA===Se[++JA]&&QA===Se[++JA]&&QA===Se[++JA]&&QA===Se[++JA]&&QA===Se[++JA]&&QA===Se[++JA]&&JAJ.lookahead&&(J.match_length=J.lookahead)}if(J.match_length>=pA?(te=i._tr_tally(J,1,J.match_length-pA),J.lookahead-=J.match_length,J.strstart+=J.match_length,J.match_length=0):(te=i._tr_tally(J,0,J.window[J.strstart]),J.lookahead--,J.strstart++),te&&(SA(J,!1),0===J.strm.avail_out))return U}return J.insert=0,$A===a?(SA(J,!0),0===J.strm.avail_out?AA:PA):J.last_lit&&(SA(J,!1),0===J.strm.avail_out)?U:rA}(QA,$A):De[QA.level].func(QA,$A);if((Ue===AA||Ue===PA)&&(QA.status=j),Ue===U||Ue===AA)return 0===J.avail_out&&(QA.last_flush=-1),h;if(Ue===rA&&(1===$A?i._tr_align(QA):5!==$A&&(i._tr_stored_block(QA,0,0,!1),3===$A&&(vA(QA.head),0===QA.lookahead&&(QA.strstart=0,QA.block_start=0,QA.insert=0))),xA(J),0===J.avail_out))return QA.last_flush=-1,h}return $A!==a?h:QA.wrap<=0?1:(2===QA.wrap?(EA(QA,255&J.adler),EA(QA,J.adler>>8&255),EA(QA,J.adler>>16&255),EA(QA,J.adler>>24&255),EA(QA,255&J.total_in),EA(QA,J.total_in>>8&255),EA(QA,J.total_in>>16&255),EA(QA,J.total_in>>24&255)):(WA(QA,J.adler>>>16),WA(QA,65535&J.adler)),xA(J),QA.wrap>0&&(QA.wrap=-QA.wrap),0!==QA.pending?h:1)},A.deflateEnd=function kA(J){var $A;return J&&J.state?($A=J.state.status)!==mA&&69!==$A&&73!==$A&&91!==$A&&103!==$A&&$A!==GA&&$A!==j?cA(J,n):(J.state=null,$A===GA?cA(J,-3):h):n},A.deflateSetDictionary=function Xe(J,$A){var QA,JA,ce,Se,xe,Ue,Oe,tr,te=$A.length;if(!J||!J.state||2===(Se=(QA=J.state).wrap)||1===Se&&QA.status!==mA||QA.lookahead)return n;for(1===Se&&(J.adler=s(J.adler,$A,te,0)),QA.wrap=0,te>=QA.w_size&&(0===Se&&(vA(QA.head),QA.strstart=0,QA.block_start=0,QA.insert=0),tr=new g.Buf8(QA.w_size),g.arraySet(tr,$A,te-QA.w_size,QA.w_size,0),$A=tr,te=QA.w_size),xe=J.avail_in,Ue=J.next_in,Oe=J.input,J.avail_in=te,J.next_in=0,J.input=$A,le(QA);QA.lookahead>=pA;){JA=QA.strstart,ce=QA.lookahead-(pA-1);do{QA.ins_h=(QA.ins_h<>>=y=F>>>24,M-=y,0==(y=F>>>16&255))oA[f++]=65535&F;else{if(!(16&y)){if(64&y){if(32&y){o.mode=12;break A}i.msg="invalid literal/length code",o.mode=30;break A}F=N[(65535&F)+(P&(1<>>=y,M-=y),M<15&&(P+=Z[m++]<>>=y=F>>>24,M-=y,16&(y=F>>>16&255)){if(v=65535&F,M<(y&=15)&&(P+=Z[m++]<d){i.msg="invalid distance too far back",o.mode=30;break A}if(P>>>=y,M-=y,v>(y=f-B)){if((y=v-y)>E&&o.sane){i.msg="invalid distance too far back",o.mode=30;break A}if(b=0,w=C,0===n){if(b+=h-y,y2;)oA[f++]=w[b++],oA[f++]=w[b++],oA[f++]=w[b++],K-=3;K&&(oA[f++]=w[b++],K>1&&(oA[f++]=w[b++]))}else{b=f-v;do{oA[f++]=oA[b++],oA[f++]=oA[b++],oA[f++]=oA[b++],K-=3}while(K>2);K&&(oA[f++]=oA[b++],K>1&&(oA[f++]=oA[b++]))}break}if(64&y){i.msg="invalid distance code",o.mode=30;break A}F=Q[(65535&F)+(P&(1<>3)<<3))-1,i.next_in=m-=K,i.next_out=f,i.avail_in=m>>24&255)+(aA>>>8&65280)+((65280&aA)<<8)+((255&aA)<<24)}function ge(){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 g.Buf16(320),this.work=new g.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Be(aA){var DA;return aA&&aA.state?(aA.total_in=aA.total_out=(DA=aA.state).total=0,aA.msg="",DA.wrap&&(aA.adler=1&DA.wrap),DA.mode=D,DA.last=0,DA.havedict=0,DA.dmax=32768,DA.head=null,DA.hold=0,DA.bits=0,DA.lencode=DA.lendyn=new g.Buf32(vA),DA.distcode=DA.distdyn=new g.Buf32(xA),DA.sane=1,DA.back=-1,E):P}function le(aA){var DA;return aA&&aA.state?((DA=aA.state).wsize=0,DA.whave=0,DA.wnext=0,Be(aA)):P}function we(aA,DA){var iA,kA;return!aA||!aA.state||(kA=aA.state,DA<0?(iA=0,DA=-DA):(iA=1+(DA>>4),DA<48&&(DA&=15)),DA&&(DA<8||DA>15))?P:(null!==kA.window&&kA.wbits!==DA&&(kA.window=null),kA.wrap=iA,kA.wbits=DA,le(aA))}function Me(aA,DA){var iA,kA;return aA?(kA=new ge,aA.state=kA,kA.window=null,(iA=we(aA,DA))!==E&&(aA.state=null),iA):P}var Ce,me,_A=!0;function De(aA){if(_A){var DA;for(Ce=new g.Buf32(512),me=new g.Buf32(32),DA=0;DA<144;)aA.lens[DA++]=8;for(;DA<256;)aA.lens[DA++]=9;for(;DA<280;)aA.lens[DA++]=7;for(;DA<288;)aA.lens[DA++]=8;for(m(f,aA.lens,0,288,Ce,0,aA.work,{bits:9}),DA=0;DA<32;)aA.lens[DA++]=5;m(B,aA.lens,0,32,me,0,aA.work,{bits:5}),_A=!1}aA.lencode=Ce,aA.lenbits=9,aA.distcode=me,aA.distbits=5}function Fe(aA,DA,iA,kA){var Xe,J=aA.state;return null===J.window&&(J.wsize=1<=J.wsize?(g.arraySet(J.window,DA,iA-J.wsize,J.wsize,0),J.wnext=0,J.whave=J.wsize):((Xe=J.wsize-J.wnext)>kA&&(Xe=kA),g.arraySet(J.window,DA,iA-kA,Xe,J.wnext),(kA-=Xe)?(g.arraySet(J.window,DA,iA-kA,kA,0),J.wnext=kA,J.whave=J.wsize):(J.wnext+=Xe,J.wnext===J.wsize&&(J.wnext=0),J.whave>>8&255,iA.check=s(iA.check,Un,2,0),JA=0,ce=0,iA.mode=2;break}if(iA.flags=0,iA.head&&(iA.head.done=!1),!(1&iA.wrap)||(((255&JA)<<8)+(JA>>8))%31){aA.msg="incorrect header check",iA.mode=30;break}if(8!=(15&JA)){aA.msg="unknown compression method",iA.mode=30;break}if(ce-=4,tn=8+(15&(JA>>>=4)),0===iA.wbits)iA.wbits=tn;else if(tn>iA.wbits){aA.msg="invalid window size",iA.mode=30;break}iA.dmax=1<>8&1),512&iA.flags&&(Un[0]=255&JA,Un[1]=JA>>>8&255,iA.check=s(iA.check,Un,2,0)),JA=0,ce=0,iA.mode=3;case 3:for(;ce<32;){if(0===te)break A;te--,JA+=kA[J++]<>>8&255,Un[2]=JA>>>16&255,Un[3]=JA>>>24&255,iA.check=s(iA.check,Un,4,0)),JA=0,ce=0,iA.mode=4;case 4:for(;ce<16;){if(0===te)break A;te--,JA+=kA[J++]<>8),512&iA.flags&&(Un[0]=255&JA,Un[1]=JA>>>8&255,iA.check=s(iA.check,Un,2,0)),JA=0,ce=0,iA.mode=5;case 5:if(1024&iA.flags){for(;ce<16;){if(0===te)break A;te--,JA+=kA[J++]<>>8&255,iA.check=s(iA.check,Un,2,0)),JA=0,ce=0}else iA.head&&(iA.head.extra=null);iA.mode=6;case 6:if(1024&iA.flags&&((Ue=iA.length)>te&&(Ue=te),Ue&&(iA.head&&(tn=iA.head.extra_len-iA.length,iA.head.extra||(iA.head.extra=new Array(iA.head.extra_len)),g.arraySet(iA.head.extra,kA,J,Ue,tn)),512&iA.flags&&(iA.check=s(iA.check,kA,Ue,J)),te-=Ue,J+=Ue,iA.length-=Ue),iA.length))break A;iA.length=0,iA.mode=7;case 7:if(2048&iA.flags){if(0===te)break A;Ue=0;do{tn=kA[J+Ue++],iA.head&&tn&&iA.length<65536&&(iA.head.name+=String.fromCharCode(tn))}while(tn&&Ue>9&1,iA.head.done=!0),aA.adler=iA.check=0,iA.mode=_;break;case 10:for(;ce<32;){if(0===te)break A;te--,JA+=kA[J++]<>>=7&ce,ce-=7&ce,iA.mode=27;break}for(;ce<3;){if(0===te)break A;te--,JA+=kA[J++]<>>=1)){case 0:iA.mode=14;break;case 1:if(De(iA),iA.mode=20,6===DA){JA>>>=2,ce-=2;break A}break;case 2:iA.mode=17;break;case 3:aA.msg="invalid block type",iA.mode=30}JA>>>=2,ce-=2;break;case 14:for(JA>>>=7&ce,ce-=7&ce;ce<32;){if(0===te)break A;te--,JA+=kA[J++]<>>16^65535)){aA.msg="invalid stored block lengths",iA.mode=30;break}if(iA.length=65535&JA,JA=0,ce=0,iA.mode=15,6===DA)break A;case 15:iA.mode=16;case 16:if(Ue=iA.length){if(Ue>te&&(Ue=te),Ue>QA&&(Ue=QA),0===Ue)break A;g.arraySet(Xe,kA,J,Ue,$A),te-=Ue,J+=Ue,QA-=Ue,$A+=Ue,iA.length-=Ue;break}iA.mode=_;break;case 17:for(;ce<14;){if(0===te)break A;te--,JA+=kA[J++]<>>=5)),ce-=5,iA.ncode=4+(15&(JA>>>=5)),JA>>>=4,ce-=4,iA.nlen>286||iA.ndist>30){aA.msg="too many length or distance symbols",iA.mode=30;break}iA.have=0,iA.mode=18;case 18:for(;iA.have>>=3,ce-=3}for(;iA.have<19;)iA.lens[Ir[iA.have++]]=0;if(iA.lencode=iA.lendyn,iA.lenbits=7,ar=m(0,iA.lens,0,19,iA.lencode,0,iA.work,In={bits:iA.lenbits}),iA.lenbits=In.bits,ar){aA.msg="invalid code lengths set",iA.mode=30;break}iA.have=0,iA.mode=19;case 19:for(;iA.have>>16&255,Ve=65535&Ie,!((pe=Ie>>>24)<=ce);){if(0===te)break A;te--,JA+=kA[J++]<>>=pe,ce-=pe,iA.lens[iA.have++]=Ve;else{if(16===Ve){for(wn=pe+2;ce>>=pe,ce-=pe,0===iA.have){aA.msg="invalid bit length repeat",iA.mode=30;break}tn=iA.lens[iA.have-1],Ue=3+(3&JA),JA>>>=2,ce-=2}else if(17===Ve){for(wn=pe+3;ce>>=pe)),JA>>>=3,ce-=3}else{for(wn=pe+7;ce>>=pe)),JA>>>=7,ce-=7}if(iA.have+Ue>iA.nlen+iA.ndist){aA.msg="invalid bit length repeat",iA.mode=30;break}for(;Ue--;)iA.lens[iA.have++]=tn}}if(30===iA.mode)break;if(0===iA.lens[256]){aA.msg="invalid code -- missing end-of-block",iA.mode=30;break}if(iA.lenbits=9,ar=m(f,iA.lens,0,iA.nlen,iA.lencode,0,iA.work,In={bits:iA.lenbits}),iA.lenbits=In.bits,ar){aA.msg="invalid literal/lengths set",iA.mode=30;break}if(iA.distbits=6,iA.distcode=iA.distdyn,ar=m(B,iA.lens,iA.nlen,iA.ndist,iA.distcode,0,iA.work,In={bits:iA.distbits}),iA.distbits=In.bits,ar){aA.msg="invalid distances set",iA.mode=30;break}if(iA.mode=20,6===DA)break A;case 20:iA.mode=21;case 21:if(te>=6&&QA>=258){aA.next_out=$A,aA.avail_out=QA,aA.next_in=J,aA.avail_in=te,iA.hold=JA,iA.bits=ce,o(aA,xe),$A=aA.next_out,Xe=aA.output,QA=aA.avail_out,J=aA.next_in,kA=aA.input,te=aA.avail_in,JA=iA.hold,ce=iA.bits,iA.mode===_&&(iA.back=-1);break}for(iA.back=0;ke=(Ie=iA.lencode[JA&(1<>>16&255,Ve=65535&Ie,!((pe=Ie>>>24)<=ce);){if(0===te)break A;te--,JA+=kA[J++]<>Nn)])>>>16&255,Ve=65535&Ie,!(Nn+(pe=Ie>>>24)<=ce);){if(0===te)break A;te--,JA+=kA[J++]<>>=Nn,ce-=Nn,iA.back+=Nn}if(JA>>>=pe,ce-=pe,iA.back+=pe,iA.length=Ve,0===ke){iA.mode=26;break}if(32&ke){iA.back=-1,iA.mode=_;break}if(64&ke){aA.msg="invalid literal/length code",iA.mode=30;break}iA.extra=15&ke,iA.mode=22;case 22:if(iA.extra){for(wn=iA.extra;ce>>=iA.extra,ce-=iA.extra,iA.back+=iA.extra}iA.was=iA.length,iA.mode=23;case 23:for(;ke=(Ie=iA.distcode[JA&(1<>>16&255,Ve=65535&Ie,!((pe=Ie>>>24)<=ce);){if(0===te)break A;te--,JA+=kA[J++]<>Nn)])>>>16&255,Ve=65535&Ie,!(Nn+(pe=Ie>>>24)<=ce);){if(0===te)break A;te--,JA+=kA[J++]<>>=Nn,ce-=Nn,iA.back+=Nn}if(JA>>>=pe,ce-=pe,iA.back+=pe,64&ke){aA.msg="invalid distance code",iA.mode=30;break}iA.offset=Ve,iA.extra=15&ke,iA.mode=24;case 24:if(iA.extra){for(wn=iA.extra;ce>>=iA.extra,ce-=iA.extra,iA.back+=iA.extra}if(iA.offset>iA.dmax){aA.msg="invalid distance too far back",iA.mode=30;break}iA.mode=25;case 25:if(0===QA)break A;if(iA.offset>(Ue=xe-QA)){if((Ue=iA.offset-Ue)>iA.whave&&iA.sane){aA.msg="invalid distance too far back",iA.mode=30;break}Oe=Ue>iA.wnext?iA.wsize-(Ue-=iA.wnext):iA.wnext-Ue,Ue>iA.length&&(Ue=iA.length),tr=iA.window}else tr=Xe,Oe=$A-iA.offset,Ue=iA.length;Ue>QA&&(Ue=QA),QA-=Ue,iA.length-=Ue;do{Xe[$A++]=tr[Oe++]}while(--Ue);0===iA.length&&(iA.mode=21);break;case 26:if(0===QA)break A;Xe[$A++]=iA.length,QA--,iA.mode=21;break;case 27:if(iA.wrap){for(;ce<32;){if(0===te)break A;te--,JA|=kA[J++]<=1&&0===$[b];b--);if(w>b&&(w=b),0===b)return N[Q++]=20971520,N[Q++]=20971520,D.bits=1,0;for(v=1;v0&&(0===n||1!==b))return-1;for(hA[1]=0,y=1;y852||2===n&&fA>592)return 1;for(;;){j=y-oA,X[K]tA?(U=yA[GA+X[K]],rA=O[mA+X[K]]):(U=96,rA=0),CA=1<>oA)+(KA-=CA)]=j<<24|U<<16|rA}while(0!==KA);for(CA=1<>=1;if(0!==CA?(_&=CA-1,_+=CA):_=0,K++,0==--$[y]){if(y===b)break;y=C[P+X[K]]}if(y>w&&(_&NA)!==pA){for(0===oA&&(oA=w),zA+=v,q=1<<(Z=y-oA);Z+oA852||2===n&&fA>592)return 1;N[pA=_&NA]=w<<24|Z<<16|zA-Q}}return 0!==_&&(N[zA+_]=4194304|y-oA<<24),D.bits=w,0}},56228:function(Y){"use strict";Y.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"}},22367:function(Y,A,r){"use strict";var g=r(72519),s=0,o=1;function u(MA){for(var BA=MA.length;--BA>=0;)MA[BA]=0}var f=0,E=29,n=256,C=n+1+E,P=30,M=19,N=2*C+1,Q=15,X=16,D=7,F=256,y=16,K=17,v=18,b=[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],w=[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],Z=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],oA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],fA=new Array(2*(C+2));u(fA);var _=new Array(2*P);u(_);var CA=new Array(512);u(CA);var KA=new Array(256);u(KA);var pA=new Array(E);u(pA);var O,mA,tA,NA=new Array(P);function zA(MA,BA,T,k,aA){this.static_tree=MA,this.extra_bits=BA,this.extra_base=T,this.elems=k,this.max_length=aA,this.has_stree=MA&&MA.length}function $(MA,BA){this.dyn_tree=MA,this.max_code=0,this.stat_desc=BA}function hA(MA){return MA<256?CA[MA]:CA[256+(MA>>>7)]}function yA(MA,BA){MA.pending_buf[MA.pending++]=255&BA,MA.pending_buf[MA.pending++]=BA>>>8&255}function GA(MA,BA,T){MA.bi_valid>X-T?(MA.bi_buf|=BA<>X-MA.bi_valid,MA.bi_valid+=T-X):(MA.bi_buf|=BA<>>=1,T<<=1}while(--BA>0);return T>>>1}function PA(MA,BA,T){var DA,iA,k=new Array(Q+1),aA=0;for(DA=1;DA<=Q;DA++)k[DA]=aA=aA+T[DA-1]<<1;for(iA=0;iA<=BA;iA++){var kA=MA[2*iA+1];0!==kA&&(MA[2*iA]=U(k[kA]++,kA))}}function cA(MA){var BA;for(BA=0;BA8?yA(MA,MA.bi_buf):MA.bi_valid>0&&(MA.pending_buf[MA.pending++]=MA.bi_buf),MA.bi_buf=0,MA.bi_valid=0}function xA(MA,BA,T,k){var aA=2*BA,DA=2*T;return MA[aA]>1;iA>=1;iA--)SA(MA,T,iA);J=DA;do{iA=MA.heap[1],MA.heap[1]=MA.heap[MA.heap_len--],SA(MA,T,1),kA=MA.heap[1],MA.heap[--MA.heap_max]=iA,MA.heap[--MA.heap_max]=kA,T[2*J]=T[2*iA]+T[2*kA],MA.depth[J]=(MA.depth[iA]>=MA.depth[kA]?MA.depth[iA]:MA.depth[kA])+1,T[2*iA+1]=T[2*kA+1]=J,MA.heap[1]=J++,SA(MA,T,1)}while(MA.heap_len>=2);MA.heap[--MA.heap_max]=MA.heap[1],function AA(MA,BA){var J,$A,te,QA,JA,ce,T=BA.dyn_tree,k=BA.max_code,aA=BA.stat_desc.static_tree,DA=BA.stat_desc.has_stree,iA=BA.stat_desc.extra_bits,kA=BA.stat_desc.extra_base,Xe=BA.stat_desc.max_length,Se=0;for(QA=0;QA<=Q;QA++)MA.bl_count[QA]=0;for(T[2*MA.heap[MA.heap_max]+1]=0,J=MA.heap_max+1;JXe&&(QA=Xe,Se++),T[2*$A+1]=QA,!($A>k)&&(MA.bl_count[QA]++,JA=0,$A>=kA&&(JA=iA[$A-kA]),MA.opt_len+=(ce=T[2*$A])*(QA+JA),DA&&(MA.static_len+=ce*(aA[2*$A+1]+JA)));if(0!==Se){do{for(QA=Xe-1;0===MA.bl_count[QA];)QA--;MA.bl_count[QA]--,MA.bl_count[QA+1]+=2,MA.bl_count[Xe]--,Se-=2}while(Se>0);for(QA=Xe;0!==QA;QA--)for($A=MA.bl_count[QA];0!==$A;)!((te=MA.heap[--J])>k)&&(T[2*te+1]!==QA&&(MA.opt_len+=(QA-T[2*te+1])*T[2*te],T[2*te+1]=QA),$A--)}}(MA,BA),PA(T,Xe,MA.bl_count)}function ge(MA,BA,T){var k,DA,aA=-1,iA=BA[1],kA=0,Xe=7,J=4;for(0===iA&&(Xe=138,J=3),BA[2*(T+1)+1]=65535,k=0;k<=T;k++)DA=iA,iA=BA[2*(k+1)+1],!(++kA>=7;k0?(2===MA.strm.data_type&&(MA.strm.data_type=function Me(MA){var T,BA=4093624447;for(T=0;T<=31;T++,BA>>>=1)if(1&BA&&0!==MA.dyn_ltree[2*T])return s;if(0!==MA.dyn_ltree[18]||0!==MA.dyn_ltree[20]||0!==MA.dyn_ltree[26])return o;for(T=32;T=3&&0===MA.bl_tree[2*oA[BA]+1];BA--);return MA.opt_len+=3*(BA+1)+5+5+4,BA}(MA),(DA=MA.static_len+3+7>>>3)<=(aA=MA.opt_len+3+7>>>3)&&(aA=DA)):aA=DA=T+5,T+4<=aA&&-1!==BA?Ce(MA,BA,T,k):4===MA.strategy||DA===aA?(GA(MA,2+(k?1:0),3),EA(MA,fA,_)):(GA(MA,4+(k?1:0),3),function we(MA,BA,T,k){var aA;for(GA(MA,BA-257,5),GA(MA,T-1,5),GA(MA,k-4,4),aA=0;aA>>8&255,MA.pending_buf[MA.d_buf+2*MA.last_lit+1]=255&BA,MA.pending_buf[MA.l_buf+MA.last_lit]=255&T,MA.last_lit++,0===BA?MA.dyn_ltree[2*T]++:(MA.matches++,BA--,MA.dyn_ltree[2*(KA[T]+n+1)]++,MA.dyn_dtree[2*hA(BA)]++),MA.last_lit===MA.lit_bufsize-1},A._tr_align=function me(MA){GA(MA,2,3),j(MA,F,fA),function rA(MA){16===MA.bi_valid?(yA(MA,MA.bi_buf),MA.bi_buf=0,MA.bi_valid=0):MA.bi_valid>=8&&(MA.pending_buf[MA.pending++]=255&MA.bi_buf,MA.bi_buf>>=8,MA.bi_valid-=8)}(MA)}},37468:function(Y){"use strict";Y.exports=function A(){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}},10884:function(Y){"use strict";Y.exports=["Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},9964:function(Y){var r,g,A=Y.exports={};function i(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function o(C){if(r===setTimeout)return setTimeout(C,0);if((r===i||!r)&&setTimeout)return r=setTimeout,setTimeout(C,0);try{return r(C,0)}catch{try{return r.call(null,C,0)}catch{return r.call(this,C,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:i}catch{r=i}try{g="function"==typeof clearTimeout?clearTimeout:s}catch{g=s}}();var B,u=[],f=!1,a=-1;function d(){!f||!B||(f=!1,B.length?u=B.concat(u):a=-1,u.length&&h())}function h(){if(!f){var C=o(d);f=!0;for(var P=u.length;P;){for(B=u,u=[];++a1)for(var M=1;M"===AA?(q(U,"onsgmldeclaration",U.sgmlDecl),U.sgmlDecl="",U.state=w.TEXT):(y(AA)&&(U.state=w.SGML_DECL_QUOTED),U.sgmlDecl+=AA);continue;case w.SGML_DECL_QUOTED:AA===U.q&&(U.state=w.SGML_DECL,U.q=""),U.sgmlDecl+=AA;continue;case w.DOCTYPE:">"===AA?(U.state=w.TEXT,q(U,"ondoctype",U.doctype),U.doctype=!0):(U.doctype+=AA,"["===AA?U.state=w.DOCTYPE_DTD:y(AA)&&(U.state=w.DOCTYPE_QUOTED,U.q=AA));continue;case w.DOCTYPE_QUOTED:U.doctype+=AA,AA===U.q&&(U.q="",U.state=w.DOCTYPE);continue;case w.DOCTYPE_DTD:"]"===AA?(U.doctype+=AA,U.state=w.DOCTYPE):"<"===AA?(U.state=w.OPEN_WAKA,U.startTagPosition=U.position):y(AA)?(U.doctype+=AA,U.state=w.DOCTYPE_DTD_QUOTED,U.q=AA):U.doctype+=AA;continue;case w.DOCTYPE_DTD_QUOTED:U.doctype+=AA,AA===U.q&&(U.state=w.DOCTYPE_DTD,U.q="");continue;case w.COMMENT:"-"===AA?U.state=w.COMMENT_ENDING:U.comment+=AA;continue;case w.COMMENT_ENDING:"-"===AA?(U.state=w.COMMENT_ENDED,U.comment=_(U.opt,U.comment),U.comment&&q(U,"oncomment",U.comment),U.comment=""):(U.comment+="-"+AA,U.state=w.COMMENT);continue;case w.COMMENT_ENDED:">"!==AA?(pA(U,"Malformed comment"),U.comment+="--"+AA,U.state=w.COMMENT):U.state=U.doctype&&!0!==U.doctype?w.DOCTYPE_DTD:w.TEXT;continue;case w.CDATA:"]"===AA?U.state=w.CDATA_ENDING:U.cdata+=AA;continue;case w.CDATA_ENDING:"]"===AA?U.state=w.CDATA_ENDING_2:(U.cdata+="]"+AA,U.state=w.CDATA);continue;case w.CDATA_ENDING_2:">"===AA?(U.cdata&&q(U,"oncdata",U.cdata),q(U,"onclosecdata"),U.cdata="",U.state=w.TEXT):"]"===AA?U.cdata+="]":(U.cdata+="]]"+AA,U.state=w.CDATA);continue;case w.PROC_INST:"?"===AA?U.state=w.PROC_INST_ENDING:F(AA)?U.state=w.PROC_INST_BODY:U.procInstName+=AA;continue;case w.PROC_INST_BODY:if(!U.procInstBody&&F(AA))continue;"?"===AA?U.state=w.PROC_INST_ENDING:U.procInstBody+=AA;continue;case w.PROC_INST_ENDING:">"===AA?(q(U,"onprocessinginstruction",{name:U.procInstName,body:U.procInstBody}),U.procInstName=U.procInstBody="",U.state=w.TEXT):(U.procInstBody+="?"+AA,U.state=w.PROC_INST_BODY);continue;case w.OPEN_TAG:v(Q,AA)?U.tagName+=AA:(NA(U),">"===AA?mA(U):"/"===AA?U.state=w.OPEN_TAG_SLASH:(F(AA)||pA(U,"Invalid character in tag name"),U.state=w.ATTRIB));continue;case w.OPEN_TAG_SLASH:">"===AA?(mA(U,!0),tA(U)):(pA(U,"Forward-slash in opening tag not followed by >"),U.state=w.ATTRIB);continue;case w.ATTRIB:if(F(AA))continue;">"===AA?mA(U):"/"===AA?U.state=w.OPEN_TAG_SLASH:v(N,AA)?(U.attribName=AA,U.attribValue="",U.state=w.ATTRIB_NAME):pA(U,"Invalid attribute name");continue;case w.ATTRIB_NAME:"="===AA?U.state=w.ATTRIB_VALUE:">"===AA?(pA(U,"Attribute without value"),U.attribValue=U.attribName,O(U),mA(U)):F(AA)?U.state=w.ATTRIB_NAME_SAW_WHITE:v(Q,AA)?U.attribName+=AA:pA(U,"Invalid attribute name");continue;case w.ATTRIB_NAME_SAW_WHITE:if("="===AA)U.state=w.ATTRIB_VALUE;else{if(F(AA))continue;pA(U,"Attribute without value"),U.tag.attributes[U.attribName]="",U.attribValue="",q(U,"onattribute",{name:U.attribName,value:""}),U.attribName="",">"===AA?mA(U):v(N,AA)?(U.attribName=AA,U.state=w.ATTRIB_NAME):(pA(U,"Invalid attribute name"),U.state=w.ATTRIB)}continue;case w.ATTRIB_VALUE:if(F(AA))continue;y(AA)?(U.q=AA,U.state=w.ATTRIB_VALUE_QUOTED):(U.opt.unquotedAttributeValues||CA(U,"Unquoted attribute value"),U.state=w.ATTRIB_VALUE_UNQUOTED,U.attribValue=AA);continue;case w.ATTRIB_VALUE_QUOTED:if(AA!==U.q){"&"===AA?U.state=w.ATTRIB_VALUE_ENTITY_Q:U.attribValue+=AA;continue}O(U),U.q="",U.state=w.ATTRIB_VALUE_CLOSED;continue;case w.ATTRIB_VALUE_CLOSED:F(AA)?U.state=w.ATTRIB:">"===AA?mA(U):"/"===AA?U.state=w.OPEN_TAG_SLASH:v(N,AA)?(pA(U,"No whitespace between attributes"),U.attribName=AA,U.attribValue="",U.state=w.ATTRIB_NAME):pA(U,"Invalid attribute name");continue;case w.ATTRIB_VALUE_UNQUOTED:if(!K(AA)){"&"===AA?U.state=w.ATTRIB_VALUE_ENTITY_U:U.attribValue+=AA;continue}O(U),">"===AA?mA(U):U.state=w.ATTRIB;continue;case w.CLOSE_TAG:if(U.tagName)">"===AA?tA(U):v(Q,AA)?U.tagName+=AA:U.script?(U.script+=""===AA?tA(U):pA(U,"Invalid characters in closing tag");continue;case w.TEXT_ENTITY:case w.ATTRIB_VALUE_ENTITY_Q:case w.ATTRIB_VALUE_ENTITY_U:var cA,dA;switch(U.state){case w.TEXT_ENTITY:cA=w.TEXT,dA="textNode";break;case w.ATTRIB_VALUE_ENTITY_Q:cA=w.ATTRIB_VALUE_QUOTED,dA="attribValue";break;case w.ATTRIB_VALUE_ENTITY_U:cA=w.ATTRIB_VALUE_UNQUOTED,dA="attribValue"}if(";"===AA){var vA=$(U);U.opt.unparsedEntities&&!Object.values(i.XML_ENTITIES).includes(vA)?(U.entity="",U.state=cA,U.write(vA)):(U[dA]+=vA,U.entity="",U.state=cA)}else v(U.entity.length?D:X,AA)?U.entity+=AA:(pA(U,"Invalid character in entity name"),U[dA]+="&"+U.entity+AA,U.entity="",U.state=cA);continue;default:throw new Error(U,"Unknown state: "+U.state)}return U.position>=U.bufferCheckPosition&&function m(j){for(var U=Math.max(i.MAX_BUFFER_LENGTH,10),rA=0,AA=0,PA=s.length;AAU)switch(s[AA]){case"textNode":fA(j);break;case"cdata":q(j,"oncdata",j.cdata),j.cdata="";break;case"script":q(j,"onscript",j.script),j.script="";break;default:CA(j,"Max buffer length exceeded: "+s[AA])}rA=Math.max(rA,IA)}j.bufferCheckPosition=i.MAX_BUFFER_LENGTH-rA+j.position}(U),U},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function f(j){fA(j),""!==j.cdata&&(q(j,"oncdata",j.cdata),j.cdata=""),""!==j.script&&(q(j,"onscript",j.script),j.script="")}(this)}};try{B=r(9760).Stream}catch{B=function(){}}B||(B=function(){});var a=i.EVENTS.filter(function(j){return"error"!==j&&"end"!==j});function h(j,U){if(!(this instanceof h))return new h(j,U);B.apply(this),this._parser=new o(j,U),this.writable=!0,this.readable=!0;var rA=this;this._parser.onend=function(){rA.emit("end")},this._parser.onerror=function(AA){rA.emit("error",AA),rA._parser.error=null},this._decoder=null,a.forEach(function(AA){Object.defineProperty(rA,"on"+AA,{get:function(){return rA._parser["on"+AA]},set:function(PA){if(!PA)return rA.removeAllListeners(AA),rA._parser["on"+AA]=PA,PA;rA.on(AA,PA)},enumerable:!0,configurable:!1})})}(h.prototype=Object.create(B.prototype,{constructor:{value:h}})).write=function(j){if("function"==typeof g&&"function"==typeof g.isBuffer&&g.isBuffer(j)){if(!this._decoder){var U=r(43143).I;this._decoder=new U("utf8")}j=this._decoder.write(j)}return this._parser.write(j.toString()),this.emit("data",j),!0},h.prototype.end=function(j){return j&&j.length&&this.write(j),this._parser.end(),!0},h.prototype.on=function(j,U){var rA=this;return!rA._parser["on"+j]&&-1!==a.indexOf(j)&&(rA._parser["on"+j]=function(){var AA=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);AA.splice(0,0,j),rA.emit.apply(rA,AA)}),B.prototype.on.call(rA,j,U)};var E="[CDATA[",n="DOCTYPE",C="http://www.w3.org/XML/1998/namespace",P="http://www.w3.org/2000/xmlns/",M={xml:C,xmlns:P},N=/[:_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]/,Q=/[:_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-]/,X=/[#:_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]/,D=/[#:_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 F(j){return" "===j||"\n"===j||"\r"===j||"\t"===j}function y(j){return'"'===j||"'"===j}function K(j){return">"===j||F(j)}function v(j,U){return j.test(U)}function b(j,U){return!v(j,U)}var j,U,rA,w=0;for(var Z in i.STATE={BEGIN:w++,BEGIN_WHITESPACE:w++,TEXT:w++,TEXT_ENTITY:w++,OPEN_WAKA:w++,SGML_DECL:w++,SGML_DECL_QUOTED:w++,DOCTYPE:w++,DOCTYPE_QUOTED:w++,DOCTYPE_DTD:w++,DOCTYPE_DTD_QUOTED:w++,COMMENT_STARTING:w++,COMMENT:w++,COMMENT_ENDING:w++,COMMENT_ENDED:w++,CDATA:w++,CDATA_ENDING:w++,CDATA_ENDING_2:w++,PROC_INST:w++,PROC_INST_BODY:w++,PROC_INST_ENDING:w++,OPEN_TAG:w++,OPEN_TAG_SLASH:w++,ATTRIB:w++,ATTRIB_NAME:w++,ATTRIB_NAME_SAW_WHITE:w++,ATTRIB_VALUE:w++,ATTRIB_VALUE_QUOTED:w++,ATTRIB_VALUE_CLOSED:w++,ATTRIB_VALUE_UNQUOTED:w++,ATTRIB_VALUE_ENTITY_Q:w++,ATTRIB_VALUE_ENTITY_U:w++,CLOSE_TAG:w++,CLOSE_TAG_SAW_WHITE:w++,SCRIPT:w++,SCRIPT_ENDING:w++},i.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},i.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(i.ENTITIES).forEach(function(j){var U=i.ENTITIES[j],rA="number"==typeof U?String.fromCharCode(U):U;i.ENTITIES[j]=rA}),i.STATE)i.STATE[i.STATE[Z]]=Z;function oA(j,U,rA){j[U]&&j[U](rA)}function q(j,U,rA){j.textNode&&fA(j),oA(j,U,rA)}function fA(j){j.textNode=_(j.opt,j.textNode),j.textNode&&oA(j,"ontext",j.textNode),j.textNode=""}function _(j,U){return j.trim&&(U=U.trim()),j.normalize&&(U=U.replace(/\s+/g," ")),U}function CA(j,U){return fA(j),j.trackPosition&&(U+="\nLine: "+j.line+"\nColumn: "+j.column+"\nChar: "+j.c),U=new Error(U),j.error=U,oA(j,"onerror",U),j}function KA(j){return j.sawRoot&&!j.closedRoot&&pA(j,"Unclosed root tag"),j.state!==w.BEGIN&&j.state!==w.BEGIN_WHITESPACE&&j.state!==w.TEXT&&CA(j,"Unexpected end"),fA(j),j.c="",j.closed=!0,oA(j,"onend"),o.call(j,j.strict,j.opt),j}function pA(j,U){if("object"!=typeof j||!(j instanceof o))throw new Error("bad call to strictFail");j.strict&&CA(j,U)}function NA(j){j.strict||(j.tagName=j.tagName[j.looseCase]());var U=j.tags[j.tags.length-1]||j,rA=j.tag={name:j.tagName,attributes:{}};j.opt.xmlns&&(rA.ns=U.ns),j.attribList.length=0,q(j,"onopentagstart",rA)}function zA(j,U){var AA=j.indexOf(":")<0?["",j]:j.split(":"),PA=AA[0],IA=AA[1];return U&&"xmlns"===j&&(PA="xmlns",IA=""),{prefix:PA,local:IA}}function O(j){if(j.strict||(j.attribName=j.attribName[j.looseCase]()),-1!==j.attribList.indexOf(j.attribName)||j.tag.attributes.hasOwnProperty(j.attribName))j.attribName=j.attribValue="";else{if(j.opt.xmlns){var U=zA(j.attribName,!0),AA=U.local;if("xmlns"===U.prefix)if("xml"===AA&&j.attribValue!==C)pA(j,"xml: prefix must be bound to "+C+"\nActual: "+j.attribValue);else if("xmlns"===AA&&j.attribValue!==P)pA(j,"xmlns: prefix must be bound to "+P+"\nActual: "+j.attribValue);else{var PA=j.tag,IA=j.tags[j.tags.length-1]||j;PA.ns===IA.ns&&(PA.ns=Object.create(IA.ns)),PA.ns[AA]=j.attribValue}j.attribList.push([j.attribName,j.attribValue])}else j.tag.attributes[j.attribName]=j.attribValue,q(j,"onattribute",{name:j.attribName,value:j.attribValue});j.attribName=j.attribValue=""}}function mA(j,U){if(j.opt.xmlns){var rA=j.tag,AA=zA(j.tagName);rA.prefix=AA.prefix,rA.local=AA.local,rA.uri=rA.ns[AA.prefix]||"",rA.prefix&&!rA.uri&&(pA(j,"Unbound namespace prefix: "+JSON.stringify(j.tagName)),rA.uri=AA.prefix),rA.ns&&(j.tags[j.tags.length-1]||j).ns!==rA.ns&&Object.keys(rA.ns).forEach(function(le){q(j,"onopennamespace",{prefix:le,uri:rA.ns[le]})});for(var IA=0,cA=j.attribList.length;IA",j.tagName="",void(j.state=w.SCRIPT);q(j,"onscript",j.script),j.script=""}var U=j.tags.length,rA=j.tagName;j.strict||(rA=rA[j.looseCase]());for(var AA=rA;U--&&j.tags[U].name!==AA;)pA(j,"Unexpected close tag");if(U<0)return pA(j,"Unmatched closing tag: "+j.tagName),j.textNode+="",void(j.state=w.TEXT);j.tagName=rA;for(var IA=j.tags.length;IA-- >U;){var cA=j.tag=j.tags.pop();j.tagName=j.tag.name,q(j,"onclosetag",j.tagName);var dA={};for(var vA in cA.ns)dA[vA]=cA.ns[vA];j.opt.xmlns&&cA.ns!==(j.tags[j.tags.length-1]||j).ns&&Object.keys(cA.ns).forEach(function(SA){q(j,"onclosenamespace",{prefix:SA,uri:cA.ns[SA]})})}0===U&&(j.closedRoot=!0),j.tagName=j.attribValue=j.attribName="",j.attribList.length=0,j.state=w.TEXT}function $(j){var AA,U=j.entity,rA=U.toLowerCase(),PA="";return j.ENTITIES[U]?j.ENTITIES[U]:j.ENTITIES[rA]?j.ENTITIES[rA]:("#"===(U=rA).charAt(0)&&("x"===U.charAt(1)?(U=U.slice(2),PA=(AA=parseInt(U,16)).toString(16)):(U=U.slice(1),PA=(AA=parseInt(U,10)).toString(10))),U=U.replace(/^0+/,""),isNaN(AA)||PA.toLowerCase()!==U?(pA(j,"Invalid character entity"),"&"+j.entity+";"):String.fromCodePoint(AA))}function hA(j,U){"<"===U?(j.state=w.OPEN_WAKA,j.startTagPosition=j.position):F(U)||(pA(j,"Non-whitespace before first tag."),j.textNode=U,j.state=w.TEXT)}function yA(j,U){var rA="";return U1114111||U(SA)!==SA)throw RangeError("Invalid code point: "+SA);SA<=65535?PA.push(SA):PA.push(55296+((SA-=65536)>>10),SA%1024+56320),(dA+1===vA||PA.length>16384)&&(xA+=j.apply(null,PA),PA.length=0)}return xA},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:rA,configurable:!0,writable:!0}):String.fromCodePoint=rA)}(A)},86255:function(Y,A,r){"use strict";var g=r(28651),i=r(89295),s=r(18890)(),o=r(68109),m=r(96785),u=g("%Math.floor%");Y.exports=function(B,a){if("function"!=typeof B)throw new m("`fn` is not a function");if("number"!=typeof a||a<0||a>4294967295||u(a)!==a)throw new m("`length` must be a positive 32-bit integer");var d=arguments.length>2&&!!arguments[2],h=!0,E=!0;if("length"in B&&o){var n=o(B,"length");n&&!n.configurable&&(h=!1),n&&!n.writable&&(E=!1)}return(h||E||!d)&&(s?i(B,"length",a,!0,!0):i(B,"length",a)),B}},95304:function(Y,A,r){"use strict";var g=r(89295),i=r(18890)(),s=r(61084).functionsHaveConfigurableNames(),o=r(96785);Y.exports=function(u,f){if("function"!=typeof u)throw new o("`fn` is not a function");return(!(arguments.length>2&&arguments[2])||s)&&(i?g(u,"name",f,!0,!0):g(u,"name",f)),u}},9760:function(Y,A,r){Y.exports=s;var g=r(64785).EventEmitter;function s(){g.call(this)}r(89784)(s,g),s.Readable=r(88261),s.Writable=r(29781),s.Duplex=r(14903),s.Transform=r(48569),s.PassThrough=r(17723),s.finished=r(12167),s.pipeline=r(43765),s.Stream=s,s.prototype.pipe=function(o,m){var u=this;function f(C){o.writable&&!1===o.write(C)&&u.pause&&u.pause()}function B(){u.readable&&u.resume&&u.resume()}u.on("data",f),o.on("drain",B),!o._isStdio&&(!m||!1!==m.end)&&(u.on("end",d),u.on("close",h));var a=!1;function d(){a||(a=!0,o.end())}function h(){a||(a=!0,"function"==typeof o.destroy&&o.destroy())}function E(C){if(n(),0===g.listenerCount(this,"error"))throw C}function n(){u.removeListener("data",f),o.removeListener("drain",B),u.removeListener("end",d),u.removeListener("close",h),u.removeListener("error",E),o.removeListener("error",E),u.removeListener("end",n),u.removeListener("close",n),o.removeListener("close",n)}return u.on("error",E),o.on("error",E),u.on("end",n),u.on("close",n),o.on("close",n),o.emit("pipe",u),o}},83797:function(Y){"use strict";var r={};function g(u,f,B){B||(B=Error);var d=function(h){function E(n,C,P){return h.call(this,function a(h,E,n){return"string"==typeof f?f:f(h,E,n)}(n,C,P))||this}return function A(u,f){u.prototype=Object.create(f.prototype),u.prototype.constructor=u,u.__proto__=f}(E,h),E}(B);d.prototype.name=B.name,d.prototype.code=u,r[u]=d}function i(u,f){if(Array.isArray(u)){var B=u.length;return u=u.map(function(a){return String(a)}),B>2?"one of ".concat(f," ").concat(u.slice(0,B-1).join(", "),", or ")+u[B-1]:2===B?"one of ".concat(f," ").concat(u[0]," or ").concat(u[1]):"of ".concat(f," ").concat(u[0])}return"of ".concat(f," ").concat(String(u))}g("ERR_INVALID_OPT_VALUE",function(u,f){return'The value "'+f+'" is invalid for option "'+u+'"'},TypeError),g("ERR_INVALID_ARG_TYPE",function(u,f,B){var a,d;if("string"==typeof f&&function s(u,f,B){return u.substr(!B||B<0?0:+B,f.length)===f}(f,"not ")?(a="must not be",f=f.replace(/^not /,"")):a="must be",function o(u,f,B){return(void 0===B||B>u.length)&&(B=u.length),u.substring(B-f.length,B)===f}(u," argument"))d="The ".concat(u," ").concat(a," ").concat(i(f,"type"));else{var h=function m(u,f,B){return"number"!=typeof B&&(B=0),!(B+f.length>u.length)&&-1!==u.indexOf(f,B)}(u,".")?"property":"argument";d='The "'.concat(u,'" ').concat(h," ").concat(a," ").concat(i(f,"type"))}return d+". Received type ".concat(typeof B)},TypeError),g("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),g("ERR_METHOD_NOT_IMPLEMENTED",function(u){return"The "+u+" method is not implemented"}),g("ERR_STREAM_PREMATURE_CLOSE","Premature close"),g("ERR_STREAM_DESTROYED",function(u){return"Cannot call "+u+" after a stream was destroyed"}),g("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),g("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),g("ERR_STREAM_WRITE_AFTER_END","write after end"),g("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),g("ERR_UNKNOWN_ENCODING",function(u){return"Unknown encoding: "+u},TypeError),g("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Y.exports.F=r},14903:function(Y,A,r){"use strict";var g=r(9964),i=Object.keys||function(h){var E=[];for(var n in h)E.push(n);return E};Y.exports=B;var s=r(88261),o=r(29781);r(89784)(B,s);for(var m=i(o.prototype),u=0;u0)if("string"!=typeof dA&&!EA.objectMode&&Object.getPrototypeOf(dA)!==u.prototype&&(dA=function B(cA){return u.from(cA)}(dA)),xA)EA.endEmitted?v(cA,new D):fA(cA,EA,dA,!0);else if(EA.ended)v(cA,new Q);else{if(EA.destroyed)return!1;EA.reading=!1,EA.decoder&&!vA?(dA=EA.decoder.write(dA),EA.objectMode||0!==dA.length?fA(cA,EA,dA,!1):mA(cA,EA)):fA(cA,EA,dA,!1)}else xA||(EA.reading=!1,mA(cA,EA));return!EA.ended&&(EA.lengthdA.highWaterMark&&(dA.highWaterMark=function KA(cA){return cA>=CA?cA=CA:(cA--,cA|=cA>>>1,cA|=cA>>>2,cA|=cA>>>4,cA|=cA>>>8,cA|=cA>>>16,cA++),cA}(cA)),cA<=dA.length?cA:dA.ended?dA.length:(dA.needReadable=!0,0))}function zA(cA){var dA=cA._readableState;h("emitReadable",dA.needReadable,dA.emittedReadable),dA.needReadable=!1,dA.emittedReadable||(h("emitReadable",dA.flowing),dA.emittedReadable=!0,g.nextTick(O,cA))}function O(cA){var dA=cA._readableState;h("emitReadable_",dA.destroyed,dA.length,dA.ended),!dA.destroyed&&(dA.length||dA.ended)&&(cA.emit("readable"),dA.emittedReadable=!1),dA.needReadable=!dA.flowing&&!dA.ended&&dA.length<=dA.highWaterMark,U(cA)}function mA(cA,dA){dA.readingMore||(dA.readingMore=!0,g.nextTick(tA,cA,dA))}function tA(cA,dA){for(;!dA.reading&&!dA.ended&&(dA.length0,dA.resumeScheduled&&!dA.paused?dA.flowing=!0:cA.listenerCount("data")>0&&cA.resume()}function yA(cA){h("readable nexttick read 0"),cA.read(0)}function j(cA,dA){h("resume",dA.reading),dA.reading||cA.read(0),dA.resumeScheduled=!1,cA.emit("resume"),U(cA),dA.flowing&&!dA.reading&&cA.read(0)}function U(cA){var dA=cA._readableState;for(h("flow",dA.flowing);dA.flowing&&null!==cA.read(););}function rA(cA,dA){return 0===dA.length?null:(dA.objectMode?vA=dA.buffer.shift():!cA||cA>=dA.length?(vA=dA.decoder?dA.buffer.join(""):1===dA.buffer.length?dA.buffer.first():dA.buffer.concat(dA.length),dA.buffer.clear()):vA=dA.buffer.consume(cA,dA.decoder),vA);var vA}function AA(cA){var dA=cA._readableState;h("endReadable",dA.endEmitted),dA.endEmitted||(dA.ended=!0,g.nextTick(PA,dA,cA))}function PA(cA,dA){if(h("endReadableNT",cA.endEmitted,cA.length),!cA.endEmitted&&0===cA.length&&(cA.endEmitted=!0,dA.readable=!1,dA.emit("end"),cA.autoDestroy)){var vA=dA._writableState;(!vA||vA.autoDestroy&&vA.finished)&&dA.destroy()}}function IA(cA,dA){for(var vA=0,xA=cA.length;vA=dA.highWaterMark:dA.length>0)||dA.ended))return h("read: emitReadable",dA.length,dA.ended),0===dA.length&&dA.ended?AA(this):zA(this),null;if(0===(cA=pA(cA,dA))&&dA.ended)return 0===dA.length&&AA(this),null;var SA,xA=dA.needReadable;return h("need readable",xA),(0===dA.length||dA.length-cA0?rA(cA,dA):null)?(dA.needReadable=dA.length<=dA.highWaterMark,cA=0):(dA.length-=cA,dA.awaitDrain=0),0===dA.length&&(dA.ended||(dA.needReadable=!0),vA!==cA&&dA.ended&&AA(this)),null!==SA&&this.emit("data",SA),SA},oA.prototype._read=function(cA){v(this,new X("_read()"))},oA.prototype.pipe=function(cA,dA){var vA=this,xA=this._readableState;switch(xA.pipesCount){case 0:xA.pipes=cA;break;case 1:xA.pipes=[xA.pipes,cA];break;default:xA.pipes.push(cA)}xA.pipesCount+=1,h("pipe count=%d opts=%j",xA.pipesCount,dA);var EA=dA&&!1===dA.end||cA===g.stdout||cA===g.stderr?me:ge;function WA(De,Fe){h("onunpipe"),De===vA&&Fe&&!1===Fe.hasUnpiped&&(Fe.hasUnpiped=!0,function we(){h("cleanup"),cA.removeListener("close",_A),cA.removeListener("finish",Ce),cA.removeListener("drain",Be),cA.removeListener("error",HA),cA.removeListener("unpipe",WA),vA.removeListener("end",ge),vA.removeListener("end",me),vA.removeListener("data",Me),le=!0,xA.awaitDrain&&(!cA._writableState||cA._writableState.needDrain)&&Be()}())}function ge(){h("onend"),cA.end()}xA.endEmitted?g.nextTick(EA):vA.once("end",EA),cA.on("unpipe",WA);var Be=function $(cA){return function(){var vA=cA._readableState;h("pipeOnDrain",vA.awaitDrain),vA.awaitDrain&&vA.awaitDrain--,0===vA.awaitDrain&&o(cA,"data")&&(vA.flowing=!0,U(cA))}}(vA);cA.on("drain",Be);var le=!1;function Me(De){h("ondata");var Fe=cA.write(De);h("dest.write",Fe),!1===Fe&&((1===xA.pipesCount&&xA.pipes===cA||xA.pipesCount>1&&-1!==IA(xA.pipes,cA))&&!le&&(h("false write response, pause",xA.awaitDrain),xA.awaitDrain++),vA.pause())}function HA(De){h("onerror",De),me(),cA.removeListener("error",HA),0===o(cA,"error")&&v(cA,De)}function _A(){cA.removeListener("finish",Ce),me()}function Ce(){h("onfinish"),cA.removeListener("close",_A),me()}function me(){h("unpipe"),vA.unpipe(cA)}return vA.on("data",Me),function w(cA,dA,vA){if("function"==typeof cA.prependListener)return cA.prependListener(dA,vA);cA._events&&cA._events[dA]?Array.isArray(cA._events[dA])?cA._events[dA].unshift(vA):cA._events[dA]=[vA,cA._events[dA]]:cA.on(dA,vA)}(cA,"error",HA),cA.once("close",_A),cA.once("finish",Ce),cA.emit("pipe",vA),xA.flowing||(h("pipe resume"),vA.resume()),cA},oA.prototype.unpipe=function(cA){var dA=this._readableState,vA={hasUnpiped:!1};if(0===dA.pipesCount)return this;if(1===dA.pipesCount)return cA&&cA!==dA.pipes||(cA||(cA=dA.pipes),dA.pipes=null,dA.pipesCount=0,dA.flowing=!1,cA&&cA.emit("unpipe",this,vA)),this;if(!cA){var xA=dA.pipes,SA=dA.pipesCount;dA.pipes=null,dA.pipesCount=0,dA.flowing=!1;for(var EA=0;EA0,!1!==xA.flowing&&this.resume()):"readable"===cA&&!xA.endEmitted&&!xA.readableListening&&(xA.readableListening=xA.needReadable=!0,xA.flowing=!1,xA.emittedReadable=!1,h("on readable",xA.length,xA.reading),xA.length?zA(this):xA.reading||g.nextTick(yA,this)),vA},oA.prototype.removeListener=function(cA,dA){var vA=m.prototype.removeListener.call(this,cA,dA);return"readable"===cA&&g.nextTick(hA,this),vA},oA.prototype.removeAllListeners=function(cA){var dA=m.prototype.removeAllListeners.apply(this,arguments);return("readable"===cA||void 0===cA)&&g.nextTick(hA,this),dA},oA.prototype.resume=function(){var cA=this._readableState;return cA.flowing||(h("resume"),cA.flowing=!cA.readableListening,function GA(cA,dA){dA.resumeScheduled||(dA.resumeScheduled=!0,g.nextTick(j,cA,dA))}(this,cA)),cA.paused=!1,this},oA.prototype.pause=function(){return h("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(h("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},oA.prototype.wrap=function(cA){var dA=this,vA=this._readableState,xA=!1;for(var SA in cA.on("end",function(){if(h("wrapped end"),vA.decoder&&!vA.ended){var WA=vA.decoder.end();WA&&WA.length&&dA.push(WA)}dA.push(null)}),cA.on("data",function(WA){h("wrapped data"),vA.decoder&&(WA=vA.decoder.write(WA)),vA.objectMode&&null==WA||!(vA.objectMode||WA&&WA.length)||dA.push(WA)||(xA=!0,cA.pause())}),cA)void 0===this[SA]&&"function"==typeof cA[SA]&&(this[SA]=function(ge){return function(){return cA[ge].apply(cA,arguments)}}(SA));for(var EA=0;EA-1))throw new y(rA);return this._writableState.defaultEncoding=rA,this},Object.defineProperty(Z.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(Z.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Z.prototype._write=function(U,rA,AA){AA(new M("_write()"))},Z.prototype._writev=null,Z.prototype.end=function(U,rA,AA){var PA=this._writableState;return"function"==typeof U?(AA=U,U=null,rA=null):"function"==typeof rA&&(AA=rA,rA=null),null!=U&&this.write(U,rA),PA.corked&&(PA.corked=1,this.uncork()),PA.ending||function GA(U,rA,AA){rA.ending=!0,yA(U,rA),AA&&(rA.finished?g.nextTick(AA):U.once("finish",AA)),rA.ended=!0,U.writable=!1}(this,PA,AA),this},Object.defineProperty(Z.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(Z.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(rA){this._writableState&&(this._writableState.destroyed=rA)}}),Z.prototype.destroy=h.destroy,Z.prototype._undestroy=h.undestroy,Z.prototype._destroy=function(U,rA){rA(U)}},79676:function(Y,A,r){"use strict";var i,g=r(9964);function s(F,y,K){return(y=function o(F){var y=function m(F,y){if("object"!=typeof F||null===F)return F;var K=F[Symbol.toPrimitive];if(void 0!==K){var v=K.call(F,y||"default");if("object"!=typeof v)return v;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===y?String:Number)(F)}(F,"string");return"symbol"==typeof y?y:String(y)}(y))in F?Object.defineProperty(F,y,{value:K,enumerable:!0,configurable:!0,writable:!0}):F[y]=K,F}var u=r(12167),f=Symbol("lastResolve"),B=Symbol("lastReject"),a=Symbol("error"),d=Symbol("ended"),h=Symbol("lastPromise"),E=Symbol("handlePromise"),n=Symbol("stream");function C(F,y){return{value:F,done:y}}function P(F){var y=F[f];if(null!==y){var K=F[n].read();null!==K&&(F[h]=null,F[f]=null,F[B]=null,y(C(K,!1)))}}function M(F){g.nextTick(P,F)}var Q=Object.getPrototypeOf(function(){}),X=Object.setPrototypeOf((s(i={get stream(){return this[n]},next:function(){var y=this,K=this[a];if(null!==K)return Promise.reject(K);if(this[d])return Promise.resolve(C(void 0,!0));if(this[n].destroyed)return new Promise(function(Z,oA){g.nextTick(function(){y[a]?oA(y[a]):Z(C(void 0,!0))})});var b,v=this[h];if(v)b=new Promise(function N(F,y){return function(K,v){F.then(function(){y[d]?K(C(void 0,!0)):y[E](K,v)},v)}}(v,this));else{var w=this[n].read();if(null!==w)return Promise.resolve(C(w,!1));b=new Promise(this[E])}return this[h]=b,b}},Symbol.asyncIterator,function(){return this}),s(i,"return",function(){var y=this;return new Promise(function(K,v){y[n].destroy(null,function(b){b?v(b):K(C(void 0,!0))})})}),i),Q);Y.exports=function(y){var K,v=Object.create(X,(s(K={},n,{value:y,writable:!0}),s(K,f,{value:null,writable:!0}),s(K,B,{value:null,writable:!0}),s(K,a,{value:null,writable:!0}),s(K,d,{value:y._readableState.endEmitted,writable:!0}),s(K,E,{value:function(w,Z){var oA=v[n].read();oA?(v[h]=null,v[f]=null,v[B]=null,w(C(oA,!1))):(v[f]=w,v[B]=Z)},writable:!0}),K));return v[h]=null,u(y,function(b){if(b&&"ERR_STREAM_PREMATURE_CLOSE"!==b.code){var w=v[B];return null!==w&&(v[h]=null,v[f]=null,v[B]=null,w(b)),void(v[a]=b)}var Z=v[f];null!==Z&&(v[h]=null,v[f]=null,v[B]=null,Z(C(void 0,!0))),v[d]=!0}),y.on("readable",M.bind(null,v)),v}},37385:function(Y,A,r){"use strict";var g=r(9964);function s(B,a){u(B,a),o(B)}function o(B){B._writableState&&!B._writableState.emitClose||B._readableState&&!B._readableState.emitClose||B.emit("close")}function u(B,a){B.emit("error",a)}Y.exports={destroy:function i(B,a){var d=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(a?a(B):B&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,g.nextTick(u,this,B)):g.nextTick(u,this,B)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(B||null,function(n){!a&&n?d._writableState?d._writableState.errorEmitted?g.nextTick(o,d):(d._writableState.errorEmitted=!0,g.nextTick(s,d,n)):g.nextTick(s,d,n):a?(g.nextTick(o,d),a(n)):g.nextTick(o,d)}),this)},undestroy:function m(){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 f(B,a){var d=B._readableState,h=B._writableState;d&&d.autoDestroy||h&&h.autoDestroy?B.destroy(a):B.emit("error",a)}}},12167:function(Y,A,r){"use strict";var g=r(83797).F.ERR_STREAM_PREMATURE_CLOSE;function s(){}Y.exports=function m(u,f,B){if("function"==typeof f)return m(u,null,f);f||(f={}),B=function i(u){var f=!1;return function(){if(!f){f=!0;for(var B=arguments.length,a=new Array(B),d=0;d0,function(K){N||(N=K),K&&Q.forEach(a),!F&&(Q.forEach(a),M(N))})});return C.reduce(d)}},68130:function(Y,A,r){"use strict";var g=r(83797).F.ERR_INVALID_OPT_VALUE;Y.exports={getHighWaterMark:function s(o,m,u,f){var B=function i(o,m,u){return null!=o.highWaterMark?o.highWaterMark:m?o[u]:null}(m,f,u);if(null!=B){if(!isFinite(B)||Math.floor(B)!==B||B<0)throw new g(f?u:"highWaterMark",B);return Math.floor(B)}return o.objectMode?16:16384}}},99018:function(Y,A,r){Y.exports=r(64785).EventEmitter},43143:function(Y,A,r){"use strict";var g=r(72361).Buffer,i=g.isEncoding||function(Q){switch((Q=""+Q)&&Q.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 m(Q){var X;switch(this.encoding=function o(Q){var X=function s(Q){if(!Q)return"utf8";for(var X;;)switch(Q){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 Q;default:if(X)return;Q=(""+Q).toLowerCase(),X=!0}}(Q);if("string"!=typeof X&&(g.isEncoding===i||!i(Q)))throw new Error("Unknown encoding: "+Q);return X||Q}(Q),this.encoding){case"utf16le":this.text=E,this.end=n,X=4;break;case"utf8":this.fillLast=a,X=4;break;case"base64":this.text=C,this.end=P,X=3;break;default:return this.write=M,void(this.end=N)}this.lastNeed=0,this.lastTotal=0,this.lastChar=g.allocUnsafe(X)}function u(Q){return Q<=127?0:Q>>5==6?2:Q>>4==14?3:Q>>3==30?4:Q>>6==2?-1:-2}function a(Q){var X=this.lastTotal-this.lastNeed,D=function B(Q,X,D){if(128!=(192&X[0]))return Q.lastNeed=0,"\ufffd";if(Q.lastNeed>1&&X.length>1){if(128!=(192&X[1]))return Q.lastNeed=1,"\ufffd";if(Q.lastNeed>2&&X.length>2&&128!=(192&X[2]))return Q.lastNeed=2,"\ufffd"}}(this,Q);return void 0!==D?D:this.lastNeed<=Q.length?(Q.copy(this.lastChar,X,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(Q.copy(this.lastChar,X,0,Q.length),void(this.lastNeed-=Q.length))}function E(Q,X){if((Q.length-X)%2==0){var D=Q.toString("utf16le",X);if(D){var F=D.charCodeAt(D.length-1);if(F>=55296&&F<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1],D.slice(0,-1)}return D}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=Q[Q.length-1],Q.toString("utf16le",X,Q.length-1)}function n(Q){var X=Q&&Q.length?this.write(Q):"";return this.lastNeed?X+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):X}function C(Q,X){var D=(Q.length-X)%3;return 0===D?Q.toString("base64",X):(this.lastNeed=3-D,this.lastTotal=3,1===D?this.lastChar[0]=Q[Q.length-1]:(this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1]),Q.toString("base64",X,Q.length-D))}function P(Q){var X=Q&&Q.length?this.write(Q):"";return this.lastNeed?X+this.lastChar.toString("base64",0,3-this.lastNeed):X}function M(Q){return Q.toString(this.encoding)}function N(Q){return Q&&Q.length?this.write(Q):""}A.I=m,m.prototype.write=function(Q){if(0===Q.length)return"";var X,D;if(this.lastNeed){if(void 0===(X=this.fillLast(Q)))return"";D=this.lastNeed,this.lastNeed=0}else D=0;return D=0?(y>0&&(Q.lastNeed=y-1),y):--F=0?(y>0&&(Q.lastNeed=y-2),y):--F=0?(y>0&&(2===y?y=0:Q.lastNeed=y-3),y):0}(this,Q,X);if(!this.lastNeed)return Q.toString("utf8",X);this.lastTotal=D;var F=Q.length-(D-this.lastNeed);return Q.copy(this.lastChar,0,F),Q.toString("utf8",X,F)},m.prototype.fillLast=function(Q){if(this.lastNeed<=Q.length)return Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,Q.length),this.lastNeed-=Q.length}},3483:function(Y){var A=0,r=-3;function g(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function i(K,v){this.source=K,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=v,this.destLen=0,this.ltree=new g,this.dtree=new g}var s=new g,o=new g,m=new Uint8Array(30),u=new Uint16Array(30),f=new Uint8Array(30),B=new Uint16Array(30),a=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),d=new g,h=new Uint8Array(320);function E(K,v,b,w){var Z,oA;for(Z=0;Z>>=1,v}function N(K,v,b){if(!v)return b;for(;K.bitcount<24;)K.tag|=K.source[K.sourceIndex++]<>>16-v;return K.tag>>>=v,K.bitcount-=v,w+b}function Q(K,v){for(;K.bitcount<24;)K.tag|=K.source[K.sourceIndex++]<>>=1,++Z,b+=v.table[Z],w-=v.table[Z]}while(w>=0);return K.tag=oA,K.bitcount-=Z,v.trans[b+w]}function X(K,v,b){var w,Z,oA,q,fA,_;for(w=N(K,5,257),Z=N(K,5,1),oA=N(K,4,4),q=0;q<19;++q)h[q]=0;for(q=0;q8;)K.sourceIndex--,K.bitcount-=8;if((v=256*(v=K.source[K.sourceIndex+1])+K.source[K.sourceIndex])!==(65535&~(256*K.source[K.sourceIndex+3]+K.source[K.sourceIndex+2])))return r;for(K.sourceIndex+=4,w=v;w;--w)K.dest[K.destLen++]=K.source[K.sourceIndex++];return K.bitcount=0,A}(function n(K,v){var b;for(b=0;b<7;++b)K.table[b]=0;for(K.table[7]=24,K.table[8]=152,K.table[9]=112,b=0;b<24;++b)K.trans[b]=256+b;for(b=0;b<144;++b)K.trans[24+b]=b;for(b=0;b<8;++b)K.trans[168+b]=280+b;for(b=0;b<112;++b)K.trans[176+b]=144+b;for(b=0;b<5;++b)v.table[b]=0;for(v.table[5]=32,b=0;b<32;++b)v.trans[b]=b})(s,o),E(m,u,4,3),E(f,B,2,1),m[28]=0,u[28]=258,Y.exports=function y(K,v){var w,oA,b=new i(K,v);do{switch(w=M(b),N(b,2,0)){case 0:oA=F(b);break;case 1:oA=D(b,s,o);break;case 2:X(b,b.ltree,b.dtree),oA=D(b,b.ltree,b.dtree);break;default:oA=r}if(oA!==A)throw new Error("Data error")}while(!w);return b.destLen"u")&&(zA.working?zA(EA):EA instanceof ArrayBuffer)}function mA(EA){return"[object DataView]"===B(EA)}function tA(EA){return!(typeof DataView>"u")&&(mA.working?mA(EA):EA instanceof DataView)}A.isArgumentsObject=g,A.isGeneratorFunction=i,A.isTypedArray=o,A.isPromise=function P(EA){return typeof Promise<"u"&&EA instanceof Promise||null!==EA&&"object"==typeof EA&&"function"==typeof EA.then&&"function"==typeof EA.catch},A.isArrayBufferView=function M(EA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(EA):o(EA)||tA(EA)},A.isUint8Array=function N(EA){return"Uint8Array"===s(EA)},A.isUint8ClampedArray=function Q(EA){return"Uint8ClampedArray"===s(EA)},A.isUint16Array=function X(EA){return"Uint16Array"===s(EA)},A.isUint32Array=function D(EA){return"Uint32Array"===s(EA)},A.isInt8Array=function F(EA){return"Int8Array"===s(EA)},A.isInt16Array=function y(EA){return"Int16Array"===s(EA)},A.isInt32Array=function K(EA){return"Int32Array"===s(EA)},A.isFloat32Array=function v(EA){return"Float32Array"===s(EA)},A.isFloat64Array=function b(EA){return"Float64Array"===s(EA)},A.isBigInt64Array=function w(EA){return"BigInt64Array"===s(EA)},A.isBigUint64Array=function Z(EA){return"BigUint64Array"===s(EA)},oA.working=typeof Map<"u"&&oA(new Map),A.isMap=function q(EA){return!(typeof Map>"u")&&(oA.working?oA(EA):EA instanceof Map)},fA.working=typeof Set<"u"&&fA(new Set),A.isSet=function _(EA){return!(typeof Set>"u")&&(fA.working?fA(EA):EA instanceof Set)},CA.working=typeof WeakMap<"u"&&CA(new WeakMap),A.isWeakMap=function KA(EA){return!(typeof WeakMap>"u")&&(CA.working?CA(EA):EA instanceof WeakMap)},pA.working=typeof WeakSet<"u"&&pA(new WeakSet),A.isWeakSet=function NA(EA){return pA(EA)},zA.working=typeof ArrayBuffer<"u"&&zA(new ArrayBuffer),A.isArrayBuffer=O,mA.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&mA(new DataView(new ArrayBuffer(1),0,1)),A.isDataView=tA;var $=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function hA(EA){return"[object SharedArrayBuffer]"===B(EA)}function yA(EA){return!(typeof $>"u")&&(typeof hA.working>"u"&&(hA.working=hA(new $)),hA.working?hA(EA):EA instanceof $)}function PA(EA){return C(EA,a)}function IA(EA){return C(EA,d)}function cA(EA){return C(EA,h)}function dA(EA){return u&&C(EA,E)}function vA(EA){return f&&C(EA,n)}A.isSharedArrayBuffer=yA,A.isAsyncFunction=function GA(EA){return"[object AsyncFunction]"===B(EA)},A.isMapIterator=function j(EA){return"[object Map Iterator]"===B(EA)},A.isSetIterator=function U(EA){return"[object Set Iterator]"===B(EA)},A.isGeneratorObject=function rA(EA){return"[object Generator]"===B(EA)},A.isWebAssemblyCompiledModule=function AA(EA){return"[object WebAssembly.Module]"===B(EA)},A.isNumberObject=PA,A.isStringObject=IA,A.isBooleanObject=cA,A.isBigIntObject=dA,A.isSymbolObject=vA,A.isBoxedPrimitive=function xA(EA){return PA(EA)||IA(EA)||cA(EA)||dA(EA)||vA(EA)},A.isAnyArrayBuffer=function SA(EA){return typeof Uint8Array<"u"&&(O(EA)||yA(EA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(EA){Object.defineProperty(A,EA,{enumerable:!1,value:function(){throw new Error(EA+" is not supported in userland")}})})},7187:function(Y,A,r){var g=r(9964),i=Object.getOwnPropertyDescriptors||function($){for(var hA=Object.keys($),yA={},GA=0;GA=GA)return rA;switch(rA){case"%s":return String(yA[hA++]);case"%d":return Number(yA[hA++]);case"%j":try{return JSON.stringify(yA[hA++])}catch{return"[Circular]"}default:return rA}}),U=yA[hA];hA"u")return function(){return A.deprecate(tA,$).apply(this,arguments)};var hA=!1;return function yA(){if(!hA){if(g.throwDeprecation)throw new Error($);g.traceDeprecation?console.trace($):console.error($),hA=!0}return tA.apply(this,arguments)}};var o={},m=/^$/;if(g.env.NODE_DEBUG){var u=g.env.NODE_DEBUG;u=u.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),m=new RegExp("^"+u+"$","i")}function f(tA,$){var hA={seen:[],stylize:a};return arguments.length>=3&&(hA.depth=arguments[2]),arguments.length>=4&&(hA.colors=arguments[3]),Q($)?hA.showHidden=$:$&&A._extend(hA,$),v(hA.showHidden)&&(hA.showHidden=!1),v(hA.depth)&&(hA.depth=2),v(hA.colors)&&(hA.colors=!1),v(hA.customInspect)&&(hA.customInspect=!0),hA.colors&&(hA.stylize=B),h(hA,tA,hA.depth)}function B(tA,$){var hA=f.styles[$];return hA?"\x1b["+f.colors[hA][0]+"m"+tA+"\x1b["+f.colors[hA][1]+"m":tA}function a(tA,$){return tA}function h(tA,$,hA){if(tA.customInspect&&$&&q($.inspect)&&$.inspect!==A.inspect&&(!$.constructor||$.constructor.prototype!==$)){var yA=$.inspect(hA,tA);return y(yA)||(yA=h(tA,yA,hA)),yA}var GA=function E(tA,$){if(v($))return tA.stylize("undefined","undefined");if(y($)){var hA="'"+JSON.stringify($).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return tA.stylize(hA,"string")}return F($)?tA.stylize(""+$,"number"):Q($)?tA.stylize(""+$,"boolean"):X($)?tA.stylize("null","null"):void 0}(tA,$);if(GA)return GA;var j=Object.keys($),U=function d(tA){var $={};return tA.forEach(function(hA,yA){$[hA]=!0}),$}(j);if(tA.showHidden&&(j=Object.getOwnPropertyNames($)),oA($)&&(j.indexOf("message")>=0||j.indexOf("description")>=0))return n($);if(0===j.length){if(q($))return tA.stylize("[Function"+($.name?": "+$.name:"")+"]","special");if(b($))return tA.stylize(RegExp.prototype.toString.call($),"regexp");if(Z($))return tA.stylize(Date.prototype.toString.call($),"date");if(oA($))return n($)}var dA,AA="",PA=!1,IA=["{","}"];return N($)&&(PA=!0,IA=["[","]"]),q($)&&(AA=" [Function"+($.name?": "+$.name:"")+"]"),b($)&&(AA=" "+RegExp.prototype.toString.call($)),Z($)&&(AA=" "+Date.prototype.toUTCString.call($)),oA($)&&(AA=" "+n($)),0!==j.length||PA&&0!=$.length?hA<0?b($)?tA.stylize(RegExp.prototype.toString.call($),"regexp"):tA.stylize("[Object]","special"):(tA.seen.push($),dA=PA?function C(tA,$,hA,yA,GA){for(var j=[],U=0,rA=$.length;U60?hA[0]+(""===$?"":$+"\n ")+" "+tA.join(",\n ")+" "+hA[1]:hA[0]+$+" "+tA.join(", ")+" "+hA[1]}(dA,AA,IA)):IA[0]+AA+IA[1]}function n(tA){return"["+Error.prototype.toString.call(tA)+"]"}function P(tA,$,hA,yA,GA,j){var U,rA,AA;if((AA=Object.getOwnPropertyDescriptor($,GA)||{value:$[GA]}).get?rA=tA.stylize(AA.set?"[Getter/Setter]":"[Getter]","special"):AA.set&&(rA=tA.stylize("[Setter]","special")),NA(yA,GA)||(U="["+GA+"]"),rA||(tA.seen.indexOf(AA.value)<0?(rA=X(hA)?h(tA,AA.value,null):h(tA,AA.value,hA-1)).indexOf("\n")>-1&&(rA=j?rA.split("\n").map(function(PA){return" "+PA}).join("\n").slice(2):"\n"+rA.split("\n").map(function(PA){return" "+PA}).join("\n")):rA=tA.stylize("[Circular]","special")),v(U)){if(j&&GA.match(/^\d+$/))return rA;(U=JSON.stringify(""+GA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(U=U.slice(1,-1),U=tA.stylize(U,"name")):(U=U.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),U=tA.stylize(U,"string"))}return U+": "+rA}function N(tA){return Array.isArray(tA)}function Q(tA){return"boolean"==typeof tA}function X(tA){return null===tA}function F(tA){return"number"==typeof tA}function y(tA){return"string"==typeof tA}function v(tA){return void 0===tA}function b(tA){return w(tA)&&"[object RegExp]"===_(tA)}function w(tA){return"object"==typeof tA&&null!==tA}function Z(tA){return w(tA)&&"[object Date]"===_(tA)}function oA(tA){return w(tA)&&("[object Error]"===_(tA)||tA instanceof Error)}function q(tA){return"function"==typeof tA}function _(tA){return Object.prototype.toString.call(tA)}function CA(tA){return tA<10?"0"+tA.toString(10):tA.toString(10)}A.debuglog=function(tA){if(tA=tA.toUpperCase(),!o[tA])if(m.test(tA)){var $=g.pid;o[tA]=function(){var hA=A.format.apply(A,arguments);console.error("%s %d: %s",tA,$,hA)}}else o[tA]=function(){};return o[tA]},A.inspect=f,f.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]},f.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},A.types=r(29490),A.isArray=N,A.isBoolean=Q,A.isNull=X,A.isNullOrUndefined=function D(tA){return null==tA},A.isNumber=F,A.isString=y,A.isSymbol=function K(tA){return"symbol"==typeof tA},A.isUndefined=v,A.isRegExp=b,A.types.isRegExp=b,A.isObject=w,A.isDate=Z,A.types.isDate=Z,A.isError=oA,A.types.isNativeError=oA,A.isFunction=q,A.isPrimitive=function fA(tA){return null===tA||"boolean"==typeof tA||"number"==typeof tA||"string"==typeof tA||"symbol"==typeof tA||typeof tA>"u"},A.isBuffer=r(41201);var KA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function NA(tA,$){return Object.prototype.hasOwnProperty.call(tA,$)}A.log=function(){console.log("%s - %s",function pA(){var tA=new Date,$=[CA(tA.getHours()),CA(tA.getMinutes()),CA(tA.getSeconds())].join(":");return[tA.getDate(),KA[tA.getMonth()],$].join(" ")}(),A.format.apply(A,arguments))},A.inherits=r(89784),A._extend=function(tA,$){if(!$||!w($))return tA;for(var hA=Object.keys($),yA=hA.length;yA--;)tA[hA[yA]]=$[hA[yA]];return tA};var zA=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function O(tA,$){if(!tA){var hA=new Error("Promise was rejected with a falsy value");hA.reason=tA,tA=hA}return $(tA)}A.promisify=function($){if("function"!=typeof $)throw new TypeError('The "original" argument must be of type Function');if(zA&&$[zA]){var hA;if("function"!=typeof(hA=$[zA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(hA,zA,{value:hA,enumerable:!1,writable:!1,configurable:!0}),hA}function hA(){for(var yA,GA,j=new Promise(function(AA,PA){yA=AA,GA=PA}),U=[],rA=0;rA"u"?r.g:globalThis,a=i(),d=o("String.prototype.slice"),h=Object.getPrototypeOf,E=o("Array.prototype.indexOf",!0)||function(N,Q){for(var X=0;X-1?Q:"Object"===Q&&function(N){var Q=!1;return g(n,function(X,D){if(!Q)try{X(N),Q=d(D,1)}catch{}}),Q}(N)}return m?function(N){var Q=!1;return g(n,function(X,D){if(!Q)try{"$"+X(N)===D&&(Q=d(D,1))}catch{}}),Q}(N):null}},52242:function(Y,A,r){Y.exports=r(45349)},45349:function(Y,A,r){!function(){var g;if(Y.exports&&!r.g.xmldocAssumeBrowser)g=r(61733);else if(!(g=this.sax))throw new Error("Expected sax to be defined. Make sure you're including sax.js before this file.");function i(X,D){if(!D){var F=f[f.length-1];F.parser&&(D=F.parser)}this.name=X.name,this.attr=X.attributes,this.val="",this.children=[],this.firstChild=null,this.lastChild=null,this.line=D?D.line:null,this.column=D?D.column:null,this.position=D?D.position:null,this.startTagPosition=D?D.startTagPosition:null}function s(X){this.text=X}function o(X){this.cdata=X}function m(X){this.comment=X}function u(X){if(X&&(X=X.toString().trim()),!X)throw new Error("No XML to parse!");this.doctype="",this.parser=g.parser(!0),function B(X){X.onopentag=a,X.onclosetag=d,X.ontext=h,X.oncdata=E,X.oncomment=n,X.ondoctype=C,X.onerror=P}(this.parser),f=[this];try{this.parser.write(X)}finally{delete this.parser}}i.prototype._addChild=function(X){this.children.push(X),this.firstChild||(this.firstChild=X),this.lastChild=X},i.prototype._opentag=function(X){var D=new i(X);this._addChild(D),f.unshift(D)},i.prototype._closetag=function(){f.shift()},i.prototype._text=function(X){typeof this.children>"u"||(this.val+=X,this._addChild(new s(X)))},i.prototype._cdata=function(X){this.val+=X,this._addChild(new o(X))},i.prototype._comment=function(X){typeof this.children>"u"||this._addChild(new m(X))},i.prototype._error=function(X){throw X},i.prototype.eachChild=function(X,D){for(var F=0,y=this.children.length;F1?F.attr[D[1]]:F.val},i.prototype.toString=function(X){return this.toStringWithIndent("",X)},i.prototype.toStringWithIndent=function(X,D){var F=X+"<"+this.name,y=D&&D.compressed?"":"\n";for(var v in this.attr)Object.prototype.hasOwnProperty.call(this.attr,v)&&(F+=" "+v+'="'+N(this.attr[v])+'"');if(1===this.children.length&&"element"!==this.children[0].type)F+=">"+this.children[0].toString(D)+"";else if(this.children.length){F+=">"+y;for(var b=X+(D&&D.compressed?"":" "),w=0,Z=this.children.length;w"}else D&&D.html?-1!==["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].indexOf(this.name)?F+="/>":F+=">":F+="/>";return F},s.prototype.toString=function(X){return Q(N(this.text),X)},s.prototype.toStringWithIndent=function(X,D){return X+this.toString(D)},o.prototype.toString=function(X){return""},o.prototype.toStringWithIndent=function(X,D){return X+this.toString(D)},m.prototype.toString=function(X){return"\x3c!--"+Q(N(this.comment),X)+"--\x3e"},m.prototype.toStringWithIndent=function(X,D){return X+this.toString(D)},i.prototype.type="element",s.prototype.type="text",o.prototype.type="cdata",m.prototype.type="comment",function M(X,D){for(var F in D)D.hasOwnProperty(F)&&(X[F]=D[F])}(u.prototype,i.prototype),u.prototype._opentag=function(X){typeof this.children>"u"?i.call(this,X):i.prototype._opentag.apply(this,arguments)},u.prototype._doctype=function(X){this.doctype+=X};var f=null;function a(){f[0]&&f[0]._opentag.apply(f[0],arguments)}function d(){f[0]&&f[0]._closetag.apply(f[0],arguments)}function h(){f[0]&&f[0]._text.apply(f[0],arguments)}function E(){f[0]&&f[0]._cdata.apply(f[0],arguments)}function n(){f[0]&&f[0]._comment.apply(f[0],arguments)}function C(){f[0]&&f[0]._doctype.apply(f[0],arguments)}function P(){f[0]&&f[0]._error.apply(f[0],arguments)}function N(X){return X.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function Q(X,D){var F=X;return D&&D.trimmed&&X.length>25&&(F=F.substring(0,25).trim()+"\u2026"),D&&D.preserveWhitespace||(F=F.trim()),F}Y.exports&&!r.g.xmldocAssumeBrowser?(Y.exports.XmlDocument=u,Y.exports.XmlElement=i,Y.exports.XmlTextNode=s,Y.exports.XmlCDataNode=o,Y.exports.XmlCommentNode=m):(this.XmlDocument=u,this.XmlElement=i,this.XmlTextNode=s,this.XmlCDataNode=o,this.XmlCommentNode=m)}()},7785:function(Y,A,r){"use strict";typeof window<"u"&&!window.Promise&&r(98168),r(83043);function i(s){this.fs=s,this.resolving={}}i.prototype.resolve=function(s,o){if(!this.resolving[s]){var m=this;this.resolving[s]=new Promise(function(u,f){0===s.toLowerCase().indexOf("https://")||0===s.toLowerCase().indexOf("http://")?m.fs.existsSync(s)?u():function(s,o){return new Promise(function(m,u){var f=new XMLHttpRequest;for(var B in f.open("GET",s,!0),o)f.setRequestHeader(B,o[B]);f.responseType="arraybuffer",f.onreadystatechange=function(){4===f.readyState&&(f.status>=200&&f.status<300||setTimeout(function(){u(new TypeError('Failed to fetch (url: "'+s+'")'))},0))},f.onload=function(){f.status>=200&&f.status<300&&m(f.response)},f.onerror=function(){setTimeout(function(){u(new TypeError('Network request failed (url: "'+s+'")'))},0)},f.ontimeout=function(){setTimeout(function(){u(new TypeError('Network request failed (url: "'+s+'")'))},0)},f.send()})}(s,o).then(function(B){m.fs.writeFileSync(s,B),u()},function(B){f(B)}):u()})}return this.resolving[s]},i.prototype.resolved=function(){var s=this;return new Promise(function(o,m){Promise.all(Object.values(s.resolving)).then(function(){o()},function(u){m(u)})})},Y.exports=i},45314:function(Y,A,r){"use strict";var B,a,d,g=r(50621).Buffer,i=r(91867).isFunction,s=r(91867).isUndefined,o=r(91867).pack,u=r(76036).saveAs,f={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};function h(n,C,P,M){this.docDefinition=n,this.tableLayouts=C||null,this.fonts=P||f,this.vfs=M}h.prototype._createDoc=function(n,C){var P=function(b){return"object"==typeof b?{url:b.url,headers:b.headers}:{url:b,headers:{}}};n=n||{},this.tableLayouts&&(n.tableLayouts=this.tableLayouts);var N=new(r(81566))(this.fonts);if(r(48181).bindFS(this.vfs),!i(C))return N.createPdfKitDocument(this.docDefinition,n);var D=new(r(7785))(r(48181));for(var F in this.fonts)if(this.fonts.hasOwnProperty(F)){if(this.fonts[F].normal)if(Array.isArray(this.fonts[F].normal)){var y=P(this.fonts[F].normal[0]);D.resolve(y.url,y.headers),this.fonts[F].normal[0]=y.url}else y=P(this.fonts[F].normal),D.resolve(y.url,y.headers),this.fonts[F].normal=y.url;this.fonts[F].bold&&(Array.isArray(this.fonts[F].bold)?(y=P(this.fonts[F].bold[0]),D.resolve(y.url,y.headers),this.fonts[F].bold[0]=y.url):(y=P(this.fonts[F].bold),D.resolve(y.url,y.headers),this.fonts[F].bold=y.url)),this.fonts[F].italics&&(Array.isArray(this.fonts[F].italics)?(y=P(this.fonts[F].italics[0]),D.resolve(y.url,y.headers),this.fonts[F].italics[0]=y.url):(y=P(this.fonts[F].italics),D.resolve(y.url,y.headers),this.fonts[F].italics=y.url)),this.fonts[F].bolditalics&&(Array.isArray(this.fonts[F].bolditalics)?(y=P(this.fonts[F].bolditalics[0]),D.resolve(y.url,y.headers),this.fonts[F].bolditalics[0]=y.url):(y=P(this.fonts[F].bolditalics),D.resolve(y.url,y.headers),this.fonts[F].bolditalics=y.url))}if(this.docDefinition.images)for(var K in this.docDefinition.images)this.docDefinition.images.hasOwnProperty(K)&&(y=P(this.docDefinition.images[K]),D.resolve(y.url,y.headers),this.docDefinition.images[K]=y.url);var v=this;D.resolved().then(function(){var b=N.createPdfKitDocument(v.docDefinition,n);C(b)},function(b){throw b})},h.prototype._flushDoc=function(n,C){var M,P=[];n.on("readable",function(){for(var N;null!==(N=n.read(9007199254740991));)P.push(N)}),n.on("end",function(){M=g.concat(P),C(M,n._pdfMakePages)}),n.end()},h.prototype._getPages=function(n,C){if(!C)throw"_getPages is an async method and needs a callback argument";var P=this;this._createDoc(n,function(M){P._flushDoc(M,function(N,Q){C(Q)})})},h.prototype._bufferToBlob=function(n){var C;try{C=new Blob([n],{type:"application/pdf"})}catch(M){if("InvalidStateError"===M.name){var P=new Uint8Array(n);C=new Blob([P.buffer],{type:"application/pdf"})}}if(!C)throw"Could not generate blob";return C},h.prototype._openWindow=function(){var n=window.open("","_blank");if(null===n)throw"Open PDF in new window blocked by browser";return n},h.prototype._openPdf=function(n,C){C||(C=this._openWindow());try{this.getBlob(function(P){var N=(window.URL||window.webkitURL).createObjectURL(P);C.location.href=N},n)}catch(P){throw C.close(),P}},h.prototype.open=function(n,C){(n=n||{}).autoPrint=!1,this._openPdf(n,C=C||null)},h.prototype.print=function(n,C){(n=n||{}).autoPrint=!0,this._openPdf(n,C=C||null)},h.prototype.download=function(n,C,P){i(n)&&(s(C)||(P=C),C=n,n=null),n=n||"file.pdf",this.getBlob(function(M){u(M,n),i(C)&&C()},P)},h.prototype.getBase64=function(n,C){if(!n)throw"getBase64 is an async method and needs a callback argument";this.getBuffer(function(P){n(P.toString("base64"))},C)},h.prototype.getDataUrl=function(n,C){if(!n)throw"getDataUrl is an async method and needs a callback argument";this.getBuffer(function(P){n("data:application/pdf;base64,"+P.toString("base64"))},C)},h.prototype.getBlob=function(n,C){if(!n)throw"getBlob is an async method and needs a callback argument";var P=this;this.getBuffer(function(M){var N=P._bufferToBlob(M);n(N)},C)},h.prototype.getBuffer=function(n,C){if(!n)throw"getBuffer is an async method and needs a callback argument";var P=this;this._createDoc(C,function(M){P._flushDoc(M,function(N){n(N)})})},h.prototype.getStream=function(n,C){if(!i(C))return this._createDoc(n);this._createDoc(n,function(M){C(M)})},Y.exports={createPdf:function(n,C,P,M){if(!function E(){try{var n=new Uint8Array(1),C={foo:function(){return 42}};return Object.setPrototypeOf(C,Uint8Array.prototype),Object.setPrototypeOf(n,C),42===n.foo()}catch{return!1}}())throw"Your browser does not provide the level of support needed";return new h(n,C||d||r.g.pdfMake.tableLayouts,P||a||r.g.pdfMake.fonts,M||B||r.g.pdfMake.vfs)},addVirtualFileSystem:function(n){B=n},addFonts:function(n){a=o(a,n)},setFonts:function(n){a=n},clearFonts:function(){a=void 0},addTableLayouts:function(n){d=o(d,n)},setTableLayouts:function(n){d=n},clearTableLayouts:function(){d=void 0}}},48181:function(Y,A,r){"use strict";var i=r(50621).Buffer;function s(){this.fileSystem={},this.dataSystem={}}function o(m){return 0===m.indexOf("/")&&(m=m.substring(1)),0===m.indexOf("/")&&(m=m.substring(1)),m}s.prototype.existsSync=function(m){return m=o(m),typeof this.fileSystem[m]<"u"||typeof this.dataSystem[m]<"u"},s.prototype.readFileSync=function(m,u){m=o(m);var f=this.dataSystem[m];if("string"==typeof f&&"utf8"===u)return f;if(f)return new i(f,"string"==typeof f?"base64":void 0);var B=this.fileSystem[m];if(B)return B;throw"File '"+m+"' not found in virtual file system"},s.prototype.writeFileSync=function(m,u){this.fileSystem[o(m)]=u},s.prototype.bindFS=function(m){this.dataSystem=m||{}},Y.exports=new s},77530:function(Y,A,r){"use strict";var g=r(91867).isString;function s(u){return"auto"===u.width}function o(u){return null==u.width||"*"===u.width||"star"===u.width}Y.exports={buildColumnWidths:function i(u,f,B=0,a){var d=[],h=0,E=0,n=[],C=0,P=0,M=[],N=f;u.forEach(function(K){s(K)?(d.push(K),h+=K._minWidth,E+=K._maxWidth):o(K)?(n.push(K),C=Math.max(C,K._minWidth),P=Math.max(P,K._maxWidth)):M.push(K)}),M.forEach(function(K,v){if(g(K.width)&&/\d+%/.test(K.width)){var b=0;if(a){var w=a._layout.paddingLeft(v,a),Z=a._layout.paddingRight(v,a),oA=a._layout.vLineWidth(v,a),q=a._layout.vLineWidth(v+1,a);b=0===v?w+Z+oA+q/2:v===M.length-1?w+Z+oA/2+q:w+Z+oA/2+q/2}var fA=N+B;K.width=parseFloat(K.width)*fA/100-b}K._calcWidth=K.width=f)d.forEach(function(K){K._calcWidth=K._minWidth}),n.forEach(function(K){K._calcWidth=C});else{if(X0){var y=f/n.length;n.forEach(function(K){K._calcWidth=y})}}},measureMinMax:function m(u){for(var f={min:0,max:0},B={min:0,max:0},a=0,d=0,h=u.length;d=0;b--){var Z=C.styleStack.styleDictionary[K[b]];for(var oA in Z)Z.hasOwnProperty(oA)&&(v[oA]=Z[oA])}return v}function X(K){return m(K)?K=[K,K,K,K]:f(K)&&2===K.length&&(K=[K[0],K[1],K[0],K[1]]),K}var D=[void 0,void 0,void 0,void 0];if(n.style){var y=Q(f(n.style)?n.style:[n.style]);y&&(D=N(y,D)),y.margin&&(D=X(y.margin))}return D=N(n,D),n.margin&&(D=X(n.margin)),void 0===D[0]&&void 0===D[1]&&void 0===D[2]&&void 0===D[3]?null:D}(),n.columns)return P(C.measureColumns(n));if(n.stack)return P(C.measureVerticalContainer(n));if(n.ul)return P(C.measureUnorderedList(n));if(n.ol)return P(C.measureOrderedList(n));if(n.table)return P(C.measureTable(n));if(void 0!==n.text)return P(C.measureLeaf(n));if(n.toc)return P(C.measureToc(n));if(n.image)return P(C.measureImage(n));if(n.svg)return P(C.measureSVG(n));if(n.canvas)return P(C.measureCanvas(n));if(n.qr)return P(C.measureQr(n));throw"Unrecognized document structure: "+JSON.stringify(n,B)});function P(N){var Q=N._margin;return Q&&(N._minWidth+=Q[0]+Q[2],N._maxWidth+=Q[0]+Q[2]),N}},E.prototype.convertIfBase64Image=function(n){if(/^data:image\/(jpeg|jpg|png);base64,/.test(n.image)){var C="$$pdfmake$$"+this.autoImageIndex++;this.images[C]=n.image,n.image=C}},E.prototype.measureImageWithDimensions=function(n,C){if(n.fit){var P=C.width/C.height>n.fit[0]/n.fit[1]?n.fit[0]/C.width:n.fit[1]/C.height;n._width=n._minWidth=n._maxWidth=C.width*P,n._height=C.height*P}else n.cover?(n._width=n._minWidth=n._maxWidth=n.cover.width,n._height=n._minHeight=n._maxHeight=n.cover.height):(n._width=n._minWidth=n._maxWidth=n.width||C.width,n._height=n.height||C.height*n._width/C.width,m(n.maxWidth)&&n.maxWidthn._width&&(n._width=n._minWidth=n._maxWidth=n.minWidth,n._height=n._width*C.height/C.width),m(n.minHeight)&&n.minHeight>n._height&&(n._height=n.minHeight,n._width=n._minWidth=n._maxWidth=n._height*C.width/C.height));n._alignment=this.styleStack.getProperty("alignment")},E.prototype.measureImage=function(n){this.images&&this.convertIfBase64Image(n);var C=this.imageMeasure.measureImage(n.image);return this.measureImageWithDimensions(n,C),n},E.prototype.measureSVG=function(n){var C=this.svgMeasure.measureSVG(n.svg);return this.measureImageWithDimensions(n,C),n.font=this.styleStack.getProperty("font"),n.svg=this.svgMeasure.writeDimensions(n.svg,{width:n._width,height:n._height}),n},E.prototype.measureLeaf=function(n){n._textRef&&n._textRef._textNodeRef.text&&(n.text=n._textRef._textNodeRef.text);var C=this.styleStack.clone();C.push(n);var P=this.textTools.buildInlines(n.text,C);return n._inlines=P.items,n._minWidth=P.minWidth,n._maxWidth=P.maxWidth,n},E.prototype.measureToc=function(n){if(n.toc.title&&(n.toc.title=this.measureNode(n.toc.title)),n.toc._items.length>0){for(var C=[],P=n.toc.textStyle||{},M=n.toc.numberStyle||P,N=n.toc.textMargin||[0,0,0,0],Q=0,X=n.toc._items.length;Q=26?v((b/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[b%26|0]}(K-1)}function Q(K){if(K<1||K>4999)return K.toString();var Z,v=K,b={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},w="";for(Z in b)for(;v>=b[Z];)w+=Z,v-=b[Z];return w}var D;switch(P){case"none":D=null;break;case"upper-alpha":D=N(n).toUpperCase();break;case"lower-alpha":D=N(n);break;case"upper-roman":D=Q(n);break;case"lower-roman":D=Q(n).toLowerCase();break;default:D=function X(K){return K.toString()}(n)}if(null===D)return{};M&&(f(M)?(M[0]&&(D=M[0]+D),M[1]&&(D+=M[1]),D+=" "):D+=M+" ");var F={text:D},y=C.getProperty("markerColor");return y&&(F.color=y),{_inlines:this.textTools.buildInlines(F,C).items}},E.prototype.measureUnorderedList=function(n){var C=this.styleStack.clone(),P=n.ul;n.type=n.type||"disc",n._gapSize=this.gapSizeForList(),n._minWidth=0,n._maxWidth=0;for(var M=0,N=P.length;M0?C.length-1:0;return n._minWidth=N.min+n._gap*Q,n._maxWidth=N.max+n._gap*Q,n},E.prototype.measureTable=function(n){(function fA(_){if(_.table.widths||(_.table.widths="auto"),o(_.table.widths))for(_.table.widths=[_.table.widths];_.table.widths.length<_.table.body[0].length;)_.table.widths.push(_.table.widths[_.table.widths.length-1]);for(var CA=0,KA=_.table.widths.length;CA1?(oA(D,P,F.colSpan),C.push({col:P,span:F.colSpan,minWidth:F._minWidth,maxWidth:F._maxWidth})):(X._minWidth=Math.max(X._minWidth,F._minWidth),X._maxWidth=Math.max(X._maxWidth,F._maxWidth))),F.rowSpan&&F.rowSpan>1&&q(n.table,M,P,F.rowSpan)}}!function w(){for(var _,CA,KA=0,pA=C.length;KA0)for(_=O/NA.span,CA=0;CA0)for(_=mA/NA.span,CA=0;CAB.page?f:B.page>f.page?B:f.y>B.y?f:B).page,x:a.x,y:a.y,availableHeight:a.availableHeight,availableWidth:a.availableWidth}}(this,f.bottomMost)},s.prototype.markEnding=function(f,B,a){this.page=f._columnEndingContext.page,this.x=f._columnEndingContext.x+B,this.y=f._columnEndingContext.y-a,this.availableWidth=f._columnEndingContext.availableWidth,this.availableHeight=f._columnEndingContext.availableHeight,this.lastColumnWidth=f._columnEndingContext.lastColumnWidth},s.prototype.saveContextInEndingCell=function(f){f._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}},s.prototype.completeColumnGroup=function(f,B){var a=this.snapshots.pop();this.calculateBottomMost(a,B),this.x=a.x;var d=a.bottomMost.y;return f&&(a.page===a.bottomMost.page?a.y+f>d&&(d=a.y+f):d+=f),this.y=d,this.page=a.bottomMost.page,this.availableWidth=a.availableWidth,this.availableHeight=a.bottomMost.availableHeight,f&&(this.availableHeight-=d-a.bottomMost.y),this.lastColumnWidth=a.lastColumnWidth,a.bottomByPage},s.prototype.addMargin=function(f,B){this.x+=f,this.availableWidth-=f+(B||0)},s.prototype.moveDown=function(f){return this.y+=f,this.availableHeight-=f,this.availableHeight>0},s.prototype.initializePage=function(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom;const{pageCtx:f,isSnapshot:B}=this.pageSnapshot();f.availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right,B&&this.marginXTopParent&&(f.availableWidth-=this.marginXTopParent[0],f.availableWidth-=this.marginXTopParent[1])},s.prototype.pageSnapshot=function(){return this.snapshots[0]?{pageCtx:this.snapshots[0],isSnapshot:!0}:{pageCtx:this,isSnapshot:!1}},s.prototype.moveTo=function(f,B){null!=f&&(this.x=f,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=B&&(this.y=B,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)},s.prototype.moveToRelative=function(f,B){null!=f&&(this.x=this.x+f),null!=B&&(this.y=this.y+B)},s.prototype.beginDetachedBlock=function(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,lastColumnWidth:this.lastColumnWidth})},s.prototype.endDetachedBlock=function(){var f=this.snapshots.pop();this.x=f.x,this.y=f.y,this.availableWidth=f.availableWidth,this.availableHeight=f.availableHeight,this.page=f.page,this.lastColumnWidth=f.lastColumnWidth};var m=function(f,B){return(B=function o(f,B){return void 0===f?B:i(f)&&"landscape"===f.toLowerCase()?"landscape":"portrait"}(B,f.pageSize.orientation))!==f.pageSize.orientation?{orientation:B,width:f.pageSize.height,height:f.pageSize.width}:{orientation:f.pageSize.orientation,width:f.pageSize.width,height:f.pageSize.height}};s.prototype.moveToNextPage=function(f){var B=this.page+1,a=this.page,d=this.y;if(this.snapshots.length>0){var h=this.snapshots[this.snapshots.length-1];h.bottomMost&&h.bottomMost.y&&(d=Math.max(this.y,h.bottomMost.y))}var E=B>=this.pages.length;if(E){var n=this.availableWidth,C=this.getCurrentPage().pageSize.orientation,P=m(this.getCurrentPage(),f);this.addPage(P),C===P.orientation&&(this.availableWidth=n)}else this.page=B,this.initializePage();return{newPageCreated:E,prevPage:a,prevY:d,y:this.y}},s.prototype.addPage=function(f){var B={items:[],pageSize:f};return this.pages.push(B),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.tracker.emit("pageAdded"),B},s.prototype.getCurrentPage=function(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]},s.prototype.getCurrentPosition=function(){var f=this.getCurrentPage().pageSize,B=f.height-this.pageMargins.top-this.pageMargins.bottom,a=f.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:f.orientation,pageInnerHeight:B,pageInnerWidth:a,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/B,horizontalRatio:(this.x-this.pageMargins.left)/a}},Y.exports=s},54861:function(Y,A,r){"use strict";var g=r(70770),i=r(91867).isNumber,s=r(91867).pack,o=r(91867).offsetVector,m=r(79178);function u(a,d){this.context=a,this.contextStack=[],this.tracker=d}function f(a,d,h){null==h||h<0||h>a.items.length?a.items.push(d):a.items.splice(h,0,d)}u.prototype.addLine=function(a,d,h){var E=a.getHeight(),n=this.context,C=n.getCurrentPage(),P=this.getCurrentPositionOnPage();return!(n.availableHeight0&&a.inlines[0].alignment,n=0;switch(E){case"right":n=d-h;break;case"center":n=(d-h)/2}if(n&&(a.x=(a.x||0)+n),"justify"===E&&!a.newLineForced&&!a.lastLineInParagraph&&a.inlines.length>1)for(var C=(d-h)/(a.inlines.length-1),P=1,M=a.inlines.length;P0)&&(void 0===a._x&&(a._x=a.x||0),a.x=E.x+a._x,a.y=E.y,this.alignImage(a),f(n,{type:h||"image",item:a},d),E.moveDown(a._height),C)},u.prototype.addSVG=function(a,d){return this.addImage(a,d,"svg")},u.prototype.addQr=function(a,d){var h=this.context,E=h.getCurrentPage(),n=this.getCurrentPositionOnPage();if(!E||void 0===a.absolutePosition&&h.availableHeightn.availableHeight||(a.items.forEach(function(P){switch(P.type){case"line":var M=function B(a){var d=new g(a.maxWidth);for(var h in a)a.hasOwnProperty(h)&&(d[h]=a[h]);return d}(P.item);M._node&&(M._node.positions[0].pageNumber=n.page+1),M.x=(M.x||0)+(d?a.xOffset||0:n.x),M.y=(M.y||0)+(h?a.yOffset||0:n.y),C.items.push({type:"line",item:M});break;case"vector":var N=s(P.item);o(N,d?a.xOffset||0:n.x,h?a.yOffset||0:n.y),N._isFillColorFromUnbreakable?(delete N._isFillColorFromUnbreakable,C.items.splice(n.backgroundLength[n.page],0,{type:"vector",item:N})):C.items.push({type:"vector",item:N});break;case"image":case"svg":var Q=s(P.item);Q.x=(Q.x||0)+(d?a.xOffset||0:n.x),Q.y=(Q.y||0)+(h?a.yOffset||0:n.y),C.items.push({type:P.type,item:Q})}}),E||n.moveDown(a.height),0))},u.prototype.pushContext=function(a,d){void 0===a&&(d=this.context.getCurrentPage().height-this.context.pageMargins.top-this.context.pageMargins.bottom,a=this.context.availableWidth),i(a)&&(a=new m({width:a,height:d},{left:0,right:0,top:0,bottom:0})),this.contextStack.push(this.context),this.context=a},u.prototype.popContext=function(){this.context=this.contextStack.pop()},u.prototype.getCurrentPositionOnPage=function(){return(this.contextStack[0]||this.context).getCurrentPosition()},Y.exports=u},28284:function(Y,A,r){"use strict";var g=r(91867).isArray;function s(o,m){for(var u in this.fonts={},this.pdfKitDoc=m,this.fontCache={},o)if(o.hasOwnProperty(u)){var f=o[u];this.fonts[u]={normal:f.normal,bold:f.bold,italics:f.italics,bolditalics:f.bolditalics}}}s.prototype.getFontType=function(o,m){return function i(o,m){var u="normal";return o&&m?u="bolditalics":o?u="bold":m&&(u="italics"),u}(o,m)},s.prototype.getFontFile=function(o,m,u){var f=this.getFontType(m,u);return this.fonts[o]&&this.fonts[o][f]?this.fonts[o][f]:null},s.prototype.provideFont=function(o,m,u){var f=this.getFontType(m,u);if(null===this.getFontFile(o,m,u))throw new Error("Font '"+o+"' in style '"+f+"' is not defined in the font section of the document definition.");if(this.fontCache[o]=this.fontCache[o]||{},!this.fontCache[o][f]){var B=this.fonts[o][f];g(B)||(B=[B]),this.fontCache[o][f]=this.pdfKitDoc.font.apply(this.pdfKitDoc,B)._font}return this.fontCache[o][f]},Y.exports=s},91867:function(Y){"use strict";function r(C){return"number"==typeof C||C instanceof Number}function i(C){return Array.isArray(C)}Y.exports={isString:function A(C){return"string"==typeof C||C instanceof String},isNumber:r,isBoolean:function g(C){return"boolean"==typeof C},isArray:i,isFunction:function s(C){return"function"==typeof C},isObject:function o(C){return null!==C&&"object"==typeof C},isNull:function m(C){return null===C},isUndefined:function u(C){return void 0===C},isPositiveInteger:function f(C){return!(!r(C)||!Number.isInteger(C)||C<=0)},pack:function B(){for(var C={},P=0,M=arguments.length;P0){var a=f.pages[0];if(a.xOffset=m,a.yOffset=u,B>1)if(void 0!==m||void 0!==u)a.height=f.getCurrentPage().pageSize.height-f.pageMargins.top-f.pageMargins.bottom;else{a.height=this.writer.context.getCurrentPage().pageSize.height-this.writer.context.pageMargins.top-this.writer.context.pageMargins.bottom;for(var d=0,h=this.repeatables.length;dGA.item.y2?GA.item.y1:GA.item.y2:GA.item.h:0}(GA)}var hA=K(mA||40),yA=hA.top;return O.forEach(function(GA){GA.items.forEach(function(j){var U=$(j);U>yA&&(yA=U)})}),yA+=hA.bottom}function y(O,mA){O&&"auto"===O.height&&(O.height=1/0);var $=function b(O){if(d(O)){var mA=o[O.toUpperCase()];if(!mA)throw"Page size "+O+" not recognized";return{width:mA[0],height:mA[1]}}return O}(O||"A4");return function tA(hA){return!!d(hA)&&("portrait"===(hA=hA.toLowerCase())&&$.width>$.height||"landscape"===hA&&$.width<$.height)}(mA)&&($={width:$.height,height:$.width}),$.orientation=$.width>$.height?"landscape":"portrait",$}function K(O){if(h(O))O={left:O,right:O,top:O,bottom:O};else if(n(O))if(2===O.length)O={left:O[0],top:O[1],right:O[0],bottom:O[1]};else{if(4!==O.length)throw"Invalid pageMargins definition";O={left:O[0],top:O[1],right:O[2],bottom:O[3]}}return O}function w(O,mA){O.pageSize.orientation!==(mA.options.size[0]>mA.options.size[1]?"landscape":"portrait")&&(mA.options.size=[mA.options.size[1],mA.options.size[0]])}function oA(O,mA){var tA=O;return mA.sup&&(tA-=.75*mA.fontSize),mA.sub&&(tA+=.35*mA.fontSize),tA}function q(O,mA,tA,$,hA){function yA(SA,EA){var WA,ge,Be=new B(null);if(C(SA.positions))throw"Page reference id not found";var le=SA.positions[0].pageNumber.toString();switch(EA.text=le,WA=Be.widthOfString(EA.text,EA.font,EA.fontSize,EA.characterSpacing,EA.fontFeatures),ge=EA.width-WA,EA.width=WA,EA.alignment){case"right":EA.x+=ge;break;case"center":EA.x+=ge/2}}O._pageNodeRef&&yA(O._pageNodeRef,O.inlines[0]),mA=mA||0,tA=tA||0;var GA=O.getHeight(),U=GA-O.getAscenderHeight();f.drawBackground(O,mA,tA,$,hA);for(var rA=0,AA=O.inlines.length;rA1){var GA=O.points[0],j=O.points[O.points.length-1];(O.closePath||GA.x===j.x&&GA.y===j.y)&&tA.closePath()}break;case"path":tA.path(O.d)}if(O.linearGradient&&$){var U=1/(O.linearGradient.length-1);for(hA=0;hA-1&&(yA=yA.slice(0,GA)),tA.height===1/0){var j=F(yA,O.pageMargins);this.pdfKitDoc.options.size=[tA.width,j]}var U=function zA(O,mA){var tA={};return Object.keys(O).forEach(function($){var hA=O[$];tA[$]=mA.pattern(hA.boundingBox,hA.xStep,hA.yStep,hA.pattern,hA.colored)}),tA}(O.patterns||{},this.pdfKitDoc);if(function Z(O,mA,tA,$,hA){tA._pdfMakePages=O,tA.addPage();var yA=0;hA&&O.forEach(function(IA){yA+=IA.items.length});var GA=0;hA=hA||function(){};for(var j=0;j0&&(w(O[j],tA),tA.addPage(tA.options));for(var U=O[j],rA=0,AA=U.items.length;rA=128?285:0);var M=[[]];for(C=0;C<30;++C){for(var N=M[C],Q=[],X=0;X<=C;++X)Q.push(n[(X6},Z=function(j,U){var rA=-8&function(j){var U=A[j],rA=16*j*j+128*j+64;return v(j)&&(rA-=36),U[2].length&&(rA-=25*U[2].length*U[2].length-10*U[2].length-55),rA}(j),AA=A[j];return rA-8*AA[0][U]*AA[1][U]},oA=function(j,U){switch(U){case g:return j<10?10:j<27?12:14;case i:return j<10?9:j<27?11:13;case s:return j<10?8:16;case 8:return j<10?8:j<27?10:12}},q=function(j,U,rA){var AA=Z(j,rA)-4-oA(j,U);switch(U){case g:return 3*(AA/10|0)+(AA%10<4?0:AA%10<7?1:2);case i:return 2*(AA/11|0)+(AA%11<6?0:1);case s:return AA/8|0;case 8:return AA/13|0}},fA=function(j,U){switch(j){case g:return U.match(m)?U:null;case i:return U.match(u)?U.toUpperCase():null;case s:if("string"==typeof U){for(var rA=[],AA=0;AA>6,128|63&PA):PA<65536?rA.push(224|PA>>12,128|PA>>6&63,128|63&PA):rA.push(240|PA>>18,128|PA>>12&63,128|PA>>6&63,128|63&PA)}return rA}return U}},CA=function(j,U){for(var rA=j.slice(0),AA=j.length,PA=U.length,IA=0;IA=0)for(var dA=0;dA=0;--IA)PA>>AA+IA&1&&(PA^=rA<>cA&1;return j},tA=function(j){for(var IA=function(we){for(var Me=0,HA=0;HA=5&&(Me+=we[HA]-5+3);for(HA=5;HA=4*_A||we[HA+1]>=4*_A)&&(Me+=40)}return Me},cA=j.length,dA=0,vA=0,xA=0;xA=cA){for(PA.push(IA|EA>>(WA-=cA));WA>=8;)PA.push(EA>>(WA-=8)&255);IA=0,cA=8}WA>0&&(IA|=(EA&(1<>3);cA=function(j,U,rA){for(var AA=[],PA=j.length/U|0,IA=0,cA=U-j.length%U,dA=0;dA>Ce&1,PA[Be+_A][le+Ce]=1};for(cA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),cA(rA-8,0,8,9,[256,127,65,93,93,93,65,127]),cA(0,rA-8,9,8,[254,130,186,186,186,130,254,0,0]),IA=9;IA>ge++&1,PA[IA][rA-11+EA]=PA[rA-11+EA][IA]=1}return{matrix:AA,reserved:PA}}(U),vA=dA.matrix,xA=dA.reserved;if(function(j,U,rA){for(var AA=j.length,PA=0,IA=-1,cA=AA-1;cA>=0;cA-=2){6==cA&&--cA;for(var dA=IA<0?AA-1:0,vA=0;vAcA-2;--xA)U[dA][xA]||(j[dA][xA]=rA[PA>>3]>>(7&~PA)&1,++PA);dA+=IA}IA=-IA}}(vA,xA,cA),PA<0){O(vA,xA,0),mA(vA,0,AA,0);var SA=0,EA=tA(vA);for(O(vA,xA,0),PA=1;PA<8;++PA){O(vA,xA,PA),mA(vA,0,AA,PA);var WA=tA(vA);EA>WA&&(EA=WA,SA=PA),O(vA,xA,PA)}PA=SA}return O(vA,xA,PA),mA(vA,0,AA,PA),vA};function yA(j,U){var rA=[],AA=U.background||"#fff",PA=U.foreground||"#000",IA=U.padding||0,cA=function hA(j,U){var rA={numeric:g,alphanumeric:i,octet:s},PA=(U=U||{}).version||-1,IA={L:B,M:a,Q:d,H:h}[(U.eccLevel||"L").toUpperCase()],cA=U.mode?rA[U.mode.toLowerCase()]:-1,dA="mask"in U?U.mask:-1;if(cA<0)cA="string"==typeof j?j.match(m)?g:j.match(f)?i:s:s;else if(cA!=g&&cA!=i&&cA!=s)throw"invalid or unsupported mode";if(null===(j=fA(cA,j)))throw"invalid data format";if(IA<0||IA>3)throw"invalid ECC level";if(PA<0){for(PA=1;PA<=40&&!(j.length<=q(PA,cA,IA));++PA);if(PA>40)throw"too large data for the Qr format"}else if(PA<1||PA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=dA&&(dA<0||dA>8))throw"invalid mask";return $(j,PA,cA,IA,dA)}(j,U),dA=cA.length,vA=Math.floor(U.fit?U.fit/dA:5),xA=dA*vA+vA*IA*2,SA=vA*IA;rA.push({type:"rect",x:0,y:0,w:xA,h:xA,lineWidth:0,color:AA});for(var EA=0;EA0;)this.styleOverrides.pop()},m.prototype.autopush=function(u){if(g(u))return 0;var f=[];u.style&&(f=i(u.style)?u.style:[u.style]);for(var B=0,a=f.length;B0&&this.pop(B),a},m.prototype.getProperty=function(u){if(this.styleOverrides)for(var f=this.styleOverrides.length-1;f>=0;f--){var B=this.styleOverrides[f];if(g(B)){var a=this.styleDictionary[B];if(a&&!s(a[u])&&!o(a[u]))return a[u]}else if(!s(B[u])&&!o(B[u]))return B[u]}return this.defaultStyle&&this.defaultStyle[u]},Y.exports=m},89638:function(Y,A,r){"use strict";var g=r(52242);function i(m){var u=parseFloat(m);if("number"==typeof u&&!isNaN(u))return u}function s(m){var u;try{u=new g.XmlDocument(m)}catch(f){throw new Error("SVGMeasure: "+f)}if("svg"!==u.name)throw new Error("SVGMeasure: expected document");return u}function o(){}o.prototype.measureSVG=function(m){var u=s(m),f=i(u.attr.width),B=i(u.attr.height);if((null==f||null==B)&&"string"==typeof u.attr.viewBox){var a=u.attr.viewBox.split(/[,\s]+/);if(4!==a.length)throw new Error("Unexpected svg viewbox format, should have 4 entries but found: '"+u.attr.viewBox+"'");null==f&&(f=i(a[2])),null==B&&(B=i(a[3]))}return{width:f,height:B}},o.prototype.writeDimensions=function(m,u){var f=s(m);return f.attr.width=""+u.width,f.attr.height=""+u.height,f.toString()},Y.exports=o},89836:function(Y,A,r){"use strict";var g=r(77530),i=r(91867).isFunction,s=r(91867).isNumber,o=r(91867).isPositiveInteger;function m(u){this.tableNode=u}m.prototype.beginTable=function(u){var f,B,a=this;this.offsets=(f=this.tableNode)._offsets,this.layout=f._layout,B=u.context().availableWidth-this.offsets.total,g.buildColumnWidths(f.table.widths,B,this.offsets.total,f),this.tableWidth=f._offsets.total+function h(){var C=0;return f.table.widths.forEach(function(P){C+=P._calcWidth}),C}(),this.rowSpanData=function E(){var C=[],P=0,M=0;C.push({left:0,rowSpan:0});for(var N=0,Q=a.tableNode.table.body[0].length;Nf.table.body.length)throw new Error(`Too few rows in the table. Property headerRows requires at least ${this.headerRows}, contains only ${f.table.body.length}`);this.rowsWithoutPageBreak=this.headerRows;const C=f.table.keepWithHeaderRows;o(C)&&(this.rowsWithoutPageBreak+=C)}this.dontBreakRows=f.table.dontBreakRows||!1,(this.rowsWithoutPageBreak||this.dontBreakRows)&&(u.beginUnbreakableBlock(),this.drawHorizontalLine(0,u),this.rowsWithoutPageBreak&&this.dontBreakRows&&u.beginUnbreakableBlock()),function n(C){for(var P=0;P0&&K(P+F,N,0,Q.border[0]),void 0!==Q.border[2]&&K(P+F,N+D-1,2,Q.border[2]);for(var y=0;y0&&K(P,N+y,1,Q.border[1]),void 0!==Q.border[3]&&K(P+X-1,N+y,3,Q.border[3])}}function K(v,b,w,Z){var oA=C[v][b];oA.border=oA.border||{},oA.border[w]=Z}}(this.tableNode.table.body)},m.prototype.onRowBreak=function(u,f){var B=this;return function(){var a=B.rowPaddingTop+(B.headerRows?0:B.topLineWidth);f.context().availableHeight-=B.reservedAtBottom,f.context().moveDown(a)}},m.prototype.beginRow=function(u,f){this.topLineWidth=this.layout.hLineWidth(u,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(u,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(u+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(u,this.tableNode),this.rowCallback=this.onRowBreak(u,f),f.tracker.startTracking("pageChanged",this.rowCallback),0==u&&!this.dontBreakRows&&!this.rowsWithoutPageBreak&&(this._tableTopBorderY=f.context().y,f.context().moveDown(this.topLineWidth)),this.dontBreakRows&&u>0&&f.beginUnbreakableBlock(),this.rowTopY=f.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,f.context().availableHeight-=this.reservedAtBottom,f.context().moveDown(this.rowPaddingTop)},m.prototype.drawHorizontalLine=function(u,f,B,a=!0,d){var h=this.layout.hLineWidth(u,this.tableNode);if(h){var n,E=this.layout.hLineStyle(u,this.tableNode);E&&E.dash&&(n=E.dash);for(var N,Q,X,C=h/2,P=null,M=this.tableNode.table.body,D=0,F=this.rowSpanData.length;D0&&(w=(N=M[u-1][D]).border?N.border[3]:this.layout.defaultBorder)&&N.borderColor&&(v=N.borderColor[3]),uoA;)P.width+=this.rowSpanData[D+oA++].width||0;D+=oA-1}else if(N&&N.colSpan&&w){for(;N.colSpan>oA;)P.width+=this.rowSpanData[D+oA++].width||0;D+=oA-1}else if(Q&&Q.colSpan&&b){for(;Q.colSpan>oA;)P.width+=this.rowSpanData[D+oA++].width||0;D+=oA-1}else P.width+=this.rowSpanData[D].width||0}var q=(B||0)+C;K&&P&&P.width&&(f.addVector({type:"line",x1:P.left,x2:P.left+P.width,y1:q,y2:q,lineWidth:h,dash:n,lineColor:v},!1,s(B),null,d),P=null,v=null,N=null,Q=null,X=null)}a&&f.context().moveDown(h)}},m.prototype.drawVerticalLine=function(u,f,B,a,d,h,E){var n=this.layout.vLineWidth(a,this.tableNode);if(0!==n){var P,C=this.layout.vLineStyle(a,this.tableNode);C&&C.dash&&(P=C.dash);var N,Q,X,M=this.tableNode.table.body;if(a>0&&(N=M[h][E])&&N.borderColor&&(N.border?N.border[2]:this.layout.defaultBorder)&&(X=N.borderColor[2]),null==X&&a0&&PA--}return AA.push({x:h.rowSpanData[h.rowSpanData.length-1].left,index:h.rowSpanData.length-1}),AA}(),P=[],M=B&&B.length>0,N=this.tableNode.table.body;if(P.push({y0:this.rowTopY,page:M?B[0].prevPage:E}),M)for(d=0,a=B.length;d0&&(D=B[0].prevPage),this.drawHorizontalLine(0,f,this._tableTopBorderY,!1,D)}for(var F=X?1:0,y=P.length;F0&&!this.headerRows,b=v?0:this.topLineWidth,w=P[F].y0,Z=P[F].y1;for(K&&(Z+=this.rowPaddingBottom),f.context().page!=P[F].page&&(f.context().page=P[F].page,this.reservedAtBottom=0),K&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(u+1,f,Z),v&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(u,f,w),d=0,a=C.length;d0&&!oA&&(oA=(_=N[u][fA-1]).border?_.border[2]:this.layout.defaultBorder),fA+11)for(var U=1;U1)for(U=1;U0&&this.rowSpanData[d].rowSpan--}this.drawHorizontalLine(u+1,f),this.headerRows&&u===this.headerRows-1&&(this.headerRepeatable=f.currentBlockToRepeatable()),this.dontBreakRows&&f.tracker.auto("pageChanged",function(){u>0&&!h.headerRows&&!1!==h.layout.hLineWhenBroken&&h.drawHorizontalLine(u,f)},function(){f.commitUnbreakableBlock()}),this.headerRepeatable&&(u===this.rowsWithoutPageBreak-1||u===this.tableNode.table.body.length-1)&&(f.commitUnbreakableBlock(),f.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)},Y.exports=m},84786:function(Y,A,r){"use strict";var g=r(91867).isArray,i=r(91867).isPattern,s=r(91867).getPattern;function m(B,a,d,h){var C=B.inlines[0],P=function E(){for(var pA=0,NA=0,zA=B.inlines.length;NApA?NA:pA;return B.inlines[pA]}(),M=function n(){for(var pA=0,NA=0,zA=B.inlines.length;NA=0&&i.splice(s,1)}},A.prototype.emit=function(r){var g=Array.prototype.slice.call(arguments,1),i=this.events[r];i&&i.forEach(function(s){s.apply(this,g)})},A.prototype.auto=function(r,g,i){this.startTracking(r,g),i(),this.stopTracking(r,g)},Y.exports=A},76036:function(Y,A,r){var g,s;void 0!==(s="function"==typeof(g=function(){"use strict";function m(h,E,n){var C=new XMLHttpRequest;C.open("GET",h),C.responseType="blob",C.onload=function(){d(C.response,E,n)},C.onerror=function(){console.error("could not download file")},C.send()}function u(h){var E=new XMLHttpRequest;E.open("HEAD",h,!1);try{E.send()}catch{}return 200<=E.status&&299>=E.status}function f(h){try{h.dispatchEvent(new MouseEvent("click"))}catch{var E=document.createEvent("MouseEvents");E.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),h.dispatchEvent(E)}}var B="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof r.g&&r.g.global===r.g?r.g:void 0,a=B.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),d=B.saveAs||("object"!=typeof window||window!==B?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!a?function(h,E,n){var C=B.URL||B.webkitURL,P=document.createElement("a");P.download=E=E||h.name||"download",P.rel="noopener","string"==typeof h?(P.href=h,P.origin===location.origin?f(P):u(P.href)?m(h,E,n):f(P,P.target="_blank")):(P.href=C.createObjectURL(h),setTimeout(function(){C.revokeObjectURL(P.href)},4e4),setTimeout(function(){f(P)},0))}:"msSaveOrOpenBlob"in navigator?function(h,E,n){if(E=E||h.name||"download","string"!=typeof h)navigator.msSaveOrOpenBlob(function o(h,E){return typeof E>"u"?E={autoBom:!1}:"object"!=typeof E&&(console.warn("Deprecated: Expected third argument to be a object"),E={autoBom:!E}),E.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(h.type)?new Blob(["\ufeff",h],{type:h.type}):h}(h,n),E);else if(u(h))m(h,E,n);else{var C=document.createElement("a");C.href=h,C.target="_blank",setTimeout(function(){f(C)})}}:function(h,E,n,C){if((C=C||open("","_blank"))&&(C.document.title=C.document.body.innerText="downloading..."),"string"==typeof h)return m(h,E,n);var P="application/octet-stream"===h.type,M=/constructor/i.test(B.HTMLElement)||B.safari,N=/CriOS\/[\d]+/.test(navigator.userAgent);if((N||P&&M||a)&&typeof FileReader<"u"){var Q=new FileReader;Q.onloadend=function(){var F=Q.result;F=N?F:F.replace(/^data:[^;]*;/,"data:attachment/file;"),C?C.location.href=F:location=F,C=null},Q.readAsDataURL(h)}else{var X=B.URL||B.webkitURL,D=X.createObjectURL(h);C?C.location=D:location.href=D,C=null,setTimeout(function(){X.revokeObjectURL(D)},4e4)}});B.saveAs=d.saveAs=d,Y.exports=d})?g.apply(A,[]):g)&&(Y.exports=s)},60421:function(Y,A,r){"use strict";var i,g=r(50621).Buffer;function s(nA,R){for(var V=0;V=nA.length?{done:!0}:{done:!1,value:nA[p++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function h(nA,R){(null==R||R>nA.length)&&(R=nA.length);for(var V=0,p=Array(R);V0?sA[0]:"value";if(eA.has(jA))return eA.get(jA);var se=x.apply(this,sA);return eA.set(jA,se),se}return Object.defineProperty(this,R,{value:lA}),lA}}}}K.registerFormat=function(nA){v.push(nA)},K.openSync=function(nA,R){var V=y.readFileSync(nA);return K.create(V,R)},K.open=function(nA,R,V){"function"==typeof R&&(V=R,R=null),y.readFile(nA,function(p,x){if(p)return V(p);try{var S=K.create(x,R)}catch(eA){return V(eA)}return V(null,S)})},K.create=function(nA,R){for(var V=0;V>1},searchRange:n.uint16,entrySelector:n.uint16,rangeShift:n.uint16,endCode:new n.LazyArray(n.uint16,"segCount"),reservedPad:new n.Reserved(n.uint16),startCode:new n.LazyArray(n.uint16,"segCount"),idDelta:new n.LazyArray(n.int16,"segCount"),idRangeOffset:new n.LazyArray(n.uint16,"segCount"),glyphIndexArray:new n.LazyArray(n.uint16,function(nA){return(nA.length-nA._currentOffset)/2})},6:{length:n.uint16,language:n.uint16,firstCode:n.uint16,entryCount:n.uint16,glyphIndices:new n.LazyArray(n.uint16,"entryCount")},8:{reserved:new n.Reserved(n.uint16),length:n.uint32,language:n.uint16,is32:new n.LazyArray(n.uint8,8192),nGroups:n.uint32,groups:new n.LazyArray(q,"nGroups")},10:{reserved:new n.Reserved(n.uint16),length:n.uint32,language:n.uint32,firstCode:n.uint32,entryCount:n.uint32,glyphIndices:new n.LazyArray(n.uint16,"numChars")},12:{reserved:new n.Reserved(n.uint16),length:n.uint32,language:n.uint32,nGroups:n.uint32,groups:new n.LazyArray(q,"nGroups")},13:{reserved:new n.Reserved(n.uint16),length:n.uint32,language:n.uint32,nGroups:n.uint32,groups:new n.LazyArray(q,"nGroups")},14:{length:n.uint32,numRecords:n.uint32,varSelectors:new n.LazyArray(pA,"numRecords")}}),zA=new n.Struct({platformID:n.uint16,encodingID:n.uint16,table:new n.Pointer(n.uint32,NA,{type:"parent",lazy:!0})}),O=new n.Struct({version:n.uint16,numSubtables:n.uint16,tables:new n.Array(zA,"numSubtables")}),mA=new n.Struct({version:n.int32,revision:n.int32,checkSumAdjustment:n.uint32,magicNumber:n.uint32,flags:n.uint16,unitsPerEm:n.uint16,created:new n.Array(n.int32,2),modified:new n.Array(n.int32,2),xMin:n.int16,yMin:n.int16,xMax:n.int16,yMax:n.int16,macStyle:new n.Bitfield(n.uint16,["bold","italic","underline","outline","shadow","condensed","extended"]),lowestRecPPEM:n.uint16,fontDirectionHint:n.int16,indexToLocFormat:n.int16,glyphDataFormat:n.int16}),tA=new n.Struct({version:n.int32,ascent:n.int16,descent:n.int16,lineGap:n.int16,advanceWidthMax:n.uint16,minLeftSideBearing:n.int16,minRightSideBearing:n.int16,xMaxExtent:n.int16,caretSlopeRise:n.int16,caretSlopeRun:n.int16,caretOffset:n.int16,reserved:new n.Reserved(n.int16,4),metricDataFormat:n.int16,numberOfMetrics:n.uint16}),$=new n.Struct({advance:n.uint16,bearing:n.int16}),hA=new n.Struct({metrics:new n.LazyArray($,function(nA){return nA.parent.hhea.numberOfMetrics}),bearings:new n.LazyArray(n.int16,function(nA){return nA.parent.maxp.numGlyphs-nA.parent.hhea.numberOfMetrics})}),yA=new n.Struct({version:n.int32,numGlyphs:n.uint16,maxPoints:n.uint16,maxContours:n.uint16,maxComponentPoints:n.uint16,maxComponentContours:n.uint16,maxZones:n.uint16,maxTwilightPoints:n.uint16,maxStorage:n.uint16,maxFunctionDefs:n.uint16,maxInstructionDefs:n.uint16,maxStackElements:n.uint16,maxSizeOfInstructions:n.uint16,maxComponentElements:n.uint16,maxComponentDepth:n.uint16});function GA(nA,R,V){return void 0===V&&(V=0),1===nA&&U[V]?U[V]:j[nA][R]}var j=[["utf16be","utf16be","utf16be","utf16be","utf16be","utf16be"],["macroman","shift-jis","big5","euc-kr","iso-8859-6","iso-8859-8","macgreek","maccyrillic","symbol","Devanagari","Gurmukhi","Gujarati","Oriya","Bengali","Tamil","Telugu","Kannada","Malayalam","Sinhalese","Burmese","Khmer","macthai","Laotian","Georgian","Armenian","gb-2312-80","Tibetan","Mongolian","Geez","maccenteuro","Vietnamese","Sindhi"],["ascii"],["symbol","utf16be","shift-jis","gb18030","big5","wansung","johab",null,null,null,"utf16be"]],U={15:"maciceland",17:"macturkish",18:"maccroatian",24:"maccenteuro",25:"maccenteuro",26:"maccenteuro",27:"maccenteuro",28:"maccenteuro",30:"maciceland",37:"macromania",38:"maccenteuro",39:"maccenteuro",40:"maccenteuro",143:"macinuit",146:"macgaelic"},rA=[[],{0:"en",30:"fo",60:"ks",90:"rw",1:"fr",31:"fa",61:"ku",91:"rn",2:"de",32:"ru",62:"sd",92:"ny",3:"it",33:"zh",63:"bo",93:"mg",4:"nl",34:"nl-BE",64:"ne",94:"eo",5:"sv",35:"ga",65:"sa",128:"cy",6:"es",36:"sq",66:"mr",129:"eu",7:"da",37:"ro",67:"bn",130:"ca",8:"pt",38:"cz",68:"as",131:"la",9:"no",39:"sk",69:"gu",132:"qu",10:"he",40:"si",70:"pa",133:"gn",11:"ja",41:"yi",71:"or",134:"ay",12:"ar",42:"sr",72:"ml",135:"tt",13:"fi",43:"mk",73:"kn",136:"ug",14:"el",44:"bg",74:"ta",137:"dz",15:"is",45:"uk",75:"te",138:"jv",16:"mt",46:"be",76:"si",139:"su",17:"tr",47:"uz",77:"my",140:"gl",18:"hr",48:"kk",78:"km",141:"af",19:"zh-Hant",49:"az-Cyrl",79:"lo",142:"br",20:"ur",50:"az-Arab",80:"vi",143:"iu",21:"hi",51:"hy",81:"id",144:"gd",22:"th",52:"ka",82:"tl",145:"gv",23:"ko",53:"mo",83:"ms",146:"ga",24:"lt",54:"ky",84:"ms-Arab",147:"to",25:"pl",55:"tg",85:"am",148:"el-polyton",26:"hu",56:"tk",86:"ti",149:"kl",27:"es",57:"mn-CN",87:"om",150:"az",28:"lv",58:"mn",88:"so",151:"nn",29:"se",59:"ps",89:"sw"},[],{1078:"af",16393:"en-IN",1159:"rw",1074:"tn",1052:"sq",6153:"en-IE",1089:"sw",1115:"si",1156:"gsw",8201:"en-JM",1111:"kok",1051:"sk",1118:"am",17417:"en-MY",1042:"ko",1060:"sl",5121:"ar-DZ",5129:"en-NZ",1088:"ky",11274:"es-AR",15361:"ar-BH",13321:"en-PH",1108:"lo",16394:"es-BO",3073:"ar",18441:"en-SG",1062:"lv",13322:"es-CL",2049:"ar-IQ",7177:"en-ZA",1063:"lt",9226:"es-CO",11265:"ar-JO",11273:"en-TT",2094:"dsb",5130:"es-CR",13313:"ar-KW",2057:"en-GB",1134:"lb",7178:"es-DO",12289:"ar-LB",1033:"en",1071:"mk",12298:"es-EC",4097:"ar-LY",12297:"en-ZW",2110:"ms-BN",17418:"es-SV",6145:"ary",1061:"et",1086:"ms",4106:"es-GT",8193:"ar-OM",1080:"fo",1100:"ml",18442:"es-HN",16385:"ar-QA",1124:"fil",1082:"mt",2058:"es-MX",1025:"ar-SA",1035:"fi",1153:"mi",19466:"es-NI",10241:"ar-SY",2060:"fr-BE",1146:"arn",6154:"es-PA",7169:"aeb",3084:"fr-CA",1102:"mr",15370:"es-PY",14337:"ar-AE",1036:"fr",1148:"moh",10250:"es-PE",9217:"ar-YE",5132:"fr-LU",1104:"mn",20490:"es-PR",1067:"hy",6156:"fr-MC",2128:"mn-CN",3082:"es",1101:"as",4108:"fr-CH",1121:"ne",1034:"es",2092:"az-Cyrl",1122:"fy",1044:"nb",21514:"es-US",1068:"az",1110:"gl",2068:"nn",14346:"es-UY",1133:"ba",1079:"ka",1154:"oc",8202:"es-VE",1069:"eu",3079:"de-AT",1096:"or",2077:"sv-FI",1059:"be",1031:"de",1123:"ps",1053:"sv",2117:"bn",5127:"de-LI",1045:"pl",1114:"syr",1093:"bn-IN",4103:"de-LU",1046:"pt",1064:"tg",8218:"bs-Cyrl",2055:"de-CH",2070:"pt-PT",2143:"tzm",5146:"bs",1032:"el",1094:"pa",1097:"ta",1150:"br",1135:"kl",1131:"qu-BO",1092:"tt",1026:"bg",1095:"gu",2155:"qu-EC",1098:"te",1027:"ca",1128:"ha",3179:"qu",1054:"th",3076:"zh-HK",1037:"he",1048:"ro",1105:"bo",5124:"zh-MO",1081:"hi",1047:"rm",1055:"tr",2052:"zh",1038:"hu",1049:"ru",1090:"tk",4100:"zh-SG",1039:"is",9275:"smn",1152:"ug",1028:"zh-TW",1136:"ig",4155:"smj-NO",1058:"uk",1155:"co",1057:"id",5179:"smj",1070:"hsb",1050:"hr",1117:"iu",3131:"se-FI",1056:"ur",4122:"hr-BA",2141:"iu-Latn",1083:"se",2115:"uz-Cyrl",1029:"cs",2108:"ga",2107:"se-SE",1091:"uz",1030:"da",1076:"xh",8251:"sms",1066:"vi",1164:"prs",1077:"zu",6203:"sma-NO",1106:"cy",1125:"dv",1040:"it",7227:"sms",1160:"wo",2067:"nl-BE",2064:"it-CH",1103:"sa",1157:"sah",1043:"nl",1041:"ja",7194:"sr-Cyrl-BA",1144:"ii",3081:"en-AU",1099:"kn",3098:"sr",1130:"yo",10249:"en-BZ",1087:"kk",6170:"sr-Latn-BA",4105:"en-CA",1107:"km",2074:"sr-Latn",9225:"en-029",1158:"quc",1132:"nso"}],AA=new n.Struct({platformID:n.uint16,encodingID:n.uint16,languageID:n.uint16,nameID:n.uint16,length:n.uint16,string:new n.Pointer(n.uint16,new n.String("length",function(nA){return GA(nA.platformID,nA.encodingID,nA.languageID)}),{type:"parent",relativeTo:function(R){return R.parent.stringOffset},allowNull:!1})}),PA=new n.Struct({length:n.uint16,tag:new n.Pointer(n.uint16,new n.String("length","utf16be"),{type:"parent",relativeTo:function(R){return R.stringOffset}})}),IA=new n.VersionedStruct(n.uint16,{0:{count:n.uint16,stringOffset:n.uint16,records:new n.Array(AA,"count")},1:{count:n.uint16,stringOffset:n.uint16,records:new n.Array(AA,"count"),langTagCount:n.uint16,langTags:new n.Array(PA,"langTagCount")}}),cA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];IA.process=function(nA){for(var p,R={},V=a(this.records);!(p=V()).done;){var x=p.value,S=rA[x.platformID][x.languageID];null==S&&null!=this.langTags&&x.languageID>=32768&&(S=this.langTags[x.languageID-32768].tag),null==S&&(S=x.platformID+"-"+x.languageID);var eA=x.nameID>=256?"fontFeatures":cA[x.nameID]||x.nameID;null==R[eA]&&(R[eA]={});var lA=R[eA];x.nameID>=256&&(lA=lA[x.nameID]||(lA[x.nameID]={})),("string"==typeof x.string||"string"!=typeof lA[S])&&(lA[S]=x.string)}this.records=R},IA.preEncode=function(){if(!Array.isArray(this.records)){this.version=0;var nA=[];for(var R in this.records){var V=this.records[R];"fontFeatures"!==R&&(nA.push({platformID:3,encodingID:1,languageID:1033,nameID:cA.indexOf(R),length:g.byteLength(V.en,"utf16le"),string:V.en}),"postscriptName"===R&&nA.push({platformID:1,encodingID:0,languageID:0,nameID:cA.indexOf(R),length:V.en.length,string:V.en}))}this.records=nA,this.count=nA.length,this.stringOffset=IA.size(this,null,!1)}};var dA=new n.VersionedStruct(n.uint16,{header:{xAvgCharWidth:n.int16,usWeightClass:n.uint16,usWidthClass:n.uint16,fsType:new n.Bitfield(n.uint16,[null,"noEmbedding","viewOnly","editable",null,null,null,null,"noSubsetting","bitmapOnly"]),ySubscriptXSize:n.int16,ySubscriptYSize:n.int16,ySubscriptXOffset:n.int16,ySubscriptYOffset:n.int16,ySuperscriptXSize:n.int16,ySuperscriptYSize:n.int16,ySuperscriptXOffset:n.int16,ySuperscriptYOffset:n.int16,yStrikeoutSize:n.int16,yStrikeoutPosition:n.int16,sFamilyClass:n.int16,panose:new n.Array(n.uint8,10),ulCharRange:new n.Array(n.uint32,4),vendorID:new n.String(4),fsSelection:new n.Bitfield(n.uint16,["italic","underscore","negative","outlined","strikeout","bold","regular","useTypoMetrics","wws","oblique"]),usFirstCharIndex:n.uint16,usLastCharIndex:n.uint16},0:{},1:{typoAscender:n.int16,typoDescender:n.int16,typoLineGap:n.int16,winAscent:n.uint16,winDescent:n.uint16,codePageRange:new n.Array(n.uint32,2)},2:{typoAscender:n.int16,typoDescender:n.int16,typoLineGap:n.int16,winAscent:n.uint16,winDescent:n.uint16,codePageRange:new n.Array(n.uint32,2),xHeight:n.int16,capHeight:n.int16,defaultChar:n.uint16,breakChar:n.uint16,maxContent:n.uint16},5:{typoAscender:n.int16,typoDescender:n.int16,typoLineGap:n.int16,winAscent:n.uint16,winDescent:n.uint16,codePageRange:new n.Array(n.uint32,2),xHeight:n.int16,capHeight:n.int16,defaultChar:n.uint16,breakChar:n.uint16,maxContent:n.uint16,usLowerOpticalPointSize:n.uint16,usUpperOpticalPointSize:n.uint16}}),vA=dA.versions;vA[3]=vA[4]=vA[2];var xA=new n.VersionedStruct(n.fixed32,{header:{italicAngle:n.fixed32,underlinePosition:n.int16,underlineThickness:n.int16,isFixedPitch:n.uint32,minMemType42:n.uint32,maxMemType42:n.uint32,minMemType1:n.uint32,maxMemType1:n.uint32},1:{},2:{numberOfGlyphs:n.uint16,glyphNameIndex:new n.Array(n.uint16,"numberOfGlyphs"),names:new n.Array(new n.String(n.uint8))},2.5:{numberOfGlyphs:n.uint16,offsets:new n.Array(n.uint8,"numberOfGlyphs")},3:{},4:{map:new n.Array(n.uint32,function(nA){return nA.parent.maxp.numGlyphs})}}),SA=new n.Struct({controlValues:new n.Array(n.int16)}),EA=new n.Struct({instructions:new n.Array(n.uint8)}),WA=new n.VersionedStruct("head.indexToLocFormat",{0:{offsets:new n.Array(n.uint16)},1:{offsets:new n.Array(n.uint32)}});WA.process=function(){if(0===this.version)for(var nA=0;nA>>=1};var ge=new n.Struct({controlValueProgram:new n.Array(n.uint8)}),Be=new n.Array(new n.Buffer),le=function(){function nA(V){this.type=V}var R=nA.prototype;return R.getCFFVersion=function(p){for(;p&&!p.hdrSize;)p=p.parent;return p?p.version:-1},R.decode=function(p,x){var eA=this.getCFFVersion(x)>=2?p.readUInt32BE():p.readUInt16BE();if(0===eA)return[];var gA,lA=p.readUInt8();if(1===lA)gA=n.uint8;else if(2===lA)gA=n.uint16;else if(3===lA)gA=n.uint24;else{if(4!==lA)throw new Error("Bad offset size in CFFIndex: ".concat(lA," ").concat(p.pos));gA=n.uint32}for(var sA=[],YA=p.pos+(eA+1)*lA-1,jA=gA.decode(p),se=0;se>4;if(15===eA)break;x+=Me[eA];var lA=15&S;if(15===lA)break;x+=Me[lA]}return parseFloat(x)}return null},nA.size=function(V){return V.forceLarge&&(V=32768),(0|V)!==V?1+Math.ceil(((""+V).length+1)/2):-107<=V&&V<=107?1:108<=V&&V<=1131||-1131<=V&&V<=-108?2:-32768<=V&&V<=32767?3:5},nA.encode=function(V,p){var x=Number(p);if(p.forceLarge)return V.writeUInt8(29),V.writeInt32BE(x);if((0|x)===x)return-107<=x&&x<=107?V.writeUInt8(x+139):108<=x&&x<=1131?(V.writeUInt8(247+((x-=108)>>8)),V.writeUInt8(255&x)):-1131<=x&&x<=-108?(V.writeUInt8(251+((x=-x-108)>>8)),V.writeUInt8(255&x)):-32768<=x&&x<=32767?(V.writeUInt8(28),V.writeInt16BE(x)):(V.writeUInt8(29),V.writeInt32BE(x));V.writeUInt8(30);for(var S=""+x,eA=0;eAS;)x.pop()},nA}(),null],[19,"Subrs",new me(new le,{type:"local"}),null]]),BA=[".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"],T=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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"],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"],kA=new n.Struct({reserved:new n.Reserved(n.uint16),reqFeatureIndex:n.uint16,featureCount:n.uint16,featureIndexes:new n.Array(n.uint16,"featureCount")}),Xe=new n.Struct({tag:new n.String(4),langSys:new n.Pointer(n.uint16,kA,{type:"parent"})}),J=new n.Struct({defaultLangSys:new n.Pointer(n.uint16,kA),count:n.uint16,langSysRecords:new n.Array(Xe,"count")}),$A=new n.Struct({tag:new n.String(4),script:new n.Pointer(n.uint16,J,{type:"parent"})}),te=new n.Array($A,n.uint16),QA=new n.Struct({featureParams:n.uint16,lookupCount:n.uint16,lookupListIndexes:new n.Array(n.uint16,"lookupCount")}),JA=new n.Struct({tag:new n.String(4),feature:new n.Pointer(n.uint16,QA,{type:"parent"})}),ce=new n.Array(JA,n.uint16),Se=new n.Struct({markAttachmentType:n.uint8,flags:new n.Bitfield(n.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function xe(nA){var R=new n.Struct({lookupType:n.uint16,flags:Se,subTableCount:n.uint16,subTables:new n.Array(new n.Pointer(n.uint16,nA),"subTableCount"),markFilteringSet:new n.Optional(n.uint16,function(V){return V.flags.flags.useMarkFilteringSet})});return new n.LazyArray(new n.Pointer(n.uint16,R),n.uint16)}var Ue=new n.Struct({start:n.uint16,end:n.uint16,startCoverageIndex:n.uint16}),Oe=new n.VersionedStruct(n.uint16,{1:{glyphCount:n.uint16,glyphs:new n.Array(n.uint16,"glyphCount")},2:{rangeCount:n.uint16,rangeRecords:new n.Array(Ue,"rangeCount")}}),tr=new n.Struct({start:n.uint16,end:n.uint16,class:n.uint16}),Ie=new n.VersionedStruct(n.uint16,{1:{startGlyph:n.uint16,glyphCount:n.uint16,classValueArray:new n.Array(n.uint16,"glyphCount")},2:{classRangeCount:n.uint16,classRangeRecord:new n.Array(tr,"classRangeCount")}}),pe=new n.Struct({a:n.uint16,b:n.uint16,deltaFormat:n.uint16}),ke=new n.Struct({sequenceIndex:n.uint16,lookupListIndex:n.uint16}),Ve=new n.Struct({glyphCount:n.uint16,lookupCount:n.uint16,input:new n.Array(n.uint16,function(nA){return nA.glyphCount-1}),lookupRecords:new n.Array(ke,"lookupCount")}),Nn=new n.Array(new n.Pointer(n.uint16,Ve),n.uint16),ur=new n.Struct({glyphCount:n.uint16,lookupCount:n.uint16,classes:new n.Array(n.uint16,function(nA){return nA.glyphCount-1}),lookupRecords:new n.Array(ke,"lookupCount")}),Xr=new n.Array(new n.Pointer(n.uint16,ur),n.uint16),tn=new n.VersionedStruct(n.uint16,{1:{coverage:new n.Pointer(n.uint16,Oe),ruleSetCount:n.uint16,ruleSets:new n.Array(new n.Pointer(n.uint16,Nn),"ruleSetCount")},2:{coverage:new n.Pointer(n.uint16,Oe),classDef:new n.Pointer(n.uint16,Ie),classSetCnt:n.uint16,classSet:new n.Array(new n.Pointer(n.uint16,Xr),"classSetCnt")},3:{glyphCount:n.uint16,lookupCount:n.uint16,coverages:new n.Array(new n.Pointer(n.uint16,Oe),"glyphCount"),lookupRecords:new n.Array(ke,"lookupCount")}}),ar=new n.Struct({backtrackGlyphCount:n.uint16,backtrack:new n.Array(n.uint16,"backtrackGlyphCount"),inputGlyphCount:n.uint16,input:new n.Array(n.uint16,function(nA){return nA.inputGlyphCount-1}),lookaheadGlyphCount:n.uint16,lookahead:new n.Array(n.uint16,"lookaheadGlyphCount"),lookupCount:n.uint16,lookupRecords:new n.Array(ke,"lookupCount")}),Un=new n.Array(new n.Pointer(n.uint16,ar),n.uint16),In=new n.VersionedStruct(n.uint16,{1:{coverage:new n.Pointer(n.uint16,Oe),chainCount:n.uint16,chainRuleSets:new n.Array(new n.Pointer(n.uint16,Un),"chainCount")},2:{coverage:new n.Pointer(n.uint16,Oe),backtrackClassDef:new n.Pointer(n.uint16,Ie),inputClassDef:new n.Pointer(n.uint16,Ie),lookaheadClassDef:new n.Pointer(n.uint16,Ie),chainCount:n.uint16,chainClassSet:new n.Array(new n.Pointer(n.uint16,Un),"chainCount")},3:{backtrackGlyphCount:n.uint16,backtrackCoverage:new n.Array(new n.Pointer(n.uint16,Oe),"backtrackGlyphCount"),inputGlyphCount:n.uint16,inputCoverage:new n.Array(new n.Pointer(n.uint16,Oe),"inputGlyphCount"),lookaheadGlyphCount:n.uint16,lookaheadCoverage:new n.Array(new n.Pointer(n.uint16,Oe),"lookaheadGlyphCount"),lookupCount:n.uint16,lookupRecords:new n.Array(ke,"lookupCount")}}),wn=new n.Fixed(16,"BE",14),Ir=new n.Struct({startCoord:wn,peakCoord:wn,endCoord:wn}),wr=new n.Struct({axisCount:n.uint16,regionCount:n.uint16,variationRegions:new n.Array(new n.Array(Ir,"axisCount"),"regionCount")}),Tn=new n.Struct({shortDeltas:new n.Array(n.int16,function(nA){return nA.parent.shortDeltaCount}),regionDeltas:new n.Array(n.int8,function(nA){return nA.parent.regionIndexCount-nA.parent.shortDeltaCount}),deltas:function(R){return R.shortDeltas.concat(R.regionDeltas)}}),qn=new n.Struct({itemCount:n.uint16,shortDeltaCount:n.uint16,regionIndexCount:n.uint16,regionIndexes:new n.Array(n.uint16,"regionIndexCount"),deltaSets:new n.Array(Tn,"itemCount")}),_n=new n.Struct({format:n.uint16,variationRegionList:new n.Pointer(n.uint32,wr),variationDataCount:n.uint16,itemVariationData:new n.Array(new n.Pointer(n.uint32,qn),"variationDataCount")}),dr=new n.VersionedStruct(n.uint16,{1:(i={axisIndex:n.uint16},i.axisIndex=n.uint16,i.filterRangeMinValue=wn,i.filterRangeMaxValue=wn,i)}),Lr=new n.Struct({conditionCount:n.uint16,conditionTable:new n.Array(new n.Pointer(n.uint32,dr),"conditionCount")}),Gr=new n.Struct({featureIndex:n.uint16,alternateFeatureTable:new n.Pointer(n.uint32,QA,{type:"parent"})}),Yr=new n.Struct({version:n.fixed32,substitutionCount:n.uint16,substitutions:new n.Array(Gr,"substitutionCount")}),Hr=new n.Struct({conditionSet:new n.Pointer(n.uint32,Lr,{type:"parent"}),featureTableSubstitution:new n.Pointer(n.uint32,Yr,{type:"parent"})}),Jr=new n.Struct({majorVersion:n.uint16,minorVersion:n.uint16,featureVariationRecordCount:n.uint32,featureVariationRecords:new n.Array(Hr,"featureVariationRecordCount")}),Kr=function(){function nA(V,p){this.predefinedOps=V,this.type=p}var R=nA.prototype;return R.decode=function(p,x,S){return this.predefinedOps[S[0]]?this.predefinedOps[S[0]]:this.type.decode(p,x,S)},R.size=function(p,x){return this.type.size(p,x)},R.encode=function(p,x,S){var eA=this.predefinedOps.indexOf(x);return-1!==eA?eA:this.type.encode(p,x,S)},nA}(),Ae=function(nA){function R(){return nA.call(this,"UInt8")||this}return f(R,nA),R.prototype.decode=function(x){return 127&n.uint8.decode(x)},R}(n.Number),FA=new n.Struct({first:n.uint16,nLeft:n.uint8}),re=new n.Struct({first:n.uint16,nLeft:n.uint16}),RA=new Kr([T,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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 me(new n.VersionedStruct(new Ae,{0:{nCodes:n.uint8,codes:new n.Array(n.uint8,"nCodes")},1:{nRanges:n.uint8,ranges:new n.Array(FA,"nRanges")}}),{lazy:!0})),bA=function(nA){function R(){return nA.apply(this,arguments)||this}return f(R,nA),R.prototype.decode=function(x,S){for(var eA=C.resolveLength(this.length,x,S),lA=0,gA=[];lA=2?null:p=2||this.isCIDFont)return null;var x=this.topDict.charset;if(Array.isArray(x))return x[p];if(0===p)return".notdef";switch(p-=1,x.version){case 0:return this.string(x.glyphs[p]);case 1:case 2:for(var S=0;S>1;if(p=x[lA+1].first))return x[lA].fd;S=lA+1}}default:throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version))}},R.privateDictForGlyph=function(p){if(this.topDict.FDSelect){var x=this.fdForGlyph(p);return this.topDict.FDArray[x]?this.topDict.FDArray[x].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private},o(nA,[{key:"postscriptName",get:function(){return this.version<2?this.nameIndex[0]:null}},{key:"fullName",get:function(){return this.string(this.topDict.FullName)}},{key:"familyName",get:function(){return this.string(this.topDict.FamilyName)}}])}(),qe=new n.Struct({glyphIndex:n.uint16,vertOriginY:n.int16}),ze=new n.Struct({majorVersion:n.uint16,minorVersion:n.uint16,defaultVertOriginY:n.int16,numVertOriginYMetrics:n.uint16,metrics:new n.Array(qe,"numVertOriginYMetrics")}),en=new n.Struct({height:n.uint8,width:n.uint8,horiBearingX:n.int8,horiBearingY:n.int8,horiAdvance:n.uint8,vertBearingX:n.int8,vertBearingY:n.int8,vertAdvance:n.uint8}),je=new n.Struct({height:n.uint8,width:n.uint8,bearingX:n.int8,bearingY:n.int8,advance:n.uint8}),fn=new n.Struct({glyph:n.uint16,xOffset:n.int8,yOffset:n.int8}),on=function(){},pn=function(){},mn=(new n.VersionedStruct("version",{1:{metrics:je,data:on},2:{metrics:je,data:pn},5:{data:pn},6:{metrics:en,data:on},7:{metrics:en,data:pn},8:{metrics:je,pad:new n.Reserved(n.uint8),numComponents:n.uint16,components:new n.Array(fn,"numComponents")},9:{metrics:en,pad:new n.Reserved(n.uint8),numComponents:n.uint16,components:new n.Array(fn,"numComponents")},17:{metrics:je,dataLen:n.uint32,data:new n.Buffer("dataLen")},18:{metrics:en,dataLen:n.uint32,data:new n.Buffer("dataLen")},19:{dataLen:n.uint32,data:new n.Buffer("dataLen")}}),new n.Struct({ascender:n.int8,descender:n.int8,widthMax:n.uint8,caretSlopeNumerator:n.int8,caretSlopeDenominator:n.int8,caretOffset:n.int8,minOriginSB:n.int8,minAdvanceSB:n.int8,maxBeforeBL:n.int8,minAfterBL:n.int8,pad:new n.Reserved(n.int8,2)})),Fn=new n.Struct({glyphCode:n.uint16,offset:n.uint16}),kn=new n.VersionedStruct(n.uint16,{header:{imageFormat:n.uint16,imageDataOffset:n.uint32},1:{offsetArray:new n.Array(n.uint32,function(nA){return nA.parent.lastGlyphIndex-nA.parent.firstGlyphIndex+1})},2:{imageSize:n.uint32,bigMetrics:en},3:{offsetArray:new n.Array(n.uint16,function(nA){return nA.parent.lastGlyphIndex-nA.parent.firstGlyphIndex+1})},4:{numGlyphs:n.uint32,glyphArray:new n.Array(Fn,function(nA){return nA.numGlyphs+1})},5:{imageSize:n.uint32,bigMetrics:en,numGlyphs:n.uint32,glyphCodeArray:new n.Array(n.uint16,"numGlyphs")}}),$n=new n.Struct({firstGlyphIndex:n.uint16,lastGlyphIndex:n.uint16,subtable:new n.Pointer(n.uint32,kn)}),Mr=new n.Struct({indexSubTableArray:new n.Pointer(n.uint32,new n.Array($n,1),{type:"parent"}),indexTablesSize:n.uint32,numberOfIndexSubTables:n.uint32,colorRef:n.uint32,hori:mn,vert:mn,startGlyphIndex:n.uint16,endGlyphIndex:n.uint16,ppemX:n.uint8,ppemY:n.uint8,bitDepth:n.uint8,flags:new n.Bitfield(n.uint8,["horizontal","vertical"])}),ir=new n.Struct({version:n.uint32,numSizes:n.uint32,sizes:new n.Array(Mr,"numSizes")}),Qr=new n.Struct({ppem:n.uint16,resolution:n.uint16,imageOffsets:new n.Array(new n.Pointer(n.uint32,"void"),function(nA){return nA.parent.parent.maxp.numGlyphs+1})}),Dr=new n.Struct({version:n.uint16,flags:new n.Bitfield(n.uint16,["renderOutlines"]),numImgTables:n.uint32,imageTables:new n.Array(new n.Pointer(n.uint32,Qr),"numImgTables")}),Yn=new n.Struct({gid:n.uint16,paletteIndex:n.uint16}),Er=new n.Struct({gid:n.uint16,firstLayerIndex:n.uint16,numLayers:n.uint16}),wA=new n.Struct({version:n.uint16,numBaseGlyphRecords:n.uint16,baseGlyphRecord:new n.Pointer(n.uint32,new n.Array(Er,"numBaseGlyphRecords")),layerRecords:new n.Pointer(n.uint32,new n.Array(Yn,"numLayerRecords"),{lazy:!0}),numLayerRecords:n.uint16}),G=new n.Struct({blue:n.uint8,green:n.uint8,red:n.uint8,alpha:n.uint8}),L=new n.VersionedStruct(n.uint16,{header:{numPaletteEntries:n.uint16,numPalettes:n.uint16,numColorRecords:n.uint16,colorRecords:new n.Pointer(n.uint32,new n.Array(G,"numColorRecords")),colorRecordIndices:new n.Array(n.uint16,"numPalettes")},0:{},1:{offsetPaletteTypeArray:new n.Pointer(n.uint32,new n.Array(n.uint32,"numPalettes")),offsetPaletteLabelArray:new n.Pointer(n.uint32,new n.Array(n.uint16,"numPalettes")),offsetPaletteEntryLabelArray:new n.Pointer(n.uint32,new n.Array(n.uint16,"numPaletteEntries"))}}),z=new n.VersionedStruct(n.uint16,{1:{coordinate:n.int16},2:{coordinate:n.int16,referenceGlyph:n.uint16,baseCoordPoint:n.uint16},3:{coordinate:n.int16,deviceTable:new n.Pointer(n.uint16,pe)}}),H=new n.Struct({defaultIndex:n.uint16,baseCoordCount:n.uint16,baseCoords:new n.Array(new n.Pointer(n.uint16,z),"baseCoordCount")}),uA=new n.Struct({tag:new n.String(4),minCoord:new n.Pointer(n.uint16,z,{type:"parent"}),maxCoord:new n.Pointer(n.uint16,z,{type:"parent"})}),XA=new n.Struct({minCoord:new n.Pointer(n.uint16,z),maxCoord:new n.Pointer(n.uint16,z),featMinMaxCount:n.uint16,featMinMaxRecords:new n.Array(uA,"featMinMaxCount")}),qA=new n.Struct({tag:new n.String(4),minMax:new n.Pointer(n.uint16,XA,{type:"parent"})}),ae=new n.Struct({baseValues:new n.Pointer(n.uint16,H),defaultMinMax:new n.Pointer(n.uint16,XA),baseLangSysCount:n.uint16,baseLangSysRecords:new n.Array(qA,"baseLangSysCount")}),he=new n.Struct({tag:new n.String(4),script:new n.Pointer(n.uint16,ae,{type:"parent"})}),Ee=new n.Array(he,n.uint16),Ke=new n.Array(new n.String(4),n.uint16),ve=new n.Struct({baseTagList:new n.Pointer(n.uint16,Ke),baseScriptList:new n.Pointer(n.uint16,Ee)}),be=new n.VersionedStruct(n.uint32,{header:{horizAxis:new n.Pointer(n.uint16,ve),vertAxis:new n.Pointer(n.uint16,ve)},65536:{},65537:{itemVariationStore:new n.Pointer(n.uint32,_n)}}),Le=new n.Array(n.uint16,n.uint16),Je=new n.Struct({coverage:new n.Pointer(n.uint16,Oe),glyphCount:n.uint16,attachPoints:new n.Array(new n.Pointer(n.uint16,Le),"glyphCount")}),cn=new n.VersionedStruct(n.uint16,{1:{coordinate:n.int16},2:{caretValuePoint:n.uint16},3:{coordinate:n.int16,deviceTable:new n.Pointer(n.uint16,pe)}}),$e=new n.Array(new n.Pointer(n.uint16,cn),n.uint16),gn=new n.Struct({coverage:new n.Pointer(n.uint16,Oe),ligGlyphCount:n.uint16,ligGlyphs:new n.Array(new n.Pointer(n.uint16,$e),"ligGlyphCount")}),bn=new n.Struct({markSetTableFormat:n.uint16,markSetCount:n.uint16,coverage:new n.Array(new n.Pointer(n.uint32,Oe),"markSetCount")}),nn=new n.VersionedStruct(n.uint32,{header:{glyphClassDef:new n.Pointer(n.uint16,Ie),attachList:new n.Pointer(n.uint16,Je),ligCaretList:new n.Pointer(n.uint16,gn),markAttachClassDef:new n.Pointer(n.uint16,Ie)},65536:{},65538:{markGlyphSetsDef:new n.Pointer(n.uint16,bn)},65539:{markGlyphSetsDef:new n.Pointer(n.uint16,bn),itemVariationStore:new n.Pointer(n.uint32,_n)}}),We=new n.Bitfield(n.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Sn={xPlacement:n.int16,yPlacement:n.int16,xAdvance:n.int16,yAdvance:n.int16,xPlaDevice:new n.Pointer(n.uint16,pe,{type:"global",relativeTo:function(R){return R.rel}}),yPlaDevice:new n.Pointer(n.uint16,pe,{type:"global",relativeTo:function(R){return R.rel}}),xAdvDevice:new n.Pointer(n.uint16,pe,{type:"global",relativeTo:function(R){return R.rel}}),yAdvDevice:new n.Pointer(n.uint16,pe,{type:"global",relativeTo:function(R){return R.rel}})},Zn=function(){function nA(V){void 0===V&&(V="valueFormat"),this.key=V}var R=nA.prototype;return R.buildStruct=function(p){for(var x=p;!x[this.key]&&x.parent;)x=x.parent;if(x[this.key]){var S={rel:function(){return x._startOffset}},eA=x[this.key];for(var lA in eA)eA[lA]&&(S[lA]=Sn[lA]);return new n.Struct(S)}},R.size=function(p,x){return this.buildStruct(x).size(p,x)},R.decode=function(p,x){var S=this.buildStruct(x).decode(p,x);return delete S.rel,S},nA}(),Mn=new n.Struct({secondGlyph:n.uint16,value1:new Zn("valueFormat1"),value2:new Zn("valueFormat2")}),Fr=new n.Array(Mn,n.uint16),Pr=new n.Struct({value1:new Zn("valueFormat1"),value2:new Zn("valueFormat2")}),or=new n.VersionedStruct(n.uint16,{1:{xCoordinate:n.int16,yCoordinate:n.int16},2:{xCoordinate:n.int16,yCoordinate:n.int16,anchorPoint:n.uint16},3:{xCoordinate:n.int16,yCoordinate:n.int16,xDeviceTable:new n.Pointer(n.uint16,pe),yDeviceTable:new n.Pointer(n.uint16,pe)}}),kr=new n.Struct({entryAnchor:new n.Pointer(n.uint16,or,{type:"parent"}),exitAnchor:new n.Pointer(n.uint16,or,{type:"parent"})}),Br=new n.Struct({class:n.uint16,markAnchor:new n.Pointer(n.uint16,or,{type:"parent"})}),Or=new n.Array(Br,n.uint16),et=new n.Array(new n.Pointer(n.uint16,or),function(nA){return nA.parent.classCount}),jr=new n.Array(et,n.uint16),Xt=new n.Array(new n.Pointer(n.uint16,or),function(nA){return nA.parent.parent.classCount}),ft=new n.Array(Xt,n.uint16),wt=new n.Array(new n.Pointer(n.uint16,ft),n.uint16),Vr=new n.VersionedStruct("lookupType",{1:new n.VersionedStruct(n.uint16,{1:{coverage:new n.Pointer(n.uint16,Oe),valueFormat:We,value:new Zn},2:{coverage:new n.Pointer(n.uint16,Oe),valueFormat:We,valueCount:n.uint16,values:new n.LazyArray(new Zn,"valueCount")}}),2:new n.VersionedStruct(n.uint16,{1:{coverage:new n.Pointer(n.uint16,Oe),valueFormat1:We,valueFormat2:We,pairSetCount:n.uint16,pairSets:new n.LazyArray(new n.Pointer(n.uint16,Fr),"pairSetCount")},2:{coverage:new n.Pointer(n.uint16,Oe),valueFormat1:We,valueFormat2:We,classDef1:new n.Pointer(n.uint16,Ie),classDef2:new n.Pointer(n.uint16,Ie),class1Count:n.uint16,class2Count:n.uint16,classRecords:new n.LazyArray(new n.LazyArray(Pr,"class2Count"),"class1Count")}}),3:{format:n.uint16,coverage:new n.Pointer(n.uint16,Oe),entryExitCount:n.uint16,entryExitRecords:new n.Array(kr,"entryExitCount")},4:{format:n.uint16,markCoverage:new n.Pointer(n.uint16,Oe),baseCoverage:new n.Pointer(n.uint16,Oe),classCount:n.uint16,markArray:new n.Pointer(n.uint16,Or),baseArray:new n.Pointer(n.uint16,jr)},5:{format:n.uint16,markCoverage:new n.Pointer(n.uint16,Oe),ligatureCoverage:new n.Pointer(n.uint16,Oe),classCount:n.uint16,markArray:new n.Pointer(n.uint16,Or),ligatureArray:new n.Pointer(n.uint16,wt)},6:{format:n.uint16,mark1Coverage:new n.Pointer(n.uint16,Oe),mark2Coverage:new n.Pointer(n.uint16,Oe),classCount:n.uint16,mark1Array:new n.Pointer(n.uint16,Or),mark2Array:new n.Pointer(n.uint16,jr)},7:tn,8:In,9:{posFormat:n.uint16,lookupType:n.uint16,extension:new n.Pointer(n.uint32,Vr)}});Vr.versions[9].extension.type=Vr;var It=new n.VersionedStruct(n.uint32,{header:{scriptList:new n.Pointer(n.uint16,te),featureList:new n.Pointer(n.uint16,ce),lookupList:new n.Pointer(n.uint16,new xe(Vr))},65536:{},65537:{featureVariations:new n.Pointer(n.uint32,Jr)}}),Mt=new n.Array(n.uint16,n.uint16),Dt=Mt,nt=new n.Struct({glyph:n.uint16,compCount:n.uint16,components:new n.Array(n.uint16,function(nA){return nA.compCount-1})}),Xa=new n.Array(new n.Pointer(n.uint16,nt),n.uint16),Wr=new n.VersionedStruct("lookupType",{1:new n.VersionedStruct(n.uint16,{1:{coverage:new n.Pointer(n.uint16,Oe),deltaGlyphID:n.int16},2:{coverage:new n.Pointer(n.uint16,Oe),glyphCount:n.uint16,substitute:new n.LazyArray(n.uint16,"glyphCount")}}),2:{substFormat:n.uint16,coverage:new n.Pointer(n.uint16,Oe),count:n.uint16,sequences:new n.LazyArray(new n.Pointer(n.uint16,Mt),"count")},3:{substFormat:n.uint16,coverage:new n.Pointer(n.uint16,Oe),count:n.uint16,alternateSet:new n.LazyArray(new n.Pointer(n.uint16,Dt),"count")},4:{substFormat:n.uint16,coverage:new n.Pointer(n.uint16,Oe),count:n.uint16,ligatureSets:new n.LazyArray(new n.Pointer(n.uint16,Xa),"count")},5:tn,6:In,7:{substFormat:n.uint16,lookupType:n.uint16,extension:new n.Pointer(n.uint32,Wr)},8:{substFormat:n.uint16,coverage:new n.Pointer(n.uint16,Oe),backtrackCoverage:new n.Array(new n.Pointer(n.uint16,Oe),"backtrackGlyphCount"),lookaheadGlyphCount:n.uint16,lookaheadCoverage:new n.Array(new n.Pointer(n.uint16,Oe),"lookaheadGlyphCount"),glyphCount:n.uint16,substitutes:new n.Array(n.uint16,"glyphCount")}});Wr.versions[7].extension.type=Wr;var wa=new n.VersionedStruct(n.uint32,{header:{scriptList:new n.Pointer(n.uint16,te),featureList:new n.Pointer(n.uint16,ce),lookupList:new n.Pointer(n.uint16,new xe(Wr))},65536:{},65537:{featureVariations:new n.Pointer(n.uint32,Jr)}}),Zr=new n.Array(n.uint16,n.uint16),$i=new n.Struct({shrinkageEnableGSUB:new n.Pointer(n.uint16,Zr),shrinkageDisableGSUB:new n.Pointer(n.uint16,Zr),shrinkageEnableGPOS:new n.Pointer(n.uint16,Zr),shrinkageDisableGPOS:new n.Pointer(n.uint16,Zr),shrinkageJstfMax:new n.Pointer(n.uint16,new xe(Vr)),extensionEnableGSUB:new n.Pointer(n.uint16,Zr),extensionDisableGSUB:new n.Pointer(n.uint16,Zr),extensionEnableGPOS:new n.Pointer(n.uint16,Zr),extensionDisableGPOS:new n.Pointer(n.uint16,Zr),extensionJstfMax:new n.Pointer(n.uint16,new xe(Vr))}),qa=new n.Array(new n.Pointer(n.uint16,$i),n.uint16),Ao=new n.Struct({tag:new n.String(4),jstfLangSys:new n.Pointer(n.uint16,qa)}),eo=new n.Struct({extenderGlyphs:new n.Pointer(n.uint16,new n.Array(n.uint16,n.uint16)),defaultLangSys:new n.Pointer(n.uint16,qa),langSysCount:n.uint16,langSysRecords:new n.Array(Ao,"langSysCount")}),no=new n.Struct({tag:new n.String(4),script:new n.Pointer(n.uint16,eo,{type:"parent"})}),ro=new n.Struct({version:n.uint32,scriptCount:n.uint16,scriptList:new n.Array(no,"scriptCount")}),ao=new n.Struct({entry:new(function(){function nA(V){this._size=V}var R=nA.prototype;return R.decode=function(p,x){switch(this.size(0,x)){case 1:return p.readUInt8();case 2:return p.readUInt16BE();case 3:return p.readUInt24BE();case 4:return p.readUInt32BE()}},R.size=function(p,x){return C.resolveLength(this._size,null,x)},nA}())(function(nA){return 1+((48&nA.parent.entryFormat)>>4)}),outerIndex:function(R){return R.entry>>1+(15&R.parent.entryFormat)},innerIndex:function(R){return R.entry&(1<<1+(15&R.parent.entryFormat))-1}}),Ka=new n.Struct({entryFormat:n.uint16,mapCount:n.uint16,mapData:new n.Array(ao,"mapCount")}),io=new n.Struct({majorVersion:n.uint16,minorVersion:n.uint16,itemVariationStore:new n.Pointer(n.uint32,_n),advanceWidthMapping:new n.Pointer(n.uint32,Ka),LSBMapping:new n.Pointer(n.uint32,Ka),RSBMapping:new n.Pointer(n.uint32,Ka)}),oo=new n.Struct({format:n.uint32,length:n.uint32,offset:n.uint32}),so=new n.Struct({reserved:new n.Reserved(n.uint16,2),cbSignature:n.uint32,signature:new n.Buffer("cbSignature")}),co=new n.Struct({ulVersion:n.uint32,usNumSigs:n.uint16,usFlag:n.uint16,signatures:new n.Array(oo,"usNumSigs"),signatureBlocks:new n.Array(so,"usNumSigs")}),lo=new n.Struct({rangeMaxPPEM:n.uint16,rangeGaspBehavior:new n.Bitfield(n.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])}),go=new n.Struct({version:n.uint16,numRanges:n.uint16,gaspRanges:new n.Array(lo,"numRanges")}),uo=new n.Struct({pixelSize:n.uint8,maximumWidth:n.uint8,widths:new n.Array(n.uint8,function(nA){return nA.parent.parent.maxp.numGlyphs})}),Bo=new n.Struct({version:n.uint16,numRecords:n.int16,sizeDeviceRecord:n.int32,records:new n.Array(uo,"numRecords")}),fo=new n.Struct({left:n.uint16,right:n.uint16,value:n.int16}),_a=new n.Struct({firstGlyph:n.uint16,nGlyphs:n.uint16,offsets:new n.Array(n.uint16,"nGlyphs"),max:function(R){return R.offsets.length&&Math.max.apply(Math,R.offsets)}}),mo=new n.Struct({off:function(R){return R._startOffset-R.parent.parent._startOffset},len:function(R){return R.parent.rowWidth/2*((R.parent.leftTable.max-R.off)/R.parent.rowWidth+1)},values:new n.LazyArray(n.int16,"len")}),$a=new n.VersionedStruct("format",{0:{nPairs:n.uint16,searchRange:n.uint16,entrySelector:n.uint16,rangeShift:n.uint16,pairs:new n.Array(fo,"nPairs")},2:{rowWidth:n.uint16,leftTable:new n.Pointer(n.uint16,_a,{type:"parent"}),rightTable:new n.Pointer(n.uint16,_a,{type:"parent"}),array:new n.Pointer(n.uint16,mo,{type:"parent"})},3:{glyphCount:n.uint16,kernValueCount:n.uint8,leftClassCount:n.uint8,rightClassCount:n.uint8,flags:n.uint8,kernValue:new n.Array(n.int16,"kernValueCount"),leftClass:new n.Array(n.uint8,"glyphCount"),rightClass:new n.Array(n.uint8,"glyphCount"),kernIndex:new n.Array(n.uint8,function(nA){return nA.leftClassCount*nA.rightClassCount})}}),Ai=new n.VersionedStruct("version",{0:{subVersion:n.uint16,length:n.uint16,format:n.uint8,coverage:new n.Bitfield(n.uint8,["horizontal","minimum","crossStream","override"]),subtable:$a,padding:new n.Reserved(n.uint8,function(nA){return nA.length-nA._currentOffset})},1:{length:n.uint32,coverage:new n.Bitfield(n.uint8,[null,null,null,null,null,"variation","crossStream","vertical"]),format:n.uint8,tupleIndex:n.uint16,subtable:$a,padding:new n.Reserved(n.uint8,function(nA){return nA.length-nA._currentOffset})}}),ho=new n.VersionedStruct(n.uint16,{0:{nTables:n.uint16,tables:new n.Array(Ai,"nTables")},1:{reserved:new n.Reserved(n.uint16),nTables:n.uint32,tables:new n.Array(Ai,"nTables")}}),Co=new n.Struct({version:n.uint16,numGlyphs:n.uint16,yPels:new n.Array(n.uint8,"numGlyphs")}),Eo=new n.Struct({version:n.uint16,fontNumber:n.uint32,pitch:n.uint16,xHeight:n.uint16,style:n.uint16,typeFamily:n.uint16,capHeight:n.uint16,symbolSet:n.uint16,typeface:new n.String(16),characterComplement:new n.String(8),fileName:new n.String(6),strokeWeight:new n.String(1),widthType:new n.String(1),serifStyle:n.uint8,reserved:new n.Reserved(n.uint8)}),ei=new n.Struct({bCharSet:n.uint8,xRatio:n.uint8,yStartRatio:n.uint8,yEndRatio:n.uint8}),ni=new n.Struct({yPelHeight:n.uint16,yMax:n.int16,yMin:n.int16}),Po=new n.Struct({recs:n.uint16,startsz:n.uint8,endsz:n.uint8,entries:new n.Array(ni,"recs")}),Xo=new n.Struct({version:n.uint16,numRecs:n.uint16,numRatios:n.uint16,ratioRanges:new n.Array(ei,"numRatios"),offsets:new n.Array(n.uint16,"numRatios"),groups:new n.Array(Po,"numRecs")}),wo=new n.Struct({version:n.uint16,ascent:n.int16,descent:n.int16,lineGap:n.int16,advanceHeightMax:n.int16,minTopSideBearing:n.int16,minBottomSideBearing:n.int16,yMaxExtent:n.int16,caretSlopeRise:n.int16,caretSlopeRun:n.int16,caretOffset:n.int16,reserved:new n.Reserved(n.int16,4),metricDataFormat:n.int16,numberOfMetrics:n.uint16}),ri=new n.Struct({advance:n.uint16,bearing:n.int16}),Ko=new n.Struct({metrics:new n.LazyArray(ri,function(nA){return nA.parent.vhea.numberOfMetrics}),bearings:new n.LazyArray(n.int16,function(nA){return nA.parent.maxp.numGlyphs-nA.parent.vhea.numberOfMetrics})}),ti=new n.Fixed(16,"BE",14),Qo=new n.Struct({fromCoord:ti,toCoord:ti}),po=new n.Struct({pairCount:n.uint16,correspondence:new n.Array(Qo,"pairCount")}),vo=new n.Struct({version:n.fixed32,axisCount:n.uint32,segment:new n.Array(po,"axisCount")}),Io=function(){function nA(V,p,x){this.type=V,this.stream=p,this.parent=x,this.base=this.stream.pos,this._items=[]}var R=nA.prototype;return R.getItem=function(p){if(null==this._items[p]){var x=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.parent)*p,this._items[p]=this.type.decode(this.stream,this.parent),this.stream.pos=x}return this._items[p]},R.inspect=function(){return"[UnboundedArray ".concat(this.type.constructor.name,"]")},nA}(),qr=function(nA){function R(p){return nA.call(this,p,0)||this}return f(R,nA),R.prototype.decode=function(x,S){return new Io(this.type,x,S)},R}(n.Array),st=function(R){void 0===R&&(R=n.uint16),R=new(function(){function lA(sA){this.type=sA}var gA=lA.prototype;return gA.decode=function(YA,jA){return this.type.decode(YA,jA=jA.parent.parent)},gA.size=function(YA,jA){return this.type.size(YA,jA=jA.parent.parent)},gA.encode=function(YA,jA,se){return this.type.encode(YA,jA,se=se.parent.parent)},lA}())(R);var p=new n.Struct({unitSize:n.uint16,nUnits:n.uint16,searchRange:n.uint16,entrySelector:n.uint16,rangeShift:n.uint16}),x=new n.Struct({lastGlyph:n.uint16,firstGlyph:n.uint16,value:R}),S=new n.Struct({lastGlyph:n.uint16,firstGlyph:n.uint16,values:new n.Pointer(n.uint16,new n.Array(R,function(lA){return lA.lastGlyph-lA.firstGlyph+1}),{type:"parent"})}),eA=new n.Struct({glyph:n.uint16,value:R});return new n.VersionedStruct(n.uint16,{0:{values:new qr(R)},2:{binarySearchHeader:p,segments:new n.Array(x,function(lA){return lA.binarySearchHeader.nUnits})},4:{binarySearchHeader:p,segments:new n.Array(S,function(lA){return lA.binarySearchHeader.nUnits})},6:{binarySearchHeader:p,segments:new n.Array(eA,function(lA){return lA.binarySearchHeader.nUnits})},8:{firstGlyph:n.uint16,count:n.uint16,values:new n.Array(R,"count")}})};function yt(nA,R){void 0===nA&&(nA={}),void 0===R&&(R=n.uint16);var V=Object.assign({newState:n.uint16,flags:n.uint16},nA),p=new n.Struct(V),x=new qr(new n.Array(n.uint16,function(eA){return eA.nClasses}));return new n.Struct({nClasses:n.uint32,classTable:new n.Pointer(n.uint32,new st(R)),stateArray:new n.Pointer(n.uint32,x),entryTable:new n.Pointer(n.uint32,new qr(p))})}var Do=new n.VersionedStruct("format",{0:{deltas:new n.Array(n.int16,32)},1:{deltas:new n.Array(n.int16,32),mappingData:new st(n.uint16)},2:{standardGlyph:n.uint16,controlPoints:new n.Array(n.uint16,32)},3:{standardGlyph:n.uint16,controlPoints:new n.Array(n.uint16,32),mappingData:new st(n.uint16)}}),ai=new n.Struct({version:n.fixed32,format:n.uint16,defaultBaseline:n.uint16,subtable:Do}),rt=new n.Struct({setting:n.uint16,nameIndex:n.int16,name:function(R){return R.parent.parent.parent.name.records.fontFeatures[R.nameIndex]}}),yo=new n.Struct({feature:n.uint16,nSettings:n.uint16,settingTable:new n.Pointer(n.uint32,new n.Array(rt,"nSettings"),{type:"parent"}),featureFlags:new n.Bitfield(n.uint8,[null,null,null,null,null,null,"hasDefault","exclusive"]),defaultSetting:n.uint8,nameIndex:n.int16,name:function(R){return R.parent.parent.name.records.fontFeatures[R.nameIndex]}}),Fo=new n.Struct({version:n.fixed32,featureNameCount:n.uint16,reserved1:new n.Reserved(n.uint16),reserved2:new n.Reserved(n.uint32),featureNames:new n.Array(yo,"featureNameCount")}),xo=new n.Struct({axisTag:new n.String(4),minValue:n.fixed32,defaultValue:n.fixed32,maxValue:n.fixed32,flags:n.uint16,nameID:n.uint16,name:function(R){return R.parent.parent.name.records.fontFeatures[R.nameID]}}),No=new n.Struct({nameID:n.uint16,name:function(R){return R.parent.parent.name.records.fontFeatures[R.nameID]},flags:n.uint16,coord:new n.Array(n.fixed32,function(nA){return nA.parent.axisCount}),postscriptNameID:new n.Optional(n.uint16,function(nA){return nA.parent.instanceSize-nA._currentOffset>0})}),Yo=new n.Struct({version:n.fixed32,offsetToData:n.uint16,countSizePairs:n.uint16,axisCount:n.uint16,axisSize:n.uint16,instanceCount:n.uint16,instanceSize:n.uint16,axis:new n.Array(xo,"axisCount"),instance:new n.Array(No,"instanceCount")}),To=new n.Fixed(16,"BE",14),bo=function(){function nA(){}return nA.decode=function(V,p){return p.flags?V.readUInt32BE():2*V.readUInt16BE()},nA}(),Uo=new n.Struct({version:n.uint16,reserved:new n.Reserved(n.uint16),axisCount:n.uint16,globalCoordCount:n.uint16,globalCoords:new n.Pointer(n.uint32,new n.Array(new n.Array(To,"axisCount"),"globalCoordCount")),glyphCount:n.uint16,flags:n.uint16,offsetToData:n.uint32,offsets:new n.Array(new n.Pointer(bo,"void",{relativeTo:function(R){return R.offsetToData},allowNull:!1}),function(nA){return nA.glyphCount+1})}),So=new n.Struct({length:n.uint16,coverage:n.uint16,subFeatureFlags:n.uint32,stateTable:new function Mo(nA,R){void 0===nA&&(nA={}),void 0===R&&(R=n.uint16);var V=new n.Struct({version:function(){return 8},firstGlyph:n.uint16,values:new n.Array(n.uint8,n.uint16)}),p=Object.assign({newStateOffset:n.uint16,newState:function(gA){return(gA.newStateOffset-(gA.parent.stateArray.base-gA.parent._startOffset))/gA.parent.nClasses},flags:n.uint16},nA),x=new n.Struct(p),S=new qr(new n.Array(n.uint8,function(lA){return lA.nClasses}));return new n.Struct({nClasses:n.uint16,classTable:new n.Pointer(n.uint16,V),stateArray:new n.Pointer(n.uint16,S),entryTable:new n.Pointer(n.uint16,new qr(x))})}}),Ro=new n.Struct({justClass:n.uint32,beforeGrowLimit:n.fixed32,beforeShrinkLimit:n.fixed32,afterGrowLimit:n.fixed32,afterShrinkLimit:n.fixed32,growFlags:n.uint16,shrinkFlags:n.uint16}),Lo=new n.Array(Ro,n.uint32),Go=new n.VersionedStruct("actionType",{0:{lowerLimit:n.fixed32,upperLimit:n.fixed32,order:n.uint16,glyphs:new n.Array(n.uint16,n.uint16)},1:{addGlyph:n.uint16},2:{substThreshold:n.fixed32,addGlyph:n.uint16,substGlyph:n.uint16},3:{},4:{variationAxis:n.uint32,minimumLimit:n.fixed32,noStretchValue:n.fixed32,maximumLimit:n.fixed32},5:{flags:n.uint16,glyph:n.uint16}}),Oo=new n.Struct({actionClass:n.uint16,actionType:n.uint16,actionLength:n.uint32,actionData:Go,padding:new n.Reserved(n.uint8,function(nA){return nA.actionLength-nA._currentOffset})}),ko=new n.Array(Oo,n.uint32),Wo=new n.Struct({lookupTable:new st(new n.Pointer(n.uint16,ko))}),ii=new n.Struct({classTable:new n.Pointer(n.uint16,So,{type:"parent"}),wdcOffset:n.uint16,postCompensationTable:new n.Pointer(n.uint16,Wo,{type:"parent"}),widthDeltaClusters:new st(new n.Pointer(n.uint16,Lo,{type:"parent",relativeTo:function(R){return R.wdcOffset}}))}),zo=new n.Struct({version:n.uint32,format:n.uint16,horizontal:new n.Pointer(n.uint16,ii),vertical:new n.Pointer(n.uint16,ii)}),Ho={action:n.uint16},Jo={markIndex:n.uint16,currentIndex:n.uint16},jo={currentInsertIndex:n.uint16,markedInsertIndex:n.uint16},Vo=new n.Struct({items:new qr(new n.Pointer(n.uint32,new st))}),Zo=new n.VersionedStruct("type",{0:{stateTable:new yt},1:{stateTable:new yt(Jo),substitutionTable:new n.Pointer(n.uint32,Vo)},2:{stateTable:new yt(Ho),ligatureActions:new n.Pointer(n.uint32,new qr(n.uint32)),components:new n.Pointer(n.uint32,new qr(n.uint16)),ligatureList:new n.Pointer(n.uint32,new qr(n.uint16))},4:{lookupTable:new st},5:{stateTable:new yt(jo),insertionActions:new n.Pointer(n.uint32,new qr(n.uint16))}}),oi=new n.Struct({length:n.uint32,coverage:n.uint24,type:n.uint8,subFeatureFlags:n.uint32,table:Zo,padding:new n.Reserved(n.uint8,function(nA){return nA.length-nA._currentOffset})}),qo=new n.Struct({featureType:n.uint16,featureSetting:n.uint16,enableFlags:n.uint32,disableFlags:n.uint32}),_o=new n.Struct({defaultFlags:n.uint32,chainLength:n.uint32,nFeatureEntries:n.uint32,nSubtables:n.uint32,features:new n.Array(qo,"nFeatureEntries"),subtables:new n.Array(oi,"nSubtables")}),$o=new n.Struct({version:n.uint16,unused:new n.Reserved(n.uint16),nChains:n.uint32,chains:new n.Array(_o,"nChains")}),As=new n.Struct({left:n.int16,top:n.int16,right:n.int16,bottom:n.int16}),es=new n.Struct({version:n.fixed32,format:n.uint16,lookupTable:new st(As)}),ln={};ln.cmap=O,ln.head=mA,ln.hhea=tA,ln.hmtx=hA,ln.maxp=yA,ln.name=IA,ln["OS/2"]=dA,ln.post=xA,ln.fpgm=EA,ln.loca=WA,ln.prep=ge,ln["cvt "]=SA,ln.glyf=Be,ln["CFF "]=Re,ln.CFF2=Re,ln.VORG=ze,ln.EBLC=ir,ln.CBLC=ln.EBLC,ln.sbix=Dr,ln.COLR=wA,ln.CPAL=L,ln.BASE=be,ln.GDEF=nn,ln.GPOS=It,ln.GSUB=wa,ln.JSTF=ro,ln.HVAR=io,ln.DSIG=co,ln.gasp=go,ln.hdmx=Bo,ln.kern=ho,ln.LTSH=Co,ln.PCLT=Eo,ln.VDMX=Xo,ln.vhea=wo,ln.vmtx=Ko,ln.avar=vo,ln.bsln=ai,ln.feat=Fo,ln.fvar=Yo,ln.gvar=Uo,ln.just=zo,ln.morx=$o,ln.opbd=es;var ct,ns=new n.Struct({tag:new n.String(4),checkSum:n.uint32,offset:new n.Pointer(n.uint32,"void",{type:"global"}),length:n.uint32}),Vt=new n.Struct({tag:new n.String(4),numTables:n.uint16,searchRange:n.uint16,entrySelector:n.uint16,rangeShift:n.uint16,tables:new n.Array(ns,"numTables")});function Zt(nA,R){for(var V=0,p=nA.length-1;V<=p;){var x=V+p>>1,S=R(nA[x]);if(S<0)p=x-1;else{if(!(S>0))return x;V=x+1}}return-1}function Kt(nA,R){for(var V=[];nA>1;if(pgA.endCode.get(jA))){var se=gA.idRangeOffset.get(jA),ee=void 0;if(0===se)ee=p+gA.idDelta.get(jA);else{var ue=se/2+(p-gA.startCode.get(jA))-(gA.segCount-jA);0!==(ee=gA.glyphIndexArray.get(ue)||0)&&(ee+=gA.idDelta.get(jA))}return 65535&ee}sA=jA+1}}return 0;case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return gA.glyphIndices.get(p-gA.firstCode)||0;case 12:case 13:for(var Pe=0,Qe=gA.nGroups-1;Pe<=Qe;){var Ge=Pe+Qe>>1,An=gA.groups.get(Ge);if(pAn.endCharCode))return 12===gA.version?An.glyphID+(p-An.startCharCode):An.glyphID;Pe=Ge+1}}return 0;case 14:throw new Error("TODO: cmap format 14");default:throw new Error("Unknown cmap format ".concat(gA.version))}},R.getVariationSelector=function(p,x){if(!this.uvs)return 0;var S=this.uvs.varSelectors.toArray(),eA=Zt(S,function(gA){return x-gA.varSelector}),lA=S[eA];return-1!==eA&&lA.defaultUVS&&(eA=Zt(lA.defaultUVS,function(gA){return pgA.startUnicodeValue+gA.additionalCount?1:0})),-1!==eA&&lA.nonDefaultUVS&&-1!==(eA=Zt(lA.nonDefaultUVS,function(gA){return p-gA.unicodeValue}))?lA.nonDefaultUVS[eA].glyphID:0},R.getCharacterSet=function(){var p=this.cmap;switch(p.version){case 0:return Kt(0,p.codeMap.length);case 4:for(var x=[],S=p.endCode.toArray(),eA=0;eA=_e.glyphID&&p<=_e.glyphID+(_e.endCharCode-_e.startCharCode)&&Qe.push(_e.startCharCode+(p-_e.glyphID))}return Qe;case 13:for(var En,sn=[],Bn=a(x.groups.toArray());!(En=Bn()).done;){var Xn=En.value;p===Xn.glyphID&&sn.push.apply(sn,Kt(Xn.startCharCode,Xn.endCharCode+1))}return sn;default:throw new Error("Unknown cmap format ".concat(x.version))}},nA}()).prototype,"getCharacterSet",[Z],Object.getOwnPropertyDescriptor(ct.prototype,"getCharacterSet"),ct.prototype),w(ct.prototype,"codePointsForGlyph",[Z],Object.getOwnPropertyDescriptor(ct.prototype,"codePointsForGlyph"),ct.prototype),ct),ts=function(){function nA(V){this.kern=V.kern}var R=nA.prototype;return R.process=function(p,x){for(var S=0;S=0&&(sA=YA.pairs[jA].value);break;case 2:var ee=0;x>=YA.rightTable.firstGlyph&&x=YA.leftTable.firstGlyph&&p=YA.glyphCount||x>=YA.glyphCount)return 0;sA=YA.kernValue[YA.kernIndex[YA.leftClass[p]*YA.rightClassCount+YA.rightClass[x]]];break;default:throw new Error("Unsupported kerning sub-table format ".concat(gA.format))}gA.coverage.override?S=sA:S+=sA}}return S},nA}(),as=function(){function nA(V){this.font=V}var R=nA.prototype;return R.positionGlyphs=function(p,x){for(var S=0,eA=0,lA=0;lA1&&(gA.minX+=(lA.codePoints.length-1)*gA.width/lA.codePoints.length);for(var sA=-x[S].xAdvance,YA=0,jA=this.font.unitsPerEm/16,se=S+1;se<=eA;se++){var ee=p[se],ue=ee.cbox,Pe=x[se],Qe=this.getCombiningClass(ee.codePoints[0]);if("Not_Reordered"!==Qe){switch(Pe.xOffset=Pe.yOffset=0,Qe){case"Double_Above":case"Double_Below":Pe.xOffset+=gA.minX-ue.width/2-ue.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":Pe.xOffset+=gA.minX-ue.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":Pe.xOffset+=gA.maxX-ue.width-ue.minX;break;default:Pe.xOffset+=gA.minX+(gA.width-ue.width)/2-ue.minX}switch(Qe){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===Qe||"Attached_Below"===Qe)&&(gA.minY+=jA),Pe.yOffset=-gA.minY-ue.maxY,gA.minY+=ue.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===Qe||"Attached_Above_Right"===Qe)&&(gA.maxY+=jA),Pe.yOffset=gA.maxY-ue.minY,gA.maxY+=ue.height}Pe.xAdvance=Pe.yAdvance=0,Pe.xOffset+=sA,Pe.yOffset+=YA}else sA-=Pe.xAdvance,YA-=Pe.yAdvance}},R.getCombiningClass=function(p){var x=M.getCombiningClass(p);if(3584==(-256&p))if("Not_Reordered"===x)switch(p){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===p)return"Below_Right";switch(x){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 x},nA}(),Qt=function(){function nA(V,p,x,S){void 0===V&&(V=1/0),void 0===p&&(p=1/0),void 0===x&&(x=-1/0),void 0===S&&(S=-1/0),this.minX=V,this.minY=p,this.maxX=x,this.maxY=S}var R=nA.prototype;return R.addPoint=function(p,x){Math.abs(p)!==1/0&&(pthis.maxX&&(this.maxX=p)),Math.abs(x)!==1/0&&(xthis.maxY&&(this.maxY=x))},R.copy=function(){return new nA(this.minX,this.minY,this.maxX,this.maxY)},o(nA,[{key:"width",get:function(){return this.maxX-this.minX}},{key:"height",get:function(){return this.maxY-this.minY}}])}(),pt={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"},pa={};for(var va in pt){var Ia=pt[va];if(Array.isArray(Ia))for(var si,is=a(Ia);!(si=is()).done;)pa[si.value]=va;else pa[Ia]=va}var gs={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 Ma(nA){return gs[nA]?"rtl":"ltr"}for(var us=function(){return o(function nA(R,V,p,x,S){if(this.glyphs=R,this.positions=null,this.script=p,this.language=x||null,this.direction=S||Ma(p),this.features={},Array.isArray(V))for(var lA,eA=a(V);!(lA=eA()).done;)this.features[lA.value]=!0;else"object"==typeof V&&(this.features=V)},[{key:"advanceWidth",get:function(){for(var x,V=0,p=a(this.positions);!(x=p()).done;)V+=x.value.xAdvance;return V}},{key:"advanceHeight",get:function(){for(var x,V=0,p=a(this.positions);!(x=p()).done;)V+=x.value.yAdvance;return V}},{key:"bbox",get:function(){for(var V=new Qt,p=0,x=0,S=0;S>1]).firstGlyph)return null;if(plA.lastGlyph))return 2===this.table.version?lA.value:lA.values[p-lA.firstGlyph];x=eA+1}}return null;case 6:for(var gA=0,sA=this.table.binarySearchHeader.nUnits-1;gA<=sA;){var eA,lA;if(65535===(lA=this.table.segments[eA=gA+sA>>1]).glyph)return null;if(plA.glyph))return lA.value;gA=eA+1}}return null;case 8:return this.table.values[p-this.table.firstGlyph];default:throw new Error("Unknown lookup table format: ".concat(this.table.version))}},R.glyphsForValue=function(p){var x=[];switch(this.table.version){case 2:case 4:for(var eA,S=a(this.table.segments);!(eA=S()).done;){var lA=eA.value;if(2===this.table.version&&lA.value===p)x.push.apply(x,Kt(lA.firstGlyph,lA.lastGlyph+1));else for(var gA=0;gA=-1;){var sA=null,YA=1,jA=!0;lA===p.length||-1===lA?YA=0:65535===(sA=p[lA]).id?YA=2:null==(YA=this.lookupTable.lookup(sA.id))&&(YA=1);var se=this.stateTable.stateArray.getItem(eA),ue=this.stateTable.entryTable.getItem(se[YA]);0!==YA&&2!==YA&&(S(sA,ue,lA),jA=!(16384&ue.flags)),eA=ue.newState,jA&&(lA+=gA)}return p},R.traverse=function(p,x,S){if(void 0===x&&(x=0),void 0===S&&(S=new Set),!S.has(x)){S.add(x);for(var eA=this.stateTable,lA=eA.nClasses,sA=eA.entryTable,YA=eA.stateArray.getItem(x),jA=4;jA=0;)65535===p[Qe].id&&p.splice(Qe,1),Qe--;return p},R.processSubtable=function(p,x){if(this.subtable=p,this.glyphs=x,4!==this.subtable.type){this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;var S=this.getStateMachine(p),eA=this.getProcessor();return S.process(this.glyphs,!!(4194304&this.subtable.coverage),eA)}this.processNoncontextualSubstitutions(this.subtable,this.glyphs)},R.getStateMachine=function(p){return new Cs(p.table.stateTable)},R.getProcessor=function(){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: ".concat(this.subtable.type))}},R.processIndicRearragement=function(p,x,S){32768&x.flags&&(this.firstGlyph=S),8192&x.flags&&(this.lastGlyph=S),function Ds(nA,R,V,p){switch(R){case 0:return nA;case 1:return pr(nA,[V,1],[p,0]);case 2:return pr(nA,[V,0],[p,1]);case 3:return pr(nA,[V,1],[p,1]);case 4:return pr(nA,[V,2],[p,0]);case 5:return pr(nA,[V,2],[p,0],!0,!1);case 6:return pr(nA,[V,0],[p,2]);case 7:return pr(nA,[V,0],[p,2],!1,!0);case 8:return pr(nA,[V,1],[p,2]);case 9:return pr(nA,[V,1],[p,2],!1,!0);case 10:return pr(nA,[V,2],[p,1]);case 11:return pr(nA,[V,2],[p,1],!0,!1);case 12:return pr(nA,[V,2],[p,2]);case 13:return pr(nA,[V,2],[p,2],!0,!1);case 14:return pr(nA,[V,2],[p,2],!1,!0);case 15:return pr(nA,[V,2],[p,2],!0,!0);default:throw new Error("Unknown verb: ".concat(R))}}(this.glyphs,15&x.flags,this.firstGlyph,this.lastGlyph)},R.processContextualSubstitution=function(p,x,S){var eA=this.subtable.table.substitutionTable.items;if(65535!==x.markIndex){var lA=eA.getItem(x.markIndex);(sA=new Aa(lA).lookup((p=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(sA,p.codePoints))}if(65535!==x.currentIndex){var sA,YA=eA.getItem(x.currentIndex);(sA=new Aa(YA).lookup((p=this.glyphs[S]).id))&&(this.glyphs[S]=this.font.getGlyph(sA,p.codePoints))}32768&x.flags&&(this.markedGlyph=S)},R.processLigature=function(p,x,S){if(32768&x.flags&&this.ligatureStack.push(S),8192&x.flags){for(var eA,lA=this.subtable.table.ligatureActions,gA=this.subtable.table.components,sA=this.subtable.table.ligatureList,YA=x.action,jA=!1,se=0,ee=[],ue=[];!jA;){var Pe,Qe=this.ligatureStack.pop();(Pe=ee).unshift.apply(Pe,this.glyphs[Qe].codePoints);var Ge=lA.getItem(YA++);jA=!!(2147483648&Ge);var An=!!(1073741824&Ge),_e=(1073741823&Ge)<<2>>2;if(se+=gA.getItem(_e+=this.glyphs[Qe].id),jA||An){var Bn=sA.getItem(se);this.glyphs[Qe]=this.font.getGlyph(Bn,ee),ue.push(Qe),se=0,ee=[]}else this.glyphs[Qe]=this.font.getGlyph(65535)}(eA=this.ligatureStack).push.apply(eA,ue)}},R.processNoncontextualSubstitutions=function(p,x,S){var eA=new Aa(p.table.lookupTable);for(S=0;S>>5,!!(1024&x.flags)),65535!==x.currentInsertIndex&&this._insertGlyphs(S,x.currentInsertIndex,(992&x.flags)>>>5,!!(2048&x.flags))},R.getSupportedFeatures=function(){for(var S,p=[],x=a(this.morx.chains);!(S=x()).done;)for(var gA,lA=a(S.value.features);!(gA=lA()).done;){var sA=gA.value;p.push([sA.featureType,sA.featureSetting])}return p},R.generateInputs=function(p){return this.inputCache||this.generateInputCache(),this.inputCache[p]||[]},R.generateInputCache=function(){this.inputCache={};for(var x,p=a(this.morx.chains);!(x=p()).done;)for(var gA,S=x.value,eA=S.defaultFlags,lA=a(S.subtables);!(gA=lA()).done;){var sA=gA.value;sA.subFeatureFlags&eA&&this.generateInputsForSubtable(sA)}},R.generateInputsForSubtable=function(p){var x=this;if(2===p.type){if(4194304&p.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=p,this.ligatureStack=[];var eA=this.getStateMachine(p),lA=this.getProcessor(),gA=[],sA=[];this.glyphs=[],eA.traverse({enter:function(jA,se){var ee=x.glyphs;sA.push({glyphs:ee.slice(),ligatureStack:x.ligatureStack.slice()});var ue=x.font.getGlyph(jA);gA.push(ue),ee.push(gA[gA.length-1]),lA(ee[ee.length-1],se,ee.length-1);for(var Pe=0,Qe=0,Ge=0;Ge0&&p.applyFeatures(gA,x,S)}},nA}(),Fa=["rvrn"],xs=["ccmp","locl","rlig","mark","mkmk"],Ns=["frac","numr","dnom"],Ys=["calt","clig","liga","rclt","curs","kern"],Ts={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]},lt=function(){function nA(){}return nA.plan=function(V,p,x){this.planPreprocessing(V),this.planFeatures(V),this.planPostprocessing(V,x),V.assignGlobalFeatures(p),this.assignFeatures(V,p)},nA.planPreprocessing=function(V){V.add({global:[].concat(Fa,Ts[V.direction]),local:Ns})},nA.planFeatures=function(V){},nA.planPostprocessing=function(V,p){V.add([].concat(xs,Ys)),V.setFeatureOverrides(p)},nA.assignFeatures=function(V,p){for(var x=0;x0&&M.isDigit(p[eA-1].codePoints[0]);)p[eA-1].features.numr=!0,p[eA-1].features.frac=!0,eA--;for(;lAthis.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]},R.next=function(){return this.move(1)},R.prev=function(){return this.move(-1)},R.peek=function(p){void 0===p&&(p=1);var x=this.index,S=this.increment(p);return this.index=x,S},R.peekIndex=function(p){void 0===p&&(p=1);var x=this.index;this.increment(p);var S=this.index;return this.index=x,S},R.increment=function(p){void 0===p&&(p=1);var x=p<0?-1:1;for(p=Math.abs(p);p--;)this.move(x);return this.glyphs[this.index]},o(nA,[{key:"cur",get:function(){return this.glyphs[this.index]||null}}])}(),Gs=["DFLT","dflt","latn"],ta=function(){function nA(V,p){this.font=V,this.table=p,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=V._variationProcessor?this.findVariationsIndex(V._variationProcessor.normalizedCoords):-1,this.selectScript(),this.glyphs=[],this.positions=[],this.ligatureID=1,this.currentFeature=null}var R=nA.prototype;return R.findScript=function(p){if(null==this.table.scriptList)return null;Array.isArray(p)||(p=[p]);for(var S,x=a(p);!(S=x()).done;)for(var gA,eA=S.value,lA=a(this.table.scriptList);!(gA=lA()).done;){var sA=gA.value;if(sA.tag===eA)return sA}return null},R.selectScript=function(p,x,S){var lA,eA=!1;if(!this.script||p!==this.scriptTag){if((lA=this.findScript(p))||(lA=this.findScript(Gs)),!lA)return this.scriptTag;this.scriptTag=lA.tag,this.script=lA.script,this.language=null,this.languageTag=null,eA=!0}if((!S||S!==this.direction)&&(this.direction=S||Ma(p)),x&&x.length<4&&(x+=" ".repeat(4-x.length)),!x||x!==this.languageTag){this.language=null;for(var sA,gA=a(this.script.langSysRecords);!(sA=gA()).done;){var YA=sA.value;if(YA.tag===x){this.language=YA.langSys,this.languageTag=YA.tag;break}}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),eA=!0}if(eA&&(this.features={},this.language))for(var se,jA=a(this.language.featureIndexes);!(se=jA()).done;){var ee=se.value,ue=this.table.featureList[ee],Pe=this.substituteFeatureForVariations(ee);this.features[ue.tag]=Pe||ue.feature}return this.scriptTag},R.lookupsForFeatures=function(p,x){void 0===p&&(p=[]);for(var lA,S=[],eA=a(p);!(lA=eA()).done;){var gA=lA.value,sA=this.features[gA];if(sA)for(var jA,YA=a(sA.lookupListIndexes);!(jA=YA()).done;){var se=jA.value;x&&-1!==x.indexOf(se)||S.push({feature:gA,index:se,lookup:this.table.lookupList.get(se)})}}return S.sort(function(ee,ue){return ee.index-ue.index}),S},R.substituteFeatureForVariations=function(p){if(-1===this.variationsIndex)return null;for(var lA,eA=a(this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions);!(lA=eA()).done;){var gA=lA.value;if(gA.featureIndex===p)return gA.alternateFeatureTable}return null},R.findVariationsIndex=function(p){var x=this.table.featureVariations;if(!x)return-1;for(var S=x.featureVariationRecords,eA=0;eA=0})},R.getClassID=function(p,x){switch(x.version){case 1:var S=p-x.startGlyph;if(S>=0&&S0&&this.codePoints.every(M.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}}])}(),Ci=function(nA){function R(){return nA.apply(this,arguments)||this}return f(R,nA),R.planFeatures=function(p){p.add(["ljmo","vjmo","tjmo"],!1)},R.assignFeatures=function(p,x){for(var S=0,eA=0;eAht){var se=Tt(V,eA,p.features);se.features.tjmo=!0,jA.push(se)}return nA.splice.apply(nA,[R,1].concat(jA)),R+jA.length-1}function i0(nA,R,V){var gA,sA,YA,jA,p=nA[R],S=la(nA[R].codePoints[0]),eA=nA[R-1].codePoints[0],lA=la(eA);if(lA===ca&&S===Ya)gA=eA,jA=p;else{S===sa?(sA=nA[R-1],YA=p):(sA=nA[R-2],YA=nA[R-1],jA=p);var se=sA.codePoints[0],ee=YA.codePoints[0];$s(se)&&A0(ee)&&(gA=vt+((se-aa)*oa+(ee-ia))*Yt)}var ue=jA&&jA.codePoints[0]||ht;if(null!=gA&&(ue===ht||e0(ue))){var Pe=gA+(ue-ht);if(V.hasGlyphForCodePoint(Pe)){var Qe=lA===sa?3:2;return nA.splice(R-Qe+1,Qe,Tt(V,Pe,p.features)),R-Qe+1}}return sA&&(sA.features.ljmo=!0),YA&&(YA.features.vjmo=!0),jA&&(jA.features.tjmo=!0),lA===ca?(Xi(nA,R-1,V),R+1):R}function s0(nA,R,V){var p=nA[R];if(0!==V.glyphForCodePoint(nA[R].codePoints[0]).advanceWidth){var eA=function o0(nA){switch(la(nA)){case ca:case Pi:return 1;case sa:return 2;case Ya:return 3}}(nA[R-1].codePoints[0]);return nA.splice(R,1),nA.splice(R-eA,0,p)}}function c0(nA,R,V){var p=nA[R],x=nA[R].codePoints[0];if(V.hasGlyphForCodePoint(Ei)){var S=Tt(V,Ei,p.features),eA=0===V.glyphForCodePoint(x).advanceWidth?R:R+1;nA.splice(eA,0,S),R++}return R}var ua={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:[!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!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],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"]]},Qn_X=1,Qn_N=8,Qn_H=16,Qn_ZWNJ=32,Qn_ZWJ=64,Qn_M=128,Qn_RS=8192,Qn_Repha=32768,Qn_Ra=65536,Qn_CM=1<<17,rn={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},C0=2|Qn_Ra|Qn_CM|4|2048|4096,Ki=Qn_ZWJ|Qn_ZWNJ,bt=Qn_H|16384,Qi={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:rn.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:rn.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:rn.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:rn.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:rn.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:rn.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:rn.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:rn.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:rn.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:rn.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:rn.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},d0={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},E0=ua.decompositions,pi=new N(g("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","base64")),P0=new Q({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:[!1,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!1,!1,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0],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"]]}),fr=function(nA){function R(){return nA.apply(this,arguments)||this}return f(R,nA),R.planFeatures=function(p){p.addStage(X0),p.addStage(["locl","ccmp"]),p.addStage(K0),p.addStage("nukt"),p.addStage("akhn"),p.addStage("rphf",!1),p.addStage("rkrf"),p.addStage("pref",!1),p.addStage("blwf",!1),p.addStage("abvf",!1),p.addStage("half",!1),p.addStage("pstf",!1),p.addStage("vatu"),p.addStage("cjct"),p.addStage("cfar",!1),p.addStage(Q0),p.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),p.unicodeScript=function ss(nA){return pa[nA]}(p.script),p.indicConfig=Qi[p.unicodeScript]||Qi.Default,p.isOldSpec=p.indicConfig.hasOldSpec&&"2"!==p.script[p.script.length-1]},R.assignFeatures=function(p,x){for(var S=function(gA){var sA=x[gA].codePoints[0],YA=d0[sA]||E0[sA];if(YA){var jA=YA.map(function(se){var ee=p.font.glyphForCodePoint(se);return new tt(p.font,ee.id,[se],x[gA].features)});x.splice.apply(x,[gA,1].concat(jA))}},eA=x.length-1;eA>=0;eA--)S(eA)},R}(lt);function Sa(nA){return pi.get(nA.codePoints[0])>>8}function vi(nA){return 1<<(255&pi.get(nA.codePoints[0]))}b(fr,"zeroMarkWidths","NONE");var Ba=function(R,V,p,x){this.category=R,this.position=V,this.syllableType=p,this.syllable=x};function X0(nA,R){for(var S,V=0,p=0,x=a(P0.match(R.map(Sa)));!(S=x()).done;){var eA=S.value,lA=eA[0],gA=eA[1],sA=eA[2];if(lA>p){++V;for(var YA=p;YAGe);break;case"First":for(var Xn=(Qe=sA)+1;Xnyn&&!(Ct(R[jn])||er&&R[jn].shaperInfo.category===Qn_H);jn--);if(R[jn].shaperInfo.category!==Qn_H&&jn>yn){var Kn=R[yn];R.splice.apply(R,[yn,0].concat(R.splice(yn+1,jn-yn))),R[jn]=Kn}break}for(var Gn=rn.Start,nr=sA;nrsA;rr--)if(R[rr-1].shaperInfo.position!==rn.Pre_M){dn.position=R[rr-1].shaperInfo.position;break}}else dn.position!==rn.SMVD&&(Gn=dn.position)}for(var br=Qe,hr=Qe+1;hrsA&&!Ct(R[Rr]))}}}}function Q0(nA,R,V){for(var p=V.indicConfig,x=nA._layoutEngine.engine.GSUBProcessor.features,S=0,eA=fa(R,0);S=rn.Base_C){if(lA&&gA+1rn.Base_C&&gA--;break}if(gA===eA&&SS&&!(R[jA].shaperInfo.category&(Qn_M|bt));)jA--;it(R[jA])&&R[jA].shaperInfo.position!==rn.Pre_M?jA+1S;se--)if(R[se-1].shaperInfo.position===rn.Pre_M){var ee=se-1;eeS&&R[Pe].shaperInfo.position===rn.SMVD;)Pe--;if(it(R[Pe]))for(var An=gA+1;AnS&&!(R[Bn-1].shaperInfo.category&(Qn_M|bt));)Bn--;if(Bn>S&&R[Bn-1].shaperInfo.category===Qn_M)for(var En=sn,Xn=gA+1;XnS&&it(R[Bn-1])&&Bn=nA.length)return R;for(var V=nA[R].shaperInfo.syllable;++R=0;eA--)S(eA)},R}(lt);function Mi(nA){return Ra.get(nA.codePoints[0])}b(Pn,"zeroMarkWidths","BEFORE_GPOS");var I0=function(R,V,p){this.category=R,this.syllableType=V,this.syllable=p};function M0(nA,R){for(var x,V=0,p=a(v0.match(R.map(Mi)));!(x=p()).done;){var S=x.value,eA=S[0],lA=S[1],gA=S[2];++V;for(var sA=eA;sA<=lA;sA++)R[sA].shaperInfo=new I0(p0[Mi(R[sA])],gA[0],V);for(var YA="R"===R[eA].shaperInfo.category?1:Math.min(3,lA-eA),jA=eA;jA1)for(S=p+1;S=nA.length)return R;for(var V=nA[R].shaperInfo.syllable;++R=0;Ur--)this.glyphs.splice(Bn[Ur],1);return this.glyphs[this.glyphIterator.index]=er,!0}}return!1;case 5:return this.applyContext(S);case 6:return this.applyChainingContext(S);case 7:return this.applyLookup(S.lookupType,S.extension);default:throw new Error("GSUB lookupType ".concat(x," is not supported"))}},R}(ta),T0=function(nA){function R(){return nA.apply(this,arguments)||this}f(R,nA);var V=R.prototype;return V.applyPositionValue=function(x,S){var eA=this.positions[this.glyphIterator.peekIndex(x)];null!=S.xAdvance&&(eA.xAdvance+=S.xAdvance),null!=S.yAdvance&&(eA.yAdvance+=S.yAdvance),null!=S.xPlacement&&(eA.xOffset+=S.xPlacement),null!=S.yPlacement&&(eA.yOffset+=S.yPlacement);var lA=this.font._variationProcessor,gA=this.font.GDEF&&this.font.GDEF.itemVariationStore;lA&&gA&&(S.xPlaDevice&&(eA.xOffset+=lA.getDelta(gA,S.xPlaDevice.a,S.xPlaDevice.b)),S.yPlaDevice&&(eA.yOffset+=lA.getDelta(gA,S.yPlaDevice.a,S.yPlaDevice.b)),S.xAdvDevice&&(eA.xAdvance+=lA.getDelta(gA,S.xAdvDevice.a,S.xAdvDevice.b)),S.yAdvDevice&&(eA.yAdvance+=lA.getDelta(gA,S.yAdvDevice.a,S.yAdvDevice.b)))},V.applyLookup=function(x,S){switch(x){case 1:var eA=this.coverageIndex(S.coverage);if(-1===eA)return!1;switch(S.version){case 1:this.applyPositionValue(0,S.value);break;case 2:this.applyPositionValue(0,S.values.get(eA))}return!0;case 2:var lA=this.glyphIterator.peek();if(!lA)return!1;var gA=this.coverageIndex(S.coverage);if(-1===gA)return!1;switch(S.version){case 1:for(var jA,YA=a(S.pairSets.get(gA));!(jA=YA()).done;){var se=jA.value;if(se.secondGlyph===lA.id)return this.applyPositionValue(0,se.value1),this.applyPositionValue(1,se.value2),!0}return!1;case 2:var ee=this.getClassID(this.glyphIterator.cur.id,S.classDef1),ue=this.getClassID(lA.id,S.classDef2);if(-1===ee||-1===ue)return!1;var Pe=S.classRecords.get(ee).get(ue);return this.applyPositionValue(0,Pe.value1),this.applyPositionValue(1,Pe.value2),!0}case 3:var Qe=this.glyphIterator.peekIndex(),Ge=this.glyphs[Qe];if(!Ge)return!1;var An=S.entryExitRecords[this.coverageIndex(S.coverage)];if(!An||!An.exitAnchor)return!1;var _e=S.entryExitRecords[this.coverageIndex(S.coverage,Ge.id)];if(!_e||!_e.entryAnchor)return!1;var sn=this.getAnchor(_e.entryAnchor),Bn=this.getAnchor(An.exitAnchor),En=this.positions[this.glyphIterator.index],Xn=this.positions[Qe];switch(this.direction){case"ltr":En.xAdvance=Bn.x+En.xOffset;var Wn=sn.x+Xn.xOffset;Xn.xAdvance-=Wn,Xn.xOffset-=Wn;break;case"rtl":En.xAdvance-=Wn=Bn.x+En.xOffset,En.xOffset-=Wn,Xn.xAdvance=sn.x+Xn.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=Qe,En.yOffset=sn.y-Bn.y):(Ge.cursiveAttachment=this.glyphIterator.index,En.yOffset=Bn.y-sn.y),!0;case 4:var sr=this.coverageIndex(S.markCoverage);if(-1===sr)return!1;for(var Ln=this.glyphIterator.index;--Ln>=0&&(this.glyphs[Ln].isMark||this.glyphs[Ln].ligatureComponent>0););if(Ln<0)return!1;var Cn=this.coverageIndex(S.baseCoverage,this.glyphs[Ln].id);if(-1===Cn)return!1;var er=S.markArray[sr];return this.applyAnchor(er,S.baseArray[Cn][er.class],Ln),!0;case 5:var jn=this.coverageIndex(S.markCoverage);if(-1===jn)return!1;for(var Kn=this.glyphIterator.index;--Kn>=0&&this.glyphs[Kn].isMark;);if(Kn<0)return!1;var Gn=this.coverageIndex(S.ligatureCoverage,this.glyphs[Kn].id);if(-1===Gn)return!1;var nr=S.ligatureArray[Gn],dn=this.glyphIterator.cur,rr=this.glyphs[Kn],br=rr.ligatureID&&rr.ligatureID===dn.ligatureID&&dn.ligatureComponent>0?Math.min(dn.ligatureComponent,rr.codePoints.length)-1:rr.codePoints.length-1,hr=S.markArray[jn];return this.applyAnchor(hr,nr[br][hr.class],Kn),!0;case 6:var Nr=this.coverageIndex(S.mark1Coverage);if(-1===Nr)return!1;var Ur=this.glyphIterator.peekIndex(-1),vr=this.glyphs[Ur];if(!vr||!vr.isMark)return!1;var Sr=this.glyphIterator.cur,Cr=!1;if(Sr.ligatureID===vr.ligatureID?Sr.ligatureID?Sr.ligatureComponent===vr.ligatureComponent&&(Cr=!0):Cr=!0:(Sr.ligatureID&&!Sr.ligatureComponent||vr.ligatureID&&!vr.ligatureComponent)&&(Cr=!0),!Cr)return!1;var zr=this.coverageIndex(S.mark2Coverage,vr.id);if(-1===zr)return!1;var vn=S.mark1Array[Nr];return this.applyAnchor(vn,S.mark2Array[zr][vn.class],Ur),!0;case 7:return this.applyContext(S);case 8:return this.applyChainingContext(S);case 9:return this.applyLookup(S.lookupType,S.extension);default:throw new Error("Unsupported GPOS table: ".concat(x))}},V.applyAnchor=function(x,S,eA){var lA=this.getAnchor(S),gA=this.getAnchor(x.markAnchor),YA=this.positions[this.glyphIterator.index];YA.xOffset=lA.x-gA.x,YA.yOffset=lA.y-gA.y,this.glyphIterator.cur.markAttachment=eA},V.getAnchor=function(x){var S=x.xCoordinate,eA=x.yCoordinate,lA=this.font._variationProcessor,gA=this.font.GDEF&&this.font.GDEF.itemVariationStore;return lA&&gA&&(x.xDeviceTable&&(S+=lA.getDelta(gA,x.xDeviceTable.a,x.xDeviceTable.b)),x.yDeviceTable&&(eA+=lA.getDelta(gA,x.yDeviceTable.a,x.yDeviceTable.b))),{x:S,y:eA}},V.applyFeatures=function(x,S,eA){nA.prototype.applyFeatures.call(this,x,S,eA);for(var lA=0;lA>16;if(0===x)switch(p>>8){case 0:return 173===p;case 3:return 847===p;case 6:return 1564===p;case 23:return 6068<=p&&p<=6069;case 24:return 6155<=p&&p<=6158;case 32:return 8203<=p&&p<=8207||8234<=p&&p<=8238||8288<=p&&p<=8303;case 254:return 65024<=p&&p<=65039||65279===p;case 255:return 65520<=p&&p<=65528;default:return!1}else switch(x){case 1:return 113824<=p&&p<=113827||119155<=p&&p<=119162;case 14:return 917504<=p&&p<=921599;default:return!1}},R.getAvailableFeatures=function(p,x){var S=[];return this.engine&&S.push.apply(S,this.engine.getAvailableFeatures(p,x)),this.font.kern&&-1===S.indexOf("kern")&&S.push("kern"),S},R.stringsForGlyph=function(p){for(var lA,x=new Set,eA=a(this.font._cmapProcessor.codePointsForGlyph(p));!(lA=eA()).done;)x.add(String.fromCodePoint(lA.value));if(this.engine&&this.engine.stringsForGlyph)for(var YA,sA=a(this.engine.stringsForGlyph(p));!(YA=sA()).done;)x.add(YA.value);return Array.from(x)},nA}(),S0={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"},ma=function(){function nA(){this.commands=[],this._bbox=null,this._cbox=null}var R=nA.prototype;return R.toFunction=function(){var p=this;return function(x){p.commands.forEach(function(S){return x[S.command].apply(x,S.args)})}},R.toSVG=function(){return this.commands.map(function(x){var S=x.args.map(function(eA){return Math.round(100*eA)/100});return"".concat(S0[x.command]).concat(S.join(" "))}).join("")},R.mapPoints=function(p){for(var eA,x=new nA,S=a(this.commands);!(eA=S()).done;){for(var lA=eA.value,gA=[],sA=0;sA0&&this.codePoints.every(M.isMark),this.isLigature=this.codePoints.length>1}var R=nA.prototype;return R._getPath=function(){return new ma},R._getCBox=function(){return this.path.cbox},R._getBBox=function(){return this.path.bbox},R._getTableMetrics=function(p){if(this.id"u"||null===p)&&(p=this.cbox),(YA=this._font["OS/2"])&&YA.version>0)gA=Math.abs(YA.typoAscender-YA.typoDescender),sA=YA.typoAscender-p.maxY;else{var jA=this._font.hhea;gA=Math.abs(jA.ascent-jA.descent),sA=jA.ascent-p.maxY}return this._font._variationProcessor&&this._font.HVAR&&(S+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:S,advanceHeight:gA,leftBearing:eA,topBearing:sA}},R.getScaledPath=function(p){return this.path.scale(1/this._font.unitsPerEm*p)},R._getName=function(){var p=this._font.post;if(!p)return null;switch(p.version){case 1:return St[this.id];case 2:var x=p.glyphNameIndex[this.id];return x0?this._decodeSimple(gA,eA):gA.numberOfContours<0&&this._decodeComposite(gA,eA,lA),gA},V._decodeSimple=function(x,S){x.points=[];var eA=new n.Array(n.uint16,x.numberOfContours).decode(S);x.instructions=new n.Array(n.uint8,n.uint16).decode(S);for(var lA=[],gA=eA[eA.length-1]+1;lA.length=0,0,0);x.points.push(ee)}var ue=0;for(se=0;se>1,sA.length=0}function er(jn,Kn){Ge&&gA.closePath(),gA.moveTo(jn,Kn),Ge=!0}var yn=function(){for(;S.pos1&&Ln(),ue+=sA.shift(),er(ee,ue);break;case 5:for(;sA.length>=2;)ee+=sA.shift(),ue+=sA.shift(),gA.lineTo(ee,ue);break;case 6:case 7:for(var Gn=6===Kn;sA.length>=1;)Gn?ee+=sA.shift():ue+=sA.shift(),gA.lineTo(ee,ue),Gn=!Gn;break;case 8:for(;sA.length>0;){var vn=ee+sA.shift(),Rn=ue+sA.shift(),xn=vn+sA.shift(),Vn=Rn+sA.shift();ee=xn+sA.shift(),ue=Vn+sA.shift(),gA.bezierCurveTo(vn,Rn,xn,Vn,ee,ue)}break;case 10:var nr=sA.pop()+En,dn=Bn[nr];if(dn){Qe[nr]=!0;var rr=S.pos,br=lA;S.pos=dn.offset,lA=dn.offset+dn.length,yn(),S.pos=rr,lA=br}break;case 11:if(x.version>=2)break;return;case 14:if(x.version>=2)break;sA.length>0&&Ln(),Ge&&(gA.closePath(),Ge=!1);break;case 15:if(x.version<2)throw new Error("vsindex operator not supported in CFF v1");Wn=sA.pop();break;case 16:if(x.version<2)throw new Error("blend operator not supported in CFF v1");if(!sr)throw new Error("blend operator in non-variation font");for(var hr=sr.getBlendVector(Xn,Wn),yr=sA.pop(),Nr=yr*hr.length,Ur=sA.length-Nr,vr=Ur-yr,Sr=0;Sr>3;break;case 21:sA.length>2&&Ln(),ee+=sA.shift(),ue+=sA.shift(),er(ee,ue);break;case 22:sA.length>1&&Ln(),er(ee+=sA.shift(),ue);break;case 24:for(;sA.length>=8;)vn=ee+sA.shift(),Rn=ue+sA.shift(),xn=vn+sA.shift(),Vn=Rn+sA.shift(),ee=xn+sA.shift(),ue=Vn+sA.shift(),gA.bezierCurveTo(vn,Rn,xn,Vn,ee,ue);ee+=sA.shift(),ue+=sA.shift(),gA.lineTo(ee,ue);break;case 25:for(;sA.length>=8;)ee+=sA.shift(),ue+=sA.shift(),gA.lineTo(ee,ue);vn=ee+sA.shift(),Rn=ue+sA.shift(),xn=vn+sA.shift(),Vn=Rn+sA.shift(),ee=xn+sA.shift(),ue=Vn+sA.shift(),gA.bezierCurveTo(vn,Rn,xn,Vn,ee,ue);break;case 26:for(sA.length%2&&(ee+=sA.shift());sA.length>=4;)vn=ee,Rn=ue+sA.shift(),xn=vn+sA.shift(),Vn=Rn+sA.shift(),ee=xn,ue=Vn+sA.shift(),gA.bezierCurveTo(vn,Rn,xn,Vn,ee,ue);break;case 27:for(sA.length%2&&(ue+=sA.shift());sA.length>=4;)vn=ee+sA.shift(),Rn=ue,xn=vn+sA.shift(),Vn=Rn+sA.shift(),ee=xn+sA.shift(),gA.bezierCurveTo(vn,Rn,xn,Vn,ee,ue=Vn);break;case 28:sA.push(S.readInt16BE());break;case 29:nr=sA.pop()+_e,(dn=An[nr])&&(Pe[nr]=!0,rr=S.pos,br=lA,S.pos=dn.offset,lA=dn.offset+dn.length,yn(),S.pos=rr,lA=br);break;case 30:case 31:for(Gn=31===Kn;sA.length>=4;)Gn?(vn=ee+sA.shift(),Rn=ue,xn=vn+sA.shift(),Vn=Rn+sA.shift(),ue=Vn+sA.shift(),ee=xn+(1===sA.length?sA.shift():0)):(vn=ee,Rn=ue+sA.shift(),xn=vn+sA.shift(),Vn=Rn+sA.shift(),ee=xn+sA.shift(),ue=Vn+(1===sA.length?sA.shift():0)),gA.bezierCurveTo(vn,Rn,xn,Vn,ee,ue),Gn=!Gn;break;case 12:switch(Kn=S.readUInt8()){case 3:var zn=sA.pop(),lr=sA.pop();sA.push(zn&&lr?1:0);break;case 4:zn=sA.pop(),lr=sA.pop(),sA.push(zn||lr?1:0);break;case 5:zn=sA.pop(),sA.push(zn?0:1);break;case 9:zn=sA.pop(),sA.push(Math.abs(zn));break;case 10:zn=sA.pop(),lr=sA.pop(),sA.push(zn+lr);break;case 11:zn=sA.pop(),lr=sA.pop(),sA.push(zn-lr);break;case 12:zn=sA.pop(),lr=sA.pop(),sA.push(zn/lr);break;case 14:zn=sA.pop(),sA.push(-zn);break;case 15:zn=sA.pop(),lr=sA.pop(),sA.push(zn===lr?1:0);break;case 18:sA.pop();break;case 20:var za=sA.pop(),Rr=sA.pop();YA[Rr]=za;break;case 21:Rr=sA.pop(),sA.push(YA[Rr]||0);break;case 22:var Ha=sA.pop(),Ja=sA.pop(),bc=sA.pop(),Uc=sA.pop();sA.push(bc<=Uc?Ha:Ja);break;case 23:sA.push(Math.random());break;case 24:zn=sA.pop(),lr=sA.pop(),sA.push(zn*lr);break;case 26:zn=sA.pop(),sA.push(Math.sqrt(zn));break;case 27:zn=sA.pop(),sA.push(zn,zn);break;case 28:zn=sA.pop(),lr=sA.pop(),sA.push(lr,zn);break;case 29:(Rr=sA.pop())<0?Rr=0:Rr>sA.length-1&&(Rr=sA.length-1),sA.push(sA[Rr]);break;case 30:var da=sA.pop(),Lt=sA.pop();if(Lt>=0)for(;Lt>0;){for(var ja=sA[da-1],Ea=da-2;Ea>=0;Ea--)sA[Ea+1]=sA[Ea];sA[0]=ja,Lt--}else for(;Lt<0;){ja=sA[0];for(var Pa=0;Pa<=da;Pa++)sA[Pa]=sA[Pa+1];sA[da-1]=ja,Lt++}break;case 34:vn=ee+sA.shift(),Rn=ue,xn=vn+sA.shift(),Vn=Rn+sA.shift();var Gt=xn+sA.shift(),Ot=Vn,kt=Gt+sA.shift(),Wt=Ot,zt=kt+sA.shift(),Ht=Wt,Jt=zt+sA.shift(),jt=Ht;ee=Jt,ue=jt,gA.bezierCurveTo(vn,Rn,xn,Vn,Gt,Ot),gA.bezierCurveTo(kt,Wt,zt,Ht,Jt,jt);break;case 35:for(var Bt=[],ji=0;ji<=5;ji++)ee+=sA.shift(),ue+=sA.shift(),Bt.push(ee,ue);gA.bezierCurveTo.apply(gA,Bt.slice(0,6)),gA.bezierCurveTo.apply(gA,Bt.slice(6)),sA.shift();break;case 36:vn=ee+sA.shift(),Rn=ue+sA.shift(),xn=vn+sA.shift(),Wt=Ot=Vn=Rn+sA.shift(),zt=(kt=(Gt=xn+sA.shift())+sA.shift())+sA.shift(),Ht=Wt+sA.shift(),Jt=zt+sA.shift(),ee=Jt,ue=jt=Ht,gA.bezierCurveTo(vn,Rn,xn,Vn,Gt,Ot),gA.bezierCurveTo(kt,Wt,zt,Ht,Jt,jt);break;case 37:var Vi=ee,Zi=ue;Bt=[];for(var qi=0;qi<=4;qi++)ee+=sA.shift(),ue+=sA.shift(),Bt.push(ee,ue);Math.abs(ee-Vi)>Math.abs(ue-Zi)?(ee+=sA.shift(),ue=Zi):(ee=Vi,ue+=sA.shift()),Bt.push(ee,ue),gA.bezierCurveTo.apply(gA,Bt.slice(0,6)),gA.bezierCurveTo.apply(gA,Bt.slice(6));break;default:throw new Error("Unknown op: 12 ".concat(Kn))}break;default:throw new Error("Unknown op: ".concat(Kn))}else if(Kn<247)sA.push(Kn-139);else if(Kn<251){var Va=S.readUInt8();sA.push(256*(Kn-247)+Va+108)}else Kn<255?(Va=S.readUInt8(),sA.push(256*-(Kn-251)-Va-108)):sA.push(S.readInt32BE()/65536)}};return yn(),Ge&&gA.closePath(),gA},R}(ha),q0=new n.Struct({originX:n.uint16,originY:n.uint16,type:new n.String(4),data:new n.Buffer(function(nA){return nA.parent.buflen-nA._currentOffset})}),_0=function(nA){function R(){return nA.apply(this,arguments)||this}f(R,nA);var V=R.prototype;return V.getImageForSize=function(x){for(var S=0;S=x)break}var lA=eA.imageOffsets,gA=lA[this.id],sA=lA[this.id+1];return gA===sA?null:(this._font.stream.pos=gA,q0.decode(this._font.stream,{buflen:sA-gA}))},V.render=function(x,S){var eA=this.getImageForSize(S);null!=eA&&x.image(eA.data,{height:S,x:eA.originX,y:S/this._font.unitsPerEm*(this.bbox.minY-eA.originY)}),this._font.sbix.flags.renderOutlines&&nA.prototype.render.call(this,x,S)},R}(Ca),bi=function(R,V){this.glyph=R,this.color=V},$0=function(nA){function R(){return nA.apply(this,arguments)||this}f(R,nA);var V=R.prototype;return V._getBBox=function(){for(var x=new Qt,S=0;S>1;if(this.id<(sA=S.baseGlyphRecord[gA]).gid)lA=gA-1;else{if(!(this.id>sA.gid)){var YA=sA;break}eA=gA+1}}if(null==YA){var jA=this._font._getBaseGlyph(this.id);return[new bi(jA,se={red:0,green:0,blue:0,alpha:255})]}for(var ee=[],ue=YA.firstLayerIndex;ue=1&&x[S]=S.glyphCount)){var eA=S.offsets[p];if(eA!==S.offsets[p+1]){var lA=this.font.stream;if(lA.pos=eA,!(lA.pos>=lA.length)){var gA=lA.readUInt16BE(),sA=eA+lA.readUInt16BE();if(32768&gA){var YA=lA.pos;lA.pos=sA;var jA=this.decodePoints();sA=lA.pos,lA.pos=YA}var se=x.map(function(hr){return hr.copy()});gA&=4095;for(var ee=0;ee=S.globalCoordCount)throw new Error("Invalid gvar table");Qe=S.globalCoords[4095&Pe]}if(16384&Pe){for(var An=[],_e=0;_eeA[YA])return 0;sA=lA[YA]Math.max(0,x[YA]))return 0;sA=(sA*lA[YA]+Number.EPSILON)/(x[YA]+Number.EPSILON)}}return sA},R.interpolateMissingDeltas=function(p,x,S){if(0!==p.length)for(var eA=0;eAgA)){var YA=eA,jA=eA;for(eA++;eA<=gA;)S[eA]&&(this.deltaInterpolate(jA+1,eA-1,jA,eA,x,p),jA=eA),eA++;jA===YA?this.deltaShift(lA,gA,jA,x,p):(this.deltaInterpolate(jA+1,gA,jA,YA,x,p),YA>0&&this.deltaInterpolate(lA,YA-1,jA,YA,x,p)),eA=gA+1}}},R.deltaInterpolate=function(p,x,S,eA,lA,gA){if(!(p>x))for(var sA=["x","y"],YA=0;YAlA[eA][jA]){var se=S;S=eA,eA=se}var ee=lA[S][jA],ue=lA[eA][jA],Pe=gA[S][jA],Qe=gA[eA][jA];if(ee!==ue||Pe===Qe)for(var Ge=ee===ue?0:(Qe-Pe)/(ue-ee),An=p;An<=x;An++){var _e=lA[An][jA];_e<=ee?_e+=Pe-ee:_e>=ue?_e+=Qe-ue:_e=Pe+(_e-ee)*Ge,gA[An][jA]=_e}}},R.deltaShift=function(p,x,S,eA,lA){var gA=lA[S].x-eA[S].x,sA=lA[S].y-eA[S].y;if(0!==gA||0!==sA)for(var YA=p;YA<=x;YA++)YA!==S&&(lA[YA].x+=gA,lA[YA].y+=sA)},R.getAdvanceAdjustment=function(p,x){var S,eA;if(x.advanceWidthMapping){var lA=p;lA>=x.advanceWidthMapping.mapCount&&(lA=x.advanceWidthMapping.mapCount-1);var sA=x.advanceWidthMapping.mapData[lA];S=sA.outerIndex,eA=sA.innerIndex}else S=0,eA=p;return this.getDelta(x.itemVariationStore,S,eA)},R.getDelta=function(p,x,S){if(x>=p.itemVariationData.length)return 0;var eA=p.itemVariationData[x];if(S>=eA.deltaSets.length)return 0;for(var lA=eA.deltaSets[S],gA=this.getBlendVector(p,x),sA=0,YA=0;YAee.peakCoord||ee.peakCoord>ee.endCoord||ee.startCoord<0&&ee.endCoord>0&&0!==ee.peakCoord||0===ee.peakCoord?1:eA[se]ee.endCoord?0:eA[se]===ee.peakCoord?1:eA[se]=0&&V<=255?1:2},nA.encode=function(V,p){p>=0&&p<=255?V.writeUInt8(p):V.writeInt16BE(p)},nA}(),Oi=new n.Struct({numberOfContours:n.int16,xMin:n.int16,yMin:n.int16,xMax:n.int16,yMax:n.int16,endPtsOfContours:new n.Array(n.uint16,"numberOfContours"),instructions:new n.Array(n.uint8,n.uint16),flags:new n.Array(n.uint8,0),xPoints:new n.Array(Gi,0),yPoints:new n.Array(Gi,0)}),mc=function(){function nA(){}var R=nA.prototype;return R.encodeSimple=function(p,x){void 0===x&&(x=[]);for(var S=[],eA=[],lA=[],gA=[],sA=0,YA=0,jA=0,se=0,ee=0,ue=0;ue0&&(gA.push(sA),sA=0),gA.push(_e),se=_e),YA=Ge,jA=An,ee++}"closePath"===Pe.command&&S.push(ee-1)}p.commands.length>1&&"closePath"!==p.commands[p.commands.length-1].command&&S.push(ee-1);var Xn=p.bbox,Wn={numberOfContours:S.length,xMin:Xn.minX,yMin:Xn.minY,xMax:Xn.maxX,yMax:Xn.maxY,endPtsOfContours:S,instructions:x,flags:gA,xPoints:eA,yPoints:lA},sr=Oi.size(Wn),Ln=4-sr%4,Cn=new n.EncodeStream(sr+Ln);return Oi.encode(Cn,Wn),0!==Ln&&Cn.fill(0,Ln),Cn.buffer},R._encodePoint=function(p,x,S,eA,lA,gA){var sA=p-x;return p===x?eA|=gA:(-255<=sA&&sA<=255&&(eA|=lA,sA<0?sA=-sA:eA|=gA),S.push(sA)),eA},nA}(),hc=function(nA){function R(p){var x;return(x=nA.call(this,p)||this).glyphEncoder=new mc,x}f(R,nA);var V=R.prototype;return V._addGlyph=function(x){var S=this.font.getGlyph(x),eA=S._decode(),lA=this.font.loca.offsets[x],gA=this.font.loca.offsets[x+1],sA=this.font._getTableStream("glyf");sA.pos+=lA;var YA=sA.readBuffer(gA-lA);if(eA&&eA.numberOfContours<0){YA=g.from(YA);for(var se,jA=a(eA.components);!(se=jA()).done;){var ee=se.value;x=this.includeGlyph(ee.glyphID),YA.writeUInt16BE(x,ee.pos)}}else eA&&this.font._variationProcessor&&(YA=this.glyphEncoder.encodeSimple(S.path,eA.instructions));return this.glyf.push(YA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:S.advanceWidth,bearing:S._getMetrics().leftBearing}),this.offset+=YA.length,this.glyf.length-1},V.encode=function(x){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};for(var S=0;S255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},eA=Object.assign({},this.cff.topDict);eA.Private=null,eA.charset=S,eA.Encoding=null,eA.CharStrings=this.charstrings;for(var lA=0,gA=["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"];lA0&&Object.defineProperty(this,x,{get:this._getTable.bind(this,S)})}}nA.probe=function(p){var x=p.toString("ascii",0,4);return"true"===x||"OTTO"===x||"\0\x01\0\0"===x};var R=nA.prototype;return R.setDefaultLanguage=function(p){void 0===p&&(p=null),this.defaultLanguage=p},R._getTable=function(p){if(!(p.tag in this._tables))try{this._tables[p.tag]=this._decodeTable(p)}catch(x){K.logErrors&&(console.error("Error decoding table ".concat(p.tag)),console.error(x.stack))}return this._tables[p.tag]},R._getTableStream=function(p){var x=this.directory.tables[p];return x?(this.stream.pos=x.offset,this.stream):null},R._decodeDirectory=function(){return this.directory=Vt.decode(this.stream,{_startOffset:0})},R._decodeTable=function(p){var x=this.stream.pos,S=this._getTableStream(p.tag),eA=ln[p.tag].decode(S,this,p.length);return this.stream.pos=x,eA},R.getName=function(p,x){void 0===x&&(x=this.defaultLanguage||K.defaultLanguage);var S=this.name&&this.name.records[p];return S&&(S[x]||S[this.defaultLanguage]||S[K.defaultLanguage]||S.en||S[Object.keys(S)[0]])||null},R.hasGlyphForCodePoint=function(p){return!!this._cmapProcessor.lookup(p)},R.glyphForCodePoint=function(p){return this.getGlyph(this._cmapProcessor.lookup(p),[p])},R.glyphsForString=function(p){for(var x=[],S=p.length,eA=0,lA=-1,gA=-1;eA<=S;){var sA=0,YA=0;if(eA>>6&3},transformed:function(R){return"glyf"===R.tag||"loca"===R.tag?0===R.transformVersion:0!==R.transformVersion},transformLength:new n.Optional(Wi,function(nA){return nA.transformed})}),zi=new n.Struct({tag:new n.String(4),flavor:n.uint32,length:n.uint32,numTables:n.uint16,reserved:new n.Reserved(n.uint16),totalSfntSize:n.uint32,totalCompressedSize:n.uint32,majorVersion:n.uint16,minorVersion:n.uint16,metaOffset:n.uint32,metaLength:n.uint32,metaOrigLength:n.uint32,privOffset:n.uint32,privLength:n.uint32,tables:new n.Array(Xc,"numTables")});zi.process=function(){for(var nA={},R=0;R0){for(var sA=[],YA=0,jA=0;jA>7);if((sA&=127)<10)lA=0,gA=At(sA,((14&sA)<<7)+R.readUInt8());else if(sA<20)lA=At(sA,((sA-10&14)<<7)+R.readUInt8()),gA=0;else if(sA<84)lA=At(sA,1+(48&(jA=sA-20))+((se=R.readUInt8())>>4)),gA=At(sA>>1,1+((12&jA)<<2)+(15&se));else if(sA<120){var jA;lA=At(sA,1+((jA=sA-84)/12<<8)+R.readUInt8()),gA=At(sA>>1,1+(jA%12>>2<<8)+R.readUInt8())}else if(sA<124){var se=R.readUInt8(),ee=R.readUInt8();lA=At(sA,(se<<4)+(ee>>4)),gA=At(sA>>1,((15&ee)<<8)+R.readUInt8())}else lA=At(sA,R.readUInt16BE()),gA=At(sA>>1,R.readUInt16BE());S.push(new $r(YA,!1,x+=lA,p+=gA))}return S}var Mc=new n.VersionedStruct(n.uint32,{65536:{numFonts:n.uint32,offsets:new n.Array(n.uint32,"numFonts")},131072:{numFonts:n.uint32,offsets:new n.Array(n.uint32,"numFonts"),dsigTag:n.uint32,dsigLength:n.uint32,dsigOffset:n.uint32}}),Dc=function(){function nA(V){if(this.stream=V,"ttcf"!==V.readString(4))throw new Error("Not a TrueType collection");this.header=Mc.decode(V)}return nA.probe=function(p){return"ttcf"===p.toString("ascii",0,4)},nA.prototype.getFont=function(p){for(var S,x=a(this.header.offsets);!(S=x()).done;){var eA=S.value,lA=new n.DecodeStream(this.stream.buffer);lA.pos=eA;var gA=new dt(lA);if(gA.postscriptName===p)return gA}return null},o(nA,[{key:"fonts",get:function(){for(var S,p=[],x=a(this.header.offsets);!(S=x()).done;){var eA=S.value,lA=new n.DecodeStream(this.stream.buffer);lA.pos=eA,p.push(new dt(lA))}return p}}])}(),yc=new n.String(n.uint8),Fc=(new n.Struct({len:n.uint32,buf:new n.Buffer("len")}),new n.Struct({id:n.uint16,nameOffset:n.int16,attr:n.uint8,dataOffset:n.uint24,handle:n.uint32})),xc=new n.Struct({name:new n.String(4),maxTypeIndex:n.uint16,refList:new n.Pointer(n.uint16,new n.Array(Fc,function(nA){return nA.maxTypeIndex+1}),{type:"parent"})}),Nc=new n.Struct({length:n.uint16,types:new n.Array(xc,function(nA){return nA.length+1})}),Yc=new n.Struct({reserved:new n.Reserved(n.uint8,24),typeList:new n.Pointer(n.uint16,Nc),nameListOffset:new n.Pointer(n.uint16,"void")}),Ji=new n.Struct({dataOffset:n.uint32,map:new n.Pointer(n.uint32,Yc),dataLength:n.uint32,mapLength:n.uint32}),Tc=function(){function nA(V){this.stream=V,this.header=Ji.decode(this.stream);for(var x,p=a(this.header.map.typeList.types);!(x=p()).done;){for(var lA,S=x.value,eA=a(S.refList);!(lA=eA()).done;){var gA=lA.value;gA.nameOffset>=0?(this.stream.pos=gA.nameOffset+this.header.map.nameListOffset,gA.name=yc.decode(this.stream)):gA.name=null}"sfnt"===S.name&&(this.sfnt=S)}}return nA.probe=function(p){var x=new n.DecodeStream(p);try{var S=Ji.decode(x)}catch{return!1}for(var lA,eA=a(S.map.typeList.types);!(lA=eA()).done;)if("sfnt"===lA.value.name)return!0;return!1},nA.prototype.getFont=function(p){if(!this.sfnt)return null;for(var S,x=a(this.sfnt.refList);!(S=x()).done;){var gA=new n.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+S.value.dataOffset+4)),sA=new dt(gA);if(sA.postscriptName===p)return sA}return null},o(nA,[{key:"fonts",get:function(){for(var S,p=[],x=a(this.sfnt.refList);!(S=x()).done;){var gA=new n.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+S.value.dataOffset+4));p.push(new dt(gA))}return p}}])}();K.registerFormat(dt),K.registerFormat(Rt),K.registerFormat(wc),K.registerFormat(Dc),K.registerFormat(Tc),Y.exports=K},19304:function(Y,A,r){"use strict";var g=r(41209),i=r(32504),s=r(41783),o=s.BK,m=s.CR,u=s.LF,f=s.NL,B=s.SG,a=s.WJ,d=s.SP,h=s.ZWJ,E=s.BA,n=s.HY,C=s.NS,P=s.AI,M=s.AL,N=s.CJ,Q=s.HL,X=s.RI,D=s.SA,F=s.XX,y=r(98282),K=y.DI_BRK,v=y.IN_BRK,b=y.CI_BRK,w=y.CP_BRK,oA=y.pairTable,fA=new g(i.toByteArray("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")),_=function(zA){switch(zA){case P:case D:case B:case F:return M;case N:return C;default:return zA}},CA=function(zA){switch(zA){case u:case f:return o;case d:return a;default:return zA}},KA=function(zA,O){void 0===O&&(O=!1),this.position=zA,this.required=O};Y.exports=function(){function NA(O){this.string=O,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}var zA=NA.prototype;return zA.nextCodePoint=function(){var mA=this.string.charCodeAt(this.pos++),tA=this.string.charCodeAt(this.pos);return 55296<=mA&&mA<=56319&&56320<=tA&&tA<=57343?(this.pos++,1024*(mA-55296)+(tA-56320)+65536):mA},zA.nextCharClass=function(){return _(fA.get(this.nextCodePoint()))},zA.getSimpleBreak=function(){switch(this.nextClass){case d:return!1;case o:case u:case f:return this.curClass=o,!1;case m:return this.curClass=m,!1}return null},zA.getPairTableBreak=function(mA){var tA=!1;switch(oA[this.curClass][this.nextClass]){case K:tA=!0;break;case v:tA=mA===d;break;case b:if(!(tA=mA===d))return!1;break;case w:if(mA!==d)return tA}return this.LB8a&&(tA=!1),!this.LB21a||this.curClass!==n&&this.curClass!==E?this.LB21a=this.curClass===Q:(tA=!1,this.LB21a=!1),this.curClass===X?(this.LB30a++,2==this.LB30a&&this.nextClass===X&&(tA=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,tA},zA.nextBreak=function(){if(null==this.curClass){var mA=this.nextCharClass();this.curClass=CA(mA),this.nextClass=mA,this.LB8a=mA===h,this.LB30a=0}for(;this.pos=wA.length?{done:!0}:{done:!1,value:wA[z++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function D(wA,G){(null==G||G>wA.length)&&(G=wA.length);for(var L=0,z=Array(G);L0&&void 0!==arguments[0]?arguments[0]:{};this._items={},this.limits="boolean"!=typeof L.limits||L.limits}var G=wA.prototype;return G.add=function(z,H){return this._items[z]=H},G.get=function(z){return this._items[z]},G.toString=function(){var z=this,H=Object.keys(this._items).sort(function(Ke,ve){return z._compareKeys(Ke,ve)}),uA=["<<"];if(this.limits&&H.length>1){var qA=H[H.length-1];uA.push(" /Limits "+oA.convert([this._dataForKey(H[0]),this._dataForKey(qA)]))}uA.push(" /"+this._keysName()+" [");for(var he,ae=Q(H);!(he=ae()).done;){var Ee=he.value;uA.push(" "+oA.convert(this._dataForKey(Ee))+" "+oA.convert(this._items[Ee]))}return uA.push("]"),uA.push(">>"),uA.join("\n")},G._compareKeys=function(){throw new Error("Must be implemented by subclasses")},G._keysName=function(){throw new Error("Must be implemented by subclasses")},G._dataForKey=function(){throw new Error("Must be implemented by subclasses")},wA}(),v=function(G,L){return(Array(L+1).join("0")+G).slice(-L)},b=/[\n\r\t\b\f()\\]/g,w={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},oA=function(){function wA(){}return wA.convert=function(L){var z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof L)return"/"+L;if(L instanceof String){for(var H=L,uA=!1,XA=0,qA=H.length;XA127){uA=!0;break}var ae;return ae=uA?function(G){var L=G.length;if(1&L)throw new Error("Buffer length must be even");for(var z=0,H=L-1;z";if(L instanceof y||L instanceof K)return L.toString();if(L instanceof Date){var he="D:"+v(L.getUTCFullYear(),4)+v(L.getUTCMonth()+1,2)+v(L.getUTCDate(),2)+v(L.getUTCHours(),2)+v(L.getUTCMinutes(),2)+v(L.getUTCSeconds(),2)+"Z";return z&&(he=(he=z(g.from(he,"ascii")).toString("binary")).replace(b,function(Le){return w[Le]})),"("+he+")"}if(Array.isArray(L))return"["+L.map(function(Le){return wA.convert(Le,z)}).join(" ")+"]";if("[object Object]"==={}.toString.call(L)){var Ke=["<<"];for(var ve in L)Ke.push("/"+ve+" "+wA.convert(L[ve],z));return Ke.push(">>"),Ke.join("\n")}return"number"==typeof L?wA.number(L):""+L},wA.number=function(L){if(L>-1e21&&L<1e21)return Math.round(1e6*L)/1e6;throw new Error("unsupported number: "+L)},wA}(),q=function(wA){function G(z,H){var uA,XA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return(uA=wA.call(this)||this).document=z,uA.id=H,uA.data=XA,uA.gen=0,uA.compress=uA.document.compress&&!uA.data.Filter,uA.uncompressedLength=0,uA.buffer=[],uA}M(G,wA);var L=G.prototype;return L.write=function(H){if(g.isBuffer(H)||(H=g.from(H+"\n","binary")),this.uncompressedLength+=H.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(H),this.data.Length+=H.length,this.compress)return this.data.Filter="FlateDecode"},L.end=function(H){return H&&this.write(H),this.finalize()},L.finalize=function(){this.offset=this.document._offset;var H=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=g.concat(this.buffer),this.compress&&(this.buffer=s.default.deflateSync(this.buffer)),H&&(this.buffer=H(this.buffer)),this.data.Length=this.buffer.length),this.document._write(this.id+" "+this.gen+" obj"),this.document._write(oA.convert(this.data,H)),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)},L.toString=function(){return this.id+" "+this.gen+" R"},G}(y),fA={top:72,left:72,bottom:72,right:72},_={"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]},CA=function(){function wA(L){var z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.document=L,this.size=z.size||"letter",this.layout=z.layout||"portrait",this.margins="number"==typeof z.margin?{top:z.margin,left:z.margin,bottom:z.margin,right:z.margin}:z.margins||fA;var H=Array.isArray(this.size)?this.size:_[this.size.toUpperCase()];this.width=H["portrait"===this.layout?0:1],this.height=H["portrait"===this.layout?1:0],this.content=this.document.ref(),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=[]}var G=wA.prototype;return G.maxY=function(){return this.height-this.margins.bottom},G.write=function(z){return this.content.write(z)},G.end=function(){return this.dictionary.end(),this.resources.end(),this.content.end()},function n(wA,G,L){return G&&E(wA.prototype,G),L&&E(wA,L),Object.defineProperty(wA,"prototype",{writable:!1}),wA}(wA,[{key:"fonts",get:function(){var z=this.resources.data;return null!=z.Font?z.Font:z.Font={}}},{key:"xobjects",get:function(){var z=this.resources.data;return null!=z.XObject?z.XObject:z.XObject={}}},{key:"ext_gstates",get:function(){var z=this.resources.data;return null!=z.ExtGState?z.ExtGState:z.ExtGState={}}},{key:"patterns",get:function(){var z=this.resources.data;return null!=z.Pattern?z.Pattern:z.Pattern={}}},{key:"colorSpaces",get:function(){var z=this.resources.data;return z.ColorSpace||(z.ColorSpace={})}},{key:"annotations",get:function(){var z=this.dictionary.data;return null!=z.Annots?z.Annots:z.Annots=[]}},{key:"structParentTreeKey",get:function(){var z=this.dictionary.data;return null!=z.StructParents?z.StructParents:z.StructParents=this.document.createStructParentTreeNextKey()}}])}(),KA=function(wA){function G(){return wA.apply(this,arguments)||this}M(G,wA);var L=G.prototype;return L._compareKeys=function(H,uA){return H.localeCompare(uA)},L._keysName=function(){return"Names"},L._dataForKey=function(H){return new String(H)},G}(K);function pA(wA,G){if(wA=G[uA]&&wA<=G[uA+1])return!0;wA>G[uA+1]?L=H+1:z=H-1}return!1}var NA=[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],zA=function(G){return pA(G,NA)},O=[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],tA=[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],hA=[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],yA=[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],GA=[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],j=function(G){return pA(G,tA)||pA(G,GA)||pA(G,hA)||pA(G,yA)},U=[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],rA=function(G){return pA(G,U)},AA=[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=function(G){return pA(G,AA)},IA=function(G){return pA(G,tA)},cA=function(G){return pA(G,O)},dA=function(G){return G.codePointAt(0)},vA=function(G){return G[0]},xA=function(G){return G[G.length-1]};function SA(wA){for(var G=[],L=wA.length,z=0;z=55296&&H<=56319&&L>z+1){var uA=wA.charCodeAt(z+1);if(uA>=56320&&uA<=57343){G.push(1024*(H-55296)+uA-56320+65536),z+=1;continue}}G.push(H)}return G}var WA=function(){function wA(L){var z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!z.ownerPassword&&!z.userPassword)throw new Error("None of owner password and user password is defined.");this.document=L,this._setupEncryption(z)}wA.generateFileID=function(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},H=z.CreationDate.getTime()+"\n";for(var uA in z)z.hasOwnProperty(uA)&&(H+=uA+": "+z[uA].valueOf()+"\n");return aA(o.default.MD5(H))},wA.generateRandomWordArray=function(z){return o.default.lib.WordArray.random(z)},wA.create=function(z){var H=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return H.ownerPassword||H.userPassword?new wA(z,H):null};var G=wA.prototype;return G._setupEncryption=function(z){switch(z.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}var H={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,H,z);break;case 5:this._setupEncryptionV5(H,z)}this.dictionary=this.document.ref(H)},G._setupEncryptionV1V2V4=function(z,H,uA){var XA,qA;switch(z){case 1:XA=2,this.keyBits=40,qA=function ge(){var wA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},G=-64;return wA.printing&&(G|=4),wA.modifying&&(G|=8),wA.copying&&(G|=16),wA.annotating&&(G|=32),G}(uA.permissions);break;case 2:XA=3,this.keyBits=128,qA=Be(uA.permissions);break;case 4:XA=4,this.keyBits=128,qA=Be(uA.permissions)}var Ke,ae=BA(uA.userPassword),he=uA.ownerPassword?BA(uA.ownerPassword):ae,Ee=function Me(wA,G,L,z){for(var H=z,uA=wA>=3?51:1,XA=0;XA=3?20:1;for(var he=0;he=3?51:1,ae=0;ae=2&&(H.Length=this.keyBits),4===z&&(H.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},H.StmF="StdCF",H.StrF="StdCF"),H.R=XA,H.O=aA(Ee),H.U=aA(Ke),H.P=qA},G._setupEncryptionV5=function(z,H){this.keyBits=256;var uA=Be(H.permissions),XA=T(H.userPassword),qA=H.ownerPassword?T(H.ownerPassword):XA;this.encryptionKey=function Fe(wA){return wA(32)}(wA.generateRandomWordArray);var ae=function _A(wA,G){var L=G(8),z=G(8);return o.default.SHA256(wA.clone().concat(L)).concat(L).concat(z)}(XA,wA.generateRandomWordArray),Ee=function Ce(wA,G,L){var z=o.default.SHA256(wA.clone().concat(G)),H={mode:o.default.mode.CBC,padding:o.default.pad.NoPadding,iv:o.default.lib.WordArray.create(null,16)};return o.default.AES.encrypt(L,z,H).ciphertext}(XA,o.default.lib.WordArray.create(ae.words.slice(10,12),8),this.encryptionKey),Ke=function me(wA,G,L){var z=L(8),H=L(8);return o.default.SHA256(wA.clone().concat(z).concat(G)).concat(z).concat(H)}(qA,ae,wA.generateRandomWordArray),be=function De(wA,G,L,z){var H=o.default.SHA256(wA.clone().concat(G).concat(L)),uA={mode:o.default.mode.CBC,padding:o.default.pad.NoPadding,iv:o.default.lib.WordArray.create(null,16)};return o.default.AES.encrypt(z,H,uA).ciphertext}(qA,o.default.lib.WordArray.create(Ke.words.slice(10,12),8),ae,this.encryptionKey),Le=function MA(wA,G,L){var z=o.default.lib.WordArray.create([k(wA),4294967295,1415668834],12).concat(L(4));return o.default.AES.encrypt(z,G,{mode:o.default.mode.ECB,padding:o.default.pad.NoPadding}).ciphertext}(uA,this.encryptionKey,wA.generateRandomWordArray);z.V=5,z.Length=this.keyBits,z.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},z.StmF="StdCF",z.StrF="StdCF",z.R=5,z.O=aA(Ke),z.OE=aA(be),z.U=aA(ae),z.UE=aA(Ee),z.P=uA,z.Perms=aA(Le)},G.getEncryptFn=function(z,H){var uA,qA;if(this.version<5&&(uA=this.encryptionKey.clone().concat(o.default.lib.WordArray.create([(255&z)<<24|(65280&z)<<8|z>>8&65280|255&H,(65280&H)<<16],5))),1===this.version||2===this.version){var XA=o.default.MD5(uA);return XA.sigBytes=Math.min(16,this.keyBits/8+5),function(Ee){return aA(o.default.RC4.encrypt(o.default.lib.WordArray.create(Ee),XA).ciphertext)}}qA=4===this.version?o.default.MD5(uA.concat(o.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;var ae=wA.generateRandomWordArray(16),he={mode:o.default.mode.CBC,padding:o.default.pad.Pkcs7,iv:ae};return function(Ee){return aA(ae.clone().concat(o.default.AES.encrypt(o.default.lib.WordArray.create(Ee),qA,he).ciphertext))}},G.end=function(){this.dictionary.end()},wA}();function Be(){var wA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},G=-3904;return"lowResolution"===wA.printing&&(G|=4),"highResolution"===wA.printing&&(G|=2052),wA.modifying&&(G|=8),wA.copying&&(G|=16),wA.annotating&&(G|=32),wA.fillingForms&&(G|=256),wA.contentAccessibility&&(G|=512),wA.documentAssembly&&(G|=1024),G}function BA(){for(var wA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",G=g.alloc(32),L=wA.length,z=0;z255)throw new Error("Password contains one or more invalid characters.");G[z]=H,z++}for(;z<32;)G[z]=DA[z-L],z++;return o.default.lib.WordArray.create(G)}function T(){var wA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";wA=unescape(encodeURIComponent(function EA(wA){var G=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof wA)throw new TypeError("Expected string.");if(0===wA.length)return"";var L=SA(wA).map(function(Ke){return IA(Ke)?32:Ke}).filter(function(Ke){return!cA(Ke)}),z=String.fromCodePoint.apply(null,L).normalize("NFKC"),H=SA(z);if(H.some(j))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==G.allowUnassigned&&H.some(zA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");var qA=H.some(rA),ae=H.some(PA);if(qA&&ae)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");var he=rA(dA(vA(z))),Ee=rA(dA(xA(z)));if(qA&&(!he||!Ee))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 z}(wA)));for(var G=Math.min(127,wA.length),L=g.alloc(G),z=0;z>8&65280|wA>>24&255}function aA(wA){for(var G=[],L=0;L>8*(3-L%4)&255);return g.from(G)}var Ie,pe,ke,Ve,Nn,ur,DA=[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],iA=oA.number,kA=function(){function wA(L){this.doc=L,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}var G=wA.prototype;return G.stop=function(z,H,uA){if(null==uA&&(uA=1),H=this.doc._normalizeColor(H),0===this.stops.length)if(3===H.length)this._colorSpace="DeviceRGB";else if(4===H.length)this._colorSpace="DeviceCMYK";else{if(1!==H.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==H.length||"DeviceCMYK"===this._colorSpace&&4!==H.length||"DeviceGray"===this._colorSpace&&1!==H.length)throw new Error("All gradient stops must use the same color space");return uA=Math.max(0,Math.min(1,uA)),this.stops.push([z,H,uA]),this},G.setTransform=function(z,H,uA,XA,qA,ae){return this.transform=[z,H,uA,XA,qA,ae],this},G.embed=function(z){var H,uA=this.stops.length;if(0!==uA){this.embedded=!0,this.matrix=z;var XA=this.stops[uA-1];XA[0]<1&&this.stops.push([1,XA[1],XA[2]]);for(var qA=[],ae=[],he=[],Ee=0;Ee>16,L>>8&255,255&L]}else tr[G]&&(G=tr[G]);return Array.isArray(G)?(3===G.length?G=G.map(function(z){return z/255}):4===G.length&&(G=G.map(function(z){return z/100})),G):null},_setColor:function(G,L){return G instanceof ce?(G.apply(L),!0):Array.isArray(G)&&G[0]instanceof Ue?(G[0].apply(L,G[1]),!0):this._setColorCore(G,L)},_setColorCore:function(G,L){if(!(G=this._normalizeColor(G)))return!1;var z=L?"SCN":"scn",H=this._getColorSpace(G);return this._setColorSpace(H,L),G=G.join(" "),this.addContent(G+" "+z),!0},_setColorSpace:function(G,L){return this.addContent("/"+G+" "+(L?"CS":"cs"))},_getColorSpace:function(G){return 4===G.length?"DeviceCMYK":"DeviceRGB"},fillColor:function(G,L){return this._setColor(G,!1)&&this.fillOpacity(L),this._fillColor=[G,L],this},strokeColor:function(G,L){return this._setColor(G,!0)&&this.strokeOpacity(L),this},opacity:function(G){return this._doOpacity(G,G),this},fillOpacity:function(G){return this._doOpacity(G,null),this},strokeOpacity:function(G){return this._doOpacity(null,G),this},_doOpacity:function(G,L){var z,H;if(null!=G||null!=L){null!=G&&(G=Math.max(0,Math.min(1,G))),null!=L&&(L=Math.max(0,Math.min(1,L)));var uA=G+"_"+L;if(this._opacityRegistry[uA]){var XA=this._opacityRegistry[uA];z=XA[0],H=XA[1]}else{z={Type:"ExtGState"},null!=G&&(z.ca=G),null!=L&&(z.CA=L),(z=this.ref(z)).end();var qA=++this._opacityCount;this._opacityRegistry[uA]=[z,H="Gs"+qA]}return this.page.ext_gstates[H]=z,this.addContent("/"+H+" gs")}},linearGradient:function(G,L,z,H){return new Se(this,G,L,z,H)},radialGradient:function(G,L,z,H,uA,XA){return new xe(this,G,L,z,H,uA,XA)},pattern:function(G,L,z,H){return new Ue(this,G,L,z,H)}},tr={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]};Ie=pe=ke=Ve=Nn=ur=0;var Xr={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},Un={M:function(G,L){return ke=Ve=null,Nn=Ie=L[0],ur=pe=L[1],G.moveTo(Ie,pe)},m:function(G,L){return ke=Ve=null,Nn=Ie+=L[0],ur=pe+=L[1],G.moveTo(Ie,pe)},C:function(G,L){return Ie=L[4],pe=L[5],ke=L[2],Ve=L[3],G.bezierCurveTo.apply(G,L)},c:function(G,L){return G.bezierCurveTo(L[0]+Ie,L[1]+pe,L[2]+Ie,L[3]+pe,L[4]+Ie,L[5]+pe),ke=Ie+L[2],Ve=pe+L[3],Ie+=L[4],pe+=L[5]},S:function(G,L){return null===ke&&(ke=Ie,Ve=pe),G.bezierCurveTo(Ie-(ke-Ie),pe-(Ve-pe),L[0],L[1],L[2],L[3]),ke=L[0],Ve=L[1],Ie=L[2],pe=L[3]},s:function(G,L){return null===ke&&(ke=Ie,Ve=pe),G.bezierCurveTo(Ie-(ke-Ie),pe-(Ve-pe),Ie+L[0],pe+L[1],Ie+L[2],pe+L[3]),ke=Ie+L[0],Ve=pe+L[1],Ie+=L[2],pe+=L[3]},Q:function(G,L){return ke=L[0],Ve=L[1],G.quadraticCurveTo(L[0],L[1],Ie=L[2],pe=L[3])},q:function(G,L){return G.quadraticCurveTo(L[0]+Ie,L[1]+pe,L[2]+Ie,L[3]+pe),ke=Ie+L[0],Ve=pe+L[1],Ie+=L[2],pe+=L[3]},T:function(G,L){return null===ke?(ke=Ie,Ve=pe):(ke=Ie-(ke-Ie),Ve=pe-(Ve-pe)),G.quadraticCurveTo(ke,Ve,L[0],L[1]),ke=Ie-(ke-Ie),Ve=pe-(Ve-pe),Ie=L[0],pe=L[1]},t:function(G,L){return null===ke?(ke=Ie,Ve=pe):(ke=Ie-(ke-Ie),Ve=pe-(Ve-pe)),G.quadraticCurveTo(ke,Ve,Ie+L[0],pe+L[1]),Ie+=L[0],pe+=L[1]},A:function(G,L){return In(G,Ie,pe,L),Ie=L[5],pe=L[6]},a:function(G,L){return L[5]+=Ie,L[6]+=pe,In(G,Ie,pe,L),Ie=L[5],pe=L[6]},L:function(G,L){return ke=Ve=null,G.lineTo(Ie=L[0],pe=L[1])},l:function(G,L){return ke=Ve=null,G.lineTo(Ie+=L[0],pe+=L[1])},H:function(G,L){return ke=Ve=null,G.lineTo(Ie=L[0],pe)},h:function(G,L){return ke=Ve=null,G.lineTo(Ie+=L[0],pe)},V:function(G,L){return ke=Ve=null,G.lineTo(Ie,pe=L[0])},v:function(G,L){return ke=Ve=null,G.lineTo(Ie,pe+=L[0])},Z:function(G){return G.closePath(),Ie=Nn,pe=ur},z:function(G){return G.closePath(),Ie=Nn,pe=ur}},In=function(G,L,z,H){for(var Le,be=Q(wn(H[5],H[6],H[0],H[1],H[3],H[4],H[2],L,z));!(Le=be()).done;){var cn=Ir.apply(void 0,Le.value);G.bezierCurveTo.apply(G,cn)}},wn=function(G,L,z,H,uA,XA,qA,ae,he){var Ee=qA*(Math.PI/180),Ke=Math.sin(Ee),ve=Math.cos(Ee);z=Math.abs(z),H=Math.abs(H);var be=(ke=ve*(ae-G)*.5+Ke*(he-L)*.5)*ke/(z*z)+(Ve=ve*(he-L)*.5-Ke*(ae-G)*.5)*Ve/(H*H);be>1&&(z*=be=Math.sqrt(be),H*=be);var Le=ve/z,Je=Ke/z,cn=-Ke/H,$e=ve/H,gn=Le*ae+Je*he,bn=cn*ae+$e*he,nn=Le*G+Je*L,We=cn*G+$e*L,Zn=1/((nn-gn)*(nn-gn)+(We-bn)*(We-bn))-.25;Zn<0&&(Zn=0);var Mn=Math.sqrt(Zn);XA===uA&&(Mn=-Mn);var Fr=.5*(gn+nn)-Mn*(We-bn),Pr=.5*(bn+We)+Mn*(nn-gn),or=Math.atan2(bn-Pr,gn-Fr),Br=Math.atan2(We-Pr,nn-Fr)-or;Br<0&&1===XA?Br+=2*Math.PI:Br>0&&0===XA&&(Br-=2*Math.PI);for(var Or=Math.ceil(Math.abs(Br/(.5*Math.PI+.001))),et=[],jr=0;jr0&&(H[H.length]=+uA),z[z.length]={cmd:L,args:H},H=[],uA="",XA=!1),L=Ee;else if([" ",","].includes(Ee)||"-"===Ee&&uA.length>0&&"e"!==uA[uA.length-1]||"."===Ee&&XA){if(0===uA.length)continue;H.length===qA?(z[z.length]={cmd:L,args:H},H=[+uA],"M"===L&&(L="L"),"m"===L&&(L="l")):H[H.length]=+uA,XA="."===Ee,uA=["-","."].includes(Ee)?Ee:""}else uA+=Ee,"."===Ee&&(XA=!0)}return uA.length>0&&(H.length===qA?(z[z.length]={cmd:L,args:H},H=[+uA],"M"===L&&(L="L"),"m"===L&&(L="l")):H[H.length]=+uA),z[z.length]={cmd:L,args:H},z}(z);!function(G,L){Ie=pe=ke=Ve=Nn=ur=0;for(var z=0;z1&&void 0!==arguments[1]?arguments[1]:{},z=G;if(Array.isArray(G)||(G=[G,L.space||G]),!G.every(function(uA){return Number.isFinite(uA)&&uA>0}))throw new Error("dash("+JSON.stringify(z)+", "+JSON.stringify(L)+") invalid, lengths must be numeric and greater than zero");return G=G.map(Tn).join(" "),this.addContent("["+G+"] "+Tn(L.phase||0)+" d")},undash:function(){return this.addContent("[] 0 d")},moveTo:function(G,L){return this.addContent(Tn(G)+" "+Tn(L)+" m")},lineTo:function(G,L){return this.addContent(Tn(G)+" "+Tn(L)+" l")},bezierCurveTo:function(G,L,z,H,uA,XA){return this.addContent(Tn(G)+" "+Tn(L)+" "+Tn(z)+" "+Tn(H)+" "+Tn(uA)+" "+Tn(XA)+" c")},quadraticCurveTo:function(G,L,z,H){return this.addContent(Tn(G)+" "+Tn(L)+" "+Tn(z)+" "+Tn(H)+" v")},rect:function(G,L,z,H){return this.addContent(Tn(G)+" "+Tn(L)+" "+Tn(z)+" "+Tn(H)+" re")},roundedRect:function(G,L,z,H,uA){null==uA&&(uA=0);var XA=(uA=Math.min(uA,.5*z,.5*H))*(1-qn);return this.moveTo(G+uA,L),this.lineTo(G+z-uA,L),this.bezierCurveTo(G+z-XA,L,G+z,L+XA,G+z,L+uA),this.lineTo(G+z,L+H-uA),this.bezierCurveTo(G+z,L+H-XA,G+z-XA,L+H,G+z-uA,L+H),this.lineTo(G+uA,L+H),this.bezierCurveTo(G+XA,L+H,G,L+H-XA,G,L+H-uA),this.lineTo(G,L+uA),this.bezierCurveTo(G,L+XA,G+XA,L,G+uA,L),this.closePath()},ellipse:function(G,L,z,H){null==H&&(H=z);var uA=z*qn,XA=H*qn,qA=(G-=z)+2*z,ae=(L-=H)+2*H,he=G+z,Ee=L+H;return this.moveTo(G,Ee),this.bezierCurveTo(G,Ee-XA,he-uA,L,he,L),this.bezierCurveTo(he+uA,L,qA,Ee-XA,qA,Ee),this.bezierCurveTo(qA,Ee+XA,he+uA,ae,he,ae),this.bezierCurveTo(he-uA,ae,G,Ee+XA,G,Ee),this.closePath()},circle:function(G,L,z){return this.ellipse(G,L,z)},arc:function(G,L,z,H,uA,XA){null==XA&&(XA=!1);var qA=2*Math.PI,ae=.5*Math.PI,he=uA-H;Math.abs(he)>qA?he=qA:0!==he&&XA!==he<0&&(he=(XA?-1:1)*qA+he);var Ke=Math.ceil(Math.abs(he)/ae),ve=he/Ke,be=ve/ae*qn*z,Le=H,Je=-Math.sin(Le)*be,cn=Math.cos(Le)*be,$e=G+Math.cos(Le)*z,gn=L+Math.sin(Le)*z;this.moveTo($e,gn);for(var bn=0;bn1&&void 0!==arguments[1]?arguments[1]:{},H=G*Math.PI/180,uA=Math.cos(H),XA=Math.sin(H),qA=z=0;if(null!=L.origin){var ae=L.origin,Ee=(qA=ae[0])*XA+(z=ae[1])*uA;qA-=qA*uA-z*XA,z-=Ee}return this.transform(uA,XA,-XA,uA,qA,z)},scale:function(G,L){var H,z=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==L&&(L=G),"object"==typeof L&&(z=L,L=G);var uA=H=0;if(null!=z.origin){var XA=z.origin;uA=XA[0],H=XA[1],uA-=G*uA,H-=L*H}return this.transform(G,0,0,L,uA,H)}},dr={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},Lr=".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+/),Gr=function(){function wA(L){this.contents=L,this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(),this.charWidths=new Array(256);for(var z=0;z<=255;z++)this.charWidths[z]=this.glyphWidths[Lr[z]];this.bbox=this.attributes.FontBBox.split(/\s+/).map(function(H){return+H}),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)}wA.open=function(z){return new wA(F.readFileSync(z,"utf8"))};var G=wA.prototype;return G.parse=function(){for(var uA,z="",H=Q(this.contents.split("\n"));!(uA=H()).done;){var qA,ae,XA=uA.value;if(qA=XA.match(/^Start(\w+)/))z=qA[1];else if(qA=XA.match(/^End(\w+)/))z="";else switch(z){case"FontMetrics":var he=(qA=XA.match(/(^\w+)\s+(.*)/))[1],Ee=qA[2];(ae=this.attributes[he])?(Array.isArray(ae)||(ae=this.attributes[he]=[ae]),ae.push(Ee)):this.attributes[he]=Ee;break;case"CharMetrics":if(!/^CH?\s/.test(XA))continue;var Ke=XA.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[Ke]=+XA.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(qA=XA.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[qA[1]+"\0"+qA[2]]=parseInt(qA[3]))}}},G.encodeText=function(z){for(var H=[],uA=0,XA=z.length;uA>8,ae=0;this.font.post.isFixedPitch&&(ae|=1),1<=qA&&qA<=7&&(ae|=2),ae|=4,10===qA&&(ae|=8),this.font.head.macStyle.italic&&(ae|=64);var Ee=[1,2,3,4,5,6].map(function($e){return String.fromCharCode((H.id.charCodeAt($e)||73)+17)}).join("")+"+"+this.font.postscriptName,Ke=this.font.bbox,ve=this.document.ref({Type:"FontDescriptor",FontName:Ee,Flags:ae,FontBBox:[Ke.minX*this.scale,Ke.minY*this.scale,Ke.maxX*this.scale,Ke.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(uA?ve.data.FontFile3=XA:ve.data.FontFile2=XA,this.document.subset){var be=g.from("FFFFFFFFC0","hex"),Le=this.document.ref();Le.write(be),Le.end(),ve.data.CIDSet=Le}ve.end();var Je={Type:"Font",Subtype:"CIDFontType0",BaseFont:Ee,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:ve,W:[0,this.widths]};uA||(Je.Subtype="CIDFontType2",Je.CIDToGIDMap="Identity");var cn=this.document.ref(Je);return cn.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:Ee,Encoding:"Identity-H",DescendantFonts:[cn],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()},L.toUnicodeCmap=function(){for(var qA,H=this.document.ref(),uA=[],XA=Q(this.unicode);!(qA=XA()).done;){for(var Ke,he=[],Ee=Q(qA.value);!(Ke=Ee()).done;){var ve=Ke.value;ve>65535&&(he.push(Kr((ve-=65536)>>>10&1023|55296)),ve=56320|1023&ve),he.push(Kr(ve))}uA.push("<"+he.join(" ")+">")}for(var Le=Math.ceil(uA.length/256),Je=[],cn=0;cn <"+Kr(gn-1)+"> ["+uA.slice($e,gn).join(" ")+"]")}return H.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"+Je.join("\n")+"\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend"),H},G}(Yr),FA=function(){function wA(){}return wA.open=function(L,z,H,uA){var XA;if("string"==typeof z){if(Jr.isStandardFont(z))return new Jr(L,z,uA);z=F.readFileSync(z)}if(g.isBuffer(z)?XA=m.default.create(z,H):z instanceof Uint8Array?XA=m.default.create(g.from(z),H):z instanceof ArrayBuffer&&(XA=m.default.create(g.from(new Uint8Array(z)),H)),null==XA)throw new Error("Not a supported font format or standard PDF font.");return new Ae(L,XA,uA)},wA}(),re={initFonts:function(){var G=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Helvetica";this._fontFamilies={},this._fontCount=0,this._fontSize=12,this._font=null,this._registeredFonts={},G&&this.font(G)},font:function(G,L,z){var H,uA;if("number"==typeof L&&(z=L,L=null),"string"==typeof G&&this._registeredFonts[G]){H=G;var XA=this._registeredFonts[G];G=XA.src,L=XA.family}else"string"!=typeof(H=L||G)&&(H=null);if(null!=z&&this.fontSize(z),uA=this._fontFamilies[H])return this._font=uA,this;var qA="F"+ ++this._fontCount;return this._font=FA.open(this,G,L,qA),(uA=this._fontFamilies[this._font.name])?(this._font=uA,this):(H&&(this._fontFamilies[H]=this._font),this._font.name&&(this._fontFamilies[this._font.name]=this._font),this)},fontSize:function(G){return this._fontSize=G,this},currentLineHeight:function(G){return null==G&&(G=!1),this._font.lineHeight(this._fontSize,G)},registerFont:function(G,L,z){return this._registeredFonts[G]={src:L,family:z},this}},bA=function(wA){function G(z,H){var uA;return(uA=wA.call(this)||this).document=z,uA.indent=H.indent||0,uA.characterSpacing=H.characterSpacing||0,uA.wordSpacing=0===H.wordSpacing,uA.columns=H.columns||1,uA.columnGap=null!=H.columnGap?H.columnGap:18,uA.lineWidth=(H.width-uA.columnGap*(uA.columns-1))/uA.columns,uA.spaceLeft=uA.lineWidth,uA.startX=uA.document.x,uA.startY=uA.document.y,uA.column=1,uA.ellipsis=H.ellipsis,uA.continuedX=0,uA.features=H.features,null!=H.height?(uA.height=H.height,uA.maxY=uA.startY+H.height):uA.maxY=uA.document.page.maxY(),uA.on("firstLine",function(XA){var qA=uA.continuedX||uA.indent;return uA.document.x+=qA,uA.lineWidth-=qA,uA.once("line",function(){if(uA.document.x-=qA,uA.lineWidth+=qA,XA.continued&&!uA.continuedX&&(uA.continuedX=uA.indent),!XA.continued)return uA.continuedX=0})}),uA.on("lastLine",function(XA){var qA=XA.align;return"justify"===qA&&(XA.align="left"),uA.lastLine=!0,uA.once("line",function(){return uA.document.y+=XA.paragraphGap||0,XA.align=qA,uA.lastLine=!1})}),uA}M(G,wA);var L=G.prototype;return L.wordWidth=function(H){return this.document.widthOfString(H,this)+this.characterSpacing+this.wordSpacing},L.canFit=function(H,uA){return"\xad"!=H[H.length-1]?uA<=this.spaceLeft:uA+this.wordWidth("-")<=this.spaceLeft},L.eachWord=function(H,uA){for(var XA,qA=new f.default(H),ae=null,he=Object.create(null);XA=qA.nextBreak();){var Ee,Ke=H.slice(ae?.position||0,XA.position),ve=null!=he[Ke]?he[Ke]:he[Ke]=this.wordWidth(Ke);if(ve>this.lineWidth+this.continuedX)for(var be=ae,Le={};Ke.length;){var Je,cn;ve>this.spaceLeft?(Je=Math.ceil(this.spaceLeft/(ve/Ke.length)),cn=(ve=this.wordWidth(Ke.slice(0,Je)))<=this.spaceLeft&&Jethis.spaceLeft&&Je>0;$e||cn;)$e?$e=(ve=this.wordWidth(Ke.slice(0,--Je)))>this.spaceLeft&&Je>0:($e=(ve=this.wordWidth(Ke.slice(0,++Je)))>this.spaceLeft&&Je>0,cn=ve<=this.spaceLeft&&Jethis.maxY||qA>this.maxY)&&this.nextSection();var ae="",he=0,Ee=0,Ke=0,ve=this.document.y,be=function(){return uA.textWidth=he+XA.wordSpacing*(Ee-1),uA.wordCount=Ee,uA.lineWidth=XA.lineWidth,ve=XA.document.y,XA.emit("line",ae,uA,XA),Ke++};return this.emit("sectionStart",uA,this),this.eachWord(H,function(Le,Je,cn,$e){if((null==$e||$e.required)&&(XA.emit("firstLine",uA,XA),XA.spaceLeft=XA.lineWidth),XA.canFit(Le,Je)&&(ae+=Le,he+=Je,Ee++),cn.required||!XA.canFit(Le,Je)){var gn=XA.document.currentLineHeight(!0);if(null!=XA.height&&XA.ellipsis&&XA.document.y+2*gn>XA.maxY&&XA.column>=XA.columns){for(!0===XA.ellipsis&&(XA.ellipsis="\u2026"),ae=ae.replace(/\s+$/,""),he=XA.wordWidth(ae+XA.ellipsis);ae&&he>XA.lineWidth;)ae=ae.slice(0,-1).replace(/\s+$/,""),he=XA.wordWidth(ae+XA.ellipsis);he<=XA.lineWidth&&(ae+=XA.ellipsis),he=XA.wordWidth(ae)}return cn.required&&(Je>XA.spaceLeft&&(be(),ae=Le,he=Je,Ee=1),XA.emit("lastLine",uA,XA)),"\xad"==ae[ae.length-1]&&(ae=ae.slice(0,-1)+"-",XA.spaceLeft-=XA.wordWidth("-")),be(),XA.document.y+gn>XA.maxY&&!XA.nextSection()?(Ee=0,ae="",!1):cn.required?(XA.spaceLeft=XA.lineWidth,ae="",he=0,Ee=0):(XA.spaceLeft=XA.lineWidth-Je,ae=Le,he=Je,Ee=1)}return XA.spaceLeft-=Je}),Ee>0&&(this.emit("lastLine",uA,this),be()),this.emit("sectionEnd",uA,this),!0===uA.continued?(Ke>1&&(this.continuedX=0),this.continuedX+=uA.textWidth||0,this.document.y=ve):this.document.x=this.startX},L.nextSection=function(H){if(this.emit("sectionEnd",H,this),++this.column>this.columns){if(null!=this.height)return!1;var uA;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&&(uA=this.document).fillColor.apply(uA,this.document._fillColor),this.emit("pageBreak",H,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",H,this);return this.emit("sectionStart",H,this),!0},G}(u.EventEmitter),OA=oA.number,ne={initText:function(){return this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap:function(G){return this._lineGap=G,this},moveDown:function(G){return null==G&&(G=1),this.y+=this.currentLineHeight(!0)*G+this._lineGap,this},moveUp:function(G){return null==G&&(G=1),this.y-=this.currentLineHeight(!0)*G+this._lineGap,this},_text:function(G,L,z,H,uA){var XA=this;G=null==G?"":""+G,(H=this._initOptions(L,z,H)).wordSpacing&&(G=G.replace(/\s{2,}/g," "));var qA=function(){H.structParent&&H.structParent.add(XA.struct(H.structType||"P",[XA.markStructureContent(H.structType||"P")]))};if(H.width){var ae=this._wrapper;ae||((ae=new bA(this,H)).on("line",uA),ae.on("firstLine",qA)),this._wrapper=H.continued?ae:null,this._textOptions=H.continued?H:null,ae.wrap(G,H)}else for(var Ee,he=Q(G.split("\n"));!(Ee=he()).done;){var Ke=Ee.value;qA(),uA(Ke,H)}return this},text:function(G,L,z,H){return this._text(G,L,z,H,this._line)},widthOfString:function(G){var L=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this._font.widthOfString(G,this._fontSize,L.features)+(L.characterSpacing||0)*(G.length-1)},heightOfString:function(G,L){var z=this,H=this.x,uA=this.y;(L=this._initOptions(L)).height=1/0;var XA=L.lineGap||this._lineGap||0;this._text(G,this.x,this.y,L,function(){return z.y+=z.currentLineHeight(!0)+XA});var qA=this.y-uA;return this.x=H,this.y=uA,qA},list:function(G,L,z,H,uA){var XA=(H=this._initOptions(L,z,H)).listType||"bullet",qA=Math.round(this._font.ascender/1e3*this._fontSize),ae=qA/2,he=H.bulletRadius||qA/3,Ee=H.textIndent||("bullet"===XA?5*he:2*qA),Ke=H.bulletIndent||("bullet"===XA?8*he:2*qA),ve=1,be=[],Le=[],Je=[],cn=function(We){for(var Sn=1,Zn=0;Zn0&&void 0!==arguments[0]?arguments[0]:{},L=arguments.length>1?arguments[1]:void 0,z=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof G&&(z=G,G=null);var H=Object.assign({},z);if(this._textOptions)for(var uA in this._textOptions)"continued"!==uA&&void 0===H[uA]&&(H[uA]=this._textOptions[uA]);return null!=G&&(this.x=G),null!=L&&(this.y=L),!1!==H.lineBreak&&(null==H.width&&(H.width=this.page.width-this.x-this.page.margins.right),H.width=Math.max(H.width,0)),H.columns||(H.columns=0),null==H.columnGap&&(H.columnGap=18),H},_line:function(G){var L=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},z=arguments.length>2?arguments[2]:void 0;this._fragment(G,this.x,this.y,L);var H=L.lineGap||this._lineGap||0;return z?this.y+=this.currentLineHeight(!0)+H:this.x+=this.widthOfString(G)},_fragment:function(G,L,z,H){var XA,qA,ae,he,Ee,Ke,uA=this;if(0!==(G=(""+G).replace(/\n/g,"")).length){var be=H.wordSpacing||0,Le=H.characterSpacing||0;if(H.width)switch(H.align||"left"){case"right":Ee=this.widthOfString(G.replace(/\s+$/,""),H),L+=H.lineWidth-Ee;break;case"center":L+=H.lineWidth/2-H.textWidth/2;break;case"justify":Ke=G.trim().split(/\s+/),Ee=this.widthOfString(G.replace(/\s+/g,""),H);var Je=this.widthOfString(" ")+Le;be=Math.max(0,(H.lineWidth-Ee)/Math.max(1,Ke.length-1)-Je)}if("number"==typeof H.baseline)XA=-H.baseline;else{switch(H.baseline){case"svg-middle":XA=.5*this._font.xHeight;break;case"middle":case"svg-central":XA=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":XA=this._font.descender;break;case"alphabetic":XA=0;break;case"mathematical":XA=.5*this._font.ascender;break;case"hanging":XA=.8*this._font.ascender;break;default:XA=this._font.ascender}XA=XA/1e3*this._fontSize}var We,cn=H.textWidth+be*(H.wordCount-1)+Le*(G.length-1);if(null!=H.link&&this.link(L,z,cn,this.currentLineHeight(),H.link),null!=H.goTo&&this.goTo(L,z,cn,this.currentLineHeight(),H.goTo),null!=H.destination&&this.addNamedDestination(H.destination,"XYZ",L,z,null),H.underline){this.save(),H.stroke||this.strokeColor.apply(this,this._fillColor||[]);var $e=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth($e);var gn=z+this.currentLineHeight()-$e;this.moveTo(L,gn),this.lineTo(L+cn,gn),this.stroke(),this.restore()}if(H.strike){this.save(),H.stroke||this.strokeColor.apply(this,this._fillColor||[]);var bn=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(bn);var nn=z+this.currentLineHeight()/2;this.moveTo(L,nn),this.lineTo(L+cn,nn),this.stroke(),this.restore()}this.save(),H.oblique&&(We="number"==typeof H.oblique?-Math.tan(H.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,L,z),this.transform(1,0,We,1,-We*XA,0),this.transform(1,0,0,1,-L,-z)),this.transform(1,0,0,-1,0,this.page.height),z=this.page.height-z-XA,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 "+OA(L)+" "+OA(z)+" Tm"),this.addContent("/"+this._font.id+" "+OA(this._fontSize)+" Tf");var Sn=H.fill&&H.stroke?2:H.stroke?1:0;if(Sn&&this.addContent(Sn+" Tr"),Le&&this.addContent(OA(Le)+" Tc"),be){Ke=G.trim().split(/\s+/),be+=this.widthOfString(" ")+Le,be*=1e3/this._fontSize,qA=[],he=[];for(var Mn,Zn=Q(Ke);!(Mn=Zn()).done;){var Pr=this._font.encode(Mn.value,H.features),kr=Pr[1];qA=qA.concat(Pr[0]);var Br={},Or=(he=he.concat(kr))[he.length-1];for(var et in Or)Br[et]=Or[et];Br.xAdvance+=be,he[he.length-1]=Br}}else{var Xt=this._font.encode(G,H.features);qA=Xt[0],he=Xt[1]}var ft=this._fontSize/1e3,wt=[],Vr=0,It=!1,Mt=function(Wr){if(Vr "+OA(-(he[Wr-1].xAdvance-he[Wr-1].advanceWidth)))}return Vr=Wr},Dt=function(Wr){if(Mt(Wr),wt.length>0)return uA.addContent("["+wt.join(" ")+"] TJ"),wt.length=0};for(ae=0;ae3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof L&&(H=L,L=null);var Je=H.ignoreOrientation||!1!==H.ignoreOrientation&&this.options.ignoreOrientation;L=null!=(Ee=L??H.x)?Ee:this.x,z=null!=(Ke=z??H.y)?Ke:this.y,"string"==typeof G&&(ae=this._imageRegistry[G]),ae||(ae=G.width&&G.height?G:this.openImage(G)),ae.obj||ae.embed(this),null==this.page.xobjects[ae.label]&&(this.page.xobjects[ae.label]=ae.obj);var $e=ae.width,gn=ae.height;if(!Je&&ae.orientation>4){var bn=[gn,$e];$e=bn[0],gn=bn[1]}var nn=H.width||$e,We=H.height||gn;if(H.width&&!H.height){var Sn=nn/$e;nn=$e*Sn,We=gn*Sn}else if(H.height&&!H.width){var Zn=We/gn;nn=$e*Zn,We=gn*Zn}else if(H.scale)nn=$e*H.scale,We=gn*H.scale;else if(H.fit){var Mn=H.fit;(he=$e/gn)>(qA=Mn[0])/(uA=Mn[1])?(nn=qA,We=qA/he):(We=uA,nn=uA*he)}else if(H.cover){var Fr=H.cover;(he=$e/gn)>(qA=Fr[0])/(uA=Fr[1])?(We=uA,nn=uA*he):(nn=qA,We=qA/he)}if((H.fit||H.cover)&&("center"===H.align?L=L+qA/2-nn/2:"right"===H.align&&(L=L+qA-nn),"center"===H.valign?z=z+uA/2-We/2:"bottom"===H.valign&&(z=z+uA-We)),Je)z-=We=-We,ve=0;else switch(ae.orientation){default:case 1:z-=We=-We,ve=0;break;case 2:L-=nn=-nn,z-=We=-We,ve=0;break;case 3:be=L,Le=z,We=-We,L-=nn,ve=180;break;case 4:break;case 5:be=L,Le=z;var Pr=[We,nn];nn=Pr[0],z-=We=Pr[1],ve=90;break;case 6:be=L,Le=z;var or=[We,nn];nn=or[0],We=-(We=or[1]),ve=90;break;case 7:be=L,Le=z;var kr=[We,nn];We=-(We=kr[1]),L-=nn=-(nn=kr[0]),ve=90;break;case 8:be=L,Le=z;var Br=[We,nn];L-=nn=Br[0],z-=We=-(We=Br[1]),ve=-90}return null!=H.link&&this.link(L,z,nn,We,H.link),null!=H.goTo&&this.goTo(L,z,nn,We,H.goTo),null!=H.destination&&this.addNamedDestination(H.destination,"XYZ",L,z,null),this.y===z&&(this.y+=We),this.save(),ve&&this.rotate(ve,{origin:[be,Le]}),this.transform(nn,0,0,We,L,z),this.addContent("/"+ae.label+" Do"),this.restore(),this},openImage:function(G){var L;return"string"==typeof G&&(L=this._imageRegistry[G]),L||(L=ye.open(G,"I"+ ++this._imageCount),"string"==typeof G&&(this._imageRegistry[G]=L)),L}},He={annotate:function(G,L,z,H,uA){for(var XA in uA.Type="Annot",uA.Rect=this._convertRect(G,L,z,H),uA.Border=[0,0,0],"Link"===uA.Subtype&&typeof uA.F>"u"&&(uA.F=4),"Link"!==uA.Subtype&&null==uA.C&&(uA.C=this._normalizeColor(uA.color||[0,0,0])),delete uA.color,"string"==typeof uA.Dest&&(uA.Dest=new String(uA.Dest)),uA){var qA=uA[XA];uA[XA[0].toUpperCase()+XA.slice(1)]=qA}var ae=this.ref(uA);return this.page.annotations.push(ae),ae.end(),this},note:function(G,L,z,H,uA){var XA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return XA.Subtype="Text",XA.Contents=new String(uA),XA.Name="Comment",null==XA.color&&(XA.color=[243,223,92]),this.annotate(G,L,z,H,XA)},goTo:function(G,L,z,H,uA){var XA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return XA.Subtype="Link",XA.A=this.ref({S:"GoTo",D:new String(uA)}),XA.A.end(),this.annotate(G,L,z,H,XA)},link:function(G,L,z,H,uA){var XA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(XA.Subtype="Link","number"==typeof uA){var qA=this._root.data.Pages.data;if(!(uA>=0&&uA4&&void 0!==arguments[4]?arguments[4]:{},XA=this._convertRect(G,L,z,H),qA=XA[0],ae=XA[1],he=XA[2],Ee=XA[3];return uA.QuadPoints=[qA,Ee,he,Ee,qA,ae,he,ae],uA.Contents=new String,this.annotate(G,L,z,H,uA)},highlight:function(G,L,z,H){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Highlight",null==uA.color&&(uA.color=[241,238,148]),this._markup(G,L,z,H,uA)},underline:function(G,L,z,H){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Underline",this._markup(G,L,z,H,uA)},strike:function(G,L,z,H){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="StrikeOut",this._markup(G,L,z,H,uA)},lineAnnotation:function(G,L,z,H){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Line",uA.Contents=new String,uA.L=[G,this.page.height-L,z,this.page.height-H],this.annotate(G,L,z,H,uA)},rectAnnotation:function(G,L,z,H){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Square",uA.Contents=new String,this.annotate(G,L,z,H,uA)},ellipseAnnotation:function(G,L,z,H){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Circle",uA.Contents=new String,this.annotate(G,L,z,H,uA)},textAnnotation:function(G,L,z,H,uA){var XA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return XA.Subtype="FreeText",XA.Contents=new String(uA),XA.DA=new String,this.annotate(G,L,z,H,XA)},fileAnnotation:function(G,L,z,H){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},XA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},qA=this.file(uA.src,Object.assign({hidden:!0},uA));return XA.Subtype="FileAttachment",XA.FS=qA,XA.Contents?XA.Contents=new String(XA.Contents):qA.data.Desc&&(XA.Contents=qA.data.Desc),this.annotate(G,L,z,H,XA)},_convertRect:function(G,L,z,H){var uA=L,XA=G+z,qA=this._ctm,ae=qA[0],he=qA[1],Ee=qA[2],Ke=qA[3],ve=qA[4],be=qA[5];return[G=ae*G+Ee*(L+=H)+ve,L=he*G+Ke*L+be,XA=ae*XA+Ee*uA+ve,uA=he*XA+Ke*uA+be]}},Ze=function(){function wA(L,z,H,uA){var XA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};this.document=L,this.options=XA,this.outlineData={},null!==uA&&(this.outlineData.Dest=[uA.dictionary,"Fit"]),null!==z&&(this.outlineData.Parent=z),null!==H&&(this.outlineData.Title=new String(H)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}var G=wA.prototype;return G.addItem=function(z){var uA=new wA(this.document,this.dictionary,z,this.document.page,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{expanded:!1});return this.children.push(uA),uA},G.endOutline=function(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);var H=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=H.dictionary;for(var uA=0,XA=this.children.length;uA0&&(qA.outlineData.Prev=this.children[uA-1].dictionary),uA0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}},fe=function(){function wA(L,z){this.refs=[{pageRef:L,mcid:z}]}return wA.prototype.push=function(z){var H=this;z.refs.forEach(function(uA){return H.refs.push(uA)})},wA}(),Re=function(){function wA(L,z){var H=this,uA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},XA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;this.document=L,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=L.ref({S:z});var qA=this.dictionary.data;(Array.isArray(uA)||this._isValidChild(uA))&&(XA=uA,uA={}),typeof uA.title<"u"&&(qA.T=new String(uA.title)),typeof uA.lang<"u"&&(qA.Lang=new String(uA.lang)),typeof uA.alt<"u"&&(qA.Alt=new String(uA.alt)),typeof uA.expanded<"u"&&(qA.E=new String(uA.expanded)),typeof uA.actual<"u"&&(qA.ActualText=new String(uA.actual)),this._children=[],XA&&(Array.isArray(XA)||(XA=[XA]),XA.forEach(function(ae){return H.add(ae)}),this.end())}var G=wA.prototype;return G.add=function(z){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(z))throw new Error("Invalid structure element child");return z instanceof wA&&(z.setParent(this.dictionary),this._attached&&z.setAttached()),z instanceof fe&&this._addContentToParentTree(z),"function"==typeof z&&this._attached&&(z=this._contentForClosure(z)),this._children.push(z),this},G._addContentToParentTree=function(z){var H=this;z.refs.forEach(function(uA){var XA=uA.pageRef,qA=uA.mcid;H.document.getStructParentTree().get(XA.data.StructParents)[qA]=H.dictionary})},G.setParent=function(z){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=z,this._flush()},G.setAttached=function(){var z=this;this._attached||(this._children.forEach(function(H,uA){H instanceof wA&&H.setAttached(),"function"==typeof H&&(z._children[uA]=z._contentForClosure(H))}),this._attached=!0,this._flush())},G.end=function(){this._ended||(this._children.filter(function(z){return z instanceof wA}).forEach(function(z){return z.end()}),this._ended=!0,this._flush())},G._isValidChild=function(z){return z instanceof wA||z instanceof fe||"function"==typeof z},G._contentForClosure=function(z){var H=this.document.markStructureContent(this.dictionary.data.S);return z(),this.document.endMarkedContent(),this._addContentToParentTree(H),H},G._isFlushable=function(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(function(z){return"function"!=typeof z&&(!(z instanceof wA)||z._isFlushable())})},G._flush=function(){var z=this;this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(function(H){return z._flushChild(H)}),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)},G._flushChild=function(z){var H=this;z instanceof wA&&this.dictionary.data.K.push(z.dictionary),z instanceof fe&&z.refs.forEach(function(uA){var XA=uA.pageRef,qA=uA.mcid;H.dictionary.data.Pg||(H.dictionary.data.Pg=XA),H.dictionary.data.K.push(H.dictionary.data.Pg===XA?qA:{Type:"MCR",Pg:XA,MCID:qA})})},wA}(),qe=function(wA){function G(){return wA.apply(this,arguments)||this}M(G,wA);var L=G.prototype;return L._compareKeys=function(H,uA){return parseInt(H)-parseInt(uA)},L._keysName=function(){return"Nums"},L._dataForKey=function(H){return parseInt(H)},G}(K),ze={initMarkings:function(G){this.structChildren=[],G.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent:function(G){var L=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===G||L&&L.mcid){var z=0;for(this.page.markings.forEach(function(uA){(z||uA.structContent||"Artifact"===uA.tag)&&z++});z--;)this.endMarkedContent()}if(!L)return this.page.markings.push({tag:G}),this.addContent("/"+G+" BMC"),this;this.page.markings.push({tag:G,options:L});var H={};return typeof L.mcid<"u"&&(H.MCID=L.mcid),"Artifact"===G&&("string"==typeof L.type&&(H.Type=L.type),Array.isArray(L.bbox)&&(H.BBox=[L.bbox[0],this.page.height-L.bbox[3],L.bbox[2],this.page.height-L.bbox[1]]),Array.isArray(L.attached)&&L.attached.every(function(uA){return"string"==typeof uA})&&(H.Attached=L.attached)),"Span"===G&&(L.lang&&(H.Lang=new String(L.lang)),L.alt&&(H.Alt=new String(L.alt)),L.expanded&&(H.E=new String(L.expanded)),L.actual&&(H.ActualText=new String(L.actual))),this.addContent("/"+G+" "+oA.convert(H)+" BDC"),this},markStructureContent:function(G){var L=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},z=this.getStructParentTree().get(this.page.structParentTreeKey),H=z.length;z.push(null),this.markContent(G,Object.assign({},L,{mcid:H}));var uA=new fe(this.page.dictionary,H);return this.page.markings.slice(-1)[0].structContent=uA,uA},endMarkedContent:function(){return this.page.markings.pop(),this.addContent("EMC"),this},struct:function(G){return new Re(this,G,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},arguments.length>2&&void 0!==arguments[2]?arguments[2]:null)},addStructure:function(G){var L=this.getStructTreeRoot();return G.setParent(L),G.setAttached(),this.structChildren.push(G),L.data.K||(L.data.K=[]),L.data.K.push(G.dictionary),this},initPageMarkings:function(G){var L=this;G.forEach(function(z){if(z.structContent){var H=z.structContent,uA=L.markStructureContent(z.tag,z.options);H.push(uA),L.page.markings.slice(-1)[0].structContent=H}else L.markContent(z.tag,z.options)})},endPageMarkings:function(G){var L=G.markings;return L.forEach(function(){return G.write("EMC")}),G.markings=[],L},getMarkInfoDictionary:function(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},getStructTreeRoot:function(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new qe,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree:function(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey:function(){this.getMarkInfoDictionary();var G=this.getStructTreeRoot(),L=G.data.ParentTreeNextKey++;return G.data.ParentTree.add(L,[]),L},endMarkings:function(){var G=this._root.data.StructTreeRoot;G&&(G.end(),this.structChildren.forEach(function(L){return L.end()})),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}},en={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},je={left:0,center:1,right:2},fn={value:"V",defaultValue:"DV"},on={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},pn_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},pn_percent={nDec:0,sepComma:!1},Hn={initForm:function(){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();var G={Fields:[],NeedAppearances:!0,DA:new String("/"+this._font.id+" 0 Tf 0 g"),DR:{Font:{}}};G.DR.Font[this._font.id]=this._font.ref();var L=this.ref(G);return this._root.data.AcroForm=L,this},endAcroForm:function(){var G=this;if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");var L=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(function(z){L[z]=G._acroform.fonts[z]}),this._root.data.AcroForm.data.Fields.forEach(function(z){G._endChild(z)}),this._root.data.AcroForm.end()}return this},_endChild:function(G){var L=this;return Array.isArray(G.data.Kids)&&(G.data.Kids.forEach(function(z){L._endChild(z)}),G.end()),this},formField:function(G){var z=this._fieldDict(G,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),H=this.ref(z);return this._addToParent(H),H},formAnnotation:function(G,L,z,H,uA,XA){var ae=this._fieldDict(G,L,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return ae.Subtype="Widget",void 0===ae.F&&(ae.F=4),this.annotate(z,H,uA,XA,ae),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText:function(G,L,z,H,uA){return this.formAnnotation(G,"text",L,z,H,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton:function(G,L,z,H,uA){return this.formAnnotation(G,"pushButton",L,z,H,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo:function(G,L,z,H,uA){return this.formAnnotation(G,"combo",L,z,H,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList:function(G,L,z,H,uA){return this.formAnnotation(G,"list",L,z,H,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton:function(G,L,z,H,uA){return this.formAnnotation(G,"radioButton",L,z,H,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox:function(G,L,z,H,uA){return this.formAnnotation(G,"checkbox",L,z,H,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent:function(G){var L=G.data.Parent;return L?(L.data.Kids||(L.data.Kids=[]),L.data.Kids.push(G)):this._root.data.AcroForm.data.Fields.push(G),this},_fieldDict:function(G,L){var z=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");var H=Object.assign({},z);return null!==L&&(H=this._resolveType(L,z)),H=this._resolveFlags(H),H=this._resolveJustify(H),H=this._resolveFont(H),H=this._resolveStrings(H),H=this._resolveColors(H),(H=this._resolveFormat(H)).T=new String(G),H.parent&&(H.Parent=H.parent,delete H.parent),H},_resolveType:function(G,L){if("text"===G)L.FT="Tx";else if("pushButton"===G)L.FT="Btn",L.pushButton=!0;else if("radioButton"===G)L.FT="Btn",L.radioButton=!0;else if("checkbox"===G)L.FT="Btn";else if("combo"===G)L.FT="Ch",L.combo=!0;else{if("list"!==G)throw new Error("Invalid form annotation type '"+G+"'");L.FT="Ch"}return L},_resolveFormat:function(G){var L=G.format;if(L&&L.type){var z,H,uA="";if(void 0!==on[L.type])z="AFSpecial_Keystroke",H="AFSpecial_Format",uA=on[L.type];else{var XA=L.type.charAt(0).toUpperCase()+L.type.slice(1);if(z="AF"+XA+"_Keystroke",H="AF"+XA+"_Format","date"===L.type)z+="Ex",uA=String(L.param);else if("time"===L.type)uA=String(L.param);else if("number"===L.type){var qA=Object.assign({},pn_number,L);uA=String([String(qA.nDec),qA.sepComma?"0":"1",'"'+qA.negStyle+'"',"null",'"'+qA.currency+'"',String(qA.currencyPrepend)].join(","))}else if("percent"===L.type){var ae=Object.assign({},pn_percent,L);uA=String([String(ae.nDec),ae.sepComma?"0":"1"].join(","))}}G.AA=G.AA?G.AA:{},G.AA.K={S:"JavaScript",JS:new String(z+"("+uA+");")},G.AA.F={S:"JavaScript",JS:new String(H+"("+uA+");")}}return delete G.format,G},_resolveColors:function(G){var L=this._normalizeColor(G.backgroundColor);return L&&(G.MK||(G.MK={}),G.MK.BG=L),(L=this._normalizeColor(G.borderColor))&&(G.MK||(G.MK={}),G.MK.BC=L),delete G.backgroundColor,delete G.borderColor,G},_resolveFlags:function(G){var L=0;return Object.keys(G).forEach(function(z){en[z]&&(G[z]&&(L|=en[z]),delete G[z])}),0!==L&&(G.Ff=G.Ff?G.Ff:0,G.Ff|=L),G},_resolveJustify:function(G){var L=0;return void 0!==G.align&&("number"==typeof je[G.align]&&(L=je[G.align]),delete G.align),0!==L&&(G.Q=L),G},_resolveFont:function(G){if(null===this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){G.DR={Font:{}};var L=G.fontSize||0;G.DR.Font[this._font.id]=this._font.ref(),G.DA=new String("/"+this._font.id+" "+L+" Tf 0 g")}return G},_resolveStrings:function(G){var L=[];function z(H){if(Array.isArray(H))for(var uA=0;uA1&&void 0!==arguments[1]?arguments[1]:{};L.name=L.name||G;var H,z={Type:"EmbeddedFile",Params:{}};if(!G)throw new Error("No src specified");if(g.isBuffer(G))H=G;else if(G instanceof ArrayBuffer)H=g.from(new Uint8Array(G));else{var uA;if(uA=/^data:(.*?);base64,(.*)$/.exec(G))uA[1]&&(z.Subtype=uA[1].replace("/","#2F")),H=g.from(uA[2],"base64");else{if(!(H=F.readFileSync(G)))throw new Error("Could not read contents of file at filepath "+G);var XA=F.statSync(G),ae=XA.ctime;z.Params.CreationDate=XA.birthtime,z.Params.ModDate=ae}}L.creationDate instanceof Date&&(z.Params.CreationDate=L.creationDate),L.modifiedDate instanceof Date&&(z.Params.ModDate=L.modifiedDate),L.type&&(z.Subtype=L.type.replace("/","#2F"));var Ee,he=o.default.MD5(o.default.lib.WordArray.create(new Uint8Array(H)));z.Params.CheckSum=new String(he),z.Params.Size=H.byteLength,this._fileRegistry||(this._fileRegistry={});var Ke=this._fileRegistry[L.name];Ke&&function Fn(wA,G){return wA.Subtype===G.Subtype&&wA.Params.CheckSum.toString()===G.Params.CheckSum.toString()&&wA.Params.Size===G.Params.Size&&wA.Params.CreationDate.getTime()===G.Params.CreationDate.getTime()&&wA.Params.ModDate.getTime()===G.Params.ModDate.getTime()}(z,Ke)?Ee=Ke.ref:((Ee=this.ref(z)).end(H),this._fileRegistry[L.name]=Object.assign({},z,{ref:Ee}));var ve={Type:"Filespec",F:new String(L.name),EF:{F:Ee},UF:new String(L.name)};L.description&&(ve.Desc=new String(L.description));var be=this.ref(ve);return be.end(),L.hidden||this.addNamedEmbeddedFile(L.name,be),be}};var kn={initPDFA:function(G){"-"===G.charAt(G.length-3)?(this.subset_conformance=G.charAt(G.length-1).toUpperCase(),this.subset=parseInt(G.charAt(G.length-2))):(this.subset_conformance="B",this.subset=parseInt(G.charAt(G.length-1)))},endSubset:function(){this._addPdfaMetadata(),this._addColorOutputIntent()},_addColorOutputIntent:function(){var G=g("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","base64"),L=this.ref({Length:G.length,N:3});L.write(G),L.end();var z=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:L});z.end(),this._root.data.OutputIntents=[z]},_getPdfaid:function(){return'\n \n '+this.subset+"\n "+this.subset_conformance+"\n \n "},_addPdfaMetadata:function(){this.appendXML(this._getPdfaid())}},$n={initPDFUA:function(){this.subset=1},endSubset:function(){this._addPdfuaMetadata()},_addPdfuaMetadata:function(){this.appendXML(this._getPdfuaid())},_getPdfuaid:function(){return'\n \n '+this.subset+"\n \n "}},Mr={_importSubset:function(G){Object.assign(this,G)},initSubset:function(G){switch(G.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(kn),this.initPDFA(G.subset);break;case"PDF/UA":this._importSubset($n),this.initPDFUA()}}},ir=function(){function wA(){this._metadata='\n \n \n \n '}var G=wA.prototype;return G._closeTags=function(){this._metadata=this._metadata.concat('\n \n \n \n ')},G.append=function(z){var H=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this._metadata=this._metadata.concat(z),H&&(this._metadata=this._metadata.concat("\n"))},G.getXML=function(){return this._metadata},G.getLength=function(){return this._metadata.length},G.end=function(){this._closeTags(),this._metadata=this._metadata.trim()},wA}(),Qr={initMetadata:function(){this.metadata=new ir},appendXML:function(G){this.metadata.append(G,!(arguments.length>1&&void 0!==arguments[1])||arguments[1])},_addInfo:function(){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:function(){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(g.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}},Dr=function(wA){function G(){var z,H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch((z=wA.call(this,H)||this).options=H,H.pdfVersion){case"1.4":z.version=1.4;break;case"1.5":z.version=1.5;break;case"1.6":z.version=1.6;break;case"1.7":case"1.7ext3":z.version=1.7;break;default:z.version=1.3}z.compress=null==z.options.compress||z.options.compress,z._pageBuffer=[],z._pageBufferStart=0,z._offsets=[],z._waiting=0,z._ended=!1,z._offset=0;var uA=z.ref({Type:"Pages",Count:0,Kids:[]}),XA=z.ref({Dests:new KA});if(z._root=z.ref({Type:"Catalog",Pages:uA,Names:XA}),z.options.lang&&(z._root.data.Lang=new String(z.options.lang)),z.page=null,z.initMetadata(),z.initColor(),z.initVector(),z.initFonts(H.font),z.initText(),z.initImages(),z.initOutline(),z.initMarkings(H),z.initSubset(H),z.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},z.options.info)for(var qA in z.options.info)z.info[qA]=z.options.info[qA];return z.options.displayTitle&&(z._root.data.ViewerPreferences=z.ref({DisplayDocTitle:!0})),z._id=WA.generateFileID(z.info),z._security=WA.create(z,H),z._write("%PDF-"+z.version),z._write("%\xff\xff\xff\xff"),!1!==z.options.autoFirstPage&&z.addPage(),z}M(G,wA);var L=G.prototype;return L.addPage=function(H){null==H&&(H=this.options),this.options.bufferPages||this.flushPages(),this.page=new CA(this,H),this._pageBuffer.push(this.page);var uA=this._root.data.Pages.data;return uA.Kids.push(this.page.dictionary),uA.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},L.continueOnNewPage=function(H){var uA=this.endPageMarkings(this.page);return this.addPage(H),this.initPageMarkings(uA),this},L.bufferedPageRange=function(){return{start:this._pageBufferStart,count:this._pageBuffer.length}},L.switchToPage=function(H){var uA;if(!(uA=this._pageBuffer[H-this._pageBufferStart]))throw new Error("switchToPage("+H+") out of bounds, current buffer covers pages "+this._pageBufferStart+" to "+(this._pageBufferStart+this._pageBuffer.length-1));return this.page=uA},L.flushPages=function(){var H=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=H.length;for(var XA,uA=Q(H);!(XA=uA()).done;){var qA=XA.value;this.endPageMarkings(qA),qA.end()}},L.addNamedDestination=function(H){for(var uA=arguments.length,XA=new Array(uA>1?uA-1:0),qA=1;qA"u"?r.g:globalThis;Y.exports=function(){for(var o=[],m=0;mv),m(Y.exports,"getCombiningClass",()=>b),m(Y.exports,"getScript",()=>w),m(Y.exports,"getEastAsianWidth",()=>Z),m(Y.exports,"getNumericValue",()=>oA),m(Y.exports,"isAlphabetic",()=>q),m(Y.exports,"isDigit",()=>fA),m(Y.exports,"isPunctuation",()=>_),m(Y.exports,"isLowerCase",()=>CA),m(Y.exports,"isUpperCase",()=>KA),m(Y.exports,"isTitleCase",()=>pA),m(Y.exports,"isWhiteSpace",()=>NA),m(Y.exports,"isBaseForm",()=>zA),m(Y.exports,"isMark",()=>O),m(Y.exports,"default",()=>mA);var u={};u=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 f=new(s(i))(s(g).toByteArray("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")),B=Math.log2||(tA=>Math.log(tA)/Math.LN2),a=tA=>B(tA)+1|0,d=a(s(u).categories.length-1),h=a(s(u).combiningClasses.length-1),E=a(s(u).scripts.length-1),n=a(s(u).eaw.length-1),P=h+E+n+10,M=E+n+10,N=n+10,Q=10,X=(1<>P&X]}function b(tA){const $=f.get(tA);return s(u).combiningClasses[$>>M&D]}function w(tA){const $=f.get(tA);return s(u).scripts[$>>N&F]}function Z(tA){const $=f.get(tA);return s(u).eaw[$>>Q&y]}function oA(tA){let $=f.get(tA),hA=$&K;if(0===hA)return null;if(hA<=50)return hA-1;if(hA<480)return((hA>>4)-12)/(1+(15&hA));if(hA<768){$=(hA>>5)-14;let yA=2+(31&hA);for(;yA>0;)$*=10,yA--;return $}{$=(hA>>2)-191;let yA=1+(3&hA);for(;yA>0;)$*=60,yA--;return $}}function q(tA){const $=v(tA);return"Lu"===$||"Ll"===$||"Lt"===$||"Lm"===$||"Lo"===$||"Nl"===$}function fA(tA){return"Nd"===v(tA)}function _(tA){const $=v(tA);return"Pc"===$||"Pd"===$||"Pe"===$||"Pf"===$||"Pi"===$||"Po"===$||"Ps"===$}function CA(tA){return"Ll"===v(tA)}function KA(tA){return"Lu"===v(tA)}function pA(tA){return"Lt"===v(tA)}function NA(tA){const $=v(tA);return"Zs"===$||"Zl"===$||"Zp"===$}function zA(tA){const $=v(tA);return"Nd"===$||"No"===$||"Nl"===$||"Lu"===$||"Ll"===$||"Lt"===$||"Lm"===$||"Lo"===$||"Me"===$||"Mc"===$}function O(tA){const $=v(tA);return"Mn"===$||"Me"===$||"Mc"===$}var mA={getCategory:v,getCombiningClass:b,getScript:w,getEastAsianWidth:Z,getNumericValue:oA,isAlphabetic:q,isDigit:fA,isPunctuation:_,isLowerCase:CA,isUpperCase:KA,isTitleCase:pA,isWhiteSpace:NA,isBaseForm:zA,isMark:O}},43267:function(Y){"use strict";Y.exports=JSON.parse('[["8740","\u43f0\u4c32\u4603\u45a6\u4578\u{27267}\u4d77\u45b3\u{27cb1}\u4ce2\u{27cc5}\u3b95\u4736\u4744\u4c47\u4c40\u{242bf}\u{23617}\u{27352}\u{26e8b}\u{270d2}\u4c57\u{2a351}\u474f\u45da\u4c85\u{27c6c}\u4d07\u4aa4\u46a1\u{26b23}\u7225\u{25a54}\u{21a63}\u{23e06}\u{23f61}\u664d\u56fb"],["8767","\u7d95\u591d\u{28bb9}\u3df4\u9734\u{27bef}\u5bdb\u{21d5e}\u5aa4\u3625\u{29eb0}\u5ad1\u5bb7\u5cfc\u676e\u8593\u{29945}\u7461\u749d\u3875\u{21d53}\u{2369e}\u{26021}\u3eec"],["87a1","\u{258de}\u3af5\u7afc\u9f97\u{24161}\u{2890d}\u{231ea}\u{20a8a}\u{2325e}\u430a\u8484\u9f96\u942f\u4930\u8613\u5896\u974a\u9218\u79d0\u7a32\u6660\u6a29\u889d\u744c\u7bc5\u6782\u7a2c\u524f\u9046\u34e6\u73c4\u{25db9}\u74c6\u9fc7\u57b3\u492f\u544c\u4131\u{2368e}\u5818\u7a72\u{27b65}\u8b8f\u46ae\u{26e88}\u4181\u{25d99}\u7bae\u{224bc}\u9fc8\u{224c1}\u{224c9}\u{224cc}\u9fc9\u8504\u{235bb}\u40b4\u9fca\u44e1\u{2adff}\u62c1\u706e\u9fcb"],["8840","\u31c0",4,"\u{2010c}\u31c5\u{200d1}\u{200cd}\u31c6\u31c7\u{200cb}\u{21fe8}\u31c8\u{200ca}\u31c9\u31ca\u31cb\u31cc\u{2010e}\u31cd\u31ce\u0100\xc1\u01cd\xc0\u0112\xc9\u011a\xc8\u014c\xd3\u01d1\xd2\u0fff\xca\u0304\u1ebe\u0fff\xca\u030c\u1ec0\xca\u0101\xe1\u01ce\xe0\u0251\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da"],["88a1","\u01dc\xfc\u0fff\xea\u0304\u1ebf\u0fff\xea\u030c\u1ec1\xea\u0261\u23da\u23db"],["8940","\u{2a3a9}\u{21145}"],["8943","\u650a"],["8946","\u4e3d\u6edd\u9d4e\u91df"],["894c","\u{27735}\u6491\u4f1a\u4f28\u4fa8\u5156\u5174\u519c\u51e4\u52a1\u52a8\u533b\u534e\u53d1\u53d8\u56e2\u58f0\u5904\u5907\u5932\u5934\u5b66\u5b9e\u5b9f\u5c9a\u5e86\u603b\u6589\u67fe\u6804\u6865\u6d4e\u70bc\u7535\u7ea4\u7eac\u7eba\u7ec7\u7ecf\u7edf\u7f06\u7f37\u827a\u82cf\u836f\u89c6\u8bbe\u8be2\u8f66\u8f67\u8f6e"],["89a1","\u7411\u7cfc\u7dcd\u6946\u7ac9\u5227"],["89ab","\u918c\u78b8\u915e\u80bc"],["89b0","\u8d0b\u80f6\u{209e7}"],["89b5","\u809f\u9ec7\u4ccd\u9dc9\u9e0c\u4c3e\u{29df6}\u{2700e}\u9e0a\u{2a133}\u35c1"],["89c1","\u6e9a\u823e\u7519"],["89c5","\u4911\u9a6c\u9a8f\u9f99\u7987\u{2846c}\u{21dca}\u{205d0}\u{22ae6}\u4e24\u4e81\u4e80\u4e87\u4ebf\u4eeb\u4f37\u344c\u4fbd\u3e48\u5003\u5088\u347d\u3493\u34a5\u5186\u5905\u51db\u51fc\u5205\u4e89\u5279\u5290\u5327\u35c7\u53a9\u3551\u53b0\u3553\u53c2\u5423\u356d\u3572\u3681\u5493\u54a3\u54b4\u54b9\u54d0\u54ef\u5518\u5523\u5528\u3598\u553f\u35a5\u35bf\u55d7\u35c5"],["8a40","\u{27d84}\u5525"],["8a43","\u{20c42}\u{20d15}\u{2512b}\u5590\u{22cc6}\u39ec\u{20341}\u8e46\u{24db8}\u{294e5}\u4053\u{280be}\u777a\u{22c38}\u3a34\u47d5\u{2815d}\u{269f2}\u{24dea}\u64dd\u{20d7c}\u{20fb4}\u{20cd5}\u{210f4}\u648d\u8e7e\u{20e96}\u{20c0b}\u{20f64}\u{22ca9}\u{28256}\u{244d3}"],["8a64","\u{20d46}\u{29a4d}\u{280e9}\u47f4\u{24ea7}\u{22cc2}\u9ab2\u3a67\u{295f4}\u3fed\u3506\u{252c7}\u{297d4}\u{278c8}\u{22d44}\u9d6e\u9815"],["8a76","\u43d9\u{260a5}\u64b4\u54e3\u{22d4c}\u{22bca}\u{21077}\u39fb\u{2106f}"],["8aa1","\u{266da}\u{26716}\u{279a0}\u64ea\u{25052}\u{20c43}\u8e68\u{221a1}\u{28b4c}\u{20731}"],["8aac","\u480b\u{201a9}\u3ffa\u5873\u{22d8d}"],["8ab2","\u{245c8}\u{204fc}\u{26097}\u{20f4c}\u{20d96}\u5579\u40bb\u43ba"],["8abb","\u4ab4\u{22a66}\u{2109d}\u81aa\u98f5\u{20d9c}\u6379\u39fe\u{22775}\u8dc0\u56a1\u647c\u3e43"],["8ac9","\u{2a601}\u{20e09}\u{22acf}\u{22cc9}"],["8ace","\u{210c8}\u{239c2}\u3992\u3a06\u{2829b}\u3578\u{25e49}\u{220c7}\u5652\u{20f31}\u{22cb2}\u{29720}\u34bc\u6c3d\u{24e3b}"],["8adf","\u{27574}\u{22e8b}\u{22208}\u{2a65b}\u{28ccd}\u{20e7a}\u{20c34}\u{2681c}\u7f93\u{210cf}\u{22803}\u{22939}\u35fb\u{251e3}\u{20e8c}\u{20f8d}\u{20eaa}\u3f93\u{20f30}\u{20d47}\u{2114f}\u{20e4c}"],["8af6","\u{20eab}\u{20ba9}\u{20d48}\u{210c0}\u{2113d}\u3ff9\u{22696}\u6432\u{20fad}"],["8b40","\u{233f4}\u{27639}\u{22bce}\u{20d7e}\u{20d7f}\u{22c51}\u{22c55}\u3a18\u{20e98}\u{210c7}\u{20f2e}\u{2a632}\u{26b50}\u{28cd2}\u{28d99}\u{28cca}\u95aa\u54cc\u82c4\u55b9"],["8b55","\u{29ec3}\u9c26\u9ab6\u{2775e}\u{22dee}\u7140\u816d\u80ec\u5c1c\u{26572}\u8134\u3797\u535f\u{280bd}\u91b6\u{20efa}\u{20e0f}\u{20e77}\u{20efb}\u35dd\u{24deb}\u3609\u{20cd6}\u56af\u{227b5}\u{210c9}\u{20e10}\u{20e78}\u{21078}\u{21148}\u{28207}\u{21455}\u{20e79}\u{24e50}\u{22da4}\u5a54\u{2101d}\u{2101e}\u{210f5}\u{210f6}\u579c\u{20e11}"],["8ba1","\u{27694}\u{282cd}\u{20fb5}\u{20e7b}\u{2517e}\u3703\u{20fb6}\u{21180}\u{252d8}\u{2a2bd}\u{249da}\u{2183a}\u{24177}\u{2827c}\u5899\u5268\u361a\u{2573d}\u7bb2\u5b68\u4800\u4b2c\u9f27\u49e7\u9c1f\u9b8d\u{25b74}\u{2313d}\u55fb\u35f2\u5689\u4e28\u5902\u{21bc1}\u{2f878}\u9751\u{20086}\u4e5b\u4ebb\u353e\u5c23\u5f51\u5fc4\u38fa\u624c\u6535\u6b7a\u6c35\u6c3a\u706c\u722b\u4e2c\u72ad\u{248e9}\u7f52\u793b\u7cf9\u7f53\u{2626a}\u34c1"],["8bde","\u{2634b}\u8002\u8080\u{26612}\u{26951}\u535d\u8864\u89c1\u{278b2}\u8ba0\u8d1d\u9485\u9578\u957f\u95e8\u{28e0f}\u97e6\u9875\u98ce\u98de\u9963\u{29810}\u9c7c\u9e1f\u9ec4\u6b6f\uf907\u4e37\u{20087}\u961d\u6237\u94a2"],["8c40","\u503b\u6dfe\u{29c73}\u9fa6\u3dc9\u888f\u{2414e}\u7077\u5cf5\u4b20\u{251cd}\u3559\u{25d30}\u6122\u{28a32}\u8fa7\u91f6\u7191\u6719\u73ba\u{23281}\u{2a107}\u3c8b\u{21980}\u4b10\u78e4\u7402\u51ae\u{2870f}\u4009\u6a63\u{2a2ba}\u4223\u860f\u{20a6f}\u7a2a\u{29947}\u{28aea}\u9755\u704d\u5324\u{2207e}\u93f4\u76d9\u{289e3}\u9fa7\u77dd\u4ea3\u4ff0\u50bc\u4e2f\u4f17\u9fa8\u5434\u7d8b\u5892\u58d0\u{21db6}\u5e92\u5e99\u5fc2\u{22712}\u658b"],["8ca1","\u{233f9}\u6919\u6a43\u{23c63}\u6cff"],["8ca7","\u7200\u{24505}\u738c\u3edb\u{24a13}\u5b15\u74b9\u8b83\u{25ca4}\u{25695}\u7a93\u7bec\u7cc3\u7e6c\u82f8\u8597\u9fa9\u8890\u9faa\u8eb9\u9fab\u8fcf\u855f\u99e0\u9221\u9fac\u{28db9}\u{2143f}\u4071\u42a2\u5a1a"],["8cc9","\u9868\u676b\u4276\u573d"],["8cce","\u85d6\u{2497b}\u82bf\u{2710d}\u4c81\u{26d74}\u5d7b\u{26b15}\u{26fbe}\u9fad\u9fae\u5b96\u9faf\u66e7\u7e5b\u6e57\u79ca\u3d88\u44c3\u{23256}\u{22796}\u439a\u4536"],["8ce6","\u5cd5\u{23b1a}\u8af9\u5c78\u3d12\u{23551}\u5d78\u9fb2\u7157\u4558\u{240ec}\u{21e23}\u4c77\u3978\u344a\u{201a4}\u{26c41}\u8acc\u4fb4\u{20239}\u59bf\u816c\u9856\u{298fa}\u5f3b"],["8d40","\u{20b9f}"],["8d42","\u{221c1}\u{2896d}\u4102\u46bb\u{29079}\u3f07\u9fb3\u{2a1b5}\u40f8\u37d6\u46f7\u{26c46}\u417c\u{286b2}\u{273ff}\u456d\u38d4\u{2549a}\u4561\u451b\u4d89\u4c7b\u4d76\u45ea\u3fc8\u{24b0f}\u3661\u44de\u44bd\u41ed\u5d3e\u5d48\u5d56\u3dfc\u380f\u5da4\u5db9\u3820\u3838\u5e42\u5ebd\u5f25\u5f83\u3908\u3914\u393f\u394d\u60d7\u613d\u5ce5\u3989\u61b7\u61b9\u61cf\u39b8\u622c\u6290\u62e5\u6318\u39f8\u56b1"],["8da1","\u3a03\u63e2\u63fb\u6407\u645a\u3a4b\u64c0\u5d15\u5621\u9f9f\u3a97\u6586\u3abd\u65ff\u6653\u3af2\u6692\u3b22\u6716\u3b42\u67a4\u6800\u3b58\u684a\u6884\u3b72\u3b71\u3b7b\u6909\u6943\u725c\u6964\u699f\u6985\u3bbc\u69d6\u3bdd\u6a65\u6a74\u6a71\u6a82\u3bec\u6a99\u3bf2\u6aab\u6ab5\u6ad4\u6af6\u6b81\u6bc1\u6bea\u6c75\u6caa\u3ccb\u6d02\u6d06\u6d26\u6d81\u3cef\u6da4\u6db1\u6e15\u6e18\u6e29\u6e86\u{289c0}\u6ebb\u6ee2\u6eda\u9f7f\u6ee8\u6ee9\u6f24\u6f34\u3d46\u{23f41}\u6f81\u6fbe\u3d6a\u3d75\u71b7\u5c99\u3d8a\u702c\u3d91\u7050\u7054\u706f\u707f\u7089\u{20325}\u43c1\u35f1\u{20ed8}"],["8e40","\u{23ed7}\u57be\u{26ed3}\u713e\u{257e0}\u364e\u69a2\u{28be9}\u5b74\u7a49\u{258e1}\u{294d9}\u7a65\u7a7d\u{259ac}\u7abb\u7ab0\u7ac2\u7ac3\u71d1\u{2648d}\u41ca\u7ada\u7add\u7aea\u41ef\u54b2\u{25c01}\u7b0b\u7b55\u7b29\u{2530e}\u{25cfe}\u7ba2\u7b6f\u839c\u{25bb4}\u{26c7f}\u7bd0\u8421\u7b92\u7bb8\u{25d20}\u3dad\u{25c65}\u8492\u7bfa\u7c06\u7c35\u{25cc1}\u7c44\u7c83\u{24882}\u7ca6\u667d\u{24578}\u7cc9\u7cc7\u7ce6\u7c74\u7cf3\u7cf5\u7cce"],["8ea1","\u7e67\u451d\u{26e44}\u7d5d\u{26ed6}\u748d\u7d89\u7dab\u7135\u7db3\u7dd2\u{24057}\u{26029}\u7de4\u3d13\u7df5\u{217f9}\u7de5\u{2836d}\u7e1d\u{26121}\u{2615a}\u7e6e\u7e92\u432b\u946c\u7e27\u7f40\u7f41\u7f47\u7936\u{262d0}\u99e1\u7f97\u{26351}\u7fa3\u{21661}\u{20068}\u455c\u{23766}\u4503\u{2833a}\u7ffa\u{26489}\u8005\u8008\u801d\u8028\u802f\u{2a087}\u{26cc3}\u803b\u803c\u8061\u{22714}\u4989\u{26626}\u{23de3}\u{266e8}\u6725\u80a7\u{28a48}\u8107\u811a\u58b0\u{226f6}\u6c7f\u{26498}\u{24fb8}\u64e7\u{2148a}\u8218\u{2185e}\u6a53\u{24a65}\u{24a95}\u447a\u8229\u{20b0d}\u{26a52}\u{23d7e}\u4ff9\u{214fd}\u84e2\u8362\u{26b0a}\u{249a7}\u{23530}\u{21773}\u{23df8}\u82aa\u691b\u{2f994}\u41db"],["8f40","\u854b\u82d0\u831a\u{20e16}\u{217b4}\u36c1\u{2317d}\u{2355a}\u827b\u82e2\u8318\u{23e8b}\u{26da3}\u{26b05}\u{26b97}\u{235ce}\u3dbf\u831d\u55ec\u8385\u450b\u{26da5}\u83ac\u83c1\u83d3\u347e\u{26ed4}\u6a57\u855a\u3496\u{26e42}\u{22eef}\u8458\u{25be4}\u8471\u3dd3\u44e4\u6aa7\u844a\u{23cb5}\u7958\u84a8\u{26b96}\u{26e77}\u{26e43}\u84de\u840f\u8391\u44a0\u8493\u84e4\u{25c91}\u4240\u{25cc0}\u4543\u8534\u5af2\u{26e99}\u4527\u8573\u4516\u67bf\u8616"],["8fa1","\u{28625}\u{2863b}\u85c1\u{27088}\u8602\u{21582}\u{270cd}\u{2f9b2}\u456a\u8628\u3648\u{218a2}\u53f7\u{2739a}\u867e\u8771\u{2a0f8}\u87ee\u{22c27}\u87b1\u87da\u880f\u5661\u866c\u6856\u460f\u8845\u8846\u{275e0}\u{23db9}\u{275e4}\u885e\u889c\u465b\u88b4\u88b5\u63c1\u88c5\u7777\u{2770f}\u8987\u898a\u89a6\u89a9\u89a7\u89bc\u{28a25}\u89e7\u{27924}\u{27abd}\u8a9c\u7793\u91fe\u8a90\u{27a59}\u7ae9\u{27b3a}\u{23f8f}\u4713\u{27b38}\u717c\u8b0c\u8b1f\u{25430}\u{25565}\u8b3f\u8b4c\u8b4d\u8aa9\u{24a7a}\u8b90\u8b9b\u8aaf\u{216df}\u4615\u884f\u8c9b\u{27d54}\u{27d8f}\u{2f9d4}\u3725\u{27d53}\u8cd6\u{27d98}\u{27dbd}\u8d12\u8d03\u{21910}\u8cdb\u705c\u8d11\u{24cc9}\u3ed0\u8d77"],["9040","\u8da9\u{28002}\u{21014}\u{2498a}\u3b7c\u{281bc}\u{2710c}\u7ae7\u8ead\u8eb6\u8ec3\u92d4\u8f19\u8f2d\u{28365}\u{28412}\u8fa5\u9303\u{2a29f}\u{20a50}\u8fb3\u492a\u{289de}\u{2853d}\u{23dbb}\u5ef8\u{23262}\u8ff9\u{2a014}\u{286bc}\u{28501}\u{22325}\u3980\u{26ed7}\u9037\u{2853c}\u{27abe}\u9061\u{2856c}\u{2860b}\u90a8\u{28713}\u90c4\u{286e6}\u90ae\u90fd\u9167\u3af0\u91a9\u91c4\u7cac\u{28933}\u{21e89}\u920e\u6c9f\u9241\u9262\u{255b9}\u92b9\u{28ac6}\u{23c9b}\u{28b0c}\u{255db}"],["90a1","\u{20d31}\u932c\u936b\u{28ae1}\u{28beb}\u708f\u5ac3\u{28ae2}\u{28ae5}\u4965\u9244\u{28bec}\u{28c39}\u{28bff}\u9373\u945b\u8ebc\u9585\u95a6\u9426\u95a0\u6ff6\u42b9\u{2267a}\u{286d8}\u{2127c}\u{23e2e}\u49df\u6c1c\u967b\u9696\u416c\u96a3\u{26ed5}\u61da\u96b6\u78f5\u{28ae0}\u96bd\u53cc\u49a1\u{26cb8}\u{20274}\u{26410}\u{290af}\u{290e5}\u{24ad1}\u{21915}\u{2330a}\u9731\u8642\u9736\u4a0f\u453d\u4585\u{24ae9}\u7075\u5b41\u971b\u975c\u{291d5}\u9757\u5b4a\u{291eb}\u975f\u9425\u50d0\u{230b7}\u{230bc}\u9789\u979f\u97b1\u97be\u97c0\u97d2\u97e0\u{2546c}\u97ee\u741c\u{29433}\u97ff\u97f5\u{2941d}\u{2797a}\u4ad1\u9834\u9833\u984b\u9866\u3b0e\u{27175}\u3d51\u{20630}\u{2415c}"],["9140","\u{25706}\u98ca\u98b7\u98c8\u98c7\u4aff\u{26d27}\u{216d3}\u55b0\u98e1\u98e6\u98ec\u9378\u9939\u{24a29}\u4b72\u{29857}\u{29905}\u99f5\u9a0c\u9a3b\u9a10\u9a58\u{25725}\u36c4\u{290b1}\u{29bd5}\u9ae0\u9ae2\u{29b05}\u9af4\u4c0e\u9b14\u9b2d\u{28600}\u5034\u9b34\u{269a8}\u38c3\u{2307d}\u9b50\u9b40\u{29d3e}\u5a45\u{21863}\u9b8e\u{2424b}\u9c02\u9bff\u9c0c\u{29e68}\u9dd4\u{29fb7}\u{2a192}\u{2a1ab}\u{2a0e1}\u{2a123}\u{2a1df}\u9d7e\u9d83\u{2a134}\u9e0e\u6888"],["91a1","\u9dc4\u{2215b}\u{2a193}\u{2a220}\u{2193b}\u{2a233}\u9d39\u{2a0b9}\u{2a2b4}\u9e90\u9e95\u9e9e\u9ea2\u4d34\u9eaa\u9eaf\u{24364}\u9ec1\u3b60\u39e5\u3d1d\u4f32\u37be\u{28c2b}\u9f02\u9f08\u4b96\u9424\u{26da2}\u9f17\u9f16\u9f39\u569f\u568a\u9f45\u99b8\u{2908b}\u97f2\u847f\u9f62\u9f69\u7adc\u9f8e\u7216\u4bbe\u{24975}\u{249bb}\u7177\u{249f8}\u{24348}\u{24a51}\u739e\u{28bda}\u{218fa}\u799f\u{2897e}\u{28e36}\u9369\u93f3\u{28a44}\u92ec\u9381\u93cb\u{2896c}\u{244b9}\u7217\u3eeb\u7772\u7a43\u70d0\u{24473}\u{243f8}\u717e\u{217ef}\u70a3\u{218be}\u{23599}\u3ec7\u{21885}\u{2542f}\u{217f8}\u3722\u{216fb}\u{21839}\u36e1\u{21774}\u{218d1}\u{25f4b}\u3723\u{216c0}\u575b\u{24a25}\u{213fe}\u{212a8}"],["9240","\u{213c6}\u{214b6}\u8503\u{236a6}\u8503\u8455\u{24994}\u{27165}\u{23e31}\u{2555c}\u{23efb}\u{27052}\u44f4\u{236ee}\u{2999d}\u{26f26}\u67f9\u3733\u3c15\u3de7\u586c\u{21922}\u6810\u4057\u{2373f}\u{240e1}\u{2408b}\u{2410f}\u{26c21}\u54cb\u569e\u{266b1}\u5692\u{20fdf}\u{20ba8}\u{20e0d}\u93c6\u{28b13}\u939c\u4ef8\u512b\u3819\u{24436}\u4ebc\u{20465}\u{2037f}\u4f4b\u4f8a\u{25651}\u5a68\u{201ab}\u{203cb}\u3999\u{2030a}\u{20414}\u3435\u4f29\u{202c0}\u{28eb3}\u{20275}\u8ada\u{2020c}\u4e98"],["92a1","\u50cd\u510d\u4fa2\u4f03\u{24a0e}\u{23e8a}\u4f42\u502e\u506c\u5081\u4fcc\u4fe5\u5058\u50fc\u5159\u515b\u515d\u515e\u6e76\u{23595}\u{23e39}\u{23ebf}\u6d72\u{21884}\u{23e89}\u51a8\u51c3\u{205e0}\u44dd\u{204a3}\u{20492}\u{20491}\u8d7a\u{28a9c}\u{2070e}\u5259\u52a4\u{20873}\u52e1\u936e\u467a\u718c\u{2438c}\u{20c20}\u{249ac}\u{210e4}\u69d1\u{20e1d}\u7479\u3ede\u7499\u7414\u7456\u7398\u4b8e\u{24abc}\u{2408d}\u53d0\u3584\u720f\u{240c9}\u55b4\u{20345}\u54cd\u{20bc6}\u571d\u925d\u96f4\u9366\u57dd\u578d\u577f\u363e\u58cb\u5a99\u{28a46}\u{216fa}\u{2176f}\u{21710}\u5a2c\u59b8\u928f\u5a7e\u5acf\u5a12\u{25946}\u{219f3}\u{21861}\u{24295}\u36f5\u6d05\u7443\u5a21\u{25e83}"],["9340","\u5a81\u{28bd7}\u{20413}\u93e0\u748c\u{21303}\u7105\u4972\u9408\u{289fb}\u93bd\u37a0\u5c1e\u5c9e\u5e5e\u5e48\u{21996}\u{2197c}\u{23aee}\u5ecd\u5b4f\u{21903}\u{21904}\u3701\u{218a0}\u36dd\u{216fe}\u36d3\u812a\u{28a47}\u{21dba}\u{23472}\u{289a8}\u5f0c\u5f0e\u{21927}\u{217ab}\u5a6b\u{2173b}\u5b44\u8614\u{275fd}\u8860\u607e\u{22860}\u{2262b}\u5fdb\u3eb8\u{225af}\u{225be}\u{29088}\u{26f73}\u61c0\u{2003e}\u{20046}\u{2261b}\u6199\u6198\u6075\u{22c9b}\u{22d07}\u{246d4}\u{2914d}"],["93a1","\u6471\u{24665}\u{22b6a}\u3a29\u{22b22}\u{23450}\u{298ea}\u{22e78}\u6337\u{2a45b}\u64b6\u6331\u63d1\u{249e3}\u{22d67}\u62a4\u{22ca1}\u643b\u656b\u6972\u3bf4\u{2308e}\u{232ad}\u{24989}\u{232ab}\u550d\u{232e0}\u{218d9}\u{2943f}\u66ce\u{23289}\u{231b3}\u3ae0\u4190\u{25584}\u{28b22}\u{2558f}\u{216fc}\u{2555b}\u{25425}\u78ee\u{23103}\u{2182a}\u{23234}\u3464\u{2320f}\u{23182}\u{242c9}\u668e\u{26d24}\u666b\u4b93\u6630\u{27870}\u{21deb}\u6663\u{232d2}\u{232e1}\u661e\u{25872}\u38d1\u{2383a}\u{237bc}\u3b99\u{237a2}\u{233fe}\u74d0\u3b96\u678f\u{2462a}\u68b6\u681e\u3bc4\u6abe\u3863\u{237d5}\u{24487}\u6a33\u6a52\u6ac9\u6b05\u{21912}\u6511\u6898\u6a4c\u3bd7\u6a7a\u6b57\u{23fc0}\u{23c9a}\u93a0\u92f2\u{28bea}\u{28acb}"],["9440","\u9289\u{2801e}\u{289dc}\u9467\u6da5\u6f0b\u{249ec}\u6d67\u{23f7f}\u3d8f\u6e04\u{2403c}\u5a3d\u6e0a\u5847\u6d24\u7842\u713b\u{2431a}\u{24276}\u70f1\u7250\u7287\u7294\u{2478f}\u{24725}\u5179\u{24aa4}\u{205eb}\u747a\u{23ef8}\u{2365f}\u{24a4a}\u{24917}\u{25fe1}\u3f06\u3eb1\u{24adf}\u{28c23}\u{23f35}\u60a7\u3ef3\u74cc\u743c\u9387\u7437\u449f\u{26dea}\u4551\u7583\u3f63\u{24cd9}\u{24d06}\u3f58\u7555\u7673\u{2a5c6}\u3b19\u7468\u{28acc}\u{249ab}\u{2498e}\u3afb"],["94a1","\u3dcd\u{24a4e}\u3eff\u{249c5}\u{248f3}\u91fa\u5732\u9342\u{28ae3}\u{21864}\u50df\u{25221}\u{251e7}\u7778\u{23232}\u770e\u770f\u777b\u{24697}\u{23781}\u3a5e\u{248f0}\u7438\u749b\u3ebf\u{24aba}\u{24ac7}\u40c8\u{24a96}\u{261ae}\u9307\u{25581}\u781e\u788d\u7888\u78d2\u73d0\u7959\u{27741}\u{256e3}\u410e\u799b\u8496\u79a5\u6a2d\u{23efa}\u7a3a\u79f4\u416e\u{216e6}\u4132\u9235\u79f1\u{20d4c}\u{2498c}\u{20299}\u{23dba}\u{2176e}\u3597\u556b\u3570\u36aa\u{201d4}\u{20c0d}\u7ae2\u5a59\u{226f5}\u{25aaf}\u{25a9c}\u5a0d\u{2025b}\u78f0\u5a2a\u{25bc6}\u7afe\u41f9\u7c5d\u7c6d\u4211\u{25bb3}\u{25ebc}\u{25ea6}\u7ccd\u{249f9}\u{217b0}\u7c8e\u7c7c\u7cae\u6ab2\u7ddc\u7e07\u7dd3\u7f4e\u{26261}"],["9540","\u{2615c}\u{27b48}\u7d97\u{25e82}\u426a\u{26b75}\u{20916}\u67d6\u{2004e}\u{235cf}\u57c4\u{26412}\u{263f8}\u{24962}\u7fdd\u7b27\u{2082c}\u{25ae9}\u{25d43}\u7b0c\u{25e0e}\u99e6\u8645\u9a63\u6a1c\u{2343f}\u39e2\u{249f7}\u{265ad}\u9a1f\u{265a0}\u8480\u{27127}\u{26cd1}\u44ea\u8137\u4402\u80c6\u8109\u8142\u{267b4}\u98c3\u{26a42}\u8262\u8265\u{26a51}\u8453\u{26da7}\u8610\u{2721b}\u5a86\u417f\u{21840}\u5b2b\u{218a1}\u5ae4\u{218d8}\u86a0\u{2f9bc}\u{23d8f}\u882d\u{27422}\u5a02"],["95a1","\u886e\u4f45\u8887\u88bf\u88e6\u8965\u894d\u{25683}\u8954\u{27785}\u{27784}\u{28bf5}\u{28bd9}\u{28b9c}\u{289f9}\u3ead\u84a3\u46f5\u46cf\u37f2\u8a3d\u8a1c\u{29448}\u5f4d\u922b\u{24284}\u65d4\u7129\u70c4\u{21845}\u9d6d\u8c9f\u8ce9\u{27ddc}\u599a\u77c3\u59f0\u436e\u36d4\u8e2a\u8ea7\u{24c09}\u8f30\u8f4a\u42f4\u6c58\u6fbb\u{22321}\u489b\u6f79\u6e8b\u{217da}\u9be9\u36b5\u{2492f}\u90bb\u9097\u5571\u4906\u91bb\u9404\u{28a4b}\u4062\u{28afc}\u9427\u{28c1d}\u{28c3b}\u84e5\u8a2b\u9599\u95a7\u9597\u9596\u{28d34}\u7445\u3ec2\u{248ff}\u{24a42}\u{243ea}\u3ee7\u{23225}\u968f\u{28ee7}\u{28e66}\u{28e65}\u3ecc\u{249ed}\u{24a78}\u{23fee}\u7412\u746b\u3efc\u9741\u{290b0}"],["9640","\u6847\u4a1d\u{29093}\u{257df}\u975d\u9368\u{28989}\u{28c26}\u{28b2f}\u{263be}\u92ba\u5b11\u8b69\u493c\u73f9\u{2421b}\u979b\u9771\u9938\u{20f26}\u5dc1\u{28bc5}\u{24ab2}\u981f\u{294da}\u92f6\u{295d7}\u91e5\u44c0\u{28b50}\u{24a67}\u{28b64}\u98dc\u{28a45}\u3f00\u922a\u4925\u8414\u993b\u994d\u{27b06}\u3dfd\u999b\u4b6f\u99aa\u9a5c\u{28b65}\u{258c8}\u6a8f\u9a21\u5afe\u9a2f\u{298f1}\u4b90\u{29948}\u99bc\u4bbd\u4b97\u937d\u5872\u{21302}\u5822\u{249b8}"],["96a1","\u{214e8}\u7844\u{2271f}\u{23db8}\u68c5\u3d7d\u9458\u3927\u6150\u{22781}\u{2296b}\u6107\u9c4f\u9c53\u9c7b\u9c35\u9c10\u9b7f\u9bcf\u{29e2d}\u9b9f\u{2a1f5}\u{2a0fe}\u9d21\u4cae\u{24104}\u9e18\u4cb0\u9d0c\u{2a1b4}\u{2a0ed}\u{2a0f3}\u{2992f}\u9da5\u84bd\u{26e12}\u{26fdf}\u{26b82}\u85fc\u4533\u{26da4}\u{26e84}\u{26df0}\u8420\u85ee\u{26e00}\u{237d7}\u{26064}\u79e2\u{2359c}\u{23640}\u492d\u{249de}\u3d62\u93db\u92be\u9348\u{202bf}\u78b9\u9277\u944d\u4fe4\u3440\u9064\u{2555d}\u783d\u7854\u78b6\u784b\u{21757}\u{231c9}\u{24941}\u369a\u4f72\u6fda\u6fd9\u701e\u701e\u5414\u{241b5}\u57bb\u58f3\u578a\u9d16\u57d7\u7134\u34af\u{241ac}\u71eb\u{26c40}\u{24f97}\u5b28\u{217b5}\u{28a49}"],["9740","\u610c\u5ace\u5a0b\u42bc\u{24488}\u372c\u4b7b\u{289fc}\u93bb\u93b8\u{218d6}\u{20f1d}\u8472\u{26cc0}\u{21413}\u{242fa}\u{22c26}\u{243c1}\u5994\u{23db7}\u{26741}\u7da8\u{2615b}\u{260a4}\u{249b9}\u{2498b}\u{289fa}\u92e5\u73e2\u3ee9\u74b4\u{28b63}\u{2189f}\u3ee1\u{24ab3}\u6ad8\u73f3\u73fb\u3ed6\u{24a3e}\u{24a94}\u{217d9}\u{24a66}\u{203a7}\u{21424}\u{249e5}\u7448\u{24916}\u70a5\u{24976}\u9284\u73e6\u935f\u{204fe}\u9331\u{28ace}\u{28a16}\u9386\u{28be7}\u{255d5}\u4935\u{28a82}\u716b"],["97a1","\u{24943}\u{20cff}\u56a4\u{2061a}\u{20beb}\u{20cb8}\u5502\u79c4\u{217fa}\u7dfe\u{216c2}\u{24a50}\u{21852}\u452e\u9401\u370a\u{28ac0}\u{249ad}\u59b0\u{218bf}\u{21883}\u{27484}\u5aa1\u36e2\u{23d5b}\u36b0\u925f\u5a79\u{28a81}\u{21862}\u9374\u3ccd\u{20ab4}\u4a96\u398a\u50f4\u3d69\u3d4c\u{2139c}\u7175\u42fb\u{28218}\u6e0f\u{290e4}\u44eb\u6d57\u{27e4f}\u7067\u6caf\u3cd6\u{23fed}\u{23e2d}\u6e02\u6f0c\u3d6f\u{203f5}\u7551\u36bc\u34c8\u4680\u3eda\u4871\u59c4\u926e\u493e\u8f41\u{28c1c}\u{26bc0}\u5812\u57c8\u36d6\u{21452}\u70fe\u{24362}\u{24a71}\u{22fe3}\u{212b0}\u{223bd}\u68b9\u6967\u{21398}\u{234e5}\u{27bf4}\u{236df}\u{28a83}\u{237d6}\u{233fa}\u{24c9f}\u6a1a\u{236ad}\u{26cb7}\u843e\u44df\u44ce"],["9840","\u{26d26}\u{26d51}\u{26c82}\u{26fde}\u6f17\u{27109}\u833d\u{2173a}\u83ed\u{26c80}\u{27053}\u{217db}\u5989\u5a82\u{217b3}\u5a61\u5a71\u{21905}\u{241fc}\u372d\u59ef\u{2173c}\u36c7\u718e\u9390\u669a\u{242a5}\u5a6e\u5a2b\u{24293}\u6a2b\u{23ef9}\u{27736}\u{2445b}\u{242ca}\u711d\u{24259}\u{289e1}\u4fb0\u{26d28}\u5cc2\u{244ce}\u{27e4d}\u{243bd}\u6a0c\u{24256}\u{21304}\u70a6\u7133\u{243e9}\u3da5\u6cdf\u{2f825}\u{24a4f}\u7e65\u59eb\u5d2f\u3df3\u5f5c\u{24a5d}\u{217df}\u7da4\u8426"],["98a1","\u5485\u{23afa}\u{23300}\u{20214}\u577e\u{208d5}\u{20619}\u3fe5\u{21f9e}\u{2a2b6}\u7003\u{2915b}\u5d70\u738f\u7cd3\u{28a59}\u{29420}\u4fc8\u7fe7\u72cd\u7310\u{27af4}\u7338\u7339\u{256f6}\u7341\u7348\u3ea9\u{27b18}\u906c\u71f5\u{248f2}\u73e1\u81f6\u3eca\u770c\u3ed1\u6ca2\u56fd\u7419\u741e\u741f\u3ee2\u3ef0\u3ef4\u3efa\u74d3\u3f0e\u3f53\u7542\u756d\u7572\u758d\u3f7c\u75c8\u75dc\u3fc0\u764d\u3fd7\u7674\u3fdc\u767a\u{24f5c}\u7188\u5623\u8980\u5869\u401d\u7743\u4039\u6761\u4045\u35db\u7798\u406a\u406f\u5c5e\u77be\u77cb\u58f2\u7818\u70b9\u781c\u40a8\u7839\u7847\u7851\u7866\u8448\u{25535}\u7933\u6803\u7932\u4103"],["9940","\u4109\u7991\u7999\u8fbb\u7a06\u8fbc\u4167\u7a91\u41b2\u7abc\u8279\u41c4\u7acf\u7adb\u41cf\u4e21\u7b62\u7b6c\u7b7b\u7c12\u7c1b\u4260\u427a\u7c7b\u7c9c\u428c\u7cb8\u4294\u7ced\u8f93\u70c0\u{20ccf}\u7dcf\u7dd4\u7dd0\u7dfd\u7fae\u7fb4\u729f\u4397\u8020\u8025\u7b39\u802e\u8031\u8054\u3dcc\u57b4\u70a0\u80b7\u80e9\u43ed\u810c\u732a\u810e\u8112\u7560\u8114\u4401\u3b39\u8156\u8159\u815a"],["99a1","\u4413\u583a\u817c\u8184\u4425\u8193\u442d\u81a5\u57ef\u81c1\u81e4\u8254\u448f\u82a6\u8276\u82ca\u82d8\u82ff\u44b0\u8357\u9669\u698a\u8405\u70f5\u8464\u60e3\u8488\u4504\u84be\u84e1\u84f8\u8510\u8538\u8552\u453b\u856f\u8570\u85e0\u4577\u8672\u8692\u86b2\u86ef\u9645\u878b\u4606\u4617\u88ae\u88ff\u8924\u8947\u8991\u{27967}\u8a29\u8a38\u8a94\u8ab4\u8c51\u8cd4\u8cf2\u8d1c\u4798\u585f\u8dc3\u47ed\u4eee\u8e3a\u55d8\u5754\u8e71\u55f5\u8eb0\u4837\u8ece\u8ee2\u8ee4\u8eed\u8ef2\u8fb7\u8fc1\u8fca\u8fcc\u9033\u99c4\u48ad\u98e0\u9213\u491e\u9228\u9258\u926b\u92b1\u92ae\u92bf"],["9a40","\u92e3\u92eb\u92f3\u92f4\u92fd\u9343\u9384\u93ad\u4945\u4951\u9ebf\u9417\u5301\u941d\u942d\u943e\u496a\u9454\u9479\u952d\u95a2\u49a7\u95f4\u9633\u49e5\u67a0\u4a24\u9740\u4a35\u97b2\u97c2\u5654\u4ae4\u60e8\u98b9\u4b19\u98f1\u5844\u990e\u9919\u51b4\u991c\u9937\u9942\u995d\u9962\u4b70\u99c5\u4b9d\u9a3c\u9b0f\u7a83\u9b69\u9b81\u9bdd\u9bf1\u9bf4\u4c6d\u9c20\u376f\u{21bc2}\u9d49\u9c3a"],["9aa1","\u9efe\u5650\u9d93\u9dbd\u9dc0\u9dfc\u94f6\u8fb6\u9e7b\u9eac\u9eb1\u9ebd\u9ec6\u94dc\u9ee2\u9ef1\u9ef8\u7ac8\u9f44\u{20094}\u{202b7}\u{203a0}\u691a\u94c3\u59ac\u{204d7}\u5840\u94c1\u37b9\u{205d5}\u{20615}\u{20676}\u{216ba}\u5757\u7173\u{20ac2}\u{20acd}\u{20bbf}\u546a\u{2f83b}\u{20bcb}\u549e\u{20bfb}\u{20c3b}\u{20c53}\u{20c65}\u{20c7c}\u60e7\u{20c8d}\u567a\u{20cb5}\u{20cdd}\u{20ced}\u{20d6f}\u{20db2}\u{20dc8}\u6955\u9c2f\u87a5\u{20e04}\u{20e0e}\u{20ed7}\u{20f90}\u{20f2d}\u{20e73}\u5c20\u{20fbc}\u5e0b\u{2105c}\u{2104f}\u{21076}\u671e\u{2107b}\u{21088}\u{21096}\u3647\u{210bf}\u{210d3}\u{2112f}\u{2113b}\u5364\u84ad\u{212e3}\u{21375}\u{21336}\u8b81\u{21577}\u{21619}\u{217c3}\u{217c7}\u4e78\u70bb\u{2182d}\u{2196a}"],["9b40","\u{21a2d}\u{21a45}\u{21c2a}\u{21c70}\u{21cac}\u{21ec8}\u62c3\u{21ed5}\u{21f15}\u7198\u6855\u{22045}\u69e9\u36c8\u{2227c}\u{223d7}\u{223fa}\u{2272a}\u{22871}\u{2294f}\u82fd\u{22967}\u{22993}\u{22ad5}\u89a5\u{22ae8}\u8fa0\u{22b0e}\u97b8\u{22b3f}\u9847\u9abd\u{22c4c}"],["9b62","\u{22c88}\u{22cb7}\u{25be8}\u{22d08}\u{22d12}\u{22db7}\u{22d95}\u{22e42}\u{22f74}\u{22fcc}\u{23033}\u{23066}\u{2331f}\u{233de}\u5fb1\u6648\u66bf\u{27a79}\u{23567}\u{235f3}\u7201\u{249ba}\u77d7\u{2361a}\u{23716}\u7e87\u{20346}\u58b5\u670e"],["9ba1","\u6918\u{23aa7}\u{27657}\u{25fe2}\u{23e11}\u{23eb9}\u{275fe}\u{2209a}\u48d0\u4ab8\u{24119}\u{28a9a}\u{242ee}\u{2430d}\u{2403b}\u{24334}\u{24396}\u{24a45}\u{205ca}\u51d2\u{20611}\u599f\u{21ea8}\u3bbe\u{23cff}\u{24404}\u{244d6}\u5788\u{24674}\u399b\u{2472f}\u{285e8}\u{299c9}\u3762\u{221c3}\u8b5e\u{28b4e}\u99d6\u{24812}\u{248fb}\u{24a15}\u7209\u{24ac0}\u{20c78}\u5965\u{24ea5}\u{24f86}\u{20779}\u8eda\u{2502c}\u528f\u573f\u7171\u{25299}\u{25419}\u{23f4a}\u{24aa7}\u55bc\u{25446}\u{2546e}\u{26b52}\u91d4\u3473\u{2553f}\u{27632}\u{2555e}\u4718\u{25562}\u{25566}\u{257c7}\u{2493f}\u{2585d}\u5066\u34fb\u{233cc}\u60de\u{25903}\u477c\u{28948}\u{25aae}\u{25b89}\u{25c06}\u{21d90}\u57a1\u7151\u6fb6\u{26102}\u{27c12}\u9056\u{261b2}\u{24f9a}\u8b62\u{26402}\u{2644a}"],["9c40","\u5d5b\u{26bf7}\u8f36\u{26484}\u{2191c}\u8aea\u{249f6}\u{26488}\u{23fef}\u{26512}\u4bc0\u{265bf}\u{266b5}\u{2271b}\u9465\u{257e1}\u6195\u5a27\u{2f8cd}\u4fbb\u56b9\u{24521}\u{266fc}\u4e6a\u{24934}\u9656\u6d8f\u{26cbd}\u3618\u8977\u{26799}\u{2686e}\u{26411}\u{2685e}\u71df\u{268c7}\u7b42\u{290c0}\u{20a11}\u{26926}\u9104\u{26939}\u7a45\u9df0\u{269fa}\u9a26\u{26a2d}\u365f\u{26469}\u{20021}\u7983\u{26a34}\u{26b5b}\u5d2c\u{23519}\u83cf\u{26b9d}\u46d0\u{26ca4}\u753b\u8865\u{26dae}\u58b6"],["9ca1","\u371c\u{2258d}\u{2704b}\u{271cd}\u3c54\u{27280}\u{27285}\u9281\u{2217a}\u{2728b}\u9330\u{272e6}\u{249d0}\u6c39\u949f\u{27450}\u{20ef8}\u8827\u88f5\u{22926}\u{28473}\u{217b1}\u6eb8\u{24a2a}\u{21820}\u39a4\u36b9\u5c10\u79e3\u453f\u66b6\u{29cad}\u{298a4}\u8943\u{277cc}\u{27858}\u56d6\u40df\u{2160a}\u39a1\u{2372f}\u{280e8}\u{213c5}\u71ad\u8366\u{279dd}\u{291a8}\u5a67\u4cb7\u{270af}\u{289ab}\u{279fd}\u{27a0a}\u{27b0b}\u{27d66}\u{2417a}\u7b43\u797e\u{28009}\u6fb5\u{2a2df}\u6a03\u{28318}\u53a2\u{26e07}\u93bf\u6836\u975d\u{2816f}\u{28023}\u{269b5}\u{213ed}\u{2322f}\u{28048}\u5d85\u{28c30}\u{28083}\u5715\u9823\u{28949}\u5dab\u{24988}\u65be\u69d5\u53d2\u{24aa5}\u{23f81}\u3c11\u6736\u{28090}\u{280f4}\u{2812e}\u{21fa1}\u{2814f}"],["9d40","\u{28189}\u{281af}\u{2821a}\u{28306}\u{2832f}\u{2838a}\u35ca\u{28468}\u{286aa}\u48fa\u63e6\u{28956}\u7808\u9255\u{289b8}\u43f2\u{289e7}\u43df\u{289e8}\u{28b46}\u{28bd4}\u59f8\u{28c09}\u8f0b\u{28fc5}\u{290ec}\u7b51\u{29110}\u{2913c}\u3df7\u{2915e}\u{24aca}\u8fd0\u728f\u568b\u{294e7}\u{295e9}\u{295b0}\u{295b8}\u{29732}\u{298d1}\u{29949}\u{2996a}\u{299c3}\u{29a28}\u{29b0e}\u{29d5a}\u{29d9b}\u7e9f\u{29ef8}\u{29f23}\u4ca4\u9547\u{2a293}\u71a2\u{2a2ff}\u4d91\u9012\u{2a5cb}\u4d9c\u{20c9c}\u8fbe\u55c1"],["9da1","\u8fba\u{224b0}\u8fb9\u{24a93}\u4509\u7e7f\u6f56\u6ab1\u4eea\u34e4\u{28b2c}\u{2789d}\u373a\u8e80\u{217f5}\u{28024}\u{28b6c}\u{28b99}\u{27a3e}\u{266af}\u3deb\u{27655}\u{23cb7}\u{25635}\u{25956}\u4e9a\u{25e81}\u{26258}\u56bf\u{20e6d}\u8e0e\u5b6d\u{23e88}\u{24c9e}\u63de\u62d0\u{217f6}\u{2187b}\u6530\u562d\u{25c4a}\u541a\u{25311}\u3dc6\u{29d98}\u4c7d\u5622\u561e\u7f49\u{25ed8}\u5975\u{23d40}\u8770\u4e1c\u{20fea}\u{20d49}\u{236ba}\u8117\u9d5e\u8d18\u763b\u9c45\u764e\u77b9\u9345\u5432\u8148\u82f7\u5625\u8132\u8418\u80bd\u55ea\u7962\u5643\u5416\u{20e9d}\u35ce\u5605\u55f1\u66f1\u{282e2}\u362d\u7534\u55f0\u55ba\u5497\u5572\u{20c41}\u{20c96}\u5ed0\u{25148}\u{20e76}\u{22c62}"],["9e40","\u{20ea2}\u9eab\u7d5a\u55de\u{21075}\u629d\u976d\u5494\u8ccd\u71f6\u9176\u63fc\u63b9\u63fe\u5569\u{22b43}\u9c72\u{22eb3}\u519a\u34df\u{20da7}\u51a7\u544d\u551e\u5513\u7666\u8e2d\u{2688a}\u75b1\u80b6\u8804\u8786\u88c7\u81b6\u841c\u{210c1}\u44ec\u7304\u{24706}\u5b90\u830b\u{26893}\u567b\u{226f4}\u{27d2f}\u{241a3}\u{27d73}\u{26ed0}\u{272b6}\u9170\u{211d9}\u9208\u{23cfc}\u{2a6a9}\u{20eac}\u{20ef9}\u7266\u{21ca2}\u474e\u{24fc2}\u{27ff9}\u{20feb}\u40fa"],["9ea1","\u9c5d\u651f\u{22da0}\u48f3\u{247e0}\u{29d7c}\u{20fec}\u{20e0a}\u6062\u{275a3}\u{20fed}"],["9ead","\u{26048}\u{21187}\u71a3\u7e8e\u9d50\u4e1a\u4e04\u3577\u5b0d\u6cb2\u5367\u36ac\u39dc\u537d\u36a5\u{24618}\u589a\u{24b6e}\u822d\u544b\u57aa\u{25a95}\u{20979}"],["9ec5","\u3a52\u{22465}\u7374\u{29eac}\u4d09\u9bed\u{23cfe}\u{29f30}\u4c5b\u{24fa9}\u{2959e}\u{29fde}\u845c\u{23db6}\u{272b2}\u{267b3}\u{23720}\u632e\u7d25\u{23ef7}\u{23e2c}\u3a2a\u9008\u52cc\u3e74\u367a\u45e9\u{2048e}\u7640\u5af0\u{20eb6}\u787a\u{27f2e}\u58a7\u40bf\u567c\u9b8b\u5d74\u7654\u{2a434}\u9e85\u4ce1\u75f9\u37fb\u6119\u{230da}\u{243f2}"],["9ef5","\u565d\u{212a9}\u57a7\u{24963}\u{29e06}\u5234\u{270ae}\u35ad\u6c4a\u9d7c"],["9f40","\u7c56\u9b39\u57de\u{2176c}\u5c53\u64d3\u{294d0}\u{26335}\u{27164}\u86ad\u{20d28}\u{26d22}\u{24ae2}\u{20d71}"],["9f4f","\u51fe\u{21f0f}\u5d8e\u9703\u{21dd1}\u9e81\u904c\u7b1f\u9b02\u5cd1\u7ba3\u6268\u6335\u9aff\u7bcf\u9b2a\u7c7e\u9b2e\u7c42\u7c86\u9c15\u7bfc\u9b09\u9f17\u9c1b\u{2493e}\u9f5a\u5573\u5bc3\u4ffd\u9e98\u4ff2\u5260\u3e06\u52d1\u5767\u5056\u59b7\u5e12\u97c8\u9dab\u8f5c\u5469\u97b4\u9940\u97ba\u532c\u6130"],["9fa1","\u692c\u53da\u9c0a\u9d02\u4c3b\u9641\u6980\u50a6\u7546\u{2176d}\u99da\u5273"],["9fae","\u9159\u9681\u915c"],["9fb2","\u9151\u{28e97}\u637f\u{26d23}\u6aca\u5611\u918e\u757a\u6285\u{203fc}\u734f\u7c70\u{25c21}\u{23cfd}"],["9fc1","\u{24919}\u76d6\u9b9d\u4e2a\u{20cd4}\u83be\u8842"],["9fc9","\u5c4a\u69c0\u50ed\u577a\u521f\u5df5\u4ece\u6c31\u{201f2}\u4f39\u549c\u54da\u529a\u8d82\u35fe\u5f0c\u35f3"],["9fdb","\u6b52\u917c\u9fa5\u9b97\u982e\u98b4\u9aba\u9ea8\u9e84\u717a\u7b14"],["9fe7","\u6bfa\u8818\u7f78"],["9feb","\u5620\u{2a64a}\u8e77\u9f53"],["9ff0","\u8dd4\u8e4f\u9e1c\u8e01\u6282\u{2837d}\u8e28\u8e75\u7ad3\u{24a77}\u7a3e\u78d8\u6cea\u8a67\u7607"],["a040","\u{28a5a}\u9f26\u6cce\u87d6\u75c3\u{2a2b2}\u7853\u{2f840}\u8d0c\u72e2\u7371\u8b2d\u7302\u74f1\u8ceb\u{24abb}\u862f\u5fba\u88a0\u44b7"],["a055","\u{2183b}\u{26e05}"],["a058","\u8a7e\u{2251b}"],["a05b","\u60fd\u7667\u9ad7\u9d44\u936e\u9b8f\u87f5"],["a063","\u880f\u8cf7\u732c\u9721\u9bb0\u35d6\u72b2\u4c07\u7c51\u994a\u{26159}\u6159\u4c04\u9e96\u617d"],["a073","\u575f\u616f\u62a6\u6239\u62ce\u3a5c\u61e2\u53aa\u{233f5}\u6364\u6802\u35d2"],["a0a1","\u5d57\u{28bc2}\u8fda\u{28e39}"],["a0a6","\u50d9\u{21d46}\u7906\u5332\u9638\u{20f3b}\u4065"],["a0ae","\u77fe"],["a0b0","\u7cc2\u{25f1a}\u7cda\u7a2d\u8066\u8063\u7d4d\u7505\u74f2\u8994\u821a\u670c\u8062\u{27486}\u805b\u74f0\u8103\u7724\u8989\u{267cc}\u7553\u{26ed1}\u87a9\u87ce\u81c8\u878c\u8a49\u8cad\u8b43\u772b\u74f8\u84da\u3635\u69b2\u8da6"],["a0d4","\u89a9\u7468\u6db9\u87c1\u{24011}\u74e7\u3ddb\u7176\u60a4\u619c\u3cd1\u7162\u6077"],["a0e2","\u7f71\u{28b2d}\u7250\u60e9\u4b7e\u5220\u3c18\u{23cc7}\u{25ed7}\u{27656}\u{25531}\u{21944}\u{212fe}\u{29903}\u{26ddc}\u{270ad}\u5cc1\u{261ad}\u{28a0f}\u{23677}\u{200ee}\u{26846}\u{24f0e}\u4562\u5b1f\u{2634c}\u9f50\u9ea6\u{2626b}"],["a3c0","\u2400",31,"\u2421"],["c6a1","\u2460",9,"\u2474",9,"\u2170",9,"\u4e36\u4e3f\u4e85\u4ea0\u5182\u5196\u51ab\u52f9\u5338\u5369\u53b6\u590a\u5b80\u5ddb\u2f33\u5e7f\u5ef4\u5f50\u5f61\u6534\u65e0\u7592\u7676\u8fb5\u96b6\xa8\u02c6\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\uff3b\uff3d\u273d\u3041",23],["c740","\u3059",58,"\u30a1\u30a2\u30a3\u30a4"],["c7a1","\u30a5",81,"\u0410",5,"\u0401\u0416",4],["c840","\u041b",26,"\u0451\u0436",25,"\u21e7\u21b8\u21b9\u31cf\u{200cc}\u4e5a\u{2008a}\u5202\u4491"],["c8a1","\u9fb0\u5188\u9fb1\u{27607}"],["c8cd","\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u309b\u309c\u2e80\u2e84\u2e86\u2e87\u2e88\u2e8a\u2e8c\u2e8d\u2e95\u2e9c\u2e9d\u2ea5\u2ea7\u2eaa\u2eac\u2eae\u2eb6\u2ebc\u2ebe\u2ec6\u2eca\u2ecc\u2ecd\u2ecf\u2ed6\u2ed7\u2ede\u2ee3"],["c8f5","\u0283\u0250\u025b\u0254\u0275\u0153\xf8\u014b\u028a\u026a"],["f9fe","\uffed"],["fa40","\u{20547}\u92db\u{205df}\u{23fc5}\u854c\u42b5\u73ef\u51b5\u3649\u{24942}\u{289e4}\u9344\u{219db}\u82ee\u{23cc8}\u783c\u6744\u62df\u{24933}\u{289aa}\u{202a0}\u{26bb3}\u{21305}\u4fab\u{224ed}\u5008\u{26d29}\u{27a84}\u{23600}\u{24ab1}\u{22513}\u5029\u{2037e}\u5fa4\u{20380}\u{20347}\u6edb\u{2041f}\u507d\u5101\u347a\u510e\u986c\u3743\u8416\u{249a4}\u{20487}\u5160\u{233b4}\u516a\u{20bff}\u{220fc}\u{202e5}\u{22530}\u{2058e}\u{23233}\u{21983}\u5b82\u877d\u{205b3}\u{23c99}\u51b2\u51b8"],["faa1","\u9d34\u51c9\u51cf\u51d1\u3cdc\u51d3\u{24aa6}\u51b3\u51e2\u5342\u51ed\u83cd\u693e\u{2372d}\u5f7b\u520b\u5226\u523c\u52b5\u5257\u5294\u52b9\u52c5\u7c15\u8542\u52e0\u860d\u{26b13}\u5305\u{28ade}\u5549\u6ed9\u{23f80}\u{20954}\u{23fec}\u5333\u5344\u{20be2}\u6ccb\u{21726}\u681b\u73d5\u604a\u3eaa\u38cc\u{216e8}\u71dd\u44a2\u536d\u5374\u{286ab}\u537e\u537f\u{21596}\u{21613}\u77e6\u5393\u{28a9b}\u53a0\u53ab\u53ae\u73a7\u{25772}\u3f59\u739c\u53c1\u53c5\u6c49\u4e49\u57fe\u53d9\u3aab\u{20b8f}\u53e0\u{23feb}\u{22da3}\u53f6\u{20c77}\u5413\u7079\u552b\u6657\u6d5b\u546d\u{26b53}\u{20d74}\u555d\u548f\u54a4\u47a6\u{2170d}\u{20edd}\u3db4\u{20d4d}"],["fb40","\u{289bc}\u{22698}\u5547\u4ced\u542f\u7417\u5586\u55a9\u5605\u{218d7}\u{2403a}\u4552\u{24435}\u66b3\u{210b4}\u5637\u66cd\u{2328a}\u66a4\u66ad\u564d\u564f\u78f1\u56f1\u9787\u53fe\u5700\u56ef\u56ed\u{28b66}\u3623\u{2124f}\u5746\u{241a5}\u6c6e\u708b\u5742\u36b1\u{26c7e}\u57e6\u{21416}\u5803\u{21454}\u{24363}\u5826\u{24bf5}\u585c\u58aa\u3561\u58e0\u58dc\u{2123c}\u58fb\u5bff\u5743\u{2a150}\u{24278}\u93d3\u35a1\u591f\u68a6\u36c3\u6e59"],["fba1","\u{2163e}\u5a24\u5553\u{21692}\u8505\u59c9\u{20d4e}\u{26c81}\u{26d2a}\u{217dc}\u59d9\u{217fb}\u{217b2}\u{26da6}\u6d71\u{21828}\u{216d5}\u59f9\u{26e45}\u5aab\u5a63\u36e6\u{249a9}\u5a77\u3708\u5a96\u7465\u5ad3\u{26fa1}\u{22554}\u3d85\u{21911}\u3732\u{216b8}\u5e83\u52d0\u5b76\u6588\u5b7c\u{27a0e}\u4004\u485d\u{20204}\u5bd5\u6160\u{21a34}\u{259cc}\u{205a5}\u5bf3\u5b9d\u4d10\u5c05\u{21b44}\u5c13\u73ce\u5c14\u{21ca5}\u{26b28}\u5c49\u48dd\u5c85\u5ce9\u5cef\u5d8b\u{21df9}\u{21e37}\u5d10\u5d18\u5d46\u{21ea4}\u5cba\u5dd7\u82fc\u382d\u{24901}\u{22049}\u{22173}\u8287\u3836\u3bc2\u5e2e\u6a8a\u5e75\u5e7a\u{244bc}\u{20cd3}\u53a6\u4eb7\u5ed0\u53a8\u{21771}\u5e09\u5ef4\u{28482}"],["fc40","\u5ef9\u5efb\u38a0\u5efc\u683e\u941b\u5f0d\u{201c1}\u{2f894}\u3ade\u48ae\u{2133a}\u5f3a\u{26888}\u{223d0}\u5f58\u{22471}\u5f63\u97bd\u{26e6e}\u5f72\u9340\u{28a36}\u5fa7\u5db6\u3d5f\u{25250}\u{21f6a}\u{270f8}\u{22668}\u91d6\u{2029e}\u{28a29}\u6031\u6685\u{21877}\u3963\u3dc7\u3639\u5790\u{227b4}\u7971\u3e40\u609e\u60a4\u60b3\u{24982}\u{2498f}\u{27a53}\u74a4\u50e1\u5aa0\u6164\u8424\u6142\u{2f8a6}\u{26ed2}\u6181\u51f4\u{20656}\u6187\u5baa\u{23fb7}"],["fca1","\u{2285f}\u61d3\u{28b9d}\u{2995d}\u61d0\u3932\u{22980}\u{228c1}\u6023\u615c\u651e\u638b\u{20118}\u62c5\u{21770}\u62d5\u{22e0d}\u636c\u{249df}\u3a17\u6438\u63f8\u{2138e}\u{217fc}\u6490\u6f8a\u{22e36}\u9814\u{2408c}\u{2571d}\u64e1\u64e5\u947b\u3a66\u643a\u3a57\u654d\u6f16\u{24a28}\u{24a23}\u6585\u656d\u655f\u{2307e}\u65b5\u{24940}\u4b37\u65d1\u40d8\u{21829}\u65e0\u65e3\u5fdf\u{23400}\u6618\u{231f7}\u{231f8}\u6644\u{231a4}\u{231a5}\u664b\u{20e75}\u6667\u{251e6}\u6673\u6674\u{21e3d}\u{23231}\u{285f4}\u{231c8}\u{25313}\u77c5\u{228f7}\u99a4\u6702\u{2439c}\u{24a21}\u3b2b\u69fa\u{237c2}\u675e\u6767\u6762\u{241cd}\u{290ed}\u67d7\u44e9\u6822\u6e50\u923c\u6801\u{233e6}\u{26da0}\u685d"],["fd40","\u{2346f}\u69e1\u6a0b\u{28adf}\u6973\u68c3\u{235cd}\u6901\u6900\u3d32\u3a01\u{2363c}\u3b80\u67ac\u6961\u{28a4a}\u42fc\u6936\u6998\u3ba1\u{203c9}\u8363\u5090\u69f9\u{23659}\u{2212a}\u6a45\u{23703}\u6a9d\u3bf3\u67b1\u6ac8\u{2919c}\u3c0d\u6b1d\u{20923}\u60de\u6b35\u6b74\u{227cd}\u6eb5\u{23adb}\u{203b5}\u{21958}\u3740\u5421\u{23b5a}\u6be1\u{23efc}\u6bdc\u6c37\u{2248b}\u{248f1}\u{26b51}\u6c5a\u8226\u6c79\u{23dbc}\u44c5\u{23dbd}\u{241a4}\u{2490c}\u{24900}"],["fda1","\u{23cc9}\u36e5\u3ceb\u{20d32}\u9b83\u{231f9}\u{22491}\u7f8f\u6837\u{26d25}\u{26da1}\u{26deb}\u6d96\u6d5c\u6e7c\u6f04\u{2497f}\u{24085}\u{26e72}\u8533\u{26f74}\u51c7\u6c9c\u6e1d\u842e\u{28b21}\u6e2f\u{23e2f}\u7453\u{23f82}\u79cc\u6e4f\u5a91\u{2304b}\u6ff8\u370d\u6f9d\u{23e30}\u6efa\u{21497}\u{2403d}\u4555\u93f0\u6f44\u6f5c\u3d4e\u6f74\u{29170}\u3d3b\u6f9f\u{24144}\u6fd3\u{24091}\u{24155}\u{24039}\u{23ff0}\u{23fb4}\u{2413f}\u51df\u{24156}\u{24157}\u{24140}\u{261dd}\u704b\u707e\u70a7\u7081\u70cc\u70d5\u70d6\u70df\u4104\u3de8\u71b4\u7196\u{24277}\u712b\u7145\u5a88\u714a\u716e\u5c9c\u{24365}\u714f\u9362\u{242c1}\u712c\u{2445a}\u{24a27}\u{24a22}\u71ba\u{28be8}\u70bd\u720e"],["fe40","\u9442\u7215\u5911\u9443\u7224\u9341\u{25605}\u722e\u7240\u{24974}\u68bd\u7255\u7257\u3e55\u{23044}\u680d\u6f3d\u7282\u732a\u732b\u{24823}\u{2882b}\u48ed\u{28804}\u7328\u732e\u73cf\u73aa\u{20c3a}\u{26a2e}\u73c9\u7449\u{241e2}\u{216e7}\u{24a24}\u6623\u36c5\u{249b7}\u{2498d}\u{249fb}\u73f7\u7415\u6903\u{24a26}\u7439\u{205c3}\u3ed7\u745c\u{228ad}\u7460\u{28eb2}\u7447\u73e4\u7476\u83b9\u746c\u3730\u7474\u93f1\u6a2c\u7482\u4953\u{24a8c}"],["fea1","\u{2415f}\u{24a79}\u{28b8f}\u5b46\u{28c03}\u{2189e}\u74c8\u{21988}\u750e\u74e9\u751e\u{28ed9}\u{21a4b}\u5bd7\u{28eac}\u9385\u754d\u754a\u7567\u756e\u{24f82}\u3f04\u{24d13}\u758e\u745d\u759e\u75b4\u7602\u762c\u7651\u764f\u766f\u7676\u{263f5}\u7690\u81ef\u37f8\u{26911}\u{2690e}\u76a1\u76a5\u76b7\u76cc\u{26f9f}\u8462\u{2509d}\u{2517d}\u{21e1c}\u771e\u7726\u7740\u64af\u{25220}\u7758\u{232ac}\u77af\u{28964}\u{28968}\u{216c1}\u77f4\u7809\u{21376}\u{24a12}\u68ca\u78af\u78c7\u78d3\u96a5\u792e\u{255e0}\u78d7\u7934\u78b1\u{2760c}\u8fb8\u8884\u{28b2b}\u{26083}\u{2261c}\u7986\u8900\u6902\u7980\u{25857}\u799d\u{27b39}\u793c\u79a9\u6e2a\u{27126}\u3ea8\u79c6\u{2910d}\u79d4"]]')},74488:function(Y){"use strict";Y.exports=JSON.parse('[["0","\\u0000",127,"\u20ac"],["8140","\u4e02\u4e04\u4e05\u4e06\u4e0f\u4e12\u4e17\u4e1f\u4e20\u4e21\u4e23\u4e26\u4e29\u4e2e\u4e2f\u4e31\u4e33\u4e35\u4e37\u4e3c\u4e40\u4e41\u4e42\u4e44\u4e46\u4e4a\u4e51\u4e55\u4e57\u4e5a\u4e5b\u4e62\u4e63\u4e64\u4e65\u4e67\u4e68\u4e6a",5,"\u4e72\u4e74",9,"\u4e7f",6,"\u4e87\u4e8a"],["8180","\u4e90\u4e96\u4e97\u4e99\u4e9c\u4e9d\u4e9e\u4ea3\u4eaa\u4eaf\u4eb0\u4eb1\u4eb4\u4eb6\u4eb7\u4eb8\u4eb9\u4ebc\u4ebd\u4ebe\u4ec8\u4ecc\u4ecf\u4ed0\u4ed2\u4eda\u4edb\u4edc\u4ee0\u4ee2\u4ee6\u4ee7\u4ee9\u4eed\u4eee\u4eef\u4ef1\u4ef4\u4ef8\u4ef9\u4efa\u4efc\u4efe\u4f00\u4f02",6,"\u4f0b\u4f0c\u4f12",4,"\u4f1c\u4f1d\u4f21\u4f23\u4f28\u4f29\u4f2c\u4f2d\u4f2e\u4f31\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e",4,"\u4f44\u4f45\u4f47",5,"\u4f52\u4f54\u4f56\u4f61\u4f62\u4f66\u4f68\u4f6a\u4f6b\u4f6d\u4f6e\u4f71\u4f72\u4f75\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f80\u4f81\u4f82\u4f85\u4f86\u4f87\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f95\u4f96\u4f98\u4f99\u4f9a\u4f9c\u4f9e\u4f9f\u4fa1\u4fa2"],["8240","\u4fa4\u4fab\u4fad\u4fb0",4,"\u4fb6",8,"\u4fc0\u4fc1\u4fc2\u4fc6\u4fc7\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fd2",4,"\u4fd9\u4fdb\u4fe0\u4fe2\u4fe4\u4fe5\u4fe7\u4feb\u4fec\u4ff0\u4ff2\u4ff4\u4ff5\u4ff6\u4ff7\u4ff9\u4ffb\u4ffc\u4ffd\u4fff",11],["8280","\u500b\u500e\u5010\u5011\u5013\u5015\u5016\u5017\u501b\u501d\u501e\u5020\u5022\u5023\u5024\u5027\u502b\u502f",10,"\u503b\u503d\u503f\u5040\u5041\u5042\u5044\u5045\u5046\u5049\u504a\u504b\u504d\u5050",4,"\u5056\u5057\u5058\u5059\u505b\u505d",7,"\u5066",5,"\u506d",8,"\u5078\u5079\u507a\u507c\u507d\u5081\u5082\u5083\u5084\u5086\u5087\u5089\u508a\u508b\u508c\u508e",20,"\u50a4\u50a6\u50aa\u50ab\u50ad",4,"\u50b3",6,"\u50bc"],["8340","\u50bd",17,"\u50d0",5,"\u50d7\u50d8\u50d9\u50db",10,"\u50e8\u50e9\u50ea\u50eb\u50ef\u50f0\u50f1\u50f2\u50f4\u50f6",4,"\u50fc",9,"\u5108"],["8380","\u5109\u510a\u510c",5,"\u5113",13,"\u5122",28,"\u5142\u5147\u514a\u514c\u514e\u514f\u5150\u5152\u5153\u5157\u5158\u5159\u515b\u515d",4,"\u5163\u5164\u5166\u5167\u5169\u516a\u516f\u5172\u517a\u517e\u517f\u5183\u5184\u5186\u5187\u518a\u518b\u518e\u518f\u5190\u5191\u5193\u5194\u5198\u519a\u519d\u519e\u519f\u51a1\u51a3\u51a6",4,"\u51ad\u51ae\u51b4\u51b8\u51b9\u51ba\u51be\u51bf\u51c1\u51c2\u51c3\u51c5\u51c8\u51ca\u51cd\u51ce\u51d0\u51d2",5],["8440","\u51d8\u51d9\u51da\u51dc\u51de\u51df\u51e2\u51e3\u51e5",5,"\u51ec\u51ee\u51f1\u51f2\u51f4\u51f7\u51fe\u5204\u5205\u5209\u520b\u520c\u520f\u5210\u5213\u5214\u5215\u521c\u521e\u521f\u5221\u5222\u5223\u5225\u5226\u5227\u522a\u522c\u522f\u5231\u5232\u5234\u5235\u523c\u523e\u5244",5,"\u524b\u524e\u524f\u5252\u5253\u5255\u5257\u5258"],["8480","\u5259\u525a\u525b\u525d\u525f\u5260\u5262\u5263\u5264\u5266\u5268\u526b\u526c\u526d\u526e\u5270\u5271\u5273",9,"\u527e\u5280\u5283",4,"\u5289",6,"\u5291\u5292\u5294",6,"\u529c\u52a4\u52a5\u52a6\u52a7\u52ae\u52af\u52b0\u52b4",9,"\u52c0\u52c1\u52c2\u52c4\u52c5\u52c6\u52c8\u52ca\u52cc\u52cd\u52ce\u52cf\u52d1\u52d3\u52d4\u52d5\u52d7\u52d9",5,"\u52e0\u52e1\u52e2\u52e3\u52e5",10,"\u52f1",7,"\u52fb\u52fc\u52fd\u5301\u5302\u5303\u5304\u5307\u5309\u530a\u530b\u530c\u530e"],["8540","\u5311\u5312\u5313\u5314\u5318\u531b\u531c\u531e\u531f\u5322\u5324\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u532f",9,"\u533c\u533d\u5340\u5342\u5344\u5346\u534b\u534c\u534d\u5350\u5354\u5358\u5359\u535b\u535d\u5365\u5368\u536a\u536c\u536d\u5372\u5376\u5379\u537b\u537c\u537d\u537e\u5380\u5381\u5383\u5387\u5388\u538a\u538e\u538f"],["8580","\u5390",4,"\u5396\u5397\u5399\u539b\u539c\u539e\u53a0\u53a1\u53a4\u53a7\u53aa\u53ab\u53ac\u53ad\u53af",6,"\u53b7\u53b8\u53b9\u53ba\u53bc\u53bd\u53be\u53c0\u53c3",4,"\u53ce\u53cf\u53d0\u53d2\u53d3\u53d5\u53da\u53dc\u53dd\u53de\u53e1\u53e2\u53e7\u53f4\u53fa\u53fe\u53ff\u5400\u5402\u5405\u5407\u540b\u5414\u5418\u5419\u541a\u541c\u5422\u5424\u5425\u542a\u5430\u5433\u5436\u5437\u543a\u543d\u543f\u5441\u5442\u5444\u5445\u5447\u5449\u544c\u544d\u544e\u544f\u5451\u545a\u545d",4,"\u5463\u5465\u5467\u5469",7,"\u5474\u5479\u547a\u547e\u547f\u5481\u5483\u5485\u5487\u5488\u5489\u548a\u548d\u5491\u5493\u5497\u5498\u549c\u549e\u549f\u54a0\u54a1"],["8640","\u54a2\u54a5\u54ae\u54b0\u54b2\u54b5\u54b6\u54b7\u54b9\u54ba\u54bc\u54be\u54c3\u54c5\u54ca\u54cb\u54d6\u54d8\u54db\u54e0",4,"\u54eb\u54ec\u54ef\u54f0\u54f1\u54f4",5,"\u54fb\u54fe\u5500\u5502\u5503\u5504\u5505\u5508\u550a",4,"\u5512\u5513\u5515",5,"\u551c\u551d\u551e\u551f\u5521\u5525\u5526"],["8680","\u5528\u5529\u552b\u552d\u5532\u5534\u5535\u5536\u5538\u5539\u553a\u553b\u553d\u5540\u5542\u5545\u5547\u5548\u554b",4,"\u5551\u5552\u5553\u5554\u5557",4,"\u555d\u555e\u555f\u5560\u5562\u5563\u5568\u5569\u556b\u556f",5,"\u5579\u557a\u557d\u557f\u5585\u5586\u558c\u558d\u558e\u5590\u5592\u5593\u5595\u5596\u5597\u559a\u559b\u559e\u55a0",6,"\u55a8",8,"\u55b2\u55b4\u55b6\u55b8\u55ba\u55bc\u55bf",4,"\u55c6\u55c7\u55c8\u55ca\u55cb\u55ce\u55cf\u55d0\u55d5\u55d7",4,"\u55de\u55e0\u55e2\u55e7\u55e9\u55ed\u55ee\u55f0\u55f1\u55f4\u55f6\u55f8",4,"\u55ff\u5602\u5603\u5604\u5605"],["8740","\u5606\u5607\u560a\u560b\u560d\u5610",7,"\u5619\u561a\u561c\u561d\u5620\u5621\u5622\u5625\u5626\u5628\u5629\u562a\u562b\u562e\u562f\u5630\u5633\u5635\u5637\u5638\u563a\u563c\u563d\u563e\u5640",11,"\u564f",4,"\u5655\u5656\u565a\u565b\u565d",4],["8780","\u5663\u5665\u5666\u5667\u566d\u566e\u566f\u5670\u5672\u5673\u5674\u5675\u5677\u5678\u5679\u567a\u567d",7,"\u5687",6,"\u5690\u5691\u5692\u5694",14,"\u56a4",10,"\u56b0",6,"\u56b8\u56b9\u56ba\u56bb\u56bd",12,"\u56cb",8,"\u56d5\u56d6\u56d8\u56d9\u56dc\u56e3\u56e5",5,"\u56ec\u56ee\u56ef\u56f2\u56f3\u56f6\u56f7\u56f8\u56fb\u56fc\u5700\u5701\u5702\u5705\u5707\u570b",6],["8840","\u5712",9,"\u571d\u571e\u5720\u5721\u5722\u5724\u5725\u5726\u5727\u572b\u5731\u5732\u5734",4,"\u573c\u573d\u573f\u5741\u5743\u5744\u5745\u5746\u5748\u5749\u574b\u5752",4,"\u5758\u5759\u5762\u5763\u5765\u5767\u576c\u576e\u5770\u5771\u5772\u5774\u5775\u5778\u5779\u577a\u577d\u577e\u577f\u5780"],["8880","\u5781\u5787\u5788\u5789\u578a\u578d",4,"\u5794",6,"\u579c\u579d\u579e\u579f\u57a5\u57a8\u57aa\u57ac\u57af\u57b0\u57b1\u57b3\u57b5\u57b6\u57b7\u57b9",8,"\u57c4",6,"\u57cc\u57cd\u57d0\u57d1\u57d3\u57d6\u57d7\u57db\u57dc\u57de\u57e1\u57e2\u57e3\u57e5",7,"\u57ee\u57f0\u57f1\u57f2\u57f3\u57f5\u57f6\u57f7\u57fb\u57fc\u57fe\u57ff\u5801\u5803\u5804\u5805\u5808\u5809\u580a\u580c\u580e\u580f\u5810\u5812\u5813\u5814\u5816\u5817\u5818\u581a\u581b\u581c\u581d\u581f\u5822\u5823\u5825",4,"\u582b",4,"\u5831\u5832\u5833\u5834\u5836",7],["8940","\u583e",5,"\u5845",6,"\u584e\u584f\u5850\u5852\u5853\u5855\u5856\u5857\u5859",4,"\u585f",5,"\u5866",4,"\u586d",16,"\u587f\u5882\u5884\u5886\u5887\u5888\u588a\u588b\u588c"],["8980","\u588d",4,"\u5894",4,"\u589b\u589c\u589d\u58a0",7,"\u58aa",17,"\u58bd\u58be\u58bf\u58c0\u58c2\u58c3\u58c4\u58c6",10,"\u58d2\u58d3\u58d4\u58d6",13,"\u58e5",5,"\u58ed\u58ef\u58f1\u58f2\u58f4\u58f5\u58f7\u58f8\u58fa",7,"\u5903\u5905\u5906\u5908",4,"\u590e\u5910\u5911\u5912\u5913\u5917\u5918\u591b\u591d\u591e\u5920\u5921\u5922\u5923\u5926\u5928\u592c\u5930\u5932\u5933\u5935\u5936\u593b"],["8a40","\u593d\u593e\u593f\u5940\u5943\u5945\u5946\u594a\u594c\u594d\u5950\u5952\u5953\u5959\u595b",4,"\u5961\u5963\u5964\u5966",12,"\u5975\u5977\u597a\u597b\u597c\u597e\u597f\u5980\u5985\u5989\u598b\u598c\u598e\u598f\u5990\u5991\u5994\u5995\u5998\u599a\u599b\u599c\u599d\u599f\u59a0\u59a1\u59a2\u59a6"],["8a80","\u59a7\u59ac\u59ad\u59b0\u59b1\u59b3",5,"\u59ba\u59bc\u59bd\u59bf",6,"\u59c7\u59c8\u59c9\u59cc\u59cd\u59ce\u59cf\u59d5\u59d6\u59d9\u59db\u59de",4,"\u59e4\u59e6\u59e7\u59e9\u59ea\u59eb\u59ed",11,"\u59fa\u59fc\u59fd\u59fe\u5a00\u5a02\u5a0a\u5a0b\u5a0d\u5a0e\u5a0f\u5a10\u5a12\u5a14\u5a15\u5a16\u5a17\u5a19\u5a1a\u5a1b\u5a1d\u5a1e\u5a21\u5a22\u5a24\u5a26\u5a27\u5a28\u5a2a",6,"\u5a33\u5a35\u5a37",4,"\u5a3d\u5a3e\u5a3f\u5a41",4,"\u5a47\u5a48\u5a4b",9,"\u5a56\u5a57\u5a58\u5a59\u5a5b",5],["8b40","\u5a61\u5a63\u5a64\u5a65\u5a66\u5a68\u5a69\u5a6b",8,"\u5a78\u5a79\u5a7b\u5a7c\u5a7d\u5a7e\u5a80",17,"\u5a93",6,"\u5a9c",13,"\u5aab\u5aac"],["8b80","\u5aad",4,"\u5ab4\u5ab6\u5ab7\u5ab9",4,"\u5abf\u5ac0\u5ac3",5,"\u5aca\u5acb\u5acd",4,"\u5ad3\u5ad5\u5ad7\u5ad9\u5ada\u5adb\u5add\u5ade\u5adf\u5ae2\u5ae4\u5ae5\u5ae7\u5ae8\u5aea\u5aec",4,"\u5af2",22,"\u5b0a",11,"\u5b18",25,"\u5b33\u5b35\u5b36\u5b38",7,"\u5b41",6],["8c40","\u5b48",7,"\u5b52\u5b56\u5b5e\u5b60\u5b61\u5b67\u5b68\u5b6b\u5b6d\u5b6e\u5b6f\u5b72\u5b74\u5b76\u5b77\u5b78\u5b79\u5b7b\u5b7c\u5b7e\u5b7f\u5b82\u5b86\u5b8a\u5b8d\u5b8e\u5b90\u5b91\u5b92\u5b94\u5b96\u5b9f\u5ba7\u5ba8\u5ba9\u5bac\u5bad\u5bae\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbb\u5bbc\u5bc0\u5bc1\u5bc3\u5bc8\u5bc9\u5bca\u5bcb\u5bcd\u5bce\u5bcf"],["8c80","\u5bd1\u5bd4",8,"\u5be0\u5be2\u5be3\u5be6\u5be7\u5be9",4,"\u5bef\u5bf1",6,"\u5bfd\u5bfe\u5c00\u5c02\u5c03\u5c05\u5c07\u5c08\u5c0b\u5c0c\u5c0d\u5c0e\u5c10\u5c12\u5c13\u5c17\u5c19\u5c1b\u5c1e\u5c1f\u5c20\u5c21\u5c23\u5c26\u5c28\u5c29\u5c2a\u5c2b\u5c2d\u5c2e\u5c2f\u5c30\u5c32\u5c33\u5c35\u5c36\u5c37\u5c43\u5c44\u5c46\u5c47\u5c4c\u5c4d\u5c52\u5c53\u5c54\u5c56\u5c57\u5c58\u5c5a\u5c5b\u5c5c\u5c5d\u5c5f\u5c62\u5c64\u5c67",6,"\u5c70\u5c72",6,"\u5c7b\u5c7c\u5c7d\u5c7e\u5c80\u5c83",4,"\u5c89\u5c8a\u5c8b\u5c8e\u5c8f\u5c92\u5c93\u5c95\u5c9d",4,"\u5ca4",4],["8d40","\u5caa\u5cae\u5caf\u5cb0\u5cb2\u5cb4\u5cb6\u5cb9\u5cba\u5cbb\u5cbc\u5cbe\u5cc0\u5cc2\u5cc3\u5cc5",5,"\u5ccc",5,"\u5cd3",5,"\u5cda",6,"\u5ce2\u5ce3\u5ce7\u5ce9\u5ceb\u5cec\u5cee\u5cef\u5cf1",9,"\u5cfc",4],["8d80","\u5d01\u5d04\u5d05\u5d08",5,"\u5d0f",4,"\u5d15\u5d17\u5d18\u5d19\u5d1a\u5d1c\u5d1d\u5d1f",4,"\u5d25\u5d28\u5d2a\u5d2b\u5d2c\u5d2f",4,"\u5d35",7,"\u5d3f",7,"\u5d48\u5d49\u5d4d",10,"\u5d59\u5d5a\u5d5c\u5d5e",10,"\u5d6a\u5d6d\u5d6e\u5d70\u5d71\u5d72\u5d73\u5d75",12,"\u5d83",21,"\u5d9a\u5d9b\u5d9c\u5d9e\u5d9f\u5da0"],["8e40","\u5da1",21,"\u5db8",12,"\u5dc6",6,"\u5dce",12,"\u5ddc\u5ddf\u5de0\u5de3\u5de4\u5dea\u5dec\u5ded"],["8e80","\u5df0\u5df5\u5df6\u5df8",4,"\u5dff\u5e00\u5e04\u5e07\u5e09\u5e0a\u5e0b\u5e0d\u5e0e\u5e12\u5e13\u5e17\u5e1e",7,"\u5e28",4,"\u5e2f\u5e30\u5e32",4,"\u5e39\u5e3a\u5e3e\u5e3f\u5e40\u5e41\u5e43\u5e46",5,"\u5e4d",6,"\u5e56",4,"\u5e5c\u5e5d\u5e5f\u5e60\u5e63",14,"\u5e75\u5e77\u5e79\u5e7e\u5e81\u5e82\u5e83\u5e85\u5e88\u5e89\u5e8c\u5e8d\u5e8e\u5e92\u5e98\u5e9b\u5e9d\u5ea1\u5ea2\u5ea3\u5ea4\u5ea8",4,"\u5eae",4,"\u5eb4\u5eba\u5ebb\u5ebc\u5ebd\u5ebf",6],["8f40","\u5ec6\u5ec7\u5ec8\u5ecb",5,"\u5ed4\u5ed5\u5ed7\u5ed8\u5ed9\u5eda\u5edc",11,"\u5ee9\u5eeb",8,"\u5ef5\u5ef8\u5ef9\u5efb\u5efc\u5efd\u5f05\u5f06\u5f07\u5f09\u5f0c\u5f0d\u5f0e\u5f10\u5f12\u5f14\u5f16\u5f19\u5f1a\u5f1c\u5f1d\u5f1e\u5f21\u5f22\u5f23\u5f24"],["8f80","\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f32",6,"\u5f3b\u5f3d\u5f3e\u5f3f\u5f41",14,"\u5f51\u5f54\u5f59\u5f5a\u5f5b\u5f5c\u5f5e\u5f5f\u5f60\u5f63\u5f65\u5f67\u5f68\u5f6b\u5f6e\u5f6f\u5f72\u5f74\u5f75\u5f76\u5f78\u5f7a\u5f7d\u5f7e\u5f7f\u5f83\u5f86\u5f8d\u5f8e\u5f8f\u5f91\u5f93\u5f94\u5f96\u5f9a\u5f9b\u5f9d\u5f9e\u5f9f\u5fa0\u5fa2",5,"\u5fa9\u5fab\u5fac\u5faf",5,"\u5fb6\u5fb8\u5fb9\u5fba\u5fbb\u5fbe",4,"\u5fc7\u5fc8\u5fca\u5fcb\u5fce\u5fd3\u5fd4\u5fd5\u5fda\u5fdb\u5fdc\u5fde\u5fdf\u5fe2\u5fe3\u5fe5\u5fe6\u5fe8\u5fe9\u5fec\u5fef\u5ff0\u5ff2\u5ff3\u5ff4\u5ff6\u5ff7\u5ff9\u5ffa\u5ffc\u6007"],["9040","\u6008\u6009\u600b\u600c\u6010\u6011\u6013\u6017\u6018\u601a\u601e\u601f\u6022\u6023\u6024\u602c\u602d\u602e\u6030",4,"\u6036",4,"\u603d\u603e\u6040\u6044",6,"\u604c\u604e\u604f\u6051\u6053\u6054\u6056\u6057\u6058\u605b\u605c\u605e\u605f\u6060\u6061\u6065\u6066\u606e\u6071\u6072\u6074\u6075\u6077\u607e\u6080"],["9080","\u6081\u6082\u6085\u6086\u6087\u6088\u608a\u608b\u608e\u608f\u6090\u6091\u6093\u6095\u6097\u6098\u6099\u609c\u609e\u60a1\u60a2\u60a4\u60a5\u60a7\u60a9\u60aa\u60ae\u60b0\u60b3\u60b5\u60b6\u60b7\u60b9\u60ba\u60bd",7,"\u60c7\u60c8\u60c9\u60cc",4,"\u60d2\u60d3\u60d4\u60d6\u60d7\u60d9\u60db\u60de\u60e1",4,"\u60ea\u60f1\u60f2\u60f5\u60f7\u60f8\u60fb",4,"\u6102\u6103\u6104\u6105\u6107\u610a\u610b\u610c\u6110",4,"\u6116\u6117\u6118\u6119\u611b\u611c\u611d\u611e\u6121\u6122\u6125\u6128\u6129\u612a\u612c",18,"\u6140",6],["9140","\u6147\u6149\u614b\u614d\u614f\u6150\u6152\u6153\u6154\u6156",6,"\u615e\u615f\u6160\u6161\u6163\u6164\u6165\u6166\u6169",6,"\u6171\u6172\u6173\u6174\u6176\u6178",18,"\u618c\u618d\u618f",4,"\u6195"],["9180","\u6196",6,"\u619e",8,"\u61aa\u61ab\u61ad",9,"\u61b8",5,"\u61bf\u61c0\u61c1\u61c3",4,"\u61c9\u61cc",4,"\u61d3\u61d5",16,"\u61e7",13,"\u61f6",8,"\u6200",5,"\u6207\u6209\u6213\u6214\u6219\u621c\u621d\u621e\u6220\u6223\u6226\u6227\u6228\u6229\u622b\u622d\u622f\u6230\u6231\u6232\u6235\u6236\u6238",4,"\u6242\u6244\u6245\u6246\u624a"],["9240","\u624f\u6250\u6255\u6256\u6257\u6259\u625a\u625c",6,"\u6264\u6265\u6268\u6271\u6272\u6274\u6275\u6277\u6278\u627a\u627b\u627d\u6281\u6282\u6283\u6285\u6286\u6287\u6288\u628b",5,"\u6294\u6299\u629c\u629d\u629e\u62a3\u62a6\u62a7\u62a9\u62aa\u62ad\u62ae\u62af\u62b0\u62b2\u62b3\u62b4\u62b6\u62b7\u62b8\u62ba\u62be\u62c0\u62c1"],["9280","\u62c3\u62cb\u62cf\u62d1\u62d5\u62dd\u62de\u62e0\u62e1\u62e4\u62ea\u62eb\u62f0\u62f2\u62f5\u62f8\u62f9\u62fa\u62fb\u6300\u6303\u6304\u6305\u6306\u630a\u630b\u630c\u630d\u630f\u6310\u6312\u6313\u6314\u6315\u6317\u6318\u6319\u631c\u6326\u6327\u6329\u632c\u632d\u632e\u6330\u6331\u6333",5,"\u633b\u633c\u633e\u633f\u6340\u6341\u6344\u6347\u6348\u634a\u6351\u6352\u6353\u6354\u6356",7,"\u6360\u6364\u6365\u6366\u6368\u636a\u636b\u636c\u636f\u6370\u6372\u6373\u6374\u6375\u6378\u6379\u637c\u637d\u637e\u637f\u6381\u6383\u6384\u6385\u6386\u638b\u638d\u6391\u6393\u6394\u6395\u6397\u6399",6,"\u63a1\u63a4\u63a6\u63ab\u63af\u63b1\u63b2\u63b5\u63b6\u63b9\u63bb\u63bd\u63bf\u63c0"],["9340","\u63c1\u63c2\u63c3\u63c5\u63c7\u63c8\u63ca\u63cb\u63cc\u63d1\u63d3\u63d4\u63d5\u63d7",6,"\u63df\u63e2\u63e4",4,"\u63eb\u63ec\u63ee\u63ef\u63f0\u63f1\u63f3\u63f5\u63f7\u63f9\u63fa\u63fb\u63fc\u63fe\u6403\u6404\u6406",4,"\u640d\u640e\u6411\u6412\u6415",5,"\u641d\u641f\u6422\u6423\u6424"],["9380","\u6425\u6427\u6428\u6429\u642b\u642e",5,"\u6435",4,"\u643b\u643c\u643e\u6440\u6442\u6443\u6449\u644b",6,"\u6453\u6455\u6456\u6457\u6459",4,"\u645f",7,"\u6468\u646a\u646b\u646c\u646e",9,"\u647b",6,"\u6483\u6486\u6488",8,"\u6493\u6494\u6497\u6498\u649a\u649b\u649c\u649d\u649f",4,"\u64a5\u64a6\u64a7\u64a8\u64aa\u64ab\u64af\u64b1\u64b2\u64b3\u64b4\u64b6\u64b9\u64bb\u64bd\u64be\u64bf\u64c1\u64c3\u64c4\u64c6",6,"\u64cf\u64d1\u64d3\u64d4\u64d5\u64d6\u64d9\u64da"],["9440","\u64db\u64dc\u64dd\u64df\u64e0\u64e1\u64e3\u64e5\u64e7",24,"\u6501",7,"\u650a",7,"\u6513",4,"\u6519",8],["9480","\u6522\u6523\u6524\u6526",4,"\u652c\u652d\u6530\u6531\u6532\u6533\u6537\u653a\u653c\u653d\u6540",4,"\u6546\u6547\u654a\u654b\u654d\u654e\u6550\u6552\u6553\u6554\u6557\u6558\u655a\u655c\u655f\u6560\u6561\u6564\u6565\u6567\u6568\u6569\u656a\u656d\u656e\u656f\u6571\u6573\u6575\u6576\u6578",14,"\u6588\u6589\u658a\u658d\u658e\u658f\u6592\u6594\u6595\u6596\u6598\u659a\u659d\u659e\u65a0\u65a2\u65a3\u65a6\u65a8\u65aa\u65ac\u65ae\u65b1",7,"\u65ba\u65bb\u65be\u65bf\u65c0\u65c2\u65c7\u65c8\u65c9\u65ca\u65cd\u65d0\u65d1\u65d3\u65d4\u65d5\u65d8",7,"\u65e1\u65e3\u65e4\u65ea\u65eb"],["9540","\u65f2\u65f3\u65f4\u65f5\u65f8\u65f9\u65fb",4,"\u6601\u6604\u6605\u6607\u6608\u6609\u660b\u660d\u6610\u6611\u6612\u6616\u6617\u6618\u661a\u661b\u661c\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6632\u6633\u6637",4,"\u663d\u663f\u6640\u6642\u6644",6,"\u664d\u664e\u6650\u6651\u6658"],["9580","\u6659\u665b\u665c\u665d\u665e\u6660\u6662\u6663\u6665\u6667\u6669",4,"\u6671\u6672\u6673\u6675\u6678\u6679\u667b\u667c\u667d\u667f\u6680\u6681\u6683\u6685\u6686\u6688\u6689\u668a\u668b\u668d\u668e\u668f\u6690\u6692\u6693\u6694\u6695\u6698",4,"\u669e",8,"\u66a9",4,"\u66af",4,"\u66b5\u66b6\u66b7\u66b8\u66ba\u66bb\u66bc\u66bd\u66bf",25,"\u66da\u66de",7,"\u66e7\u66e8\u66ea",5,"\u66f1\u66f5\u66f6\u66f8\u66fa\u66fb\u66fd\u6701\u6702\u6703"],["9640","\u6704\u6705\u6706\u6707\u670c\u670e\u670f\u6711\u6712\u6713\u6716\u6718\u6719\u671a\u671c\u671e\u6720",5,"\u6727\u6729\u672e\u6730\u6732\u6733\u6736\u6737\u6738\u6739\u673b\u673c\u673e\u673f\u6741\u6744\u6745\u6747\u674a\u674b\u674d\u6752\u6754\u6755\u6757",4,"\u675d\u6762\u6763\u6764\u6766\u6767\u676b\u676c\u676e\u6771\u6774\u6776"],["9680","\u6778\u6779\u677a\u677b\u677d\u6780\u6782\u6783\u6785\u6786\u6788\u678a\u678c\u678d\u678e\u678f\u6791\u6792\u6793\u6794\u6796\u6799\u679b\u679f\u67a0\u67a1\u67a4\u67a6\u67a9\u67ac\u67ae\u67b1\u67b2\u67b4\u67b9",7,"\u67c2\u67c5",9,"\u67d5\u67d6\u67d7\u67db\u67df\u67e1\u67e3\u67e4\u67e6\u67e7\u67e8\u67ea\u67eb\u67ed\u67ee\u67f2\u67f5",7,"\u67fe\u6801\u6802\u6803\u6804\u6806\u680d\u6810\u6812\u6814\u6815\u6818",4,"\u681e\u681f\u6820\u6822",6,"\u682b",6,"\u6834\u6835\u6836\u683a\u683b\u683f\u6847\u684b\u684d\u684f\u6852\u6856",5],["9740","\u685c\u685d\u685e\u685f\u686a\u686c",7,"\u6875\u6878",8,"\u6882\u6884\u6887",7,"\u6890\u6891\u6892\u6894\u6895\u6896\u6898",9,"\u68a3\u68a4\u68a5\u68a9\u68aa\u68ab\u68ac\u68ae\u68b1\u68b2\u68b4\u68b6\u68b7\u68b8"],["9780","\u68b9",6,"\u68c1\u68c3",5,"\u68ca\u68cc\u68ce\u68cf\u68d0\u68d1\u68d3\u68d4\u68d6\u68d7\u68d9\u68db",4,"\u68e1\u68e2\u68e4",9,"\u68ef\u68f2\u68f3\u68f4\u68f6\u68f7\u68f8\u68fb\u68fd\u68fe\u68ff\u6900\u6902\u6903\u6904\u6906",4,"\u690c\u690f\u6911\u6913",11,"\u6921\u6922\u6923\u6925",7,"\u692e\u692f\u6931\u6932\u6933\u6935\u6936\u6937\u6938\u693a\u693b\u693c\u693e\u6940\u6941\u6943",16,"\u6955\u6956\u6958\u6959\u695b\u695c\u695f"],["9840","\u6961\u6962\u6964\u6965\u6967\u6968\u6969\u696a\u696c\u696d\u696f\u6970\u6972",4,"\u697a\u697b\u697d\u697e\u697f\u6981\u6983\u6985\u698a\u698b\u698c\u698e",5,"\u6996\u6997\u6999\u699a\u699d",9,"\u69a9\u69aa\u69ac\u69ae\u69af\u69b0\u69b2\u69b3\u69b5\u69b6\u69b8\u69b9\u69ba\u69bc\u69bd"],["9880","\u69be\u69bf\u69c0\u69c2",7,"\u69cb\u69cd\u69cf\u69d1\u69d2\u69d3\u69d5",5,"\u69dc\u69dd\u69de\u69e1",11,"\u69ee\u69ef\u69f0\u69f1\u69f3",9,"\u69fe\u6a00",9,"\u6a0b",11,"\u6a19",5,"\u6a20\u6a22",5,"\u6a29\u6a2b\u6a2c\u6a2d\u6a2e\u6a30\u6a32\u6a33\u6a34\u6a36",6,"\u6a3f",4,"\u6a45\u6a46\u6a48",7,"\u6a51",6,"\u6a5a"],["9940","\u6a5c",4,"\u6a62\u6a63\u6a64\u6a66",10,"\u6a72",6,"\u6a7a\u6a7b\u6a7d\u6a7e\u6a7f\u6a81\u6a82\u6a83\u6a85",8,"\u6a8f\u6a92",4,"\u6a98",7,"\u6aa1",5],["9980","\u6aa7\u6aa8\u6aaa\u6aad",114,"\u6b25\u6b26\u6b28",6],["9a40","\u6b2f\u6b30\u6b31\u6b33\u6b34\u6b35\u6b36\u6b38\u6b3b\u6b3c\u6b3d\u6b3f\u6b40\u6b41\u6b42\u6b44\u6b45\u6b48\u6b4a\u6b4b\u6b4d",11,"\u6b5a",7,"\u6b68\u6b69\u6b6b",13,"\u6b7a\u6b7d\u6b7e\u6b7f\u6b80\u6b85\u6b88"],["9a80","\u6b8c\u6b8e\u6b8f\u6b90\u6b91\u6b94\u6b95\u6b97\u6b98\u6b99\u6b9c",4,"\u6ba2",7,"\u6bab",7,"\u6bb6\u6bb8",6,"\u6bc0\u6bc3\u6bc4\u6bc6",4,"\u6bcc\u6bce\u6bd0\u6bd1\u6bd8\u6bda\u6bdc",4,"\u6be2",7,"\u6bec\u6bed\u6bee\u6bf0\u6bf1\u6bf2\u6bf4\u6bf6\u6bf7\u6bf8\u6bfa\u6bfb\u6bfc\u6bfe",6,"\u6c08",4,"\u6c0e\u6c12\u6c17\u6c1c\u6c1d\u6c1e\u6c20\u6c23\u6c25\u6c2b\u6c2c\u6c2d\u6c31\u6c33\u6c36\u6c37\u6c39\u6c3a\u6c3b\u6c3c\u6c3e\u6c3f\u6c43\u6c44\u6c45\u6c48\u6c4b",4,"\u6c51\u6c52\u6c53\u6c56\u6c58"],["9b40","\u6c59\u6c5a\u6c62\u6c63\u6c65\u6c66\u6c67\u6c6b",4,"\u6c71\u6c73\u6c75\u6c77\u6c78\u6c7a\u6c7b\u6c7c\u6c7f\u6c80\u6c84\u6c87\u6c8a\u6c8b\u6c8d\u6c8e\u6c91\u6c92\u6c95\u6c96\u6c97\u6c98\u6c9a\u6c9c\u6c9d\u6c9e\u6ca0\u6ca2\u6ca8\u6cac\u6caf\u6cb0\u6cb4\u6cb5\u6cb6\u6cb7\u6cba\u6cc0\u6cc1\u6cc2\u6cc3\u6cc6\u6cc7\u6cc8\u6ccb\u6ccd\u6cce\u6ccf\u6cd1\u6cd2\u6cd8"],["9b80","\u6cd9\u6cda\u6cdc\u6cdd\u6cdf\u6ce4\u6ce6\u6ce7\u6ce9\u6cec\u6ced\u6cf2\u6cf4\u6cf9\u6cff\u6d00\u6d02\u6d03\u6d05\u6d06\u6d08\u6d09\u6d0a\u6d0d\u6d0f\u6d10\u6d11\u6d13\u6d14\u6d15\u6d16\u6d18\u6d1c\u6d1d\u6d1f",5,"\u6d26\u6d28\u6d29\u6d2c\u6d2d\u6d2f\u6d30\u6d34\u6d36\u6d37\u6d38\u6d3a\u6d3f\u6d40\u6d42\u6d44\u6d49\u6d4c\u6d50\u6d55\u6d56\u6d57\u6d58\u6d5b\u6d5d\u6d5f\u6d61\u6d62\u6d64\u6d65\u6d67\u6d68\u6d6b\u6d6c\u6d6d\u6d70\u6d71\u6d72\u6d73\u6d75\u6d76\u6d79\u6d7a\u6d7b\u6d7d",4,"\u6d83\u6d84\u6d86\u6d87\u6d8a\u6d8b\u6d8d\u6d8f\u6d90\u6d92\u6d96",4,"\u6d9c\u6da2\u6da5\u6dac\u6dad\u6db0\u6db1\u6db3\u6db4\u6db6\u6db7\u6db9",5,"\u6dc1\u6dc2\u6dc3\u6dc8\u6dc9\u6dca"],["9c40","\u6dcd\u6dce\u6dcf\u6dd0\u6dd2\u6dd3\u6dd4\u6dd5\u6dd7\u6dda\u6ddb\u6ddc\u6ddf\u6de2\u6de3\u6de5\u6de7\u6de8\u6de9\u6dea\u6ded\u6def\u6df0\u6df2\u6df4\u6df5\u6df6\u6df8\u6dfa\u6dfd",7,"\u6e06\u6e07\u6e08\u6e09\u6e0b\u6e0f\u6e12\u6e13\u6e15\u6e18\u6e19\u6e1b\u6e1c\u6e1e\u6e1f\u6e22\u6e26\u6e27\u6e28\u6e2a\u6e2c\u6e2e\u6e30\u6e31\u6e33\u6e35"],["9c80","\u6e36\u6e37\u6e39\u6e3b",7,"\u6e45",7,"\u6e4f\u6e50\u6e51\u6e52\u6e55\u6e57\u6e59\u6e5a\u6e5c\u6e5d\u6e5e\u6e60",10,"\u6e6c\u6e6d\u6e6f",14,"\u6e80\u6e81\u6e82\u6e84\u6e87\u6e88\u6e8a",4,"\u6e91",6,"\u6e99\u6e9a\u6e9b\u6e9d\u6e9e\u6ea0\u6ea1\u6ea3\u6ea4\u6ea6\u6ea8\u6ea9\u6eab\u6eac\u6ead\u6eae\u6eb0\u6eb3\u6eb5\u6eb8\u6eb9\u6ebc\u6ebe\u6ebf\u6ec0\u6ec3\u6ec4\u6ec5\u6ec6\u6ec8\u6ec9\u6eca\u6ecc\u6ecd\u6ece\u6ed0\u6ed2\u6ed6\u6ed8\u6ed9\u6edb\u6edc\u6edd\u6ee3\u6ee7\u6eea",5],["9d40","\u6ef0\u6ef1\u6ef2\u6ef3\u6ef5\u6ef6\u6ef7\u6ef8\u6efa",7,"\u6f03\u6f04\u6f05\u6f07\u6f08\u6f0a",4,"\u6f10\u6f11\u6f12\u6f16",9,"\u6f21\u6f22\u6f23\u6f25\u6f26\u6f27\u6f28\u6f2c\u6f2e\u6f30\u6f32\u6f34\u6f35\u6f37",6,"\u6f3f\u6f40\u6f41\u6f42"],["9d80","\u6f43\u6f44\u6f45\u6f48\u6f49\u6f4a\u6f4c\u6f4e",9,"\u6f59\u6f5a\u6f5b\u6f5d\u6f5f\u6f60\u6f61\u6f63\u6f64\u6f65\u6f67",5,"\u6f6f\u6f70\u6f71\u6f73\u6f75\u6f76\u6f77\u6f79\u6f7b\u6f7d",6,"\u6f85\u6f86\u6f87\u6f8a\u6f8b\u6f8f",12,"\u6f9d\u6f9e\u6f9f\u6fa0\u6fa2",4,"\u6fa8",10,"\u6fb4\u6fb5\u6fb7\u6fb8\u6fba",5,"\u6fc1\u6fc3",5,"\u6fca",6,"\u6fd3",10,"\u6fdf\u6fe2\u6fe3\u6fe4\u6fe5"],["9e40","\u6fe6",7,"\u6ff0",32,"\u7012",7,"\u701c",6,"\u7024",6],["9e80","\u702b",9,"\u7036\u7037\u7038\u703a",17,"\u704d\u704e\u7050",13,"\u705f",11,"\u706e\u7071\u7072\u7073\u7074\u7077\u7079\u707a\u707b\u707d\u7081\u7082\u7083\u7084\u7086\u7087\u7088\u708b\u708c\u708d\u708f\u7090\u7091\u7093\u7097\u7098\u709a\u709b\u709e",12,"\u70b0\u70b2\u70b4\u70b5\u70b6\u70ba\u70be\u70bf\u70c4\u70c5\u70c6\u70c7\u70c9\u70cb",12,"\u70da"],["9f40","\u70dc\u70dd\u70de\u70e0\u70e1\u70e2\u70e3\u70e5\u70ea\u70ee\u70f0",6,"\u70f8\u70fa\u70fb\u70fc\u70fe",10,"\u710b",4,"\u7111\u7112\u7114\u7117\u711b",10,"\u7127",7,"\u7132\u7133\u7134"],["9f80","\u7135\u7137",13,"\u7146\u7147\u7148\u7149\u714b\u714d\u714f",12,"\u715d\u715f",4,"\u7165\u7169",4,"\u716f\u7170\u7171\u7174\u7175\u7176\u7177\u7179\u717b\u717c\u717e",5,"\u7185",4,"\u718b\u718c\u718d\u718e\u7190\u7191\u7192\u7193\u7195\u7196\u7197\u719a",4,"\u71a1",6,"\u71a9\u71aa\u71ab\u71ad",5,"\u71b4\u71b6\u71b7\u71b8\u71ba",8,"\u71c4",9,"\u71cf",4],["a040","\u71d6",9,"\u71e1\u71e2\u71e3\u71e4\u71e6\u71e8",5,"\u71ef",9,"\u71fa",11,"\u7207",19],["a080","\u721b\u721c\u721e",9,"\u7229\u722b\u722d\u722e\u722f\u7232\u7233\u7234\u723a\u723c\u723e\u7240",6,"\u7249\u724a\u724b\u724e\u724f\u7250\u7251\u7253\u7254\u7255\u7257\u7258\u725a\u725c\u725e\u7260\u7263\u7264\u7265\u7268\u726a\u726b\u726c\u726d\u7270\u7271\u7273\u7274\u7276\u7277\u7278\u727b\u727c\u727d\u7282\u7283\u7285",4,"\u728c\u728e\u7290\u7291\u7293",11,"\u72a0",11,"\u72ae\u72b1\u72b2\u72b3\u72b5\u72ba",6,"\u72c5\u72c6\u72c7\u72c9\u72ca\u72cb\u72cc\u72cf\u72d1\u72d3\u72d4\u72d5\u72d6\u72d8\u72da\u72db"],["a1a1","\u3000\u3001\u3002\xb7\u02c9\u02c7\xa8\u3003\u3005\u2014\uff5e\u2016\u2026\u2018\u2019\u201c\u201d\u3014\u3015\u3008",7,"\u3016\u3017\u3010\u3011\xb1\xd7\xf7\u2236\u2227\u2228\u2211\u220f\u222a\u2229\u2208\u2237\u221a\u22a5\u2225\u2220\u2312\u2299\u222b\u222e\u2261\u224c\u2248\u223d\u221d\u2260\u226e\u226f\u2264\u2265\u221e\u2235\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uff04\xa4\uffe0\uffe1\u2030\xa7\u2116\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u203b\u2192\u2190\u2191\u2193\u3013"],["a2a1","\u2170",9],["a2b1","\u2488",19,"\u2474",19,"\u2460",9],["a2e5","\u3220",9],["a2f1","\u2160",11],["a3a1","\uff01\uff02\uff03\uffe5\uff05",88,"\uffe3"],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a6e0","\ufe35\ufe36\ufe39\ufe3a\ufe3f\ufe40\ufe3d\ufe3e\ufe41\ufe42\ufe43\ufe44"],["a6ee","\ufe3b\ufe3c\ufe37\ufe38\ufe31"],["a6f4","\ufe33\ufe34"],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a840","\u02ca\u02cb\u02d9\u2013\u2015\u2025\u2035\u2105\u2109\u2196\u2197\u2198\u2199\u2215\u221f\u2223\u2252\u2266\u2267\u22bf\u2550",35,"\u2581",6],["a880","\u2588",7,"\u2593\u2594\u2595\u25bc\u25bd\u25e2\u25e3\u25e4\u25e5\u2609\u2295\u3012\u301d\u301e"],["a8a1","\u0101\xe1\u01ce\xe0\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da\u01dc\xfc\xea\u0251"],["a8bd","\u0144\u0148"],["a8c0","\u0261"],["a8c5","\u3105",36],["a940","\u3021",8,"\u32a3\u338e\u338f\u339c\u339d\u339e\u33a1\u33c4\u33ce\u33d1\u33d2\u33d5\ufe30\uffe2\uffe4"],["a959","\u2121\u3231"],["a95c","\u2010"],["a960","\u30fc\u309b\u309c\u30fd\u30fe\u3006\u309d\u309e\ufe49",9,"\ufe54\ufe55\ufe56\ufe57\ufe59",8],["a980","\ufe62",4,"\ufe68\ufe69\ufe6a\ufe6b"],["a996","\u3007"],["a9a4","\u2500",75],["aa40","\u72dc\u72dd\u72df\u72e2",5,"\u72ea\u72eb\u72f5\u72f6\u72f9\u72fd\u72fe\u72ff\u7300\u7302\u7304",5,"\u730b\u730c\u730d\u730f\u7310\u7311\u7312\u7314\u7318\u7319\u731a\u731f\u7320\u7323\u7324\u7326\u7327\u7328\u732d\u732f\u7330\u7332\u7333\u7335\u7336\u733a\u733b\u733c\u733d\u7340",8],["aa80","\u7349\u734a\u734b\u734c\u734e\u734f\u7351\u7353\u7354\u7355\u7356\u7358",7,"\u7361",10,"\u736e\u7370\u7371"],["ab40","\u7372",11,"\u737f",4,"\u7385\u7386\u7388\u738a\u738c\u738d\u738f\u7390\u7392\u7393\u7394\u7395\u7397\u7398\u7399\u739a\u739c\u739d\u739e\u73a0\u73a1\u73a3",5,"\u73aa\u73ac\u73ad\u73b1\u73b4\u73b5\u73b6\u73b8\u73b9\u73bc\u73bd\u73be\u73bf\u73c1\u73c3",4],["ab80","\u73cb\u73cc\u73ce\u73d2",6,"\u73da\u73db\u73dc\u73dd\u73df\u73e1\u73e2\u73e3\u73e4\u73e6\u73e8\u73ea\u73eb\u73ec\u73ee\u73ef\u73f0\u73f1\u73f3",4],["ac40","\u73f8",10,"\u7404\u7407\u7408\u740b\u740c\u740d\u740e\u7411",8,"\u741c",5,"\u7423\u7424\u7427\u7429\u742b\u742d\u742f\u7431\u7432\u7437",4,"\u743d\u743e\u743f\u7440\u7442",11],["ac80","\u744e",6,"\u7456\u7458\u745d\u7460",12,"\u746e\u746f\u7471",4,"\u7478\u7479\u747a"],["ad40","\u747b\u747c\u747d\u747f\u7482\u7484\u7485\u7486\u7488\u7489\u748a\u748c\u748d\u748f\u7491",10,"\u749d\u749f",7,"\u74aa",15,"\u74bb",12],["ad80","\u74c8",9,"\u74d3",8,"\u74dd\u74df\u74e1\u74e5\u74e7",6,"\u74f0\u74f1\u74f2"],["ae40","\u74f3\u74f5\u74f8",6,"\u7500\u7501\u7502\u7503\u7505",7,"\u750e\u7510\u7512\u7514\u7515\u7516\u7517\u751b\u751d\u751e\u7520",4,"\u7526\u7527\u752a\u752e\u7534\u7536\u7539\u753c\u753d\u753f\u7541\u7542\u7543\u7544\u7546\u7547\u7549\u754a\u754d\u7550\u7551\u7552\u7553\u7555\u7556\u7557\u7558"],["ae80","\u755d",7,"\u7567\u7568\u7569\u756b",6,"\u7573\u7575\u7576\u7577\u757a",4,"\u7580\u7581\u7582\u7584\u7585\u7587"],["af40","\u7588\u7589\u758a\u758c\u758d\u758e\u7590\u7593\u7595\u7598\u759b\u759c\u759e\u75a2\u75a6",4,"\u75ad\u75b6\u75b7\u75ba\u75bb\u75bf\u75c0\u75c1\u75c6\u75cb\u75cc\u75ce\u75cf\u75d0\u75d1\u75d3\u75d7\u75d9\u75da\u75dc\u75dd\u75df\u75e0\u75e1\u75e5\u75e9\u75ec\u75ed\u75ee\u75ef\u75f2\u75f3\u75f5\u75f6\u75f7\u75f8\u75fa\u75fb\u75fd\u75fe\u7602\u7604\u7606\u7607"],["af80","\u7608\u7609\u760b\u760d\u760e\u760f\u7611\u7612\u7613\u7614\u7616\u761a\u761c\u761d\u761e\u7621\u7623\u7627\u7628\u762c\u762e\u762f\u7631\u7632\u7636\u7637\u7639\u763a\u763b\u763d\u7641\u7642\u7644"],["b040","\u7645",6,"\u764e",5,"\u7655\u7657",4,"\u765d\u765f\u7660\u7661\u7662\u7664",6,"\u766c\u766d\u766e\u7670",7,"\u7679\u767a\u767c\u767f\u7680\u7681\u7683\u7685\u7689\u768a\u768c\u768d\u768f\u7690\u7692\u7694\u7695\u7697\u7698\u769a\u769b"],["b080","\u769c",7,"\u76a5",8,"\u76af\u76b0\u76b3\u76b5",9,"\u76c0\u76c1\u76c3\u554a\u963f\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698\u978d\u6c28\u5b89\u4ffa\u6309\u6697\u5cb8\u80fa\u6848\u80ae\u6602\u76ce\u51f9\u6556\u71ac\u7ff1\u8884\u50b2\u5965\u61ca\u6fb3\u82ad\u634c\u6252\u53ed\u5427\u7b06\u516b\u75a4\u5df4\u62d4\u8dcb\u9776\u628a\u8019\u575d\u9738\u7f62\u7238\u767d\u67cf\u767e\u6446\u4f70\u8d25\u62dc\u7a17\u6591\u73ed\u642c\u6273\u822c\u9881\u677f\u7248\u626e\u62cc\u4f34\u74e3\u534a\u529e\u7eca\u90a6\u5e2e\u6886\u699c\u8180\u7ed1\u68d2\u78c5\u868c\u9551\u508d\u8c24\u82de\u80de\u5305\u8912\u5265"],["b140","\u76c4\u76c7\u76c9\u76cb\u76cc\u76d3\u76d5\u76d9\u76da\u76dc\u76dd\u76de\u76e0",4,"\u76e6",7,"\u76f0\u76f3\u76f5\u76f6\u76f7\u76fa\u76fb\u76fd\u76ff\u7700\u7702\u7703\u7705\u7706\u770a\u770c\u770e",10,"\u771b\u771c\u771d\u771e\u7721\u7723\u7724\u7725\u7727\u772a\u772b"],["b180","\u772c\u772e\u7730",4,"\u7739\u773b\u773d\u773e\u773f\u7742\u7744\u7745\u7746\u7748",7,"\u7752",7,"\u775c\u8584\u96f9\u4fdd\u5821\u9971\u5b9d\u62b1\u62a5\u66b4\u8c79\u9c8d\u7206\u676f\u7891\u60b2\u5351\u5317\u8f88\u80cc\u8d1d\u94a1\u500d\u72c8\u5907\u60eb\u7119\u88ab\u5954\u82ef\u672c\u7b28\u5d29\u7ef7\u752d\u6cf5\u8e66\u8ff8\u903c\u9f3b\u6bd4\u9119\u7b14\u5f7c\u78a7\u84d6\u853d\u6bd5\u6bd9\u6bd6\u5e01\u5e87\u75f9\u95ed\u655d\u5f0a\u5fc5\u8f9f\u58c1\u81c2\u907f\u965b\u97ad\u8fb9\u7f16\u8d2c\u6241\u4fbf\u53d8\u535e\u8fa8\u8fa9\u8fab\u904d\u6807\u5f6a\u8198\u8868\u9cd6\u618b\u522b\u762a\u5f6c\u658c\u6fd2\u6ee8\u5bbe\u6448\u5175\u51b0\u67c4\u4e19\u79c9\u997c\u70b3"],["b240","\u775d\u775e\u775f\u7760\u7764\u7767\u7769\u776a\u776d",11,"\u777a\u777b\u777c\u7781\u7782\u7783\u7786",5,"\u778f\u7790\u7793",11,"\u77a1\u77a3\u77a4\u77a6\u77a8\u77ab\u77ad\u77ae\u77af\u77b1\u77b2\u77b4\u77b6",4],["b280","\u77bc\u77be\u77c0",12,"\u77ce",8,"\u77d8\u77d9\u77da\u77dd",4,"\u77e4\u75c5\u5e76\u73bb\u83e0\u64ad\u62e8\u94b5\u6ce2\u535a\u52c3\u640f\u94c2\u7b94\u4f2f\u5e1b\u8236\u8116\u818a\u6e24\u6cca\u9a73\u6355\u535c\u54fa\u8865\u57e0\u4e0d\u5e03\u6b65\u7c3f\u90e8\u6016\u64e6\u731c\u88c1\u6750\u624d\u8d22\u776c\u8e29\u91c7\u5f69\u83dc\u8521\u9910\u53c2\u8695\u6b8b\u60ed\u60e8\u707f\u82cd\u8231\u4ed3\u6ca7\u85cf\u64cd\u7cd9\u69fd\u66f9\u8349\u5395\u7b56\u4fa7\u518c\u6d4b\u5c42\u8e6d\u63d2\u53c9\u832c\u8336\u67e5\u78b4\u643d\u5bdf\u5c94\u5dee\u8be7\u62c6\u67f4\u8c7a\u6400\u63ba\u8749\u998b\u8c17\u7f20\u94f2\u4ea7\u9610\u98a4\u660c\u7316"],["b340","\u77e6\u77e8\u77ea\u77ef\u77f0\u77f1\u77f2\u77f4\u77f5\u77f7\u77f9\u77fa\u77fb\u77fc\u7803",5,"\u780a\u780b\u780e\u780f\u7810\u7813\u7815\u7819\u781b\u781e\u7820\u7821\u7822\u7824\u7828\u782a\u782b\u782e\u782f\u7831\u7832\u7833\u7835\u7836\u783d\u783f\u7841\u7842\u7843\u7844\u7846\u7848\u7849\u784a\u784b\u784d\u784f\u7851\u7853\u7854\u7858\u7859\u785a"],["b380","\u785b\u785c\u785e",11,"\u786f",7,"\u7878\u7879\u787a\u787b\u787d",6,"\u573a\u5c1d\u5e38\u957f\u507f\u80a0\u5382\u655e\u7545\u5531\u5021\u8d85\u6284\u949e\u671d\u5632\u6f6e\u5de2\u5435\u7092\u8f66\u626f\u64a4\u63a3\u5f7b\u6f88\u90f4\u81e3\u8fb0\u5c18\u6668\u5ff1\u6c89\u9648\u8d81\u886c\u6491\u79f0\u57ce\u6a59\u6210\u5448\u4e58\u7a0b\u60e9\u6f84\u8bda\u627f\u901e\u9a8b\u79e4\u5403\u75f4\u6301\u5319\u6c60\u8fdf\u5f1b\u9a70\u803b\u9f7f\u4f88\u5c3a\u8d64\u7fc5\u65a5\u70bd\u5145\u51b2\u866b\u5d07\u5ba0\u62bd\u916c\u7574\u8e0c\u7a20\u6101\u7b79\u4ec7\u7ef8\u7785\u4e11\u81ed\u521d\u51fa\u6a71\u53a8\u8e87\u9504\u96cf\u6ec1\u9664\u695a"],["b440","\u7884\u7885\u7886\u7888\u788a\u788b\u788f\u7890\u7892\u7894\u7895\u7896\u7899\u789d\u789e\u78a0\u78a2\u78a4\u78a6\u78a8",7,"\u78b5\u78b6\u78b7\u78b8\u78ba\u78bb\u78bc\u78bd\u78bf\u78c0\u78c2\u78c3\u78c4\u78c6\u78c7\u78c8\u78cc\u78cd\u78ce\u78cf\u78d1\u78d2\u78d3\u78d6\u78d7\u78d8\u78da",9],["b480","\u78e4\u78e5\u78e6\u78e7\u78e9\u78ea\u78eb\u78ed",4,"\u78f3\u78f5\u78f6\u78f8\u78f9\u78fb",5,"\u7902\u7903\u7904\u7906",6,"\u7840\u50a8\u77d7\u6410\u89e6\u5904\u63e3\u5ddd\u7a7f\u693d\u4f20\u8239\u5598\u4e32\u75ae\u7a97\u5e62\u5e8a\u95ef\u521b\u5439\u708a\u6376\u9524\u5782\u6625\u693f\u9187\u5507\u6df3\u7eaf\u8822\u6233\u7ef0\u75b5\u8328\u78c1\u96cc\u8f9e\u6148\u74f7\u8bcd\u6b64\u523a\u8d50\u6b21\u806a\u8471\u56f1\u5306\u4ece\u4e1b\u51d1\u7c97\u918b\u7c07\u4fc3\u8e7f\u7be1\u7a9c\u6467\u5d14\u50ac\u8106\u7601\u7cb9\u6dec\u7fe0\u6751\u5b58\u5bf8\u78cb\u64ae\u6413\u63aa\u632b\u9519\u642d\u8fbe\u7b54\u7629\u6253\u5927\u5446\u6b79\u50a3\u6234\u5e26\u6b86\u4ee3\u8d37\u888b\u5f85\u902e"],["b540","\u790d",5,"\u7914",9,"\u791f",4,"\u7925",14,"\u7935",4,"\u793d\u793f\u7942\u7943\u7944\u7945\u7947\u794a",8,"\u7954\u7955\u7958\u7959\u7961\u7963"],["b580","\u7964\u7966\u7969\u796a\u796b\u796c\u796e\u7970",6,"\u7979\u797b",4,"\u7982\u7983\u7986\u7987\u7988\u7989\u798b\u798c\u798d\u798e\u7990\u7991\u7992\u6020\u803d\u62c5\u4e39\u5355\u90f8\u63b8\u80c6\u65e6\u6c2e\u4f46\u60ee\u6de1\u8bde\u5f39\u86cb\u5f53\u6321\u515a\u8361\u6863\u5200\u6363\u8e48\u5012\u5c9b\u7977\u5bfc\u5230\u7a3b\u60bc\u9053\u76d7\u5fb7\u5f97\u7684\u8e6c\u706f\u767b\u7b49\u77aa\u51f3\u9093\u5824\u4f4e\u6ef4\u8fea\u654c\u7b1b\u72c4\u6da4\u7fdf\u5ae1\u62b5\u5e95\u5730\u8482\u7b2c\u5e1d\u5f1f\u9012\u7f14\u98a0\u6382\u6ec7\u7898\u70b9\u5178\u975b\u57ab\u7535\u4f43\u7538\u5e97\u60e6\u5960\u6dc0\u6bbf\u7889\u53fc\u96d5\u51cb\u5201\u6389\u540a\u9493\u8c03\u8dcc\u7239\u789f\u8776\u8fed\u8c0d\u53e0"],["b640","\u7993",6,"\u799b",11,"\u79a8",10,"\u79b4",4,"\u79bc\u79bf\u79c2\u79c4\u79c5\u79c7\u79c8\u79ca\u79cc\u79ce\u79cf\u79d0\u79d3\u79d4\u79d6\u79d7\u79d9",5,"\u79e0\u79e1\u79e2\u79e5\u79e8\u79ea"],["b680","\u79ec\u79ee\u79f1",6,"\u79f9\u79fa\u79fc\u79fe\u79ff\u7a01\u7a04\u7a05\u7a07\u7a08\u7a09\u7a0a\u7a0c\u7a0f",4,"\u7a15\u7a16\u7a18\u7a19\u7a1b\u7a1c\u4e01\u76ef\u53ee\u9489\u9876\u9f0e\u952d\u5b9a\u8ba2\u4e22\u4e1c\u51ac\u8463\u61c2\u52a8\u680b\u4f97\u606b\u51bb\u6d1e\u515c\u6296\u6597\u9661\u8c46\u9017\u75d8\u90fd\u7763\u6bd2\u728a\u72ec\u8bfb\u5835\u7779\u8d4c\u675c\u9540\u809a\u5ea6\u6e21\u5992\u7aef\u77ed\u953b\u6bb5\u65ad\u7f0e\u5806\u5151\u961f\u5bf9\u58a9\u5428\u8e72\u6566\u987f\u56e4\u949d\u76fe\u9041\u6387\u54c6\u591a\u593a\u579b\u8eb2\u6735\u8dfa\u8235\u5241\u60f0\u5815\u86fe\u5ce8\u9e45\u4fc4\u989d\u8bb9\u5a25\u6076\u5384\u627c\u904f\u9102\u997f\u6069\u800c\u513f\u8033\u5c14\u9975\u6d31\u4e8c"],["b740","\u7a1d\u7a1f\u7a21\u7a22\u7a24",14,"\u7a34\u7a35\u7a36\u7a38\u7a3a\u7a3e\u7a40",5,"\u7a47",9,"\u7a52",4,"\u7a58",16],["b780","\u7a69",6,"\u7a71\u7a72\u7a73\u7a75\u7a7b\u7a7c\u7a7d\u7a7e\u7a82\u7a85\u7a87\u7a89\u7a8a\u7a8b\u7a8c\u7a8e\u7a8f\u7a90\u7a93\u7a94\u7a99\u7a9a\u7a9b\u7a9e\u7aa1\u7aa2\u8d30\u53d1\u7f5a\u7b4f\u4f10\u4e4f\u9600\u6cd5\u73d0\u85e9\u5e06\u756a\u7ffb\u6a0a\u77fe\u9492\u7e41\u51e1\u70e6\u53cd\u8fd4\u8303\u8d29\u72af\u996d\u6cdb\u574a\u82b3\u65b9\u80aa\u623f\u9632\u59a8\u4eff\u8bbf\u7eba\u653e\u83f2\u975e\u5561\u98de\u80a5\u532a\u8bfd\u5420\u80ba\u5e9f\u6cb8\u8d39\u82ac\u915a\u5429\u6c1b\u5206\u7eb7\u575f\u711a\u6c7e\u7c89\u594b\u4efd\u5fff\u6124\u7caa\u4e30\u5c01\u67ab\u8702\u5cf0\u950b\u98ce\u75af\u70fd\u9022\u51af\u7f1d\u8bbd\u5949\u51e4\u4f5b\u5426\u592b\u6577\u80a4\u5b75\u6276\u62c2\u8f90\u5e45\u6c1f\u7b26\u4f0f\u4fd8\u670d"],["b840","\u7aa3\u7aa4\u7aa7\u7aa9\u7aaa\u7aab\u7aae",4,"\u7ab4",10,"\u7ac0",10,"\u7acc",9,"\u7ad7\u7ad8\u7ada\u7adb\u7adc\u7add\u7ae1\u7ae2\u7ae4\u7ae7",5,"\u7aee\u7af0\u7af1\u7af2\u7af3"],["b880","\u7af4",4,"\u7afb\u7afc\u7afe\u7b00\u7b01\u7b02\u7b05\u7b07\u7b09\u7b0c\u7b0d\u7b0e\u7b10\u7b12\u7b13\u7b16\u7b17\u7b18\u7b1a\u7b1c\u7b1d\u7b1f\u7b21\u7b22\u7b23\u7b27\u7b29\u7b2d\u6d6e\u6daa\u798f\u88b1\u5f17\u752b\u629a\u8f85\u4fef\u91dc\u65a7\u812f\u8151\u5e9c\u8150\u8d74\u526f\u8986\u8d4b\u590d\u5085\u4ed8\u961c\u7236\u8179\u8d1f\u5bcc\u8ba3\u9644\u5987\u7f1a\u5490\u5676\u560e\u8be5\u6539\u6982\u9499\u76d6\u6e89\u5e72\u7518\u6746\u67d1\u7aff\u809d\u8d76\u611f\u79c6\u6562\u8d63\u5188\u521a\u94a2\u7f38\u809b\u7eb2\u5c97\u6e2f\u6760\u7bd9\u768b\u9ad8\u818f\u7f94\u7cd5\u641e\u9550\u7a3f\u544a\u54e5\u6b4c\u6401\u6208\u9e3d\u80f3\u7599\u5272\u9769\u845b\u683c\u86e4\u9601\u9694\u94ec\u4e2a\u5404\u7ed9\u6839\u8ddf\u8015\u66f4\u5e9a\u7fb9"],["b940","\u7b2f\u7b30\u7b32\u7b34\u7b35\u7b36\u7b37\u7b39\u7b3b\u7b3d\u7b3f",5,"\u7b46\u7b48\u7b4a\u7b4d\u7b4e\u7b53\u7b55\u7b57\u7b59\u7b5c\u7b5e\u7b5f\u7b61\u7b63",10,"\u7b6f\u7b70\u7b73\u7b74\u7b76\u7b78\u7b7a\u7b7c\u7b7d\u7b7f\u7b81\u7b82\u7b83\u7b84\u7b86",6,"\u7b8e\u7b8f"],["b980","\u7b91\u7b92\u7b93\u7b96\u7b98\u7b99\u7b9a\u7b9b\u7b9e\u7b9f\u7ba0\u7ba3\u7ba4\u7ba5\u7bae\u7baf\u7bb0\u7bb2\u7bb3\u7bb5\u7bb6\u7bb7\u7bb9",7,"\u7bc2\u7bc3\u7bc4\u57c2\u803f\u6897\u5de5\u653b\u529f\u606d\u9f9a\u4f9b\u8eac\u516c\u5bab\u5f13\u5de9\u6c5e\u62f1\u8d21\u5171\u94a9\u52fe\u6c9f\u82df\u72d7\u57a2\u6784\u8d2d\u591f\u8f9c\u83c7\u5495\u7b8d\u4f30\u6cbd\u5b64\u59d1\u9f13\u53e4\u86ca\u9aa8\u8c37\u80a1\u6545\u987e\u56fa\u96c7\u522e\u74dc\u5250\u5be1\u6302\u8902\u4e56\u62d0\u602a\u68fa\u5173\u5b98\u51a0\u89c2\u7ba1\u9986\u7f50\u60ef\u704c\u8d2f\u5149\u5e7f\u901b\u7470\u89c4\u572d\u7845\u5f52\u9f9f\u95fa\u8f68\u9b3c\u8be1\u7678\u6842\u67dc\u8dea\u8d35\u523d\u8f8a\u6eda\u68cd\u9505\u90ed\u56fd\u679c\u88f9\u8fc7\u54c8"],["ba40","\u7bc5\u7bc8\u7bc9\u7bca\u7bcb\u7bcd\u7bce\u7bcf\u7bd0\u7bd2\u7bd4",4,"\u7bdb\u7bdc\u7bde\u7bdf\u7be0\u7be2\u7be3\u7be4\u7be7\u7be8\u7be9\u7beb\u7bec\u7bed\u7bef\u7bf0\u7bf2",4,"\u7bf8\u7bf9\u7bfa\u7bfb\u7bfd\u7bff",7,"\u7c08\u7c09\u7c0a\u7c0d\u7c0e\u7c10",5,"\u7c17\u7c18\u7c19"],["ba80","\u7c1a",4,"\u7c20",5,"\u7c28\u7c29\u7c2b",12,"\u7c39",5,"\u7c42\u9ab8\u5b69\u6d77\u6c26\u4ea5\u5bb3\u9a87\u9163\u61a8\u90af\u97e9\u542b\u6db5\u5bd2\u51fd\u558a\u7f55\u7ff0\u64bc\u634d\u65f1\u61be\u608d\u710a\u6c57\u6c49\u592f\u676d\u822a\u58d5\u568e\u8c6a\u6beb\u90dd\u597d\u8017\u53f7\u6d69\u5475\u559d\u8377\u83cf\u6838\u79be\u548c\u4f55\u5408\u76d2\u8c89\u9602\u6cb3\u6db8\u8d6b\u8910\u9e64\u8d3a\u563f\u9ed1\u75d5\u5f88\u72e0\u6068\u54fc\u4ea8\u6a2a\u8861\u6052\u8f70\u54c4\u70d8\u8679\u9e3f\u6d2a\u5b8f\u5f18\u7ea2\u5589\u4faf\u7334\u543c\u539a\u5019\u540e\u547c\u4e4e\u5ffd\u745a\u58f6\u846b\u80e1\u8774\u72d0\u7cca\u6e56"],["bb40","\u7c43",9,"\u7c4e",36,"\u7c75",5,"\u7c7e",9],["bb80","\u7c88\u7c8a",6,"\u7c93\u7c94\u7c96\u7c99\u7c9a\u7c9b\u7ca0\u7ca1\u7ca3\u7ca6\u7ca7\u7ca8\u7ca9\u7cab\u7cac\u7cad\u7caf\u7cb0\u7cb4",4,"\u7cba\u7cbb\u5f27\u864e\u552c\u62a4\u4e92\u6caa\u6237\u82b1\u54d7\u534e\u733e\u6ed1\u753b\u5212\u5316\u8bdd\u69d0\u5f8a\u6000\u6dee\u574f\u6b22\u73af\u6853\u8fd8\u7f13\u6362\u60a3\u5524\u75ea\u8c62\u7115\u6da3\u5ba6\u5e7b\u8352\u614c\u9ec4\u78fa\u8757\u7c27\u7687\u51f0\u60f6\u714c\u6643\u5e4c\u604d\u8c0e\u7070\u6325\u8f89\u5fbd\u6062\u86d4\u56de\u6bc1\u6094\u6167\u5349\u60e0\u6666\u8d3f\u79fd\u4f1a\u70e9\u6c47\u8bb3\u8bf2\u7ed8\u8364\u660f\u5a5a\u9b42\u6d51\u6df7\u8c41\u6d3b\u4f19\u706b\u83b7\u6216\u60d1\u970d\u8d27\u7978\u51fb\u573e\u57fa\u673a\u7578\u7a3d\u79ef\u7b95"],["bc40","\u7cbf\u7cc0\u7cc2\u7cc3\u7cc4\u7cc6\u7cc9\u7ccb\u7cce",6,"\u7cd8\u7cda\u7cdb\u7cdd\u7cde\u7ce1",6,"\u7ce9",5,"\u7cf0",7,"\u7cf9\u7cfa\u7cfc",13,"\u7d0b",5],["bc80","\u7d11",14,"\u7d21\u7d23\u7d24\u7d25\u7d26\u7d28\u7d29\u7d2a\u7d2c\u7d2d\u7d2e\u7d30",6,"\u808c\u9965\u8ff9\u6fc0\u8ba5\u9e21\u59ec\u7ee9\u7f09\u5409\u6781\u68d8\u8f91\u7c4d\u96c6\u53ca\u6025\u75be\u6c72\u5373\u5ac9\u7ea7\u6324\u51e0\u810a\u5df1\u84df\u6280\u5180\u5b63\u4f0e\u796d\u5242\u60b8\u6d4e\u5bc4\u5bc2\u8ba1\u8bb0\u65e2\u5fcc\u9645\u5993\u7ee7\u7eaa\u5609\u67b7\u5939\u4f73\u5bb6\u52a0\u835a\u988a\u8d3e\u7532\u94be\u5047\u7a3c\u4ef7\u67b6\u9a7e\u5ac1\u6b7c\u76d1\u575a\u5c16\u7b3a\u95f4\u714e\u517c\u80a9\u8270\u5978\u7f04\u8327\u68c0\u67ec\u78b1\u7877\u62e3\u6361\u7b80\u4fed\u526a\u51cf\u8350\u69db\u9274\u8df5\u8d31\u89c1\u952e\u7bad\u4ef6"],["bd40","\u7d37",54,"\u7d6f",7],["bd80","\u7d78",32,"\u5065\u8230\u5251\u996f\u6e10\u6e85\u6da7\u5efa\u50f5\u59dc\u5c06\u6d46\u6c5f\u7586\u848b\u6868\u5956\u8bb2\u5320\u9171\u964d\u8549\u6912\u7901\u7126\u80f6\u4ea4\u90ca\u6d47\u9a84\u5a07\u56bc\u6405\u94f0\u77eb\u4fa5\u811a\u72e1\u89d2\u997a\u7f34\u7ede\u527f\u6559\u9175\u8f7f\u8f83\u53eb\u7a96\u63ed\u63a5\u7686\u79f8\u8857\u9636\u622a\u52ab\u8282\u6854\u6770\u6377\u776b\u7aed\u6d01\u7ed3\u89e3\u59d0\u6212\u85c9\u82a5\u754c\u501f\u4ecb\u75a5\u8beb\u5c4a\u5dfe\u7b4b\u65a4\u91d1\u4eca\u6d25\u895f\u7d27\u9526\u4ec5\u8c28\u8fdb\u9773\u664b\u7981\u8fd1\u70ec\u6d78"],["be40","\u7d99",12,"\u7da7",6,"\u7daf",42],["be80","\u7dda",32,"\u5c3d\u52b2\u8346\u5162\u830e\u775b\u6676\u9cb8\u4eac\u60ca\u7cbe\u7cb3\u7ecf\u4e95\u8b66\u666f\u9888\u9759\u5883\u656c\u955c\u5f84\u75c9\u9756\u7adf\u7ade\u51c0\u70af\u7a98\u63ea\u7a76\u7ea0\u7396\u97ed\u4e45\u7078\u4e5d\u9152\u53a9\u6551\u65e7\u81fc\u8205\u548e\u5c31\u759a\u97a0\u62d8\u72d9\u75bd\u5c45\u9a79\u83ca\u5c40\u5480\u77e9\u4e3e\u6cae\u805a\u62d2\u636e\u5de8\u5177\u8ddd\u8e1e\u952f\u4ff1\u53e5\u60e7\u70ac\u5267\u6350\u9e43\u5a1f\u5026\u7737\u5377\u7ee2\u6485\u652b\u6289\u6398\u5014\u7235\u89c9\u51b3\u8bc0\u7edd\u5747\u83cc\u94a7\u519b\u541b\u5cfb"],["bf40","\u7dfb",62],["bf80","\u7e3a\u7e3c",4,"\u7e42",4,"\u7e48",21,"\u4fca\u7ae3\u6d5a\u90e1\u9a8f\u5580\u5496\u5361\u54af\u5f00\u63e9\u6977\u51ef\u6168\u520a\u582a\u52d8\u574e\u780d\u770b\u5eb7\u6177\u7ce0\u625b\u6297\u4ea2\u7095\u8003\u62f7\u70e4\u9760\u5777\u82db\u67ef\u68f5\u78d5\u9897\u79d1\u58f3\u54b3\u53ef\u6e34\u514b\u523b\u5ba2\u8bfe\u80af\u5543\u57a6\u6073\u5751\u542d\u7a7a\u6050\u5b54\u63a7\u62a0\u53e3\u6263\u5bc7\u67af\u54ed\u7a9f\u82e6\u9177\u5e93\u88e4\u5938\u57ae\u630e\u8de8\u80ef\u5757\u7b77\u4fa9\u5feb\u5bbd\u6b3e\u5321\u7b50\u72c2\u6846\u77ff\u7736\u65f7\u51b5\u4e8f\u76d4\u5cbf\u7aa5\u8475\u594e\u9b41\u5080"],["c040","\u7e5e",35,"\u7e83",23,"\u7e9c\u7e9d\u7e9e"],["c080","\u7eae\u7eb4\u7ebb\u7ebc\u7ed6\u7ee4\u7eec\u7ef9\u7f0a\u7f10\u7f1e\u7f37\u7f39\u7f3b",6,"\u7f43\u7f46",9,"\u7f52\u7f53\u9988\u6127\u6e83\u5764\u6606\u6346\u56f0\u62ec\u6269\u5ed3\u9614\u5783\u62c9\u5587\u8721\u814a\u8fa3\u5566\u83b1\u6765\u8d56\u84dd\u5a6a\u680f\u62e6\u7bee\u9611\u5170\u6f9c\u8c30\u63fd\u89c8\u61d2\u7f06\u70c2\u6ee5\u7405\u6994\u72fc\u5eca\u90ce\u6717\u6d6a\u635e\u52b3\u7262\u8001\u4f6c\u59e5\u916a\u70d9\u6d9d\u52d2\u4e50\u96f7\u956d\u857e\u78ca\u7d2f\u5121\u5792\u64c2\u808b\u7c7b\u6cea\u68f1\u695e\u51b7\u5398\u68a8\u7281\u9ece\u7bf1\u72f8\u79bb\u6f13\u7406\u674e\u91cc\u9ca4\u793c\u8389\u8354\u540f\u6817\u4e3d\u5389\u52b1\u783e\u5386\u5229\u5088\u4f8b\u4fd0"],["c140","\u7f56\u7f59\u7f5b\u7f5c\u7f5d\u7f5e\u7f60\u7f63",4,"\u7f6b\u7f6c\u7f6d\u7f6f\u7f70\u7f73\u7f75\u7f76\u7f77\u7f78\u7f7a\u7f7b\u7f7c\u7f7d\u7f7f\u7f80\u7f82",7,"\u7f8b\u7f8d\u7f8f",4,"\u7f95",4,"\u7f9b\u7f9c\u7fa0\u7fa2\u7fa3\u7fa5\u7fa6\u7fa8",6,"\u7fb1"],["c180","\u7fb3",4,"\u7fba\u7fbb\u7fbe\u7fc0\u7fc2\u7fc3\u7fc4\u7fc6\u7fc7\u7fc8\u7fc9\u7fcb\u7fcd\u7fcf",4,"\u7fd6\u7fd7\u7fd9",5,"\u7fe2\u7fe3\u75e2\u7acb\u7c92\u6ca5\u96b6\u529b\u7483\u54e9\u4fe9\u8054\u83b2\u8fde\u9570\u5ec9\u601c\u6d9f\u5e18\u655b\u8138\u94fe\u604b\u70bc\u7ec3\u7cae\u51c9\u6881\u7cb1\u826f\u4e24\u8f86\u91cf\u667e\u4eae\u8c05\u64a9\u804a\u50da\u7597\u71ce\u5be5\u8fbd\u6f66\u4e86\u6482\u9563\u5ed6\u6599\u5217\u88c2\u70c8\u52a3\u730e\u7433\u6797\u78f7\u9716\u4e34\u90bb\u9cde\u6dcb\u51db\u8d41\u541d\u62ce\u73b2\u83f1\u96f6\u9f84\u94c3\u4f36\u7f9a\u51cc\u7075\u9675\u5cad\u9886\u53e6\u4ee4\u6e9c\u7409\u69b4\u786b\u998f\u7559\u5218\u7624\u6d41\u67f3\u516d\u9f99\u804b\u5499\u7b3c\u7abf"],["c240","\u7fe4\u7fe7\u7fe8\u7fea\u7feb\u7fec\u7fed\u7fef\u7ff2\u7ff4",6,"\u7ffd\u7ffe\u7fff\u8002\u8007\u8008\u8009\u800a\u800e\u800f\u8011\u8013\u801a\u801b\u801d\u801e\u801f\u8021\u8023\u8024\u802b",5,"\u8032\u8034\u8039\u803a\u803c\u803e\u8040\u8041\u8044\u8045\u8047\u8048\u8049\u804e\u804f\u8050\u8051\u8053\u8055\u8056\u8057"],["c280","\u8059\u805b",13,"\u806b",5,"\u8072",11,"\u9686\u5784\u62e2\u9647\u697c\u5a04\u6402\u7bd3\u6f0f\u964b\u82a6\u5362\u9885\u5e90\u7089\u63b3\u5364\u864f\u9c81\u9e93\u788c\u9732\u8def\u8d42\u9e7f\u6f5e\u7984\u5f55\u9646\u622e\u9a74\u5415\u94dd\u4fa3\u65c5\u5c65\u5c61\u7f15\u8651\u6c2f\u5f8b\u7387\u6ee4\u7eff\u5ce6\u631b\u5b6a\u6ee6\u5375\u4e71\u63a0\u7565\u62a1\u8f6e\u4f26\u4ed1\u6ca6\u7eb6\u8bba\u841d\u87ba\u7f57\u903b\u9523\u7ba9\u9aa1\u88f8\u843d\u6d1b\u9a86\u7edc\u5988\u9ebb\u739b\u7801\u8682\u9a6c\u9a82\u561b\u5417\u57cb\u4e70\u9ea6\u5356\u8fc8\u8109\u7792\u9992\u86ee\u6ee1\u8513\u66fc\u6162\u6f2b"],["c340","\u807e\u8081\u8082\u8085\u8088\u808a\u808d",5,"\u8094\u8095\u8097\u8099\u809e\u80a3\u80a6\u80a7\u80a8\u80ac\u80b0\u80b3\u80b5\u80b6\u80b8\u80b9\u80bb\u80c5\u80c7",4,"\u80cf",6,"\u80d8\u80df\u80e0\u80e2\u80e3\u80e6\u80ee\u80f5\u80f7\u80f9\u80fb\u80fe\u80ff\u8100\u8101\u8103\u8104\u8105\u8107\u8108\u810b"],["c380","\u810c\u8115\u8117\u8119\u811b\u811c\u811d\u811f",12,"\u812d\u812e\u8130\u8133\u8134\u8135\u8137\u8139",4,"\u813f\u8c29\u8292\u832b\u76f2\u6c13\u5fd9\u83bd\u732b\u8305\u951a\u6bdb\u77db\u94c6\u536f\u8302\u5192\u5e3d\u8c8c\u8d38\u4e48\u73ab\u679a\u6885\u9176\u9709\u7164\u6ca1\u7709\u5a92\u9541\u6bcf\u7f8e\u6627\u5bd0\u59b9\u5a9a\u95e8\u95f7\u4eec\u840c\u8499\u6aac\u76df\u9530\u731b\u68a6\u5b5f\u772f\u919a\u9761\u7cdc\u8ff7\u8c1c\u5f25\u7c73\u79d8\u89c5\u6ccc\u871c\u5bc6\u5e42\u68c9\u7720\u7ef5\u5195\u514d\u52c9\u5a29\u7f05\u9762\u82d7\u63cf\u7784\u85d0\u79d2\u6e3a\u5e99\u5999\u8511\u706d\u6c11\u62bf\u76bf\u654f\u60af\u95fd\u660e\u879f\u9e23\u94ed\u540d\u547d\u8c2c\u6478"],["c440","\u8140",5,"\u8147\u8149\u814d\u814e\u814f\u8152\u8156\u8157\u8158\u815b",4,"\u8161\u8162\u8163\u8164\u8166\u8168\u816a\u816b\u816c\u816f\u8172\u8173\u8175\u8176\u8177\u8178\u8181\u8183",4,"\u8189\u818b\u818c\u818d\u818e\u8190\u8192",5,"\u8199\u819a\u819e",4,"\u81a4\u81a5"],["c480","\u81a7\u81a9\u81ab",7,"\u81b4",5,"\u81bc\u81bd\u81be\u81bf\u81c4\u81c5\u81c7\u81c8\u81c9\u81cb\u81cd",6,"\u6479\u8611\u6a21\u819c\u78e8\u6469\u9b54\u62b9\u672b\u83ab\u58a8\u9ed8\u6cab\u6f20\u5bde\u964c\u8c0b\u725f\u67d0\u62c7\u7261\u4ea9\u59c6\u6bcd\u5893\u66ae\u5e55\u52df\u6155\u6728\u76ee\u7766\u7267\u7a46\u62ff\u54ea\u5450\u94a0\u90a3\u5a1c\u7eb3\u6c16\u4e43\u5976\u8010\u5948\u5357\u7537\u96be\u56ca\u6320\u8111\u607c\u95f9\u6dd6\u5462\u9981\u5185\u5ae9\u80fd\u59ae\u9713\u502a\u6ce5\u5c3c\u62df\u4f60\u533f\u817b\u9006\u6eba\u852b\u62c8\u5e74\u78be\u64b5\u637b\u5ff5\u5a18\u917f\u9e1f\u5c3f\u634f\u8042\u5b7d\u556e\u954a\u954d\u6d85\u60a8\u67e0\u72de\u51dd\u5b81"],["c540","\u81d4",14,"\u81e4\u81e5\u81e6\u81e8\u81e9\u81eb\u81ee",4,"\u81f5",5,"\u81fd\u81ff\u8203\u8207",4,"\u820e\u820f\u8211\u8213\u8215",5,"\u821d\u8220\u8224\u8225\u8226\u8227\u8229\u822e\u8232\u823a\u823c\u823d\u823f"],["c580","\u8240\u8241\u8242\u8243\u8245\u8246\u8248\u824a\u824c\u824d\u824e\u8250",7,"\u8259\u825b\u825c\u825d\u825e\u8260",7,"\u8269\u62e7\u6cde\u725b\u626d\u94ae\u7ebd\u8113\u6d53\u519c\u5f04\u5974\u52aa\u6012\u5973\u6696\u8650\u759f\u632a\u61e6\u7cef\u8bfa\u54e6\u6b27\u9e25\u6bb4\u85d5\u5455\u5076\u6ca4\u556a\u8db4\u722c\u5e15\u6015\u7436\u62cd\u6392\u724c\u5f98\u6e43\u6d3e\u6500\u6f58\u76d8\u78d0\u76fc\u7554\u5224\u53db\u4e53\u5e9e\u65c1\u802a\u80d6\u629b\u5486\u5228\u70ae\u888d\u8dd1\u6ce1\u5478\u80da\u57f9\u88f4\u8d54\u966a\u914d\u4f69\u6c9b\u55b7\u76c6\u7830\u62a8\u70f9\u6f8e\u5f6d\u84ec\u68da\u787c\u7bf7\u81a8\u670b\u9e4f\u6367\u78b0\u576f\u7812\u9739\u6279\u62ab\u5288\u7435\u6bd7"],["c640","\u826a\u826b\u826c\u826d\u8271\u8275\u8276\u8277\u8278\u827b\u827c\u8280\u8281\u8283\u8285\u8286\u8287\u8289\u828c\u8290\u8293\u8294\u8295\u8296\u829a\u829b\u829e\u82a0\u82a2\u82a3\u82a7\u82b2\u82b5\u82b6\u82ba\u82bb\u82bc\u82bf\u82c0\u82c2\u82c3\u82c5\u82c6\u82c9\u82d0\u82d6\u82d9\u82da\u82dd\u82e2\u82e7\u82e8\u82e9\u82ea\u82ec\u82ed\u82ee\u82f0\u82f2\u82f3\u82f5\u82f6\u82f8"],["c680","\u82fa\u82fc",4,"\u830a\u830b\u830d\u8310\u8312\u8313\u8316\u8318\u8319\u831d",9,"\u8329\u832a\u832e\u8330\u8332\u8337\u833b\u833d\u5564\u813e\u75b2\u76ae\u5339\u75de\u50fb\u5c41\u8b6c\u7bc7\u504f\u7247\u9a97\u98d8\u6f02\u74e2\u7968\u6487\u77a5\u62fc\u9891\u8d2b\u54c1\u8058\u4e52\u576a\u82f9\u840d\u5e73\u51ed\u74f6\u8bc4\u5c4f\u5761\u6cfc\u9887\u5a46\u7834\u9b44\u8feb\u7c95\u5256\u6251\u94fa\u4ec6\u8386\u8461\u83e9\u84b2\u57d4\u6734\u5703\u666e\u6d66\u8c31\u66dd\u7011\u671f\u6b3a\u6816\u621a\u59bb\u4e03\u51c4\u6f06\u67d2\u6c8f\u5176\u68cb\u5947\u6b67\u7566\u5d0e\u8110\u9f50\u65d7\u7948\u7941\u9a91\u8d77\u5c82\u4e5e\u4f01\u542f\u5951\u780c\u5668\u6c14\u8fc4\u5f03\u6c7d\u6ce3\u8bab\u6390"],["c740","\u833e\u833f\u8341\u8342\u8344\u8345\u8348\u834a",4,"\u8353\u8355",4,"\u835d\u8362\u8370",6,"\u8379\u837a\u837e",6,"\u8387\u8388\u838a\u838b\u838c\u838d\u838f\u8390\u8391\u8394\u8395\u8396\u8397\u8399\u839a\u839d\u839f\u83a1",6,"\u83ac\u83ad\u83ae"],["c780","\u83af\u83b5\u83bb\u83be\u83bf\u83c2\u83c3\u83c4\u83c6\u83c8\u83c9\u83cb\u83cd\u83ce\u83d0\u83d1\u83d2\u83d3\u83d5\u83d7\u83d9\u83da\u83db\u83de\u83e2\u83e3\u83e4\u83e6\u83e7\u83e8\u83eb\u83ec\u83ed\u6070\u6d3d\u7275\u6266\u948e\u94c5\u5343\u8fc1\u7b7e\u4edf\u8c26\u4e7e\u9ed4\u94b1\u94b3\u524d\u6f5c\u9063\u6d45\u8c34\u5811\u5d4c\u6b20\u6b49\u67aa\u545b\u8154\u7f8c\u5899\u8537\u5f3a\u62a2\u6a47\u9539\u6572\u6084\u6865\u77a7\u4e54\u4fa8\u5de7\u9798\u64ac\u7fd8\u5ced\u4fcf\u7a8d\u5207\u8304\u4e14\u602f\u7a83\u94a6\u4fb5\u4eb2\u79e6\u7434\u52e4\u82b9\u64d2\u79bd\u5bdd\u6c81\u9752\u8f7b\u6c22\u503e\u537f\u6e05\u64ce\u6674\u6c30\u60c5\u9877\u8bf7\u5e86\u743c\u7a77\u79cb\u4e18\u90b1\u7403\u6c42\u56da\u914b\u6cc5\u8d8b\u533a\u86c6\u66f2\u8eaf\u5c48\u9a71\u6e20"],["c840","\u83ee\u83ef\u83f3",4,"\u83fa\u83fb\u83fc\u83fe\u83ff\u8400\u8402\u8405\u8407\u8408\u8409\u840a\u8410\u8412",5,"\u8419\u841a\u841b\u841e",5,"\u8429",7,"\u8432",5,"\u8439\u843a\u843b\u843e",7,"\u8447\u8448\u8449"],["c880","\u844a",6,"\u8452",4,"\u8458\u845d\u845e\u845f\u8460\u8462\u8464",4,"\u846a\u846e\u846f\u8470\u8472\u8474\u8477\u8479\u847b\u847c\u53d6\u5a36\u9f8b\u8da3\u53bb\u5708\u98a7\u6743\u919b\u6cc9\u5168\u75ca\u62f3\u72ac\u5238\u529d\u7f3a\u7094\u7638\u5374\u9e4a\u69b7\u786e\u96c0\u88d9\u7fa4\u7136\u71c3\u5189\u67d3\u74e4\u58e4\u6518\u56b7\u8ba9\u9976\u6270\u7ed5\u60f9\u70ed\u58ec\u4ec1\u4eba\u5fcd\u97e7\u4efb\u8ba4\u5203\u598a\u7eab\u6254\u4ecd\u65e5\u620e\u8338\u84c9\u8363\u878d\u7194\u6eb6\u5bb9\u7ed2\u5197\u63c9\u67d4\u8089\u8339\u8815\u5112\u5b7a\u5982\u8fb1\u4e73\u6c5d\u5165\u8925\u8f6f\u962e\u854a\u745e\u9510\u95f0\u6da6\u82e5\u5f31\u6492\u6d12\u8428\u816e\u9cc3\u585e\u8d5b\u4e09\u53c1"],["c940","\u847d",4,"\u8483\u8484\u8485\u8486\u848a\u848d\u848f",7,"\u8498\u849a\u849b\u849d\u849e\u849f\u84a0\u84a2",12,"\u84b0\u84b1\u84b3\u84b5\u84b6\u84b7\u84bb\u84bc\u84be\u84c0\u84c2\u84c3\u84c5\u84c6\u84c7\u84c8\u84cb\u84cc\u84ce\u84cf\u84d2\u84d4\u84d5\u84d7"],["c980","\u84d8",4,"\u84de\u84e1\u84e2\u84e4\u84e7",4,"\u84ed\u84ee\u84ef\u84f1",10,"\u84fd\u84fe\u8500\u8501\u8502\u4f1e\u6563\u6851\u55d3\u4e27\u6414\u9a9a\u626b\u5ac2\u745f\u8272\u6da9\u68ee\u50e7\u838e\u7802\u6740\u5239\u6c99\u7eb1\u50bb\u5565\u715e\u7b5b\u6652\u73ca\u82eb\u6749\u5c71\u5220\u717d\u886b\u95ea\u9655\u64c5\u8d61\u81b3\u5584\u6c55\u6247\u7f2e\u5892\u4f24\u5546\u8d4f\u664c\u4e0a\u5c1a\u88f3\u68a2\u634e\u7a0d\u70e7\u828d\u52fa\u97f6\u5c11\u54e8\u90b5\u7ecd\u5962\u8d4a\u86c7\u820c\u820d\u8d66\u6444\u5c04\u6151\u6d89\u793e\u8bbe\u7837\u7533\u547b\u4f38\u8eab\u6df1\u5a20\u7ec5\u795e\u6c88\u5ba1\u5a76\u751a\u80be\u614e\u6e17\u58f0\u751f\u7525\u7272\u5347\u7ef3"],["ca40","\u8503",8,"\u850d\u850e\u850f\u8510\u8512\u8514\u8515\u8516\u8518\u8519\u851b\u851c\u851d\u851e\u8520\u8522",8,"\u852d",9,"\u853e",4,"\u8544\u8545\u8546\u8547\u854b",10],["ca80","\u8557\u8558\u855a\u855b\u855c\u855d\u855f",4,"\u8565\u8566\u8567\u8569",8,"\u8573\u8575\u8576\u8577\u8578\u857c\u857d\u857f\u8580\u8581\u7701\u76db\u5269\u80dc\u5723\u5e08\u5931\u72ee\u65bd\u6e7f\u8bd7\u5c38\u8671\u5341\u77f3\u62fe\u65f6\u4ec0\u98df\u8680\u5b9e\u8bc6\u53f2\u77e2\u4f7f\u5c4e\u9a76\u59cb\u5f0f\u793a\u58eb\u4e16\u67ff\u4e8b\u62ed\u8a93\u901d\u52bf\u662f\u55dc\u566c\u9002\u4ed5\u4f8d\u91ca\u9970\u6c0f\u5e02\u6043\u5ba4\u89c6\u8bd5\u6536\u624b\u9996\u5b88\u5bff\u6388\u552e\u53d7\u7626\u517d\u852c\u67a2\u68b3\u6b8a\u6292\u8f93\u53d4\u8212\u6dd1\u758f\u4e66\u8d4e\u5b70\u719f\u85af\u6691\u66d9\u7f72\u8700\u9ecd\u9f20\u5c5e\u672f\u8ff0\u6811\u675f\u620d\u7ad6\u5885\u5eb6\u6570\u6f31"],["cb40","\u8582\u8583\u8586\u8588",6,"\u8590",10,"\u859d",6,"\u85a5\u85a6\u85a7\u85a9\u85ab\u85ac\u85ad\u85b1",5,"\u85b8\u85ba",6,"\u85c2",6,"\u85ca",4,"\u85d1\u85d2"],["cb80","\u85d4\u85d6",5,"\u85dd",6,"\u85e5\u85e6\u85e7\u85e8\u85ea",14,"\u6055\u5237\u800d\u6454\u8870\u7529\u5e05\u6813\u62f4\u971c\u53cc\u723d\u8c01\u6c34\u7761\u7a0e\u542e\u77ac\u987a\u821c\u8bf4\u7855\u6714\u70c1\u65af\u6495\u5636\u601d\u79c1\u53f8\u4e1d\u6b7b\u8086\u5bfa\u55e3\u56db\u4f3a\u4f3c\u9972\u5df3\u677e\u8038\u6002\u9882\u9001\u5b8b\u8bbc\u8bf5\u641c\u8258\u64de\u55fd\u82cf\u9165\u4fd7\u7d20\u901f\u7c9f\u50f3\u5851\u6eaf\u5bbf\u8bc9\u8083\u9178\u849c\u7b97\u867d\u968b\u968f\u7ee5\u9ad3\u788e\u5c81\u7a57\u9042\u96a7\u795f\u5b59\u635f\u7b0b\u84d1\u68ad\u5506\u7f29\u7410\u7d22\u9501\u6240\u584c\u4ed6\u5b83\u5979\u5854"],["cc40","\u85f9\u85fa\u85fc\u85fd\u85fe\u8600",4,"\u8606",10,"\u8612\u8613\u8614\u8615\u8617",15,"\u8628\u862a",13,"\u8639\u863a\u863b\u863d\u863e\u863f\u8640"],["cc80","\u8641",11,"\u8652\u8653\u8655",4,"\u865b\u865c\u865d\u865f\u8660\u8661\u8663",7,"\u736d\u631e\u8e4b\u8e0f\u80ce\u82d4\u62ac\u53f0\u6cf0\u915e\u592a\u6001\u6c70\u574d\u644a\u8d2a\u762b\u6ee9\u575b\u6a80\u75f0\u6f6d\u8c2d\u8c08\u5766\u6bef\u8892\u78b3\u63a2\u53f9\u70ad\u6c64\u5858\u642a\u5802\u68e0\u819b\u5510\u7cd6\u5018\u8eba\u6dcc\u8d9f\u70eb\u638f\u6d9b\u6ed4\u7ee6\u8404\u6843\u9003\u6dd8\u9676\u8ba8\u5957\u7279\u85e4\u817e\u75bc\u8a8a\u68af\u5254\u8e22\u9511\u63d0\u9898\u8e44\u557c\u4f53\u66ff\u568f\u60d5\u6d95\u5243\u5c49\u5929\u6dfb\u586b\u7530\u751c\u606c\u8214\u8146\u6311\u6761\u8fe2\u773a\u8df3\u8d34\u94c1\u5e16\u5385\u542c\u70c3"],["cd40","\u866d\u866f\u8670\u8672",6,"\u8683",6,"\u868e",4,"\u8694\u8696",5,"\u869e",4,"\u86a5\u86a6\u86ab\u86ad\u86ae\u86b2\u86b3\u86b7\u86b8\u86b9\u86bb",4,"\u86c1\u86c2\u86c3\u86c5\u86c8\u86cc\u86cd\u86d2\u86d3\u86d5\u86d6\u86d7\u86da\u86dc"],["cd80","\u86dd\u86e0\u86e1\u86e2\u86e3\u86e5\u86e6\u86e7\u86e8\u86ea\u86eb\u86ec\u86ef\u86f5\u86f6\u86f7\u86fa\u86fb\u86fc\u86fd\u86ff\u8701\u8704\u8705\u8706\u870b\u870c\u870e\u870f\u8710\u8711\u8714\u8716\u6c40\u5ef7\u505c\u4ead\u5ead\u633a\u8247\u901a\u6850\u916e\u77b3\u540c\u94dc\u5f64\u7ae5\u6876\u6345\u7b52\u7edf\u75db\u5077\u6295\u5934\u900f\u51f8\u79c3\u7a81\u56fe\u5f92\u9014\u6d82\u5c60\u571f\u5410\u5154\u6e4d\u56e2\u63a8\u9893\u817f\u8715\u892a\u9000\u541e\u5c6f\u81c0\u62d6\u6258\u8131\u9e35\u9640\u9a6e\u9a7c\u692d\u59a5\u62d3\u553e\u6316\u54c7\u86d9\u6d3c\u5a03\u74e6\u889c\u6b6a\u5916\u8c4c\u5f2f\u6e7e\u73a9\u987d\u4e38\u70f7\u5b8c\u7897\u633d\u665a\u7696\u60cb\u5b9b\u5a49\u4e07\u8155\u6c6a\u738b\u4ea1\u6789\u7f51\u5f80\u65fa\u671b\u5fd8\u5984\u5a01"],["ce40","\u8719\u871b\u871d\u871f\u8720\u8724\u8726\u8727\u8728\u872a\u872b\u872c\u872d\u872f\u8730\u8732\u8733\u8735\u8736\u8738\u8739\u873a\u873c\u873d\u8740",6,"\u874a\u874b\u874d\u874f\u8750\u8751\u8752\u8754\u8755\u8756\u8758\u875a",5,"\u8761\u8762\u8766",7,"\u876f\u8771\u8772\u8773\u8775"],["ce80","\u8777\u8778\u8779\u877a\u877f\u8780\u8781\u8784\u8786\u8787\u8789\u878a\u878c\u878e",4,"\u8794\u8795\u8796\u8798",6,"\u87a0",4,"\u5dcd\u5fae\u5371\u97e6\u8fdd\u6845\u56f4\u552f\u60df\u4e3a\u6f4d\u7ef4\u82c7\u840e\u59d4\u4f1f\u4f2a\u5c3e\u7eac\u672a\u851a\u5473\u754f\u80c3\u5582\u9b4f\u4f4d\u6e2d\u8c13\u5c09\u6170\u536b\u761f\u6e29\u868a\u6587\u95fb\u7eb9\u543b\u7a33\u7d0a\u95ee\u55e1\u7fc1\u74ee\u631d\u8717\u6da1\u7a9d\u6211\u65a1\u5367\u63e1\u6c83\u5deb\u545c\u94a8\u4e4c\u6c61\u8bec\u5c4b\u65e0\u829c\u68a7\u543e\u5434\u6bcb\u6b66\u4e94\u6342\u5348\u821e\u4f0d\u4fae\u575e\u620a\u96fe\u6664\u7269\u52ff\u52a1\u609f\u8bef\u6614\u7199\u6790\u897f\u7852\u77fd\u6670\u563b\u5438\u9521\u727a"],["cf40","\u87a5\u87a6\u87a7\u87a9\u87aa\u87ae\u87b0\u87b1\u87b2\u87b4\u87b6\u87b7\u87b8\u87b9\u87bb\u87bc\u87be\u87bf\u87c1",4,"\u87c7\u87c8\u87c9\u87cc",4,"\u87d4",6,"\u87dc\u87dd\u87de\u87df\u87e1\u87e2\u87e3\u87e4\u87e6\u87e7\u87e8\u87e9\u87eb\u87ec\u87ed\u87ef",9],["cf80","\u87fa\u87fb\u87fc\u87fd\u87ff\u8800\u8801\u8802\u8804",5,"\u880b",7,"\u8814\u8817\u8818\u8819\u881a\u881c",4,"\u8823\u7a00\u606f\u5e0c\u6089\u819d\u5915\u60dc\u7184\u70ef\u6eaa\u6c50\u7280\u6a84\u88ad\u5e2d\u4e60\u5ab3\u559c\u94e3\u6d17\u7cfb\u9699\u620f\u7ec6\u778e\u867e\u5323\u971e\u8f96\u6687\u5ce1\u4fa0\u72ed\u4e0b\u53a6\u590f\u5413\u6380\u9528\u5148\u4ed9\u9c9c\u7ea4\u54b8\u8d24\u8854\u8237\u95f2\u6d8e\u5f26\u5acc\u663e\u9669\u73b0\u732e\u53bf\u817a\u9985\u7fa1\u5baa\u9677\u9650\u7ebf\u76f8\u53a2\u9576\u9999\u7bb1\u8944\u6e58\u4e61\u7fd4\u7965\u8be6\u60f3\u54cd\u4eab\u9879\u5df7\u6a61\u50cf\u5411\u8c61\u8427\u785d\u9704\u524a\u54ee\u56a3\u9500\u6d88\u5bb5\u6dc6\u6653"],["d040","\u8824",13,"\u8833",5,"\u883a\u883b\u883d\u883e\u883f\u8841\u8842\u8843\u8846",5,"\u884e",5,"\u8855\u8856\u8858\u885a",6,"\u8866\u8867\u886a\u886d\u886f\u8871\u8873\u8874\u8875\u8876\u8878\u8879\u887a"],["d080","\u887b\u887c\u8880\u8883\u8886\u8887\u8889\u888a\u888c\u888e\u888f\u8890\u8891\u8893\u8894\u8895\u8897",4,"\u889d",4,"\u88a3\u88a5",5,"\u5c0f\u5b5d\u6821\u8096\u5578\u7b11\u6548\u6954\u4e9b\u6b47\u874e\u978b\u534f\u631f\u643a\u90aa\u659c\u80c1\u8c10\u5199\u68b0\u5378\u87f9\u61c8\u6cc4\u6cfb\u8c22\u5c51\u85aa\u82af\u950c\u6b23\u8f9b\u65b0\u5ffb\u5fc3\u4fe1\u8845\u661f\u8165\u7329\u60fa\u5174\u5211\u578b\u5f62\u90a2\u884c\u9192\u5e78\u674f\u6027\u59d3\u5144\u51f6\u80f8\u5308\u6c79\u96c4\u718a\u4f11\u4fee\u7f9e\u673d\u55c5\u9508\u79c0\u8896\u7ee3\u589f\u620c\u9700\u865a\u5618\u987b\u5f90\u8bb8\u84c4\u9157\u53d9\u65ed\u5e8f\u755c\u6064\u7d6e\u5a7f\u7eea\u7eed\u8f69\u55a7\u5ba3\u60ac\u65cb\u7384"],["d140","\u88ac\u88ae\u88af\u88b0\u88b2",4,"\u88b8\u88b9\u88ba\u88bb\u88bd\u88be\u88bf\u88c0\u88c3\u88c4\u88c7\u88c8\u88ca\u88cb\u88cc\u88cd\u88cf\u88d0\u88d1\u88d3\u88d6\u88d7\u88da",4,"\u88e0\u88e1\u88e6\u88e7\u88e9",6,"\u88f2\u88f5\u88f6\u88f7\u88fa\u88fb\u88fd\u88ff\u8900\u8901\u8903",5],["d180","\u8909\u890b",4,"\u8911\u8914",4,"\u891c",4,"\u8922\u8923\u8924\u8926\u8927\u8928\u8929\u892c\u892d\u892e\u892f\u8931\u8932\u8933\u8935\u8937\u9009\u7663\u7729\u7eda\u9774\u859b\u5b66\u7a74\u96ea\u8840\u52cb\u718f\u5faa\u65ec\u8be2\u5bfb\u9a6f\u5de1\u6b89\u6c5b\u8bad\u8baf\u900a\u8fc5\u538b\u62bc\u9e26\u9e2d\u5440\u4e2b\u82bd\u7259\u869c\u5d16\u8859\u6daf\u96c5\u54d1\u4e9a\u8bb6\u7109\u54bd\u9609\u70df\u6df9\u76d0\u4e25\u7814\u8712\u5ca9\u5ef6\u8a00\u989c\u960e\u708e\u6cbf\u5944\u63a9\u773c\u884d\u6f14\u8273\u5830\u71d5\u538c\u781a\u96c1\u5501\u5f66\u7130\u5bb4\u8c1a\u9a8c\u6b83\u592e\u9e2f\u79e7\u6768\u626c\u4f6f\u75a1\u7f8a\u6d0b\u9633\u6c27\u4ef0\u75d2\u517b\u6837\u6f3e\u9080\u8170\u5996\u7476"],["d240","\u8938",8,"\u8942\u8943\u8945",24,"\u8960",5,"\u8967",19,"\u897c"],["d280","\u897d\u897e\u8980\u8982\u8984\u8985\u8987",26,"\u6447\u5c27\u9065\u7a91\u8c23\u59da\u54ac\u8200\u836f\u8981\u8000\u6930\u564e\u8036\u7237\u91ce\u51b6\u4e5f\u9875\u6396\u4e1a\u53f6\u66f3\u814b\u591c\u6db2\u4e00\u58f9\u533b\u63d6\u94f1\u4f9d\u4f0a\u8863\u9890\u5937\u9057\u79fb\u4eea\u80f0\u7591\u6c82\u5b9c\u59e8\u5f5d\u6905\u8681\u501a\u5df2\u4e59\u77e3\u4ee5\u827a\u6291\u6613\u9091\u5c79\u4ebf\u5f79\u81c6\u9038\u8084\u75ab\u4ea6\u88d4\u610f\u6bc5\u5fc6\u4e49\u76ca\u6ea2\u8be3\u8bae\u8c0a\u8bd1\u5f02\u7ffc\u7fcc\u7ece\u8335\u836b\u56e0\u6bb7\u97f3\u9634\u59fb\u541f\u94f6\u6deb\u5bc5\u996e\u5c39\u5f15\u9690"],["d340","\u89a2",30,"\u89c3\u89cd\u89d3\u89d4\u89d5\u89d7\u89d8\u89d9\u89db\u89dd\u89df\u89e0\u89e1\u89e2\u89e4\u89e7\u89e8\u89e9\u89ea\u89ec\u89ed\u89ee\u89f0\u89f1\u89f2\u89f4",6],["d380","\u89fb",4,"\u8a01",5,"\u8a08",21,"\u5370\u82f1\u6a31\u5a74\u9e70\u5e94\u7f28\u83b9\u8424\u8425\u8367\u8747\u8fce\u8d62\u76c8\u5f71\u9896\u786c\u6620\u54df\u62e5\u4f63\u81c3\u75c8\u5eb8\u96cd\u8e0a\u86f9\u548f\u6cf3\u6d8c\u6c38\u607f\u52c7\u7528\u5e7d\u4f18\u60a0\u5fe7\u5c24\u7531\u90ae\u94c0\u72b9\u6cb9\u6e38\u9149\u6709\u53cb\u53f3\u4f51\u91c9\u8bf1\u53c8\u5e7c\u8fc2\u6de4\u4e8e\u76c2\u6986\u865e\u611a\u8206\u4f59\u4fde\u903e\u9c7c\u6109\u6e1d\u6e14\u9685\u4e88\u5a31\u96e8\u4e0e\u5c7f\u79b9\u5b87\u8bed\u7fbd\u7389\u57df\u828b\u90c1\u5401\u9047\u55bb\u5cea\u5fa1\u6108\u6b32\u72f1\u80b2\u8a89"],["d440","\u8a1e",31,"\u8a3f",8,"\u8a49",21],["d480","\u8a5f",25,"\u8a7a",6,"\u6d74\u5bd3\u88d5\u9884\u8c6b\u9a6d\u9e33\u6e0a\u51a4\u5143\u57a3\u8881\u539f\u63f4\u8f95\u56ed\u5458\u5706\u733f\u6e90\u7f18\u8fdc\u82d1\u613f\u6028\u9662\u66f0\u7ea6\u8d8a\u8dc3\u94a5\u5cb3\u7ca4\u6708\u60a6\u9605\u8018\u4e91\u90e7\u5300\u9668\u5141\u8fd0\u8574\u915d\u6655\u97f5\u5b55\u531d\u7838\u6742\u683d\u54c9\u707e\u5bb0\u8f7d\u518d\u5728\u54b1\u6512\u6682\u8d5e\u8d43\u810f\u846c\u906d\u7cdf\u51ff\u85fb\u67a3\u65e9\u6fa1\u86a4\u8e81\u566a\u9020\u7682\u7076\u71e5\u8d23\u62e9\u5219\u6cfd\u8d3c\u600e\u589e\u618e\u66fe\u8d60\u624e\u55b3\u6e23\u672d\u8f67"],["d540","\u8a81",7,"\u8a8b",7,"\u8a94",46],["d580","\u8ac3",32,"\u94e1\u95f8\u7728\u6805\u69a8\u548b\u4e4d\u70b8\u8bc8\u6458\u658b\u5b85\u7a84\u503a\u5be8\u77bb\u6be1\u8a79\u7c98\u6cbe\u76cf\u65a9\u8f97\u5d2d\u5c55\u8638\u6808\u5360\u6218\u7ad9\u6e5b\u7efd\u6a1f\u7ae0\u5f70\u6f33\u5f20\u638c\u6da8\u6756\u4e08\u5e10\u8d26\u4ed7\u80c0\u7634\u969c\u62db\u662d\u627e\u6cbc\u8d75\u7167\u7f69\u5146\u8087\u53ec\u906e\u6298\u54f2\u86f0\u8f99\u8005\u9517\u8517\u8fd9\u6d59\u73cd\u659f\u771f\u7504\u7827\u81fb\u8d1e\u9488\u4fa6\u6795\u75b9\u8bca\u9707\u632f\u9547\u9635\u84b8\u6323\u7741\u5f81\u72f0\u4e89\u6014\u6574\u62ef\u6b63\u653f"],["d640","\u8ae4",34,"\u8b08",27],["d680","\u8b24\u8b25\u8b27",30,"\u5e27\u75c7\u90d1\u8bc1\u829d\u679d\u652f\u5431\u8718\u77e5\u80a2\u8102\u6c41\u4e4b\u7ec7\u804c\u76f4\u690d\u6b96\u6267\u503c\u4f84\u5740\u6307\u6b62\u8dbe\u53ea\u65e8\u7eb8\u5fd7\u631a\u63b7\u81f3\u81f4\u7f6e\u5e1c\u5cd9\u5236\u667a\u79e9\u7a1a\u8d28\u7099\u75d4\u6ede\u6cbb\u7a92\u4e2d\u76c5\u5fe0\u949f\u8877\u7ec8\u79cd\u80bf\u91cd\u4ef2\u4f17\u821f\u5468\u5dde\u6d32\u8bcc\u7ca5\u8f74\u8098\u5e1a\u5492\u76b1\u5b99\u663c\u9aa4\u73e0\u682a\u86db\u6731\u732a\u8bf8\u8bdb\u9010\u7af9\u70db\u716e\u62c4\u77a9\u5631\u4e3b\u8457\u67f1\u52a9\u86c0\u8d2e\u94f8\u7b51"],["d740","\u8b46",31,"\u8b67",4,"\u8b6d",25],["d780","\u8b87",24,"\u8bac\u8bb1\u8bbb\u8bc7\u8bd0\u8bea\u8c09\u8c1e\u4f4f\u6ce8\u795d\u9a7b\u6293\u722a\u62fd\u4e13\u7816\u8f6c\u64b0\u8d5a\u7bc6\u6869\u5e84\u88c5\u5986\u649e\u58ee\u72b6\u690e\u9525\u8ffd\u8d58\u5760\u7f00\u8c06\u51c6\u6349\u62d9\u5353\u684c\u7422\u8301\u914c\u5544\u7740\u707c\u6d4a\u5179\u54a8\u8d44\u59ff\u6ecb\u6dc4\u5b5c\u7d2b\u4ed4\u7c7d\u6ed3\u5b50\u81ea\u6e0d\u5b57\u9b03\u68d5\u8e2a\u5b97\u7efc\u603b\u7eb5\u90b9\u8d70\u594f\u63cd\u79df\u8db3\u5352\u65cf\u7956\u8bc5\u963b\u7ec4\u94bb\u7e82\u5634\u9189\u6700\u7f6a\u5c0a\u9075\u6628\u5de6\u4f50\u67de\u505a\u4f5c\u5750\u5ea7"],["d840","\u8c38",8,"\u8c42\u8c43\u8c44\u8c45\u8c48\u8c4a\u8c4b\u8c4d",7,"\u8c56\u8c57\u8c58\u8c59\u8c5b",5,"\u8c63",6,"\u8c6c",6,"\u8c74\u8c75\u8c76\u8c77\u8c7b",6,"\u8c83\u8c84\u8c86\u8c87"],["d880","\u8c88\u8c8b\u8c8d",6,"\u8c95\u8c96\u8c97\u8c99",20,"\u4e8d\u4e0c\u5140\u4e10\u5eff\u5345\u4e15\u4e98\u4e1e\u9b32\u5b6c\u5669\u4e28\u79ba\u4e3f\u5315\u4e47\u592d\u723b\u536e\u6c10\u56df\u80e4\u9997\u6bd3\u777e\u9f17\u4e36\u4e9f\u9f10\u4e5c\u4e69\u4e93\u8288\u5b5b\u556c\u560f\u4ec4\u538d\u539d\u53a3\u53a5\u53ae\u9765\u8d5d\u531a\u53f5\u5326\u532e\u533e\u8d5c\u5366\u5363\u5202\u5208\u520e\u522d\u5233\u523f\u5240\u524c\u525e\u5261\u525c\u84af\u527d\u5282\u5281\u5290\u5293\u5182\u7f54\u4ebb\u4ec3\u4ec9\u4ec2\u4ee8\u4ee1\u4eeb\u4ede\u4f1b\u4ef3\u4f22\u4f64\u4ef5\u4f25\u4f27\u4f09\u4f2b\u4f5e\u4f67\u6538\u4f5a\u4f5d"],["d940","\u8cae",62],["d980","\u8ced",32,"\u4f5f\u4f57\u4f32\u4f3d\u4f76\u4f74\u4f91\u4f89\u4f83\u4f8f\u4f7e\u4f7b\u4faa\u4f7c\u4fac\u4f94\u4fe6\u4fe8\u4fea\u4fc5\u4fda\u4fe3\u4fdc\u4fd1\u4fdf\u4ff8\u5029\u504c\u4ff3\u502c\u500f\u502e\u502d\u4ffe\u501c\u500c\u5025\u5028\u507e\u5043\u5055\u5048\u504e\u506c\u507b\u50a5\u50a7\u50a9\u50ba\u50d6\u5106\u50ed\u50ec\u50e6\u50ee\u5107\u510b\u4edd\u6c3d\u4f58\u4f65\u4fce\u9fa0\u6c46\u7c74\u516e\u5dfd\u9ec9\u9998\u5181\u5914\u52f9\u530d\u8a07\u5310\u51eb\u5919\u5155\u4ea0\u5156\u4eb3\u886e\u88a4\u4eb5\u8114\u88d2\u7980\u5b34\u8803\u7fb8\u51ab\u51b1\u51bd\u51bc"],["da40","\u8d0e",14,"\u8d20\u8d51\u8d52\u8d57\u8d5f\u8d65\u8d68\u8d69\u8d6a\u8d6c\u8d6e\u8d6f\u8d71\u8d72\u8d78",8,"\u8d82\u8d83\u8d86\u8d87\u8d88\u8d89\u8d8c",4,"\u8d92\u8d93\u8d95",9,"\u8da0\u8da1"],["da80","\u8da2\u8da4",12,"\u8db2\u8db6\u8db7\u8db9\u8dbb\u8dbd\u8dc0\u8dc1\u8dc2\u8dc5\u8dc7\u8dc8\u8dc9\u8dca\u8dcd\u8dd0\u8dd2\u8dd3\u8dd4\u51c7\u5196\u51a2\u51a5\u8ba0\u8ba6\u8ba7\u8baa\u8bb4\u8bb5\u8bb7\u8bc2\u8bc3\u8bcb\u8bcf\u8bce\u8bd2\u8bd3\u8bd4\u8bd6\u8bd8\u8bd9\u8bdc\u8bdf\u8be0\u8be4\u8be8\u8be9\u8bee\u8bf0\u8bf3\u8bf6\u8bf9\u8bfc\u8bff\u8c00\u8c02\u8c04\u8c07\u8c0c\u8c0f\u8c11\u8c12\u8c14\u8c15\u8c16\u8c19\u8c1b\u8c18\u8c1d\u8c1f\u8c20\u8c21\u8c25\u8c27\u8c2a\u8c2b\u8c2e\u8c2f\u8c32\u8c33\u8c35\u8c36\u5369\u537a\u961d\u9622\u9621\u9631\u962a\u963d\u963c\u9642\u9649\u9654\u965f\u9667\u966c\u9672\u9674\u9688\u968d\u9697\u96b0\u9097\u909b\u909d\u9099\u90ac\u90a1\u90b4\u90b3\u90b6\u90ba"],["db40","\u8dd5\u8dd8\u8dd9\u8ddc\u8de0\u8de1\u8de2\u8de5\u8de6\u8de7\u8de9\u8ded\u8dee\u8df0\u8df1\u8df2\u8df4\u8df6\u8dfc\u8dfe",6,"\u8e06\u8e07\u8e08\u8e0b\u8e0d\u8e0e\u8e10\u8e11\u8e12\u8e13\u8e15",7,"\u8e20\u8e21\u8e24",4,"\u8e2b\u8e2d\u8e30\u8e32\u8e33\u8e34\u8e36\u8e37\u8e38\u8e3b\u8e3c\u8e3e"],["db80","\u8e3f\u8e43\u8e45\u8e46\u8e4c",4,"\u8e53",5,"\u8e5a",11,"\u8e67\u8e68\u8e6a\u8e6b\u8e6e\u8e71\u90b8\u90b0\u90cf\u90c5\u90be\u90d0\u90c4\u90c7\u90d3\u90e6\u90e2\u90dc\u90d7\u90db\u90eb\u90ef\u90fe\u9104\u9122\u911e\u9123\u9131\u912f\u9139\u9143\u9146\u520d\u5942\u52a2\u52ac\u52ad\u52be\u54ff\u52d0\u52d6\u52f0\u53df\u71ee\u77cd\u5ef4\u51f5\u51fc\u9b2f\u53b6\u5f01\u755a\u5def\u574c\u57a9\u57a1\u587e\u58bc\u58c5\u58d1\u5729\u572c\u572a\u5733\u5739\u572e\u572f\u575c\u573b\u5742\u5769\u5785\u576b\u5786\u577c\u577b\u5768\u576d\u5776\u5773\u57ad\u57a4\u578c\u57b2\u57cf\u57a7\u57b4\u5793\u57a0\u57d5\u57d8\u57da\u57d9\u57d2\u57b8\u57f4\u57ef\u57f8\u57e4\u57dd"],["dc40","\u8e73\u8e75\u8e77",4,"\u8e7d\u8e7e\u8e80\u8e82\u8e83\u8e84\u8e86\u8e88",6,"\u8e91\u8e92\u8e93\u8e95",6,"\u8e9d\u8e9f",11,"\u8ead\u8eae\u8eb0\u8eb1\u8eb3",6,"\u8ebb",7],["dc80","\u8ec3",10,"\u8ecf",21,"\u580b\u580d\u57fd\u57ed\u5800\u581e\u5819\u5844\u5820\u5865\u586c\u5881\u5889\u589a\u5880\u99a8\u9f19\u61ff\u8279\u827d\u827f\u828f\u828a\u82a8\u8284\u828e\u8291\u8297\u8299\u82ab\u82b8\u82be\u82b0\u82c8\u82ca\u82e3\u8298\u82b7\u82ae\u82cb\u82cc\u82c1\u82a9\u82b4\u82a1\u82aa\u829f\u82c4\u82ce\u82a4\u82e1\u8309\u82f7\u82e4\u830f\u8307\u82dc\u82f4\u82d2\u82d8\u830c\u82fb\u82d3\u8311\u831a\u8306\u8314\u8315\u82e0\u82d5\u831c\u8351\u835b\u835c\u8308\u8392\u833c\u8334\u8331\u839b\u835e\u832f\u834f\u8347\u8343\u835f\u8340\u8317\u8360\u832d\u833a\u8333\u8366\u8365"],["dd40","\u8ee5",62],["dd80","\u8f24",32,"\u8368\u831b\u8369\u836c\u836a\u836d\u836e\u83b0\u8378\u83b3\u83b4\u83a0\u83aa\u8393\u839c\u8385\u837c\u83b6\u83a9\u837d\u83b8\u837b\u8398\u839e\u83a8\u83ba\u83bc\u83c1\u8401\u83e5\u83d8\u5807\u8418\u840b\u83dd\u83fd\u83d6\u841c\u8438\u8411\u8406\u83d4\u83df\u840f\u8403\u83f8\u83f9\u83ea\u83c5\u83c0\u8426\u83f0\u83e1\u845c\u8451\u845a\u8459\u8473\u8487\u8488\u847a\u8489\u8478\u843c\u8446\u8469\u8476\u848c\u848e\u8431\u846d\u84c1\u84cd\u84d0\u84e6\u84bd\u84d3\u84ca\u84bf\u84ba\u84e0\u84a1\u84b9\u84b4\u8497\u84e5\u84e3\u850c\u750d\u8538\u84f0\u8539\u851f\u853a"],["de40","\u8f45",32,"\u8f6a\u8f80\u8f8c\u8f92\u8f9d\u8fa0\u8fa1\u8fa2\u8fa4\u8fa5\u8fa6\u8fa7\u8faa\u8fac\u8fad\u8fae\u8faf\u8fb2\u8fb3\u8fb4\u8fb5\u8fb7\u8fb8\u8fba\u8fbb\u8fbc\u8fbf\u8fc0\u8fc3\u8fc6"],["de80","\u8fc9",4,"\u8fcf\u8fd2\u8fd6\u8fd7\u8fda\u8fe0\u8fe1\u8fe3\u8fe7\u8fec\u8fef\u8ff1\u8ff2\u8ff4\u8ff5\u8ff6\u8ffa\u8ffb\u8ffc\u8ffe\u8fff\u9007\u9008\u900c\u900e\u9013\u9015\u9018\u8556\u853b\u84ff\u84fc\u8559\u8548\u8568\u8564\u855e\u857a\u77a2\u8543\u8572\u857b\u85a4\u85a8\u8587\u858f\u8579\u85ae\u859c\u8585\u85b9\u85b7\u85b0\u85d3\u85c1\u85dc\u85ff\u8627\u8605\u8629\u8616\u863c\u5efe\u5f08\u593c\u5941\u8037\u5955\u595a\u5958\u530f\u5c22\u5c25\u5c2c\u5c34\u624c\u626a\u629f\u62bb\u62ca\u62da\u62d7\u62ee\u6322\u62f6\u6339\u634b\u6343\u63ad\u63f6\u6371\u637a\u638e\u63b4\u636d\u63ac\u638a\u6369\u63ae\u63bc\u63f2\u63f8\u63e0\u63ff\u63c4\u63de\u63ce\u6452\u63c6\u63be\u6445\u6441\u640b\u641b\u6420\u640c\u6426\u6421\u645e\u6484\u646d\u6496"],["df40","\u9019\u901c\u9023\u9024\u9025\u9027",5,"\u9030",4,"\u9037\u9039\u903a\u903d\u903f\u9040\u9043\u9045\u9046\u9048",4,"\u904e\u9054\u9055\u9056\u9059\u905a\u905c",5,"\u9064\u9066\u9067\u9069\u906a\u906b\u906c\u906f",4,"\u9076",6,"\u907e\u9081"],["df80","\u9084\u9085\u9086\u9087\u9089\u908a\u908c",4,"\u9092\u9094\u9096\u9098\u909a\u909c\u909e\u909f\u90a0\u90a4\u90a5\u90a7\u90a8\u90a9\u90ab\u90ad\u90b2\u90b7\u90bc\u90bd\u90bf\u90c0\u647a\u64b7\u64b8\u6499\u64ba\u64c0\u64d0\u64d7\u64e4\u64e2\u6509\u6525\u652e\u5f0b\u5fd2\u7519\u5f11\u535f\u53f1\u53fd\u53e9\u53e8\u53fb\u5412\u5416\u5406\u544b\u5452\u5453\u5454\u5456\u5443\u5421\u5457\u5459\u5423\u5432\u5482\u5494\u5477\u5471\u5464\u549a\u549b\u5484\u5476\u5466\u549d\u54d0\u54ad\u54c2\u54b4\u54d2\u54a7\u54a6\u54d3\u54d4\u5472\u54a3\u54d5\u54bb\u54bf\u54cc\u54d9\u54da\u54dc\u54a9\u54aa\u54a4\u54dd\u54cf\u54de\u551b\u54e7\u5520\u54fd\u5514\u54f3\u5522\u5523\u550f\u5511\u5527\u552a\u5567\u558f\u55b5\u5549\u556d\u5541\u5555\u553f\u5550\u553c"],["e040","\u90c2\u90c3\u90c6\u90c8\u90c9\u90cb\u90cc\u90cd\u90d2\u90d4\u90d5\u90d6\u90d8\u90d9\u90da\u90de\u90df\u90e0\u90e3\u90e4\u90e5\u90e9\u90ea\u90ec\u90ee\u90f0\u90f1\u90f2\u90f3\u90f5\u90f6\u90f7\u90f9\u90fa\u90fb\u90fc\u90ff\u9100\u9101\u9103\u9105",19,"\u911a\u911b\u911c"],["e080","\u911d\u911f\u9120\u9121\u9124",10,"\u9130\u9132",6,"\u913a",8,"\u9144\u5537\u5556\u5575\u5576\u5577\u5533\u5530\u555c\u558b\u55d2\u5583\u55b1\u55b9\u5588\u5581\u559f\u557e\u55d6\u5591\u557b\u55df\u55bd\u55be\u5594\u5599\u55ea\u55f7\u55c9\u561f\u55d1\u55eb\u55ec\u55d4\u55e6\u55dd\u55c4\u55ef\u55e5\u55f2\u55f3\u55cc\u55cd\u55e8\u55f5\u55e4\u8f94\u561e\u5608\u560c\u5601\u5624\u5623\u55fe\u5600\u5627\u562d\u5658\u5639\u5657\u562c\u564d\u5662\u5659\u565c\u564c\u5654\u5686\u5664\u5671\u566b\u567b\u567c\u5685\u5693\u56af\u56d4\u56d7\u56dd\u56e1\u56f5\u56eb\u56f9\u56ff\u5704\u570a\u5709\u571c\u5e0f\u5e19\u5e14\u5e11\u5e31\u5e3b\u5e3c"],["e140","\u9145\u9147\u9148\u9151\u9153\u9154\u9155\u9156\u9158\u9159\u915b\u915c\u915f\u9160\u9166\u9167\u9168\u916b\u916d\u9173\u917a\u917b\u917c\u9180",4,"\u9186\u9188\u918a\u918e\u918f\u9193",6,"\u919c",5,"\u91a4",5,"\u91ab\u91ac\u91b0\u91b1\u91b2\u91b3\u91b6\u91b7\u91b8\u91b9\u91bb"],["e180","\u91bc",10,"\u91c8\u91cb\u91d0\u91d2",9,"\u91dd",8,"\u5e37\u5e44\u5e54\u5e5b\u5e5e\u5e61\u5c8c\u5c7a\u5c8d\u5c90\u5c96\u5c88\u5c98\u5c99\u5c91\u5c9a\u5c9c\u5cb5\u5ca2\u5cbd\u5cac\u5cab\u5cb1\u5ca3\u5cc1\u5cb7\u5cc4\u5cd2\u5ce4\u5ccb\u5ce5\u5d02\u5d03\u5d27\u5d26\u5d2e\u5d24\u5d1e\u5d06\u5d1b\u5d58\u5d3e\u5d34\u5d3d\u5d6c\u5d5b\u5d6f\u5d5d\u5d6b\u5d4b\u5d4a\u5d69\u5d74\u5d82\u5d99\u5d9d\u8c73\u5db7\u5dc5\u5f73\u5f77\u5f82\u5f87\u5f89\u5f8c\u5f95\u5f99\u5f9c\u5fa8\u5fad\u5fb5\u5fbc\u8862\u5f61\u72ad\u72b0\u72b4\u72b7\u72b8\u72c3\u72c1\u72ce\u72cd\u72d2\u72e8\u72ef\u72e9\u72f2\u72f4\u72f7\u7301\u72f3\u7303\u72fa"],["e240","\u91e6",62],["e280","\u9225",32,"\u72fb\u7317\u7313\u7321\u730a\u731e\u731d\u7315\u7322\u7339\u7325\u732c\u7338\u7331\u7350\u734d\u7357\u7360\u736c\u736f\u737e\u821b\u5925\u98e7\u5924\u5902\u9963\u9967",5,"\u9974\u9977\u997d\u9980\u9984\u9987\u998a\u998d\u9990\u9991\u9993\u9994\u9995\u5e80\u5e91\u5e8b\u5e96\u5ea5\u5ea0\u5eb9\u5eb5\u5ebe\u5eb3\u8d53\u5ed2\u5ed1\u5edb\u5ee8\u5eea\u81ba\u5fc4\u5fc9\u5fd6\u5fcf\u6003\u5fee\u6004\u5fe1\u5fe4\u5ffe\u6005\u6006\u5fea\u5fed\u5ff8\u6019\u6035\u6026\u601b\u600f\u600d\u6029\u602b\u600a\u603f\u6021\u6078\u6079\u607b\u607a\u6042"],["e340","\u9246",45,"\u9275",16],["e380","\u9286",7,"\u928f",24,"\u606a\u607d\u6096\u609a\u60ad\u609d\u6083\u6092\u608c\u609b\u60ec\u60bb\u60b1\u60dd\u60d8\u60c6\u60da\u60b4\u6120\u6126\u6115\u6123\u60f4\u6100\u610e\u612b\u614a\u6175\u61ac\u6194\u61a7\u61b7\u61d4\u61f5\u5fdd\u96b3\u95e9\u95eb\u95f1\u95f3\u95f5\u95f6\u95fc\u95fe\u9603\u9604\u9606\u9608\u960a\u960b\u960c\u960d\u960f\u9612\u9615\u9616\u9617\u9619\u961a\u4e2c\u723f\u6215\u6c35\u6c54\u6c5c\u6c4a\u6ca3\u6c85\u6c90\u6c94\u6c8c\u6c68\u6c69\u6c74\u6c76\u6c86\u6ca9\u6cd0\u6cd4\u6cad\u6cf7\u6cf8\u6cf1\u6cd7\u6cb2\u6ce0\u6cd6\u6cfa\u6ceb\u6cee\u6cb1\u6cd3\u6cef\u6cfe"],["e440","\u92a8",5,"\u92af",24,"\u92c9",31],["e480","\u92e9",32,"\u6d39\u6d27\u6d0c\u6d43\u6d48\u6d07\u6d04\u6d19\u6d0e\u6d2b\u6d4d\u6d2e\u6d35\u6d1a\u6d4f\u6d52\u6d54\u6d33\u6d91\u6d6f\u6d9e\u6da0\u6d5e\u6d93\u6d94\u6d5c\u6d60\u6d7c\u6d63\u6e1a\u6dc7\u6dc5\u6dde\u6e0e\u6dbf\u6de0\u6e11\u6de6\u6ddd\u6dd9\u6e16\u6dab\u6e0c\u6dae\u6e2b\u6e6e\u6e4e\u6e6b\u6eb2\u6e5f\u6e86\u6e53\u6e54\u6e32\u6e25\u6e44\u6edf\u6eb1\u6e98\u6ee0\u6f2d\u6ee2\u6ea5\u6ea7\u6ebd\u6ebb\u6eb7\u6ed7\u6eb4\u6ecf\u6e8f\u6ec2\u6e9f\u6f62\u6f46\u6f47\u6f24\u6f15\u6ef9\u6f2f\u6f36\u6f4b\u6f74\u6f2a\u6f09\u6f29\u6f89\u6f8d\u6f8c\u6f78\u6f72\u6f7c\u6f7a\u6fd1"],["e540","\u930a",51,"\u933f",10],["e580","\u934a",31,"\u936b\u6fc9\u6fa7\u6fb9\u6fb6\u6fc2\u6fe1\u6fee\u6fde\u6fe0\u6fef\u701a\u7023\u701b\u7039\u7035\u704f\u705e\u5b80\u5b84\u5b95\u5b93\u5ba5\u5bb8\u752f\u9a9e\u6434\u5be4\u5bee\u8930\u5bf0\u8e47\u8b07\u8fb6\u8fd3\u8fd5\u8fe5\u8fee\u8fe4\u8fe9\u8fe6\u8ff3\u8fe8\u9005\u9004\u900b\u9026\u9011\u900d\u9016\u9021\u9035\u9036\u902d\u902f\u9044\u9051\u9052\u9050\u9068\u9058\u9062\u905b\u66b9\u9074\u907d\u9082\u9088\u9083\u908b\u5f50\u5f57\u5f56\u5f58\u5c3b\u54ab\u5c50\u5c59\u5b71\u5c63\u5c66\u7fbc\u5f2a\u5f29\u5f2d\u8274\u5f3c\u9b3b\u5c6e\u5981\u5983\u598d\u59a9\u59aa\u59a3"],["e640","\u936c",34,"\u9390",27],["e680","\u93ac",29,"\u93cb\u93cc\u93cd\u5997\u59ca\u59ab\u599e\u59a4\u59d2\u59b2\u59af\u59d7\u59be\u5a05\u5a06\u59dd\u5a08\u59e3\u59d8\u59f9\u5a0c\u5a09\u5a32\u5a34\u5a11\u5a23\u5a13\u5a40\u5a67\u5a4a\u5a55\u5a3c\u5a62\u5a75\u80ec\u5aaa\u5a9b\u5a77\u5a7a\u5abe\u5aeb\u5ab2\u5ad2\u5ad4\u5ab8\u5ae0\u5ae3\u5af1\u5ad6\u5ae6\u5ad8\u5adc\u5b09\u5b17\u5b16\u5b32\u5b37\u5b40\u5c15\u5c1c\u5b5a\u5b65\u5b73\u5b51\u5b53\u5b62\u9a75\u9a77\u9a78\u9a7a\u9a7f\u9a7d\u9a80\u9a81\u9a85\u9a88\u9a8a\u9a90\u9a92\u9a93\u9a96\u9a98\u9a9b\u9a9c\u9a9d\u9a9f\u9aa0\u9aa2\u9aa3\u9aa5\u9aa7\u7e9f\u7ea1\u7ea3\u7ea5\u7ea8\u7ea9"],["e740","\u93ce",7,"\u93d7",54],["e780","\u940e",32,"\u7ead\u7eb0\u7ebe\u7ec0\u7ec1\u7ec2\u7ec9\u7ecb\u7ecc\u7ed0\u7ed4\u7ed7\u7edb\u7ee0\u7ee1\u7ee8\u7eeb\u7eee\u7eef\u7ef1\u7ef2\u7f0d\u7ef6\u7efa\u7efb\u7efe\u7f01\u7f02\u7f03\u7f07\u7f08\u7f0b\u7f0c\u7f0f\u7f11\u7f12\u7f17\u7f19\u7f1c\u7f1b\u7f1f\u7f21",6,"\u7f2a\u7f2b\u7f2c\u7f2d\u7f2f",4,"\u7f35\u5e7a\u757f\u5ddb\u753e\u9095\u738e\u7391\u73ae\u73a2\u739f\u73cf\u73c2\u73d1\u73b7\u73b3\u73c0\u73c9\u73c8\u73e5\u73d9\u987c\u740a\u73e9\u73e7\u73de\u73ba\u73f2\u740f\u742a\u745b\u7426\u7425\u7428\u7430\u742e\u742c"],["e840","\u942f",14,"\u943f",43,"\u946c\u946d\u946e\u946f"],["e880","\u9470",20,"\u9491\u9496\u9498\u94c7\u94cf\u94d3\u94d4\u94da\u94e6\u94fb\u951c\u9520\u741b\u741a\u7441\u745c\u7457\u7455\u7459\u7477\u746d\u747e\u749c\u748e\u7480\u7481\u7487\u748b\u749e\u74a8\u74a9\u7490\u74a7\u74d2\u74ba\u97ea\u97eb\u97ec\u674c\u6753\u675e\u6748\u6769\u67a5\u6787\u676a\u6773\u6798\u67a7\u6775\u67a8\u679e\u67ad\u678b\u6777\u677c\u67f0\u6809\u67d8\u680a\u67e9\u67b0\u680c\u67d9\u67b5\u67da\u67b3\u67dd\u6800\u67c3\u67b8\u67e2\u680e\u67c1\u67fd\u6832\u6833\u6860\u6861\u684e\u6862\u6844\u6864\u6883\u681d\u6855\u6866\u6841\u6867\u6840\u683e\u684a\u6849\u6829\u68b5\u688f\u6874\u6877\u6893\u686b\u68c2\u696e\u68fc\u691f\u6920\u68f9"],["e940","\u9527\u9533\u953d\u9543\u9548\u954b\u9555\u955a\u9560\u956e\u9574\u9575\u9577",7,"\u9580",42],["e980","\u95ab",32,"\u6924\u68f0\u690b\u6901\u6957\u68e3\u6910\u6971\u6939\u6960\u6942\u695d\u6984\u696b\u6980\u6998\u6978\u6934\u69cc\u6987\u6988\u69ce\u6989\u6966\u6963\u6979\u699b\u69a7\u69bb\u69ab\u69ad\u69d4\u69b1\u69c1\u69ca\u69df\u6995\u69e0\u698d\u69ff\u6a2f\u69ed\u6a17\u6a18\u6a65\u69f2\u6a44\u6a3e\u6aa0\u6a50\u6a5b\u6a35\u6a8e\u6a79\u6a3d\u6a28\u6a58\u6a7c\u6a91\u6a90\u6aa9\u6a97\u6aab\u7337\u7352\u6b81\u6b82\u6b87\u6b84\u6b92\u6b93\u6b8d\u6b9a\u6b9b\u6ba1\u6baa\u8f6b\u8f6d\u8f71\u8f72\u8f73\u8f75\u8f76\u8f78\u8f77\u8f79\u8f7a\u8f7c\u8f7e\u8f81\u8f82\u8f84\u8f87\u8f8b"],["ea40","\u95cc",27,"\u95ec\u95ff\u9607\u9613\u9618\u961b\u961e\u9620\u9623",6,"\u962b\u962c\u962d\u962f\u9630\u9637\u9638\u9639\u963a\u963e\u9641\u9643\u964a\u964e\u964f\u9651\u9652\u9653\u9656\u9657"],["ea80","\u9658\u9659\u965a\u965c\u965d\u965e\u9660\u9663\u9665\u9666\u966b\u966d",4,"\u9673\u9678",12,"\u9687\u9689\u968a\u8f8d\u8f8e\u8f8f\u8f98\u8f9a\u8ece\u620b\u6217\u621b\u621f\u6222\u6221\u6225\u6224\u622c\u81e7\u74ef\u74f4\u74ff\u750f\u7511\u7513\u6534\u65ee\u65ef\u65f0\u660a\u6619\u6772\u6603\u6615\u6600\u7085\u66f7\u661d\u6634\u6631\u6636\u6635\u8006\u665f\u6654\u6641\u664f\u6656\u6661\u6657\u6677\u6684\u668c\u66a7\u669d\u66be\u66db\u66dc\u66e6\u66e9\u8d32\u8d33\u8d36\u8d3b\u8d3d\u8d40\u8d45\u8d46\u8d48\u8d49\u8d47\u8d4d\u8d55\u8d59\u89c7\u89ca\u89cb\u89cc\u89ce\u89cf\u89d0\u89d1\u726e\u729f\u725d\u7266\u726f\u727e\u727f\u7284\u728b\u728d\u728f\u7292\u6308\u6332\u63b0"],["eb40","\u968c\u968e\u9691\u9692\u9693\u9695\u9696\u969a\u969b\u969d",9,"\u96a8",7,"\u96b1\u96b2\u96b4\u96b5\u96b7\u96b8\u96ba\u96bb\u96bf\u96c2\u96c3\u96c8\u96ca\u96cb\u96d0\u96d1\u96d3\u96d4\u96d6",9,"\u96e1",6,"\u96eb"],["eb80","\u96ec\u96ed\u96ee\u96f0\u96f1\u96f2\u96f4\u96f5\u96f8\u96fa\u96fb\u96fc\u96fd\u96ff\u9702\u9703\u9705\u970a\u970b\u970c\u9710\u9711\u9712\u9714\u9715\u9717",4,"\u971d\u971f\u9720\u643f\u64d8\u8004\u6bea\u6bf3\u6bfd\u6bf5\u6bf9\u6c05\u6c07\u6c06\u6c0d\u6c15\u6c18\u6c19\u6c1a\u6c21\u6c29\u6c24\u6c2a\u6c32\u6535\u6555\u656b\u724d\u7252\u7256\u7230\u8662\u5216\u809f\u809c\u8093\u80bc\u670a\u80bd\u80b1\u80ab\u80ad\u80b4\u80b7\u80e7\u80e8\u80e9\u80ea\u80db\u80c2\u80c4\u80d9\u80cd\u80d7\u6710\u80dd\u80eb\u80f1\u80f4\u80ed\u810d\u810e\u80f2\u80fc\u6715\u8112\u8c5a\u8136\u811e\u812c\u8118\u8132\u8148\u814c\u8153\u8174\u8159\u815a\u8171\u8160\u8169\u817c\u817d\u816d\u8167\u584d\u5ab5\u8188\u8182\u8191\u6ed5\u81a3\u81aa\u81cc\u6726\u81ca\u81bb"],["ec40","\u9721",8,"\u972b\u972c\u972e\u972f\u9731\u9733",4,"\u973a\u973b\u973c\u973d\u973f",18,"\u9754\u9755\u9757\u9758\u975a\u975c\u975d\u975f\u9763\u9764\u9766\u9767\u9768\u976a",7],["ec80","\u9772\u9775\u9777",4,"\u977d",7,"\u9786",4,"\u978c\u978e\u978f\u9790\u9793\u9795\u9796\u9797\u9799",4,"\u81c1\u81a6\u6b24\u6b37\u6b39\u6b43\u6b46\u6b59\u98d1\u98d2\u98d3\u98d5\u98d9\u98da\u6bb3\u5f40\u6bc2\u89f3\u6590\u9f51\u6593\u65bc\u65c6\u65c4\u65c3\u65cc\u65ce\u65d2\u65d6\u7080\u709c\u7096\u709d\u70bb\u70c0\u70b7\u70ab\u70b1\u70e8\u70ca\u7110\u7113\u7116\u712f\u7131\u7173\u715c\u7168\u7145\u7172\u714a\u7178\u717a\u7198\u71b3\u71b5\u71a8\u71a0\u71e0\u71d4\u71e7\u71f9\u721d\u7228\u706c\u7118\u7166\u71b9\u623e\u623d\u6243\u6248\u6249\u793b\u7940\u7946\u7949\u795b\u795c\u7953\u795a\u7962\u7957\u7960\u796f\u7967\u797a\u7985\u798a\u799a\u79a7\u79b3\u5fd1\u5fd0"],["ed40","\u979e\u979f\u97a1\u97a2\u97a4",6,"\u97ac\u97ae\u97b0\u97b1\u97b3\u97b5",46],["ed80","\u97e4\u97e5\u97e8\u97ee",4,"\u97f4\u97f7",23,"\u603c\u605d\u605a\u6067\u6041\u6059\u6063\u60ab\u6106\u610d\u615d\u61a9\u619d\u61cb\u61d1\u6206\u8080\u807f\u6c93\u6cf6\u6dfc\u77f6\u77f8\u7800\u7809\u7817\u7818\u7811\u65ab\u782d\u781c\u781d\u7839\u783a\u783b\u781f\u783c\u7825\u782c\u7823\u7829\u784e\u786d\u7856\u7857\u7826\u7850\u7847\u784c\u786a\u789b\u7893\u789a\u7887\u789c\u78a1\u78a3\u78b2\u78b9\u78a5\u78d4\u78d9\u78c9\u78ec\u78f2\u7905\u78f4\u7913\u7924\u791e\u7934\u9f9b\u9ef9\u9efb\u9efc\u76f1\u7704\u770d\u76f9\u7707\u7708\u771a\u7722\u7719\u772d\u7726\u7735\u7738\u7750\u7751\u7747\u7743\u775a\u7768"],["ee40","\u980f",62],["ee80","\u984e",32,"\u7762\u7765\u777f\u778d\u777d\u7780\u778c\u7791\u779f\u77a0\u77b0\u77b5\u77bd\u753a\u7540\u754e\u754b\u7548\u755b\u7572\u7579\u7583\u7f58\u7f61\u7f5f\u8a48\u7f68\u7f74\u7f71\u7f79\u7f81\u7f7e\u76cd\u76e5\u8832\u9485\u9486\u9487\u948b\u948a\u948c\u948d\u948f\u9490\u9494\u9497\u9495\u949a\u949b\u949c\u94a3\u94a4\u94ab\u94aa\u94ad\u94ac\u94af\u94b0\u94b2\u94b4\u94b6",4,"\u94bc\u94bd\u94bf\u94c4\u94c8",6,"\u94d0\u94d1\u94d2\u94d5\u94d6\u94d7\u94d9\u94d8\u94db\u94de\u94df\u94e0\u94e2\u94e4\u94e5\u94e7\u94e8\u94ea"],["ef40","\u986f",5,"\u988b\u988e\u9892\u9895\u9899\u98a3\u98a8",37,"\u98cf\u98d0\u98d4\u98d6\u98d7\u98db\u98dc\u98dd\u98e0",4],["ef80","\u98e5\u98e6\u98e9",30,"\u94e9\u94eb\u94ee\u94ef\u94f3\u94f4\u94f5\u94f7\u94f9\u94fc\u94fd\u94ff\u9503\u9502\u9506\u9507\u9509\u950a\u950d\u950e\u950f\u9512",4,"\u9518\u951b\u951d\u951e\u951f\u9522\u952a\u952b\u9529\u952c\u9531\u9532\u9534\u9536\u9537\u9538\u953c\u953e\u953f\u9542\u9535\u9544\u9545\u9546\u9549\u954c\u954e\u954f\u9552\u9553\u9554\u9556\u9557\u9558\u9559\u955b\u955e\u955f\u955d\u9561\u9562\u9564",8,"\u956f\u9571\u9572\u9573\u953a\u77e7\u77ec\u96c9\u79d5\u79ed\u79e3\u79eb\u7a06\u5d47\u7a03\u7a02\u7a1e\u7a14"],["f040","\u9908",4,"\u990e\u990f\u9911",28,"\u992f",26],["f080","\u994a",9,"\u9956",12,"\u9964\u9966\u9973\u9978\u9979\u997b\u997e\u9982\u9983\u9989\u7a39\u7a37\u7a51\u9ecf\u99a5\u7a70\u7688\u768e\u7693\u7699\u76a4\u74de\u74e0\u752c\u9e20\u9e22\u9e28",4,"\u9e32\u9e31\u9e36\u9e38\u9e37\u9e39\u9e3a\u9e3e\u9e41\u9e42\u9e44\u9e46\u9e47\u9e48\u9e49\u9e4b\u9e4c\u9e4e\u9e51\u9e55\u9e57\u9e5a\u9e5b\u9e5c\u9e5e\u9e63\u9e66",6,"\u9e71\u9e6d\u9e73\u7592\u7594\u7596\u75a0\u759d\u75ac\u75a3\u75b3\u75b4\u75b8\u75c4\u75b1\u75b0\u75c3\u75c2\u75d6\u75cd\u75e3\u75e8\u75e6\u75e4\u75eb\u75e7\u7603\u75f1\u75fc\u75ff\u7610\u7600\u7605\u760c\u7617\u760a\u7625\u7618\u7615\u7619"],["f140","\u998c\u998e\u999a",10,"\u99a6\u99a7\u99a9",47],["f180","\u99d9",32,"\u761b\u763c\u7622\u7620\u7640\u762d\u7630\u763f\u7635\u7643\u763e\u7633\u764d\u765e\u7654\u765c\u7656\u766b\u766f\u7fca\u7ae6\u7a78\u7a79\u7a80\u7a86\u7a88\u7a95\u7aa6\u7aa0\u7aac\u7aa8\u7aad\u7ab3\u8864\u8869\u8872\u887d\u887f\u8882\u88a2\u88c6\u88b7\u88bc\u88c9\u88e2\u88ce\u88e3\u88e5\u88f1\u891a\u88fc\u88e8\u88fe\u88f0\u8921\u8919\u8913\u891b\u890a\u8934\u892b\u8936\u8941\u8966\u897b\u758b\u80e5\u76b2\u76b4\u77dc\u8012\u8014\u8016\u801c\u8020\u8022\u8025\u8026\u8027\u8029\u8028\u8031\u800b\u8035\u8043\u8046\u804d\u8052\u8069\u8071\u8983\u9878\u9880\u9883"],["f240","\u99fa",62],["f280","\u9a39",32,"\u9889\u988c\u988d\u988f\u9894\u989a\u989b\u989e\u989f\u98a1\u98a2\u98a5\u98a6\u864d\u8654\u866c\u866e\u867f\u867a\u867c\u867b\u86a8\u868d\u868b\u86ac\u869d\u86a7\u86a3\u86aa\u8693\u86a9\u86b6\u86c4\u86b5\u86ce\u86b0\u86ba\u86b1\u86af\u86c9\u86cf\u86b4\u86e9\u86f1\u86f2\u86ed\u86f3\u86d0\u8713\u86de\u86f4\u86df\u86d8\u86d1\u8703\u8707\u86f8\u8708\u870a\u870d\u8709\u8723\u873b\u871e\u8725\u872e\u871a\u873e\u8748\u8734\u8731\u8729\u8737\u873f\u8782\u8722\u877d\u877e\u877b\u8760\u8770\u874c\u876e\u878b\u8753\u8763\u877c\u8764\u8759\u8765\u8793\u87af\u87a8\u87d2"],["f340","\u9a5a",17,"\u9a72\u9a83\u9a89\u9a8d\u9a8e\u9a94\u9a95\u9a99\u9aa6\u9aa9",6,"\u9ab2\u9ab3\u9ab4\u9ab5\u9ab9\u9abb\u9abd\u9abe\u9abf\u9ac3\u9ac4\u9ac6",4,"\u9acd\u9ace\u9acf\u9ad0\u9ad2\u9ad4\u9ad5\u9ad6\u9ad7\u9ad9\u9ada\u9adb\u9adc"],["f380","\u9add\u9ade\u9ae0\u9ae2\u9ae3\u9ae4\u9ae5\u9ae7\u9ae8\u9ae9\u9aea\u9aec\u9aee\u9af0",8,"\u9afa\u9afc",6,"\u9b04\u9b05\u9b06\u87c6\u8788\u8785\u87ad\u8797\u8783\u87ab\u87e5\u87ac\u87b5\u87b3\u87cb\u87d3\u87bd\u87d1\u87c0\u87ca\u87db\u87ea\u87e0\u87ee\u8816\u8813\u87fe\u880a\u881b\u8821\u8839\u883c\u7f36\u7f42\u7f44\u7f45\u8210\u7afa\u7afd\u7b08\u7b03\u7b04\u7b15\u7b0a\u7b2b\u7b0f\u7b47\u7b38\u7b2a\u7b19\u7b2e\u7b31\u7b20\u7b25\u7b24\u7b33\u7b3e\u7b1e\u7b58\u7b5a\u7b45\u7b75\u7b4c\u7b5d\u7b60\u7b6e\u7b7b\u7b62\u7b72\u7b71\u7b90\u7ba6\u7ba7\u7bb8\u7bac\u7b9d\u7ba8\u7b85\u7baa\u7b9c\u7ba2\u7bab\u7bb4\u7bd1\u7bc1\u7bcc\u7bdd\u7bda\u7be5\u7be6\u7bea\u7c0c\u7bfe\u7bfc\u7c0f\u7c16\u7c0b"],["f440","\u9b07\u9b09",5,"\u9b10\u9b11\u9b12\u9b14",10,"\u9b20\u9b21\u9b22\u9b24",10,"\u9b30\u9b31\u9b33",7,"\u9b3d\u9b3e\u9b3f\u9b40\u9b46\u9b4a\u9b4b\u9b4c\u9b4e\u9b50\u9b52\u9b53\u9b55",5],["f480","\u9b5b",32,"\u7c1f\u7c2a\u7c26\u7c38\u7c41\u7c40\u81fe\u8201\u8202\u8204\u81ec\u8844\u8221\u8222\u8223\u822d\u822f\u8228\u822b\u8238\u823b\u8233\u8234\u823e\u8244\u8249\u824b\u824f\u825a\u825f\u8268\u887e\u8885\u8888\u88d8\u88df\u895e\u7f9d\u7f9f\u7fa7\u7faf\u7fb0\u7fb2\u7c7c\u6549\u7c91\u7c9d\u7c9c\u7c9e\u7ca2\u7cb2\u7cbc\u7cbd\u7cc1\u7cc7\u7ccc\u7ccd\u7cc8\u7cc5\u7cd7\u7ce8\u826e\u66a8\u7fbf\u7fce\u7fd5\u7fe5\u7fe1\u7fe6\u7fe9\u7fee\u7ff3\u7cf8\u7d77\u7da6\u7dae\u7e47\u7e9b\u9eb8\u9eb4\u8d73\u8d84\u8d94\u8d91\u8db1\u8d67\u8d6d\u8c47\u8c49\u914a\u9150\u914e\u914f\u9164"],["f540","\u9b7c",62],["f580","\u9bbb",32,"\u9162\u9161\u9170\u9169\u916f\u917d\u917e\u9172\u9174\u9179\u918c\u9185\u9190\u918d\u9191\u91a2\u91a3\u91aa\u91ad\u91ae\u91af\u91b5\u91b4\u91ba\u8c55\u9e7e\u8db8\u8deb\u8e05\u8e59\u8e69\u8db5\u8dbf\u8dbc\u8dba\u8dc4\u8dd6\u8dd7\u8dda\u8dde\u8dce\u8dcf\u8ddb\u8dc6\u8dec\u8df7\u8df8\u8de3\u8df9\u8dfb\u8de4\u8e09\u8dfd\u8e14\u8e1d\u8e1f\u8e2c\u8e2e\u8e23\u8e2f\u8e3a\u8e40\u8e39\u8e35\u8e3d\u8e31\u8e49\u8e41\u8e42\u8e51\u8e52\u8e4a\u8e70\u8e76\u8e7c\u8e6f\u8e74\u8e85\u8e8f\u8e94\u8e90\u8e9c\u8e9e\u8c78\u8c82\u8c8a\u8c85\u8c98\u8c94\u659b\u89d6\u89de\u89da\u89dc"],["f640","\u9bdc",62],["f680","\u9c1b",32,"\u89e5\u89eb\u89ef\u8a3e\u8b26\u9753\u96e9\u96f3\u96ef\u9706\u9701\u9708\u970f\u970e\u972a\u972d\u9730\u973e\u9f80\u9f83\u9f85",5,"\u9f8c\u9efe\u9f0b\u9f0d\u96b9\u96bc\u96bd\u96ce\u96d2\u77bf\u96e0\u928e\u92ae\u92c8\u933e\u936a\u93ca\u938f\u943e\u946b\u9c7f\u9c82\u9c85\u9c86\u9c87\u9c88\u7a23\u9c8b\u9c8e\u9c90\u9c91\u9c92\u9c94\u9c95\u9c9a\u9c9b\u9c9e",5,"\u9ca5",4,"\u9cab\u9cad\u9cae\u9cb0",7,"\u9cba\u9cbb\u9cbc\u9cbd\u9cc4\u9cc5\u9cc6\u9cc7\u9cca\u9ccb"],["f740","\u9c3c",62],["f780","\u9c7b\u9c7d\u9c7e\u9c80\u9c83\u9c84\u9c89\u9c8a\u9c8c\u9c8f\u9c93\u9c96\u9c97\u9c98\u9c99\u9c9d\u9caa\u9cac\u9caf\u9cb9\u9cbe",4,"\u9cc8\u9cc9\u9cd1\u9cd2\u9cda\u9cdb\u9ce0\u9ce1\u9ccc",4,"\u9cd3\u9cd4\u9cd5\u9cd7\u9cd8\u9cd9\u9cdc\u9cdd\u9cdf\u9ce2\u977c\u9785\u9791\u9792\u9794\u97af\u97ab\u97a3\u97b2\u97b4\u9ab1\u9ab0\u9ab7\u9e58\u9ab6\u9aba\u9abc\u9ac1\u9ac0\u9ac5\u9ac2\u9acb\u9acc\u9ad1\u9b45\u9b43\u9b47\u9b49\u9b48\u9b4d\u9b51\u98e8\u990d\u992e\u9955\u9954\u9adf\u9ae1\u9ae6\u9aef\u9aeb\u9afb\u9aed\u9af9\u9b08\u9b0f\u9b13\u9b1f\u9b23\u9ebd\u9ebe\u7e3b\u9e82\u9e87\u9e88\u9e8b\u9e92\u93d6\u9e9d\u9e9f\u9edb\u9edc\u9edd\u9ee0\u9edf\u9ee2\u9ee9\u9ee7\u9ee5\u9eea\u9eef\u9f22\u9f2c\u9f2f\u9f39\u9f37\u9f3d\u9f3e\u9f44"],["f840","\u9ce3",62],["f880","\u9d22",32],["f940","\u9d43",62],["f980","\u9d82",32],["fa40","\u9da3",62],["fa80","\u9de2",32],["fb40","\u9e03",27,"\u9e24\u9e27\u9e2e\u9e30\u9e34\u9e3b\u9e3c\u9e40\u9e4d\u9e50\u9e52\u9e53\u9e54\u9e56\u9e59\u9e5d\u9e5f\u9e60\u9e61\u9e62\u9e65\u9e6e\u9e6f\u9e72\u9e74",9,"\u9e80"],["fb80","\u9e81\u9e83\u9e84\u9e85\u9e86\u9e89\u9e8a\u9e8c",5,"\u9e94",8,"\u9e9e\u9ea0",5,"\u9ea7\u9ea8\u9ea9\u9eaa"],["fc40","\u9eab",8,"\u9eb5\u9eb6\u9eb7\u9eb9\u9eba\u9ebc\u9ebf",4,"\u9ec5\u9ec6\u9ec7\u9ec8\u9eca\u9ecb\u9ecc\u9ed0\u9ed2\u9ed3\u9ed5\u9ed6\u9ed7\u9ed9\u9eda\u9ede\u9ee1\u9ee3\u9ee4\u9ee6\u9ee8\u9eeb\u9eec\u9eed\u9eee\u9ef0",8,"\u9efa\u9efd\u9eff",6],["fc80","\u9f06",4,"\u9f0c\u9f0f\u9f11\u9f12\u9f14\u9f15\u9f16\u9f18\u9f1a",5,"\u9f21\u9f23",8,"\u9f2d\u9f2e\u9f30\u9f31"],["fd40","\u9f32",4,"\u9f38\u9f3a\u9f3c\u9f3f",4,"\u9f45",10,"\u9f52",38],["fd80","\u9f79",5,"\u9f81\u9f82\u9f8d",11,"\u9f9c\u9f9d\u9f9e\u9fa1",4,"\uf92c\uf979\uf995\uf9e7\uf9f1"],["fe40","\ufa0c\ufa0d\ufa0e\ufa0f\ufa11\ufa13\ufa14\ufa18\ufa1f\ufa20\ufa21\ufa23\ufa24\ufa27\ufa28\ufa29"]]')},21166:function(Y){"use strict";Y.exports=JSON.parse('[["0","\\u0000",127],["8141","\uac02\uac03\uac05\uac06\uac0b",4,"\uac18\uac1e\uac1f\uac21\uac22\uac23\uac25",6,"\uac2e\uac32\uac33\uac34"],["8161","\uac35\uac36\uac37\uac3a\uac3b\uac3d\uac3e\uac3f\uac41",9,"\uac4c\uac4e",5,"\uac55"],["8181","\uac56\uac57\uac59\uac5a\uac5b\uac5d",18,"\uac72\uac73\uac75\uac76\uac79\uac7b",4,"\uac82\uac87\uac88\uac8d\uac8e\uac8f\uac91\uac92\uac93\uac95",6,"\uac9e\uaca2",5,"\uacab\uacad\uacae\uacb1",6,"\uacba\uacbe\uacbf\uacc0\uacc2\uacc3\uacc5\uacc6\uacc7\uacc9\uacca\uaccb\uaccd",7,"\uacd6\uacd8",7,"\uace2\uace3\uace5\uace6\uace9\uaceb\uaced\uacee\uacf2\uacf4\uacf7",4,"\uacfe\uacff\uad01\uad02\uad03\uad05\uad07",4,"\uad0e\uad10\uad12\uad13"],["8241","\uad14\uad15\uad16\uad17\uad19\uad1a\uad1b\uad1d\uad1e\uad1f\uad21",7,"\uad2a\uad2b\uad2e",5],["8261","\uad36\uad37\uad39\uad3a\uad3b\uad3d",6,"\uad46\uad48\uad4a",5,"\uad51\uad52\uad53\uad55\uad56\uad57"],["8281","\uad59",7,"\uad62\uad64",7,"\uad6e\uad6f\uad71\uad72\uad77\uad78\uad79\uad7a\uad7e\uad80\uad83",4,"\uad8a\uad8b\uad8d\uad8e\uad8f\uad91",10,"\uad9e",5,"\uada5",17,"\uadb8",7,"\uadc2\uadc3\uadc5\uadc6\uadc7\uadc9",6,"\uadd2\uadd4",7,"\uaddd\uadde\uaddf\uade1\uade2\uade3\uade5",18],["8341","\uadfa\uadfb\uadfd\uadfe\uae02",5,"\uae0a\uae0c\uae0e",5,"\uae15",7],["8361","\uae1d",18,"\uae32\uae33\uae35\uae36\uae39\uae3b\uae3c"],["8381","\uae3d\uae3e\uae3f\uae42\uae44\uae47\uae48\uae49\uae4b\uae4f\uae51\uae52\uae53\uae55\uae57",4,"\uae5e\uae62\uae63\uae64\uae66\uae67\uae6a\uae6b\uae6d\uae6e\uae6f\uae71",6,"\uae7a\uae7e",5,"\uae86",5,"\uae8d",46,"\uaebf\uaec1\uaec2\uaec3\uaec5",6,"\uaece\uaed2",5,"\uaeda\uaedb\uaedd",8],["8441","\uaee6\uaee7\uaee9\uaeea\uaeec\uaeee",5,"\uaef5\uaef6\uaef7\uaef9\uaefa\uaefb\uaefd",8],["8461","\uaf06\uaf09\uaf0a\uaf0b\uaf0c\uaf0e\uaf0f\uaf11",18],["8481","\uaf24",7,"\uaf2e\uaf2f\uaf31\uaf33\uaf35",6,"\uaf3e\uaf40\uaf44\uaf45\uaf46\uaf47\uaf4a",5,"\uaf51",10,"\uaf5e",5,"\uaf66",18,"\uaf7a",5,"\uaf81\uaf82\uaf83\uaf85\uaf86\uaf87\uaf89",6,"\uaf92\uaf93\uaf94\uaf96",5,"\uaf9d",26,"\uafba\uafbb\uafbd\uafbe"],["8541","\uafbf\uafc1",5,"\uafca\uafcc\uafcf",4,"\uafd5",6,"\uafdd",4],["8561","\uafe2",5,"\uafea",5,"\uaff2\uaff3\uaff5\uaff6\uaff7\uaff9",6,"\ub002\ub003"],["8581","\ub005",6,"\ub00d\ub00e\ub00f\ub011\ub012\ub013\ub015",6,"\ub01e",9,"\ub029",26,"\ub046\ub047\ub049\ub04b\ub04d\ub04f\ub050\ub051\ub052\ub056\ub058\ub05a\ub05b\ub05c\ub05e",29,"\ub07e\ub07f\ub081\ub082\ub083\ub085",6,"\ub08e\ub090\ub092",5,"\ub09b\ub09d\ub09e\ub0a3\ub0a4"],["8641","\ub0a5\ub0a6\ub0a7\ub0aa\ub0b0\ub0b2\ub0b6\ub0b7\ub0b9\ub0ba\ub0bb\ub0bd",6,"\ub0c6\ub0ca",5,"\ub0d2"],["8661","\ub0d3\ub0d5\ub0d6\ub0d7\ub0d9",6,"\ub0e1\ub0e2\ub0e3\ub0e4\ub0e6",10],["8681","\ub0f1",22,"\ub10a\ub10d\ub10e\ub10f\ub111\ub114\ub115\ub116\ub117\ub11a\ub11e",4,"\ub126\ub127\ub129\ub12a\ub12b\ub12d",6,"\ub136\ub13a",5,"\ub142\ub143\ub145\ub146\ub147\ub149",6,"\ub152\ub153\ub156\ub157\ub159\ub15a\ub15b\ub15d\ub15e\ub15f\ub161",22,"\ub17a\ub17b\ub17d\ub17e\ub17f\ub181\ub183",4,"\ub18a\ub18c\ub18e\ub18f\ub190\ub191\ub195\ub196\ub197\ub199\ub19a\ub19b\ub19d"],["8741","\ub19e",9,"\ub1a9",15],["8761","\ub1b9",18,"\ub1cd\ub1ce\ub1cf\ub1d1\ub1d2\ub1d3\ub1d5"],["8781","\ub1d6",5,"\ub1de\ub1e0",7,"\ub1ea\ub1eb\ub1ed\ub1ee\ub1ef\ub1f1",7,"\ub1fa\ub1fc\ub1fe",5,"\ub206\ub207\ub209\ub20a\ub20d",6,"\ub216\ub218\ub21a",5,"\ub221",18,"\ub235",6,"\ub23d",26,"\ub259\ub25a\ub25b\ub25d\ub25e\ub25f\ub261",6,"\ub26a",4],["8841","\ub26f",4,"\ub276",5,"\ub27d",6,"\ub286\ub287\ub288\ub28a",4],["8861","\ub28f\ub292\ub293\ub295\ub296\ub297\ub29b",4,"\ub2a2\ub2a4\ub2a7\ub2a8\ub2a9\ub2ab\ub2ad\ub2ae\ub2af\ub2b1\ub2b2\ub2b3\ub2b5\ub2b6\ub2b7"],["8881","\ub2b8",15,"\ub2ca\ub2cb\ub2cd\ub2ce\ub2cf\ub2d1\ub2d3",4,"\ub2da\ub2dc\ub2de\ub2df\ub2e0\ub2e1\ub2e3\ub2e7\ub2e9\ub2ea\ub2f0\ub2f1\ub2f2\ub2f6\ub2fc\ub2fd\ub2fe\ub302\ub303\ub305\ub306\ub307\ub309",6,"\ub312\ub316",5,"\ub31d",54,"\ub357\ub359\ub35a\ub35d\ub360\ub361\ub362\ub363"],["8941","\ub366\ub368\ub36a\ub36c\ub36d\ub36f\ub372\ub373\ub375\ub376\ub377\ub379",6,"\ub382\ub386",5,"\ub38d"],["8961","\ub38e\ub38f\ub391\ub392\ub393\ub395",10,"\ub3a2",5,"\ub3a9\ub3aa\ub3ab\ub3ad"],["8981","\ub3ae",21,"\ub3c6\ub3c7\ub3c9\ub3ca\ub3cd\ub3cf\ub3d1\ub3d2\ub3d3\ub3d6\ub3d8\ub3da\ub3dc\ub3de\ub3df\ub3e1\ub3e2\ub3e3\ub3e5\ub3e6\ub3e7\ub3e9",18,"\ub3fd",18,"\ub411",6,"\ub419\ub41a\ub41b\ub41d\ub41e\ub41f\ub421",6,"\ub42a\ub42c",7,"\ub435",15],["8a41","\ub445",10,"\ub452\ub453\ub455\ub456\ub457\ub459",6,"\ub462\ub464\ub466"],["8a61","\ub467",4,"\ub46d",18,"\ub481\ub482"],["8a81","\ub483",4,"\ub489",19,"\ub49e",5,"\ub4a5\ub4a6\ub4a7\ub4a9\ub4aa\ub4ab\ub4ad",7,"\ub4b6\ub4b8\ub4ba",5,"\ub4c1\ub4c2\ub4c3\ub4c5\ub4c6\ub4c7\ub4c9",6,"\ub4d1\ub4d2\ub4d3\ub4d4\ub4d6",5,"\ub4de\ub4df\ub4e1\ub4e2\ub4e5\ub4e7",4,"\ub4ee\ub4f0\ub4f2",5,"\ub4f9",26,"\ub516\ub517\ub519\ub51a\ub51d"],["8b41","\ub51e",5,"\ub526\ub52b",4,"\ub532\ub533\ub535\ub536\ub537\ub539",6,"\ub542\ub546"],["8b61","\ub547\ub548\ub549\ub54a\ub54e\ub54f\ub551\ub552\ub553\ub555",6,"\ub55e\ub562",8],["8b81","\ub56b",52,"\ub5a2\ub5a3\ub5a5\ub5a6\ub5a7\ub5a9\ub5ac\ub5ad\ub5ae\ub5af\ub5b2\ub5b6",4,"\ub5be\ub5bf\ub5c1\ub5c2\ub5c3\ub5c5",6,"\ub5ce\ub5d2",5,"\ub5d9",18,"\ub5ed",18],["8c41","\ub600",15,"\ub612\ub613\ub615\ub616\ub617\ub619",4],["8c61","\ub61e",6,"\ub626",5,"\ub62d",6,"\ub635",5],["8c81","\ub63b",12,"\ub649",26,"\ub665\ub666\ub667\ub669",50,"\ub69e\ub69f\ub6a1\ub6a2\ub6a3\ub6a5",5,"\ub6ad\ub6ae\ub6af\ub6b0\ub6b2",16],["8d41","\ub6c3",16,"\ub6d5",8],["8d61","\ub6de",17,"\ub6f1\ub6f2\ub6f3\ub6f5\ub6f6\ub6f7\ub6f9\ub6fa"],["8d81","\ub6fb",4,"\ub702\ub703\ub704\ub706",33,"\ub72a\ub72b\ub72d\ub72e\ub731",6,"\ub73a\ub73c",7,"\ub745\ub746\ub747\ub749\ub74a\ub74b\ub74d",6,"\ub756",9,"\ub761\ub762\ub763\ub765\ub766\ub767\ub769",6,"\ub772\ub774\ub776",5,"\ub77e\ub77f\ub781\ub782\ub783\ub785",6,"\ub78e\ub793\ub794\ub795\ub79a\ub79b\ub79d\ub79e"],["8e41","\ub79f\ub7a1",6,"\ub7aa\ub7ae",5,"\ub7b6\ub7b7\ub7b9",8],["8e61","\ub7c2",4,"\ub7c8\ub7ca",19],["8e81","\ub7de",13,"\ub7ee\ub7ef\ub7f1\ub7f2\ub7f3\ub7f5",6,"\ub7fe\ub802",4,"\ub80a\ub80b\ub80d\ub80e\ub80f\ub811",6,"\ub81a\ub81c\ub81e",5,"\ub826\ub827\ub829\ub82a\ub82b\ub82d",6,"\ub836\ub83a",5,"\ub841\ub842\ub843\ub845",11,"\ub852\ub854",7,"\ub85e\ub85f\ub861\ub862\ub863\ub865",6,"\ub86e\ub870\ub872",5,"\ub879\ub87a\ub87b\ub87d",7],["8f41","\ub885",7,"\ub88e",17],["8f61","\ub8a0",7,"\ub8a9",6,"\ub8b1\ub8b2\ub8b3\ub8b5\ub8b6\ub8b7\ub8b9",4],["8f81","\ub8be\ub8bf\ub8c2\ub8c4\ub8c6",5,"\ub8cd\ub8ce\ub8cf\ub8d1\ub8d2\ub8d3\ub8d5",7,"\ub8de\ub8e0\ub8e2",5,"\ub8ea\ub8eb\ub8ed\ub8ee\ub8ef\ub8f1",6,"\ub8fa\ub8fc\ub8fe",5,"\ub905",18,"\ub919",6,"\ub921",26,"\ub93e\ub93f\ub941\ub942\ub943\ub945",6,"\ub94d\ub94e\ub950\ub952",5],["9041","\ub95a\ub95b\ub95d\ub95e\ub95f\ub961",6,"\ub96a\ub96c\ub96e",5,"\ub976\ub977\ub979\ub97a\ub97b\ub97d"],["9061","\ub97e",5,"\ub986\ub988\ub98b\ub98c\ub98f",15],["9081","\ub99f",12,"\ub9ae\ub9af\ub9b1\ub9b2\ub9b3\ub9b5",6,"\ub9be\ub9c0\ub9c2",5,"\ub9ca\ub9cb\ub9cd\ub9d3",4,"\ub9da\ub9dc\ub9df\ub9e0\ub9e2\ub9e6\ub9e7\ub9e9\ub9ea\ub9eb\ub9ed",6,"\ub9f6\ub9fb",4,"\uba02",5,"\uba09",11,"\uba16",33,"\uba3a\uba3b\uba3d\uba3e\uba3f\uba41\uba43\uba44\uba45\uba46"],["9141","\uba47\uba4a\uba4c\uba4f\uba50\uba51\uba52\uba56\uba57\uba59\uba5a\uba5b\uba5d",6,"\uba66\uba6a",5],["9161","\uba72\uba73\uba75\uba76\uba77\uba79",9,"\uba86\uba88\uba89\uba8a\uba8b\uba8d",5],["9181","\uba93",20,"\ubaaa\ubaad\ubaae\ubaaf\ubab1\ubab3",4,"\ubaba\ubabc\ubabe",5,"\ubac5\ubac6\ubac7\ubac9",14,"\ubada",33,"\ubafd\ubafe\ubaff\ubb01\ubb02\ubb03\ubb05",7,"\ubb0e\ubb10\ubb12",5,"\ubb19\ubb1a\ubb1b\ubb1d\ubb1e\ubb1f\ubb21",6],["9241","\ubb28\ubb2a\ubb2c",7,"\ubb37\ubb39\ubb3a\ubb3f",4,"\ubb46\ubb48\ubb4a\ubb4b\ubb4c\ubb4e\ubb51\ubb52"],["9261","\ubb53\ubb55\ubb56\ubb57\ubb59",7,"\ubb62\ubb64",7,"\ubb6d",4],["9281","\ubb72",21,"\ubb89\ubb8a\ubb8b\ubb8d\ubb8e\ubb8f\ubb91",18,"\ubba5\ubba6\ubba7\ubba9\ubbaa\ubbab\ubbad",6,"\ubbb5\ubbb6\ubbb8",7,"\ubbc1\ubbc2\ubbc3\ubbc5\ubbc6\ubbc7\ubbc9",6,"\ubbd1\ubbd2\ubbd4",35,"\ubbfa\ubbfb\ubbfd\ubbfe\ubc01"],["9341","\ubc03",4,"\ubc0a\ubc0e\ubc10\ubc12\ubc13\ubc19\ubc1a\ubc20\ubc21\ubc22\ubc23\ubc26\ubc28\ubc2a\ubc2b\ubc2c\ubc2e\ubc2f\ubc32\ubc33\ubc35"],["9361","\ubc36\ubc37\ubc39",6,"\ubc42\ubc46\ubc47\ubc48\ubc4a\ubc4b\ubc4e\ubc4f\ubc51",8],["9381","\ubc5a\ubc5b\ubc5c\ubc5e",37,"\ubc86\ubc87\ubc89\ubc8a\ubc8d\ubc8f",4,"\ubc96\ubc98\ubc9b",4,"\ubca2\ubca3\ubca5\ubca6\ubca9",6,"\ubcb2\ubcb6",5,"\ubcbe\ubcbf\ubcc1\ubcc2\ubcc3\ubcc5",7,"\ubcce\ubcd2\ubcd3\ubcd4\ubcd6\ubcd7\ubcd9\ubcda\ubcdb\ubcdd",22,"\ubcf7\ubcf9\ubcfa\ubcfb\ubcfd"],["9441","\ubcfe",5,"\ubd06\ubd08\ubd0a",5,"\ubd11\ubd12\ubd13\ubd15",8],["9461","\ubd1e",5,"\ubd25",6,"\ubd2d",12],["9481","\ubd3a",5,"\ubd41",6,"\ubd4a\ubd4b\ubd4d\ubd4e\ubd4f\ubd51",6,"\ubd5a",9,"\ubd65\ubd66\ubd67\ubd69",22,"\ubd82\ubd83\ubd85\ubd86\ubd8b",4,"\ubd92\ubd94\ubd96\ubd97\ubd98\ubd9b\ubd9d",6,"\ubda5",10,"\ubdb1",6,"\ubdb9",24],["9541","\ubdd2\ubdd3\ubdd6\ubdd7\ubdd9\ubdda\ubddb\ubddd",11,"\ubdea",5,"\ubdf1"],["9561","\ubdf2\ubdf3\ubdf5\ubdf6\ubdf7\ubdf9",6,"\ube01\ube02\ube04\ube06",5,"\ube0e\ube0f\ube11\ube12\ube13"],["9581","\ube15",6,"\ube1e\ube20",35,"\ube46\ube47\ube49\ube4a\ube4b\ube4d\ube4f",4,"\ube56\ube58\ube5c\ube5d\ube5e\ube5f\ube62\ube63\ube65\ube66\ube67\ube69\ube6b",4,"\ube72\ube76",4,"\ube7e\ube7f\ube81\ube82\ube83\ube85",6,"\ube8e\ube92",5,"\ube9a",13,"\ubea9",14],["9641","\ubeb8",23,"\ubed2\ubed3"],["9661","\ubed5\ubed6\ubed9",6,"\ubee1\ubee2\ubee6",5,"\ubeed",8],["9681","\ubef6",10,"\ubf02",5,"\ubf0a",13,"\ubf1a\ubf1e",33,"\ubf42\ubf43\ubf45\ubf46\ubf47\ubf49",6,"\ubf52\ubf53\ubf54\ubf56",44],["9741","\ubf83",16,"\ubf95",8],["9761","\ubf9e",17,"\ubfb1",7],["9781","\ubfb9",11,"\ubfc6",5,"\ubfce\ubfcf\ubfd1\ubfd2\ubfd3\ubfd5",6,"\ubfdd\ubfde\ubfe0\ubfe2",89,"\uc03d\uc03e\uc03f"],["9841","\uc040",16,"\uc052",5,"\uc059\uc05a\uc05b"],["9861","\uc05d\uc05e\uc05f\uc061",6,"\uc06a",15],["9881","\uc07a",21,"\uc092\uc093\uc095\uc096\uc097\uc099",6,"\uc0a2\uc0a4\uc0a6",5,"\uc0ae\uc0b1\uc0b2\uc0b7",4,"\uc0be\uc0c2\uc0c3\uc0c4\uc0c6\uc0c7\uc0ca\uc0cb\uc0cd\uc0ce\uc0cf\uc0d1",6,"\uc0da\uc0de",5,"\uc0e6\uc0e7\uc0e9\uc0ea\uc0eb\uc0ed",6,"\uc0f6\uc0f8\uc0fa",5,"\uc101\uc102\uc103\uc105\uc106\uc107\uc109",6,"\uc111\uc112\uc113\uc114\uc116",5,"\uc121\uc122\uc125\uc128\uc129\uc12a\uc12b\uc12e"],["9941","\uc132\uc133\uc134\uc135\uc137\uc13a\uc13b\uc13d\uc13e\uc13f\uc141",6,"\uc14a\uc14e",5,"\uc156\uc157"],["9961","\uc159\uc15a\uc15b\uc15d",6,"\uc166\uc16a",5,"\uc171\uc172\uc173\uc175\uc176\uc177\uc179\uc17a\uc17b"],["9981","\uc17c",8,"\uc186",5,"\uc18f\uc191\uc192\uc193\uc195\uc197",4,"\uc19e\uc1a0\uc1a2\uc1a3\uc1a4\uc1a6\uc1a7\uc1aa\uc1ab\uc1ad\uc1ae\uc1af\uc1b1",11,"\uc1be",5,"\uc1c5\uc1c6\uc1c7\uc1c9\uc1ca\uc1cb\uc1cd",6,"\uc1d5\uc1d6\uc1d9",6,"\uc1e1\uc1e2\uc1e3\uc1e5\uc1e6\uc1e7\uc1e9",6,"\uc1f2\uc1f4",7,"\uc1fe\uc1ff\uc201\uc202\uc203\uc205",6,"\uc20e\uc210\uc212",5,"\uc21a\uc21b\uc21d\uc21e\uc221\uc222\uc223"],["9a41","\uc224\uc225\uc226\uc227\uc22a\uc22c\uc22e\uc230\uc233\uc235",16],["9a61","\uc246\uc247\uc249",6,"\uc252\uc253\uc255\uc256\uc257\uc259",6,"\uc261\uc262\uc263\uc264\uc266"],["9a81","\uc267",4,"\uc26e\uc26f\uc271\uc272\uc273\uc275",6,"\uc27e\uc280\uc282",5,"\uc28a",5,"\uc291",6,"\uc299\uc29a\uc29c\uc29e",5,"\uc2a6\uc2a7\uc2a9\uc2aa\uc2ab\uc2ae",5,"\uc2b6\uc2b8\uc2ba",33,"\uc2de\uc2df\uc2e1\uc2e2\uc2e5",5,"\uc2ee\uc2f0\uc2f2\uc2f3\uc2f4\uc2f5\uc2f7\uc2fa\uc2fd\uc2fe\uc2ff\uc301",6,"\uc30a\uc30b\uc30e\uc30f"],["9b41","\uc310\uc311\uc312\uc316\uc317\uc319\uc31a\uc31b\uc31d",6,"\uc326\uc327\uc32a",8],["9b61","\uc333",17,"\uc346",7],["9b81","\uc34e",25,"\uc36a\uc36b\uc36d\uc36e\uc36f\uc371\uc373",4,"\uc37a\uc37b\uc37e",5,"\uc385\uc386\uc387\uc389\uc38a\uc38b\uc38d",50,"\uc3c1",22,"\uc3da"],["9c41","\uc3db\uc3dd\uc3de\uc3e1\uc3e3",4,"\uc3ea\uc3eb\uc3ec\uc3ee",5,"\uc3f6\uc3f7\uc3f9",5],["9c61","\uc3ff",8,"\uc409",6,"\uc411",9],["9c81","\uc41b",8,"\uc425",6,"\uc42d\uc42e\uc42f\uc431\uc432\uc433\uc435",6,"\uc43e",9,"\uc449",26,"\uc466\uc467\uc469\uc46a\uc46b\uc46d",6,"\uc476\uc477\uc478\uc47a",5,"\uc481",18,"\uc495",6,"\uc49d",12],["9d41","\uc4aa",13,"\uc4b9\uc4ba\uc4bb\uc4bd",8],["9d61","\uc4c6",25],["9d81","\uc4e0",8,"\uc4ea",5,"\uc4f2\uc4f3\uc4f5\uc4f6\uc4f7\uc4f9\uc4fb\uc4fc\uc4fd\uc4fe\uc502",9,"\uc50d\uc50e\uc50f\uc511\uc512\uc513\uc515",6,"\uc51d",10,"\uc52a\uc52b\uc52d\uc52e\uc52f\uc531",6,"\uc53a\uc53c\uc53e",5,"\uc546\uc547\uc54b\uc54f\uc550\uc551\uc552\uc556\uc55a\uc55b\uc55c\uc55f\uc562\uc563\uc565\uc566\uc567\uc569",6,"\uc572\uc576",5,"\uc57e\uc57f\uc581\uc582\uc583\uc585\uc586\uc588\uc589\uc58a\uc58b\uc58e\uc590\uc592\uc593\uc594"],["9e41","\uc596\uc599\uc59a\uc59b\uc59d\uc59e\uc59f\uc5a1",7,"\uc5aa",9,"\uc5b6"],["9e61","\uc5b7\uc5ba\uc5bf",4,"\uc5cb\uc5cd\uc5cf\uc5d2\uc5d3\uc5d5\uc5d6\uc5d7\uc5d9",6,"\uc5e2\uc5e4\uc5e6\uc5e7"],["9e81","\uc5e8\uc5e9\uc5ea\uc5eb\uc5ef\uc5f1\uc5f2\uc5f3\uc5f5\uc5f8\uc5f9\uc5fa\uc5fb\uc602\uc603\uc604\uc609\uc60a\uc60b\uc60d\uc60e\uc60f\uc611",6,"\uc61a\uc61d",6,"\uc626\uc627\uc629\uc62a\uc62b\uc62f\uc631\uc632\uc636\uc638\uc63a\uc63c\uc63d\uc63e\uc63f\uc642\uc643\uc645\uc646\uc647\uc649",6,"\uc652\uc656",5,"\uc65e\uc65f\uc661",10,"\uc66d\uc66e\uc670\uc672",5,"\uc67a\uc67b\uc67d\uc67e\uc67f\uc681",6,"\uc68a\uc68c\uc68e",5,"\uc696\uc697\uc699\uc69a\uc69b\uc69d",6,"\uc6a6"],["9f41","\uc6a8\uc6aa",5,"\uc6b2\uc6b3\uc6b5\uc6b6\uc6b7\uc6bb",4,"\uc6c2\uc6c4\uc6c6",5,"\uc6ce"],["9f61","\uc6cf\uc6d1\uc6d2\uc6d3\uc6d5",6,"\uc6de\uc6df\uc6e2",5,"\uc6ea\uc6eb\uc6ed\uc6ee\uc6ef\uc6f1\uc6f2"],["9f81","\uc6f3",4,"\uc6fa\uc6fb\uc6fc\uc6fe",5,"\uc706\uc707\uc709\uc70a\uc70b\uc70d",6,"\uc716\uc718\uc71a",5,"\uc722\uc723\uc725\uc726\uc727\uc729",6,"\uc732\uc734\uc736\uc738\uc739\uc73a\uc73b\uc73e\uc73f\uc741\uc742\uc743\uc745",4,"\uc74b\uc74e\uc750\uc759\uc75a\uc75b\uc75d\uc75e\uc75f\uc761",6,"\uc769\uc76a\uc76c",7,"\uc776\uc777\uc779\uc77a\uc77b\uc77f\uc780\uc781\uc782\uc786\uc78b\uc78c\uc78d\uc78f\uc792\uc793\uc795\uc799\uc79b",4,"\uc7a2\uc7a7",4,"\uc7ae\uc7af\uc7b1\uc7b2\uc7b3\uc7b5\uc7b6\uc7b7"],["a041","\uc7b8\uc7b9\uc7ba\uc7bb\uc7be\uc7c2",5,"\uc7ca\uc7cb\uc7cd\uc7cf\uc7d1",6,"\uc7d9\uc7da\uc7db\uc7dc"],["a061","\uc7de",5,"\uc7e5\uc7e6\uc7e7\uc7e9\uc7ea\uc7eb\uc7ed",13],["a081","\uc7fb",4,"\uc802\uc803\uc805\uc806\uc807\uc809\uc80b",4,"\uc812\uc814\uc817",4,"\uc81e\uc81f\uc821\uc822\uc823\uc825",6,"\uc82e\uc830\uc832",5,"\uc839\uc83a\uc83b\uc83d\uc83e\uc83f\uc841",6,"\uc84a\uc84b\uc84e",5,"\uc855",26,"\uc872\uc873\uc875\uc876\uc877\uc879\uc87b",4,"\uc882\uc884\uc888\uc889\uc88a\uc88e",5,"\uc895",7,"\uc89e\uc8a0\uc8a2\uc8a3\uc8a4"],["a141","\uc8a5\uc8a6\uc8a7\uc8a9",18,"\uc8be\uc8bf\uc8c0\uc8c1"],["a161","\uc8c2\uc8c3\uc8c5\uc8c6\uc8c7\uc8c9\uc8ca\uc8cb\uc8cd",6,"\uc8d6\uc8d8\uc8da",5,"\uc8e2\uc8e3\uc8e5"],["a181","\uc8e6",14,"\uc8f6",5,"\uc8fe\uc8ff\uc901\uc902\uc903\uc907",4,"\uc90e\u3000\u3001\u3002\xb7\u2025\u2026\xa8\u3003\xad\u2015\u2225\uff3c\u223c\u2018\u2019\u201c\u201d\u3014\u3015\u3008",9,"\xb1\xd7\xf7\u2260\u2264\u2265\u221e\u2234\xb0\u2032\u2033\u2103\u212b\uffe0\uffe1\uffe5\u2642\u2640\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\xa7\u203b\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u2192\u2190\u2191\u2193\u2194\u3013\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229\u2227\u2228\uffe2"],["a241","\uc910\uc912",5,"\uc919",18],["a261","\uc92d",6,"\uc935",18],["a281","\uc948",7,"\uc952\uc953\uc955\uc956\uc957\uc959",6,"\uc962\uc964",7,"\uc96d\uc96e\uc96f\u21d2\u21d4\u2200\u2203\xb4\uff5e\u02c7\u02d8\u02dd\u02da\u02d9\xb8\u02db\xa1\xbf\u02d0\u222e\u2211\u220f\xa4\u2109\u2030\u25c1\u25c0\u25b7\u25b6\u2664\u2660\u2661\u2665\u2667\u2663\u2299\u25c8\u25a3\u25d0\u25d1\u2592\u25a4\u25a5\u25a8\u25a7\u25a6\u25a9\u2668\u260f\u260e\u261c\u261e\xb6\u2020\u2021\u2195\u2197\u2199\u2196\u2198\u266d\u2669\u266a\u266c\u327f\u321c\u2116\u33c7\u2122\u33c2\u33d8\u2121\u20ac\xae"],["a341","\uc971\uc972\uc973\uc975",6,"\uc97d",10,"\uc98a\uc98b\uc98d\uc98e\uc98f"],["a361","\uc991",6,"\uc99a\uc99c\uc99e",16],["a381","\uc9af",16,"\uc9c2\uc9c3\uc9c5\uc9c6\uc9c9\uc9cb",4,"\uc9d2\uc9d4\uc9d7\uc9d8\uc9db\uff01",58,"\uffe6\uff3d",32,"\uffe3"],["a441","\uc9de\uc9df\uc9e1\uc9e3\uc9e5\uc9e6\uc9e8\uc9e9\uc9ea\uc9eb\uc9ee\uc9f2",5,"\uc9fa\uc9fb\uc9fd\uc9fe\uc9ff\uca01\uca02\uca03\uca04"],["a461","\uca05\uca06\uca07\uca0a\uca0e",5,"\uca15\uca16\uca17\uca19",12],["a481","\uca26\uca27\uca28\uca2a",28,"\u3131",93],["a541","\uca47",4,"\uca4e\uca4f\uca51\uca52\uca53\uca55",6,"\uca5e\uca62",5,"\uca69\uca6a"],["a561","\uca6b",17,"\uca7e",5,"\uca85\uca86"],["a581","\uca87",16,"\uca99",14,"\u2170",9],["a5b0","\u2160",9],["a5c1","\u0391",16,"\u03a3",6],["a5e1","\u03b1",16,"\u03c3",6],["a641","\ucaa8",19,"\ucabe\ucabf\ucac1\ucac2\ucac3\ucac5"],["a661","\ucac6",5,"\ucace\ucad0\ucad2\ucad4\ucad5\ucad6\ucad7\ucada",5,"\ucae1",6],["a681","\ucae8\ucae9\ucaea\ucaeb\ucaed",6,"\ucaf5",18,"\ucb09\ucb0a\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542\u2512\u2511\u251a\u2519\u2516\u2515\u250e\u250d\u251e\u251f\u2521\u2522\u2526\u2527\u2529\u252a\u252d\u252e\u2531\u2532\u2535\u2536\u2539\u253a\u253d\u253e\u2540\u2541\u2543",7],["a741","\ucb0b",4,"\ucb11\ucb12\ucb13\ucb15\ucb16\ucb17\ucb19",6,"\ucb22",7],["a761","\ucb2a",22,"\ucb42\ucb43\ucb44"],["a781","\ucb45\ucb46\ucb47\ucb4a\ucb4b\ucb4d\ucb4e\ucb4f\ucb51",6,"\ucb5a\ucb5b\ucb5c\ucb5e",5,"\ucb65",7,"\u3395\u3396\u3397\u2113\u3398\u33c4\u33a3\u33a4\u33a5\u33a6\u3399",9,"\u33ca\u338d\u338e\u338f\u33cf\u3388\u3389\u33c8\u33a7\u33a8\u33b0",9,"\u3380",4,"\u33ba",5,"\u3390",4,"\u2126\u33c0\u33c1\u338a\u338b\u338c\u33d6\u33c5\u33ad\u33ae\u33af\u33db\u33a9\u33aa\u33ab\u33ac\u33dd\u33d0\u33d3\u33c3\u33c9\u33dc\u33c6"],["a841","\ucb6d",10,"\ucb7a",14],["a861","\ucb89",18,"\ucb9d",6],["a881","\ucba4",19,"\ucbb9",11,"\xc6\xd0\xaa\u0126"],["a8a6","\u0132"],["a8a8","\u013f\u0141\xd8\u0152\xba\xde\u0166\u014a"],["a8b1","\u3260",27,"\u24d0",25,"\u2460",14,"\xbd\u2153\u2154\xbc\xbe\u215b\u215c\u215d\u215e"],["a941","\ucbc5",14,"\ucbd5",10],["a961","\ucbe0\ucbe1\ucbe2\ucbe3\ucbe5\ucbe6\ucbe8\ucbea",18],["a981","\ucbfd",14,"\ucc0e\ucc0f\ucc11\ucc12\ucc13\ucc15",6,"\ucc1e\ucc1f\ucc20\ucc23\ucc24\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0140\u0142\xf8\u0153\xdf\xfe\u0167\u014b\u0149\u3200",27,"\u249c",25,"\u2474",14,"\xb9\xb2\xb3\u2074\u207f\u2081\u2082\u2083\u2084"],["aa41","\ucc25\ucc26\ucc2a\ucc2b\ucc2d\ucc2f\ucc31",6,"\ucc3a\ucc3f",4,"\ucc46\ucc47\ucc49\ucc4a\ucc4b\ucc4d\ucc4e"],["aa61","\ucc4f",4,"\ucc56\ucc5a",5,"\ucc61\ucc62\ucc63\ucc65\ucc67\ucc69",6,"\ucc71\ucc72"],["aa81","\ucc73\ucc74\ucc76",29,"\u3041",82],["ab41","\ucc94\ucc95\ucc96\ucc97\ucc9a\ucc9b\ucc9d\ucc9e\ucc9f\ucca1",6,"\uccaa\uccae",5,"\uccb6\uccb7\uccb9"],["ab61","\uccba\uccbb\uccbd",6,"\uccc6\uccc8\uccca",5,"\uccd1\uccd2\uccd3\uccd5",5],["ab81","\uccdb",8,"\ucce5",6,"\ucced\uccee\uccef\uccf1",12,"\u30a1",85],["ac41","\uccfe\uccff\ucd00\ucd02",5,"\ucd0a\ucd0b\ucd0d\ucd0e\ucd0f\ucd11",6,"\ucd1a\ucd1c\ucd1e\ucd1f\ucd20"],["ac61","\ucd21\ucd22\ucd23\ucd25\ucd26\ucd27\ucd29\ucd2a\ucd2b\ucd2d",11,"\ucd3a",4],["ac81","\ucd3f",28,"\ucd5d\ucd5e\ucd5f\u0410",5,"\u0401\u0416",25],["acd1","\u0430",5,"\u0451\u0436",25],["ad41","\ucd61\ucd62\ucd63\ucd65",6,"\ucd6e\ucd70\ucd72",5,"\ucd79",7],["ad61","\ucd81",6,"\ucd89",10,"\ucd96\ucd97\ucd99\ucd9a\ucd9b\ucd9d\ucd9e\ucd9f"],["ad81","\ucda0\ucda1\ucda2\ucda3\ucda6\ucda8\ucdaa",5,"\ucdb1",18,"\ucdc5"],["ae41","\ucdc6",5,"\ucdcd\ucdce\ucdcf\ucdd1",16],["ae61","\ucde2",5,"\ucde9\ucdea\ucdeb\ucded\ucdee\ucdef\ucdf1",6,"\ucdfa\ucdfc\ucdfe",4],["ae81","\uce03\uce05\uce06\uce07\uce09\uce0a\uce0b\uce0d",6,"\uce15\uce16\uce17\uce18\uce1a",5,"\uce22\uce23\uce25\uce26\uce27\uce29\uce2a\uce2b"],["af41","\uce2c\uce2d\uce2e\uce2f\uce32\uce34\uce36",19],["af61","\uce4a",13,"\uce5a\uce5b\uce5d\uce5e\uce62",5,"\uce6a\uce6c"],["af81","\uce6e",5,"\uce76\uce77\uce79\uce7a\uce7b\uce7d",6,"\uce86\uce88\uce8a",5,"\uce92\uce93\uce95\uce96\uce97\uce99"],["b041","\uce9a",5,"\ucea2\ucea6",5,"\uceae",12],["b061","\ucebb",5,"\ucec2",19],["b081","\uced6",13,"\ucee6\ucee7\ucee9\uceea\uceed",6,"\ucef6\ucefa",5,"\uac00\uac01\uac04\uac07\uac08\uac09\uac0a\uac10",7,"\uac19",4,"\uac20\uac24\uac2c\uac2d\uac2f\uac30\uac31\uac38\uac39\uac3c\uac40\uac4b\uac4d\uac54\uac58\uac5c\uac70\uac71\uac74\uac77\uac78\uac7a\uac80\uac81\uac83\uac84\uac85\uac86\uac89\uac8a\uac8b\uac8c\uac90\uac94\uac9c\uac9d\uac9f\uaca0\uaca1\uaca8\uaca9\uacaa\uacac\uacaf\uacb0\uacb8\uacb9\uacbb\uacbc\uacbd\uacc1\uacc4\uacc8\uaccc\uacd5\uacd7\uace0\uace1\uace4\uace7\uace8\uacea\uacec\uacef\uacf0\uacf1\uacf3\uacf5\uacf6\uacfc\uacfd\uad00\uad04\uad06"],["b141","\ucf02\ucf03\ucf05\ucf06\ucf07\ucf09",6,"\ucf12\ucf14\ucf16",5,"\ucf1d\ucf1e\ucf1f\ucf21\ucf22\ucf23"],["b161","\ucf25",6,"\ucf2e\ucf32",5,"\ucf39",11],["b181","\ucf45",14,"\ucf56\ucf57\ucf59\ucf5a\ucf5b\ucf5d",6,"\ucf66\ucf68\ucf6a\ucf6b\ucf6c\uad0c\uad0d\uad0f\uad11\uad18\uad1c\uad20\uad29\uad2c\uad2d\uad34\uad35\uad38\uad3c\uad44\uad45\uad47\uad49\uad50\uad54\uad58\uad61\uad63\uad6c\uad6d\uad70\uad73\uad74\uad75\uad76\uad7b\uad7c\uad7d\uad7f\uad81\uad82\uad88\uad89\uad8c\uad90\uad9c\uad9d\uada4\uadb7\uadc0\uadc1\uadc4\uadc8\uadd0\uadd1\uadd3\uaddc\uade0\uade4\uadf8\uadf9\uadfc\uadff\uae00\uae01\uae08\uae09\uae0b\uae0d\uae14\uae30\uae31\uae34\uae37\uae38\uae3a\uae40\uae41\uae43\uae45\uae46\uae4a\uae4c\uae4d\uae4e\uae50\uae54\uae56\uae5c\uae5d\uae5f\uae60\uae61\uae65\uae68\uae69\uae6c\uae70\uae78"],["b241","\ucf6d\ucf6e\ucf6f\ucf72\ucf73\ucf75\ucf76\ucf77\ucf79",6,"\ucf81\ucf82\ucf83\ucf84\ucf86",5,"\ucf8d"],["b261","\ucf8e",18,"\ucfa2",5,"\ucfa9"],["b281","\ucfaa",5,"\ucfb1",18,"\ucfc5",6,"\uae79\uae7b\uae7c\uae7d\uae84\uae85\uae8c\uaebc\uaebd\uaebe\uaec0\uaec4\uaecc\uaecd\uaecf\uaed0\uaed1\uaed8\uaed9\uaedc\uaee8\uaeeb\uaeed\uaef4\uaef8\uaefc\uaf07\uaf08\uaf0d\uaf10\uaf2c\uaf2d\uaf30\uaf32\uaf34\uaf3c\uaf3d\uaf3f\uaf41\uaf42\uaf43\uaf48\uaf49\uaf50\uaf5c\uaf5d\uaf64\uaf65\uaf79\uaf80\uaf84\uaf88\uaf90\uaf91\uaf95\uaf9c\uafb8\uafb9\uafbc\uafc0\uafc7\uafc8\uafc9\uafcb\uafcd\uafce\uafd4\uafdc\uafe8\uafe9\uaff0\uaff1\uaff4\uaff8\ub000\ub001\ub004\ub00c\ub010\ub014\ub01c\ub01d\ub028\ub044\ub045\ub048\ub04a\ub04c\ub04e\ub053\ub054\ub055\ub057\ub059"],["b341","\ucfcc",19,"\ucfe2\ucfe3\ucfe5\ucfe6\ucfe7\ucfe9"],["b361","\ucfea",5,"\ucff2\ucff4\ucff6",5,"\ucffd\ucffe\ucfff\ud001\ud002\ud003\ud005",5],["b381","\ud00b",5,"\ud012",5,"\ud019",19,"\ub05d\ub07c\ub07d\ub080\ub084\ub08c\ub08d\ub08f\ub091\ub098\ub099\ub09a\ub09c\ub09f\ub0a0\ub0a1\ub0a2\ub0a8\ub0a9\ub0ab",4,"\ub0b1\ub0b3\ub0b4\ub0b5\ub0b8\ub0bc\ub0c4\ub0c5\ub0c7\ub0c8\ub0c9\ub0d0\ub0d1\ub0d4\ub0d8\ub0e0\ub0e5\ub108\ub109\ub10b\ub10c\ub110\ub112\ub113\ub118\ub119\ub11b\ub11c\ub11d\ub123\ub124\ub125\ub128\ub12c\ub134\ub135\ub137\ub138\ub139\ub140\ub141\ub144\ub148\ub150\ub151\ub154\ub155\ub158\ub15c\ub160\ub178\ub179\ub17c\ub180\ub182\ub188\ub189\ub18b\ub18d\ub192\ub193\ub194\ub198\ub19c\ub1a8\ub1cc\ub1d0\ub1d4\ub1dc\ub1dd"],["b441","\ud02e",5,"\ud036\ud037\ud039\ud03a\ud03b\ud03d",6,"\ud046\ud048\ud04a",5],["b461","\ud051\ud052\ud053\ud055\ud056\ud057\ud059",6,"\ud061",10,"\ud06e\ud06f"],["b481","\ud071\ud072\ud073\ud075",6,"\ud07e\ud07f\ud080\ud082",18,"\ub1df\ub1e8\ub1e9\ub1ec\ub1f0\ub1f9\ub1fb\ub1fd\ub204\ub205\ub208\ub20b\ub20c\ub214\ub215\ub217\ub219\ub220\ub234\ub23c\ub258\ub25c\ub260\ub268\ub269\ub274\ub275\ub27c\ub284\ub285\ub289\ub290\ub291\ub294\ub298\ub299\ub29a\ub2a0\ub2a1\ub2a3\ub2a5\ub2a6\ub2aa\ub2ac\ub2b0\ub2b4\ub2c8\ub2c9\ub2cc\ub2d0\ub2d2\ub2d8\ub2d9\ub2db\ub2dd\ub2e2\ub2e4\ub2e5\ub2e6\ub2e8\ub2eb",4,"\ub2f3\ub2f4\ub2f5\ub2f7",4,"\ub2ff\ub300\ub301\ub304\ub308\ub310\ub311\ub313\ub314\ub315\ub31c\ub354\ub355\ub356\ub358\ub35b\ub35c\ub35e\ub35f\ub364\ub365"],["b541","\ud095",14,"\ud0a6\ud0a7\ud0a9\ud0aa\ud0ab\ud0ad",5],["b561","\ud0b3\ud0b6\ud0b8\ud0ba",5,"\ud0c2\ud0c3\ud0c5\ud0c6\ud0c7\ud0ca",5,"\ud0d2\ud0d6",4],["b581","\ud0db\ud0de\ud0df\ud0e1\ud0e2\ud0e3\ud0e5",6,"\ud0ee\ud0f2",5,"\ud0f9",11,"\ub367\ub369\ub36b\ub36e\ub370\ub371\ub374\ub378\ub380\ub381\ub383\ub384\ub385\ub38c\ub390\ub394\ub3a0\ub3a1\ub3a8\ub3ac\ub3c4\ub3c5\ub3c8\ub3cb\ub3cc\ub3ce\ub3d0\ub3d4\ub3d5\ub3d7\ub3d9\ub3db\ub3dd\ub3e0\ub3e4\ub3e8\ub3fc\ub410\ub418\ub41c\ub420\ub428\ub429\ub42b\ub434\ub450\ub451\ub454\ub458\ub460\ub461\ub463\ub465\ub46c\ub480\ub488\ub49d\ub4a4\ub4a8\ub4ac\ub4b5\ub4b7\ub4b9\ub4c0\ub4c4\ub4c8\ub4d0\ub4d5\ub4dc\ub4dd\ub4e0\ub4e3\ub4e4\ub4e6\ub4ec\ub4ed\ub4ef\ub4f1\ub4f8\ub514\ub515\ub518\ub51b\ub51c\ub524\ub525\ub527\ub528\ub529\ub52a\ub530\ub531\ub534\ub538"],["b641","\ud105",7,"\ud10e",17],["b661","\ud120",15,"\ud132\ud133\ud135\ud136\ud137\ud139\ud13b\ud13c\ud13d\ud13e"],["b681","\ud13f\ud142\ud146",5,"\ud14e\ud14f\ud151\ud152\ud153\ud155",6,"\ud15e\ud160\ud162",5,"\ud169\ud16a\ud16b\ud16d\ub540\ub541\ub543\ub544\ub545\ub54b\ub54c\ub54d\ub550\ub554\ub55c\ub55d\ub55f\ub560\ub561\ub5a0\ub5a1\ub5a4\ub5a8\ub5aa\ub5ab\ub5b0\ub5b1\ub5b3\ub5b4\ub5b5\ub5bb\ub5bc\ub5bd\ub5c0\ub5c4\ub5cc\ub5cd\ub5cf\ub5d0\ub5d1\ub5d8\ub5ec\ub610\ub611\ub614\ub618\ub625\ub62c\ub634\ub648\ub664\ub668\ub69c\ub69d\ub6a0\ub6a4\ub6ab\ub6ac\ub6b1\ub6d4\ub6f0\ub6f4\ub6f8\ub700\ub701\ub705\ub728\ub729\ub72c\ub72f\ub730\ub738\ub739\ub73b\ub744\ub748\ub74c\ub754\ub755\ub760\ub764\ub768\ub770\ub771\ub773\ub775\ub77c\ub77d\ub780\ub784\ub78c\ub78d\ub78f\ub790\ub791\ub792\ub796\ub797"],["b741","\ud16e",13,"\ud17d",6,"\ud185\ud186\ud187\ud189\ud18a"],["b761","\ud18b",20,"\ud1a2\ud1a3\ud1a5\ud1a6\ud1a7"],["b781","\ud1a9",6,"\ud1b2\ud1b4\ud1b6\ud1b7\ud1b8\ud1b9\ud1bb\ud1bd\ud1be\ud1bf\ud1c1",14,"\ub798\ub799\ub79c\ub7a0\ub7a8\ub7a9\ub7ab\ub7ac\ub7ad\ub7b4\ub7b5\ub7b8\ub7c7\ub7c9\ub7ec\ub7ed\ub7f0\ub7f4\ub7fc\ub7fd\ub7ff\ub800\ub801\ub807\ub808\ub809\ub80c\ub810\ub818\ub819\ub81b\ub81d\ub824\ub825\ub828\ub82c\ub834\ub835\ub837\ub838\ub839\ub840\ub844\ub851\ub853\ub85c\ub85d\ub860\ub864\ub86c\ub86d\ub86f\ub871\ub878\ub87c\ub88d\ub8a8\ub8b0\ub8b4\ub8b8\ub8c0\ub8c1\ub8c3\ub8c5\ub8cc\ub8d0\ub8d4\ub8dd\ub8df\ub8e1\ub8e8\ub8e9\ub8ec\ub8f0\ub8f8\ub8f9\ub8fb\ub8fd\ub904\ub918\ub920\ub93c\ub93d\ub940\ub944\ub94c\ub94f\ub951\ub958\ub959\ub95c\ub960\ub968\ub969"],["b841","\ud1d0",7,"\ud1d9",17],["b861","\ud1eb",8,"\ud1f5\ud1f6\ud1f7\ud1f9",13],["b881","\ud208\ud20a",5,"\ud211",24,"\ub96b\ub96d\ub974\ub975\ub978\ub97c\ub984\ub985\ub987\ub989\ub98a\ub98d\ub98e\ub9ac\ub9ad\ub9b0\ub9b4\ub9bc\ub9bd\ub9bf\ub9c1\ub9c8\ub9c9\ub9cc\ub9ce",4,"\ub9d8\ub9d9\ub9db\ub9dd\ub9de\ub9e1\ub9e3\ub9e4\ub9e5\ub9e8\ub9ec\ub9f4\ub9f5\ub9f7\ub9f8\ub9f9\ub9fa\uba00\uba01\uba08\uba15\uba38\uba39\uba3c\uba40\uba42\uba48\uba49\uba4b\uba4d\uba4e\uba53\uba54\uba55\uba58\uba5c\uba64\uba65\uba67\uba68\uba69\uba70\uba71\uba74\uba78\uba83\uba84\uba85\uba87\uba8c\ubaa8\ubaa9\ubaab\ubaac\ubab0\ubab2\ubab8\ubab9\ubabb\ubabd\ubac4\ubac8\ubad8\ubad9\ubafc"],["b941","\ud22a\ud22b\ud22e\ud22f\ud231\ud232\ud233\ud235",6,"\ud23e\ud240\ud242",5,"\ud249\ud24a\ud24b\ud24c"],["b961","\ud24d",14,"\ud25d",6,"\ud265\ud266\ud267\ud268"],["b981","\ud269",22,"\ud282\ud283\ud285\ud286\ud287\ud289\ud28a\ud28b\ud28c\ubb00\ubb04\ubb0d\ubb0f\ubb11\ubb18\ubb1c\ubb20\ubb29\ubb2b\ubb34\ubb35\ubb36\ubb38\ubb3b\ubb3c\ubb3d\ubb3e\ubb44\ubb45\ubb47\ubb49\ubb4d\ubb4f\ubb50\ubb54\ubb58\ubb61\ubb63\ubb6c\ubb88\ubb8c\ubb90\ubba4\ubba8\ubbac\ubbb4\ubbb7\ubbc0\ubbc4\ubbc8\ubbd0\ubbd3\ubbf8\ubbf9\ubbfc\ubbff\ubc00\ubc02\ubc08\ubc09\ubc0b\ubc0c\ubc0d\ubc0f\ubc11\ubc14",4,"\ubc1b",4,"\ubc24\ubc25\ubc27\ubc29\ubc2d\ubc30\ubc31\ubc34\ubc38\ubc40\ubc41\ubc43\ubc44\ubc45\ubc49\ubc4c\ubc4d\ubc50\ubc5d\ubc84\ubc85\ubc88\ubc8b\ubc8c\ubc8e\ubc94\ubc95\ubc97"],["ba41","\ud28d\ud28e\ud28f\ud292\ud293\ud294\ud296",5,"\ud29d\ud29e\ud29f\ud2a1\ud2a2\ud2a3\ud2a5",6,"\ud2ad"],["ba61","\ud2ae\ud2af\ud2b0\ud2b2",5,"\ud2ba\ud2bb\ud2bd\ud2be\ud2c1\ud2c3",4,"\ud2ca\ud2cc",5],["ba81","\ud2d2\ud2d3\ud2d5\ud2d6\ud2d7\ud2d9\ud2da\ud2db\ud2dd",6,"\ud2e6",9,"\ud2f2\ud2f3\ud2f5\ud2f6\ud2f7\ud2f9\ud2fa\ubc99\ubc9a\ubca0\ubca1\ubca4\ubca7\ubca8\ubcb0\ubcb1\ubcb3\ubcb4\ubcb5\ubcbc\ubcbd\ubcc0\ubcc4\ubccd\ubccf\ubcd0\ubcd1\ubcd5\ubcd8\ubcdc\ubcf4\ubcf5\ubcf6\ubcf8\ubcfc\ubd04\ubd05\ubd07\ubd09\ubd10\ubd14\ubd24\ubd2c\ubd40\ubd48\ubd49\ubd4c\ubd50\ubd58\ubd59\ubd64\ubd68\ubd80\ubd81\ubd84\ubd87\ubd88\ubd89\ubd8a\ubd90\ubd91\ubd93\ubd95\ubd99\ubd9a\ubd9c\ubda4\ubdb0\ubdb8\ubdd4\ubdd5\ubdd8\ubddc\ubde9\ubdf0\ubdf4\ubdf8\ube00\ube03\ube05\ube0c\ube0d\ube10\ube14\ube1c\ube1d\ube1f\ube44\ube45\ube48\ube4c\ube4e\ube54\ube55\ube57\ube59\ube5a\ube5b\ube60\ube61\ube64"],["bb41","\ud2fb",4,"\ud302\ud304\ud306",5,"\ud30f\ud311\ud312\ud313\ud315\ud317",4,"\ud31e\ud322\ud323"],["bb61","\ud324\ud326\ud327\ud32a\ud32b\ud32d\ud32e\ud32f\ud331",6,"\ud33a\ud33e",5,"\ud346\ud347\ud348\ud349"],["bb81","\ud34a",31,"\ube68\ube6a\ube70\ube71\ube73\ube74\ube75\ube7b\ube7c\ube7d\ube80\ube84\ube8c\ube8d\ube8f\ube90\ube91\ube98\ube99\ubea8\ubed0\ubed1\ubed4\ubed7\ubed8\ubee0\ubee3\ubee4\ubee5\ubeec\ubf01\ubf08\ubf09\ubf18\ubf19\ubf1b\ubf1c\ubf1d\ubf40\ubf41\ubf44\ubf48\ubf50\ubf51\ubf55\ubf94\ubfb0\ubfc5\ubfcc\ubfcd\ubfd0\ubfd4\ubfdc\ubfdf\ubfe1\uc03c\uc051\uc058\uc05c\uc060\uc068\uc069\uc090\uc091\uc094\uc098\uc0a0\uc0a1\uc0a3\uc0a5\uc0ac\uc0ad\uc0af\uc0b0\uc0b3\uc0b4\uc0b5\uc0b6\uc0bc\uc0bd\uc0bf\uc0c0\uc0c1\uc0c5\uc0c8\uc0c9\uc0cc\uc0d0\uc0d8\uc0d9\uc0db\uc0dc\uc0dd\uc0e4"],["bc41","\ud36a",17,"\ud37e\ud37f\ud381\ud382\ud383\ud385\ud386\ud387"],["bc61","\ud388\ud389\ud38a\ud38b\ud38e\ud392",5,"\ud39a\ud39b\ud39d\ud39e\ud39f\ud3a1",6,"\ud3aa\ud3ac\ud3ae"],["bc81","\ud3af",4,"\ud3b5\ud3b6\ud3b7\ud3b9\ud3ba\ud3bb\ud3bd",6,"\ud3c6\ud3c7\ud3ca",5,"\ud3d1",5,"\uc0e5\uc0e8\uc0ec\uc0f4\uc0f5\uc0f7\uc0f9\uc100\uc104\uc108\uc110\uc115\uc11c",4,"\uc123\uc124\uc126\uc127\uc12c\uc12d\uc12f\uc130\uc131\uc136\uc138\uc139\uc13c\uc140\uc148\uc149\uc14b\uc14c\uc14d\uc154\uc155\uc158\uc15c\uc164\uc165\uc167\uc168\uc169\uc170\uc174\uc178\uc185\uc18c\uc18d\uc18e\uc190\uc194\uc196\uc19c\uc19d\uc19f\uc1a1\uc1a5\uc1a8\uc1a9\uc1ac\uc1b0\uc1bd\uc1c4\uc1c8\uc1cc\uc1d4\uc1d7\uc1d8\uc1e0\uc1e4\uc1e8\uc1f0\uc1f1\uc1f3\uc1fc\uc1fd\uc200\uc204\uc20c\uc20d\uc20f\uc211\uc218\uc219\uc21c\uc21f\uc220\uc228\uc229\uc22b\uc22d"],["bd41","\ud3d7\ud3d9",7,"\ud3e2\ud3e4",7,"\ud3ee\ud3ef\ud3f1\ud3f2\ud3f3\ud3f5\ud3f6\ud3f7"],["bd61","\ud3f8\ud3f9\ud3fa\ud3fb\ud3fe\ud400\ud402",5,"\ud409",13],["bd81","\ud417",5,"\ud41e",25,"\uc22f\uc231\uc232\uc234\uc248\uc250\uc251\uc254\uc258\uc260\uc265\uc26c\uc26d\uc270\uc274\uc27c\uc27d\uc27f\uc281\uc288\uc289\uc290\uc298\uc29b\uc29d\uc2a4\uc2a5\uc2a8\uc2ac\uc2ad\uc2b4\uc2b5\uc2b7\uc2b9\uc2dc\uc2dd\uc2e0\uc2e3\uc2e4\uc2eb\uc2ec\uc2ed\uc2ef\uc2f1\uc2f6\uc2f8\uc2f9\uc2fb\uc2fc\uc300\uc308\uc309\uc30c\uc30d\uc313\uc314\uc315\uc318\uc31c\uc324\uc325\uc328\uc329\uc345\uc368\uc369\uc36c\uc370\uc372\uc378\uc379\uc37c\uc37d\uc384\uc388\uc38c\uc3c0\uc3d8\uc3d9\uc3dc\uc3df\uc3e0\uc3e2\uc3e8\uc3e9\uc3ed\uc3f4\uc3f5\uc3f8\uc408\uc410\uc424\uc42c\uc430"],["be41","\ud438",7,"\ud441\ud442\ud443\ud445",14],["be61","\ud454",7,"\ud45d\ud45e\ud45f\ud461\ud462\ud463\ud465",7,"\ud46e\ud470\ud471\ud472"],["be81","\ud473",4,"\ud47a\ud47b\ud47d\ud47e\ud481\ud483",4,"\ud48a\ud48c\ud48e",5,"\ud495",8,"\uc434\uc43c\uc43d\uc448\uc464\uc465\uc468\uc46c\uc474\uc475\uc479\uc480\uc494\uc49c\uc4b8\uc4bc\uc4e9\uc4f0\uc4f1\uc4f4\uc4f8\uc4fa\uc4ff\uc500\uc501\uc50c\uc510\uc514\uc51c\uc528\uc529\uc52c\uc530\uc538\uc539\uc53b\uc53d\uc544\uc545\uc548\uc549\uc54a\uc54c\uc54d\uc54e\uc553\uc554\uc555\uc557\uc558\uc559\uc55d\uc55e\uc560\uc561\uc564\uc568\uc570\uc571\uc573\uc574\uc575\uc57c\uc57d\uc580\uc584\uc587\uc58c\uc58d\uc58f\uc591\uc595\uc597\uc598\uc59c\uc5a0\uc5a9\uc5b4\uc5b5\uc5b8\uc5b9\uc5bb\uc5bc\uc5bd\uc5be\uc5c4",6,"\uc5cc\uc5ce"],["bf41","\ud49e",10,"\ud4aa",14],["bf61","\ud4b9",18,"\ud4cd\ud4ce\ud4cf\ud4d1\ud4d2\ud4d3\ud4d5"],["bf81","\ud4d6",5,"\ud4dd\ud4de\ud4e0",7,"\ud4e9\ud4ea\ud4eb\ud4ed\ud4ee\ud4ef\ud4f1",6,"\ud4f9\ud4fa\ud4fc\uc5d0\uc5d1\uc5d4\uc5d8\uc5e0\uc5e1\uc5e3\uc5e5\uc5ec\uc5ed\uc5ee\uc5f0\uc5f4\uc5f6\uc5f7\uc5fc",5,"\uc605\uc606\uc607\uc608\uc60c\uc610\uc618\uc619\uc61b\uc61c\uc624\uc625\uc628\uc62c\uc62d\uc62e\uc630\uc633\uc634\uc635\uc637\uc639\uc63b\uc640\uc641\uc644\uc648\uc650\uc651\uc653\uc654\uc655\uc65c\uc65d\uc660\uc66c\uc66f\uc671\uc678\uc679\uc67c\uc680\uc688\uc689\uc68b\uc68d\uc694\uc695\uc698\uc69c\uc6a4\uc6a5\uc6a7\uc6a9\uc6b0\uc6b1\uc6b4\uc6b8\uc6b9\uc6ba\uc6c0\uc6c1\uc6c3\uc6c5\uc6cc\uc6cd\uc6d0\uc6d4\uc6dc\uc6dd\uc6e0\uc6e1\uc6e8"],["c041","\ud4fe",5,"\ud505\ud506\ud507\ud509\ud50a\ud50b\ud50d",6,"\ud516\ud518",5],["c061","\ud51e",25],["c081","\ud538\ud539\ud53a\ud53b\ud53e\ud53f\ud541\ud542\ud543\ud545",6,"\ud54e\ud550\ud552",5,"\ud55a\ud55b\ud55d\ud55e\ud55f\ud561\ud562\ud563\uc6e9\uc6ec\uc6f0\uc6f8\uc6f9\uc6fd\uc704\uc705\uc708\uc70c\uc714\uc715\uc717\uc719\uc720\uc721\uc724\uc728\uc730\uc731\uc733\uc735\uc737\uc73c\uc73d\uc740\uc744\uc74a\uc74c\uc74d\uc74f\uc751",7,"\uc75c\uc760\uc768\uc76b\uc774\uc775\uc778\uc77c\uc77d\uc77e\uc783\uc784\uc785\uc787\uc788\uc789\uc78a\uc78e\uc790\uc791\uc794\uc796\uc797\uc798\uc79a\uc7a0\uc7a1\uc7a3\uc7a4\uc7a5\uc7a6\uc7ac\uc7ad\uc7b0\uc7b4\uc7bc\uc7bd\uc7bf\uc7c0\uc7c1\uc7c8\uc7c9\uc7cc\uc7ce\uc7d0\uc7d8\uc7dd\uc7e4\uc7e8\uc7ec\uc800\uc801\uc804\uc808\uc80a"],["c141","\ud564\ud566\ud567\ud56a\ud56c\ud56e",5,"\ud576\ud577\ud579\ud57a\ud57b\ud57d",6,"\ud586\ud58a\ud58b"],["c161","\ud58c\ud58d\ud58e\ud58f\ud591",19,"\ud5a6\ud5a7"],["c181","\ud5a8",31,"\uc810\uc811\uc813\uc815\uc816\uc81c\uc81d\uc820\uc824\uc82c\uc82d\uc82f\uc831\uc838\uc83c\uc840\uc848\uc849\uc84c\uc84d\uc854\uc870\uc871\uc874\uc878\uc87a\uc880\uc881\uc883\uc885\uc886\uc887\uc88b\uc88c\uc88d\uc894\uc89d\uc89f\uc8a1\uc8a8\uc8bc\uc8bd\uc8c4\uc8c8\uc8cc\uc8d4\uc8d5\uc8d7\uc8d9\uc8e0\uc8e1\uc8e4\uc8f5\uc8fc\uc8fd\uc900\uc904\uc905\uc906\uc90c\uc90d\uc90f\uc911\uc918\uc92c\uc934\uc950\uc951\uc954\uc958\uc960\uc961\uc963\uc96c\uc970\uc974\uc97c\uc988\uc989\uc98c\uc990\uc998\uc999\uc99b\uc99d\uc9c0\uc9c1\uc9c4\uc9c7\uc9c8\uc9ca\uc9d0\uc9d1\uc9d3"],["c241","\ud5ca\ud5cb\ud5cd\ud5ce\ud5cf\ud5d1\ud5d3",4,"\ud5da\ud5dc\ud5de",5,"\ud5e6\ud5e7\ud5e9\ud5ea\ud5eb\ud5ed\ud5ee"],["c261","\ud5ef",4,"\ud5f6\ud5f8\ud5fa",5,"\ud602\ud603\ud605\ud606\ud607\ud609",6,"\ud612"],["c281","\ud616",5,"\ud61d\ud61e\ud61f\ud621\ud622\ud623\ud625",7,"\ud62e",9,"\ud63a\ud63b\uc9d5\uc9d6\uc9d9\uc9da\uc9dc\uc9dd\uc9e0\uc9e2\uc9e4\uc9e7\uc9ec\uc9ed\uc9ef\uc9f0\uc9f1\uc9f8\uc9f9\uc9fc\uca00\uca08\uca09\uca0b\uca0c\uca0d\uca14\uca18\uca29\uca4c\uca4d\uca50\uca54\uca5c\uca5d\uca5f\uca60\uca61\uca68\uca7d\uca84\uca98\ucabc\ucabd\ucac0\ucac4\ucacc\ucacd\ucacf\ucad1\ucad3\ucad8\ucad9\ucae0\ucaec\ucaf4\ucb08\ucb10\ucb14\ucb18\ucb20\ucb21\ucb41\ucb48\ucb49\ucb4c\ucb50\ucb58\ucb59\ucb5d\ucb64\ucb78\ucb79\ucb9c\ucbb8\ucbd4\ucbe4\ucbe7\ucbe9\ucc0c\ucc0d\ucc10\ucc14\ucc1c\ucc1d\ucc21\ucc22\ucc27\ucc28\ucc29\ucc2c\ucc2e\ucc30\ucc38\ucc39\ucc3b"],["c341","\ud63d\ud63e\ud63f\ud641\ud642\ud643\ud644\ud646\ud647\ud64a\ud64c\ud64e\ud64f\ud650\ud652\ud653\ud656\ud657\ud659\ud65a\ud65b\ud65d",4],["c361","\ud662",4,"\ud668\ud66a",5,"\ud672\ud673\ud675",11],["c381","\ud681\ud682\ud684\ud686",5,"\ud68e\ud68f\ud691\ud692\ud693\ud695",7,"\ud69e\ud6a0\ud6a2",5,"\ud6a9\ud6aa\ucc3c\ucc3d\ucc3e\ucc44\ucc45\ucc48\ucc4c\ucc54\ucc55\ucc57\ucc58\ucc59\ucc60\ucc64\ucc66\ucc68\ucc70\ucc75\ucc98\ucc99\ucc9c\ucca0\ucca8\ucca9\uccab\uccac\uccad\uccb4\uccb5\uccb8\uccbc\uccc4\uccc5\uccc7\uccc9\uccd0\uccd4\ucce4\uccec\uccf0\ucd01\ucd08\ucd09\ucd0c\ucd10\ucd18\ucd19\ucd1b\ucd1d\ucd24\ucd28\ucd2c\ucd39\ucd5c\ucd60\ucd64\ucd6c\ucd6d\ucd6f\ucd71\ucd78\ucd88\ucd94\ucd95\ucd98\ucd9c\ucda4\ucda5\ucda7\ucda9\ucdb0\ucdc4\ucdcc\ucdd0\ucde8\ucdec\ucdf0\ucdf8\ucdf9\ucdfb\ucdfd\uce04\uce08\uce0c\uce14\uce19\uce20\uce21\uce24\uce28\uce30\uce31\uce33\uce35"],["c441","\ud6ab\ud6ad\ud6ae\ud6af\ud6b1",7,"\ud6ba\ud6bc",7,"\ud6c6\ud6c7\ud6c9\ud6ca\ud6cb"],["c461","\ud6cd\ud6ce\ud6cf\ud6d0\ud6d2\ud6d3\ud6d5\ud6d6\ud6d8\ud6da",5,"\ud6e1\ud6e2\ud6e3\ud6e5\ud6e6\ud6e7\ud6e9",4],["c481","\ud6ee\ud6ef\ud6f1\ud6f2\ud6f3\ud6f4\ud6f6",5,"\ud6fe\ud6ff\ud701\ud702\ud703\ud705",11,"\ud712\ud713\ud714\uce58\uce59\uce5c\uce5f\uce60\uce61\uce68\uce69\uce6b\uce6d\uce74\uce75\uce78\uce7c\uce84\uce85\uce87\uce89\uce90\uce91\uce94\uce98\ucea0\ucea1\ucea3\ucea4\ucea5\uceac\ucead\ucec1\ucee4\ucee5\ucee8\uceeb\uceec\ucef4\ucef5\ucef7\ucef8\ucef9\ucf00\ucf01\ucf04\ucf08\ucf10\ucf11\ucf13\ucf15\ucf1c\ucf20\ucf24\ucf2c\ucf2d\ucf2f\ucf30\ucf31\ucf38\ucf54\ucf55\ucf58\ucf5c\ucf64\ucf65\ucf67\ucf69\ucf70\ucf71\ucf74\ucf78\ucf80\ucf85\ucf8c\ucfa1\ucfa8\ucfb0\ucfc4\ucfe0\ucfe1\ucfe4\ucfe8\ucff0\ucff1\ucff3\ucff5\ucffc\ud000\ud004\ud011\ud018\ud02d\ud034\ud035\ud038\ud03c"],["c541","\ud715\ud716\ud717\ud71a\ud71b\ud71d\ud71e\ud71f\ud721",6,"\ud72a\ud72c\ud72e",5,"\ud736\ud737\ud739"],["c561","\ud73a\ud73b\ud73d",6,"\ud745\ud746\ud748\ud74a",5,"\ud752\ud753\ud755\ud75a",4],["c581","\ud75f\ud762\ud764\ud766\ud767\ud768\ud76a\ud76b\ud76d\ud76e\ud76f\ud771\ud772\ud773\ud775",6,"\ud77e\ud77f\ud780\ud782",5,"\ud78a\ud78b\ud044\ud045\ud047\ud049\ud050\ud054\ud058\ud060\ud06c\ud06d\ud070\ud074\ud07c\ud07d\ud081\ud0a4\ud0a5\ud0a8\ud0ac\ud0b4\ud0b5\ud0b7\ud0b9\ud0c0\ud0c1\ud0c4\ud0c8\ud0c9\ud0d0\ud0d1\ud0d3\ud0d4\ud0d5\ud0dc\ud0dd\ud0e0\ud0e4\ud0ec\ud0ed\ud0ef\ud0f0\ud0f1\ud0f8\ud10d\ud130\ud131\ud134\ud138\ud13a\ud140\ud141\ud143\ud144\ud145\ud14c\ud14d\ud150\ud154\ud15c\ud15d\ud15f\ud161\ud168\ud16c\ud17c\ud184\ud188\ud1a0\ud1a1\ud1a4\ud1a8\ud1b0\ud1b1\ud1b3\ud1b5\ud1ba\ud1bc\ud1c0\ud1d8\ud1f4\ud1f8\ud207\ud209\ud210\ud22c\ud22d\ud230\ud234\ud23c\ud23d\ud23f\ud241\ud248\ud25c"],["c641","\ud78d\ud78e\ud78f\ud791",6,"\ud79a\ud79c\ud79e",5],["c6a1","\ud264\ud280\ud281\ud284\ud288\ud290\ud291\ud295\ud29c\ud2a0\ud2a4\ud2ac\ud2b1\ud2b8\ud2b9\ud2bc\ud2bf\ud2c0\ud2c2\ud2c8\ud2c9\ud2cb\ud2d4\ud2d8\ud2dc\ud2e4\ud2e5\ud2f0\ud2f1\ud2f4\ud2f8\ud300\ud301\ud303\ud305\ud30c\ud30d\ud30e\ud310\ud314\ud316\ud31c\ud31d\ud31f\ud320\ud321\ud325\ud328\ud329\ud32c\ud330\ud338\ud339\ud33b\ud33c\ud33d\ud344\ud345\ud37c\ud37d\ud380\ud384\ud38c\ud38d\ud38f\ud390\ud391\ud398\ud399\ud39c\ud3a0\ud3a8\ud3a9\ud3ab\ud3ad\ud3b4\ud3b8\ud3bc\ud3c4\ud3c5\ud3c8\ud3c9\ud3d0\ud3d8\ud3e1\ud3e3\ud3ec\ud3ed\ud3f0\ud3f4\ud3fc\ud3fd\ud3ff\ud401"],["c7a1","\ud408\ud41d\ud440\ud444\ud45c\ud460\ud464\ud46d\ud46f\ud478\ud479\ud47c\ud47f\ud480\ud482\ud488\ud489\ud48b\ud48d\ud494\ud4a9\ud4cc\ud4d0\ud4d4\ud4dc\ud4df\ud4e8\ud4ec\ud4f0\ud4f8\ud4fb\ud4fd\ud504\ud508\ud50c\ud514\ud515\ud517\ud53c\ud53d\ud540\ud544\ud54c\ud54d\ud54f\ud551\ud558\ud559\ud55c\ud560\ud565\ud568\ud569\ud56b\ud56d\ud574\ud575\ud578\ud57c\ud584\ud585\ud587\ud588\ud589\ud590\ud5a5\ud5c8\ud5c9\ud5cc\ud5d0\ud5d2\ud5d8\ud5d9\ud5db\ud5dd\ud5e4\ud5e5\ud5e8\ud5ec\ud5f4\ud5f5\ud5f7\ud5f9\ud600\ud601\ud604\ud608\ud610\ud611\ud613\ud614\ud615\ud61c\ud620"],["c8a1","\ud624\ud62d\ud638\ud639\ud63c\ud640\ud645\ud648\ud649\ud64b\ud64d\ud651\ud654\ud655\ud658\ud65c\ud667\ud669\ud670\ud671\ud674\ud683\ud685\ud68c\ud68d\ud690\ud694\ud69d\ud69f\ud6a1\ud6a8\ud6ac\ud6b0\ud6b9\ud6bb\ud6c4\ud6c5\ud6c8\ud6cc\ud6d1\ud6d4\ud6d7\ud6d9\ud6e0\ud6e4\ud6e8\ud6f0\ud6f5\ud6fc\ud6fd\ud700\ud704\ud711\ud718\ud719\ud71c\ud720\ud728\ud729\ud72b\ud72d\ud734\ud735\ud738\ud73c\ud744\ud747\ud749\ud750\ud751\ud754\ud756\ud757\ud758\ud759\ud760\ud761\ud763\ud765\ud769\ud76c\ud770\ud774\ud77c\ud77d\ud781\ud788\ud789\ud78c\ud790\ud798\ud799\ud79b\ud79d"],["caa1","\u4f3d\u4f73\u5047\u50f9\u52a0\u53ef\u5475\u54e5\u5609\u5ac1\u5bb6\u6687\u67b6\u67b7\u67ef\u6b4c\u73c2\u75c2\u7a3c\u82db\u8304\u8857\u8888\u8a36\u8cc8\u8dcf\u8efb\u8fe6\u99d5\u523b\u5374\u5404\u606a\u6164\u6bbc\u73cf\u811a\u89ba\u89d2\u95a3\u4f83\u520a\u58be\u5978\u59e6\u5e72\u5e79\u61c7\u63c0\u6746\u67ec\u687f\u6f97\u764e\u770b\u78f5\u7a08\u7aff\u7c21\u809d\u826e\u8271\u8aeb\u9593\u4e6b\u559d\u66f7\u6e34\u78a3\u7aed\u845b\u8910\u874e\u97a8\u52d8\u574e\u582a\u5d4c\u611f\u61be\u6221\u6562\u67d1\u6a44\u6e1b\u7518\u75b3\u76e3\u77b0\u7d3a\u90af\u9451\u9452\u9f95"],["cba1","\u5323\u5cac\u7532\u80db\u9240\u9598\u525b\u5808\u59dc\u5ca1\u5d17\u5eb7\u5f3a\u5f4a\u6177\u6c5f\u757a\u7586\u7ce0\u7d73\u7db1\u7f8c\u8154\u8221\u8591\u8941\u8b1b\u92fc\u964d\u9c47\u4ecb\u4ef7\u500b\u51f1\u584f\u6137\u613e\u6168\u6539\u69ea\u6f11\u75a5\u7686\u76d6\u7b87\u82a5\u84cb\uf900\u93a7\u958b\u5580\u5ba2\u5751\uf901\u7cb3\u7fb9\u91b5\u5028\u53bb\u5c45\u5de8\u62d2\u636e\u64da\u64e7\u6e20\u70ac\u795b\u8ddd\u8e1e\uf902\u907d\u9245\u92f8\u4e7e\u4ef6\u5065\u5dfe\u5efa\u6106\u6957\u8171\u8654\u8e47\u9375\u9a2b\u4e5e\u5091\u6770\u6840\u5109\u528d\u5292\u6aa2"],["cca1","\u77bc\u9210\u9ed4\u52ab\u602f\u8ff2\u5048\u61a9\u63ed\u64ca\u683c\u6a84\u6fc0\u8188\u89a1\u9694\u5805\u727d\u72ac\u7504\u7d79\u7e6d\u80a9\u898b\u8b74\u9063\u9d51\u6289\u6c7a\u6f54\u7d50\u7f3a\u8a23\u517c\u614a\u7b9d\u8b19\u9257\u938c\u4eac\u4fd3\u501e\u50be\u5106\u52c1\u52cd\u537f\u5770\u5883\u5e9a\u5f91\u6176\u61ac\u64ce\u656c\u666f\u66bb\u66f4\u6897\u6d87\u7085\u70f1\u749f\u74a5\u74ca\u75d9\u786c\u78ec\u7adf\u7af6\u7d45\u7d93\u8015\u803f\u811b\u8396\u8b66\u8f15\u9015\u93e1\u9803\u9838\u9a5a\u9be8\u4fc2\u5553\u583a\u5951\u5b63\u5c46\u60b8\u6212\u6842\u68b0"],["cda1","\u68e8\u6eaa\u754c\u7678\u78ce\u7a3d\u7cfb\u7e6b\u7e7c\u8a08\u8aa1\u8c3f\u968e\u9dc4\u53e4\u53e9\u544a\u5471\u56fa\u59d1\u5b64\u5c3b\u5eab\u62f7\u6537\u6545\u6572\u66a0\u67af\u69c1\u6cbd\u75fc\u7690\u777e\u7a3f\u7f94\u8003\u80a1\u818f\u82e6\u82fd\u83f0\u85c1\u8831\u88b4\u8aa5\uf903\u8f9c\u932e\u96c7\u9867\u9ad8\u9f13\u54ed\u659b\u66f2\u688f\u7a40\u8c37\u9d60\u56f0\u5764\u5d11\u6606\u68b1\u68cd\u6efe\u7428\u889e\u9be4\u6c68\uf904\u9aa8\u4f9b\u516c\u5171\u529f\u5b54\u5de5\u6050\u606d\u62f1\u63a7\u653b\u73d9\u7a7a\u86a3\u8ca2\u978f\u4e32\u5be1\u6208\u679c\u74dc"],["cea1","\u79d1\u83d3\u8a87\u8ab2\u8de8\u904e\u934b\u9846\u5ed3\u69e8\u85ff\u90ed\uf905\u51a0\u5b98\u5bec\u6163\u68fa\u6b3e\u704c\u742f\u74d8\u7ba1\u7f50\u83c5\u89c0\u8cab\u95dc\u9928\u522e\u605d\u62ec\u9002\u4f8a\u5149\u5321\u58d9\u5ee3\u66e0\u6d38\u709a\u72c2\u73d6\u7b50\u80f1\u945b\u5366\u639b\u7f6b\u4e56\u5080\u584a\u58de\u602a\u6127\u62d0\u69d0\u9b41\u5b8f\u7d18\u80b1\u8f5f\u4ea4\u50d1\u54ac\u55ac\u5b0c\u5da0\u5de7\u652a\u654e\u6821\u6a4b\u72e1\u768e\u77ef\u7d5e\u7ff9\u81a0\u854e\u86df\u8f03\u8f4e\u90ca\u9903\u9a55\u9bab\u4e18\u4e45\u4e5d\u4ec7\u4ff1\u5177\u52fe"],["cfa1","\u5340\u53e3\u53e5\u548e\u5614\u5775\u57a2\u5bc7\u5d87\u5ed0\u61fc\u62d8\u6551\u67b8\u67e9\u69cb\u6b50\u6bc6\u6bec\u6c42\u6e9d\u7078\u72d7\u7396\u7403\u77bf\u77e9\u7a76\u7d7f\u8009\u81fc\u8205\u820a\u82df\u8862\u8b33\u8cfc\u8ec0\u9011\u90b1\u9264\u92b6\u99d2\u9a45\u9ce9\u9dd7\u9f9c\u570b\u5c40\u83ca\u97a0\u97ab\u9eb4\u541b\u7a98\u7fa4\u88d9\u8ecd\u90e1\u5800\u5c48\u6398\u7a9f\u5bae\u5f13\u7a79\u7aae\u828e\u8eac\u5026\u5238\u52f8\u5377\u5708\u62f3\u6372\u6b0a\u6dc3\u7737\u53a5\u7357\u8568\u8e76\u95d5\u673a\u6ac3\u6f70\u8a6d\u8ecc\u994b\uf906\u6677\u6b78\u8cb4"],["d0a1","\u9b3c\uf907\u53eb\u572d\u594e\u63c6\u69fb\u73ea\u7845\u7aba\u7ac5\u7cfe\u8475\u898f\u8d73\u9035\u95a8\u52fb\u5747\u7547\u7b60\u83cc\u921e\uf908\u6a58\u514b\u524b\u5287\u621f\u68d8\u6975\u9699\u50c5\u52a4\u52e4\u61c3\u65a4\u6839\u69ff\u747e\u7b4b\u82b9\u83eb\u89b2\u8b39\u8fd1\u9949\uf909\u4eca\u5997\u64d2\u6611\u6a8e\u7434\u7981\u79bd\u82a9\u887e\u887f\u895f\uf90a\u9326\u4f0b\u53ca\u6025\u6271\u6c72\u7d1a\u7d66\u4e98\u5162\u77dc\u80af\u4f01\u4f0e\u5176\u5180\u55dc\u5668\u573b\u57fa\u57fc\u5914\u5947\u5993\u5bc4\u5c90\u5d0e\u5df1\u5e7e\u5fcc\u6280\u65d7\u65e3"],["d1a1","\u671e\u671f\u675e\u68cb\u68c4\u6a5f\u6b3a\u6c23\u6c7d\u6c82\u6dc7\u7398\u7426\u742a\u7482\u74a3\u7578\u757f\u7881\u78ef\u7941\u7947\u7948\u797a\u7b95\u7d00\u7dba\u7f88\u8006\u802d\u808c\u8a18\u8b4f\u8c48\u8d77\u9321\u9324\u98e2\u9951\u9a0e\u9a0f\u9a65\u9e92\u7dca\u4f76\u5409\u62ee\u6854\u91d1\u55ab\u513a\uf90b\uf90c\u5a1c\u61e6\uf90d\u62cf\u62ff\uf90e",5,"\u90a3\uf914",4,"\u8afe\uf919\uf91a\uf91b\uf91c\u6696\uf91d\u7156\uf91e\uf91f\u96e3\uf920\u634f\u637a\u5357\uf921\u678f\u6960\u6e73\uf922\u7537\uf923\uf924\uf925"],["d2a1","\u7d0d\uf926\uf927\u8872\u56ca\u5a18\uf928",4,"\u4e43\uf92d\u5167\u5948\u67f0\u8010\uf92e\u5973\u5e74\u649a\u79ca\u5ff5\u606c\u62c8\u637b\u5be7\u5bd7\u52aa\uf92f\u5974\u5f29\u6012\uf930\uf931\uf932\u7459\uf933",5,"\u99d1\uf939",10,"\u6fc3\uf944\uf945\u81bf\u8fb2\u60f1\uf946\uf947\u8166\uf948\uf949\u5c3f\uf94a",7,"\u5ae9\u8a25\u677b\u7d10\uf952",5,"\u80fd\uf958\uf959\u5c3c\u6ce5\u533f\u6eba\u591a\u8336"],["d3a1","\u4e39\u4eb6\u4f46\u55ae\u5718\u58c7\u5f56\u65b7\u65e6\u6a80\u6bb5\u6e4d\u77ed\u7aef\u7c1e\u7dde\u86cb\u8892\u9132\u935b\u64bb\u6fbe\u737a\u75b8\u9054\u5556\u574d\u61ba\u64d4\u66c7\u6de1\u6e5b\u6f6d\u6fb9\u75f0\u8043\u81bd\u8541\u8983\u8ac7\u8b5a\u931f\u6c93\u7553\u7b54\u8e0f\u905d\u5510\u5802\u5858\u5e62\u6207\u649e\u68e0\u7576\u7cd6\u87b3\u9ee8\u4ee3\u5788\u576e\u5927\u5c0d\u5cb1\u5e36\u5f85\u6234\u64e1\u73b3\u81fa\u888b\u8cb8\u968a\u9edb\u5b85\u5fb7\u60b3\u5012\u5200\u5230\u5716\u5835\u5857\u5c0e\u5c60\u5cf6\u5d8b\u5ea6\u5f92\u60bc\u6311\u6389\u6417\u6843"],["d4a1","\u68f9\u6ac2\u6dd8\u6e21\u6ed4\u6fe4\u71fe\u76dc\u7779\u79b1\u7a3b\u8404\u89a9\u8ced\u8df3\u8e48\u9003\u9014\u9053\u90fd\u934d\u9676\u97dc\u6bd2\u7006\u7258\u72a2\u7368\u7763\u79bf\u7be4\u7e9b\u8b80\u58a9\u60c7\u6566\u65fd\u66be\u6c8c\u711e\u71c9\u8c5a\u9813\u4e6d\u7a81\u4edd\u51ac\u51cd\u52d5\u540c\u61a7\u6771\u6850\u68df\u6d1e\u6f7c\u75bc\u77b3\u7ae5\u80f4\u8463\u9285\u515c\u6597\u675c\u6793\u75d8\u7ac7\u8373\uf95a\u8c46\u9017\u982d\u5c6f\u81c0\u829a\u9041\u906f\u920d\u5f97\u5d9d\u6a59\u71c8\u767b\u7b49\u85e4\u8b04\u9127\u9a30\u5587\u61f6\uf95b\u7669\u7f85"],["d5a1","\u863f\u87ba\u88f8\u908f\uf95c\u6d1b\u70d9\u73de\u7d61\u843d\uf95d\u916a\u99f1\uf95e\u4e82\u5375\u6b04\u6b12\u703e\u721b\u862d\u9e1e\u524c\u8fa3\u5d50\u64e5\u652c\u6b16\u6feb\u7c43\u7e9c\u85cd\u8964\u89bd\u62c9\u81d8\u881f\u5eca\u6717\u6d6a\u72fc\u7405\u746f\u8782\u90de\u4f86\u5d0d\u5fa0\u840a\u51b7\u63a0\u7565\u4eae\u5006\u5169\u51c9\u6881\u6a11\u7cae\u7cb1\u7ce7\u826f\u8ad2\u8f1b\u91cf\u4fb6\u5137\u52f5\u5442\u5eec\u616e\u623e\u65c5\u6ada\u6ffe\u792a\u85dc\u8823\u95ad\u9a62\u9a6a\u9e97\u9ece\u529b\u66c6\u6b77\u701d\u792b\u8f62\u9742\u6190\u6200\u6523\u6f23"],["d6a1","\u7149\u7489\u7df4\u806f\u84ee\u8f26\u9023\u934a\u51bd\u5217\u52a3\u6d0c\u70c8\u88c2\u5ec9\u6582\u6bae\u6fc2\u7c3e\u7375\u4ee4\u4f36\u56f9\uf95f\u5cba\u5dba\u601c\u73b2\u7b2d\u7f9a\u7fce\u8046\u901e\u9234\u96f6\u9748\u9818\u9f61\u4f8b\u6fa7\u79ae\u91b4\u96b7\u52de\uf960\u6488\u64c4\u6ad3\u6f5e\u7018\u7210\u76e7\u8001\u8606\u865c\u8def\u8f05\u9732\u9b6f\u9dfa\u9e75\u788c\u797f\u7da0\u83c9\u9304\u9e7f\u9e93\u8ad6\u58df\u5f04\u6727\u7027\u74cf\u7c60\u807e\u5121\u7028\u7262\u78ca\u8cc2\u8cda\u8cf4\u96f7\u4e86\u50da\u5bee\u5ed6\u6599\u71ce\u7642\u77ad\u804a\u84fc"],["d7a1","\u907c\u9b27\u9f8d\u58d8\u5a41\u5c62\u6a13\u6dda\u6f0f\u763b\u7d2f\u7e37\u851e\u8938\u93e4\u964b\u5289\u65d2\u67f3\u69b4\u6d41\u6e9c\u700f\u7409\u7460\u7559\u7624\u786b\u8b2c\u985e\u516d\u622e\u9678\u4f96\u502b\u5d19\u6dea\u7db8\u8f2a\u5f8b\u6144\u6817\uf961\u9686\u52d2\u808b\u51dc\u51cc\u695e\u7a1c\u7dbe\u83f1\u9675\u4fda\u5229\u5398\u540f\u550e\u5c65\u60a7\u674e\u68a8\u6d6c\u7281\u72f8\u7406\u7483\uf962\u75e2\u7c6c\u7f79\u7fb8\u8389\u88cf\u88e1\u91cc\u91d0\u96e2\u9bc9\u541d\u6f7e\u71d0\u7498\u85fa\u8eaa\u96a3\u9c57\u9e9f\u6797\u6dcb\u7433\u81e8\u9716\u782c"],["d8a1","\u7acb\u7b20\u7c92\u6469\u746a\u75f2\u78bc\u78e8\u99ac\u9b54\u9ebb\u5bde\u5e55\u6f20\u819c\u83ab\u9088\u4e07\u534d\u5a29\u5dd2\u5f4e\u6162\u633d\u6669\u66fc\u6eff\u6f2b\u7063\u779e\u842c\u8513\u883b\u8f13\u9945\u9c3b\u551c\u62b9\u672b\u6cab\u8309\u896a\u977a\u4ea1\u5984\u5fd8\u5fd9\u671b\u7db2\u7f54\u8292\u832b\u83bd\u8f1e\u9099\u57cb\u59b9\u5a92\u5bd0\u6627\u679a\u6885\u6bcf\u7164\u7f75\u8cb7\u8ce3\u9081\u9b45\u8108\u8c8a\u964c\u9a40\u9ea5\u5b5f\u6c13\u731b\u76f2\u76df\u840c\u51aa\u8993\u514d\u5195\u52c9\u68c9\u6c94\u7704\u7720\u7dbf\u7dec\u9762\u9eb5\u6ec5"],["d9a1","\u8511\u51a5\u540d\u547d\u660e\u669d\u6927\u6e9f\u76bf\u7791\u8317\u84c2\u879f\u9169\u9298\u9cf4\u8882\u4fae\u5192\u52df\u59c6\u5e3d\u6155\u6478\u6479\u66ae\u67d0\u6a21\u6bcd\u6bdb\u725f\u7261\u7441\u7738\u77db\u8017\u82bc\u8305\u8b00\u8b28\u8c8c\u6728\u6c90\u7267\u76ee\u7766\u7a46\u9da9\u6b7f\u6c92\u5922\u6726\u8499\u536f\u5893\u5999\u5edf\u63cf\u6634\u6773\u6e3a\u732b\u7ad7\u82d7\u9328\u52d9\u5deb\u61ae\u61cb\u620a\u62c7\u64ab\u65e0\u6959\u6b66\u6bcb\u7121\u73f7\u755d\u7e46\u821e\u8302\u856a\u8aa3\u8cbf\u9727\u9d61\u58a8\u9ed8\u5011\u520e\u543b\u554f\u6587"],["daa1","\u6c76\u7d0a\u7d0b\u805e\u868a\u9580\u96ef\u52ff\u6c95\u7269\u5473\u5a9a\u5c3e\u5d4b\u5f4c\u5fae\u672a\u68b6\u6963\u6e3c\u6e44\u7709\u7c73\u7f8e\u8587\u8b0e\u8ff7\u9761\u9ef4\u5cb7\u60b6\u610d\u61ab\u654f\u65fb\u65fc\u6c11\u6cef\u739f\u73c9\u7de1\u9594\u5bc6\u871c\u8b10\u525d\u535a\u62cd\u640f\u64b2\u6734\u6a38\u6cca\u73c0\u749e\u7b94\u7c95\u7e1b\u818a\u8236\u8584\u8feb\u96f9\u99c1\u4f34\u534a\u53cd\u53db\u62cc\u642c\u6500\u6591\u69c3\u6cee\u6f58\u73ed\u7554\u7622\u76e4\u76fc\u78d0\u78fb\u792c\u7d46\u822c\u87e0\u8fd4\u9812\u98ef\u52c3\u62d4\u64a5\u6e24\u6f51"],["dba1","\u767c\u8dcb\u91b1\u9262\u9aee\u9b43\u5023\u508d\u574a\u59a8\u5c28\u5e47\u5f77\u623f\u653e\u65b9\u65c1\u6609\u678b\u699c\u6ec2\u78c5\u7d21\u80aa\u8180\u822b\u82b3\u84a1\u868c\u8a2a\u8b17\u90a6\u9632\u9f90\u500d\u4ff3\uf963\u57f9\u5f98\u62dc\u6392\u676f\u6e43\u7119\u76c3\u80cc\u80da\u88f4\u88f5\u8919\u8ce0\u8f29\u914d\u966a\u4f2f\u4f70\u5e1b\u67cf\u6822\u767d\u767e\u9b44\u5e61\u6a0a\u7169\u71d4\u756a\uf964\u7e41\u8543\u85e9\u98dc\u4f10\u7b4f\u7f70\u95a5\u51e1\u5e06\u68b5\u6c3e\u6c4e\u6cdb\u72af\u7bc4\u8303\u6cd5\u743a\u50fb\u5288\u58c1\u64d8\u6a97\u74a7\u7656"],["dca1","\u78a7\u8617\u95e2\u9739\uf965\u535e\u5f01\u8b8a\u8fa8\u8faf\u908a\u5225\u77a5\u9c49\u9f08\u4e19\u5002\u5175\u5c5b\u5e77\u661e\u663a\u67c4\u68c5\u70b3\u7501\u75c5\u79c9\u7add\u8f27\u9920\u9a08\u4fdd\u5821\u5831\u5bf6\u666e\u6b65\u6d11\u6e7a\u6f7d\u73e4\u752b\u83e9\u88dc\u8913\u8b5c\u8f14\u4f0f\u50d5\u5310\u535c\u5b93\u5fa9\u670d\u798f\u8179\u832f\u8514\u8907\u8986\u8f39\u8f3b\u99a5\u9c12\u672c\u4e76\u4ff8\u5949\u5c01\u5cef\u5cf0\u6367\u68d2\u70fd\u71a2\u742b\u7e2b\u84ec\u8702\u9022\u92d2\u9cf3\u4e0d\u4ed8\u4fef\u5085\u5256\u526f\u5426\u5490\u57e0\u592b\u5a66"],["dda1","\u5b5a\u5b75\u5bcc\u5e9c\uf966\u6276\u6577\u65a7\u6d6e\u6ea5\u7236\u7b26\u7c3f\u7f36\u8150\u8151\u819a\u8240\u8299\u83a9\u8a03\u8ca0\u8ce6\u8cfb\u8d74\u8dba\u90e8\u91dc\u961c\u9644\u99d9\u9ce7\u5317\u5206\u5429\u5674\u58b3\u5954\u596e\u5fff\u61a4\u626e\u6610\u6c7e\u711a\u76c6\u7c89\u7cde\u7d1b\u82ac\u8cc1\u96f0\uf967\u4f5b\u5f17\u5f7f\u62c2\u5d29\u670b\u68da\u787c\u7e43\u9d6c\u4e15\u5099\u5315\u532a\u5351\u5983\u5a62\u5e87\u60b2\u618a\u6249\u6279\u6590\u6787\u69a7\u6bd4\u6bd6\u6bd7\u6bd8\u6cb8\uf968\u7435\u75fa\u7812\u7891\u79d5\u79d8\u7c83\u7dcb\u7fe1\u80a5"],["dea1","\u813e\u81c2\u83f2\u871a\u88e8\u8ab9\u8b6c\u8cbb\u9119\u975e\u98db\u9f3b\u56ac\u5b2a\u5f6c\u658c\u6ab3\u6baf\u6d5c\u6ff1\u7015\u725d\u73ad\u8ca7\u8cd3\u983b\u6191\u6c37\u8058\u9a01\u4e4d\u4e8b\u4e9b\u4ed5\u4f3a\u4f3c\u4f7f\u4fdf\u50ff\u53f2\u53f8\u5506\u55e3\u56db\u58eb\u5962\u5a11\u5beb\u5bfa\u5c04\u5df3\u5e2b\u5f99\u601d\u6368\u659c\u65af\u67f6\u67fb\u68ad\u6b7b\u6c99\u6cd7\u6e23\u7009\u7345\u7802\u793e\u7940\u7960\u79c1\u7be9\u7d17\u7d72\u8086\u820d\u838e\u84d1\u86c7\u88df\u8a50\u8a5e\u8b1d\u8cdc\u8d66\u8fad\u90aa\u98fc\u99df\u9e9d\u524a\uf969\u6714\uf96a"],["dfa1","\u5098\u522a\u5c71\u6563\u6c55\u73ca\u7523\u759d\u7b97\u849c\u9178\u9730\u4e77\u6492\u6bba\u715e\u85a9\u4e09\uf96b\u6749\u68ee\u6e17\u829f\u8518\u886b\u63f7\u6f81\u9212\u98af\u4e0a\u50b7\u50cf\u511f\u5546\u55aa\u5617\u5b40\u5c19\u5ce0\u5e38\u5e8a\u5ea0\u5ec2\u60f3\u6851\u6a61\u6e58\u723d\u7240\u72c0\u76f8\u7965\u7bb1\u7fd4\u88f3\u89f4\u8a73\u8c61\u8cde\u971c\u585e\u74bd\u8cfd\u55c7\uf96c\u7a61\u7d22\u8272\u7272\u751f\u7525\uf96d\u7b19\u5885\u58fb\u5dbc\u5e8f\u5eb6\u5f90\u6055\u6292\u637f\u654d\u6691\u66d9\u66f8\u6816\u68f2\u7280\u745e\u7b6e\u7d6e\u7dd6\u7f72"],["e0a1","\u80e5\u8212\u85af\u897f\u8a93\u901d\u92e4\u9ecd\u9f20\u5915\u596d\u5e2d\u60dc\u6614\u6673\u6790\u6c50\u6dc5\u6f5f\u77f3\u78a9\u84c6\u91cb\u932b\u4ed9\u50ca\u5148\u5584\u5b0b\u5ba3\u6247\u657e\u65cb\u6e32\u717d\u7401\u7444\u7487\u74bf\u766c\u79aa\u7dda\u7e55\u7fa8\u817a\u81b3\u8239\u861a\u87ec\u8a75\u8de3\u9078\u9291\u9425\u994d\u9bae\u5368\u5c51\u6954\u6cc4\u6d29\u6e2b\u820c\u859b\u893b\u8a2d\u8aaa\u96ea\u9f67\u5261\u66b9\u6bb2\u7e96\u87fe\u8d0d\u9583\u965d\u651d\u6d89\u71ee\uf96e\u57ce\u59d3\u5bac\u6027\u60fa\u6210\u661f\u665f\u7329\u73f9\u76db\u7701\u7b6c"],["e1a1","\u8056\u8072\u8165\u8aa0\u9192\u4e16\u52e2\u6b72\u6d17\u7a05\u7b39\u7d30\uf96f\u8cb0\u53ec\u562f\u5851\u5bb5\u5c0f\u5c11\u5de2\u6240\u6383\u6414\u662d\u68b3\u6cbc\u6d88\u6eaf\u701f\u70a4\u71d2\u7526\u758f\u758e\u7619\u7b11\u7be0\u7c2b\u7d20\u7d39\u852c\u856d\u8607\u8a34\u900d\u9061\u90b5\u92b7\u97f6\u9a37\u4fd7\u5c6c\u675f\u6d91\u7c9f\u7e8c\u8b16\u8d16\u901f\u5b6b\u5dfd\u640d\u84c0\u905c\u98e1\u7387\u5b8b\u609a\u677e\u6dde\u8a1f\u8aa6\u9001\u980c\u5237\uf970\u7051\u788e\u9396\u8870\u91d7\u4fee\u53d7\u55fd\u56da\u5782\u58fd\u5ac2\u5b88\u5cab\u5cc0\u5e25\u6101"],["e2a1","\u620d\u624b\u6388\u641c\u6536\u6578\u6a39\u6b8a\u6c34\u6d19\u6f31\u71e7\u72e9\u7378\u7407\u74b2\u7626\u7761\u79c0\u7a57\u7aea\u7cb9\u7d8f\u7dac\u7e61\u7f9e\u8129\u8331\u8490\u84da\u85ea\u8896\u8ab0\u8b90\u8f38\u9042\u9083\u916c\u9296\u92b9\u968b\u96a7\u96a8\u96d6\u9700\u9808\u9996\u9ad3\u9b1a\u53d4\u587e\u5919\u5b70\u5bbf\u6dd1\u6f5a\u719f\u7421\u74b9\u8085\u83fd\u5de1\u5f87\u5faa\u6042\u65ec\u6812\u696f\u6a53\u6b89\u6d35\u6df3\u73e3\u76fe\u77ac\u7b4d\u7d14\u8123\u821c\u8340\u84f4\u8563\u8a62\u8ac4\u9187\u931e\u9806\u99b4\u620c\u8853\u8ff0\u9265\u5d07\u5d27"],["e3a1","\u5d69\u745f\u819d\u8768\u6fd5\u62fe\u7fd2\u8936\u8972\u4e1e\u4e58\u50e7\u52dd\u5347\u627f\u6607\u7e69\u8805\u965e\u4f8d\u5319\u5636\u59cb\u5aa4\u5c38\u5c4e\u5c4d\u5e02\u5f11\u6043\u65bd\u662f\u6642\u67be\u67f4\u731c\u77e2\u793a\u7fc5\u8494\u84cd\u8996\u8a66\u8a69\u8ae1\u8c55\u8c7a\u57f4\u5bd4\u5f0f\u606f\u62ed\u690d\u6b96\u6e5c\u7184\u7bd2\u8755\u8b58\u8efe\u98df\u98fe\u4f38\u4f81\u4fe1\u547b\u5a20\u5bb8\u613c\u65b0\u6668\u71fc\u7533\u795e\u7d33\u814e\u81e3\u8398\u85aa\u85ce\u8703\u8a0a\u8eab\u8f9b\uf971\u8fc5\u5931\u5ba4\u5be6\u6089\u5be9\u5c0b\u5fc3\u6c81"],["e4a1","\uf972\u6df1\u700b\u751a\u82af\u8af6\u4ec0\u5341\uf973\u96d9\u6c0f\u4e9e\u4fc4\u5152\u555e\u5a25\u5ce8\u6211\u7259\u82bd\u83aa\u86fe\u8859\u8a1d\u963f\u96c5\u9913\u9d09\u9d5d\u580a\u5cb3\u5dbd\u5e44\u60e1\u6115\u63e1\u6a02\u6e25\u9102\u9354\u984e\u9c10\u9f77\u5b89\u5cb8\u6309\u664f\u6848\u773c\u96c1\u978d\u9854\u9b9f\u65a1\u8b01\u8ecb\u95bc\u5535\u5ca9\u5dd6\u5eb5\u6697\u764c\u83f4\u95c7\u58d3\u62bc\u72ce\u9d28\u4ef0\u592e\u600f\u663b\u6b83\u79e7\u9d26\u5393\u54c0\u57c3\u5d16\u611b\u66d6\u6daf\u788d\u827e\u9698\u9744\u5384\u627c\u6396\u6db2\u7e0a\u814b\u984d"],["e5a1","\u6afb\u7f4c\u9daf\u9e1a\u4e5f\u503b\u51b6\u591c\u60f9\u63f6\u6930\u723a\u8036\uf974\u91ce\u5f31\uf975\uf976\u7d04\u82e5\u846f\u84bb\u85e5\u8e8d\uf977\u4f6f\uf978\uf979\u58e4\u5b43\u6059\u63da\u6518\u656d\u6698\uf97a\u694a\u6a23\u6d0b\u7001\u716c\u75d2\u760d\u79b3\u7a70\uf97b\u7f8a\uf97c\u8944\uf97d\u8b93\u91c0\u967d\uf97e\u990a\u5704\u5fa1\u65bc\u6f01\u7600\u79a6\u8a9e\u99ad\u9b5a\u9f6c\u5104\u61b6\u6291\u6a8d\u81c6\u5043\u5830\u5f66\u7109\u8a00\u8afa\u5b7c\u8616\u4ffa\u513c\u56b4\u5944\u63a9\u6df9\u5daa\u696d\u5186\u4e88\u4f59\uf97f\uf980\uf981\u5982\uf982"],["e6a1","\uf983\u6b5f\u6c5d\uf984\u74b5\u7916\uf985\u8207\u8245\u8339\u8f3f\u8f5d\uf986\u9918\uf987\uf988\uf989\u4ea6\uf98a\u57df\u5f79\u6613\uf98b\uf98c\u75ab\u7e79\u8b6f\uf98d\u9006\u9a5b\u56a5\u5827\u59f8\u5a1f\u5bb4\uf98e\u5ef6\uf98f\uf990\u6350\u633b\uf991\u693d\u6c87\u6cbf\u6d8e\u6d93\u6df5\u6f14\uf992\u70df\u7136\u7159\uf993\u71c3\u71d5\uf994\u784f\u786f\uf995\u7b75\u7de3\uf996\u7e2f\uf997\u884d\u8edf\uf998\uf999\uf99a\u925b\uf99b\u9cf6\uf99c\uf99d\uf99e\u6085\u6d85\uf99f\u71b1\uf9a0\uf9a1\u95b1\u53ad\uf9a2\uf9a3\uf9a4\u67d3\uf9a5\u708e\u7130\u7430\u8276\u82d2"],["e7a1","\uf9a6\u95bb\u9ae5\u9e7d\u66c4\uf9a7\u71c1\u8449\uf9a8\uf9a9\u584b\uf9aa\uf9ab\u5db8\u5f71\uf9ac\u6620\u668e\u6979\u69ae\u6c38\u6cf3\u6e36\u6f41\u6fda\u701b\u702f\u7150\u71df\u7370\uf9ad\u745b\uf9ae\u74d4\u76c8\u7a4e\u7e93\uf9af\uf9b0\u82f1\u8a60\u8fce\uf9b1\u9348\uf9b2\u9719\uf9b3\uf9b4\u4e42\u502a\uf9b5\u5208\u53e1\u66f3\u6c6d\u6fca\u730a\u777f\u7a62\u82ae\u85dd\u8602\uf9b6\u88d4\u8a63\u8b7d\u8c6b\uf9b7\u92b3\uf9b8\u9713\u9810\u4e94\u4f0d\u4fc9\u50b2\u5348\u543e\u5433\u55da\u5862\u58ba\u5967\u5a1b\u5be4\u609f\uf9b9\u61ca\u6556\u65ff\u6664\u68a7\u6c5a\u6fb3"],["e8a1","\u70cf\u71ac\u7352\u7b7d\u8708\u8aa4\u9c32\u9f07\u5c4b\u6c83\u7344\u7389\u923a\u6eab\u7465\u761f\u7a69\u7e15\u860a\u5140\u58c5\u64c1\u74ee\u7515\u7670\u7fc1\u9095\u96cd\u9954\u6e26\u74e6\u7aa9\u7aaa\u81e5\u86d9\u8778\u8a1b\u5a49\u5b8c\u5b9b\u68a1\u6900\u6d63\u73a9\u7413\u742c\u7897\u7de9\u7feb\u8118\u8155\u839e\u8c4c\u962e\u9811\u66f0\u5f80\u65fa\u6789\u6c6a\u738b\u502d\u5a03\u6b6a\u77ee\u5916\u5d6c\u5dcd\u7325\u754f\uf9ba\uf9bb\u50e5\u51f9\u582f\u592d\u5996\u59da\u5be5\uf9bc\uf9bd\u5da2\u62d7\u6416\u6493\u64fe\uf9be\u66dc\uf9bf\u6a48\uf9c0\u71ff\u7464\uf9c1"],["e9a1","\u7a88\u7aaf\u7e47\u7e5e\u8000\u8170\uf9c2\u87ef\u8981\u8b20\u9059\uf9c3\u9080\u9952\u617e\u6b32\u6d74\u7e1f\u8925\u8fb1\u4fd1\u50ad\u5197\u52c7\u57c7\u5889\u5bb9\u5eb8\u6142\u6995\u6d8c\u6e67\u6eb6\u7194\u7462\u7528\u752c\u8073\u8338\u84c9\u8e0a\u9394\u93de\uf9c4\u4e8e\u4f51\u5076\u512a\u53c8\u53cb\u53f3\u5b87\u5bd3\u5c24\u611a\u6182\u65f4\u725b\u7397\u7440\u76c2\u7950\u7991\u79b9\u7d06\u7fbd\u828b\u85d5\u865e\u8fc2\u9047\u90f5\u91ea\u9685\u96e8\u96e9\u52d6\u5f67\u65ed\u6631\u682f\u715c\u7a36\u90c1\u980a\u4e91\uf9c5\u6a52\u6b9e\u6f90\u7189\u8018\u82b8\u8553"],["eaa1","\u904b\u9695\u96f2\u97fb\u851a\u9b31\u4e90\u718a\u96c4\u5143\u539f\u54e1\u5713\u5712\u57a3\u5a9b\u5ac4\u5bc3\u6028\u613f\u63f4\u6c85\u6d39\u6e72\u6e90\u7230\u733f\u7457\u82d1\u8881\u8f45\u9060\uf9c6\u9662\u9858\u9d1b\u6708\u8d8a\u925e\u4f4d\u5049\u50de\u5371\u570d\u59d4\u5a01\u5c09\u6170\u6690\u6e2d\u7232\u744b\u7def\u80c3\u840e\u8466\u853f\u875f\u885b\u8918\u8b02\u9055\u97cb\u9b4f\u4e73\u4f91\u5112\u516a\uf9c7\u552f\u55a9\u5b7a\u5ba5\u5e7c\u5e7d\u5ebe\u60a0\u60df\u6108\u6109\u63c4\u6538\u6709\uf9c8\u67d4\u67da\uf9c9\u6961\u6962\u6cb9\u6d27\uf9ca\u6e38\uf9cb"],["eba1","\u6fe1\u7336\u7337\uf9cc\u745c\u7531\uf9cd\u7652\uf9ce\uf9cf\u7dad\u81fe\u8438\u88d5\u8a98\u8adb\u8aed\u8e30\u8e42\u904a\u903e\u907a\u9149\u91c9\u936e\uf9d0\uf9d1\u5809\uf9d2\u6bd3\u8089\u80b2\uf9d3\uf9d4\u5141\u596b\u5c39\uf9d5\uf9d6\u6f64\u73a7\u80e4\u8d07\uf9d7\u9217\u958f\uf9d8\uf9d9\uf9da\uf9db\u807f\u620e\u701c\u7d68\u878d\uf9dc\u57a0\u6069\u6147\u6bb7\u8abe\u9280\u96b1\u4e59\u541f\u6deb\u852d\u9670\u97f3\u98ee\u63d6\u6ce3\u9091\u51dd\u61c9\u81ba\u9df9\u4f9d\u501a\u5100\u5b9c\u610f\u61ff\u64ec\u6905\u6bc5\u7591\u77e3\u7fa9\u8264\u858f\u87fb\u8863\u8abc"],["eca1","\u8b70\u91ab\u4e8c\u4ee5\u4f0a\uf9dd\uf9de\u5937\u59e8\uf9df\u5df2\u5f1b\u5f5b\u6021\uf9e0\uf9e1\uf9e2\uf9e3\u723e\u73e5\uf9e4\u7570\u75cd\uf9e5\u79fb\uf9e6\u800c\u8033\u8084\u82e1\u8351\uf9e7\uf9e8\u8cbd\u8cb3\u9087\uf9e9\uf9ea\u98f4\u990c\uf9eb\uf9ec\u7037\u76ca\u7fca\u7fcc\u7ffc\u8b1a\u4eba\u4ec1\u5203\u5370\uf9ed\u54bd\u56e0\u59fb\u5bc5\u5f15\u5fcd\u6e6e\uf9ee\uf9ef\u7d6a\u8335\uf9f0\u8693\u8a8d\uf9f1\u976d\u9777\uf9f2\uf9f3\u4e00\u4f5a\u4f7e\u58f9\u65e5\u6ea2\u9038\u93b0\u99b9\u4efb\u58ec\u598a\u59d9\u6041\uf9f4\uf9f5\u7a14\uf9f6\u834f\u8cc3\u5165\u5344"],["eda1","\uf9f7\uf9f8\uf9f9\u4ecd\u5269\u5b55\u82bf\u4ed4\u523a\u54a8\u59c9\u59ff\u5b50\u5b57\u5b5c\u6063\u6148\u6ecb\u7099\u716e\u7386\u74f7\u75b5\u78c1\u7d2b\u8005\u81ea\u8328\u8517\u85c9\u8aee\u8cc7\u96cc\u4f5c\u52fa\u56bc\u65ab\u6628\u707c\u70b8\u7235\u7dbd\u828d\u914c\u96c0\u9d72\u5b71\u68e7\u6b98\u6f7a\u76de\u5c91\u66ab\u6f5b\u7bb4\u7c2a\u8836\u96dc\u4e08\u4ed7\u5320\u5834\u58bb\u58ef\u596c\u5c07\u5e33\u5e84\u5f35\u638c\u66b2\u6756\u6a1f\u6aa3\u6b0c\u6f3f\u7246\uf9fa\u7350\u748b\u7ae0\u7ca7\u8178\u81df\u81e7\u838a\u846c\u8523\u8594\u85cf\u88dd\u8d13\u91ac\u9577"],["eea1","\u969c\u518d\u54c9\u5728\u5bb0\u624d\u6750\u683d\u6893\u6e3d\u6ed3\u707d\u7e21\u88c1\u8ca1\u8f09\u9f4b\u9f4e\u722d\u7b8f\u8acd\u931a\u4f47\u4f4e\u5132\u5480\u59d0\u5e95\u62b5\u6775\u696e\u6a17\u6cae\u6e1a\u72d9\u732a\u75bd\u7bb8\u7d35\u82e7\u83f9\u8457\u85f7\u8a5b\u8caf\u8e87\u9019\u90b8\u96ce\u9f5f\u52e3\u540a\u5ae1\u5bc2\u6458\u6575\u6ef4\u72c4\uf9fb\u7684\u7a4d\u7b1b\u7c4d\u7e3e\u7fdf\u837b\u8b2b\u8cca\u8d64\u8de1\u8e5f\u8fea\u8ff9\u9069\u93d1\u4f43\u4f7a\u50b3\u5168\u5178\u524d\u526a\u5861\u587c\u5960\u5c08\u5c55\u5edb\u609b\u6230\u6813\u6bbf\u6c08\u6fb1"],["efa1","\u714e\u7420\u7530\u7538\u7551\u7672\u7b4c\u7b8b\u7bad\u7bc6\u7e8f\u8a6e\u8f3e\u8f49\u923f\u9293\u9322\u942b\u96fb\u985a\u986b\u991e\u5207\u622a\u6298\u6d59\u7664\u7aca\u7bc0\u7d76\u5360\u5cbe\u5e97\u6f38\u70b9\u7c98\u9711\u9b8e\u9ede\u63a5\u647a\u8776\u4e01\u4e95\u4ead\u505c\u5075\u5448\u59c3\u5b9a\u5e40\u5ead\u5ef7\u5f81\u60c5\u633a\u653f\u6574\u65cc\u6676\u6678\u67fe\u6968\u6a89\u6b63\u6c40\u6dc0\u6de8\u6e1f\u6e5e\u701e\u70a1\u738e\u73fd\u753a\u775b\u7887\u798e\u7a0b\u7a7d\u7cbe\u7d8e\u8247\u8a02\u8aea\u8c9e\u912d\u914a\u91d8\u9266\u92cc\u9320\u9706\u9756"],["f0a1","\u975c\u9802\u9f0e\u5236\u5291\u557c\u5824\u5e1d\u5f1f\u608c\u63d0\u68af\u6fdf\u796d\u7b2c\u81cd\u85ba\u88fd\u8af8\u8e44\u918d\u9664\u969b\u973d\u984c\u9f4a\u4fce\u5146\u51cb\u52a9\u5632\u5f14\u5f6b\u63aa\u64cd\u65e9\u6641\u66fa\u66f9\u671d\u689d\u68d7\u69fd\u6f15\u6f6e\u7167\u71e5\u722a\u74aa\u773a\u7956\u795a\u79df\u7a20\u7a95\u7c97\u7cdf\u7d44\u7e70\u8087\u85fb\u86a4\u8a54\u8abf\u8d99\u8e81\u9020\u906d\u91e3\u963b\u96d5\u9ce5\u65cf\u7c07\u8db3\u93c3\u5b58\u5c0a\u5352\u62d9\u731d\u5027\u5b97\u5f9e\u60b0\u616b\u68d5\u6dd9\u742e\u7a2e\u7d42\u7d9c\u7e31\u816b"],["f1a1","\u8e2a\u8e35\u937e\u9418\u4f50\u5750\u5de6\u5ea7\u632b\u7f6a\u4e3b\u4f4f\u4f8f\u505a\u59dd\u80c4\u546a\u5468\u55fe\u594f\u5b99\u5dde\u5eda\u665d\u6731\u67f1\u682a\u6ce8\u6d32\u6e4a\u6f8d\u70b7\u73e0\u7587\u7c4c\u7d02\u7d2c\u7da2\u821f\u86db\u8a3b\u8a85\u8d70\u8e8a\u8f33\u9031\u914e\u9152\u9444\u99d0\u7af9\u7ca5\u4fca\u5101\u51c6\u57c8\u5bef\u5cfb\u6659\u6a3d\u6d5a\u6e96\u6fec\u710c\u756f\u7ae3\u8822\u9021\u9075\u96cb\u99ff\u8301\u4e2d\u4ef2\u8846\u91cd\u537d\u6adb\u696b\u6c41\u847a\u589e\u618e\u66fe\u62ef\u70dd\u7511\u75c7\u7e52\u84b8\u8b49\u8d08\u4e4b\u53ea"],["f2a1","\u54ab\u5730\u5740\u5fd7\u6301\u6307\u646f\u652f\u65e8\u667a\u679d\u67b3\u6b62\u6c60\u6c9a\u6f2c\u77e5\u7825\u7949\u7957\u7d19\u80a2\u8102\u81f3\u829d\u82b7\u8718\u8a8c\uf9fc\u8d04\u8dbe\u9072\u76f4\u7a19\u7a37\u7e54\u8077\u5507\u55d4\u5875\u632f\u6422\u6649\u664b\u686d\u699b\u6b84\u6d25\u6eb1\u73cd\u7468\u74a1\u755b\u75b9\u76e1\u771e\u778b\u79e6\u7e09\u7e1d\u81fb\u852f\u8897\u8a3a\u8cd1\u8eeb\u8fb0\u9032\u93ad\u9663\u9673\u9707\u4f84\u53f1\u59ea\u5ac9\u5e19\u684e\u74c6\u75be\u79e9\u7a92\u81a3\u86ed\u8cea\u8dcc\u8fed\u659f\u6715\uf9fd\u57f7\u6f57\u7ddd\u8f2f"],["f3a1","\u93f6\u96c6\u5fb5\u61f2\u6f84\u4e14\u4f98\u501f\u53c9\u55df\u5d6f\u5dee\u6b21\u6b64\u78cb\u7b9a\uf9fe\u8e49\u8eca\u906e\u6349\u643e\u7740\u7a84\u932f\u947f\u9f6a\u64b0\u6faf\u71e6\u74a8\u74da\u7ac4\u7c12\u7e82\u7cb2\u7e98\u8b9a\u8d0a\u947d\u9910\u994c\u5239\u5bdf\u64e6\u672d\u7d2e\u50ed\u53c3\u5879\u6158\u6159\u61fa\u65ac\u7ad9\u8b92\u8b96\u5009\u5021\u5275\u5531\u5a3c\u5ee0\u5f70\u6134\u655e\u660c\u6636\u66a2\u69cd\u6ec4\u6f32\u7316\u7621\u7a93\u8139\u8259\u83d6\u84bc\u50b5\u57f0\u5bc0\u5be8\u5f69\u63a1\u7826\u7db5\u83dc\u8521\u91c7\u91f5\u518a\u67f5\u7b56"],["f4a1","\u8cac\u51c4\u59bb\u60bd\u8655\u501c\uf9ff\u5254\u5c3a\u617d\u621a\u62d3\u64f2\u65a5\u6ecc\u7620\u810a\u8e60\u965f\u96bb\u4edf\u5343\u5598\u5929\u5ddd\u64c5\u6cc9\u6dfa\u7394\u7a7f\u821b\u85a6\u8ce4\u8e10\u9077\u91e7\u95e1\u9621\u97c6\u51f8\u54f2\u5586\u5fb9\u64a4\u6f88\u7db4\u8f1f\u8f4d\u9435\u50c9\u5c16\u6cbe\u6dfb\u751b\u77bb\u7c3d\u7c64\u8a79\u8ac2\u581e\u59be\u5e16\u6377\u7252\u758a\u776b\u8adc\u8cbc\u8f12\u5ef3\u6674\u6df8\u807d\u83c1\u8acb\u9751\u9bd6\ufa00\u5243\u66ff\u6d95\u6eef\u7de0\u8ae6\u902e\u905e\u9ad4\u521d\u527f\u54e8\u6194\u6284\u62db\u68a2"],["f5a1","\u6912\u695a\u6a35\u7092\u7126\u785d\u7901\u790e\u79d2\u7a0d\u8096\u8278\u82d5\u8349\u8549\u8c82\u8d85\u9162\u918b\u91ae\u4fc3\u56d1\u71ed\u77d7\u8700\u89f8\u5bf8\u5fd6\u6751\u90a8\u53e2\u585a\u5bf5\u60a4\u6181\u6460\u7e3d\u8070\u8525\u9283\u64ae\u50ac\u5d14\u6700\u589c\u62bd\u63a8\u690e\u6978\u6a1e\u6e6b\u76ba\u79cb\u82bb\u8429\u8acf\u8da8\u8ffd\u9112\u914b\u919c\u9310\u9318\u939a\u96db\u9a36\u9c0d\u4e11\u755c\u795d\u7afa\u7b51\u7bc9\u7e2e\u84c4\u8e59\u8e74\u8ef8\u9010\u6625\u693f\u7443\u51fa\u672e\u9edc\u5145\u5fe0\u6c96\u87f2\u885d\u8877\u60b4\u81b5\u8403"],["f6a1","\u8d05\u53d6\u5439\u5634\u5a36\u5c31\u708a\u7fe0\u805a\u8106\u81ed\u8da3\u9189\u9a5f\u9df2\u5074\u4ec4\u53a0\u60fb\u6e2c\u5c64\u4f88\u5024\u55e4\u5cd9\u5e5f\u6065\u6894\u6cbb\u6dc4\u71be\u75d4\u75f4\u7661\u7a1a\u7a49\u7dc7\u7dfb\u7f6e\u81f4\u86a9\u8f1c\u96c9\u99b3\u9f52\u5247\u52c5\u98ed\u89aa\u4e03\u67d2\u6f06\u4fb5\u5be2\u6795\u6c88\u6d78\u741b\u7827\u91dd\u937c\u87c4\u79e4\u7a31\u5feb\u4ed6\u54a4\u553e\u58ae\u59a5\u60f0\u6253\u62d6\u6736\u6955\u8235\u9640\u99b1\u99dd\u502c\u5353\u5544\u577c\ufa01\u6258\ufa02\u64e2\u666b\u67dd\u6fc1\u6fef\u7422\u7438\u8a17"],["f7a1","\u9438\u5451\u5606\u5766\u5f48\u619a\u6b4e\u7058\u70ad\u7dbb\u8a95\u596a\u812b\u63a2\u7708\u803d\u8caa\u5854\u642d\u69bb\u5b95\u5e11\u6e6f\ufa03\u8569\u514c\u53f0\u592a\u6020\u614b\u6b86\u6c70\u6cf0\u7b1e\u80ce\u82d4\u8dc6\u90b0\u98b1\ufa04\u64c7\u6fa4\u6491\u6504\u514e\u5410\u571f\u8a0e\u615f\u6876\ufa05\u75db\u7b52\u7d71\u901a\u5806\u69cc\u817f\u892a\u9000\u9839\u5078\u5957\u59ac\u6295\u900f\u9b2a\u615d\u7279\u95d6\u5761\u5a46\u5df4\u628a\u64ad\u64fa\u6777\u6ce2\u6d3e\u722c\u7436\u7834\u7f77\u82ad\u8ddb\u9817\u5224\u5742\u677f\u7248\u74e3\u8ca9\u8fa6\u9211"],["f8a1","\u962a\u516b\u53ed\u634c\u4f69\u5504\u6096\u6557\u6c9b\u6d7f\u724c\u72fd\u7a17\u8987\u8c9d\u5f6d\u6f8e\u70f9\u81a8\u610e\u4fbf\u504f\u6241\u7247\u7bc7\u7de8\u7fe9\u904d\u97ad\u9a19\u8cb6\u576a\u5e73\u67b0\u840d\u8a55\u5420\u5b16\u5e63\u5ee2\u5f0a\u6583\u80ba\u853d\u9589\u965b\u4f48\u5305\u530d\u530f\u5486\u54fa\u5703\u5e03\u6016\u629b\u62b1\u6355\ufa06\u6ce1\u6d66\u75b1\u7832\u80de\u812f\u82de\u8461\u84b2\u888d\u8912\u900b\u92ea\u98fd\u9b91\u5e45\u66b4\u66dd\u7011\u7206\ufa07\u4ff5\u527d\u5f6a\u6153\u6753\u6a19\u6f02\u74e2\u7968\u8868\u8c79\u98c7\u98c4\u9a43"],["f9a1","\u54c1\u7a1f\u6953\u8af7\u8c4a\u98a8\u99ae\u5f7c\u62ab\u75b2\u76ae\u88ab\u907f\u9642\u5339\u5f3c\u5fc5\u6ccc\u73cc\u7562\u758b\u7b46\u82fe\u999d\u4e4f\u903c\u4e0b\u4f55\u53a6\u590f\u5ec8\u6630\u6cb3\u7455\u8377\u8766\u8cc0\u9050\u971e\u9c15\u58d1\u5b78\u8650\u8b14\u9db4\u5bd2\u6068\u608d\u65f1\u6c57\u6f22\u6fa3\u701a\u7f55\u7ff0\u9591\u9592\u9650\u97d3\u5272\u8f44\u51fd\u542b\u54b8\u5563\u558a\u6abb\u6db5\u7dd8\u8266\u929c\u9677\u9e79\u5408\u54c8\u76d2\u86e4\u95a4\u95d4\u965c\u4ea2\u4f09\u59ee\u5ae6\u5df7\u6052\u6297\u676d\u6841\u6c86\u6e2f\u7f38\u809b\u822a"],["faa1","\ufa08\ufa09\u9805\u4ea5\u5055\u54b3\u5793\u595a\u5b69\u5bb3\u61c8\u6977\u6d77\u7023\u87f9\u89e3\u8a72\u8ae7\u9082\u99ed\u9ab8\u52be\u6838\u5016\u5e78\u674f\u8347\u884c\u4eab\u5411\u56ae\u73e6\u9115\u97ff\u9909\u9957\u9999\u5653\u589f\u865b\u8a31\u61b2\u6af6\u737b\u8ed2\u6b47\u96aa\u9a57\u5955\u7200\u8d6b\u9769\u4fd4\u5cf4\u5f26\u61f8\u665b\u6ceb\u70ab\u7384\u73b9\u73fe\u7729\u774d\u7d43\u7d62\u7e23\u8237\u8852\ufa0a\u8ce2\u9249\u986f\u5b51\u7a74\u8840\u9801\u5acc\u4fe0\u5354\u593e\u5cfd\u633e\u6d79\u72f9\u8105\u8107\u83a2\u92cf\u9830\u4ea8\u5144\u5211\u578b"],["fba1","\u5f62\u6cc2\u6ece\u7005\u7050\u70af\u7192\u73e9\u7469\u834a\u87a2\u8861\u9008\u90a2\u93a3\u99a8\u516e\u5f57\u60e0\u6167\u66b3\u8559\u8e4a\u91af\u978b\u4e4e\u4e92\u547c\u58d5\u58fa\u597d\u5cb5\u5f27\u6236\u6248\u660a\u6667\u6beb\u6d69\u6dcf\u6e56\u6ef8\u6f94\u6fe0\u6fe9\u705d\u72d0\u7425\u745a\u74e0\u7693\u795c\u7cca\u7e1e\u80e1\u82a6\u846b\u84bf\u864e\u865f\u8774\u8b77\u8c6a\u93ac\u9800\u9865\u60d1\u6216\u9177\u5a5a\u660f\u6df7\u6e3e\u743f\u9b42\u5ffd\u60da\u7b0f\u54c4\u5f18\u6c5e\u6cd3\u6d2a\u70d8\u7d05\u8679\u8a0c\u9d3b\u5316\u548c\u5b05\u6a3a\u706b\u7575"],["fca1","\u798d\u79be\u82b1\u83ef\u8a71\u8b41\u8ca8\u9774\ufa0b\u64f4\u652b\u78ba\u78bb\u7a6b\u4e38\u559a\u5950\u5ba6\u5e7b\u60a3\u63db\u6b61\u6665\u6853\u6e19\u7165\u74b0\u7d08\u9084\u9a69\u9c25\u6d3b\u6ed1\u733e\u8c41\u95ca\u51f0\u5e4c\u5fa8\u604d\u60f6\u6130\u614c\u6643\u6644\u69a5\u6cc1\u6e5f\u6ec9\u6f62\u714c\u749c\u7687\u7bc1\u7c27\u8352\u8757\u9051\u968d\u9ec3\u532f\u56de\u5efb\u5f8a\u6062\u6094\u61f7\u6666\u6703\u6a9c\u6dee\u6fae\u7070\u736a\u7e6a\u81be\u8334\u86d4\u8aa8\u8cc4\u5283\u7372\u5b96\u6a6b\u9404\u54ee\u5686\u5b5d\u6548\u6585\u66c9\u689f\u6d8d\u6dc6"],["fda1","\u723b\u80b4\u9175\u9a4d\u4faf\u5019\u539a\u540e\u543c\u5589\u55c5\u5e3f\u5f8c\u673d\u7166\u73dd\u9005\u52db\u52f3\u5864\u58ce\u7104\u718f\u71fb\u85b0\u8a13\u6688\u85a8\u55a7\u6684\u714a\u8431\u5349\u5599\u6bc1\u5f59\u5fbd\u63ee\u6689\u7147\u8af1\u8f1d\u9ebe\u4f11\u643a\u70cb\u7566\u8667\u6064\u8b4e\u9df8\u5147\u51f6\u5308\u6d36\u80f8\u9ed1\u6615\u6b23\u7098\u75d5\u5403\u5c79\u7d07\u8a16\u6b20\u6b3d\u6b46\u5438\u6070\u6d3d\u7fd5\u8208\u50d6\u51de\u559c\u566b\u56cd\u59ec\u5b09\u5e0c\u6199\u6198\u6231\u665e\u66e6\u7199\u71b9\u71ba\u72a7\u79a7\u7a00\u7fb2\u8a70"]]')},72324:function(Y){"use strict";Y.exports=JSON.parse('[["0","\\u0000",127],["a140","\u3000\uff0c\u3001\u3002\uff0e\u2027\uff1b\uff1a\uff1f\uff01\ufe30\u2026\u2025\ufe50\ufe51\ufe52\xb7\ufe54\ufe55\ufe56\ufe57\uff5c\u2013\ufe31\u2014\ufe33\u2574\ufe34\ufe4f\uff08\uff09\ufe35\ufe36\uff5b\uff5d\ufe37\ufe38\u3014\u3015\ufe39\ufe3a\u3010\u3011\ufe3b\ufe3c\u300a\u300b\ufe3d\ufe3e\u3008\u3009\ufe3f\ufe40\u300c\u300d\ufe41\ufe42\u300e\u300f\ufe43\ufe44\ufe59\ufe5a"],["a1a1","\ufe5b\ufe5c\ufe5d\ufe5e\u2018\u2019\u201c\u201d\u301d\u301e\u2035\u2032\uff03\uff06\uff0a\u203b\xa7\u3003\u25cb\u25cf\u25b3\u25b2\u25ce\u2606\u2605\u25c7\u25c6\u25a1\u25a0\u25bd\u25bc\u32a3\u2105\xaf\uffe3\uff3f\u02cd\ufe49\ufe4a\ufe4d\ufe4e\ufe4b\ufe4c\ufe5f\ufe60\ufe61\uff0b\uff0d\xd7\xf7\xb1\u221a\uff1c\uff1e\uff1d\u2266\u2267\u2260\u221e\u2252\u2261\ufe62",4,"\uff5e\u2229\u222a\u22a5\u2220\u221f\u22bf\u33d2\u33d1\u222b\u222e\u2235\u2234\u2640\u2642\u2295\u2299\u2191\u2193\u2190\u2192\u2196\u2197\u2199\u2198\u2225\u2223\uff0f"],["a240","\uff3c\u2215\ufe68\uff04\uffe5\u3012\uffe0\uffe1\uff05\uff20\u2103\u2109\ufe69\ufe6a\ufe6b\u33d5\u339c\u339d\u339e\u33ce\u33a1\u338e\u338f\u33c4\xb0\u5159\u515b\u515e\u515d\u5161\u5163\u55e7\u74e9\u7cce\u2581",7,"\u258f\u258e\u258d\u258c\u258b\u258a\u2589\u253c\u2534\u252c\u2524\u251c\u2594\u2500\u2502\u2595\u250c\u2510\u2514\u2518\u256d"],["a2a1","\u256e\u2570\u256f\u2550\u255e\u256a\u2561\u25e2\u25e3\u25e5\u25e4\u2571\u2572\u2573\uff10",9,"\u2160",9,"\u3021",8,"\u5341\u5344\u5345\uff21",25,"\uff41",21],["a340","\uff57\uff58\uff59\uff5a\u0391",16,"\u03a3",6,"\u03b1",16,"\u03c3",6,"\u3105",10],["a3a1","\u3110",25,"\u02d9\u02c9\u02ca\u02c7\u02cb"],["a3e1","\u20ac"],["a440","\u4e00\u4e59\u4e01\u4e03\u4e43\u4e5d\u4e86\u4e8c\u4eba\u513f\u5165\u516b\u51e0\u5200\u5201\u529b\u5315\u5341\u535c\u53c8\u4e09\u4e0b\u4e08\u4e0a\u4e2b\u4e38\u51e1\u4e45\u4e48\u4e5f\u4e5e\u4e8e\u4ea1\u5140\u5203\u52fa\u5343\u53c9\u53e3\u571f\u58eb\u5915\u5927\u5973\u5b50\u5b51\u5b53\u5bf8\u5c0f\u5c22\u5c38\u5c71\u5ddd\u5de5\u5df1\u5df2\u5df3\u5dfe\u5e72\u5efe\u5f0b\u5f13\u624d"],["a4a1","\u4e11\u4e10\u4e0d\u4e2d\u4e30\u4e39\u4e4b\u5c39\u4e88\u4e91\u4e95\u4e92\u4e94\u4ea2\u4ec1\u4ec0\u4ec3\u4ec6\u4ec7\u4ecd\u4eca\u4ecb\u4ec4\u5143\u5141\u5167\u516d\u516e\u516c\u5197\u51f6\u5206\u5207\u5208\u52fb\u52fe\u52ff\u5316\u5339\u5348\u5347\u5345\u535e\u5384\u53cb\u53ca\u53cd\u58ec\u5929\u592b\u592a\u592d\u5b54\u5c11\u5c24\u5c3a\u5c6f\u5df4\u5e7b\u5eff\u5f14\u5f15\u5fc3\u6208\u6236\u624b\u624e\u652f\u6587\u6597\u65a4\u65b9\u65e5\u66f0\u6708\u6728\u6b20\u6b62\u6b79\u6bcb\u6bd4\u6bdb\u6c0f\u6c34\u706b\u722a\u7236\u723b\u7247\u7259\u725b\u72ac\u738b\u4e19"],["a540","\u4e16\u4e15\u4e14\u4e18\u4e3b\u4e4d\u4e4f\u4e4e\u4ee5\u4ed8\u4ed4\u4ed5\u4ed6\u4ed7\u4ee3\u4ee4\u4ed9\u4ede\u5145\u5144\u5189\u518a\u51ac\u51f9\u51fa\u51f8\u520a\u52a0\u529f\u5305\u5306\u5317\u531d\u4edf\u534a\u5349\u5361\u5360\u536f\u536e\u53bb\u53ef\u53e4\u53f3\u53ec\u53ee\u53e9\u53e8\u53fc\u53f8\u53f5\u53eb\u53e6\u53ea\u53f2\u53f1\u53f0\u53e5\u53ed\u53fb\u56db\u56da\u5916"],["a5a1","\u592e\u5931\u5974\u5976\u5b55\u5b83\u5c3c\u5de8\u5de7\u5de6\u5e02\u5e03\u5e73\u5e7c\u5f01\u5f18\u5f17\u5fc5\u620a\u6253\u6254\u6252\u6251\u65a5\u65e6\u672e\u672c\u672a\u672b\u672d\u6b63\u6bcd\u6c11\u6c10\u6c38\u6c41\u6c40\u6c3e\u72af\u7384\u7389\u74dc\u74e6\u7518\u751f\u7528\u7529\u7530\u7531\u7532\u7533\u758b\u767d\u76ae\u76bf\u76ee\u77db\u77e2\u77f3\u793a\u79be\u7a74\u7acb\u4e1e\u4e1f\u4e52\u4e53\u4e69\u4e99\u4ea4\u4ea6\u4ea5\u4eff\u4f09\u4f19\u4f0a\u4f15\u4f0d\u4f10\u4f11\u4f0f\u4ef2\u4ef6\u4efb\u4ef0\u4ef3\u4efd\u4f01\u4f0b\u5149\u5147\u5146\u5148\u5168"],["a640","\u5171\u518d\u51b0\u5217\u5211\u5212\u520e\u5216\u52a3\u5308\u5321\u5320\u5370\u5371\u5409\u540f\u540c\u540a\u5410\u5401\u540b\u5404\u5411\u540d\u5408\u5403\u540e\u5406\u5412\u56e0\u56de\u56dd\u5733\u5730\u5728\u572d\u572c\u572f\u5729\u5919\u591a\u5937\u5938\u5984\u5978\u5983\u597d\u5979\u5982\u5981\u5b57\u5b58\u5b87\u5b88\u5b85\u5b89\u5bfa\u5c16\u5c79\u5dde\u5e06\u5e76\u5e74"],["a6a1","\u5f0f\u5f1b\u5fd9\u5fd6\u620e\u620c\u620d\u6210\u6263\u625b\u6258\u6536\u65e9\u65e8\u65ec\u65ed\u66f2\u66f3\u6709\u673d\u6734\u6731\u6735\u6b21\u6b64\u6b7b\u6c16\u6c5d\u6c57\u6c59\u6c5f\u6c60\u6c50\u6c55\u6c61\u6c5b\u6c4d\u6c4e\u7070\u725f\u725d\u767e\u7af9\u7c73\u7cf8\u7f36\u7f8a\u7fbd\u8001\u8003\u800c\u8012\u8033\u807f\u8089\u808b\u808c\u81e3\u81ea\u81f3\u81fc\u820c\u821b\u821f\u826e\u8272\u827e\u866b\u8840\u884c\u8863\u897f\u9621\u4e32\u4ea8\u4f4d\u4f4f\u4f47\u4f57\u4f5e\u4f34\u4f5b\u4f55\u4f30\u4f50\u4f51\u4f3d\u4f3a\u4f38\u4f43\u4f54\u4f3c\u4f46\u4f63"],["a740","\u4f5c\u4f60\u4f2f\u4f4e\u4f36\u4f59\u4f5d\u4f48\u4f5a\u514c\u514b\u514d\u5175\u51b6\u51b7\u5225\u5224\u5229\u522a\u5228\u52ab\u52a9\u52aa\u52ac\u5323\u5373\u5375\u541d\u542d\u541e\u543e\u5426\u544e\u5427\u5446\u5443\u5433\u5448\u5442\u541b\u5429\u544a\u5439\u543b\u5438\u542e\u5435\u5436\u5420\u543c\u5440\u5431\u542b\u541f\u542c\u56ea\u56f0\u56e4\u56eb\u574a\u5751\u5740\u574d"],["a7a1","\u5747\u574e\u573e\u5750\u574f\u573b\u58ef\u593e\u599d\u5992\u59a8\u599e\u59a3\u5999\u5996\u598d\u59a4\u5993\u598a\u59a5\u5b5d\u5b5c\u5b5a\u5b5b\u5b8c\u5b8b\u5b8f\u5c2c\u5c40\u5c41\u5c3f\u5c3e\u5c90\u5c91\u5c94\u5c8c\u5deb\u5e0c\u5e8f\u5e87\u5e8a\u5ef7\u5f04\u5f1f\u5f64\u5f62\u5f77\u5f79\u5fd8\u5fcc\u5fd7\u5fcd\u5ff1\u5feb\u5ff8\u5fea\u6212\u6211\u6284\u6297\u6296\u6280\u6276\u6289\u626d\u628a\u627c\u627e\u6279\u6273\u6292\u626f\u6298\u626e\u6295\u6293\u6291\u6286\u6539\u653b\u6538\u65f1\u66f4\u675f\u674e\u674f\u6750\u6751\u675c\u6756\u675e\u6749\u6746\u6760"],["a840","\u6753\u6757\u6b65\u6bcf\u6c42\u6c5e\u6c99\u6c81\u6c88\u6c89\u6c85\u6c9b\u6c6a\u6c7a\u6c90\u6c70\u6c8c\u6c68\u6c96\u6c92\u6c7d\u6c83\u6c72\u6c7e\u6c74\u6c86\u6c76\u6c8d\u6c94\u6c98\u6c82\u7076\u707c\u707d\u7078\u7262\u7261\u7260\u72c4\u72c2\u7396\u752c\u752b\u7537\u7538\u7682\u76ef\u77e3\u79c1\u79c0\u79bf\u7a76\u7cfb\u7f55\u8096\u8093\u809d\u8098\u809b\u809a\u80b2\u826f\u8292"],["a8a1","\u828b\u828d\u898b\u89d2\u8a00\u8c37\u8c46\u8c55\u8c9d\u8d64\u8d70\u8db3\u8eab\u8eca\u8f9b\u8fb0\u8fc2\u8fc6\u8fc5\u8fc4\u5de1\u9091\u90a2\u90aa\u90a6\u90a3\u9149\u91c6\u91cc\u9632\u962e\u9631\u962a\u962c\u4e26\u4e56\u4e73\u4e8b\u4e9b\u4e9e\u4eab\u4eac\u4f6f\u4f9d\u4f8d\u4f73\u4f7f\u4f6c\u4f9b\u4f8b\u4f86\u4f83\u4f70\u4f75\u4f88\u4f69\u4f7b\u4f96\u4f7e\u4f8f\u4f91\u4f7a\u5154\u5152\u5155\u5169\u5177\u5176\u5178\u51bd\u51fd\u523b\u5238\u5237\u523a\u5230\u522e\u5236\u5241\u52be\u52bb\u5352\u5354\u5353\u5351\u5366\u5377\u5378\u5379\u53d6\u53d4\u53d7\u5473\u5475"],["a940","\u5496\u5478\u5495\u5480\u547b\u5477\u5484\u5492\u5486\u547c\u5490\u5471\u5476\u548c\u549a\u5462\u5468\u548b\u547d\u548e\u56fa\u5783\u5777\u576a\u5769\u5761\u5766\u5764\u577c\u591c\u5949\u5947\u5948\u5944\u5954\u59be\u59bb\u59d4\u59b9\u59ae\u59d1\u59c6\u59d0\u59cd\u59cb\u59d3\u59ca\u59af\u59b3\u59d2\u59c5\u5b5f\u5b64\u5b63\u5b97\u5b9a\u5b98\u5b9c\u5b99\u5b9b\u5c1a\u5c48\u5c45"],["a9a1","\u5c46\u5cb7\u5ca1\u5cb8\u5ca9\u5cab\u5cb1\u5cb3\u5e18\u5e1a\u5e16\u5e15\u5e1b\u5e11\u5e78\u5e9a\u5e97\u5e9c\u5e95\u5e96\u5ef6\u5f26\u5f27\u5f29\u5f80\u5f81\u5f7f\u5f7c\u5fdd\u5fe0\u5ffd\u5ff5\u5fff\u600f\u6014\u602f\u6035\u6016\u602a\u6015\u6021\u6027\u6029\u602b\u601b\u6216\u6215\u623f\u623e\u6240\u627f\u62c9\u62cc\u62c4\u62bf\u62c2\u62b9\u62d2\u62db\u62ab\u62d3\u62d4\u62cb\u62c8\u62a8\u62bd\u62bc\u62d0\u62d9\u62c7\u62cd\u62b5\u62da\u62b1\u62d8\u62d6\u62d7\u62c6\u62ac\u62ce\u653e\u65a7\u65bc\u65fa\u6614\u6613\u660c\u6606\u6602\u660e\u6600\u660f\u6615\u660a"],["aa40","\u6607\u670d\u670b\u676d\u678b\u6795\u6771\u679c\u6773\u6777\u6787\u679d\u6797\u676f\u6770\u677f\u6789\u677e\u6790\u6775\u679a\u6793\u677c\u676a\u6772\u6b23\u6b66\u6b67\u6b7f\u6c13\u6c1b\u6ce3\u6ce8\u6cf3\u6cb1\u6ccc\u6ce5\u6cb3\u6cbd\u6cbe\u6cbc\u6ce2\u6cab\u6cd5\u6cd3\u6cb8\u6cc4\u6cb9\u6cc1\u6cae\u6cd7\u6cc5\u6cf1\u6cbf\u6cbb\u6ce1\u6cdb\u6cca\u6cac\u6cef\u6cdc\u6cd6\u6ce0"],["aaa1","\u7095\u708e\u7092\u708a\u7099\u722c\u722d\u7238\u7248\u7267\u7269\u72c0\u72ce\u72d9\u72d7\u72d0\u73a9\u73a8\u739f\u73ab\u73a5\u753d\u759d\u7599\u759a\u7684\u76c2\u76f2\u76f4\u77e5\u77fd\u793e\u7940\u7941\u79c9\u79c8\u7a7a\u7a79\u7afa\u7cfe\u7f54\u7f8c\u7f8b\u8005\u80ba\u80a5\u80a2\u80b1\u80a1\u80ab\u80a9\u80b4\u80aa\u80af\u81e5\u81fe\u820d\u82b3\u829d\u8299\u82ad\u82bd\u829f\u82b9\u82b1\u82ac\u82a5\u82af\u82b8\u82a3\u82b0\u82be\u82b7\u864e\u8671\u521d\u8868\u8ecb\u8fce\u8fd4\u8fd1\u90b5\u90b8\u90b1\u90b6\u91c7\u91d1\u9577\u9580\u961c\u9640\u963f\u963b\u9644"],["ab40","\u9642\u96b9\u96e8\u9752\u975e\u4e9f\u4ead\u4eae\u4fe1\u4fb5\u4faf\u4fbf\u4fe0\u4fd1\u4fcf\u4fdd\u4fc3\u4fb6\u4fd8\u4fdf\u4fca\u4fd7\u4fae\u4fd0\u4fc4\u4fc2\u4fda\u4fce\u4fde\u4fb7\u5157\u5192\u5191\u51a0\u524e\u5243\u524a\u524d\u524c\u524b\u5247\u52c7\u52c9\u52c3\u52c1\u530d\u5357\u537b\u539a\u53db\u54ac\u54c0\u54a8\u54ce\u54c9\u54b8\u54a6\u54b3\u54c7\u54c2\u54bd\u54aa\u54c1"],["aba1","\u54c4\u54c8\u54af\u54ab\u54b1\u54bb\u54a9\u54a7\u54bf\u56ff\u5782\u578b\u57a0\u57a3\u57a2\u57ce\u57ae\u5793\u5955\u5951\u594f\u594e\u5950\u59dc\u59d8\u59ff\u59e3\u59e8\u5a03\u59e5\u59ea\u59da\u59e6\u5a01\u59fb\u5b69\u5ba3\u5ba6\u5ba4\u5ba2\u5ba5\u5c01\u5c4e\u5c4f\u5c4d\u5c4b\u5cd9\u5cd2\u5df7\u5e1d\u5e25\u5e1f\u5e7d\u5ea0\u5ea6\u5efa\u5f08\u5f2d\u5f65\u5f88\u5f85\u5f8a\u5f8b\u5f87\u5f8c\u5f89\u6012\u601d\u6020\u6025\u600e\u6028\u604d\u6070\u6068\u6062\u6046\u6043\u606c\u606b\u606a\u6064\u6241\u62dc\u6316\u6309\u62fc\u62ed\u6301\u62ee\u62fd\u6307\u62f1\u62f7"],["ac40","\u62ef\u62ec\u62fe\u62f4\u6311\u6302\u653f\u6545\u65ab\u65bd\u65e2\u6625\u662d\u6620\u6627\u662f\u661f\u6628\u6631\u6624\u66f7\u67ff\u67d3\u67f1\u67d4\u67d0\u67ec\u67b6\u67af\u67f5\u67e9\u67ef\u67c4\u67d1\u67b4\u67da\u67e5\u67b8\u67cf\u67de\u67f3\u67b0\u67d9\u67e2\u67dd\u67d2\u6b6a\u6b83\u6b86\u6bb5\u6bd2\u6bd7\u6c1f\u6cc9\u6d0b\u6d32\u6d2a\u6d41\u6d25\u6d0c\u6d31\u6d1e\u6d17"],["aca1","\u6d3b\u6d3d\u6d3e\u6d36\u6d1b\u6cf5\u6d39\u6d27\u6d38\u6d29\u6d2e\u6d35\u6d0e\u6d2b\u70ab\u70ba\u70b3\u70ac\u70af\u70ad\u70b8\u70ae\u70a4\u7230\u7272\u726f\u7274\u72e9\u72e0\u72e1\u73b7\u73ca\u73bb\u73b2\u73cd\u73c0\u73b3\u751a\u752d\u754f\u754c\u754e\u754b\u75ab\u75a4\u75a5\u75a2\u75a3\u7678\u7686\u7687\u7688\u76c8\u76c6\u76c3\u76c5\u7701\u76f9\u76f8\u7709\u770b\u76fe\u76fc\u7707\u77dc\u7802\u7814\u780c\u780d\u7946\u7949\u7948\u7947\u79b9\u79ba\u79d1\u79d2\u79cb\u7a7f\u7a81\u7aff\u7afd\u7c7d\u7d02\u7d05\u7d00\u7d09\u7d07\u7d04\u7d06\u7f38\u7f8e\u7fbf\u8004"],["ad40","\u8010\u800d\u8011\u8036\u80d6\u80e5\u80da\u80c3\u80c4\u80cc\u80e1\u80db\u80ce\u80de\u80e4\u80dd\u81f4\u8222\u82e7\u8303\u8305\u82e3\u82db\u82e6\u8304\u82e5\u8302\u8309\u82d2\u82d7\u82f1\u8301\u82dc\u82d4\u82d1\u82de\u82d3\u82df\u82ef\u8306\u8650\u8679\u867b\u867a\u884d\u886b\u8981\u89d4\u8a08\u8a02\u8a03\u8c9e\u8ca0\u8d74\u8d73\u8db4\u8ecd\u8ecc\u8ff0\u8fe6\u8fe2\u8fea\u8fe5"],["ada1","\u8fed\u8feb\u8fe4\u8fe8\u90ca\u90ce\u90c1\u90c3\u914b\u914a\u91cd\u9582\u9650\u964b\u964c\u964d\u9762\u9769\u97cb\u97ed\u97f3\u9801\u98a8\u98db\u98df\u9996\u9999\u4e58\u4eb3\u500c\u500d\u5023\u4fef\u5026\u5025\u4ff8\u5029\u5016\u5006\u503c\u501f\u501a\u5012\u5011\u4ffa\u5000\u5014\u5028\u4ff1\u5021\u500b\u5019\u5018\u4ff3\u4fee\u502d\u502a\u4ffe\u502b\u5009\u517c\u51a4\u51a5\u51a2\u51cd\u51cc\u51c6\u51cb\u5256\u525c\u5254\u525b\u525d\u532a\u537f\u539f\u539d\u53df\u54e8\u5510\u5501\u5537\u54fc\u54e5\u54f2\u5506\u54fa\u5514\u54e9\u54ed\u54e1\u5509\u54ee\u54ea"],["ae40","\u54e6\u5527\u5507\u54fd\u550f\u5703\u5704\u57c2\u57d4\u57cb\u57c3\u5809\u590f\u5957\u5958\u595a\u5a11\u5a18\u5a1c\u5a1f\u5a1b\u5a13\u59ec\u5a20\u5a23\u5a29\u5a25\u5a0c\u5a09\u5b6b\u5c58\u5bb0\u5bb3\u5bb6\u5bb4\u5bae\u5bb5\u5bb9\u5bb8\u5c04\u5c51\u5c55\u5c50\u5ced\u5cfd\u5cfb\u5cea\u5ce8\u5cf0\u5cf6\u5d01\u5cf4\u5dee\u5e2d\u5e2b\u5eab\u5ead\u5ea7\u5f31\u5f92\u5f91\u5f90\u6059"],["aea1","\u6063\u6065\u6050\u6055\u606d\u6069\u606f\u6084\u609f\u609a\u608d\u6094\u608c\u6085\u6096\u6247\u62f3\u6308\u62ff\u634e\u633e\u632f\u6355\u6342\u6346\u634f\u6349\u633a\u6350\u633d\u632a\u632b\u6328\u634d\u634c\u6548\u6549\u6599\u65c1\u65c5\u6642\u6649\u664f\u6643\u6652\u664c\u6645\u6641\u66f8\u6714\u6715\u6717\u6821\u6838\u6848\u6846\u6853\u6839\u6842\u6854\u6829\u68b3\u6817\u684c\u6851\u683d\u67f4\u6850\u6840\u683c\u6843\u682a\u6845\u6813\u6818\u6841\u6b8a\u6b89\u6bb7\u6c23\u6c27\u6c28\u6c26\u6c24\u6cf0\u6d6a\u6d95\u6d88\u6d87\u6d66\u6d78\u6d77\u6d59\u6d93"],["af40","\u6d6c\u6d89\u6d6e\u6d5a\u6d74\u6d69\u6d8c\u6d8a\u6d79\u6d85\u6d65\u6d94\u70ca\u70d8\u70e4\u70d9\u70c8\u70cf\u7239\u7279\u72fc\u72f9\u72fd\u72f8\u72f7\u7386\u73ed\u7409\u73ee\u73e0\u73ea\u73de\u7554\u755d\u755c\u755a\u7559\u75be\u75c5\u75c7\u75b2\u75b3\u75bd\u75bc\u75b9\u75c2\u75b8\u768b\u76b0\u76ca\u76cd\u76ce\u7729\u771f\u7720\u7728\u77e9\u7830\u7827\u7838\u781d\u7834\u7837"],["afa1","\u7825\u782d\u7820\u781f\u7832\u7955\u7950\u7960\u795f\u7956\u795e\u795d\u7957\u795a\u79e4\u79e3\u79e7\u79df\u79e6\u79e9\u79d8\u7a84\u7a88\u7ad9\u7b06\u7b11\u7c89\u7d21\u7d17\u7d0b\u7d0a\u7d20\u7d22\u7d14\u7d10\u7d15\u7d1a\u7d1c\u7d0d\u7d19\u7d1b\u7f3a\u7f5f\u7f94\u7fc5\u7fc1\u8006\u8018\u8015\u8019\u8017\u803d\u803f\u80f1\u8102\u80f0\u8105\u80ed\u80f4\u8106\u80f8\u80f3\u8108\u80fd\u810a\u80fc\u80ef\u81ed\u81ec\u8200\u8210\u822a\u822b\u8228\u822c\u82bb\u832b\u8352\u8354\u834a\u8338\u8350\u8349\u8335\u8334\u834f\u8332\u8339\u8336\u8317\u8340\u8331\u8328\u8343"],["b040","\u8654\u868a\u86aa\u8693\u86a4\u86a9\u868c\u86a3\u869c\u8870\u8877\u8881\u8882\u887d\u8879\u8a18\u8a10\u8a0e\u8a0c\u8a15\u8a0a\u8a17\u8a13\u8a16\u8a0f\u8a11\u8c48\u8c7a\u8c79\u8ca1\u8ca2\u8d77\u8eac\u8ed2\u8ed4\u8ecf\u8fb1\u9001\u9006\u8ff7\u9000\u8ffa\u8ff4\u9003\u8ffd\u9005\u8ff8\u9095\u90e1\u90dd\u90e2\u9152\u914d\u914c\u91d8\u91dd\u91d7\u91dc\u91d9\u9583\u9662\u9663\u9661"],["b0a1","\u965b\u965d\u9664\u9658\u965e\u96bb\u98e2\u99ac\u9aa8\u9ad8\u9b25\u9b32\u9b3c\u4e7e\u507a\u507d\u505c\u5047\u5043\u504c\u505a\u5049\u5065\u5076\u504e\u5055\u5075\u5074\u5077\u504f\u500f\u506f\u506d\u515c\u5195\u51f0\u526a\u526f\u52d2\u52d9\u52d8\u52d5\u5310\u530f\u5319\u533f\u5340\u533e\u53c3\u66fc\u5546\u556a\u5566\u5544\u555e\u5561\u5543\u554a\u5531\u5556\u554f\u5555\u552f\u5564\u5538\u552e\u555c\u552c\u5563\u5533\u5541\u5557\u5708\u570b\u5709\u57df\u5805\u580a\u5806\u57e0\u57e4\u57fa\u5802\u5835\u57f7\u57f9\u5920\u5962\u5a36\u5a41\u5a49\u5a66\u5a6a\u5a40"],["b140","\u5a3c\u5a62\u5a5a\u5a46\u5a4a\u5b70\u5bc7\u5bc5\u5bc4\u5bc2\u5bbf\u5bc6\u5c09\u5c08\u5c07\u5c60\u5c5c\u5c5d\u5d07\u5d06\u5d0e\u5d1b\u5d16\u5d22\u5d11\u5d29\u5d14\u5d19\u5d24\u5d27\u5d17\u5de2\u5e38\u5e36\u5e33\u5e37\u5eb7\u5eb8\u5eb6\u5eb5\u5ebe\u5f35\u5f37\u5f57\u5f6c\u5f69\u5f6b\u5f97\u5f99\u5f9e\u5f98\u5fa1\u5fa0\u5f9c\u607f\u60a3\u6089\u60a0\u60a8\u60cb\u60b4\u60e6\u60bd"],["b1a1","\u60c5\u60bb\u60b5\u60dc\u60bc\u60d8\u60d5\u60c6\u60df\u60b8\u60da\u60c7\u621a\u621b\u6248\u63a0\u63a7\u6372\u6396\u63a2\u63a5\u6377\u6367\u6398\u63aa\u6371\u63a9\u6389\u6383\u639b\u636b\u63a8\u6384\u6388\u6399\u63a1\u63ac\u6392\u638f\u6380\u637b\u6369\u6368\u637a\u655d\u6556\u6551\u6559\u6557\u555f\u654f\u6558\u6555\u6554\u659c\u659b\u65ac\u65cf\u65cb\u65cc\u65ce\u665d\u665a\u6664\u6668\u6666\u665e\u66f9\u52d7\u671b\u6881\u68af\u68a2\u6893\u68b5\u687f\u6876\u68b1\u68a7\u6897\u68b0\u6883\u68c4\u68ad\u6886\u6885\u6894\u689d\u68a8\u689f\u68a1\u6882\u6b32\u6bba"],["b240","\u6beb\u6bec\u6c2b\u6d8e\u6dbc\u6df3\u6dd9\u6db2\u6de1\u6dcc\u6de4\u6dfb\u6dfa\u6e05\u6dc7\u6dcb\u6daf\u6dd1\u6dae\u6dde\u6df9\u6db8\u6df7\u6df5\u6dc5\u6dd2\u6e1a\u6db5\u6dda\u6deb\u6dd8\u6dea\u6df1\u6dee\u6de8\u6dc6\u6dc4\u6daa\u6dec\u6dbf\u6de6\u70f9\u7109\u710a\u70fd\u70ef\u723d\u727d\u7281\u731c\u731b\u7316\u7313\u7319\u7387\u7405\u740a\u7403\u7406\u73fe\u740d\u74e0\u74f6"],["b2a1","\u74f7\u751c\u7522\u7565\u7566\u7562\u7570\u758f\u75d4\u75d5\u75b5\u75ca\u75cd\u768e\u76d4\u76d2\u76db\u7737\u773e\u773c\u7736\u7738\u773a\u786b\u7843\u784e\u7965\u7968\u796d\u79fb\u7a92\u7a95\u7b20\u7b28\u7b1b\u7b2c\u7b26\u7b19\u7b1e\u7b2e\u7c92\u7c97\u7c95\u7d46\u7d43\u7d71\u7d2e\u7d39\u7d3c\u7d40\u7d30\u7d33\u7d44\u7d2f\u7d42\u7d32\u7d31\u7f3d\u7f9e\u7f9a\u7fcc\u7fce\u7fd2\u801c\u804a\u8046\u812f\u8116\u8123\u812b\u8129\u8130\u8124\u8202\u8235\u8237\u8236\u8239\u838e\u839e\u8398\u8378\u83a2\u8396\u83bd\u83ab\u8392\u838a\u8393\u8389\u83a0\u8377\u837b\u837c"],["b340","\u8386\u83a7\u8655\u5f6a\u86c7\u86c0\u86b6\u86c4\u86b5\u86c6\u86cb\u86b1\u86af\u86c9\u8853\u889e\u8888\u88ab\u8892\u8896\u888d\u888b\u8993\u898f\u8a2a\u8a1d\u8a23\u8a25\u8a31\u8a2d\u8a1f\u8a1b\u8a22\u8c49\u8c5a\u8ca9\u8cac\u8cab\u8ca8\u8caa\u8ca7\u8d67\u8d66\u8dbe\u8dba\u8edb\u8edf\u9019\u900d\u901a\u9017\u9023\u901f\u901d\u9010\u9015\u901e\u9020\u900f\u9022\u9016\u901b\u9014"],["b3a1","\u90e8\u90ed\u90fd\u9157\u91ce\u91f5\u91e6\u91e3\u91e7\u91ed\u91e9\u9589\u966a\u9675\u9673\u9678\u9670\u9674\u9676\u9677\u966c\u96c0\u96ea\u96e9\u7ae0\u7adf\u9802\u9803\u9b5a\u9ce5\u9e75\u9e7f\u9ea5\u9ebb\u50a2\u508d\u5085\u5099\u5091\u5080\u5096\u5098\u509a\u6700\u51f1\u5272\u5274\u5275\u5269\u52de\u52dd\u52db\u535a\u53a5\u557b\u5580\u55a7\u557c\u558a\u559d\u5598\u5582\u559c\u55aa\u5594\u5587\u558b\u5583\u55b3\u55ae\u559f\u553e\u55b2\u559a\u55bb\u55ac\u55b1\u557e\u5589\u55ab\u5599\u570d\u582f\u582a\u5834\u5824\u5830\u5831\u5821\u581d\u5820\u58f9\u58fa\u5960"],["b440","\u5a77\u5a9a\u5a7f\u5a92\u5a9b\u5aa7\u5b73\u5b71\u5bd2\u5bcc\u5bd3\u5bd0\u5c0a\u5c0b\u5c31\u5d4c\u5d50\u5d34\u5d47\u5dfd\u5e45\u5e3d\u5e40\u5e43\u5e7e\u5eca\u5ec1\u5ec2\u5ec4\u5f3c\u5f6d\u5fa9\u5faa\u5fa8\u60d1\u60e1\u60b2\u60b6\u60e0\u611c\u6123\u60fa\u6115\u60f0\u60fb\u60f4\u6168\u60f1\u610e\u60f6\u6109\u6100\u6112\u621f\u6249\u63a3\u638c\u63cf\u63c0\u63e9\u63c9\u63c6\u63cd"],["b4a1","\u63d2\u63e3\u63d0\u63e1\u63d6\u63ed\u63ee\u6376\u63f4\u63ea\u63db\u6452\u63da\u63f9\u655e\u6566\u6562\u6563\u6591\u6590\u65af\u666e\u6670\u6674\u6676\u666f\u6691\u667a\u667e\u6677\u66fe\u66ff\u671f\u671d\u68fa\u68d5\u68e0\u68d8\u68d7\u6905\u68df\u68f5\u68ee\u68e7\u68f9\u68d2\u68f2\u68e3\u68cb\u68cd\u690d\u6912\u690e\u68c9\u68da\u696e\u68fb\u6b3e\u6b3a\u6b3d\u6b98\u6b96\u6bbc\u6bef\u6c2e\u6c2f\u6c2c\u6e2f\u6e38\u6e54\u6e21\u6e32\u6e67\u6e4a\u6e20\u6e25\u6e23\u6e1b\u6e5b\u6e58\u6e24\u6e56\u6e6e\u6e2d\u6e26\u6e6f\u6e34\u6e4d\u6e3a\u6e2c\u6e43\u6e1d\u6e3e\u6ecb"],["b540","\u6e89\u6e19\u6e4e\u6e63\u6e44\u6e72\u6e69\u6e5f\u7119\u711a\u7126\u7130\u7121\u7136\u716e\u711c\u724c\u7284\u7280\u7336\u7325\u7334\u7329\u743a\u742a\u7433\u7422\u7425\u7435\u7436\u7434\u742f\u741b\u7426\u7428\u7525\u7526\u756b\u756a\u75e2\u75db\u75e3\u75d9\u75d8\u75de\u75e0\u767b\u767c\u7696\u7693\u76b4\u76dc\u774f\u77ed\u785d\u786c\u786f\u7a0d\u7a08\u7a0b\u7a05\u7a00\u7a98"],["b5a1","\u7a97\u7a96\u7ae5\u7ae3\u7b49\u7b56\u7b46\u7b50\u7b52\u7b54\u7b4d\u7b4b\u7b4f\u7b51\u7c9f\u7ca5\u7d5e\u7d50\u7d68\u7d55\u7d2b\u7d6e\u7d72\u7d61\u7d66\u7d62\u7d70\u7d73\u5584\u7fd4\u7fd5\u800b\u8052\u8085\u8155\u8154\u814b\u8151\u814e\u8139\u8146\u813e\u814c\u8153\u8174\u8212\u821c\u83e9\u8403\u83f8\u840d\u83e0\u83c5\u840b\u83c1\u83ef\u83f1\u83f4\u8457\u840a\u83f0\u840c\u83cc\u83fd\u83f2\u83ca\u8438\u840e\u8404\u83dc\u8407\u83d4\u83df\u865b\u86df\u86d9\u86ed\u86d4\u86db\u86e4\u86d0\u86de\u8857\u88c1\u88c2\u88b1\u8983\u8996\u8a3b\u8a60\u8a55\u8a5e\u8a3c\u8a41"],["b640","\u8a54\u8a5b\u8a50\u8a46\u8a34\u8a3a\u8a36\u8a56\u8c61\u8c82\u8caf\u8cbc\u8cb3\u8cbd\u8cc1\u8cbb\u8cc0\u8cb4\u8cb7\u8cb6\u8cbf\u8cb8\u8d8a\u8d85\u8d81\u8dce\u8ddd\u8dcb\u8dda\u8dd1\u8dcc\u8ddb\u8dc6\u8efb\u8ef8\u8efc\u8f9c\u902e\u9035\u9031\u9038\u9032\u9036\u9102\u90f5\u9109\u90fe\u9163\u9165\u91cf\u9214\u9215\u9223\u9209\u921e\u920d\u9210\u9207\u9211\u9594\u958f\u958b\u9591"],["b6a1","\u9593\u9592\u958e\u968a\u968e\u968b\u967d\u9685\u9686\u968d\u9672\u9684\u96c1\u96c5\u96c4\u96c6\u96c7\u96ef\u96f2\u97cc\u9805\u9806\u9808\u98e7\u98ea\u98ef\u98e9\u98f2\u98ed\u99ae\u99ad\u9ec3\u9ecd\u9ed1\u4e82\u50ad\u50b5\u50b2\u50b3\u50c5\u50be\u50ac\u50b7\u50bb\u50af\u50c7\u527f\u5277\u527d\u52df\u52e6\u52e4\u52e2\u52e3\u532f\u55df\u55e8\u55d3\u55e6\u55ce\u55dc\u55c7\u55d1\u55e3\u55e4\u55ef\u55da\u55e1\u55c5\u55c6\u55e5\u55c9\u5712\u5713\u585e\u5851\u5858\u5857\u585a\u5854\u586b\u584c\u586d\u584a\u5862\u5852\u584b\u5967\u5ac1\u5ac9\u5acc\u5abe\u5abd\u5abc"],["b740","\u5ab3\u5ac2\u5ab2\u5d69\u5d6f\u5e4c\u5e79\u5ec9\u5ec8\u5f12\u5f59\u5fac\u5fae\u611a\u610f\u6148\u611f\u60f3\u611b\u60f9\u6101\u6108\u614e\u614c\u6144\u614d\u613e\u6134\u6127\u610d\u6106\u6137\u6221\u6222\u6413\u643e\u641e\u642a\u642d\u643d\u642c\u640f\u641c\u6414\u640d\u6436\u6416\u6417\u6406\u656c\u659f\u65b0\u6697\u6689\u6687\u6688\u6696\u6684\u6698\u668d\u6703\u6994\u696d"],["b7a1","\u695a\u6977\u6960\u6954\u6975\u6930\u6982\u694a\u6968\u696b\u695e\u6953\u6979\u6986\u695d\u6963\u695b\u6b47\u6b72\u6bc0\u6bbf\u6bd3\u6bfd\u6ea2\u6eaf\u6ed3\u6eb6\u6ec2\u6e90\u6e9d\u6ec7\u6ec5\u6ea5\u6e98\u6ebc\u6eba\u6eab\u6ed1\u6e96\u6e9c\u6ec4\u6ed4\u6eaa\u6ea7\u6eb4\u714e\u7159\u7169\u7164\u7149\u7167\u715c\u716c\u7166\u714c\u7165\u715e\u7146\u7168\u7156\u723a\u7252\u7337\u7345\u733f\u733e\u746f\u745a\u7455\u745f\u745e\u7441\u743f\u7459\u745b\u745c\u7576\u7578\u7600\u75f0\u7601\u75f2\u75f1\u75fa\u75ff\u75f4\u75f3\u76de\u76df\u775b\u776b\u7766\u775e\u7763"],["b840","\u7779\u776a\u776c\u775c\u7765\u7768\u7762\u77ee\u788e\u78b0\u7897\u7898\u788c\u7889\u787c\u7891\u7893\u787f\u797a\u797f\u7981\u842c\u79bd\u7a1c\u7a1a\u7a20\u7a14\u7a1f\u7a1e\u7a9f\u7aa0\u7b77\u7bc0\u7b60\u7b6e\u7b67\u7cb1\u7cb3\u7cb5\u7d93\u7d79\u7d91\u7d81\u7d8f\u7d5b\u7f6e\u7f69\u7f6a\u7f72\u7fa9\u7fa8\u7fa4\u8056\u8058\u8086\u8084\u8171\u8170\u8178\u8165\u816e\u8173\u816b"],["b8a1","\u8179\u817a\u8166\u8205\u8247\u8482\u8477\u843d\u8431\u8475\u8466\u846b\u8449\u846c\u845b\u843c\u8435\u8461\u8463\u8469\u846d\u8446\u865e\u865c\u865f\u86f9\u8713\u8708\u8707\u8700\u86fe\u86fb\u8702\u8703\u8706\u870a\u8859\u88df\u88d4\u88d9\u88dc\u88d8\u88dd\u88e1\u88ca\u88d5\u88d2\u899c\u89e3\u8a6b\u8a72\u8a73\u8a66\u8a69\u8a70\u8a87\u8a7c\u8a63\u8aa0\u8a71\u8a85\u8a6d\u8a62\u8a6e\u8a6c\u8a79\u8a7b\u8a3e\u8a68\u8c62\u8c8a\u8c89\u8cca\u8cc7\u8cc8\u8cc4\u8cb2\u8cc3\u8cc2\u8cc5\u8de1\u8ddf\u8de8\u8def\u8df3\u8dfa\u8dea\u8de4\u8de6\u8eb2\u8f03\u8f09\u8efe\u8f0a"],["b940","\u8f9f\u8fb2\u904b\u904a\u9053\u9042\u9054\u903c\u9055\u9050\u9047\u904f\u904e\u904d\u9051\u903e\u9041\u9112\u9117\u916c\u916a\u9169\u91c9\u9237\u9257\u9238\u923d\u9240\u923e\u925b\u924b\u9264\u9251\u9234\u9249\u924d\u9245\u9239\u923f\u925a\u9598\u9698\u9694\u9695\u96cd\u96cb\u96c9\u96ca\u96f7\u96fb\u96f9\u96f6\u9756\u9774\u9776\u9810\u9811\u9813\u980a\u9812\u980c\u98fc\u98f4"],["b9a1","\u98fd\u98fe\u99b3\u99b1\u99b4\u9ae1\u9ce9\u9e82\u9f0e\u9f13\u9f20\u50e7\u50ee\u50e5\u50d6\u50ed\u50da\u50d5\u50cf\u50d1\u50f1\u50ce\u50e9\u5162\u51f3\u5283\u5282\u5331\u53ad\u55fe\u5600\u561b\u5617\u55fd\u5614\u5606\u5609\u560d\u560e\u55f7\u5616\u561f\u5608\u5610\u55f6\u5718\u5716\u5875\u587e\u5883\u5893\u588a\u5879\u5885\u587d\u58fd\u5925\u5922\u5924\u596a\u5969\u5ae1\u5ae6\u5ae9\u5ad7\u5ad6\u5ad8\u5ae3\u5b75\u5bde\u5be7\u5be1\u5be5\u5be6\u5be8\u5be2\u5be4\u5bdf\u5c0d\u5c62\u5d84\u5d87\u5e5b\u5e63\u5e55\u5e57\u5e54\u5ed3\u5ed6\u5f0a\u5f46\u5f70\u5fb9\u6147"],["ba40","\u613f\u614b\u6177\u6162\u6163\u615f\u615a\u6158\u6175\u622a\u6487\u6458\u6454\u64a4\u6478\u645f\u647a\u6451\u6467\u6434\u646d\u647b\u6572\u65a1\u65d7\u65d6\u66a2\u66a8\u669d\u699c\u69a8\u6995\u69c1\u69ae\u69d3\u69cb\u699b\u69b7\u69bb\u69ab\u69b4\u69d0\u69cd\u69ad\u69cc\u69a6\u69c3\u69a3\u6b49\u6b4c\u6c33\u6f33\u6f14\u6efe\u6f13\u6ef4\u6f29\u6f3e\u6f20\u6f2c\u6f0f\u6f02\u6f22"],["baa1","\u6eff\u6eef\u6f06\u6f31\u6f38\u6f32\u6f23\u6f15\u6f2b\u6f2f\u6f88\u6f2a\u6eec\u6f01\u6ef2\u6ecc\u6ef7\u7194\u7199\u717d\u718a\u7184\u7192\u723e\u7292\u7296\u7344\u7350\u7464\u7463\u746a\u7470\u746d\u7504\u7591\u7627\u760d\u760b\u7609\u7613\u76e1\u76e3\u7784\u777d\u777f\u7761\u78c1\u789f\u78a7\u78b3\u78a9\u78a3\u798e\u798f\u798d\u7a2e\u7a31\u7aaa\u7aa9\u7aed\u7aef\u7ba1\u7b95\u7b8b\u7b75\u7b97\u7b9d\u7b94\u7b8f\u7bb8\u7b87\u7b84\u7cb9\u7cbd\u7cbe\u7dbb\u7db0\u7d9c\u7dbd\u7dbe\u7da0\u7dca\u7db4\u7db2\u7db1\u7dba\u7da2\u7dbf\u7db5\u7db8\u7dad\u7dd2\u7dc7\u7dac"],["bb40","\u7f70\u7fe0\u7fe1\u7fdf\u805e\u805a\u8087\u8150\u8180\u818f\u8188\u818a\u817f\u8182\u81e7\u81fa\u8207\u8214\u821e\u824b\u84c9\u84bf\u84c6\u84c4\u8499\u849e\u84b2\u849c\u84cb\u84b8\u84c0\u84d3\u8490\u84bc\u84d1\u84ca\u873f\u871c\u873b\u8722\u8725\u8734\u8718\u8755\u8737\u8729\u88f3\u8902\u88f4\u88f9\u88f8\u88fd\u88e8\u891a\u88ef\u8aa6\u8a8c\u8a9e\u8aa3\u8a8d\u8aa1\u8a93\u8aa4"],["bba1","\u8aaa\u8aa5\u8aa8\u8a98\u8a91\u8a9a\u8aa7\u8c6a\u8c8d\u8c8c\u8cd3\u8cd1\u8cd2\u8d6b\u8d99\u8d95\u8dfc\u8f14\u8f12\u8f15\u8f13\u8fa3\u9060\u9058\u905c\u9063\u9059\u905e\u9062\u905d\u905b\u9119\u9118\u911e\u9175\u9178\u9177\u9174\u9278\u9280\u9285\u9298\u9296\u927b\u9293\u929c\u92a8\u927c\u9291\u95a1\u95a8\u95a9\u95a3\u95a5\u95a4\u9699\u969c\u969b\u96cc\u96d2\u9700\u977c\u9785\u97f6\u9817\u9818\u98af\u98b1\u9903\u9905\u990c\u9909\u99c1\u9aaf\u9ab0\u9ae6\u9b41\u9b42\u9cf4\u9cf6\u9cf3\u9ebc\u9f3b\u9f4a\u5104\u5100\u50fb\u50f5\u50f9\u5102\u5108\u5109\u5105\u51dc"],["bc40","\u5287\u5288\u5289\u528d\u528a\u52f0\u53b2\u562e\u563b\u5639\u5632\u563f\u5634\u5629\u5653\u564e\u5657\u5674\u5636\u562f\u5630\u5880\u589f\u589e\u58b3\u589c\u58ae\u58a9\u58a6\u596d\u5b09\u5afb\u5b0b\u5af5\u5b0c\u5b08\u5bee\u5bec\u5be9\u5beb\u5c64\u5c65\u5d9d\u5d94\u5e62\u5e5f\u5e61\u5ee2\u5eda\u5edf\u5edd\u5ee3\u5ee0\u5f48\u5f71\u5fb7\u5fb5\u6176\u6167\u616e\u615d\u6155\u6182"],["bca1","\u617c\u6170\u616b\u617e\u61a7\u6190\u61ab\u618e\u61ac\u619a\u61a4\u6194\u61ae\u622e\u6469\u646f\u6479\u649e\u64b2\u6488\u6490\u64b0\u64a5\u6493\u6495\u64a9\u6492\u64ae\u64ad\u64ab\u649a\u64ac\u6499\u64a2\u64b3\u6575\u6577\u6578\u66ae\u66ab\u66b4\u66b1\u6a23\u6a1f\u69e8\u6a01\u6a1e\u6a19\u69fd\u6a21\u6a13\u6a0a\u69f3\u6a02\u6a05\u69ed\u6a11\u6b50\u6b4e\u6ba4\u6bc5\u6bc6\u6f3f\u6f7c\u6f84\u6f51\u6f66\u6f54\u6f86\u6f6d\u6f5b\u6f78\u6f6e\u6f8e\u6f7a\u6f70\u6f64\u6f97\u6f58\u6ed5\u6f6f\u6f60\u6f5f\u719f\u71ac\u71b1\u71a8\u7256\u729b\u734e\u7357\u7469\u748b\u7483"],["bd40","\u747e\u7480\u757f\u7620\u7629\u761f\u7624\u7626\u7621\u7622\u769a\u76ba\u76e4\u778e\u7787\u778c\u7791\u778b\u78cb\u78c5\u78ba\u78ca\u78be\u78d5\u78bc\u78d0\u7a3f\u7a3c\u7a40\u7a3d\u7a37\u7a3b\u7aaf\u7aae\u7bad\u7bb1\u7bc4\u7bb4\u7bc6\u7bc7\u7bc1\u7ba0\u7bcc\u7cca\u7de0\u7df4\u7def\u7dfb\u7dd8\u7dec\u7ddd\u7de8\u7de3\u7dda\u7dde\u7de9\u7d9e\u7dd9\u7df2\u7df9\u7f75\u7f77\u7faf"],["bda1","\u7fe9\u8026\u819b\u819c\u819d\u81a0\u819a\u8198\u8517\u853d\u851a\u84ee\u852c\u852d\u8513\u8511\u8523\u8521\u8514\u84ec\u8525\u84ff\u8506\u8782\u8774\u8776\u8760\u8766\u8778\u8768\u8759\u8757\u874c\u8753\u885b\u885d\u8910\u8907\u8912\u8913\u8915\u890a\u8abc\u8ad2\u8ac7\u8ac4\u8a95\u8acb\u8af8\u8ab2\u8ac9\u8ac2\u8abf\u8ab0\u8ad6\u8acd\u8ab6\u8ab9\u8adb\u8c4c\u8c4e\u8c6c\u8ce0\u8cde\u8ce6\u8ce4\u8cec\u8ced\u8ce2\u8ce3\u8cdc\u8cea\u8ce1\u8d6d\u8d9f\u8da3\u8e2b\u8e10\u8e1d\u8e22\u8e0f\u8e29\u8e1f\u8e21\u8e1e\u8eba\u8f1d\u8f1b\u8f1f\u8f29\u8f26\u8f2a\u8f1c\u8f1e"],["be40","\u8f25\u9069\u906e\u9068\u906d\u9077\u9130\u912d\u9127\u9131\u9187\u9189\u918b\u9183\u92c5\u92bb\u92b7\u92ea\u92ac\u92e4\u92c1\u92b3\u92bc\u92d2\u92c7\u92f0\u92b2\u95ad\u95b1\u9704\u9706\u9707\u9709\u9760\u978d\u978b\u978f\u9821\u982b\u981c\u98b3\u990a\u9913\u9912\u9918\u99dd\u99d0\u99df\u99db\u99d1\u99d5\u99d2\u99d9\u9ab7\u9aee\u9aef\u9b27\u9b45\u9b44\u9b77\u9b6f\u9d06\u9d09"],["bea1","\u9d03\u9ea9\u9ebe\u9ece\u58a8\u9f52\u5112\u5118\u5114\u5110\u5115\u5180\u51aa\u51dd\u5291\u5293\u52f3\u5659\u566b\u5679\u5669\u5664\u5678\u566a\u5668\u5665\u5671\u566f\u566c\u5662\u5676\u58c1\u58be\u58c7\u58c5\u596e\u5b1d\u5b34\u5b78\u5bf0\u5c0e\u5f4a\u61b2\u6191\u61a9\u618a\u61cd\u61b6\u61be\u61ca\u61c8\u6230\u64c5\u64c1\u64cb\u64bb\u64bc\u64da\u64c4\u64c7\u64c2\u64cd\u64bf\u64d2\u64d4\u64be\u6574\u66c6\u66c9\u66b9\u66c4\u66c7\u66b8\u6a3d\u6a38\u6a3a\u6a59\u6a6b\u6a58\u6a39\u6a44\u6a62\u6a61\u6a4b\u6a47\u6a35\u6a5f\u6a48\u6b59\u6b77\u6c05\u6fc2\u6fb1\u6fa1"],["bf40","\u6fc3\u6fa4\u6fc1\u6fa7\u6fb3\u6fc0\u6fb9\u6fb6\u6fa6\u6fa0\u6fb4\u71be\u71c9\u71d0\u71d2\u71c8\u71d5\u71b9\u71ce\u71d9\u71dc\u71c3\u71c4\u7368\u749c\u74a3\u7498\u749f\u749e\u74e2\u750c\u750d\u7634\u7638\u763a\u76e7\u76e5\u77a0\u779e\u779f\u77a5\u78e8\u78da\u78ec\u78e7\u79a6\u7a4d\u7a4e\u7a46\u7a4c\u7a4b\u7aba\u7bd9\u7c11\u7bc9\u7be4\u7bdb\u7be1\u7be9\u7be6\u7cd5\u7cd6\u7e0a"],["bfa1","\u7e11\u7e08\u7e1b\u7e23\u7e1e\u7e1d\u7e09\u7e10\u7f79\u7fb2\u7ff0\u7ff1\u7fee\u8028\u81b3\u81a9\u81a8\u81fb\u8208\u8258\u8259\u854a\u8559\u8548\u8568\u8569\u8543\u8549\u856d\u856a\u855e\u8783\u879f\u879e\u87a2\u878d\u8861\u892a\u8932\u8925\u892b\u8921\u89aa\u89a6\u8ae6\u8afa\u8aeb\u8af1\u8b00\u8adc\u8ae7\u8aee\u8afe\u8b01\u8b02\u8af7\u8aed\u8af3\u8af6\u8afc\u8c6b\u8c6d\u8c93\u8cf4\u8e44\u8e31\u8e34\u8e42\u8e39\u8e35\u8f3b\u8f2f\u8f38\u8f33\u8fa8\u8fa6\u9075\u9074\u9078\u9072\u907c\u907a\u9134\u9192\u9320\u9336\u92f8\u9333\u932f\u9322\u92fc\u932b\u9304\u931a"],["c040","\u9310\u9326\u9321\u9315\u932e\u9319\u95bb\u96a7\u96a8\u96aa\u96d5\u970e\u9711\u9716\u970d\u9713\u970f\u975b\u975c\u9766\u9798\u9830\u9838\u983b\u9837\u982d\u9839\u9824\u9910\u9928\u991e\u991b\u9921\u991a\u99ed\u99e2\u99f1\u9ab8\u9abc\u9afb\u9aed\u9b28\u9b91\u9d15\u9d23\u9d26\u9d28\u9d12\u9d1b\u9ed8\u9ed4\u9f8d\u9f9c\u512a\u511f\u5121\u5132\u52f5\u568e\u5680\u5690\u5685\u5687"],["c0a1","\u568f\u58d5\u58d3\u58d1\u58ce\u5b30\u5b2a\u5b24\u5b7a\u5c37\u5c68\u5dbc\u5dba\u5dbd\u5db8\u5e6b\u5f4c\u5fbd\u61c9\u61c2\u61c7\u61e6\u61cb\u6232\u6234\u64ce\u64ca\u64d8\u64e0\u64f0\u64e6\u64ec\u64f1\u64e2\u64ed\u6582\u6583\u66d9\u66d6\u6a80\u6a94\u6a84\u6aa2\u6a9c\u6adb\u6aa3\u6a7e\u6a97\u6a90\u6aa0\u6b5c\u6bae\u6bda\u6c08\u6fd8\u6ff1\u6fdf\u6fe0\u6fdb\u6fe4\u6feb\u6fef\u6f80\u6fec\u6fe1\u6fe9\u6fd5\u6fee\u6ff0\u71e7\u71df\u71ee\u71e6\u71e5\u71ed\u71ec\u71f4\u71e0\u7235\u7246\u7370\u7372\u74a9\u74b0\u74a6\u74a8\u7646\u7642\u764c\u76ea\u77b3\u77aa\u77b0\u77ac"],["c140","\u77a7\u77ad\u77ef\u78f7\u78fa\u78f4\u78ef\u7901\u79a7\u79aa\u7a57\u7abf\u7c07\u7c0d\u7bfe\u7bf7\u7c0c\u7be0\u7ce0\u7cdc\u7cde\u7ce2\u7cdf\u7cd9\u7cdd\u7e2e\u7e3e\u7e46\u7e37\u7e32\u7e43\u7e2b\u7e3d\u7e31\u7e45\u7e41\u7e34\u7e39\u7e48\u7e35\u7e3f\u7e2f\u7f44\u7ff3\u7ffc\u8071\u8072\u8070\u806f\u8073\u81c6\u81c3\u81ba\u81c2\u81c0\u81bf\u81bd\u81c9\u81be\u81e8\u8209\u8271\u85aa"],["c1a1","\u8584\u857e\u859c\u8591\u8594\u85af\u859b\u8587\u85a8\u858a\u8667\u87c0\u87d1\u87b3\u87d2\u87c6\u87ab\u87bb\u87ba\u87c8\u87cb\u893b\u8936\u8944\u8938\u893d\u89ac\u8b0e\u8b17\u8b19\u8b1b\u8b0a\u8b20\u8b1d\u8b04\u8b10\u8c41\u8c3f\u8c73\u8cfa\u8cfd\u8cfc\u8cf8\u8cfb\u8da8\u8e49\u8e4b\u8e48\u8e4a\u8f44\u8f3e\u8f42\u8f45\u8f3f\u907f\u907d\u9084\u9081\u9082\u9080\u9139\u91a3\u919e\u919c\u934d\u9382\u9328\u9375\u934a\u9365\u934b\u9318\u937e\u936c\u935b\u9370\u935a\u9354\u95ca\u95cb\u95cc\u95c8\u95c6\u96b1\u96b8\u96d6\u971c\u971e\u97a0\u97d3\u9846\u98b6\u9935\u9a01"],["c240","\u99ff\u9bae\u9bab\u9baa\u9bad\u9d3b\u9d3f\u9e8b\u9ecf\u9ede\u9edc\u9edd\u9edb\u9f3e\u9f4b\u53e2\u5695\u56ae\u58d9\u58d8\u5b38\u5f5d\u61e3\u6233\u64f4\u64f2\u64fe\u6506\u64fa\u64fb\u64f7\u65b7\u66dc\u6726\u6ab3\u6aac\u6ac3\u6abb\u6ab8\u6ac2\u6aae\u6aaf\u6b5f\u6b78\u6baf\u7009\u700b\u6ffe\u7006\u6ffa\u7011\u700f\u71fb\u71fc\u71fe\u71f8\u7377\u7375\u74a7\u74bf\u7515\u7656\u7658"],["c2a1","\u7652\u77bd\u77bf\u77bb\u77bc\u790e\u79ae\u7a61\u7a62\u7a60\u7ac4\u7ac5\u7c2b\u7c27\u7c2a\u7c1e\u7c23\u7c21\u7ce7\u7e54\u7e55\u7e5e\u7e5a\u7e61\u7e52\u7e59\u7f48\u7ff9\u7ffb\u8077\u8076\u81cd\u81cf\u820a\u85cf\u85a9\u85cd\u85d0\u85c9\u85b0\u85ba\u85b9\u85a6\u87ef\u87ec\u87f2\u87e0\u8986\u89b2\u89f4\u8b28\u8b39\u8b2c\u8b2b\u8c50\u8d05\u8e59\u8e63\u8e66\u8e64\u8e5f\u8e55\u8ec0\u8f49\u8f4d\u9087\u9083\u9088\u91ab\u91ac\u91d0\u9394\u938a\u9396\u93a2\u93b3\u93ae\u93ac\u93b0\u9398\u939a\u9397\u95d4\u95d6\u95d0\u95d5\u96e2\u96dc\u96d9\u96db\u96de\u9724\u97a3\u97a6"],["c340","\u97ad\u97f9\u984d\u984f\u984c\u984e\u9853\u98ba\u993e\u993f\u993d\u992e\u99a5\u9a0e\u9ac1\u9b03\u9b06\u9b4f\u9b4e\u9b4d\u9bca\u9bc9\u9bfd\u9bc8\u9bc0\u9d51\u9d5d\u9d60\u9ee0\u9f15\u9f2c\u5133\u56a5\u58de\u58df\u58e2\u5bf5\u9f90\u5eec\u61f2\u61f7\u61f6\u61f5\u6500\u650f\u66e0\u66dd\u6ae5\u6add\u6ada\u6ad3\u701b\u701f\u7028\u701a\u701d\u7015\u7018\u7206\u720d\u7258\u72a2\u7378"],["c3a1","\u737a\u74bd\u74ca\u74e3\u7587\u7586\u765f\u7661\u77c7\u7919\u79b1\u7a6b\u7a69\u7c3e\u7c3f\u7c38\u7c3d\u7c37\u7c40\u7e6b\u7e6d\u7e79\u7e69\u7e6a\u7f85\u7e73\u7fb6\u7fb9\u7fb8\u81d8\u85e9\u85dd\u85ea\u85d5\u85e4\u85e5\u85f7\u87fb\u8805\u880d\u87f9\u87fe\u8960\u895f\u8956\u895e\u8b41\u8b5c\u8b58\u8b49\u8b5a\u8b4e\u8b4f\u8b46\u8b59\u8d08\u8d0a\u8e7c\u8e72\u8e87\u8e76\u8e6c\u8e7a\u8e74\u8f54\u8f4e\u8fad\u908a\u908b\u91b1\u91ae\u93e1\u93d1\u93df\u93c3\u93c8\u93dc\u93dd\u93d6\u93e2\u93cd\u93d8\u93e4\u93d7\u93e8\u95dc\u96b4\u96e3\u972a\u9727\u9761\u97dc\u97fb\u985e"],["c440","\u9858\u985b\u98bc\u9945\u9949\u9a16\u9a19\u9b0d\u9be8\u9be7\u9bd6\u9bdb\u9d89\u9d61\u9d72\u9d6a\u9d6c\u9e92\u9e97\u9e93\u9eb4\u52f8\u56a8\u56b7\u56b6\u56b4\u56bc\u58e4\u5b40\u5b43\u5b7d\u5bf6\u5dc9\u61f8\u61fa\u6518\u6514\u6519\u66e6\u6727\u6aec\u703e\u7030\u7032\u7210\u737b\u74cf\u7662\u7665\u7926\u792a\u792c\u792b\u7ac7\u7af6\u7c4c\u7c43\u7c4d\u7cef\u7cf0\u8fae\u7e7d\u7e7c"],["c4a1","\u7e82\u7f4c\u8000\u81da\u8266\u85fb\u85f9\u8611\u85fa\u8606\u860b\u8607\u860a\u8814\u8815\u8964\u89ba\u89f8\u8b70\u8b6c\u8b66\u8b6f\u8b5f\u8b6b\u8d0f\u8d0d\u8e89\u8e81\u8e85\u8e82\u91b4\u91cb\u9418\u9403\u93fd\u95e1\u9730\u98c4\u9952\u9951\u99a8\u9a2b\u9a30\u9a37\u9a35\u9c13\u9c0d\u9e79\u9eb5\u9ee8\u9f2f\u9f5f\u9f63\u9f61\u5137\u5138\u56c1\u56c0\u56c2\u5914\u5c6c\u5dcd\u61fc\u61fe\u651d\u651c\u6595\u66e9\u6afb\u6b04\u6afa\u6bb2\u704c\u721b\u72a7\u74d6\u74d4\u7669\u77d3\u7c50\u7e8f\u7e8c\u7fbc\u8617\u862d\u861a\u8823\u8822\u8821\u881f\u896a\u896c\u89bd\u8b74"],["c540","\u8b77\u8b7d\u8d13\u8e8a\u8e8d\u8e8b\u8f5f\u8faf\u91ba\u942e\u9433\u9435\u943a\u9438\u9432\u942b\u95e2\u9738\u9739\u9732\u97ff\u9867\u9865\u9957\u9a45\u9a43\u9a40\u9a3e\u9acf\u9b54\u9b51\u9c2d\u9c25\u9daf\u9db4\u9dc2\u9db8\u9e9d\u9eef\u9f19\u9f5c\u9f66\u9f67\u513c\u513b\u56c8\u56ca\u56c9\u5b7f\u5dd4\u5dd2\u5f4e\u61ff\u6524\u6b0a\u6b61\u7051\u7058\u7380\u74e4\u758a\u766e\u766c"],["c5a1","\u79b3\u7c60\u7c5f\u807e\u807d\u81df\u8972\u896f\u89fc\u8b80\u8d16\u8d17\u8e91\u8e93\u8f61\u9148\u9444\u9451\u9452\u973d\u973e\u97c3\u97c1\u986b\u9955\u9a55\u9a4d\u9ad2\u9b1a\u9c49\u9c31\u9c3e\u9c3b\u9dd3\u9dd7\u9f34\u9f6c\u9f6a\u9f94\u56cc\u5dd6\u6200\u6523\u652b\u652a\u66ec\u6b10\u74da\u7aca\u7c64\u7c63\u7c65\u7e93\u7e96\u7e94\u81e2\u8638\u863f\u8831\u8b8a\u9090\u908f\u9463\u9460\u9464\u9768\u986f\u995c\u9a5a\u9a5b\u9a57\u9ad3\u9ad4\u9ad1\u9c54\u9c57\u9c56\u9de5\u9e9f\u9ef4\u56d1\u58e9\u652c\u705e\u7671\u7672\u77d7\u7f50\u7f88\u8836\u8839\u8862\u8b93\u8b92"],["c640","\u8b96\u8277\u8d1b\u91c0\u946a\u9742\u9748\u9744\u97c6\u9870\u9a5f\u9b22\u9b58\u9c5f\u9df9\u9dfa\u9e7c\u9e7d\u9f07\u9f77\u9f72\u5ef3\u6b16\u7063\u7c6c\u7c6e\u883b\u89c0\u8ea1\u91c1\u9472\u9470\u9871\u995e\u9ad6\u9b23\u9ecc\u7064\u77da\u8b9a\u9477\u97c9\u9a62\u9a65\u7e9c\u8b9c\u8eaa\u91c5\u947d\u947e\u947c\u9c77\u9c78\u9ef7\u8c54\u947f\u9e1a\u7228\u9a6a\u9b31\u9e1b\u9e1e\u7c72"],["c940","\u4e42\u4e5c\u51f5\u531a\u5382\u4e07\u4e0c\u4e47\u4e8d\u56d7\ufa0c\u5c6e\u5f73\u4e0f\u5187\u4e0e\u4e2e\u4e93\u4ec2\u4ec9\u4ec8\u5198\u52fc\u536c\u53b9\u5720\u5903\u592c\u5c10\u5dff\u65e1\u6bb3\u6bcc\u6c14\u723f\u4e31\u4e3c\u4ee8\u4edc\u4ee9\u4ee1\u4edd\u4eda\u520c\u531c\u534c\u5722\u5723\u5917\u592f\u5b81\u5b84\u5c12\u5c3b\u5c74\u5c73\u5e04\u5e80\u5e82\u5fc9\u6209\u6250\u6c15"],["c9a1","\u6c36\u6c43\u6c3f\u6c3b\u72ae\u72b0\u738a\u79b8\u808a\u961e\u4f0e\u4f18\u4f2c\u4ef5\u4f14\u4ef1\u4f00\u4ef7\u4f08\u4f1d\u4f02\u4f05\u4f22\u4f13\u4f04\u4ef4\u4f12\u51b1\u5213\u5209\u5210\u52a6\u5322\u531f\u534d\u538a\u5407\u56e1\u56df\u572e\u572a\u5734\u593c\u5980\u597c\u5985\u597b\u597e\u5977\u597f\u5b56\u5c15\u5c25\u5c7c\u5c7a\u5c7b\u5c7e\u5ddf\u5e75\u5e84\u5f02\u5f1a\u5f74\u5fd5\u5fd4\u5fcf\u625c\u625e\u6264\u6261\u6266\u6262\u6259\u6260\u625a\u6265\u65ef\u65ee\u673e\u6739\u6738\u673b\u673a\u673f\u673c\u6733\u6c18\u6c46\u6c52\u6c5c\u6c4f\u6c4a\u6c54\u6c4b"],["ca40","\u6c4c\u7071\u725e\u72b4\u72b5\u738e\u752a\u767f\u7a75\u7f51\u8278\u827c\u8280\u827d\u827f\u864d\u897e\u9099\u9097\u9098\u909b\u9094\u9622\u9624\u9620\u9623\u4f56\u4f3b\u4f62\u4f49\u4f53\u4f64\u4f3e\u4f67\u4f52\u4f5f\u4f41\u4f58\u4f2d\u4f33\u4f3f\u4f61\u518f\u51b9\u521c\u521e\u5221\u52ad\u52ae\u5309\u5363\u5372\u538e\u538f\u5430\u5437\u542a\u5454\u5445\u5419\u541c\u5425\u5418"],["caa1","\u543d\u544f\u5441\u5428\u5424\u5447\u56ee\u56e7\u56e5\u5741\u5745\u574c\u5749\u574b\u5752\u5906\u5940\u59a6\u5998\u59a0\u5997\u598e\u59a2\u5990\u598f\u59a7\u59a1\u5b8e\u5b92\u5c28\u5c2a\u5c8d\u5c8f\u5c88\u5c8b\u5c89\u5c92\u5c8a\u5c86\u5c93\u5c95\u5de0\u5e0a\u5e0e\u5e8b\u5e89\u5e8c\u5e88\u5e8d\u5f05\u5f1d\u5f78\u5f76\u5fd2\u5fd1\u5fd0\u5fed\u5fe8\u5fee\u5ff3\u5fe1\u5fe4\u5fe3\u5ffa\u5fef\u5ff7\u5ffb\u6000\u5ff4\u623a\u6283\u628c\u628e\u628f\u6294\u6287\u6271\u627b\u627a\u6270\u6281\u6288\u6277\u627d\u6272\u6274\u6537\u65f0\u65f4\u65f3\u65f2\u65f5\u6745\u6747"],["cb40","\u6759\u6755\u674c\u6748\u675d\u674d\u675a\u674b\u6bd0\u6c19\u6c1a\u6c78\u6c67\u6c6b\u6c84\u6c8b\u6c8f\u6c71\u6c6f\u6c69\u6c9a\u6c6d\u6c87\u6c95\u6c9c\u6c66\u6c73\u6c65\u6c7b\u6c8e\u7074\u707a\u7263\u72bf\u72bd\u72c3\u72c6\u72c1\u72ba\u72c5\u7395\u7397\u7393\u7394\u7392\u753a\u7539\u7594\u7595\u7681\u793d\u8034\u8095\u8099\u8090\u8092\u809c\u8290\u828f\u8285\u828e\u8291\u8293"],["cba1","\u828a\u8283\u8284\u8c78\u8fc9\u8fbf\u909f\u90a1\u90a5\u909e\u90a7\u90a0\u9630\u9628\u962f\u962d\u4e33\u4f98\u4f7c\u4f85\u4f7d\u4f80\u4f87\u4f76\u4f74\u4f89\u4f84\u4f77\u4f4c\u4f97\u4f6a\u4f9a\u4f79\u4f81\u4f78\u4f90\u4f9c\u4f94\u4f9e\u4f92\u4f82\u4f95\u4f6b\u4f6e\u519e\u51bc\u51be\u5235\u5232\u5233\u5246\u5231\u52bc\u530a\u530b\u533c\u5392\u5394\u5487\u547f\u5481\u5491\u5482\u5488\u546b\u547a\u547e\u5465\u546c\u5474\u5466\u548d\u546f\u5461\u5460\u5498\u5463\u5467\u5464\u56f7\u56f9\u576f\u5772\u576d\u576b\u5771\u5770\u5776\u5780\u5775\u577b\u5773\u5774\u5762"],["cc40","\u5768\u577d\u590c\u5945\u59b5\u59ba\u59cf\u59ce\u59b2\u59cc\u59c1\u59b6\u59bc\u59c3\u59d6\u59b1\u59bd\u59c0\u59c8\u59b4\u59c7\u5b62\u5b65\u5b93\u5b95\u5c44\u5c47\u5cae\u5ca4\u5ca0\u5cb5\u5caf\u5ca8\u5cac\u5c9f\u5ca3\u5cad\u5ca2\u5caa\u5ca7\u5c9d\u5ca5\u5cb6\u5cb0\u5ca6\u5e17\u5e14\u5e19\u5f28\u5f22\u5f23\u5f24\u5f54\u5f82\u5f7e\u5f7d\u5fde\u5fe5\u602d\u6026\u6019\u6032\u600b"],["cca1","\u6034\u600a\u6017\u6033\u601a\u601e\u602c\u6022\u600d\u6010\u602e\u6013\u6011\u600c\u6009\u601c\u6214\u623d\u62ad\u62b4\u62d1\u62be\u62aa\u62b6\u62ca\u62ae\u62b3\u62af\u62bb\u62a9\u62b0\u62b8\u653d\u65a8\u65bb\u6609\u65fc\u6604\u6612\u6608\u65fb\u6603\u660b\u660d\u6605\u65fd\u6611\u6610\u66f6\u670a\u6785\u676c\u678e\u6792\u6776\u677b\u6798\u6786\u6784\u6774\u678d\u678c\u677a\u679f\u6791\u6799\u6783\u677d\u6781\u6778\u6779\u6794\u6b25\u6b80\u6b7e\u6bde\u6c1d\u6c93\u6cec\u6ceb\u6cee\u6cd9\u6cb6\u6cd4\u6cad\u6ce7\u6cb7\u6cd0\u6cc2\u6cba\u6cc3\u6cc6\u6ced\u6cf2"],["cd40","\u6cd2\u6cdd\u6cb4\u6c8a\u6c9d\u6c80\u6cde\u6cc0\u6d30\u6ccd\u6cc7\u6cb0\u6cf9\u6ccf\u6ce9\u6cd1\u7094\u7098\u7085\u7093\u7086\u7084\u7091\u7096\u7082\u709a\u7083\u726a\u72d6\u72cb\u72d8\u72c9\u72dc\u72d2\u72d4\u72da\u72cc\u72d1\u73a4\u73a1\u73ad\u73a6\u73a2\u73a0\u73ac\u739d\u74dd\u74e8\u753f\u7540\u753e\u758c\u7598\u76af\u76f3\u76f1\u76f0\u76f5\u77f8\u77fc\u77f9\u77fb\u77fa"],["cda1","\u77f7\u7942\u793f\u79c5\u7a78\u7a7b\u7afb\u7c75\u7cfd\u8035\u808f\u80ae\u80a3\u80b8\u80b5\u80ad\u8220\u82a0\u82c0\u82ab\u829a\u8298\u829b\u82b5\u82a7\u82ae\u82bc\u829e\u82ba\u82b4\u82a8\u82a1\u82a9\u82c2\u82a4\u82c3\u82b6\u82a2\u8670\u866f\u866d\u866e\u8c56\u8fd2\u8fcb\u8fd3\u8fcd\u8fd6\u8fd5\u8fd7\u90b2\u90b4\u90af\u90b3\u90b0\u9639\u963d\u963c\u963a\u9643\u4fcd\u4fc5\u4fd3\u4fb2\u4fc9\u4fcb\u4fc1\u4fd4\u4fdc\u4fd9\u4fbb\u4fb3\u4fdb\u4fc7\u4fd6\u4fba\u4fc0\u4fb9\u4fec\u5244\u5249\u52c0\u52c2\u533d\u537c\u5397\u5396\u5399\u5398\u54ba\u54a1\u54ad\u54a5\u54cf"],["ce40","\u54c3\u830d\u54b7\u54ae\u54d6\u54b6\u54c5\u54c6\u54a0\u5470\u54bc\u54a2\u54be\u5472\u54de\u54b0\u57b5\u579e\u579f\u57a4\u578c\u5797\u579d\u579b\u5794\u5798\u578f\u5799\u57a5\u579a\u5795\u58f4\u590d\u5953\u59e1\u59de\u59ee\u5a00\u59f1\u59dd\u59fa\u59fd\u59fc\u59f6\u59e4\u59f2\u59f7\u59db\u59e9\u59f3\u59f5\u59e0\u59fe\u59f4\u59ed\u5ba8\u5c4c\u5cd0\u5cd8\u5ccc\u5cd7\u5ccb\u5cdb"],["cea1","\u5cde\u5cda\u5cc9\u5cc7\u5cca\u5cd6\u5cd3\u5cd4\u5ccf\u5cc8\u5cc6\u5cce\u5cdf\u5cf8\u5df9\u5e21\u5e22\u5e23\u5e20\u5e24\u5eb0\u5ea4\u5ea2\u5e9b\u5ea3\u5ea5\u5f07\u5f2e\u5f56\u5f86\u6037\u6039\u6054\u6072\u605e\u6045\u6053\u6047\u6049\u605b\u604c\u6040\u6042\u605f\u6024\u6044\u6058\u6066\u606e\u6242\u6243\u62cf\u630d\u630b\u62f5\u630e\u6303\u62eb\u62f9\u630f\u630c\u62f8\u62f6\u6300\u6313\u6314\u62fa\u6315\u62fb\u62f0\u6541\u6543\u65aa\u65bf\u6636\u6621\u6632\u6635\u661c\u6626\u6622\u6633\u662b\u663a\u661d\u6634\u6639\u662e\u670f\u6710\u67c1\u67f2\u67c8\u67ba"],["cf40","\u67dc\u67bb\u67f8\u67d8\u67c0\u67b7\u67c5\u67eb\u67e4\u67df\u67b5\u67cd\u67b3\u67f7\u67f6\u67ee\u67e3\u67c2\u67b9\u67ce\u67e7\u67f0\u67b2\u67fc\u67c6\u67ed\u67cc\u67ae\u67e6\u67db\u67fa\u67c9\u67ca\u67c3\u67ea\u67cb\u6b28\u6b82\u6b84\u6bb6\u6bd6\u6bd8\u6be0\u6c20\u6c21\u6d28\u6d34\u6d2d\u6d1f\u6d3c\u6d3f\u6d12\u6d0a\u6cda\u6d33\u6d04\u6d19\u6d3a\u6d1a\u6d11\u6d00\u6d1d\u6d42"],["cfa1","\u6d01\u6d18\u6d37\u6d03\u6d0f\u6d40\u6d07\u6d20\u6d2c\u6d08\u6d22\u6d09\u6d10\u70b7\u709f\u70be\u70b1\u70b0\u70a1\u70b4\u70b5\u70a9\u7241\u7249\u724a\u726c\u7270\u7273\u726e\u72ca\u72e4\u72e8\u72eb\u72df\u72ea\u72e6\u72e3\u7385\u73cc\u73c2\u73c8\u73c5\u73b9\u73b6\u73b5\u73b4\u73eb\u73bf\u73c7\u73be\u73c3\u73c6\u73b8\u73cb\u74ec\u74ee\u752e\u7547\u7548\u75a7\u75aa\u7679\u76c4\u7708\u7703\u7704\u7705\u770a\u76f7\u76fb\u76fa\u77e7\u77e8\u7806\u7811\u7812\u7805\u7810\u780f\u780e\u7809\u7803\u7813\u794a\u794c\u794b\u7945\u7944\u79d5\u79cd\u79cf\u79d6\u79ce\u7a80"],["d040","\u7a7e\u7ad1\u7b00\u7b01\u7c7a\u7c78\u7c79\u7c7f\u7c80\u7c81\u7d03\u7d08\u7d01\u7f58\u7f91\u7f8d\u7fbe\u8007\u800e\u800f\u8014\u8037\u80d8\u80c7\u80e0\u80d1\u80c8\u80c2\u80d0\u80c5\u80e3\u80d9\u80dc\u80ca\u80d5\u80c9\u80cf\u80d7\u80e6\u80cd\u81ff\u8221\u8294\u82d9\u82fe\u82f9\u8307\u82e8\u8300\u82d5\u833a\u82eb\u82d6\u82f4\u82ec\u82e1\u82f2\u82f5\u830c\u82fb\u82f6\u82f0\u82ea"],["d0a1","\u82e4\u82e0\u82fa\u82f3\u82ed\u8677\u8674\u867c\u8673\u8841\u884e\u8867\u886a\u8869\u89d3\u8a04\u8a07\u8d72\u8fe3\u8fe1\u8fee\u8fe0\u90f1\u90bd\u90bf\u90d5\u90c5\u90be\u90c7\u90cb\u90c8\u91d4\u91d3\u9654\u964f\u9651\u9653\u964a\u964e\u501e\u5005\u5007\u5013\u5022\u5030\u501b\u4ff5\u4ff4\u5033\u5037\u502c\u4ff6\u4ff7\u5017\u501c\u5020\u5027\u5035\u502f\u5031\u500e\u515a\u5194\u5193\u51ca\u51c4\u51c5\u51c8\u51ce\u5261\u525a\u5252\u525e\u525f\u5255\u5262\u52cd\u530e\u539e\u5526\u54e2\u5517\u5512\u54e7\u54f3\u54e4\u551a\u54ff\u5504\u5508\u54eb\u5511\u5505\u54f1"],["d140","\u550a\u54fb\u54f7\u54f8\u54e0\u550e\u5503\u550b\u5701\u5702\u57cc\u5832\u57d5\u57d2\u57ba\u57c6\u57bd\u57bc\u57b8\u57b6\u57bf\u57c7\u57d0\u57b9\u57c1\u590e\u594a\u5a19\u5a16\u5a2d\u5a2e\u5a15\u5a0f\u5a17\u5a0a\u5a1e\u5a33\u5b6c\u5ba7\u5bad\u5bac\u5c03\u5c56\u5c54\u5cec\u5cff\u5cee\u5cf1\u5cf7\u5d00\u5cf9\u5e29\u5e28\u5ea8\u5eae\u5eaa\u5eac\u5f33\u5f30\u5f67\u605d\u605a\u6067"],["d1a1","\u6041\u60a2\u6088\u6080\u6092\u6081\u609d\u6083\u6095\u609b\u6097\u6087\u609c\u608e\u6219\u6246\u62f2\u6310\u6356\u632c\u6344\u6345\u6336\u6343\u63e4\u6339\u634b\u634a\u633c\u6329\u6341\u6334\u6358\u6354\u6359\u632d\u6347\u6333\u635a\u6351\u6338\u6357\u6340\u6348\u654a\u6546\u65c6\u65c3\u65c4\u65c2\u664a\u665f\u6647\u6651\u6712\u6713\u681f\u681a\u6849\u6832\u6833\u683b\u684b\u684f\u6816\u6831\u681c\u6835\u682b\u682d\u682f\u684e\u6844\u6834\u681d\u6812\u6814\u6826\u6828\u682e\u684d\u683a\u6825\u6820\u6b2c\u6b2f\u6b2d\u6b31\u6b34\u6b6d\u8082\u6b88\u6be6\u6be4"],["d240","\u6be8\u6be3\u6be2\u6be7\u6c25\u6d7a\u6d63\u6d64\u6d76\u6d0d\u6d61\u6d92\u6d58\u6d62\u6d6d\u6d6f\u6d91\u6d8d\u6def\u6d7f\u6d86\u6d5e\u6d67\u6d60\u6d97\u6d70\u6d7c\u6d5f\u6d82\u6d98\u6d2f\u6d68\u6d8b\u6d7e\u6d80\u6d84\u6d16\u6d83\u6d7b\u6d7d\u6d75\u6d90\u70dc\u70d3\u70d1\u70dd\u70cb\u7f39\u70e2\u70d7\u70d2\u70de\u70e0\u70d4\u70cd\u70c5\u70c6\u70c7\u70da\u70ce\u70e1\u7242\u7278"],["d2a1","\u7277\u7276\u7300\u72fa\u72f4\u72fe\u72f6\u72f3\u72fb\u7301\u73d3\u73d9\u73e5\u73d6\u73bc\u73e7\u73e3\u73e9\u73dc\u73d2\u73db\u73d4\u73dd\u73da\u73d7\u73d8\u73e8\u74de\u74df\u74f4\u74f5\u7521\u755b\u755f\u75b0\u75c1\u75bb\u75c4\u75c0\u75bf\u75b6\u75ba\u768a\u76c9\u771d\u771b\u7710\u7713\u7712\u7723\u7711\u7715\u7719\u771a\u7722\u7727\u7823\u782c\u7822\u7835\u782f\u7828\u782e\u782b\u7821\u7829\u7833\u782a\u7831\u7954\u795b\u794f\u795c\u7953\u7952\u7951\u79eb\u79ec\u79e0\u79ee\u79ed\u79ea\u79dc\u79de\u79dd\u7a86\u7a89\u7a85\u7a8b\u7a8c\u7a8a\u7a87\u7ad8\u7b10"],["d340","\u7b04\u7b13\u7b05\u7b0f\u7b08\u7b0a\u7b0e\u7b09\u7b12\u7c84\u7c91\u7c8a\u7c8c\u7c88\u7c8d\u7c85\u7d1e\u7d1d\u7d11\u7d0e\u7d18\u7d16\u7d13\u7d1f\u7d12\u7d0f\u7d0c\u7f5c\u7f61\u7f5e\u7f60\u7f5d\u7f5b\u7f96\u7f92\u7fc3\u7fc2\u7fc0\u8016\u803e\u8039\u80fa\u80f2\u80f9\u80f5\u8101\u80fb\u8100\u8201\u822f\u8225\u8333\u832d\u8344\u8319\u8351\u8325\u8356\u833f\u8341\u8326\u831c\u8322"],["d3a1","\u8342\u834e\u831b\u832a\u8308\u833c\u834d\u8316\u8324\u8320\u8337\u832f\u8329\u8347\u8345\u834c\u8353\u831e\u832c\u834b\u8327\u8348\u8653\u8652\u86a2\u86a8\u8696\u868d\u8691\u869e\u8687\u8697\u8686\u868b\u869a\u8685\u86a5\u8699\u86a1\u86a7\u8695\u8698\u868e\u869d\u8690\u8694\u8843\u8844\u886d\u8875\u8876\u8872\u8880\u8871\u887f\u886f\u8883\u887e\u8874\u887c\u8a12\u8c47\u8c57\u8c7b\u8ca4\u8ca3\u8d76\u8d78\u8db5\u8db7\u8db6\u8ed1\u8ed3\u8ffe\u8ff5\u9002\u8fff\u8ffb\u9004\u8ffc\u8ff6\u90d6\u90e0\u90d9\u90da\u90e3\u90df\u90e5\u90d8\u90db\u90d7\u90dc\u90e4\u9150"],["d440","\u914e\u914f\u91d5\u91e2\u91da\u965c\u965f\u96bc\u98e3\u9adf\u9b2f\u4e7f\u5070\u506a\u5061\u505e\u5060\u5053\u504b\u505d\u5072\u5048\u504d\u5041\u505b\u504a\u5062\u5015\u5045\u505f\u5069\u506b\u5063\u5064\u5046\u5040\u506e\u5073\u5057\u5051\u51d0\u526b\u526d\u526c\u526e\u52d6\u52d3\u532d\u539c\u5575\u5576\u553c\u554d\u5550\u5534\u552a\u5551\u5562\u5536\u5535\u5530\u5552\u5545"],["d4a1","\u550c\u5532\u5565\u554e\u5539\u5548\u552d\u553b\u5540\u554b\u570a\u5707\u57fb\u5814\u57e2\u57f6\u57dc\u57f4\u5800\u57ed\u57fd\u5808\u57f8\u580b\u57f3\u57cf\u5807\u57ee\u57e3\u57f2\u57e5\u57ec\u57e1\u580e\u57fc\u5810\u57e7\u5801\u580c\u57f1\u57e9\u57f0\u580d\u5804\u595c\u5a60\u5a58\u5a55\u5a67\u5a5e\u5a38\u5a35\u5a6d\u5a50\u5a5f\u5a65\u5a6c\u5a53\u5a64\u5a57\u5a43\u5a5d\u5a52\u5a44\u5a5b\u5a48\u5a8e\u5a3e\u5a4d\u5a39\u5a4c\u5a70\u5a69\u5a47\u5a51\u5a56\u5a42\u5a5c\u5b72\u5b6e\u5bc1\u5bc0\u5c59\u5d1e\u5d0b\u5d1d\u5d1a\u5d20\u5d0c\u5d28\u5d0d\u5d26\u5d25\u5d0f"],["d540","\u5d30\u5d12\u5d23\u5d1f\u5d2e\u5e3e\u5e34\u5eb1\u5eb4\u5eb9\u5eb2\u5eb3\u5f36\u5f38\u5f9b\u5f96\u5f9f\u608a\u6090\u6086\u60be\u60b0\u60ba\u60d3\u60d4\u60cf\u60e4\u60d9\u60dd\u60c8\u60b1\u60db\u60b7\u60ca\u60bf\u60c3\u60cd\u60c0\u6332\u6365\u638a\u6382\u637d\u63bd\u639e\u63ad\u639d\u6397\u63ab\u638e\u636f\u6387\u6390\u636e\u63af\u6375\u639c\u636d\u63ae\u637c\u63a4\u633b\u639f"],["d5a1","\u6378\u6385\u6381\u6391\u638d\u6370\u6553\u65cd\u6665\u6661\u665b\u6659\u665c\u6662\u6718\u6879\u6887\u6890\u689c\u686d\u686e\u68ae\u68ab\u6956\u686f\u68a3\u68ac\u68a9\u6875\u6874\u68b2\u688f\u6877\u6892\u687c\u686b\u6872\u68aa\u6880\u6871\u687e\u689b\u6896\u688b\u68a0\u6889\u68a4\u6878\u687b\u6891\u688c\u688a\u687d\u6b36\u6b33\u6b37\u6b38\u6b91\u6b8f\u6b8d\u6b8e\u6b8c\u6c2a\u6dc0\u6dab\u6db4\u6db3\u6e74\u6dac\u6de9\u6de2\u6db7\u6df6\u6dd4\u6e00\u6dc8\u6de0\u6ddf\u6dd6\u6dbe\u6de5\u6ddc\u6ddd\u6ddb\u6df4\u6dca\u6dbd\u6ded\u6df0\u6dba\u6dd5\u6dc2\u6dcf\u6dc9"],["d640","\u6dd0\u6df2\u6dd3\u6dfd\u6dd7\u6dcd\u6de3\u6dbb\u70fa\u710d\u70f7\u7117\u70f4\u710c\u70f0\u7104\u70f3\u7110\u70fc\u70ff\u7106\u7113\u7100\u70f8\u70f6\u710b\u7102\u710e\u727e\u727b\u727c\u727f\u731d\u7317\u7307\u7311\u7318\u730a\u7308\u72ff\u730f\u731e\u7388\u73f6\u73f8\u73f5\u7404\u7401\u73fd\u7407\u7400\u73fa\u73fc\u73ff\u740c\u740b\u73f4\u7408\u7564\u7563\u75ce\u75d2\u75cf"],["d6a1","\u75cb\u75cc\u75d1\u75d0\u768f\u7689\u76d3\u7739\u772f\u772d\u7731\u7732\u7734\u7733\u773d\u7725\u773b\u7735\u7848\u7852\u7849\u784d\u784a\u784c\u7826\u7845\u7850\u7964\u7967\u7969\u796a\u7963\u796b\u7961\u79bb\u79fa\u79f8\u79f6\u79f7\u7a8f\u7a94\u7a90\u7b35\u7b47\u7b34\u7b25\u7b30\u7b22\u7b24\u7b33\u7b18\u7b2a\u7b1d\u7b31\u7b2b\u7b2d\u7b2f\u7b32\u7b38\u7b1a\u7b23\u7c94\u7c98\u7c96\u7ca3\u7d35\u7d3d\u7d38\u7d36\u7d3a\u7d45\u7d2c\u7d29\u7d41\u7d47\u7d3e\u7d3f\u7d4a\u7d3b\u7d28\u7f63\u7f95\u7f9c\u7f9d\u7f9b\u7fca\u7fcb\u7fcd\u7fd0\u7fd1\u7fc7\u7fcf\u7fc9\u801f"],["d740","\u801e\u801b\u8047\u8043\u8048\u8118\u8125\u8119\u811b\u812d\u811f\u812c\u811e\u8121\u8115\u8127\u811d\u8122\u8211\u8238\u8233\u823a\u8234\u8232\u8274\u8390\u83a3\u83a8\u838d\u837a\u8373\u83a4\u8374\u838f\u8381\u8395\u8399\u8375\u8394\u83a9\u837d\u8383\u838c\u839d\u839b\u83aa\u838b\u837e\u83a5\u83af\u8388\u8397\u83b0\u837f\u83a6\u8387\u83ae\u8376\u839a\u8659\u8656\u86bf\u86b7"],["d7a1","\u86c2\u86c1\u86c5\u86ba\u86b0\u86c8\u86b9\u86b3\u86b8\u86cc\u86b4\u86bb\u86bc\u86c3\u86bd\u86be\u8852\u8889\u8895\u88a8\u88a2\u88aa\u889a\u8891\u88a1\u889f\u8898\u88a7\u8899\u889b\u8897\u88a4\u88ac\u888c\u8893\u888e\u8982\u89d6\u89d9\u89d5\u8a30\u8a27\u8a2c\u8a1e\u8c39\u8c3b\u8c5c\u8c5d\u8c7d\u8ca5\u8d7d\u8d7b\u8d79\u8dbc\u8dc2\u8db9\u8dbf\u8dc1\u8ed8\u8ede\u8edd\u8edc\u8ed7\u8ee0\u8ee1\u9024\u900b\u9011\u901c\u900c\u9021\u90ef\u90ea\u90f0\u90f4\u90f2\u90f3\u90d4\u90eb\u90ec\u90e9\u9156\u9158\u915a\u9153\u9155\u91ec\u91f4\u91f1\u91f3\u91f8\u91e4\u91f9\u91ea"],["d840","\u91eb\u91f7\u91e8\u91ee\u957a\u9586\u9588\u967c\u966d\u966b\u9671\u966f\u96bf\u976a\u9804\u98e5\u9997\u509b\u5095\u5094\u509e\u508b\u50a3\u5083\u508c\u508e\u509d\u5068\u509c\u5092\u5082\u5087\u515f\u51d4\u5312\u5311\u53a4\u53a7\u5591\u55a8\u55a5\u55ad\u5577\u5645\u55a2\u5593\u5588\u558f\u55b5\u5581\u55a3\u5592\u55a4\u557d\u558c\u55a6\u557f\u5595\u55a1\u558e\u570c\u5829\u5837"],["d8a1","\u5819\u581e\u5827\u5823\u5828\u57f5\u5848\u5825\u581c\u581b\u5833\u583f\u5836\u582e\u5839\u5838\u582d\u582c\u583b\u5961\u5aaf\u5a94\u5a9f\u5a7a\u5aa2\u5a9e\u5a78\u5aa6\u5a7c\u5aa5\u5aac\u5a95\u5aae\u5a37\u5a84\u5a8a\u5a97\u5a83\u5a8b\u5aa9\u5a7b\u5a7d\u5a8c\u5a9c\u5a8f\u5a93\u5a9d\u5bea\u5bcd\u5bcb\u5bd4\u5bd1\u5bca\u5bce\u5c0c\u5c30\u5d37\u5d43\u5d6b\u5d41\u5d4b\u5d3f\u5d35\u5d51\u5d4e\u5d55\u5d33\u5d3a\u5d52\u5d3d\u5d31\u5d59\u5d42\u5d39\u5d49\u5d38\u5d3c\u5d32\u5d36\u5d40\u5d45\u5e44\u5e41\u5f58\u5fa6\u5fa5\u5fab\u60c9\u60b9\u60cc\u60e2\u60ce\u60c4\u6114"],["d940","\u60f2\u610a\u6116\u6105\u60f5\u6113\u60f8\u60fc\u60fe\u60c1\u6103\u6118\u611d\u6110\u60ff\u6104\u610b\u624a\u6394\u63b1\u63b0\u63ce\u63e5\u63e8\u63ef\u63c3\u649d\u63f3\u63ca\u63e0\u63f6\u63d5\u63f2\u63f5\u6461\u63df\u63be\u63dd\u63dc\u63c4\u63d8\u63d3\u63c2\u63c7\u63cc\u63cb\u63c8\u63f0\u63d7\u63d9\u6532\u6567\u656a\u6564\u655c\u6568\u6565\u658c\u659d\u659e\u65ae\u65d0\u65d2"],["d9a1","\u667c\u666c\u667b\u6680\u6671\u6679\u666a\u6672\u6701\u690c\u68d3\u6904\u68dc\u692a\u68ec\u68ea\u68f1\u690f\u68d6\u68f7\u68eb\u68e4\u68f6\u6913\u6910\u68f3\u68e1\u6907\u68cc\u6908\u6970\u68b4\u6911\u68ef\u68c6\u6914\u68f8\u68d0\u68fd\u68fc\u68e8\u690b\u690a\u6917\u68ce\u68c8\u68dd\u68de\u68e6\u68f4\u68d1\u6906\u68d4\u68e9\u6915\u6925\u68c7\u6b39\u6b3b\u6b3f\u6b3c\u6b94\u6b97\u6b99\u6b95\u6bbd\u6bf0\u6bf2\u6bf3\u6c30\u6dfc\u6e46\u6e47\u6e1f\u6e49\u6e88\u6e3c\u6e3d\u6e45\u6e62\u6e2b\u6e3f\u6e41\u6e5d\u6e73\u6e1c\u6e33\u6e4b\u6e40\u6e51\u6e3b\u6e03\u6e2e\u6e5e"],["da40","\u6e68\u6e5c\u6e61\u6e31\u6e28\u6e60\u6e71\u6e6b\u6e39\u6e22\u6e30\u6e53\u6e65\u6e27\u6e78\u6e64\u6e77\u6e55\u6e79\u6e52\u6e66\u6e35\u6e36\u6e5a\u7120\u711e\u712f\u70fb\u712e\u7131\u7123\u7125\u7122\u7132\u711f\u7128\u713a\u711b\u724b\u725a\u7288\u7289\u7286\u7285\u728b\u7312\u730b\u7330\u7322\u7331\u7333\u7327\u7332\u732d\u7326\u7323\u7335\u730c\u742e\u742c\u7430\u742b\u7416"],["daa1","\u741a\u7421\u742d\u7431\u7424\u7423\u741d\u7429\u7420\u7432\u74fb\u752f\u756f\u756c\u75e7\u75da\u75e1\u75e6\u75dd\u75df\u75e4\u75d7\u7695\u7692\u76da\u7746\u7747\u7744\u774d\u7745\u774a\u774e\u774b\u774c\u77de\u77ec\u7860\u7864\u7865\u785c\u786d\u7871\u786a\u786e\u7870\u7869\u7868\u785e\u7862\u7974\u7973\u7972\u7970\u7a02\u7a0a\u7a03\u7a0c\u7a04\u7a99\u7ae6\u7ae4\u7b4a\u7b3b\u7b44\u7b48\u7b4c\u7b4e\u7b40\u7b58\u7b45\u7ca2\u7c9e\u7ca8\u7ca1\u7d58\u7d6f\u7d63\u7d53\u7d56\u7d67\u7d6a\u7d4f\u7d6d\u7d5c\u7d6b\u7d52\u7d54\u7d69\u7d51\u7d5f\u7d4e\u7f3e\u7f3f\u7f65"],["db40","\u7f66\u7fa2\u7fa0\u7fa1\u7fd7\u8051\u804f\u8050\u80fe\u80d4\u8143\u814a\u8152\u814f\u8147\u813d\u814d\u813a\u81e6\u81ee\u81f7\u81f8\u81f9\u8204\u823c\u823d\u823f\u8275\u833b\u83cf\u83f9\u8423\u83c0\u83e8\u8412\u83e7\u83e4\u83fc\u83f6\u8410\u83c6\u83c8\u83eb\u83e3\u83bf\u8401\u83dd\u83e5\u83d8\u83ff\u83e1\u83cb\u83ce\u83d6\u83f5\u83c9\u8409\u840f\u83de\u8411\u8406\u83c2\u83f3"],["dba1","\u83d5\u83fa\u83c7\u83d1\u83ea\u8413\u83c3\u83ec\u83ee\u83c4\u83fb\u83d7\u83e2\u841b\u83db\u83fe\u86d8\u86e2\u86e6\u86d3\u86e3\u86da\u86ea\u86dd\u86eb\u86dc\u86ec\u86e9\u86d7\u86e8\u86d1\u8848\u8856\u8855\u88ba\u88d7\u88b9\u88b8\u88c0\u88be\u88b6\u88bc\u88b7\u88bd\u88b2\u8901\u88c9\u8995\u8998\u8997\u89dd\u89da\u89db\u8a4e\u8a4d\u8a39\u8a59\u8a40\u8a57\u8a58\u8a44\u8a45\u8a52\u8a48\u8a51\u8a4a\u8a4c\u8a4f\u8c5f\u8c81\u8c80\u8cba\u8cbe\u8cb0\u8cb9\u8cb5\u8d84\u8d80\u8d89\u8dd8\u8dd3\u8dcd\u8dc7\u8dd6\u8ddc\u8dcf\u8dd5\u8dd9\u8dc8\u8dd7\u8dc5\u8eef\u8ef7\u8efa"],["dc40","\u8ef9\u8ee6\u8eee\u8ee5\u8ef5\u8ee7\u8ee8\u8ef6\u8eeb\u8ef1\u8eec\u8ef4\u8ee9\u902d\u9034\u902f\u9106\u912c\u9104\u90ff\u90fc\u9108\u90f9\u90fb\u9101\u9100\u9107\u9105\u9103\u9161\u9164\u915f\u9162\u9160\u9201\u920a\u9225\u9203\u921a\u9226\u920f\u920c\u9200\u9212\u91ff\u91fd\u9206\u9204\u9227\u9202\u921c\u9224\u9219\u9217\u9205\u9216\u957b\u958d\u958c\u9590\u9687\u967e\u9688"],["dca1","\u9689\u9683\u9680\u96c2\u96c8\u96c3\u96f1\u96f0\u976c\u9770\u976e\u9807\u98a9\u98eb\u9ce6\u9ef9\u4e83\u4e84\u4eb6\u50bd\u50bf\u50c6\u50ae\u50c4\u50ca\u50b4\u50c8\u50c2\u50b0\u50c1\u50ba\u50b1\u50cb\u50c9\u50b6\u50b8\u51d7\u527a\u5278\u527b\u527c\u55c3\u55db\u55cc\u55d0\u55cb\u55ca\u55dd\u55c0\u55d4\u55c4\u55e9\u55bf\u55d2\u558d\u55cf\u55d5\u55e2\u55d6\u55c8\u55f2\u55cd\u55d9\u55c2\u5714\u5853\u5868\u5864\u584f\u584d\u5849\u586f\u5855\u584e\u585d\u5859\u5865\u585b\u583d\u5863\u5871\u58fc\u5ac7\u5ac4\u5acb\u5aba\u5ab8\u5ab1\u5ab5\u5ab0\u5abf\u5ac8\u5abb\u5ac6"],["dd40","\u5ab7\u5ac0\u5aca\u5ab4\u5ab6\u5acd\u5ab9\u5a90\u5bd6\u5bd8\u5bd9\u5c1f\u5c33\u5d71\u5d63\u5d4a\u5d65\u5d72\u5d6c\u5d5e\u5d68\u5d67\u5d62\u5df0\u5e4f\u5e4e\u5e4a\u5e4d\u5e4b\u5ec5\u5ecc\u5ec6\u5ecb\u5ec7\u5f40\u5faf\u5fad\u60f7\u6149\u614a\u612b\u6145\u6136\u6132\u612e\u6146\u612f\u614f\u6129\u6140\u6220\u9168\u6223\u6225\u6224\u63c5\u63f1\u63eb\u6410\u6412\u6409\u6420\u6424"],["dda1","\u6433\u6443\u641f\u6415\u6418\u6439\u6437\u6422\u6423\u640c\u6426\u6430\u6428\u6441\u6435\u642f\u640a\u641a\u6440\u6425\u6427\u640b\u63e7\u641b\u642e\u6421\u640e\u656f\u6592\u65d3\u6686\u668c\u6695\u6690\u668b\u668a\u6699\u6694\u6678\u6720\u6966\u695f\u6938\u694e\u6962\u6971\u693f\u6945\u696a\u6939\u6942\u6957\u6959\u697a\u6948\u6949\u6935\u696c\u6933\u693d\u6965\u68f0\u6978\u6934\u6969\u6940\u696f\u6944\u6976\u6958\u6941\u6974\u694c\u693b\u694b\u6937\u695c\u694f\u6951\u6932\u6952\u692f\u697b\u693c\u6b46\u6b45\u6b43\u6b42\u6b48\u6b41\u6b9b\ufa0d\u6bfb\u6bfc"],["de40","\u6bf9\u6bf7\u6bf8\u6e9b\u6ed6\u6ec8\u6e8f\u6ec0\u6e9f\u6e93\u6e94\u6ea0\u6eb1\u6eb9\u6ec6\u6ed2\u6ebd\u6ec1\u6e9e\u6ec9\u6eb7\u6eb0\u6ecd\u6ea6\u6ecf\u6eb2\u6ebe\u6ec3\u6edc\u6ed8\u6e99\u6e92\u6e8e\u6e8d\u6ea4\u6ea1\u6ebf\u6eb3\u6ed0\u6eca\u6e97\u6eae\u6ea3\u7147\u7154\u7152\u7163\u7160\u7141\u715d\u7162\u7172\u7178\u716a\u7161\u7142\u7158\u7143\u714b\u7170\u715f\u7150\u7153"],["dea1","\u7144\u714d\u715a\u724f\u728d\u728c\u7291\u7290\u728e\u733c\u7342\u733b\u733a\u7340\u734a\u7349\u7444\u744a\u744b\u7452\u7451\u7457\u7440\u744f\u7450\u744e\u7442\u7446\u744d\u7454\u74e1\u74ff\u74fe\u74fd\u751d\u7579\u7577\u6983\u75ef\u760f\u7603\u75f7\u75fe\u75fc\u75f9\u75f8\u7610\u75fb\u75f6\u75ed\u75f5\u75fd\u7699\u76b5\u76dd\u7755\u775f\u7760\u7752\u7756\u775a\u7769\u7767\u7754\u7759\u776d\u77e0\u7887\u789a\u7894\u788f\u7884\u7895\u7885\u7886\u78a1\u7883\u7879\u7899\u7880\u7896\u787b\u797c\u7982\u797d\u7979\u7a11\u7a18\u7a19\u7a12\u7a17\u7a15\u7a22\u7a13"],["df40","\u7a1b\u7a10\u7aa3\u7aa2\u7a9e\u7aeb\u7b66\u7b64\u7b6d\u7b74\u7b69\u7b72\u7b65\u7b73\u7b71\u7b70\u7b61\u7b78\u7b76\u7b63\u7cb2\u7cb4\u7caf\u7d88\u7d86\u7d80\u7d8d\u7d7f\u7d85\u7d7a\u7d8e\u7d7b\u7d83\u7d7c\u7d8c\u7d94\u7d84\u7d7d\u7d92\u7f6d\u7f6b\u7f67\u7f68\u7f6c\u7fa6\u7fa5\u7fa7\u7fdb\u7fdc\u8021\u8164\u8160\u8177\u815c\u8169\u815b\u8162\u8172\u6721\u815e\u8176\u8167\u816f"],["dfa1","\u8144\u8161\u821d\u8249\u8244\u8240\u8242\u8245\u84f1\u843f\u8456\u8476\u8479\u848f\u848d\u8465\u8451\u8440\u8486\u8467\u8430\u844d\u847d\u845a\u8459\u8474\u8473\u845d\u8507\u845e\u8437\u843a\u8434\u847a\u8443\u8478\u8432\u8445\u8429\u83d9\u844b\u842f\u8442\u842d\u845f\u8470\u8439\u844e\u844c\u8452\u846f\u84c5\u848e\u843b\u8447\u8436\u8433\u8468\u847e\u8444\u842b\u8460\u8454\u846e\u8450\u870b\u8704\u86f7\u870c\u86fa\u86d6\u86f5\u874d\u86f8\u870e\u8709\u8701\u86f6\u870d\u8705\u88d6\u88cb\u88cd\u88ce\u88de\u88db\u88da\u88cc\u88d0\u8985\u899b\u89df\u89e5\u89e4"],["e040","\u89e1\u89e0\u89e2\u89dc\u89e6\u8a76\u8a86\u8a7f\u8a61\u8a3f\u8a77\u8a82\u8a84\u8a75\u8a83\u8a81\u8a74\u8a7a\u8c3c\u8c4b\u8c4a\u8c65\u8c64\u8c66\u8c86\u8c84\u8c85\u8ccc\u8d68\u8d69\u8d91\u8d8c\u8d8e\u8d8f\u8d8d\u8d93\u8d94\u8d90\u8d92\u8df0\u8de0\u8dec\u8df1\u8dee\u8dd0\u8de9\u8de3\u8de2\u8de7\u8df2\u8deb\u8df4\u8f06\u8eff\u8f01\u8f00\u8f05\u8f07\u8f08\u8f02\u8f0b\u9052\u903f"],["e0a1","\u9044\u9049\u903d\u9110\u910d\u910f\u9111\u9116\u9114\u910b\u910e\u916e\u916f\u9248\u9252\u9230\u923a\u9266\u9233\u9265\u925e\u9283\u922e\u924a\u9246\u926d\u926c\u924f\u9260\u9267\u926f\u9236\u9261\u9270\u9231\u9254\u9263\u9250\u9272\u924e\u9253\u924c\u9256\u9232\u959f\u959c\u959e\u959b\u9692\u9693\u9691\u9697\u96ce\u96fa\u96fd\u96f8\u96f5\u9773\u9777\u9778\u9772\u980f\u980d\u980e\u98ac\u98f6\u98f9\u99af\u99b2\u99b0\u99b5\u9aad\u9aab\u9b5b\u9cea\u9ced\u9ce7\u9e80\u9efd\u50e6\u50d4\u50d7\u50e8\u50f3\u50db\u50ea\u50dd\u50e4\u50d3\u50ec\u50f0\u50ef\u50e3\u50e0"],["e140","\u51d8\u5280\u5281\u52e9\u52eb\u5330\u53ac\u5627\u5615\u560c\u5612\u55fc\u560f\u561c\u5601\u5613\u5602\u55fa\u561d\u5604\u55ff\u55f9\u5889\u587c\u5890\u5898\u5886\u5881\u587f\u5874\u588b\u587a\u5887\u5891\u588e\u5876\u5882\u5888\u587b\u5894\u588f\u58fe\u596b\u5adc\u5aee\u5ae5\u5ad5\u5aea\u5ada\u5aed\u5aeb\u5af3\u5ae2\u5ae0\u5adb\u5aec\u5ade\u5add\u5ad9\u5ae8\u5adf\u5b77\u5be0"],["e1a1","\u5be3\u5c63\u5d82\u5d80\u5d7d\u5d86\u5d7a\u5d81\u5d77\u5d8a\u5d89\u5d88\u5d7e\u5d7c\u5d8d\u5d79\u5d7f\u5e58\u5e59\u5e53\u5ed8\u5ed1\u5ed7\u5ece\u5edc\u5ed5\u5ed9\u5ed2\u5ed4\u5f44\u5f43\u5f6f\u5fb6\u612c\u6128\u6141\u615e\u6171\u6173\u6152\u6153\u6172\u616c\u6180\u6174\u6154\u617a\u615b\u6165\u613b\u616a\u6161\u6156\u6229\u6227\u622b\u642b\u644d\u645b\u645d\u6474\u6476\u6472\u6473\u647d\u6475\u6466\u64a6\u644e\u6482\u645e\u645c\u644b\u6453\u6460\u6450\u647f\u643f\u646c\u646b\u6459\u6465\u6477\u6573\u65a0\u66a1\u66a0\u669f\u6705\u6704\u6722\u69b1\u69b6\u69c9"],["e240","\u69a0\u69ce\u6996\u69b0\u69ac\u69bc\u6991\u6999\u698e\u69a7\u698d\u69a9\u69be\u69af\u69bf\u69c4\u69bd\u69a4\u69d4\u69b9\u69ca\u699a\u69cf\u69b3\u6993\u69aa\u69a1\u699e\u69d9\u6997\u6990\u69c2\u69b5\u69a5\u69c6\u6b4a\u6b4d\u6b4b\u6b9e\u6b9f\u6ba0\u6bc3\u6bc4\u6bfe\u6ece\u6ef5\u6ef1\u6f03\u6f25\u6ef8\u6f37\u6efb\u6f2e\u6f09\u6f4e\u6f19\u6f1a\u6f27\u6f18\u6f3b\u6f12\u6eed\u6f0a"],["e2a1","\u6f36\u6f73\u6ef9\u6eee\u6f2d\u6f40\u6f30\u6f3c\u6f35\u6eeb\u6f07\u6f0e\u6f43\u6f05\u6efd\u6ef6\u6f39\u6f1c\u6efc\u6f3a\u6f1f\u6f0d\u6f1e\u6f08\u6f21\u7187\u7190\u7189\u7180\u7185\u7182\u718f\u717b\u7186\u7181\u7197\u7244\u7253\u7297\u7295\u7293\u7343\u734d\u7351\u734c\u7462\u7473\u7471\u7475\u7472\u7467\u746e\u7500\u7502\u7503\u757d\u7590\u7616\u7608\u760c\u7615\u7611\u760a\u7614\u76b8\u7781\u777c\u7785\u7782\u776e\u7780\u776f\u777e\u7783\u78b2\u78aa\u78b4\u78ad\u78a8\u787e\u78ab\u789e\u78a5\u78a0\u78ac\u78a2\u78a4\u7998\u798a\u798b\u7996\u7995\u7994\u7993"],["e340","\u7997\u7988\u7992\u7990\u7a2b\u7a4a\u7a30\u7a2f\u7a28\u7a26\u7aa8\u7aab\u7aac\u7aee\u7b88\u7b9c\u7b8a\u7b91\u7b90\u7b96\u7b8d\u7b8c\u7b9b\u7b8e\u7b85\u7b98\u5284\u7b99\u7ba4\u7b82\u7cbb\u7cbf\u7cbc\u7cba\u7da7\u7db7\u7dc2\u7da3\u7daa\u7dc1\u7dc0\u7dc5\u7d9d\u7dce\u7dc4\u7dc6\u7dcb\u7dcc\u7daf\u7db9\u7d96\u7dbc\u7d9f\u7da6\u7dae\u7da9\u7da1\u7dc9\u7f73\u7fe2\u7fe3\u7fe5\u7fde"],["e3a1","\u8024\u805d\u805c\u8189\u8186\u8183\u8187\u818d\u818c\u818b\u8215\u8497\u84a4\u84a1\u849f\u84ba\u84ce\u84c2\u84ac\u84ae\u84ab\u84b9\u84b4\u84c1\u84cd\u84aa\u849a\u84b1\u84d0\u849d\u84a7\u84bb\u84a2\u8494\u84c7\u84cc\u849b\u84a9\u84af\u84a8\u84d6\u8498\u84b6\u84cf\u84a0\u84d7\u84d4\u84d2\u84db\u84b0\u8491\u8661\u8733\u8723\u8728\u876b\u8740\u872e\u871e\u8721\u8719\u871b\u8743\u872c\u8741\u873e\u8746\u8720\u8732\u872a\u872d\u873c\u8712\u873a\u8731\u8735\u8742\u8726\u8727\u8738\u8724\u871a\u8730\u8711\u88f7\u88e7\u88f1\u88f2\u88fa\u88fe\u88ee\u88fc\u88f6\u88fb"],["e440","\u88f0\u88ec\u88eb\u899d\u89a1\u899f\u899e\u89e9\u89eb\u89e8\u8aab\u8a99\u8a8b\u8a92\u8a8f\u8a96\u8c3d\u8c68\u8c69\u8cd5\u8ccf\u8cd7\u8d96\u8e09\u8e02\u8dff\u8e0d\u8dfd\u8e0a\u8e03\u8e07\u8e06\u8e05\u8dfe\u8e00\u8e04\u8f10\u8f11\u8f0e\u8f0d\u9123\u911c\u9120\u9122\u911f\u911d\u911a\u9124\u9121\u911b\u917a\u9172\u9179\u9173\u92a5\u92a4\u9276\u929b\u927a\u92a0\u9294\u92aa\u928d"],["e4a1","\u92a6\u929a\u92ab\u9279\u9297\u927f\u92a3\u92ee\u928e\u9282\u9295\u92a2\u927d\u9288\u92a1\u928a\u9286\u928c\u9299\u92a7\u927e\u9287\u92a9\u929d\u928b\u922d\u969e\u96a1\u96ff\u9758\u977d\u977a\u977e\u9783\u9780\u9782\u977b\u9784\u9781\u977f\u97ce\u97cd\u9816\u98ad\u98ae\u9902\u9900\u9907\u999d\u999c\u99c3\u99b9\u99bb\u99ba\u99c2\u99bd\u99c7\u9ab1\u9ae3\u9ae7\u9b3e\u9b3f\u9b60\u9b61\u9b5f\u9cf1\u9cf2\u9cf5\u9ea7\u50ff\u5103\u5130\u50f8\u5106\u5107\u50f6\u50fe\u510b\u510c\u50fd\u510a\u528b\u528c\u52f1\u52ef\u5648\u5642\u564c\u5635\u5641\u564a\u5649\u5646\u5658"],["e540","\u565a\u5640\u5633\u563d\u562c\u563e\u5638\u562a\u563a\u571a\u58ab\u589d\u58b1\u58a0\u58a3\u58af\u58ac\u58a5\u58a1\u58ff\u5aff\u5af4\u5afd\u5af7\u5af6\u5b03\u5af8\u5b02\u5af9\u5b01\u5b07\u5b05\u5b0f\u5c67\u5d99\u5d97\u5d9f\u5d92\u5da2\u5d93\u5d95\u5da0\u5d9c\u5da1\u5d9a\u5d9e\u5e69\u5e5d\u5e60\u5e5c\u7df3\u5edb\u5ede\u5ee1\u5f49\u5fb2\u618b\u6183\u6179\u61b1\u61b0\u61a2\u6189"],["e5a1","\u619b\u6193\u61af\u61ad\u619f\u6192\u61aa\u61a1\u618d\u6166\u61b3\u622d\u646e\u6470\u6496\u64a0\u6485\u6497\u649c\u648f\u648b\u648a\u648c\u64a3\u649f\u6468\u64b1\u6498\u6576\u657a\u6579\u657b\u65b2\u65b3\u66b5\u66b0\u66a9\u66b2\u66b7\u66aa\u66af\u6a00\u6a06\u6a17\u69e5\u69f8\u6a15\u69f1\u69e4\u6a20\u69ff\u69ec\u69e2\u6a1b\u6a1d\u69fe\u6a27\u69f2\u69ee\u6a14\u69f7\u69e7\u6a40\u6a08\u69e6\u69fb\u6a0d\u69fc\u69eb\u6a09\u6a04\u6a18\u6a25\u6a0f\u69f6\u6a26\u6a07\u69f4\u6a16\u6b51\u6ba5\u6ba3\u6ba2\u6ba6\u6c01\u6c00\u6bff\u6c02\u6f41\u6f26\u6f7e\u6f87\u6fc6\u6f92"],["e640","\u6f8d\u6f89\u6f8c\u6f62\u6f4f\u6f85\u6f5a\u6f96\u6f76\u6f6c\u6f82\u6f55\u6f72\u6f52\u6f50\u6f57\u6f94\u6f93\u6f5d\u6f00\u6f61\u6f6b\u6f7d\u6f67\u6f90\u6f53\u6f8b\u6f69\u6f7f\u6f95\u6f63\u6f77\u6f6a\u6f7b\u71b2\u71af\u719b\u71b0\u71a0\u719a\u71a9\u71b5\u719d\u71a5\u719e\u71a4\u71a1\u71aa\u719c\u71a7\u71b3\u7298\u729a\u7358\u7352\u735e\u735f\u7360\u735d\u735b\u7361\u735a\u7359"],["e6a1","\u7362\u7487\u7489\u748a\u7486\u7481\u747d\u7485\u7488\u747c\u7479\u7508\u7507\u757e\u7625\u761e\u7619\u761d\u761c\u7623\u761a\u7628\u761b\u769c\u769d\u769e\u769b\u778d\u778f\u7789\u7788\u78cd\u78bb\u78cf\u78cc\u78d1\u78ce\u78d4\u78c8\u78c3\u78c4\u78c9\u799a\u79a1\u79a0\u799c\u79a2\u799b\u6b76\u7a39\u7ab2\u7ab4\u7ab3\u7bb7\u7bcb\u7bbe\u7bac\u7bce\u7baf\u7bb9\u7bca\u7bb5\u7cc5\u7cc8\u7ccc\u7ccb\u7df7\u7ddb\u7dea\u7de7\u7dd7\u7de1\u7e03\u7dfa\u7de6\u7df6\u7df1\u7df0\u7dee\u7ddf\u7f76\u7fac\u7fb0\u7fad\u7fed\u7feb\u7fea\u7fec\u7fe6\u7fe8\u8064\u8067\u81a3\u819f"],["e740","\u819e\u8195\u81a2\u8199\u8197\u8216\u824f\u8253\u8252\u8250\u824e\u8251\u8524\u853b\u850f\u8500\u8529\u850e\u8509\u850d\u851f\u850a\u8527\u851c\u84fb\u852b\u84fa\u8508\u850c\u84f4\u852a\u84f2\u8515\u84f7\u84eb\u84f3\u84fc\u8512\u84ea\u84e9\u8516\u84fe\u8528\u851d\u852e\u8502\u84fd\u851e\u84f6\u8531\u8526\u84e7\u84e8\u84f0\u84ef\u84f9\u8518\u8520\u8530\u850b\u8519\u852f\u8662"],["e7a1","\u8756\u8763\u8764\u8777\u87e1\u8773\u8758\u8754\u875b\u8752\u8761\u875a\u8751\u875e\u876d\u876a\u8750\u874e\u875f\u875d\u876f\u876c\u877a\u876e\u875c\u8765\u874f\u877b\u8775\u8762\u8767\u8769\u885a\u8905\u890c\u8914\u890b\u8917\u8918\u8919\u8906\u8916\u8911\u890e\u8909\u89a2\u89a4\u89a3\u89ed\u89f0\u89ec\u8acf\u8ac6\u8ab8\u8ad3\u8ad1\u8ad4\u8ad5\u8abb\u8ad7\u8abe\u8ac0\u8ac5\u8ad8\u8ac3\u8aba\u8abd\u8ad9\u8c3e\u8c4d\u8c8f\u8ce5\u8cdf\u8cd9\u8ce8\u8cda\u8cdd\u8ce7\u8da0\u8d9c\u8da1\u8d9b\u8e20\u8e23\u8e25\u8e24\u8e2e\u8e15\u8e1b\u8e16\u8e11\u8e19\u8e26\u8e27"],["e840","\u8e14\u8e12\u8e18\u8e13\u8e1c\u8e17\u8e1a\u8f2c\u8f24\u8f18\u8f1a\u8f20\u8f23\u8f16\u8f17\u9073\u9070\u906f\u9067\u906b\u912f\u912b\u9129\u912a\u9132\u9126\u912e\u9185\u9186\u918a\u9181\u9182\u9184\u9180\u92d0\u92c3\u92c4\u92c0\u92d9\u92b6\u92cf\u92f1\u92df\u92d8\u92e9\u92d7\u92dd\u92cc\u92ef\u92c2\u92e8\u92ca\u92c8\u92ce\u92e6\u92cd\u92d5\u92c9\u92e0\u92de\u92e7\u92d1\u92d3"],["e8a1","\u92b5\u92e1\u92c6\u92b4\u957c\u95ac\u95ab\u95ae\u95b0\u96a4\u96a2\u96d3\u9705\u9708\u9702\u975a\u978a\u978e\u9788\u97d0\u97cf\u981e\u981d\u9826\u9829\u9828\u9820\u981b\u9827\u98b2\u9908\u98fa\u9911\u9914\u9916\u9917\u9915\u99dc\u99cd\u99cf\u99d3\u99d4\u99ce\u99c9\u99d6\u99d8\u99cb\u99d7\u99cc\u9ab3\u9aec\u9aeb\u9af3\u9af2\u9af1\u9b46\u9b43\u9b67\u9b74\u9b71\u9b66\u9b76\u9b75\u9b70\u9b68\u9b64\u9b6c\u9cfc\u9cfa\u9cfd\u9cff\u9cf7\u9d07\u9d00\u9cf9\u9cfb\u9d08\u9d05\u9d04\u9e83\u9ed3\u9f0f\u9f10\u511c\u5113\u5117\u511a\u5111\u51de\u5334\u53e1\u5670\u5660\u566e"],["e940","\u5673\u5666\u5663\u566d\u5672\u565e\u5677\u571c\u571b\u58c8\u58bd\u58c9\u58bf\u58ba\u58c2\u58bc\u58c6\u5b17\u5b19\u5b1b\u5b21\u5b14\u5b13\u5b10\u5b16\u5b28\u5b1a\u5b20\u5b1e\u5bef\u5dac\u5db1\u5da9\u5da7\u5db5\u5db0\u5dae\u5daa\u5da8\u5db2\u5dad\u5daf\u5db4\u5e67\u5e68\u5e66\u5e6f\u5ee9\u5ee7\u5ee6\u5ee8\u5ee5\u5f4b\u5fbc\u619d\u61a8\u6196\u61c5\u61b4\u61c6\u61c1\u61cc\u61ba"],["e9a1","\u61bf\u61b8\u618c\u64d7\u64d6\u64d0\u64cf\u64c9\u64bd\u6489\u64c3\u64db\u64f3\u64d9\u6533\u657f\u657c\u65a2\u66c8\u66be\u66c0\u66ca\u66cb\u66cf\u66bd\u66bb\u66ba\u66cc\u6723\u6a34\u6a66\u6a49\u6a67\u6a32\u6a68\u6a3e\u6a5d\u6a6d\u6a76\u6a5b\u6a51\u6a28\u6a5a\u6a3b\u6a3f\u6a41\u6a6a\u6a64\u6a50\u6a4f\u6a54\u6a6f\u6a69\u6a60\u6a3c\u6a5e\u6a56\u6a55\u6a4d\u6a4e\u6a46\u6b55\u6b54\u6b56\u6ba7\u6baa\u6bab\u6bc8\u6bc7\u6c04\u6c03\u6c06\u6fad\u6fcb\u6fa3\u6fc7\u6fbc\u6fce\u6fc8\u6f5e\u6fc4\u6fbd\u6f9e\u6fca\u6fa8\u7004\u6fa5\u6fae\u6fba\u6fac\u6faa\u6fcf\u6fbf\u6fb8"],["ea40","\u6fa2\u6fc9\u6fab\u6fcd\u6faf\u6fb2\u6fb0\u71c5\u71c2\u71bf\u71b8\u71d6\u71c0\u71c1\u71cb\u71d4\u71ca\u71c7\u71cf\u71bd\u71d8\u71bc\u71c6\u71da\u71db\u729d\u729e\u7369\u7366\u7367\u736c\u7365\u736b\u736a\u747f\u749a\u74a0\u7494\u7492\u7495\u74a1\u750b\u7580\u762f\u762d\u7631\u763d\u7633\u763c\u7635\u7632\u7630\u76bb\u76e6\u779a\u779d\u77a1\u779c\u779b\u77a2\u77a3\u7795\u7799"],["eaa1","\u7797\u78dd\u78e9\u78e5\u78ea\u78de\u78e3\u78db\u78e1\u78e2\u78ed\u78df\u78e0\u79a4\u7a44\u7a48\u7a47\u7ab6\u7ab8\u7ab5\u7ab1\u7ab7\u7bde\u7be3\u7be7\u7bdd\u7bd5\u7be5\u7bda\u7be8\u7bf9\u7bd4\u7bea\u7be2\u7bdc\u7beb\u7bd8\u7bdf\u7cd2\u7cd4\u7cd7\u7cd0\u7cd1\u7e12\u7e21\u7e17\u7e0c\u7e1f\u7e20\u7e13\u7e0e\u7e1c\u7e15\u7e1a\u7e22\u7e0b\u7e0f\u7e16\u7e0d\u7e14\u7e25\u7e24\u7f43\u7f7b\u7f7c\u7f7a\u7fb1\u7fef\u802a\u8029\u806c\u81b1\u81a6\u81ae\u81b9\u81b5\u81ab\u81b0\u81ac\u81b4\u81b2\u81b7\u81a7\u81f2\u8255\u8256\u8257\u8556\u8545\u856b\u854d\u8553\u8561\u8558"],["eb40","\u8540\u8546\u8564\u8541\u8562\u8544\u8551\u8547\u8563\u853e\u855b\u8571\u854e\u856e\u8575\u8555\u8567\u8560\u858c\u8566\u855d\u8554\u8565\u856c\u8663\u8665\u8664\u879b\u878f\u8797\u8793\u8792\u8788\u8781\u8796\u8798\u8779\u8787\u87a3\u8785\u8790\u8791\u879d\u8784\u8794\u879c\u879a\u8789\u891e\u8926\u8930\u892d\u892e\u8927\u8931\u8922\u8929\u8923\u892f\u892c\u891f\u89f1\u8ae0"],["eba1","\u8ae2\u8af2\u8af4\u8af5\u8add\u8b14\u8ae4\u8adf\u8af0\u8ac8\u8ade\u8ae1\u8ae8\u8aff\u8aef\u8afb\u8c91\u8c92\u8c90\u8cf5\u8cee\u8cf1\u8cf0\u8cf3\u8d6c\u8d6e\u8da5\u8da7\u8e33\u8e3e\u8e38\u8e40\u8e45\u8e36\u8e3c\u8e3d\u8e41\u8e30\u8e3f\u8ebd\u8f36\u8f2e\u8f35\u8f32\u8f39\u8f37\u8f34\u9076\u9079\u907b\u9086\u90fa\u9133\u9135\u9136\u9193\u9190\u9191\u918d\u918f\u9327\u931e\u9308\u931f\u9306\u930f\u937a\u9338\u933c\u931b\u9323\u9312\u9301\u9346\u932d\u930e\u930d\u92cb\u931d\u92fa\u9325\u9313\u92f9\u92f7\u9334\u9302\u9324\u92ff\u9329\u9339\u9335\u932a\u9314\u930c"],["ec40","\u930b\u92fe\u9309\u9300\u92fb\u9316\u95bc\u95cd\u95be\u95b9\u95ba\u95b6\u95bf\u95b5\u95bd\u96a9\u96d4\u970b\u9712\u9710\u9799\u9797\u9794\u97f0\u97f8\u9835\u982f\u9832\u9924\u991f\u9927\u9929\u999e\u99ee\u99ec\u99e5\u99e4\u99f0\u99e3\u99ea\u99e9\u99e7\u9ab9\u9abf\u9ab4\u9abb\u9af6\u9afa\u9af9\u9af7\u9b33\u9b80\u9b85\u9b87\u9b7c\u9b7e\u9b7b\u9b82\u9b93\u9b92\u9b90\u9b7a\u9b95"],["eca1","\u9b7d\u9b88\u9d25\u9d17\u9d20\u9d1e\u9d14\u9d29\u9d1d\u9d18\u9d22\u9d10\u9d19\u9d1f\u9e88\u9e86\u9e87\u9eae\u9ead\u9ed5\u9ed6\u9efa\u9f12\u9f3d\u5126\u5125\u5122\u5124\u5120\u5129\u52f4\u5693\u568c\u568d\u5686\u5684\u5683\u567e\u5682\u567f\u5681\u58d6\u58d4\u58cf\u58d2\u5b2d\u5b25\u5b32\u5b23\u5b2c\u5b27\u5b26\u5b2f\u5b2e\u5b7b\u5bf1\u5bf2\u5db7\u5e6c\u5e6a\u5fbe\u5fbb\u61c3\u61b5\u61bc\u61e7\u61e0\u61e5\u61e4\u61e8\u61de\u64ef\u64e9\u64e3\u64eb\u64e4\u64e8\u6581\u6580\u65b6\u65da\u66d2\u6a8d\u6a96\u6a81\u6aa5\u6a89\u6a9f\u6a9b\u6aa1\u6a9e\u6a87\u6a93\u6a8e"],["ed40","\u6a95\u6a83\u6aa8\u6aa4\u6a91\u6a7f\u6aa6\u6a9a\u6a85\u6a8c\u6a92\u6b5b\u6bad\u6c09\u6fcc\u6fa9\u6ff4\u6fd4\u6fe3\u6fdc\u6fed\u6fe7\u6fe6\u6fde\u6ff2\u6fdd\u6fe2\u6fe8\u71e1\u71f1\u71e8\u71f2\u71e4\u71f0\u71e2\u7373\u736e\u736f\u7497\u74b2\u74ab\u7490\u74aa\u74ad\u74b1\u74a5\u74af\u7510\u7511\u7512\u750f\u7584\u7643\u7648\u7649\u7647\u76a4\u76e9\u77b5\u77ab\u77b2\u77b7\u77b6"],["eda1","\u77b4\u77b1\u77a8\u77f0\u78f3\u78fd\u7902\u78fb\u78fc\u78f2\u7905\u78f9\u78fe\u7904\u79ab\u79a8\u7a5c\u7a5b\u7a56\u7a58\u7a54\u7a5a\u7abe\u7ac0\u7ac1\u7c05\u7c0f\u7bf2\u7c00\u7bff\u7bfb\u7c0e\u7bf4\u7c0b\u7bf3\u7c02\u7c09\u7c03\u7c01\u7bf8\u7bfd\u7c06\u7bf0\u7bf1\u7c10\u7c0a\u7ce8\u7e2d\u7e3c\u7e42\u7e33\u9848\u7e38\u7e2a\u7e49\u7e40\u7e47\u7e29\u7e4c\u7e30\u7e3b\u7e36\u7e44\u7e3a\u7f45\u7f7f\u7f7e\u7f7d\u7ff4\u7ff2\u802c\u81bb\u81c4\u81cc\u81ca\u81c5\u81c7\u81bc\u81e9\u825b\u825a\u825c\u8583\u8580\u858f\u85a7\u8595\u85a0\u858b\u85a3\u857b\u85a4\u859a\u859e"],["ee40","\u8577\u857c\u8589\u85a1\u857a\u8578\u8557\u858e\u8596\u8586\u858d\u8599\u859d\u8581\u85a2\u8582\u8588\u8585\u8579\u8576\u8598\u8590\u859f\u8668\u87be\u87aa\u87ad\u87c5\u87b0\u87ac\u87b9\u87b5\u87bc\u87ae\u87c9\u87c3\u87c2\u87cc\u87b7\u87af\u87c4\u87ca\u87b4\u87b6\u87bf\u87b8\u87bd\u87de\u87b2\u8935\u8933\u893c\u893e\u8941\u8952\u8937\u8942\u89ad\u89af\u89ae\u89f2\u89f3\u8b1e"],["eea1","\u8b18\u8b16\u8b11\u8b05\u8b0b\u8b22\u8b0f\u8b12\u8b15\u8b07\u8b0d\u8b08\u8b06\u8b1c\u8b13\u8b1a\u8c4f\u8c70\u8c72\u8c71\u8c6f\u8c95\u8c94\u8cf9\u8d6f\u8e4e\u8e4d\u8e53\u8e50\u8e4c\u8e47\u8f43\u8f40\u9085\u907e\u9138\u919a\u91a2\u919b\u9199\u919f\u91a1\u919d\u91a0\u93a1\u9383\u93af\u9364\u9356\u9347\u937c\u9358\u935c\u9376\u9349\u9350\u9351\u9360\u936d\u938f\u934c\u936a\u9379\u9357\u9355\u9352\u934f\u9371\u9377\u937b\u9361\u935e\u9363\u9367\u9380\u934e\u9359\u95c7\u95c0\u95c9\u95c3\u95c5\u95b7\u96ae\u96b0\u96ac\u9720\u971f\u9718\u971d\u9719\u979a\u97a1\u979c"],["ef40","\u979e\u979d\u97d5\u97d4\u97f1\u9841\u9844\u984a\u9849\u9845\u9843\u9925\u992b\u992c\u992a\u9933\u9932\u992f\u992d\u9931\u9930\u9998\u99a3\u99a1\u9a02\u99fa\u99f4\u99f7\u99f9\u99f8\u99f6\u99fb\u99fd\u99fe\u99fc\u9a03\u9abe\u9afe\u9afd\u9b01\u9afc\u9b48\u9b9a\u9ba8\u9b9e\u9b9b\u9ba6\u9ba1\u9ba5\u9ba4\u9b86\u9ba2\u9ba0\u9baf\u9d33\u9d41\u9d67\u9d36\u9d2e\u9d2f\u9d31\u9d38\u9d30"],["efa1","\u9d45\u9d42\u9d43\u9d3e\u9d37\u9d40\u9d3d\u7ff5\u9d2d\u9e8a\u9e89\u9e8d\u9eb0\u9ec8\u9eda\u9efb\u9eff\u9f24\u9f23\u9f22\u9f54\u9fa0\u5131\u512d\u512e\u5698\u569c\u5697\u569a\u569d\u5699\u5970\u5b3c\u5c69\u5c6a\u5dc0\u5e6d\u5e6e\u61d8\u61df\u61ed\u61ee\u61f1\u61ea\u61f0\u61eb\u61d6\u61e9\u64ff\u6504\u64fd\u64f8\u6501\u6503\u64fc\u6594\u65db\u66da\u66db\u66d8\u6ac5\u6ab9\u6abd\u6ae1\u6ac6\u6aba\u6ab6\u6ab7\u6ac7\u6ab4\u6aad\u6b5e\u6bc9\u6c0b\u7007\u700c\u700d\u7001\u7005\u7014\u700e\u6fff\u7000\u6ffb\u7026\u6ffc\u6ff7\u700a\u7201\u71ff\u71f9\u7203\u71fd\u7376"],["f040","\u74b8\u74c0\u74b5\u74c1\u74be\u74b6\u74bb\u74c2\u7514\u7513\u765c\u7664\u7659\u7650\u7653\u7657\u765a\u76a6\u76bd\u76ec\u77c2\u77ba\u78ff\u790c\u7913\u7914\u7909\u7910\u7912\u7911\u79ad\u79ac\u7a5f\u7c1c\u7c29\u7c19\u7c20\u7c1f\u7c2d\u7c1d\u7c26\u7c28\u7c22\u7c25\u7c30\u7e5c\u7e50\u7e56\u7e63\u7e58\u7e62\u7e5f\u7e51\u7e60\u7e57\u7e53\u7fb5\u7fb3\u7ff7\u7ff8\u8075\u81d1\u81d2"],["f0a1","\u81d0\u825f\u825e\u85b4\u85c6\u85c0\u85c3\u85c2\u85b3\u85b5\u85bd\u85c7\u85c4\u85bf\u85cb\u85ce\u85c8\u85c5\u85b1\u85b6\u85d2\u8624\u85b8\u85b7\u85be\u8669\u87e7\u87e6\u87e2\u87db\u87eb\u87ea\u87e5\u87df\u87f3\u87e4\u87d4\u87dc\u87d3\u87ed\u87d8\u87e3\u87a4\u87d7\u87d9\u8801\u87f4\u87e8\u87dd\u8953\u894b\u894f\u894c\u8946\u8950\u8951\u8949\u8b2a\u8b27\u8b23\u8b33\u8b30\u8b35\u8b47\u8b2f\u8b3c\u8b3e\u8b31\u8b25\u8b37\u8b26\u8b36\u8b2e\u8b24\u8b3b\u8b3d\u8b3a\u8c42\u8c75\u8c99\u8c98\u8c97\u8cfe\u8d04\u8d02\u8d00\u8e5c\u8e62\u8e60\u8e57\u8e56\u8e5e\u8e65\u8e67"],["f140","\u8e5b\u8e5a\u8e61\u8e5d\u8e69\u8e54\u8f46\u8f47\u8f48\u8f4b\u9128\u913a\u913b\u913e\u91a8\u91a5\u91a7\u91af\u91aa\u93b5\u938c\u9392\u93b7\u939b\u939d\u9389\u93a7\u938e\u93aa\u939e\u93a6\u9395\u9388\u9399\u939f\u938d\u93b1\u9391\u93b2\u93a4\u93a8\u93b4\u93a3\u93a5\u95d2\u95d3\u95d1\u96b3\u96d7\u96da\u5dc2\u96df\u96d8\u96dd\u9723\u9722\u9725\u97ac\u97ae\u97a8\u97ab\u97a4\u97aa"],["f1a1","\u97a2\u97a5\u97d7\u97d9\u97d6\u97d8\u97fa\u9850\u9851\u9852\u98b8\u9941\u993c\u993a\u9a0f\u9a0b\u9a09\u9a0d\u9a04\u9a11\u9a0a\u9a05\u9a07\u9a06\u9ac0\u9adc\u9b08\u9b04\u9b05\u9b29\u9b35\u9b4a\u9b4c\u9b4b\u9bc7\u9bc6\u9bc3\u9bbf\u9bc1\u9bb5\u9bb8\u9bd3\u9bb6\u9bc4\u9bb9\u9bbd\u9d5c\u9d53\u9d4f\u9d4a\u9d5b\u9d4b\u9d59\u9d56\u9d4c\u9d57\u9d52\u9d54\u9d5f\u9d58\u9d5a\u9e8e\u9e8c\u9edf\u9f01\u9f00\u9f16\u9f25\u9f2b\u9f2a\u9f29\u9f28\u9f4c\u9f55\u5134\u5135\u5296\u52f7\u53b4\u56ab\u56ad\u56a6\u56a7\u56aa\u56ac\u58da\u58dd\u58db\u5912\u5b3d\u5b3e\u5b3f\u5dc3\u5e70"],["f240","\u5fbf\u61fb\u6507\u6510\u650d\u6509\u650c\u650e\u6584\u65de\u65dd\u66de\u6ae7\u6ae0\u6acc\u6ad1\u6ad9\u6acb\u6adf\u6adc\u6ad0\u6aeb\u6acf\u6acd\u6ade\u6b60\u6bb0\u6c0c\u7019\u7027\u7020\u7016\u702b\u7021\u7022\u7023\u7029\u7017\u7024\u701c\u702a\u720c\u720a\u7207\u7202\u7205\u72a5\u72a6\u72a4\u72a3\u72a1\u74cb\u74c5\u74b7\u74c3\u7516\u7660\u77c9\u77ca\u77c4\u77f1\u791d\u791b"],["f2a1","\u7921\u791c\u7917\u791e\u79b0\u7a67\u7a68\u7c33\u7c3c\u7c39\u7c2c\u7c3b\u7cec\u7cea\u7e76\u7e75\u7e78\u7e70\u7e77\u7e6f\u7e7a\u7e72\u7e74\u7e68\u7f4b\u7f4a\u7f83\u7f86\u7fb7\u7ffd\u7ffe\u8078\u81d7\u81d5\u8264\u8261\u8263\u85eb\u85f1\u85ed\u85d9\u85e1\u85e8\u85da\u85d7\u85ec\u85f2\u85f8\u85d8\u85df\u85e3\u85dc\u85d1\u85f0\u85e6\u85ef\u85de\u85e2\u8800\u87fa\u8803\u87f6\u87f7\u8809\u880c\u880b\u8806\u87fc\u8808\u87ff\u880a\u8802\u8962\u895a\u895b\u8957\u8961\u895c\u8958\u895d\u8959\u8988\u89b7\u89b6\u89f6\u8b50\u8b48\u8b4a\u8b40\u8b53\u8b56\u8b54\u8b4b\u8b55"],["f340","\u8b51\u8b42\u8b52\u8b57\u8c43\u8c77\u8c76\u8c9a\u8d06\u8d07\u8d09\u8dac\u8daa\u8dad\u8dab\u8e6d\u8e78\u8e73\u8e6a\u8e6f\u8e7b\u8ec2\u8f52\u8f51\u8f4f\u8f50\u8f53\u8fb4\u9140\u913f\u91b0\u91ad\u93de\u93c7\u93cf\u93c2\u93da\u93d0\u93f9\u93ec\u93cc\u93d9\u93a9\u93e6\u93ca\u93d4\u93ee\u93e3\u93d5\u93c4\u93ce\u93c0\u93d2\u93e7\u957d\u95da\u95db\u96e1\u9729\u972b\u972c\u9728\u9726"],["f3a1","\u97b3\u97b7\u97b6\u97dd\u97de\u97df\u985c\u9859\u985d\u9857\u98bf\u98bd\u98bb\u98be\u9948\u9947\u9943\u99a6\u99a7\u9a1a\u9a15\u9a25\u9a1d\u9a24\u9a1b\u9a22\u9a20\u9a27\u9a23\u9a1e\u9a1c\u9a14\u9ac2\u9b0b\u9b0a\u9b0e\u9b0c\u9b37\u9bea\u9beb\u9be0\u9bde\u9be4\u9be6\u9be2\u9bf0\u9bd4\u9bd7\u9bec\u9bdc\u9bd9\u9be5\u9bd5\u9be1\u9bda\u9d77\u9d81\u9d8a\u9d84\u9d88\u9d71\u9d80\u9d78\u9d86\u9d8b\u9d8c\u9d7d\u9d6b\u9d74\u9d75\u9d70\u9d69\u9d85\u9d73\u9d7b\u9d82\u9d6f\u9d79\u9d7f\u9d87\u9d68\u9e94\u9e91\u9ec0\u9efc\u9f2d\u9f40\u9f41\u9f4d\u9f56\u9f57\u9f58\u5337\u56b2"],["f440","\u56b5\u56b3\u58e3\u5b45\u5dc6\u5dc7\u5eee\u5eef\u5fc0\u5fc1\u61f9\u6517\u6516\u6515\u6513\u65df\u66e8\u66e3\u66e4\u6af3\u6af0\u6aea\u6ae8\u6af9\u6af1\u6aee\u6aef\u703c\u7035\u702f\u7037\u7034\u7031\u7042\u7038\u703f\u703a\u7039\u7040\u703b\u7033\u7041\u7213\u7214\u72a8\u737d\u737c\u74ba\u76ab\u76aa\u76be\u76ed\u77cc\u77ce\u77cf\u77cd\u77f2\u7925\u7923\u7927\u7928\u7924\u7929"],["f4a1","\u79b2\u7a6e\u7a6c\u7a6d\u7af7\u7c49\u7c48\u7c4a\u7c47\u7c45\u7cee\u7e7b\u7e7e\u7e81\u7e80\u7fba\u7fff\u8079\u81db\u81d9\u820b\u8268\u8269\u8622\u85ff\u8601\u85fe\u861b\u8600\u85f6\u8604\u8609\u8605\u860c\u85fd\u8819\u8810\u8811\u8817\u8813\u8816\u8963\u8966\u89b9\u89f7\u8b60\u8b6a\u8b5d\u8b68\u8b63\u8b65\u8b67\u8b6d\u8dae\u8e86\u8e88\u8e84\u8f59\u8f56\u8f57\u8f55\u8f58\u8f5a\u908d\u9143\u9141\u91b7\u91b5\u91b2\u91b3\u940b\u9413\u93fb\u9420\u940f\u9414\u93fe\u9415\u9410\u9428\u9419\u940d\u93f5\u9400\u93f7\u9407\u940e\u9416\u9412\u93fa\u9409\u93f8\u940a\u93ff"],["f540","\u93fc\u940c\u93f6\u9411\u9406\u95de\u95e0\u95df\u972e\u972f\u97b9\u97bb\u97fd\u97fe\u9860\u9862\u9863\u985f\u98c1\u98c2\u9950\u994e\u9959\u994c\u994b\u9953\u9a32\u9a34\u9a31\u9a2c\u9a2a\u9a36\u9a29\u9a2e\u9a38\u9a2d\u9ac7\u9aca\u9ac6\u9b10\u9b12\u9b11\u9c0b\u9c08\u9bf7\u9c05\u9c12\u9bf8\u9c40\u9c07\u9c0e\u9c06\u9c17\u9c14\u9c09\u9d9f\u9d99\u9da4\u9d9d\u9d92\u9d98\u9d90\u9d9b"],["f5a1","\u9da0\u9d94\u9d9c\u9daa\u9d97\u9da1\u9d9a\u9da2\u9da8\u9d9e\u9da3\u9dbf\u9da9\u9d96\u9da6\u9da7\u9e99\u9e9b\u9e9a\u9ee5\u9ee4\u9ee7\u9ee6\u9f30\u9f2e\u9f5b\u9f60\u9f5e\u9f5d\u9f59\u9f91\u513a\u5139\u5298\u5297\u56c3\u56bd\u56be\u5b48\u5b47\u5dcb\u5dcf\u5ef1\u61fd\u651b\u6b02\u6afc\u6b03\u6af8\u6b00\u7043\u7044\u704a\u7048\u7049\u7045\u7046\u721d\u721a\u7219\u737e\u7517\u766a\u77d0\u792d\u7931\u792f\u7c54\u7c53\u7cf2\u7e8a\u7e87\u7e88\u7e8b\u7e86\u7e8d\u7f4d\u7fbb\u8030\u81dd\u8618\u862a\u8626\u861f\u8623\u861c\u8619\u8627\u862e\u8621\u8620\u8629\u861e\u8625"],["f640","\u8829\u881d\u881b\u8820\u8824\u881c\u882b\u884a\u896d\u8969\u896e\u896b\u89fa\u8b79\u8b78\u8b45\u8b7a\u8b7b\u8d10\u8d14\u8daf\u8e8e\u8e8c\u8f5e\u8f5b\u8f5d\u9146\u9144\u9145\u91b9\u943f\u943b\u9436\u9429\u943d\u943c\u9430\u9439\u942a\u9437\u942c\u9440\u9431\u95e5\u95e4\u95e3\u9735\u973a\u97bf\u97e1\u9864\u98c9\u98c6\u98c0\u9958\u9956\u9a39\u9a3d\u9a46\u9a44\u9a42\u9a41\u9a3a"],["f6a1","\u9a3f\u9acd\u9b15\u9b17\u9b18\u9b16\u9b3a\u9b52\u9c2b\u9c1d\u9c1c\u9c2c\u9c23\u9c28\u9c29\u9c24\u9c21\u9db7\u9db6\u9dbc\u9dc1\u9dc7\u9dca\u9dcf\u9dbe\u9dc5\u9dc3\u9dbb\u9db5\u9dce\u9db9\u9dba\u9dac\u9dc8\u9db1\u9dad\u9dcc\u9db3\u9dcd\u9db2\u9e7a\u9e9c\u9eeb\u9eee\u9eed\u9f1b\u9f18\u9f1a\u9f31\u9f4e\u9f65\u9f64\u9f92\u4eb9\u56c6\u56c5\u56cb\u5971\u5b4b\u5b4c\u5dd5\u5dd1\u5ef2\u6521\u6520\u6526\u6522\u6b0b\u6b08\u6b09\u6c0d\u7055\u7056\u7057\u7052\u721e\u721f\u72a9\u737f\u74d8\u74d5\u74d9\u74d7\u766d\u76ad\u7935\u79b4\u7a70\u7a71\u7c57\u7c5c\u7c59\u7c5b\u7c5a"],["f740","\u7cf4\u7cf1\u7e91\u7f4f\u7f87\u81de\u826b\u8634\u8635\u8633\u862c\u8632\u8636\u882c\u8828\u8826\u882a\u8825\u8971\u89bf\u89be\u89fb\u8b7e\u8b84\u8b82\u8b86\u8b85\u8b7f\u8d15\u8e95\u8e94\u8e9a\u8e92\u8e90\u8e96\u8e97\u8f60\u8f62\u9147\u944c\u9450\u944a\u944b\u944f\u9447\u9445\u9448\u9449\u9446\u973f\u97e3\u986a\u9869\u98cb\u9954\u995b\u9a4e\u9a53\u9a54\u9a4c\u9a4f\u9a48\u9a4a"],["f7a1","\u9a49\u9a52\u9a50\u9ad0\u9b19\u9b2b\u9b3b\u9b56\u9b55\u9c46\u9c48\u9c3f\u9c44\u9c39\u9c33\u9c41\u9c3c\u9c37\u9c34\u9c32\u9c3d\u9c36\u9ddb\u9dd2\u9dde\u9dda\u9dcb\u9dd0\u9ddc\u9dd1\u9ddf\u9de9\u9dd9\u9dd8\u9dd6\u9df5\u9dd5\u9ddd\u9eb6\u9ef0\u9f35\u9f33\u9f32\u9f42\u9f6b\u9f95\u9fa2\u513d\u5299\u58e8\u58e7\u5972\u5b4d\u5dd8\u882f\u5f4f\u6201\u6203\u6204\u6529\u6525\u6596\u66eb\u6b11\u6b12\u6b0f\u6bca\u705b\u705a\u7222\u7382\u7381\u7383\u7670\u77d4\u7c67\u7c66\u7e95\u826c\u863a\u8640\u8639\u863c\u8631\u863b\u863e\u8830\u8832\u882e\u8833\u8976\u8974\u8973\u89fe"],["f840","\u8b8c\u8b8e\u8b8b\u8b88\u8c45\u8d19\u8e98\u8f64\u8f63\u91bc\u9462\u9455\u945d\u9457\u945e\u97c4\u97c5\u9800\u9a56\u9a59\u9b1e\u9b1f\u9b20\u9c52\u9c58\u9c50\u9c4a\u9c4d\u9c4b\u9c55\u9c59\u9c4c\u9c4e\u9dfb\u9df7\u9def\u9de3\u9deb\u9df8\u9de4\u9df6\u9de1\u9dee\u9de6\u9df2\u9df0\u9de2\u9dec\u9df4\u9df3\u9de8\u9ded\u9ec2\u9ed0\u9ef2\u9ef3\u9f06\u9f1c\u9f38\u9f37\u9f36\u9f43\u9f4f"],["f8a1","\u9f71\u9f70\u9f6e\u9f6f\u56d3\u56cd\u5b4e\u5c6d\u652d\u66ed\u66ee\u6b13\u705f\u7061\u705d\u7060\u7223\u74db\u74e5\u77d5\u7938\u79b7\u79b6\u7c6a\u7e97\u7f89\u826d\u8643\u8838\u8837\u8835\u884b\u8b94\u8b95\u8e9e\u8e9f\u8ea0\u8e9d\u91be\u91bd\u91c2\u946b\u9468\u9469\u96e5\u9746\u9743\u9747\u97c7\u97e5\u9a5e\u9ad5\u9b59\u9c63\u9c67\u9c66\u9c62\u9c5e\u9c60\u9e02\u9dfe\u9e07\u9e03\u9e06\u9e05\u9e00\u9e01\u9e09\u9dff\u9dfd\u9e04\u9ea0\u9f1e\u9f46\u9f74\u9f75\u9f76\u56d4\u652e\u65b8\u6b18\u6b19\u6b17\u6b1a\u7062\u7226\u72aa\u77d8\u77d9\u7939\u7c69\u7c6b\u7cf6\u7e9a"],["f940","\u7e98\u7e9b\u7e99\u81e0\u81e1\u8646\u8647\u8648\u8979\u897a\u897c\u897b\u89ff\u8b98\u8b99\u8ea5\u8ea4\u8ea3\u946e\u946d\u946f\u9471\u9473\u9749\u9872\u995f\u9c68\u9c6e\u9c6d\u9e0b\u9e0d\u9e10\u9e0f\u9e12\u9e11\u9ea1\u9ef5\u9f09\u9f47\u9f78\u9f7b\u9f7a\u9f79\u571e\u7066\u7c6f\u883c\u8db2\u8ea6\u91c3\u9474\u9478\u9476\u9475\u9a60\u9c74\u9c73\u9c71\u9c75\u9e14\u9e13\u9ef6\u9f0a"],["f9a1","\u9fa4\u7068\u7065\u7cf7\u866a\u883e\u883d\u883f\u8b9e\u8c9c\u8ea9\u8ec9\u974b\u9873\u9874\u98cc\u9961\u99ab\u9a64\u9a66\u9a67\u9b24\u9e15\u9e17\u9f48\u6207\u6b1e\u7227\u864c\u8ea8\u9482\u9480\u9481\u9a69\u9a68\u9b2e\u9e19\u7229\u864b\u8b9f\u9483\u9c79\u9eb7\u7675\u9a6b\u9c7a\u9e1d\u7069\u706a\u9ea4\u9f7e\u9f49\u9f98\u7881\u92b9\u88cf\u58bb\u6052\u7ca7\u5afa\u2554\u2566\u2557\u2560\u256c\u2563\u255a\u2569\u255d\u2552\u2564\u2555\u255e\u256a\u2561\u2558\u2567\u255b\u2553\u2565\u2556\u255f\u256b\u2562\u2559\u2568\u255c\u2551\u2550\u256d\u256e\u2570\u256f\u2593"]]')},56406:function(Y){"use strict";Y.exports=JSON.parse('[["0","\\u0000",127],["8ea1","\uff61",62],["a1a1","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7"],["a2a1","\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["a2ba","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["a2ca","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["a2dc","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["a2f2","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["a2fe","\u25ef"],["a3b0","\uff10",9],["a3c1","\uff21",25],["a3e1","\uff41",25],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a8a1","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["ada1","\u2460",19,"\u2160",9],["adc0","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["addf","\u337b\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["b0a1","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["b1a1","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc"],["b2a1","\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["b3a1","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431"],["b4a1","\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["b5a1","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac"],["b6a1","\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["b7a1","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372"],["b8a1","\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["b9a1","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc"],["baa1","\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["bba1","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642"],["bca1","\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["bda1","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f"],["bea1","\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["bfa1","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe"],["c0a1","\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["c1a1","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e"],["c2a1","\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["c3a1","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5"],["c4a1","\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["c5a1","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230"],["c6a1","\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["c7a1","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6"],["c8a1","\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["c9a1","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d"],["caa1","\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["cba1","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80"],["cca1","\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["cda1","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483"],["cea1","\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["cfa1","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["d0a1","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["d1a1","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8"],["d2a1","\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["d3a1","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709"],["d4a1","\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["d5a1","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53"],["d6a1","\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["d7a1","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a"],["d8a1","\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["d9a1","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc"],["daa1","\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["dba1","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd"],["dca1","\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["dda1","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe"],["dea1","\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["dfa1","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc"],["e0a1","\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e1a1","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670"],["e2a1","\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e3a1","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50"],["e4a1","\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e5a1","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a"],["e6a1","\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e7a1","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9"],["e8a1","\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e9a1","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759"],["eaa1","\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["eba1","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b"],["eca1","\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["eda1","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8"],["eea1","\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["efa1","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e"],["f0a1","\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["f1a1","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7"],["f2a1","\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["f3a1","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0"],["f4a1","\u582f\u69c7\u9059\u7464\u51dc\u7199"],["f9a1","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7"],["faa1","\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["fba1","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da"],["fca1","\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["fcf1","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["8fa2af","\u02d8\u02c7\xb8\u02d9\u02dd\xaf\u02db\u02da\uff5e\u0384\u0385"],["8fa2c2","\xa1\xa6\xbf"],["8fa2eb","\xba\xaa\xa9\xae\u2122\xa4\u2116"],["8fa6e1","\u0386\u0388\u0389\u038a\u03aa"],["8fa6e7","\u038c"],["8fa6e9","\u038e\u03ab"],["8fa6ec","\u038f"],["8fa6f1","\u03ac\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03c2\u03cd\u03cb\u03b0\u03ce"],["8fa7c2","\u0402",10,"\u040e\u040f"],["8fa7f2","\u0452",10,"\u045e\u045f"],["8fa9a1","\xc6\u0110"],["8fa9a4","\u0126"],["8fa9a6","\u0132"],["8fa9a8","\u0141\u013f"],["8fa9ab","\u014a\xd8\u0152"],["8fa9af","\u0166\xde"],["8fa9c1","\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0142\u0140\u0149\u014b\xf8\u0153\xdf\u0167\xfe"],["8faaa1","\xc1\xc0\xc4\xc2\u0102\u01cd\u0100\u0104\xc5\xc3\u0106\u0108\u010c\xc7\u010a\u010e\xc9\xc8\xcb\xca\u011a\u0116\u0112\u0118"],["8faaba","\u011c\u011e\u0122\u0120\u0124\xcd\xcc\xcf\xce\u01cf\u0130\u012a\u012e\u0128\u0134\u0136\u0139\u013d\u013b\u0143\u0147\u0145\xd1\xd3\xd2\xd6\xd4\u01d1\u0150\u014c\xd5\u0154\u0158\u0156\u015a\u015c\u0160\u015e\u0164\u0162\xda\xd9\xdc\xdb\u016c\u01d3\u0170\u016a\u0172\u016e\u0168\u01d7\u01db\u01d9\u01d5\u0174\xdd\u0178\u0176\u0179\u017d\u017b"],["8faba1","\xe1\xe0\xe4\xe2\u0103\u01ce\u0101\u0105\xe5\xe3\u0107\u0109\u010d\xe7\u010b\u010f\xe9\xe8\xeb\xea\u011b\u0117\u0113\u0119\u01f5\u011d\u011f"],["8fabbd","\u0121\u0125\xed\xec\xef\xee\u01d0"],["8fabc5","\u012b\u012f\u0129\u0135\u0137\u013a\u013e\u013c\u0144\u0148\u0146\xf1\xf3\xf2\xf6\xf4\u01d2\u0151\u014d\xf5\u0155\u0159\u0157\u015b\u015d\u0161\u015f\u0165\u0163\xfa\xf9\xfc\xfb\u016d\u01d4\u0171\u016b\u0173\u016f\u0169\u01d8\u01dc\u01da\u01d6\u0175\xfd\xff\u0177\u017a\u017e\u017c"],["8fb0a1","\u4e02\u4e04\u4e05\u4e0c\u4e12\u4e1f\u4e23\u4e24\u4e28\u4e2b\u4e2e\u4e2f\u4e30\u4e35\u4e40\u4e41\u4e44\u4e47\u4e51\u4e5a\u4e5c\u4e63\u4e68\u4e69\u4e74\u4e75\u4e79\u4e7f\u4e8d\u4e96\u4e97\u4e9d\u4eaf\u4eb9\u4ec3\u4ed0\u4eda\u4edb\u4ee0\u4ee1\u4ee2\u4ee8\u4eef\u4ef1\u4ef3\u4ef5\u4efd\u4efe\u4eff\u4f00\u4f02\u4f03\u4f08\u4f0b\u4f0c\u4f12\u4f15\u4f16\u4f17\u4f19\u4f2e\u4f31\u4f60\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e\u4f40\u4f42\u4f48\u4f49\u4f4b\u4f4c\u4f52\u4f54\u4f56\u4f58\u4f5f\u4f63\u4f6a\u4f6c\u4f6e\u4f71\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f7e\u4f81\u4f82\u4f84"],["8fb1a1","\u4f85\u4f89\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f94\u4f97\u4f99\u4f9a\u4f9e\u4f9f\u4fb2\u4fb7\u4fb9\u4fbb\u4fbc\u4fbd\u4fbe\u4fc0\u4fc1\u4fc5\u4fc6\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fcf\u4fd2\u4fdc\u4fe0\u4fe2\u4ff0\u4ff2\u4ffc\u4ffd\u4fff\u5000\u5001\u5004\u5007\u500a\u500c\u500e\u5010\u5013\u5017\u5018\u501b\u501c\u501d\u501e\u5022\u5027\u502e\u5030\u5032\u5033\u5035\u5040\u5041\u5042\u5045\u5046\u504a\u504c\u504e\u5051\u5052\u5053\u5057\u5059\u505f\u5060\u5062\u5063\u5066\u5067\u506a\u506d\u5070\u5071\u503b\u5081\u5083\u5084\u5086\u508a\u508e\u508f\u5090"],["8fb2a1","\u5092\u5093\u5094\u5096\u509b\u509c\u509e",4,"\u50aa\u50af\u50b0\u50b9\u50ba\u50bd\u50c0\u50c3\u50c4\u50c7\u50cc\u50ce\u50d0\u50d3\u50d4\u50d8\u50dc\u50dd\u50df\u50e2\u50e4\u50e6\u50e8\u50e9\u50ef\u50f1\u50f6\u50fa\u50fe\u5103\u5106\u5107\u5108\u510b\u510c\u510d\u510e\u50f2\u5110\u5117\u5119\u511b\u511c\u511d\u511e\u5123\u5127\u5128\u512c\u512d\u512f\u5131\u5133\u5134\u5135\u5138\u5139\u5142\u514a\u514f\u5153\u5155\u5157\u5158\u515f\u5164\u5166\u517e\u5183\u5184\u518b\u518e\u5198\u519d\u51a1\u51a3\u51ad\u51b8\u51ba\u51bc\u51be\u51bf\u51c2"],["8fb3a1","\u51c8\u51cf\u51d1\u51d2\u51d3\u51d5\u51d8\u51de\u51e2\u51e5\u51ee\u51f2\u51f3\u51f4\u51f7\u5201\u5202\u5205\u5212\u5213\u5215\u5216\u5218\u5222\u5228\u5231\u5232\u5235\u523c\u5245\u5249\u5255\u5257\u5258\u525a\u525c\u525f\u5260\u5261\u5266\u526e\u5277\u5278\u5279\u5280\u5282\u5285\u528a\u528c\u5293\u5295\u5296\u5297\u5298\u529a\u529c\u52a4\u52a5\u52a6\u52a7\u52af\u52b0\u52b6\u52b7\u52b8\u52ba\u52bb\u52bd\u52c0\u52c4\u52c6\u52c8\u52cc\u52cf\u52d1\u52d4\u52d6\u52db\u52dc\u52e1\u52e5\u52e8\u52e9\u52ea\u52ec\u52f0\u52f1\u52f4\u52f6\u52f7\u5300\u5303\u530a\u530b"],["8fb4a1","\u530c\u5311\u5313\u5318\u531b\u531c\u531e\u531f\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u5330\u5332\u5335\u533c\u533d\u533e\u5342\u534c\u534b\u5359\u535b\u5361\u5363\u5365\u536c\u536d\u5372\u5379\u537e\u5383\u5387\u5388\u538e\u5393\u5394\u5399\u539d\u53a1\u53a4\u53aa\u53ab\u53af\u53b2\u53b4\u53b5\u53b7\u53b8\u53ba\u53bd\u53c0\u53c5\u53cf\u53d2\u53d3\u53d5\u53da\u53dd\u53de\u53e0\u53e6\u53e7\u53f5\u5402\u5413\u541a\u5421\u5427\u5428\u542a\u542f\u5431\u5434\u5435\u5443\u5444\u5447\u544d\u544f\u545e\u5462\u5464\u5466\u5467\u5469\u546b\u546d\u546e\u5474\u547f"],["8fb5a1","\u5481\u5483\u5485\u5488\u5489\u548d\u5491\u5495\u5496\u549c\u549f\u54a1\u54a6\u54a7\u54a9\u54aa\u54ad\u54ae\u54b1\u54b7\u54b9\u54ba\u54bb\u54bf\u54c6\u54ca\u54cd\u54ce\u54e0\u54ea\u54ec\u54ef\u54f6\u54fc\u54fe\u54ff\u5500\u5501\u5505\u5508\u5509\u550c\u550d\u550e\u5515\u552a\u552b\u5532\u5535\u5536\u553b\u553c\u553d\u5541\u5547\u5549\u554a\u554d\u5550\u5551\u5558\u555a\u555b\u555e\u5560\u5561\u5564\u5566\u557f\u5581\u5582\u5586\u5588\u558e\u558f\u5591\u5592\u5593\u5594\u5597\u55a3\u55a4\u55ad\u55b2\u55bf\u55c1\u55c3\u55c6\u55c9\u55cb\u55cc\u55ce\u55d1\u55d2"],["8fb6a1","\u55d3\u55d7\u55d8\u55db\u55de\u55e2\u55e9\u55f6\u55ff\u5605\u5608\u560a\u560d",5,"\u5619\u562c\u5630\u5633\u5635\u5637\u5639\u563b\u563c\u563d\u563f\u5640\u5641\u5643\u5644\u5646\u5649\u564b\u564d\u564f\u5654\u565e\u5660\u5661\u5662\u5663\u5666\u5669\u566d\u566f\u5671\u5672\u5675\u5684\u5685\u5688\u568b\u568c\u5695\u5699\u569a\u569d\u569e\u569f\u56a6\u56a7\u56a8\u56a9\u56ab\u56ac\u56ad\u56b1\u56b3\u56b7\u56be\u56c5\u56c9\u56ca\u56cb\u56cf\u56d0\u56cc\u56cd\u56d9\u56dc\u56dd\u56df\u56e1\u56e4",4,"\u56f1\u56eb\u56ed"],["8fb7a1","\u56f6\u56f7\u5701\u5702\u5707\u570a\u570c\u5711\u5715\u571a\u571b\u571d\u5720\u5722\u5723\u5724\u5725\u5729\u572a\u572c\u572e\u572f\u5733\u5734\u573d\u573e\u573f\u5745\u5746\u574c\u574d\u5752\u5762\u5765\u5767\u5768\u576b\u576d",4,"\u5773\u5774\u5775\u5777\u5779\u577a\u577b\u577c\u577e\u5781\u5783\u578c\u5794\u5797\u5799\u579a\u579c\u579d\u579e\u579f\u57a1\u5795\u57a7\u57a8\u57a9\u57ac\u57b8\u57bd\u57c7\u57c8\u57cc\u57cf\u57d5\u57dd\u57de\u57e4\u57e6\u57e7\u57e9\u57ed\u57f0\u57f5\u57f6\u57f8\u57fd\u57fe\u57ff\u5803\u5804\u5808\u5809\u57e1"],["8fb8a1","\u580c\u580d\u581b\u581e\u581f\u5820\u5826\u5827\u582d\u5832\u5839\u583f\u5849\u584c\u584d\u584f\u5850\u5855\u585f\u5861\u5864\u5867\u5868\u5878\u587c\u587f\u5880\u5881\u5887\u5888\u5889\u588a\u588c\u588d\u588f\u5890\u5894\u5896\u589d\u58a0\u58a1\u58a2\u58a6\u58a9\u58b1\u58b2\u58c4\u58bc\u58c2\u58c8\u58cd\u58ce\u58d0\u58d2\u58d4\u58d6\u58da\u58dd\u58e1\u58e2\u58e9\u58f3\u5905\u5906\u590b\u590c\u5912\u5913\u5914\u8641\u591d\u5921\u5923\u5924\u5928\u592f\u5930\u5933\u5935\u5936\u593f\u5943\u5946\u5952\u5953\u5959\u595b\u595d\u595e\u595f\u5961\u5963\u596b\u596d"],["8fb9a1","\u596f\u5972\u5975\u5976\u5979\u597b\u597c\u598b\u598c\u598e\u5992\u5995\u5997\u599f\u59a4\u59a7\u59ad\u59ae\u59af\u59b0\u59b3\u59b7\u59ba\u59bc\u59c1\u59c3\u59c4\u59c8\u59ca\u59cd\u59d2\u59dd\u59de\u59df\u59e3\u59e4\u59e7\u59ee\u59ef\u59f1\u59f2\u59f4\u59f7\u5a00\u5a04\u5a0c\u5a0d\u5a0e\u5a12\u5a13\u5a1e\u5a23\u5a24\u5a27\u5a28\u5a2a\u5a2d\u5a30\u5a44\u5a45\u5a47\u5a48\u5a4c\u5a50\u5a55\u5a5e\u5a63\u5a65\u5a67\u5a6d\u5a77\u5a7a\u5a7b\u5a7e\u5a8b\u5a90\u5a93\u5a96\u5a99\u5a9c\u5a9e\u5a9f\u5aa0\u5aa2\u5aa7\u5aac\u5ab1\u5ab2\u5ab3\u5ab5\u5ab8\u5aba\u5abb\u5abf"],["8fbaa1","\u5ac4\u5ac6\u5ac8\u5acf\u5ada\u5adc\u5ae0\u5ae5\u5aea\u5aee\u5af5\u5af6\u5afd\u5b00\u5b01\u5b08\u5b17\u5b34\u5b19\u5b1b\u5b1d\u5b21\u5b25\u5b2d\u5b38\u5b41\u5b4b\u5b4c\u5b52\u5b56\u5b5e\u5b68\u5b6e\u5b6f\u5b7c\u5b7d\u5b7e\u5b7f\u5b81\u5b84\u5b86\u5b8a\u5b8e\u5b90\u5b91\u5b93\u5b94\u5b96\u5ba8\u5ba9\u5bac\u5bad\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbc\u5bc0\u5bc1\u5bcd\u5bcf\u5bd6",4,"\u5be0\u5bef\u5bf1\u5bf4\u5bfd\u5c0c\u5c17\u5c1e\u5c1f\u5c23\u5c26\u5c29\u5c2b\u5c2c\u5c2e\u5c30\u5c32\u5c35\u5c36\u5c59\u5c5a\u5c5c\u5c62\u5c63\u5c67\u5c68\u5c69"],["8fbba1","\u5c6d\u5c70\u5c74\u5c75\u5c7a\u5c7b\u5c7c\u5c7d\u5c87\u5c88\u5c8a\u5c8f\u5c92\u5c9d\u5c9f\u5ca0\u5ca2\u5ca3\u5ca6\u5caa\u5cb2\u5cb4\u5cb5\u5cba\u5cc9\u5ccb\u5cd2\u5cdd\u5cd7\u5cee\u5cf1\u5cf2\u5cf4\u5d01\u5d06\u5d0d\u5d12\u5d2b\u5d23\u5d24\u5d26\u5d27\u5d31\u5d34\u5d39\u5d3d\u5d3f\u5d42\u5d43\u5d46\u5d48\u5d55\u5d51\u5d59\u5d4a\u5d5f\u5d60\u5d61\u5d62\u5d64\u5d6a\u5d6d\u5d70\u5d79\u5d7a\u5d7e\u5d7f\u5d81\u5d83\u5d88\u5d8a\u5d92\u5d93\u5d94\u5d95\u5d99\u5d9b\u5d9f\u5da0\u5da7\u5dab\u5db0\u5db4\u5db8\u5db9\u5dc3\u5dc7\u5dcb\u5dd0\u5dce\u5dd8\u5dd9\u5de0\u5de4"],["8fbca1","\u5de9\u5df8\u5df9\u5e00\u5e07\u5e0d\u5e12\u5e14\u5e15\u5e18\u5e1f\u5e20\u5e2e\u5e28\u5e32\u5e35\u5e3e\u5e4b\u5e50\u5e49\u5e51\u5e56\u5e58\u5e5b\u5e5c\u5e5e\u5e68\u5e6a",4,"\u5e70\u5e80\u5e8b\u5e8e\u5ea2\u5ea4\u5ea5\u5ea8\u5eaa\u5eac\u5eb1\u5eb3\u5ebd\u5ebe\u5ebf\u5ec6\u5ecc\u5ecb\u5ece\u5ed1\u5ed2\u5ed4\u5ed5\u5edc\u5ede\u5ee5\u5eeb\u5f02\u5f06\u5f07\u5f08\u5f0e\u5f19\u5f1c\u5f1d\u5f21\u5f22\u5f23\u5f24\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f34\u5f36\u5f3b\u5f3d\u5f3f\u5f40\u5f44\u5f45\u5f47\u5f4d\u5f50\u5f54\u5f58\u5f5b\u5f60\u5f63\u5f64\u5f67"],["8fbda1","\u5f6f\u5f72\u5f74\u5f75\u5f78\u5f7a\u5f7d\u5f7e\u5f89\u5f8d\u5f8f\u5f96\u5f9c\u5f9d\u5fa2\u5fa7\u5fab\u5fa4\u5fac\u5faf\u5fb0\u5fb1\u5fb8\u5fc4\u5fc7\u5fc8\u5fc9\u5fcb\u5fd0",4,"\u5fde\u5fe1\u5fe2\u5fe8\u5fe9\u5fea\u5fec\u5fed\u5fee\u5fef\u5ff2\u5ff3\u5ff6\u5ffa\u5ffc\u6007\u600a\u600d\u6013\u6014\u6017\u6018\u601a\u601f\u6024\u602d\u6033\u6035\u6040\u6047\u6048\u6049\u604c\u6051\u6054\u6056\u6057\u605d\u6061\u6067\u6071\u607e\u607f\u6082\u6086\u6088\u608a\u608e\u6091\u6093\u6095\u6098\u609d\u609e\u60a2\u60a4\u60a5\u60a8\u60b0\u60b1\u60b7"],["8fbea1","\u60bb\u60be\u60c2\u60c4\u60c8\u60c9\u60ca\u60cb\u60ce\u60cf\u60d4\u60d5\u60d9\u60db\u60dd\u60de\u60e2\u60e5\u60f2\u60f5\u60f8\u60fc\u60fd\u6102\u6107\u610a\u610c\u6110",4,"\u6116\u6117\u6119\u611c\u611e\u6122\u612a\u612b\u6130\u6131\u6135\u6136\u6137\u6139\u6141\u6145\u6146\u6149\u615e\u6160\u616c\u6172\u6178\u617b\u617c\u617f\u6180\u6181\u6183\u6184\u618b\u618d\u6192\u6193\u6197\u6198\u619c\u619d\u619f\u61a0\u61a5\u61a8\u61aa\u61ad\u61b8\u61b9\u61bc\u61c0\u61c1\u61c2\u61ce\u61cf\u61d5\u61dc\u61dd\u61de\u61df\u61e1\u61e2\u61e7\u61e9\u61e5"],["8fbfa1","\u61ec\u61ed\u61ef\u6201\u6203\u6204\u6207\u6213\u6215\u621c\u6220\u6222\u6223\u6227\u6229\u622b\u6239\u623d\u6242\u6243\u6244\u6246\u624c\u6250\u6251\u6252\u6254\u6256\u625a\u625c\u6264\u626d\u626f\u6273\u627a\u627d\u628d\u628e\u628f\u6290\u62a6\u62a8\u62b3\u62b6\u62b7\u62ba\u62be\u62bf\u62c4\u62ce\u62d5\u62d6\u62da\u62ea\u62f2\u62f4\u62fc\u62fd\u6303\u6304\u630a\u630b\u630d\u6310\u6313\u6316\u6318\u6329\u632a\u632d\u6335\u6336\u6339\u633c\u6341\u6342\u6343\u6344\u6346\u634a\u634b\u634e\u6352\u6353\u6354\u6358\u635b\u6365\u6366\u636c\u636d\u6371\u6374\u6375"],["8fc0a1","\u6378\u637c\u637d\u637f\u6382\u6384\u6387\u638a\u6390\u6394\u6395\u6399\u639a\u639e\u63a4\u63a6\u63ad\u63ae\u63af\u63bd\u63c1\u63c5\u63c8\u63ce\u63d1\u63d3\u63d4\u63d5\u63dc\u63e0\u63e5\u63ea\u63ec\u63f2\u63f3\u63f5\u63f8\u63f9\u6409\u640a\u6410\u6412\u6414\u6418\u641e\u6420\u6422\u6424\u6425\u6429\u642a\u642f\u6430\u6435\u643d\u643f\u644b\u644f\u6451\u6452\u6453\u6454\u645a\u645b\u645c\u645d\u645f\u6460\u6461\u6463\u646d\u6473\u6474\u647b\u647d\u6485\u6487\u648f\u6490\u6491\u6498\u6499\u649b\u649d\u649f\u64a1\u64a3\u64a6\u64a8\u64ac\u64b3\u64bd\u64be\u64bf"],["8fc1a1","\u64c4\u64c9\u64ca\u64cb\u64cc\u64ce\u64d0\u64d1\u64d5\u64d7\u64e4\u64e5\u64e9\u64ea\u64ed\u64f0\u64f5\u64f7\u64fb\u64ff\u6501\u6504\u6508\u6509\u650a\u650f\u6513\u6514\u6516\u6519\u651b\u651e\u651f\u6522\u6526\u6529\u652e\u6531\u653a\u653c\u653d\u6543\u6547\u6549\u6550\u6552\u6554\u655f\u6560\u6567\u656b\u657a\u657d\u6581\u6585\u658a\u6592\u6595\u6598\u659d\u65a0\u65a3\u65a6\u65ae\u65b2\u65b3\u65b4\u65bf\u65c2\u65c8\u65c9\u65ce\u65d0\u65d4\u65d6\u65d8\u65df\u65f0\u65f2\u65f4\u65f5\u65f9\u65fe\u65ff\u6600\u6604\u6608\u6609\u660d\u6611\u6612\u6615\u6616\u661d"],["8fc2a1","\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6631\u6633\u6639\u6637\u6640\u6645\u6646\u664a\u664c\u6651\u664e\u6657\u6658\u6659\u665b\u665c\u6660\u6661\u66fb\u666a\u666b\u666c\u667e\u6673\u6675\u667f\u6677\u6678\u6679\u667b\u6680\u667c\u668b\u668c\u668d\u6690\u6692\u6699\u669a\u669b\u669c\u669f\u66a0\u66a4\u66ad\u66b1\u66b2\u66b5\u66bb\u66bf\u66c0\u66c2\u66c3\u66c8\u66cc\u66ce\u66cf\u66d4\u66db\u66df\u66e8\u66eb\u66ec\u66ee\u66fa\u6705\u6707\u670e\u6713\u6719\u671c\u6720\u6722\u6733\u673e\u6745\u6747\u6748\u674c\u6754\u6755\u675d"],["8fc3a1","\u6766\u676c\u676e\u6774\u6776\u677b\u6781\u6784\u678e\u678f\u6791\u6793\u6796\u6798\u6799\u679b\u67b0\u67b1\u67b2\u67b5\u67bb\u67bc\u67bd\u67f9\u67c0\u67c2\u67c3\u67c5\u67c8\u67c9\u67d2\u67d7\u67d9\u67dc\u67e1\u67e6\u67f0\u67f2\u67f6\u67f7\u6852\u6814\u6819\u681d\u681f\u6828\u6827\u682c\u682d\u682f\u6830\u6831\u6833\u683b\u683f\u6844\u6845\u684a\u684c\u6855\u6857\u6858\u685b\u686b\u686e",4,"\u6875\u6879\u687a\u687b\u687c\u6882\u6884\u6886\u6888\u6896\u6898\u689a\u689c\u68a1\u68a3\u68a5\u68a9\u68aa\u68ae\u68b2\u68bb\u68c5\u68c8\u68cc\u68cf"],["8fc4a1","\u68d0\u68d1\u68d3\u68d6\u68d9\u68dc\u68dd\u68e5\u68e8\u68ea\u68eb\u68ec\u68ed\u68f0\u68f1\u68f5\u68f6\u68fb\u68fc\u68fd\u6906\u6909\u690a\u6910\u6911\u6913\u6916\u6917\u6931\u6933\u6935\u6938\u693b\u6942\u6945\u6949\u694e\u6957\u695b\u6963\u6964\u6965\u6966\u6968\u6969\u696c\u6970\u6971\u6972\u697a\u697b\u697f\u6980\u698d\u6992\u6996\u6998\u69a1\u69a5\u69a6\u69a8\u69ab\u69ad\u69af\u69b7\u69b8\u69ba\u69bc\u69c5\u69c8\u69d1\u69d6\u69d7\u69e2\u69e5\u69ee\u69ef\u69f1\u69f3\u69f5\u69fe\u6a00\u6a01\u6a03\u6a0f\u6a11\u6a15\u6a1a\u6a1d\u6a20\u6a24\u6a28\u6a30\u6a32"],["8fc5a1","\u6a34\u6a37\u6a3b\u6a3e\u6a3f\u6a45\u6a46\u6a49\u6a4a\u6a4e\u6a50\u6a51\u6a52\u6a55\u6a56\u6a5b\u6a64\u6a67\u6a6a\u6a71\u6a73\u6a7e\u6a81\u6a83\u6a86\u6a87\u6a89\u6a8b\u6a91\u6a9b\u6a9d\u6a9e\u6a9f\u6aa5\u6aab\u6aaf\u6ab0\u6ab1\u6ab4\u6abd\u6abe\u6abf\u6ac6\u6ac9\u6ac8\u6acc\u6ad0\u6ad4\u6ad5\u6ad6\u6adc\u6add\u6ae4\u6ae7\u6aec\u6af0\u6af1\u6af2\u6afc\u6afd\u6b02\u6b03\u6b06\u6b07\u6b09\u6b0f\u6b10\u6b11\u6b17\u6b1b\u6b1e\u6b24\u6b28\u6b2b\u6b2c\u6b2f\u6b35\u6b36\u6b3b\u6b3f\u6b46\u6b4a\u6b4d\u6b52\u6b56\u6b58\u6b5d\u6b60\u6b67\u6b6b\u6b6e\u6b70\u6b75\u6b7d"],["8fc6a1","\u6b7e\u6b82\u6b85\u6b97\u6b9b\u6b9f\u6ba0\u6ba2\u6ba3\u6ba8\u6ba9\u6bac\u6bad\u6bae\u6bb0\u6bb8\u6bb9\u6bbd\u6bbe\u6bc3\u6bc4\u6bc9\u6bcc\u6bd6\u6bda\u6be1\u6be3\u6be6\u6be7\u6bee\u6bf1\u6bf7\u6bf9\u6bff\u6c02\u6c04\u6c05\u6c09\u6c0d\u6c0e\u6c10\u6c12\u6c19\u6c1f\u6c26\u6c27\u6c28\u6c2c\u6c2e\u6c33\u6c35\u6c36\u6c3a\u6c3b\u6c3f\u6c4a\u6c4b\u6c4d\u6c4f\u6c52\u6c54\u6c59\u6c5b\u6c5c\u6c6b\u6c6d\u6c6f\u6c74\u6c76\u6c78\u6c79\u6c7b\u6c85\u6c86\u6c87\u6c89\u6c94\u6c95\u6c97\u6c98\u6c9c\u6c9f\u6cb0\u6cb2\u6cb4\u6cc2\u6cc6\u6ccd\u6ccf\u6cd0\u6cd1\u6cd2\u6cd4\u6cd6"],["8fc7a1","\u6cda\u6cdc\u6ce0\u6ce7\u6ce9\u6ceb\u6cec\u6cee\u6cf2\u6cf4\u6d04\u6d07\u6d0a\u6d0e\u6d0f\u6d11\u6d13\u6d1a\u6d26\u6d27\u6d28\u6c67\u6d2e\u6d2f\u6d31\u6d39\u6d3c\u6d3f\u6d57\u6d5e\u6d5f\u6d61\u6d65\u6d67\u6d6f\u6d70\u6d7c\u6d82\u6d87\u6d91\u6d92\u6d94\u6d96\u6d97\u6d98\u6daa\u6dac\u6db4\u6db7\u6db9\u6dbd\u6dbf\u6dc4\u6dc8\u6dca\u6dce\u6dcf\u6dd6\u6ddb\u6ddd\u6ddf\u6de0\u6de2\u6de5\u6de9\u6def\u6df0\u6df4\u6df6\u6dfc\u6e00\u6e04\u6e1e\u6e22\u6e27\u6e32\u6e36\u6e39\u6e3b\u6e3c\u6e44\u6e45\u6e48\u6e49\u6e4b\u6e4f\u6e51\u6e52\u6e53\u6e54\u6e57\u6e5c\u6e5d\u6e5e"],["8fc8a1","\u6e62\u6e63\u6e68\u6e73\u6e7b\u6e7d\u6e8d\u6e93\u6e99\u6ea0\u6ea7\u6ead\u6eae\u6eb1\u6eb3\u6ebb\u6ebf\u6ec0\u6ec1\u6ec3\u6ec7\u6ec8\u6eca\u6ecd\u6ece\u6ecf\u6eeb\u6eed\u6eee\u6ef9\u6efb\u6efd\u6f04\u6f08\u6f0a\u6f0c\u6f0d\u6f16\u6f18\u6f1a\u6f1b\u6f26\u6f29\u6f2a\u6f2f\u6f30\u6f33\u6f36\u6f3b\u6f3c\u6f2d\u6f4f\u6f51\u6f52\u6f53\u6f57\u6f59\u6f5a\u6f5d\u6f5e\u6f61\u6f62\u6f68\u6f6c\u6f7d\u6f7e\u6f83\u6f87\u6f88\u6f8b\u6f8c\u6f8d\u6f90\u6f92\u6f93\u6f94\u6f96\u6f9a\u6f9f\u6fa0\u6fa5\u6fa6\u6fa7\u6fa8\u6fae\u6faf\u6fb0\u6fb5\u6fb6\u6fbc\u6fc5\u6fc7\u6fc8\u6fca"],["8fc9a1","\u6fda\u6fde\u6fe8\u6fe9\u6ff0\u6ff5\u6ff9\u6ffc\u6ffd\u7000\u7005\u7006\u7007\u700d\u7017\u7020\u7023\u702f\u7034\u7037\u7039\u703c\u7043\u7044\u7048\u7049\u704a\u704b\u7054\u7055\u705d\u705e\u704e\u7064\u7065\u706c\u706e\u7075\u7076\u707e\u7081\u7085\u7086\u7094",4,"\u709b\u70a4\u70ab\u70b0\u70b1\u70b4\u70b7\u70ca\u70d1\u70d3\u70d4\u70d5\u70d6\u70d8\u70dc\u70e4\u70fa\u7103",4,"\u710b\u710c\u710f\u711e\u7120\u712b\u712d\u712f\u7130\u7131\u7138\u7141\u7145\u7146\u7147\u714a\u714b\u7150\u7152\u7157\u715a\u715c\u715e\u7160"],["8fcaa1","\u7168\u7179\u7180\u7185\u7187\u718c\u7192\u719a\u719b\u71a0\u71a2\u71af\u71b0\u71b2\u71b3\u71ba\u71bf\u71c0\u71c1\u71c4\u71cb\u71cc\u71d3\u71d6\u71d9\u71da\u71dc\u71f8\u71fe\u7200\u7207\u7208\u7209\u7213\u7217\u721a\u721d\u721f\u7224\u722b\u722f\u7234\u7238\u7239\u7241\u7242\u7243\u7245\u724e\u724f\u7250\u7253\u7255\u7256\u725a\u725c\u725e\u7260\u7263\u7268\u726b\u726e\u726f\u7271\u7277\u7278\u727b\u727c\u727f\u7284\u7289\u728d\u728e\u7293\u729b\u72a8\u72ad\u72ae\u72b1\u72b4\u72be\u72c1\u72c7\u72c9\u72cc\u72d5\u72d6\u72d8\u72df\u72e5\u72f3\u72f4\u72fa\u72fb"],["8fcba1","\u72fe\u7302\u7304\u7305\u7307\u730b\u730d\u7312\u7313\u7318\u7319\u731e\u7322\u7324\u7327\u7328\u732c\u7331\u7332\u7335\u733a\u733b\u733d\u7343\u734d\u7350\u7352\u7356\u7358\u735d\u735e\u735f\u7360\u7366\u7367\u7369\u736b\u736c\u736e\u736f\u7371\u7377\u7379\u737c\u7380\u7381\u7383\u7385\u7386\u738e\u7390\u7393\u7395\u7397\u7398\u739c\u739e\u739f\u73a0\u73a2\u73a5\u73a6\u73aa\u73ab\u73ad\u73b5\u73b7\u73b9\u73bc\u73bd\u73bf\u73c5\u73c6\u73c9\u73cb\u73cc\u73cf\u73d2\u73d3\u73d6\u73d9\u73dd\u73e1\u73e3\u73e6\u73e7\u73e9\u73f4\u73f5\u73f7\u73f9\u73fa\u73fb\u73fd"],["8fcca1","\u73ff\u7400\u7401\u7404\u7407\u740a\u7411\u741a\u741b\u7424\u7426\u7428",9,"\u7439\u7440\u7443\u7444\u7446\u7447\u744b\u744d\u7451\u7452\u7457\u745d\u7462\u7466\u7467\u7468\u746b\u746d\u746e\u7471\u7472\u7480\u7481\u7485\u7486\u7487\u7489\u748f\u7490\u7491\u7492\u7498\u7499\u749a\u749c\u749f\u74a0\u74a1\u74a3\u74a6\u74a8\u74a9\u74aa\u74ab\u74ae\u74af\u74b1\u74b2\u74b5\u74b9\u74bb\u74bf\u74c8\u74c9\u74cc\u74d0\u74d3\u74d8\u74da\u74db\u74de\u74df\u74e4\u74e8\u74ea\u74eb\u74ef\u74f4\u74fa\u74fb\u74fc\u74ff\u7506"],["8fcda1","\u7512\u7516\u7517\u7520\u7521\u7524\u7527\u7529\u752a\u752f\u7536\u7539\u753d\u753e\u753f\u7540\u7543\u7547\u7548\u754e\u7550\u7552\u7557\u755e\u755f\u7561\u756f\u7571\u7579",5,"\u7581\u7585\u7590\u7592\u7593\u7595\u7599\u759c\u75a2\u75a4\u75b4\u75ba\u75bf\u75c0\u75c1\u75c4\u75c6\u75cc\u75ce\u75cf\u75d7\u75dc\u75df\u75e0\u75e1\u75e4\u75e7\u75ec\u75ee\u75ef\u75f1\u75f9\u7600\u7602\u7603\u7604\u7607\u7608\u760a\u760c\u760f\u7612\u7613\u7615\u7616\u7619\u761b\u761c\u761d\u761e\u7623\u7625\u7626\u7629\u762d\u7632\u7633\u7635\u7638\u7639"],["8fcea1","\u763a\u763c\u764a\u7640\u7641\u7643\u7644\u7645\u7649\u764b\u7655\u7659\u765f\u7664\u7665\u766d\u766e\u766f\u7671\u7674\u7681\u7685\u768c\u768d\u7695\u769b\u769c\u769d\u769f\u76a0\u76a2",6,"\u76aa\u76ad\u76bd\u76c1\u76c5\u76c9\u76cb\u76cc\u76ce\u76d4\u76d9\u76e0\u76e6\u76e8\u76ec\u76f0\u76f1\u76f6\u76f9\u76fc\u7700\u7706\u770a\u770e\u7712\u7714\u7715\u7717\u7719\u771a\u771c\u7722\u7728\u772d\u772e\u772f\u7734\u7735\u7736\u7739\u773d\u773e\u7742\u7745\u7746\u774a\u774d\u774e\u774f\u7752\u7756\u7757\u775c\u775e\u775f\u7760\u7762"],["8fcfa1","\u7764\u7767\u776a\u776c\u7770\u7772\u7773\u7774\u777a\u777d\u7780\u7784\u778c\u778d\u7794\u7795\u7796\u779a\u779f\u77a2\u77a7\u77aa\u77ae\u77af\u77b1\u77b5\u77be\u77c3\u77c9\u77d1\u77d2\u77d5\u77d9\u77de\u77df\u77e0\u77e4\u77e6\u77ea\u77ec\u77f0\u77f1\u77f4\u77f8\u77fb\u7805\u7806\u7809\u780d\u780e\u7811\u781d\u7821\u7822\u7823\u782d\u782e\u7830\u7835\u7837\u7843\u7844\u7847\u7848\u784c\u784e\u7852\u785c\u785e\u7860\u7861\u7863\u7864\u7868\u786a\u786e\u787a\u787e\u788a\u788f\u7894\u7898\u78a1\u789d\u789e\u789f\u78a4\u78a8\u78ac\u78ad\u78b0\u78b1\u78b2\u78b3"],["8fd0a1","\u78bb\u78bd\u78bf\u78c7\u78c8\u78c9\u78cc\u78ce\u78d2\u78d3\u78d5\u78d6\u78e4\u78db\u78df\u78e0\u78e1\u78e6\u78ea\u78f2\u78f3\u7900\u78f6\u78f7\u78fa\u78fb\u78ff\u7906\u790c\u7910\u791a\u791c\u791e\u791f\u7920\u7925\u7927\u7929\u792d\u7931\u7934\u7935\u793b\u793d\u793f\u7944\u7945\u7946\u794a\u794b\u794f\u7951\u7954\u7958\u795b\u795c\u7967\u7969\u796b\u7972\u7979\u797b\u797c\u797e\u798b\u798c\u7991\u7993\u7994\u7995\u7996\u7998\u799b\u799c\u79a1\u79a8\u79a9\u79ab\u79af\u79b1\u79b4\u79b8\u79bb\u79c2\u79c4\u79c7\u79c8\u79ca\u79cf\u79d4\u79d6\u79da\u79dd\u79de"],["8fd1a1","\u79e0\u79e2\u79e5\u79ea\u79eb\u79ed\u79f1\u79f8\u79fc\u7a02\u7a03\u7a07\u7a09\u7a0a\u7a0c\u7a11\u7a15\u7a1b\u7a1e\u7a21\u7a27\u7a2b\u7a2d\u7a2f\u7a30\u7a34\u7a35\u7a38\u7a39\u7a3a\u7a44\u7a45\u7a47\u7a48\u7a4c\u7a55\u7a56\u7a59\u7a5c\u7a5d\u7a5f\u7a60\u7a65\u7a67\u7a6a\u7a6d\u7a75\u7a78\u7a7e\u7a80\u7a82\u7a85\u7a86\u7a8a\u7a8b\u7a90\u7a91\u7a94\u7a9e\u7aa0\u7aa3\u7aac\u7ab3\u7ab5\u7ab9\u7abb\u7abc\u7ac6\u7ac9\u7acc\u7ace\u7ad1\u7adb\u7ae8\u7ae9\u7aeb\u7aec\u7af1\u7af4\u7afb\u7afd\u7afe\u7b07\u7b14\u7b1f\u7b23\u7b27\u7b29\u7b2a\u7b2b\u7b2d\u7b2e\u7b2f\u7b30"],["8fd2a1","\u7b31\u7b34\u7b3d\u7b3f\u7b40\u7b41\u7b47\u7b4e\u7b55\u7b60\u7b64\u7b66\u7b69\u7b6a\u7b6d\u7b6f\u7b72\u7b73\u7b77\u7b84\u7b89\u7b8e\u7b90\u7b91\u7b96\u7b9b\u7b9e\u7ba0\u7ba5\u7bac\u7baf\u7bb0\u7bb2\u7bb5\u7bb6\u7bba\u7bbb\u7bbc\u7bbd\u7bc2\u7bc5\u7bc8\u7bca\u7bd4\u7bd6\u7bd7\u7bd9\u7bda\u7bdb\u7be8\u7bea\u7bf2\u7bf4\u7bf5\u7bf8\u7bf9\u7bfa\u7bfc\u7bfe\u7c01\u7c02\u7c03\u7c04\u7c06\u7c09\u7c0b\u7c0c\u7c0e\u7c0f\u7c19\u7c1b\u7c20\u7c25\u7c26\u7c28\u7c2c\u7c31\u7c33\u7c34\u7c36\u7c39\u7c3a\u7c46\u7c4a\u7c55\u7c51\u7c52\u7c53\u7c59",5],["8fd3a1","\u7c61\u7c63\u7c67\u7c69\u7c6d\u7c6e\u7c70\u7c72\u7c79\u7c7c\u7c7d\u7c86\u7c87\u7c8f\u7c94\u7c9e\u7ca0\u7ca6\u7cb0\u7cb6\u7cb7\u7cba\u7cbb\u7cbc\u7cbf\u7cc4\u7cc7\u7cc8\u7cc9\u7ccd\u7ccf\u7cd3\u7cd4\u7cd5\u7cd7\u7cd9\u7cda\u7cdd\u7ce6\u7ce9\u7ceb\u7cf5\u7d03\u7d07\u7d08\u7d09\u7d0f\u7d11\u7d12\u7d13\u7d16\u7d1d\u7d1e\u7d23\u7d26\u7d2a\u7d2d\u7d31\u7d3c\u7d3d\u7d3e\u7d40\u7d41\u7d47\u7d48\u7d4d\u7d51\u7d53\u7d57\u7d59\u7d5a\u7d5c\u7d5d\u7d65\u7d67\u7d6a\u7d70\u7d78\u7d7a\u7d7b\u7d7f\u7d81\u7d82\u7d83\u7d85\u7d86\u7d88\u7d8b\u7d8c\u7d8d\u7d91\u7d96\u7d97\u7d9d"],["8fd4a1","\u7d9e\u7da6\u7da7\u7daa\u7db3\u7db6\u7db7\u7db9\u7dc2",4,"\u7dcc\u7dcd\u7dce\u7dd7\u7dd9\u7e00\u7de2\u7de5\u7de6\u7dea\u7deb\u7ded\u7df1\u7df5\u7df6\u7df9\u7dfa\u7e08\u7e10\u7e11\u7e15\u7e17\u7e1c\u7e1d\u7e20\u7e27\u7e28\u7e2c\u7e2d\u7e2f\u7e33\u7e36\u7e3f\u7e44\u7e45\u7e47\u7e4e\u7e50\u7e52\u7e58\u7e5f\u7e61\u7e62\u7e65\u7e6b\u7e6e\u7e6f\u7e73\u7e78\u7e7e\u7e81\u7e86\u7e87\u7e8a\u7e8d\u7e91\u7e95\u7e98\u7e9a\u7e9d\u7e9e\u7f3c\u7f3b\u7f3d\u7f3e\u7f3f\u7f43\u7f44\u7f47\u7f4f\u7f52\u7f53\u7f5b\u7f5c\u7f5d\u7f61\u7f63\u7f64\u7f65\u7f66\u7f6d"],["8fd5a1","\u7f71\u7f7d\u7f7e\u7f7f\u7f80\u7f8b\u7f8d\u7f8f\u7f90\u7f91\u7f96\u7f97\u7f9c\u7fa1\u7fa2\u7fa6\u7faa\u7fad\u7fb4\u7fbc\u7fbf\u7fc0\u7fc3\u7fc8\u7fce\u7fcf\u7fdb\u7fdf\u7fe3\u7fe5\u7fe8\u7fec\u7fee\u7fef\u7ff2\u7ffa\u7ffd\u7ffe\u7fff\u8007\u8008\u800a\u800d\u800e\u800f\u8011\u8013\u8014\u8016\u801d\u801e\u801f\u8020\u8024\u8026\u802c\u802e\u8030\u8034\u8035\u8037\u8039\u803a\u803c\u803e\u8040\u8044\u8060\u8064\u8066\u806d\u8071\u8075\u8081\u8088\u808e\u809c\u809e\u80a6\u80a7\u80ab\u80b8\u80b9\u80c8\u80cd\u80cf\u80d2\u80d4\u80d5\u80d7\u80d8\u80e0\u80ed\u80ee"],["8fd6a1","\u80f0\u80f2\u80f3\u80f6\u80f9\u80fa\u80fe\u8103\u810b\u8116\u8117\u8118\u811c\u811e\u8120\u8124\u8127\u812c\u8130\u8135\u813a\u813c\u8145\u8147\u814a\u814c\u8152\u8157\u8160\u8161\u8167\u8168\u8169\u816d\u816f\u8177\u8181\u8190\u8184\u8185\u8186\u818b\u818e\u8196\u8198\u819b\u819e\u81a2\u81ae\u81b2\u81b4\u81bb\u81cb\u81c3\u81c5\u81ca\u81ce\u81cf\u81d5\u81d7\u81db\u81dd\u81de\u81e1\u81e4\u81eb\u81ec\u81f0\u81f1\u81f2\u81f5\u81f6\u81f8\u81f9\u81fd\u81ff\u8200\u8203\u820f\u8213\u8214\u8219\u821a\u821d\u8221\u8222\u8228\u8232\u8234\u823a\u8243\u8244\u8245\u8246"],["8fd7a1","\u824b\u824e\u824f\u8251\u8256\u825c\u8260\u8263\u8267\u826d\u8274\u827b\u827d\u827f\u8280\u8281\u8283\u8284\u8287\u8289\u828a\u828e\u8291\u8294\u8296\u8298\u829a\u829b\u82a0\u82a1\u82a3\u82a4\u82a7\u82a8\u82a9\u82aa\u82ae\u82b0\u82b2\u82b4\u82b7\u82ba\u82bc\u82be\u82bf\u82c6\u82d0\u82d5\u82da\u82e0\u82e2\u82e4\u82e8\u82ea\u82ed\u82ef\u82f6\u82f7\u82fd\u82fe\u8300\u8301\u8307\u8308\u830a\u830b\u8354\u831b\u831d\u831e\u831f\u8321\u8322\u832c\u832d\u832e\u8330\u8333\u8337\u833a\u833c\u833d\u8342\u8343\u8344\u8347\u834d\u834e\u8351\u8355\u8356\u8357\u8370\u8378"],["8fd8a1","\u837d\u837f\u8380\u8382\u8384\u8386\u838d\u8392\u8394\u8395\u8398\u8399\u839b\u839c\u839d\u83a6\u83a7\u83a9\u83ac\u83be\u83bf\u83c0\u83c7\u83c9\u83cf\u83d0\u83d1\u83d4\u83dd\u8353\u83e8\u83ea\u83f6\u83f8\u83f9\u83fc\u8401\u8406\u840a\u840f\u8411\u8415\u8419\u83ad\u842f\u8439\u8445\u8447\u8448\u844a\u844d\u844f\u8451\u8452\u8456\u8458\u8459\u845a\u845c\u8460\u8464\u8465\u8467\u846a\u8470\u8473\u8474\u8476\u8478\u847c\u847d\u8481\u8485\u8492\u8493\u8495\u849e\u84a6\u84a8\u84a9\u84aa\u84af\u84b1\u84b4\u84ba\u84bd\u84be\u84c0\u84c2\u84c7\u84c8\u84cc\u84cf\u84d3"],["8fd9a1","\u84dc\u84e7\u84ea\u84ef\u84f0\u84f1\u84f2\u84f7\u8532\u84fa\u84fb\u84fd\u8502\u8503\u8507\u850c\u850e\u8510\u851c\u851e\u8522\u8523\u8524\u8525\u8527\u852a\u852b\u852f\u8533\u8534\u8536\u853f\u8546\u854f",4,"\u8556\u8559\u855c",6,"\u8564\u856b\u856f\u8579\u857a\u857b\u857d\u857f\u8581\u8585\u8586\u8589\u858b\u858c\u858f\u8593\u8598\u859d\u859f\u85a0\u85a2\u85a5\u85a7\u85b4\u85b6\u85b7\u85b8\u85bc\u85bd\u85be\u85bf\u85c2\u85c7\u85ca\u85cb\u85ce\u85ad\u85d8\u85da\u85df\u85e0\u85e6\u85e8\u85ed\u85f3\u85f6\u85fc"],["8fdaa1","\u85ff\u8600\u8604\u8605\u860d\u860e\u8610\u8611\u8612\u8618\u8619\u861b\u861e\u8621\u8627\u8629\u8636\u8638\u863a\u863c\u863d\u8640\u8642\u8646\u8652\u8653\u8656\u8657\u8658\u8659\u865d\u8660",4,"\u8669\u866c\u866f\u8675\u8676\u8677\u867a\u868d\u8691\u8696\u8698\u869a\u869c\u86a1\u86a6\u86a7\u86a8\u86ad\u86b1\u86b3\u86b4\u86b5\u86b7\u86b8\u86b9\u86bf\u86c0\u86c1\u86c3\u86c5\u86d1\u86d2\u86d5\u86d7\u86da\u86dc\u86e0\u86e3\u86e5\u86e7\u8688\u86fa\u86fc\u86fd\u8704\u8705\u8707\u870b\u870e\u870f\u8710\u8713\u8714\u8719\u871e\u871f\u8721\u8723"],["8fdba1","\u8728\u872e\u872f\u8731\u8732\u8739\u873a\u873c\u873d\u873e\u8740\u8743\u8745\u874d\u8758\u875d\u8761\u8764\u8765\u876f\u8771\u8772\u877b\u8783",6,"\u878b\u878c\u8790\u8793\u8795\u8797\u8798\u8799\u879e\u87a0\u87a3\u87a7\u87ac\u87ad\u87ae\u87b1\u87b5\u87be\u87bf\u87c1\u87c8\u87c9\u87ca\u87ce\u87d5\u87d6\u87d9\u87da\u87dc\u87df\u87e2\u87e3\u87e4\u87ea\u87eb\u87ed\u87f1\u87f3\u87f8\u87fa\u87ff\u8801\u8803\u8806\u8809\u880a\u880b\u8810\u8819\u8812\u8813\u8814\u8818\u881a\u881b\u881c\u881e\u881f\u8828\u882d\u882e\u8830\u8832\u8835"],["8fdca1","\u883a\u883c\u8841\u8843\u8845\u8848\u8849\u884a\u884b\u884e\u8851\u8855\u8856\u8858\u885a\u885c\u885f\u8860\u8864\u8869\u8871\u8879\u887b\u8880\u8898\u889a\u889b\u889c\u889f\u88a0\u88a8\u88aa\u88ba\u88bd\u88be\u88c0\u88ca",4,"\u88d1\u88d2\u88d3\u88db\u88de\u88e7\u88ef\u88f0\u88f1\u88f5\u88f7\u8901\u8906\u890d\u890e\u890f\u8915\u8916\u8918\u8919\u891a\u891c\u8920\u8926\u8927\u8928\u8930\u8931\u8932\u8935\u8939\u893a\u893e\u8940\u8942\u8945\u8946\u8949\u894f\u8952\u8957\u895a\u895b\u895c\u8961\u8962\u8963\u896b\u896e\u8970\u8973\u8975\u897a"],["8fdda1","\u897b\u897c\u897d\u8989\u898d\u8990\u8994\u8995\u899b\u899c\u899f\u89a0\u89a5\u89b0\u89b4\u89b5\u89b6\u89b7\u89bc\u89d4",4,"\u89e5\u89e9\u89eb\u89ed\u89f1\u89f3\u89f6\u89f9\u89fd\u89ff\u8a04\u8a05\u8a07\u8a0f\u8a11\u8a12\u8a14\u8a15\u8a1e\u8a20\u8a22\u8a24\u8a26\u8a2b\u8a2c\u8a2f\u8a35\u8a37\u8a3d\u8a3e\u8a40\u8a43\u8a45\u8a47\u8a49\u8a4d\u8a4e\u8a53\u8a56\u8a57\u8a58\u8a5c\u8a5d\u8a61\u8a65\u8a67\u8a75\u8a76\u8a77\u8a79\u8a7a\u8a7b\u8a7e\u8a7f\u8a80\u8a83\u8a86\u8a8b\u8a8f\u8a90\u8a92\u8a96\u8a97\u8a99\u8a9f\u8aa7\u8aa9\u8aae\u8aaf\u8ab3"],["8fdea1","\u8ab6\u8ab7\u8abb\u8abe\u8ac3\u8ac6\u8ac8\u8ac9\u8aca\u8ad1\u8ad3\u8ad4\u8ad5\u8ad7\u8add\u8adf\u8aec\u8af0\u8af4\u8af5\u8af6\u8afc\u8aff\u8b05\u8b06\u8b0b\u8b11\u8b1c\u8b1e\u8b1f\u8b0a\u8b2d\u8b30\u8b37\u8b3c\u8b42",4,"\u8b48\u8b52\u8b53\u8b54\u8b59\u8b4d\u8b5e\u8b63\u8b6d\u8b76\u8b78\u8b79\u8b7c\u8b7e\u8b81\u8b84\u8b85\u8b8b\u8b8d\u8b8f\u8b94\u8b95\u8b9c\u8b9e\u8b9f\u8c38\u8c39\u8c3d\u8c3e\u8c45\u8c47\u8c49\u8c4b\u8c4f\u8c51\u8c53\u8c54\u8c57\u8c58\u8c5b\u8c5d\u8c59\u8c63\u8c64\u8c66\u8c68\u8c69\u8c6d\u8c73\u8c75\u8c76\u8c7b\u8c7e\u8c86"],["8fdfa1","\u8c87\u8c8b\u8c90\u8c92\u8c93\u8c99\u8c9b\u8c9c\u8ca4\u8cb9\u8cba\u8cc5\u8cc6\u8cc9\u8ccb\u8ccf\u8cd6\u8cd5\u8cd9\u8cdd\u8ce1\u8ce8\u8cec\u8cef\u8cf0\u8cf2\u8cf5\u8cf7\u8cf8\u8cfe\u8cff\u8d01\u8d03\u8d09\u8d12\u8d17\u8d1b\u8d65\u8d69\u8d6c\u8d6e\u8d7f\u8d82\u8d84\u8d88\u8d8d\u8d90\u8d91\u8d95\u8d9e\u8d9f\u8da0\u8da6\u8dab\u8dac\u8daf\u8db2\u8db5\u8db7\u8db9\u8dbb\u8dc0\u8dc5\u8dc6\u8dc7\u8dc8\u8dca\u8dce\u8dd1\u8dd4\u8dd5\u8dd7\u8dd9\u8de4\u8de5\u8de7\u8dec\u8df0\u8dbc\u8df1\u8df2\u8df4\u8dfd\u8e01\u8e04\u8e05\u8e06\u8e0b\u8e11\u8e14\u8e16\u8e20\u8e21\u8e22"],["8fe0a1","\u8e23\u8e26\u8e27\u8e31\u8e33\u8e36\u8e37\u8e38\u8e39\u8e3d\u8e40\u8e41\u8e4b\u8e4d\u8e4e\u8e4f\u8e54\u8e5b\u8e5c\u8e5d\u8e5e\u8e61\u8e62\u8e69\u8e6c\u8e6d\u8e6f\u8e70\u8e71\u8e79\u8e7a\u8e7b\u8e82\u8e83\u8e89\u8e90\u8e92\u8e95\u8e9a\u8e9b\u8e9d\u8e9e\u8ea2\u8ea7\u8ea9\u8ead\u8eae\u8eb3\u8eb5\u8eba\u8ebb\u8ec0\u8ec1\u8ec3\u8ec4\u8ec7\u8ecf\u8ed1\u8ed4\u8edc\u8ee8\u8eee\u8ef0\u8ef1\u8ef7\u8ef9\u8efa\u8eed\u8f00\u8f02\u8f07\u8f08\u8f0f\u8f10\u8f16\u8f17\u8f18\u8f1e\u8f20\u8f21\u8f23\u8f25\u8f27\u8f28\u8f2c\u8f2d\u8f2e\u8f34\u8f35\u8f36\u8f37\u8f3a\u8f40\u8f41"],["8fe1a1","\u8f43\u8f47\u8f4f\u8f51",4,"\u8f58\u8f5d\u8f5e\u8f65\u8f9d\u8fa0\u8fa1\u8fa4\u8fa5\u8fa6\u8fb5\u8fb6\u8fb8\u8fbe\u8fc0\u8fc1\u8fc6\u8fca\u8fcb\u8fcd\u8fd0\u8fd2\u8fd3\u8fd5\u8fe0\u8fe3\u8fe4\u8fe8\u8fee\u8ff1\u8ff5\u8ff6\u8ffb\u8ffe\u9002\u9004\u9008\u900c\u9018\u901b\u9028\u9029\u902f\u902a\u902c\u902d\u9033\u9034\u9037\u903f\u9043\u9044\u904c\u905b\u905d\u9062\u9066\u9067\u906c\u9070\u9074\u9079\u9085\u9088\u908b\u908c\u908e\u9090\u9095\u9097\u9098\u9099\u909b\u90a0\u90a1\u90a2\u90a5\u90b0\u90b2\u90b3\u90b4\u90b6\u90bd\u90cc\u90be\u90c3"],["8fe2a1","\u90c4\u90c5\u90c7\u90c8\u90d5\u90d7\u90d8\u90d9\u90dc\u90dd\u90df\u90e5\u90d2\u90f6\u90eb\u90ef\u90f0\u90f4\u90fe\u90ff\u9100\u9104\u9105\u9106\u9108\u910d\u9110\u9114\u9116\u9117\u9118\u911a\u911c\u911e\u9120\u9125\u9122\u9123\u9127\u9129\u912e\u912f\u9131\u9134\u9136\u9137\u9139\u913a\u913c\u913d\u9143\u9147\u9148\u914f\u9153\u9157\u9159\u915a\u915b\u9161\u9164\u9167\u916d\u9174\u9179\u917a\u917b\u9181\u9183\u9185\u9186\u918a\u918e\u9191\u9193\u9194\u9195\u9198\u919e\u91a1\u91a6\u91a8\u91ac\u91ad\u91ae\u91b0\u91b1\u91b2\u91b3\u91b6\u91bb\u91bc\u91bd\u91bf"],["8fe3a1","\u91c2\u91c3\u91c5\u91d3\u91d4\u91d7\u91d9\u91da\u91de\u91e4\u91e5\u91e9\u91ea\u91ec",5,"\u91f7\u91f9\u91fb\u91fd\u9200\u9201\u9204\u9205\u9206\u9207\u9209\u920a\u920c\u9210\u9212\u9213\u9216\u9218\u921c\u921d\u9223\u9224\u9225\u9226\u9228\u922e\u922f\u9230\u9233\u9235\u9236\u9238\u9239\u923a\u923c\u923e\u9240\u9242\u9243\u9246\u9247\u924a\u924d\u924e\u924f\u9251\u9258\u9259\u925c\u925d\u9260\u9261\u9265\u9267\u9268\u9269\u926e\u926f\u9270\u9275",4,"\u927b\u927c\u927d\u927f\u9288\u9289\u928a\u928d\u928e\u9292\u9297"],["8fe4a1","\u9299\u929f\u92a0\u92a4\u92a5\u92a7\u92a8\u92ab\u92af\u92b2\u92b6\u92b8\u92ba\u92bb\u92bc\u92bd\u92bf",4,"\u92c5\u92c6\u92c7\u92c8\u92cb\u92cc\u92cd\u92ce\u92d0\u92d3\u92d5\u92d7\u92d8\u92d9\u92dc\u92dd\u92df\u92e0\u92e1\u92e3\u92e5\u92e7\u92e8\u92ec\u92ee\u92f0\u92f9\u92fb\u92ff\u9300\u9302\u9308\u930d\u9311\u9314\u9315\u931c\u931d\u931e\u931f\u9321\u9324\u9325\u9327\u9329\u932a\u9333\u9334\u9336\u9337\u9347\u9348\u9349\u9350\u9351\u9352\u9355\u9357\u9358\u935a\u935e\u9364\u9365\u9367\u9369\u936a\u936d\u936f\u9370\u9371\u9373\u9374\u9376"],["8fe5a1","\u937a\u937d\u937f\u9380\u9381\u9382\u9388\u938a\u938b\u938d\u938f\u9392\u9395\u9398\u939b\u939e\u93a1\u93a3\u93a4\u93a6\u93a8\u93ab\u93b4\u93b5\u93b6\u93ba\u93a9\u93c1\u93c4\u93c5\u93c6\u93c7\u93c9",4,"\u93d3\u93d9\u93dc\u93de\u93df\u93e2\u93e6\u93e7\u93f9\u93f7\u93f8\u93fa\u93fb\u93fd\u9401\u9402\u9404\u9408\u9409\u940d\u940e\u940f\u9415\u9416\u9417\u941f\u942e\u942f\u9431\u9432\u9433\u9434\u943b\u943f\u943d\u9443\u9445\u9448\u944a\u944c\u9455\u9459\u945c\u945f\u9461\u9463\u9468\u946b\u946d\u946e\u946f\u9471\u9472\u9484\u9483\u9578\u9579"],["8fe6a1","\u957e\u9584\u9588\u958c\u958d\u958e\u959d\u959e\u959f\u95a1\u95a6\u95a9\u95ab\u95ac\u95b4\u95b6\u95ba\u95bd\u95bf\u95c6\u95c8\u95c9\u95cb\u95d0\u95d1\u95d2\u95d3\u95d9\u95da\u95dd\u95de\u95df\u95e0\u95e4\u95e6\u961d\u961e\u9622\u9624\u9625\u9626\u962c\u9631\u9633\u9637\u9638\u9639\u963a\u963c\u963d\u9641\u9652\u9654\u9656\u9657\u9658\u9661\u966e\u9674\u967b\u967c\u967e\u967f\u9681\u9682\u9683\u9684\u9689\u9691\u9696\u969a\u969d\u969f\u96a4\u96a5\u96a6\u96a9\u96ae\u96af\u96b3\u96ba\u96ca\u96d2\u5db2\u96d8\u96da\u96dd\u96de\u96df\u96e9\u96ef\u96f1\u96fa\u9702"],["8fe7a1","\u9703\u9705\u9709\u971a\u971b\u971d\u9721\u9722\u9723\u9728\u9731\u9733\u9741\u9743\u974a\u974e\u974f\u9755\u9757\u9758\u975a\u975b\u9763\u9767\u976a\u976e\u9773\u9776\u9777\u9778\u977b\u977d\u977f\u9780\u9789\u9795\u9796\u9797\u9799\u979a\u979e\u979f\u97a2\u97ac\u97ae\u97b1\u97b2\u97b5\u97b6\u97b8\u97b9\u97ba\u97bc\u97be\u97bf\u97c1\u97c4\u97c5\u97c7\u97c9\u97ca\u97cc\u97cd\u97ce\u97d0\u97d1\u97d4\u97d7\u97d8\u97d9\u97dd\u97de\u97e0\u97db\u97e1\u97e4\u97ef\u97f1\u97f4\u97f7\u97f8\u97fa\u9807\u980a\u9819\u980d\u980e\u9814\u9816\u981c\u981e\u9820\u9823\u9826"],["8fe8a1","\u982b\u982e\u982f\u9830\u9832\u9833\u9835\u9825\u983e\u9844\u9847\u984a\u9851\u9852\u9853\u9856\u9857\u9859\u985a\u9862\u9863\u9865\u9866\u986a\u986c\u98ab\u98ad\u98ae\u98b0\u98b4\u98b7\u98b8\u98ba\u98bb\u98bf\u98c2\u98c5\u98c8\u98cc\u98e1\u98e3\u98e5\u98e6\u98e7\u98ea\u98f3\u98f6\u9902\u9907\u9908\u9911\u9915\u9916\u9917\u991a\u991b\u991c\u991f\u9922\u9926\u9927\u992b\u9931",4,"\u9939\u993a\u993b\u993c\u9940\u9941\u9946\u9947\u9948\u994d\u994e\u9954\u9958\u9959\u995b\u995c\u995e\u995f\u9960\u999b\u999d\u999f\u99a6\u99b0\u99b1\u99b2\u99b5"],["8fe9a1","\u99b9\u99ba\u99bd\u99bf\u99c3\u99c9\u99d3\u99d4\u99d9\u99da\u99dc\u99de\u99e7\u99ea\u99eb\u99ec\u99f0\u99f4\u99f5\u99f9\u99fd\u99fe\u9a02\u9a03\u9a04\u9a0b\u9a0c\u9a10\u9a11\u9a16\u9a1e\u9a20\u9a22\u9a23\u9a24\u9a27\u9a2d\u9a2e\u9a33\u9a35\u9a36\u9a38\u9a47\u9a41\u9a44\u9a4a\u9a4b\u9a4c\u9a4e\u9a51\u9a54\u9a56\u9a5d\u9aaa\u9aac\u9aae\u9aaf\u9ab2\u9ab4\u9ab5\u9ab6\u9ab9\u9abb\u9abe\u9abf\u9ac1\u9ac3\u9ac6\u9ac8\u9ace\u9ad0\u9ad2\u9ad5\u9ad6\u9ad7\u9adb\u9adc\u9ae0\u9ae4\u9ae5\u9ae7\u9ae9\u9aec\u9af2\u9af3\u9af5\u9af9\u9afa\u9afd\u9aff",4],["8feaa1","\u9b04\u9b05\u9b08\u9b09\u9b0b\u9b0c\u9b0d\u9b0e\u9b10\u9b12\u9b16\u9b19\u9b1b\u9b1c\u9b20\u9b26\u9b2b\u9b2d\u9b33\u9b34\u9b35\u9b37\u9b39\u9b3a\u9b3d\u9b48\u9b4b\u9b4c\u9b55\u9b56\u9b57\u9b5b\u9b5e\u9b61\u9b63\u9b65\u9b66\u9b68\u9b6a",4,"\u9b73\u9b75\u9b77\u9b78\u9b79\u9b7f\u9b80\u9b84\u9b85\u9b86\u9b87\u9b89\u9b8a\u9b8b\u9b8d\u9b8f\u9b90\u9b94\u9b9a\u9b9d\u9b9e\u9ba6\u9ba7\u9ba9\u9bac\u9bb0\u9bb1\u9bb2\u9bb7\u9bb8\u9bbb\u9bbc\u9bbe\u9bbf\u9bc1\u9bc7\u9bc8\u9bce\u9bd0\u9bd7\u9bd8\u9bdd\u9bdf\u9be5\u9be7\u9bea\u9beb\u9bef\u9bf3\u9bf7\u9bf8"],["8feba1","\u9bf9\u9bfa\u9bfd\u9bff\u9c00\u9c02\u9c0b\u9c0f\u9c11\u9c16\u9c18\u9c19\u9c1a\u9c1c\u9c1e\u9c22\u9c23\u9c26",4,"\u9c31\u9c35\u9c36\u9c37\u9c3d\u9c41\u9c43\u9c44\u9c45\u9c49\u9c4a\u9c4e\u9c4f\u9c50\u9c53\u9c54\u9c56\u9c58\u9c5b\u9c5d\u9c5e\u9c5f\u9c63\u9c69\u9c6a\u9c5c\u9c6b\u9c68\u9c6e\u9c70\u9c72\u9c75\u9c77\u9c7b\u9ce6\u9cf2\u9cf7\u9cf9\u9d0b\u9d02\u9d11\u9d17\u9d18\u9d1c\u9d1d\u9d1e\u9d2f\u9d30\u9d32\u9d33\u9d34\u9d3a\u9d3c\u9d45\u9d3d\u9d42\u9d43\u9d47\u9d4a\u9d53\u9d54\u9d5f\u9d63\u9d62\u9d65\u9d69\u9d6a\u9d6b\u9d70\u9d76\u9d77\u9d7b"],["8feca1","\u9d7c\u9d7e\u9d83\u9d84\u9d86\u9d8a\u9d8d\u9d8e\u9d92\u9d93\u9d95\u9d96\u9d97\u9d98\u9da1\u9daa\u9dac\u9dae\u9db1\u9db5\u9db9\u9dbc\u9dbf\u9dc3\u9dc7\u9dc9\u9dca\u9dd4\u9dd5\u9dd6\u9dd7\u9dda\u9dde\u9ddf\u9de0\u9de5\u9de7\u9de9\u9deb\u9dee\u9df0\u9df3\u9df4\u9dfe\u9e0a\u9e02\u9e07\u9e0e\u9e10\u9e11\u9e12\u9e15\u9e16\u9e19\u9e1c\u9e1d\u9e7a\u9e7b\u9e7c\u9e80\u9e82\u9e83\u9e84\u9e85\u9e87\u9e8e\u9e8f\u9e96\u9e98\u9e9b\u9e9e\u9ea4\u9ea8\u9eac\u9eae\u9eaf\u9eb0\u9eb3\u9eb4\u9eb5\u9ec6\u9ec8\u9ecb\u9ed5\u9edf\u9ee4\u9ee7\u9eec\u9eed\u9eee\u9ef0\u9ef1\u9ef2\u9ef5"],["8feda1","\u9ef8\u9eff\u9f02\u9f03\u9f09\u9f0f\u9f10\u9f11\u9f12\u9f14\u9f16\u9f17\u9f19\u9f1a\u9f1b\u9f1f\u9f22\u9f26\u9f2a\u9f2b\u9f2f\u9f31\u9f32\u9f34\u9f37\u9f39\u9f3a\u9f3c\u9f3d\u9f3f\u9f41\u9f43",4,"\u9f53\u9f55\u9f56\u9f57\u9f58\u9f5a\u9f5d\u9f5e\u9f68\u9f69\u9f6d",4,"\u9f73\u9f75\u9f7a\u9f7d\u9f8f\u9f90\u9f91\u9f92\u9f94\u9f96\u9f97\u9f9e\u9fa1\u9fa2\u9fa3\u9fa5"]]')},99129:function(Y){"use strict";Y.exports=JSON.parse('{"uChars":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],"gbChars":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}')},55914:function(Y){"use strict";Y.exports=JSON.parse('[["a140","\ue4c6",62],["a180","\ue505",32],["a240","\ue526",62],["a280","\ue565",32],["a2ab","\ue766",5],["a2e3","\u20ac\ue76d"],["a2ef","\ue76e\ue76f"],["a2fd","\ue770\ue771"],["a340","\ue586",62],["a380","\ue5c5",31,"\u3000"],["a440","\ue5e6",62],["a480","\ue625",32],["a4f4","\ue772",10],["a540","\ue646",62],["a580","\ue685",32],["a5f7","\ue77d",7],["a640","\ue6a6",62],["a680","\ue6e5",32],["a6b9","\ue785",7],["a6d9","\ue78d",6],["a6ec","\ue794\ue795"],["a6f3","\ue796"],["a6f6","\ue797",8],["a740","\ue706",62],["a780","\ue745",32],["a7c2","\ue7a0",14],["a7f2","\ue7af",12],["a896","\ue7bc",10],["a8bc","\u1e3f"],["a8bf","\u01f9"],["a8c1","\ue7c9\ue7ca\ue7cb\ue7cc"],["a8ea","\ue7cd",20],["a958","\ue7e2"],["a95b","\ue7e3"],["a95d","\ue7e4\ue7e5\ue7e6"],["a989","\u303e\u2ff0",11],["a997","\ue7f4",12],["a9f0","\ue801",14],["aaa1","\ue000",93],["aba1","\ue05e",93],["aca1","\ue0bc",93],["ada1","\ue11a",93],["aea1","\ue178",93],["afa1","\ue1d6",93],["d7fa","\ue810",4],["f8a1","\ue234",93],["f9a1","\ue292",93],["faa1","\ue2f0",93],["fba1","\ue34e",93],["fca1","\ue3ac",93],["fda1","\ue40a",93],["fe50","\u2e81\ue816\ue817\ue818\u2e84\u3473\u3447\u2e88\u2e8b\ue81e\u359e\u361a\u360e\u2e8c\u2e97\u396e\u3918\ue826\u39cf\u39df\u3a73\u39d0\ue82b\ue82c\u3b4e\u3c6e\u3ce0\u2ea7\ue831\ue832\u2eaa\u4056\u415f\u2eae\u4337\u2eb3\u2eb6\u2eb7\ue83b\u43b1\u43ac\u2ebb\u43dd\u44d6\u4661\u464c\ue843"],["fe80","\u4723\u4729\u477c\u478d\u2eca\u4947\u497a\u497d\u4982\u4983\u4985\u4986\u499f\u499b\u49b7\u49b6\ue854\ue855\u4ca3\u4c9f\u4ca0\u4ca1\u4c77\u4ca2\u4d13",6,"\u4dae\ue864\ue468",93],["8135f437","\ue7c7"]]')},40679:function(Y){"use strict";Y.exports=JSON.parse('[["0","\\u0000",128],["a1","\uff61",62],["8140","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7"],["8180","\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["81b8","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["81c8","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["81da","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["81f0","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["81fc","\u25ef"],["824f","\uff10",9],["8260","\uff21",25],["8281","\uff41",25],["829f","\u3041",82],["8340","\u30a1",62],["8380","\u30e0",22],["839f","\u0391",16,"\u03a3",6],["83bf","\u03b1",16,"\u03c3",6],["8440","\u0410",5,"\u0401\u0416",25],["8470","\u0430",5,"\u0451\u0436",7],["8480","\u043e",17],["849f","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["8740","\u2460",19,"\u2160",9],["875f","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["877e","\u337b"],["8780","\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["889f","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["8940","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186"],["8980","\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["8a40","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b"],["8a80","\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["8b40","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551"],["8b80","\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["8c40","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8"],["8c80","\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["8d40","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d"],["8d80","\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["8e40","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62"],["8e80","\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["8f40","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3"],["8f80","\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["9040","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8"],["9080","\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["9140","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb"],["9180","\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["9240","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4"],["9280","\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["9340","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac"],["9380","\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["9440","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885"],["9480","\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["9540","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577"],["9580","\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["9640","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6"],["9680","\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["9740","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32"],["9780","\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["9840","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["989f","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["9940","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed"],["9980","\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["9a40","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638"],["9a80","\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["9b40","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80"],["9b80","\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["9c40","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060"],["9c80","\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["9d40","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b"],["9d80","\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["9e40","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e"],["9e80","\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["9f40","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef"],["9f80","\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["e040","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd"],["e080","\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e140","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff"],["e180","\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e240","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0"],["e280","\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e340","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37"],["e380","\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e440","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264"],["e480","\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e540","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec"],["e580","\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["e640","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7"],["e680","\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["e740","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c"],["e780","\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["e840","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599"],["e880","\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["e940","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43"],["e980","\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["ea40","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef"],["ea80","\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0\u582f\u69c7\u9059\u7464\u51dc\u7199"],["ed40","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f"],["ed80","\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["ee40","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559"],["ee80","\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["eeef","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["f040","\ue000",62],["f080","\ue03f",124],["f140","\ue0bc",62],["f180","\ue0fb",124],["f240","\ue178",62],["f280","\ue1b7",124],["f340","\ue234",62],["f380","\ue273",124],["f440","\ue2f0",62],["f480","\ue32f",124],["f540","\ue3ac",62],["f580","\ue3eb",124],["f640","\ue468",62],["f680","\ue4a7",124],["f740","\ue524",62],["f780","\ue563",124],["f840","\ue5e0",62],["f880","\ue61f",124],["f940","\ue69c"],["fa40","\u2170",9,"\u2160",9,"\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u2235\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a"],["fa80","\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f"],["fb40","\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19"],["fb80","\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9"],["fc40","\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"]]')},9240:function(Y){"use strict";Y.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"}}')}},Te={};function oe(Y){var A=Te[Y];if(void 0!==A)return A.exports;var r=Te[Y]={id:Y,loaded:!1,exports:{}};return Pt[Y].call(r.exports,r,r.exports,oe),r.loaded=!0,r.exports}return oe.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch{if("object"==typeof window)return window}}(),oe.nmd=function(Y){return Y.paths=[],Y.children||(Y.children=[]),Y},oe(36164)}()},7235:function(Za){var Pt={"Roboto-Italic.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAdhcAAACWEdQT1Mw0cQfAAHatAAAeKJHU1VCm18k/AACU1gAABX2T1MvMpeDsUwAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHYUAAAAAxnbHlmNN3JWAAAOswAAZmmaGVhZAqTf2UAAAEcAAAANmhoZWEMnBKkAAABVAAAACRobXR4VUzdowAAAfgAABSkbG9jYV8SwLgAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lV42FKgAB1HQAAAO6cG9zdP9hAGQAAdgwAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCj/ZvymVfDzz1ABsIAAAAAADE8BEuAAAAAOL2IGL6N/3VCUMIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJA/o3/mwJQwgAAbMAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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//IAwkA8wP/AAAH9AAAA/8AAAf0AAACrgAAAgQAAAFcAAAEZgAAAikAAAGfAAABAgAAANUAAAAAAAACLQAaAi0AGgUiAKYGGQCYA4r/XgGOALABjgCJAYz/lwGOANICyAC4AtAAlQKt/5QESAB3BG3/9gKeAKEDsQA4BTsAOAF0AFIHbwCWAlUAXQJVAAQDh//wAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgMfAIgC4QCJAuEAcwHiAI8B4gA+A0cAfgLi/9wC4gAtAuL/qwLi/7wC4v+yAuL/2ALi/94C4v/wAuL/yQLi//gDKf/cAuv/3QLr/8cB4v/oAeL/nQSD//MGJQAKBl8AOQg/ADsFvgAJBfwAHwRcAFEFrQBDBAMASgRSAAsFH//yBSb/5QW7AMwDsQBLB/sANQTbAOsE8QB/BgEAtgasAJIGpQCQBkMAvgRtAE0FZAAkBIv/rQRwAKsEoABBB/sASwH9/xUEXwAzBEIAcAP8/9MEGQAYA+kAQgJEAHcCfABxAfX/5ATXAHUETQBZBGgAdQagAHUGoAB1BMgAdQZoACgAAAAAB/X/qwg1AFwC2P/qAtgAbALYABwD8QBpA/EAJwPxAHAD8ABLA/EASgPx//cD8QAXA/H//QPxAL0D8QBGBAP/3QQLAHUEM/+3BeYAlARGAHkEWwBCBAcAbgQAABIEKQAdBJgARgQ7AB4EmABMBL0AHgXUAB4DmQAeBDQAHgOy//YB2gArBL4AHgSIAEwDrwAeBAAAEgQUAAYDhQAZA5MAHgRG/7AEmABMBEb/sANu/9MEqgAeA9L/1gU+AFIE8AB9BM0ADgVJAG0EWgBIBwr/wwcYAB4FSgBuBKkAHgQ5ACAE/f+JBd3/rwQfABIExgAgBC0AHwSc/8QEAABaBQEAHgRIAFYGIAAeBnkAHgT2AFEFzQAgBC4AIARaACAGRQAeBGT/4APz//oGGP+vBFcAHwTjAB8FDwBqBZcAUARHAHUEhP+3BjEAbQRIAFUESAAeBZgALgSmAEAEHwASBJwARgQUAAADxgAfB+QAHgSH/94C2P/7Atj/8QLYABcC2AAdAtgALwLYAAgC2AA3A3sAkwKgAQsDyAAeBBr/mQSfAEgFIwBEBP0ARAP1ACYFFQBEA/AAJgRdAB4EWgBIBDAAHgRj/6YB7wD8A4kBEgAA/SoD0gDTA9YAIgPwAM4D1wDNA5MAHgOEARIDgwETAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgVYAIAFgwCBBWgARAWzAIMFtgCDA7gAvARfADkEN/+BBKr/0wRJ/9UEDgArA4kBFAGG/74GcQBMBJYAPgHt/w8EZv+sBGb/4wRm/7gEZgAsBGYAVgRmACQEZgBmBGYAGwRmAEAEZgENAgD/CQH//wkB9gAvAfb/eAH2AC8EMAAeBNoAZAQBAGIEXAAfBBMARARwAEMEaQAjBHwAQgRr/9cEeQBCBB0ARgRcADUETv+/A2gAqQSxACwDmf/pBgr/mgPaAB4EmP/0BL0AHgS9AB4B9wAAAiUAGgU2AC8FNgAvBGQAPgShAKkCiv/0BRD/rwUQ/68FEP+vBRD/rwUQ/68FEP+vBRD/rwUNAHAEaQA7BGkAOwRpADsEaQA7AhwASQIcAEkCHABJAhwASQWJADsFVwBzBVcAcwVXAHMFVwBzBVcAcwUIAGMFCABjBQgAYwUIAGMEqQCoBDkAMQQ5ADEEOQAxBDkAMQQ5ADEEOQAxBDkAMQQQAEYEHQBFBB0ARQQdAEUEHQBFAewALwHsAC8B7AAvAewALwRJACAEbQBGBG0ARgRtAEYEbQBGBG0ARgRHAFsERwBbBEcAWwRHAFsDrP+qA6z/qgUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUNAHAEEABGBQ0AcAQQAEYFDQBwBBAARgUNAHAEEABGBRgAOwT2AEcEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBUkAdARcAAMFSQB0BFwAAwVJAHQEXAADBUkAdARcAAMFiQA7BEYAIAIcAEkB7AARAhwASQHsAC4CHABJAewALwIc/4sB4/9tAhwASQZkAEkDvgAvBEgABwH1/wkE3gA7A+8AIAQuADsB4wAvBC4AOwHj/6IELgA7AnkALwQuADsCvwAvBYkAOwRJACAFiQA7BEkAIAWJADsESQAgBEkAIAVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgTIADsCoQAgBMgAOwKh/58EyAA7AqEAIAScACkEAQAuBJwAKQQBAC4EnAApBAEALgScACkEAQAuBJwAKQQBAC4EoQCpAooAQwShAKkCigBDBKEAqQKyAEMFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsG4gDDBdUAgASpAKgDrP+qBKkAqASm/+wD2v/uBKb/7APa/+4Epv/sA9r/7gdB/4MGjgATBVcAIARmADoEXf+vBF3/rwQHAG4EY/+mBGP/pgRj/6YEY/+mBGP/pgRj/6YEY/+mBFoASAPIAB4DyAAeA8gAHgPIAB4B2gArAdoAKwHaACsB2gArBL0AHgSYAEwEmABMBJgATASYAEwEmABMBFsAQgRbAEIEWwBCBFsAQgQLAHUEY/+mBGP/pgRj/6YEWgBIBFoASARaAEgEWgBIBF0AHgPIAB4DyAAeA8gAHgPIAB4DyAAeBIgATASIAEwEiABMBIgATAS+AB4B2gAOAdoAKwHaACsB5P+CAdoAKwOy//YENAAeA5kAHgOZAB4DmQAeA5kAHgS9AB4EvQAeBL0AHgSYAEwEmABMBJgATAQpAB0EKQAdBCkAHQQAABIEAAASBAAAEgQAABIEBwBuBAcAbgQHAG4EWwBCBFsAQgRbAEIEWwBCBFsAQgRbAEIF5gCUBAsAdQQLAHUEA//dBAP/3QQD/90FEP+vBM0AAwXtABECgAAXBWsAawUN/+0FPQAeAoQAIAUQ/68E1gA7BGkAOwSm/+wFiQA7AhwASQTeADsGxgA7BYkAOwVXAHME5QA7BKEAqQSpAKgE3f/UAhwASQSpAKgEYwBIBDAAKQRmACUChACEBDwAaARSAC4EbQBGBGb/5gPCAG4ETv+/AoQAZQQ8AGgEbQBGBDwAaAZkAGcEaQA7BFEARAScACkCHABJAhwASQRIAAcE/QBEBN4AOwThAJQFEP+vBNYAOwRRAEQEaQA7BYkARAbGADsFiQA7BVcAcwWJAEQE5QA7BQ0AcAShAKkE3f/UBDkAMQQdAEUEewAwBG0ARgRc/9cEEABGA6z/qgPa/8UEHQBFA0IALgQBAC4B4wAvAewALwHb/xMEMgAwA6z/qgbiAMMF1QCABuIAwwXVAIAG4gDDBdUAgASpAKgDrP+qAVsArAJ8AMkEAABEAfX/CQGOAIkGxgA7Bs4AHgUQ/68EOQAxBGkAOwWJAEQEHQBFBHsAMAVeAIUFbwBOBOQArQPlAIUIGQBGCQMAcwScACUD8QAgBQ0AcAQQAEYEqQCoA+QAhQIcAEkHC/+rBfL/pwIcAEkFEP+vBDkAMQUQ/68EOQAxB0H/gwaOABMEaQA7BB0ARQVdAFIEGAA/BBgAPwcL/6sF8v+nBJwAJQPxACAFiQBEBHsAMAWJAEQEewAwBVcAcwRtAEYFSABnBGkAQwVIAGcEaQBDBTwAdgQtADIE4QCUA6z/qgThAJQDrP+qBOEAlAOs/6oFUADLBDkAeQbAAEQGEAAxBGAARwUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUCHABJAewALwIcAA0B4//wBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVQBmBHAAQwVVAGYEcABDBVUAZgRwAEMFVQBmBHAAQwVVAGYEcABDBQgAYwRHAFsFCABjBEcAWwVlAGMEzQBbBWUAYwTNAFsFZQBjBM0AWwVlAGMEzQBbBWUAYwTNAFsEqQCoA6z/qgSpAKgDrP+qBKkAqAOs/6oEfgAABKEAqQO7AGAFUADLBDkAeQRRAEQDQgAuBgAAiASaAAQERgAgBN4ALATeACwEUQARA0L/5wURAFgECQA6BKkAqAPkAF4E3f/UA9r/xQQwACkESv/XBhkAmARcABgEXAA1BFwABQRcAHIEcACBBIQAVARwAJQEhAB+BUkAdARcAAMFiQA7BEkAIAUQ/68EOQAxBGkAOwQdAEUCHP/gAez/jQVXAHMEbQBGBMgAOwKhACAFCABjBEcAWwSG/7EE1gA7BFwAHwUYADsEYABHBRgAOwRgAEcFiQA7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AGQAZQByACAAdABoAGUAIABTAEkATAAgAE8AcABlAG4AIABGAG8AbgB0ACAATABpAGMAZQBuAHMAZQAsACAAVgBlAHIAcwBpAG8AbgAgADEALgAxAC4AIABUAGgAaQBzACAAbABpAGMAZQBuAHMAZQAgAGkAcwAgAGEAdgBhAGkAbABhAGIAbABlACAAdwBpAHQAaAAgAGEAIABGAEEAUQAgAGEAdAA6ACAAaAB0AHQAcABzADoALwAvAG8AcABlAG4AZgBvAG4AdABsAGkAYwBlAG4AcwBlAC4AbwByAGcAaAB0AHQAcABzADoALwAvAG8AcABlAG4AZgBvAG4AdABsAGkAYwBlAG4AcwBlAC4AbwByAGcAAAADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAcADYACgAIAFgAaAByAHwAhgBgAJAAmgAEREZMVACSY3lybACWZ3JlawCabGF0bgCeAAdjcHNwAIhrZXJuAJprZXJuAI5rZXJuAKJrZXJuAKptYXJrAJRta21rALIAAQAAAAEAjgAEAAAAAQCQAAIACAACAYgIXgACAAgAAgEiBIQAAgAIAAICiBBSAAIACAACAI4A1gAGABAAAQBsAAAABgAQAAEAbgACAIAAAACKAAAAlAAAAJ4AAAAAAAEAAAAAAAEABAAAAAEABQAAAAIABAADAAAAAgAEAAEAAAACAAQAAgAAAAIABgAHAAEuAAAFACQASAABGWwq4AACGbxO8AABGTIZMgABGTgZLgABGW4ZMgABGX4ZSAABGVgABAAAAAMZMBnCGTYAAP//AAQAAAACAAUABgAA//8ABAAAAAMABQAGAAD//wAEAAAABAAFAAYAAP//AAQAAAABAAUABgACGaQABAAAGeocDgAEAAUAAP+VAAAAAP+IAAD/VgAAAAAAAAAAAAAAAAAAAAAAAP+IAAAAAAAAAAEcjAAEAAAAKRoSGiAZ4BtuGm4aPBqaGkoahBrsGxIZlBpcGZodOBmsHZocOhtAGaAZph4AGeoasBqaGjwc4hqaGfQZ/ho8Gi4boBziGsoc4hmsGggaXBoIGjwAATE0AAQAAACFHtgenh4iHigeZh+cIJg5QjNUN3IpEh8UNGovQiBmJaYfFB8UIbIfFB8UHxQsDCSqHxQgPCUoI7oe8ihoIvoeUifKHi4gEiQwMkIewiF0JigiTh/CHsIipB/oIfwgzh/CITofWB6CHkggEh7CJrIeUiBmHi4hBCEEIQQfFCBmHi4fFB8UHpAeUiBmHi4jWCayHxQfFCEEIQQhsiE6HjQmsh8UHxQekB50HrAnPCBmHzYePh9YHsIeSB4uHj4eUh5IHj4egh5IHrAfeh5IHxQgZh4uHxQhOh82ITofNh4+Hj4ePiBmHi4ekB9YH1gewiGyHkghsh5IIbIeSCc8JrIeUh5cIDwmsiEEH3oAATxGAAQAAAD0L0AqyCrINXQvVi3oKs4t9j6gLgQvbCrOKu43pDSuL7IvLi+CKto0cC4gNPAYPDpCGDw5nBg8GDwYPC4SNboq1C+YKtQ1MirONggvHCrIOxwqyCrIKsgqwi/UL/oqvCrkKrYt2iq2LegqzirOKs4qzi+yL1YvVi9WL1YvVi9WL1Yt6C32LfYt9i32Ks4qzirOKs4qzjRwGDwYPBg8GDwYPBg8GDwYPBg8GDwq1CrUL1YvVi9WLegt6C3oLegqzi32GDwt9hg8LfYYPC32GDwt9hg8GDwuBC9sL2wvbC9sGDwYPBg8GDwqzhg8Ks4YPCrOGDwuEi4SLhIvsi+yL7IvgjRwKtQ0cC4gLiAuICq8Krwqwiq2KrYqtiq2KrYqtiq2KrwqvCq8KrwqvCq2KrYqtiq8KuQq5CrkKuQqvCq8Krwqwi+CL4IvgjRwKtQqyCrIKsgYPC9WL1YvVi9WL1YvVi9WL1YvVi9WL1YvVi9WLfYYPC32GDwt9hg8LfYYPC32GDwt9hg8LfYYPC32GDwqzhg8Ks4YPCrOGDwqzhg8Ks4YPCrOGDwqzhg8GDw0cCrUNHAq1DRwKtQYPC9WLfYqzhg8LhIqzirOGDwuBC4EL2wYPBg8Ks4q7i4SL7IvLirULy4q1C+CLiAAAjxAAAQAAD9MQEAAGAAUAAAAAAAAAAD/xQAA/4gAAAAAAAAAAP/sAAAAAP/DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAD/5AAAAAAAAAAAAAAAAAARAAAAAAAAABIAAAAA/5oAAAAAAAD/6wAA/9X/7QAAAAAAAAAAAAD/6v/p/+3/9f/rAAD/iAAAAAAAAP/1AAD/9f+iAAD/xAAA/87/9f/0AAAAAAAAAAAAAAAAAAD/Lf/M/7//2f+i/+MAEv+rAAD/2P/s/8v/vwANAAD/q//v/6IAAAAAAAAAAAAAAAAAAAAAAAAAAP+/AAAAAP/yAAAAAAAAAAAAAAAAAAAAAAAAAAD/7f/vAAAAAAAAAAD/8AAA/+YAAP/tAAAAAAAAAAAAAAAA/5gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/5UAAP/zAAAAAAAAAAAAAAAAAAAAAAAA//EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6gAAAAAAAAAAAAAAAAAA/+wAAAAA/3gAAAAAAAAAAAAAAAAAAAAAAAAAAP/xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9L/5v/rAAD/5wAAAAAAAAAA/+H/5//rAAAAAAAAAAAAAAAAAAD+ev5i/0T/S/8+/70ABwAAAAD/M/9yAAD/RAAAAAAAAAAA/z4AAAAAAAD/wP/m/+kAAP/hAAAAAAAA/+n/2P/n/+UAAAAAAAAAAAAAAAAAAP68AAD/8wAA/3YAAAAA/8YAAAAAAA8AAP/z/+H/5v/GAAD/dgAAAAD/Jv8Y/53/of+x/+QAEP+vAAD/k/+4/7n/nQAAAAD/r//t/7EAAAAAAAAAAP/r/+0ADf/mAAAADQAAAAD/5f/s/+sAAAAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAD/vwAAAAD/8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAD/4wAAAAAAAAAAAAAAAAAAAAAAAAAA//UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//UAAP/1/6IAAP/EAAD/zv/1//QAAAAAAAAAAAAAAAI9oAAEAAA+sENWACIAHgAAAAAAAAAAAAAAAAARAAAAAAAA/+MAAAAAABEAAAAAABL/5AARAAD/5QAAAAAAAP/kAAAAAAASAAAAAAAA/+z/xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAA/8MAAP/OAAAAAAAAAAAAAAAAAAD/sAAAAAD/8wAAAA8AAAAAAAD/lQAAAAAAAAAAAAAAAAAAAAAAAP/X//EAAP/xAAAAAAAAAAAAAAAAAAAAAAAAAAD/5v/nAAD/4QAAAAAAAP/nAAD/0gAAABEAAAAAAAAAAAAR/+v/0QAAAAAADgAAAAAAAAAAAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+n/5v/hAAD/2AAAAAAAAP/nAAD/wAAAAAAAAAAAAAAAAAAA/+X/owAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//L/8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/zP/RP+9AAD/cgAA/2r+egAAAAf+YgAA/5IAAAAA/z4AAP8P/0T/DP8sAAAABwAHAAAAAP8+AAD/JwAAAAAAAAAA/8AAAP/w/8kAAAAA/vUAAAAA//X/6wAAAAD/5wAAAAAAAAAAAAD/yP+tAAAAAAAAAAAAAAAA/5r/vf/pAAAAAAAAAAD+bQAAABL/iQAA/8oAAAAA/6UAAP+7/73/6f+RAAAAAAASAAAAAP+lAAD/0gAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/Y/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+P/9QAA//EAAAAAAAAAAAAAAAAAAAAAAAAAAP/yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/3n/3QAA//UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7QAAAAD/5gAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAA/+0AAAAA//AAAAAAAAAAAAAAAAAAAAAAAAAAAP/1/4j/zgAAAAAAAP/1/38AAP/HABEAAAAAAAD/yQAS//T/jwAA/8T/qf+iAAAAAAAAAAAAAAAAAAAAAAAA/3j/8QAA/+sAAAAAAAAAAAAAAAAAAAAAAAAAAP/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qAAD/mgAA/+UAAAAA/+EAAP/1/+sAAAAAAAAAAAAAAAD/6v/V/+3/7f/rAAAAAAAAAAAAAAAA/73/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/5P/nf/kAAD/uAAA/7P/Jv+5ABD/GP/x/8sAAP/t/7EAAP9+/53/fP+PAAAAEAAQ/6//r/+x/xD/jAAAAAAAAAAA//UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/1P/zAAD/9QAAAAD/H//ZAAD/2wAAAAAAAAAA/7UAAAAA/9IAAP/SAAAAAAAA/7T/tP+1AAAAAAAA/9j/v//jAAD/7AAN/+n/Lf/LABH/zP/zAAAAAP/v/6IAAAAA/78AAP+3AAAAEgAS/6v/q/+i/6D/xgAAAAAAAAAAAAAAAAAAAAAAAP/yAAAAAP/AAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/yAAAAAP/AAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/uAAAAAP/sAAAAAAAAAAAAAAAA/+oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/1AAD/zgAAAAAAAP/1/38AAP/HABEAAAAAAAD/yQAS//T/jwAA/8T/qf+iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+oAAAAAAAAAAAAAAAAAAAAA/+v/6//qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+UAAAAAAAD/8wAAAAAAAAAAAAAAAAAAAAD/6P/JAAAAAAAAAAAAAAAAAAD/8wAAAAAAD//hAAD+vAAAAAAAAAAA/8kAAAAA/3YAAP/Z//MAAP/1AAAAAAAA/8b/xv92/zgAAAAAAAAAAAAA/5gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACOS4ABAAATFxR6AAjACIAAAAAAAD/6wAAAAAAAAAAAAAAAAAA/+0AAAAA/9UAAAAAAAD/mv/l/+kAAAAAAAAAAP/qAAAAAAAA/+r/9f/t/+sAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAD/5AAAAAAAAAAA/+MAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEgAAAAD/9QAAAAAAAP/1//X/9P/vAAD/8QAA/87/iP+iAAAAAP+7AAD/fwAAAAAAAAAM/8T/qQAA/93/xwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8f+9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7QAAAAAAAP/v/+0AAAAAAAAAAP/mAAAAAAAAAAAAAAAAABQAAAAAAAAAAP/wAAAAAP/tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//P/8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8f94AAAAAAAAAAAAAAAAAAAAAAAA//AAAAAAAAAAAAAAAAAAAAAAAAD/6wAAAAAAAP/qAAAAAAAAAAAAAAAAAAD/6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+v/6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6gAAAAAAAP/uAAD/7AAAAAAAAAAAAAAAAAAAAAD/8gAAAAAAAAAA/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+/AAAAAP/Y/8AAAAAAAAAAAAAAAAAAAP/zAAD/8QAAAAD/8QAAAAAAAAAAAAAADwAAAAAAAAAA/5UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/8X/iP/OAAAAAP/DAAD/7AAAAAAAAAAAAAD/sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+P/v/+i/7f/y//Z/7//oP/YAAD/q//sAAAAEv/G//AAEf8tABEAAP/MAAD/4gAAABL/oP/z//MADf/v/6v/ov/pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+/AAAAEwAA//L/1AAA/8oAAP/aABP/ewAA/xEAAAAA/3EAAP7tAAAAAAAAAAD/P/9RAAD/kf87AAAAAAATABMAAAAA/+T/nf+x/4//uf+h/50AAP+TAAD/r/+4AAAAEP+M//AAD/8mABAAAP8Y/7z/xAAAABD/EP/x//EAAP/t/6//sf+zAAAAAP/h/9X/3//n/+3/4QAAAAAAAP/LAAAAAAAAAAAAAAAA/4UADgAA/8QAAAAAAAAAAAAAAAAAAAAAAAD/y//VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7QAA/9gAAAAA/+wAAAAAAAAAAAASABAAAAAAAAAAAP+FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/5v/rAA0AAP/s/+3/6wAAAAAAAAAN/+UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/9f/jAAAAAAAAAAAAAAAAAAAAAAAA//EAAAAAAAAAAAAAAAAAAAAAAAD/8QAAAAAAAAAAAAD/7wAAAAAAAAAA/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+0AAAAAP/V/7sAAAAAAAAAAAAAAAAAAP/wAAAAAAAAAAD/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/h/+YAAAAA/+f/6f/lAAD/6QAAAAD/2AAAAAAAAAAAAAAAAAAAAAD/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//P/1P+1/9L/2f/k/9IAAAAAAAD/tP/1AAAAAAAAAAAAAP8fAAAAAP/bAAAAAAAAAAAAAAAAAAAAAAAA/7T/tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/8kAAAAAAAAAAP/lAAAAAAAAAAAAAP/oAAAAAAAAAAAAAAAAAAAAAAAAAAD/8/92//UAAAAA//MAAAAAAAD/xgAPAAAAAAAAAAAAAP68AAD/5gAAAAAAAAAAAAD/OAAAAAD/4QAA/8b/dgAAAAAAAAAAAAAAAP/rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/n/+YAAAAA/+f/6//rAAAAAAAAAAD/4QAAAAAAAAAAAAAAAAAAAAD/0gAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8gAAAAAAAAAA/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+/AAAAAP/Y/8AAAAAAAAAAAAAAAAAAAAAA/+sAAAAAAAAAAAAAAAAAAP/tAAAAAP/VAAAAAAAA/5r/5f/pAAAAAAAAAAD/6gAAAAAAAP/q//X/7f/rAAAAAP/1AAAAAAAA//X/9f/0/+8AAP/xAAD/zgAA/6IAAAAA/7sAAP9/AAAAAAAAAAz/xP+pAAD/3f/HAAAAAAAAAAAAAAAAAAD/7AAAAAAAAAAA/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFOxgABAAEArQABAABOwgACAAEAqACsAAAAAQAT/yAAAQAj/8MABU6sTrJOuE6+TsQAAgACAKgArQAAASQBJwAGAAEAAwATAJ0AsgACAAIAqACsAAABJAEnAAUACQAATpQAAE6aAABOoAAATqYAAE6sAABOsgAATrgAAE6+AABOxAAKAABObgAATnQAAE56AABOgAAAToYAAU5KAABOjAAATpIAAE6YAABOngAKAAYAAAALAAABhAAAAYUAAAGHAAABiAAAAYkAAAP2AAAD9wAAA/oAAAABABIABgALABAAEgCWALIBhAGFAYYBhwGIAYkBigGOAY8D9gP3A/oAAQDEAA4AAQDK/+0AAQDK/+oAAQDKAAsAAQGF/7AAAgAHABAAEAABABIAEgABAJYAlgACALIAsgADAYYBhgABAYoBigABAY4BjwABAAIAvQAAA8EAAAACAL3/9APB//QAAgC4/8sAzf/kAAIAuP/FAMr/tAACAMr/6gGF/7AAAwOmABYDtQAWA7gAFgADALUAAAC3AAAAxAAAAAMAvv/1AMT/3gDH/+UAAwC1//MAt//wAMT/6gAEALP/8wDEAA0Dpf/zA7L/8wAEAL7/9QDGAAsAx//qAMoADAAFACMAAAC4/+UAuf/RAMQAEQDK/8gABQCz/+YAuP/CAMQAEAOl/+YDsv/mAAUAI//DALj/5QC5/9EAxAARAMr/yAAGALv/xQDI/8UAyf/FA7n/xQO//4ADxf+AAAgAuP/UAL7/8ADC/+0AxAARAMr/4ADM/+cAzf/lAM7/7gAJALL/5AC0/+QAxP/iA6H/5AOm/9MDqf/kA7X/0wO2/9IDuP/TAAsAEP8eABL/HgCy/80AtP/NAMf/8gGG/x4Biv8eAY7/HgGP/x4Dof/NA6n/zQALABAAAAASAAAAu//nAMQADwDI/+cAyf/nAYYAAAGKAAABjgAAAY8AAAO5/+cADABt/b8AfP59ALj/YQC+/48Av/8PAMP+6ADG/x8Ax/7lAMr/RgDM/u0Azf79AM7+2QANAAT/2ABt/rgAfP8oALj/rgC+/8kAv/9+AMP/ZwDG/4cAx/9lAMr/ngDM/2oAzf9zAM7/XgACABAABgAGAAEACwALAAEAEAAQAAIAEQARAAMAEgASAAIAsgCyAAQBgQGCAAMBhAGFAAEBhgGGAAIBhwGJAAEBigGKAAIBjgGPAAIClAKUAAMD9gP3AAED+gP6AAEEpwSnAAMAFAAG/6AAC/+gAL3/xQDC/+4AxAAQAMb/7ADK/yAAy//xAYT/oAGF/6ABh/+gAYj/oAGJ/6ADvf/xA8H/xQPE//EDxv/xA/b/oAP3/6AD+v+gAAEAKQAMAJYAnQCxALIAswC0ALUAtwC4ALkAuwC9AL4AwADBAMMAxADFAMcAyQDKAM4BhQOhA6UDpgOpA6wDrwOyA7MDtAO1A7YDuAO7A78DwQPFBOUAFQAK/+IADQAUAA7/zwBBABIAYQATAG3/rgB8/80AuP/QALz/6gC+/+4Av//GAMAADQDC/+kAw//WAMb/6ADH/7oAyv/pAMz/ywDN/9oAzv/HAY3/0wAYALv/3AC9/+EAvv/uAL//5gDB//MAwv/rAMP/6QDF//AAxv/nAMj/3ADJ/9wAyv/jAMv/3QDM/84Azf/UAM7/2wO5/9wDu//zA73/3QO//9YDwf/hA8T/3QPF/9YDxv/dABkABv/aAAv/2gC7//AAvf/cAML/7ADEAA8Axv/qAMj/8ADJ//AAyv/EAMv/7wDM/+cBhP/aAYX/2gGH/9oBiP/aAYn/2gO5//ADvf/vA8H/3APE/+8Dxv/vA/b/2gP3/9oD+v/aAB8ABgAMAAsADAC7/+gAvQALAL7/7QDEAAAAxgALAMj/6ADJ/+gAygAMAYQADAGFAAwBhwAMAYgADAGJAAwCBf+/Agb/7QIH/78Duf/oA7//6gPBAAsDxf/qA/YADAP3AAwD+gAMBOb/vwTq/+0E6wANBO3/vwT5AA0E/AANAAEDzf/uAAEDzf/sAAEBHP/xAAIBEQALAWz/5gACAPb/9QGF/7AAAgDt/8gBHP/xAAIA7f/JARz/7gACAPb/wAGF/7AAAwDZAAAA5gAAAWwAAAADANn/qADt/8oBX//jAAMADQAUAEEAEQBhABMAAwDZ/98A5v/gAWz/4AAEARkAFAQFABQEDQAWBKEAFgAEAA3/5gBB//QAYf/vAU3/7QAFAO3/7gD2/7AA/gAAATr/7AFt/+wABgDS/9gA1v/YATn/2AFF/9gD3P/YBJL/2AAIANL/6wDW/+sBOf/rAUX/6wPc/+sEDf/zBJL/6wSh//MACADZABUA7QAVAUn/5AFK/+UBTP/kAWL/4wFk/+IBbP/kAAgA9v/wAP4AAAEJ//EBIP/zATr/8QFj//MBZf/pAW3/0wAIAO3/uAD2/+oBCf/wASD/8QE6/+sBY//1AW3/7AGF/7AACAAK/+IADQAUAA7/zwBBABIAYQATAG3/rgB8/80Bjf/TAAkA9gAAARoAAAPkAAAD7QAABAYAAAQOAAAELwAABDEAAAQzAAAACQD2/7oA/gAAAQn/zwEg/9sBOv9QAUr/nQFj//ABZf/yAW3/TAAKAAb/1gAL/9YBhP/WAYX/1gGH/9YBiP/WAYn/1gP2/9YD9//WA/r/1gAKAAb/9QAL//UBhP/1AYX/9QGH//UBiP/1AYn/9QP2//UD9//1A/r/9QAKAOb/wwD2/88A/gAAATr/zgFJ/+cBTP/fAWL/0QFk/+wBbP+gAW3/0QAMANkAEgDq/+kA9v/XATr/1wFK/9MBTP/WAU3/xQFY/+cBYgANAWQADAFt/9YBbv/yAA0A2QATAOb/xQD2/8oBOv+fAUn/UQFK/3sBTP/KAU3/3QFY//IBYv91AWT/ygFs/08Bbf+MAA0A9v+6APn/2QD+AAABCf/PASD/2wE6/1ABSP/ZAUr/nQFj//ABZf/yAW3/TAQ1/9kElf/ZAA0A6v/XAPb/uQD+/+kBCf+yARz/0gEg/8gBOv+gAUr/xQFY/+QBY//MAWX/zAFt/8sBbv/vAA4AI//DANkAEwDm/8UA9v/KATr/nwFJ/1EBSv97AUz/ygFN/90BWP/yAWL/dQFk/8oBbP9PAW3/jAAPAO0AFADyABAA9v/wAPn/8AD+AAABAQAMAQQAEAE6//ABSP/wAUr/5gFRABABbf/wAXAAEAQ1//AElf/wABIA2f+uAOYAEgDr/+AA7f+tAO//1gD9/98BAf/SAQf/4AEc/84BLv/dATD/4gE4/+ABQP/gAUr/6QFN/9oBX/+9AWn/3wFsABEAFADu//UA9v+6APn/2QD+AAABCf/PASD/2wE0//UBOv9QAUT/9QFI/9kBSv+dAV7/9QFj//ABZf/yAW3/TAPl//UEEf/1BB//9QQ1/9kElf/ZABUA9v+6APn/2QD+AAABCf/PARr/3QEg/9sBOv9QAUj/2QFK/50BY//wAWX/8gFt/0wD5P/dA+3/3QQG/90EDv/dBC//3QQx/90EM//dBDX/2QSV/9kAFQDt/+8A7v/wAPL/8wD+AAABBP/zARr/9AE0//ABRP/wAVH/8wFe//ABcP/zA+T/9APl//AD7f/0BAb/9AQO//QEEf/wBB//8AQv//QEMf/0BDP/9AAXAAb/8gAL//IA9v/0AP4AAAEJ//UBGv/1ATr/9QFt//UBhP/yAYX/8gGH//IBiP/yAYn/8gPk//UD7f/1A/b/8gP3//ID+v/yBAb/9QQO//UEL//1BDH/9QQz//UAGAD3/8UBA//FARj/gAEe/8UBIv/FAUL/xQFg/8UBYf/FAWv/xQPf/8UD4f+AA+P/xQPm/8UD6P+QBAH/xQQH/8UEDP/FBBr/xQQc/8UEHf/FBCf/gAQp/8UEK/+ABDj/xQAdANL/4gDU/+QA1v/iANn/4QDa/+QA3f/kAN7/6QDt/+QA8v/rAQT/6wEz/+QBOf/iAUP/5AFF/+IBUP/kAVH/6wFd/+QBZv/kAW//5AFw/+sD0P/pA9z/4gPd/+QEEP/kBB7/5AQu/+kEMP/pBDL/6QSS/+IAHgD3//ABA//wARj/6wEc/+sBHv/wASL/8AFC//ABYP/wAWH/8AFr//ACD//rAiv/6wI0/+sD3//wA+H/6wPj//AD5v/wBAH/8AQH//AEDP/wBBr/8AQc//AEHf/wBCf/6wQp//AEK//rBDj/8AUM/+sFD//rBRT/6wAfAAb/wAAL/8AA3v/rAOH/5wDm/8MA9v/PAP4AAAEZ/8gBOv/OAUf/5wFJ/+cBTP/fAWL/0QFk/+wBbP+gAW3/0QGE/8ABhf/AAYf/wAGI/8ABif/AA9D/6wP2/8AD9//AA/r/wAQF/8gELv/rBDD/6wQy/+sENP/nBJT/5wAfANL/4wDU/+UA1v/jANn/4gDa/+UA3f/lAN7/6QDy/+oBBP/qATP/5QE5/+MBQ//lAUX/4wFQ/+UBUf/qAV3/5QFm/+UBbP/kAW//5QFw/+oD0P/pA9z/4wPd/+UEDf/kBBD/5QQe/+UELv/pBDD/6QQy/+kEkv/jBKH/5AAgABv/8gDS//EA1P/1ANb/8QDa//QA3f/1AN7/8wDm//EBGf/0ATP/9AE5//EBQ//0AUX/8QFQ//UBXf/0AWL/8gFk//IBZv/1AWz/8gFv//UD0P/zA9z/8QPd//QEBf/0BA3/8AQQ//QEHv/0BC7/8wQw//MEMv/zBJL/8QSh//AAIgDtADoA8gAYAPb/4wD3AAwA+f/3APwAAAD+AAABAwAMAQQAGAEeAAwBIgAMATr/4gFCAAwBSP/3AUr/4wFRABgBYAAMAWEADAFrAAwBbf/jAXAAGAPfAAwD4wAMA+YADAQBAAwEBwAMBAwADAQaAAwEHAAMBB0ADAQpAAwENf/3BDgADASV//cAIgBt/b8AfP59ANn/UgDmAAUA6v+9AOv/SQDt/v4A7/8TAPb/aAD9/w4A/v8zAP//EwEB/wcBAgAAAQf/DgEJ/xEBHP88ASD/rAEu/xUBMP88ATj/DgE6/2oBQP9JAUr/DAFM/z8BTf7xAVj/wAFf/u8BY/8xAWX/XwFp/woBbAAFAW3/MAFu/9UAIwAE/9gAbf64AHz/KADZ/6UA5gAPAOr/5ADr/6AA7f90AO//gAD2/7IA/f99AP7/kwD//4ABAf95AQIAAAEH/30BCf9/ARz/mAEg/9oBLv+BATD/mAE4/30BOv+zAUD/oAFK/3wBTP+aAU3/bAFY/+YBX/9rAWP/kgFl/60Baf97AWwADwFt/5EBbv/yACcA7AAAAO0AFADwAAAA8QAAAPMAAAD0AAAA9QAAAPb/7QD4AAAA+f/tAPoAAAD7AAAA/P/iAP4AAAEAAAABBQAAASsAAAE2AAABOv/tATwAAAE+AAABSP/tAUr/7QFTAAABVQAAAVcAAAFcAAABbf/tA+AAAAPiAAAD5wAAA+wAAAQCAAAEIwAABCUAAAQ1/+0ENwAABJX/7QSXAAAAKgDs/+8A7f/uAO7/8ADw/+8A8f/vAPP/7wD0/+8A9f/vAPb/7gD4/+8A+v/vAPv/7wD+/+8BAP/vAQX/7wEJ//QBIP/xASv/7wE0//ABNv/vATr/7wE8/+8BPv/vAUT/8AFT/+8BVf/vAVf/7wFc/+8BXv/wAW3/7wPg/+8D4v/vA+X/8APn/+8D7P/vBAL/7wQR//AEH//wBCP/7wQl/+8EN//vBJf/7wAzANL/vgDW/74A5v/JAOwAAADwAAAA8QAAAPMAAAD0AAAA9QAAAPb/3wD4AAAA+gAAAPsAAAD+AAABAAAAAQUAAAEJ/+0BGv/vASD/6wErAAABNgAAATn/vgE6/98BPAAAAT4AAAFF/74BTP/pAVMAAAFVAAABVwAAAVwAAAFj//UBbf/gA9z/vgPgAAAD4gAAA+T/7wPnAAAD7AAAA+3/7wQCAAAEBv/vBA7/7wQjAAAEJQAABC//7wQx/+8EM//vBDcAAASS/74ElwAAAAIAUQAlAD4AAABFAF4AGgCBAIEANACDAIMANQCGAIYANgCJAIkANwCLAJYAOACYAJ0ARACxALEASgC6ALsASwC/AL8ATQDBAMEATgDDAMQATwDHAMcAUQDLAMsAUgDNAM4AUwDQANEAVQDTANMAVwDaAN4AWADhAOEAXQDlAOUAXgDnAOkAXwDrAPsAYgD9AP0AcwD/AQEAdAEDAQMAdwEIAQkAeAEWARoAegEcARwAfwEgASIAgAEqASsAgwEzATQAhQE2ATYAhwE7ATwAiAFBAUQAigFHAUgAjgFLAU0AkAFRAVEAkwFUAVgAlAFdAV4AmQFiAWIAmwFkAWQAnAFoAWgAnQFqAWwAngFuAW4AoQFwAXAAogHsAgAAowIEAgQAuAINAg0AuQIPAg8AugIWAhgAuwIaAhsAvgIdAh0AwAIhAiEAwQIjAiUAwgIrAisAxQIwAjIAxgI0AjQAyQJCAkIAygJFAkUAywJHAkcAzAJKAk0AzQJ5An0A0QKNApIA1gKVAv0A3AMAA78BRQPBA8ECBQPDA80CBgPPA9gCEQPaA/UCGwP5A/kCNwP7BAICOAQEBAYCQAQJBA0CQwQPBJoCSASdBJ4C1ASgBKEC1gSjBKYC2ASwBQwC3AUOBRgDOQUbBSgDRAABAfD/xwABAfD/8QABAfAADQABAFsACwABAIH/3wABAEoADQACAfX/6QJL/+kAAgHw/7cB9f/wAAIAWAAOAIH/nwA6ALIADwDS/+YA1AAOANb/5gDZABMA2gAOAN0ADgDeAAsA4f/lAOb/5gDn//QA7QASAPIADwD2/+cA+f/oAP4AAAEEAA8BDQAPARn/5gEzAA4BOf/mATr/5wFDAA4BRf/mAUf/5QFI/+gBSf/lAUr/6AFM/+QBUAAOAVEADwFdAA4BYv/mAWT/5gFmAA4BbP/mAW3/5wFvAA4BcAAPA9AACwPRAA8D3P/mA90ADgQF/+YEDf/mBBAADgQTAA8EFQAPBB4ADgQuAAsEMAALBDIACwQ0/+UENf/oBJL/5gSU/+UElf/oBKH/5gABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAADAe//9QHw/+4Dm//1AAMADf/mAEH/9ABh/+8AAwBK/+4AW//qAfD/8AADAFv/wQH//+YCS//oAAMASgAPAFgAMgBbABEAAwBb/+UB///rAkv/7QA7ALIAEADS/+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//IBbwAQAXAAEAPRABAD2P/oA9v/6APc/+AEBf/gBAj/6AQL/+gEDf/fBBMAEAQVABAEJv/oBCj/6AQq/+gENP/hBDX/4ASS/+AElP/hBJX/4ASh/98ABABY/+8AW//fAJr/7gHw/80ABAANABQAQQARAFb/4gBhABMABQA4/9gDKf/YAyv/2AMt/9gE2v/YAAUAI//DAFj/7wBb/98Amv/uAfD/zQAFAFv/pAHw/1QB9f/xAf//8QJL//MABQANAA8AQQAMAFb/6wBhAA4CS//pAAYAEP+EABL/hAGG/4QBiv+EAY7/hAGP/4QACAAE/9gAVv+1AFv/xwBt/rgAfP8oAIH/TQCG/44Aif+hAAkB7f/uAe//9QHw//EB8v/yA2f/7gOT//IDm//1A5z/7gOd/+4ACQHt/+UB7//xAfD/6wHy/+kDZ//lA5P/6QOb//EDnP/lA53/5QABAIUABAAMAD8AXwCWAJ0AsgDSANQA1QDWANcA2ADZANoA2wDcAN0A3gDgAOEA4gDjAOQA5QDmAOcA6ADpAOoA6wDsAO0A7gDvAPEA9gD3APgA+wD8AP4A/wEAAQMBBAEFAQoBDQEYARkBGgEiAS4BLwEwATMBNAE1ATcBOQE7AUMBRAFUAVYBWAFcAV0BXgGFA8kDywPMA84DzwPQA9ED0gPTA9YD1wPYA9oD2wPcA90D3gPfA+ED4gPkA+UD5gPnA+0EAQQFBAYECwQNBA4EDwQQBBEEEgQTBBQEFQQWBBoEHAQdBB4EHwQmBCcEKwQtBC4ELwQwBDEEMgQzBJIElgSXBJoEnASdBJ8EoQBEAAYADQALAA0A7f+qAPL/rwD3/7ABA/+wAQT/rwEY/9YBGgALARz/4gEe/7ABIAAMASL/sAFC/7ABUf+vAWD/sAFh/7ABYwALAWUACwFr/7ABcP+vAYQADQGFAA0BhwANAYgADQGJAA0CBf+/Ag4ADgIP/+0CEgAOAioADgIr/+0CLAANAi4ADgI0/+0D3v/wA9//sAPh/9YD4/+wA+QACwPm/7AD7QALA/YADQP3AA0D+gANBAH/sAQGAAsEB/+wBAz/sAQOAAsEFP/wBBb/8AQa/7AEHP+wBB3/sAQn/9YEKf+wBCv/1gQvAAsEMQALBDMACwQ4/7AFBf+/BQz/7QUP/+0FEAAOBRT/7QUVAA0ARQDS/vUA1P/1ANb+9QDa//AA3f/1AN7/6wDh/+cA5v/DAOwAAADwAAAA8QAAAPMAAAD0AAAA9QAAAPb/zwD4AAAA+gAAAPsAAAD+AAABAAAAAQUAAAEZ/8gBKwAAATP/8AE2AAABOf71ATr/zgE8AAABPgAAAUP/8AFF/vUBR//nAUn/5wFM/98BUP/1AVMAAAFVAAABVwAAAVwAAAFd//ABYv/RAWT/7AFm//UBbP+gAW3/0QFv//UD0P/rA9z+9QPd//AD4AAAA+IAAAPnAAAD7AAABAIAAAQF/8gEDf+tBBD/8AQe//AEIwAABCUAAAQu/+sEMP/rBDL/6wQ0/+cENwAABJL+9QSU/+cElwAABKH/rQBGANL/5gDW/+YA2v/yAN7/7gDh/+gA5v/mAOwAAADu//EA8AAAAPEAAADzAAAA9AAAAPUAAAD2/9AA+AAAAPoAAAD7AAAA/gAAAQAAAAEFAAABGf/nASsAAAEz//IBNP/xATYAAAE5/+YBOv/OATwAAAE+AAABQ//yAUT/8QFF/+YBR//oAUn/6AFTAAABVQAAAVcAAAFcAAABXf/yAV7/8QFi/+cBZP/tAWz/5gFt/9AD0P/uA9z/5gPd//ID4AAAA+IAAAPl//ED5wAAA+wAAAQCAAAEBf/nBA3/5wQQ//IEEf/xBB7/8gQf//EEIwAABCUAAAQu/+4EMP/uBDL/7gQ0/+gENwAABJL/5gSU/+gElwAABKH/5wAPAAr/4gANABQADv/PAEEAEgBK/+oAVv/YAFj/6gBhABMAbf+uAHz/zQCB/6AAhv/BAIn/wAGN/9MCS//NABAAOP+wADr/7QA9/9ACtP/QAyn/sAMr/7ADLf+wAz3/0AM//9AD9P/QBIv/0ASN/9AEj//QBNr/sATd/+0E3//tABAALv/uADn/7gKw/+4Csf/uArL/7gKz/+4DAP/uAy//7gMx/+4DM//uAzX/7gM3/+4DOf/uBH3/7gR//+4E3P/uABAALv/sADn/7AKw/+wCsf/sArL/7AKz/+wDAP/sAy//7AMx/+wDM//sAzX/7AM3/+wDOf/sBH3/7AR//+wE3P/sABEAOgAUADsAEgA9ABYCtAAWAzsAEgM9ABYDPwAWA+4AEgPwABID8gASA/QAFgSLABYEjQAWBI8AFgTdABQE3wAUBOEAEgATAFP/7AGFAAACxv/sAsf/7ALI/+wCyf/sAsr/7AMU/+wDFv/sAxj/7ARm/+wEaP/sBGr/7ARs/+wEbv/sBHD/7ARy/+wEev/sBLv/7AAVAAb/8gAL//IAWv/zAF3/8wGE//IBhf/yAYf/8gGI//IBif/yAs//8wLQ//MDPv/zA/X/8wP2//ID9//yA/r/8gSM//MEjv/zBJD/8wTe//ME4P/zAFEABv/AAAv/wADS/vUA1v71ANr/8ADe/+sA4f/nAOb/wwDsAAAA7v/JAPAAAADxAAAA8wAAAPQAAAD1AAAA9v/PAPgAAAD6AAAA+wAAAP4AAAEAAAABBQAAARn/yAErAAABM//wATT/yQE2AAABOf71ATr/zgE8AAABPgAAAUP/8AFE/8kBRf71AUf/5wFJ/+cBTP/fAVMAAAFVAAABVwAAAVwAAAFd//ABXv/JAWL/0QFk/+wBbP+gAW3/0QGE/8ABhf/AAYf/wAGI/8ABif/AA9D/6wPc/vUD3f/wA+AAAAPiAAAD5f/JA+cAAAPsAAAD9v/AA/f/wAP6/8AEAgAABAX/yAQN/60EEP/wBBH/yQQe//AEH//JBCMAAAQlAAAELv/rBDD/6wQy/+sENP/nBDcAAASS/vUElP/nBJcAAASh/60AIgA4/9UAOv/kADv/7AA9/90CBQAOAk0ADgK0/90DKf/VAyv/1QMt/9UDO//sAz3/3QM//90DTQAOA04ADgNPAA4DUAAOA1EADgNSAA4DUwAOA2gADgNpAA4DagAOA+7/7APw/+wD8v/sA/T/3QSL/90Ejf/dBI//3QTa/9UE3f/kBN//5ATh/+wAWwAG/8oAC//KANL/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/JAYT/ygGF/8oBh//KAYj/ygGJ/8oD0P/tA9z/0gPd//QD4P/RA+L/0QPk/+YD5f/vA+f/0QPs/9ED7f/mA/b/ygP3/8oD+v/KBAL/0QQF/9QEBv/mBA3/0wQO/+YEEP/0BBH/7wQe//QEH//vBCP/0QQl/9EELv/tBC//5gQw/+0EMf/mBDL/7QQz/+YENP/hBDf/0QSS/9IElP/hBJf/0QSh/9MAKQBH/+wASP/sAEn/7ABL/+wAVf/sAJT/7ACZ/+wCvP/sAr3/7AK+/+wCv//sAsD/7ALY/+wC2v/sAtz/7ALe/+wC4P/sAuL/7ALk/+wC5v/sAuj/7ALq/+wC7P/sAu7/7ALw/+wC8v/sBFL/7ARU/+wEVv/sBFj/7ARa/+wEXP/sBF7/7ARg/+wEdP/sBHb/7AR4/+wEfP/sBLf/7ATE/+wExv/sADYABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gBhAAQAYUAEAGHABABiAAQAYkAEAK8/+gCvf/oAr7/6AK//+gCwP/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/oAuT/6ALm/+gC6P/oAur/6ALs/+gC7v/oAvD/6ALy/+gD9gAQA/cAEAP6ABAEUv/oBFT/6ARW/+gEWP/oBFr/6ARc/+gEXv/oBGD/6AR0/+gEdv/oBHj/6AR8/+gEt//oBMT/6ATG/+gASgBH/8UASP/FAEn/xQBL/8UATAAgAE8AIABQACAAU/+AAFX/xQBX/5AAWwALAJT/xQCZ/8UB2/+QArz/xQK9/8UCvv/FAr//xQLA/8UCxv+AAsf/gALI/4ACyf+AAsr/gALY/8UC2v/FAtz/xQLe/8UC4P/FAuL/xQLk/8UC5v/FAuj/xQLq/8UC7P/FAu7/xQLw/8UC8v/FAxT/gAMW/4ADGP+AAyD/kAMi/5ADJP+QAyb/kAMo/5AEUv/FBFT/xQRW/8UEWP/FBFr/xQRc/8UEXv/FBGD/xQRm/4AEaP+ABGr/gARs/4AEbv+ABHD/gARy/4AEdP/FBHb/xQR4/8UEev+ABHz/xQS3/8UEu/+ABMT/xQTG/8UEyAAgBMoAIATMACAE2f+QAAEA9AAEAAYACwAMACUAJwAoACkAKgAvADAAMwA0ADUANgA4ADoAOwA8AD0APgA/AEkASgBMAE8AUQBSAFMAVgBYAFoAWwBdAF8AlgCdALIBhAGFAYcBiAGJAfIB9AH1AfcB+gIFAkoCTQJfAmECYgKVApYCmAKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKrAqwCrQKuAq8CtAK9Ar4CvwLAAsUCxgLHAsgCyQLKAs8C0ALRAtMC1QLXAtkC2wLdAt8C4QLiAuMC5ALlAuYC5wLoAukC6gL0AwIDBAMGAwgDCgMNAw8DEQMSAxMDFAMVAxYDFwMYAxoDHAMeAykDKwMtAzsDPQM+Az8DQANCA0QDSgNLA0wDTQNOA08DUANRA1IDUwNeA18DYANhA2IDaANpA2oDbwOBA4IDgwOEA4gDiQOKA5MD7gPwA/ID9AP1A/YD9wP6A/wD/QQ5BDsEPQQ/BEEEQwRFBEcESQRLBE0ETwRRBFIEUwRUBFUEVgRXBFgEWQRaBFsEXARdBF4EXwRgBGUEZgRnBGgEaQRqBGsEbARtBG4EbwRwBHEEcgR6BIsEjASNBI4EjwSQBLMEtAS2BLoEuwS9BMMExQTIBMkEywTNBNAE0gTTBNQE1wTaBN0E3gTfBOAE4QTjAAEANQAGAAsAlgCxALIAswC0AL0AwQDHAYQBhQGHAYgBiQIFAgYCBwOhA6IDowOkA6UDpgOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7sDvwPBA8UD9gP3A/oE5QTmBOoE7QTzBPgApwAQ/xYAEv8WACX/VgAu/vgAOAAUAEX/3gBH/+sASP/rAEn/6wBL/+sAU//rAFX/6wBW/+YAWf/qAFr/6ABd/+gAlP/rAJn/6wCb/+oAsv9WAYb/FgGK/xYBjv8WAY//FgIF/8ACTf/AApr/VgKb/1YCnP9WAp3/VgKe/1YCn/9WAqD/VgK1/94Ctv/eArf/3gK4/94Cuf/eArr/3gK7/94CvP/rAr3/6wK+/+sCv//rAsD/6wLG/+sCx//rAsj/6wLJ/+sCyv/rAsv/6gLM/+oCzf/qAs7/6gLP/+gC0P/oAtH/VgLS/94C0/9WAtT/3gLV/1YC1v/eAtj/6wLa/+sC3P/r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IigAABmaAAAmBiR0GaAZpiisJVIgzCDSGawlLhmyGbgmPCT+JkglChm+GcQZyhnQGdYZ3BniGegj0iPAKHAjzCQsJCAkOCWOG7wAACJGIlIkpAAAAAAgoiCuILQk1AAAILogwCDGAAAAAAAAGe4AACDkAAAh1AAAIOog8CWUAAAacgAAGfQAABn6AAAh5iJqGgAAAAAAGgYaDAAAJIYAABoSAAAaGAAAGh4AABokAAAaKgAAJKoAABowAAAaNgAAIewidho8AAAaQgAAGkgaThpUAAAaWgAAGmAAACSAAAAaZgAAGmwAACSMAAAafgAAGnIAABp4AAAbFAAAGn4AABqEAAAaigAAGpAAABqWAAAanAAAIqAAACKmAAAaogAAGqgAABquAAAatAAAGroawBrGGswa0gAAGtgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGt4bmCC6GuQAAAAAAAAAAAAAAAAAAAAAGuoAAAAAJJIAACSYAAAAAAAAAAAAAAAAAAAAAAAAAAAa8CJAAAAAAAAAAAAlmhr2GvwbAiXKAAAbCBsOGxQbGhsgISAbJhssAAAAACgKKF4oCiheJ9on4BsyKFIbOBs+J8IghCfOJ9QoOidWICQgNhtEG0onwifIJ7woNCc4Jz4nsCe2H+4f9CcyJ4Anbid0J1wnaCfyJ/gfph+gG1AbVieeAAAAACcsG1wAABtiAAAn5ifsG2gAAAAAG24bdAAAKAoAABt6AAAbgAAAG4YAABuMAAAbkhuYG54AAAAAKBAbpBuqG7AAACigJ6Qbth1+JgYl9B7aJ8gn/igEJ5InmCiUJ4wbvCGeG7wbwiisJVIorBvIKKwlUh/uH/QbzigoG9Qb2ie8KDQn8if4JzgnPiWyISAlsiEgJdYkniacJHomqB4+G+AlFhvgJRYjBiUWG+YlFiIWJRYb7CUWKGQlFiHyG/IhvCUuIbwlLiNCJS4g9iUuG/glRhv+JUYcBCVGIQglRhwKJP4cECcmHBAnJiOKJyYcFicmIpQnJhwcJrocHCa6HCImuhwoJrohjCS2I6glIiOoJSIjDCUiI8YlIiIcJSIcLiUiKHAlIiH+HDQhyCU6HDolOiNOJTohPiU6HEAlUhxGJVIcTCVSIVAlUhxSJQocWCVkHFglZCOWJWQcXiVkIpolZBxkJY4cZCWOHGoljhxwJY4hkiRuItYkbhx2JRYcfCUiIxIlFiMeJSIoZCUWKHAlIhyCIfgciCIEHI4h+ByUIgQcmiH4HKAiBBymIfgcrCIEHLIhICW+JHQcuCUuHL4lOiIuJS4iNCU6HMQlLhzKJToofCUuKIglOhzQJS4c1iU6HNwk5hziJPIc6CTmHO4k8hz0JOYc+iTyHQAdBh0MJPIdEiEsHRgknh0eJUYdJCVSHSolRh0wJVIdNiVGHTwlUiNmHUIjciVSHUglRh1OIRQdVAAAJfodWiYGHWAdZh1+HWwlUiYSHXImHh14JhIdfiYeJVImEh1+Jh4lUiT4JP4lBCUKJjwdhCZIHYodkCT+HZYlCiZIJQodnCcmHaIlZB2oJyYdriVkHbQnJh26JWQdwCVwHcYlfCZsHcwmeB3SHdglcB3eJXwd5CECHeohSh3wIQId9iFKJoQd/CaQHgImhB4IJpAeDh4UIQIeGiFKJpweICaoHiYmnB4sJqgeMh44JHomqB4+HkQmuh5KJY4eUCa6HlYljh5cJroeYiWOHmgmuh5uJY4edCa6Hnoljia0Jroj6iWOHoAheh6GIYYejCS2HpIkbiCoJLYemCEgHp4evB6kISAeqh68HrAhIB62HrwewgAAHsgAAB7OAAAe1AAAHtonyB7aJ8gnzifUHuAnjB7gJ4we5ieMHuwnjB7yJ4we+CeMKJQnjCf+Hv4fBCekHwQnpB8KJ6QnSiekHxAnaB8WJ2gfHCdoJ2InaB8iJz4oLig0KC4oNB8oKDQfLig0HzQoNB86IIQfOiCEH0AghB9GIIQoWCheH0wnjB9SJ4wolCeMH1goBB9eKAQfZCgEH2ooBB9wJ8gfdiekH3wnpB+CJ6QooCekH4gnpB+OH6AflB+gH5ofoB+mH6wfsif4H7gnaB++J2gfxCdoJ1wfyh/QJ2gf1id0JzIf3B/iH/Qf7h/oH+4f9B/uH/Qf+ic+JzggACAGJz4gDCg0IBIoNCAYKDQgHiA2ICQgKiAwIDYgPCdWIEInVig6IEggTidWJ84gVCBaJ9QnziBgIGYghCBsIIQgciCEIHgghCB+IIQnwiCEIIooUiCQKF4nRCheKFgoXiCWKF4gnCheKGQlFih8JS4lyiEsI2YlRicgJyYksCS2AAAgoiDGAAAoZCUWJZohICh8JS4nCCEgJcohLCNmJUYl+iXoJiQhqiY8JP4nICcmJZomWiacJHoksCS2JLwkwiEIJUYgqCS2IK4gtCTUAAAguiDAIMYAACDkAAAgzCDSI4QlZCbkJtIg2AAAIN4AACOEJWQg5AAAIOog8CD2JS4g/AAAJoQhAiNmJUYhCCVGIQ4hFCXiJeghGgAAKGQlFiWaISAkpAAAKHwlLiEmAAAmJCGqJcohLCcgJyYlmiZaIfIh+CacJHokvCTCKHAlIiiIJTohMgAAI4QlZCE4JmYh/iIEJEokbiTIJM4hPiU6IUQAACaQIUojciVSIVAlUiFWIZ4hXAAAIWIkbiFoIXohbiGGIWgheiFuIYYhdCF6IYAhhiGMJLYhkiRuIZghniGkIaohsCG2KGQlFihwJSIhvCUuIcIAACHIJTohzgAAIdQAACHaAAAh4AAAIeYiaiHsInYh8iH4If4iBCSwJLYjZiVGIgoAACIQAAAjZiVGIxIlFiMeJSIiFiUWIhwlIiIiAAAiKAAAIi4lLiI0JToiOiJAIkYiUiJMIlIiWAAAIl4AACJkImoicCJ2InwAACKCAAAiiAAAIo4AACKUJyYimiVkIqAAACKmAAAirAAAIrIAACK4AAAivgAAIsQAACLKJG4i0AAAItYkbiLcAAAi4iRuIugAACLuAAAi9AAAIvoAACW+JHQoZCMYKHAjJCMAJRYjtCUiKGQlFihwJSIoZCUWKHAlIihkJRYocCUiKGQlFihwJSIjBiMYIwwjJChkJRYocCUiKGQlFihwJSIoZCUWKHAlIihkJRYocCUiIxIjGCMeIyQofCNIKIgjVCMqJS4jMCU6IzYlLiM8JToofCUuKIglOih8JS4oiCU6KHwlLiiIJToofCUuKIglOiNCI0gjTiNUI1olRiNgJVIjZiNsI3IosicgI5AjhCOcI3gnJiN+JWQnICcmI4QlZCcgJyYjhCVkJyAnJiOEJWQnICcmI4QlZCOKI5AjliOcI6IjwCOoI8wjoiPAI6gjzCOuI8AjtCPMI7ojwCPGI8wj0iPYKHAj3ia0I+Qj6iPwI/YmuiP8JY4kAiQgJAgljiQCJCAkCCWOJA4kICQUJY4kGiQgJCYljiQsJDIkOCQ+JLAkRCRKJFAkViS2JFwkbiRiJLYkaCRuJb4kdCacJHokgAAAJIYAACSMAAAkpAAAJKoAAAAAJJIAACSYJdYkniSkAAAkqgAAJgYl9CSwJLYkvCTC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ABgEzQTNAA8EzwTPAAEE0ATQAAgE0QTRAAEE0gTSAAgE1ATUABwE1QTVABUE1wTXABME2gTaABAE3ATcAAcE3QTdABkE3gTeAAsE3wTfABkE4ATgAAsE4QThABEE4wTjABQE5ATkABcAAgEJAAYABgANAAsACwANABAAEAASABEAEQAVABIAEgASACUAJQADACcAJwABACsAKwABAC4ALgAaADMAMwABADUANQABADcANwAQADgAOAATADkAOQAIADoAOgAZADsAOwARADwAPAAdAD0APQAOAD4APgAUAEUARQAEAEcASQACAEsASwACAFEAUgAJAFMAUwAHAFQAVAAJAFUAVQACAFcAVwAPAFkAWQAGAFoAWgAMAFwAXAAhAF0AXQAMAF4AXgAXAIMAgwABAJMAkwABAJQAlAACAJgAmAABAJkAmQACAJsAmwAGALIAsgAgAYEBggAVAYQBhQANAYYBhgASAYcBiQANAYoBigASAY4BjwASAdsB2wAPAe0B7QAYAe4B7gAeAe8B7wAbAfEB8QAKAfIB8gAcAfMB8wAWAfUB9QAFAfcB9wAFAf8B/wAFAgUCBQAfAksCSwAFAk0CTQALAl8CYAABAmICYwABApQClAAVApoCoAADAqECoQABAqsCrwABArACswAIArQCtAAOArUCuwAEArwCwAACAsUCxQAJAsYCygAHAssCzgAGAs8C0AAMAtEC0QADAtIC0gAEAtMC0wADAtQC1AAEAtUC1QADAtYC1gAEAtcC1wABAtgC2AACAtkC2QABAtoC2gACAtsC2wABAtwC3AACAt0C3QABAt4C3gACAuAC4AACAuIC4gACAuQC5AACAuYC5gACAugC6AACAuoC6gACAusC6wABAuwC7AACAu0C7QABAu4C7gACAu8C7wABAvAC8AACAvEC8QABAvIC8gACAwADAAAaAw0DDQAJAw8DDwAJAxEDEgAJAxMDEwABAxQDFAAHAxUDFQABAxYDFgAHAxcDFwABAxgDGAAHAx8DHwAQAyADIAAPAyEDIQAQAyIDIgAPAyMDIwAQAyQDJAAPAyUDJQAQAyYDJgAPAycDJwAQAygDKAAPAykDKQATAysDKwATAy0DLQATAy8DLwAIAzADMAAGAzEDMQAIAzIDMgAGAzMDMwAIAzQDNAAGAzUDNQAIAzYDNgAGAzcDNwAI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AAMABAAGAAgADAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAQ+SADYG8gW0BbgF8AcABfYFvAcOBjIGOgX8BoYHVAXABnIGQgYCB2QGCAZKBpIGDgccBcQFyAYUByoFzAXQBdQGUgZaBhoGngc4BdgGfAZiBiAHRgYmBmoGqgYsBdwF4AXkBegGtgbCBs4G2gbmBewAAgcCAOsCjAJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCfgKOA0sCkAKPA0oB/QKNApICbATtBO4CBAIFBO8E8ATxAgYE8gIHAggCCQT3AgoCCgT4BPkCCwIMAg0CFAUGBQcCFQIWAhcCGAIZAhoFCgULBQ0FEAUZAhwCHQIeAh8CIAIhAiICIwIkAiUCDgIPAhACEQISAhMCVQInAigCKQIqBRMCKwItAi4CLwIxAjMCkQNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA50DaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDngOfA6AFGwUcBOYE5wToBOkE8wT2BPQE9QT6BPsE/ATqBOsE7AUFBQgFCQUMBQ4FDwIbBREE/QT+BP8FAAUBBQIFAwUEBR4FHwUgBSEFEgUUBRUCMgUXAjQFGAUWAjACJgIsBSYFJwACBwAA+gIBAowB6wHqAekB6AHnAeYB5QHkAeMB4gJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCAgIDAo4CkAKPApECjQKSAmwCBAIFAgYCBwIIAgkCCgILAgwCDQIOAg8CEAIRAhICEwIUAhUCFgIXAhgCGgIbBRkCHAIdAh4CHwIgAiECIgIjAiQCJQJVAicCKAIpAioFEwIrAi0CLgIvAjACMQIyAjMCNQI2AjgCNwNKA0sDTANNA04DTwNQA1EDUgNTA1QDVQNWA1cDWANZA1oDWwNcA10DXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9A34FGgN/A4ADgQOCA4MDhAOFA4YDhwOIA4kDigOLA4wDjQOOA48DkAUdA5EDkgOUA5MDlQOWA5cDmAOZA5oDmwOcA50DngOfA6AFGwUcBOYE5wToBOkE6gTrBOwE7QTuBO8E8ATxBPIE8wT0BPUE9gT3BPgE+QT6BPsE/AT9BP4E/wUABQEFAgIZBQMFBAUFBQYFBwUIBQkFCgULBQwFDQUOBQ8FEAURBR4FHwUgBSEFEgUUBRUFFwI0BRgFFgImAiwFJgUnAAEAAQF7AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMjAyQAAgbkBtgAAgbmBtgAAQbuAAEG8AABBvIAAgABABQAHQAAAAEAAgAvAE8AAQADAEkASwKEAAIAAAABBt4AAQAGAtUC1gLnAugDagNzAAEABgBNAE4C/APpA+sEZAACAAMBlAGUAAAB3wHhAAECOQI/AAQAAgACAKgArAABASQBJwABAAEADAAnACgAKwAzADUARgBHAEgASwBTAFQAVQACAAIAFAAdAAACbwJ4AAoAAgAGAE0ATQAGAE4ATgAEAvwC/AAFA+kD6QADA+sD6wACBGQEZAABAAIABAAUAB0AAAKAAoAACgKLAosACwSoBK8ADAACAAYAGgAaAAAAHAAcAAECZAJpAAICbQJtAAgCbwJ4AAkCfwJ/ABMAAQAUABoAHAJkAmUCZgJnAmgCaQJtAn8CgAKLBKgEqQSqBKsErAStBK4ErwABBd4AAQXgAAEF4gABBeQAAQXmAAEF6AABBeoAAQXsAAEF7gABBfAAAQXyAAEF9AABBfYAAQX4AAEF+gACBfwGAgACBgIGCAACBggGDgACBg4GFAACBhQGGgACBhoGIAACBiAGJgACBiYGLAACBiwGMgACBjIGOAACBjgGPgADBj4GRAZKAAMGSAZOBlQAAwZSBlgGXgADBlwGYgZoAAMGZgZsBnIAAwZwBnYGfAADBnoGgAaGAAMGhAaKBpAABAaOBpQGmgagAAQGnAaiBqgGrgAFBqoGsAa2BrwGwgAFBrwGwgbIBs4G1AAFBs4G1AbaBuAG5gAFBuAG5gbsBvIG+AAFBvIG+Ab+BwQHCgAFBwQHCgcQBxYHHAAFBxYHHAciBygHLgAFBygHLgc0BzoHQAAFBzoHQAdGB0wHUgAGB0wHUgdYB14HZAdqAAYHYgdoB24HdAd6B4AABgd4B34HhAeKB5AHlgAGB44HlAeaB6AHpgesAAYHpAeqB7AHtge8B8IABge6B8AHxgfMB9IH2AAGB9AH1gfcB+IH6AfuAAcILgfmB+wH8gf4B/4IBAAHCCYH+ggACAYIDAgSCBgAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaApcCmQK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtIC1ALWAtgC2gLcAt4C4ALiAuQC5gLoAuoC7ALuAvAC8gL0AvYC+AL6AvwC/wMBAwMDBQMHAwkDCwMNAw8DEQMUAxYDGAMaAxwDHgMgAyIDJAMmAygDKgMsAy4DMAMyAzQDNgM4AzoDPAM+A0EDQwNFA0cDSQO5A7oDuwO8A74DvwPAA8EDwgPDA8QDxQPGA8cD3gPfA+AD4QPiA+MD5APlA+YD5wPoA+kD6gPrA+wD7QPvA/ED8wP1BAoEDAQOBBwEIwQpBC8EmQSaBJ4EogUjBSUAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQB1gACAE0B1wACAFAB2AADAEoATQHZAAMASgBQAAEAAQBKAdUAAgBKAdsAAgBYAdoAAgBYAAEAAwBKAFcAlQAAAAEAAQABAAEAAAADBMEAAgCtAtcAAgCpBMcAAgCtBNQAAgCpBMIAAgCtAtgAAgCpBLEAAgCpBMgAAgCtBGQAAgCtBNUAAgCpA0YAAgCpA0gAAgCpA0cAAgCpA0kAAgCpBMAAAgCpBMUAAgHUBMMAAgCtBLAAAgCpAvEAAgHUA/sAAgCpBM8AAgCtAykAAgHUBNoAAgCtBN8AAgCtBN0AAgCqA0AAAgCpBOMAAgCtBMYAAgHUBMQAAgCtA/wAAgCpBNAAAgCtAyoAAgHUBNsAAgCtBOAAAgCtBN4AAgCqA0EAAgCpBOQAAgCtBMkAAgCpAwIAAgHUBMsAAgCtAwQAAgCpAwYAAgHUBM0AAgCtAx8AAgCpAyUAAgHUBNgAAgCtA/AAAgCpBOEAAgCtA+4AAgCoBMoAAgCpAwMAAgHUBMwAAgCtAwUAAgCpAwcAAgHUBM4AAgCtAyAAAgCpAyYAAgHUBNkAAgCtA/EAAgCpBOIAAgCtA+8AAgCoAxkAAgCpAxsAAgHUBNYAAgCtBLwAAgCsAxoAAgCpAxwAAgHUBNcAAgCtBL0AAgCsAwwAAgCpAw4AAgHUBNEAAgCtBLIAAgCoAqoAAgCqArQAAgCpBIsAAgCtA/QAAgCoBI0AAgCrBI8AAgCqAw0AAgCpAw8AAgHUBNIAAgCtBLMAAgCoAsUAAgCqAs8AAgCpBIwAAgCtA/UAAgCoBI4AAgCrBJAAAgCqAsIAAgCpAsEAAgCoBGIAAgCrAvYAAgCqBLkAAgCsBHMAAgCpBHsAAgCtBHUAAgCoBHcAAgCrBHkAAgCqBHQAAgCpBHwAAgCtBHYAAgCoBHgAAgCrBHoAAgCqBIEAAgCpBIkAAgCtBIMAAgCoBIUAAgCrBIcAAgCqBIIAAgCpBIoAAgCtBIQAAgCoBIYAAgCrBIgAAgCqApsAAgCpBDkAAgCtApoAAgCoBDsAAgCrAp0AAgCqBLQAAgCsAqMAAgCpBFEAAgCtAqIAAgCoBFMAAgCrBFUAAgCqBLYAAgCsAqcAAgCpBGMAAgCtAqYAAgCoBGEAAgCrAvUAAgCqBLgAAgCsArYAAgCpBDoAAgCtArUAAgCoBDwAAgCrArgAAgCqBLUAAgCsAr4AAgCpBFIAAgCtAr0AAgCoBFQAAgCrBFYAAgCqBLcAAgCsAscAAgCpBGYAAgCtAsYAAgCoBGgAAgCrAskAAgCqBLsAAgCsAswAAgCpBH4AAgCtAssAAgCoBIAAAgCrAzAAAgCqBL8AAgCsAqwAAgCpBGUAAgCtAqsAAgCoBGcAAgCrAq4AAgCqBLoAAgCsArEAAgCpBH0AAgCtArAAAgCoBH8AAgCrAy8AAgCqBL4AAgCsBNMAAwCqAKkE3AADAKoAqQACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAA==","Roboto-Medium.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcKMAAACWEdQT1M1vKnLAAHE5AAAeQ5HU1VCm18k/AACPfQAABX2T1MvMpfnsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHCgAAAAAxnbHlml3ag9QAAOswAAYOyaGVhZAqcf2YAAAEcAAAANmhoZWEK9griAAABVAAAACRobXR4QNtY9AAAAfgAABSkbG9jYcJrHvoAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lYBSP0wABvoAAAAPgcG9zdP9tAGQAAcJgAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCj3rnLllfDzz1ABkIAAAAAADE8BEuAAAAAOL2IGP6Jv3VCWEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJbvom/j4JYQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/ywUgAJEEeACNBh8ALAUUACAFrQCZBIYAfQYqAJQFEQCEB3UAlAZ0AI8FjQBVBKMAWwSkAF0EwwAsA6oAJAVpACYEcQAfBPkATwbzAGgG2wBfBlEAPQUoAC8EgwBKBEgAcwe8AEIGpAA/B/UAlAaeAHQFBgBcBC8AVQWoACEFHQBEBU4AfQZGACwFOwAgAxsAZAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACtwBQArcAUAUjAJwGKgB7A5oACAG/AGUBugA3Ac4ANQGjAEsDCwBtAxMAQwMAADUEWwA/BJoAXQLMAIoD/QCNBaoAjQHPAF4HrgBQAnQAbAJpAFUDmQArAvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwM5AFAC8wBQAvMAUAIDAFMCAwBQA1wAZwL1AEwC9QCCAvUAPQL1ADcC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcDOQBQAvMAUALzAFACAwBTAgMAUAS1AGIGbgAjBr8AmQiVAJQGOwAjBpsAfQSMAFwF6gAjBC0AKgSbACQFYgBPBX4AKwXkAG4D4wBFCCkAkAUIAG8FFACWBjcAXAbeAFYG0ABeBqwAXASTAGEFigCmBN4APwSAAJwEnQA7CFIAYQIy/6cEkQBlBIAAjwQSAD0EKAB9BA4AJQJRAJwCjgBkAekARwUZACsErQAaBL0AKwcoACsHKAArBQ8AKwa3AEkAAAAACDAAWQg1AFwC9QA9AvUAggL1AEwEHQBPBB0AVwQdADgEHQBfBB0AZgQdADMEHQA9BB0AQwQdAJgEHQBYBCsAQQQ+AAYEXAATBgkAJwR5AAgEiABpBD8AJQQ3AD8EZAB1BL0ATQRrAHYEvQBOBNwAdgYFAHYDtwB2BF4AdgPWACYB/gCGBN0AdgSnAFYDyAB2BDcAPwRoADoDpQAKA7wAdgR5AAgEvQBOBHkACAOdAEYE2QB2BB4ARAWmAE8FWABPBOAAXgWSACMEgABPB1YAJAdYAHYFmQAlBNgAdgRyAHYFXgAnBkUAGwRGAEME4gB2BF0AdgTLACQETAAfBWIAdgSNAEMGhAB2Bw4AdgVhAAkGFgB2BGcAdgSAAD0GjwB2BIQAQgQoAAsGowAbBKAAdgUNAHYFdAAhBfgATgRWAAYExAATBpcAIwSNAEMEjQB2BgAADgTOAE0ERwBDBL0ATgRoADoD9ABFCC0AdgT0ACgC9QA3AvUANgL1AFAC9QBOAvUANwL1AEsC9QBHA7YAjQKuAJgD4AB2BDoADAS2AFYFQQCZBSgAmQQwAIEFNQCZBCgAgQR6AHYEgABPBGAAdgSaAAgB/gCQA6EAdQAA/J4D9wB6A/r/UQQLAHkD+gB5A7wAdgOdAHUDnQB1AvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwVzAGkFngBpBX8AmQXZAGkF2gBpBCgAlgSCAGsEWAAPBLsANARrAGcELgBCA6EAdgG6AGIGmABOBK8AbgIM/6cEjAA4BIwAaASMACwEjABiBIwAXwSMADQEjABsBIwAWQSMAGcEjADmAib/rgIl/64CFwCQAhf/+gIXAJAEYAB2BOYAYAQwADkEiAB9BD4ATwSVAE4EkQBOBJ0ASQSSAH0EmgBOBEkAUQSJAFAEWQA0A60AYQUMAF8DxAAFBkb/7AQHAHYEvQBOBQ4ANATcAHYB/QAAArgAUAVXABcFVwAXBJD/9QTgAC0Cqv/rBU4AEQVOABEFTgARBU4AEQVOABEFTgARBU4AEQU5AGYEhQCUBIUAlASFAJQEhQCUAkT/ywJEAKUCRP/KAkT/vgWtAJQFgwBlBYMAZQWDAGUFgwBlBYMAZQU8AIAFPACABTwAgAU8AIAE4wAIBFAAVgRQAFYEUABWBFAAVgRQAFYEUABWBFAAVgQtAE4ESQBRBEkAUQRJAFEESQBRAhf/tQIXAJACF/+zAhf/qAR0AHoEigBOBIoATgSKAE4EigBOBIoATgRzAHcEcwB3BHMAdwRzAHcD6wAMA+sADAVOABEEUABWBU4AEQRQAFYFTgARBFAAVgU5AGYELQBOBTkAZgQtAE4FOQBmBC0ATgU5AGYELQBOBTkAlAUYAFAEhQCUBEkAUQSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBXMAawSJAFIFcwBrBIkAUgVzAGsEiQBSBXMAawSJAFIFrQCUBHIAegJE/7QCF/+dAkT/0QIX/7sCRP/dAhf/xgJEABgCCv//AkQAnwa1AKUECwB8BHIALwIl/64FDgCUBCwAfQRSAJQCCgCMBFIAlAIKAFkEUgCUAqAAjARSAJQC5gCMBa0AlAR0AHoFrQCUBHQAegWtAJQEdAB6BHT/owWDAGUEigBOBYMAZQSKAE4FgwBlBIoATgUJAJQC1AB9BQkAlALUAFIFCQCUAtQANwTYAEsEHgBJBNgASwQeAEkE2ABLBB4ASQTYAEsEHgBJBNgASwQeAEkE4AAtAqoACgTgAC0CqgAKBOAALQLSAAoFPACABHMAdwU8AIAEcwB3BTwAgARzAHcFPACABHMAdwU8AIAEcwB3BTwAgARzAHcHCwAvBfAAIwTjAAgD6wAMBOMACATTAFAEBgBRBNMAUAQGAFEE0wBQBAYAUQd+//wGwgBIBYEAaQSGAE4Eev+lBHr/pQQ/ACUEmgAIBJoACASaAAgEmgAIBJoACASaAAgEmgAIBIAATwPgAHYD4AB2A+AAdgPgAHYB/v+pAf4AhgH+/6cB/v+cBNwAdgS9AE4EvQBOBL0ATgS9AE4EvQBOBIgAaQSIAGkEiABpBIgAaQQ+AAYEmgAIBJoACASaAAgEgABPBIAATwSAAE8EgABPBHoAYQPgAHYD4AB2A+AAdgPgAHYD4AB2BKcAVgSnAFYEpwBWBKcAVgTdAHYB/v+RAf7/rwH+/7oB/gAXAf4AfQPWACYEXgB2A7cAdgO3AHYDtwB2A7cAdgTcAHYE3AB2BNwAdgS9AE4EvQBOBL0ATgRkAHUEZAB1BGQAdQQ3AD8ENwA/BDcAPwQ3AD8EPwAlBD8AJQQ/ACUEiABpBIgAaQSIAGkEiABpBIgAaQSIAGkGCQAnBD4ABgQ+AAYEKwBBBCsAQQQrAEEFTgARBOn/QgYR/0oCqP9OBZf/tAVH/0EFbf/CAqX/hQVOABEFDQCUBIUAlATTAFAFrQCUAkQApQUOAJQG/wCUBa0AlAWDAGUFGwCUBOAALQTjAAgFDQAmAkT/vgTjAAgEhABWBGUAYgSGAH0CpQCjBF0AfwSaAI0EigBOBMEAkwP4ABYEWQA0AqX/wwRdAH8EigBOBF0AfwaUAGUEhQCUBHQAmQTYAEsCRAClAkT/vgRyAC8FKACZBQ4AlAULADIFTgARBQ0AlAR0AJkEhQCUBaYAkgb/AJQFrQCUBYMAZQWuAJkFGwCUBTkAZgTgAC0FDQAmBFAAVgRJAFEEkgCEBIoATgR/AH0ELQBOA+sADAQGAB8ESQBR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KzQAAAAAABEA0gADAAEECQAAALIAAAADAAEECQABABoAsgADAAEECQACAA4AzAADAAEECQADABoAsgADAAEECQAEABoAsgADAAEECQAFACQA2gADAAEECQAGABoA/gADAAEECQAHAEABGAADAAEECQAIAAwBWAADAAEECQAJACYBZAADAAEECQALABQBigADAAEECQAMABQBigADAAEECQANASIBngADAAEECQAOADYCwAADAAEECQAQAAwC9gADAAEECQARAAwDAgADAAEECQAZAAwC9gBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABUAGgAZQAgAFIAbwBiAG8AdABvACAAUAByAG8AagBlAGMAdAAgAEEAdQB0AGgAbwByAHMAIAAoAGgAdAB0AHAAcwA6AC8ALwBnAGkAdABoAHUAYgAuAGMAbwBtAC8AZwBvAG8AZwBsAGUAZgBvAG4AdABzAC8AcgBvAGIAbwB0AG8ALQBjAGwAYQBzAHMAaQBjACkAUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBSAGUAZwB1AGwAYQByAFYAZQByAHMAaQBvAG4AIAAzAC4AMAAxADsAIAAyADAAMgA0AFIAbwBiAG8AdABvAC0ATQBlAGQAaQB1AG0AUgBvAGIAbwB0AG8AIABpAHMAIABhACAAdAByAGEAZABlAG0AYQByAGsAIABvAGYAIABHAG8AbwBnAGwAZQAuAEcAbwBvAGcAbABlAEMAaAByAGkAcwB0AGkAYQBuACAAUgBvAGIAZQByAHQAcwBvAG4ARwBvAG8AZwBsAGUALgBjAG8AbQBUAGgAaQBzACAARgBvAG4AdAAgAFMAbwBmAHQAdwBhAHIAZQAgAGkAcwAgAGwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAUwBJAEwAIABPAHAAZQBuACAARgBvAG4AdAAgAEwAaQBjAGUAbgBzAGUALAAgAFYAZQByAHMAaQBvAG4AIAAxAC4AMQAuACAAVABoAGkAcwAgAGwAaQBjAGUAbgBzAGUAIABpAHMAIABhAHYAYQBpAGwAYQBiAGwAZQAgAHcAaQB0AGgAIABhACAARgBBAFEAIABhAHQAOgAgAGgAdAB0AHAAcwA6AC8ALwBvAHAAZQBuAGYAbwBuAHQAbABp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ANkAEwDaAA4A3QAOAN4ACwDh/+UA5v/mAOf/9ADtABIA8gAPAPb/5wD5/+gA/v/3AQQADwENAA8BGf/mATMADgE5/+YBOv/nAUMADgFF/+YBR//lAUj/6AFJ/+UBSv/oAUz/5AFQAA4BUQAPAV0ADgFi/+YBZP/mAWYADgFs/+YBbf/nAW8ADgFwAA8D0AALA9EADwPc/+YD3QAOBAX/5gQN/+YEEAAOBBMADwQVAA8EHgAOBC4ACwQwAAsEMgALBDT/5QQ1/+gEkv/mBJT/5QSV/+gEof/mAAEA+gAIAAoAFAAVABYAFwAYABkAGgAbABwAHQAlACYAJwAoACkAKgArACwALQAuAC8AMAAxADIAMwA0ADUANgA3ADgAOQA6ADsAPAA9AD4AZQBnAIEAgwCEAIwAjwCRAJMAsQCyALMAtAC1ALYAtwC4ALkAugDSANMA1ADVANYA1wDYANkA2gDbANwA3QDeAN8A4ADhAOIA4wDkAOUA5gDnAOgA6QEvATMBNQE3ATkBOwFBAUMBRQFJAUsBTAFYAVkBsQG3AbwBvwKVApYCmAKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKmAqcCqAKpAqoCqwKsAq0CrgKvArACsQKyArMCtALRAtMC1QLXAtkC2wLdAt8C4QLjAuUC5wLpAusC7QLvAvEC8wL1AvcC+QL7Av0C/gMAAwIDBAMGAwgDCgMMAw4DEAMTAxUDFwMZAxsDHQMfAyEDIwMlAycDKQMrAy0DLwMxAzMDNQM3AzkDOwM9Az8DQANCA0QDRgNIA6EDogOjA6QDpQOmA6cDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAPIA8kDygPLA8wDzQPOA88D0APRA9ID0wPUA9UD1gPXA9gD2QPaA9sD3APdA+4D8APyA/QECQQLBA0EIgQoBC4EmASdBKEFIgUkAAMB7//1AfD/7gOb//UAAwAN/+YAQf/0AGH/7wADAEr/7gBb/+oB8P/wAAMAW//BAf//5gJL/+gAAwBKABEAWAAyAFsAEQADAFv/5QH//+sCS//tADsAsgAQANL/4ADT/+gA1AAQANb/4ADZABQA3QAQAOH/4QDm/+AA7QATAPIAEAD5/+ABBAAQAQj/6AENABABF//oARn/4AEb/+gBHf/oAR//6AEh/+gBOf/gAUH/6AFF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/+ID4v/iA+T/5gPl/+8D5//iA+z/4gPt/+YD9v/KA/f/ygP6/8oEAv/iBAX/1AQG/+YEDf/TBA7/5gQQ//QEEf/vBB7/9AQf/+8EI//iBCX/4gQu/+0EL//mBDD/7QQx/+YEMv/tBDP/5gQ0/+EEN//iBJL/0gSU/+EEl//iBKH/0wApAEf/7ABI/+wASf/sAEv/7ABV/+wAlP/sAJn/7AK8/+wCvf/sAr7/7AK//+wCwP/sAtj/7ALa/+wC3P/sAt7/7ALg/+wC4v/sAuT/7ALm/+wC6P/sAur/7ALs/+wC7v/sAvD/7ALy/+wEUv/sBFT/7ARW/+wEWP/sBFr/7ARc/+wEXv/sBGD/7AR0/+wEdv/sBHj/7AR8/+wEt//sBMT/7ATG/+wANgAGABAACwAQAA0AFABBABIAR//oAEj/6ABJ/+gAS//oAFX/6ABhABMAlP/oAJn/6AGEABABhQAQAYcAEAGIABABiQAQArz/6AK9/+gCvv/oAr//6ALA/+gC2P/oAtr/6ALc/+gC3v/oAuD/6ALi/+gC5P/oAub/6ALo/+gC6v/oAuz/6ALu/+gC8P/oAvL/6AP2ABAD9wAQA/oAEARS/+gEVP/oBFb/6ARY/+gEWv/oBFz/6ARe/+gEYP/oBHT/6AR2/+gEeP/oBHz/6AS3/+gExP/oBMb/6ABKAEf/tABI/7QASf+0AEv/tABMABQATwAUAFAAFABT/3oAVf+0AFf/ZABbAAsAlP+0AJn/tAHb/2QCvP+0Ar3/tAK+/7QCv/+0AsD/tALG/3oCx/96Asj/egLJ/3oCyv96Atj/tALa/7QC3P+0At7/tALg/7QC4v+0AuT/tALm/7QC6P+0Aur/tALs/7QC7v+0AvD/tALy/7QDFP96Axb/egMY/3oDIP9kAyL/ZAMk/2QDJv9kAyj/ZARS/7QEVP+0BFb/tARY/7QEWv+0BFz/tARe/7QEYP+0BGb/egRo/3oEav96BGz/egRu/3oEcP96BHL/egR0/7QEdv+0BHj/tAR6/3oEfP+0BLf/tAS7/3oExP+0BMb/tATIABQEygAUBMwAFATZ/2QAAQD0AAQABgALAAwAJQAnACgAKQAqAC8AMAAzADQANQA2ADgAOgA7ADwAPQA+AD8ASQBKAEwATwBRAFIAUwBWAFgAWgBbAF0AXwCWAJ0AsgGEAYUBhwGIAYkB8gH0AfUB9wH6AgUCSgJNAl8CYQJiApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqsCrAKtAq4CrwK0Ar0CvgK/AsACxQLGAscCyALJAsoCzwLQAtEC0wLVAtcC2QLbAt0C3wLhAuIC4wLkAuUC5gLnAugC6QLqAvQDAgMEAwYDCAMKAw0DDwMRAxIDEwMUAxUDFgMXAxgDGgMcAx4DKQMrAy0DOwM9Az4DPwNAA0IDRANKA0sDTANNA04DTwNQA1EDUgNTA14DXwNgA2EDYgNoA2kDagNvA4EDggODA4QDiAOJA4oDkwPuA/AD8gP0A/UD9gP3A/oD/AP9BDkEOwQ9BD8EQQRDBEUERwRJBEsETQRPBFEEUgRTBFQEVQRWBFcEWARZBFoEWwRcBF0EXgRfBGAEZQRmBGcEaARpBGoEawRsBG0EbgRvBHAEcQRyBHoEiwSMBI0EjgSPBJAEswS0BLYEugS7BL0EwwTFBMgEyQTLBM0E0ATSBNME1ATXBNoE3QTeBN8E4AThBOMAAQA1AAYACwCWALEAsgCzALQAvQDBAMcBhAGFAYcBiAGJAgUCBgIHA6EDogOjA6QDpQOmA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDuwO/A8EDxQP2A/cD+gTlBOYE6gTtBPME+ACnABD/BwAS/wcAJf9OAC7/DQA4ABQARf/eAEf/6wBI/+sASf/rAEv/6wBT/+sAVf/rAFb/5gBZ/+oAWv/oAF3/6ACU/+sAmf/rAJv/6gCy/04Bhv8HAYr/BwGO/wcBj/8HAgX/wAJN/8ACmv9OApv/TgKc/04Cnf9OAp7/TgKf/04CoP9OArX/3gK2/94Ct//eArj/3gK5/94Cuv/eArv/3gK8/+sCvf/rAr7/6wK//+sCwP/rAsb/6wLH/+sCyP/rAsn/6wLK/+sCy//qAsz/6gLN/+oCzv/qAs//6ALQ/+gC0f9OAtL/3gLT/04C1P/eAtX/TgLW/94C2P/rAtr/6wLc/+sC3v/rAuD/6wLi/+sC5P/rAub/6wLo/+sC6v/rAuz/6wLu/+sC8P/rAvL/6wMA/w0DFP/rAxb/6wMY/+sDKQAUAysAFAMtABQDMP/qAzL/6gM0/+oDNv/qAzj/6gM6/+oDPv/oA03/wANO/8ADT//AA1D/wANR/8ADUv/A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ABsAUQBUABwAVgBWACAAWgBaACEAXABeACIAigCKACUAlgCWACYAsgCyACcBhAGFACgBhwGJACoB8gHyAC0B9wH3AC4B+gH7AC8CBQIFADECSgJKADICTQJNADMCXwJfADQCYQJiADUClQKWADcCmAKYADkCmgLAADoCxQLKAGECzwLfAGcC4QLqAHgC8wL1AIIC9wL3AIUC+QL5AIYC+wL7AIcC/QL9AIgDAAMAAIkDAgMCAIoDBAMEAIsDBgMGAIwDCAMIAI0DCgMKAI4DDAMYAI8DGgMaAJwDHAMcAJ0DHgMeAJ4DKQMpAJ8DKwMrAKADLQMtAKEDLwMvAKIDMQMxAKMDMwMzAKQDNQM1AKUDNwM3AKYDOQM5AKcDOwM7AKgDPQNFAKkDSgNTALIDXgNiALwDaANqAMEDbwNvAMQDgAOEAMUDiAOKAMoDkwOTAM0D7gPuAM4D8APwAM8D8gPyANAD9AP3ANED+gP+ANUEOQRhANoEYwRjAQMEZQRyAQQEegR6ARIEfQR9ARMEfwR/ARQEiwSQARUEsgS2ARsEuAS4ASAEugS7ASEEvQS9ASMEwQTDASQExQTFAScExwTJASgEywTLASsEzQTNASwEzwTVAS0E1wTXATQE2gTaATUE3AThATYE4wTkATwAAgCgAAYABgAEAAsACwAEABAAEAAIABEAEQALABIAEgAIALIAsgAbANIA0gAKANMA0wADANQA1AANANYA1gAKANoA2gAGAN0A3QANAN4A3gAOAOEA4QARAOwA7AABAO4A7gAHAPAA8QABAPIA8gASAPMA9QABAPcA9wACAPgA+AABAPkA+QAUAPoA+wABAP4A/gABAQABAAABAQMBAwACAQQBBAASAQUBBQABAQgBCAADAQ0BDQAQARcBFwADARgBGAATARkBGQAXARoBGgAFARsBGwADAR0BHQADAR4BHgACAR8BHwADASEBIQADASIBIgACASsBKwABATMBMwAGATQBNAAHATYBNgABATkBOQAKATwBPAABAT4BPgABAUEBQQADAUIBQgACAUMBQwAGAUQBRAAHAUUBRQAKAUcBRwARAUgBSAAUAVABUAANAVEBUQASAVMBUwABAVUBVQABAVcBVwABAVwBXAABAV0BXQAGAV4BXgAHAWABYQACAWYBZgANAWoBagADAWsBawACAW8BbwANAXABcAASAYEBggALAYQBhQAEAYYBhgAIAYcBiQAEAYoBigAIAY4BjwAIAgUCBQAZAg4CDgAMAg8CDwAJAhICEgAMAhYCFgAPAicCJwAPAioCKgAMAisCKwAJAiwCLAAWAi0CLQAPAi4CLgAMAjQCNAAJApQClAALA80DzQAcA9AD0AAOA9ED0QAQA9gD2AADA9sD2wADA9wD3AAKA90D3QAGA94D3gAVA98D3wACA+AD4AABA+ED4QATA+ID4gABA+MD4wACA+QD5AAFA+UD5QAHA+YD5gACA+cD5wABA+gD6AAdA+wD7AABA+0D7QAFA/YD9wAEA/oD+gAEBAEEAQACBAIEAgABBAUEBQAXBAYEBgAFBAcEBwACBAgECAADBAsECwADBAwEDAACBA0EDQAYBA4EDgAFBBAEEAAGBBEEEQAHBBMEEwAQBBQEFAAVBBUEFQAQBBYEFgAVBBoEGgACBBwEHQACBB4EHgAGBB8EHwAHBCMEIwABBCUEJQABBCYEJgADBCcEJwATBCgEKAADBCkEKQACBCoEKgADBCsEKwATBC4ELgAOBC8ELwAFBDAEMAAOBDEEMQAFBDIEMgAOBDMEMwAFBDQENAARBDUENQAUBDcENwABBDgEOAACBJIEkgAKBJQElAARBJUElQAUBJcElwABBKEEoQAYBKcEpwALBQUFBQAaBQwFDAAJBQ8FDwAJBRAFEAAMBREFEQAPBRQFFAAJBRUFFQAWA1IolCVAJcQhRCIWIhwl6BziKKwlWCT+JQQdMCUQJgAhUCOKJXAhMiE4JjAmHiZIHa4mWiHOJnIlKCdWJ1wlxCaQGgYZcCaiJZomuiEmJtIknibqJvAnDib8JyYhniTgJOYk1CTaJz4gxiigJUwl0Bl2IiIiKCX0JJgouCVkGXwZgh08JRwmDCTCI5YlfCF6IcImPCYqJlQlfCZmIdomfiU0Jn4ljiFcJpwZiBmOJq4lpibGIW4m3h5uJA4luCcaJwgnMiGqJOwk8iRuJJInSh7sIkYAABmUAAAiTAAAGZoAABmgJJgZphmsKNwlfCDwIPYZshm4Gb4ZxCZyJSgmfiU0GcoZ0BnWGdwZ4hnoGe4Z9CPwI94j/CPqJFAkRCRcJbgb2gAAImoidiTIAAAAACDAINIg2CT4AAAg3iDkIOoAAAAAAAAZ+gAAIQgAACH4AAAhDiEUJb4AABoAAAAaBgAAGgwAACIKIo4aEgAAAAAaGBoeAAAkqgAAGiQAABoqAAAaMAAAGjYAABo8AAAkzgAAGkIAABpIAAAiECKaGk4AABpUAAAaWhpgGmYAABpsAAAacgAAJKQAABp4AAAafgAAJLAAABqQAAAahAAAGooAACIiAAAakAAAGpYAABqcAAAaogAAGqgAABquAAAixAAAIsoAABq0AAAaugAAGsAAABrGAAAazBrSGtga3hrkAAAa6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa8BuwGvYa/AAAAAAAAAAAAAAAAAAAAAAbAgAAAAAktgAAJLwAAAAAAAAAAAAAAAAAAAAAAAAAABsIImQAAAAAAAAAABsOGxQbGhsgGyYAABs+G0QbLBsyGzgdrhs+G0QAAAAAKAQnaCg6KI4oECgWG0ooghtQJTQgliCcKAQoCihqJ5InbiBOG1YbXCf4J/4n8ihkJ3QneifmJ+wgEiAYJ24nvCeqJ7AnmCekKCgoLh/KH8QbYhtoJ9QAAAAAJ2IbbgAAG3QAACgcKCIbegAAAAAbgBuGAAAbjAAAG5IAABuYAAAbngAAG6QAABuqG7AbtgAAAAAoQBu8G8IbyAAAKNAn2hvOG9QmPCYqHwoflCjEKDQn1CfOKMQnyBvaIcIb2hvgKNwlfCjcG+Yo3CV8G+wb8hv4KFgb/hwEJ/IoZBwKHBAndCd6Jegc4iXoHOImDCTCJtIknibeHm4cFiVAHBYlQCMwJUAcHCVAIjolQBwiJUAolCVAIhYcKCHgJVgh4CVYI2wlWCEaJVgcLiVwHC4lcBw0JXAhLCVwHDolKBxAJ1wcQCdcI6gnXBxGJ1wiuCdcHEwm8BxMJvAcUibwHFgm8CGwJNocXiVMHF4lTCM2JUwcZCVMIkAlTBxqJUwooCVMIiIccCHsJWQh7CVkI3glZCFiJWQcdiV8HHYlfBx8JXwhdCV8HIIlNCUuJY4lLiWOI7QljhyIJY4iviWOHI4luByOJbgclCW4HJoluCG2JJIi+iSSHKAlQBymJUwjPCVAI0glTCiUJUAooCVMHKwiHByyIigcuCIcHL4iKBzEIhwcyiIoHNAiHBzWIigc3BziJfQkmBzoJVgc7iVkIlIlWCJYJWQc9CVYHPolZCisJVgouCVkHQAlWB0GJWQdDCUQHRIlHB0YJRAdHiUcHSQlEB0qJRwdMB02HTwlHB1CIVAdSCTCHU4lcB1UJXwdWiVwHWAlfB1mJXAdbCV8I4odciOWJXwdeCVwHX4hOB2EAAAmMB2KJjwdkB2WHa4dnCV8JkgdoiZUHagmSB2uJlQlfCZIHa4mVCV8JSIlKCUuJTQmch20Jn4duh3AJSgdxiU0Jn4lNB3MJ1wd0iWOHdgnXB3eJY4d5CdcHeoljh3wJZod9iWmJqId/CauHgIeCCWaHg4lph4UISYeGiFuHiAhJh4mIW4muh4sJsYeMia6Hjgmxh4+HkQhJh5KIW4m0h5QJt4eVibSHlwm3h5iHmgknibeHm4edCbwHnoluB6AJvAehiW4Howm8B6SJbgemCbwHp4luB6kJvAeqiW4Juom8CQOJbgesCGeHrYhqh68JNoewiSSIMwk2h7IIMYezh7sHtQgxh7aHuwe4CDGHuYe7B7yAAAe+AAAHv4AAB8EAAAfCh+UHwoflCgEKAofdifIH3YnyB98J8gfECfIHxYnyB8cJ8goxCfIKMQfIh8oJ9ofKCfaHy4n2ieGJ9ofNCekHzQnpB86J6QnniekH0AneiheKGQoXihkH0YoZB9MKGQfUihkH1ggnB9YIJwfXiCcH2QgnCiIKI4faifIH3AnyCjEJ8gfdig0H3woNB+CKDQfiCg0H44flB+aJ9ofoCfaH6Yn2ijQJ9ofrCfaH7IfxB+4H8Qfvh/EH8of0B/WKC4f3CekH+InpB/oJ6QnmB/uH/QnpB/6J7AnbiAAIAYgGCASIAwgEiAYIBIgGCAeJ3ondCAkIConeiAwKGQgNihkIDwoZCe2IE4nbiBCIEggTiBUJ5IgWieSKGogYCBmJ5IoBCBsILooCigEIHIgeCCcIH4gnCCEIJwgiiCcIJAgnCCWIJwgoiiCIKgojieAKI4gridoILQnaCC6J2golCVAKKwlWCYAIVAjiiVwJ1YnXCTUJNoAACDAIOoAACiUJUAlxCFEKKwlWCc+IMYmACFQI4olcCYwJh4mWiHOJnIlKCdWJ1wlxCaQJtIkniTUJNok4CTmISwlcCDMJNog0iDYJPgAACDeIOQg6gAAIQgAACDwIPYmfiWOJxonCCD8AAAhAgAAJn4ljiEIAAAhDiEUIRolWCEgAAAmuiEmI4olcCEsJXAhMiE4JhgmHiE+AAAolCVAJcQhRCTIAAAorCVYIUoAACZaIc4mACFQJ1YnXCXEJpAiFiIcJtIkniTgJOYooCVMKLglZCFWAAAmfiWOIVwmnCIiIigkbiSSJOwk8iFiJWQhaAAAJsYhbiOWJXwhdCV8IXohwiGAAAAhhiSSIYwhniGSIaohjCGeIZIhqiGYIZ4hpCGqIbAk2iG2JJIhvCHCIcghziHUIdoolCVAKKAlTCHgJVgh5gAAIewlZCHyAAAh+AAAIf4AACIEAAAiCiKOIhAimiIWIhwiIiIoJNQk2iOKJXAiLgAAIjQAACOKJXAjPCVAI0glTCI6JUAiQCVMIkYAACJMAAAiUiVYIlglZCJeImQiaiJ2InAidiJ8AAAiggAAIogijiKUIpoioAAAIqYAACKsAAAisgAAIrgnXCK+JY4ixAAAIsoAACLQAAAi1gAAItwAACLiAAAi6AAAIu4kkiL0AAAi+iSSIwAAACMGJJIjDAAAIxIAACMYAAAjHgAAJfQkmCiUI0IooCNOIyQlQCMqJUwolCVAKKAlTCiUJUAooCVMKJQlQCigJUwolCVAKKAlTCMwI0IjNiNOKJQlQCigJUwolCVAKKAlTCiUJUAooCVMKJQlQCigJUwjPCNCI0gjTiisI3IouCRiI1QlWCNaJWQjYCVYI2YlZCisJVgouCVkKKwlWCi4JWQorCVYKLglZCisJVgouCVkI2wjciN4JGIjfiVwI4QlfCOKI5AjlijiJ1YjriZ+I7ojnCdcI6IljidWJ1wmfiWOJ1YnXCZ+JY4nVidcJn4ljidWJ1wmfiWOI6gjriO0I7ojwCPeI8Yj6iPAI94jxiPqI8wj3iPSI+oj2CPeI+Qj6iPwI/Yj/CQCJuokCCQOJBQkGibwJCAluCQmJEQkLCW4JCYkRCQsJbgkMiREJDgluCQ+JEQkSiW4JFAkViRcJGIk1CRoJG4kdCR6JNokgCSSJIYk2iSMJJIl9CSYJtIkniSkAAAkqgAAJLAAACTIAAAkzgAAAAAktgAAJLwmDCTCJMgAACTOAAAmPCYqJNQk2iTgJOYk7CTyJPgAACT+JQQlCiUQJRYlHCUiJSglLiU0JTolQCVGJUwlUiVYJV4lZCVqJXAldiV8JYInXCWIJY4llCWaJaAlpiWsJvAlsiW4Jb4AACXEJcol0CXWJegl3CX0JeIl6CXuJfQl+iYAJgYmDCYSJhgmHiYkJiomMCY2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BgIHZAYIBkoGkgYOBxwFxAXIBhQHKgXMBdAF1AZSBloGGgaeBzgF2AZ8BmIGIAdGBiYGagaqBiwF3AXgBeQF6Aa2BsIGzgbaBuYF7AACBwIA6wKMAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AJ+Ao4DSwKQAo8DSgH9Ao0CkgJsBO0E7gIEAgUE7wTwBPECBgTyAgcCCAIJBPcCCgIKBPgE+QILAgwCDQIUBQYFBwIVAhYCFwIYAhkCGgUKBQsFDQUQBRkCHAIdAh4CHwIgAiECIgIjAiQCJQIOAg8CEAIRAhICEwJVAicCKAIpAioFEwIrAi0CLgIvAjECMwKRA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDnQNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9BRoDfwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5AFHQORA5IDlAOTA5UDlgOXA5gDmQOaA5sDnAOeA58DoAUbBRwE5gTnBOgE6QTzBPYE9AT1BPoE+wT8BOoE6wTsBQUFCAUJBQwFDgUPAhsFEQT9BP4E/wUABQEFAgUDBQQFHgUfBSAFIQUSBRQFFQIyBRcCNAUYBRYCMAImAiwFJgUnAAIHAAD6AgECjAHrAeoB6QHoAecB5gHlAeQB4wHiAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AICAgMCjgKQAo8CkQKNApICbAIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIaAhsFGQIcAh0CHgIfAiACIQIiAiMCJAIlAlUCJwIoAikCKgUTAisCLQIuAi8CMAIxAjICMwI1AjYCOAI3A0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2A3cDeAN5A3oDewN8A30DfgUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDnQOeA58DoAUbBRwE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AT5BPoE+wT8BP0E/gT/BQAFAQUCAhkFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFHgUfBSAFIQUSBRQFFQUXAjQFGAUWAiYCLAUmBScAAQABAXsAAQABAEsAAQABALsAAQABADYAAQABABMAAQACAyMDJAACBuQG2AACBuYG2AABBu4AAQbwAAEG8gACAAEAFAAdAAAAAQACAC8ATwABAAMASQBLAoQAAgAAAAEG3gABAAYC1QLWAucC6ANqA3MAAQAGAE0ATgL8A+kD6wRkAAIAAwGUAZQAAAHfAeEAAQI5Aj8ABAACAAIAqACsAAEBJAEnAAEAAQAMACcAKAArADMANQBGAEcASABLAFMAVABVAAIAAgAUAB0AAAJvAngACgACAAYATQBNAAYATgBOAAQC/AL8AAUD6QPpAAMD6wPrAAIEZARkAAEAAgAEABQAHQAAAoACgAAKAosCiwALBKgErwAMAAIABgAaABoAAAAcABwAAQJkAmkAAgJtAm0ACAJvAngACQJ/An8AEwABABQAGgAcAmQCZQJmAmcCaAJpAm0CfwKAAosEqASpBKoEqwSsBK0ErgSvAAEF3gABBeAAAQXiAAEF5AABBeYAAQXoAAEF6gABBewAAQXuAAEF8AABBfIAAQX0AAEF9gABBfgAAQX6AAIF/AYCAAIGAgYIAAIGCAYOAAIGDgYUAAIGFAYaAAIGGgYgAAIGIAYmAAIGJgYsAAIGLAYyAAIGMgY4AAIGOAY+AAMGPgZEBkoAAwZIBk4GVAADBlIGWAZeAAMGXAZiBmgAAwZmBmwGcgADBnAGdgZ8AAMGegaABoYAAwaEBooGkAAEBo4GlAaaBqAABAacBqIGqAauAAUGqgawBrYGvAbCAAUGvAbCBsgGzgbUAAUGzgbUBtoG4AbmAAUG4AbmBuwG8gb4AAUG8gb4Bv4HBAcKAAUHBAcKBxAHFgccAAUHFgccByIHKAcuAAUHKAcuBzQHOgdAAAUHOgdAB0YHTAdSAAYHTAdSB1gHXgdkB2oABgdiB2gHbgd0B3oHgAAGB3gHfgeEB4oHkAeWAAYHjgeUB5oHoAemB6wABgekB6oHsAe2B7wHwgAGB7oHwAfGB8wH0gfYAAYH0AfWB9wH4gfoB+4ABwguB+YH7AfyB/gH/ggEAAcIJgf6CAAIBggMCBIIGAABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoClwKZArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL/AwEDAwMFAwcDCQMLAw0DDwMRAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM2AzgDOgM8Az4DQQNDA0UDRwNJA7kDugO7A7wDvgO/A8ADwQPCA8MDxAPFA8YDxwPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+8D8QPzA/UECgQMBA4EHAQjBCkELwSZBJoEngSiBSMFJQABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAHWAAIATQHXAAIAUAHYAAMASgBNAdkAAwBKAFAAAQABAEoB1QACAEoB2wACAFgB2gACAFgAAQADAEoAVwCVAAAAAQABAAEAAQAAAAMEwQACAK0C1wACAKkExwACAK0E1AACAKkEwgACAK0C2AACAKkEsQACAKkEyAACAK0EZAACAK0E1QACAKkDRgACAKkDSAACAKkDRwACAKkDSQACAKkEwAACAKkExQACAdQEwwACAK0EsAACAKkC8QACAdQD+wACAKkEzwACAK0DKQACAdQE2gACAK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-MediumItalic.ttf":"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BGH/0QQI//YGcP+qBHwACgTmAAoFSgBgBcoAPgQ/AGwEn/+iBmUAYgRqAFsEagAJBdIAOwSpADIEJgAOBJwANARGAAcD1gAeB+8ACQTO/9oC3v/1At7/8wLeAAsC3gAWAt4AJQLeAAUC3gA0A5kAkQKaAQgDwgAJBBr/hwSSADsFGQArBQAAKwQQABQFDQArBAkAFARXAAkEXgA5BD8ACQR2/5oB7wDoA4UBBAAA/ScD2QDcA9sAFgPsANwD3ADbA58ACQOBAQQDgQEFAugAiQLoAGYC6AB+AugAiQLoAJgC6AB4AugApwVKAGwFcwBrBVUAKwWsAG4FrgBtBAkAqwRfABwEN/+BBJf/0QRJ/9gEDgAxA4UBBQGt/7gGZgA7BIsARQH8/wAEc/+pBHP/2QRz/8kEcwATBHMATARzACIEcwBXBHMAMQRzADcEcwD4Ah//BAIf/wQCEQAjAhH/fAIRACMEPwAJBMEATAQQAFYEZgAQBB4ANgRyADcEbgAtBHoAMgRv/8gEdwA2BCgAOgRmAC4EOP+fA5sAqwTmACQDp//vBhX/fgPoAAkEmf/bBOcAIgS2AAkB+AAAAqMAQAUvACAFLwAgBG4AKwS6AJ0Clv/lBSX/owUl/6MFJf+jBSX/owUl/6MFJf+jBSX/owURAF8EYwAmBGMAJgRjACYEYwAmAjIANwIyADcCMgA3AjIANwWBACYFWQBiBVkAYgVZAGIFWQBiBVkAYgUUAFgFFABYBRQAWAUUAFgEvQChBC8AHAQvABwELwAcBC8AHAQvABwELwAcBC8AHAQNADcEKAA6BCgAOgQoADoEKAA6AgcAIwIHACMCBwAjAgcAIwRSAA0EZwA4BGcAOARnADgEZwA4BGcAOARRAEoEUQBKBFEASgRRAEoDzf+8A83/vAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAURAF8EDQA3BREAXwQNADcFEQBfBA0ANwURAF8EDQA3BREAJgT1ADgEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BUkAZgRm//kFSQBmBGb/+QVJAGYEZv/5BUkAZgRm//kFgQAmBFAADQIyADcCBwATAjIANwIHACMCMgA3AgcAIwIy/44B+v91AjIANwaCADcD7AAgBE8ABAIV/wQE5wAmBAwAEQQxACYB+gAgBDEAJgH6/6YEMQAmApAAIAQxACYC1gAgBYEAJgRSAA0FgQAmBFIADQWBACYEUgANBFIADQVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOATiACYCvgARBOIAJgK+/58E4gAmAr4AEQS0ACYD/wAbBLQAJgP/ABsEtAAmA/8AGwS0ACYD/wAbBLQAJgP/ABsEugCdApYAPwS6AJ0ClgA/BLoAnQK+AD8FFABYBFEASgUUAFgEUQBKBRQAWARRAEoFFABYBFEASgUUAFgEUQBKBRQAWARRAEoG1QC1BcIAeQS9AKEDzf+8BL0AoQSu/+UD6P/mBK7/5QPo/+YErv/lA+j/5gdF/40GjgAOBVcAFgRjACoEV/+WBFf/lgQeAGMEdv+aBHb/mgR2/5oEdv+aBHb/mgR2/5oEdv+aBF4AOQPCAAkDwgAJA8IACQPCAAkB7wAaAe8AGgHvABoB7wAaBLYACQSZADsEmQA7BJkAOwSZADsEmQA7BGYAOARmADgEZgA4BGYAOAQeAGwEdv+aBHb/mgR2/5oEXgA5BF4AOQReADkEXgA5BFcACQPCAAkDwgAJA8IACQPCAAkDwgAJBIMAPwSDAD8EgwA/BIMAPwS3AAkB7wAOAe8AGgHvABoB+f+XAe8AGgO5//MEPAAJA5sACQObAAkDmwAJA5sACQS2AAkEtgAJBLYACQSZADsEmQA7BJkAOwRDAAkEQwAJBEMACQQWAA8EFgAPBBYADwQWAA8EHgBjBB4AYwQeAGMEZgA4BGYAOARmADgEZgA4BGYAOARmADgF2gCLBB4AbAQeAGwEC//WBAv/1gQL/9YFJf+jBMf/ugXl/8IClv/GBW0AJgUh/7gFRAAeApAACQUl/6ME5gAmBGMAJgSu/+UFgQAmAjIANwTnACYGyQAmBYEAJgVZAGIE9AAmBLoAnQS9AKEE5v/AAjIANwS9AKEEYQA7BEMAKARjABECkABmBDwAVwR3ACEEZwA4BJ3/3gPaAGQEOP+fApAARAQ8AFcEZwA4BDwAVwZhAFIEYwAmBFIAKwS0ACYCMgA3AjIANwRPAAQFAAArBOcAJgTkAJkFJf+jBOYAJgRSACsEYwAmBXoAJQbJACYFgQAmBVkAYgWCACsE9AAmBREAXwS6AJ0E5v/ABC8AHAQoADoEbwAXBGcAOARd/8gEDQA3A83/vAPo/7oEKAA6A0EAFgP/ABsB+gAgAgcAIwHy/wIESgAiA83/vAbVALUFwgB5BtUAtQXCAHkG1QC1BcIAeQS9AKEDzf+8AUwAkQJ6AJ0EGwAzAhX/BAGtAI0GyQAmBsMADwUl/6MELwAcBGMAJgV6ACUEKAA6BG8AFwWFAHYFnwA/BPEAqAPuAHUINAA4CSYAYgS2AB8D+AAXBREAXwQNADcEvQChA+0AdQIyADcHbv+kBlX/sAIyADcFJf+jBC8AHAUl/6MELwAcB0X/jQaOAA4EYwAmBCgAOgViAEsEGQA0BBkANAdu/6QGVf+wBLYAHwP4ABcFegAlBG8AFwV6ACUEbwAXBVkAYgRnADgFUABhBGUANAVQAGEEZQA0BSAASAQZACAE5ACZA83/vATkAJkDzf+8BOQAmQPN/7wFWgDEBEMAbQbFACwGSAAjBF8AOAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHARjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoCMgA3AgcAIwIy//8B+v/jBVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFZgBcBHoANAVmAFwEegA0BWYAXAR6ADQFZgBcBHoANAVmAFwEegA0BRQAWARRAEoFFABYBFEASgV3AFgEwABKBXcAWATAAEoFdwBYBMAASgV3AFgEwABKBXcAWATAAEoEvQChA83/vAS9AKEDzf+8BL0AoQPN/7wEff/0BLoAnQPbAFQFWgDEBEMAbQRSACsDQQAWBewAVQSg//IEUAANBNsAJATbACQEUgAAA0H/xwUUAD8EJAAoBL0AoQPtAFIE5v/AA+j/ugRDACgERv/CBgQAfARpAA0EaQAmBGkADQRpAFgEfQBxBJEASwR9AIwEkQBzBUkAZgRm//kFgQAmBFIADQUl/6MELwAcBGMAJgQoADoCMv/PAgf/gAVZAGIEZwA4BOIAJgK+AAwFFABYBFEASgTI/4UE5gAmBF0AEAURACYEXwA4BREAJgRfADgFgQAm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BiYB7QAAAAcARACXAB7///+j/lgEqwWwBiYAJQAAAQcApAFrAAMAC7YDDgUBATlWACs0AP//ABz+XQPRBFAGJgBFAAABBwCkAKYACAALtgI7MQAATVYAKzQA//8AJv5fBLwFsAYmACkAAAEHAKQBMAAKAAu2BBACAABDVgArNAD//wA6/lUD8ARRBiYASQAAAQcApAD9AAAAC7YBLAAAAE1WACs0AP///5r+VQQBBI0GJgJNAAAABwCkAQ8AAP//AAn+XQP7BI0GJgJCAAAABwCkAOAACP///+P+nwHKBDoGJgCNAAABBwCtA0IACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAALIAAAADAAEECQABABoAsgADAAEECQACAAwAzAADAAEECQADACgA2AADAAEECQAEACgA2AADAAEECQAFACQBAAADAAEECQAGACYBJAADAAEECQAHAEABSgADAAEECQAIAAwBigADAAEECQAJACYBlgADAAEECQALABQBvAADAAEECQAMABQBvAADAAEECQANASIB0AADAAEECQAOADYC8gADAAEECQAQAAwDKAADAAEECQARABoDNAADAAEECQAZAAwDKABDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABUAGgAZQAgAFIAbwBiAG8AdABvACAAUAByAG8AagBlAGMAdAAgAEEAdQB0AGgAbwByAHMAIAAoAGgAdAB0AHAAcwA6AC8ALwBnAGkAdABoAHUAYgAuAGMAbwBtAC8AZwBvAG8AZwBsAGUAZgBvAG4AdABzAC8AcgBvAGIAbwB0AG8ALQBjAGwAYQBzAHMAaQBjACkAUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBJAHQAYQBsAGkAYwBSAG8AYgBvAHQAbwAgAE0AZQBkAGkAdQBtACAASQB0AGEAbABpAGMAVgBlAHIAcwBpAG8AbgAgADMALgAwADEAOwAgADIAMAAyADQAUgBvAGIAbwB0AG8ALQBNAGUAZABpAHUAbQBJAHQAYQBsAGkAYwBSAG8AYgBvAHQAbwAgAGkAcwAgAGEAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAEcAbwBvAGcAbABlAC4ARwBvAG8AZwBsAGUAQwBoAHIAaQBzAHQAaQBhAG4AIABSAG8AYgBlAHIAdABzAG8AbgBHAG8AbwBnAGwAZQAuAGMAbwBtAFQAaABpAHMAIABGAG8AbgB0ACAAUwBvAGYAdAB3AGEAcgBlACAAaQBzACAAbABpAGMAZQBuAHMAZQBkACAAdQBuAGQAZQByACAAdABoAGUAIABTAEkATAAgAE8AcABlAG4AIABGAG8AbgB0ACAATABpAGMAZQBuAHMAZQAsACAAVgBlAHIAcwBpAG8AbgAgADEALgAxAC4AIABUAGgAaQBzACAAbABpAGMAZQBuAHMAZQAgAGkAcwAgAGEAdgBhAGkAbABhAGIAbABlACAAdwBpAHQAaAAgAGEAIABGAEEAUQAgAGEAdAA6ACAAaAB0AHQAcABzADoALwAvAG8AcABlAG4AZgBvAG4AdABsAGkAYwBlAG4AcwBlAC4AbwByAGcAaAB0AHQAcABzADoALwAvAG8AcABlAG4AZgBvAG4AdABsAGkAYwBlAG4AcwBlAC4AbwByAGcAUgBvAGIAbwB0AG8ATQBlAGQAaQB1AG0AIABJAHQAYQBsAGkAYwADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQAB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A04ADgNPAA4DUAAOA1EADgNSAA4DUwAOA2gADgNpAA4DagAOA+7/7APw/+wD8v/sA/T/3QSL/90Ejf/dBI//3QTa/9kE3f/kBN//5ATh/+wAWwAG/8oAC//KANL/0gDW/9IA2v/0AN7/7QDh/+EA5v/UAOz/4gDu/+8A8P/iAPH/4gDz/+IA9P/iAPX/4gD2/8kA+P/iAPr/4gD7/+IA/v/RAQD/4gEF/+IBCf/lARn/1AEa/+YBIP/jASv/4gEz//QBNP/vATb/4gE5/9IBOv/EATz/4gE+/+IBQ//0AUT/7wFF/9IBR//hAUn/4QFT/+IBVf/iAVf/4gFc/+IBXf/0AV7/7wFi/9QBY//1AWT/5wFs/6oBbf/JAYT/ygGF/8oBh//KAYj/ygGJ/8oD0P/tA9z/0gPd//QD4P/iA+L/4gPk/+YD5f/vA+f/4gPs/+ID7f/mA/b/ygP3/8oD+v/KBAL/4gQF/9QEBv/mBA3/0wQO/+YEEP/0BBH/7wQe//QEH//vBCP/4gQl/+IELv/tBC//5gQw/+0EMf/mBDL/7QQz/+YENP/hBDf/4gSS/9IElP/hBJf/4gSh/9MAKQBH/+wASP/sAEn/7ABL/+wAVf/sAJT/7ACZ/+wCvP/sAr3/7AK+/+wCv//sAsD/7ALY/+wC2v/sAtz/7ALe/+wC4P/sAuL/7ALk/+wC5v/sAuj/7ALq/+wC7P/sAu7/7ALw/+wC8v/sBFL/7ARU/+wEVv/sBFj/7ARa/+wEXP/sBF7/7ARg/+wEdP/sBHb/7AR4/+wEfP/sBLf/7ATE/+wExv/sADYABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gBhAAQAYUAEAGHABABiAAQAYkAEAK8/+gCvf/oAr7/6AK//+gCwP/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/oAuT/6ALm/+gC6P/oAur/6ALs/+gC7v/oAvD/6ALy/+gD9gAQA/cAEAP6ABAEUv/oBFT/6ARW/+gEWP/oBFr/6ARc/+gEXv/oBGD/6AR0/+gEdv/oBHj/6AR8/+gEt//oBMT/6ATG/+gASgBH/7QASP+0AEn/tABL/7QATAAUAE8AFABQABQAU/96AFX/tABX/2QAWwALAJT/tACZ/7QB2/9kArz/tAK9/7QCvv+0Ar//tALA/7QCxv96Asf/egLI/3oCyf96Asr/egLY/7QC2v+0Atz/tALe/7QC4P+0AuL/tALk/7QC5v+0Auj/tALq/7QC7P+0Au7/tALw/7QC8v+0AxT/egMW/3oDGP96AyD/ZAMi/2QDJP9kAyb/ZAMo/2QEUv+0BFT/tARW/7QEWP+0BFr/tARc/7QEXv+0BGD/tARm/3oEaP96BGr/egRs/3oEbv96BHD/egRy/3oEdP+0BHb/tAR4/7QEev96BHz/tAS3/7QEu/96BMT/tATG/7QEyAAUBMoAFATMABQE2f9kAAEA9AAEAAYACwAMACUAJwAoACkAKgAvADAAMwA0ADUANgA4ADoAOwA8AD0APgA/AEkASgBMAE8AUQBSAFMAVgBYAFoAWwBdAF8AlgCdALIBhAGFAYcBiAGJAfIB9AH1AfcB+gIFAkoCTQJfAmECYgKVApYCmAKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKrAqwCrQKuAq8CtAK9Ar4CvwLAAsUCxgLHAsgCyQLKAs8C0ALRAtMC1QLXAtkC2wLdAt8C4QLiAuMC5ALlAuYC5wLoAukC6gL0AwIDBAMGAwgDCgMNAw8DEQMSAxMDFAMVAxYDFwMYAxoDHAMeAykDKwMtAzsDPQM+Az8DQANCA0QDSgNLA0wDTQNOA08DUANRA1IDUwNeA18DYANhA2IDaANpA2oDbwOBA4IDgwOEA4gDiQOKA5MD7gPwA/ID9AP1A/YD9wP6A/wD/QQ5BDsEPQQ/BEEEQwRFBEcESQRLBE0ETwRRBFIEUwRUBFUEVgRXBFgEWQRaBFsEXARdBF4EXwRgBGUEZgRnBGgEaQRqBGsEbARtBG4EbwRwBHEEcgR6BIsEjASNBI4EjwSQBLMEtAS2BLoEuwS9BMMExQTIBMkEywTNBNAE0gTTBNQE1wTaBN0E3gTfBOAE4QTjAAEANQAGAAsAlgCxALIAswC0AL0AwQDHAYQBhQGHAYgBiQIFAgYCBwOhA6IDowOkA6UDpgOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7sDvwPBA8UD9gP3A/oE5QTmBOoE7QTzBPgApwAQ/wcAEv8HACX/TgAu/w0AOAAUAEX/3gBH/+sASP/rAEn/6wBL/+sAU//rAFX/6wBW/+YAWf/qAFr/6ABd/+gAlP/r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HTwlRiY2IXQjuiWmIVYhXCZmJlQmfh26JpAh+CaoJV4njCeSJfomxhoAGXAm2CXQJvAhSicIJNQnICcmJ0QnMidcIcglFiUcJQolECd0IOoo4iWCJgYZdiJMIlImKiTOKPolmhl8GYIdSCVSJkIk+CPGJbIhniHsJnImYCaKJbImnCIEJrQlaiPYJcQhgCbSGYgZjibkJdwm/CGSJxQedCREJe4nUCc+J2gh1CUiJSgkpCTIJ4Ae8iJwAAAZlAAAInYAABmaAAAZoCTOGaYZrCkeJbIhFCEaGbIZuBm+GcQmqCVeJrQlahnKGdAZ1hncGeIlshnoGe4kJiQUJDIkICSGJHokkiXuG9QAACKUIqAk/gAAAAAg5CD2IPwlLgAAIQIhCCEOAAAAAAAAGfQAACEsAAAiIgAAITIhOCX0AAAZ+gAAGgAAABoGAAAiNCK4GgwAAAAAGhIaGAAAJOAAABoeAAAaJAAAGioAABowAAAaNgAAJQQAABo8AAAaQgAAIjoixBpIAAAaTgAAGlQaWhpgAAAaZgAAGmwAACTaAAAacgAAGngAACTmAAAakAAAGn4AABqEAAAaigAAGpAAABqWAAAanAAAGqIAABqoAAAargAAIu4AACL0AAAatAAAGroAABrAAAAaxgAAGswa0hrYGt4a5AAAGuoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGvAbqhr2GvwAAAAAAAAAAAAAAAAAAAAAGwIAAAAAJOwAACTyAAAAAAAAAAAAAAAAAAAAAAAAAAAbCCKOAAAAAAAAAAAbDhsUGxobIBsmAAAbRBtKGywbMhs4Gz4bRBtKAAAAACg6J54odijQKEYoTBtQKMQbViVqILogwCg6KEAopifIJ6QgbBtcG2IoLig0KCgooCeqJ7AoHCgiICogMCekJ/In4CfmJ84n2iheKGQf4h/cG2gbbigQAAAAACeYKQYAABt0AAAoUihYG3oAAAAAG4AbhgAAG4wAABuSAAAopgAAG5gAABueAAAbpBuqG7AAAAAAKHwbthu8G8IAACkSKEwbyBvOJnImYB8QH6woaihwKAQoCikGJ/4b1CHsG9Qb2ikeJbIpHhvgKR4lshvmG+wb8iiUG/gb/igoKKAcBBwKJ6onsCYeHO4mHhzuJkIk+CcIJNQnFB50HBAldhwQJXYjWiV2HBYldiJkJXYcHCV2KNYldiJAHCIiCiWOIgoljiOWJY4hPiWOHCglphwuJaYcNCWmIVAlphw6JV4cQCeSHEAnkiPeJ5IcRieSIuInkhxMJyYcTCcmHFInJhxYJyYh2iUQHF4lghxeJYIjYCWCHGQlgiJqJYIcaiWCKOIlgiJMHHAiFiWaIhYlmiOiJZohhiWaHHYlshx8JbIcgiWyIZglshyIJWocjiXEHI4lxCPqJcQclCXEIuglxByaJe4cmiXuHKAl7hymJe4h4CTIIyQkyBysJXYcsiWCI2YldiNyJYIo1iV2KOIlghy4IkYcviJSHMQiRhzKIlIc0CJGHNYiUhzcIkYc4iJSHOgc7iYqJM4c9CWOHPolmiJ8JY4igiWaHQAljh0GJZoo7iWOKPolmh0MJY4dEiWaHRglRh0eJVIdJCVGHSolUh0wJUYdNiVSHTwdQh1IJVIdTiF0HVQk+B1aJaYdYCWyHWYlph1sJbIdciWmHXglsiO6HX4jxiWyHYQlph2KIVwdkAAAJmYdliZyHZwdoh26HaglsiZ+Ha4mih20Jn4duiaKJbImfh26JoolsiVYJV4lZCVqJqgdwCa0HcYdzCVeHdIlaia0JWod2CeSHd4lxB3kJ5Id6iXEHfAnkh32JcQd/CXQHgIl3CbYHggm5B4OHhQl0B4aJdweICFKHiYhkh4sIUoeMiGSJvAeOCb8Hj4m8B5EJvweSh5QIUoeViGSJwgeXCcUHmInCB5oJxQebiOKJNQnFB50HnonJh6AJe4ehicmHowl7h6SJyYemCXuHp4nJh6kJe4eqicmHrAl7icgJyYkRCXuHrYhyB68IdQewiUQHsgkyCDwJRAeziDqHtQe8h7aIOoe4B7yHuYg6h7sHvIe+AAAHv4AAB8EAAAfCgAAHxAfrB8QH6woOihAHxYn/h8WJ/4flCf+Hxwn/h8iJ/4fKCf+KQYn/ihqHy4fNChMHzQoTB86KEwnvChMH0An2h9GJ9ofTCfaJ9Qn2h9SJ7AomiigKJoooB9YKKAfXiigH2QooB9qIMAfaiDAH3AgwB92IMAffCjQH4In/h+IJ/4pBif+H44ocB+UKHAfmihwH6AocB+mH6wfsihMH7goTB++KEwpEihMH8QoTB/KH9wf0B/cH9Yf3B/iH+gf7ihkH/Qn2h/6J9ogACfaJ84gBiAMJ9ogEifmJ6QgGCAeIDAgKiAkICogMCAqIDAgNiewJ6ogPCBCJ7AgSCigIE4ooCBUKKAgWiBsJ6QgYCBmIGwgcifIIHgnyCimIH4ghCfIKDogiiCQKEAoOiCWIJwgwCCiIMAgqCDAIK4gwCC0IMAguiDAIMYoxCDMKNAntijQINInniDYJ54g3ieeKNYldijuJY4mNiF0I7olpieMJ5IlCiUQAAAg5CEOAAAo1iV2JfohaCjuJY4ndCDqJjYhdCO6JaYmZiZUJpAh+CaoJV4njCeSJfomxicIJNQlCiUQJRYlHCFQJaYg8CUQIPYg/CUuAAAhAiEIIQ4AACEsAAAhFCEaI9glxCdQJz4hIAAAISYAACPYJcQhLAAAITIhOCE+JY4hRAAAJvAhSiO6JaYhUCWmIVYhXCZOJlQhYgAAKNYldiX6IWgk/gAAKO4ljiFuAAAmkCH4JjYhdCeMJ5Il+ibGIkAiRicIJNQlFiUcKOIlgij6JZohegAAI9glxCGAJtIiTCJSJKQkyCUiJSghhiWaIYwAACb8IZIjxiWyIZglsiGeIewhpAAAIaokyCGwIcghvCHUIbYhyCG8IdQhwiHIIc4h1CHaJRAh4CTIIeYh7CHyIfgh/iIEKNYldijiJYIiCiWOIhAAACIWJZoiHAAAIiIAACIoAAAiLgAAIjQiuCI6IsQiQCJGIkwiUiUKJRAjuiWmIlgAACJeAAAjuiWmI2YldiNyJYIiZCV2ImolgiJwAAAidgAAInwljiKCJZoiiCKOIpQioCKaIqAipgAAIqwAACKyIrgiviLEIsoAACLQAAAi1gAAItwAACLiJ5Ii6CXEIu4AACL0AAAi+gAAIwAAACMGAAAjDAAAIxIAACMYJMgjHgAAIyQkyCMqAAAjMCTIIzYAACM8AAAjQgAAI0gAACYqJM4o1iNsKOIjeCNOJXYjVCWCKNYldijiJYIo1iV2KOIlgijWJXYo4iWCKNYldijiJYIjWiNsI2AjeCjWJXYo4iWCKNYldijiJYIo1iV2KOIlgijWJXYo4iWCI2YjbCNyI3go7iOcKPojqCN+JY4jhCWaI4oljiOQJZoo7iWOKPolmijuJY4o+iWaKO4ljij6JZoo7iWOKPolmiOWI5wjoiOoI64lpiO0JbIjuiPAI8YpJCeMI+Qj2CPwI8wnkiPSJcQnjCeSI9glxCeMJ5Ij2CXEJ4wnkiPYJcQnjCeS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AAUEYQRhAAEEYwRjAAEEZgRmAAYEaARoAAYEagRqAAYEbARsAAYEbgRuAAYEcARwAAYEcgRyAAYEegR6AAYEfQR9AAcEfwR/AAcEiwSLAA0EjASMAAsEjQSNAA0EjgSOAAsEjwSPAA0EkASQAAsEsgSyAAEEswSzAAgEtAS0AAIEtQS1AAMEtgS2AAQEuAS4AAEEuwS7AAYEvQS9ABMEwQTBABsEwgTCABUExwTHAAEEyATIAAgEyQTJABgEywTLABgEzQTNAA8EzwTPAAEE0ATQAAgE0QTRAAEE0gTSAAgE1ATUABwE1QTVABUE1wTXABME2gTaABAE3ATcAAcE3QTdABkE3gTeAAsE3wTfABkE4ATgAAsE4QThABEE4wTjABQE5ATkABcAAgEJAAYABgANAAsACwANABAAEAASABEAEQAVABIAEgASACUAJQADACcAJwABACsAKwABAC4ALgAaADMAMwABADUANQABADcANwAQADgAOAATADkAOQAIADoAOgAZADsAOwARADwAPAAdAD0APQAOAD4APgAUAEUARQAEAEcASQACAEsASwACAFEAUgAJAFMAUwAHAFQAVAAJAFUAVQACAFcAVwAPAFkAWQAGAFoAWgAMAFwAXAAhAF0AXQAMAF4AXgAXAIMAgwABAJMAkwABAJQAlAACAJgAmAABAJkAmQACAJsAmwAGALIAsgAgAYEBggAVAYQBhQANAYYBhgASAYcBiQANAYoBigASAY4BjwASAdsB2wAPAe0B7QAYAe4B7gAeAe8B7wAbAfEB8QAKAfIB8gAcAfMB8wAWAfUB9QAFAfcB9wAFAf8B/wAFAgUCBQAfAksCSwAFAk0CTQALAl8CYAABAmICYwABApQClAAVApoCoAADAqECoQABAqsCrwABArACswAIArQCtAAOArUCuwAEArwCwAACAsUCxQAJAsYCygAHAssCzgAGAs8C0AAMAtEC0QADAtIC0gAEAtMC0wADAtQC1AAEAtUC1QADAtYC1gAEAtcC1wABAtgC2AACAtkC2QABAtoC2gACAtsC2wABAtwC3AACAt0C3QABAt4C3gACAuAC4AACAuIC4gACAuQC5AACAuYC5gACAugC6AACAuoC6gACAusC6wABAuwC7AACAu0C7QABAu4C7gACAu8C7wABAvAC8AACAvEC8QABAvIC8gAC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","Roboto-Regular.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcJMAAACWEdQT1OfMyOVAAHEpAAAeJBHU1VCm18k/AACPTQAABX2T1MvMpeDsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHCQAAAAAxnbHlm5vV0AgAAOswAAYOwaGVhZApif2cAAAEcAAAANmhoZWEKugrKAAABVAAAACRobXR4//meUgAAAfgAABSkbG9jYadOA+EAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lU8+D4wABvnwAAAOkcG9zdP9tAGQAAcIgAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCj9s4Wq9fDzz1ABsIAAAAAADE8BEuAAAAAOL2IGT6Gv3VCTEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJSvoa/koJMQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/sAqgaiAJAE9wB2BB4AZgWuACQFIQBGBWUAlwYCADAE8wAsAyEAcAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACNAAmAjQAJgVAAKIGPwCQA6YADQGaAGEBmgAwAZgAJAGaAE8C1ABpAtwAPALCACQEagBGBJAAVwKzAIsDxACUBVoAlAF/AFIHqgBEAmcAbAJnAFoDowA8Au8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgM4AFAC+ABQAvgAUAHxAFQB8QBQA2EAegLvAFEC7wB7Au8AQgLvAD8C7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoDOABQAvgAUAL4AFAB8QBUAfEAUASnAFsGVgAfBpEApwh2AKkF6wAfBisAjAR/AF8F2gAfBCMAKwR0ACEFSABdBU8AHwXoAHsDzgBoCDoAogUBAGgFGACYBiYAVAbXAGUGzwBkBmoAWgSQAGoFjwCpBK8ARgSTAKgExQA/CDoAYwIN/68EggBlBGQAmAQRAD0ELwCEBAgALAJMALUCkABvAgQAXQTzAD0EbwAgBIsAPQbUAD0G1AA9BO4APQabAF8AAAAACDQAWwg1AFwC7wBCAu8AewLvAFEEEABWBBAAYQQQAEIEDwByBBAAgQQQADEEEABPBBAATwQQAJkEEABjBCMASAQrAA4EVAAnBhUAMQRoABQEfQB1BCcAKQQgAEQESgCKBLwAWgRdAIsEvABgBOMAiwYCAIsDtQCLBFUAiwPPACwB6QCYBOQAiwSsAGQDzACLBCAARAQ0ADEDoQAOA68AiwRoABQEvABgBGgAFAOJAD4EzwCLA/AAQAVnAGEFFwBhBPMAdgVzACcEfABhB0IAKAdQAIsFdAApBM4AiwRaAIsFJQAuBgsAHwRAAEgE7ACLBE4AjATBACgEIAAjBSkAiwRqAD0GUQCLBqwAiwUdAAkF8QCLBE8AiwR8AEsGdwCLBIcAUAQSAAsGSAAfBHkAjAUKAIwFNwAkBcMAYARfAA4EqAAnBmIAJwRqAD0EagCLBcQAAgTLAF4EQABIBLwAYAQ0ADED5ABDCCIAiwSrACgC7wA/Au8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKA5cAjwK1AJ8D5gCLBDoAHwTEAGQFTACyBSQAsgQUAJMFPQCyBA8AkwSAAIsEfABhBFEAiwSGABQB/gCfA6UAggAA/KMD8ABvA/T/XQQPAGkD9QBpA68AiwOgAIIDnwCCAu8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgWCAH4FrwB+BZMAsgXgAH4F4wB+A9UAoASCAIMEWAAPBM8APgRrAGUELgBKA6UAhAGSAGgGpABgBLoAggH8/7YEfwA7BH8AcwR/ACIEfwB2BH8AdgR/ADYEfwB+BH8AXgR/AHEEfwD0Agb/tAIE/7QB+wCcAfv/+QH7AJwEUQCLBQAAeAQhADsEfgCMBDMAXQSTAFsEjABbBJ8AWgSOAIwEnABbBD4AXQR+AGEEcABaA3kAVwTWAGgDtQABBjoACQP5AIsEvABgBOMAMATjAIsB/AAAAjYAJgVeACUFXgAlBIYAAQTGADICnv/0BTgAHQU4AB0FOAAdBTgAHQU4AB0FOAAdBTgAHQU1AHgEjACpBIwAqQSMAKkEjACpAi3/3wItALECLf/qAi3/1QW1AKkFgQB3BYEAdwWBAHcFgQB3BYEAdwUwAIwFMACMBTAAjAUwAIwEzgAPBFoAbQRaAG0EWgBtBFoAbQRaAG0EWgBtBFoAbQQwAF0EPgBdBD4AXQQ+AF0EPgBdAfv/xAH7AJYB+//PAfv/ugRrAI0EkABcBJAAXASQAFwEkABcBJAAXARpAIkEaQCJBGkAiQRpAIkDyQAWA8kAFgU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU1AHgEMABdBTUAeAQwAF0FNQB4BDAAXQU1AHgEMABdBUAAqQUZAF8EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBXMAegR+AGEFcwB6BH4AYQVzAHoEfgBhBXMAegR+AGEFtQCpBGgAjQIt/7YB+/+bAi3/zQH7/7ICLf/sAfv/0QItABcB8v/6Ai0AqgaXALcD3ACOBGoANQIE/7QFBQCpBA4AjQRPAKIB8gCTBE8AqQHyAFYETwCpAogAnARPAKkCzgCcBbUAqQRrAI0FtQCpBGsAjQW1AKkEawCNBGv/uwWBAHcEkABcBYEAdwSQAFwFgQB3BJAAXATuAKkCtgCNBO4AqQK2AFME7gCpArYAZATAAFEEIQBfBMAAUQQhAF8EwABRBCEAXwTAAFEEIQBfBMAAUQQhAF8ExgAyAp4ACQTGADICngAJBMYAMgLGAAkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkHGQA9BgMAKwTOAA8DyQAWBM4ADwTLAFcD+ABZBMsAVwP4AFkEywBXA/gAWQd6//EGwgBPBYEAdwSJAFwEgP+9BID/vQQnACkEhgAUBIYAFASGABQEhgAUBIYAFASGABQEhgAUBHwAYQPmAIsD5gCLA+YAiwPmAIsB6f+8AekAjgHp/8cB6f+yBOMAiwS8AGAEvABgBLwAYAS8AGAEvABgBH0AdQR9AHUEfQB1BH0AdQQrAA4EhgAUBIYAFASGABQEfABhBHwAYQR8AGEEfABhBIAAiwPmAIsD5gCLA+YAiwPmAIsD5gCLBKwAZASsAGQErABkBKwAZATkAIsB6f+TAen/qgHp/8kB6QAFAekAhwPPACwEVQCLA7UAgwO1AIsDtQCLA7UAiwTjAIsE4wCLBOMAiwS8AGAEvABgBLwAYARKAIoESgCKBEoAigQgAEQEIABEBCAARAQgAEQEJwApBCcAKQQnACkEfQB1BH0AdQR9AHUEfQB1BH0AdQR9AHUGFQAxBCsADgQrAA4EIwBIBCMASAQjAEgFOAAdBPD/jAYZ/5oCkf+gBZX/+gUy/3YFZv/8Apj/mwU4AB0E/ACpBIwAqQTLAFcFtQCpAi0AtwUFAKkG/ACpBbUAqQWBAHcFDACpBMYAMgTOAA8FBAA6Ai3/1QTOAA8EhgBkBFEAZASJAJICmADDBF4AkAR0AJsEkABcBIkAmwPgACEEcABaApj/5AReAJAEkABcBF4AkAaXAHoEjACpBHMAsgTAAFECLQC3Ai3/1QRqADUFJACyBQUAqQUIAE0FOAAdBPwAqQRzALIEjACpBbUAsgb8AKkFtQCpBYEAdwW1ALIFDACpBTUAeATGADIFBAA6BFoAbQQ+AF0EngCdBJAAXAR+AIwEMABdA8kAFgP4ACoEPgBdA1wAmwQhAF8B8gCOAfv/ugHq/74EUwCdA8kAFgcZAD0GAwArBxkAPQYDACsHGQA9BgMAKwTOAA8DyQAWAWYAaAKQAIkEIAChAgT/tAGaADAG/ACpBwQAiwU4AB0EWgBtBIwAqQW1ALIEPgBdBJ4AnQWJAFoFmgBgBQsAFgQE//sIWQBcCUoAdwTAAFAEEABYBTUAeAQwAF0EzgAPBAMALwItALcHQwAbBiEAFgItALcFOAAdBFoAbQU4AB0EWgBtB3r/8QbCAE8EjACpBD4AXQWHAF4EOABjBDgAYwdDABsGIQAWBMAAUAQQAFgFtQCyBJ4AnQW1ALIEngCdBYEAdwSQAFwFcgBnBIwAXAVyAGcEjABcBWUAlAROAGQFCABNA8kAFgUIAE0DyQAWBQgATQPJABYFegCXBFoAaAbrALIGNgCeBIMAXwU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWv/JBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIz/7gQ+/7gEjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0CLQC3AfsAnAItAKQB8gCGBYEAdwSQAFwFgQB3BJAAXAWBAHcEkABcBYEARgSQ/8IFgQB3BJAAXAWBAHcEkABcBYEAdwSQAFwFfwBmBJMAXAV/AGYEkwBcBX8AZgSTAFwFfwBmBJMAXAV/AGYEkwBcBTAAjARpAIkFMACMBGkAiQWQAIwE8wCJBZAAjATzAIkFkACMBPMAiQWQAIwE8wCJBZAAjATzAIkEzgAPA8kAFgTOAA8DyQAWBM4ADwPJABYEoQBfBMYAMgPZACgFegCXBFoAaARzALIDXACbBjAAPwS+/90EaACNBQX/1AUF/9QEcwADA1z//QU4AAsEKP/TBM4ADwQDAC8FBAA6A/gAKgRRAGQEbAASBj8AkAR/AF4EfwBfBH8ANQR/AJoEkwCZBKcAhQSTAGQEpwCHBXMAegR+AGEFtQCpBGsAjQU4AB0EWgA6BIwAXwQ+ACkCLf8LAfv+8AWBAHcEkAAzBO4AVgK2/4wFMACMBGkAKwSn/zgE/ACpBH4AjAVAAKkEgwBfBUAAqQSDAF8FtQCp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AAAADwC6AAMAAQQJAAAAsgAAAAMAAQQJAAEADACyAAMAAQQJAAIADgC+AAMAAQQJAAMADACyAAMAAQQJAAQADACyAAMAAQQJAAUAJADMAAMAAQQJAAYAHADwAAMAAQQJAAcAQAEMAAMAAQQJAAgADAFMAAMAAQQJAAkAJgFYAAMAAQQJAAsAFAF+AAMAAQQJAAwAFAF+AAMAAQQJAA0BIgGSAAMAAQQJAA4ANgK0AAMAAQQJABkADACyAEMAbwBwAHkAcgBpAGcAaAB0ACAAMgAwADEAMQAgAFQAaABlACAAUgBvAGIAbwB0AG8AIABQAHIAbwBqAGUAYwB0ACAAQQB1AHQAaABvAHIAcwAgACgAaAB0AHQAcABzADoALwAvAGcAaQB0AGgAdQBiAC4AYwBvAG0ALwBnAG8AbwBnAGwAZQBmAG8AbgB0AHMALwByAG8AYgBvAHQAbwAtAGMAbABhAHMAcwBpAGMAKQBSAG8AYgBvAHQAbwBSAGUAZwB1AGwAYQByAFYAZQByAHMAaQBvAG4AIAAzAC4AMAAxADsAIAAyADAAMgA0AFIAbwBiAG8AdABvAC0AUgBlAGcAdQBsAGEAcgBSAG8AYgBvAHQAbwAgAGkAcwAgAGEAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAEcAbwBvAGcAbABlAC4ARwBvAG8AZwBsAGUAQwBoAHIAaQBzAHQAaQBhAG4AIABSAG8AYgBlAHIAdABzAG8AbgBHAG8AbwBnAGwAZQAuAGMAbwBtAFQAaABpAHMAIABGAG8AbgB0ACAAUwBvAGYAdAB3AGEAcgBlACAAaQBzACAAbABpAGMAZQBuAHMAZQBkACAAdQBuAGQAZQByACAAdABoAGUAIABTAEkATAAgAE8AcABlAG4AIABGAG8AbgB0ACAATABpAGMAZQBuAHMAZQAsACAAVgBlAHIAcwBpAG8AbgAgADEALgAxAC4AIABUAGgAaQBzACAAbABpAGMAZQBuAHMAZQAgAGkAcwAgAGEAdgBhAGkAbABhAGIAbABlACAAdwBpAHQAaAAgAGEAIABGAEEAUQAgAGEAdAA6ACAAaAB0AHQAcABzADoALwAvAG8AcABlAG4AZgBvAG4AdABsAGkAYwBlAG4AcwBlAC4AbwByAGcAaAB0AHQAcABzADoALwAvAG8AcABl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AWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoADwBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd/+gBH//oASH/6AE5/+ABQf/oAUX/4AFH/+EBSP/gAUn/4QFK/+ABTf/hAVAAEAFRABABWP/pAWL/3wFk/94BZgAQAWr/6AFs/98Bbv/yAW8AEAFwABAD0QAQA9j/6APb/+gD3P/gBAX/4AQI/+gEC//oBA3/3wQTABAEFQAQBCb/6AQo/+gEKv/oBDT/4QQ1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/9EEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR//FAEj/xQBJ/8UAS//FAEwAIABPACAAUAAgAFP/gABV/8UAV/+QAFsACwCU/8UAmf/FAdv/kAK8/8UCvf/FAr7/xQK//8UCwP/FAsb/gALH/4ACyP+AAsn/gALK/4AC2P/FAtr/xQLc/8UC3v/FAuD/xQLi/8UC5P/FAub/xQLo/8UC6v/FAuz/xQLu/8UC8P/FAvL/xQMU/4ADFv+AAxj/gAMg/5ADIv+QAyT/kAMm/5ADKP+QBFL/xQRU/8UEVv/FBFj/xQRa/8UEXP/FBF7/xQRg/8UEZv+ABGj/gARq/4AEbP+ABG7/gARw/4AEcv+ABHT/xQR2/8UEeP/FBHr/gAR8/8UEt//FBLv/gATE/8UExv/FBMgAIATKACAEzAAgBNn/kAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8WABL/FgAl/1YALv74ADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/VgGG/xYBiv8WAY7/FgGP/xYCBf/AAk3/wAKa/1YCm/9WApz/VgKd/1YCnv9WAp//VgKg/1YCtf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/1YC0v/eAtP/VgLU/94C1f9WAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD++AMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/AA07/wANP/8ADUP/AA1H/wANS/8ADU//AA2j/wANp/8ADav/AA/X/6AP9/1YD/v/eBDn/VgQ6/94EO/9WBDz/3gQ9/1YEPv/eBD//VgRA/94EQf9WBEL/3gRD/1YERP/eBEX/VgRG/94ER/9WBEj/3gRJ/1YESv/eBEv/VgRM/94ETf9WBE7/3gRP/1YEUP/e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GyAAABqEAAAaigAAGpAAABqWAAAanAAAGqIAACKOAAAilAAAGqgAABquAAAatAAAGroAABrAGsYazBrSGtgAABreAAAAAAAAAAAAAAAAAAAAAAAAAAAAABrkG6QgqBrqAAAAAAAAAAAAAAAAAAAAABrwAAAAACSAAAAkhgAAAAAAAAAAAAAAAAAAAAAAAAAAGvYiLgAAAAAAAAAAJYga/BsCGwgbDgAAGxQbGhsgGyYbLCEOGzIbOAAAAAAn+ChMJ/goTCfIJ84bPihAG0QbSiewIHInvCfCKCgnRCASICQbUBtWJ7AntieqKCInJicsJ54npB/cH+InICduJ1wnYidKJ1Yn4CfmH5QfjhtcG2InjAAAAAAnGhtoAAAbbgAAJ9Qn2ht0AAAAABt6G4AAACf4AAAbhgAAG4wAABuSAAAbmAAAG54bpBuqAAAAACf+G7Abthu8AAAojieSG8IdciX0JeIezie2J+wn8ieAJ4Yogid6G8ghjBvIG84omiVAKJob1CiaJUAf3B/iG9ooFhvgG+YnqigiJ+An5icmJywloCEOJaAhDiXEJIwmiiRoJpYeMhvsJQQb7CUEIvQlBBvyJQQiBCUEG/glBChSJQQh4Bv+IaolHCGqJRwjMCUcIOQlHBwEJTQcBCU0HAolNCD2JTQcECTsHBYnFBwWJxQjeCcUHBwnFCKCJxQcIiaoHCImqBwoJqgcLiaoIXokpCOWJRAjliUQIvolECO0JRAiCiUQHDQlECheJRAh7Bw6IbYlKCG2JSgjPCUoISwlKBxAJUAcQCVAHEYlQCE+JUAcTCT4HFIlUhxSJVIjhCVSHFglUiKIJVIcXiV8HF4lfBxkJXwcaiV8IYAkXCLEJFwccCUEHHYlECMAJQQjDCUQKFIlBCheJRAcfCHmHIIh8hyIIeYcjiHyHJQh5hyaIfIcoCHmHKYh8hysIQ4lrCRiHLIlHBy4JSgiHCUcIiIlKBy+JRwcxCUoKGolHCh2JSgcyiUcHNAlKBzWJNQc3CTgHOIk1BzoJOAc7iTUHPQk4Bz6HQAdBiTgHQwhGh0SJIwdGCU0I2AlQB0eJTQdJCVAHSolNB0wJUAjVB02I2AlQB08JTQdQiECHUgAACXoHU4l9B1UHVodch1gJUAmAB1mJgwdbCYAHXImDCVAJgAdciYMJUAk5iTsJPIk+CYqHXgmNh1+HYQk7B2KJPgmNiT4HZAnFB2WJVIdnCcUHaIlUh2oJxQdriVSHbQlXh26JWomWh3AJmYdxh3MJV4d0iVqHdgg8B3eITgd5CDwHeohOCZyHfAmfh32JnId/CZ+HgIeCCDwHg4hOCaKHhQmlh4aJooeICaWHiYeLCRoJpYeMh44JqgePiV8HkQmqB5KJXweUCaoHlYlfB5cJqgeYiV8HmgmqB5uJXwmoiaoI9glfB50IWgeeiF0HoAkpB6GJFwgliSkHowhDh6SHrAemCEOHp4esB6kIQ4eqh6wHrYAAB68AAAewgAAHsgAAB7OJ7Yezie2J7wnwh7UJ3oe1Cd6Htoneh7gJ3oe5id6HuwneiiCJ3on7B7yHvgnkh74J5Ie/ieSJzgnkh8EJ1YfBCdWHwonVidQJ1YfECcsKBwoIigcKCIfFigiHxwoIh8iKCIfKCByHyggch8uIHIfNCByKEYoTB86J3ofQCd6KIIneh9GJ/IfTCfyH1In8h9YJ/IfXie2H2Qnkh9qJ5IfcCeSKI4nkh92J5IffB+OH4Ifjh+IH44flB+aH6An5h+mJ1YfrCdWH7InVidKH7gfvidWH8QnYicgH8of0B/iH9wf1h/cH+If3B/iH+gnLCcmH+4f9CcsH/ooIiAAKCIgBigiIAwgJCASIBggHiAkIConRCAwJ0QoKCA2IDwnRCe8IEIgSCfCJ7wgTiBUIHIgWiByIGAgciBmIHIgbCByJ7AgciB4KEAgfihMJzIoTChGKEwghChMIIooTChSJQQoaiUcJbghGiNUJTQnDicUJJ4kpAAAIJAgtAAAKFIlBCWIIQ4oaiUcJvYhDiW4IRojVCU0Jegl1iYSIZgmKiTsJw4nFCWIJkgmiiRoJJ4kpCSqJLAg9iU0IJYkpCCcIKIkwgAAIKggriC0AAAg0gAAILogwCNyJVIm0ibAIMYAACDMAAAjciVSINIAACDYIN4g5CUcIOoAACZyIPAjVCU0IPYlNCD8IQIl0CXWIQgAAChSJQQliCEOJJIAAChqJRwhFAAAJhIhmCW4IRonDicUJYgmSCHgIeYmiiRoJKoksCheJRAodiUoISAAACNyJVIhJiZUIewh8iQ4JFwktiS8ISwlKCEyAAAmfiE4I2AlQCE+JUAhRCGMIUoAACFQJFwhViFoIVwhdCFWIWghXCF0IWIhaCFuIXQheiSkIYAkXCGGIYwhkiGYIZ4hpChSJQQoXiUQIaolHCGwAAAhtiUoIbwAACHCAAAhyAAAIc4AACHUIlgh2iJkIeAh5iHsIfIkniSkI1QlNCH4AAAh/gAAI1QlNCMAJQQjDCUQIgQlBCIKJRAiEAAAIhYAACIcJRwiIiUoIigiLiI0IkAiOiJAIkYAACJMAAAiUiJYIl4iZCJqAAAicAAAInYAACJ8AAAigicUIoglUiKOAAAilAAAIpoAACKgAAAipgAAIqwAACKyAAAiuCRcIr4AACLEJFwiygAAItAkXCLWAAAi3AAAIuIAACLoAAAlrCRiKFIjBiheIxIi7iUEI6IlEChSJQQoXiUQKFIlBCheJRAoUiUEKF4lEChSJQQoXiUQIvQjBiL6IxIoUiUEKF4lEChSJQQoXiUQKFIlBCheJRAoUiUEKF4lECMAIwYjDCMSKGojNih2I0IjGCUcIx4lKCMkJRwjKiUoKGolHCh2JSgoaiUcKHYlKChqJRwodiUoKGolHCh2JSgjMCM2IzwjQiNIJTQjTiVAI1QjWiNgKKAnDiN+I3IjiiNmJxQjbCVSJw4nFCNyJVInDicUI3IlUicOJxQjciVSJw4nFCNyJVIjeCN+I4QjiiOQI64jliO6I5AjriOWI7ojnCOuI6IjuiOoI64jtCO6I8AjxiheI8wmoiPSI9gj3iPkJqgj6iV8I/AkDiP2JXwj8CQOI/YlfCP8JA4kAiV8JAgkDiQUJXwkGiQgJCYkLCSeJDIkOCQ+JEQkpCRKJFwkUCSkJFYkXCWsJGImiiRoJG4AACR0AAAkegAAJJIAACSYAAAAACSAAAAkhiXEJIwkkgAAJJgAACX0JeIkniSkJKoksCS2JLwkwgAAKGokyCTOJNQk2iTgJOYk7CTyJPgk/iUEJQolECUWJRwlIiUoJS4lNCU6JUAlRicUJUwlUiVYJV4lZCVqJXAmqCV2JXwlggAAJYgm/CWOJZQloCb8JawlmiWgJaYlrCWyJbglviXEJcol0CXWJdwl4iXoJe4l9CX6JgAmBiYMKKAmEiYYJh4mJCYqJjAmNiY8Jw4nFCZCJkgmTiZUJlomYCZmJmwmciZ4Jn4mhCaKJpAmliacJqImqCauJrQmuibAJsYmzCbSJtgm3ibkJuom8Cb2JvwnAicIJw4nFCiCJ3oojieSJ+An5idKJ1Ynqigi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BDwABAQ9BD0AAwQ+BD4ABAQ/BD8AAwRABEAABARBBEEAAwRCBEIABARDBEMAAwREBEQABARFBEUAAwRGBEYABARHBEcAAwRIBEgABARJBEkAAwRKBEoABARLBEsAAwRMBEwABARNBE0AAwROBE4ABARPBE8AAwRQBFAABARSBFIAAgRUBFQAAgRWBFYAAgRYBFgAAgRaBFoAAgRcBFwAAgReBF4AAgRgBGAAAgRlBGUAAQRmBGYABwRnBGcAAQRoBGgABwRpBGkAAQRqBGoABwRrBGsAAQRsBGwABwRtBG0AAQRuBG4ABwRvBG8AAQRwBHAABwRxBHEAAQRyBHIABwRzBHMAAQR0BHQAAgR1BHUAAQR2BHYAAgR3BHcAAQR4BHgAAgR5BHkAAQR6BHoABwR7BHsAAQR8BHwAAgR9BH0ACAR+BH4ABgR/BH8ACASABIAABgSCBIIABgSEBIQABgSGBIYABgSIBIgABgSKBIoABgSLBIsADgSMBIwADASNBI0ADgSOBI4ADASPBI8ADgSQBJAADASnBKcAFQSzBLMACQS0BLQAAwS1BLUABAS3BLcAAgS6BLoAAQS7BLsABwS/BL8ABgTEBMQAAgTGBMYAAgTQBNAACQTSBNIACQTTBNMAAQTYBNgAEATZBNkADwTaBNoAEwTcBNwACATdBN0AGQTeBN4ADATfBN8AGQTgBOAADAThBOEAEQTjBOMAFATkBOQAFwAB/av+ngAB/asAAAAB/e4GaQAB/coGaQAB/ecGPgAB/bIGuQAB/jMGQAAB/e4FCgAB/coFCgAB/ecE6AAB/bIE+gAB/jMFDwAB/dIEpgAB/kQEpgAB/dwFAQAB/hoFAQABArr/9gABAlb/9gABAfYG2gABAUoACgABAhkFCgABA5T+aQABAssGigABAhkFCQABAtQGTAABAtQACgABAQYGPAABAmoACgABARgGoQABARgACgABA7kGQwABA7kAAAABA7EFCgABA7H//wABAawG2gABAPgACgABApUGQwABArgAAAABAlEFAQABArwGQAABA6UGTAABAt0GTAABAt4ACgABAoYGTAABA3oGTAABArQGYgABA5QGQAABAooGTAABAiUE9QABArQE9QABAwwE9QABAk4E9QABAh0E9AABAoQE9QABAi0ACgABAvAE9QABAlIE9QABAlgE9QABAuQGzAABAnME9QABAywE9QABAxQE9QABAzsE9QABAg0E9QABAlIFCAABA4IGGgABAwQE9QABAdIGzAABAm0GCAABAgcE4AABAkoFUAABAwkGQAABApwGYQABApz/9gABAj4FDAABAj7/9gABAt0HYwABAk4GDAABArsGUQABAkL/9gABAoIGTAABAnsGHgABAl4ACgABARMGTAABARMACgABAscGTAABAqYGYQABAqb/9gABAiMFCgABAiP/9gABAmUGTAABAqsGYQABAqv/9gABAxIFKAABAjEFKAABAjEACgABAlcFKAABAlf/9gABAh0FKAABAekACgABAlQFKAABAwUFKAABAnYFKAABAloACgABAhQFKAABAvQFKAABAiIFKAABAucFKAABAooFKAABArsFKAABArv/9gABAnQFKAABAkkFKAABAlMAAAABAl8FKAABAmwGTAABAQoE4QABAQr+NQABAPn+NQABA4AFCgABAg4FKAABAcIACgABAqAHoAABAp8HeQABAqAH3wABAqj+PgABARcHqwABARcHpwABAtUHeQABAsMHogABAsIHewABApsHoAABApsHnAABApsHYAABAkYGqAABAhX+PgABAPwGZwABAPwGYwABAjwGQgABAj8GaQABAj4GQgABAjcGaQABAjcGZQABAjcGKQABAqAHaAABAkYGMQABAqgHwAABAhUGaQABAqgHvAABAhUGZQABAqcHewABAhQGJAABAqgHsgABAhUGWwABAmEHnQABAmsHcwABAjUGMQABAmoHZgABAjQGJAABAmsHnQABAjUGWwABAqAHvAABAiwGZQABAqAHnQABAiwGRgABAp8HewABAisGJAABAqAGYQABAtr98wABAiwFCgABAsgHpwABAfUHpgABARYHhAABARcHcwABAPwGLwABARcHiAABAPwGRAABARf+VwABARYHZgABA1QHmgABAQoGPAABApT+VgABAhH+QwABAQgHmwABAPkIAAABAmz+BgABAPn+BgABAmwACgABAtD+BgABAjP+BgABAtYHkgABAj0GWwABAsMHagABAj8GMQABAsMHfwABAj8GRgABAsMHhwABAj8GTgABAmIHoAABAZgGaQABAmP+BgABAPb+BwABAmIHkgABAZgGWwABAm4HogABAjIGaQABAm4HngABAjIGZQABAnT+RwABAjL+PgABAnT9+wABAjL98gABAm4HlAABAjIGWwABAmb9/AABAcX9/AABAmb+SAABAcX+SAABAmQHkQABAcUAAAABApoHeQABAjYGQgABApsHaAABAjcGMQABApsHfQABAjcGRgABApsH3wABAjcGqAABApsHhQABAjcGTgABA5wHnAABAvsGZQABAmoHmwABAfwGZQABAmgHoAABAgMGaQABAmcHWwABAgIGJAABAmgHkgABAgMGWwABAg4ACgABA6sHqwABA1sGagABAssH6QABAhkGaAABAfQFKAABAkUGhwABAkUGgwABAkQGYAABAkUGRwABAkUGxgABAkr+RAABAhkGhwABAhkGgwABAPQGhwABAPQGgwABAm8GYAABAl4GgwABAl0GYAABAl4GRwABAkAGhwABAkAGgwABAkAGRwABAkUGTwABAkUGZAABAksGhwABAksGgwABAkoGQgABAksGeQABAfQGeQABAhkGTwABAhkGZAABAhgGQgABAhkGeQABAkgGgwABAkgGZAABAkcGQgABAk///AABAkgFKAABAk/9+AABAmcGgwABAPMGYAABAPQGTwABAPQGZAABAPT+TgABAPMGQgABAt4GgwABAhT+AgABAOkGhwABAg/+BAABAOkFKAABAg8ACAABAnAGhwABAmv+AAABAnAGeQABAl4GTwABAl4GZAABAl4GbAABAggGhwABAggFKAABAg3+BAABAggGeQABAg0ACAABAh8GhwABAh8GgwABAij+SAABAh8GeQABAhP9/wABAhIGeQABAhP+SwABAj8GYAABAkAGTwABAkAGZAABAkAGxgABAkAGbAABAj4AAAABAxIGgwABAhUGgwABAhQGQgABAhUGeQABAqcACgABAmoHXwABAnEFCgABAiX/9gABAkIFCgABAO8ACgABASYE9QABAk4FCgABAk4ACgABASYGFAABAh8GFAABAh8E9QABA1AE8gABA0v/9gABAmsHawABAnEHqwABAnT//wABARcHawABA1QGPwABAgD/9gABAoYHiAABAmUACgABAt0HiAABAsoACgABAk4GMQABAnUFAAABAjUGKQABAa8GVAABAjL/9gABAPwGJwABAN8GQAABAh0GUwABAfwGRgABA5wHoAABAvsGaQABA5wHYAABA5oACgABAvsGKQABAv4ACgABAmoHnwABAfwGaQABAQoGMgABAL7+NQABA3oHoAABA30ACgABA48GaQABA4EACgABAmsHqwABAt0HqwABAjUGaQABAk4GVAABAscE9QABAm0HOQABAgcGEQABAl4GYQABAgYFCQABAqgGYQABAqj/9gABAhUFCgABAhX/9gABA6UHiAABAwwGMQABAqAHYAABAkYGKQABA6sGTAABA1sFCwABAmsHiAABAjUGRgABAnsHPQABAqMAAAABAi8FCwABAi8GKgABAj0AAAABA6UHawABAwwGFAABAl4HgAABAl7/9gABAgYGKAABAgb/9wABAt0HcwABAk4GHAABAt0HawABAk4GFAABAsMHYgABAj8GKQABAs8GRwABAi8FDAABAs8HZgABAi8GKwABArQHgQABAiMGKQABAoYHcwABAfwGMQABAoYHawABAfwGKQABAoYHkAABAfwGTgABArAHawABAgwGFAABA3oHawABAxQGFAABAqAIAAABAqAHnAABAkYGZQABAqAHfQABAq7+ngABAkYGRgABAfb+ngABAmsICwABAjUGyQABAmoHhAABAjQGQgABAmsHpwABAmv+qAABAjUGZQABAjj+ngABARcICwABAPwGxwABARcGTAABARf+pwABAPsGQAABAsMIAgABAj8GyQABAj8FCgABAsMHngABAsP+ngABAj8GZQABAkj+nQABAr8HmgABAkYGaQABAr8H+gABAkYGyQABAr4HcwABArQAAAABAkUGQgABAkb/9gABAr8GOwABArT+ngABAkb+lAABApr+ngABAjcFCgABAf3+ngABApsIAAABAjcGyQABArYHqwABAkQGVAABArYICwABAkQGtAABArUHhAABArT/9wABAkMGLQABArYGTAABArT+lQABAkQE9QABAjP+ngABAmf+nwABAfwFCgABAsj+AAABAmoH/wABAfwGyQABAmkHeAABAfsGQgABAsj/YgABAmkAAAABAmYAAAABAecE9QABArAGTAABAgwE9QABA8n/+gABAsP//QABAkwACgABAnEGTAABAa8E9QABAmoGQAABAmcAAQABAo0GTAABAoUACgABAfwFAAABAf8ACgABAicFCQABAhMACgABAqAHwAABAtr/9wABAiwGaQABAir+QQABAtYHoAABAtAACgABAj0GaQABAjMACgABAqAHcgABAq4AAAABAkYGOwABAfYAAAABAmsHfQABAmsACgABAjUGOwABAjgAAAABARcHfQABARcACQABAPwGOQABAPkACgABAsMHdAABAj8GOwABAkj//wABAmIHcgABAmMACgABAZgGOwABAPYACwABApsHcgABAjcGOwABAjMAAAABAhwGTAABAl4GTAABAnoGSwABAlb+lAABAmn+ngABAmEGTAABAmX+BgABAiUGTAABAmn9/AABAsgGTAABAsr+qAABAfUGSwABAkz+qAABAl0HmgABApQAWgABAiUHqgABAhEARwABAl0GOwABApT++AABAiUGSwABAhH+5QABAQgGPAABAmz+qAABAPkGoQABA3oGQQABA33+qAABA48FCgABA4H+qAABAtYGQQABAtD+qAABAj0FCgABAjP+qAABAl4HqwABAhIACgABAnUGXwABAOf+aQABAmIGQQABAmP+qAABAZgFCgABAPb+qQABAm4GQwABAnT+nQABAjIFCgABAjL+lAABAmQGQAABAmb+ngABATgFyQABAcX+ngABApsGQQABApoAAAABAo4HhAABAo8ACgABAfgGOAABAfgACgABAo8GTAABAo/+qAABAfkFAAABAfj+qAABA5wGQQABA5r+qAABAvsFCgABAv7+qAABAmgGQQABAmX+qAABAgMFCgABAg7+qAABAsMGQwABAsMAAAABAn0ACgABAgYFKAABAnAFKAABAmsABAABAhUGRwABAhkGRwABAhYGhwABAigAAAABAPQFKAABAPQGRwABAPQABAABAt4FKAABAcn/9gABAgYGhwABAhQABgABAhQGZAABAlAAAAABAhEFKAABAhgACgABAhYFKAABAhkACAABAnYGZAABAv0FKAABAv0ACgABAl4FKAABAkAFKAABAfQACgABAhIFKAABAhMAAwABAiYFKAABAiYACAABAgMFKAABAfz/9gABAmcFKAABAmcACgABAksFKAABAkr//AABAhUFKAABA37/9gABAnYGTwABAhQGTwABA4AGaQABA4AAAAABAl4GhwABAncAAAABAh8FKAABAij9/AABAxIGhwABAxIGRwABAxIACgABAhUGhwABAhUACgABAqAGQQABAq7+TgABAkYFCgABAfb+TgABAmsGTAABAmv+WAABAjUFCgAB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AgwCDQIUBQYFBwIVAhYCFwIYAhkCGgUKBQsFDQUQBRkCHAIdAh4CHwIgAiECIgIjAiQCJQIOAg8CEAIRAhICEwJVAicCKAIpAioFEwIrAi0CLgIvAjECMwKRA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDnQNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9BRoDfwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5AFHQORA5IDlAOTA5UDlgOXA5gDmQOaA5sDnAOeA58DoAUbBRwE5gTnBOgE6QTzBPYE9AT1BPoE+wT8BOoE6wTsBQUFCAUJBQwFDgUPAhsFEQT9BP4E/wUABQEFAgUDBQQFHgUfBSAFIQUSBRQFFQIyBRcCNAUYBRYCMAImAiwFJgUnAAIHAAD6AgECjAHrAeoB6QHoAecB5gHlAeQB4wHiAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AICAgMCjgKQAo8CkQKNApICbAIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIaAhsFGQIcAh0CHgIfAiACIQIiAiMCJAIlAlUCJwIoAikCKgUTAisCLQIuAi8CMAIxAjICMwI1AjYCOAI3A0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2A3cDeAN5A3oDewN8A30DfgUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDnQOeA58DoAUbBRwE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AT5BPoE+wT8BP0E/gT/BQAFAQUCAhkFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFHgUfBSAFIQUSBRQFFQUXAjQFGAUWAiYCLAUmBScAAQABAXsAAQABAEsAAQABALsAAQABADYAAQABABMAAQACAyMDJAACBuQG2AACBuYG2AABBu4AAQbwAAEG8gACAAEAFAAdAAAAAQACAC8ATwABAAMASQBLAoQAAgAAAAEG3gABAAYC1QLWAucC6ANqA3MAAQAGAE0ATgL8A+kD6wRkAAIAAwGUAZQAAAHfAeEAAQI5Aj8ABAACAAIAqACsAAEBJAEnAAEAAQAMACcAKAArADMANQBGAEcASABLAFMAVABVAAIAAgAUAB0AAAJvAngACgACAAYATQBNAAYATgBOAAQC/AL8AAUD6QPpAAMD6wPrAAIEZARkAAEAAgAEABQAHQAAAoACgAAKAosCiwALBKgErwAMAAIABgAaABoAAAAcABwAAQJkAmkAAgJtAm0ACAJvAngACQJ/An8AEwABABQAGgAcAmQCZQJmAmcCaAJpAm0CfwKAAosEqASpBKoEqwSsBK0ErgSvAAEF3gABBeAAAQXiAAEF5AABBeYAAQXoAAEF6gABBewAAQXuAAEF8AABBfIAAQX0AAEF9gABBfgAAQX6AAIF/AYCAAIGAgYIAAIGCAYOAAIGDgYUAAIGFAYaAAIGGgYgAAIGIAYmAAIGJgYsAAIGLAYyAAIGMgY4AAIGOAY+AAMGPgZEBkoAAwZIBk4GVAADBlIGWAZeAAMGXAZiBmgAAwZmBmwGcgADBnAGdgZ8AAMGegaABoYAAwaEBooGkAAEBo4GlAaaBqAABAacBqIGqAauAAUGqgawBrYGvAbCAAUGvAbCBsgGzgbUAAUGzgbUBtoG4AbmAAUG4AbmBuwG8gb4AAUG8gb4Bv4HBAcKAAUHBAcKBxAHFgccAAUHFgccByIHKAcuAAUHKAcuBzQHOgdAAAUHOgdAB0YHTAdSAAYHTAdSB1gHXgdkB2oABgdiB2gHbgd0B3oHgAAGB3gHfgeEB4oHkAeWAAYHjgeUB5oHoAemB6wABgekB6oHsAe2B7wHwgAGB7oHwAfGB8wH0gfYAAYH0AfWB9wH4gfoB+4ABwguB+YH7AfyB/gH/ggEAAcIJgf6CAAIBggMCBIIGAABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoClwKZArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL/AwEDAwMFAwcDCQMLAw0DDwMRAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM2AzgDOgM8Az4DQQNDA0UDRwNJA7kDugO7A7wDvgO/A8ADwQPCA8MDxAPFA8YDxwPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+8D8QPzA/UECgQMBA4EHAQjBCkELwSZBJoEngSiBSMFJQABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAHWAAIATQHXAAIAUAHYAAMASgBNAdkAAwBKAFAAAQABAEoB1QACAEoB2wACAFgB2gACAFgAAQADAEoAVwCVAAAAAQABAAEAAQAAAAMEwQACAK0C1wACAKkExwACAK0E1AACAKkEwgACAK0C2AACAKkEsQACAKkEyAACAK0EZAACAK0E1QACAKkDRgACAKkDSAACAKkDRwACAKkDSQACAKkEwAACAKkExQACAdQEwwACAK0EsAACAKkC8QACAdQD+wACAKkEzwACAK0DKQACAdQE2gACAK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA"},Te="object"==typeof window?window:"object"==typeof global?global:"object"==typeof self?self:this;typeof Te.pdfMake<"u"&&typeof Te.pdfMake.addVirtualFileSystem<"u"&&Te.pdfMake.addVirtualFileSystem(Pt),Za.exports=Pt}}]); \ No newline at end of file diff --git a/frontend/853.c4ce8a9a0bef2bb7.js b/frontend/853.c4ce8a9a0bef2bb7.js deleted file mode 100644 index ec9472c8..00000000 --- a/frontend/853.c4ce8a9a0bef2bb7.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[853],{4853:(Gl,br,Pt)=>{"use strict";Pt.r(br),Pt.d(br,{CLNModule:()=>TC});var st=Pt(177),le=Pt(1188),b=Pt(9881),A=Pt(4438),n=Pt(2920),B=Pt(7575);function a(i,D){1&i&&A.nrm(0,"mat-progress-bar",3)}let s=(()=>{class i{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(l=>{switch(!0){case l instanceof le.Z:this.loading=!0;break;case l instanceof le.wF:case l instanceof le.j5:case l instanceof le.L6:this.loading=!1}})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-root"]],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(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,a,1,0,"mat-progress-bar",2),A.nrm(2,"router-outlet",null,0),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",c.loading))},dependencies:[st.bT,n.DJ,n.sA,n.UI,B.HM,le.n3],data:{animation:[b.E]}})}return i})();var o=Pt(1413),g=Pt(6977),f=Pt(3993),w=Pt(614),u=Pt(5383),r=Pt(4416),d=Pt(9647),E=Pt(9584),C=Pt(8570),e=Pt(9640),h=Pt(2571),Q=Pt(60),I=Pt(6038),R=Pt(8834),p=Pt(5596),m=Pt(6195),y=Pt(9213),x=Pt(9115),Y=Pt(6850),v=Pt(5964),S=Pt(6695),z=Pt(2042),F=Pt(9159),$=Pt(2798),gA=Pt(5351),_=Pt(8430),fA=Pt(4054),iA=Pt(9417),wA=Pt(9631),IA=Pt(6467),FA=Pt(6600),YA=Pt(450),HA=Pt(4823),J=Pt(9587),BA=Pt(6114);function aA(i,D){1&i&&(A.j41(0,"span",31),A.EFF(1,"= "),A.k0s())}function eA(i,D){if(1&i&&(A.j41(0,"span",32),A.nrm(1,"fa-icon",33),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function EA(i,D){if(1&i&&A.nrm(0,"span",34),2&i){const t=A.XpG();A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function xA(i,D){if(1&i&&(A.j41(0,"mat-option",35),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(A.bMT(2,2,t))}}function OA(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.invoiceError)}}function W(i,D){if(1&i&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",37),A.DNE(2,OA,2,1,"span",38),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.invoiceError)}}let L=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.store=c,this.decimalPipe=j,this.commonService=PA,this.actions=WA,this.faExclamationTriangle=u.zpE,this.convertedCurrency=null,this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.md,this.timeUnitEnum=r.F7,this.timeUnits=r.SY,this.selTimeUnit=r.F7.SECS,this.invoiceError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===t.payload.action&&(t.payload.status===r.wn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===r.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let l=this.expiry?this.expiry:r.It;this.selTimeUnit!==r.F7.SECS&&this.expiry&&(l=this.commonService.convertTime(this.expiry,this.selTimeUnit,r.F7.SECS)),this.store.dispatch((0,_.VK)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=r.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.invoiceValueHint="",this.invoiceValue&&this.invoiceValue>99&&this.commonService.convertCurrency(this.invoiceValue,r.BQ.SATS,r.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:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-create-invoices"]],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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.description,WA)||(c.description=WA),A.Njj(WA)}),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(WA){return A.eBV(j),A.DH7(c.invoiceValue,WA)||(c.invoiceValue=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onInvoiceValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint",15),A.DNE(23,aA,2,0,"span",16)(24,eA,2,1,"span",17)(25,EA,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(WA){return A.eBV(j),A.DH7(c.expiry,WA)||(c.expiry=WA),A.Njj(WA)}),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(WA){return A.eBV(j),A.Njj(c.onTimeUnitChange(WA))}),A.DNE(36,xA,3,4,"mat-option",23),A.k0s()()(),A.j41(37,"div",24)(38,"mat-slide-toggle",25),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.private,WA)||(c.private=WA),A.Njj(WA)}),A.EFF(39,"Private Routing Hints"),A.k0s(),A.j41(40,"mat-icon",26),A.EFF(41,"info_outline"),A.k0s()(),A.DNE(42,W,3,2,"div",27),A.j41(43,"div",28)(44,"button",29),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(45,"Clear Field"),A.k0s(),A.j41(46,"button",30),A.bIt("click",function(){A.eBV(j);const WA=A.sdS(10);return A.Njj(c.onAddInvoice(WA))}),A.EFF(47,"Create Invoice"),A.k0s()()()()()()}2&l&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",c.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",c.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==c.invoiceValueHint),A.R7$(),A.Y8G("ngIf",c.convertedCurrency&&"FA"===c.convertedCurrency.iconType&&""!==c.invoiceValueHint),A.R7$(),A.Y8G("ngIf",c.convertedCurrency&&"SVG"===c.convertedCurrency.iconType&&""!==c.invoiceValueHint),A.R7$(),A.SpI(" ",c.invoiceValueHint," "),A.R7$(4),A.Y8G("step",c.selTimeUnit===c.timeUnitEnum.SECS?300:c.selTimeUnit===c.timeUnitEnum.MINS?10:c.selTimeUnit===c.timeUnitEnum.HOURS?2:1)("min",1),A.R50("ngModel",c.expiry),A.R7$(2),A.SpI("",A.bMT(33,17,c.selTimeUnit)," "),A.R7$(3),A.Y8G("value",c.selTimeUnit),A.R7$(),A.Y8G("ngForOf",c.timeUnits),A.R7$(2),A.R50("ngModel",c.private),A.R7$(4),A.Y8G("ngIf",""!==c.invoiceError))},dependencies:[st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,$.VO,FA.wT,YA.sG,HA.oV,J.N,BA.V,st.PV]})}return i})();var rA=Pt(8321),AA=Pt(1771),QA=Pt(7541),yA=Pt(2929),cA=Pt(497);const CA=()=>["all"],DA=i=>({"error-border":i}),NA=()=>["no_invoice"],zA=i=>({"mr-0":i}),pA=i=>({width:i}),JA=i=>({"display-none":i});function ft(i,D){1&i&&(A.j41(0,"span",19),A.EFF(1,"= "),A.k0s())}function wt(i,D){if(1&i&&(A.j41(0,"span",20),A.nrm(1,"fa-icon",21),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function gt(i,D){if(1&i&&A.nrm(0,"span",22),2&i){const t=A.XpG(2);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function pt(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.description,c)||(j.description=c),A.Njj(c)}),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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.invoiceValue,c)||(j.invoiceValue=c),A.Njj(c)}),A.bIt("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onInvoiceValueChange())}),A.k0s(),A.j41(10,"span",11),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",12),A.DNE(13,ft,2,0,"span",13)(14,wt,2,1,"span",14)(15,gt,1,1,"span",15),A.EFF(16),A.k0s()(),A.j41(17,"div",16)(18,"button",17),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.EFF(19,"Clear Field"),A.k0s(),A.j41(20,"button",18),A.bIt("click",function(){A.eBV(t);const c=A.sdS(1),j=A.XpG();return A.Njj(j.onAddInvoice(c))}),A.EFF(21,"Create Invoice"),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(5),A.R50("ngModel",t.description),A.R7$(4),A.Y8G("step",100)("min",1),A.R50("ngModel",t.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==t.invoiceValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),A.R7$(),A.SpI(" ",t.invoiceValueHint," ")}}function Yt(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDeleteExpiredInvoices())}),A.EFF(2,"Delete Expired"),A.k0s(),A.j41(3,"button",25),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.openCreateInvoiceModal())}),A.EFF(4,"Create Invoice"),A.k0s()()}}function VA(i,D){if(1&i&&(A.j41(0,"mat-option",62),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function _A(i,D){1&i&&A.nrm(0,"mat-progress-bar",63)}function Qt(i,D){1&i&&A.nrm(0,"th",64)}function ht(i,D){if(1&i&&A.nrm(0,"span",69),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function vt(i,D){if(1&i&&A.nrm(0,"span",70),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function Nt(i,D){if(1&i&&A.nrm(0,"span",71),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function vA(i,D){if(1&i&&(A.j41(0,"td",65),A.DNE(1,ht,1,3,"span",66)(2,vt,1,3,"span",67)(3,Nt,1,3,"span",68),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","paid"===(null==t?null:t.status)),A.R7$(),A.Y8G("ngIf","unpaid"===(null==t?null:t.status)),A.R7$(),A.Y8G("ngIf","expired"===(null==t?null:t.status))}}function Bt(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Expiry Date"),A.k0s())}function Z(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==t?null:t.expires_at),"dd/MMM/y HH:mm")," ")}}function k(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Date Settled"),A.k0s())}function U(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.paid_at),"dd/MMM/y HH:mm")||"-")}}function hA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Type"),A.k0s())}function q(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11&&t.label.includes("keysend-")?"Keysend":"Bolt11")}}function GA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Description"),A.k0s())}function At(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.description)}}function O(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Label"),A.k0s())}function qA(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label)}}function nt(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Payment Hash"),A.k0s())}function MA(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function jA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Invoice"),A.k0s())}function ot(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11)}}function Tt(i,D){1&i&&(A.j41(0,"th",75),A.EFF(1,"Amount (Sats)"),A.k0s())}function yt(i,D){if(1&i&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0"))}}function Ut(i,D){1&i&&(A.j41(0,"th",75),A.EFF(1,"Amount Settled (Sats)"),A.k0s())}function Lt(i,D){if(1&i&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_received_msat)/1e3,(null==t?null:t.amount_received_msat)<1e3?"1.0-4":"1.0-0"))}}function sn(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function $t(i,D){if(1&i){const t=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 c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onInvoiceClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",80),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onRefreshInvoice(c))}),A.EFF(7,"Refresh"),A.k0s()()()()}}function Kt(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No invoice available."),A.k0s())}function Me(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting invoices..."),A.k0s())}function ze(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Re(i,D){if(1&i&&(A.j41(0,"td",83),A.DNE(1,Kt,2,0,"p",84)(2,Me,2,0,"p",84)(3,ze,2,1,"p",84),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function yn(i,D){if(1&i&&A.nrm(0,"tr",85),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,JA,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function Mn(i,D){1&i&&A.nrm(0,"tr",86)}function ee(i,D){1&i&&A.nrm(0,"tr",87)}function An(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,VA,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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(17,"div",36),A.DNE(18,_A,1,0,"mat-progress-bar",37),A.j41(19,"table",38,1),A.qex(21,39),A.DNE(22,Qt,1,0,"th",40)(23,vA,4,3,"td",41),A.bVm(),A.qex(24,42),A.DNE(25,Bt,2,0,"th",43)(26,Z,3,4,"td",41),A.bVm(),A.qex(27,44),A.DNE(28,k,2,0,"th",43)(29,U,3,4,"td",41),A.bVm(),A.qex(30,45),A.DNE(31,hA,2,0,"th",43)(32,q,2,1,"td",41),A.bVm(),A.qex(33,46),A.DNE(34,GA,2,0,"th",43)(35,At,4,4,"td",41),A.bVm(),A.qex(36,47),A.DNE(37,O,2,0,"th",43)(38,qA,4,4,"td",41),A.bVm(),A.qex(39,48),A.DNE(40,nt,2,0,"th",43)(41,MA,4,4,"td",41),A.bVm(),A.qex(42,49),A.DNE(43,jA,2,0,"th",43)(44,ot,4,4,"td",41),A.bVm(),A.qex(45,50),A.DNE(46,Tt,2,0,"th",51)(47,yt,4,4,"td",41),A.bVm(),A.qex(48,52),A.DNE(49,Ut,2,0,"th",51)(50,Lt,4,4,"td",41),A.bVm(),A.qex(51,53),A.DNE(52,sn,6,0,"th",54)(53,$t,8,0,"td",55),A.bVm(),A.qex(54,56),A.DNE(55,Re,4,3,"td",57),A.bVm(),A.DNE(56,yn,1,3,"tr",58)(57,Mn,1,0,"tr",59)(58,ee,1,0,"tr",60),A.k0s()(),A.nrm(59,"mat-paginator",61),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("icon",t.faHistory),A.R7$(7),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,CA).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter),A.R7$(2),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",A.eq3(16,DA,""!==t.errorMessage)),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(18,NA)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Te=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe){this.logger=t,this.store=l,this.decimalPipe=c,this.commonService=j,this.rtlEffects=PA,this.datePipe=WA,this.actions=an,this.camelCaseWithReplace=fe,this.calledFrom="transactions",this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.convertedCurrency=null,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:r.md,sortBy:"expires_at",sortOrder:r.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new F.I6([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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.Pj).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=t.listInvoices.invoices||[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.SET_LOOKUP_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.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,AA.xO)({payload:{data:{pageSize:this.pageSize,component:L}}}))}onAddInvoice(t){this.invoiceValue||(this.invoiceValue=0);const l=this.expiry?this.expiry:r.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,_.VK)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,AA.I1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(t=>{t&&this.store.dispatch((0,_.a5)({payload:null}))})}onInvoiceClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{invoice:{amount_msat:t.amount_msat,label:t.label,expires_at:t.expires_at,paid_at:t.paid_at,bolt11:t.bolt11,payment_hash:t.payment_hash,description:t.description,status:t.status,amount_received_msat:t.amount_received_msat},newlyAdded:!1,component:rA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=this.datePipe.transform(new Date(1e3*(t.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(t.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":c="paid"===t?.status?"paid":"unpaid"===t?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":c=t?.bolt12?"bolt12":t?.bolt11&&t?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":c=((t.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":c=((t.amount_received_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,r.BQ.SATS,r.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:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onRefreshInvoice(t){this.store.dispatch((0,_.Yi)({payload:t.label}))}updateInvoicesData(t){this.invoiceJSONArr=this.invoiceJSONArr?.map(l=>l.label===t.label?t:l)}loadInvoicesTable(t){this.invoices=new F.I6(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi":return l.amount_msat;case"msatoshi_received":return l.amount_received_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(fA.En),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){1&l&&(A.j41(0,"div",2),A.DNE(1,pt,22,8,"form",3)(2,Yt,5,0,"div",4)(3,An,60,19,"div",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf","home"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld,BA.V,st.QX,st.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();var Fe=Pt(6697),Qe=Pt(1534),In=Pt(2765),wn=Pt(5951);const kt=["sendPaymentForm"],zt=["paymentAmt"],Wt=["offerAmt"],ae=["paymentReq"],mn=["offerReq"];function dn(i,D){if(1&i&&(A.j41(0,"mat-radio-button",26),A.EFF(1,"Offer"),A.k0s()),2&i){const t=A.XpG();A.FS9("value",t.paymentTypes.OFFER)}}function Tn(i,D){1&i&&A.eu8(0)}function Wn(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.paymentError)}}function ti(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,Wn,2,1,"span",29),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.paymentError)}}function xn(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function ZA(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function SA(i,D){if(1&i&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,xn,2,1,"span",35)(3,ZA,1,1,"span",36),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.SpI(" ",t.paymentDecodedHintPost," ")}}function it(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function RA(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.paymentDecodedHint)}}function TA(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment amount is required."),A.k0s())}function UA(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.paymentAmount,c)||(j.paymentAmount=c),A.Njj(c)}),A.bIt("change",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onAmountChange(c))}),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,TA,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.paymentAmount),A.R7$(4),A.Y8G("ngIf",!t.paymentAmount)}}function kA(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(5,SA,5,4,"mat-hint",32)(6,it,2,0,"mat-error",29)(7,RA,2,1,"mat-error",29),A.k0s(),A.DNE(8,UA,8,2,"mat-form-field",33)}if(2&i){const t=A.sdS(4),l=A.XpG();A.R7$(3),A.Y8G("ngModel",l.paymentRequest),A.R7$(2),A.Y8G("ngIf",l.paymentRequest&&""!==l.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!l.paymentRequest),A.R7$(),A.Y8G("ngIf",null==t.errors?null:t.errors.decodeError),A.R7$(),A.Y8G("ngIf",l.zeroAmtInvoice)}}function et(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Pubkey is required."),A.k0s())}function LA(i,D){1&i&&(A.j41(0,"span",45),A.EFF(1,"= "),A.k0s())}function at(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function XA(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(2);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function dt(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Keysend amount is required."),A.k0s())}function xt(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.pubkey,c)||(j.pubkey=c),A.Njj(c)}),A.k0s(),A.DNE(4,et,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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.keysendAmount,c)||(j.keysendAmount=c),A.Njj(c)}),A.bIt("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onKeysendAmountChange())}),A.k0s(),A.j41(10,"span",43),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",34),A.DNE(13,LA,2,0,"span",44)(14,at,2,1,"span",35)(15,XA,1,1,"span",36),A.EFF(16),A.k0s(),A.DNE(17,dt,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.R50("ngModel",t.pubkey),A.R7$(),A.Y8G("ngIf",!t.pubkey),A.R7$(4),A.R50("ngModel",t.keysendAmount),A.R7$(5),A.Y8G("ngIf",""!==t.keysendValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.keysendValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.keysendValueHint),A.R7$(),A.SpI(" ",t.keysendValueHint," "),A.R7$(),A.Y8G("ngIf",!t.keysendAmount)}}function St(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function jt(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function Xt(i,D){if(1&i&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,St,2,1,"span",35)(3,jt,1,1,"span",36),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.offerDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.offerDecodedHintPre),A.R7$(),A.SpI(" ",t.offerDecodedHintPost," ")}}function ne(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Offer request is required."),A.k0s())}function Et(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.offerDecodedHint)}}function Rt(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Offer amount is required."),A.k0s())}function Zt(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.offerAmount,c)||(j.offerAmount=c),A.Njj(c)}),A.bIt("change",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onAmountChange(c))}),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,Rt,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.offerAmount),A.R7$(4),A.Y8G("ngIf",!t.offerAmount)}}function Ht(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.offerTitle,c)||(j.offerTitle=c),A.Njj(c)}),A.k0s()()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.offerTitle)}}function ie(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(5,Xt,5,4,"mat-hint",32)(6,ne,2,0,"mat-error",29)(7,Et,2,1,"mat-error",29),A.k0s(),A.DNE(8,Zt,8,2,"mat-form-field",33),A.j41(9,"div",47)(10,"mat-checkbox",48),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgSaveToDB,c)||(j.flgSaveToDB=c),A.Njj(c)}),A.EFF(11,"Bookmark Offer"),A.k0s(),A.j41(12,"mat-icon",49),A.EFF(13,"info_outline"),A.k0s()(),A.DNE(14,Ht,4,1,"mat-form-field",50)}if(2&i){const t=A.sdS(4),l=A.XpG();A.R7$(3),A.Y8G("ngModel",l.offerRequest),A.R7$(2),A.Y8G("ngIf",l.offerRequest&&""!==l.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",!l.offerRequest),A.R7$(),A.Y8G("ngIf",null==t.errors?null:t.errors.decodeError),A.R7$(),A.Y8G("ngIf",l.zeroAmtOffer),A.R7$(2),A.R50("ngModel",l.flgSaveToDB),A.R7$(4),A.Y8G("ngIf",l.flgSaveToDB||""!==l.offerTitle)}}let Jt=(()=>{class i{set payReq(t){t&&(this.paymentReq=t)}set offrReq(t){t&&(this.offerReq=t)}constructor(t,l,c,j,PA,WA,an,fe){this.dialogRef=t,this.data=l,this.store=c,this.logger=j,this.commonService=PA,this.decimalPipe=WA,this.actions=an,this.dataService=fe,this.faExclamationTriangle=u.zpE,this.convertedCurrency=null,this.paymentTypes=r.Y0,this.paymentType=r.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=r.nv[0],this.feeLimitTypes=r.nv,this.paymentError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case r.Y0.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case r.Y0.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case r.Y0.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.activeChannels=t.activeChannels,this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[3]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.SEND_PAYMENT_STATUS_CLN||t.type===r.TC.SET_OFFER_INVOICE_CLN)).subscribe(t=>{t.type===r.TC.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),t.type===r.TC.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=t.payload,this.sendPayment()),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&("SendPayment"===t.payload.action&&(delete this.paymentDecoded.amount_msat,this.paymentError=t.payload.message),"DecodePayment"===t.payload.action&&(this.paymentType===r.Y0.INVOICE&&(this.paymentDecodedHintPre="ERROR: "+t.payload.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===r.Y0.OFFER&&(this.offerDecodedHintPre="ERROR: "+t.payload.message,this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})),this.paymentType===r.Y0.KEYSEND&&(this.keysendValueHint="ERROR: "+t.payload.message)),"FetchOfferInvoice"===t.payload.action&&this.paymentType===r.Y0.OFFER&&(this.paymentError=t.payload.message))})}onSendPayment(){switch(this.paymentType){case r.Y0.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case r.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,g.Q)(this.unSubs[4])).subscribe(t=>{"bolt12 offer"===t.type&&t.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=t,this.setPaymentDecodedDetails())}));break;case r.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,g.Q)(this.unSubs[5])).subscribe(t=>{"bolt11 invoice"===t.type&&t.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=t,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_KEYSEND,paymentType:r.Y0.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===r.Y0.INVOICE?this.store.dispatch((0,_.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===r.Y0.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.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,_.Ew)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(t){this.paymentType===r.Y0.INVOICE?(this.paymentRequest=t,this.resetInvoiceDetails()):this.paymentType===r.Y0.OFFER&&(this.offerRequest=t,this.resetOfferDetails()),t.length>100&&this.dataService.decodePayment(t,!0).pipe((0,g.Q)(this.unSubs[6])).subscribe(l=>{this.paymentType===r.Y0.INVOICE?"bolt12 offer"===l.type&&l.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=l,this.setPaymentDecodedDetails()):this.paymentType===r.Y0.OFFER&&("bolt11 invoice"===l.type&&l.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=l,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(t){this.paymentType===r.Y0.INVOICE&&(delete this.paymentDecoded.amount_msat,this.paymentDecoded.amount_msat=+t.target.value),this.paymentType===r.Y0.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=t.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,r.BQ.SATS,r.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[7])).subscribe({next:t=>{this.convertedCurrency=t,this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats (",this.offerDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Description: "+this.offerDecoded.offer_description},error:t=>{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,r.BQ.SATS,r.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[8])).subscribe({next:t=>{this.convertedCurrency=t,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,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:t=>{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 r.Y0.KEYSEND:this.pubkey="",this.keysendValueHint="",this.keysendAmount=null;break;case r.Y0.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=r.nv[0],this.resetInvoiceDetails();break;case r.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,r.BQ.SATS,r.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:t=>{this.convertedCurrency=t,this.keysendValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.keysendValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(C.gP),A.rXU(h.h),A.rXU(st.QX),A.rXU(fA.En),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(l,c){if(1&l&&(A.GBs(kt,5),A.GBs(zt,5),A.GBs(Wt,5),A.GBs(ae,5),A.GBs(mn,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.paymentAmt=j.first),A.mGM(j=A.lsd())&&(c.offerAmt=j.first),A.mGM(j=A.lsd())&&(c.payReq=j.first),A.mGM(j=A.lsd())&&(c.offrReq=j.first)}},decls:30,vars:7,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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.paymentType,WA)||(c.paymentType=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.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,dn,2,1,"mat-radio-button",19),A.k0s(),A.j41(15,"form",20,0),A.bIt("submit",function(){return A.eBV(j),A.Njj(c.onSendPayment())})("reset",function(){return A.eBV(j),A.Njj(c.resetData())}),A.DNE(17,Tn,1,0,"ng-container",21)(18,ti,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,kA,9,5,"ng-template",null,1,A.C5r)(26,xt,18,8,"ng-template",null,2,A.C5r)(28,ie,15,7,"ng-template",null,3,A.C5r)}if(2&l){const j=A.sdS(25),PA=A.sdS(27),WA=A.sdS(29);A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.R50("ngModel",c.paymentType),A.R7$(),A.FS9("value",c.paymentTypes.INVOICE),A.R7$(2),A.FS9("value",c.paymentTypes.KEYSEND),A.R7$(2),A.Y8G("ngIf",c.selNode.settings.enableOffers),A.R7$(3),A.Y8G("ngTemplateOutlet",c.paymentType===c.paymentTypes.KEYSEND?PA:c.paymentType===c.paymentTypes.OFFER?WA:j),A.R7$(),A.Y8G("ngIf",""!==c.paymentError)}},dependencies:[st.bT,st.T3,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,In.So,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,wn.VT,wn._g,HA.oV,J.N]})}return i})();const ue=["sendPaymentForm"],se=()=>["all"],ve=i=>({"error-border":i}),Oe=()=>["no_payment"],ge=i=>({width:i}),xe=i=>({"display-none":i});function Ne(i,D){if(1&i&&(A.j41(0,"span",18),A.nrm(1,"fa-icon",19),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function qe(i,D){if(1&i&&A.nrm(0,"span",20),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function Dn(i,D){if(1&i&&(A.j41(0,"mat-hint",15),A.EFF(1),A.DNE(2,Ne,2,1,"span",16)(3,qe,1,1,"span",17),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.SpI(" ",t.paymentDecodedHintPost," ")}}function tn(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function Qn(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(7,Dn,5,4,"mat-hint",10)(8,tn,2,0,"mat-error",11),A.k0s(),A.j41(9,"div",12)(10,"button",13),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.EFF(11,"Clear Field"),A.k0s(),A.j41(12,"button",14),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendPayment())}),A.EFF(13,"Send Payment"),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(5),A.Y8G("ngModel",t.paymentRequest),A.R7$(2),A.Y8G("ngIf",t.paymentRequest&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!t.paymentRequest)}}function Yn(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",21)(1,"button",14),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.openSendPaymentModal())}),A.EFF(2,"Send Payment"),A.k0s()()}}function en(i,D){if(1&i&&(A.j41(0,"mat-option",70),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function gn(i,D){1&i&&A.nrm(0,"mat-progress-bar",71)}function on(i,D){1&i&&A.nrm(0,"th",72)}function Mi(i,D){1&i&&A.nrm(0,"span",76)}function Ii(i,D){1&i&&A.nrm(0,"span",77)}function Kn(i,D){if(1&i&&(A.j41(0,"td",73),A.DNE(1,Mi,1,0,"span",74)(2,Ii,1,0,"span",75),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status)}}function Di(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Created At"),A.k0s())}function vi(i,D){if(1&i&&(A.j41(0,"td",73),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==t?null:t.created_at),"dd/MMM/y HH:mm")," ")}}function jn(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Type"),A.k0s())}function Ci(i,D){if(1&i&&(A.j41(0,"td",73),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend")}}function ei(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Payment Hash"),A.k0s())}function Sn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function sa(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Invoice"),A.k0s())}function dA(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11)}}function H(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Label"),A.k0s())}function T(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label)}}function X(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Destination"),A.k0s())}function V(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.destination)}}function uA(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Memo"),A.k0s())}function mA(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.memo)}}function tt(i,D){1&i&&(A.j41(0,"th",81),A.EFF(1,"Sats Sent"),A.k0s())}function rt(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_sent_msat)/1e3,"1.0-4"))}}function ut(i,D){1&i&&(A.j41(0,"th",81),A.EFF(1,"Sats Received"),A.k0s())}function Ct(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_msat)/1e3,"1.0-4"))}}function Mt(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Dt(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",87)(1,"button",88),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onPaymentClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function Ft(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No payment available."),A.k0s())}function Ot(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting payments..."),A.k0s())}function Vt(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Ae(i,D){if(1&i&&(A.j41(0,"td",89),A.DNE(1,Ft,2,0,"p",11)(2,Ot,2,0,"p",11)(3,Vt,2,1,"p",11),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.COMPLETED)),A.R7$(),A.Y8G("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.ERROR))}}function Be(i,D){1&i&&A.nrm(0,"span",76)}function Ye(i,D){1&i&&A.nrm(0,"span",77)}function Ze(i,D){1&i&&A.nrm(0,"span",76)}function me(i,D){1&i&&A.nrm(0,"span",77)}function Ve(i,D){if(1&i&&(A.j41(0,"span",90),A.DNE(1,Ze,1,0,"span",74)(2,me,1,0,"span",75),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status)}}function hn(i,D){if(1&i&&(A.qex(0),A.DNE(1,Ve,3,2,"span",91),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function We(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.DNE(2,Be,1,0,"span",74)(3,Ye,1,0,"span",75),A.k0s(),A.DNE(4,hn,2,1,"ng-container",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function En(i,D){if(1&i&&(A.j41(0,"span",90),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*t.created_at,"dd/MMM/y HH:mm")," ")}}function vn(i,D){if(1&i&&(A.qex(0),A.DNE(1,En,3,4,"span",91),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Xn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,vn,2,1,"ng-container",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" Total Attempts: ",null==t?null:t.total_parts," "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function On(i,D){1&i&&A.nrm(0,"span",90)}function bi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,On,1,0,"span",91),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Jn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,bi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function ni(i,D){if(1&i&&(A.j41(0,"span",90),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" Part ID ",t.partid?t.partid:0," ")}}function Zn(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,ni,2,1,"span",91),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function qn(i,D){if(1&i&&(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&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Hn(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Ri(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Hn,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Ti(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Ri,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Ui(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Fi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ui,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Li(i,D){if(1&i&&(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&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Pi(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function ir(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Pi,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function zi(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,ir,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.destination),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Vn(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Gi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Vn,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function ii(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Gi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.memo),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Rr(i,D){if(1&i&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,t.amount_sent_msat/1e3,t.amount_sent_msat<1e3?"1.0-4":"1.0-0")," ")}}function Tr(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Rr,3,4,"span",96),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Bs(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,Tr,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==t?null:t.amount_sent_msat)/1e3,(null==t?null:t.amount_sent_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",t.is_expanded)}}function us(i,D){if(1&i&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,t.amount_msat/1e3,t.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function fs(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,us,3,4,"span",96),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function hs(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,fs,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",t.is_expanded)}}function Es(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",100)(1,"button",101),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(4);return A.Njj(j.onPaymentClick(c))}),A.EFF(2),A.k0s()()}if(2&i){const t=D.$implicit;A.R7$(2),A.SpI("View ",t.partid?t.partid:0,"")}}function oa(i,D){if(1&i&&(A.j41(0,"div"),A.DNE(1,Es,3,1,"div",99),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Cs(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",73)(1,"span",97)(2,"button",98),A.bIt("click",function(){const c=A.eBV(t).$implicit;return A.Njj(c.is_expanded=!c.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,oa,2,1,"div",11),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(3),A.JRh(t.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function la(i,D){1&i&&A.nrm(0,"tr",102)}function ca(i,D){if(1&i&&A.nrm(0,"tr",103),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,xe,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function ws(i,D){1&i&&A.nrm(0,"tr",104)}function ds(i,D){1&i&&A.nrm(0,"tr",102)}function Qs(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,en,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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(17,"div",32)(18,"div",33),A.DNE(19,gn,1,0,"mat-progress-bar",34),A.j41(20,"table",35,2),A.qex(22,36),A.DNE(23,on,1,0,"th",37)(24,Kn,3,2,"td",38),A.bVm(),A.qex(25,39),A.DNE(26,Di,2,0,"th",40)(27,vi,3,4,"td",38),A.bVm(),A.qex(28,41),A.DNE(29,jn,2,0,"th",40)(30,Ci,2,1,"td",38),A.bVm(),A.qex(31,42),A.DNE(32,ei,2,0,"th",40)(33,Sn,4,4,"td",38),A.bVm(),A.qex(34,43),A.DNE(35,sa,2,0,"th",40)(36,dA,4,4,"td",38),A.bVm(),A.qex(37,44),A.DNE(38,H,2,0,"th",40)(39,T,4,4,"td",38),A.bVm(),A.qex(40,45),A.DNE(41,X,2,0,"th",40)(42,V,4,4,"td",38),A.bVm(),A.qex(43,46),A.DNE(44,uA,2,0,"th",40)(45,mA,4,4,"td",38),A.bVm(),A.qex(46,47),A.DNE(47,tt,2,0,"th",48)(48,rt,4,4,"td",38),A.bVm(),A.qex(49,49),A.DNE(50,ut,2,0,"th",48)(51,Ct,4,4,"td",38),A.bVm(),A.qex(52,50),A.DNE(53,Mt,6,0,"th",51)(54,Dt,3,0,"td",52),A.bVm(),A.qex(55,53),A.DNE(56,Ae,4,3,"td",54),A.bVm(),A.qex(57,55),A.DNE(58,We,5,3,"td",38),A.bVm(),A.qex(59,56),A.DNE(60,Xn,4,2,"td",38),A.bVm(),A.qex(61,57),A.DNE(62,Jn,4,2,"td",38),A.bVm(),A.qex(63,58),A.DNE(64,qn,5,5,"td",38),A.bVm(),A.qex(65,59),A.DNE(66,Ti,5,5,"td",38),A.bVm(),A.qex(67,60),A.DNE(68,Li,5,5,"td",38),A.bVm(),A.qex(69,61),A.DNE(70,zi,5,5,"td",38),A.bVm(),A.qex(71,62),A.DNE(72,ii,5,5,"td",38),A.bVm(),A.qex(73,63),A.DNE(74,Bs,5,5,"td",38),A.bVm(),A.qex(75,64),A.DNE(76,hs,5,5,"td",38),A.bVm(),A.qex(77,65),A.DNE(78,Cs,5,2,"td",38),A.bVm(),A.DNE(79,la,1,0,"tr",66)(80,ca,1,3,"tr",67)(81,ws,1,0,"tr",68)(82,ds,1,0,"tr",66),A.k0s()()(),A.nrm(83,"mat-paginator",69),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("icon",t.faHistory),A.R7$(7),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(18,se).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter),A.R7$(3),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",A.eq3(19,ve,""!==t.errorMessage)),A.R7$(59),A.Y8G("matRowDefColumns",t.mppColumns)("matRowDefWhen",t.is_group),A.R7$(),A.Y8G("matFooterRowDef",A.lJ4(21,Oe)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)("matRowDefWhen",!t.is_group),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let ga=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe,cn){this.logger=t,this.commonService=l,this.store=c,this.rtlEffects=j,this.decimalPipe=PA,this.titleCasePipe=WA,this.datePipe=an,this.dataService=fe,this.camelCaseWithReplace=cn,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:r.md,sortBy:"created_at",sortOrder:r.oi.DESCENDING},this.faHistory=u.Int,this.newlyAddedPayment="",this.information={},this.payments=new F.I6([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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(l=>this.mppColumns.push("group_"+l)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.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(E.KT).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.payments||[],this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(t,l){return l.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.paymentDecoded=t,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,AA.I1)({payload:{data:{type:r.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:r.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.amount_msat/1e3,title:"Amount (Sats)",width:50,type:r.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:r.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,Fe.s)(1)).subscribe(l=>{l&&(this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.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:r.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:r.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:r.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,Fe.s)(1)).subscribe(c=>{c&&(this.paymentDecoded.amount_msat=c[0].inputValue,this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*c[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.Q)(this.unSubs[5])).subscribe(l=>{this.paymentDecoded=l,this.paymentDecoded.amount_msat?this.selNode?.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/1e3||0,r.BQ.SATS,r.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:c=>{this.convertedCurrency=c,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,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:c=>{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,AA.xO)({payload:{data:{component:Jt}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(t){const l=[[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:r.UN.STRING}],[{key:"id",value:t.id,title:"ID",width:20,type:r.UN.STRING},{key:"destination",value:t.destination,title:"Destination",width:80,type:r.UN.STRING}],[{key:"created_at",value:t.created_at,title:"Creation Date",width:50,type:r.UN.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(t.status),title:"Status",width:50,type:r.UN.STRING}],[{key:"amount_msat",value:t.amount_msat,title:"Amount (mSats)",width:50,type:r.UN.NUMBER},{key:"amount_sent_msat",value:t.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:r.UN.NUMBER}]];t.bolt11&&""!==t.bolt11&&l?.unshift([{key:"bolt11",value:t.bolt11,title:"Bolt 11",width:100,type:r.UN.STRING}]),t.bolt12&&""!==t.bolt12&&l?.unshift([{key:"bolt12",value:t.bolt12,title:"Bolt 12",width:100,type:r.UN.STRING}]),t.memo&&""!==t.memo&&l?.splice(2,0,[{key:"memo",value:t.memo,title:"Memo",width:100,type:r.UN.STRING}]),t.hasOwnProperty("partid")?l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:80,type:r.UN.STRING},{key:"partid",value:t.partid,title:"Part ID",width:20,type:r.UN.STRING}]):l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Payment Information",message:l}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.created_at?this.datePipe.transform(new Date(1e3*t.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":c="complete"===t?.status?"completed":"incomplete/failed";break;case"created_at":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":c=((t.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":c=((t.amount_msat||0)/1e3).toString()||"";break;case"type":c=t?.bolt12?"bolt12":t?.bolt11?"bolt11":"keysend";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadPaymentsTable(t){this.payments=new F.I6(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_sent":return l.amount_sent_msat;case"msatoshi":return l.amount_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const l=JSON.parse(JSON.stringify(this.payments.data))?.reduce((c,j)=>j.mpps?c.concat(j.mpps):(delete j.is_group,delete j.is_expanded,delete j.total_parts,c.concat(j)),[]);this.commonService.downloadFile(l,"Payments")}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(QA.H),A.rXU(st.QX),A.rXU(st.PV),A.rXU(st.vh),A.rXU(Qe.u),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(l,c){if(1&l&&(A.GBs(ue,5),A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){1&l&&(A.j41(0,"div",3),A.DNE(1,Qn,14,3,"form",4)(2,Yn,3,0,"div",5)(3,Qs,84,22,"div",6),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf","home"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX,st.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 i})();const Ba=i=>({backgroundColor:i});function ms(i,D){if(1&i&&A.nrm(0,"span",6),2&i){const t=A.XpG();A.Y8G("ngStyle",A.eq3(1,Ba,"#"+(null==t.information?null:t.information.color)))}}function ps(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(4),A.Y8G("ngStyle",A.eq3(4,Ba,"#"+(null==t.information?null:t.information.color))),A.R7$(),A.SpI(" ",A.bMT(6,2,null==t.information?null:t.information.color)," ")}}function Ms(i,D){if(1&i&&(A.j41(0,"span",2),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}let ua=(()=>{class i{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain||"")+" "+this.commonService.titleCase(t.network||""))}))}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},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(l,c){1&l&&(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,ms,1,3,"span",3),A.k0s()(),A.DNE(7,ps,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,Ms,2,1,"span",5),A.k0s()()),2&l&&(A.R7$(5),A.SpI(" ",null==c.information?null:c.information.alias," "),A.R7$(),A.Y8G("ngIf",!c.showColorFieldSeparately),A.R7$(),A.Y8G("ngIf",c.showColorFieldSeparately),A.R7$(5),A.JRh(null!=c.information&&c.information.lnImplementation||null!=c.information&&c.information.version?(null==c.information?null:c.information.lnImplementation)+" "+(null==c.information?null:c.information.version):""),A.R7$(4),A.Y8G("ngForOf",c.chains))},dependencies:[st.Sq,st.bT,st.B3,n.DJ,n.sA,n.UI,I.eI,st.Pc]})}return i})();function Is(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(5),A.SpI("",A.i5U(6,5,t.balances.lightning,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.balances.lightning/t.balances.total*100),A.R7$(5),A.SpI("",A.i5U(13,8,t.balances.onchain,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.balances.onchain/t.balances.total*100),A.R7$(5),A.SpI("",A.i5U(20,11,t.balances.total,"1.0-0")," Sats")}}function fa(i,D){if(1&i&&(A.j41(0,"div",6)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Ds=(()=>{class i{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},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(l,c){if(1&l&&A.DNE(0,Is,21,14,"div",1)(1,fa,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,B.HM,st.QX]})}return i})();const vs=()=>["../routing"];function Fs(i,D){if(1&i&&(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&i){const t=A.XpG(2);A.R7$(4),A.JRh(A.bMT(5,1,null==t.fees?null:t.fees.totalTxCount))}}function ys(i,D){1&i&&(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&i&&(A.R7$(3),A.Y8G("routerLink",A.lJ4(1,vs)))}function _n(i,D){if(1&i&&(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,Fs,6,3,"div",7)(10,ys,5,2,"div",7),A.k0s()()),2&i){const t=A.XpG();A.R7$(6),A.SpI("",A.bMT(7,3,(null==t.fees?null:t.fees.feeCollected)/1e3)," Sats"),A.R7$(3),A.Y8G("ngIf",null==t.fees?null:t.fees.totalTxCount),A.R7$(),A.Y8G("ngIf",!(null!=t.fees&&t.fees.totalTxCount))}}function gi(i,D){if(1&i&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Hi=(()=>{class i{constructor(){this.totalFees=[{name:"Total",value:0}]}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},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(l,c){if(1&l&&A.DNE(0,_n,11,5,"div",1)(1,gi,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,le.Wk,st.QX]})}return i})();function xs(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(7),A.JRh(A.bMT(8,6,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.channels)||0)),A.R7$(7),A.JRh(A.bMT(15,8,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.channels)||0)),A.R7$(7),A.JRh(A.bMT(22,10,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.channels)||0)),A.R7$(7),A.SpI("",A.i5U(29,12,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(35,15,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(41,18,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0,"1.0-0")," Sats")}}function Ys(i,D){if(1&i&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let ha=(()=>{class i{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},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(l,c){if(1&l&&A.DNE(0,xs,42,21,"div",1)(1,Ys,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,st.QX]})}return i})();var ri=Pt(1997);const Ss=()=>["../connections/channels/open"],Ns=(i,D)=>({filterColumn:i,filterValue:D});function bs(i,D){if(1&i&&(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&i){const t=D.$implicit,l=A.XpG(3);A.R7$(),A.FS9("matTooltip",t.alias||t.peer_id),A.FS9("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Y8G("routerLink",A.lJ4(23,Ss))("state",A.l_i(24,Ns,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,11,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.R7$(6),A.SpI("",A.i5U(9,15,t.to_us_msat/1e3||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",l.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,18,t.balancedness||0),") "),A.R7$(5),A.SpI("",A.i5U(18,20,t.to_them_msat/1e3||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function Rs(i,D){if(1&i&&(A.j41(0,"div",17),A.DNE(1,bs,20,27,"div",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngForOf",t.activeChannels)}}function Ts(i,D){if(1&i&&(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,Rs,2,1,"div",16),A.k0s()()),2&i){const t=A.XpG(),l=A.sdS(2);A.R7$(8),A.SpI("",A.i5U(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",t.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,10,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),A.R7$(5),A.SpI("",A.i5U(18,12,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),A.R7$(4),A.Y8G("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",l)}}function Us(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",26),A.EFF(1," No channels available. "),A.j41(2,"button",27),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.goToChannels())}),A.EFF(3,"Open Channel"),A.k0s()()}}function Ls(i,D){if(1&i&&(A.j41(0,"div",28)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Ps=(()=>{class i{constructor(t){this.router=t,this.faBalanceScale=u.GR4,this.faDumbbell=u.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(l,c){if(1&l&&A.DNE(0,Ts,24,15,"div",2)(1,Us,4,0,"ng-template",null,0,A.C5r)(3,Ls,3,1,"ng-template",null,1,A.C5r),2&l){const j=A.sdS(4);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.Sq,st.bT,Q.aY,n.DJ,n.sA,n.UI,R.$z,IA.MV,ri.q,B.HM,HA.oV,cA.Ld,le.Wk,st.P9,st.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return i})();const zs=(i,D,t)=>({"mb-4":i,"mb-2":D,"mb-1":t}),Gs=()=>["../connections/channels/open"],Hs=(i,D)=>({filterColumn:i,filterValue:D});function ks(i,D){if(1&i&&(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&i){const t=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,t.to_them_msat/1e3||0,"1.0-0")," Sats")}}function js(i,D){if(1&i&&(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&i){const t=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,t.to_us_msat/1e3||0,"1.0-0")," Sats")}}function Os(i,D){if(1&i&&A.nrm(0,"mat-progress-bar",21),2&i){const t=A.XpG().$implicit,l=A.XpG(3);A.FS9("value",l.totalLiquidity>0?(t.to_them_msat/1e3||0)/l.totalLiquidity*100:0)}}function Js(i,D){if(1&i&&A.nrm(0,"mat-progress-bar",21),2&i){const t=A.XpG().$implicit,l=A.XpG(3);A.FS9("value",l.totalLiquidity>0?(t.to_us_msat/1e3||0)/l.totalLiquidity*100:0)}}function Ea(i,D){if(1&i&&(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,ks,5,4,"mat-hint",17)(6,js,5,4,"mat-hint",17),A.k0s(),A.DNE(7,Os,1,1,"mat-progress-bar",18)(8,Js,1,1,"mat-progress-bar",18),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(3);A.R7$(),A.FS9("matTooltip",t.alias||t.peer_id),A.FS9("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Y8G("routerLink",A.lJ4(14,Gs))("state",A.l_i(15,Hs,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,10,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.R7$(3),A.Y8G("ngIf","In"===l.direction),A.R7$(),A.Y8G("ngIf","Out"===l.direction),A.R7$(),A.Y8G("ngIf","In"===l.direction),A.R7$(),A.Y8G("ngIf","Out"===l.direction)}}function Vs(i,D){if(1&i&&(A.j41(0,"div",12),A.DNE(1,Ea,9,18,"div",13),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngForOf",t.activeChannels)}}function Ws(i,D){if(1&i&&(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,Vs,2,1,"div",11),A.k0s()()),2&i){const t=A.XpG(),l=A.sdS(2);A.Y8G("ngClass",A.sMw(7,zs,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.R7$(5),A.SpI("",A.i5U(6,4,t.totalLiquidity,"1.0-0")," Sats"),A.R7$(6),A.Y8G("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",l)}}function Ks(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",25),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.goToChannels())}),A.EFF(1,"Open Channel"),A.k0s()}}function Xs(i,D){if(1&i&&(A.j41(0,"div",22)(1,"div",23)(2,"div"),A.EFF(3,"No channels available."),A.k0s(),A.DNE(4,Ks,2,0,"button",24),A.k0s()()),2&i){const t=A.XpG();A.R7$(4),A.Y8G("ngIf","Out"===t.direction)}}function Zs(i,D){if(1&i&&(A.j41(0,"div",26)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let qs=(()=>{class i{constructor(t,l){this.router=t,this.commonService=l,this.screenSize="",this.screenSizeEnum=r.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix),A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},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,"routerLink","state","matTooltip","matTooltipDisabled"],["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(l,c){if(1&l&&A.DNE(0,Ws,12,11,"div",2)(1,Xs,5,1,"ng-template",null,0,A.C5r)(3,Zs,3,1,"ng-template",null,1,A.C5r),2&l){const j=A.sdS(4);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,n.DJ,n.sA,n.UI,I.PW,R.$z,IA.MV,ri.q,B.HM,HA.oV,cA.Ld,le.Wk,st.P9,st.QX]})}return i})();const Ca=i=>({"dashboard-card-content":!0,"error-border":i}),_s=i=>({"p-0":i});function $s(i,D){if(1&i&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&i){A.XpG();const t=A.sdS(11);A.Y8G("matMenuTriggerFor",t)}}function Ao(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG().$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function to(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){A.eBV(t);const c=A.XpG(3);return A.Njj(c.onsortChannelsBy())}),A.EFF(1),A.k0s()}if(2&i){const t=A.XpG(3);A.R7$(),A.SpI("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function eo(i,D){1&i&&A.nrm(0,"mat-progress-bar",30)}function oe(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",31),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function no(i,D){if(1&i&&A.nrm(0,"rtl-cln-balances-info",32),2&i){const t=A.XpG(3);A.Y8G("balances",t.balances)("errorMessage",t.errorMessages[1])}}function rr(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-capacity-info",33),2&i){const t=A.XpG(3);A.Y8G("sortBy",t.sortField)("channelBalances",t.channelBalances)("activeChannels",t.activeChannelsCapacity)("errorMessage",t.errorMessages[2]+" "+t.errorMessages[1])}}function ar(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",34),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function yi(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",35),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1]+" "+t.errorMessages[2])}}function Bi(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function Ur(i,D){if(1&i&&(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,$s,3,1,"button",15),A.j41(10,"mat-menu",16,1),A.DNE(12,Ao,2,1,"button",17)(13,to,2,1,"button",18),A.k0s()()()(),A.j41(14,"mat-card-content",19),A.DNE(15,eo,1,0,"mat-progress-bar",20),A.j41(16,"div",21),A.DNE(17,oe,1,2,"rtl-cln-node-info",22)(18,no,1,2,"rtl-cln-balances-info",23)(19,rr,1,4,"rtl-cln-channel-capacity-info",24)(20,ar,1,2,"rtl-cln-fee-info",25)(21,yi,1,2,"rtl-cln-channel-status-info",26)(22,Bi,2,0,"h3",27),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(5),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(2),A.Y8G("ngIf",t.links[0]),A.R7$(3),A.Y8G("ngForOf",t.goToOptions),A.R7$(),A.Y8G("ngIf","capacity"===t.id),A.R7$(),A.FS9("fxFlex","capacity"===t.id?90:70),A.Y8G("ngClass",A.eq3(16,Ca,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR))),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngSwitch",t.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 io(i,D){if(1&i&&(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,Ur,23,18,"mat-grid-tile",10),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),A.R7$(2),A.JRh(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),A.R7$(),A.Y8G("rowHeight",t.operatorCardHeight),A.R7$(),A.Y8G("ngForOf",t.operatorCards)}}function ro(i,D){if(1&i&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&i){A.XpG();const t=A.sdS(9);A.Y8G("matMenuTriggerFor",t)}}function ao(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG(2).$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function xi(i,D){if(1&i&&(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,ro,3,1,"button",15),A.j41(8,"mat-menu",16,2),A.DNE(10,ao,2,1,"button",17),A.k0s()()()()),2&i){const t=A.XpG().$implicit;A.R7$(3),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(2),A.Y8G("ngIf",t.links[0]),A.R7$(3),A.Y8G("ngForOf",t.goToOptions)}}function Yi(i,D){1&i&&A.nrm(0,"mat-progress-bar",30)}function Lr(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",44),2&i){const t=A.XpG(3);A.Y8G("information",t.information)}}function Pr(i,D){if(1&i&&A.nrm(0,"rtl-cln-balances-info",32),2&i){const t=A.XpG(3);A.Y8G("balances",t.balances)("errorMessage",t.errorMessages[1])}}function zr(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&i){const t=A.XpG(3);A.Y8G("direction","In")("totalLiquidity",t.totalInboundLiquidity)("activeChannels",t.allInboundChannels)("errorMessage",t.errorMessages[2])}}function so(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&i){const t=A.XpG(3);A.Y8G("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("activeChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[2])}}function wa(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG(2).$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function oo(i,D){if(1&i&&(A.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),A.nrm(3,"rtl-cln-lightning-invoices-table",49),A.k0s(),A.j41(4,"mat-tab",50),A.nrm(5,"rtl-cln-lightning-payments",51),A.k0s()(),A.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),A.EFF(9,"more_vert"),A.k0s()(),A.j41(10,"mat-menu",16,3),A.DNE(12,wa,2,1,"button",17),A.k0s()()()),2&i){const t=A.sdS(11),l=A.XpG().$implicit;A.R7$(3),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("matMenuTriggerFor",t),A.R7$(5),A.Y8G("ngForOf",l.goToOptions)}}function lo(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function co(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",38),A.DNE(2,xi,11,4,"mat-card-header",39),A.j41(3,"mat-card-content",40),A.DNE(4,Yi,1,0,"mat-progress-bar",20),A.j41(5,"div",21),A.DNE(6,Lr,1,1,"rtl-cln-node-info",41)(7,Pr,1,2,"rtl-cln-balances-info",23)(8,zr,1,4,"rtl-cln-channel-liquidity-info",42)(9,so,1,4,"rtl-cln-channel-liquidity-info",42)(10,oo,13,4,"span",43)(11,lo,2,0,"h3",27),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(),A.Y8G("ngClass",A.eq3(13,_s,"transactions"===t.id)),A.R7$(),A.Y8G("ngIf","transactions"!==t.id),A.R7$(),A.FS9("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),A.Y8G("ngClass",A.eq3(15,Ca,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.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 go(i,D){if(1&i&&(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,co,12,17,"mat-grid-tile",10),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faSmile),A.R7$(2),A.SpI("Welcome ",t.information.alias,"! Your node is up and running."),A.R7$(),A.Y8G("rowHeight",t.merchantCardHeight),A.R7$(),A.Y8G("ngForOf",t.merchantCards)}}let Bo=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.store=l,this.commonService=c,this.router=j,this.faSmile=w.Qpm,this.faFrown=w.wB1,this.faAngleDoubleDown=u.WxX,this.faAngleDoubleUp=u.$sC,this.faChartPie=u.W1p,this.faBolt=u.zm_,this.faServer=u.D6w,this.faNetworkWired=u.eGi,this.userPersonaEnum=r.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=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.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===r.f7.SM||this.screenSize===r.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(E.RQ).pipe((0,g.Q)(this.unSubs[0]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.errorMessages[0]="",this.errorMessages[3]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusFHistory=t.apisCallStatus[1],this.apiCallStatusNodeInfo.status===r.wn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===r.wn.ERROR&&(this.errorMessages[3]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=l,this.information=t.information,this.fees=t.fees}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===r.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=t.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(l=>!!l.to_them_msat&&l.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(l=>!!l.to_us_msat&&l.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(l=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((l.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((l.to_us_msat||0)/1e3)}),this.channelsStatus.active.channels=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusBalances=t.apiCallStatus,this.apiCallStatusBalances.status===r.wn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=t.balance,this.balances.onchain=t.balance.totalBalance||0,this.balances.lightning=t.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const l=t.localRemoteBalance.localBalance?+t.localRemoteBalance.localBalance:0,c=t.localRemoteBalance.remoteBalance?+t.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:l,remoteBalance:c,balancedness:+(1-Math.abs((l-c)/(l+c))).toFixed(3)},this.channelsStatus.active.capacity=t.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=t.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=t.localRemoteBalance.inactiveBalance||0,this.logger.info(t)})}onNavigateTo(t){this.router.navigateByUrl("/cln/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((t,l)=>{const c=(t.to_us_msat?+t.to_us_msat:0)+(t.to_them_msat?+t.to_them_msat:0),j=(l.to_them_msat?+l.to_them_msat:0)+(l.to_them_msat?+l.to_them_msat:0);return c>j?-1:c{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-home"]],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",3,"direction","totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","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"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(l,c){if(1&l&&A.DNE(0,io,7,4,"div",4)(1,go,6,4,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",(null==c.selNode?null:c.selNode.settings.userPersona)===c.userPersonaEnum.OPERATOR)("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,st.fG,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.iY,p.RN,p.m2,p.MM,p.dh,m.B_,m.NS,y.An,x.kk,x.fb,x.Cp,B.HM,Y.mq,Y.T8,Te,ga,ua,Ds,Hi,ha,Ps,qs]})}return i})();var Gr=Pt(4572),uo=Pt(2852),ki=Pt(5416),Nn=Pt(9454),bt=Pt(6013);const sr=["form"],or=["formSweepAll"],wi=["stepper"],Hr=(i,D)=>({"mr-6":i,"mr-2":D});function lr(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function fo(i,D){1&i&&(A.j41(0,"mat-hint"),A.EFF(1,"Amount replaced by UTXO balance"),A.k0s())}function da(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.amountError)}}function ho(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(t)}}function ji(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function cr(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Eo(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",48,5),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.customFeeRate,c)||(j.customFeeRate=c),A.Njj(c)}),A.k0s(),A.DNE(5,cr,2,0,"mat-error",18),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R50("ngModel",t.customFeeRate),A.R7$(2),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function Qa(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function ma(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.SpI("",A.i5U(2,2,t.amount_msat/1e3,"1.0-0")," Sats")}}function pa(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.sendFundError)}}function Co(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.DNE(2,pa,2,1,"span",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.sendFundError)}}function wo(i,D){if(1&i){const t=A.RV6();A.j41(0,"form",15,1),A.bIt("submit",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendFunds())})("reset",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.j41(2,"mat-form-field",16)(3,"mat-label"),A.EFF(4,"Bitcoin Address"),A.k0s(),A.j41(5,"input",17,2),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.transaction.destination,c)||(j.transaction.destination=c),A.Njj(c)}),A.k0s(),A.DNE(7,lr,2,0,"mat-error",18),A.k0s(),A.j41(8,"mat-form-field",19)(9,"mat-label"),A.EFF(10,"Amount"),A.k0s(),A.j41(11,"input",20,3),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.transaction.satoshi,c)||(j.transaction.satoshi=c),A.Njj(c)}),A.k0s(),A.DNE(13,fo,2,0,"mat-hint",18),A.j41(14,"span",21),A.EFF(15),A.k0s(),A.DNE(16,da,2,1,"mat-error",18),A.k0s(),A.j41(17,"mat-form-field",22)(18,"mat-select",23),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onAmountUnitChange(c))}),A.DNE(19,ho,2,2,"mat-option",24),A.k0s()(),A.j41(20,"div",25)(21,"div",26)(22,"div",27)(23,"mat-form-field",28)(24,"mat-label"),A.EFF(25,"Fee Rate"),A.k0s(),A.j41(26,"mat-select",29),A.mxI("valueChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFeeRate,c)||(j.selFeeRate=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.customFeeRate=null)}),A.DNE(27,ji,2,2,"mat-option",24),A.k0s()(),A.DNE(28,Eo,6,5,"mat-form-field",30),A.k0s(),A.j41(29,"div",31)(30,"mat-checkbox",32),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgMinConf,c)||(j.flgMinConf=c),A.Njj(c)}),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.flgMinConf?c.selFeeRate=null:c.minConfValue=null)}),A.k0s(),A.j41(31,"mat-form-field",33)(32,"mat-label"),A.EFF(33,"Min Confirmation Blocks"),A.k0s(),A.j41(34,"input",34,4),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.minConfValue,c)||(j.minConfValue=c),A.Njj(c)}),A.k0s(),A.DNE(36,Qa,2,0,"mat-error",18),A.k0s()()(),A.j41(37,"mat-expansion-panel",35),A.bIt("closed",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onAdvancedPanelToggle(!0))})("opened",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onAdvancedPanelToggle(!1))}),A.j41(38,"mat-expansion-panel-header")(39,"mat-panel-title")(40,"span"),A.EFF(41),A.k0s()()(),A.j41(42,"div",25)(43,"div",36)(44,"mat-form-field",37)(45,"mat-label"),A.EFF(46,"Coin Selection"),A.k0s(),A.j41(47,"mat-select",38),A.mxI("valueChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selUTXOs,c)||(j.selUTXOs=c),A.Njj(c)}),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onUTXOSelectionChange(c))}),A.j41(48,"mat-select-trigger"),A.EFF(49),A.nI1(50,"number"),A.k0s(),A.DNE(51,ma,3,5,"mat-option",24),A.k0s()(),A.j41(52,"div",39)(53,"mat-slide-toggle",40),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgUseAllBalance,c)||(j.flgUseAllBalance=c),A.Njj(c)}),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onUTXOAllBalanceChange())}),A.EFF(54," Use selected UTXOs balance "),A.k0s(),A.j41(55,"mat-icon",41),A.EFF(56,"info_outline"),A.k0s()()()()(),A.nrm(57,"div",25),A.DNE(58,Co,3,2,"div",42),A.j41(59,"div",43)(60,"button",44),A.EFF(61,"Clear Fields"),A.k0s(),A.j41(62,"button",45),A.EFF(63,"Send Funds"),A.k0s()()()()}if(2&i){const t=A.XpG();A.R7$(5),A.R50("ngModel",t.transaction.destination),A.R7$(2),A.Y8G("ngIf",!t.transaction.destination),A.R7$(4),A.Y8G("type",t.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",t.flgUseAllBalance),A.R50("ngModel",t.transaction.satoshi),A.R7$(2),A.Y8G("ngIf",t.flgUseAllBalance),A.R7$(2),A.SpI("",t.selAmountUnit," "),A.R7$(),A.Y8G("ngIf",!t.transaction.satoshi),A.R7$(2),A.Y8G("value",t.selAmountUnit)("disabled",t.flgUseAllBalance),A.R7$(),A.Y8G("ngForOf",t.amountUnits),A.R7$(4),A.Y8G("fxFlex","customperkb"!==t.selFeeRate||t.flgMinConf?"100":"48"),A.R7$(3),A.Y8G("disabled",t.flgMinConf),A.R50("value",t.selFeeRate),A.R7$(),A.Y8G("ngForOf",t.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(36,Hr,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.R50("ngModel",t.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",t.flgMinConf)("disabled",!t.flgMinConf),A.R50("ngModel",t.minConfValue),A.R7$(2),A.Y8G("ngIf",t.flgMinConf&&!t.minConfValue),A.R7$(5),A.JRh(t.advancedTitle),A.R7$(6),A.R50("value",t.selUTXOs),A.R7$(2),A.Lme("",A.bMT(50,34,t.totalSelectedUTXOAmount)," Sats (",t.selUTXOs.length>1?t.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",t.utxos),A.R7$(2),A.Y8G("disabled",t.selUTXOs.length<1),A.R50("ngModel",t.flgUseAllBalance),A.R7$(5),A.Y8G("ngIf",""!==t.sendFundError)}}function Oi(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(3);A.JRh(t.passwordFormLabel)}}function Qo(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Password is required."),A.k0s())}function mo(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-step",54)(1,"form",73),A.DNE(2,Oi,1,1,"ng-template",67),A.j41(3,"div",7)(4,"mat-form-field",57)(5,"mat-label"),A.EFF(6,"Password"),A.k0s(),A.nrm(7,"input",74),A.DNE(8,Qo,2,0,"mat-error",18),A.k0s()(),A.j41(9,"div",75)(10,"button",76),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onAuthenticate())}),A.EFF(11,"Confirm"),A.k0s()()()()}if(2&i){const t=A.XpG(2);A.Y8G("stepControl",t.passwordFormGroup)("editable",t.flgEditable),A.R7$(),A.Y8G("formGroup",t.passwordFormGroup),A.R7$(7),A.Y8G("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function po(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(2);A.JRh(t.sendFundFormLabel)}}function Ma(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Mo(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function Io(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Do(i,D){if(1&i&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",77),A.DNE(4,Io,2,0,"mat-error",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0),A.R7$(),A.Y8G("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.customFeeRate.value)}}function vo(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Fo(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(2);A.JRh(t.confirmFormLabel)}}function Ia(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.sendFundError)}}function yo(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.DNE(2,Ia,2,1,"span",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.sendFundError)}}function xo(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",51)(1,"mat-vertical-stepper",52,6),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.stepSelectionChanged(c))}),A.DNE(3,mo,12,4,"mat-step",53),A.j41(4,"mat-step",54)(5,"form",55),A.DNE(6,po,1,1,"ng-template",56),A.j41(7,"div",25)(8,"mat-form-field",57)(9,"mat-label"),A.EFF(10,"Bitcoin Address"),A.k0s(),A.nrm(11,"input",58),A.DNE(12,Ma,2,0,"mat-error",18),A.k0s(),A.j41(13,"div",59)(14,"div",27)(15,"mat-form-field",28)(16,"mat-label"),A.EFF(17,"Fee Rate"),A.k0s(),A.j41(18,"mat-select",60),A.DNE(19,Mo,2,2,"mat-option",24),A.k0s()(),A.DNE(20,Do,5,3,"mat-form-field",30),A.k0s(),A.j41(21,"div",31),A.nrm(22,"mat-checkbox",61),A.j41(23,"mat-form-field",33)(24,"mat-label"),A.EFF(25,"Min Confirmation Blocks"),A.k0s(),A.nrm(26,"input",62),A.DNE(27,vo,2,0,"mat-error",18),A.k0s()()()(),A.j41(28,"div",63)(29,"button",64),A.EFF(30,"Next"),A.k0s()()()(),A.j41(31,"mat-step",65)(32,"form",66),A.DNE(33,Fo,1,1,"ng-template",67),A.j41(34,"div",51)(35,"div",68),A.nrm(36,"fa-icon",69),A.j41(37,"span"),A.EFF(38,"You are about to sweep all funds from RTL. Are you sure?"),A.k0s()(),A.DNE(39,yo,3,2,"div",42),A.j41(40,"div",63)(41,"button",70),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendFunds())}),A.EFF(42,"Sweep All Funds"),A.k0s()()()()()(),A.j41(43,"div",71)(44,"button",72),A.EFF(45),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(),A.Y8G("linear",!0),A.R7$(2),A.Y8G("ngIf",!t.appConfig.SSO.rtlSSO),A.R7$(),A.Y8G("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),A.R7$(),A.Y8G("formGroup",t.sendFundFormGroup),A.R7$(7),A.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),A.R7$(3),A.Y8G("fxFlex","customperkb"!==t.sendFundFormGroup.controls.selFeeRate.value||t.sendFundFormGroup.controls.flgMinConf.value?"100":"48"),A.R7$(4),A.Y8G("ngForOf",t.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(20,Hr,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",t.sendFundFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.minConfValue.value),A.R7$(4),A.Y8G("stepControl",t.confirmFormGroup),A.R7$(),A.Y8G("formGroup",t.confirmFormGroup),A.R7$(4),A.Y8G("icon",t.faExclamationTriangle),A.R7$(3),A.Y8G("ngIf",""!==t.sendFundError),A.R7$(5),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(t.flgValidated?"Close":"Cancel")}}let Da=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe,cn,UC){this.dialogRef=t,this.data=l,this.logger=c,this.store=j,this.commonService=PA,this.decimalPipe=WA,this.actions=an,this.formBuilder=fe,this.rtlEffects=cn,this.snackBar=UC,this.faExclamationTriangle=u.zpE,this.sweepAll=!1,this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=r.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.feeRateTypes=r.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=r.A0,this.selAmountUnit=r.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=r.k,this.advancedTitle="Advanced Options",this.flgValidated=!1,this.flgEditable=!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=r.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[iA.k0.required]],password:["",[iA.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",iA.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,g.Q)(this.unSubs[0])).subscribe(t=>{t?(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([iA.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,g.Q)(this.unSubs[1])).subscribe(t=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==t||this.sendFundFormGroup.controls.flgMinConf.value?null:[iA.k0.required])}),(0,Gr.z)([this.store.select(d._c),this.store.select(d.qv)]).pipe((0,g.Q)(this.unSubs[1])).subscribe(([t,l])=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.appConfig=l}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.information=t}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value"),this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(t=>{t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,AA.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,AA.oz)({payload:uo(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Fe.s)(1)).subscribe(t=>{"ERROR"!==t?(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(t=>this.transaction.utxos?.push(t.txid+":"+t.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,_.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!==r.BQ.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,this.selAmountUnit===this.amountUnits[2]?r.BQ.OTHER:this.selAmountUnit,r.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:t=>{this.transaction.satoshi=t[r.BQ.SATS],this.selAmountUnit=r.BQ.SATS,this.store.dispatch((0,_.aB)({payload:this.transaction}))},error:t=>{this.transaction.satoshi=null,this.selAmountUnit=r.BQ.SATS,this.amountError="Conversion Error: "+t}}):this.store.dispatch((0,_.aB)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=r.A0[0]}stepSelectionChanged(t){switch(this.sendFundError="",t.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(l=>l.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}t.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,c)=>l+(c.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=r.A0[0]):this.transaction.satoshi=null}onAmountUnitChange(t){const l=this,c=this.selAmountUnit===this.amountUnits[2]?r.BQ.OTHER:this.selAmountUnit;let j=t.value===this.amountUnits[2]?r.BQ.OTHER:t.value;this.transaction.satoshi&&this.selAmountUnit!==t.value&&this.commonService.convertCurrency(+this.transaction.satoshi,c,j,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:PA=>{this.selAmountUnit=t.value,l.transaction.satoshi=l.decimalPipe.transform(PA[j],l.currencyUnitFormats[j])?.replace(/,/g,"")},error:PA=>{l.transaction.satoshi=null,this.amountError="Conversion Error: "+PA,this.selAmountUnit=c,j=c}})}onAdvancedPanelToggle(t){this.advancedTitle=t&&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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(st.QX),A.rXU(fA.En),A.rXU(iA.ze),A.rXU(QA.H),A.rXU(ki.UG))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(l,c){if(1&l&&(A.GBs(sr,7),A.GBs(or,5),A.GBs(wi,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.formSweepAll=j.first),A.mGM(j=A.lsd())&&(c.stepper=j.first)}},decls:12,vars:4,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"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["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,"fxFlex"],["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"],[1,"mr-1","alert-icon",3,"icon"],["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","100"],["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(l,c){if(1&l&&(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,wo,64,39,"form",14),A.k0s()()(),A.DNE(10,xo,46,23,"ng-template",null,0,A.C5r)),2&l){const j=A.sdS(11);A.R7$(5),A.JRh(c.sweepAll?"Sweep All Funds":"Send Funds"),A.R7$(),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.Y8G("ngIf",!c.sweepAll)("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,iA.j4,iA.JD,Q.aY,n.DJ,n.sA,n.UI,I.PW,gA.tx,R.$z,p.m2,p.MM,In.So,Nn.GK,Nn.Z2,Nn.WN,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,$.VO,$.$2,FA.wT,YA.sG,HA.oV,bt.V5,bt.Ti,bt.M6,bt.F7,J.N,BA.V,st.QX]})}return i})();var kr=Pt(5837),jr=Pt(1975);const bn=()=>["all"],Yo=i=>({"error-border":i}),So=()=>["no_utxo"],Or=i=>({width:i}),No=i=>({"display-none":i});function bo(i,D){if(1&i&&(A.j41(0,"mat-option",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Ro(i,D){1&i&&A.nrm(0,"mat-progress-bar",38)}function To(i,D){1&i&&A.nrm(0,"th",39)}function Uo(i,D){1&i&&(A.j41(0,"span",42)(1,"mat-icon",43),A.EFF(2,"warning"),A.k0s()())}function ui(i,D){if(1&i&&(A.j41(0,"td",40),A.DNE(1,Uo,3,0,"span",41),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(),c=A.sdS(56);A.R7$(),A.Y8G("ngIf",l.numDustUTXOs>0&&!l.isDustUTXO&&(null==t?null:t.amount_msat)/1e30||0===t.amount_msat),A.R7$(),A.Y8G("ngIf",t.amount_msat<0)}}function fr(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Blockheight"),A.k0s())}function ai(i,D){if(1&i&&(A.j41(0,"td",40)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.bMT(3,1,null==t?null:t.blockheight)," ")}}function Fa(i,D){1&i&&(A.j41(0,"th",49),A.EFF(1,"Reserved"),A.k0s())}function Si(i,D){if(1&i&&(A.j41(0,"td",40)(1,"span"),A.EFF(2),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(t.reserved?"Yes":"No")}}function ya(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function jo(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",61)(1,"button",62),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onUTXOClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function hr(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No utxos available."),A.k0s())}function Er(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting utxos..."),A.k0s())}function di(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Oo(i,D){if(1&i&&(A.j41(0,"td",63),A.DNE(1,hr,2,0,"p",64)(2,Er,2,0,"p",64)(3,di,2,1,"p",64),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Cr(i,D){if(1&i&&A.nrm(0,"tr",65),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,No,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function Ji(i,D){1&i&&A.nrm(0,"tr",66)}function Jo(i,D){1&i&&A.nrm(0,"tr",67)}function Vo(i,D){1&i&&A.nrm(0,"mat-icon",68)}let Wo=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:r.md,sortBy:"status",sortOrder:r.oi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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.Al).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=t.utxos?.filter(l=>+(l.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(t)})}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(t,l){const c=[[{key:"txid",value:t.txid,title:"Transaction ID",width:100,type:r.UN.STRING,explorerLink:"tx"}],[{key:"output",value:t.output,title:"Output",width:50,type:r.UN.NUMBER},{key:"amount_msat",value:(t.amount_msat||0)/1e3,title:"Value (Sats)",width:50,type:r.UN.NUMBER}],[{key:"status",value:this.commonService.titleCase(t.status||""),title:"Status",width:50,type:r.UN.STRING},{key:"blockheight",value:t.blockheight,title:"Blockheight",width:50,type:r.UN.NUMBER}],[{key:"address",value:t.address,title:"Address",width:100}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"UTXO Information",message:c}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"is_dust":c=(t?.amount_msat||0)/1e3"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"status"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadUTXOsTable(t){this.listUTXOs=new F.I6([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(l,c)=>{switch(c){case"is_dust":return(l.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,bo,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(14,"div",10)(15,"div",11),A.DNE(16,Ro,1,0,"mat-progress-bar",12),A.j41(17,"table",13,0),A.qex(19,14),A.DNE(20,To,1,0,"th",15)(21,ui,2,2,"td",16),A.bVm(),A.qex(22,17),A.DNE(23,Lo,1,0,"th",18)(24,Ke,3,2,"td",16),A.bVm(),A.qex(25,19),A.DNE(26,fi,2,0,"th",20)(27,Vr,4,4,"td",16),A.bVm(),A.qex(28,21),A.DNE(29,Po,2,0,"th",20)(30,gr,4,4,"td",16),A.bVm(),A.qex(31,22),A.DNE(32,Br,2,0,"th",20)(33,ur,4,4,"td",16),A.bVm(),A.qex(34,23),A.DNE(35,ye,2,0,"th",24)(36,zo,4,3,"td",16),A.bVm(),A.qex(37,25),A.DNE(38,hi,2,0,"th",24)(39,ko,3,2,"td",16),A.bVm(),A.qex(40,26),A.DNE(41,fr,2,0,"th",24)(42,ai,4,3,"td",16),A.bVm(),A.qex(43,27),A.DNE(44,Fa,2,0,"th",20)(45,Si,3,1,"td",16),A.bVm(),A.qex(46,28),A.DNE(47,ya,6,0,"th",29)(48,jo,3,0,"td",30),A.bVm(),A.qex(49,31),A.DNE(50,Oo,4,3,"td",32),A.bVm(),A.DNE(51,Cr,1,3,"tr",33)(52,Ji,1,0,"tr",34)(53,Jo,1,0,"tr",35),A.k0s(),A.nrm(54,"mat-paginator",36),A.k0s()()(),A.DNE(55,Vo,1,0,"ng-template",null,1,A.C5r)}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,bn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(3),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.listUTXOs)("ngClass",A.eq3(15,Yo,""!==c.errorMessage)),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(17,So)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,y.An,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX,st.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 i})();function xa(i,D){if(1&i&&(A.j41(0,"span",4),A.EFF(1,"UTXOs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.numUtxos)}}function Ko(i,D){if(1&i&&(A.j41(0,"span",5),A.EFF(1,"Dust UTXOs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.numDustUtxos)}}let Xo=(()=>{class i{constructor(t,l){this.logger=t,this.store=l,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.bkB,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length||0,this.numDustUtxos=t.utxos?.filter(l=>+(l.amount_msat||0)/1e3{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},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(l,c){1&l&&(A.j41(0,"div",0)(1,"mat-tab-group",1),A.bIt("selectedIndexChange",function(PA){return c.onSelectedIndexChanged(PA)}),A.j41(2,"mat-tab"),A.DNE(3,xa,2,1,"ng-template",2),A.nrm(4,"rtl-cln-on-chain-utxos",3),A.k0s(),A.j41(5,"mat-tab"),A.DNE(6,Ko,2,1,"ng-template",2),A.nrm(7,"rtl-cln-on-chain-utxos",3),A.k0s()()()),2&l&&(A.R7$(),A.Y8G("selectedIndex",c.selectedTableIndex),A.R7$(3),A.Y8G("numDustUTXOs",c.numDustUtxos)("isDustUTXO",!1)("dustAmount",c.DUST_AMOUNT),A.R7$(3),A.Y8G("numDustUTXOs",c.numDustUtxos)("isDustUTXO",!0)("dustAmount",c.DUST_AMOUNT))},dependencies:[n.DJ,n.sA,n.UI,jr.k,Y.ES,Y.mq,Y.T8,Wo]})}return i})();const Zo=(i,D)=>[i,D];function qo(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",13),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=null==c?null:c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.Y8G("active",l.activeLink===(null==t?null:t.link))("routerLink",A.l_i(3,Zo,null==t?null:t.link,null==l.selectedTable?null:l.selectedTable.name)),A.R7$(),A.JRh(null==t?null:t.name)}}let _o=(()=>{class i{constructor(t,l,c){this.store=t,this.router=l,this.activatedRoute=c,this.faExchangeAlt=u._qq,this.faChartPie=u.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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(l=>l.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link,this.selectedTable=this.tables.find(j=>j.name===l.urlAfterRedirects.substring(l.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(l=>{this.selNode=l}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[2])).subscribe(l=>{this.balances=[{title:"Total Balance",dataValue:l.balance.totalBalance||0},{title:"Confirmed",dataValue:l.balance.confBalance||0},{title:"Unconfirmed",dataValue:l.balance.unconfBalance||0}]})}openSendFundsModal(t){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:t,component:Da}}}))}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(l=>l.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(le.Ix),A.rXU(le.nX))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain"]],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(l,c){if(1&l){const j=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,qo,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(WA){return A.eBV(j),A.Njj(c.onSelectedTableIndexChanged(WA))}),A.k0s()()()()()}if(2&l){const j=A.sdS(18);A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links),A.R7$(6),A.Y8G("selectedTableIndex",null==c.selectedTable?null:c.selectedTable.id)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,kr.f,le.n3,le.Wk,Xo]})}return i})();function $o(i,D){if(1&i&&(A.j41(0,"span",10),A.EFF(1,"Channels"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activeChannels)}}function A0(i,D){if(1&i&&(A.j41(0,"span",10),A.EFF(1,"Peers"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activePeers)}}let t0=(()=>{class i{constructor(t,l,c){this.store=t,this.logger=l,this.router=c,this.activePeers=0,this.activeChannels=0,this.faUsers=u.gdJ,this.faChartPie=u.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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t instanceof le.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.activeChannels=t.activeChannels.length||0}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.balance.totalBalance||0},{title:"Confirmed",dataValue:t.balance.confBalance||0},{title:"Unconfirmed",dataValue:t.balance.unconfBalance||0}]})}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(C.gP),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-connections"]],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(l,c){1&l&&(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(PA){return A.DH7(c.activeLink,PA)||(c.activeLink=PA),PA}),A.bIt("selectedTabChange",function(PA){return c.onSelectedTabChange(PA)}),A.j41(16,"mat-tab"),A.DNE(17,$o,2,1,"ng-template",8),A.k0s(),A.j41(18,"mat-tab"),A.DNE(19,A0,2,1,"ng-template",8),A.k0s()(),A.j41(20,"div",9),A.nrm(21,"router-outlet"),A.k0s()()()()),2&l&&(A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faUsers),A.R7$(6),A.R50("selectedIndex",c.activeLink))},dependencies:[Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,jr.k,Y.ES,Y.mq,Y.T8,kr.f,le.n3]})}return i})();function e0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let n0=(()=>{class i{constructor(t,l,c){this.logger=t,this.store=l,this.router=c,this.faExchangeAlt=u._qq,this.faChartPie=u.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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link,this.routerUrl=l.urlAfterRedirects}}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(l=>{if(this.selNode=l,this.selNode&&this.selNode.settings.enableOffers){this.store.dispatch((0,_.Eb)()),this.store.dispatch((0,_.Ml)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const c=this.links.find(j=>this.router.url.includes(j.link));this.activeLink=c?c.link:this.links[0].link}}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[2]),(0,f.E)(this.store.select(d._c))).subscribe(([l,c])=>{this.currencyUnits=c?.settings.currencyUnits||[],this.balances=c&&c.settings.userPersona===r.HW.OPERATOR?[{title:"Local Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(l)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-transactions"]],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,"active","routerLink","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","active","routerLink"]],template:function(l,c){if(1&l&&(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,e0,2,3,"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&l){const j=A.sdS(18);A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,kr.f,le.n3,le.Wk]})}return i})();function i0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let wr=(()=>{class i{constructor(t){this.router=t,this.faMapSigns=u.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 o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing"]],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,"active","routerLink","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","active","routerLink"]],template:function(l,c){if(1&l&&(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,i0,2,3,"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&l){const j=A.sdS(12);A.R7$(2),A.Y8G("icon",c.faMapSigns),A.R7$(7),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();function Wr(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 1"),A.k0s())}function dr(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 1 (Your Node)"),A.k0s())}function Ya(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 2"),A.k0s())}function r0(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 2 (Your Node)"),A.k0s())}function Qr(i,D){if(1&i&&(A.j41(0,"div",1),A.nrm(1,"mat-divider"),A.j41(2,"div",2)(3,"div",3)(4,"div",4),A.DNE(5,Wr,2,0,"h3",5)(6,dr,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,Ya,2,0,"h3",5)(103,r0,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&i){const t=A.XpG();A.R7$(5),A.Y8G("ngIf",!t.node1_match),A.R7$(),A.Y8G("ngIf",t.node1_match),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].short_channel_id),A.R7$(6),A.JRh(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(25,32,1e3*(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(32,35,(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(39,38,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(46,40,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(53,42,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].channel_flags)),A.R7$(7),A.JRh(A.bMT(60,44,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].delay)),A.R7$(7),A.JRh(A.bMT(67,46,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(74,48,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(81,50,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].message_flags)),A.R7$(7),A.JRh(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].public?"Yes":"No"),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].source),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].destination),A.R7$(3),A.Y8G("ngIf",!t.node2_match),A.R7$(),A.Y8G("ngIf",t.node2_match),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].short_channel_id),A.R7$(6),A.JRh(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(122,52,1e3*(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(129,55,(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(136,58,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(143,60,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(150,62,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].channel_flags)),A.R7$(7),A.JRh(A.bMT(157,64,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].delay)),A.R7$(7),A.JRh(A.bMT(164,66,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(171,68,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(178,70,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].message_flags)),A.R7$(7),A.JRh(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].public?"Yes":"No"),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].source),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].destination)}}let Un=(()=>{class i{constructor(t){this.store=t,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===t.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===t.id&&(this.node2_match=!0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},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(l,c){1&l&&A.DNE(0,Qr,197,72,"div",0),2&l&&A.Y8G("ngIf",c.lookupResult)},dependencies:[st.bT,n.DJ,n.sA,n.UI,ri.q,st.QX,st.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 i})();const si=["peersForm"],Kr=["stepper"],Xr=(i,D)=>({"mr-6":i,"mr-2":D});function Zr(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG();A.JRh(t.peerFormLabel)}}function a0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Address is required."),A.k0s())}function Vi(i,D){if(1&i&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.peerConnectionError)}}function Sa(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG();A.JRh(t.channelFormLabel)}}function s0(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faInfoCircle),A.R7$(6),A.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),A.R7$(2),A.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),A.R7$(2),A.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function o0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function l0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount must be a positive number."),A.k0s())}function c0(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function g0(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function B0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function u0(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function f0(i,D){if(1&i&&(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,B0,2,0,"mat-error",15)(7,u0,2,1,"mat-error",15),A.k0s()),2&i){const t=A.XpG();A.R7$(3),A.Y8G("step",1)("min",t.recommendedFee.minimumFee||0),A.R7$(2),A.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===t.channelFormGroup.controls.selFeeRate.value&&!t.channelFormGroup.controls.flgMinConf.value&&!t.channelFormGroup.controls.customFeeRate.value),A.R7$(),A.Y8G("ngIf",t.channelFormGroup.controls.customFeeRate.value&&(null==t.channelFormGroup.controls.customFeeRate.errors?null:t.channelFormGroup.controls.customFeeRate.errors.minimum))}}function h0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function E0(i,D){if(1&i&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.channelConnectionError)}}let Na=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe){this.dialogRef=t,this.data=l,this.store=c,this.formBuilder=j,this.actions=PA,this.logger=WA,this.commonService=an,this.dataService=fe,this.faExclamationTriangle=u.zpE,this.faInfoCircle=u.iW_,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=r.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=r.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.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:["",[iA.k0.required]],peerAddress:[this.peerAddress,[iA.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[iA.k0.required,iA.k0.min(1),iA.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[iA.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.channelFormGroup.controls.isPrivate.setValue(!!t?.settings.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{t?(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([iA.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,g.Q)(this.unSubs[2])).subscribe(t=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==t||this.channelFormGroup.controls.flgMinConf.value?null:[iA.k0.required])}),this.actions.pipe((0,g.Q)(this.unSubs[3]),(0,v.p)(t=>t.type===r.TC.NEWLY_ADDED_PEER_CLN||t.type===r.TC.FETCH_CHANNELS_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.NEWLY_ADDED_PEER_CLN&&(this.logger.info(t.payload),this.flgEditable=!1,this.newlyAddedPeer=t.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),t.type===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close(),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&("SaveNewPeer"===t.payload.action?this.peerConnectionError=t.payload.message:"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[4])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,_.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,_.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(t){switch(t.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)"}t.selectedIndex{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(iA.ze),A.rXU(fA.En),A.rXU(C.gP),A.rXU(h.h),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(l,c){if(1&l&&(A.GBs(si,5),A.GBs(Kr,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.stepper=j.first)}},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,"fxFlex"],["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(l,c){if(1&l){const j=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 A.eBV(j),A.Njj(c.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(WA){return A.eBV(j),A.Njj(c.stepSelectionChanged(WA))}),A.j41(12,"mat-step",10)(13,"form",11),A.DNE(14,Zr,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,a0,2,0,"mat-error",15),A.k0s(),A.DNE(20,Vi,4,2,"div",16),A.j41(21,"div",17)(22,"button",18),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onConnectPeer())}),A.EFF(23),A.k0s()()()(),A.j41(24,"mat-step",10)(25,"form",19),A.bIt("ngSubmit",function(){return A.eBV(j),A.Njj(c.onOpenChannel())}),A.DNE(26,Sa,1,1,"ng-template",20),A.j41(27,"div",21),A.DNE(28,s0,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,o0,2,0,"mat-error",15)(40,l0,2,0,"mat-error",15)(41,c0,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,g0,2,2,"mat-option",33),A.k0s()(),A.DNE(52,f0,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,h0,2,0,"mat-error",15),A.k0s()()()(),A.DNE(60,E0,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&l&&(A.R7$(10),A.Y8G("linear",!0),A.R7$(2),A.Y8G("stepControl",c.peerFormGroup)("editable",c.flgEditable),A.R7$(),A.Y8G("formGroup",c.peerFormGroup),A.R7$(6),A.Y8G("ngIf",null==c.peerFormGroup.controls.peerAddress.errors?null:c.peerFormGroup.controls.peerAddress.errors.required),A.R7$(),A.Y8G("ngIf",""!==c.peerConnectionError),A.R7$(3),A.JRh(""!==c.peerConnectionError?"Retry":"Add Peer"),A.R7$(),A.Y8G("stepControl",c.channelFormGroup)("editable",c.flgEditable),A.R7$(),A.Y8G("formGroup",c.channelFormGroup),A.R7$(3),A.Y8G("ngIf",c.recommendedFee.minimumFee),A.R7$(5),A.Y8G("step",1e3),A.R7$(2),A.SpI("Remaining: ",A.bMT(36,28,c.totalBalance-(c.channelFormGroup.controls.fundingAmount.value?c.channelFormGroup.controls.fundingAmount.value:0)),""),A.R7$(4),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.required),A.R7$(),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.min),A.R7$(),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.max),A.R7$(6),A.Y8G("fxFlex","customperkb"!==c.channelFormGroup.controls.selFeeRate.value||c.channelFormGroup.controls.flgMinConf.value?"100":"25"),A.R7$(4),A.Y8G("ngForOf",c.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===c.channelFormGroup.controls.selFeeRate.value&&!c.channelFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(30,Xr,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM,c.screenSize===c.screenSizeEnum.MD||c.screenSize===c.screenSizeEnum.LG||c.screenSize===c.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",c.channelFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",c.channelFormGroup.controls.flgMinConf.value&&!c.channelFormGroup.controls.minConfValue.value),A.R7$(),A.Y8G("ngIf",""!==c.channelConnectionError),A.R7$(3),A.JRh(""!==c.channelConnectionError?"Retry":"Open Channel"),A.R7$(2),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(null!=c.newlyAddedPeer&&c.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[st.YU,st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.j4,iA.JD,Q.aY,n.DJ,n.sA,n.UI,I.PW,gA.tx,R.$z,p.m2,p.MM,In.So,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,$.VO,FA.wT,YA.sG,bt.V5,bt.Ti,bt.M6,J.N,BA.V,st.QX]})}return i})();var mr=Pt(9157);const C0=i=>({"background-color":i});function pr(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function Ie(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Type"),A.k0s())}function te(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.type)}}function w0(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Address"),A.k0s())}function ba(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.address)}}function Wi(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Port"),A.k0s())}function Ra(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.port)}}function d0(i,D){1&i&&(A.j41(0,"th",29)(1,"div",30),A.EFF(2,"Actions"),A.k0s()())}function Q0(i,D){if(1&i){const t=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 c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onConnectNode(c))}),A.EFF(5,"Connect"),A.k0s(),A.j41(6,"mat-option",35),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onCopyNodeURI(c))}),A.EFF(7,"Copy URI"),A.k0s()()()()}if(2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(6),A.Y8G("payload",(null==l.lookupResult?null:l.lookupResult.nodeid)+"@"+t.address+":"+t.port)}}function Ta(i,D){1&i&&A.nrm(0,"tr",36)}function m0(i,D){1&i&&A.nrm(0,"tr",37)}function Bn(i,D){if(1&i&&(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,pr,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,Ie,2,0,"th",18)(36,te,2,1,"td",19),A.bVm(),A.qex(37,20),A.DNE(38,w0,2,0,"th",18)(39,ba,2,1,"td",19),A.bVm(),A.qex(40,21),A.DNE(41,Wi,2,0,"th",18)(42,Ra,2,1,"td",19),A.bVm(),A.qex(43,22),A.DNE(44,d0,3,0,"th",23)(45,Q0,8,1,"td",24),A.bVm(),A.DNE(46,Ta,1,0,"tr",25)(47,m0,1,0,"tr",26),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(7),A.JRh(null==t.lookupResult?null:t.lookupResult.alias),A.R7$(),A.Y8G("ngStyle",A.eq3(12,C0,"#"+(null==t.lookupResult?null:t.lookupResult.color))),A.R7$(),A.JRh(null!=t.lookupResult&&t.lookupResult.color?"#"+(null==t.lookupResult?null:t.lookupResult.color):""),A.R7$(5),A.JRh(null==t.lookupResult?null:t.lookupResult.nodeid),A.R7$(7),A.JRh(A.i5U(22,9,1e3*(null==t.lookupResult?null:t.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.R7$(5),A.Y8G("ngForOf",t.featureDescriptions),A.R7$(6),A.Y8G("dataSource",t.addresses),A.R7$(14),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}let qr=(()=>{class i{constructor(t,l,c){this.logger=t,this.snackBar=l,this.store=c,this.featureDescriptions=[],this.addresses=new F.I6([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new o.B]}ngOnInit(){if(this.addresses=new F.I6(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(t,l)=>t[l]&&isNaN(t[l])?t[l].toLocaleLowerCase():t[l]?+t[l]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const t=parseInt(this.lookupResult.features,16);r.TH.forEach(l=>{t&1<{this.information=t.information,this.availableBalance=t.balance.totalBalance||0})}onConnectNode(t){this.store.dispatch((0,AA.xO)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+t.address+":"+t.port},information:this.information,balance:this.availableBalance},component:Na}}}))}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(ki.UG),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(l,c){if(1&l&&A.GBs(z.B4,5),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first)}},inputs:{lookupResult:"lookupResult"},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(l,c){1&l&&A.DNE(0,Bn,48,14,"div",1),2&l&&A.Y8G("ngIf",c.lookupResult)},dependencies:[st.Sq,st.bT,st.B3,n.DJ,n.sA,n.UI,I.eI,ri.q,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,cA.Ld,mr.U,st.vh]})}return i})();const Ua=["form"],Mr=i=>({"mt-1":!0,"mt-2":i});function p0(i,D){if(1&i&&(A.j41(0,"mat-radio-button",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t.id)("checked",l.selectedFieldId===t.id),A.R7$(),A.SpI(" ",t.name," ")}}function Qi(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function $n(i,D){if(1&i&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-node-lookup",26),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("lookupResult",t.nodeLookupValue)}}function oi(i,D){if(1&i&&(A.j41(0,"span",24),A.DNE(1,$n,2,1,"div",25),A.k0s()),2&i){const t=A.XpG(2),l=A.sdS(21);A.R7$(),A.Y8G("ngIf",""!==t.nodeLookupValue.nodeid)("ngIfElse",l)}}function li(i,D){if(1&i&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-channel-lookup",26),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("lookupResult",t.channelLookupValue)}}function M0(i,D){if(1&i&&(A.j41(0,"span",24),A.DNE(1,li,2,1,"div",25),A.k0s()),2&i){const t=A.XpG(2),l=A.sdS(21);A.R7$(),A.Y8G("ngIf",t.channelLookupValue.channels&&t.channelLookupValue.channels.length>0)("ngIfElse",l)}}function I0(i,D){1&i&&(A.j41(0,"span"),A.EFF(1,' fxFlex="100"'),A.j41(2,"h3"),A.EFF(3,"Error! Unable to find details!"),A.k0s()())}function D0(i,D){if(1&i&&(A.j41(0,"div",18)(1,"div",19)(2,"span",20),A.EFF(3),A.k0s()(),A.j41(4,"div",21),A.DNE(5,oi,2,2,"span",22)(6,M0,2,2,"span",22)(7,I0,4,0,"span",23),A.k0s()()),2&i){const t=A.XpG();A.R7$(3),A.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),A.R7$(),A.Y8G("ngSwitch",t.selectedFieldId),A.R7$(),A.Y8G("ngSwitchCase",0),A.R7$(),A.Y8G("ngSwitchCase",1)}}function Ir(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find details!"),A.k0s())}let v0=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.actions=j,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=u.MjD,this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.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,v.p)(t=>t.type===r.TC.SET_LOOKUP_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{if(t.type===r.TC.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof t.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(t.payload[0]));break;case 1:this.channelLookupValue=t.payload.channels&&"object"!=typeof t.payload.channels?{channels:[]}:JSON.parse(JSON.stringify(t.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&"Lookup"===t.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,_.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,_.ij)({payload:{uiMessage:r.MZ.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lookups"]],viewQuery:function(l,c){if(1&l&&A.GBs(Ua,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.selectedFieldId,WA)||(c.selectedFieldId=WA),A.Njj(WA)}),A.bIt("change",function(WA){return A.eBV(j),A.Njj(c.onSelectChange(WA))}),A.DNE(7,p0,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(WA){return A.eBV(j),A.DH7(c.lookupKey,WA)||(c.lookupKey=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.clearLookupValue())}),A.k0s(),A.DNE(13,Qi,2,1,"mat-error",12),A.k0s(),A.j41(14,"div",13)(15,"button",14),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(16,"Clear"),A.k0s(),A.j41(17,"button",15),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onLookup())}),A.EFF(18,"Lookup"),A.k0s()()(),A.DNE(19,D0,8,4,"div",16),A.k0s()()(),A.DNE(20,Ir,2,0,"ng-template",null,2,A.C5r)}2&l&&(A.R7$(6),A.R50("ngModel",c.selectedFieldId),A.R7$(),A.Y8G("ngForOf",c.lookupFields),A.R7$(),A.Y8G("ngClass",A.eq3(7,Mr,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM)),A.R7$(2),A.JRh((null==c.lookupFields[c.selectedFieldId]?null:c.lookupFields[c.selectedFieldId].placeholder)||"Lookup Key"),A.R7$(),A.R50("ngModel",c.lookupKey),A.R7$(2),A.Y8G("ngIf",!c.lookupKey),A.R7$(6),A.Y8G("ngIf",c.flgSetLookupValue))},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,st.fG,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,wA.fg,IA.rl,IA.nJ,IA.TL,wn.VT,wn._g,Un,qr],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})();var Dr=function(i){return i.KB="KB",i.KW="KW",i}(Dr||{});function F0(i,D){if(1&i&&(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&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[0].smoothed_feerate))}}function y0(i,D){if(1&i&&(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&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[1].smoothed_feerate))}}function we(i,D){if(1&i&&(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&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[2].smoothed_feerate))}}function La(i,D){if(1&i&&(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&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[3].smoothed_feerate))}}function x0(i,D){if(1&i&&(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,F0,8,3,"div",15)(69,y0,8,3,"div",15)(70,we,8,3,"div",15)(71,La,8,3,"div",15),A.k0s()()()),2&i){const t=A.XpG();A.R7$(9),A.JRh(A.bMT(10,12,null==t.perkbw?null:t.perkbw.opening)),A.R7$(8),A.JRh(A.bMT(18,14,null==t.perkbw?null:t.perkbw.mutual_close)),A.R7$(8),A.JRh(A.bMT(26,16,null==t.perkbw?null:t.perkbw.unilateral_close)),A.R7$(8),A.JRh(A.bMT(34,18,null==t.perkbw?null:t.perkbw.delayed_to_us)),A.R7$(8),A.JRh(A.bMT(42,20,null==t.perkbw?null:t.perkbw.min_acceptable)),A.R7$(8),A.JRh(A.bMT(50,22,null==t.perkbw?null:t.perkbw.max_acceptable)),A.R7$(9),A.JRh(A.bMT(59,24,null==t.perkbw?null:t.perkbw.htlc_resolution)),A.R7$(8),A.JRh(A.bMT(67,26,null==t.perkbw?null:t.perkbw.penalty)),A.R7$(2),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3)}}function Y0(i,D){if(1&i&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Pa=(()=>{class i{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=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},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(l,c){if(1&l&&A.DNE(0,x0,72,28,"div",1)(1,Y0,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,y.An,HA.oV,st.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();function S0(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(8),A.JRh(A.bMT(9,5,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.R7$(8),A.JRh(A.bMT(17,7,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.R7$(8),A.JRh(A.bMT(25,9,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.R7$(12),A.JRh(A.bMT(37,11,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.R7$(8),A.JRh(A.bMT(45,13,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function N0(i,D){if(1&i&&(A.j41(0,"div",13)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let b0=(()=>{class i{constructor(){}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},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(l,c){if(1&l&&(A.j41(0,"div",1),A.DNE(1,S0,52,15,"div",2)(2,N0,3,1,"ng-template",null,0,A.C5r),A.k0s()),2&l){const j=A.sdS(3);A.R7$(),A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,y.An,HA.oV,st.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();const _r=i=>({"dashboard-card-content":!0,"error-border":i});function vr(i,D){1&i&&A.nrm(0,"mat-progress-bar",19)}function za(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",20),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function R0(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",21),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1])}}function T0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",22),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function U0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[4])}}function L0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[5])}}function P0(i,D){if(1&i&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[4])}}function z0(i,D){if(1&i&&(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,vr,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,za,1,2,"rtl-cln-node-info",14)(13,R0,1,2,"rtl-cln-channel-status-info",15)(14,T0,1,2,"rtl-cln-fee-info",16)(15,U0,1,3,"rtl-cln-fee-rates",17)(16,L0,1,3,"rtl-cln-fee-rates",17)(17,P0,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(4),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,_r,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.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 G0(i,D){if(1&i&&(A.j41(0,"mat-grid-list",2),A.DNE(1,z0,18,15,"mat-grid-tile",3),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngForOf",t.nodeCardsOperator)}}function Fr(i,D){1&i&&A.nrm(0,"mat-progress-bar",19)}function H0(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",20),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function $r(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",21),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1])}}function Ga(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",22),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function k0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[4])}}function Ki(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[4])}}function un(i,D){if(1&i&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[4])}}function yr(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",25),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,Fr,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,H0,1,2,"rtl-cln-node-info",14)(13,$r,1,2,"rtl-cln-channel-status-info",15)(14,Ga,1,2,"rtl-cln-fee-info",16)(15,k0,1,3,"rtl-cln-fee-rates",17)(16,Ki,1,3,"rtl-cln-fee-rates",17)(17,un,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(4),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,_r,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.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 Ha(i,D){if(1&i&&(A.j41(0,"mat-grid-list",2),A.DNE(1,yr,18,15,"mat-grid-tile",3),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngForOf",t.nodeCardsMerchant)}}let j0=(()=>{class i{constructor(t,l,c){this.logger=t,this.commonService=l,this.store=c,this.faBolt=u.zm_,this.faServer=u.D6w,this.faNetworkWired=u.eGi,this.faLink=u.CQO,this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=r.f7,this.userPersonaEnum=r.HW,this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.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(E.RQ).pipe((0,g.Q)(this.unSubs[0]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusNodeInfo.status===r.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=l,this.information=t.information,this.fees=t.fees,this.logger.info(t)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(E.Al))).subscribe(([t,l])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=l.apiCallStatus,this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusLRBal.status===r.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===r.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=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.channelsStatus.active.capacity=l.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=l.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=l.localRemoteBalance.inactiveBalance||0}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusFHistory=t.apiCallStatus,this.apiCallStatusFHistory.status===r.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),t.forwardingHistory&&t.forwardingHistory.listForwards&&t.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=t.forwardingHistory.listForwards.length)}),this.store.select(E.kr).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPerKB=t.apiCallStatus,this.apiCallStatusPerKB.status===r.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=t.feeRatesPerKB}),this.store.select(E.RB).pipe((0,g.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessages[5]="",this.apiCallStatusPerKW=t.apiCallStatus,this.apiCallStatusPerKW.status===r.wn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=t.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-network-info"]],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",3,"feeRates","feeRateStyle","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"],[1,"h-100",3,"feeRates","feeRateStyle","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(l,c){1&l&&(A.j41(0,"div",0),A.DNE(1,G0,2,1,"mat-grid-list",1)(2,Ha,2,1,"mat-grid-list",1),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",c.selNode.settings.userPersona===c.userPersonaEnum.OPERATOR),A.R7$(),A.Y8G("ngIf",c.selNode.settings.userPersona===c.userPersonaEnum.MERCHANT))},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,Q.aY,n.DJ,n.sA,n.UI,I.PW,p.RN,p.m2,m.B_,m.NS,B.HM,ua,Hi,ha,Pa,b0]})}return i})();function O0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let J0=(()=>{class i{constructor(t){this.router=t,this.faUserCheck=u.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-sign-verify-message"]],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,"active","routerLink","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","active","routerLink"]],template:function(l,c){if(1&l&&(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,O0,2,3,"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&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faUserCheck),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var V0=Pt(396),Aa=Pt(283);function W0(i,D){if(1&i&&(A.j41(0,"mat-option",6),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.SpI(" ",t.addressTp," ")}}let K0=(()=>{class i{constructor(t,l){this.store=t,this.clnEffects=l,this.addressTypes=r.Ld,this.selectedAddressType=r.Ld[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,_.XT)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,Fe.s)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,AA.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:V0.f}}}))},0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(Aa.i))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-receive"]],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(l,c){1&l&&(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(PA){return A.DH7(c.selectedAddressType,PA)||(c.selectedAddressType=PA),PA}),A.DNE(6,W0,2,2,"mat-option",4),A.k0s()(),A.j41(7,"div")(8,"button",5),A.bIt("click",function(){return c.onGenerateAddress()}),A.EFF(9,"Generate Address"),A.k0s()()()()),2&l&&(A.R7$(5),A.R50("ngModel",c.selectedAddressType),A.R7$(),A.Y8G("ngForOf",c.addressTypes))},dependencies:[st.Sq,iA.BC,iA.vS,n.DJ,n.sA,n.UI,R.$z,IA.rl,IA.nJ,$.VO,FA.wT]})}return i})(),ka=(()=>{class i{constructor(t,l){this.store=t,this.activatedRoute=l,this.sweepAll=!1,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.activatedRoute.data.pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:this.sweepAll,component:Da}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(le.nX))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-send"]],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(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return c.openSendFundsModal()}),A.EFF(3),A.k0s()()()),2&l&&(A.R7$(3),A.JRh(c.sweepAll?"Sweep All":"Send Funds"))},dependencies:[n.DJ,n.sA,n.UI,R.$z]})}return i})();var ja=Pt(9172),Oa=Pt(6354),Ja=Pt(850),Va=Pt(92);const ci=["form"],X0=(i,D)=>({"mr-6":i,"mr-2":D});function xr(i,D){if(1&i&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(t.alias?t.alias:t.id?t.id:"")}}function Z0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Peer alias is required."),A.k0s())}function q0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Peer not found in the list."),A.k0s())}function _0(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSelectedPeerChanged())}),A.k0s(),A.j41(4,"mat-autocomplete",47,4),A.bIt("optionSelected",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSelectedPeerChanged())}),A.DNE(6,xr,2,2,"mat-option",31),A.nI1(7,"async"),A.k0s(),A.DNE(8,Z0,2,0,"mat-error",21)(9,q0,2,0,"mat-error",21),A.k0s()}if(2&i){const t=A.sdS(5),l=A.XpG();A.R7$(3),A.Y8G("formControl",l.selectedPeer)("matAutocomplete",t),A.R7$(),A.Y8G("displayWith",l.displayFn),A.R7$(2),A.Y8G("ngForOf",A.bMT(7,6,l.filteredPeers)),A.R7$(2),A.Y8G("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.required),A.R7$(),A.Y8G("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.notfound)}}function Wa(i,D){1&i&&A.eu8(0)}function $0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Al(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function tl(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faInfoCircle),A.R7$(6),A.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),A.R7$(2),A.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),A.R7$(2),A.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function el(i,D){if(1&i&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function Ka(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function nl(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function Xa(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.customFeeRate,c)||(j.customFeeRate=c),A.Njj(c)}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6),A.k0s(),A.DNE(7,Ka,2,0,"mat-error",21)(8,nl,2,1,"mat-error",21),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("step",1)("min",t.recommendedFee.minimumFee)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R50("ngModel",t.customFeeRate),A.R7$(3),A.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&t.customFeeRate&&t.customFeeRate{class i{constructor(t,l,c,j,PA,WA,an,fe){this.logger=t,this.dialogRef=l,this.data=c,this.store=j,this.actions=PA,this.decimalPipe=WA,this.commonService=an,this.dataService=fe,this.selectedPeer=new iA.hs,this.faExclamationTriangle=u.zpE,this.faInfoCircle=u.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=r.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=r.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.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(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(c=>{this.selNode=c,this.isPrivate=!!c?.settings.unannouncedChannels}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,v.p)(c=>c.type===r.TC.UPDATE_API_CALL_STATUS_CLN||c.type===r.TC.FETCH_CHANNELS_CLN)).subscribe(c=>{c.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&c.payload.status===r.wn.ERROR&&"SaveNewChannel"===c.payload.action&&(this.channelConnectionError=c.payload.message),c.type===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let t="",l="";this.sortedPeers=this.peers.sort((c,j)=>(t=c.alias?c.alias.toLowerCase():c.id?c.id.toLowerCase():"",l=j.alias?j.alias.toLowerCase():c.id?c.id.toLowerCase():"",tl?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,ja.Z)(""),(0,Oa.T)(c=>"string"==typeof c?c:c.alias?c.alias:c.id),(0,Oa.T)(c=>c?this.filterPeers(c):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(l=>0===l.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.id?t.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 t=this.peers?.filter(l=>l.alias?.length===this.selectedPeer.value.length&&0===l.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].id&&(this.selectedPubkey=t[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(t){t&&(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(l=>l.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"}onUTXOSelectionChange(t){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,c)=>l+(c.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 t={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};t.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(t.utxos=[],this.selUTXOs.forEach(l=>t.utxos.push(l.txid+":"+l.output))),this.store.dispatch((0,_.vL)({payload:t}))}onSelFeeRateChanged(t){this.customFeeRate=null,"customperkb"===t.value&&this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:l=>{this.recommendedFee=l},error:l=>{this.logger.error(l)}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(fA.En),A.rXU(st.QX),A.rXU(h.h),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-open-channel"]],viewQuery:function(l,c){if(1&l&&A.GBs(ci,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},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,"fxFlex"],["tabindex","4",3,"valueChange","selectionChange","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(l,c){if(1&l){const j=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 A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.bIt("submit",function(){return A.eBV(j),A.Njj(c.onOpenChannel())})("reset",function(){return A.eBV(j),A.Njj(c.resetData())}),A.j41(11,"div",14),A.DNE(12,_0,10,8,"mat-form-field",15),A.k0s(),A.DNE(13,Wa,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(WA){return A.eBV(j),A.DH7(c.fundingAmount,WA)||(c.fundingAmount=WA),A.Njj(WA)}),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,$0,2,0,"mat-error",21)(27,Al,2,1,"mat-error",21),A.k0s(),A.j41(28,"div",22)(29,"mat-slide-toggle",23),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.isPrivate,WA)||(c.isPrivate=WA),A.Njj(WA)}),A.EFF(30,"Private Channel"),A.k0s()()(),A.j41(31,"mat-expansion-panel",24),A.bIt("closed",function(){return A.eBV(j),A.Njj(c.onAdvancedPanelToggle(!0))})("opened",function(){return A.eBV(j),A.Njj(c.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,tl,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(WA){return A.eBV(j),A.DH7(c.selFeeRate,WA)||(c.selFeeRate=WA),A.Njj(WA)}),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onSelFeeRateChanged(WA))}),A.DNE(44,el,2,2,"mat-option",31),A.k0s()(),A.DNE(45,Xa,9,7,"mat-form-field",32),A.k0s(),A.j41(46,"div",33)(47,"mat-checkbox",34),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.flgMinConf,WA)||(c.flgMinConf=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.flgMinConf?c.selFeeRate=null:c.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(WA){return A.eBV(j),A.DH7(c.minConfValue,WA)||(c.minConfValue=WA),A.Njj(WA)}),A.k0s(),A.DNE(53,Za,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(WA){return A.eBV(j),A.DH7(c.selUTXOs,WA)||(c.selUTXOs=WA),A.Njj(WA)}),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onUTXOSelectionChange(WA))}),A.j41(58,"mat-select-trigger"),A.EFF(59),A.nI1(60,"number"),A.k0s(),A.DNE(61,qa,3,5,"mat-option",31),A.k0s()(),A.j41(62,"div",39)(63,"mat-slide-toggle",40),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.flgUseAllBalance,WA)||(c.flgUseAllBalance=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.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,rl,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,sl,1,1,"ng-template",null,3,A.C5r)}if(2&l){const j=A.sdS(20),PA=A.sdS(74);A.R7$(5),A.JRh(c.alertTitle),A.R7$(7),A.Y8G("ngIf",!c.peer&&c.peers&&c.peers.length>0),A.R7$(),A.Y8G("ngTemplateOutlet",PA),A.R7$(6),A.Y8G("step",1e3)("min",1)("max",c.totalBalance)("disabled",c.flgUseAllBalance),A.R50("ngModel",c.fundingAmount),A.R7$(3),A.Lme("Remaining: ",A.bMT(23,35,c.totalBalance-(c.fundingAmount?c.fundingAmount:0)),"",c.flgUseAllBalance?". Amount replaced by UTXO balance":"",""),A.R7$(4),A.Y8G("ngIf",(null==j.errors?null:j.errors.required)||!c.fundingAmount),A.R7$(),A.Y8G("ngIf",null==j.errors?null:j.errors.max),A.R7$(2),A.R50("ngModel",c.isPrivate),A.R7$(6),A.JRh(c.advancedTitle),A.R7$(2),A.Y8G("ngIf",c.recommendedFee.minimumFee),A.R7$(3),A.Y8G("fxFlex","customperkb"!==c.selFeeRate||c.flgMinConf?"100":"40"),A.R7$(3),A.Y8G("disabled",c.flgMinConf),A.R50("value",c.selFeeRate),A.R7$(),A.Y8G("ngForOf",c.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===c.selFeeRate&&!c.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(39,X0,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM,c.screenSize===c.screenSizeEnum.MD||c.screenSize===c.screenSizeEnum.LG||c.screenSize===c.screenSizeEnum.XL)),A.R50("ngModel",c.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",c.flgMinConf)("disabled",!c.flgMinConf),A.R50("ngModel",c.minConfValue),A.R7$(2),A.Y8G("ngIf",c.flgMinConf&&!c.minConfValue),A.R7$(4),A.R50("value",c.selUTXOs),A.R7$(2),A.Lme("",A.bMT(60,37,c.totalSelectedUTXOAmount)," Sats (",c.selUTXOs.length>1?c.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",c.utxos),A.R7$(2),A.Y8G("disabled",c.selUTXOs.length<1),A.R50("ngModel",c.flgUseAllBalance),A.R7$(4),A.Y8G("ngIf",""!==c.channelConnectionError)}},dependencies:[st.YU,st.Sq,st.bT,st.T3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.zX,iA.vS,iA.cV,iA.l_,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,p.MM,In.So,Nn.GK,Nn.Z2,Nn.WN,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,ri.q,$.VO,$.$2,FA.wT,YA.sG,HA.oV,Ja.$3,Ja.pN,J.N,Va.z,BA.V,st.Jj,st.QX],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();function $a(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Open"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.openChannels)}}function ol(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Pending/Inactive"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.pendingChannels)}}function ll(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Active HTLCs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activeHTLCs)}}let cl=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.store=l,this.commonService=c,this.router=j,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 o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t instanceof le.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.kQ).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.selNode=l,this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.openChannels=t.activeChannels.length||0,this.pendingChannels=t.pendingChannels.length+t.inactiveChannels.length||0;const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.activeHTLCs=l?.reduce((c,j)=>c+(j.htlcs&&j.htlcs.length>0?j.htlcs.length:0),0),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:_a}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channels-tables"]],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(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return c.onOpenChannel()}),A.EFF(3,"Open Channel"),A.k0s()(),A.j41(4,"div",3)(5,"mat-tab-group",4),A.mxI("selectedIndexChange",function(PA){return A.DH7(c.activeLink,PA)||(c.activeLink=PA),PA}),A.bIt("selectedTabChange",function(PA){return c.onSelectedTabChange(PA)}),A.j41(6,"mat-tab"),A.DNE(7,$a,2,1,"ng-template",5),A.k0s(),A.j41(8,"mat-tab"),A.DNE(9,ol,2,1,"ng-template",5),A.k0s(),A.j41(10,"mat-tab"),A.DNE(11,ll,2,1,"ng-template",5),A.k0s()(),A.j41(12,"div",6),A.nrm(13,"router-outlet"),A.k0s()()()),2&l&&(A.R7$(5),A.R50("selectedIndex",c.activeLink))},dependencies:[n.DJ,n.sA,n.UI,R.$z,jr.k,Y.ES,Y.mq,Y.T8,le.n3]})}return i})();const gl=i=>({"xs-scroll-y":i}),Bl=(i,D)=>({"mt-2":i,"mt-1":D});function ul(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(6),A.JRh(A.i5U(7,4,t.channel.receivable_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(13,7,t.channel.spendable_msat/1e3,"1.0-0")),A.R7$(8),A.JRh(A.i5U(21,10,t.channel.their_reserve_msat/1e3,"1.0-2")),A.R7$(6),A.JRh(A.i5U(27,13,t.channel.our_reserve_msat/1e3,"1.0-2"))}}function As(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function ts(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function fl(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",27),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onCopyChanID(c))}),A.EFF(1,"Copy Short Channel ID"),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("payload",t.channel.short_channel_id)}}function hl(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",28),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onClose())}),A.EFF(1,"OK"),A.k0s()}}let es=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.logger=c,this.commonService=j,this.snackBar=PA,this.router=WA,this.faReceipt=u.Mf0,this.faUpRightFromSquare=u.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=r.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(t){this.snackBar.open("Short channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}onGoToLink(t,l){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:t,lookupValue:l}}),this.onClose()}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.funding_txid,"_blank")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(C.gP),A.rXU(h.h),A.rXU(ki.UG),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-information"]],decls:91,vars:38,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(l,c){if(1&l){const j=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 A.eBV(j),A.Njj(c.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 A.eBV(j),A.Njj(c.onGoToLink("1",c.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 A.eBV(j),A.Njj(c.onGoToLink("0",c.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 A.eBV(j),A.Njj(c.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,ul,29,16,"div",21),A.j41(84,"div",22)(85,"button",23),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onShowAdvanced())}),A.DNE(86,As,2,0,"p",24)(87,ts,2,0,"ng-template",null,0,A.C5r),A.k0s(),A.DNE(89,fl,2,1,"button",25)(90,hl,2,0,"button",26),A.k0s()()()()()}if(2&l){const j=A.sdS(88);A.R7$(4),A.Y8G("icon",c.faReceipt),A.R7$(5),A.Y8G("ngClass",A.eq3(33,gl,c.screenSize===c.screenSizeEnum.XS)),A.R7$(7),A.SpI(" ",c.channel.short_channel_id," "),A.R7$(5),A.JRh(c.channel.alias),A.R7$(7),A.JRh(c.channel.channel_id),A.R7$(7),A.SpI(" ",c.channel.peer_id," "),A.R7$(7),A.SpI(" ",c.channel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+c.selNode.settings.blockExplorerUrl),A.Y8G("icon",c.faUpRightFromSquare),A.R7$(7),A.JRh(A.i5U(51,21,null==c.channel?null:c.channel.state,"_")),A.R7$(6),A.JRh(c.channel.peer_connected?"Yes":"No"),A.R7$(5),A.JRh(c.channel.private?"Yes":"No"),A.R7$(7),A.JRh(A.i5U(69,24,c.channel.to_them_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(75,27,c.channel.to_us_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(81,30,c.channel.total_msat/1e3,"1.0-0")),A.R7$(3),A.Y8G("ngIf",c.showAdvanced),A.R7$(),A.Y8G("ngClass",A.l_i(35,Bl,!c.showAdvanced,c.showAdvanced)),A.R7$(2),A.Y8G("ngIf",!c.showAdvanced)("ngIfElse",j),A.R7$(3),A.Y8G("ngIf",c.showCopy),A.R7$(),A.Y8G("ngIf",!c.showCopy)}},dependencies:[st.YU,st.bT,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,p.MM,ri.q,HA.oV,mr.U,J.N,st.QX,yA.VD]})}return i})();const nn=()=>["all"],mi=i=>({"error-border":i}),El=()=>["no_peer"],Ni=i=>({width:i}),Cl=i=>({"display-none":i});function wl(i,D){if(1&i&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function ns(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function dl(i,D){1&i&&A.nrm(0,"th",41)}function Ql(i,D){if(1&i&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEyeSlash)}}function is(i,D){if(1&i&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEye)}}function ml(i,D){if(1&i&&(A.j41(0,"td",42),A.DNE(1,Ql,2,1,"span",43)(2,is,2,1,"span",44),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.private),A.R7$(),A.Y8G("ngIf",!t.private)}}function pi(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Short Channel ID"),A.k0s())}function pl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.short_channel_id)}}function Ml(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function Il(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Dl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function rs(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function ta(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function Ai(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.channel_id)}}function vl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Fl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.funding_txid)}}function yl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function xl(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.connected?"Connected":"Disconnected")}}function Hl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function Yl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function Sl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function Nl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function bl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Total (Sats)"),A.k0s())}function as(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Rl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Spendable (Sats)"),A.k0s())}function tA(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function G(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function K(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function M(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function N(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function P(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Balance Score"),A.k0s())}function nA(i,D){if(1&i&&(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&i){const t=D.$implicit;A.R7$(3),A.JRh(A.bMT(4,2,t.balancedness||0)),A.R7$(2),A.FS9("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function oA(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onChannelUpdate("all"))}),A.EFF(5,"Update Fee Policy"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(7,"Download CSV"),A.k0s()()()()}}function lA(i,D){if(1&i){const t=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(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onChannelClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onViewRemotePolicy(c))}),A.EFF(7,"View Remote Fee"),A.k0s(),A.j41(8,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onChannelUpdate(c))}),A.EFF(9,"Update Fee Policy"),A.k0s(),A.j41(10,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onChannelClose(c))}),A.EFF(11,"Close Channel"),A.k0s()()()()}}function sA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function bA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No channel available."),A.k0s())}function KA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting channels..."),A.k0s())}function lt(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function $A(i,D){if(1&i&&(A.j41(0,"td",62),A.DNE(1,sA,2,0,"p",63)(2,bA,2,0,"p",63)(3,KA,2,0,"p",63)(4,lt,2,1,"p",63),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function ct(i,D){if(1&i&&A.nrm(0,"tr",64),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Cl,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function mt(i,D){1&i&&A.nrm(0,"tr",65)}function It(i,D){1&i&&A.nrm(0,"tr",66)}let Gt=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.rtlEffects=c,this.clnEffects=j,this.commonService=PA,this.camelCaseWithReplace=WA,this.faEye=u.pS3,this.faEyeSlash=u.k6j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new F.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.G,this.selFilter="",this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.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(E.GX).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.activeChannels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.selNode=t})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,_.ij)({payload:{uiMessage:r.MZ.GET_REMOTE_POLICY,shortChannelID:t.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,Fe.s)(1)).subscribe(l=>{if(l.channels&&0===l.channels.length)return!1;let c={};c=l.channels[0].source!==this.information.id?l.channels[0]:l.channels[1];const j=[[{key:"base_fee_millisatoshi",value:c.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:r.UN.NUMBER},{key:"fee_per_millionth",value:c.fee_per_millionth,title:"Fee/Millionth",width:33,type:r.UN.NUMBER},{key:"delay",value:c.delay,title:"Delay",width:33,type:r.UN.NUMBER}]],PA="Remote policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id);setTimeout(()=>{this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:PA,message:j}}}))},0)})}onChannelUpdate(t){"all"!==t&&"ONCHAIN"===t.state||("all"===t?(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.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:r.UN.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.UN.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[4])).subscribe(l=>{l&&this.store.dispatch((0,_.fy)({payload:{feebase:l[0].inputValue,feeppm:l[1].inputValue,id:"all"}}))})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"Update fee policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:r.UN.NUMBER,inputValue:""===t.fee_base_msat?0:t.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.UN.NUMBER,inputValue:t.fee_proportional_millionths,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(j=>{j&&this.store.dispatch((0,_.fy)({payload:{feebase:j[0].inputValue,feeppm:j[1].inputValue,id:t.channel_id}}))})),this.applyFilter())}percentHintFunction(t){return(t/1e4).toString()+"%"}onChannelClose(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[6])).subscribe(l=>{l&&this.store.dispatch((0,_.w0)({payload:{id:t.id||"",channelId:t.channel_id||"",force:!1}}))})}onChannelClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,selNode:this.selNode,showCopy:!0,component:es}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.peer_connected?"connected":"disconnected")+(t.channel_id?t.channel_id.toLowerCase():"")+(t.short_channel_id?t.short_channel_id.toLowerCase():"")+(t.id?t.id.toLowerCase():"")+(t.alias?t.alias.toLowerCase():"")+(t.private?"private":"public")+(t.state?t.state.toLowerCase():"")+(t.funding_txid?t.funding_txid.toLowerCase():"")+(t.to_them_msat?t.to_them_msat/1e3:"")+(t.to_us_msat?t.to_us_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":c=t?.private?"private":"public";break;case"connected":c=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":c=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":c=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":c=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":c=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":c=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":c=((t.their_reserve_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadChannelsTable(t){this.channels=new F.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(Aa.i),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,wl,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.DNE(14,ns,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,dl,1,0,"th",13)(20,ml,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,pi,2,0,"th",16)(23,pl,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,Ml,2,0,"th",16)(26,Il,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Dl,2,0,"th",16)(29,rs,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,ta,2,0,"th",16)(32,Ai,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,vl,2,0,"th",16)(35,Fl,4,4,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,yl,2,0,"th",16)(38,xl,2,1,"td",14),A.bVm(),A.qex(39,22),A.DNE(40,Hl,2,0,"th",23)(41,Yl,4,4,"td",14),A.bVm(),A.qex(42,24),A.DNE(43,Sl,2,0,"th",23)(44,Nl,4,4,"td",14),A.bVm(),A.qex(45,25),A.DNE(46,bl,2,0,"th",23)(47,as,4,4,"td",14),A.bVm(),A.qex(48,26),A.DNE(49,Rl,2,0,"th",23)(50,tA,4,4,"td",14),A.bVm(),A.qex(51,27),A.DNE(52,G,2,0,"th",23)(53,K,4,4,"td",14),A.bVm(),A.qex(54,28),A.DNE(55,M,2,0,"th",23)(56,N,4,4,"td",14),A.bVm(),A.qex(57,29),A.DNE(58,P,2,0,"th",16)(59,nA,6,4,"td",14),A.bVm(),A.qex(60,30),A.DNE(61,oA,8,0,"th",31)(62,lA,12,0,"td",32),A.bVm(),A.qex(63,33),A.DNE(64,$A,5,4,"td",34),A.bVm(),A.DNE(65,ct,1,3,"tr",35)(66,mt,1,0,"tr",36)(67,It,1,0,"tr",37),A.k0s()(),A.nrm(68,"mat-paginator",38),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,nn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,mi,""!==c.errorMessage)),A.R7$(49),A.Y8G("matFooterRowDef",A.lJ4(17,El)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,IA.MV,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld,st.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 i})();const _t=["outputIdx"];function qt(i,D){if(1&i&&(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&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(4),A.JRh(A.bMT(6,2,t.dustOutputValue))}}function re(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Output Index required."),A.k0s())}function ce(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Invalid index value."),A.k0s())}function Ce(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fees is required."),A.k0s())}function de(i,D){if(1&i&&(A.j41(0,"div",28),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.bumpFeeError)}}let Ge=(()=>{class i{set outputIndx(t){t&&(this.outputIdx=t)}constructor(t,l,c,j,PA,WA){this.actions=t,this.dialogRef=l,this.data=c,this.store=j,this.logger=PA,this.dataService=WA,this.faUpRightFromSquare=u.k02,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=u.jPR,this.faInfoCircle=u.iW_,this.faExclamationTriangle=u.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.bumpFeeChannel=this.data.channel,this.logger.info(this.bumpFeeChannel),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[1])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:t=>{this.outputIndex=0===t.vout.findIndex(l=>l.value===this.bumpFeeChannel.to_us_msat)?1:0,this.dustOutputValue=t.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:t=>{this.logger.error(t)}})}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,_.XT)({payload:r.Ld[0]})),this.actions.pipe((0,v.p)(t=>t.type===r.TC.SET_NEW_ADDRESS_CLN),(0,Fe.s)(1)).subscribe(t=>{this.store.dispatch((0,_.aB)({payload:{destination:t.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString()+"perkb",utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,v.p)(t=>t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN),(0,Fe.s)(1)).subscribe(t=>{this.store.dispatch((0,AA.UI)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN),(0,g.Q)(this.unSubs[3])).subscribe(t=>{t.payload.status===r.wn.ERROR&&("SetChannelTransaction"===t.payload.action||"GenerateNewAddress"===t.payload.action)&&(this.logger.error(t.payload.message),this.bumpFeeError=t.payload.message)})}onExplorerClicked(t){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+t,"_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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(fA.En),A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(C.gP),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(l,c){if(1&l&&A.GBs(_t,5),2&l){let j;A.mGM(j=A.lsd())&&(c.outputIndx=j.first)}},decls:47,vars:19,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(l,c){if(1&l){const j=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 A.eBV(j),A.Njj(c.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 A.eBV(j),A.Njj(c.onExplorerClicked(null==c.bumpFeeChannel?null:c.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,qt,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(WA){return A.eBV(j),A.DH7(c.outputIndex,WA)||(c.outputIndex=WA),A.Njj(WA)}),A.k0s(),A.DNE(33,re,2,0,"mat-error",21)(34,ce,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(WA){return A.eBV(j),A.DH7(c.fees,WA)||(c.fees=WA),A.Njj(WA)}),A.k0s(),A.DNE(40,Ce,2,0,"mat-error",21),A.k0s()(),A.DNE(41,de,4,2,"div",23),A.k0s()(),A.j41(42,"div",24)(43,"button",25),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(44,"Clear"),A.k0s(),A.j41(45,"button",26),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onBumpFee())}),A.EFF(46),A.k0s()()()()()()}if(2&l){const j=A.sdS(32);A.R7$(12),A.SpI("Bump fee for transaction id: ",null==c.bumpFeeChannel?null:c.bumpFeeChannel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+c.selNode.settings.blockExplorerUrl),A.Y8G("icon",c.faUpRightFromSquare),A.R7$(3),A.Y8G("icon",c.faInfoCircle),A.R7$(5),A.SpI("- High: ",c.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",c.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",c.recommendedFee.hourFee||"Unknown",""),A.R7$(),A.Y8G("ngIf",c.flgShowDustWarning),A.R7$(5),A.Y8G("step",1)("min",0),A.R50("ngModel",c.outputIndex),A.R7$(2),A.Y8G("ngIf",null==j.errors?null:j.errors.required),A.R7$(),A.Y8G("ngIf",null==j.errors?null:j.errors.pendingChannelOutputIndex),A.R7$(4),A.Y8G("step",1)("min",0),A.R50("ngModel",c.fees),A.R7$(2),A.Y8G("ngIf",!c.fees),A.R7$(),A.Y8G("ngIf",""!==c.bumpFeeError),A.R7$(5),A.JRh(""!==c.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,R.$z,p.m2,p.MM,wA.fg,IA.rl,IA.nJ,IA.TL,HA.oV,J.N,BA.V,st.QX]})}return i})();const rn=()=>["all"],Ue=i=>({"error-border":i}),he=()=>["no_peer"],Je=i=>({width:i}),He=i=>({"display-none":i});function ke(i,D){if(1&i&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function pe(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function Le(i,D){1&i&&A.nrm(0,"th",41)}function _e(i,D){if(1&i&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEyeSlash)}}function Ee(i,D){if(1&i&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEye)}}function $e(i,D){if(1&i&&(A.j41(0,"td",42),A.DNE(1,_e,2,1,"span",43)(2,Ee,2,1,"span",44),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.private),A.R7$(),A.Y8G("ngIf",!t.private)}}function Ln(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function fn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Fn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function Rn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function Pn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function pn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.channel_id)}}function zn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Cn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.funding_txid)}}function kn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function De(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.connected?"Connected":"Disconnected")}}function be(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"State"),A.k0s())}function Se(i,D){if(1&i&&(A.j41(0,"td",51),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(),A.JRh(l.CLNChannelPendingState[null==t?null:t.state])}}function Xe(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function je(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function ln(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function ea(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function Gn(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Total (Sats)"),A.k0s())}function na(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function ia(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Spendable (Sats)"),A.k0s())}function Tl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ul(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function Yr(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Xi(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function ra(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Sr(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Nr(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onChannelClose(c))}),A.EFF(1,"Close Channel"),A.k0s()}}function Zi(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onBumpFee(c))}),A.EFF(1,"Bump Fee"),A.k0s()}}function qi(i,D){if(1&i){const t=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(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onChannelClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Nr,2,0,"mat-option",60)(7,Zi,2,0,"mat-option",60),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(6),A.Y8G("ngIf","CHANNELD_SHUTTING_DOWN"===t.state||"CLOSINGD_SIGEXCHANGE"===t.state||!t.connected&&"CHANNELD_NORMAL"===t.state),A.R7$(),A.Y8G("ngIf","CHANNELD_AWAITING_LOCKIN"===t.state)}}function _i(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function $i(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No pending/inactive channel available."),A.k0s())}function Ar(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting pending/inactive channels..."),A.k0s())}function tr(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function er(i,D){if(1&i&&(A.j41(0,"td",61),A.DNE(1,_i,2,0,"p",62)(2,$i,2,0,"p",62)(3,Ar,2,0,"p",62)(4,tr,2,1,"p",62),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function nr(i,D){if(1&i&&A.nrm(0,"tr",63),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,He,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Ei(i,D){1&i&&A.nrm(0,"tr",64)}function ss(i,D){1&i&&A.nrm(0,"tr",65)}let os=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.store=l,this.rtlEffects=c,this.commonService=j,this.camelCaseWithReplace=PA,this.faEye=u.pS3,this.faEyeSlash=u.k6j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new F.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.G,this.selFilter="",this.CLNChannelPendingState=r.Zb,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.GX).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...t.pendingChannels,...t.inactiveChannels],this.channelsData=this.channelsData.sort((l,c)=>this.CLNChannelPendingState[l.state||""]>=this.CLNChannelPendingState[c.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onBumpFee(t){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,component:Ge}}}))}onChannelClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,showCopy:!0,component:es}}}))}onChannelClose(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[3])).subscribe(l=>{l&&this.store.dispatch((0,_.w0)({payload:{id:t.id,channelId:t.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.peer_connected?"connected":"disconnected")+(t.channel_id?t.channel_id.toLowerCase():"")+(t.short_channel_id?t.short_channel_id.toLowerCase():"")+(t.id?t.id.toLowerCase():"")+(t.alias?t.alias.toLowerCase():"")+(t.private?"private":"public")+(t.state&&this.CLNChannelPendingState[t.state]?this.CLNChannelPendingState[t.state].toLowerCase():"")+(t.funding_txid?t.funding_txid.toLowerCase():"")+(t.to_us_msat?t.to_us_msat:"")+(t.to_them_msat?t.to_them_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":c=t?.private?"private":"public";break;case"connected":c=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":c=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":c=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":c=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":c=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":c=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":c=((t.their_reserve_msat||0)/1e3).toString()||"";break;case"state":c=t?.state?this.CLNChannelPendingState[t?.state]:"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy||"state"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadChannelsTable(t){this.channels=new F.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;case"state":return this.CLNChannelPendingState[l.state];default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,ke,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.DNE(14,pe,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,Le,1,0,"th",13)(20,$e,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Ln,2,0,"th",16)(23,fn,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,Fn,2,0,"th",16)(26,Rn,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Pn,2,0,"th",16)(29,pn,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,zn,2,0,"th",16)(32,Cn,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,kn,2,0,"th",16)(35,De,2,1,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,be,2,0,"th",16)(38,Se,2,4,"td",22),A.bVm(),A.qex(39,23),A.DNE(40,Xe,2,0,"th",24)(41,je,4,4,"td",14),A.bVm(),A.qex(42,25),A.DNE(43,ln,2,0,"th",24)(44,ea,4,4,"td",14),A.bVm(),A.qex(45,26),A.DNE(46,Gn,2,0,"th",24)(47,na,4,4,"td",14),A.bVm(),A.qex(48,27),A.DNE(49,ia,2,0,"th",24)(50,Tl,4,4,"td",14),A.bVm(),A.qex(51,28),A.DNE(52,Ul,2,0,"th",24)(53,Yr,4,4,"td",14),A.bVm(),A.qex(54,29),A.DNE(55,Xi,2,0,"th",24)(56,ra,4,4,"td",14),A.bVm(),A.qex(57,30),A.DNE(58,Sr,6,0,"th",31)(59,qi,8,2,"td",32),A.bVm(),A.qex(60,33),A.DNE(61,er,5,4,"td",34),A.bVm(),A.DNE(62,nr,1,3,"tr",35)(63,Ei,1,0,"tr",36)(64,ss,1,0,"tr",37),A.k0s()(),A.nrm(65,"mat-paginator",38),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,rn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,Ue,""!==c.errorMessage)),A.R7$(46),A.Y8G("matFooterRowDef",A.lJ4(17,he)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const ls=()=>["all"],cs=i=>({"error-border":i}),aa=()=>["no_peer"],kl=i=>({"mr-0":i}),Ll=i=>({width:i}),ec=i=>({"display-none":i});function nc(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function ic(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function rc(i,D){1&i&&A.nrm(0,"th",36)}function ac(i,D){if(1&i&&A.nrm(0,"span",40),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kl,t.screenSize===t.screenSizeEnum.XS))}}function sc(i,D){if(1&i&&A.nrm(0,"span",41),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kl,t.screenSize===t.screenSizeEnum.XS))}}function oc(i,D){if(1&i&&(A.j41(0,"td",37),A.DNE(1,ac,1,3,"span",38)(2,sc,1,3,"span",39),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.connected),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.connected))}}function lc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Alias"),A.k0s())}function cc(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function gc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"ID"),A.k0s())}function Bc(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function uc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Network Address"),A.k0s())}function fc(i,D){1&i&&(A.j41(0,"span"),A.EFF(1,","),A.nrm(2,"br"),A.k0s())}function hc(i,D){if(1&i&&(A.j41(0,"span",44),A.EFF(1),A.DNE(2,fc,3,0,"span",46),A.k0s()),2&i){const t=D.$implicit,l=D.last;A.R7$(),A.JRh(t),A.R7$(),A.Y8G("ngIf",!l)}}function Ec(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43),A.DNE(2,hc,3,2,"span",45),A.k0s()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(),A.Y8G("ngForOf",null==t?null:t.netaddr)}}function Cc(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function wc(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onPeerDetach(c))}),A.EFF(1,"Disconnect"),A.k0s()}}function dc(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onConnectPeer(c))}),A.EFF(1,"Reconnect"),A.k0s()}}function Qc(i,D){if(1&i){const t=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(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onPeerClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",50),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOpenChannel(c))}),A.EFF(7,"Open Channel"),A.k0s(),A.DNE(8,wc,2,0,"mat-option",52)(9,dc,2,0,"mat-option",52),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(8),A.Y8G("ngIf",t.connected),A.R7$(),A.Y8G("ngIf",!t.connected)}}function mc(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No connected peer."),A.k0s())}function pc(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting peers..."),A.k0s())}function Mc(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Ic(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,mc,2,0,"p",46)(2,pc,2,0,"p",46)(3,Mc,2,1,"p",46),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Dc(i,D){if(1&i&&A.nrm(0,"tr",54),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,ec,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function vc(i,D){1&i&&A.nrm(0,"tr",55)}function Fc(i,D){1&i&&A.nrm(0,"tr",56)}let yc=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.rtlEffects=c,this.actions=j,this.commonService=PA,this.camelCaseWithReplace=WA,this.faUsers=u.gdJ,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new F.I6([]),this.utxos=[],this.information={},this.availableBalance=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.kQ).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.availableBalance=t.balance.totalBalance||0}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers||[],this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.SET_PEERS_CLN)).subscribe(t=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",showQRName:"Public Key",showQRField:t.id,message:[[{key:"id",value:t.id,title:"Public Key",width:100}],[{key:"netaddr",value:t.netaddr,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:50},{key:"connected",value:t.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(t){this.store.dispatch((0,AA.xO)({payload:{data:{message:{peer:t.id?t:null,information:this.information,balance:this.availableBalance},component:Na}}}))}onOpenChannel(t){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:_a}}}))}onPeerDetach(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(c=>{c&&this.store.dispatch((0,_.ed)({payload:{id:t.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"connected":c=t?.connected?"connected":"disconnected";break;case"netaddr":c=t.netaddr?t.netaddr.reduce((j,PA)=>j+PA," "):"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadPeersTable(t){this.peers=new F.I6([...t]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(l,c)=>{if("netaddr"===c){if(l.netaddr&&l.netaddr[0]){const j=l.netaddr[0].toString().split(".");return j[0]?+j[0]:l.netaddr[0]}return""}return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(fA.En),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-peers"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"button",4),A.bIt("click",function(){return A.eBV(j),A.Njj(c.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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(16,"perfect-scrollbar"),A.DNE(17,nc,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(22,"div",15),A.DNE(23,ic,1,0,"mat-progress-bar",16),A.j41(24,"table",17,1),A.qex(26,18),A.DNE(27,rc,1,0,"th",19)(28,oc,3,2,"td",20),A.bVm(),A.qex(29,21),A.DNE(30,lc,2,0,"th",22)(31,cc,4,4,"td",20),A.bVm(),A.qex(32,23),A.DNE(33,gc,2,0,"th",22)(34,Bc,4,4,"td",20),A.bVm(),A.qex(35,24),A.DNE(36,uc,2,0,"th",22)(37,Ec,3,4,"td",20),A.bVm(),A.qex(38,25),A.DNE(39,Cc,6,0,"th",26)(40,Qc,10,2,"td",27),A.bVm(),A.qex(41,28),A.DNE(42,Ic,4,3,"td",29),A.bVm(),A.DNE(43,Dc,1,3,"tr",30)(44,vc,1,0,"tr",31)(45,Fc,1,0,"tr",32),A.k0s()(),A.nrm(46,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(8),A.Y8G("icon",c.faUsers),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,ls).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.peers)("ngClass",A.eq3(16,cs,""!==c.errorMessage)),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(18,aa)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.BC,iA.cb,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const xc=["queryRoutesForm"],Yc=i=>({"overflow-auto error-border":i,"overflow-auto":!0}),jl=i=>({width:i});function Sc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Destination pubkey is required."),A.k0s())}function Nc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function bc(i,D){1&i&&A.nrm(0,"mat-progress-bar",36)}function Rc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"ID"),A.k0s())}function Tc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function Uc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Alias"),A.k0s())}function Lc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Pc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Channel"),A.k0s())}function zc(i,D){if(1&i&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.channel)}}function Gc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Direction"),A.k0s())}function Hc(i,D){if(1&i&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.direction)}}function kc(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Delay"),A.k0s())}function jc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI("",A.bMT(3,1,null==t?null:t.delay)," ")}}function Oc(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Amount (Sats)"),A.k0s())}function Jc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,(null==t?null:t.amount_msat)/1e3))}}function Vc(i,D){1&i&&(A.j41(0,"th",43)(1,"div",44),A.EFF(2,"Actions"),A.k0s()())}function Wc(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",45)(1,"button",46),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onHopClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function Kc(i,D){1&i&&A.nrm(0,"tr",47)}function Xc(i,D){1&i&&A.nrm(0,"tr",48)}let Zc=(()=>{class i{constructor(t,l,c){this.store=t,this.clnEffects=l,this.commonService=c,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:r.md,sortBy:"id",sortOrder:r.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new F.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=u.TBz,this.faExclamationTriangle=u.zpE,this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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,g.Q)(this.unSubs[1])).subscribe(t=>{this.qrHops.data=[],t.route&&t.route.length&&t.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new F.I6([...t.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,_.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(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:t.id,title:"ID",width:100,type:r.UN.STRING}],[{key:"channel",value:t.channel,title:"Channel",width:50,type:r.UN.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:r.UN.STRING}],[{key:"amount_msat",value:t.amount_msat,title:"Amount (mSat)",width:34,type:r.UN.NUMBER},{key:"direction",value:t.direction,title:"Direction",width:33,type:r.UN.STRING},{key:"delay",value:t.delay,title:"Delay",width:33,type:r.UN.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(Aa.i),A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-query-routes"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(xc,7)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.form=j.first)}},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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",3)(1,"form",4,0),A.bIt("ngSubmit",function(){A.eBV(j);const WA=A.sdS(2);return A.Njj(WA.form.valid&&c.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(WA){return A.eBV(j),A.DH7(c.destinationPubkey,WA)||(c.destinationPubkey=WA),A.Njj(WA)}),A.k0s(),A.DNE(12,Sc,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(WA){return A.eBV(j),A.DH7(c.amount,WA)||(c.amount=WA),A.Njj(WA)}),A.k0s(),A.DNE(17,Nc,2,0,"mat-error",9),A.k0s(),A.j41(18,"div",12)(19,"button",13),A.bIt("click",function(){return A.eBV(j),A.Njj(c.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,bc,1,0,"mat-progress-bar",20),A.j41(30,"table",21,2),A.qex(32,22),A.DNE(33,Rc,2,0,"th",23)(34,Tc,4,4,"td",24),A.bVm(),A.qex(35,25),A.DNE(36,Uc,2,0,"th",23)(37,Lc,4,4,"td",24),A.bVm(),A.qex(38,26),A.DNE(39,Pc,2,0,"th",23)(40,zc,2,1,"td",24),A.bVm(),A.qex(41,27),A.DNE(42,Gc,2,0,"th",23)(43,Hc,2,1,"td",24),A.bVm(),A.qex(44,28),A.DNE(45,kc,2,0,"th",29)(46,jc,4,3,"td",24),A.bVm(),A.qex(47,30),A.DNE(48,Oc,2,0,"th",29)(49,Jc,4,3,"td",24),A.bVm(),A.qex(50,31),A.DNE(51,Vc,3,0,"th",32)(52,Wc,3,0,"td",33),A.bVm(),A.DNE(53,Kc,1,0,"tr",34)(54,Xc,1,0,"tr",35),A.k0s()()()}2&l&&(A.R7$(4),A.Y8G("icon",c.faExclamationTriangle),A.R7$(6),A.R50("ngModel",c.destinationPubkey),A.R7$(2),A.Y8G("ngIf",!c.destinationPubkey),A.R7$(4),A.Y8G("step",1e3)("min",0),A.R50("ngModel",c.amount),A.R7$(),A.Y8G("ngIf",!c.amount),A.R7$(8),A.Y8G("icon",c.faRoute),A.R7$(4),A.Y8G("ngIf",!0===c.flgLoading[0]),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.qrHops)("ngClass",A.eq3(15,Yc,"error"===c.flgLoading[0])),A.R7$(23),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns))},dependencies:[st.YU,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.TL,B.HM,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,cA.Ld,BA.V,st.QX]})}return i})();function qc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}let _c=(()=>{class i{constructor(t,l,c){this.dataService=t,this.snackBar=l,this.logger=c,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new o.B,new o.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(Qe.u),A.rXU(ki.UG),A.rXU(C.gP))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-sign"]],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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.message,WA)||(c.message=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onMessageChange())}),A.k0s(),A.DNE(7,qc,2,0,"mat-error",5),A.k0s(),A.j41(8,"div",6)(9,"button",7),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(10,"Clear Field"),A.k0s(),A.j41(11,"button",8),A.bIt("click",function(){return A.eBV(j),A.Njj(c.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(WA){return A.eBV(j),A.Njj(c.onCopyField(WA))}),A.EFF(21,"Copy Signature"),A.k0s()()()()}2&l&&(A.R7$(6),A.R50("ngModel",c.message),A.R7$(),A.Y8G("ngIf",!c.message),A.R7$(11),A.JRh(c.signature),A.R7$(2),A.Y8G("payload",c.signature))},dependencies:[st.bT,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,R.$z,wA.fg,IA.rl,IA.nJ,IA.TL,ri.q,mr.U,J.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return i})();function $c(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}function Ag(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Signature is required."),A.k0s())}function tg(i,D){1&i&&(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 eg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Pubkey Used"),A.k0s())}function ng(i,D){if(1&i&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(2),A.JRh(null==t.verifyRes?null:t.verifyRes.pubkey)}}function ig(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",21)(1,"button",22),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onCopyField(c))}),A.EFF(2,"Copy Pubkey"),A.k0s()()}if(2&i){const t=A.XpG(2);A.R7$(),A.Y8G("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function rg(i,D){if(1&i&&(A.j41(0,"div",15),A.nrm(1,"mat-divider",16),A.j41(2,"div",17),A.DNE(3,eg,2,0,"p",6),A.k0s(),A.DNE(4,ng,3,1,"div",18)(5,ig,3,1,"div",19),A.k0s()),2&i){const t=A.XpG();A.R7$(3),A.Y8G("ngIf",t.verifyRes.verified),A.R7$(),A.Y8G("ngIf",t.verifyRes.verified),A.R7$(),A.Y8G("ngIf",t.verifyRes.verified)}}let ag=(()=>{class i{constructor(t,l,c){this.dataService=t,this.snackBar=l,this.logger=c,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new o.B,new o.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(t=>{this.verifyRes=t,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(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(Qe.u),A.rXU(ki.UG),A.rXU(C.gP))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-verify"]],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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.message,WA)||(c.message=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onChange())}),A.k0s(),A.DNE(7,$c,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(WA){return A.eBV(j),A.DH7(c.signature,WA)||(c.signature=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onChange())}),A.k0s(),A.DNE(13,Ag,2,0,"mat-error",6),A.k0s(),A.DNE(14,tg,4,0,"p",8),A.j41(15,"div",9)(16,"button",10),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(17,"Clear Fields"),A.k0s(),A.j41(18,"button",11),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onVerify())}),A.EFF(19,"Verify"),A.k0s()(),A.DNE(20,rg,6,3,"div",12),A.k0s()()}2&l&&(A.R7$(6),A.R50("ngModel",c.message),A.R7$(),A.Y8G("ngIf",!c.message),A.R7$(4),A.R50("ngModel",c.signature),A.R7$(2),A.Y8G("ngIf",!c.signature),A.R7$(),A.Y8G("ngIf",c.showVerifyStatus&&!c.verifyRes.verified),A.R7$(6),A.Y8G("ngIf",c.showVerifyStatus&&c.verifyRes.verified))},dependencies:[st.bT,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,R.$z,y.An,wA.fg,IA.rl,IA.nJ,IA.TL,ri.q,mr.U,J.N]})}return i})();const sg=()=>["all"],og=()=>["no_event"],Pl=i=>({width:i}),lg=i=>({"display-none":i});function cg(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function gg(i,D){if(1&i&&(A.j41(0,"mat-option",14),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Bg(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(7,"perfect-scrollbar"),A.DNE(8,gg,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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()}if(2&i){const t=A.XpG();A.R7$(6),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(3,sg).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function ug(i,D){1&i&&A.nrm(0,"mat-progress-bar",39)}function fg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Received Time"),A.k0s())}function hg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Eg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Resolved Time"),A.k0s())}function Cg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function wg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"In Channel ID"),A.k0s())}function dg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function Qg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"In Channel"),A.k0s())}function mg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function pg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Out Channel ID"),A.k0s())}function Mg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function Ig(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Out Channel"),A.k0s())}function Dg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function vg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Payment Hash"),A.k0s())}function Fg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function yg(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Amount In (Sats)"),A.k0s())}function xg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Yg(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function Sg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ng(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Fee (mSat)"),A.k0s())}function bg(i,D){if(1&i&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.fee)," ")}}function Rg(i,D){if(1&i&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.fee_msat)," ")}}function Tg(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,bg,3,3,"span",46)(2,Rg,3,3,"span",46),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.fee),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function Ug(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Lg(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG(2);return A.Njj(PA.onForwardingEventClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function Pg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No forwarding history available."),A.k0s())}function zg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting forwarding history..."),A.k0s())}function Gg(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Hg(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,Pg,2,0,"p",54)(2,zg,2,0,"p",54)(3,Gg,2,1,"p",54),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function kg(i,D){if(1&i&&A.nrm(0,"tr",55),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,lg,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function jg(i,D){1&i&&A.nrm(0,"tr",56)}function Og(i,D){1&i&&A.nrm(0,"tr",57)}function Jg(i,D){if(1&i&&(A.j41(0,"div",15),A.DNE(1,ug,1,0,"mat-progress-bar",16),A.j41(2,"table",17,0),A.qex(4,18),A.DNE(5,fg,2,0,"th",19)(6,hg,3,4,"td",20),A.bVm(),A.qex(7,21),A.DNE(8,Eg,2,0,"th",19)(9,Cg,3,4,"td",20),A.bVm(),A.qex(10,22),A.DNE(11,wg,2,0,"th",19)(12,dg,2,1,"td",20),A.bVm(),A.qex(13,23),A.DNE(14,Qg,2,0,"th",19)(15,mg,4,4,"td",20),A.bVm(),A.qex(16,24),A.DNE(17,pg,2,0,"th",19)(18,Mg,2,1,"td",20),A.bVm(),A.qex(19,25),A.DNE(20,Ig,2,0,"th",19)(21,Dg,4,4,"td",20),A.bVm(),A.qex(22,26),A.DNE(23,vg,2,0,"th",19)(24,Fg,4,4,"td",20),A.bVm(),A.qex(25,27),A.DNE(26,yg,2,0,"th",28)(27,xg,4,4,"td",20),A.bVm(),A.qex(28,29),A.DNE(29,Yg,2,0,"th",28)(30,Sg,4,4,"td",20),A.bVm(),A.qex(31,30),A.DNE(32,Ng,2,0,"th",28)(33,Tg,3,2,"td",20),A.bVm(),A.qex(34,31),A.DNE(35,Ug,6,0,"th",32)(36,Lg,3,0,"td",33),A.bVm(),A.qex(37,34),A.DNE(38,Hg,4,3,"td",35),A.bVm(),A.DNE(39,kg,1,3,"tr",36)(40,jg,1,0,"tr",37)(41,Og,1,0,"tr",38),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(7,og)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function Vg(i,D){if(1&i&&A.nrm(0,"mat-paginator",58),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Ol=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new F.I6([]),this.totalForwardedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),t.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),t.selFilter&&!t.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&t.forwardingHistory.listForwards&&(this.totalForwardedTransactions=t.forwardingHistory.totalForwards||0,this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(t,l){const c=[[{key:"status",value:"Settled",title:"Status",width:50,type:r.UN.STRING},{key:"fee",value:t.fee_msat,title:"Fee (mSats)",width:50,type:r.UN.NUMBER}],[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.UN.DATE_TIME}],[{key:"in_channel",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING},{key:"out_channel",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"In (mSats)",width:50,type:r.UN.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Out (mSats)",width:50,type:r.UN.NUMBER}]];t.payment_hash&&c.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Event Information",message:c}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const l=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.in_channel?t.in_channel.toLowerCase()+" ":"")+(t.out_channel?t.out_channel.toLowerCase()+" ":"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase()+" ":"")+(t.out_channel_alias?t.out_channel_alias.toLowerCase()+" ":"")+(t.in_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":c=(+(t.fee_msat||0)).toString()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":c=(+(t.out_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new F.I6([...t]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,cg,2,1,"div",2)(2,Bg,13,4,"div",3)(3,Jg,42,8,"div",4)(4,Vg,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const Wg=()=>["all"],Kg=()=>["no_event"],Jl=i=>({width:i}),Xg=i=>({"display-none":i});function Zg(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function qg(i,D){if(1&i&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function _g(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,qg,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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()()}if(2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.faExclamationTriangle),A.R7$(9),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,Wg).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function $g(i,D){1&i&&A.nrm(0,"mat-progress-bar",41)}function AB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Received Time"),A.k0s())}function tB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function eB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Resolved Time"),A.k0s())}function nB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function iB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"In Channel ID"),A.k0s())}function rB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function aB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"In Channel"),A.k0s())}function sB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function oB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Out Channel ID"),A.k0s())}function lB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function cB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Out Channel"),A.k0s())}function gB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function BB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Amount In (Sats)"),A.k0s())}function uB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function fB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function hB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function EB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Fee (mSat)"),A.k0s())}function CB(i,D){if(1&i&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.fee,"1.0-0")," ")}}function wB(i,D){if(1&i&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.fee_msat,"1.0-0")," ")}}function dB(i,D){if(1&i&&(A.j41(0,"td",43),A.DNE(1,CB,3,4,"span",48)(2,wB,3,4,"span",48),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.fee),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function QB(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function mB(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",53)(1,"button",54),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onFailedEventClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function pB(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function MB(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function IB(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function DB(i,D){if(1&i&&(A.j41(0,"td",55),A.DNE(1,pB,2,0,"p",56)(2,MB,2,0,"p",56)(3,IB,2,1,"p",56),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function vB(i,D){if(1&i&&A.nrm(0,"tr",57),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Xg,(null==t.failedForwardingEvents?null:t.failedForwardingEvents.data)&&(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)>0))}}function FB(i,D){1&i&&A.nrm(0,"tr",58)}function yB(i,D){1&i&&A.nrm(0,"tr",59)}function xB(i,D){if(1&i&&(A.j41(0,"div",18),A.DNE(1,$g,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,AB,2,0,"th",22)(6,tB,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,eB,2,0,"th",22)(9,nB,3,4,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,iB,2,0,"th",22)(12,rB,2,1,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,aB,2,0,"th",22)(15,sB,4,4,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,oB,2,0,"th",22)(18,lB,2,1,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,cB,2,0,"th",22)(21,gB,4,4,"td",23),A.bVm(),A.qex(22,29),A.DNE(23,BB,2,0,"th",30)(24,uB,4,4,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,fB,2,0,"th",30)(27,hB,4,4,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,EB,2,0,"th",30)(30,dB,3,2,"td",23),A.bVm(),A.qex(31,33),A.DNE(32,QB,6,0,"th",34)(33,mB,3,0,"td",35),A.bVm(),A.qex(34,36),A.DNE(35,DB,4,3,"td",37),A.bVm(),A.DNE(36,vB,1,3,"tr",38)(37,FB,1,0,"tr",39)(38,yB,1,0,"tr",40),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedForwardingEvents),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(7,Kg)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function YB(i,D){if(1&i&&A.nrm(0,"mat-paginator",60),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let SB=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.faExclamationTriangle=u.zpE,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new F.I6([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,_.uK)({payload:{status:r.xk.FAILED}})),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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.Dv).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=t.failedForwardingHistory.totalForwards||0,this.failedEvents=t.failedForwardingHistory.listForwards||[],this.failedEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(t){const l=[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.UN.DATE_TIME}],[{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING},{key:"out_channel_alias",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"Amount In (mSats)",width:33,type:r.UN.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Amount Out (mSats)",width:33,type:r.UN.NUMBER},{key:"fee",value:t.fee_msat,title:"Fee (mSats)",width:34,type:r.UN.NUMBER}]];t.payment_hash&&l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Failed Event Information",message:l}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.in_channel?t.in_channel.toLowerCase()+" ":"")+(t.out_channel?t.out_channel.toLowerCase()+" ":"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase()+" ":"")+(t.out_channel_alias?t.out_channel_alias.toLowerCase()+" ":"")+(t.fee_msat?t.fee_msat+" ":"")+(t.in_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":c=(t.fee_msat||0)?.toString()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":c=(+(t.out_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadFailedEventsTable(t){this.failedForwardingEvents=new F.I6([...t]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-failed-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,Zg,2,1,"div",2)(2,_g,18,5,"div",3)(3,xB,39,8,"div",4)(4,YB,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const NB=["tableIn"],bB=["tableOut"],RB=["paginatorIn"],TB=["paginatorOut"],UB=(i,D)=>({"mt-2":i,"mt-1":D}),LB=()=>["no_incoming_event"],PB=i=>({"mt-2":i}),zB=()=>["no_outgoing_event"],gs=i=>({width:i}),Vl=i=>({"display-none":i});function GB(i,D){if(1&i&&(A.j41(0,"div",7),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function HB(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function kB(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function jB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.channel_id)}}function OB(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function JB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.alias)}}function VB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function WB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,t.events))}}function KB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function XB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function ZB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function qB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function _B(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No incoming routing peer available."),A.k0s())}function $B(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting incoming routing peers..."),A.k0s())}function Au(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function tu(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,_B,2,0,"p",42)(2,$B,2,0,"p",42)(3,Au,2,1,"p",42),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function eu(i,D){if(1&i&&A.nrm(0,"tr",43),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Vl,(null==t.routingPeersIncoming?null:t.routingPeersIncoming.data)&&(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function nu(i,D){1&i&&A.nrm(0,"tr",44)}function iu(i,D){1&i&&A.nrm(0,"tr",45)}function ru(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function au(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function su(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.channel_id)}}function ou(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function lu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.alias)}}function cu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function gu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,t.events))}}function Bu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function uu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function fu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function hu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function Eu(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No outgoing routing peer available."),A.k0s())}function Cu(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting outgoing routing peers..."),A.k0s())}function wu(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function du(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,Eu,2,0,"p",42)(2,Cu,2,0,"p",42)(3,wu,2,1,"p",42),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Qu(i,D){if(1&i&&A.nrm(0,"tr",43),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Vl,(null==t.routingPeersOutgoing?null:t.routingPeersOutgoing.data)&&(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function mu(i,D){1&i&&A.nrm(0,"tr",44)}function pu(i,D){1&i&&A.nrm(0,"tr",45)}function Mu(i,D){if(1&i&&(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,HB,1,0,"mat-progress-bar",14),A.j41(8,"table",15,0),A.qex(10,16),A.DNE(11,kB,2,0,"th",17)(12,jB,4,4,"td",18),A.bVm(),A.qex(13,19),A.DNE(14,OB,2,0,"th",17)(15,JB,4,4,"td",18),A.bVm(),A.qex(16,20),A.DNE(17,VB,2,0,"th",21)(18,WB,4,3,"td",18),A.bVm(),A.qex(19,22),A.DNE(20,KB,2,0,"th",21)(21,XB,4,4,"td",18),A.bVm(),A.qex(22,23),A.DNE(23,ZB,2,0,"th",21)(24,qB,4,4,"td",18),A.bVm(),A.qex(25,24),A.DNE(26,tu,4,3,"td",25),A.bVm(),A.DNE(27,eu,1,3,"tr",26)(28,nu,1,0,"tr",27)(29,iu,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,ru,1,0,"mat-progress-bar",14),A.j41(39,"table",32,2),A.qex(41,16),A.DNE(42,au,2,0,"th",17)(43,su,4,4,"td",18),A.bVm(),A.qex(44,19),A.DNE(45,ou,2,0,"th",17)(46,lu,4,4,"td",18),A.bVm(),A.qex(47,20),A.DNE(48,cu,2,0,"th",21)(49,gu,4,3,"td",18),A.bVm(),A.qex(50,22),A.DNE(51,Bu,2,0,"th",21)(52,uu,4,4,"td",18),A.bVm(),A.qex(53,23),A.DNE(54,fu,2,0,"th",21)(55,hu,4,4,"td",18),A.bVm(),A.qex(56,33),A.DNE(57,du,4,3,"td",25),A.bVm(),A.DNE(58,Qu,1,3,"tr",26)(59,mu,1,0,"tr",27)(60,pu,1,0,"tr",28),A.k0s(),A.nrm(61,"mat-paginator",29,3),A.k0s()()()),2&i){const t=A.XpG();A.R7$(2),A.Y8G("ngClass",A.l_i(22,UB,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),A.R7$(5),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersIncoming),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(25,LB)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),A.R7$(3),A.Y8G("ngClass",A.eq3(26,PB,t.screenSize!==t.screenSizeEnum.LG)),A.R7$(5),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersOutgoing),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(28,zB)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Iu=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.eventsData=[],this.selFilter="",this.nodePageDefs=r.Jd,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:r.md,sortBy:"total_fee",sortOrder:r.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new F.I6([]),this.routingPeersOutgoing=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,t.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}ngOnInit(){this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.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,g.Q)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l),this.routingPeersOutgoing.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l)}loadRoutingPeersTable(t){if(t.length>0){const l=this.groupRoutingPeers(t);this.routingPeersIncoming=new F.I6(l[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new F.I6(l[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new F.I6([]),this.routingPeersOutgoing=new F.I6([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(t){const l=[],c=[];return t.forEach(j=>{const PA=l?.find(an=>an.channel_id===j.in_channel),WA=c?.find(an=>an.channel_id===j.out_channel);PA?(PA.events++,PA.total_amount=+PA.total_amount+ +(j.in_msat||0),PA.total_fee=+(j.in_msat||0)-+(j.out_msat||0)+ +PA.total_fee):l.push({channel_id:j.in_channel,alias:j.in_channel_alias,events:1,total_amount:+(j.in_msat||0),total_fee:+(j.in_msat||0)-+(j.out_msat||0)}),WA?(WA.events++,WA.total_amount=+WA.total_amount+ +(j.out_msat||0),WA.total_fee=+(j.in_msat||0)-+(j.out_msat||0)+ +WA.total_fee):c.push({channel_id:j.out_channel,alias:j.out_channel_alias,events:1,total_amount:+(j.out_msat||0),total_fee:+(j.in_msat||0)-+(j.out_msat||0)})}),[this.commonService.sortDescByKey(l,"total_fee"),this.commonService.sortDescByKey(c,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(l,c){if(1&l&&(A.GBs(NB,5,z.B4),A.GBs(bB,5,z.B4),A.GBs(RB,5),A.GBs(TB,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sortIn=j.first),A.mGM(j=A.lsd())&&(c.sortOut=j.first),A.mGM(j=A.lsd())&&(c.paginatorIn=j.first),A.mGM(j=A.lsd())&&(c.paginatorOut=j.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:S.xX,useValue:(0,r.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(l,c){1&l&&(A.j41(0,"div",4),A.DNE(1,GB,2,1,"div",5)(2,Mu,63,29,"div",6),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.bT,st.B3,n.DJ,n.sA,n.UI,I.PW,I.eI,B.HM,z.B4,z.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,S.iy,cA.Ld,st.QX]})}return i})();const Du=()=>["all"],vu=i=>({"error-border":i}),Fu=()=>["no_channel"],Wl=i=>({width:i}),yu=i=>({"display-none":i});function xu(i,D){if(1&i&&(A.j41(0,"mat-option",33),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Yu(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function Su(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Amount (Sats)"),A.k0s())}function Nu(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,(null==t?null:t.amount_msat)/1e3,"1.0-2")," ")}}function bu(i,D){if(1&i&&(A.qex(0),A.DNE(1,Nu,3,4,"span",39),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ru(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,bu,2,1,"ng-container",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" Active HTLCs: ",null==t||null==t.htlcs?null:t.htlcs.length," "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Tu(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Alias/Direction"),A.k0s())}function Uu(i,D){if(1&i&&(A.j41(0,"span",37),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.direction)," ")}}function Lu(i,D){if(1&i&&(A.qex(0),A.DNE(1,Uu,3,3,"span",41),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Pu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,Lu,2,1,"ng-container",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null==t?null:t.alias),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function zu(i,D){1&i&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"HTLC ID"),A.k0s()())}function Gu(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.id)," ")}}function Hu(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Gu,3,3,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function ku(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Hu,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null==t?null:t.id),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function ju(i,D){1&i&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"Expiry"),A.k0s()())}function Ou(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.expiry,"1.0-0")," ")}}function Ju(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ou,3,4,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Vu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Ju,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Wu(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"State"),A.k0s()())}function Ku(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"camelcaseWithReplace"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.state,"_")," ")}}function Xu(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ku,3,4,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Zu(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Xu,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function qu(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Local Trimmed"),A.k0s()())}function _u(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",null!=t&&t.local_trimmed?"Yes":"No"," ")}}function $u(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,_u,2,1,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Af(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,$u,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function tf(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Payment Hash"),A.k0s()())}function ef(i,D){if(1&i&&(A.j41(0,"span",48)(1,"span",49),A.EFF(2),A.k0s()()),2&i){const t=D.$implicit,l=A.XpG(3);A.Y8G("ngStyle",A.eq3(2,Wl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function nf(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,ef,3,4,"span",47),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function rf(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",45)(2,"span",46),A.EFF(3),A.k0s()(),A.DNE(4,nf,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Wl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function af(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function sf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",58)(1,"button",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2).$implicit,PA=A.XpG();return A.Njj(PA.onHTLCClick(c,j))}),A.EFF(2),A.k0s()()}if(2&i){const t=D.index;A.R7$(2),A.SpI("View ",t+1,"")}}function of(i,D){if(1&i&&(A.j41(0,"div"),A.DNE(1,sf,3,1,"div",57),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function lf(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",54)(1,"span",55)(2,"button",56),A.bIt("click",function(){const c=A.eBV(t).$implicit;return A.Njj(c.is_expanded=!c.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,of,2,1,"div",38),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(3),A.JRh(t.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function cf(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No active htlc available."),A.k0s())}function gf(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting active htlcs..."),A.k0s())}function Bf(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function uf(i,D){if(1&i&&(A.j41(0,"td",60),A.DNE(1,cf,2,0,"p",38)(2,gf,2,0,"p",38)(3,Bf,2,1,"p",38),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function ff(i,D){if(1&i&&A.nrm(0,"tr",61),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,yu,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function hf(i,D){1&i&&A.nrm(0,"tr",62)}function Ef(i,D){1&i&&A.nrm(0,"tr",63)}let Cf=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:r.md,sortBy:"expiry",sortOrder:r.oi.DESCENDING},this.channels=new F.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"");const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.channelsJSONArr=l?.filter(c=>c.htlcs&&c.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,l){const c=[[{key:"alias",value:l.alias,title:"Alias",width:100,type:r.UN.STRING}],[{key:"amount_msat",value:(t.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:r.UN.NUMBER},{key:"direction",value:this.commonService.titleCase(t.direction||""),title:"Direction",width:50,type:r.UN.STRING}],[{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:r.UN.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(t.state||"","_"),title:"State",width:50,type:r.UN.STRING}],[{key:"id",value:t.id,title:"HTLC ID",width:50,type:r.UN.STRING},{key:"local_trimmed",value:t.local_trimmed,title:"Local Trimmed",width:50,type:r.UN.BOOLEAN}],[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"HTLC Information",message:c}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.alias?t.alias.toLowerCase():"")+t.htlcs?.map(j=>JSON.stringify(j).toLowerCase()+(j.local_trimmed?" yes ":" no "));break;case"direction":c=t.htlcs?.map(j=>j.direction+" ").toString()||"";break;case"id":c=t.htlcs?.map(j=>j.id+" ").toString()||"";break;case"expiry":c=t.htlcs?.map(j=>j.expiry+" ").toString()||"";break;case"state":c=t.htlcs?.map(j=>this.camelCaseWithReplace.transform(j.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":c=t.htlcs?.map(j=>j.payment_hash+" ").toString()||"";break;case"local_trimmed":c=t.htlcs?.map(j=>j.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":c=t.htlcs?.map(j=>(j.amount_msat||0)/1e3)?.toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadHTLCsTable(t){this.channels=new F.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"amount_msat":return this.commonService.sortByKey(l.htlcs,c,"number",this.sort?.direction),l.htlcs&&l.htlcs.length?l.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(l.htlcs,c,"string",this.sort?.direction),l;case"direction":return this.commonService.sortByKey(l.htlcs,c,"string",this.sort?.direction),l.alias?l.alias:l.id?l.id:null;case"expiry":return this.commonService.sortByKey(l.htlcs,c,"number",this.sort?.direction),l;case"local_trimmed":return this.commonService.sortByKey(l.htlcs,c,"boolean",this.sort?.direction),l;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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((c,j)=>c.concat(j.htlcs?j.htlcs:j),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,xu,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(14,"div",9),A.DNE(15,Yu,1,0,"mat-progress-bar",10),A.j41(16,"table",11,0),A.qex(18,12),A.DNE(19,Su,2,0,"th",13)(20,Ru,4,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Tu,2,0,"th",13)(23,Pu,4,2,"td",14),A.bVm(),A.qex(24,16),A.DNE(25,zu,3,0,"th",17)(26,ku,4,2,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,ju,3,0,"th",17)(29,Vu,4,2,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,Wu,3,0,"th",20)(32,Zu,4,2,"td",21),A.bVm(),A.qex(33,22),A.DNE(34,qu,3,0,"th",20)(35,Af,4,2,"td",21),A.bVm(),A.qex(36,23),A.DNE(37,tf,3,0,"th",20)(38,rf,5,5,"td",21),A.bVm(),A.qex(39,24),A.DNE(40,af,6,0,"th",25)(41,lf,5,2,"td",26),A.bVm(),A.qex(42,27),A.DNE(43,uf,4,3,"td",28),A.bVm(),A.DNE(44,ff,1,3,"tr",29)(45,hf,1,0,"tr",30)(46,Ef,1,0,"tr",31),A.k0s()(),A.nrm(47,"mat-paginator",32),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Du).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,vu,""!==c.errorMessage)),A.R7$(28),A.Y8G("matFooterRowDef",A.lJ4(17,Fu)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,S.iy,cA.ZF,cA.Ld,st.QX,st.PV,yA.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 i})();function wf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",8),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let df=(()=>{class i{constructor(t){this.router=t,this.faChartBar=u.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-reports"]],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,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(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,wf,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),A.k0s()()()),2&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faChartBar),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var Kl=Pt(1001),Xl=Pt(6064),Zl=Pt(4655);function Qf(i,D){1&i&&(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 mf(i,D){if(1&i&&(A.j41(0,"div",17),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function pf(i,D){if(1&i&&(A.j41(0,"div",18),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG();A.Y8G("@fadeIn",t.totalFeeMsat),A.R7$(),A.Lme("",A.i5U(2,3,t.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.bMT(3,6,t.filteredEventsBySelectedPeriod.length||0)," Events")}}function Mf(i,D){1&i&&(A.j41(0,"div",15),A.EFF(1,"No routing report for the selected period"),A.k0s())}function If(i,D){if(1&i&&(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&i){const t=D.model,l=A.XpG(2);A.R7$(2),A.SpI("Events: ",A.bMT(3,2,(l.selReportBy===l.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),A.R7$(3),A.SpI("Fee: ",A.i5U(6,4,(l.selReportBy===l.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function Df(i,D){if(1&i){const t=A.RV6();A.j41(0,"ngx-charts-bar-vertical",19),A.bIt("select",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartBarSelected(c))})("mouseup",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartMouseUp(c))}),A.DNE(1,If,7,7,"ng-template",null,0,A.C5r),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function vf(i,D){if(1&i&&A.nrm(0,"rtl-cln-forwarding-history",21),2&i){const t=A.XpG();A.Y8G("pageId","reports")("tableId","routing")("eventsData",t.filteredEventsBySelectedPeriod)("selFilter",t.eventFilterValue)}}let Ff=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.dataService=j,this.reportPeriod=r.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=r.aR,this.selReportBy=r.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=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.f7.XS||this.screenSize===r.f7.SM),this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{t.forwardingHistory.status===r.xk.SETTLED&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===r.wn.COMPLETED&&(this.events=t.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(t))}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case r.f7.MD:this.screenPaddingX=t.width/10;break;case r.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(t,l){const c=Math.round(t.getTime()/1e3),j=Math.round(l.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(PA=>{PA.received_time&&PA.received_time>=c&&PA.received_time0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===r.rs[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+r.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){const l=Math.round(t.getTime()/1e3),c=[];if(this.totalFeeMsat=0,this.reportPeriod===r.rs[1]){for(let j=0;j<12;j++)c.push({name:r.KR[j].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(j=>{const PA=j.received_time?new Date(1e3*+j.received_time).getMonth():12;return c[PA].extra.totalEvents=c[PA].extra.totalEvents+1,c[PA].value=c[PA].value+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let j=0;j{const PA=j.received_time?Math.floor((+j.received_time-l)/this.secondsInADay):0;return c[PA].extra.totalEvents=c[PA].extra.totalEvents+1,c[PA].value=c[PA].value+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}return c}prepareEventsReport(t){const l=Math.round(t.getTime()/1e3),c=[];if(this.totalFeeMsat=0,this.reportPeriod===r.rs[1]){for(let j=0;j<12;j++)c.push({name:r.KR[j].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(j=>{const PA=j.received_time?new Date(1e3*+j.received_time).getMonth():12;return c[PA].value=c[PA].value+1,c[PA].extra.totalFees=c[PA].extra.totalFees+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let j=0;j{const PA=j.received_time?Math.floor((+j.received_time-l)/this.secondsInADay):0;return c[PA].value=c[PA].value+1,c[PA].extra.totalFees=c[PA].extra.totalFees+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}return c}onSelectionChange(t){const l=t.selDate.getMonth(),c=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.rs[1]?(this.startDate=new Date(c,0,1,0,0,0),this.endDate=new Date(c,11,31,23,59,59)):(this.startDate=new Date(c,l,1,0,0,0),this.endDate=new Date(c,l,this.getMonthDays(l,c),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,l){return 1===t&&l%4==0?r.KR[t].days+1:r.KR[t].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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing-report"]],hostBindings:function(l,c){1&l&&A.bIt("mouseup",function(PA){return c.onChartMouseUp(PA)})},decls:19,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 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"],[3,"pageId","tableId","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"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(l,c){1&l&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(PA){return c.onSelectionChange(PA)}),A.k0s(),A.j41(2,"div",3)(3,"mat-radio-group",4),A.mxI("ngModelChange",function(PA){return A.DH7(c.selReportBy,PA)||(c.selReportBy=PA),PA}),A.bIt("change",function(){return c.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,Qf,4,0,"div",9)(12,mf,2,1,"div",10)(13,pf,4,8,"div",11)(14,Mf,2,0,"div",9),A.j41(15,"div",12),A.DNE(16,Df,3,11,"ngx-charts-bar-vertical",13),A.k0s(),A.j41(17,"div",12),A.DNE(18,vf,1,4,"rtl-cln-forwarding-history",14),A.k0s()()()),2&l&&(A.R7$(3),A.R50("ngModel",c.selReportBy),A.R7$(3),A.FS9("value",c.reportBy.FEES),A.R7$(2),A.FS9("value",c.reportBy.EVENTS),A.R7$(3),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.ERROR),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.COMPLETED&&c.routingReportData.length>0&&c.filteredEventsBySelectedPeriod.length>0),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.COMPLETED&&(c.routingReportData.length<=0||c.filteredEventsBySelectedPeriod.length<=0)),A.R7$(2),A.Y8G("ngIf",c.routingReportData.length>0&&c.filteredEventsBySelectedPeriod.length>0),A.R7$(2),A.Y8G("ngIf",c.filteredEventsBySelectedPeriod&&c.filteredEventsBySelectedPeriod.length>0))},dependencies:[st.bT,iA.BC,iA.vS,n.DJ,n.sA,n.UI,B.HM,wn.VT,wn._g,Xl.L8,Zl.m,Ol,st.QX],data:{animation:[Kl.q]}})}return i})();var yf=Pt(5085);function xf(i,D){if(1&i&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Lme(" Paid ",A.i5U(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Yf(i,D){if(1&i&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Lme(" Received ",A.i5U(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Sf(i,D){if(1&i&&(A.j41(0,"div",9),A.DNE(1,xf,4,7,"div",10)(2,Yf,4,7,"div",10),A.k0s()),2&i){const t=A.XpG();A.Y8G("@fadeIn",t.transactionsReportSummary),A.R7$(),A.Y8G("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod),A.R7$(),A.Y8G("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function Nf(i,D){1&i&&(A.j41(0,"div",12),A.EFF(1,"No transactions report for the selected period"),A.k0s())}function bf(i,D){if(1&i&&(A.j41(0,"span",14),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.model;A.R7$(),A.LHq("",t.name,": ",A.i5U(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",A.bMT(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function Rf(i,D){if(1&i){const t=A.RV6();A.j41(0,"ngx-charts-bar-vertical-2d",13),A.bIt("select",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartBarSelected(c))})("mouseup",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartMouseUp(c))}),A.DNE(1,bf,4,9,"ng-template",null,0,A.C5r),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:4)}}function Tf(i,D){if(1&i&&A.nrm(0,"rtl-transactions-report-table",15),2&i){const t=A.XpG();A.Y8G("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let Uf=(()=>{class i{constructor(t,l,c){this.logger=t,this.commonService=l,this.store=c,this.scrollRanges=r.rs,this.reportPeriod=r.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:r.md,sortBy:"date",sortOrder:r.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=r.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.f7.XS||this.screenSize===r.f7.SM),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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.KT).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(E.Pj))).subscribe(([t,l])=>{this.payments=t.payments,this.invoices=l.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case r.f7.MD:this.screenPaddingX=t.width/10;break;case r.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===r.rs[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+r.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,l){const c=Math.round(t.getTime()/1e3),j=Math.round(l.getTime()/1e3),PA=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const WA=this.payments?.filter(fe=>"complete"===fe.status&&fe.created_at&&fe.created_at>=c&&fe.created_at"paid"===fe.status&&fe.paid_at&&fe.paid_at>=c&&fe.paid_at{const cn=new Date(1e3*(fe.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(fe.amount_sent_msat||0),PA[cn].series[0].value=PA[cn].series[0].value+(fe.amount_sent_msat||0)/1e3,PA[cn].series[0].extra.total=PA[cn].series[0].extra.total+1,this.transactionsReportSummary}),an?.map(fe=>{const cn=new Date(1e3*+(fe.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(fe.amount_received_msat||0),PA[cn].series[1].value=PA[cn].series[1].value+(fe.amount_received_msat||0)/1e3,PA[cn].series[1].extra.total=PA[cn].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let fe=0;fe{const cn=Math.floor((+(fe.created_at||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(fe.amount_sent_msat||0),PA[cn].series[0].value=PA[cn].series[0].value+(fe.amount_sent_msat||0)/1e3,PA[cn].series[0].extra.total=PA[cn].series[0].extra.total+1,this.transactionsReportSummary}),an?.map(fe=>{const cn=Math.floor((+(fe.paid_at||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(fe.amount_received_msat||0),PA[cn].series[1].value=PA[cn].series[1].value+(fe.amount_received_msat||0)/1e3,PA[cn].series[1].extra.total=PA[cn].series[1].extra.total+1,this.transactionsReportSummary})}return PA}prepareTableData(){return this.transactionsReportData?.reduce((t,l)=>l.series[0].extra.total>0||l.series[1].extra.total>0?t.concat({date:l.date,amount_paid:l.series[0].value,num_payments:l.series[0].extra.total,amount_received:l.series[1].value,num_invoices:l.series[1].extra.total}):t,[])}onSelectionChange(t){const l=t.selDate.getMonth(),c=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.rs[1]?(this.startDate=new Date(c,0,1,0,0,0),this.endDate=new Date(c,11,31,23,59,59)):(this.startDate=new Date(c,l,1,0,0,0),this.endDate=new Date(c,l,this.getMonthDays(l,c),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,l){return 1===t&&l%4==0?r.KR[t].days+1:r.KR[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(l,c){1&l&&A.bIt("mouseup",function(PA){return c.onChartMouseUp(PA)})},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(l,c){1&l&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(PA){return c.onSelectionChange(PA)}),A.k0s(),A.j41(2,"div",3),A.DNE(3,Sf,3,3,"div",4)(4,Nf,2,0,"div",5),A.j41(5,"div",6),A.DNE(6,Rf,3,13,"ngx-charts-bar-vertical-2d",7),A.k0s(),A.j41(7,"div",6),A.DNE(8,Tf,1,5,"rtl-transactions-report-table",8),A.k0s()()()),2&l&&(A.R7$(3),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0),A.R7$(),A.Y8G("ngIf",c.transactionsNonZeroReportData.length<=0),A.R7$(2),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0),A.R7$(2),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0))},dependencies:[st.bT,n.DJ,n.sA,n.UI,Xl.Dl,Zl.m,yf.T,st.QX],data:{animation:[Kl.q]}})}return i})();var Pe=Pt(7186),Lf=Pt(13);function Pf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let zf=(()=>{class i{constructor(t){this.router=t,this.faSearch=u.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-graph"]],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,"active","routerLink","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","active","routerLink"]],template:function(l,c){if(1&l&&(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,Pf,2,3,"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&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faSearch),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var Gf=Pt(2643),Hf=Pt(7235);function kf(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.offerError)}}function jf(i,D){if(1&i&&(A.j41(0,"div",21),A.nrm(1,"fa-icon",22),A.DNE(2,kf,2,1,"span",23),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.offerError)}}let Of=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.store=c,this.decimalPipe=j,this.commonService=PA,this.actions=WA,this.faExclamationTriangle=u.zpE,this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=r.md,this.offerError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t,this.issuer=this.information.alias}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===t.payload.action&&(t.payload.status===r.wn.ERROR&&(this.offerError=t.payload.message),t.payload.status===r.wn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="";const t=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,_.y0)({payload:{amount:t,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,r.BQ.SATS,r.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:t=>{this.offerValueHint="= "+this.decimalPipe.transform(t.OTHER,r.k.OTHER)+" "+t.unit},error:t=>{this.offerValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-create-offer"]],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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.description,WA)||(c.description=WA),A.Njj(WA)}),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(WA){return A.eBV(j),A.DH7(c.offerValue,WA)||(c.offerValue=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.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(WA){return A.eBV(j),A.DH7(c.issuer,WA)||(c.issuer=WA),A.Njj(WA)}),A.k0s()()(),A.DNE(28,jf,3,2,"div",17),A.j41(29,"div",18)(30,"button",19),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(31,"Clear Field"),A.k0s(),A.j41(32,"button",20),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onAddOffer())}),A.EFF(33,"Create Offer"),A.k0s()()()()()()}2&l&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",c.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",c.offerValue),A.R7$(4),A.JRh(c.offerValueHint),A.R7$(4),A.R50("ngModel",c.issuer),A.R7$(),A.Y8G("ngIf",""!==c.offerError))},dependencies:[st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,J.N,BA.V]})}return i})();var ql=Pt(2142);const Jf=()=>["all"],Vf=i=>({"error-border":i}),Wf=()=>["no_offer"],_l=i=>({"mr-0":i}),$l=i=>({width:i}),Kf=i=>({"display-none":i});function Xf(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Zf(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function qf(i,D){1&i&&A.nrm(0,"th",36)}function _f(i,D){if(1&i&&A.nrm(0,"span",40),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_l,t.screenSize===t.screenSizeEnum.XS))}}function $f(i,D){if(1&i&&A.nrm(0,"span",41),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_l,t.screenSize===t.screenSizeEnum.XS))}}function Ah(i,D){if(1&i&&(A.j41(0,"td",37),A.DNE(1,_f,1,3,"span",38)(2,$f,1,3,"span",39),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.active),A.R7$(),A.Y8G("ngIf",!t.active)}}function th(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Offer ID"),A.k0s())}function eh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",t.offer_id," ")}}function nh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Single Use"),A.k0s())}function ih(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t.single_use?"Yes":"No")}}function rh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Used"),A.k0s())}function ah(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",t.used?"Yes":"No"," ")}}function sh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Invoice"),A.k0s())}function oh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",t.bolt12," ")}}function lh(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function ch(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onDisableOffer(c))}),A.EFF(1,"Disable Offer"),A.k0s()}}function gh(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onPrintOffer(c))}),A.EFF(1,"Export QR code"),A.k0s()}}function Bh(i,D){if(1&i){const t=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 c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOfferClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,ch,2,0,"mat-option",51)(7,gh,2,0,"mat-option",51),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(6),A.Y8G("ngIf",t.active),A.R7$(),A.Y8G("ngIf",t.active)}}function uh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No offer available."),A.k0s())}function fh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting offers..."),A.k0s())}function hh(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Eh(i,D){if(1&i&&(A.j41(0,"td",52),A.DNE(1,uh,2,0,"p",53)(2,fh,2,0,"p",53)(3,hh,2,1,"p",53),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Ch(i,D){if(1&i&&A.nrm(0,"tr",54),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Kf,(null==t.offers?null:t.offers.data)&&(null==t.offers||null==t.offers.data?null:t.offers.data.length)>0))}}function wh(i,D){1&i&&A.nrm(0,"tr",55)}function dh(i,D){1&i&&A.nrm(0,"tr",56)}let Qh=(()=>{class i{constructor(t,l,c,j,PA,WA,an){this.logger=t,this.store=l,this.commonService=c,this.rtlEffects=j,this.dataService=PA,this.decimalPipe=WA,this.camelCaseWithReplace=an,this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:r.md,sortBy:"offer_id",sortOrder:r.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=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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.O5).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=t.offers||[],this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,AA.xO)({payload:{data:{pageSize:this.pageSize,component:Of}}}))}onOfferClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{offer:{used:t.used,single_use:t.single_use,active:t.active,offer_id:t.offer_id,bolt12:t.bolt12,created:t.created,label:t.label},newlyAdded:!1,component:ql.f}}}))}onDisableOffer(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(t.offer_id||t.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[4])).subscribe(l=>{l&&this.store.dispatch((0,_.jQ)({payload:{offer_id:t.offer_id}}))})}onPrintOffer(t){this.dataService.decodePayment(t.bolt12,!1).pipe((0,Fe.s)(1)).subscribe(l=>{l.offer_id&&!l.offer_amount_msat&&(l.offer_amount_msat=0);const c={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:l.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:l.offer_description?l.offer_description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:t.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:l?.offer_amount_msat&&0!==l?.offer_amount_msat?this.decimalPipe.transform((l.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"}};Gf.createPdf(c,null,null,Hf.b.vfs).download("Offer-"+(l&&l.offer_description?l.offer_description:t.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offers.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.active?" active":" inactive")+(t.used?" yes":" no")+(t.single_use?" single":" multiple")+JSON.stringify(t).toLowerCase(),("active"===l||"inactive"===l||"single"===l||"multiple"===l)&&(l=" "+l);break;case"active":c=t?.active?"active":"inactive";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadOffersTable(t){this.offers=new F.I6(t?[...t]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(QA.H),A.rXU(Qe.u),A.rXU(st.QX),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-offers-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"button",3),A.bIt("click",function(){return A.eBV(j),A.Njj(c.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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(15,"perfect-scrollbar"),A.DNE(16,Xf,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(21,"div",14),A.DNE(22,Zf,1,0,"mat-progress-bar",15),A.j41(23,"table",16,0),A.qex(25,17),A.DNE(26,qf,1,0,"th",18)(27,Ah,3,2,"td",19),A.bVm(),A.qex(28,20),A.DNE(29,th,2,0,"th",21)(30,eh,4,4,"td",19),A.bVm(),A.qex(31,22),A.DNE(32,nh,2,0,"th",21)(33,ih,2,1,"td",19),A.bVm(),A.qex(34,23),A.DNE(35,rh,2,0,"th",21)(36,ah,2,1,"td",19),A.bVm(),A.qex(37,24),A.DNE(38,sh,2,0,"th",21)(39,oh,4,4,"td",19),A.bVm(),A.qex(40,25),A.DNE(41,lh,6,0,"th",26)(42,Bh,8,2,"td",27),A.bVm(),A.qex(43,28),A.DNE(44,Eh,4,3,"td",29),A.bVm(),A.DNE(45,Ch,1,3,"tr",30)(46,wh,1,0,"tr",31)(47,dh,1,0,"tr",32),A.k0s()(),A.nrm(48,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(7),A.Y8G("icon",c.faHistory),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,Jf).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.offers)("ngClass",A.eq3(16,Vf,""!==c.errorMessage)),A.R7$(22),A.Y8G("matFooterRowDef",A.lJ4(18,Wf)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const mh=()=>["all"],ph=i=>({"error-border":i}),Mh=()=>["no_offer"],zl=i=>({width:i}),Ih=i=>({"display-none":i});function Dh(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function vh(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function Fh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Updated At"),A.k0s())}function yh(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,t.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function xh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Title"),A.k0s())}function Yh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.title)}}function Sh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Description"),A.k0s())}function Nh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.description)}}function bh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Issuer"),A.k0s())}function Rh(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t.issuer)}}function Th(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Invoice"),A.k0s())}function Uh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.bolt12)}}function Lh(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Amount (Sats)"),A.k0s())}function Ph(i,D){if(1&i&&(A.j41(0,"td",37)(1,"span",41),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(0===t.amountMSat?"Open":A.bMT(3,1,t.amountMSat/1e3))}}function zh(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Gh(i,D){if(1&i){const t=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 c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOfferBookmarkClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onRePayOffer(c))}),A.EFF(7,"Pay Again"),A.k0s(),A.j41(8,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onDeleteBookmark(c))}),A.EFF(9,"Delete Bookmark"),A.k0s()()()()}}function Hh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No offer bookmarked."),A.k0s())}function kh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting offer bookmarks..."),A.k0s())}function jh(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Oh(i,D){if(1&i&&(A.j41(0,"td",48),A.DNE(1,Hh,2,0,"p",49)(2,kh,2,0,"p",49)(3,jh,2,1,"p",49),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Jh(i,D){if(1&i&&A.nrm(0,"tr",50),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Ih,(null==t.offersBookmarks?null:t.offersBookmarks.data)&&(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)>0))}}function Vh(i,D){1&i&&A.nrm(0,"tr",51)}function Wh(i,D){1&i&&A.nrm(0,"tr",52)}let Kh=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.commonService=c,this.rtlEffects=j,this.datePipe=PA,this.camelCaseWithReplace=WA,this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:r.md,sortBy:"lastUpdatedAt",sortOrder:r.oi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new F.I6([]),this.offersBookmarksJSONArr=[],this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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.ip).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=t.offersBookmarks||[],this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{offer:{bolt12:t.bolt12},newlyAdded:!1,component:ql.f}}}))}onDeleteBookmark(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(t.title||t.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[2])).subscribe(l=>{l&&this.store.dispatch((0,_.ED)({payload:{bolt12:t.bolt12}}))})}onRePayOffer(t){this.store.dispatch((0,AA.xO)({payload:{data:{paymentType:r.Y0.OFFER,bolt12:t.bolt12,offerTitle:t.title,component:Jt}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"lastUpdatedAt":c=this.datePipe.transform(new Date(t.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":c=(t.amountMSat&&0!==t.amountMSat?(t.amountMSat/1e3).toString():"Open")||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadOffersTable(t){this.offersBookmarks=new F.I6(t?[...t]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(13,"perfect-scrollbar"),A.DNE(14,Dh,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(19,"div",13),A.DNE(20,vh,1,0,"mat-progress-bar",14),A.j41(21,"table",15,0),A.qex(23,16),A.DNE(24,Fh,2,0,"th",17)(25,yh,3,4,"td",18),A.bVm(),A.qex(26,19),A.DNE(27,xh,2,0,"th",17)(28,Yh,4,4,"td",18),A.bVm(),A.qex(29,20),A.DNE(30,Sh,2,0,"th",17)(31,Nh,4,4,"td",18),A.bVm(),A.qex(32,21),A.DNE(33,bh,2,0,"th",17)(34,Rh,2,1,"td",18),A.bVm(),A.qex(35,22),A.DNE(36,Th,2,0,"th",17)(37,Uh,4,4,"td",18),A.bVm(),A.qex(38,23),A.DNE(39,Lh,2,0,"th",24)(40,Ph,4,3,"td",18),A.bVm(),A.qex(41,25),A.DNE(42,zh,6,0,"th",26)(43,Gh,10,0,"td",27),A.bVm(),A.qex(44,28),A.DNE(45,Oh,4,3,"td",29),A.bVm(),A.DNE(46,Jh,1,3,"tr",30)(47,Vh,1,0,"tr",31)(48,Wh,1,0,"tr",32),A.k0s()(),A.nrm(49,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(5),A.Y8G("icon",c.faHistory),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,mh).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.offersBookmarks)("ngClass",A.eq3(16,ph,""!==c.errorMessage)),A.R7$(25),A.Y8G("matFooterRowDef",A.lJ4(18,Mh)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const Xh=()=>["all"],Zh=()=>["no_event"],Ac=i=>({width:i}),qh=i=>({"display-none":i});function _h(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function $h(i,D){if(1&i&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function AE(i,D){if(1&i){const t=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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,$h,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(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()()}if(2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.faExclamationTriangle),A.R7$(9),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,Xh).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function tE(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function eE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Received Time"),A.k0s())}function nE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function iE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"In Channel ID"),A.k0s())}function rE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function aE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"In Channel"),A.k0s())}function sE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ac,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function oE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Out Channel ID"),A.k0s())}function lE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function cE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Out Channel"),A.k0s())}function gE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ac,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function BE(i,D){1&i&&(A.j41(0,"th",45),A.EFF(1,"Amount In (Sats)"),A.k0s())}function uE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",46),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function fE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Style"),A.k0s())}function hE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.style)}}function EE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Fail Reason"),A.k0s())}function CE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.JRh(l.CLNFailReason[null==t?null:t.failreason])}}function wE(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function dE(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onFailedLocalEventClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function QE(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function mE(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function pE(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function ME(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,QE,2,0,"p",54)(2,mE,2,0,"p",54)(3,pE,2,1,"p",54),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function IE(i,D){if(1&i&&A.nrm(0,"tr",55),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,qh,(null==t.failedLocalForwardingEvents?null:t.failedLocalForwardingEvents.data)&&(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)>0))}}function DE(i,D){1&i&&A.nrm(0,"tr",56)}function vE(i,D){1&i&&A.nrm(0,"tr",57)}function FE(i,D){if(1&i&&(A.j41(0,"div",18),A.DNE(1,tE,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,eE,2,0,"th",22)(6,nE,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,iE,2,0,"th",22)(9,rE,2,1,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,aE,2,0,"th",22)(12,sE,4,4,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,oE,2,0,"th",22)(15,lE,2,1,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,cE,2,0,"th",22)(18,gE,4,4,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,BE,2,0,"th",29)(21,uE,4,4,"td",23),A.bVm(),A.qex(22,30),A.DNE(23,fE,2,0,"th",22)(24,hE,2,1,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,EE,2,0,"th",22)(27,CE,2,1,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,wE,6,0,"th",33)(30,dE,3,0,"td",34),A.bVm(),A.qex(31,35),A.DNE(32,ME,4,3,"td",36),A.bVm(),A.DNE(33,IE,1,3,"tr",37)(34,DE,1,0,"tr",38)(35,vE,1,0,"tr",39),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedLocalForwardingEvents),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(7,Zh)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function yE(i,D){if(1&i&&A.nrm(0,"mat-paginator",58),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let xE=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.faExclamationTriangle=u.zpE,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.CLNFailReason=r.iI,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new F.I6([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,_.uK)({payload:{status:r.xk.LOCAL_FAILED}})),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.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.aJ).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=t.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=t.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"Amount In (mSats)",width:100,type:r.UN.NUMBER}],[{key:"failreason",value:t.failreason?this.CLNFailReason[t.failreason]:"",title:"Reason for Failure",width:100,type:r.UN.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase():"")+(t.failreason&&this.CLNFailReason[t.failreason]?this.CLNFailReason[t.failreason].toLowerCase():"")+(t.in_msat?t.in_msat:"");break;case"received_time":c=this.datePipe.transform(new Date(1e3*(t.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"failreason":c=t?.failreason?this.CLNFailReason[t?.failreason]:"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"failreason"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadLocalfailedLocalEventsTable(t){this.failedLocalForwardingEvents=new F.I6([...t]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"failreason":return l.failreason?this.CLNFailReason[l.failreason]:"";default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]: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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,_h,2,1,"div",2)(2,AE,18,5,"div",3)(3,FE,36,8,"div",4)(4,yE,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.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,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const YE=["form"];function SE(i,D){1&i&&A.eu8(0)}function NE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Requested amount is required."),A.k0s())}function bE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee rate is required."),A.k0s())}function RE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount is required."),A.k0s())}function TE(i,D){1&i&&(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 UE(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Local amount must be less than or equal to ",t.totalBalance,".")}}function LE(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.channelConnectionError)}}function PE(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,LE,2,1,"span",19),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.channelConnectionError)}}function zE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Type"),A.k0s())}function GE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.type)}}function HE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Address"),A.k0s())}function kE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.address)}}function jE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Port"),A.k0s())}function OE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.port)}}function JE(i,D){1&i&&A.nrm(0,"tr",49)}function VE(i,D){1&i&&A.nrm(0,"tr",50)}function WE(i,D){if(1&i&&(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,zE,2,0,"th",41)(31,GE,2,1,"td",42),A.bVm(),A.qex(32,43),A.DNE(33,HE,2,0,"th",41)(34,kE,2,1,"td",42),A.bVm(),A.qex(35,44),A.DNE(36,jE,2,0,"th",41)(37,OE,2,1,"td",42),A.bVm(),A.DNE(38,JE,1,0,"tr",45)(39,VE,1,0,"tr",46),A.k0s()()()()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh((null==t.node?null:t.node.alias)||(null==t.node?null:t.node.nodeid)),A.R7$(7),A.JRh(t.node.nodeid),A.R7$(7),A.JRh(A.i5U(21,6,1e3*t.node.last_timestamp,"dd/MMM/y HH:mm")),A.R7$(7),A.Y8G("dataSource",t.node.addresses),A.R7$(11),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function KE(i,D){if(1&i&&A.DNE(0,WE,40,9,"mat-expansion-panel",29),2&i){const t=A.XpG();A.Y8G("ngIf",t.node)}}let XE=(()=>{class i{constructor(t,l,c,j){this.dialogRef=t,this.data=l,this.actions=c,this.store=j,this.faExclamationTriangle=u.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 o.B,new o.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,g.Q)(this.unSubs[0]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.FETCH_CHANNELS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message),t.type===r.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 t={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,_.vL)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(fA.En),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(l,c){if(1&l&&A.GBs(YE,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},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(l,c){if(1&l){const j=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 A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.DNE(11,SE,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(WA){return A.eBV(j),A.DH7(c.requestedAmount,WA)||(c.requestedAmount=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.calculateFee())}),A.k0s(),A.j41(18,"span",18),A.EFF(19," Sats "),A.k0s(),A.DNE(20,NE,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(WA){return A.eBV(j),A.DH7(c.feeRate,WA)||(c.feeRate=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.calculateFee())}),A.k0s(),A.j41(26,"span",18),A.EFF(27," Sats/vByte "),A.k0s(),A.DNE(28,bE,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(WA){return A.eBV(j),A.DH7(c.localAmount,WA)||(c.localAmount=WA),A.Njj(WA)}),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,RE,2,0,"mat-error",19)(40,TE,2,0,"mat-error",19)(41,UE,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,PE,3,2,"div",23),A.j41(47,"div",24)(48,"button",25),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(49,"Clear"),A.k0s(),A.j41(50,"button",26),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onOpenChannel())}),A.EFF(51,"Execute"),A.k0s()()()()()(),A.DNE(52,KE,1,1,"ng-template",null,4,A.C5r)}if(2&l){const j=A.sdS(17),PA=A.sdS(25),WA=A.sdS(33),an=A.sdS(53);A.R7$(5),A.JRh(c.alertTitle),A.R7$(6),A.Y8G("ngTemplateOutlet",an),A.R7$(5),A.Y8G("step",1e4)("min",0),A.R50("ngModel",c.requestedAmount),A.R7$(4),A.Y8G("ngIf",null==j.errors?null:j.errors.required),A.R7$(4),A.Y8G("step",10)("min",0),A.R50("ngModel",c.feeRate),A.R7$(4),A.Y8G("ngIf",null==PA.errors?null:PA.errors.required),A.R7$(4),A.Y8G("step",1e4)("min",2e4)("max",c.totalBalance),A.R50("ngModel",c.localAmount),A.R7$(3),A.SpI("Remaining: ",A.bMT(36,20,c.totalBalance-(c.localAmount?c.localAmount:0)),""),A.R7$(4),A.Y8G("ngIf",null==WA.errors?null:WA.errors.required),A.R7$(),A.Y8G("ngIf",null==WA.errors?null:WA.errors.min),A.R7$(),A.Y8G("ngIf",null==WA.errors?null:WA.errors.max),A.R7$(3),A.SpI("Total cost to lease ",A.bMT(45,22,c.node.channel_opening_fee)," (Sats)"),A.R7$(2),A.Y8G("ngIf",""!==c.channelConnectionError)}},dependencies:[st.bT,st.T3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.zX,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,R.$z,p.m2,p.MM,Nn.GK,Nn.Z2,Nn.WN,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,ri.q,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,J.N,Va.z,BA.V,st.QX,st.vh],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();var ZE=Pt(6471);const qE=()=>["all"],_E=i=>({"error-border":i}),$E=()=>["no_lqNode"],tc=i=>({width:i}),AC=i=>({"display-none":i});function tC(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Channel amount is required."),A.k0s())}function eC(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Channel opening fee rate is required."),A.k0s())}function nC(i,D){if(1&i&&(A.j41(0,"mat-option",49),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function iC(i,D){1&i&&A.nrm(0,"mat-progress-bar",50)}function rC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Alias"),A.k0s())}function aC(i,D){if(1&i&&(A.j41(0,"mat-chip",57),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ","tor"===t?"Tor":"ipv"===t?"Clearnet":t," ")}}function sC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"div",53)(2,"span",54),A.EFF(3),A.j41(4,"mat-chip-list",55),A.DNE(5,aC,2,1,"mat-chip",56),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,tc,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",null==t?null:t.alias," "),A.R7$(2),A.Y8G("ngForOf",t.address_types)}}function oC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Node ID"),A.k0s())}function lC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"div",53)(2,"span",58),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,tc,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.nodeid)}}function cC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Last Announcement At"),A.k0s())}function gC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function BC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Compact Lease"),A.k0s())}function uC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t||null==t.option_will_fund?null:t.option_will_fund.compact_lease)}}function fC(i,D){1&i&&(A.j41(0,"th",59),A.EFF(1," Lease Fee"),A.k0s())}function hC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function EC(i,D){1&i&&(A.j41(0,"th",59),A.EFF(1," Routing Fee"),A.k0s())}function CC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,1e3*(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_proportional_thousandths),"1.0-0")," ppm ")}}function wC(i,D){1&i&&(A.j41(0,"th",60),A.EFF(1,"Channel Opening Fee (Sats)"),A.k0s())}function dC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,t.channel_opening_fee,"1.0-0")," ")}}function QC(i,D){1&i&&(A.j41(0,"th",60),A.EFF(1,"Funding Weight"),A.k0s())}function mC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,null==t||null==t.option_will_fund?null:t.option_will_fund.funding_weight,"1.0-0")," ")}}function pC(i,D){if(1&i){const t=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(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function MC(i,D){if(1&i){const t=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 c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onViewLeaseInfo(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOpenChannel(c))}),A.EFF(7,"Open Channel"),A.k0s(),A.j41(8,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.viewLeaseOn(c,"LN"))}),A.EFF(9,"View on Lnrouter"),A.k0s(),A.j41(10,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.viewLeaseOn(c,"AM"))}),A.EFF(11,"View on Amboss"),A.k0s()()()()}}function IC(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No node with liquidity."),A.k0s())}function DC(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting nodes with liquidity..."),A.k0s())}function vC(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function FC(i,D){if(1&i&&(A.j41(0,"td",66),A.DNE(1,IC,2,0,"p",17)(2,DC,2,0,"p",17)(3,vC,2,1,"p",17),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.ERROR)}}function yC(i,D){if(1&i&&A.nrm(0,"tr",67),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,AC,(null==t.liquidityNodes?null:t.liquidityNodes.data)&&(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)>0))}}function xC(i,D){1&i&&A.nrm(0,"tr",68)}function YC(i,D){1&i&&A.nrm(0,"tr",69)}let SC=(()=>{class i{constructor(t,l,c,j,PA,WA,an){this.logger=t,this.store=l,this.dataService=c,this.commonService=j,this.rtlEffects=PA,this.datePipe=WA,this.camelCaseWithReplace=an,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:r.md,sortBy:"channel_opening_fee",sortOrder:r.oi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=u.e4L,this.faExclamationTriangle=u.zpE,this.faUsers=u.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 F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=r.wn.INITIATED,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.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(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",t.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=t.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.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:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Gr.z)([this.store.select(E.kQ),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,g.Q)(this.unSubs[1])).subscribe({next:([t,l])=>{this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t),l&&!l.length&&(l=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(l)),this.listNodesCallStatus=r.wn.COMPLETED,l.forEach(c=>{c.address_types=Array.from(new Set(c.addresses?.reduce((PA,WA)=>((WA.type?.includes("ipv")||WA.type?.includes("tor"))&&PA.push(WA.type?.substring(0,3)),PA),[])))}),this.liquidityNodesData=l.filter(c=>c.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:t=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(t)),this.listNodesCallStatus=r.wn.ERROR,this.errorMessage=JSON.stringify(t)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(t=>{t.option_will_fund&&(t.channel_opening_fee=+(t.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(t.option_will_fund.lease_fee_basis||0)/1e4+ +(t.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(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.alias?t.alias.toLocaleLowerCase():"")+(t.channel_opening_fee?t.channel_opening_fee+" Sats":"")+(t.option_will_fund?.lease_fee_base_msat?t.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(t.option_will_fund?.lease_fee_basis?t.option_will_fund?.lease_fee_basis/100+"%":"")+(t.option_will_fund?.channel_fee_max_base_msat?t.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(t.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*t.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(t.address_types?t.address_types.reduce((j,PA)=>j+("tor"===PA?" tor":"ipv"===PA?" clearnet":" "+PA.toLowerCase()),""):"");break;case"alias":c=(t?.alias?.toLowerCase()||" ")+t?.address_types?.reduce((j,PA)=>j+(PA?"ipv"===PA?"clearnet":PA:"")," ")||"";break;case"last_timestamp":c=this.datePipe.transform(new Date(1e3*(t.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":c=t?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":c=((t.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((t.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":c=((t.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(t.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadLiqNodesTable(t){this.liquidityNodes=new F.I6([...t]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(t,l){"LN"===l?window.open("https://lnrouter.app/node/"+t.nodeid,"_blank"):"AM"===l&&window.open("https://amboss.space/node/"+t.nodeid,"_blank")}onOpenChannel(t){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{node:t,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:XE}}}))}onViewLeaseInfo(t){const l=t.addresses?.reduce((PA,WA)=>(WA.address&&WA.address.length>40&&(WA.address=WA.address.substring(0,39)+"..."),PA.concat(JSON.stringify(WA).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),c=[];if(t.features&&""!==t.features.trim()){const PA=parseInt(t.features,16);r.TH.forEach(WA=>{PA&1<{PA&&this.onOpenChannel(t)})}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(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(Qe.u),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.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(l,c){if(1&l){const j=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(WA){return A.eBV(j),A.DH7(c.channelAmount,WA)||(c.channelAmount=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onCalculateOpeningFee())}),A.k0s(),A.DNE(24,tC,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(WA){return A.eBV(j),A.DH7(c.channel_opening_feeRate,WA)||(c.channel_opening_feeRate=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onCalculateOpeningFee())}),A.k0s(),A.DNE(29,eC,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(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(40,"perfect-scrollbar"),A.DNE(41,nC,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(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(46,"div",26),A.DNE(47,iC,1,0,"mat-progress-bar",27),A.j41(48,"table",28,1),A.qex(50,29),A.DNE(51,rC,2,0,"th",30)(52,sC,6,5,"td",31),A.bVm(),A.qex(53,32),A.DNE(54,oC,2,0,"th",30)(55,lC,4,4,"td",31),A.bVm(),A.qex(56,33),A.DNE(57,cC,2,0,"th",30)(58,gC,3,4,"td",31),A.bVm(),A.qex(59,34),A.DNE(60,BC,2,0,"th",30)(61,uC,2,1,"td",31),A.bVm(),A.qex(62,35),A.DNE(63,fC,2,0,"th",36)(64,hC,4,8,"td",31),A.bVm(),A.qex(65,37),A.DNE(66,EC,2,0,"th",36)(67,CC,4,8,"td",31),A.bVm(),A.qex(68,38),A.DNE(69,wC,2,0,"th",39)(70,dC,4,4,"td",31),A.bVm(),A.qex(71,40),A.DNE(72,QC,2,0,"th",39)(73,mC,4,4,"td",31),A.bVm(),A.qex(74,41),A.DNE(75,pC,6,0,"th",36)(76,MC,12,0,"td",42),A.bVm(),A.qex(77,43),A.DNE(78,FC,4,3,"td",44),A.bVm(),A.DNE(79,yC,1,3,"tr",45)(80,xC,1,0,"tr",46)(81,YC,1,0,"tr",47),A.k0s()(),A.nrm(82,"mat-paginator",48),A.k0s()()()()}2&l&&(A.R7$(),A.Y8G("icon",c.faBullhorn),A.R7$(10),A.Y8G("icon",c.faExclamationTriangle),A.R7$(7),A.Y8G("matTooltip",c.askTooltipMsg),A.R7$(5),A.R50("ngModel",c.channelAmount),A.R7$(),A.Y8G("ngIf",!c.channelAmount),A.R7$(4),A.R50("ngModel",c.channel_opening_feeRate),A.R7$(),A.Y8G("ngIf",!c.channel_opening_feeRate),A.R7$(3),A.Y8G("icon",c.faUsers),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(22,qE).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.listNodesCallStatus===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.liquidityNodes)("ngClass",A.eq3(23,_E,""!==c.errorMessage)),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(25,$E)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,p.RN,p.m2,y.An,wA.fg,IA.rl,IA.nJ,IA.TL,B.HM,ZE.Jl,$.VO,$.$2,FA.wT,z.B4,z.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,HA.oV,S.iy,cA.ZF,cA.Ld,J.N,st.QX,st.vh]})}return i})();const NC=[{path:"",component:s,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Bo,canActivate:[(0,Pe.Wz)()]},{path:"onchain",component:_o,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:K0,canActivate:[(0,Pe.Wz)()]},{path:"send/:selTab",component:ka,data:{sweepAll:!1},canActivate:[(0,Pe.Wz)()]},{path:"sweep/:selTab",component:ka,data:{sweepAll:!0},canActivate:[(0,Pe.Wz)()]}]},{path:"connections",component:t0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:cl,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Gt,canActivate:[(0,Pe.Wz)()]},{path:"pending",component:os,canActivate:[(0,Pe.Wz)()]},{path:"activehtlcs",component:Cf,canActivate:[(0,Pe.Wz)()]}]},{path:"peers",component:yc,data:{sweepAll:!1},canActivate:[(0,Pe.Wz)()]}]},{path:"liquidityads",component:SC,canActivate:[(0,Pe.Wz)()]},{path:"transactions",component:n0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:ga,canActivate:[(0,Pe.Wz)()]},{path:"invoices",component:Te,canActivate:[(0,Pe.Wz)()]},{path:"offers",component:Qh,canActivate:[(0,Pe.Wz)()]},{path:"offrBookmarks",component:Kh,canActivate:[(0,Pe.Wz)()]}]},{path:"messages",component:J0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:_c,canActivate:[(0,Pe.Wz)()]},{path:"verify",component:ag,canActivate:[(0,Pe.Wz)()]}]},{path:"routing",component:wr,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ol,canActivate:[(0,Pe.Wz)()]},{path:"failedtransactions",component:SB,canActivate:[(0,Pe.Wz)()]},{path:"localfail",component:xE,canActivate:[(0,Pe.Wz)()]},{path:"routingpeers",component:Iu,canActivate:[(0,Pe.Wz)()]}]},{path:"reports",component:df,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Ff,canActivate:[(0,Pe.Wz)()]},{path:"transactions",component:Uf,canActivate:[(0,Pe.Wz)()]}]},{path:"graph",component:zf,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:v0,canActivate:[(0,Pe.Wz)()]},{path:"queryroutes",component:Zc,canActivate:[(0,Pe.Wz)()]}]},{path:"rates",component:j0,canActivate:[(0,Pe.Wz)()]},{path:"**",component:Lf.X},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],bC=le.iI.forChild(NC);var RC=Pt(9029);let TC=(()=>{class i{static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275mod=A.$C({type:i,bootstrap:[s]});static#e=this.\u0275inj=A.G2t({imports:[st.MD,RC.G,bC]})}return i})()},2643:function(Gl){typeof self<"u"&&self,Gl.exports=function(){var br={41783:function(b,A){"use strict";A.OP=0,A.CL=1,A.CP=2,A.QU=3,A.GL=4,A.NS=5,A.EX=6,A.SY=7,A.IS=8,A.PR=9,A.PO=10,A.NU=11,A.AL=12,A.HL=13,A.ID=14,A.IN=15,A.HY=16,A.BA=17,A.BB=18,A.B2=19,A.ZW=20,A.CM=21,A.WJ=22,A.H2=23,A.H3=24,A.JL=25,A.JV=26,A.JT=27,A.RI=28,A.EB=29,A.EM=30,A.ZWJ=31,A.CB=32,A.AI=33,A.BK=34,A.CJ=35,A.CR=36,A.LF=37,A.NL=38,A.SA=39,A.SG=40,A.SP=41,A.XX=42},98282:function(b,A){"use strict";A.DI_BRK=0,A.IN_BRK=1,A.CI_BRK=2,A.CP_BRK=3,A.PR_BRK=4,A.pairTable=[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4],[0,4,4,1,1,4,4,4,4,1,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,4,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[4,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,0,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,1,1,1,1,0,0,4,2,4,1,1,1,1,1,0,1,1,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,1,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,4,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,1,1,1,1,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,1,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,1,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0]]},57013:function(b,A,n){"use strict";n(18756),A.EncodeStream=n(16176),A.DecodeStream=n(78984),A.Array=n(38637),A.LazyArray=n(88687),A.Bitfield=n(72959),A.Boolean=n(64888),A.Buffer=n(77324),A.Enum=n(71499),A.Optional=n(72526),A.Reserved=n(10298),A.String=n(36291),A.Struct=n(2731),A.VersionedStruct=n(48084);var B=n(76949),a=n(63787),s=n(41545);Object.assign(A,B,a,s)},38637:function(b,A,n){"use strict";function B(u,r){var d=typeof Symbol<"u"&&u[Symbol.iterator]||u["@@iterator"];if(d)return(d=d.call(u)).next.bind(d);if(Array.isArray(u)||(d=function a(u,r){if(u){if("string"==typeof u)return s(u,r);var d=Object.prototype.toString.call(u).slice(8,-1);if("Object"===d&&u.constructor&&(d=u.constructor.name),"Map"===d||"Set"===d)return Array.from(u);if("Arguments"===d||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(d))return s(u,r)}}(u))||r&&u&&"number"==typeof u.length){d&&(u=d);var E=0;return function(){return E>=u.length?{done:!0}:{done:!1,value:u[E++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(u,r){(null==r||r>u.length)&&(r=u.length);for(var d=0,E=new Array(r);dthis.buffer.length)return this.flush()},C.flush=function(){if(this.bufferOffset>0)return this.push(B.from(this.buffer.slice(0,this.bufferOffset))),this.bufferOffset=0},C.writeBuffer=function(h){return this.flush(),this.push(h),this.pos+=h.length},C.writeString=function(h,Q){switch(void 0===Q&&(Q="ascii"),Q){case"utf16le":case"ucs2":case"utf8":case"ascii":return this.writeBuffer(B.from(h,Q));case"utf16be":for(var I=B.from(h,"utf16le"),R=0,p=I.length-1;R>>16&255,this.buffer[this.bufferOffset++]=h>>>8&255,this.buffer[this.bufferOffset++]=255&h,this.pos+=3},C.writeUInt24LE=function(h){return this.ensure(3),this.buffer[this.bufferOffset++]=255&h,this.buffer[this.bufferOffset++]=h>>>8&255,this.buffer[this.bufferOffset++]=h>>>16&255,this.pos+=3},C.writeInt24BE=function(h){return this.writeUInt24BE(h>=0?h:h+16777215+1)},C.writeInt24LE=function(h){return this.writeUInt24LE(h>=0?h:h+16777215+1)},C.fill=function(h,Q){if(Q=this.length)){if(null==this.items[h]){var Q=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.ctx)*h,this.items[h]=this.type.decode(this.stream,this.ctx),this.stream.pos=Q}return this.items[h]}},C.toArray=function(){for(var h=[],Q=0,I=this.length;Q>1),(C=f.call(this,"Int"+r,d)||this)._point=1<E)throw new RangeError('The value "'+Z+'" is invalid for option "size"');var k=new Uint8Array(Z);return Object.setPrototypeOf(k,h.prototype),k}function h(Z,k,U){if("number"==typeof Z){if("string"==typeof k)throw new TypeError('The "string" argument must be of type string. Received type number');return p(Z)}return Q(Z,k,U)}function Q(Z,k,U){if("string"==typeof Z)return function m(Z,k){if(("string"!=typeof k||""===k)&&(k="utf8"),!h.isEncoding(k))throw new TypeError("Unknown encoding: "+k);var U=0|F(Z,k),hA=e(U),q=hA.write(Z,k);return q!==U&&(hA=hA.slice(0,q)),hA}(Z,k);if(ArrayBuffer.isView(Z))return function x(Z){if(ht(Z,Uint8Array)){var k=new Uint8Array(Z);return Y(k.buffer,k.byteOffset,k.byteLength)}return y(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(ht(Z,ArrayBuffer)||Z&&ht(Z.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(ht(Z,SharedArrayBuffer)||Z&&ht(Z.buffer,SharedArrayBuffer)))return Y(Z,k,U);if("number"==typeof Z)throw new TypeError('The "value" argument must not be of type number. Received type number');var hA=Z.valueOf&&Z.valueOf();if(null!=hA&&hA!==Z)return h.from(hA,k,U);var q=function v(Z){if(h.isBuffer(Z)){var k=0|S(Z.length),U=e(k);return 0===U.length||Z.copy(U,0,0,k),U}return void 0!==Z.length?"number"!=typeof Z.length||vt(Z.length)?e(0):y(Z):"Buffer"===Z.type&&Array.isArray(Z.data)?y(Z.data):void 0}(Z);if(q)return q;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof Z[Symbol.toPrimitive])return h.from(Z[Symbol.toPrimitive]("string"),k,U);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Z)}function I(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 p(Z){return I(Z),e(Z<0?0:0|S(Z))}function y(Z){for(var k=Z.length<0?0:0|S(Z.length),U=e(k),hA=0;hA=E)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+E.toString(16)+" bytes");return 0|Z}function F(Z,k){if(h.isBuffer(Z))return Z.length;if(ArrayBuffer.isView(Z)||ht(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);var U=Z.length,hA=arguments.length>2&&!0===arguments[2];if(!hA&&0===U)return 0;for(var q=!1;;)switch(k){case"ascii":case"latin1":case"binary":return U;case"utf8":case"utf-8":return pt(Z).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*U;case"hex":return U>>>1;case"base64":return _A(Z).length;default:if(q)return hA?-1:pt(Z).length;k=(""+k).toLowerCase(),q=!0}}function $(Z,k,U){var hA=!1;if((void 0===k||k<0)&&(k=0),k>this.length||((void 0===U||U>this.length)&&(U=this.length),U<=0)||(U>>>=0)<=(k>>>=0))return"";for(Z||(Z="utf8");;)switch(Z){case"hex":return xA(this,k,U);case"utf8":case"utf-8":return J(this,k,U);case"ascii":return eA(this,k,U);case"latin1":case"binary":return EA(this,k,U);case"base64":return HA(this,k,U);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return OA(this,k,U);default:if(hA)throw new TypeError("Unknown encoding: "+Z);Z=(Z+"").toLowerCase(),hA=!0}}function gA(Z,k,U){var hA=Z[k];Z[k]=Z[U],Z[U]=hA}function _(Z,k,U,hA,q){if(0===Z.length)return-1;if("string"==typeof U?(hA=U,U=0):U>2147483647?U=2147483647:U<-2147483648&&(U=-2147483648),vt(U=+U)&&(U=q?0:Z.length-1),U<0&&(U=Z.length+U),U>=Z.length){if(q)return-1;U=Z.length-1}else if(U<0){if(!q)return-1;U=0}if("string"==typeof k&&(k=h.from(k,hA)),h.isBuffer(k))return 0===k.length?-1:fA(Z,k,U,hA,q);if("number"==typeof k)return k&=255,"function"==typeof Uint8Array.prototype.indexOf?q?Uint8Array.prototype.indexOf.call(Z,k,U):Uint8Array.prototype.lastIndexOf.call(Z,k,U):fA(Z,[k],U,hA,q);throw new TypeError("val must be string, number or Buffer")}function fA(Z,k,U,hA,q){var nt,GA=1,At=Z.length,O=k.length;if(void 0!==hA&&("ucs2"===(hA=String(hA).toLowerCase())||"ucs-2"===hA||"utf16le"===hA||"utf-16le"===hA)){if(Z.length<2||k.length<2)return-1;GA=2,At/=2,O/=2,U/=2}function qA(Tt,yt){return 1===GA?Tt[yt]:Tt.readUInt16BE(yt*GA)}if(q){var MA=-1;for(nt=U;ntAt&&(U=At-O),nt=U;nt>=0;nt--){for(var jA=!0,ot=0;otq&&(hA=q):hA=q;var At,GA=k.length;for(hA>GA/2&&(hA=GA/2),At=0;At>8,GA.push(U%256),GA.push(hA);return GA}(k,Z.length-U),Z,U,hA)}function HA(Z,k,U){return u.fromByteArray(0===k&&U===Z.length?Z:Z.slice(k,U))}function J(Z,k,U){U=Math.min(Z.length,U);for(var hA=[],q=k;q239?4:GA>223?3:GA>191?2:1;if(q+O<=U){var qA=void 0,nt=void 0,MA=void 0,jA=void 0;switch(O){case 1:GA<128&&(At=GA);break;case 2:128==(192&(qA=Z[q+1]))&&(jA=(31&GA)<<6|63&qA)>127&&(At=jA);break;case 3:nt=Z[q+2],128==(192&(qA=Z[q+1]))&&128==(192&nt)&&(jA=(15&GA)<<12|(63&qA)<<6|63&nt)>2047&&(jA<55296||jA>57343)&&(At=jA);break;case 4:nt=Z[q+2],MA=Z[q+3],128==(192&(qA=Z[q+1]))&&128==(192&nt)&&128==(192&MA)&&(jA=(15&GA)<<18|(63&qA)<<12|(63&nt)<<6|63&MA)>65535&&jA<1114112&&(At=jA)}}null===At?(At=65533,O=1):At>65535&&(hA.push((At-=65536)>>>10&1023|55296),At=56320|1023&At),hA.push(At),q+=O}return function aA(Z){var k=Z.length;if(k<=BA)return String.fromCharCode.apply(String,Z);for(var U="",hA=0;hAq.length?(h.isBuffer(At)||(At=h.from(At)),At.copy(q,GA)):Uint8Array.prototype.set.call(q,At,GA);else{if(!h.isBuffer(At))throw new TypeError('"list" argument must be an Array of Buffers');At.copy(q,GA)}GA+=At.length}return q},h.byteLength=F,h.prototype._isBuffer=!0,h.prototype.swap16=function(){var k=this.length;if(k%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var U=0;UU&&(k+=" ... "),""},d&&(h.prototype[d]=h.prototype.inspect),h.prototype.compare=function(k,U,hA,q,GA){if(ht(k,Uint8Array)&&(k=h.from(k,k.offset,k.byteLength)),!h.isBuffer(k))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof k);if(void 0===U&&(U=0),void 0===hA&&(hA=k?k.length:0),void 0===q&&(q=0),void 0===GA&&(GA=this.length),U<0||hA>k.length||q<0||GA>this.length)throw new RangeError("out of range index");if(q>=GA&&U>=hA)return 0;if(q>=GA)return-1;if(U>=hA)return 1;if(this===k)return 0;for(var At=(GA>>>=0)-(q>>>=0),O=(hA>>>=0)-(U>>>=0),qA=Math.min(At,O),nt=this.slice(q,GA),MA=k.slice(U,hA),jA=0;jA>>=0,isFinite(hA)?(hA>>>=0,void 0===q&&(q="utf8")):(q=hA,hA=void 0)}var GA=this.length-U;if((void 0===hA||hA>GA)&&(hA=GA),k.length>0&&(hA<0||U<0)||U>this.length)throw new RangeError("Attempt to write outside buffer bounds");q||(q="utf8");for(var At=!1;;)switch(q){case"hex":return iA(this,k,U,hA);case"utf8":case"utf-8":return wA(this,k,U,hA);case"ascii":case"latin1":case"binary":return IA(this,k,U,hA);case"base64":return FA(this,k,U,hA);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return YA(this,k,U,hA);default:if(At)throw new TypeError("Unknown encoding: "+q);q=(""+q).toLowerCase(),At=!0}},h.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var BA=4096;function eA(Z,k,U){var hA="";U=Math.min(Z.length,U);for(var q=k;qhA)&&(U=hA);for(var q="",GA=k;GAU)throw new RangeError("Trying to access beyond buffer length")}function L(Z,k,U,hA,q,GA){if(!h.isBuffer(Z))throw new TypeError('"buffer" argument must be a Buffer instance');if(k>q||kZ.length)throw new RangeError("Index out of range")}function rA(Z,k,U,hA,q){pA(k,hA,q,Z,U,7);var GA=Number(k&BigInt(4294967295));Z[U++]=GA,Z[U++]=GA>>=8,Z[U++]=GA>>=8,Z[U++]=GA>>=8;var At=Number(k>>BigInt(32)&BigInt(4294967295));return Z[U++]=At,Z[U++]=At>>=8,Z[U++]=At>>=8,Z[U++]=At>>=8,U}function AA(Z,k,U,hA,q){pA(k,hA,q,Z,U,7);var GA=Number(k&BigInt(4294967295));Z[U+7]=GA,Z[U+6]=GA>>=8,Z[U+5]=GA>>=8,Z[U+4]=GA>>=8;var At=Number(k>>BigInt(32)&BigInt(4294967295));return Z[U+3]=At,Z[U+2]=At>>=8,Z[U+1]=At>>=8,Z[U]=At>>=8,U+8}function QA(Z,k,U,hA,q,GA){if(U+hA>Z.length)throw new RangeError("Index out of range");if(U<0)throw new RangeError("Index out of range")}function yA(Z,k,U,hA,q){return k=+k,U>>>=0,q||QA(Z,0,U,4),r.write(Z,k,U,hA,23,4),U+4}function cA(Z,k,U,hA,q){return k=+k,U>>>=0,q||QA(Z,0,U,8),r.write(Z,k,U,hA,52,8),U+8}h.prototype.slice=function(k,U){var hA=this.length;(k=~~k)<0?(k+=hA)<0&&(k=0):k>hA&&(k=hA),(U=void 0===U?hA:~~U)<0?(U+=hA)<0&&(U=0):U>hA&&(U=hA),U>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k],GA=1,At=0;++At>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k+--U],GA=1;U>0&&(GA*=256);)q+=this[k+--U]*GA;return q},h.prototype.readUint8=h.prototype.readUInt8=function(k,U){return k>>>=0,U||W(k,1,this.length),this[k]},h.prototype.readUint16LE=h.prototype.readUInt16LE=function(k,U){return k>>>=0,U||W(k,2,this.length),this[k]|this[k+1]<<8},h.prototype.readUint16BE=h.prototype.readUInt16BE=function(k,U){return k>>>=0,U||W(k,2,this.length),this[k]<<8|this[k+1]},h.prototype.readUint32LE=h.prototype.readUInt32LE=function(k,U){return k>>>=0,U||W(k,4,this.length),(this[k]|this[k+1]<<8|this[k+2]<<16)+16777216*this[k+3]},h.prototype.readUint32BE=h.prototype.readUInt32BE=function(k,U){return k>>>=0,U||W(k,4,this.length),16777216*this[k]+(this[k+1]<<16|this[k+2]<<8|this[k+3])},h.prototype.readBigUInt64LE=vA(function(k){JA(k>>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=U+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,24),GA=this[++k]+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+hA*Math.pow(2,24);return BigInt(q)+(BigInt(GA)<>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=U*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k],GA=this[++k]*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+hA;return(BigInt(q)<>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k],GA=1,At=0;++At=(GA*=128)&&(q-=Math.pow(2,8*U)),q},h.prototype.readIntBE=function(k,U,hA){k>>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=U,GA=1,At=this[k+--q];q>0&&(GA*=256);)At+=this[k+--q]*GA;return At>=(GA*=128)&&(At-=Math.pow(2,8*U)),At},h.prototype.readInt8=function(k,U){return k>>>=0,U||W(k,1,this.length),128&this[k]?-1*(255-this[k]+1):this[k]},h.prototype.readInt16LE=function(k,U){k>>>=0,U||W(k,2,this.length);var hA=this[k]|this[k+1]<<8;return 32768&hA?4294901760|hA:hA},h.prototype.readInt16BE=function(k,U){k>>>=0,U||W(k,2,this.length);var hA=this[k+1]|this[k]<<8;return 32768&hA?4294901760|hA:hA},h.prototype.readInt32LE=function(k,U){return k>>>=0,U||W(k,4,this.length),this[k]|this[k+1]<<8|this[k+2]<<16|this[k+3]<<24},h.prototype.readInt32BE=function(k,U){return k>>>=0,U||W(k,4,this.length),this[k]<<24|this[k+1]<<16|this[k+2]<<8|this[k+3]},h.prototype.readBigInt64LE=vA(function(k){JA(k>>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=this[k+4]+this[k+5]*Math.pow(2,8)+this[k+6]*Math.pow(2,16)+(hA<<24);return(BigInt(q)<>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=(U<<24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k];return(BigInt(q)<>>=0,U||W(k,4,this.length),r.read(this,k,!0,23,4)},h.prototype.readFloatBE=function(k,U){return k>>>=0,U||W(k,4,this.length),r.read(this,k,!1,23,4)},h.prototype.readDoubleLE=function(k,U){return k>>>=0,U||W(k,8,this.length),r.read(this,k,!0,52,8)},h.prototype.readDoubleBE=function(k,U){return k>>>=0,U||W(k,8,this.length),r.read(this,k,!1,52,8)},h.prototype.writeUintLE=h.prototype.writeUIntLE=function(k,U,hA,q){k=+k,U>>>=0,hA>>>=0,q||L(this,k,U,hA,Math.pow(2,8*hA)-1,0);var At=1,O=0;for(this[U]=255&k;++O>>=0,hA>>>=0,q||L(this,k,U,hA,Math.pow(2,8*hA)-1,0);var At=hA-1,O=1;for(this[U+At]=255&k;--At>=0&&(O*=256);)this[U+At]=k/O&255;return U+hA},h.prototype.writeUint8=h.prototype.writeUInt8=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,1,255,0),this[U]=255&k,U+1},h.prototype.writeUint16LE=h.prototype.writeUInt16LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,65535,0),this[U]=255&k,this[U+1]=k>>>8,U+2},h.prototype.writeUint16BE=h.prototype.writeUInt16BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,65535,0),this[U]=k>>>8,this[U+1]=255&k,U+2},h.prototype.writeUint32LE=h.prototype.writeUInt32LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,4294967295,0),this[U+3]=k>>>24,this[U+2]=k>>>16,this[U+1]=k>>>8,this[U]=255&k,U+4},h.prototype.writeUint32BE=h.prototype.writeUInt32BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,4294967295,0),this[U]=k>>>24,this[U+1]=k>>>16,this[U+2]=k>>>8,this[U+3]=255&k,U+4},h.prototype.writeBigUInt64LE=vA(function(k,U){return void 0===U&&(U=0),rA(this,k,U,BigInt(0),BigInt("0xffffffffffffffff"))}),h.prototype.writeBigUInt64BE=vA(function(k,U){return void 0===U&&(U=0),AA(this,k,U,BigInt(0),BigInt("0xffffffffffffffff"))}),h.prototype.writeIntLE=function(k,U,hA,q){if(k=+k,U>>>=0,!q){var GA=Math.pow(2,8*hA-1);L(this,k,U,hA,GA-1,-GA)}var At=0,O=1,qA=0;for(this[U]=255&k;++At>>=0,!q){var GA=Math.pow(2,8*hA-1);L(this,k,U,hA,GA-1,-GA)}var At=hA-1,O=1,qA=0;for(this[U+At]=255&k;--At>=0&&(O*=256);)k<0&&0===qA&&0!==this[U+At+1]&&(qA=1),this[U+At]=(k/O|0)-qA&255;return U+hA},h.prototype.writeInt8=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,1,127,-128),k<0&&(k=255+k+1),this[U]=255&k,U+1},h.prototype.writeInt16LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,32767,-32768),this[U]=255&k,this[U+1]=k>>>8,U+2},h.prototype.writeInt16BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,32767,-32768),this[U]=k>>>8,this[U+1]=255&k,U+2},h.prototype.writeInt32LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,2147483647,-2147483648),this[U]=255&k,this[U+1]=k>>>8,this[U+2]=k>>>16,this[U+3]=k>>>24,U+4},h.prototype.writeInt32BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,2147483647,-2147483648),k<0&&(k=4294967295+k+1),this[U]=k>>>24,this[U+1]=k>>>16,this[U+2]=k>>>8,this[U+3]=255&k,U+4},h.prototype.writeBigInt64LE=vA(function(k,U){return void 0===U&&(U=0),rA(this,k,U,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),h.prototype.writeBigInt64BE=vA(function(k,U){return void 0===U&&(U=0),AA(this,k,U,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),h.prototype.writeFloatLE=function(k,U,hA){return yA(this,k,U,!0,hA)},h.prototype.writeFloatBE=function(k,U,hA){return yA(this,k,U,!1,hA)},h.prototype.writeDoubleLE=function(k,U,hA){return cA(this,k,U,!0,hA)},h.prototype.writeDoubleBE=function(k,U,hA){return cA(this,k,U,!1,hA)},h.prototype.copy=function(k,U,hA,q){if(!h.isBuffer(k))throw new TypeError("argument should be a Buffer");if(hA||(hA=0),!q&&0!==q&&(q=this.length),U>=k.length&&(U=k.length),U||(U=0),q>0&&q=this.length)throw new RangeError("Index out of range");if(q<0)throw new RangeError("sourceEnd out of bounds");q>this.length&&(q=this.length),k.length-U>>=0,hA=void 0===hA?this.length:hA>>>0,k||(k=0),"number"==typeof k)for(At=U;At=hA+4;U-=3)k="_"+Z.slice(U-3,U)+k;return""+Z.slice(0,U)+k}function pA(Z,k,U,hA,q,GA){if(Z>U||Z3?0===k||k===BigInt(0)?">= 0"+At+" and < 2"+At+" ** "+8*(GA+1)+At:">= -(2"+At+" ** "+(8*(GA+1)-1)+At+") and < 2 ** "+(8*(GA+1)-1)+At:">= "+k+At+" and <= "+U+At,new CA.ERR_OUT_OF_RANGE("value",O,Z)}!function zA(Z,k,U){JA(k,"offset"),(void 0===Z[k]||void 0===Z[k+U])&&ft(k,Z.length-(U+1))}(hA,q,GA)}function JA(Z,k){if("number"!=typeof Z)throw new CA.ERR_INVALID_ARG_TYPE(k,"number",Z)}function ft(Z,k,U){throw Math.floor(Z)!==Z?(JA(Z,U),new CA.ERR_OUT_OF_RANGE(U||"offset","an integer",Z)):k<0?new CA.ERR_BUFFER_OUT_OF_BOUNDS:new CA.ERR_OUT_OF_RANGE(U||"offset",">= "+(U?1:0)+" and <= "+k,Z)}DA("ERR_BUFFER_OUT_OF_BOUNDS",function(Z){return Z?Z+" is outside of buffer bounds":"Attempt to access memory outside buffer bounds"},RangeError),DA("ERR_INVALID_ARG_TYPE",function(Z,k){return'The "'+Z+'" argument must be of type number. Received type '+typeof k},TypeError),DA("ERR_OUT_OF_RANGE",function(Z,k,U){var hA='The value of "'+Z+'" is out of range.',q=U;return Number.isInteger(U)&&Math.abs(U)>Math.pow(2,32)?q=NA(String(U)):"bigint"==typeof U&&(q=String(U),(U>Math.pow(BigInt(2),BigInt(32))||U<-Math.pow(BigInt(2),BigInt(32)))&&(q=NA(q)),q+="n"),hA+" It must be "+k+". Received "+q},RangeError);var wt=/[^+/0-9A-Za-z-_]/g;function pt(Z,k){k=k||1/0;for(var U,hA=Z.length,q=null,GA=[],At=0;At55295&&U<57344){if(!q){if(U>56319){(k-=3)>-1&&GA.push(239,191,189);continue}if(At+1===hA){(k-=3)>-1&&GA.push(239,191,189);continue}q=U;continue}if(U<56320){(k-=3)>-1&&GA.push(239,191,189),q=U;continue}U=65536+(q-55296<<10|U-56320)}else q&&(k-=3)>-1&&GA.push(239,191,189);if(q=null,U<128){if((k-=1)<0)break;GA.push(U)}else if(U<2048){if((k-=2)<0)break;GA.push(U>>6|192,63&U|128)}else if(U<65536){if((k-=3)<0)break;GA.push(U>>12|224,U>>6&63|128,63&U|128)}else{if(!(U<1114112))throw new Error("Invalid code point");if((k-=4)<0)break;GA.push(U>>18|240,U>>12&63|128,U>>6&63|128,63&U|128)}}return GA}function _A(Z){return u.toByteArray(function gt(Z){if((Z=(Z=Z.split("=")[0]).trim().replace(wt,"")).length<2)return"";for(;Z.length%4!=0;)Z+="=";return Z}(Z))}function Qt(Z,k,U,hA){var q;for(q=0;q=k.length||q>=Z.length);++q)k[q+U]=Z[q];return q}function ht(Z,k){return Z instanceof k||null!=Z&&null!=Z.constructor&&null!=Z.constructor.name&&Z.constructor.name===k.name}function vt(Z){return Z!=Z}var Nt=function(){for(var Z="0123456789abcdef",k=new Array(256),U=0;U<16;++U)for(var hA=16*U,q=0;q<16;++q)k[hA+q]=Z[U]+Z[q];return k}();function vA(Z){return typeof BigInt>"u"?Bt:Z}function Bt(){throw new Error("BigInt not supported")}},38719:function(b,A,n){"use strict";n(10720),n(14032),b.exports=typeof ArrayBuffer<"u"&&typeof DataView<"u"},36597:function(b,A,n){"use strict";var fA,iA,wA,B=n(38719),a=n(15567),s=n(32010),o=n(94578),g=n(24517),f=n(20340),w=n(52564),u=n(68664),r=n(48914),d=n(13711),E=n(95892).f,C=n(70176),e=n(69548),h=n(3840),Q=n(38688),I=n(46859),R=s.Int8Array,p=R&&R.prototype,m=s.Uint8ClampedArray,y=m&&m.prototype,x=R&&e(R),Y=p&&e(p),v=Object.prototype,S=s.TypeError,z=Q("toStringTag"),F=I("TYPED_ARRAY_TAG"),$=I("TYPED_ARRAY_CONSTRUCTOR"),gA=B&&!!h&&"Opera"!==w(s.opera),_=!1,IA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},FA={BigInt64Array:8,BigUint64Array:8},HA=function(xA){if(!g(xA))return!1;var OA=w(xA);return f(IA,OA)||f(FA,OA)};for(fA in IA)(wA=(iA=s[fA])&&iA.prototype)?r(wA,$,iA):gA=!1;for(fA in FA)(wA=(iA=s[fA])&&iA.prototype)&&r(wA,$,iA);if((!gA||!o(x)||x===Function.prototype)&&(x=function(){throw S("Incorrect invocation")},gA))for(fA in IA)s[fA]&&h(s[fA],x);if((!gA||!Y||Y===v)&&(Y=x.prototype,gA))for(fA in IA)s[fA]&&h(s[fA].prototype,Y);if(gA&&e(y)!==Y&&h(y,Y),a&&!f(Y,z))for(fA in _=!0,E(Y,z,{get:function(){return g(this)?this[F]:void 0}}),IA)s[fA]&&r(s[fA],F,fA);b.exports={NATIVE_ARRAY_BUFFER_VIEWS:gA,TYPED_ARRAY_CONSTRUCTOR:$,TYPED_ARRAY_TAG:_&&F,aTypedArray:function(xA){if(HA(xA))return xA;throw S("Target is not a typed array")},aTypedArrayConstructor:function(xA){if(o(xA)&&(!h||C(x,xA)))return xA;throw S(u(xA)+" is not a typed array constructor")},exportTypedArrayMethod:function(xA,OA,W){if(a){if(W)for(var L in IA){var rA=s[L];if(rA&&f(rA.prototype,xA))try{delete rA.prototype[xA]}catch{}}(!Y[xA]||W)&&d(Y,xA,W?OA:gA&&p[xA]||OA)}},exportTypedArrayStaticMethod:function(xA,OA,W){var L,rA;if(a){if(h){if(W)for(L in IA)if((rA=s[L])&&f(rA,xA))try{delete rA[xA]}catch{}if(x[xA]&&!W)return;try{return d(x,xA,W?OA:gA&&x[xA]||OA)}catch{}}for(L in IA)(rA=s[L])&&(!rA[xA]||W)&&d(rA,xA,OA)}},isView:function(xA){if(!g(xA))return!1;var OA=w(xA);return"DataView"===OA||f(IA,OA)||f(FA,OA)},isTypedArray:HA,TypedArray:x,TypedArrayPrototype:Y}},89987:function(b,A,n){"use strict";n(24863);var B=n(32010),a=n(38347),s=n(15567),o=n(38719),g=n(7081),f=n(48914),w=n(15341),u=n(47044),r=n(2868),d=n(26882),E=n(23417),C=n(71265),e=n(64397),h=n(69548),Q=n(3840),I=n(6611).f,R=n(95892).f,p=n(72864),m=n(73163),y=n(15216),x=n(70172),Y=g.PROPER,v=g.CONFIGURABLE,S=x.get,z=x.set,F="ArrayBuffer",$="DataView",gA="prototype",fA="Wrong index",iA=B[F],wA=iA,IA=wA&&wA[gA],FA=B[$],YA=FA&&FA[gA],HA=Object.prototype,J=B.Array,BA=B.RangeError,aA=a(p),eA=a([].reverse),EA=e.pack,xA=e.unpack,OA=function(gt){return[255>]},W=function(gt){return[255>,gt>>8&255]},L=function(gt){return[255>,gt>>8&255,gt>>16&255,gt>>24&255]},rA=function(gt){return gt[3]<<24|gt[2]<<16|gt[1]<<8|gt[0]},AA=function(gt){return EA(gt,23,4)},QA=function(gt){return EA(gt,52,8)},yA=function(gt,pt){R(gt[gA],pt,{get:function(){return S(this)[pt]}})},cA=function(gt,pt,Yt,VA){var _A=C(Yt),Qt=S(gt);if(_A+pt>Qt.byteLength)throw BA(fA);var ht=S(Qt.buffer).bytes,vt=_A+Qt.byteOffset,Nt=m(ht,vt,vt+pt);return VA?Nt:eA(Nt)},CA=function(gt,pt,Yt,VA,_A,Qt){var ht=C(Yt),vt=S(gt);if(ht+pt>vt.byteLength)throw BA(fA);for(var Nt=S(vt.buffer).bytes,vA=ht+vt.byteOffset,Bt=VA(+_A),Z=0;ZzA;)(pA=NA[zA++])in wA||f(wA,pA,iA[pA]);IA.constructor=wA}Q&&h(YA)!==HA&&Q(YA,HA);var JA=new FA(new wA(2)),ft=a(YA.setInt8);JA.setInt8(0,2147483648),JA.setInt8(1,2147483649),(JA.getInt8(0)||!JA.getInt8(1))&&w(YA,{setInt8:function(gt,pt){ft(this,gt,pt<<24>>24)},setUint8:function(gt,pt){ft(this,gt,pt<<24>>24)}},{unsafe:!0})}else IA=(wA=function(gt){r(this,IA);var pt=C(gt);z(this,{bytes:aA(J(pt),0),byteLength:pt}),s||(this.byteLength=pt)})[gA],YA=(FA=function(gt,pt,Yt){r(this,YA),r(gt,IA);var VA=S(gt).byteLength,_A=d(pt);if(_A<0||_A>VA)throw BA("Wrong offset");if(_A+(Yt=void 0===Yt?VA-_A:E(Yt))>VA)throw BA("Wrong length");z(this,{buffer:gt,byteLength:Yt,byteOffset:_A}),s||(this.buffer=gt,this.byteLength=Yt,this.byteOffset=_A)})[gA],s&&(yA(wA,"byteLength"),yA(FA,"buffer"),yA(FA,"byteLength"),yA(FA,"byteOffset")),w(YA,{getInt8:function(gt){return cA(this,1,gt)[0]<<24>>24},getUint8:function(gt){return cA(this,1,gt)[0]},getInt16:function(gt){var pt=cA(this,2,gt,arguments.length>1?arguments[1]:void 0);return(pt[1]<<8|pt[0])<<16>>16},getUint16:function(gt){var pt=cA(this,2,gt,arguments.length>1?arguments[1]:void 0);return pt[1]<<8|pt[0]},getInt32:function(gt){return rA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0))},getUint32:function(gt){return rA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(gt){return xA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(gt){return xA(cA(this,8,gt,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(gt,pt){CA(this,1,gt,OA,pt)},setUint8:function(gt,pt){CA(this,1,gt,OA,pt)},setInt16:function(gt,pt){CA(this,2,gt,W,pt,arguments.length>2?arguments[2]:void 0)},setUint16:function(gt,pt){CA(this,2,gt,W,pt,arguments.length>2?arguments[2]:void 0)},setInt32:function(gt,pt){CA(this,4,gt,L,pt,arguments.length>2?arguments[2]:void 0)},setUint32:function(gt,pt){CA(this,4,gt,L,pt,arguments.length>2?arguments[2]:void 0)},setFloat32:function(gt,pt){CA(this,4,gt,AA,pt,arguments.length>2?arguments[2]:void 0)},setFloat64:function(gt,pt){CA(this,8,gt,QA,pt,arguments.length>2?arguments[2]:void 0)}});y(wA,F),y(FA,$),b.exports={ArrayBuffer:wA,DataView:FA}},10720:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(89987),o=n(51334),g="ArrayBuffer",f=s[g];B({global:!0,forced:a[g]!==f},{ArrayBuffer:f}),o(g)},6993:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.BlockCipher,g=a.algo,f=[],w=[],u=[],r=[],d=[],E=[],C=[],e=[],h=[],Q=[];!function(){for(var p=[],m=0;m<256;m++)p[m]=m<128?m<<1:m<<1^283;var y=0,x=0;for(m=0;m<256;m++){var Y=x^x<<1^x<<2^x<<3^x<<4;f[y]=Y=Y>>>8^255&Y^99,w[Y]=y;var F,v=p[y],S=p[v],z=p[S];u[y]=(F=257*p[Y]^16843008*Y)<<24|F>>>8,r[y]=F<<16|F>>>16,d[y]=F<<8|F>>>24,E[y]=F,C[Y]=(F=16843009*z^65537*S^257*v^16843008*y)<<24|F>>>8,e[Y]=F<<16|F>>>16,h[Y]=F<<8|F>>>24,Q[Y]=F,y?(y=v^p[p[p[z^v]]],x^=p[p[x]]):y=x=1}}();var I=[0,1,2,4,8,16,32,64,128,27,54],R=g.AES=o.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var y=this._keyPriorReset=this._key,x=y.words,Y=y.sigBytes/4,S=4*((this._nRounds=Y+6)+1),z=this._keySchedule=[],F=0;F6&&F%Y==4&&(m=f[m>>>24]<<24|f[m>>>16&255]<<16|f[m>>>8&255]<<8|f[255&m]):(m=f[(m=m<<8|m>>>24)>>>24]<<24|f[m>>>16&255]<<16|f[m>>>8&255]<<8|f[255&m],m^=I[F/Y|0]<<24),z[F]=z[F-Y]^m);for(var $=this._invKeySchedule=[],gA=0;gA>>24]]^e[f[m>>>16&255]]^h[f[m>>>8&255]]^Q[f[255&m]]}}},encryptBlock:function(m,y){this._doCryptBlock(m,y,this._keySchedule,u,r,d,E,f)},decryptBlock:function(m,y){var x=m[y+1];m[y+1]=m[y+3],m[y+3]=x,this._doCryptBlock(m,y,this._invKeySchedule,C,e,h,Q,w),x=m[y+1],m[y+1]=m[y+3],m[y+3]=x},_doCryptBlock:function(m,y,x,Y,v,S,z,F){for(var $=this._nRounds,gA=m[y]^x[0],_=m[y+1]^x[1],fA=m[y+2]^x[2],iA=m[y+3]^x[3],wA=4,IA=1;IA<$;IA++){var FA=Y[gA>>>24]^v[_>>>16&255]^S[fA>>>8&255]^z[255&iA]^x[wA++],YA=Y[_>>>24]^v[fA>>>16&255]^S[iA>>>8&255]^z[255&gA]^x[wA++],HA=Y[fA>>>24]^v[iA>>>16&255]^S[gA>>>8&255]^z[255&_]^x[wA++],J=Y[iA>>>24]^v[gA>>>16&255]^S[_>>>8&255]^z[255&fA]^x[wA++];gA=FA,_=YA,fA=HA,iA=J}FA=(F[gA>>>24]<<24|F[_>>>16&255]<<16|F[fA>>>8&255]<<8|F[255&iA])^x[wA++],YA=(F[_>>>24]<<24|F[fA>>>16&255]<<16|F[iA>>>8&255]<<8|F[255&gA])^x[wA++],HA=(F[fA>>>24]<<24|F[iA>>>16&255]<<16|F[gA>>>8&255]<<8|F[255&_])^x[wA++],J=(F[iA>>>24]<<24|F[gA>>>16&255]<<16|F[_>>>8&255]<<8|F[255&fA])^x[wA++],m[y]=FA,m[y+1]=YA,m[y+2]=HA,m[y+3]=J},keySize:8});a.AES=o._createHelper(R)}(),B.AES)},83122:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.BlockCipher,f=16,w=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],u=[[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]],r={pbox:[],sbox:[]};function d(Q,I){var x=Q.sbox[0][I>>24&255]+Q.sbox[1][I>>16&255];return(x^=Q.sbox[2][I>>8&255])+Q.sbox[3][255&I]}function E(Q,I,R){for(var y,p=I,m=R,x=0;x=R&&(y=0);for(var Y=0,v=0,S=0,z=0;z1;--x)y=p^=Q.pbox[x],p=m=d(Q,p)^m,m=y;return y=p,p=m,m=y,{left:p^=Q.pbox[0],right:m^=Q.pbox[1]}}(r,I[R],I[R+1]);I[R]=p.left,I[R+1]=p.right},blockSize:2,keySize:4,ivSize:2});a.Blowfish=o._createHelper(h)}(),B.Blowfish)},28395:function(b,A,n){"use strict";var B,s,o,g,f,w,d,C,e,Q,I,R,m,x,v,S,F,$;n(39081),n(20731),n(23913),n(14032),n(57114),b.exports=(B=n(34559),n(36572),void(B.lib.Cipher||(f=(o=(s=B).lib).WordArray,d=s.enc.Base64,C=s.algo.EvpKDF,e=o.Cipher=(w=o.BufferedBlockAlgorithm).extend({cfg:(g=o.Base).extend(),createEncryptor:function(_,fA){return this.create(this._ENC_XFORM_MODE,_,fA)},createDecryptor:function(_,fA){return this.create(this._DEC_XFORM_MODE,_,fA)},init:function(_,fA,iA){this.cfg=this.cfg.extend(iA),this._xformMode=_,this._key=fA,this.reset()},reset:function(){w.reset.call(this),this._doReset()},process:function(_){return this._append(_),this._process()},finalize:function(_){return _&&this._append(_),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function gA(_){return"string"==typeof _?$:S}return function(_){return{encrypt:function(iA,wA,IA){return gA(wA).encrypt(_,iA,wA,IA)},decrypt:function(iA,wA,IA){return gA(wA).decrypt(_,iA,wA,IA)}}}}()}),o.StreamCipher=e.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),Q=s.mode={},I=o.BlockCipherMode=g.extend({createEncryptor:function(_,fA){return this.Encryptor.create(_,fA)},createDecryptor:function(_,fA){return this.Decryptor.create(_,fA)},init:function(_,fA){this._cipher=_,this._iv=fA}}),R=Q.CBC=function(){var gA=I.extend();function _(fA,iA,wA){var IA,FA=this._iv;FA?(IA=FA,this._iv=void 0):IA=this._prevBlock;for(var YA=0;YA>>2]}},o.BlockCipher=e.extend({cfg:e.cfg.extend({mode:R,padding:m}),reset:function(){var _;e.reset.call(this);var fA=this.cfg,iA=fA.iv,wA=fA.mode;this._xformMode==this._ENC_XFORM_MODE?_=wA.createEncryptor:(_=wA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==_?this._mode.init(this,iA&&iA.words):(this._mode=_.call(wA,this,iA&&iA.words),this._mode.__creator=_)},_doProcessBlock:function(_,fA){this._mode.processBlock(_,fA)},_doFinalize:function(){var _,fA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(fA.pad(this._data,this.blockSize),_=this._process(!0)):(_=this._process(!0),fA.unpad(_)),_},blockSize:4}),x=o.CipherParams=g.extend({init:function(_){this.mixIn(_)},toString:function(_){return(_||this.formatter).stringify(this)}}),v=(s.format={}).OpenSSL={stringify:function(_){var iA=_.ciphertext,wA=_.salt;return(wA?f.create([1398893684,1701076831]).concat(wA).concat(iA):iA).toString(d)},parse:function(_){var fA,iA=d.parse(_),wA=iA.words;return 1398893684==wA[0]&&1701076831==wA[1]&&(fA=f.create(wA.slice(2,4)),wA.splice(0,4),iA.sigBytes-=16),x.create({ciphertext:iA,salt:fA})}},S=o.SerializableCipher=g.extend({cfg:g.extend({format:v}),encrypt:function(_,fA,iA,wA){wA=this.cfg.extend(wA);var IA=_.createEncryptor(iA,wA),FA=IA.finalize(fA),YA=IA.cfg;return x.create({ciphertext:FA,key:iA,iv:YA.iv,algorithm:_,mode:YA.mode,padding:YA.padding,blockSize:_.blockSize,formatter:wA.format})},decrypt:function(_,fA,iA,wA){return wA=this.cfg.extend(wA),fA=this._parse(fA,wA.format),_.createDecryptor(iA,wA).finalize(fA.ciphertext)},_parse:function(_,fA){return"string"==typeof _?fA.parse(_,this):_}}),F=(s.kdf={}).OpenSSL={execute:function(_,fA,iA,wA,IA){if(wA||(wA=f.random(8)),IA)var FA=C.create({keySize:fA+iA,hasher:IA}).compute(_,wA);else FA=C.create({keySize:fA+iA}).compute(_,wA);var YA=f.create(FA.words.slice(fA),4*iA);return FA.sigBytes=4*fA,x.create({key:FA,iv:YA,salt:wA})}},$=o.PasswordBasedCipher=S.extend({cfg:S.cfg.extend({kdf:F}),encrypt:function(_,fA,iA,wA){var IA=(wA=this.cfg.extend(wA)).kdf.execute(iA,_.keySize,_.ivSize,wA.salt,wA.hasher);wA.iv=IA.iv;var FA=S.encrypt.call(this,_,fA,IA.key,wA);return FA.mixIn(IA),FA},decrypt:function(_,fA,iA,wA){wA=this.cfg.extend(wA),fA=this._parse(fA,wA.format);var IA=wA.kdf.execute(iA,_.keySize,_.ivSize,fA.salt,wA.hasher);return wA.iv=IA.iv,S.decrypt.call(this,_,fA,IA.key,wA)}}))))},34559:function(b,A,n){"use strict";var a;n(39081),n(81755),n(94845),n(20731),n(23913),n(14032),n(57114),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529),n(49109),a=function(){var B=B||function(a,s){var o;if(typeof window<"u"&&window.crypto&&(o=window.crypto),typeof self<"u"&&self.crypto&&(o=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(o=globalThis.crypto),!o&&typeof window<"u"&&window.msCrypto&&(o=window.msCrypto),!o&&typeof n.g<"u"&&n.g.crypto&&(o=n.g.crypto),!o)try{o=n(50477)}catch{}var g=function(){if(o){if("function"==typeof o.getRandomValues)try{return o.getRandomValues(new Uint32Array(1))[0]}catch{}if("function"==typeof o.randomBytes)try{return o.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},f=Object.create||function(){function p(){}return function(m){var y;return p.prototype=m,y=new p,p.prototype=null,y}}(),w={},u=w.lib={},r=u.Base=function(){return{extend:function(m){var y=f(this);return m&&y.mixIn(m),(!y.hasOwnProperty("init")||this.init===y.init)&&(y.init=function(){y.$super.init.apply(this,arguments)}),y.init.prototype=y,y.$super=this,y},create:function(){var m=this.extend();return m.init.apply(m,arguments),m},init:function(){},mixIn:function(m){for(var y in m)m.hasOwnProperty(y)&&(this[y]=m[y]);m.hasOwnProperty("toString")&&(this.toString=m.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),d=u.WordArray=r.extend({init:function(m,y){m=this.words=m||[],this.sigBytes=null!=y?y:4*m.length},toString:function(m){return(m||C).stringify(this)},concat:function(m){var y=this.words,x=m.words,Y=this.sigBytes,v=m.sigBytes;if(this.clamp(),Y%4)for(var S=0;S>>2]|=(x[S>>>2]>>>24-S%4*8&255)<<24-(Y+S)%4*8;else for(var F=0;F>>2]=x[F>>>2];return this.sigBytes+=v,this},clamp:function(){var m=this.words,y=this.sigBytes;m[y>>>2]&=4294967295<<32-y%4*8,m.length=a.ceil(y/4)},clone:function(){var m=r.clone.call(this);return m.words=this.words.slice(0),m},random:function(m){for(var y=[],x=0;x>>2]>>>24-v%4*8&255;Y.push((S>>>4).toString(16)),Y.push((15&S).toString(16))}return Y.join("")},parse:function(m){for(var y=m.length,x=[],Y=0;Y>>3]|=parseInt(m.substr(Y,2),16)<<24-Y%8*4;return new d.init(x,y/2)}},e=E.Latin1={stringify:function(m){for(var y=m.words,x=m.sigBytes,Y=[],v=0;v>>2]>>>24-v%4*8&255));return Y.join("")},parse:function(m){for(var y=m.length,x=[],Y=0;Y>>2]|=(255&m.charCodeAt(Y))<<24-Y%4*8;return new d.init(x,y)}},h=E.Utf8={stringify:function(m){try{return decodeURIComponent(escape(e.stringify(m)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(m){return e.parse(unescape(encodeURIComponent(m)))}},Q=u.BufferedBlockAlgorithm=r.extend({reset:function(){this._data=new d.init,this._nDataBytes=0},_append:function(m){"string"==typeof m&&(m=h.parse(m)),this._data.concat(m),this._nDataBytes+=m.sigBytes},_process:function(m){var y,x=this._data,Y=x.words,v=x.sigBytes,S=this.blockSize,F=v/(4*S),$=(F=m?a.ceil(F):a.max((0|F)-this._minBufferSize,0))*S,gA=a.min(4*$,v);if($){for(var _=0;_<$;_+=S)this._doProcessBlock(Y,_);y=Y.splice(0,$),x.sigBytes-=gA}return new d.init(y,gA)},clone:function(){var m=r.clone.call(this);return m._data=this._data.clone(),m},_minBufferSize:0}),R=(u.Hasher=Q.extend({cfg:r.extend(),init:function(m){this.cfg=this.cfg.extend(m),this.reset()},reset:function(){Q.reset.call(this),this._doReset()},update:function(m){return this._append(m),this._process(),this},finalize:function(m){return m&&this._append(m),this._doFinalize()},blockSize:16,_createHelper:function(m){return function(y,x){return new m.init(x).finalize(y)}},_createHmacHelper:function(m){return function(y,x){return new R.HMAC.init(m,x).finalize(y)}}}),w.algo={});return w}(Math);return B},b.exports=a()},49300:function(b,A,n){"use strict";var B,o;n(94845),b.exports=(B=n(34559),o=B.lib.WordArray,B.enc.Base64={stringify:function(r){var d=r.words,E=r.sigBytes,C=this._map;r.clamp();for(var e=[],h=0;h>>2]>>>24-h%4*8&255)<<16|(d[h+1>>>2]>>>24-(h+1)%4*8&255)<<8|d[h+2>>>2]>>>24-(h+2)%4*8&255,m=0;m<4&&h+.75*m>>6*(3-m)&63));var y=C.charAt(64);if(y)for(;e.length%4;)e.push(y);return e.join("")},parse:function(r){var d=r.length,E=this._map,C=this._reverseMap;if(!C){C=this._reverseMap=[];for(var e=0;e>>6-e%4*2;E[C>>>2]|=(h|Q)<<24-C%4*8,C++}return o.create(E,C)}(r,d,C)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},B.enc.Base64)},375:function(b,A,n){"use strict";var B,o;n(94845),b.exports=(B=n(34559),o=B.lib.WordArray,B.enc.Base64url={stringify:function(r,d){void 0===d&&(d=!0);var E=r.words,C=r.sigBytes,e=d?this._safe_map:this._map;r.clamp();for(var h=[],Q=0;Q>>2]>>>24-Q%4*8&255)<<16|(E[Q+1>>>2]>>>24-(Q+1)%4*8&255)<<8|E[Q+2>>>2]>>>24-(Q+2)%4*8&255,y=0;y<4&&Q+.75*y>>6*(3-y)&63));var x=e.charAt(64);if(x)for(;h.length%4;)h.push(x);return h.join("")},parse:function(r,d){void 0===d&&(d=!0);var E=r.length,C=d?this._safe_map:this._map,e=this._reverseMap;if(!e){e=this._reverseMap=[];for(var h=0;h>>6-e%4*2;E[C>>>2]|=(h|Q)<<24-C%4*8,C++}return o.create(E,C)}(r,E,e)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},B.enc.Base64url)},56217:function(b,A,n){"use strict";var B;n(94845),b.exports=(B=n(34559),function(){var o=B.lib.WordArray,g=B.enc;function w(u){return u<<8&4278255360|u>>>8&16711935}g.Utf16=g.Utf16BE={stringify:function(r){for(var d=r.words,E=r.sigBytes,C=[],e=0;e>>2]>>>16-e%4*8&65535));return C.join("")},parse:function(r){for(var d=r.length,E=[],C=0;C>>1]|=r.charCodeAt(C)<<16-C%2*16;return o.create(E,2*d)}},g.Utf16LE={stringify:function(r){for(var d=r.words,E=r.sigBytes,C=[],e=0;e>>2]>>>16-e%4*8&65535);C.push(String.fromCharCode(h))}return C.join("")},parse:function(r){for(var d=r.length,E=[],C=0;C>>1]|=w(r.charCodeAt(C)<<16-C%2*16);return o.create(E,2*d)}}}(),B.enc.Utf16)},36572:function(b,A,n){"use strict";var B,a,s,o,g,f,u;n(39081),b.exports=(B=n(34559),n(76289),n(30443),g=(s=(a=B).lib).WordArray,u=(f=a.algo).EvpKDF=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:f.MD5,iterations:1}),init:function(d){this.cfg=this.cfg.extend(d)},compute:function(d,E){for(var C,e=this.cfg,h=e.hasher.create(),Q=g.create(),I=Q.words,R=e.keySize,p=e.iterations;I.lengthe&&(E=d.finalize(E)),E.clamp();for(var h=this._oKey=E.clone(),Q=this._iKey=E.clone(),I=h.words,R=Q.words,p=0;p>>2]|=w[d]<<24-d%4*8;g.call(this,r,u)}else g.apply(this,arguments)};f.prototype=o}}(),B.lib.WordArray},b.exports=a(n(34559))},72342:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=[];!function(){for(var h=0;h<64;h++)u[h]=4294967296*a.abs(a.sin(h+1))|0}();var r=w.MD5=f.extend({_doReset:function(){this._hash=new g.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(Q,I){for(var R=0;R<16;R++){var p=I+R,m=Q[p];Q[p]=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8)}var y=this._hash.words,x=Q[I+0],Y=Q[I+1],v=Q[I+2],S=Q[I+3],z=Q[I+4],F=Q[I+5],$=Q[I+6],gA=Q[I+7],_=Q[I+8],fA=Q[I+9],iA=Q[I+10],wA=Q[I+11],IA=Q[I+12],FA=Q[I+13],YA=Q[I+14],HA=Q[I+15],J=y[0],BA=y[1],aA=y[2],eA=y[3];J=d(J,BA,aA,eA,x,7,u[0]),eA=d(eA,J,BA,aA,Y,12,u[1]),aA=d(aA,eA,J,BA,v,17,u[2]),BA=d(BA,aA,eA,J,S,22,u[3]),J=d(J,BA,aA,eA,z,7,u[4]),eA=d(eA,J,BA,aA,F,12,u[5]),aA=d(aA,eA,J,BA,$,17,u[6]),BA=d(BA,aA,eA,J,gA,22,u[7]),J=d(J,BA,aA,eA,_,7,u[8]),eA=d(eA,J,BA,aA,fA,12,u[9]),aA=d(aA,eA,J,BA,iA,17,u[10]),BA=d(BA,aA,eA,J,wA,22,u[11]),J=d(J,BA,aA,eA,IA,7,u[12]),eA=d(eA,J,BA,aA,FA,12,u[13]),aA=d(aA,eA,J,BA,YA,17,u[14]),J=E(J,BA=d(BA,aA,eA,J,HA,22,u[15]),aA,eA,Y,5,u[16]),eA=E(eA,J,BA,aA,$,9,u[17]),aA=E(aA,eA,J,BA,wA,14,u[18]),BA=E(BA,aA,eA,J,x,20,u[19]),J=E(J,BA,aA,eA,F,5,u[20]),eA=E(eA,J,BA,aA,iA,9,u[21]),aA=E(aA,eA,J,BA,HA,14,u[22]),BA=E(BA,aA,eA,J,z,20,u[23]),J=E(J,BA,aA,eA,fA,5,u[24]),eA=E(eA,J,BA,aA,YA,9,u[25]),aA=E(aA,eA,J,BA,S,14,u[26]),BA=E(BA,aA,eA,J,_,20,u[27]),J=E(J,BA,aA,eA,FA,5,u[28]),eA=E(eA,J,BA,aA,v,9,u[29]),aA=E(aA,eA,J,BA,gA,14,u[30]),J=C(J,BA=E(BA,aA,eA,J,IA,20,u[31]),aA,eA,F,4,u[32]),eA=C(eA,J,BA,aA,_,11,u[33]),aA=C(aA,eA,J,BA,wA,16,u[34]),BA=C(BA,aA,eA,J,YA,23,u[35]),J=C(J,BA,aA,eA,Y,4,u[36]),eA=C(eA,J,BA,aA,z,11,u[37]),aA=C(aA,eA,J,BA,gA,16,u[38]),BA=C(BA,aA,eA,J,iA,23,u[39]),J=C(J,BA,aA,eA,FA,4,u[40]),eA=C(eA,J,BA,aA,x,11,u[41]),aA=C(aA,eA,J,BA,S,16,u[42]),BA=C(BA,aA,eA,J,$,23,u[43]),J=C(J,BA,aA,eA,fA,4,u[44]),eA=C(eA,J,BA,aA,IA,11,u[45]),aA=C(aA,eA,J,BA,HA,16,u[46]),J=e(J,BA=C(BA,aA,eA,J,v,23,u[47]),aA,eA,x,6,u[48]),eA=e(eA,J,BA,aA,gA,10,u[49]),aA=e(aA,eA,J,BA,YA,15,u[50]),BA=e(BA,aA,eA,J,F,21,u[51]),J=e(J,BA,aA,eA,IA,6,u[52]),eA=e(eA,J,BA,aA,S,10,u[53]),aA=e(aA,eA,J,BA,iA,15,u[54]),BA=e(BA,aA,eA,J,Y,21,u[55]),J=e(J,BA,aA,eA,_,6,u[56]),eA=e(eA,J,BA,aA,HA,10,u[57]),aA=e(aA,eA,J,BA,$,15,u[58]),BA=e(BA,aA,eA,J,FA,21,u[59]),J=e(J,BA,aA,eA,z,6,u[60]),eA=e(eA,J,BA,aA,wA,10,u[61]),aA=e(aA,eA,J,BA,v,15,u[62]),BA=e(BA,aA,eA,J,fA,21,u[63]),y[0]=y[0]+J|0,y[1]=y[1]+BA|0,y[2]=y[2]+aA|0,y[3]=y[3]+eA|0},_doFinalize:function(){var Q=this._data,I=Q.words,R=8*this._nDataBytes,p=8*Q.sigBytes;I[p>>>5]|=128<<24-p%32;var m=a.floor(R/4294967296),y=R;I[15+(p+64>>>9<<4)]=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),I[14+(p+64>>>9<<4)]=16711935&(y<<8|y>>>24)|4278255360&(y<<24|y>>>8),Q.sigBytes=4*(I.length+1),this._process();for(var x=this._hash,Y=x.words,v=0;v<4;v++){var S=Y[v];Y[v]=16711935&(S<<8|S>>>24)|4278255360&(S<<24|S>>>8)}return x},clone:function(){var Q=f.clone.call(this);return Q._hash=this._hash.clone(),Q}});function d(h,Q,I,R,p,m,y){var x=h+(Q&I|~Q&R)+p+y;return(x<>>32-m)+Q}function E(h,Q,I,R,p,m,y){var x=h+(Q&R|I&~R)+p+y;return(x<>>32-m)+Q}function C(h,Q,I,R,p,m,y){var x=h+(Q^I^R)+p+y;return(x<>>32-m)+Q}function e(h,Q,I,R,p,m,y){var x=h+(I^(Q|~R))+p+y;return(x<>>32-m)+Q}s.MD5=f._createHelper(r),s.HmacMD5=f._createHmacHelper(r)}(Math),B.MD5)},2727:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(28395),B.mode.CFB=function(){var a=B.lib.BlockCipherMode.extend();function s(o,g,f,w){var u,r=this._iv;r?(u=r.slice(0),this._iv=void 0):u=this._prevBlock,w.encryptBlock(u,0);for(var d=0;d>24))f+=16777216;else{var w=f>>16&255,u=f>>8&255,r=255&f;255===w?(w=0,255===u?(u=0,255===r?r=0:++r):++u):++w,f=0,f+=w<<16,f+=u<<8,f+=r}return f}var g=a.Encryptor=a.extend({processBlock:function(w,u){var r=this._cipher,d=r.blockSize,E=this._iv,C=this._counter;E&&(C=this._counter=E.slice(0),this._iv=void 0),function o(f){return 0===(f[0]=s(f[0]))&&(f[1]=s(f[1])),f}(C);var e=C.slice(0);r.encryptBlock(e,0);for(var h=0;h>>2]|=w<<24-u%4*8,s.sigBytes+=w},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},B.pad.Ansix923)},99215:function(b,A,n){"use strict";var B;n(39081),b.exports=(B=n(34559),n(28395),B.pad.Iso10126={pad:function(s,o){var g=4*o,f=g-s.sigBytes%g;s.concat(B.lib.WordArray.random(f-1)).concat(B.lib.WordArray.create([f<<24],1))},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},B.pad.Iso10126)},43960:function(b,A,n){"use strict";var B;n(39081),b.exports=(B=n(34559),n(28395),B.pad.Iso97971={pad:function(s,o){s.concat(B.lib.WordArray.create([2147483648],1)),B.pad.ZeroPadding.pad(s,o)},unpad:function(s){B.pad.ZeroPadding.unpad(s),s.sigBytes--}},B.pad.Iso97971)},16934:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(28395),B.pad.NoPadding={pad:function(){},unpad:function(){}},B.pad.NoPadding)},40681:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(28395),B.pad.ZeroPadding={pad:function(s,o){var g=4*o;s.clamp(),s.sigBytes+=g-(s.sigBytes%g||g)},unpad:function(s){var o=s.words,g=s.sigBytes-1;for(g=s.sigBytes-1;g>=0;g--)if(o[g>>>2]>>>24-g%4*8&255){s.sigBytes=g+1;break}}},B.pad.ZeroPadding)},95729:function(b,A,n){"use strict";var B,a,s,o,g,f,u,r;n(39081),b.exports=(B=n(34559),n(26739),n(30443),g=(s=(a=B).lib).WordArray,u=(f=a.algo).HMAC,r=f.PBKDF2=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:f.SHA256,iterations:25e4}),init:function(E){this.cfg=this.cfg.extend(E)},compute:function(E,C){for(var e=this.cfg,h=u.create(e.hasher,E),Q=g.create(),I=g.create([1]),R=Q.words,p=I.words,m=e.keySize,y=e.iterations;R.length>>16,C[1],C[0]<<16|C[3]>>>16,C[2],C[1]<<16|C[0]>>>16,C[3],C[2]<<16|C[1]>>>16],Q=this._C=[C[2]<<16|C[2]>>>16,4294901760&C[0]|65535&C[1],C[3]<<16|C[3]>>>16,4294901760&C[1]|65535&C[2],C[0]<<16|C[0]>>>16,4294901760&C[2]|65535&C[3],C[1]<<16|C[1]>>>16,4294901760&C[3]|65535&C[0]];this._b=0;for(var I=0;I<4;I++)d.call(this);for(I=0;I<8;I++)Q[I]^=h[I+4&7];if(e){var R=e.words,p=R[0],m=R[1],y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),x=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),Y=y>>>16|4294901760&x,v=x<<16|65535&y;for(Q[0]^=y,Q[1]^=Y,Q[2]^=x,Q[3]^=v,Q[4]^=y,Q[5]^=Y,Q[6]^=x,Q[7]^=v,I=0;I<4;I++)d.call(this)}},_doProcessBlock:function(C,e){var h=this._X;d.call(this),f[0]=h[0]^h[5]>>>16^h[3]<<16,f[1]=h[2]^h[7]>>>16^h[5]<<16,f[2]=h[4]^h[1]>>>16^h[7]<<16,f[3]=h[6]^h[3]>>>16^h[1]<<16;for(var Q=0;Q<4;Q++)f[Q]=16711935&(f[Q]<<8|f[Q]>>>24)|4278255360&(f[Q]<<24|f[Q]>>>8),C[e+Q]^=f[Q]},blockSize:4,ivSize:2});function d(){for(var E=this._X,C=this._C,e=0;e<8;e++)w[e]=C[e];for(C[0]=C[0]+1295307597+this._b|0,C[1]=C[1]+3545052371+(C[0]>>>0>>0?1:0)|0,C[2]=C[2]+886263092+(C[1]>>>0>>0?1:0)|0,C[3]=C[3]+1295307597+(C[2]>>>0>>0?1:0)|0,C[4]=C[4]+3545052371+(C[3]>>>0>>0?1:0)|0,C[5]=C[5]+886263092+(C[4]>>>0>>0?1:0)|0,C[6]=C[6]+1295307597+(C[5]>>>0>>0?1:0)|0,C[7]=C[7]+3545052371+(C[6]>>>0>>0?1:0)|0,this._b=C[7]>>>0>>0?1:0,e=0;e<8;e++){var h=E[e]+C[e],Q=65535&h,I=h>>>16;u[e]=((Q*Q>>>17)+Q*I>>>15)+I*I^((4294901760&h)*h|0)+((65535&h)*h|0)}E[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,E[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,E[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,E[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,E[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,E[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,E[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,E[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}a.RabbitLegacy=o._createHelper(r)}(),B.RabbitLegacy)},55380:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.StreamCipher,f=[],w=[],u=[],r=a.algo.Rabbit=o.extend({_doReset:function(){for(var C=this._key.words,e=this.cfg.iv,h=0;h<4;h++)C[h]=16711935&(C[h]<<8|C[h]>>>24)|4278255360&(C[h]<<24|C[h]>>>8);var Q=this._X=[C[0],C[3]<<16|C[2]>>>16,C[1],C[0]<<16|C[3]>>>16,C[2],C[1]<<16|C[0]>>>16,C[3],C[2]<<16|C[1]>>>16],I=this._C=[C[2]<<16|C[2]>>>16,4294901760&C[0]|65535&C[1],C[3]<<16|C[3]>>>16,4294901760&C[1]|65535&C[2],C[0]<<16|C[0]>>>16,4294901760&C[2]|65535&C[3],C[1]<<16|C[1]>>>16,4294901760&C[3]|65535&C[0]];for(this._b=0,h=0;h<4;h++)d.call(this);for(h=0;h<8;h++)I[h]^=Q[h+4&7];if(e){var R=e.words,p=R[0],m=R[1],y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),x=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),Y=y>>>16|4294901760&x,v=x<<16|65535&y;for(I[0]^=y,I[1]^=Y,I[2]^=x,I[3]^=v,I[4]^=y,I[5]^=Y,I[6]^=x,I[7]^=v,h=0;h<4;h++)d.call(this)}},_doProcessBlock:function(C,e){var h=this._X;d.call(this),f[0]=h[0]^h[5]>>>16^h[3]<<16,f[1]=h[2]^h[7]>>>16^h[5]<<16,f[2]=h[4]^h[1]>>>16^h[7]<<16,f[3]=h[6]^h[3]>>>16^h[1]<<16;for(var Q=0;Q<4;Q++)f[Q]=16711935&(f[Q]<<8|f[Q]>>>24)|4278255360&(f[Q]<<24|f[Q]>>>8),C[e+Q]^=f[Q]},blockSize:4,ivSize:2});function d(){for(var E=this._X,C=this._C,e=0;e<8;e++)w[e]=C[e];for(C[0]=C[0]+1295307597+this._b|0,C[1]=C[1]+3545052371+(C[0]>>>0>>0?1:0)|0,C[2]=C[2]+886263092+(C[1]>>>0>>0?1:0)|0,C[3]=C[3]+1295307597+(C[2]>>>0>>0?1:0)|0,C[4]=C[4]+3545052371+(C[3]>>>0>>0?1:0)|0,C[5]=C[5]+886263092+(C[4]>>>0>>0?1:0)|0,C[6]=C[6]+1295307597+(C[5]>>>0>>0?1:0)|0,C[7]=C[7]+3545052371+(C[6]>>>0>>0?1:0)|0,this._b=C[7]>>>0>>0?1:0,e=0;e<8;e++){var h=E[e]+C[e],Q=65535&h,I=h>>>16;u[e]=((Q*Q>>>17)+Q*I>>>15)+I*I^((4294901760&h)*h|0)+((65535&h)*h|0)}E[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,E[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,E[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,E[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,E[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,E[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,E[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,E[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}a.Rabbit=o._createHelper(r)}(),B.Rabbit)},76635:function(b,A,n){"use strict";var B;n(14032),n(68067),b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.StreamCipher,g=a.algo,f=g.RC4=o.extend({_doReset:function(){for(var d=this._key,E=d.words,C=d.sigBytes,e=this._S=[],h=0;h<256;h++)e[h]=h;h=0;for(var Q=0;h<256;h++){var I=h%C,p=e[h];e[h]=e[Q=(Q+e[h]+(E[I>>>2]>>>24-I%4*8&255))%256],e[Q]=p}this._i=this._j=0},_doProcessBlock:function(d,E){d[E]^=w.call(this)},keySize:8,ivSize:0});function w(){for(var r=this._S,d=this._i,E=this._j,C=0,e=0;e<4;e++){var h=r[d=(d+1)%256];r[d]=r[E=(E+r[d])%256],r[E]=h,C|=r[(r[d]+r[E])%256]<<24-8*e}return this._i=d,this._j=E,C}a.RC4=o._createHelper(f);var u=g.RC4Drop=f.extend({cfg:f.cfg.extend({drop:192}),_doReset:function(){f._doReset.call(this);for(var d=this.cfg.drop;d>0;d--)w.call(this)}});a.RC4Drop=o._createHelper(u)}(),B.RC4)},76930:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=g.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]),r=g.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]),d=g.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]),E=g.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]),C=g.create([0,1518500249,1859775393,2400959708,2840853838]),e=g.create([1352829926,1548603684,1836072691,2053994217,0]),h=w.RIPEMD160=f.extend({_doReset:function(){this._hash=g.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(Y,v){for(var S=0;S<16;S++){var z=v+S,F=Y[z];Y[z]=16711935&(F<<8|F>>>24)|4278255360&(F<<24|F>>>8)}var FA,YA,HA,J,BA,aA,eA,EA,xA,OA,W,$=this._hash.words,gA=C.words,_=e.words,fA=u.words,iA=r.words,wA=d.words,IA=E.words;for(aA=FA=$[0],eA=YA=$[1],EA=HA=$[2],xA=J=$[3],OA=BA=$[4],S=0;S<80;S+=1)W=FA+Y[v+fA[S]]|0,W+=S<16?Q(YA,HA,J)+gA[0]:S<32?I(YA,HA,J)+gA[1]:S<48?R(YA,HA,J)+gA[2]:S<64?p(YA,HA,J)+gA[3]:m(YA,HA,J)+gA[4],W=(W=y(W|=0,wA[S]))+BA|0,FA=BA,BA=J,J=y(HA,10),HA=YA,YA=W,W=aA+Y[v+iA[S]]|0,W+=S<16?m(eA,EA,xA)+_[0]:S<32?p(eA,EA,xA)+_[1]:S<48?R(eA,EA,xA)+_[2]:S<64?I(eA,EA,xA)+_[3]:Q(eA,EA,xA)+_[4],W=(W=y(W|=0,IA[S]))+OA|0,aA=OA,OA=xA,xA=y(EA,10),EA=eA,eA=W;W=$[1]+HA+xA|0,$[1]=$[2]+J+OA|0,$[2]=$[3]+BA+aA|0,$[3]=$[4]+FA+eA|0,$[4]=$[0]+YA+EA|0,$[0]=W},_doFinalize:function(){var Y=this._data,v=Y.words,S=8*this._nDataBytes,z=8*Y.sigBytes;v[z>>>5]|=128<<24-z%32,v[14+(z+64>>>9<<4)]=16711935&(S<<8|S>>>24)|4278255360&(S<<24|S>>>8),Y.sigBytes=4*(v.length+1),this._process();for(var F=this._hash,$=F.words,gA=0;gA<5;gA++){var _=$[gA];$[gA]=16711935&(_<<8|_>>>24)|4278255360&(_<<24|_>>>8)}return F},clone:function(){var Y=f.clone.call(this);return Y._hash=this._hash.clone(),Y}});function Q(x,Y,v){return x^Y^v}function I(x,Y,v){return x&Y|~x&v}function R(x,Y,v){return(x|~Y)^v}function p(x,Y,v){return x&v|Y&~v}function m(x,Y,v){return x^(Y|~v)}function y(x,Y){return x<>>32-Y}s.RIPEMD160=f._createHelper(h),s.HmacRIPEMD160=f._createHmacHelper(h)}(Math),B.RIPEMD160)},76289:function(b,A,n){"use strict";var B,a,s,o,g,w,u;b.exports=(B=n(34559),o=(s=(a=B).lib).WordArray,w=[],u=a.algo.SHA1=(g=s.Hasher).extend({_doReset:function(){this._hash=new o.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(d,E){for(var C=this._hash.words,e=C[0],h=C[1],Q=C[2],I=C[3],R=C[4],p=0;p<80;p++){if(p<16)w[p]=0|d[E+p];else{var m=w[p-3]^w[p-8]^w[p-14]^w[p-16];w[p]=m<<1|m>>>31}var y=(e<<5|e>>>27)+R+w[p];y+=p<20?1518500249+(h&Q|~h&I):p<40?1859775393+(h^Q^I):p<60?(h&Q|h&I|Q&I)-1894007588:(h^Q^I)-899497514,R=I,I=Q,Q=h<<30|h>>>2,h=e,e=y}C[0]=C[0]+e|0,C[1]=C[1]+h|0,C[2]=C[2]+Q|0,C[3]=C[3]+I|0,C[4]=C[4]+R|0},_doFinalize:function(){var d=this._data,E=d.words,C=8*this._nDataBytes,e=8*d.sigBytes;return E[e>>>5]|=128<<24-e%32,E[14+(e+64>>>9<<4)]=Math.floor(C/4294967296),E[15+(e+64>>>9<<4)]=C,d.sigBytes=4*E.length,this._process(),this._hash},clone:function(){var d=g.clone.call(this);return d._hash=this._hash.clone(),d}}),a.SHA1=g._createHelper(u),a.HmacSHA1=g._createHmacHelper(u),B.SHA1)},75230:function(b,A,n){"use strict";var B,a,o,g,f,w;b.exports=(B=n(34559),n(26739),o=(a=B).lib.WordArray,w=(g=a.algo).SHA224=(f=g.SHA256).extend({_doReset:function(){this._hash=new o.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var r=f._doFinalize.call(this);return r.sigBytes-=4,r}}),a.SHA224=f._createHelper(w),a.HmacSHA224=f._createHmacHelper(w),B.SHA224)},26739:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=[],r=[];!function(){function C(I){for(var R=a.sqrt(I),p=2;p<=R;p++)if(!(I%p))return!1;return!0}function e(I){return 4294967296*(I-(0|I))|0}for(var h=2,Q=0;Q<64;)C(h)&&(Q<8&&(u[Q]=e(a.pow(h,.5))),r[Q]=e(a.pow(h,.3333333333333333)),Q++),h++}();var d=[],E=w.SHA256=f.extend({_doReset:function(){this._hash=new g.init(u.slice(0))},_doProcessBlock:function(e,h){for(var Q=this._hash.words,I=Q[0],R=Q[1],p=Q[2],m=Q[3],y=Q[4],x=Q[5],Y=Q[6],v=Q[7],S=0;S<64;S++){if(S<16)d[S]=0|e[h+S];else{var z=d[S-15],$=d[S-2];d[S]=((z<<25|z>>>7)^(z<<14|z>>>18)^z>>>3)+d[S-7]+(($<<15|$>>>17)^($<<13|$>>>19)^$>>>10)+d[S-16]}var fA=I&R^I&p^R&p,IA=v+((y<<26|y>>>6)^(y<<21|y>>>11)^(y<<7|y>>>25))+(y&x^~y&Y)+r[S]+d[S];v=Y,Y=x,x=y,y=m+IA|0,m=p,p=R,R=I,I=IA+(((I<<30|I>>>2)^(I<<19|I>>>13)^(I<<10|I>>>22))+fA)|0}Q[0]=Q[0]+I|0,Q[1]=Q[1]+R|0,Q[2]=Q[2]+p|0,Q[3]=Q[3]+m|0,Q[4]=Q[4]+y|0,Q[5]=Q[5]+x|0,Q[6]=Q[6]+Y|0,Q[7]=Q[7]+v|0},_doFinalize:function(){var e=this._data,h=e.words,Q=8*this._nDataBytes,I=8*e.sigBytes;return h[I>>>5]|=128<<24-I%32,h[14+(I+64>>>9<<4)]=a.floor(Q/4294967296),h[15+(I+64>>>9<<4)]=Q,e.sigBytes=4*h.length,this._process(),this._hash},clone:function(){var e=f.clone.call(this);return e._hash=this._hash.clone(),e}});s.SHA256=f._createHelper(E),s.HmacSHA256=f._createHmacHelper(E)}(Math),B.SHA256)},80767:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(26478),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,u=s.x64.Word,r=s.algo,d=[],E=[],C=[];!function(){for(var Q=1,I=0,R=0;R<24;R++){d[Q+5*I]=(R+1)*(R+2)/2%64;var m=(2*Q+3*I)%5;Q=I%5,I=m}for(Q=0;Q<5;Q++)for(I=0;I<5;I++)E[Q+5*I]=I+(2*Q+3*I)%5*5;for(var y=1,x=0;x<24;x++){for(var Y=0,v=0,S=0;S<7;S++){if(1&y){var z=(1<>>24)|4278255360&(x<<24|x>>>8),(v=p[y]).high^=Y=16711935&(Y<<8|Y>>>24)|4278255360&(Y<<24|Y>>>8),v.low^=x}for(var S=0;S<24;S++){for(var z=0;z<5;z++){for(var F=0,$=0,gA=0;gA<5;gA++)F^=(v=p[z+5*gA]).high,$^=v.low;var _=e[z];_.high=F,_.low=$}for(z=0;z<5;z++){var fA=e[(z+4)%5],iA=e[(z+1)%5],wA=iA.high,IA=iA.low;for(F=fA.high^(wA<<1|IA>>>31),$=fA.low^(IA<<1|wA>>>31),gA=0;gA<5;gA++)(v=p[z+5*gA]).high^=F,v.low^=$}for(var FA=1;FA<25;FA++){var YA=(v=p[FA]).high,HA=v.low,J=d[FA];J<32?(F=YA<>>32-J,$=HA<>>32-J):(F=HA<>>64-J,$=YA<>>64-J);var BA=e[E[FA]];BA.high=F,BA.low=$}var aA=e[0],eA=p[0];for(aA.high=eA.high,aA.low=eA.low,z=0;z<5;z++)for(gA=0;gA<5;gA++){var EA=e[FA=z+5*gA],xA=e[(z+1)%5+5*gA],OA=e[(z+2)%5+5*gA];(v=p[FA]).high=EA.high^~xA.high&OA.high,v.low=EA.low^~xA.low&OA.low}var v,W=C[S];(v=p[0]).high^=W.high,v.low^=W.low}},_doFinalize:function(){var I=this._data,R=I.words,m=8*I.sigBytes,y=32*this.blockSize;R[m>>>5]|=1<<24-m%32,R[(a.ceil((m+1)/y)*y>>>5)-1]|=128,I.sigBytes=4*R.length,this._process();for(var x=this._state,Y=this.cfg.outputLength/8,v=Y/8,S=[],z=0;z>>24)|4278255360&($<<24|$>>>8),S.push(gA=16711935&(gA<<8|gA>>>24)|4278255360&(gA<<24|gA>>>8)),S.push($)}return new g.init(S,Y)},clone:function(){for(var I=f.clone.call(this),R=I._state=this._state.slice(0),p=0;p<25;p++)R[p]=R[p].clone();return I}});s.SHA3=f._createHelper(h),s.HmacSHA3=f._createHmacHelper(h)}(Math),B.SHA3)},371:function(b,A,n){"use strict";var B,a,s,o,g,f,w,u;b.exports=(B=n(34559),n(26478),n(97074),o=(s=(a=B).x64).Word,g=s.WordArray,u=(f=a.algo).SHA384=(w=f.SHA512).extend({_doReset:function(){this._hash=new g.init([new o.init(3418070365,3238371032),new o.init(1654270250,914150663),new o.init(2438529370,812702999),new o.init(355462360,4144912697),new o.init(1731405415,4290775857),new o.init(2394180231,1750603025),new o.init(3675008525,1694076839),new o.init(1203062813,3204075428)])},_doFinalize:function(){var d=w._doFinalize.call(this);return d.sigBytes-=16,d}}),a.SHA384=w._createHelper(u),a.HmacSHA384=w._createHmacHelper(u),B.SHA384)},97074:function(b,A,n){"use strict";var a;a=function(B){return function(){var a=B,o=a.lib.Hasher,g=a.x64,f=g.Word,w=g.WordArray,u=a.algo;function r(){return f.create.apply(f,arguments)}var d=[r(1116352408,3609767458),r(1899447441,602891725),r(3049323471,3964484399),r(3921009573,2173295548),r(961987163,4081628472),r(1508970993,3053834265),r(2453635748,2937671579),r(2870763221,3664609560),r(3624381080,2734883394),r(310598401,1164996542),r(607225278,1323610764),r(1426881987,3590304994),r(1925078388,4068182383),r(2162078206,991336113),r(2614888103,633803317),r(3248222580,3479774868),r(3835390401,2666613458),r(4022224774,944711139),r(264347078,2341262773),r(604807628,2007800933),r(770255983,1495990901),r(1249150122,1856431235),r(1555081692,3175218132),r(1996064986,2198950837),r(2554220882,3999719339),r(2821834349,766784016),r(2952996808,2566594879),r(3210313671,3203337956),r(3336571891,1034457026),r(3584528711,2466948901),r(113926993,3758326383),r(338241895,168717936),r(666307205,1188179964),r(773529912,1546045734),r(1294757372,1522805485),r(1396182291,2643833823),r(1695183700,2343527390),r(1986661051,1014477480),r(2177026350,1206759142),r(2456956037,344077627),r(2730485921,1290863460),r(2820302411,3158454273),r(3259730800,3505952657),r(3345764771,106217008),r(3516065817,3606008344),r(3600352804,1432725776),r(4094571909,1467031594),r(275423344,851169720),r(430227734,3100823752),r(506948616,1363258195),r(659060556,3750685593),r(883997877,3785050280),r(958139571,3318307427),r(1322822218,3812723403),r(1537002063,2003034995),r(1747873779,3602036899),r(1955562222,1575990012),r(2024104815,1125592928),r(2227730452,2716904306),r(2361852424,442776044),r(2428436474,593698344),r(2756734187,3733110249),r(3204031479,2999351573),r(3329325298,3815920427),r(3391569614,3928383900),r(3515267271,566280711),r(3940187606,3454069534),r(4118630271,4000239992),r(116418474,1914138554),r(174292421,2731055270),r(289380356,3203993006),r(460393269,320620315),r(685471733,587496836),r(852142971,1086792851),r(1017036298,365543100),r(1126000580,2618297676),r(1288033470,3409855158),r(1501505948,4234509866),r(1607167915,987167468),r(1816402316,1246189591)],E=[];!function(){for(var e=0;e<80;e++)E[e]=r()}();var C=u.SHA512=o.extend({_doReset:function(){this._hash=new w.init([new f.init(1779033703,4089235720),new f.init(3144134277,2227873595),new f.init(1013904242,4271175723),new f.init(2773480762,1595750129),new f.init(1359893119,2917565137),new f.init(2600822924,725511199),new f.init(528734635,4215389547),new f.init(1541459225,327033209)])},_doProcessBlock:function(h,Q){for(var I=this._hash.words,R=I[0],p=I[1],m=I[2],y=I[3],x=I[4],Y=I[5],v=I[6],S=I[7],z=R.high,F=R.low,$=p.high,gA=p.low,_=m.high,fA=m.low,iA=y.high,wA=y.low,IA=x.high,FA=x.low,YA=Y.high,HA=Y.low,J=v.high,BA=v.low,aA=S.high,eA=S.low,EA=z,xA=F,OA=$,W=gA,L=_,rA=fA,AA=iA,QA=wA,yA=IA,cA=FA,CA=YA,DA=HA,NA=J,zA=BA,pA=aA,JA=eA,ft=0;ft<80;ft++){var wt,gt,pt=E[ft];if(ft<16)gt=pt.high=0|h[Q+2*ft],wt=pt.low=0|h[Q+2*ft+1];else{var Yt=E[ft-15],VA=Yt.high,_A=Yt.low,ht=(_A>>>1|VA<<31)^(_A>>>8|VA<<24)^(_A>>>7|VA<<25),vt=E[ft-2],Nt=vt.high,vA=vt.low,Z=(vA>>>19|Nt<<13)^(vA<<3|Nt>>>29)^(vA>>>6|Nt<<26),k=E[ft-7],q=E[ft-16],At=q.low;pt.high=gt=(gt=(gt=((VA>>>1|_A<<31)^(VA>>>8|_A<<24)^VA>>>7)+k.high+((wt=ht+k.low)>>>0>>0?1:0))+((Nt>>>19|vA<<13)^(Nt<<3|vA>>>29)^Nt>>>6)+((wt+=Z)>>>0>>0?1:0))+q.high+((wt+=At)>>>0>>0?1:0),pt.low=wt}var $t,O=yA&CA^~yA&NA,qA=cA&DA^~cA&zA,nt=EA&OA^EA&L^OA&L,ot=(xA>>>28|EA<<4)^(xA<<30|EA>>>2)^(xA<<25|EA>>>7),Ut=d[ft],sn=Ut.low,Kt=pA+((yA>>>14|cA<<18)^(yA>>>18|cA<<14)^(yA<<23|cA>>>9))+(($t=JA+((cA>>>14|yA<<18)^(cA>>>18|yA<<14)^(cA<<23|yA>>>9)))>>>0>>0?1:0),Me=ot+(xA&W^xA&rA^W&rA);pA=NA,JA=zA,NA=CA,zA=DA,CA=yA,DA=cA,yA=AA+(Kt=(Kt=(Kt=Kt+O+(($t+=qA)>>>0>>0?1:0))+Ut.high+(($t+=sn)>>>0>>0?1:0))+gt+(($t+=wt)>>>0>>0?1:0))+((cA=QA+$t|0)>>>0>>0?1:0)|0,AA=L,QA=rA,L=OA,rA=W,OA=EA,W=xA,EA=Kt+(((EA>>>28|xA<<4)^(EA<<30|xA>>>2)^(EA<<25|xA>>>7))+nt+(Me>>>0>>0?1:0))+((xA=$t+Me|0)>>>0<$t>>>0?1:0)|0}F=R.low=F+xA,R.high=z+EA+(F>>>0>>0?1:0),gA=p.low=gA+W,p.high=$+OA+(gA>>>0>>0?1:0),fA=m.low=fA+rA,m.high=_+L+(fA>>>0>>0?1:0),wA=y.low=wA+QA,y.high=iA+AA+(wA>>>0>>0?1:0),FA=x.low=FA+cA,x.high=IA+yA+(FA>>>0>>0?1:0),HA=Y.low=HA+DA,Y.high=YA+CA+(HA>>>0>>0?1:0),BA=v.low=BA+zA,v.high=J+NA+(BA>>>0>>0?1:0),eA=S.low=eA+JA,S.high=aA+pA+(eA>>>0>>0?1:0)},_doFinalize:function(){var h=this._data,Q=h.words,I=8*this._nDataBytes,R=8*h.sigBytes;return Q[R>>>5]|=128<<24-R%32,Q[30+(R+128>>>10<<5)]=Math.floor(I/4294967296),Q[31+(R+128>>>10<<5)]=I,h.sigBytes=4*Q.length,this._process(),this._hash.toX32()},clone:function(){var h=o.clone.call(this);return h._hash=this._hash.clone(),h},blockSize:32});a.SHA512=o._createHelper(C),a.HmacSHA512=o._createHmacHelper(C)}(),B.SHA512},b.exports=a(n(34559),n(26478))},64390:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,s=a.lib,o=s.WordArray,g=s.BlockCipher,f=a.algo,w=[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],u=[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],r=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],d=[{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}],E=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],C=f.DES=g.extend({_doReset:function(){for(var p=this._key.words,m=[],y=0;y<56;y++){var x=w[y]-1;m[y]=p[x>>>5]>>>31-x%32&1}for(var Y=this._subKeys=[],v=0;v<16;v++){var S=Y[v]=[],z=r[v];for(y=0;y<24;y++)S[y/6|0]|=m[(u[y]-1+z)%28]<<31-y%6,S[4+(y/6|0)]|=m[28+(u[y+24]-1+z)%28]<<31-y%6;for(S[0]=S[0]<<1|S[0]>>>31,y=1;y<7;y++)S[y]=S[y]>>>4*(y-1)+3;S[7]=S[7]<<5|S[7]>>>27}var F=this._invSubKeys=[];for(y=0;y<16;y++)F[y]=Y[15-y]},encryptBlock:function(R,p){this._doCryptBlock(R,p,this._subKeys)},decryptBlock:function(R,p){this._doCryptBlock(R,p,this._invSubKeys)},_doCryptBlock:function(R,p,m){this._lBlock=R[p],this._rBlock=R[p+1],e.call(this,4,252645135),e.call(this,16,65535),h.call(this,2,858993459),h.call(this,8,16711935),e.call(this,1,1431655765);for(var y=0;y<16;y++){for(var x=m[y],Y=this._lBlock,v=this._rBlock,S=0,z=0;z<8;z++)S|=d[z][((v^x[z])&E[z])>>>0];this._lBlock=v,this._rBlock=Y^S}var F=this._lBlock;this._lBlock=this._rBlock,this._rBlock=F,e.call(this,1,1431655765),h.call(this,8,16711935),h.call(this,2,858993459),e.call(this,16,65535),e.call(this,4,252645135),R[p]=this._lBlock,R[p+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function e(I,R){var p=(this._lBlock>>>I^this._rBlock)&R;this._rBlock^=p,this._lBlock^=p<>>I^this._lBlock)&R;this._lBlock^=p,this._rBlock^=p<192.");var m=p.slice(0,2),y=p.length<4?p.slice(0,2):p.slice(2,4),x=p.length<6?p.slice(0,2):p.slice(4,6);this._des1=C.createEncryptor(o.create(m)),this._des2=C.createEncryptor(o.create(y)),this._des3=C.createEncryptor(o.create(x))},encryptBlock:function(R,p){this._des1.encryptBlock(R,p),this._des2.decryptBlock(R,p),this._des3.encryptBlock(R,p)},decryptBlock:function(R,p){this._des3.decryptBlock(R,p),this._des2.encryptBlock(R,p),this._des1.decryptBlock(R,p)},keySize:6,ivSize:2,blockSize:2});a.TripleDES=g._createHelper(Q)}(),B.TripleDES)},26478:function(b,A,n){"use strict";var B,o,g,f,w;n(20731),b.exports=(B=n(34559),g=(o=B.lib).Base,f=o.WordArray,(w=B.x64={}).Word=g.extend({init:function(E,C){this.high=E,this.low=C}}),w.WordArray=g.extend({init:function(E,C){E=this.words=E||[],this.sigBytes=null!=C?C:8*E.length},toX32:function(){for(var E=this.words,C=E.length,e=[],h=0;h=u.length?{done:!0}:{done:!1,value:u[E++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(u,r){(null==r||r>u.length)&&(r=u.length);for(var d=0,E=new Array(r);d=0;--W){var L=this.tryEntries[W],rA=L.completion;if("root"===L.tryLoc)return OA("end");if(L.tryLoc<=this.prev){var AA=E.call(L,"catchLoc"),QA=E.call(L,"finallyLoc");if(AA&&QA){if(this.prev=0;--OA){var W=this.tryEntries[OA];if(W.tryLoc<=this.prev&&E.call(W,"finallyLoc")&&this.prev=0;--xA){var OA=this.tryEntries[xA];if(OA.finallyLoc===EA)return this.complete(OA.completion,OA.afterLoc),J(OA),S}},catch:function(EA){for(var xA=this.tryEntries.length-1;xA>=0;--xA){var OA=this.tryEntries[xA];if(OA.tryLoc===EA){var W=OA.completion;if("throw"===W.type){var L=W.arg;J(OA)}return L}}throw new Error("illegal catch attempt")},delegateYield:function(EA,xA,OA){return this.delegate={iterator:aA(EA),resultName:xA,nextLoc:OA},"next"===this.method&&(this.arg=u),S}},r}n(35877),n(38178),n(11765),n(24863),n(43448),n(63956),n(71950),n(68067),n(57114),n(42437),n(65292),n(73844),n(69330),n(81755),n(20731),n(14032),n(61726),n(58281),n(6422),n(94712);b.exports=function(){function u(d){this.stateTable=d.stateTable,this.accepting=d.accepting,this.tags=d.tags}var r=u.prototype;return r.match=function(E){var C,e=this;return(C={})[Symbol.iterator]=o().mark(function h(){var Q,I,R,p,m,y;return o().wrap(function(Y){for(;;)switch(Y.prev=Y.next){case 0:Q=1,I=null,R=null,p=null,m=0;case 5:if(!(m=I)){Y.next=13;break}return Y.next=13,[I,R,e.tags[p]];case 13:Q=e.stateTable[1][y],I=null;case 15:0!==Q&&null==I&&(I=m),e.accepting[Q]&&(R=m),0===Q&&(Q=1);case 18:m++,Y.next=5;break;case 21:if(!(null!=I&&null!=R&&R>=I)){Y.next=24;break}return Y.next=24,[I,R,e.tags[Q]];case 24:case"end":return Y.stop()}},h)}),C},r.apply=function(E,C){for(var h,e=B(this.match(E));!(h=e()).done;)for(var y,Q=h.value,I=Q[0],R=Q[1],m=B(Q[2]);!(y=m()).done;){var x=y.value;"function"==typeof C[x]&&C[x](I,R,E.slice(I,R+1))}},u}()},80646:function(b,A,n){"use strict";var B=n(50621).Buffer;n(58028),n(20731),n(14032),n(68067);var a=n(48181),s=n(6729);b.exports=function(){function o(f){var w;for(this.data=f,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){var u=this.readUInt32(),r="";for(w=0;w<4;w++)r+=String.fromCharCode(this.data[this.pos++]);switch(r){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(u);break;case"IDAT":for(w=0;w0)for(w=0;wthis.data.length)throw new Error("Incomplete or corrupt PNG file")}}o.decode=function(w,u){return a.readFile(w,function(r,d){return new o(d).decode(function(C){return u(C)})})},o.load=function(w){return new o(a.readFileSync(w))};var g=o.prototype;return g.read=function(w){for(var u=new Array(w),r=0;r"u")throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof w);return s(w,u,r)}),f.alloc||(f.alloc=function(w,u,r){if("number"!=typeof w)throw new TypeError('The "size" argument must be of type number. Received type '+typeof w);if(w<0||w>=2147483648)throw new RangeError('The value "'+w+'" is invalid for option "size"');var d=s(w);return u&&0!==u.length?"string"==typeof r?d.fill(u,r):d.fill(u):d.fill(0),d}),!o.kStringMaxLength)try{o.kStringMaxLength=B.binding("buffer").kStringMaxLength}catch{}o.constants||(o.constants={MAX_LENGTH:o.kMaxLength},o.kStringMaxLength&&(o.constants.MAX_STRING_LENGTH=o.kStringMaxLength)),b.exports=o},57540:function(b,A,n){"use strict";function B(Q,I){var R=Object.keys(Q);if(Object.getOwnPropertySymbols){var p=Object.getOwnPropertySymbols(Q);I&&(p=p.filter(function(m){return Object.getOwnPropertyDescriptor(Q,m).enumerable})),R.push.apply(R,p)}return R}function a(Q){for(var I=1;I0?this.tail.next=p:this.head=p,this.tail=p,++this.length}},{key:"unshift",value:function(R){var p={data:R,next:this.head};0===this.length&&(this.tail=p),this.head=p,++this.length}},{key:"shift",value:function(){if(0!==this.length){var R=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,R}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(R){if(0===this.length)return"";for(var p=this.head,m=""+p.data;p=p.next;)m+=R+p.data;return m}},{key:"concat",value:function(R){if(0===this.length)return d.alloc(0);for(var p=d.allocUnsafe(R>>>0),m=this.head,y=0;m;)h(m.data,p,y),y+=m.data.length,m=m.next;return p}},{key:"consume",value:function(R,p){var m;return Rx.length?x.length:R;if(y+=Y===x.length?x:x.slice(0,R),0==(R-=Y)){Y===x.length?(++m,this.head=p.next?p.next:this.tail=null):(this.head=p,p.data=x.slice(Y));break}++m}return this.length-=m,y}},{key:"_getBuffer",value:function(R){var p=d.allocUnsafe(R),m=this.head,y=1;for(m.data.copy(p),R-=m.data.length;m=m.next;){var x=m.data,Y=R>x.length?x.length:R;if(x.copy(p,p.length-R,0,Y),0==(R-=Y)){Y===x.length?(++y,this.head=m.next?m.next:this.tail=null):(this.head=m,m.data=x.slice(Y));break}++y}return this.length-=y,p}},{key:e,value:function(R,p){return C(this,a(a({},p),{},{depth:0,customInspect:!1}))}}]),Q}()},72361:function(b,A,n){"use strict";n(41584);var B=n(50621),a=B.Buffer;function s(g,f){for(var w in g)f[w]=g[w]}function o(g,f,w){return a(g,f,w)}a.from&&a.alloc&&a.allocUnsafe&&a.allocUnsafeSlow?b.exports=B:(s(B,A),A.Buffer=o),s(a,o),o.from=function(g,f,w){if("number"==typeof g)throw new TypeError("Argument must not be a number");return a(g,f,w)},o.alloc=function(g,f,w){if("number"!=typeof g)throw new TypeError("Argument must be a number");var u=a(g);return void 0!==f?"string"==typeof w?u.fill(f,w):u.fill(f):u.fill(0),u},o.allocUnsafe=function(g){if("number"!=typeof g)throw new TypeError("Argument must be a number");return a(g)},o.allocUnsafeSlow=function(g){if("number"!=typeof g)throw new TypeError("Argument must be a number");return B.SlowBuffer(g)}},41209:function(b,A,n){"use strict";n(81755),n(20731),n(14032),n(56912),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529);var B=n(3483),s=n(51014).swap32LE;b.exports=function(){function x(v){var S="function"==typeof v.readUInt32BE&&"function"==typeof v.slice;if(S||v instanceof Uint8Array){var z;if(S)this.highStart=v.readUInt32LE(0),this.errorValue=v.readUInt32LE(4),z=v.readUInt32LE(8),v=v.slice(12);else{var F=new DataView(v.buffer);this.highStart=F.getUint32(0,!0),this.errorValue=F.getUint32(4,!0),z=F.getUint32(8,!0),v=v.subarray(12)}v=B(v,new Uint8Array(z)),v=B(v,new Uint8Array(z)),s(v),this.data=new Uint32Array(v.buffer)}else{var $=v;this.data=$.data,this.highStart=$.highStart,this.errorValue=$.errorValue}}return x.prototype.get=function(S){return S<0||S>1114111?this.errorValue:S<55296||S>56319&&S<=65535?this.data[(this.data[S>>5]<<2)+(31&S)]:S<=65535?this.data[(this.data[2048+(S-55296>>5)]<<2)+(31&S)]:S>11)]+(S>>5&63)]<<2)+(31&S)]:this.data[this.data.length-4]},x}()},51014:function(b,A,n){"use strict";n(81755),n(14032),n(56912),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529);var B=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],a=function(f,w,u){var r=f[w];f[w]=f[u],f[u]=r};b.exports={swap32LE:function(f){B&&function(f){for(var w=f.length,u=0;u/)){for(;at=et();)XA.childNodes.push(at),at.parentNode=XA,XA.textContent+=3===at.nodeType||4===at.nodeType?at.nodeValue:at.textContent;return(LA=it.match(/^<\/([\w:.-]+)\s*>/,!0))?(LA[1]===XA.nodeName||(ee('parseXml: tag not matching, opening "'+XA.nodeName+'" & closing "'+LA[1]+'"'),UA=!0),XA):(ee('parseXml: tag not matching, opening "'+XA.nodeName+'" & not closing'),UA=!0,XA)}if(it.match(/^\/>/))return XA;ee('parseXml: tag could not be parsed "'+XA.nodeName+'"'),UA=!0}else{if(LA=it.match(/^/))return new SA(null,8,LA,UA);if(LA=it.match(/^<\?[\s\S]*?\?>/))return new SA(null,7,LA,UA);if(LA=it.match(/^/))return new SA(null,10,LA,UA);if(LA=it.match(/^/,!0))return new SA("#cdata-section",4,LA[1],UA);if(LA=it.match(/^([^<]+)/,!0))return new SA("#text",3,_(LA[1]),UA)}};TA=kA();)1!==TA.nodeType||RA?(1===TA.nodeType||3===TA.nodeType&&""!==TA.nodeValue.trim())&&ee("parseXml: data after document end has been discarded"):RA=TA;return it.matchAll()&&ee("parseXml: parsing error"),RA}function _(ZA){return ZA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(SA,it,RA,TA){return it?String.fromCharCode(parseInt(it,10)):RA?String.fromCharCode(parseInt(RA,16)):TA&&d[TA]?String.fromCharCode(d[TA]):SA})}function fA(ZA){var SA,it;return ZA=(ZA||"").trim(),(SA=u[ZA])?it=[SA.slice(),1]:(SA=ZA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(SA[1]=parseInt(SA[1]),SA[2]=parseInt(SA[2]),SA[3]=parseInt(SA[3]),SA[4]=parseFloat(SA[4]),SA[1]<256&&SA[2]<256&&SA[3]<256&&SA[4]<=1&&(it=[SA.slice(1,4),SA[4]])):(SA=ZA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(SA[1]=parseInt(SA[1]),SA[2]=parseInt(SA[2]),SA[3]=parseInt(SA[3]),SA[1]<256&&SA[2]<256&&SA[3]<256&&(it=[SA.slice(1,4),1])):(SA=ZA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(SA[1]=2.55*parseFloat(SA[1]),SA[2]=2.55*parseFloat(SA[2]),SA[3]=2.55*parseFloat(SA[3]),SA[1]<256&&SA[2]<256&&SA[3]<256&&(it=[SA.slice(1,4),1])):(SA=ZA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?it=[[parseInt(SA[1],16),parseInt(SA[2],16),parseInt(SA[3],16)],1]:(SA=ZA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(it=[[17*parseInt(SA[1],16),17*parseInt(SA[2],16),17*parseInt(SA[3],16)],1]),Fe?Fe(it,ZA):it}function iA(ZA,SA,it){var RA=ZA[0].slice(),TA=ZA[1]*SA;if(it){for(var UA=0;UA=0;SA--)ZA=wA(wn[SA].savedMatrix,ZA);return ZA}function YA(){return(new Yt).M(0,0).L(s.page.width,0).L(s.page.width,s.page.height).L(0,s.page.height).transform(HA(FA())).getBoundingBox()}function HA(ZA){var SA=ZA[0]*ZA[3]-ZA[1]*ZA[2];return[ZA[3]/SA,-ZA[1]/SA,-ZA[2]/SA,ZA[0]/SA,(ZA[2]*ZA[5]-ZA[3]*ZA[4])/SA,(ZA[1]*ZA[4]-ZA[0]*ZA[5])/SA]}function J(ZA){var SA=xA(ZA[0]),it=xA(ZA[1]),RA=xA(ZA[2]),TA=xA(ZA[3]),UA=xA(ZA[4]),kA=xA(ZA[5]);if(EA(SA*TA-it*RA,0))return[SA,it,RA,TA,UA,kA]}function BA(ZA){var SA=ZA[2]||0,it=ZA[1]||0,RA=ZA[0]||0;if(eA(SA,0)&&eA(it,0))return[];if(eA(SA,0))return[-RA/it];var TA=it*it-4*SA*RA;return EA(TA,0)&&TA>0?[(-it+Math.sqrt(TA))/(2*SA),(-it-Math.sqrt(TA))/(2*SA)]:eA(TA,0)?[-it/(2*SA)]:[]}function aA(ZA,SA){return(SA[0]||0)+(SA[1]||0)*ZA+(SA[2]||0)*ZA*ZA+(SA[3]||0)*ZA*ZA*ZA}function eA(ZA,SA){return Math.abs(ZA-SA)<1e-10}function EA(ZA,SA){return Math.abs(ZA-SA)>=1e-10}function xA(ZA){return ZA>-1e21&&ZA<1e21?Math.round(1e6*ZA)/1e6:0}function W(ZA){for(var RA,SA=new wt((ZA||"").trim()),it=[1,0,0,1,0,0];RA=SA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){for(var TA=RA[1],UA=[],kA=new wt(RA[2].trim()),et=void 0;et=kA.matchNumber();)UA.push(Number(et)),kA.matchSeparator();if("matrix"===TA&&6===UA.length)it=wA(it,[UA[0],UA[1],UA[2],UA[3],UA[4],UA[5]]);else if("translate"===TA&&2===UA.length)it=wA(it,[1,0,0,1,UA[0],UA[1]]);else if("translate"===TA&&1===UA.length)it=wA(it,[1,0,0,1,UA[0],0]);else if("scale"===TA&&2===UA.length)it=wA(it,[UA[0],0,0,UA[1],0,0]);else if("scale"===TA&&1===UA.length)it=wA(it,[UA[0],0,0,UA[0],0,0]);else if("rotate"===TA&&3===UA.length){var LA=UA[0]*Math.PI/180;it=wA(it,[1,0,0,1,UA[1],UA[2]],[Math.cos(LA),Math.sin(LA),-Math.sin(LA),Math.cos(LA),0,0],[1,0,0,1,-UA[1],-UA[2]])}else if("rotate"===TA&&1===UA.length){var at=UA[0]*Math.PI/180;it=wA(it,[Math.cos(at),Math.sin(at),-Math.sin(at),Math.cos(at),0,0])}else if("skewX"===TA&&1===UA.length){var XA=UA[0]*Math.PI/180;it=wA(it,[1,0,Math.tan(XA),1,0,0])}else{if("skewY"!==TA||1!==UA.length)return;var dt=UA[0]*Math.PI/180;it=wA(it,[1,Math.tan(dt),0,1,0,0])}SA.matchSeparator()}if(!SA.matchAll())return it}function L(ZA,SA,it,RA,TA,UA){var kA=(ZA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],et=kA[1]||kA[4]||"meet",XA=SA/RA,dt=it/TA,xt={Min:0,Mid:.5,Max:1}[kA[2]||"Mid"]-(UA||0),St={Min:0,Mid:.5,Max:1}[kA[3]||"Mid"]-(UA||0);return"slice"===et?dt=XA=Math.max(XA,dt):"meet"===et&&(dt=XA=Math.min(XA,dt)),[XA,0,0,dt,xt*(SA-RA*XA),St*(it-TA*dt)]}function rA(ZA){var SA=Object.create(null);ZA=(ZA||"").trim().split(/;/);for(var it=0;itue&&(Ht=ue,ue=ie,ie=Ht),Jt>se&&(Ht=se,se=Jt,Jt=Ht);for(var ve=BA(xt),Oe=0;Oe=0&&ve[Oe]<=1){var ge=aA(ve[Oe],XA);geue&&(ue=ge)}for(var xe=BA(St),Ne=0;Ne=0&&xe[Ne]<=1){var qe=aA(xe[Ne],dt);qese&&(se=qe)}return[ie,Jt,ue,se]},this.getPointAtLength=function(Ht){if(eA(Ht,0))return this.startPoint;if(eA(Ht,this.totalLength))return this.endPoint;if(!(Ht<0||Ht>this.totalLength))for(var ie=1;ie<=at;ie++){var Jt=jt[ie-1],ue=jt[ie];if(Jt<=Ht&&Ht<=ue){var se=(ie-(ue-Ht)/(ue-Jt))/at,ve=aA(se,XA),Oe=aA(se,dt),ge=aA(se,xt),xe=aA(se,St);return[ve,Oe,Math.atan2(xe,ge)]}}}},pt=function(SA,it,RA,TA){this.totalLength=Math.sqrt((RA-SA)*(RA-SA)+(TA-it)*(TA-it)),this.startPoint=[SA,it,Math.atan2(TA-it,RA-SA)],this.endPoint=[RA,TA,Math.atan2(TA-it,RA-SA)],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(UA){if(UA>=0&&UA<=this.totalLength){var kA=UA/this.totalLength||0;return[this.startPoint[0]+kA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+kA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},Yt=function ZA(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;var UA,kA,et,SA=0,it=0,RA=0,TA=0;this.move=function(LA,at){return SA=RA=LA,it=TA=at,null},this.line=function(LA,at){var XA=new pt(RA,TA,LA,at);return RA=LA,TA=at,XA},this.curve=function(LA,at,XA,dt,xt,St){var jt=new gt(RA,TA,LA,at,XA,dt,xt,St);return RA=xt,TA=St,jt},this.close=function(){var LA=new pt(RA,TA,SA,it);return RA=SA,TA=it,LA},this.addCommand=function(LA){this.pathCommands.push(LA);var at=this[LA[0]].apply(this,LA.slice(3));at&&(at.hasStart=LA[1],at.hasEnd=LA[2],this.startPoint=this.startPoint||at.startPoint,this.endPoint=at.endPoint,this.pathSegments.push(at),this.totalLength+=at.totalLength)},this.M=function(LA,at){return this.addCommand(["move",!0,!0,LA,at]),UA="M",this},this.m=function(LA,at){return this.M(RA+LA,TA+at)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),UA="Z",this},this.L=function(LA,at){return this.addCommand(["line",!0,!0,LA,at]),UA="L",this},this.l=function(LA,at){return this.L(RA+LA,TA+at)},this.H=function(LA){return this.L(LA,TA)},this.h=function(LA){return this.L(RA+LA,TA)},this.V=function(LA){return this.L(RA,LA)},this.v=function(LA){return this.L(RA,TA+LA)},this.C=function(LA,at,XA,dt,xt,St){return this.addCommand(["curve",!0,!0,LA,at,XA,dt,xt,St]),UA="C",kA=XA,et=dt,this},this.c=function(LA,at,XA,dt,xt,St){return this.C(RA+LA,TA+at,RA+XA,TA+dt,RA+xt,TA+St)},this.S=function(LA,at,XA,dt){return this.C(RA+("C"===UA?RA-kA:0),TA+("C"===UA?TA-et:0),LA,at,XA,dt)},this.s=function(LA,at,XA,dt){return this.C(RA+("C"===UA?RA-kA:0),TA+("C"===UA?TA-et:0),RA+LA,TA+at,RA+XA,TA+dt)},this.Q=function(LA,at,XA,dt){return this.addCommand(["curve",!0,!0,RA+.6666666666666666*(LA-RA),TA+2/3*(at-TA),XA+2/3*(LA-XA),dt+2/3*(at-dt),XA,dt]),UA="Q",kA=LA,et=at,this},this.q=function(LA,at,XA,dt){return this.Q(RA+LA,TA+at,RA+XA,TA+dt)},this.T=function(LA,at){return this.Q(RA+("Q"===UA?RA-kA:0),TA+("Q"===UA?TA-et:0),LA,at)},this.t=function(LA,at){return this.Q(RA+("Q"===UA?RA-kA:0),TA+("Q"===UA?TA-et:0),RA+LA,TA+at)},this.A=function(LA,at,XA,dt,xt,St,jt){if(eA(LA,0)||eA(at,0))this.addCommand(["line",!0,!0,St,jt]);else{XA*=Math.PI/180,LA=Math.abs(LA),at=Math.abs(at),dt=1*!!dt,xt=1*!!xt;var Xt=Math.cos(XA)*(RA-St)/2+Math.sin(XA)*(TA-jt)/2,ne=Math.cos(XA)*(TA-jt)/2-Math.sin(XA)*(RA-St)/2,Et=Xt*Xt/(LA*LA)+ne*ne/(at*at);Et>1&&(LA*=Math.sqrt(Et),at*=Math.sqrt(Et));var Rt=Math.sqrt(Math.max(0,LA*LA*at*at-LA*LA*ne*ne-at*at*Xt*Xt)/(LA*LA*ne*ne+at*at*Xt*Xt)),Zt=(dt===xt?-1:1)*Rt*LA*ne/at,Ht=(dt===xt?1:-1)*Rt*at*Xt/LA,ie=Math.cos(XA)*Zt-Math.sin(XA)*Ht+(RA+St)/2,Jt=Math.sin(XA)*Zt+Math.cos(XA)*Ht+(TA+jt)/2,ue=Math.atan2((ne-Ht)/at,(Xt-Zt)/LA),se=Math.atan2((-ne-Ht)/at,(-Xt-Zt)/LA);0===xt&&se-ue>0?se-=2*Math.PI:1===xt&&se-ue<0&&(se+=2*Math.PI);for(var ve=Math.ceil(Math.abs(se-ue)/(Math.PI/In)),Oe=0;OeLA[2]&&(LA[2]=dt[2]),dt[1]LA[3]&&(LA[3]=dt[3]);return LA[0]===1/0&&(LA[0]=0),LA[1]===1/0&&(LA[1]=0),LA[2]===-1/0&&(LA[2]=0),LA[3]===-1/0&&(LA[3]=0),LA},this.getPointAtLength=function(LA){if(LA>=0&&LA<=this.totalLength){for(var at,XA=0;XATA.selector.specificity||(SA[UA]=TA.css[UA],it[UA]=TA.selector.specificity)}return SA}(SA),this.allowedChildren=[],this.attr=function(UA){if("function"==typeof SA.getAttribute)return SA.getAttribute(UA)},this.resolveUrl=function(UA){var kA=(UA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],et=kA[1]||kA[3]||kA[5]||kA[7],LA=kA[2]||kA[4]||kA[6]||kA[8];if(LA){if(!et){var at=o.getElementById(LA);if(at)return-1===this.stack.indexOf(at)?at:void ee('SVGtoPDF: loop of circular references for id "'+LA+'"')}if(Qe){var XA=kt[et];if(!XA){(function OA(ZA){return"object"==typeof ZA&&null!==ZA&&"number"==typeof ZA.length})(XA=Qe(et))||(XA=[XA]);for(var dt=0;dt=0&&et[3]>=0?et:kA},this.getPercent=function(UA,kA){var et=this.attr(UA),LA=new wt((et||"").trim()),dt=LA.matchNumber();return!dt||(LA.match("%")&&(dt*=.01),LA.matchAll())?kA:Math.max(0,Math.min(1,dt))},this.chooseValue=function(UA){for(var kA=0;kA=0&&(LA=XA);break;case"stroke-miterlimit":null!=(XA=parseFloat(et))&&XA>=1&&(LA=XA);break;case"word-spacing":case"letter-spacing":LA=this.computeLength(et,this.getViewport());break;case"stroke-dashoffset":if(null!=(LA=this.computeLength(et,this.getViewport()))&&LA<0)for(var ne=this.get("stroke-dasharray"),Et=0;Et0?kA:this.ref?this.ref.getChildren():[]},this.getPaint=function(kA,et,LA,at){var XA="userSpaceOnUse"!==this.attr("patternUnits"),dt="objectBoundingBox"===this.attr("patternContentUnits"),xt=this.getLength("x",XA?1:this.getParentVWidth(),0),St=this.getLength("y",XA?1:this.getParentVHeight(),0),jt=this.getLength("width",XA?1:this.getParentVWidth(),0),Xt=this.getLength("height",XA?1:this.getParentVHeight(),0);dt&&!XA?(xt=(xt-kA[0])/(kA[2]-kA[0])||0,St=(St-kA[1])/(kA[3]-kA[1])||0,jt=jt/(kA[2]-kA[0])||0,Xt=Xt/(kA[3]-kA[1])||0):!dt&&XA&&(xt=kA[0]+xt*(kA[2]-kA[0]),St=kA[1]+St*(kA[3]-kA[1]),jt*=kA[2]-kA[0],Xt*=kA[3]-kA[1]);var ne=this.getViewbox("viewBox",[0,0,jt,Xt]),Rt=wA(L((this.attr("preserveAspectRatio")||"").trim(),jt,Xt,ne[2],ne[3],0),[1,0,0,1,-ne[0],-ne[1]]),Zt=W(this.attr("patternTransform"));if(dt&&(Zt=wA([kA[2]-kA[0],0,0,kA[3]-kA[1],kA[0],kA[1]],Zt)),(Zt=J(Zt=wA(Zt,[1,0,0,1,xt,St])))&&(Rt=J(Rt))&&(jt=xA(jt))&&(Xt=xA(Xt))){var Ht=h([0,0,jt,Xt]);return s.transform.apply(s,Rt),this.drawChildren(LA,at),Q(Ht),[p(Ht,jt,Xt,Zt),et]}return RA?[RA[0],RA[1]*et]:void 0},this.getVWidth=function(){var kA="userSpaceOnUse"!==this.attr("patternUnits"),et=this.getLength("width",kA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,et,0])[2]},this.getVHeight=function(){var kA="userSpaceOnUse"!==this.attr("patternUnits"),et=this.getLength("height",kA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,et])[3]}},hA=function ZA(SA,it,RA){VA.call(this,SA,it),this.allowedChildren=["stop"],this.ref=function(){var kA=this.getUrl("href")||this.getUrl("xlink:href");if(kA&&kA.nodeName===SA.nodeName)return new ZA(kA,it,RA)}.call(this);var TA=this.attr;this.attr=function(kA){var et=TA.call(this,kA);return null!=et||"href"===kA||"xlink:href"===kA?et:this.ref?this.ref.attr(kA):null};var UA=this.getChildren;this.getChildren=function(){var kA=UA.call(this);return kA.length>0?kA:this.ref?this.ref.getChildren():[]},this.getPaint=function(kA,et,LA,at){var XA=this.getChildren();if(0!==XA.length){if(1===XA.length){var dt=XA[0],xt=dt.get("stop-color");return"none"===xt?void 0:iA(xt,dt.get("stop-opacity")*et,at)}var ne,Et,Rt,Zt,Ht,ie,St="userSpaceOnUse"!==this.attr("gradientUnits"),jt=W(this.attr("gradientTransform")),Xt=this.attr("spreadMethod"),Jt=0,ue=0,se=1;if(St&&(jt=wA([kA[2]-kA[0],0,0,kA[3]-kA[1],kA[0],kA[1]],jt)),jt=J(jt)){if("linearGradient"===this.name)Et=this.getLength("x1",St?1:this.getVWidth(),0),Rt=this.getLength("x2",St?1:this.getVWidth(),St?1:this.getVWidth()),Zt=this.getLength("y1",St?1:this.getVHeight(),0),Ht=this.getLength("y2",St?1:this.getVHeight(),0);else{Rt=this.getLength("cx",St?1:this.getVWidth(),St?.5:.5*this.getVWidth()),Ht=this.getLength("cy",St?1:this.getVHeight(),St?.5:.5*this.getVHeight()),ie=this.getLength("r",St?1:this.getViewport(),St?.5:.5*this.getViewport()),Et=this.getLength("fx",St?1:this.getVWidth(),Rt),Zt=this.getLength("fy",St?1:this.getVHeight(),Ht),ie<0&&ee("SvgElemGradient: negative r value");var ve=Math.sqrt(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2)),Oe=1;ve>ie&&(Et=Rt+(Et-Rt)*(Oe=ie/ve),Zt=Ht+(Zt-Ht)*Oe),ie=Math.max(ie,ve*Oe*1.000001)}if("reflect"===Xt||"repeat"===Xt){var ge=HA(jt),xe=IA([kA[0],kA[1]],ge),Ne=IA([kA[2],kA[1]],ge),qe=IA([kA[2],kA[3]],ge),Dn=IA([kA[0],kA[3]],ge);"linearGradient"===this.name?(Jt=Math.max((xe[0]-Rt)*(Rt-Et)+(xe[1]-Ht)*(Ht-Zt),(Ne[0]-Rt)*(Rt-Et)+(Ne[1]-Ht)*(Ht-Zt),(qe[0]-Rt)*(Rt-Et)+(qe[1]-Ht)*(Ht-Zt),(Dn[0]-Rt)*(Rt-Et)+(Dn[1]-Ht)*(Ht-Zt))/(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2)),ue=Math.max((xe[0]-Et)*(Et-Rt)+(xe[1]-Zt)*(Zt-Ht),(Ne[0]-Et)*(Et-Rt)+(Ne[1]-Zt)*(Zt-Ht),(qe[0]-Et)*(Et-Rt)+(qe[1]-Zt)*(Zt-Ht),(Dn[0]-Et)*(Et-Rt)+(Dn[1]-Zt)*(Zt-Ht))/(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2))):Jt=Math.sqrt(Math.max(Math.pow(xe[0]-Rt,2)+Math.pow(xe[1]-Ht,2),Math.pow(Ne[0]-Rt,2)+Math.pow(Ne[1]-Ht,2),Math.pow(qe[0]-Rt,2)+Math.pow(qe[1]-Ht,2),Math.pow(Dn[0]-Rt,2)+Math.pow(Dn[1]-Ht,2)))/ie-1,Jt=Math.ceil(Jt+.5),se=(ue=Math.ceil(ue+.5))+1+Jt}ne="linearGradient"===this.name?s.linearGradient(Et-ue*(Rt-Et),Zt-ue*(Ht-Zt),Rt+Jt*(Rt-Et),Ht+Jt*(Ht-Zt)):s.radialGradient(Et,Zt,0,Rt,Ht,ie+Jt*ie);for(var tn=0;tn0&&ne.stop((tn+0)/se,on[0],on[1]),ne.stop((tn+Qn)/(Jt+ue+1),on[0],on[1]),en===XA.length-1&&Qn<1&&ne.stop((tn+1)/se,on[0],on[1])}return ne.setTransform.apply(ne,jt),[ne,1]}return RA?[RA[0],RA[1]*et]:void 0}}},q=function(SA,it){_A.call(this,SA,it),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(RA,TA){if("hidden"!==this.get("visibility")&&this.shape){if(s.save(),this.transform(),this.clip(),RA)this.shape.insertInDocument(),z(r.white),s.fill(this.get("clip-rule"));else{var kA;this.mask()&&(kA=h(YA()));var et=this.shape.getSubPaths(),LA=this.getFill(RA,TA),at=this.getStroke(RA,TA),XA=this.get("stroke-width"),dt=this.get("stroke-linecap");if(LA||at){if(LA&&z(LA),at){for(var xt=0;xt0&&et[xt].startPoint&&et[xt].startPoint.length>1){var St=et[xt].startPoint[0],jt=et[xt].startPoint[1];z(at),"square"===dt?s.rect(St-.5*XA,jt-.5*XA,XA,XA):"round"===dt&&s.circle(St,jt,.5*XA),s.fill()}var Xt=this.get("stroke-dasharray"),ne=this.get("stroke-dashoffset");if(EA(this.dashScale,1)){for(var Et=0;Et0&&et[Rt].insertInDocument();LA&&at?s.fillAndStroke(this.get("fill-rule")):LA?s.fill(this.get("fill-rule")):at&&s.stroke()}var Zt=this.get("marker-start"),Ht=this.get("marker-mid"),ie=this.get("marker-end");if("none"!==Zt||"none"!==Ht||"none"!==ie){var Jt=this.shape.getMarkers();if("none"!==Zt&&new ot(Zt,null).drawMarker(!1,TA,Jt[0],XA),"none"!==Ht)for(var se=1;se0&&kA>0?et&&LA?(et=Math.min(et,.5*UA),LA=Math.min(LA,.5*kA),this.shape=(new Yt).M(RA+et,TA).L(RA+UA-et,TA).A(et,LA,0,0,1,RA+UA,TA+LA).L(RA+UA,TA+kA-LA).A(et,LA,0,0,1,RA+UA-et,TA+kA).L(RA+et,TA+kA).A(et,LA,0,0,1,RA,TA+kA-LA).L(RA,TA+LA).A(et,LA,0,0,1,RA+et,TA).Z()):this.shape=(new Yt).M(RA,TA).L(RA+UA,TA).L(RA+UA,TA+kA).L(RA,TA+kA).Z():this.shape=new Yt},At=function(SA,it){q.call(this,SA,it);var RA=this.getLength("cx",this.getVWidth(),0),TA=this.getLength("cy",this.getVHeight(),0),UA=this.getLength("r",this.getViewport(),0);this.shape=UA>0?(new Yt).M(RA+UA,TA).A(UA,UA,0,0,1,RA-UA,TA).A(UA,UA,0,0,1,RA+UA,TA).Z():new Yt},O=function(SA,it){q.call(this,SA,it);var RA=this.getLength("cx",this.getVWidth(),0),TA=this.getLength("cy",this.getVHeight(),0),UA=this.getLength("rx",this.getVWidth(),0),kA=this.getLength("ry",this.getVHeight(),0);this.shape=UA>0&&kA>0?(new Yt).M(RA+UA,TA).A(UA,kA,0,0,1,RA-UA,TA).A(UA,kA,0,0,1,RA+UA,TA).Z():new Yt},qA=function(SA,it){q.call(this,SA,it);var RA=this.getLength("x1",this.getVWidth(),0),TA=this.getLength("y1",this.getVHeight(),0),UA=this.getLength("x2",this.getVWidth(),0),kA=this.getLength("y2",this.getVHeight(),0);this.shape=(new Yt).M(RA,TA).L(UA,kA)},nt=function(SA,it){q.call(this,SA,it);var RA=this.getNumberList("points");this.shape=new Yt;for(var TA=0;TA0?RA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},ot=function(SA,it){Qt.call(this,SA,it);var RA=this.getLength("markerWidth",this.getParentVWidth(),3),TA=this.getLength("markerHeight",this.getParentVHeight(),3),UA=this.getViewbox("viewBox",[0,0,RA,TA]);this.getVWidth=function(){return UA[2]},this.getVHeight=function(){return UA[3]},this.drawMarker=function(kA,et,LA,at){s.save();var XA=this.attr("orient"),dt=this.attr("markerUnits"),xt="auto"===XA?LA[2]:(parseFloat(XA)||0)*Math.PI/180,St="userSpaceOnUse"===dt?1:at;s.transform(Math.cos(xt)*St,Math.sin(xt)*St,-Math.sin(xt)*St,Math.cos(xt)*St,LA[0],LA[1]);var Et,jt=this.getLength("refX",this.getVWidth(),0),Xt=this.getLength("refY",this.getVHeight(),0),ne=L(this.attr("preserveAspectRatio"),RA,TA,UA[2],UA[3],.5);"hidden"===this.get("overflow")&&s.rect(ne[0]*(UA[0]+UA[2]/2-jt)-RA/2,ne[3]*(UA[1]+UA[3]/2-Xt)-TA/2,RA,TA).clip(),s.transform.apply(s,ne),s.translate(-jt,-Xt),this.get("opacity")<1&&!kA&&(Et=h(YA())),this.drawChildren(kA,et),Et&&(Q(Et),s.fillOpacity(this.get("opacity")),I(Et)),s.restore()}},Tt=function(SA,it){Qt.call(this,SA,it),this.useMask=function(RA){var TA=h(YA());s.save(),"objectBoundingBox"===this.attr("clipPathUnits")&&s.transform(RA[2]-RA[0],0,0,RA[3]-RA[1],RA[0],RA[1]),this.clip(),this.drawChildren(!0,!1),s.restore(),Q(TA),R(TA,!0)}},yt=function(SA,it){Qt.call(this,SA,it),this.useMask=function(RA){var UA,kA,et,LA,TA=h(YA());s.save(),"userSpaceOnUse"===this.attr("maskUnits")?(UA=this.getLength("x",this.getVWidth(),-.1*(RA[2]-RA[0])+RA[0]),kA=this.getLength("y",this.getVHeight(),-.1*(RA[3]-RA[1])+RA[1]),et=this.getLength("width",this.getVWidth(),1.2*(RA[2]-RA[0])),LA=this.getLength("height",this.getVHeight(),1.2*(RA[3]-RA[1]))):(UA=this.getLength("x",this.getVWidth(),-.1)*(RA[2]-RA[0])+RA[0],kA=this.getLength("y",this.getVHeight(),-.1)*(RA[3]-RA[1])+RA[1],et=this.getLength("width",this.getVWidth(),1.2)*(RA[2]-RA[0]),LA=this.getLength("height",this.getVHeight(),1.2)*(RA[3]-RA[1])),s.rect(UA,kA,et,LA).clip(),"objectBoundingBox"===this.attr("maskContentUnits")&&s.transform(RA[2]-RA[0],0,0,RA[3]-RA[1],RA[0],RA[1]),this.clip(),this.drawChildren(!1,!0),s.restore(),Q(TA),R(TA,!0)}},Ut=function(SA,it){_A.call(this,SA,it),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){for(var RA=new Yt,TA=0;TA Tj")}s.addContent("ET")}}}"line-through"===this.get("text-decoration")&&this.decorate(.05*this._font.size,.5*(DA(this._font.font,this._font.size)+NA(this._font.font,this._font.size)),RA,TA)},this.decorate=function(RA,TA,UA,kA){var et=this.getFill(UA,kA),LA=this.getStroke(UA,kA);et&&z(et),LA&&(F(LA),s.lineWidth(this.get("stroke-width")).miterLimit(this.get("stroke-miterlimit")).lineJoin(this.get("stroke-linejoin")).lineCap(this.get("stroke-linecap")).dash(this.get("stroke-dasharray"),{phase:this.get("stroke-dashoffset")}));for(var at=0,XA=this._pos;at0?kA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((UA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===UA.nodeName){var et=new jA(UA,this);this.pathObject=et.shape.clone().transform(et.get("transform")),this.pathLength=this.chooseValue(et.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},Kt=function(SA,it){Ut.call(this,SA,it),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(RA){var LA,at,TA="",UA=SA.textContent,kA=[],et=[],XA=0,dt=0;function xt(){if(et.length)for(var Et=et[et.length-1],Ht={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[LA+at]*(Et.x+Et.width-et[0].x)||0,ie=0;ieZt||ue<0)Et._pos[Jt].hidden=!0;else{var se=Rt.getPointAtLength(ue*Ht);EA(Ht,1)&&(Et._pos[Jt].scale*=Ht,Et._pos[Jt].width*=Ht),Et._pos[Jt].x=se[0]-.5*Et._pos[Jt].width*Math.cos(se[2])-Et._pos[Jt].y*Math.sin(se[2]),Et._pos[Jt].y=se[1]-.5*Et._pos[Jt].width*Math.sin(se[2])+Et._pos[Jt].y*Math.cos(se[2]),Et._pos[Jt].rotate=se[2]+Et._pos[Jt].rotate,Et._pos[Jt].continuous=!1}}else for(var ve=0;ve0&&se<1/0)for(var ve=0;ve=2)for(var Oe=(Rt-(ue-Jt))/(Et.length-1),ge=0;ge"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch{return!1}}();return function(){var V,X=m(dA);if(H){var uA=m(this).constructor;V=Reflect.construct(X,arguments,uA)}else V=X.apply(this,arguments);return function v(dA,H){return!H||"object"!=typeof H&&"function"!=typeof H?Y(dA):H}(this,V)}}function z(dA,H){return function gA(dA){if(Array.isArray(dA))return dA}(dA)||function fA(dA,H){if(!(typeof Symbol>"u")&&Symbol.iterator in Object(dA)){var T=[],X=!0,V=!1,uA=void 0;try{for(var tt,mA=dA[Symbol.iterator]();!(X=(tt=mA.next()).done)&&(T.push(tt.value),!H||T.length!==H);X=!0);}catch(rt){V=!0,uA=rt}finally{try{!X&&null!=mA.return&&mA.return()}finally{if(V)throw uA}}return T}}(dA,H)||iA(dA,H)||function FA(){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 F(dA){return function $(dA){if(Array.isArray(dA))return wA(dA)}(dA)||function _(dA){if(typeof Symbol<"u"&&Symbol.iterator in Object(dA))return Array.from(dA)}(dA)||iA(dA)||function IA(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function iA(dA,H){if(dA){if("string"==typeof dA)return wA(dA,H);var T=Object.prototype.toString.call(dA).slice(8,-1);if("Object"===T&&dA.constructor&&(T=dA.constructor.name),"Map"===T||"Set"===T)return Array.from(dA);if("Arguments"===T||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(T))return wA(dA,H)}}function wA(dA,H){(null==H||H>dA.length)&&(H=dA.length);for(var T=0,X=new Array(H);T"u"||null==dA[Symbol.iterator]){if(Array.isArray(dA)||(T=iA(dA))||H&&dA&&"number"==typeof dA.length){T&&(dA=T);var X=0,V=function(){};return{s:V,n:function(){return X>=dA.length?{done:!0}:{done:!1,value:dA[X++]}},e:function(ut){throw ut},f:V}}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 tt,uA=!0,mA=!1;return{s:function(){T=dA[Symbol.iterator]()},n:function(){var ut=T.next();return uA=ut.done,ut},e:function(ut){mA=!0,tt=ut},f:function(){try{!uA&&null!=T.return&&T.return()}finally{if(mA)throw tt}}}}var HA=function(){function dA(){C(this,dA)}return h(dA,[{key:"toString",value:function(){throw new Error("Must be implemented by subclasses")}}]),dA}(),J=function(){function dA(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};C(this,dA),this._items={},this.limits="boolean"!=typeof H.limits||H.limits}return h(dA,[{key:"add",value:function(T,X){return this._items[T]=X}},{key:"get",value:function(T){return this._items[T]}},{key:"toString",value:function(){var T=this,X=Object.keys(this._items).sort(function(Ct,Mt){return T._compareKeys(Ct,Mt)}),V=["<<"];if(this.limits&&X.length>1){var mA=X[X.length-1];V.push(" /Limits ".concat(xA.convert([this._dataForKey(X[0]),this._dataForKey(mA)])))}V.push(" /".concat(this._keysName()," ["));var rt,tt=YA(X);try{for(tt.s();!(rt=tt.n()).done;){var ut=rt.value;V.push(" ".concat(xA.convert(this._dataForKey(ut))," ").concat(xA.convert(this._items[ut])))}}catch(Ct){tt.e(Ct)}finally{tt.f()}return V.push("]"),V.push(">>"),V.join("\n")}},{key:"_compareKeys",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_keysName",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_dataForKey",value:function(){throw new Error("Must be implemented by subclasses")}}]),dA}(),BA=function(H,T){return(Array(T+1).join("0")+H).slice(-T)},aA=/[\n\r\t\b\f()\\]/g,eA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},xA=function(){function dA(){C(this,dA)}return h(dA,null,[{key:"convert",value:function(T){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof T)return"/".concat(T);if(T instanceof String){for(var V=T,uA=!1,mA=0,tt=V.length;mA127){uA=!0;break}var rt;return rt=uA?function(H){var T=H.length;if(1&T)throw new Error("Buffer length must be even");for(var X=0,V=T-1;X");if(T instanceof HA||T instanceof J)return T.toString();if(T instanceof Date){var ut="D:".concat(BA(T.getUTCFullYear(),4))+BA(T.getUTCMonth()+1,2)+BA(T.getUTCDate(),2)+BA(T.getUTCHours(),2)+BA(T.getUTCMinutes(),2)+BA(T.getUTCSeconds(),2)+"Z";return X&&(ut=(ut=X(a.from(ut,"ascii")).toString("binary")).replace(aA,function(Ot){return eA[Ot]})),"(".concat(ut,")")}if(Array.isArray(T)){var Ct=T.map(function(Ot){return dA.convert(Ot,X)}).join(" ");return"[".concat(Ct,"]")}if("[object Object]"==={}.toString.call(T)){var Mt=["<<"];for(var Dt in T){var Ft=T[Dt];Mt.push("/".concat(Dt," ").concat(dA.convert(Ft,X)))}return Mt.push(">>"),Mt.join("\n")}return"number"==typeof T?dA.number(T):"".concat(T)}},{key:"number",value:function(T){if(T>-1e21&&T<1e21)return Math.round(1e6*T)/1e6;throw new Error("unsupported number: ".concat(T))}}]),dA}(),OA=function(dA){p(T,dA);var H=S(T);function T(X,V){var uA,mA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return C(this,T),(uA=H.call(this)).document=X,uA.id=V,uA.data=mA,uA.gen=0,uA.compress=uA.document.compress&&!uA.data.Filter,uA.uncompressedLength=0,uA.buffer=[],uA}return h(T,[{key:"write",value:function(V){if(a.isBuffer(V)||(V=a.from(V+"\n","binary")),this.uncompressedLength+=V.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(V),this.data.Length+=V.length,this.compress)return this.data.Filter="FlateDecode"}},{key:"end",value:function(V){return V&&this.write(V),this.finalize()}},{key:"finalize",value:function(){this.offset=this.document._offset;var V=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=a.concat(this.buffer),this.compress&&(this.buffer=o.default.deflateSync(this.buffer)),V&&(this.buffer=V(this.buffer)),this.data.Length=this.buffer.length),this.document._write("".concat(this.id," ").concat(this.gen," obj")),this.document._write(xA.convert(this.data,V)),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)}},{key:"toString",value:function(){return"".concat(this.id," ").concat(this.gen," R")}}]),T}(HA),W={top:72,left:72,bottom:72,right:72},L={"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]},rA=function(){function dA(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};C(this,dA),this.document=H,this.size=T.size||"letter",this.layout=T.layout||"portrait",this.margins="number"==typeof T.margin?{top:T.margin,left:T.margin,bottom:T.margin,right:T.margin}:T.margins||W;var X=Array.isArray(this.size)?this.size:L[this.size.toUpperCase()];this.width=X["portrait"===this.layout?0:1],this.height=X["portrait"===this.layout?1:0],this.content=this.document.ref(),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=[]}return h(dA,[{key:"maxY",value:function(){return this.height-this.margins.bottom}},{key:"write",value:function(T){return this.content.write(T)}},{key:"end",value:function(){return this.dictionary.end(),this.resources.end(),this.content.end()}},{key:"fonts",get:function(){var T=this.resources.data;return null!=T.Font?T.Font:T.Font={}}},{key:"xobjects",get:function(){var T=this.resources.data;return null!=T.XObject?T.XObject:T.XObject={}}},{key:"ext_gstates",get:function(){var T=this.resources.data;return null!=T.ExtGState?T.ExtGState:T.ExtGState={}}},{key:"patterns",get:function(){var T=this.resources.data;return null!=T.Pattern?T.Pattern:T.Pattern={}}},{key:"colorSpaces",get:function(){var T=this.resources.data;return T.ColorSpace||(T.ColorSpace={})}},{key:"annotations",get:function(){var T=this.dictionary.data;return null!=T.Annots?T.Annots:T.Annots=[]}},{key:"structParentTreeKey",get:function(){var T=this.dictionary.data;return null!=T.StructParents?T.StructParents:T.StructParents=this.document.createStructParentTreeNextKey()}}]),dA}(),AA=function(dA){p(T,dA);var H=S(T);function T(){return C(this,T),H.apply(this,arguments)}return h(T,[{key:"_compareKeys",value:function(V,uA){return V.localeCompare(uA)}},{key:"_keysName",value:function(){return"Names"}},{key:"_dataForKey",value:function(V){return new String(V)}}]),T}(J);function QA(dA,H){if(dA=H[uA]&&dA<=H[uA+1])return!0;dA>H[uA+1]?T=V+1:X=V-1}return!1}var yA=[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],cA=function(H){return QA(H,yA)},CA=[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],NA=[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],pA=[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],JA=[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],ft=[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],wt=function(H){return QA(H,NA)||QA(H,ft)||QA(H,pA)||QA(H,JA)},gt=[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],pt=function(H){return QA(H,gt)},Yt=[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],VA=function(H){return QA(H,Yt)},_A=function(H){return QA(H,NA)},Qt=function(H){return QA(H,CA)},ht=function(H){return H.codePointAt(0)},vt=function(H){return H[0]},Nt=function(H){return H[H.length-1]};function vA(dA){for(var H=[],T=dA.length,X=0;X=55296&&V<=56319&&T>X+1){var uA=dA.charCodeAt(X+1);if(uA>=56320&&uA<=57343){H.push(1024*(V-55296)+uA-56320+65536),X+=1;continue}}H.push(V)}return H}var Z=function(){function dA(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(C(this,dA),!T.ownerPassword&&!T.userPassword)throw new Error("None of owner password and user password is defined.");this.document=H,this._setupEncryption(T)}return h(dA,null,[{key:"generateFileID",value:function(){var T=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X="".concat(T.CreationDate.getTime(),"\n");for(var V in T)T.hasOwnProperty(V)&&(X+="".concat(V,": ").concat(T[V].valueOf(),"\n"));return Lt(g.default.MD5(X))}},{key:"generateRandomWordArray",value:function(T){return g.default.lib.WordArray.random(T)}},{key:"create",value:function(T){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return X.ownerPassword||X.userPassword?new dA(T,X):null}}]),h(dA,[{key:"_setupEncryption",value:function(T){switch(T.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}var X={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,X,T);break;case 5:this._setupEncryptionV5(X,T)}this.dictionary=this.document.ref(X)}},{key:"_setupEncryptionV1V2V4",value:function(T,X,V){var uA,mA;switch(T){case 1:uA=2,this.keyBits=40,mA=function k(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},H=-64;return dA.printing&&(H|=4),dA.modifying&&(H|=8),dA.copying&&(H|=16),dA.annotating&&(H|=32),H}(V.permissions);break;case 2:uA=3,this.keyBits=128,mA=U(V.permissions);break;case 4:uA=4,this.keyBits=128,mA=U(V.permissions)}var Ct,tt=Tt(V.userPassword),rt=V.ownerPassword?Tt(V.ownerPassword):tt,ut=function GA(dA,H,T,X){for(var V=X,uA=dA>=3?51:1,mA=0;mA=3?20:1;for(var ut=0;ut=3?51:1,rt=0;rt=2&&(X.Length=this.keyBits),4===T&&(X.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},X.StmF="StdCF",X.StrF="StdCF"),X.R=uA,X.O=Lt(ut),X.U=Lt(Ct),X.P=mA}},{key:"_setupEncryptionV5",value:function(T,X){this.keyBits=256;var V=U(X.permissions),uA=yt(X.userPassword),mA=X.ownerPassword?yt(X.ownerPassword):uA;this.encryptionKey=function jA(dA){return dA(32)}(dA.generateRandomWordArray);var tt=function O(dA,H){var T=H(8),X=H(8);return g.default.SHA256(dA.clone().concat(T)).concat(T).concat(X)}(uA,dA.generateRandomWordArray),ut=function qA(dA,H,T){var X=g.default.SHA256(dA.clone().concat(H)),V={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(T,X,V).ciphertext}(uA,g.default.lib.WordArray.create(tt.words.slice(10,12),8),this.encryptionKey),Ct=function nt(dA,H,T){var X=T(8),V=T(8);return g.default.SHA256(dA.clone().concat(X).concat(H)).concat(X).concat(V)}(mA,tt,dA.generateRandomWordArray),Dt=function MA(dA,H,T,X){var V=g.default.SHA256(dA.clone().concat(H).concat(T)),uA={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(X,V,uA).ciphertext}(mA,g.default.lib.WordArray.create(Ct.words.slice(10,12),8),tt,this.encryptionKey),Ft=function ot(dA,H,T){var X=g.default.lib.WordArray.create([Ut(dA),4294967295,1415668834],12).concat(T(4));return g.default.AES.encrypt(X,H,{mode:g.default.mode.ECB,padding:g.default.pad.NoPadding}).ciphertext}(V,this.encryptionKey,dA.generateRandomWordArray);T.V=5,T.Length=this.keyBits,T.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},T.StmF="StdCF",T.StrF="StdCF",T.R=5,T.O=Lt(Ct),T.OE=Lt(Dt),T.U=Lt(tt),T.UE=Lt(ut),T.P=V,T.Perms=Lt(Ft)}},{key:"getEncryptFn",value:function(T,X){var V,mA;if(this.version<5&&(V=this.encryptionKey.clone().concat(g.default.lib.WordArray.create([(255&T)<<24|(65280&T)<<8|T>>8&65280|255&X,(65280&X)<<16],5))),1===this.version||2===this.version){var uA=g.default.MD5(V);return uA.sigBytes=Math.min(16,this.keyBits/8+5),function(ut){return Lt(g.default.RC4.encrypt(g.default.lib.WordArray.create(ut),uA).ciphertext)}}mA=4===this.version?g.default.MD5(V.concat(g.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;var tt=dA.generateRandomWordArray(16),rt={mode:g.default.mode.CBC,padding:g.default.pad.Pkcs7,iv:tt};return function(ut){return Lt(tt.clone().concat(g.default.AES.encrypt(g.default.lib.WordArray.create(ut),mA,rt).ciphertext))}}},{key:"end",value:function(){this.dictionary.end()}}]),dA}();function U(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},H=-3904;return"lowResolution"===dA.printing&&(H|=4),"highResolution"===dA.printing&&(H|=2052),dA.modifying&&(H|=8),dA.copying&&(H|=16),dA.annotating&&(H|=32),dA.fillingForms&&(H|=256),dA.contentAccessibility&&(H|=512),dA.documentAssembly&&(H|=1024),H}function Tt(){for(var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",H=a.alloc(32),T=dA.length,X=0;X255)throw new Error("Password contains one or more invalid characters.");H[X]=V,X++}for(;X<32;)H[X]=sn[X-T],X++;return g.default.lib.WordArray.create(H)}function yt(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";dA=unescape(encodeURIComponent(function Bt(dA){var H=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof dA)throw new TypeError("Expected string.");if(0===dA.length)return"";var T=vA(dA).map(function(Mt){return _A(Mt)?32:Mt}).filter(function(Mt){return!Qt(Mt)}),X=String.fromCodePoint.apply(null,T).normalize("NFKC"),V=vA(X);if(V.some(wt))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==H.allowUnassigned&&V.some(cA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");var tt=V.some(pt),rt=V.some(VA);if(tt&&rt)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");var ut=pt(ht(vt(X))),Ct=pt(ht(Nt(X)));if(tt&&(!ut||!Ct))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 X}(dA)));for(var H=Math.min(127,dA.length),T=a.alloc(H),X=0;X>8&65280|dA>>24&255}function Lt(dA){for(var H=[],T=0;T>8*(3-T%4)&255);return a.from(H)}var kt,zt,Wt,ae,mn,dn,sn=[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],$t=xA.number,Kt=function(){function dA(H){C(this,dA),this.doc=H,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}return h(dA,[{key:"stop",value:function(T,X,V){if(null==V&&(V=1),X=this.doc._normalizeColor(X),0===this.stops.length)if(3===X.length)this._colorSpace="DeviceRGB";else if(4===X.length)this._colorSpace="DeviceCMYK";else{if(1!==X.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==X.length||"DeviceCMYK"===this._colorSpace&&4!==X.length||"DeviceGray"===this._colorSpace&&1!==X.length)throw new Error("All gradient stops must use the same color space");return V=Math.max(0,Math.min(1,V)),this.stops.push([T,X,V]),this}},{key:"setTransform",value:function(T,X,V,uA,mA,tt){return this.transform=[T,X,V,uA,mA,tt],this}},{key:"embed",value:function(T){var X,V=this.stops.length;if(0!==V){this.embedded=!0,this.matrix=T;var uA=this.stops[V-1];uA[0]<1&&this.stops.push([1,uA[1],uA[2]]);for(var mA=[],tt=[],rt=[],ut=0;ut>16,T>>8&255,255&T]}else wn[H]&&(H=wn[H]);return Array.isArray(H)?(3===H.length?H=H.map(function(X){return X/255}):4===H.length&&(H=H.map(function(X){return X/100})),H):null},_setColor:function(H,T){return H instanceof An?(H.apply(T),!0):Array.isArray(H)&&H[0]instanceof Qe?(H[0].apply(T,H[1]),!0):this._setColorCore(H,T)},_setColorCore:function(H,T){if(!(H=this._normalizeColor(H)))return!1;var X=T?"SCN":"scn",V=this._getColorSpace(H);return this._setColorSpace(V,T),H=H.join(" "),this.addContent("".concat(H," ").concat(X)),!0},_setColorSpace:function(H,T){var X=T?"CS":"cs";return this.addContent("/".concat(H," ").concat(X))},_getColorSpace:function(H){return 4===H.length?"DeviceCMYK":"DeviceRGB"},fillColor:function(H,T){return this._setColor(H,!1)&&this.fillOpacity(T),this._fillColor=[H,T],this},strokeColor:function(H,T){return this._setColor(H,!0)&&this.strokeOpacity(T),this},opacity:function(H){return this._doOpacity(H,H),this},fillOpacity:function(H){return this._doOpacity(H,null),this},strokeOpacity:function(H){return this._doOpacity(null,H),this},_doOpacity:function(H,T){var X,V;if(null!=H||null!=T){null!=H&&(H=Math.max(0,Math.min(1,H))),null!=T&&(T=Math.max(0,Math.min(1,T)));var uA="".concat(H,"_").concat(T);if(this._opacityRegistry[uA]){var mA=z(this._opacityRegistry[uA],2);X=mA[0],V=mA[1]}else{X={Type:"ExtGState"},null!=H&&(X.ca=H),null!=T&&(X.CA=T),(X=this.ref(X)).end();var tt=++this._opacityCount;V="Gs".concat(tt),this._opacityRegistry[uA]=[X,V]}return this.page.ext_gstates[V]=X,this.addContent("/".concat(V," gs"))}},linearGradient:function(H,T,X,V){return new Te(this,H,T,X,V)},radialGradient:function(H,T,X,V,uA,mA){return new Fe(this,H,T,X,V,uA,mA)},pattern:function(H,T,X,V){return new Qe(this,H,T,X,V)}},wn={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]};kt=zt=Wt=ae=mn=dn=0;var Tn={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},xn={M:function(H,T){return Wt=ae=null,mn=kt=T[0],dn=zt=T[1],H.moveTo(kt,zt)},m:function(H,T){return Wt=ae=null,mn=kt+=T[0],dn=zt+=T[1],H.moveTo(kt,zt)},C:function(H,T){return kt=T[4],zt=T[5],Wt=T[2],ae=T[3],H.bezierCurveTo.apply(H,F(T))},c:function(H,T){return H.bezierCurveTo(T[0]+kt,T[1]+zt,T[2]+kt,T[3]+zt,T[4]+kt,T[5]+zt),Wt=kt+T[2],ae=zt+T[3],kt+=T[4],zt+=T[5]},S:function(H,T){return null===Wt&&(Wt=kt,ae=zt),H.bezierCurveTo(kt-(Wt-kt),zt-(ae-zt),T[0],T[1],T[2],T[3]),Wt=T[0],ae=T[1],kt=T[2],zt=T[3]},s:function(H,T){return null===Wt&&(Wt=kt,ae=zt),H.bezierCurveTo(kt-(Wt-kt),zt-(ae-zt),kt+T[0],zt+T[1],kt+T[2],zt+T[3]),Wt=kt+T[0],ae=zt+T[1],kt+=T[2],zt+=T[3]},Q:function(H,T){return Wt=T[0],ae=T[1],H.quadraticCurveTo(T[0],T[1],kt=T[2],zt=T[3])},q:function(H,T){return H.quadraticCurveTo(T[0]+kt,T[1]+zt,T[2]+kt,T[3]+zt),Wt=kt+T[0],ae=zt+T[1],kt+=T[2],zt+=T[3]},T:function(H,T){return null===Wt?(Wt=kt,ae=zt):(Wt=kt-(Wt-kt),ae=zt-(ae-zt)),H.quadraticCurveTo(Wt,ae,T[0],T[1]),Wt=kt-(Wt-kt),ae=zt-(ae-zt),kt=T[0],zt=T[1]},t:function(H,T){return null===Wt?(Wt=kt,ae=zt):(Wt=kt-(Wt-kt),ae=zt-(ae-zt)),H.quadraticCurveTo(Wt,ae,kt+T[0],zt+T[1]),kt+=T[0],zt+=T[1]},A:function(H,T){return ZA(H,kt,zt,T),kt=T[5],zt=T[6]},a:function(H,T){return T[5]+=kt,T[6]+=zt,ZA(H,kt,zt,T),kt=T[5],zt=T[6]},L:function(H,T){return Wt=ae=null,H.lineTo(kt=T[0],zt=T[1])},l:function(H,T){return Wt=ae=null,H.lineTo(kt+=T[0],zt+=T[1])},H:function(H,T){return Wt=ae=null,H.lineTo(kt=T[0],zt)},h:function(H,T){return Wt=ae=null,H.lineTo(kt+=T[0],zt)},V:function(H,T){return Wt=ae=null,H.lineTo(kt,zt=T[0])},v:function(H,T){return Wt=ae=null,H.lineTo(kt,zt+=T[0])},Z:function(H){return H.closePath(),kt=mn,zt=dn},z:function(H){return H.closePath(),kt=mn,zt=dn}},ZA=function(H,T,X,V){var Vt,uA=z(V,7),Ot=YA(SA(uA[5],uA[6],uA[0],uA[1],uA[3],uA[4],uA[2],T,X));try{for(Ot.s();!(Vt=Ot.n()).done;){var Be=it.apply(void 0,F(Vt.value));H.bezierCurveTo.apply(H,F(Be))}}catch(Ye){Ot.e(Ye)}finally{Ot.f()}},SA=function(H,T,X,V,uA,mA,tt,rt,ut){var Ct=tt*(Math.PI/180),Mt=Math.sin(Ct),Dt=Math.cos(Ct);X=Math.abs(X),V=Math.abs(V);var Ft=(Wt=Dt*(rt-H)*.5+Mt*(ut-T)*.5)*Wt/(X*X)+(ae=Dt*(ut-T)*.5-Mt*(rt-H)*.5)*ae/(V*V);Ft>1&&(X*=Ft=Math.sqrt(Ft),V*=Ft);var Ot=Dt/X,Vt=Mt/X,Ae=-Mt/V,Be=Dt/V,Ye=Ot*rt+Vt*ut,Ze=Ae*rt+Be*ut,me=Ot*H+Vt*T,Ve=Ae*H+Be*T,We=1/((me-Ye)*(me-Ye)+(Ve-Ze)*(Ve-Ze))-.25;We<0&&(We=0);var En=Math.sqrt(We);mA===uA&&(En=-En);var vn=.5*(Ye+me)-En*(Ve-Ze),Xn=.5*(Ze+Ve)+En*(me-Ye),On=Math.atan2(Ze-Xn,Ye-vn),Jn=Math.atan2(Ve-Xn,me-vn)-On;Jn<0&&1===mA?Jn+=2*Math.PI:Jn>0&&0===mA&&(Jn-=2*Math.PI);for(var ni=Math.ceil(Math.abs(Jn/(.5*Math.PI+.001))),Zn=[],qn=0;qn0&&(V[V.length]=+uA),X[X.length]={cmd:T,args:V},V=[],uA="",mA=!1),T=Ct;else if([" ",","].includes(Ct)||"-"===Ct&&uA.length>0&&"e"!==uA[uA.length-1]||"."===Ct&&mA){if(0===uA.length)continue;V.length===tt?(X[X.length]={cmd:T,args:V},V=[+uA],"M"===T&&(T="L"),"m"===T&&(T="l")):V[V.length]=+uA,mA="."===Ct,uA=["-","."].includes(Ct)?Ct:""}else uA+=Ct,"."===Ct&&(mA=!0)}}catch(Mt){rt.e(Mt)}finally{rt.f()}return uA.length>0&&(V.length===tt?(X[X.length]={cmd:T,args:V},V=[+uA],"M"===T&&(T="L"),"m"===T&&(T="l")):V[V.length]=+uA),X[X.length]={cmd:T,args:V},X}(X);!function(H,T){kt=zt=Wt=ae=mn=dn=0;for(var X=0;X1&&void 0!==arguments[1]?arguments[1]:{},X=H;if(Array.isArray(H)||(H=[H,T.space||H]),!H.every(function(uA){return Number.isFinite(uA)&&uA>0}))throw new Error("dash(".concat(JSON.stringify(X),", ").concat(JSON.stringify(T),") invalid, lengths must be numeric and greater than zero"));return H=H.map(TA).join(" "),this.addContent("[".concat(H,"] ").concat(TA(T.phase||0)," d"))},undash:function(){return this.addContent("[] 0 d")},moveTo:function(H,T){return this.addContent("".concat(TA(H)," ").concat(TA(T)," m"))},lineTo:function(H,T){return this.addContent("".concat(TA(H)," ").concat(TA(T)," l"))},bezierCurveTo:function(H,T,X,V,uA,mA){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," ").concat(TA(uA)," ").concat(TA(mA)," c"))},quadraticCurveTo:function(H,T,X,V){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," v"))},rect:function(H,T,X,V){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," re"))},roundedRect:function(H,T,X,V,uA){null==uA&&(uA=0);var mA=(uA=Math.min(uA,.5*X,.5*V))*(1-UA);return this.moveTo(H+uA,T),this.lineTo(H+X-uA,T),this.bezierCurveTo(H+X-mA,T,H+X,T+mA,H+X,T+uA),this.lineTo(H+X,T+V-uA),this.bezierCurveTo(H+X,T+V-mA,H+X-mA,T+V,H+X-uA,T+V),this.lineTo(H+uA,T+V),this.bezierCurveTo(H+mA,T+V,H,T+V-mA,H,T+V-uA),this.lineTo(H,T+uA),this.bezierCurveTo(H,T+mA,H+mA,T,H+uA,T),this.closePath()},ellipse:function(H,T,X,V){null==V&&(V=X);var uA=X*UA,mA=V*UA,tt=(H-=X)+2*X,rt=(T-=V)+2*V,ut=H+X,Ct=T+V;return this.moveTo(H,Ct),this.bezierCurveTo(H,Ct-mA,ut-uA,T,ut,T),this.bezierCurveTo(ut+uA,T,tt,Ct-mA,tt,Ct),this.bezierCurveTo(tt,Ct+mA,ut+uA,rt,ut,rt),this.bezierCurveTo(ut-uA,rt,H,Ct+mA,H,Ct),this.closePath()},circle:function(H,T,X){return this.ellipse(H,T,X)},arc:function(H,T,X,V,uA,mA){null==mA&&(mA=!1);var tt=2*Math.PI,rt=.5*Math.PI,ut=uA-V;Math.abs(ut)>tt?ut=tt:0!==ut&&mA!==ut<0&&(ut=(mA?-1:1)*tt+ut);var Mt=Math.ceil(Math.abs(ut)/rt),Dt=ut/Mt,Ft=Dt/rt*UA*X,Ot=V,Vt=-Math.sin(Ot)*Ft,Ae=Math.cos(Ot)*Ft,Be=H+Math.cos(Ot)*X,Ye=T+Math.sin(Ot)*X;this.moveTo(Be,Ye);for(var Ze=0;Ze1&&void 0!==arguments[1]?arguments[1]:{},V=H*Math.PI/180,uA=Math.cos(V),mA=Math.sin(V),tt=X=0;if(null!=T.origin){var rt=z(T.origin,2),Ct=(tt=rt[0])*mA+(X=rt[1])*uA;tt-=tt*uA-X*mA,X-=Ct}return this.transform(uA,mA,-mA,uA,tt,X)},scale:function(H,T){var V,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==T&&(T=H),"object"==typeof T&&(X=T,T=H);var uA=V=0;if(null!=X.origin){var mA=z(X.origin,2);uA=mA[0],V=mA[1],uA-=H*uA,V-=T*V}return this.transform(H,0,0,T,uA,V)}},et={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},LA=".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+/),at=function(){function dA(H){C(this,dA),this.contents=H,this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(),this.charWidths=new Array(256);for(var T=0;T<=255;T++)this.charWidths[T]=this.glyphWidths[LA[T]];this.bbox=this.attributes.FontBBox.split(/\s+/).map(function(X){return+X}),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)}return h(dA,null,[{key:"open",value:function(T){return new dA(E.readFileSync(T,"utf8"))}}]),h(dA,[{key:"parse",value:function(){var V,T="",X=YA(this.contents.split("\n"));try{for(X.s();!(V=X.n()).done;){var mA,tt,uA=V.value;if(mA=uA.match(/^Start(\w+)/))T=mA[1];else if(mA=uA.match(/^End(\w+)/))T="";else switch(T){case"FontMetrics":var rt=(mA=uA.match(/(^\w+)\s+(.*)/))[1],ut=mA[2];(tt=this.attributes[rt])?(Array.isArray(tt)||(tt=this.attributes[rt]=[tt]),tt.push(ut)):this.attributes[rt]=ut;break;case"CharMetrics":if(!/^CH?\s/.test(uA))continue;var Ct=uA.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[Ct]=+uA.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(mA=uA.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[mA[1]+"\0"+mA[2]]=parseInt(mA[3]))}}}catch(Mt){X.e(Mt)}finally{X.f()}}},{key:"encodeText",value:function(T){for(var X=[],V=0,uA=T.length;V>8,rt=0;this.font.post.isFixedPitch&&(rt|=1),1<=tt&&tt<=7&&(rt|=2),rt|=4,10===tt&&(rt|=8),this.font.head.macStyle.italic&&(rt|=64);var Ct=[1,2,3,4,5,6].map(function(Be){return String.fromCharCode((V.id.charCodeAt(Be)||73)+17)}).join("")+"+"+this.font.postscriptName,Mt=this.font.bbox,Dt=this.document.ref({Type:"FontDescriptor",FontName:Ct,Flags:rt,FontBBox:[Mt.minX*this.scale,Mt.minY*this.scale,Mt.maxX*this.scale,Mt.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(uA?Dt.data.FontFile3=mA:Dt.data.FontFile2=mA,this.document.subset){var Ft=a.from("FFFFFFFFC0","hex"),Ot=this.document.ref();Ot.write(Ft),Ot.end(),Dt.data.CIDSet=Ot}Dt.end();var Vt={Type:"Font",Subtype:"CIDFontType0",BaseFont:Ct,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:Dt,W:[0,this.widths]};uA||(Vt.Subtype="CIDFontType2",Vt.CIDToGIDMap="Identity");var Ae=this.document.ref(Vt);return Ae.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:Ct,Encoding:"Identity-H",DescendantFonts:[Ae],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}},{key:"toUnicodeCmap",value:function(){var tt,V=this.document.ref(),uA=[],mA=YA(this.unicode);try{for(mA.s();!(tt=mA.n()).done;){var Mt,ut=[],Ct=YA(tt.value);try{for(Ct.s();!(Mt=Ct.n()).done;){var Dt=Mt.value;Dt>65535&&(ut.push(St((Dt-=65536)>>>10&1023|55296)),Dt=56320|1023&Dt),ut.push(St(Dt))}}catch(Ft){Ct.e(Ft)}finally{Ct.f()}uA.push("<".concat(ut.join(" "),">"))}}catch(Ft){mA.e(Ft)}finally{mA.f()}return V.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<0000> <".concat(St(uA.length-1),"> [").concat(uA.join(" "),"]\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend")),V}}]),T}(XA),Xt=function(){function dA(){C(this,dA)}return h(dA,null,[{key:"open",value:function(T,X,V,uA){var mA;if("string"==typeof X){if(xt.isStandardFont(X))return new xt(T,X,uA);X=E.readFileSync(X)}if(a.isBuffer(X)?mA=f.default.create(X,V):X instanceof Uint8Array?mA=f.default.create(a.from(X),V):X instanceof ArrayBuffer&&(mA=f.default.create(a.from(new Uint8Array(X)),V)),null==mA)throw new Error("Not a supported font format or standard PDF font.");return new jt(T,mA,uA)}}]),dA}(),ne={initFonts:function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Helvetica";this._fontFamilies={},this._fontCount=0,this._fontSize=12,this._font=null,this._registeredFonts={},H&&this.font(H)},font:function(H,T,X){var V,uA;if("number"==typeof T&&(X=T,T=null),"string"==typeof H&&this._registeredFonts[H]){V=H;var mA=this._registeredFonts[H];H=mA.src,T=mA.family}else"string"!=typeof(V=T||H)&&(V=null);if(null!=X&&this.fontSize(X),uA=this._fontFamilies[V])return this._font=uA,this;var tt="F".concat(++this._fontCount);return this._font=Xt.open(this,H,T,tt),(uA=this._fontFamilies[this._font.name])?(this._font=uA,this):(V&&(this._fontFamilies[V]=this._font),this._font.name&&(this._fontFamilies[this._font.name]=this._font),this)},fontSize:function(H){return this._fontSize=H,this},currentLineHeight:function(H){return null==H&&(H=!1),this._font.lineHeight(this._fontSize,H)},registerFont:function(H,T,X){return this._registeredFonts[H]={src:T,family:X},this}},Et=function(dA){p(T,dA);var H=S(T);function T(X,V){var uA;return C(this,T),(uA=H.call(this)).document=X,uA.indent=V.indent||0,uA.characterSpacing=V.characterSpacing||0,uA.wordSpacing=0===V.wordSpacing,uA.columns=V.columns||1,uA.columnGap=null!=V.columnGap?V.columnGap:18,uA.lineWidth=(V.width-uA.columnGap*(uA.columns-1))/uA.columns,uA.spaceLeft=uA.lineWidth,uA.startX=uA.document.x,uA.startY=uA.document.y,uA.column=1,uA.ellipsis=V.ellipsis,uA.continuedX=0,uA.features=V.features,null!=V.height?(uA.height=V.height,uA.maxY=uA.startY+V.height):uA.maxY=uA.document.page.maxY(),uA.on("firstLine",function(mA){var tt=uA.continuedX||uA.indent;return uA.document.x+=tt,uA.lineWidth-=tt,uA.once("line",function(){if(uA.document.x-=tt,uA.lineWidth+=tt,mA.continued&&!uA.continuedX&&(uA.continuedX=uA.indent),!mA.continued)return uA.continuedX=0})}),uA.on("lastLine",function(mA){var tt=mA.align;return"justify"===tt&&(mA.align="left"),uA.lastLine=!0,uA.once("line",function(){return uA.document.y+=mA.paragraphGap||0,mA.align=tt,uA.lastLine=!1})}),uA}return h(T,[{key:"wordWidth",value:function(V){return this.document.widthOfString(V,this)+this.characterSpacing+this.wordSpacing}},{key:"eachWord",value:function(V,uA){for(var mA,tt=new u.default(V),rt=null,ut=Object.create(null);mA=tt.nextBreak();){var Ct,Mt=V.slice(rt?.position||0,mA.position),Dt=null!=ut[Mt]?ut[Mt]:ut[Mt]=this.wordWidth(Mt);if(Dt>this.lineWidth+this.continuedX)for(var Ft=rt,Ot={};Mt.length;){var Vt,Ae;Dt>this.spaceLeft?(Vt=Math.ceil(this.spaceLeft/(Dt/Mt.length)),Ae=(Dt=this.wordWidth(Mt.slice(0,Vt)))<=this.spaceLeft&&Vtthis.spaceLeft&&Vt>0;Be||Ae;)Be?Be=(Dt=this.wordWidth(Mt.slice(0,--Vt)))>this.spaceLeft&&Vt>0:(Be=(Dt=this.wordWidth(Mt.slice(0,++Vt)))>this.spaceLeft&&Vt>0,Ae=Dt<=this.spaceLeft&&Vtthis.maxY||tt>this.maxY)&&this.nextSection();var rt="",ut=0,Ct=0,Mt=0,Dt=this.document.y,Ft=function(){return uA.textWidth=ut+mA.wordSpacing*(Ct-1),uA.wordCount=Ct,uA.lineWidth=mA.lineWidth,Dt=mA.document.y,mA.emit("line",rt,uA,mA),Mt++};return this.emit("sectionStart",uA,this),this.eachWord(V,function(Ot,Vt,Ae,Be){if((null==Be||Be.required)&&(mA.emit("firstLine",uA,mA),mA.spaceLeft=mA.lineWidth),Vt<=mA.spaceLeft&&(rt+=Ot,ut+=Vt,Ct++),Ae.required||Vt>mA.spaceLeft){var Ye=mA.document.currentLineHeight(!0);if(null!=mA.height&&mA.ellipsis&&mA.document.y+2*Ye>mA.maxY&&mA.column>=mA.columns){for(!0===mA.ellipsis&&(mA.ellipsis="\u2026"),rt=rt.replace(/\s+$/,""),ut=mA.wordWidth(rt+mA.ellipsis);rt&&ut>mA.lineWidth;)rt=rt.slice(0,-1).replace(/\s+$/,""),ut=mA.wordWidth(rt+mA.ellipsis);ut<=mA.lineWidth&&(rt+=mA.ellipsis),ut=mA.wordWidth(rt)}return Ae.required&&(Vt>mA.spaceLeft&&(Ft(),rt=Ot,ut=Vt,Ct=1),mA.emit("lastLine",uA,mA)),Ft(),mA.document.y+Ye>mA.maxY&&!mA.nextSection()?(Ct=0,rt="",!1):Ae.required?(mA.spaceLeft=mA.lineWidth,rt="",ut=0,Ct=0):(mA.spaceLeft=mA.lineWidth-Vt,rt=Ot,ut=Vt,Ct=1)}return mA.spaceLeft-=Vt}),Ct>0&&(this.emit("lastLine",uA,this),Ft()),this.emit("sectionEnd",uA,this),!0===uA.continued?(Mt>1&&(this.continuedX=0),this.continuedX+=uA.textWidth||0,this.document.y=Dt):this.document.x=this.startX}},{key:"nextSection",value:function(V){if(this.emit("sectionEnd",V,this),++this.column>this.columns){if(null!=this.height)return!1;var uA;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&&(uA=this.document).fillColor.apply(uA,F(this.document._fillColor)),this.emit("pageBreak",V,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",V,this);return this.emit("sectionStart",V,this),!0}}]),T}(w.EventEmitter),Rt=xA.number,Zt={initText:function(){return this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap:function(H){return this._lineGap=H,this},moveDown:function(H){return null==H&&(H=1),this.y+=this.currentLineHeight(!0)*H+this._lineGap,this},moveUp:function(H){return null==H&&(H=1),this.y-=this.currentLineHeight(!0)*H+this._lineGap,this},_text:function(H,T,X,V,uA){var mA=this;V=this._initOptions(T,X,V),H=null==H?"":"".concat(H),V.wordSpacing&&(H=H.replace(/\s{2,}/g," "));var tt=function(){V.structParent&&V.structParent.add(mA.struct(V.structType||"P",[mA.markStructureContent(V.structType||"P")]))};if(V.width){var rt=this._wrapper;rt||((rt=new Et(this,V)).on("line",uA),rt.on("firstLine",tt)),this._wrapper=V.continued?rt:null,this._textOptions=V.continued?V:null,rt.wrap(H,V)}else{var Ct,ut=YA(H.split("\n"));try{for(ut.s();!(Ct=ut.n()).done;){var Mt=Ct.value;tt(),uA(Mt,V)}}catch(Dt){ut.e(Dt)}finally{ut.f()}}return this},text:function(H,T,X,V){return this._text(H,T,X,V,this._line)},widthOfString:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this._font.widthOfString(H,this._fontSize,T.features)+(T.characterSpacing||0)*(H.length-1)},heightOfString:function(H,T){var X=this,V=this.x,uA=this.y;(T=this._initOptions(T)).height=1/0;var mA=T.lineGap||this._lineGap||0;this._text(H,this.x,this.y,T,function(){return X.y+=X.currentLineHeight(!0)+mA});var tt=this.y-uA;return this.x=V,this.y=uA,tt},list:function(H,T,X,V,uA){var mA=this,tt=(V=this._initOptions(T,X,V)).listType||"bullet",rt=Math.round(this._font.ascender/1e3*this._fontSize),ut=rt/2,Ct=V.bulletRadius||rt/3,Mt=V.textIndent||("bullet"===tt?5*Ct:2*rt),Dt=V.bulletIndent||("bullet"===tt?8*Ct:2*rt),Ft=1,Ot=[],Vt=[],Ae=[];!function me(Ve){for(var hn=1,We=0;We0&&void 0!==arguments[0]?arguments[0]:{},T=arguments.length>1?arguments[1]:void 0,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof H&&(X=H,H=null);var V=Object.assign({},X);if(this._textOptions)for(var uA in this._textOptions)"continued"!==uA&&void 0===V[uA]&&(V[uA]=this._textOptions[uA]);return null!=H&&(this.x=H),null!=T&&(this.y=T),!1!==V.lineBreak&&(null==V.width&&(V.width=this.page.width-this.x-this.page.margins.right),V.width=Math.max(V.width,0)),V.columns||(V.columns=0),null==V.columnGap&&(V.columnGap=18),V},_line:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=arguments.length>2?arguments[2]:void 0;this._fragment(H,this.x,this.y,T);var V=T.lineGap||this._lineGap||0;return X?this.y+=this.currentLineHeight(!0)+V:this.x+=this.widthOfString(H)},_fragment:function(H,T,X,V){var mA,tt,rt,ut,Ct,Mt,uA=this;if(0!==(H="".concat(H).replace(/\n/g,"")).length){var Ft=V.wordSpacing||0,Ot=V.characterSpacing||0;if(V.width)switch(V.align||"left"){case"right":Ct=this.widthOfString(H.replace(/\s+$/,""),V),T+=V.lineWidth-Ct;break;case"center":T+=V.lineWidth/2-V.textWidth/2;break;case"justify":Mt=H.trim().split(/\s+/),Ct=this.widthOfString(H.replace(/\s+/g,""),V);var Vt=this.widthOfString(" ")+Ot;Ft=Math.max(0,(V.lineWidth-Ct)/Math.max(1,Mt.length-1)-Vt)}if("number"==typeof V.baseline)mA=-V.baseline;else{switch(V.baseline){case"svg-middle":mA=.5*this._font.xHeight;break;case"middle":case"svg-central":mA=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":mA=this._font.descender;break;case"alphabetic":mA=0;break;case"mathematical":mA=.5*this._font.ascender;break;case"hanging":mA=.8*this._font.ascender;break;default:mA=this._font.ascender}mA=mA/1e3*this._fontSize}var Ve,Ae=V.textWidth+Ft*(V.wordCount-1)+Ot*(H.length-1);if(null!=V.link&&this.link(T,X,Ae,this.currentLineHeight(),V.link),null!=V.goTo&&this.goTo(T,X,Ae,this.currentLineHeight(),V.goTo),null!=V.destination&&this.addNamedDestination(V.destination,"XYZ",T,X,null),V.underline){this.save(),V.stroke||this.strokeColor.apply(this,F(this._fillColor||[]));var Be=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Be);var Ye=X+this.currentLineHeight()-Be;this.moveTo(T,Ye),this.lineTo(T+Ae,Ye),this.stroke(),this.restore()}if(V.strike){this.save(),V.stroke||this.strokeColor.apply(this,F(this._fillColor||[]));var Ze=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Ze);var me=X+this.currentLineHeight()/2;this.moveTo(T,me),this.lineTo(T+Ae,me),this.stroke(),this.restore()}this.save(),V.oblique&&(Ve="number"==typeof V.oblique?-Math.tan(V.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,T,X),this.transform(1,0,Ve,1,-Ve*mA,0),this.transform(1,0,0,1,-T,-X)),this.transform(1,0,0,-1,0,this.page.height),X=this.page.height-X-mA,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 ".concat(Rt(T)," ").concat(Rt(X)," Tm")),this.addContent("/".concat(this._font.id," ").concat(Rt(this._fontSize)," Tf"));var hn=V.fill&&V.stroke?2:V.stroke?1:0;if(hn&&this.addContent("".concat(hn," Tr")),Ot&&this.addContent("".concat(Rt(Ot)," Tc")),Ft){Mt=H.trim().split(/\s+/),Ft+=this.widthOfString(" ")+Ot,Ft*=1e3/this._fontSize,tt=[],ut=[];var En,We=YA(Mt);try{for(We.s();!(En=We.n()).done;){var On=z(this._font.encode(En.value,V.features),2),Jn=On[1];tt=tt.concat(On[0]),ut=ut.concat(Jn);var ni={},Zn=ut[ut.length-1];for(var qn in Zn)ni[qn]=Zn[qn];ni.xAdvance+=Ft,ut[ut.length-1]=ni}}catch(Gi){We.e(Gi)}finally{We.f()}}else{var Ti=z(this._font.encode(H,V.features),2);tt=Ti[0],ut=Ti[1]}var Ui=this._fontSize/1e3,Fi=[],Li=0,Pi=!1,ir=function(ii){if(Li ").concat(Rt(-Tr)))}return Li=ii},zi=function(ii){if(ir(ii),Fi.length>0)return uA.addContent("[".concat(Fi.join(" "),"] TJ")),Fi.length=0};for(rt=0;rt3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof T&&(V=T,T=null),T=null!=(Ct=T??V.x)?Ct:this.x,X=null!=(Mt=X??V.y)?Mt:this.y,"string"==typeof H&&(rt=this._imageRegistry[H]),rt||(rt=H.width&&H.height?H:this.openImage(H)),rt.obj||rt.embed(this),null==this.page.xobjects[rt.label]&&(this.page.xobjects[rt.label]=rt.obj);var Dt=V.width||rt.width,Ft=V.height||rt.height;if(V.width&&!V.height){var Ot=Dt/rt.width;Dt=rt.width*Ot,Ft=rt.height*Ot}else if(V.height&&!V.width){var Vt=Ft/rt.height;Dt=rt.width*Vt,Ft=rt.height*Vt}else if(V.scale)Dt=rt.width*V.scale,Ft=rt.height*V.scale;else if(V.fit){var Ae=z(V.fit,2);(ut=rt.width/rt.height)>(tt=Ae[0])/(uA=Ae[1])?(Dt=tt,Ft=tt/ut):(Ft=uA,Dt=uA*ut)}else if(V.cover){var Be=z(V.cover,2);(ut=rt.width/rt.height)>(tt=Be[0])/(uA=Be[1])?(Ft=uA,Dt=uA*ut):(Dt=tt,Ft=tt/ut)}return(V.fit||V.cover)&&("center"===V.align?T=T+tt/2-Dt/2:"right"===V.align&&(T=T+tt-Dt),"center"===V.valign?X=X+uA/2-Ft/2:"bottom"===V.valign&&(X=X+uA-Ft)),null!=V.link&&this.link(T,X,Dt,Ft,V.link),null!=V.goTo&&this.goTo(T,X,Dt,Ft,V.goTo),null!=V.destination&&this.addNamedDestination(V.destination,"XYZ",T,X,null),this.y===X&&(this.y+=Ft),this.save(),this.transform(Dt,0,0,-Ft,T,X+Ft),this.addContent("/".concat(rt.label," Do")),this.restore(),this},openImage:function(H){var T;return"string"==typeof H&&(T=this._imageRegistry[H]),T||(T=se.open(H,"I".concat(++this._imageCount)),"string"==typeof H&&(this._imageRegistry[H]=T)),T}},Oe={annotate:function(H,T,X,V,uA){for(var mA in uA.Type="Annot",uA.Rect=this._convertRect(H,T,X,V),uA.Border=[0,0,0],"Link"===uA.Subtype&&typeof uA.F>"u"&&(uA.F=4),"Link"!==uA.Subtype&&null==uA.C&&(uA.C=this._normalizeColor(uA.color||[0,0,0])),delete uA.color,"string"==typeof uA.Dest&&(uA.Dest=new String(uA.Dest)),uA){var tt=uA[mA];uA[mA[0].toUpperCase()+mA.slice(1)]=tt}var rt=this.ref(uA);return this.page.annotations.push(rt),rt.end(),this},note:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="Text",mA.Contents=new String(uA),mA.Name="Comment",null==mA.color&&(mA.color=[243,223,92]),this.annotate(H,T,X,V,mA)},goTo:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="Link",mA.A=this.ref({S:"GoTo",D:new String(uA)}),mA.A.end(),this.annotate(H,T,X,V,mA)},link:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(mA.Subtype="Link","number"==typeof uA){var tt=this._root.data.Pages.data;if(!(uA>=0&&uA4&&void 0!==arguments[4]?arguments[4]:{},tt=z(this._convertRect(H,T,X,V),4),rt=tt[0],ut=tt[1],Ct=tt[2],Mt=tt[3];return uA.QuadPoints=[rt,Mt,Ct,Mt,rt,ut,Ct,ut],uA.Contents=new String,this.annotate(H,T,X,V,uA)},highlight:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Highlight",null==uA.color&&(uA.color=[241,238,148]),this._markup(H,T,X,V,uA)},underline:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Underline",this._markup(H,T,X,V,uA)},strike:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="StrikeOut",this._markup(H,T,X,V,uA)},lineAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Line",uA.Contents=new String,uA.L=[H,this.page.height-T,X,this.page.height-V],this.annotate(H,T,X,V,uA)},rectAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Square",uA.Contents=new String,this.annotate(H,T,X,V,uA)},ellipseAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Circle",uA.Contents=new String,this.annotate(H,T,X,V,uA)},textAnnotation:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="FreeText",mA.Contents=new String(uA),mA.DA=new String,this.annotate(H,T,X,V,mA)},fileAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},tt=this.file(uA.src,Object.assign({hidden:!0},uA));return mA.Subtype="FileAttachment",mA.FS=tt,mA.Contents?mA.Contents=new String(mA.Contents):tt.data.Desc&&(mA.Contents=tt.data.Desc),this.annotate(H,T,X,V,mA)},_convertRect:function(H,T,X,V){var uA=T;T+=V;var mA=H+X,tt=z(this._ctm,6),rt=tt[0],ut=tt[1],Ct=tt[2],Mt=tt[3],Dt=tt[4],Ft=tt[5];return[H=rt*H+Ct*T+Dt,T=ut*H+Mt*T+Ft,mA=rt*mA+Ct*uA+Dt,uA=ut*mA+Mt*uA+Ft]}},ge=function(){function dA(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};C(this,dA),this.document=H,this.options=uA,this.outlineData={},null!==V&&(this.outlineData.Dest=[V.dictionary,"Fit"]),null!==T&&(this.outlineData.Parent=T),null!==X&&(this.outlineData.Title=new String(X)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}return h(dA,[{key:"addItem",value:function(T){var V=new dA(this.document,this.dictionary,T,this.document.page,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{expanded:!1});return this.children.push(V),V}},{key:"endOutline",value:function(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);var X=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=X.dictionary;for(var V=0,uA=this.children.length;V0&&(mA.outlineData.Prev=this.children[V-1].dictionary),V0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}},Ne=function(){function dA(H,T){C(this,dA),this.refs=[{pageRef:H,mcid:T}]}return h(dA,[{key:"push",value:function(T){var X=this;T.refs.forEach(function(V){return X.refs.push(V)})}}]),dA}(),qe=function(){function dA(H,T){var X=this,V=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},uA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;C(this,dA),this.document=H,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=H.ref({S:T});var mA=this.dictionary.data;(Array.isArray(V)||this._isValidChild(V))&&(uA=V,V={}),typeof V.title<"u"&&(mA.T=new String(V.title)),typeof V.lang<"u"&&(mA.Lang=new String(V.lang)),typeof V.alt<"u"&&(mA.Alt=new String(V.alt)),typeof V.expanded<"u"&&(mA.E=new String(V.expanded)),typeof V.actual<"u"&&(mA.ActualText=new String(V.actual)),this._children=[],uA&&(Array.isArray(uA)||(uA=[uA]),uA.forEach(function(tt){return X.add(tt)}),this.end())}return h(dA,[{key:"add",value:function(T){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(T))throw new Error("Invalid structure element child");return T instanceof dA&&(T.setParent(this.dictionary),this._attached&&T.setAttached()),T instanceof Ne&&this._addContentToParentTree(T),"function"==typeof T&&this._attached&&(T=this._contentForClosure(T)),this._children.push(T),this}},{key:"_addContentToParentTree",value:function(T){var X=this;T.refs.forEach(function(V){var uA=V.pageRef,mA=V.mcid;X.document.getStructParentTree().get(uA.data.StructParents)[mA]=X.dictionary})}},{key:"setParent",value:function(T){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=T,this._flush()}},{key:"setAttached",value:function(){var T=this;this._attached||(this._children.forEach(function(X,V){X instanceof dA&&X.setAttached(),"function"==typeof X&&(T._children[V]=T._contentForClosure(X))}),this._attached=!0,this._flush())}},{key:"end",value:function(){this._ended||(this._children.filter(function(T){return T instanceof dA}).forEach(function(T){return T.end()}),this._ended=!0,this._flush())}},{key:"_isValidChild",value:function(T){return T instanceof dA||T instanceof Ne||"function"==typeof T}},{key:"_contentForClosure",value:function(T){var X=this.document.markStructureContent(this.dictionary.data.S);return T(),this.document.endMarkedContent(),this._addContentToParentTree(X),X}},{key:"_isFlushable",value:function(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(function(T){return"function"!=typeof T&&(!(T instanceof dA)||T._isFlushable())})}},{key:"_flush",value:function(){var T=this;this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(function(X){return T._flushChild(X)}),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}},{key:"_flushChild",value:function(T){var X=this;T instanceof dA&&this.dictionary.data.K.push(T.dictionary),T instanceof Ne&&T.refs.forEach(function(V){var uA=V.pageRef,mA=V.mcid;X.dictionary.data.Pg||(X.dictionary.data.Pg=uA),X.dictionary.data.K.push(X.dictionary.data.Pg===uA?mA:{Type:"MCR",Pg:uA,MCID:mA})})}}]),dA}(),Dn=function(dA){p(T,dA);var H=S(T);function T(){return C(this,T),H.apply(this,arguments)}return h(T,[{key:"_compareKeys",value:function(V,uA){return parseInt(V)-parseInt(uA)}},{key:"_keysName",value:function(){return"Nums"}},{key:"_dataForKey",value:function(V){return parseInt(V)}}]),T}(J),tn={initMarkings:function(H){this.structChildren=[],H.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===H||T&&T.mcid){var X=0;for(this.page.markings.forEach(function(uA){(X||uA.structContent||"Artifact"===uA.tag)&&X++});X--;)this.endMarkedContent()}if(!T)return this.page.markings.push({tag:H}),this.addContent("/".concat(H," BMC")),this;this.page.markings.push({tag:H,options:T});var V={};return typeof T.mcid<"u"&&(V.MCID=T.mcid),"Artifact"===H&&("string"==typeof T.type&&(V.Type=T.type),Array.isArray(T.bbox)&&(V.BBox=[T.bbox[0],this.page.height-T.bbox[3],T.bbox[2],this.page.height-T.bbox[1]]),Array.isArray(T.attached)&&T.attached.every(function(uA){return"string"==typeof uA})&&(V.Attached=T.attached)),"Span"===H&&(T.lang&&(V.Lang=new String(T.lang)),T.alt&&(V.Alt=new String(T.alt)),T.expanded&&(V.E=new String(T.expanded)),T.actual&&(V.ActualText=new String(T.actual))),this.addContent("/".concat(H," ").concat(xA.convert(V)," BDC")),this},markStructureContent:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=this.getStructParentTree().get(this.page.structParentTreeKey),V=X.length;X.push(null),this.markContent(H,R(R({},T),{},{mcid:V}));var uA=new Ne(this.page.dictionary,V);return this.page.markings.slice(-1)[0].structContent=uA,uA},endMarkedContent:function(){return this.page.markings.pop(),this.addContent("EMC"),this},struct:function(H){return new qe(this,H,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},arguments.length>2&&void 0!==arguments[2]?arguments[2]:null)},addStructure:function(H){var T=this.getStructTreeRoot();return H.setParent(T),H.setAttached(),this.structChildren.push(H),T.data.K||(T.data.K=[]),T.data.K.push(H.dictionary),this},initPageMarkings:function(H){var T=this;H.forEach(function(X){if(X.structContent){var V=X.structContent,uA=T.markStructureContent(X.tag,X.options);V.push(uA),T.page.markings.slice(-1)[0].structContent=V}else T.markContent(X.tag,X.options)})},endPageMarkings:function(H){var T=H.markings;return T.forEach(function(){return H.write("EMC")}),H.markings=[],T},getMarkInfoDictionary:function(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},getStructTreeRoot:function(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new Dn,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree:function(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey:function(){this.getMarkInfoDictionary();var H=this.getStructTreeRoot(),T=H.data.ParentTreeNextKey++;return H.data.ParentTree.add(T,[]),T},endMarkings:function(){var H=this._root.data.StructTreeRoot;H&&(H.end(),this.structChildren.forEach(function(T){return T.end()})),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}},Qn={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},Yn={left:0,center:1,right:2},en={value:"V",defaultValue:"DV"},gn={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},on_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},on_percent={nDec:0,sepComma:!1},Mi={initForm:function(){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();var H={Fields:[],NeedAppearances:!0,DA:new String("/".concat(this._font.id," 0 Tf 0 g")),DR:{Font:{}}};H.DR.Font[this._font.id]=this._font.ref();var T=this.ref(H);return this._root.data.AcroForm=T,this},endAcroForm:function(){var H=this;if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");var T=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(function(X){T[X]=H._acroform.fonts[X]}),this._root.data.AcroForm.data.Fields.forEach(function(X){H._endChild(X)}),this._root.data.AcroForm.end()}return this},_endChild:function(H){var T=this;return Array.isArray(H.data.Kids)&&(H.data.Kids.forEach(function(X){T._endChild(X)}),H.end()),this},formField:function(H){var X=this._fieldDict(H,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),V=this.ref(X);return this._addToParent(V),V},formAnnotation:function(H,T,X,V,uA,mA){var rt=this._fieldDict(H,T,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return rt.Subtype="Widget",void 0===rt.F&&(rt.F=4),this.annotate(X,V,uA,mA,rt),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText:function(H,T,X,V,uA){return this.formAnnotation(H,"text",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton:function(H,T,X,V,uA){return this.formAnnotation(H,"pushButton",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo:function(H,T,X,V,uA){return this.formAnnotation(H,"combo",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList:function(H,T,X,V,uA){return this.formAnnotation(H,"list",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton:function(H,T,X,V,uA){return this.formAnnotation(H,"radioButton",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox:function(H,T,X,V,uA){return this.formAnnotation(H,"checkbox",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent:function(H){var T=H.data.Parent;return T?(T.data.Kids||(T.data.Kids=[]),T.data.Kids.push(H)):this._root.data.AcroForm.data.Fields.push(H),this},_fieldDict:function(H,T){var X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(!this._acroform)throw new Error("Call document.initForms() method before adding form elements to document");var V=Object.assign({},X);return null!==T&&(V=this._resolveType(T,X)),V=this._resolveFlags(V),V=this._resolveJustify(V),V=this._resolveFont(V),V=this._resolveStrings(V),V=this._resolveColors(V),(V=this._resolveFormat(V)).T=new String(H),V.parent&&(V.Parent=V.parent,delete V.parent),V},_resolveType:function(H,T){if("text"===H)T.FT="Tx";else if("pushButton"===H)T.FT="Btn",T.pushButton=!0;else if("radioButton"===H)T.FT="Btn",T.radioButton=!0;else if("checkbox"===H)T.FT="Btn";else if("combo"===H)T.FT="Ch",T.combo=!0;else{if("list"!==H)throw new Error("Invalid form annotation type '".concat(H,"'"));T.FT="Ch"}return T},_resolveFormat:function(H){var T=H.format;if(T&&T.type){var X,V,uA="";if(void 0!==gn[T.type])X="AFSpecial_Keystroke",V="AFSpecial_Format",uA=gn[T.type];else{var mA=T.type.charAt(0).toUpperCase()+T.type.slice(1);if(X="AF".concat(mA,"_Keystroke"),V="AF".concat(mA,"_Format"),"date"===T.type)X+="Ex",uA=String(T.param);else if("time"===T.type)uA=String(T.param);else if("number"===T.type){var tt=Object.assign({},on_number,T);uA=String([String(tt.nDec),tt.sepComma?"0":"1",'"'+tt.negStyle+'"',"null",'"'+tt.currency+'"',String(tt.currencyPrepend)].join(","))}else if("percent"===T.type){var rt=Object.assign({},on_percent,T);uA=String([String(rt.nDec),rt.sepComma?"0":"1"].join(","))}}H.AA=H.AA?H.AA:{},H.AA.K={S:"JavaScript",JS:new String("".concat(X,"(").concat(uA,");"))},H.AA.F={S:"JavaScript",JS:new String("".concat(V,"(").concat(uA,");"))}}return delete H.format,H},_resolveColors:function(H){var T=this._normalizeColor(H.backgroundColor);return T&&(H.MK||(H.MK={}),H.MK.BG=T),(T=this._normalizeColor(H.borderColor))&&(H.MK||(H.MK={}),H.MK.BC=T),delete H.backgroundColor,delete H.borderColor,H},_resolveFlags:function(H){var T=0;return Object.keys(H).forEach(function(X){Qn[X]&&(T|=Qn[X],delete H[X])}),0!==T&&(H.Ff=H.Ff?H.Ff:0,H.Ff|=T),H},_resolveJustify:function(H){var T=0;return void 0!==H.align&&("number"==typeof Yn[H.align]&&(T=Yn[H.align]),delete H.align),0!==T&&(H.Q=T),H},_resolveFont:function(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:{}};var T=H.fontSize||0;H.DR.Font[this._font.id]=this._font.ref(),H.DA=new String("/".concat(this._font.id," ").concat(T," Tf 0 g"))}return H},_resolveStrings:function(H){var T=[];function X(V){if(Array.isArray(V))for(var uA=0;uA1&&void 0!==arguments[1]?arguments[1]:{};T.name=T.name||H;var V,X={Type:"EmbeddedFile",Params:{}};if(!H)throw new Error("No src specified");if(a.isBuffer(H))V=H;else if(H instanceof ArrayBuffer)V=a.from(new Uint8Array(H));else{var uA;if(uA=/^data:(.*);base64,(.*)$/.exec(H))uA[1]&&(X.Subtype=uA[1].replace("/","#2F")),V=a.from(uA[2],"base64");else{if(!(V=E.readFileSync(H)))throw new Error("Could not read contents of file at filepath ".concat(H));var mA=E.statSync(H),rt=mA.ctime;X.Params.CreationDate=mA.birthtime,X.Params.ModDate=rt}}T.creationDate instanceof Date&&(X.Params.CreationDate=T.creationDate),T.modifiedDate instanceof Date&&(X.Params.ModDate=T.modifiedDate),T.type&&(X.Subtype=T.type.replace("/","#2F"));var Ct,ut=g.default.MD5(g.default.lib.WordArray.create(new Uint8Array(V)));X.Params.CheckSum=new String(ut),X.Params.Size=V.byteLength,this._fileRegistry||(this._fileRegistry={});var Mt=this._fileRegistry[T.name];Mt&&function Kn(dA,H){return dA.Subtype===H.Subtype&&dA.Params.CheckSum.toString()===H.Params.CheckSum.toString()&&dA.Params.Size===H.Params.Size&&dA.Params.CreationDate===H.Params.CreationDate&&dA.Params.ModDate===H.Params.ModDate}(X,Mt)?Ct=Mt.ref:((Ct=this.ref(X)).end(V),this._fileRegistry[T.name]=R(R({},X),{},{ref:Ct}));var Dt={Type:"Filespec",F:new String(T.name),EF:{F:Ct},UF:new String(T.name)};T.description&&(Dt.Desc=new String(T.description));var Ft=this.ref(Dt);return Ft.end(),T.hidden||this.addNamedEmbeddedFile(T.name,Ft),Ft}};var Di={initPDFA:function(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:function(){this._addPdfaMetadata();var H="".concat(B,"/data/sRGB_IEC61966_2_1.icc"),T="".concat(B,"/../color_profiles/sRGB_IEC61966_2_1.icc");this._addColorOutputIntent(E.existsSync(H)?H:T)},_addColorOutputIntent:function(H){var T=E.readFileSync(H),X=this.ref({Length:T.length,N:3});X.write(T),X.end();var V=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:X});V.end(),this._root.data.OutputIntents=[V]},_getPdfaid:function(){return'\n \n '.concat(this.subset,"\n ").concat(this.subset_conformance,"\n \n ")},_addPdfaMetadata:function(){this.appendXML(this._getPdfaid())}},vi={_importSubset:function(H){Object.assign(this,H)},initSubset:function(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(Di),this.initPDFA(H.subset)}}},jn=function(){function dA(){C(this,dA),this._metadata='\n \n \n \n '}return h(dA,[{key:"_closeTags",value:function(){this._metadata=this._metadata.concat('\n \n \n \n ')}},{key:"append",value:function(T){var X=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this._metadata=this._metadata.concat(T),X&&(this._metadata=this._metadata.concat("\n"))}},{key:"getXML",value:function(){return this._metadata}},{key:"getLength",value:function(){return this._metadata.length}},{key:"end",value:function(){this._closeTags(),this._metadata=this._metadata.trim()}}]),dA}(),Ci={initMetadata:function(){this.metadata=new jn},appendXML:function(H){this.metadata.append(H,!(arguments.length>1&&void 0!==arguments[1])||arguments[1])},_addInfo:function(){this.appendXML('\n \n '.concat(this.info.CreationDate.toISOString().split(".")[0]+"Z","\n ").concat(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 '.concat(this.info.Title,"\n \n \n ")),this.info.Author&&this.appendXML("\n \n \n ".concat(this.info.Author,"\n \n \n ")),this.info.Subject&&this.appendXML('\n \n \n '.concat(this.info.Subject,"\n \n \n ")),this.appendXML("\n \n ")),this.appendXML('\n \n '.concat(this.info.Creator,""),!1),this.info.Keywords&&this.appendXML("\n ".concat(this.info.Keywords,""),!1),this.appendXML("\n \n ")},endMetadata:function(){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(a.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}},ei=function(dA){p(T,dA);var H=S(T);function T(){var X,V=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch(C(this,T),(X=H.call(this,V)).options=V,V.pdfVersion){case"1.4":X.version=1.4;break;case"1.5":X.version=1.5;break;case"1.6":X.version=1.6;break;case"1.7":case"1.7ext3":X.version=1.7;break;default:X.version=1.3}X.compress=null==X.options.compress||X.options.compress,X._pageBuffer=[],X._pageBufferStart=0,X._offsets=[],X._waiting=0,X._ended=!1,X._offset=0;var uA=X.ref({Type:"Pages",Count:0,Kids:[]}),mA=X.ref({Dests:new AA});if(X._root=X.ref({Type:"Catalog",Pages:uA,Names:mA}),X.options.lang&&(X._root.data.Lang=new String(X.options.lang)),X.page=null,X.initMetadata(),X.initColor(),X.initVector(),X.initFonts(V.font),X.initText(),X.initImages(),X.initOutline(),X.initMarkings(V),X.initSubset(V),X.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},X.options.info)for(var tt in X.options.info)X.info[tt]=X.options.info[tt];return X.options.displayTitle&&(X._root.data.ViewerPreferences=X.ref({DisplayDocTitle:!0})),X._id=Z.generateFileID(X.info),X._security=Z.create(Y(X),V),X._write("%PDF-".concat(X.version)),X._write("%\xff\xff\xff\xff"),!1!==X.options.autoFirstPage&&X.addPage(),X}return h(T,[{key:"addPage",value:function(V){null==V&&(V=this.options),this.options.bufferPages||this.flushPages(),this.page=new rA(this,V),this._pageBuffer.push(this.page);var uA=this._root.data.Pages.data;return uA.Kids.push(this.page.dictionary),uA.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}},{key:"continueOnNewPage",value:function(V){var uA=this.endPageMarkings(this.page);return this.addPage(V),this.initPageMarkings(uA),this}},{key:"bufferedPageRange",value:function(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}},{key:"switchToPage",value:function(V){var uA;if(!(uA=this._pageBuffer[V-this._pageBufferStart]))throw new Error("switchToPage(".concat(V,") out of bounds, current buffer covers pages ").concat(this._pageBufferStart," to ").concat(this._pageBufferStart+this._pageBuffer.length-1));return this.page=uA}},{key:"flushPages",value:function(){var V=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=V.length;var mA,uA=YA(V);try{for(uA.s();!(mA=uA.n()).done;){var tt=mA.value;this.endPageMarkings(tt),tt.end()}}catch(rt){uA.e(rt)}finally{uA.f()}}},{key:"addNamedDestination",value:function(V){for(var uA=arguments.length,mA=new Array(uA>1?uA-1:0),tt=1;tt"u"&&(a.pdfMake=B),b.exports=B},80182:function(b,A,n){"use strict";var B=n(9964);function a(DA){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(NA){return typeof NA}:function(NA){return NA&&"function"==typeof Symbol&&NA.constructor===Symbol&&NA!==Symbol.prototype?"symbol":typeof NA})(DA)}function s(DA,NA){for(var zA=0;zA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA"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 p(J,BA){return(p=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(eA,EA){return eA.__proto__=EA,eA})(J,BA)}function m(J){return(m=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(aA){return aA.__proto__||Object.getPrototypeOf(aA)})(J)}function y(J){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(BA){return typeof BA}:function(BA){return BA&&"function"==typeof Symbol&&BA.constructor===Symbol&&BA!==Symbol.prototype?"symbol":typeof BA})(J)}var Y=n(7187).inspect,S=n(35403).codes.ERR_INVALID_ARG_TYPE;function z(J,BA,aA){return(void 0===aA||aA>J.length)&&(aA=J.length),J.substring(aA-BA.length,aA)===BA}var $="",gA="",_="",fA="",iA={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 IA(J){var BA=Object.keys(J),aA=Object.create(Object.getPrototypeOf(J));return BA.forEach(function(eA){aA[eA]=J[eA]}),Object.defineProperty(aA,"message",{value:J.message}),aA}function FA(J){return Y(J,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function YA(J,BA,aA){var eA="",EA="",xA=0,OA="",W=!1,L=FA(J),rA=L.split("\n"),AA=FA(BA).split("\n"),QA=0,yA="";if("strictEqual"===aA&&"object"===y(J)&&"object"===y(BA)&&null!==J&&null!==BA&&(aA="strictEqualObject"),1===rA.length&&1===AA.length&&rA[0]!==AA[0]){var cA=rA[0].length+AA[0].length;if(cA<=10){if(!("object"===y(J)&&null!==J||"object"===y(BA)&&null!==BA||0===J&&0===BA))return"".concat(iA[aA],"\n\n")+"".concat(rA[0]," !== ").concat(AA[0],"\n")}else if("strictEqualObject"!==aA&&cA<(B.stderr&&B.stderr.isTTY?B.stderr.columns:80)){for(;rA[0][QA]===AA[0][QA];)QA++;QA>2&&(yA="\n ".concat(function F(J,BA){if(BA=Math.floor(BA),0==J.length||0==BA)return"";var aA=J.length*BA;for(BA=Math.floor(Math.log(BA)/Math.log(2));BA;)J+=J,BA--;return J+J.substring(0,aA-J.length)}(" ",QA),"^"),QA=0)}}for(var DA=rA[rA.length-1],NA=AA[AA.length-1];DA===NA&&(QA++<2?OA="\n ".concat(DA).concat(OA):eA=DA,rA.pop(),AA.pop(),0!==rA.length&&0!==AA.length);)DA=rA[rA.length-1],NA=AA[AA.length-1];var zA=Math.max(rA.length,AA.length);if(0===zA){var pA=L.split("\n");if(pA.length>30)for(pA[26]="".concat($,"...").concat(fA);pA.length>27;)pA.pop();return"".concat(iA.notIdentical,"\n\n").concat(pA.join("\n"),"\n")}QA>3&&(OA="\n".concat($,"...").concat(fA).concat(OA),W=!0),""!==eA&&(OA="\n ".concat(eA).concat(OA),eA="");var JA=0,ft=iA[aA]+"\n".concat(gA,"+ actual").concat(fA," ").concat(_,"- expected").concat(fA),wt=" ".concat($,"...").concat(fA," Lines skipped");for(QA=0;QA1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(AA[QA-2]),JA++),EA+="\n ".concat(AA[QA-1]),JA++),xA=QA,eA+="\n".concat(_,"-").concat(fA," ").concat(AA[QA]),JA++;else if(AA.length1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(rA[QA-2]),JA++),EA+="\n ".concat(rA[QA-1]),JA++),xA=QA,EA+="\n".concat(gA,"+").concat(fA," ").concat(rA[QA]),JA++;else{var pt=AA[QA],Yt=rA[QA],VA=Yt!==pt&&(!z(Yt,",")||Yt.slice(0,-1)!==pt);VA&&z(pt,",")&&pt.slice(0,-1)===Yt&&(VA=!1,Yt+=","),VA?(gt>1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(rA[QA-2]),JA++),EA+="\n ".concat(rA[QA-1]),JA++),xA=QA,EA+="\n".concat(gA,"+").concat(fA," ").concat(Yt),eA+="\n".concat(_,"-").concat(fA," ").concat(pt),JA+=2):(EA+=eA,eA="",(1===gt||0===QA)&&(EA+="\n ".concat(Yt),JA++))}if(JA>20&&QA30)for(cA[26]="".concat($,"...").concat(fA);cA.length>27;)cA.pop();xA=aA.call(this,1===cA.length?"".concat(yA," ").concat(cA[0]):"".concat(yA,"\n\n").concat(cA.join("\n"),"\n"))}else{var CA=FA(rA),DA="",NA=iA[W];"notDeepEqual"===W||"notEqual"===W?(CA="".concat(iA[W],"\n\n").concat(CA)).length>1024&&(CA="".concat(CA.slice(0,1021),"...")):(DA="".concat(FA(AA)),CA.length>512&&(CA="".concat(CA.slice(0,509),"...")),DA.length>512&&(DA="".concat(DA.slice(0,509),"...")),"deepEqual"===W||"equal"===W?CA="".concat(NA,"\n\n").concat(CA,"\n\nshould equal\n\n"):DA=" ".concat(W," ").concat(DA)),xA=aA.call(this,"".concat(CA).concat(DA))}return Error.stackTraceLimit=QA,xA.generatedMessage=!OA,Object.defineProperty(e(xA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),xA.code="ERR_ASSERTION",xA.actual=rA,xA.expected=AA,xA.operator=W,Error.captureStackTrace&&Error.captureStackTrace(e(xA),L),xA.name="AssertionError",C(xA)}return function w(J,BA,aA){return BA&&f(J.prototype,BA),aA&&f(J,aA),Object.defineProperty(J,"prototype",{writable:!1}),J}(eA,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:BA,value:function(xA,OA){return Y(this,s(s({},OA),{},{customInspect:!1,depth:0}))}}]),eA}(h(Error),Y.custom);b.exports=HA},35403:function(b,A,n){"use strict";function B(Y){return(B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(v){return typeof v}:function(v){return v&&"function"==typeof Symbol&&v.constructor===Symbol&&v!==Symbol.prototype?"symbol":typeof v})(Y)}function a(Y,v){for(var S=0;S"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 F,z=e(Y);if(v){var $=e(this).constructor;F=Reflect.construct(z,arguments,$)}else F=z.apply(this,arguments);return function d(Y,v){if(v&&("object"===B(v)||"function"==typeof v))return v;if(void 0!==v)throw new TypeError("Derived constructors may only return object or undefined");return function E(Y){if(void 0===Y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return Y}(Y)}(this,F)}}function e(Y){return(e=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(S){return S.__proto__||Object.getPrototypeOf(S)})(Y)}var Q,I,h={};function R(Y,v,S){S||(S=Error),h[Y]=function($){!function w(Y,v){if("function"!=typeof v&&null!==v)throw new TypeError("Super expression must either be null or a function");Y.prototype=Object.create(v&&v.prototype,{constructor:{value:Y,writable:!0,configurable:!0}}),Object.defineProperty(Y,"prototype",{writable:!1}),v&&u(Y,v)}(_,$);var gA=r(_);function _(fA,iA,wA){var IA;return function f(Y,v){if(!(Y instanceof v))throw new TypeError("Cannot call a class as a function")}(this,_),(IA=gA.call(this,function z($,gA,_){return"string"==typeof v?v:v($,gA,_)}(fA,iA,wA))).code=Y,IA}return function s(Y,v,S){return v&&a(Y.prototype,v),S&&a(Y,S),Object.defineProperty(Y,"prototype",{writable:!1}),Y}(_)}(S)}function p(Y,v){if(Array.isArray(Y)){var S=Y.length;return Y=Y.map(function(z){return String(z)}),S>2?"one of ".concat(v," ").concat(Y.slice(0,S-1).join(", "),", or ")+Y[S-1]:2===S?"one of ".concat(v," ").concat(Y[0]," or ").concat(Y[1]):"of ".concat(v," ").concat(Y[0])}return"of ".concat(v," ").concat(String(Y))}R("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),R("ERR_INVALID_ARG_TYPE",function(Y,v,S){var z,F;if(void 0===Q&&(Q=n(80182)),Q("string"==typeof Y,"'name' must be a string"),"string"==typeof v&&function m(Y,v,S){return Y.substr(!S||S<0?0:+S,v.length)===v}(v,"not ")?(z="must not be",v=v.replace(/^not /,"")):z="must be",function y(Y,v,S){return(void 0===S||S>Y.length)&&(S=Y.length),Y.substring(S-v.length,S)===v}(Y," argument"))F="The ".concat(Y," ").concat(z," ").concat(p(v,"type"));else{var $=function x(Y,v,S){return"number"!=typeof S&&(S=0),!(S+v.length>Y.length)&&-1!==Y.indexOf(v,S)}(Y,".")?"property":"argument";F='The "'.concat(Y,'" ').concat($," ").concat(z," ").concat(p(v,"type"))}return F+". Received type ".concat(B(S))},TypeError),R("ERR_INVALID_ARG_VALUE",function(Y,v){var S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===I&&(I=n(7187));var z=I.inspect(v);return z.length>128&&(z="".concat(z.slice(0,128),"...")),"The argument '".concat(Y,"' ").concat(S,". Received ").concat(z)},TypeError,RangeError),R("ERR_INVALID_RETURN_VALUE",function(Y,v,S){var z;return z=S&&S.constructor&&S.constructor.name?"instance of ".concat(S.constructor.name):"type ".concat(B(S)),"Expected ".concat(Y,' to be returned from the "').concat(v,'"')+" function but got ".concat(z,".")},TypeError),R("ERR_MISSING_ARGS",function(){for(var Y=arguments.length,v=new Array(Y),S=0;S0,"At least one arg needs to be specified");var z="The ",F=v.length;switch(v=v.map(function($){return'"'.concat($,'"')}),F){case 1:z+="".concat(v[0]," argument");break;case 2:z+="".concat(v[0]," and ").concat(v[1]," arguments");break;default:z+=v.slice(0,F-1).join(", "),z+=", and ".concat(v[F-1]," arguments")}return"".concat(z," must be specified")},TypeError),b.exports.codes=h},86781:function(b,A,n){"use strict";function B(VA,_A){return function f(VA){if(Array.isArray(VA))return VA}(VA)||function g(VA,_A){var Qt=null==VA?null:typeof Symbol<"u"&&VA[Symbol.iterator]||VA["@@iterator"];if(null!=Qt){var ht,vt,Nt,vA,Bt=[],Z=!0,k=!1;try{if(Nt=(Qt=Qt.call(VA)).next,0===_A){if(Object(Qt)!==Qt)return;Z=!1}else for(;!(Z=(ht=Nt.call(Qt)).done)&&(Bt.push(ht.value),Bt.length!==_A);Z=!0);}catch(U){k=!0,vt=U}finally{try{if(!Z&&null!=Qt.return&&(vA=Qt.return(),Object(vA)!==vA))return}finally{if(k)throw vt}}return Bt}}(VA,_A)||function s(VA,_A){if(VA){if("string"==typeof VA)return o(VA,_A);var Qt=Object.prototype.toString.call(VA).slice(8,-1);if("Object"===Qt&&VA.constructor&&(Qt=VA.constructor.name),"Map"===Qt||"Set"===Qt)return Array.from(VA);if("Arguments"===Qt||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(Qt))return o(VA,_A)}}(VA,_A)||function a(){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 o(VA,_A){(null==_A||_A>VA.length)&&(_A=VA.length);for(var Qt=0,ht=new Array(_A);Qt<_A;Qt++)ht[Qt]=VA[Qt];return ht}function w(VA){return(w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(_A){return typeof _A}:function(_A){return _A&&"function"==typeof Symbol&&_A.constructor===Symbol&&_A!==Symbol.prototype?"symbol":typeof _A})(VA)}var u=void 0!==/a/g.flags,r=function(_A){var Qt=[];return _A.forEach(function(ht){return Qt.push(ht)}),Qt},d=function(_A){var Qt=[];return _A.forEach(function(ht,vt){return Qt.push([vt,ht])}),Qt},E=Object.is?Object.is:n(98527),C=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},e=Number.isNaN?Number.isNaN:n(7051);function h(VA){return VA.call.bind(VA)}var Q=h(Object.prototype.hasOwnProperty),I=h(Object.prototype.propertyIsEnumerable),R=h(Object.prototype.toString),p=n(7187).types,m=p.isAnyArrayBuffer,y=p.isArrayBufferView,x=p.isDate,Y=p.isMap,v=p.isRegExp,S=p.isSet,z=p.isNativeError,F=p.isBoxedPrimitive,$=p.isNumberObject,gA=p.isStringObject,_=p.isBooleanObject,fA=p.isBigIntObject,iA=p.isSymbolObject,wA=p.isFloat32Array,IA=p.isFloat64Array;function FA(VA){if(0===VA.length||VA.length>10)return!0;for(var _A=0;_A57)return!0}return 10===VA.length&&VA>=Math.pow(2,32)}function YA(VA){return Object.keys(VA).filter(FA).concat(C(VA).filter(Object.prototype.propertyIsEnumerable.bind(VA)))}function HA(VA,_A){if(VA===_A)return 0;for(var Qt=VA.length,ht=_A.length,vt=0,Nt=Math.min(Qt,ht);vt0?I-4:I;for(x=0;x>16&255,p[m++]=h>>8&255,p[m++]=255&h;return 2===R&&(h=B[e.charCodeAt(x)]<<2|B[e.charCodeAt(x+1)]>>4,p[m++]=255&h),1===R&&(h=B[e.charCodeAt(x)]<<10|B[e.charCodeAt(x+1)]<<4|B[e.charCodeAt(x+2)]>>2,p[m++]=h>>8&255,p[m++]=255&h),p},A.fromByteArray=function C(e){for(var h,Q=e.length,I=Q%3,R=[],p=16383,m=0,y=Q-I;my?y:m+p));return 1===I?R.push(n[(h=e[Q-1])>>2]+n[h<<4&63]+"=="):2===I&&R.push(n[(h=(e[Q-2]<<8)+e[Q-1])>>10]+n[h>>4&63]+n[h<<2&63]+"="),R.join("")};for(var n=[],B=[],a=typeof Uint8Array<"u"?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)n[o]=s[o],B[s.charCodeAt(o)]=o;function f(e){var h=e.length;if(h%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var Q=e.indexOf("=");return-1===Q&&(Q=h),[Q,Q===h?0:4-Q%4]}function d(e){return n[e>>18&63]+n[e>>12&63]+n[e>>6&63]+n[63&e]}function E(e,h,Q){for(var R=[],p=h;p0},s.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 o=this.buf_ptr_,g=this.input_.read(this.buf_,o,A);if(g<0)throw new Error("Unexpected end of input");if(g=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},s.prototype.readBits=function(o){32-this.bit_pos_>>this.bit_pos_&a[o];return this.bit_pos_+=o,g},b.exports=s},7043:function(b,A){A.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]),A.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},20980:function(b,A,n){var a=n(98197).z,s=n(98197).y,o=n(34097),g=n(80614),f=n(81561).z,w=n(81561).u,u=n(7043),r=n(42210),d=n(87984),E=8,C=16,e=256,h=704,Q=26,I=6,R=2,p=8,m=255,y=1080,x=18,Y=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),v=16,S=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]),F=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 $(rA){var AA;return 0===rA.readBits(1)?16:(AA=rA.readBits(3))>0?17+AA:(AA=rA.readBits(3))>0?8+AA:17}function gA(rA){if(rA.readBits(1)){var AA=rA.readBits(3);return 0===AA?1:rA.readBits(AA)+(1<1&&0===CA)throw new Error("Invalid size byte");AA.meta_block_length|=CA<<8*cA}}else for(cA=0;cA4&&0===DA)throw new Error("Invalid size nibble");AA.meta_block_length|=DA<<4*cA}return++AA.meta_block_length,!AA.input_end&&!AA.is_metadata&&(AA.is_uncompressed=rA.readBits(1)),AA}function iA(rA,AA,QA){var cA;return QA.fillBitWindow(),(cA=rA[AA+=QA.val_>>>QA.bit_pos_&m].bits-p)>0&&(QA.bit_pos_+=p,AA+=rA[AA].value,AA+=QA.val_>>>QA.bit_pos_&(1<>=1,++pA;for(NA=0;NA0;++NA){var Qt,VA=Y[NA],_A=0;yA.fillBitWindow(),yA.bit_pos_+=Yt[_A+=yA.val_>>>yA.bit_pos_&15].bits,wt[VA]=Qt=Yt[_A].value,0!==Qt&&(gt-=32>>Qt,++pt)}if(1!==pt&&0!==gt)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function wA(rA,AA,QA,yA){for(var cA=0,CA=E,DA=0,NA=0,zA=32768,pA=[],JA=0;JA<32;JA++)pA.push(new f(0,0));for(w(pA,0,5,rA,x);cA0;){var wt,ft=0;if(yA.readMoreInput(),yA.fillBitWindow(),yA.bit_pos_+=pA[ft+=yA.val_>>>yA.bit_pos_&31].bits,(wt=255&pA[ft].value)>wt);else{var pt,Yt,gt=wt-14,VA=0;if(wt===C&&(VA=CA),NA!==VA&&(DA=0,NA=VA),pt=DA,DA>0&&(DA-=2,DA<<=gt),cA+(Yt=(DA+=yA.readBits(gt)+3)-pt)>AA)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var _A=0;_A>>5]),this.htrees=new Uint32Array(AA)}function aA(rA,AA){var CA,DA,QA={num_htrees:null,context_map:null},cA=0;AA.readMoreInput();var NA=QA.num_htrees=gA(AA)+1,zA=QA.context_map=new Uint8Array(rA);if(NA<=1)return QA;for(AA.readBits(1)&&(cA=AA.readBits(4)+1),CA=[],DA=0;DA=rA)throw new Error("[DecodeContextMap] i >= context_map_size");zA[DA]=0,++DA}else zA[DA]=pA-cA,++DA}return AA.readBits(1)&&function J(rA,AA){var yA,QA=new Uint8Array(256);for(yA=0;yA<256;++yA)QA[yA]=yA;for(yA=0;yA=rA&&(JA-=rA),yA[QA]=JA,cA[NA+(1&CA[zA])]=JA,++CA[zA]}function EA(rA,AA,QA,yA,cA,CA){var pA,DA=cA+1,NA=QA&cA,zA=CA.pos_&o.IBUF_MASK;if(AA<8||CA.bit_pos_+(AA<<3)0;)CA.readMoreInput(),yA[NA++]=CA.readBits(8),NA===DA&&(rA.write(yA,DA),NA=0);else{if(CA.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;CA.bit_pos_<32;)yA[NA]=CA.val_>>>CA.bit_pos_,CA.bit_pos_+=8,++NA,--AA;if(zA+(pA=CA.bit_end_pos_-CA.bit_pos_>>3)>o.IBUF_MASK){for(var JA=o.IBUF_MASK+1-zA,ft=0;ft=DA)for(rA.write(yA,DA),NA-=DA,ft=0;ft=DA;){if(CA.input_.read(yA,NA,pA=DA-NA)AA.buffer.length){var ee=new Uint8Array(yA+vA);ee.set(AA.buffer),AA.buffer=ee}if(cA=Mn.input_end,Bt=Mn.is_uncompressed,Mn.is_metadata)for(xA(ht);vA>0;--vA)ht.readMoreInput(),ht.readBits(8);else if(0!==vA){if(Bt){ht.bit_pos_=ht.bit_pos_+7&-8,EA(AA,vA,yA,JA,pA,ht),yA+=vA;continue}for(QA=0;QA<3;++QA)U[QA]=gA(ht)+1,U[QA]>=2&&(IA(U[QA]+2,_A,QA*y,ht),IA(Q,Qt,QA*y,ht),Z[QA]=FA(Qt,QA*y,ht),q[QA]=1);for(ht.readMoreInput(),O=(1<<(GA=ht.readBits(2)))-1,qA=(At=v+(ht.readBits(4)<0;){var Fe,Qe,In,wn,kt,zt,Wt,ae,dn,Tn,Wn,ti;for(ht.readMoreInput(),0===Z[1]&&(eA(U[1],_A,1,k,hA,q,ht),Z[1]=FA(Qt,y,ht),yn=VA[1].htrees[k[1]]),--Z[1],(Qe=(Fe=iA(VA[1].codes,yn,ht))>>6)>=2?(Qe-=2,Wt=-1):Wt=0,wn=r.kCopyRangeLut[Qe]+(7&Fe),kt=r.kInsertLengthPrefixCode[In=r.kInsertRangeLut[Qe]+(Fe>>3&7)].offset+ht.readBits(r.kInsertLengthPrefixCode[In].nbits),zt=r.kCopyLengthPrefixCode[wn].offset+ht.readBits(r.kCopyLengthPrefixCode[wn].nbits),pt=JA[yA-1&pA],Yt=JA[yA-2&pA],dn=0;dn4?3:zt-2))]],ht))>=At&&(ti=(Wt-=At)&O,Wt=At+((xn=(2+(1&(Wt>>=GA))<<(Wn=1+(Wt>>1)))-4)+ht.readBits(Wn)<(NA=yA=g.minDictionaryWordLength&&zt<=g.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+yA+" distance: "+ae+" len: "+zt+" bytes left: "+vA);var xn=g.offsetsByLength[zt],ZA=ae-NA-1,SA=g.sizeBitsByLength[zt],TA=ZA>>SA;if(xn+=(ZA&(1<=ft){AA.write(JA,zA);for(var kA=0;kA0&&(wt[3>]=ae,++gt),zt>vA)throw new Error("Invalid backward reference. pos: "+yA+" distance: "+ae+" len: "+zt+" bytes left: "+vA);for(dn=0;dn>=1;return(g&w-1)+w}function s(g,f,w,u,r){do{g[f+(u-=w)]=new n(r.bits,r.value)}while(u>0)}function o(g,f,w){for(var u=1<0;--Y[C])s(g,f+h,Q,m,new n(255&C,65535&x[e++])),h=a(h,C);for(R=y-1,I=-1,C=w+1,Q=2;C<=B;++C,Q<<=1)for(;Y[C]>0;--Y[C])(h&R)!==I&&(f+=m,y+=m=1<<(p=o(Y,C,w)),g[d+(I=h&R)]=new n(p+w&255,f-d-I&65535)),s(g,f+(h>>w),Q,m,new n(C-w&255,65535&x[e++])),h=a(h,C);return y}},42210:function(b,A){function n(B,a){this.offset=B,this.nbits=a}A.kBlockLengthPrefixCode=[new n(1,2),new n(5,2),new n(9,2),new n(13,2),new n(17,3),new n(25,3),new n(33,3),new n(41,3),new n(49,4),new n(65,4),new n(81,4),new n(97,4),new n(113,5),new n(145,5),new n(177,5),new n(209,5),new n(241,6),new n(305,6),new n(369,7),new n(497,8),new n(753,9),new n(1265,10),new n(2289,11),new n(4337,12),new n(8433,13),new n(16625,24)],A.kInsertLengthPrefixCode=[new n(0,0),new n(1,0),new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,1),new n(8,1),new n(10,2),new n(14,2),new n(18,3),new n(26,3),new n(34,4),new n(50,4),new n(66,5),new n(98,5),new n(130,6),new n(194,7),new n(322,8),new n(578,9),new n(1090,10),new n(2114,12),new n(6210,14),new n(22594,24)],A.kCopyLengthPrefixCode=[new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,0),new n(7,0),new n(8,0),new n(9,0),new n(10,1),new n(12,1),new n(14,2),new n(18,2),new n(22,3),new n(30,3),new n(38,4),new n(54,4),new n(70,5),new n(102,5),new n(134,6),new n(198,7),new n(326,8),new n(582,9),new n(1094,10),new n(2118,24)],A.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],A.kCopyRangeLut=[0,8,0,8,16,0,16,8,16]},98197:function(b,A){function n(a){this.buffer=a,this.pos=0}function B(a){this.buffer=a,this.pos=0}n.prototype.read=function(a,s,o){this.pos+o>this.buffer.length&&(o=this.buffer.length-this.pos);for(var g=0;gthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(a.subarray(0,s),this.pos),this.pos+=s,s},A.y=B},87984:function(b,A,n){var B=n(80614),C=10,e=11;function v(F,$,gA){this.prefix=new Uint8Array(F.length),this.transform=$,this.suffix=new Uint8Array(gA.length);for(var _=0;_'),new v("",0,"\n"),new v("",3,""),new v("",0,"]"),new v("",0," for "),new v("",14,""),new v("",2,""),new v("",0," a "),new v("",0," that "),new v(" ",C,""),new v("",0,". "),new v(".",0,""),new v(" ",0,", "),new v("",15,""),new v("",0," with "),new v("",0,"'"),new v("",0," from "),new v("",0," by "),new v("",16,""),new v("",17,""),new v(" the ",0,""),new v("",4,""),new v("",0,". The "),new v("",e,""),new v("",0," on "),new v("",0," as "),new v("",0," is "),new v("",7,""),new v("",1,"ing "),new v("",0,"\n\t"),new v("",0,":"),new v(" ",0,". "),new v("",0,"ed "),new v("",20,""),new v("",18,""),new v("",6,""),new v("",0,"("),new v("",C,", "),new v("",8,""),new v("",0," at "),new v("",0,"ly "),new v(" the ",0," of "),new v("",5,""),new v("",9,""),new v(" ",C,", "),new v("",C,'"'),new v(".",0,"("),new v("",e," "),new v("",C,'">'),new v("",0,'="'),new v(" ",0,"."),new v(".com/",0,""),new v(" the ",0," of the "),new v("",C,"'"),new v("",0,". This "),new v("",0,","),new v(".",0," "),new v("",C,"("),new v("",C,"."),new v("",0," not "),new v(" ",0,'="'),new v("",0,"er "),new v(" ",e," "),new v("",0,"al "),new v(" ",e,""),new v("",0,"='"),new v("",e,'"'),new v("",C,". "),new v(" ",0,"("),new v("",0,"ful "),new v(" ",C,". "),new v("",0,"ive "),new v("",0,"less "),new v("",e,"'"),new v("",0,"est "),new v(" ",C,"."),new v("",e,'">'),new v(" ",0,"='"),new v("",C,","),new v("",0,"ize "),new v("",e,"."),new v("\xc2\xa0",0,""),new v(" ",0,","),new v("",C,'="'),new v("",e,'="'),new v("",0,"ous "),new v("",e,", "),new v("",C,"='"),new v(" ",C,","),new v(" ",e,'="'),new v(" ",e,", "),new v("",e,","),new v("",e,"("),new v("",e,". "),new v(" ",e,"."),new v("",e,"='"),new v(" ",e,". "),new v(" ",C,'="'),new v(" ",e,"='"),new v(" ",C,"='")];function z(F,$){return F[$]<192?(F[$]>=97&&F[$]<=122&&(F[$]^=32),1):F[$]<224?(F[$+1]^=32,2):(F[$+2]^=5,3)}A.kTransforms=S,A.kNumTransforms=S.length,A.transformDictionaryWord=function(F,$,gA,_,fA){var J,iA=S[fA].prefix,wA=S[fA].suffix,IA=S[fA].transform,FA=IA<12?0:IA-11,YA=0,HA=$;FA>_&&(FA=_);for(var BA=0;BA0;){var aA=z(F,J);J+=aA,_-=aA}for(var eA=0;eAA.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=C,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}E.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,s(this.init_done,"close before init"),s(this.mode<=A.UNZIP),this.mode===A.DEFLATE||this.mode===A.GZIP||this.mode===A.DEFLATERAW?g.deflateEnd(this.strm):(this.mode===A.INFLATE||this.mode===A.GUNZIP||this.mode===A.INFLATERAW||this.mode===A.UNZIP)&&f.inflateEnd(this.strm),this.mode=A.NONE,this.dictionary=null)},E.prototype.write=function(C,e,h,Q,I,R,p){return this._write(!0,C,e,h,Q,I,R,p)},E.prototype.writeSync=function(C,e,h,Q,I,R,p){return this._write(!1,C,e,h,Q,I,R,p)},E.prototype._write=function(C,e,h,Q,I,R,p,m){if(s.equal(arguments.length,8),s(this.init_done,"write before init"),s(this.mode!==A.NONE,"already finalized"),s.equal(!1,this.write_in_progress,"write already in progress"),s.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,s.equal(!1,void 0===e,"must provide flush value"),this.write_in_progress=!0,e!==A.Z_NO_FLUSH&&e!==A.Z_PARTIAL_FLUSH&&e!==A.Z_SYNC_FLUSH&&e!==A.Z_FULL_FLUSH&&e!==A.Z_FINISH&&e!==A.Z_BLOCK)throw new Error("Invalid flush value");if(null==h&&(h=B.alloc(0),I=0,Q=0),this.strm.avail_in=I,this.strm.input=h,this.strm.next_in=Q,this.strm.avail_out=m,this.strm.output=R,this.strm.next_out=p,this.flush=e,!C)return this._process(),this._checkError()?this._afterSync():void 0;var y=this;return a.nextTick(function(){y._process(),y._after()}),this},E.prototype._afterSync=function(){var C=this.strm.avail_out,e=this.strm.avail_in;return this.write_in_progress=!1,[e,C]},E.prototype._process=function(){var C=null;switch(this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=g.deflate(this.strm,this.flush);break;case A.UNZIP:switch(this.strm.avail_in>0&&(C=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===C)break;if(31!==this.strm.input[C]){this.mode=A.INFLATE;break}if(this.gzip_id_bytes_read=1,C++,1===this.strm.avail_in)break;case 1:if(null===C)break;139===this.strm.input[C]?(this.gzip_id_bytes_read=2,this.mode=A.GUNZIP):this.mode=A.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:for(this.err=f.inflate(this.strm,this.flush),this.err===A.Z_NEED_DICT&&this.dictionary&&(this.err=f.inflateSetDictionary(this.strm,this.dictionary),this.err===A.Z_OK?this.err=f.inflate(this.strm,this.flush):this.err===A.Z_DATA_ERROR&&(this.err=A.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===A.GUNZIP&&this.err===A.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=f.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},E.prototype._checkError=function(){switch(this.err){case A.Z_OK:case A.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===A.Z_FINISH)return this._error("unexpected end of file"),!1;break;case A.Z_STREAM_END:break;case A.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},E.prototype._after=function(){if(this._checkError()){var C=this.strm.avail_out,e=this.strm.avail_in;this.write_in_progress=!1,this.callback(e,C),this.pending_close&&this.close()}},E.prototype._error=function(C){this.strm.msg&&(C=this.strm.msg),this.onerror(C,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},E.prototype.init=function(C,e,h,Q,I){s(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),s(C>=8&&C<=15,"invalid windowBits"),s(e>=-1&&e<=9,"invalid compression level"),s(h>=1&&h<=9,"invalid memlevel"),s(Q===A.Z_FILTERED||Q===A.Z_HUFFMAN_ONLY||Q===A.Z_RLE||Q===A.Z_FIXED||Q===A.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(e,C,h,Q,I),this._setDictionary()},E.prototype.params=function(){throw new Error("deflateParams Not supported")},E.prototype.reset=function(){this._reset(),this._setDictionary()},E.prototype._init=function(C,e,h,Q,I){switch(this.level=C,this.windowBits=e,this.memLevel=h,this.strategy=Q,this.flush=A.Z_NO_FLUSH,this.err=A.Z_OK,(this.mode===A.GZIP||this.mode===A.GUNZIP)&&(this.windowBits+=16),this.mode===A.UNZIP&&(this.windowBits+=32),(this.mode===A.DEFLATERAW||this.mode===A.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new o,this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=g.deflateInit2(this.strm,this.level,A.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:case A.UNZIP:this.err=f.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==A.Z_OK&&this._error("Init error"),this.dictionary=I,this.write_in_progress=!1,this.init_done=!0},E.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:this.err=g.deflateSetDictionary(this.strm,this.dictionary)}this.err!==A.Z_OK&&this._error("Failed to set dictionary")}},E.prototype._reset=function(){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:case A.GZIP:this.err=g.deflateReset(this.strm);break;case A.INFLATE:case A.INFLATERAW:case A.GUNZIP:this.err=f.inflateReset(this.strm)}this.err!==A.Z_OK&&this._error("Failed to reset stream")},A.Zlib=E},6729:function(b,A,n){"use strict";var B=n(9964),a=n(50621).Buffer,s=n(9760).Transform,o=n(72908),g=n(7187),f=n(80182).ok,w=n(50621).kMaxLength,u="Cannot create final Buffer. It would be larger than 0x"+w.toString(16)+" bytes";o.Z_MIN_WINDOWBITS=8,o.Z_MAX_WINDOWBITS=15,o.Z_DEFAULT_WINDOWBITS=15,o.Z_MIN_CHUNK=64,o.Z_MAX_CHUNK=1/0,o.Z_DEFAULT_CHUNK=16384,o.Z_MIN_MEMLEVEL=1,o.Z_MAX_MEMLEVEL=9,o.Z_DEFAULT_MEMLEVEL=8,o.Z_MIN_LEVEL=-1,o.Z_MAX_LEVEL=9,o.Z_DEFAULT_LEVEL=o.Z_DEFAULT_COMPRESSION;for(var r=Object.keys(o),d=0;d=w?BA=new RangeError(u):J=a.concat(wA,IA),wA=[],_.close(),iA(BA,J)}_.on("error",function YA(J){_.removeListener("end",HA),_.removeListener("readable",FA),iA(J)}),_.on("end",HA),_.end(fA),FA()}function R(_,fA){if("string"==typeof fA&&(fA=a.from(fA)),!a.isBuffer(fA))throw new TypeError("Not a string or buffer");return _._processChunk(fA,_._finishFlushFlag)}function p(_){if(!(this instanceof p))return new p(_);F.call(this,_,o.DEFLATE)}function m(_){if(!(this instanceof m))return new m(_);F.call(this,_,o.INFLATE)}function y(_){if(!(this instanceof y))return new y(_);F.call(this,_,o.GZIP)}function x(_){if(!(this instanceof x))return new x(_);F.call(this,_,o.GUNZIP)}function Y(_){if(!(this instanceof Y))return new Y(_);F.call(this,_,o.DEFLATERAW)}function v(_){if(!(this instanceof v))return new v(_);F.call(this,_,o.INFLATERAW)}function S(_){if(!(this instanceof S))return new S(_);F.call(this,_,o.UNZIP)}function z(_){return _===o.Z_NO_FLUSH||_===o.Z_PARTIAL_FLUSH||_===o.Z_SYNC_FLUSH||_===o.Z_FULL_FLUSH||_===o.Z_FINISH||_===o.Z_BLOCK}function F(_,fA){var iA=this;if(this._opts=_=_||{},this._chunkSize=_.chunkSize||A.Z_DEFAULT_CHUNK,s.call(this,_),_.flush&&!z(_.flush))throw new Error("Invalid flush flag: "+_.flush);if(_.finishFlush&&!z(_.finishFlush))throw new Error("Invalid flush flag: "+_.finishFlush);if(this._flushFlag=_.flush||o.Z_NO_FLUSH,this._finishFlushFlag=typeof _.finishFlush<"u"?_.finishFlush:o.Z_FINISH,_.chunkSize&&(_.chunkSizeA.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+_.chunkSize);if(_.windowBits&&(_.windowBitsA.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+_.windowBits);if(_.level&&(_.levelA.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+_.level);if(_.memLevel&&(_.memLevelA.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+_.memLevel);if(_.strategy&&_.strategy!=A.Z_FILTERED&&_.strategy!=A.Z_HUFFMAN_ONLY&&_.strategy!=A.Z_RLE&&_.strategy!=A.Z_FIXED&&_.strategy!=A.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+_.strategy);if(_.dictionary&&!a.isBuffer(_.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new o.Zlib(fA);var wA=this;this._hadError=!1,this._handle.onerror=function(YA,HA){$(wA),wA._hadError=!0;var J=new Error(YA);J.errno=HA,J.code=A.codes[HA],wA.emit("error",J)};var IA=A.Z_DEFAULT_COMPRESSION;"number"==typeof _.level&&(IA=_.level);var FA=A.Z_DEFAULT_STRATEGY;"number"==typeof _.strategy&&(FA=_.strategy),this._handle.init(_.windowBits||A.Z_DEFAULT_WINDOWBITS,IA,_.memLevel||A.Z_DEFAULT_MEMLEVEL,FA,_.dictionary),this._buffer=a.allocUnsafe(this._chunkSize),this._offset=0,this._level=IA,this._strategy=FA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!iA._handle},configurable:!0,enumerable:!0})}function $(_,fA){fA&&B.nextTick(fA),_._handle&&(_._handle.close(),_._handle=null)}function gA(_){_.emit("close")}Object.defineProperty(A,"codes",{enumerable:!0,value:Object.freeze(C),writable:!1}),A.Deflate=p,A.Inflate=m,A.Gzip=y,A.Gunzip=x,A.DeflateRaw=Y,A.InflateRaw=v,A.Unzip=S,A.createDeflate=function(_){return new p(_)},A.createInflate=function(_){return new m(_)},A.createDeflateRaw=function(_){return new Y(_)},A.createInflateRaw=function(_){return new v(_)},A.createGzip=function(_){return new y(_)},A.createGunzip=function(_){return new x(_)},A.createUnzip=function(_){return new S(_)},A.deflate=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new p(fA),_,iA)},A.deflateSync=function(_,fA){return R(new p(fA),_)},A.gzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new y(fA),_,iA)},A.gzipSync=function(_,fA){return R(new y(fA),_)},A.deflateRaw=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new Y(fA),_,iA)},A.deflateRawSync=function(_,fA){return R(new Y(fA),_)},A.unzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new S(fA),_,iA)},A.unzipSync=function(_,fA){return R(new S(fA),_)},A.inflate=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new m(fA),_,iA)},A.inflateSync=function(_,fA){return R(new m(fA),_)},A.gunzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new x(fA),_,iA)},A.gunzipSync=function(_,fA){return R(new x(fA),_)},A.inflateRaw=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new v(fA),_,iA)},A.inflateRawSync=function(_,fA){return R(new v(fA),_)},g.inherits(F,s),F.prototype.params=function(_,fA,iA){if(_A.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+_);if(fA!=A.Z_FILTERED&&fA!=A.Z_HUFFMAN_ONLY&&fA!=A.Z_RLE&&fA!=A.Z_FIXED&&fA!=A.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+fA);if(this._level!==_||this._strategy!==fA){var wA=this;this.flush(o.Z_SYNC_FLUSH,function(){f(wA._handle,"zlib binding closed"),wA._handle.params(_,fA),wA._hadError||(wA._level=_,wA._strategy=fA,iA&&iA())})}else B.nextTick(iA)},F.prototype.reset=function(){return f(this._handle,"zlib binding closed"),this._handle.reset()},F.prototype._flush=function(_){this._transform(a.alloc(0),"",_)},F.prototype.flush=function(_,fA){var iA=this,wA=this._writableState;("function"==typeof _||void 0===_&&!fA)&&(fA=_,_=o.Z_FULL_FLUSH),wA.ended?fA&&B.nextTick(fA):wA.ending?fA&&this.once("end",fA):wA.needDrain?fA&&this.once("drain",function(){return iA.flush(_,fA)}):(this._flushFlag=_,this.write(a.alloc(0),"",fA))},F.prototype.close=function(_){$(this,_),B.nextTick(gA,this)},F.prototype._transform=function(_,fA,iA){var wA,IA=this._writableState,YA=(IA.ending||IA.ended)&&(!_||IA.length===_.length);return null===_||a.isBuffer(_)?this._handle?(YA?wA=this._finishFlushFlag:(wA=this._flushFlag,_.length>=IA.length&&(this._flushFlag=this._opts.flush||o.Z_NO_FLUSH)),void this._processChunk(_,wA,iA)):iA(new Error("zlib binding closed")):iA(new Error("invalid input"))},F.prototype._processChunk=function(_,fA,iA){var wA=_&&_.length,IA=this._chunkSize-this._offset,FA=0,YA=this,HA="function"==typeof iA;if(!HA){var aA,J=[],BA=0;this.on("error",function(W){aA=W}),f(this._handle,"zlib binding closed");do{var eA=this._handle.writeSync(fA,_,FA,wA,this._buffer,this._offset,IA)}while(!this._hadError&&OA(eA[0],eA[1]));if(this._hadError)throw aA;if(BA>=w)throw $(this),new RangeError(u);var EA=a.concat(J,BA);return $(this),EA}f(this._handle,"zlib binding closed");var xA=this._handle.write(fA,_,FA,wA,this._buffer,this._offset,IA);function OA(W,L){if(this&&(this.buffer=null,this.callback=null),!YA._hadError){var rA=IA-L;if(f(rA>=0,"have should not go down"),rA>0){var AA=YA._buffer.slice(YA._offset,YA._offset+rA);YA._offset+=rA,HA?YA.push(AA):(J.push(AA),BA+=AA.length)}if((0===L||YA._offset>=YA._chunkSize)&&(IA=YA._chunkSize,YA._offset=0,YA._buffer=a.allocUnsafe(YA._chunkSize)),0===L){if(FA+=wA-W,wA=W,!HA)return!0;var QA=YA._handle.write(fA,_,FA,wA,YA._buffer,YA._offset,YA._chunkSize);return QA.callback=OA,void(QA.buffer=_)}if(!HA)return!1;iA()}}xA.buffer=_,xA.callback=OA},g.inherits(p,F),g.inherits(m,F),g.inherits(y,F),g.inherits(x,F),g.inherits(Y,F),g.inherits(v,F),g.inherits(S,F)},67913:function(b,A,n){"use strict";var B=n(28651),a=n(26601),s=a(B("String.prototype.indexOf"));b.exports=function(g,f){var w=B(g,!!f);return"function"==typeof w&&s(g,".prototype.")>-1?a(w):w}},26601:function(b,A,n){"use strict";var B=n(5049),a=n(28651),s=n(86255),o=n(96785),g=a("%Function.prototype.apply%"),f=a("%Function.prototype.call%"),w=a("%Reflect.apply%",!0)||B.call(f,g),u=n(56649),r=a("%Math.max%");b.exports=function(C){if("function"!=typeof C)throw new o("a function is required");var e=w(B,f,arguments);return s(e,1+r(0,C.length-(arguments.length-1)),!0)};var d=function(){return w(B,g,arguments)};u?u(b.exports,"apply",{value:d}):b.exports.apply=d},41613:function(b,A,n){var B=n(50621).Buffer,a=function(){"use strict";function s(r,d,E,C){"object"==typeof d&&(E=d.depth,C=d.prototype,d=d.circular);var h=[],Q=[],I=typeof B<"u";return typeof d>"u"&&(d=!0),typeof E>"u"&&(E=1/0),function R(p,m){if(null===p)return null;if(0==m)return p;var y,x;if("object"!=typeof p)return p;if(s.__isArray(p))y=[];else if(s.__isRegExp(p))y=new RegExp(p.source,u(p)),p.lastIndex&&(y.lastIndex=p.lastIndex);else if(s.__isDate(p))y=new Date(p.getTime());else{if(I&&B.isBuffer(p))return y=B.allocUnsafe?B.allocUnsafe(p.length):new B(p.length),p.copy(y),y;typeof C>"u"?(x=Object.getPrototypeOf(p),y=Object.create(x)):(y=Object.create(C),x=C)}if(d){var Y=h.indexOf(p);if(-1!=Y)return Q[Y];h.push(p),Q.push(y)}for(var v in p){var S;x&&(S=Object.getOwnPropertyDescriptor(x,v)),(!S||null!=S.set)&&(y[v]=R(p[v],m-1))}return y}(r,E)}function o(r){return Object.prototype.toString.call(r)}function u(r){var d="";return r.global&&(d+="g"),r.ignoreCase&&(d+="i"),r.multiline&&(d+="m"),d}return s.clonePrototype=function(d){if(null===d)return null;var E=function(){};return E.prototype=d,new E},s.__objToStr=o,s.__isDate=function g(r){return"object"==typeof r&&"[object Date]"===o(r)},s.__isArray=function f(r){return"object"==typeof r&&"[object Array]"===o(r)},s.__isRegExp=function w(r){return"object"==typeof r&&"[object RegExp]"===o(r)},s.__getRegExpFlags=u,s}();b.exports&&(b.exports=a)},83043:function(b,A,n){n(59883);var B=n(11206);b.exports=B.Object.values},42075:function(b,A,n){n(94910),n(81755),n(14032),n(68067),n(77074),n(44455),n(58605),n(58281);var B=n(11206);b.exports=B.Promise},98168:function(b,A,n){var B=n(90780);n(84151),n(98443),n(49261),n(67858),b.exports=B},32631:function(b,A,n){var B=n(32010),a=n(94578),s=n(68664),o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not a function")}},69075:function(b,A,n){var B=n(32010),a=n(20884),s=n(68664),o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not a constructor")}},58659:function(b,A,n){var B=n(32010),a=n(94578),s=B.String,o=B.TypeError;b.exports=function(g){if("object"==typeof g||a(g))return g;throw o("Can't set "+s(g)+" as a prototype")}},71156:function(b,A,n){var B=n(38688),a=n(10819),s=n(95892),o=B("unscopables"),g=Array.prototype;null==g[o]&&s.f(g,o,{configurable:!0,value:a(null)}),b.exports=function(f){g[o][f]=!0}},36352:function(b,A,n){"use strict";var B=n(69510).charAt;b.exports=function(a,s,o){return s+(o?B(a,s).length:1)}},2868:function(b,A,n){var B=n(32010),a=n(70176),s=B.TypeError;b.exports=function(o,g){if(a(g,o))return o;throw s("Incorrect invocation")}},34984:function(b,A,n){var B=n(32010),a=n(24517),s=B.String,o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not an object")}},92642:function(b,A,n){"use strict";var B=n(43162),a=n(74841),s=n(45495),o=Math.min;b.exports=[].copyWithin||function(f,w){var u=B(this),r=s(u),d=a(f,r),E=a(w,r),C=arguments.length>2?arguments[2]:void 0,e=o((void 0===C?r:a(C,r))-E,r-d),h=1;for(E0;)E in u?u[d]=u[E]:delete u[d],d+=h,E+=h;return u}},72864:function(b,A,n){"use strict";var B=n(43162),a=n(74841),s=n(45495);b.exports=function(g){for(var f=B(this),w=s(f),u=arguments.length,r=a(u>1?arguments[1]:void 0,w),d=u>2?arguments[2]:void 0,E=void 0===d?w:a(d,w);E>r;)f[r++]=g;return f}},82938:function(b,A,n){"use strict";var B=n(91102).forEach,s=n(81007)("forEach");b.exports=s?[].forEach:function(g){return B(this,g,arguments.length>1?arguments[1]:void 0)}},34269:function(b){b.exports=function(A,n){for(var B=0,a=n.length,s=new A(a);a>B;)s[B]=n[B++];return s}},95717:function(b,A,n){"use strict";var B=n(32010),a=n(25567),s=n(2834),o=n(43162),g=n(97738),f=n(89564),w=n(20884),u=n(45495),r=n(38639),d=n(15892),E=n(13872),C=B.Array;b.exports=function(h){var Q=o(h),I=w(this),R=arguments.length,p=R>1?arguments[1]:void 0,m=void 0!==p;m&&(p=a(p,R>2?arguments[2]:void 0));var Y,v,S,z,F,$,y=E(Q),x=0;if(!y||this==C&&f(y))for(Y=u(Q),v=I?new this(Y):C(Y);Y>x;x++)$=m?p(Q[x],x):Q[x],r(v,x,$);else for(F=(z=d(Q,y)).next,v=I?new this:[];!(S=s(F,z)).done;x++)$=m?g(z,p,[S.value,x],!0):S.value,r(v,x,$);return v.length=x,v}},12636:function(b,A,n){var B=n(98086),a=n(74841),s=n(45495),o=function(g){return function(f,w,u){var C,r=B(f),d=s(r),E=a(u,d);if(g&&w!=w){for(;d>E;)if((C=r[E++])!=C)return!0}else for(;d>E;E++)if((g||E in r)&&r[E]===w)return g||E||0;return!g&&-1}};b.exports={includes:o(!0),indexOf:o(!1)}},91102:function(b,A,n){var B=n(25567),a=n(38347),s=n(7514),o=n(43162),g=n(45495),f=n(45744),w=a([].push),u=function(r){var d=1==r,E=2==r,C=3==r,e=4==r,h=6==r,Q=7==r,I=5==r||h;return function(R,p,m,y){for(var gA,_,x=o(R),Y=s(x),v=B(p,m),S=g(Y),z=0,F=y||f,$=d?F(R,S):E||Q?F(R,0):void 0;S>z;z++)if((I||z in Y)&&(_=v(gA=Y[z],z,x),r))if(d)$[z]=_;else if(_)switch(r){case 3:return!0;case 5:return gA;case 6:return z;case 2:w($,gA)}else switch(r){case 4:return!1;case 7:w($,gA)}return h?-1:C||e?e:$}};b.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterReject:u(7)}},84320:function(b,A,n){"use strict";var B=n(58448),a=n(98086),s=n(26882),o=n(45495),g=n(81007),f=Math.min,w=[].lastIndexOf,u=!!w&&1/[1].lastIndexOf(1,-0)<0,r=g("lastIndexOf");b.exports=u||!r?function(C){if(u)return B(w,this,arguments)||0;var e=a(this),h=o(e),Q=h-1;for(arguments.length>1&&(Q=f(Q,s(arguments[1]))),Q<0&&(Q=h+Q);Q>=0;Q--)if(Q in e&&e[Q]===C)return Q||0;return-1}:w},56280:function(b,A,n){var B=n(47044),a=n(38688),s=n(70091),o=a("species");b.exports=function(g){return s>=51||!B(function(){var f=[];return(f.constructor={})[o]=function(){return{foo:1}},1!==f[g](Boolean).foo})}},81007:function(b,A,n){"use strict";var B=n(47044);b.exports=function(a,s){var o=[][a];return!!o&&B(function(){o.call(null,s||function(){throw 1},1)})}},32843:function(b,A,n){var B=n(32010),a=n(32631),s=n(43162),o=n(7514),g=n(45495),f=B.TypeError,w=function(u){return function(r,d,E,C){a(d);var e=s(r),h=o(e),Q=g(e),I=u?Q-1:0,R=u?-1:1;if(E<2)for(;;){if(I in h){C=h[I],I+=R;break}if(I+=R,u?I<0:Q<=I)throw f("Reduce of empty array with no initial value")}for(;u?I>=0:Q>I;I+=R)I in h&&(C=d(C,h[I],I,e));return C}};b.exports={left:w(!1),right:w(!0)}},73163:function(b,A,n){var B=n(38347);b.exports=B([].slice)},43977:function(b,A,n){var B=n(73163),a=Math.floor,s=function(f,w){var u=f.length,r=a(u/2);return u<8?o(f,w):g(f,s(B(f,0,r),w),s(B(f,r),w),w)},o=function(f,w){for(var d,E,u=f.length,r=1;r0;)f[E]=f[--E];E!==r++&&(f[E]=d)}return f},g=function(f,w,u,r){for(var d=w.length,E=u.length,C=0,e=0;C1?arguments[1]:void 0);$=$?$.next:z.first;)for(F($.value,$.key,this);$&&$.removed;)$=$.previous},has:function(S){return!!Y(this,S)}}),s(m,I?{get:function(S){var z=Y(this,S);return z&&z.value},set:function(S,z){return x(this,0===S?0:S,z)}}:{add:function(S){return x(this,S=0===S?0:S,S)}}),r&&B(m,"size",{get:function(){return y(this).size}}),p},setStrong:function(h,Q,I){var R=Q+" Iterator",p=e(Q),m=e(R);w(h,Q,function(y,x){C(this,{type:R,target:y,state:p(y),kind:x,last:void 0})},function(){for(var y=m(this),x=y.kind,Y=y.last;Y&&Y.removed;)Y=Y.previous;return y.target&&(y.last=Y=Y?Y.next:y.state.first)?"keys"==x?{value:Y.key,done:!1}:"values"==x?{value:Y.value,done:!1}:{value:[Y.key,Y.value],done:!1}:(y.target=void 0,{value:void 0,done:!0})},I?"entries":"values",!I,!0),u(Q)}}},36673:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(38347),o=n(39599),g=n(13711),f=n(62148),w=n(80383),u=n(2868),r=n(94578),d=n(24517),E=n(47044),C=n(46769),e=n(15216),h=n(51868);b.exports=function(Q,I,R){var p=-1!==Q.indexOf("Map"),m=-1!==Q.indexOf("Weak"),y=p?"set":"add",x=a[Q],Y=x&&x.prototype,v=x,S={},z=function(wA){var IA=s(Y[wA]);g(Y,wA,"add"==wA?function(YA){return IA(this,0===YA?0:YA),this}:"delete"==wA?function(FA){return!(m&&!d(FA))&&IA(this,0===FA?0:FA)}:"get"==wA?function(YA){return m&&!d(YA)?void 0:IA(this,0===YA?0:YA)}:"has"==wA?function(YA){return!(m&&!d(YA))&&IA(this,0===YA?0:YA)}:function(YA,HA){return IA(this,0===YA?0:YA,HA),this})};if(o(Q,!r(x)||!(m||Y.forEach&&!E(function(){(new x).entries().next()}))))v=R.getConstructor(I,Q,p,y),f.enable();else if(o(Q,!0)){var $=new v,gA=$[y](m?{}:-0,1)!=$,_=E(function(){$.has(1)}),fA=C(function(wA){new x(wA)}),iA=!m&&E(function(){for(var wA=new x,IA=5;IA--;)wA[y](IA,IA);return!wA.has(-0)});fA||((v=I(function(wA,IA){u(wA,Y);var FA=h(new x,wA,v);return null!=IA&&w(IA,FA[y],{that:FA,AS_ENTRIES:p}),FA})).prototype=Y,Y.constructor=v),(_||iA)&&(z("delete"),z("has"),p&&z("get")),(iA||gA)&&z(y),m&&Y.clear&&delete Y.clear}return S[Q]=v,B({global:!0,forced:v!=x},S),e(v,Q),m||R.setStrong(v,Q,p),v}},2675:function(b,A,n){var B=n(20340),a=n(21594),s=n(72062),o=n(95892);b.exports=function(g,f){for(var w=a(f),u=o.f,r=s.f,d=0;d"+d+""}},13945:function(b,A,n){"use strict";var B=n(5844).IteratorPrototype,a=n(10819),s=n(97841),o=n(15216),g=n(15366),f=function(){return this};b.exports=function(w,u,r){var d=u+" Iterator";return w.prototype=a(B,{next:s(1,r)}),o(w,d,!1,!0),g[d]=f,w}},48914:function(b,A,n){var B=n(15567),a=n(95892),s=n(97841);b.exports=B?function(o,g,f){return a.f(o,g,s(1,f))}:function(o,g,f){return o[g]=f,o}},97841:function(b){b.exports=function(A,n){return{enumerable:!(1&A),configurable:!(2&A),writable:!(4&A),value:n}}},38639:function(b,A,n){"use strict";var B=n(63918),a=n(95892),s=n(97841);b.exports=function(o,g,f){var w=B(g);w in o?a.f(o,w,s(0,f)):o[w]=f}},53087:function(b,A,n){"use strict";var B=n(32010),a=n(34984),s=n(39629),o=B.TypeError;b.exports=function(g){if(a(this),"string"===g||"default"===g)g="string";else if("number"!==g)throw o("Incorrect hint");return s(this,g)}},97001:function(b,A,n){"use strict";var B=n(56475),a=n(2834),s=n(63432),o=n(7081),g=n(94578),f=n(13945),w=n(69548),u=n(3840),r=n(15216),d=n(48914),E=n(13711),C=n(38688),e=n(15366),h=n(5844),Q=o.PROPER,I=o.CONFIGURABLE,R=h.IteratorPrototype,p=h.BUGGY_SAFARI_ITERATORS,m=C("iterator"),y="keys",x="values",Y="entries",v=function(){return this};b.exports=function(S,z,F,$,gA,_,fA){f(F,z,$);var BA,aA,eA,iA=function(EA){if(EA===gA&&HA)return HA;if(!p&&EA in FA)return FA[EA];switch(EA){case y:case x:case Y:return function(){return new F(this,EA)}}return function(){return new F(this)}},wA=z+" Iterator",IA=!1,FA=S.prototype,YA=FA[m]||FA["@@iterator"]||gA&&FA[gA],HA=!p&&YA||iA(gA),J="Array"==z&&FA.entries||YA;if(J&&(BA=w(J.call(new S)))!==Object.prototype&&BA.next&&(!s&&w(BA)!==R&&(u?u(BA,R):g(BA[m])||E(BA,m,v)),r(BA,wA,!0,!0),s&&(e[wA]=v)),Q&&gA==x&&YA&&YA.name!==x&&(!s&&I?d(FA,"name",x):(IA=!0,HA=function(){return a(YA,this)})),gA)if(aA={values:iA(x),keys:_?HA:iA(y),entries:iA(Y)},fA)for(eA in aA)(p||IA||!(eA in FA))&&E(FA,eA,aA[eA]);else B({target:z,proto:!0,forced:p||IA},aA);return(!s||fA)&&FA[m]!==HA&&E(FA,m,HA,{name:gA}),e[z]=HA,aA}},46042:function(b,A,n){var B=n(11206),a=n(20340),s=n(75960),o=n(95892).f;b.exports=function(g){var f=B.Symbol||(B.Symbol={});a(f,g)||o(f,g,{value:s.f(g)})}},15567:function(b,A,n){var B=n(47044);b.exports=!B(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},12072:function(b,A,n){var B=n(32010),a=n(24517),s=B.document,o=a(s)&&a(s.createElement);b.exports=function(g){return o?s.createElement(g):{}}},23327:function(b){b.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},67797:function(b,A,n){var a=n(12072)("span").classList,s=a&&a.constructor&&a.constructor.prototype;b.exports=s===Object.prototype?void 0:s},3809:function(b,A,n){var a=n(40715).match(/firefox\/(\d+)/i);b.exports=!!a&&+a[1]},3157:function(b){b.exports="object"==typeof window},21983:function(b,A,n){var B=n(40715);b.exports=/MSIE|Trident/.test(B)},70573:function(b,A,n){var B=n(40715),a=n(32010);b.exports=/ipad|iphone|ipod/i.test(B)&&void 0!==a.Pebble},17716:function(b,A,n){var B=n(40715);b.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(B)},95053:function(b,A,n){var B=n(93975),a=n(32010);b.exports="process"==B(a.process)},664:function(b,A,n){var B=n(40715);b.exports=/web0s(?!.*chrome)/i.test(B)},40715:function(b,A,n){var B=n(38486);b.exports=B("navigator","userAgent")||""},70091:function(b,A,n){var w,u,B=n(32010),a=n(40715),s=B.process,o=B.Deno,g=s&&s.versions||o&&o.version,f=g&&g.v8;f&&(u=(w=f.split("."))[0]>0&&w[0]<4?1:+(w[0]+w[1])),!u&&a&&(!(w=a.match(/Edge\/(\d+)/))||w[1]>=74)&&(w=a.match(/Chrome\/(\d+)/))&&(u=+w[1]),b.exports=u},41731:function(b,A,n){var a=n(40715).match(/AppleWebKit\/(\d+)\./);b.exports=!!a&&+a[1]},2416:function(b){b.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},45144:function(b,A,n){var B=n(47044),a=n(97841);b.exports=!B(function(){var s=Error("a");return!("stack"in s)||(Object.defineProperty(s,"stack",a(1,7)),7!==s.stack)})},56475:function(b,A,n){var B=n(32010),a=n(72062).f,s=n(48914),o=n(13711),g=n(7421),f=n(2675),w=n(39599);b.exports=function(u,r){var h,Q,I,R,p,d=u.target,E=u.global,C=u.stat;if(h=E?B:C?B[d]||g(d,{}):(B[d]||{}).prototype)for(Q in r){if(R=r[Q],I=u.noTargetGet?(p=a(h,Q))&&p.value:h[Q],!w(E?Q:d+(C?".":"#")+Q,u.forced)&&void 0!==I){if(typeof R==typeof I)continue;f(R,I)}(u.sham||I&&I.sham)&&s(R,"sham",!0),o(h,Q,R,u)}}},47044:function(b){b.exports=function(A){try{return!!A()}catch{return!0}}},11813:function(b,A,n){"use strict";n(61726);var B=n(38347),a=n(13711),s=n(49820),o=n(47044),g=n(38688),f=n(48914),w=g("species"),u=RegExp.prototype;b.exports=function(r,d,E,C){var e=g(r),h=!o(function(){var p={};return p[e]=function(){return 7},7!=""[r](p)}),Q=h&&!o(function(){var p=!1,m=/a/;return"split"===r&&((m={}).constructor={},m.constructor[w]=function(){return m},m.flags="",m[e]=/./[e]),m.exec=function(){return p=!0,null},m[e](""),!p});if(!h||!Q||E){var I=B(/./[e]),R=d(e,""[r],function(p,m,y,x,Y){var v=B(p),S=m.exec;return S===s||S===u.exec?h&&!Y?{done:!0,value:I(m,y,x)}:{done:!0,value:v(y,m,x)}:{done:!1}});a(String.prototype,r,R[0]),a(u,e,R[1])}C&&f(u[e],"sham",!0)}},55481:function(b,A,n){var B=n(47044);b.exports=!B(function(){return Object.isExtensible(Object.preventExtensions({}))})},58448:function(b){var A=Function.prototype,n=A.apply,a=A.call;b.exports="object"==typeof Reflect&&Reflect.apply||(A.bind?a.bind(n):function(){return a.apply(n,arguments)})},25567:function(b,A,n){var B=n(38347),a=n(32631),s=B(B.bind);b.exports=function(o,g){return a(o),void 0===g?o:s?s(o,g):function(){return o.apply(g,arguments)}}},5481:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(32631),o=n(24517),g=n(20340),f=n(73163),w=B.Function,u=a([].concat),r=a([].join),d={};b.exports=w.bind||function(e){var h=s(this),Q=h.prototype,I=f(arguments,1),R=function(){var m=u(I,f(arguments));return this instanceof R?function(C,e,h){if(!g(d,e)){for(var Q=[],I=0;I]*>)/g,u=/\$([$&'`]|\d{1,2})/g;b.exports=function(r,d,E,C,e,h){var Q=E+r.length,I=C.length,R=u;return void 0!==e&&(e=a(e),R=w),g(h,R,function(p,m){var y;switch(o(m,0)){case"$":return"$";case"&":return r;case"`":return f(d,0,E);case"'":return f(d,Q);case"<":y=e[f(m,1,-1)];break;default:var x=+m;if(0===x)return p;if(x>I){var Y=s(x/10);return 0===Y?p:Y<=I?void 0===C[Y-1]?o(m,1):C[Y-1]+o(m,1):p}y=C[x-1]}return void 0===y?"":y})}},32010:function(b,A,n){var B=function(a){return a&&a.Math==Math&&a};b.exports=B("object"==typeof globalThis&&globalThis)||B("object"==typeof window&&window)||B("object"==typeof self&&self)||B("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},20340:function(b,A,n){var B=n(38347),a=n(43162),s=B({}.hasOwnProperty);b.exports=Object.hasOwn||function(g,f){return s(a(g),f)}},90682:function(b){b.exports={}},61144:function(b,A,n){var B=n(32010);b.exports=function(a,s){var o=B.console;o&&o.error&&(1==arguments.length?o.error(a):o.error(a,s))}},520:function(b,A,n){var B=n(38486);b.exports=B("document","documentElement")},18904:function(b,A,n){var B=n(15567),a=n(47044),s=n(12072);b.exports=!B&&!a(function(){return 7!=Object.defineProperty(s("div"),"a",{get:function(){return 7}}).a})},64397:function(b,A,n){var a=n(32010).Array,s=Math.abs,o=Math.pow,g=Math.floor,f=Math.log,w=Math.LN2;b.exports={pack:function(d,E,C){var y,x,Y,e=a(C),h=8*C-E-1,Q=(1<>1,R=23===E?o(2,-24)-o(2,-77):0,p=d<0||0===d&&1/d<0?1:0,m=0;for((d=s(d))!=d||d===1/0?(x=d!=d?1:0,y=Q):(y=g(f(d)/w),d*(Y=o(2,-y))<1&&(y--,Y*=2),(d+=y+I>=1?R/Y:R*o(2,1-I))*Y>=2&&(y++,Y/=2),y+I>=Q?(x=0,y=Q):y+I>=1?(x=(d*Y-1)*o(2,E),y+=I):(x=d*o(2,I-1)*o(2,E),y=0));E>=8;e[m++]=255&x,x/=256,E-=8);for(y=y<0;e[m++]=255&y,y/=256,h-=8);return e[--m]|=128*p,e},unpack:function(d,E){var y,C=d.length,e=8*C-E-1,h=(1<>1,I=e-7,R=C-1,p=d[R--],m=127&p;for(p>>=7;I>0;m=256*m+d[R],R--,I-=8);for(y=m&(1<<-I)-1,m>>=-I,I+=E;I>0;y=256*y+d[R],R--,I-=8);if(0===m)m=1-Q;else{if(m===h)return y?NaN:p?-1/0:1/0;y+=o(2,E),m-=Q}return(p?-1:1)*y*o(2,m-E)}}},7514:function(b,A,n){var B=n(32010),a=n(38347),s=n(47044),o=n(93975),g=B.Object,f=a("".split);b.exports=s(function(){return!g("z").propertyIsEnumerable(0)})?function(w){return"String"==o(w)?f(w,""):g(w)}:g},51868:function(b,A,n){var B=n(94578),a=n(24517),s=n(3840);b.exports=function(o,g,f){var w,u;return s&&B(w=g.constructor)&&w!==f&&a(u=w.prototype)&&u!==f.prototype&&s(o,u),o}},10447:function(b,A,n){var B=n(38347),a=n(94578),s=n(55480),o=B(Function.toString);a(s.inspectSource)||(s.inspectSource=function(g){return o(g)}),b.exports=s.inspectSource},87811:function(b,A,n){var B=n(24517),a=n(48914);b.exports=function(s,o){B(o)&&"cause"in o&&a(s,"cause",o.cause)}},62148:function(b,A,n){var B=n(56475),a=n(38347),s=n(90682),o=n(24517),g=n(20340),f=n(95892).f,w=n(6611),u=n(8807),r=n(46859),d=n(55481),E=!1,C=r("meta"),e=0,h=Object.isExtensible||function(){return!0},Q=function(x){f(x,C,{value:{objectID:"O"+e++,weakData:{}}})},y=b.exports={enable:function(){y.enable=function(){},E=!0;var x=w.f,Y=a([].splice),v={};v[C]=1,x(v).length&&(w.f=function(S){for(var z=x(S),F=0,$=z.length;F<$;F++)if(z[F]===C){Y(z,F,1);break}return z},B({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:u.f}))},fastKey:function(x,Y){if(!o(x))return"symbol"==typeof x?x:("string"==typeof x?"S":"P")+x;if(!g(x,C)){if(!h(x))return"F";if(!Y)return"E";Q(x)}return x[C].objectID},getWeakData:function(x,Y){if(!g(x,C)){if(!h(x))return!0;if(!Y)return!1;Q(x)}return x[C].weakData},onFreeze:function(x){return d&&E&&h(x)&&!g(x,C)&&Q(x),x}};s[C]=!0},70172:function(b,A,n){var e,h,Q,B=n(26168),a=n(32010),s=n(38347),o=n(24517),g=n(48914),f=n(20340),w=n(55480),u=n(82194),r=n(90682),d="Object already initialized",E=a.TypeError;if(B||w.state){var p=w.state||(w.state=new(0,a.WeakMap)),m=s(p.get),y=s(p.has),x=s(p.set);e=function(v,S){if(y(p,v))throw new E(d);return S.facade=v,x(p,v,S),S},h=function(v){return m(p,v)||{}},Q=function(v){return y(p,v)}}else{var Y=u("state");r[Y]=!0,e=function(v,S){if(f(v,Y))throw new E(d);return S.facade=v,g(v,Y,S),S},h=function(v){return f(v,Y)?v[Y]:{}},Q=function(v){return f(v,Y)}}b.exports={set:e,get:h,has:Q,enforce:function(v){return Q(v)?h(v):e(v,{})},getterFor:function(v){return function(S){var z;if(!o(S)||(z=h(S)).type!==v)throw E("Incompatible receiver, "+v+" required");return z}}}},89564:function(b,A,n){var B=n(38688),a=n(15366),s=B("iterator"),o=Array.prototype;b.exports=function(g){return void 0!==g&&(a.Array===g||o[s]===g)}},59113:function(b,A,n){var B=n(93975);b.exports=Array.isArray||function(s){return"Array"==B(s)}},94578:function(b){b.exports=function(A){return"function"==typeof A}},20884:function(b,A,n){var B=n(38347),a=n(47044),s=n(94578),o=n(52564),g=n(38486),f=n(10447),w=function(){},u=[],r=g("Reflect","construct"),d=/^\s*(?:class|function)\b/,E=B(d.exec),C=!d.exec(w),e=function(Q){if(!s(Q))return!1;try{return r(w,u,Q),!0}catch{return!1}};b.exports=!r||a(function(){var Q;return e(e.call)||!e(Object)||!e(function(){Q=!0})||Q})?function(Q){if(!s(Q))return!1;switch(o(Q)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return C||!!E(d,f(Q))}:e},39599:function(b,A,n){var B=n(47044),a=n(94578),s=/#|\.prototype\./,o=function(r,d){var E=f[g(r)];return E==u||E!=w&&(a(d)?B(d):!!d)},g=o.normalize=function(r){return String(r).replace(s,".").toLowerCase()},f=o.data={},w=o.NATIVE="N",u=o.POLYFILL="P";b.exports=o},17506:function(b,A,n){var B=n(24517),a=Math.floor;b.exports=Number.isInteger||function(o){return!B(o)&&isFinite(o)&&a(o)===o}},24517:function(b,A,n){var B=n(94578);b.exports=function(a){return"object"==typeof a?null!==a:B(a)}},63432:function(b){b.exports=!1},28831:function(b,A,n){var B=n(24517),a=n(93975),o=n(38688)("match");b.exports=function(g){var f;return B(g)&&(void 0!==(f=g[o])?!!f:"RegExp"==a(g))}},46290:function(b,A,n){var B=n(32010),a=n(38486),s=n(94578),o=n(70176),g=n(9567),f=B.Object;b.exports=g?function(w){return"symbol"==typeof w}:function(w){var u=a("Symbol");return s(u)&&o(u.prototype,f(w))}},80383:function(b,A,n){var B=n(32010),a=n(25567),s=n(2834),o=n(34984),g=n(68664),f=n(89564),w=n(45495),u=n(70176),r=n(15892),d=n(13872),E=n(50194),C=B.TypeError,e=function(Q,I){this.stopped=Q,this.result=I},h=e.prototype;b.exports=function(Q,I,R){var v,S,z,F,$,gA,_,m=!(!R||!R.AS_ENTRIES),y=!(!R||!R.IS_ITERATOR),x=!(!R||!R.INTERRUPTED),Y=a(I,R&&R.that),fA=function(wA){return v&&E(v,"normal",wA),new e(!0,wA)},iA=function(wA){return m?(o(wA),x?Y(wA[0],wA[1],fA):Y(wA[0],wA[1])):x?Y(wA,fA):Y(wA)};if(y)v=Q;else{if(!(S=d(Q)))throw C(g(Q)+" is not iterable");if(f(S)){for(z=0,F=w(Q);F>z;z++)if(($=iA(Q[z]))&&u(h,$))return $;return new e(!1)}v=r(Q,S)}for(gA=v.next;!(_=s(gA,v)).done;){try{$=iA(_.value)}catch(wA){E(v,"throw",wA)}if("object"==typeof $&&$&&u(h,$))return $}return new e(!1)}},50194:function(b,A,n){var B=n(2834),a=n(34984),s=n(51839);b.exports=function(o,g,f){var w,u;a(o);try{if(!(w=s(o,"return"))){if("throw"===g)throw f;return f}w=B(w,o)}catch(r){u=!0,w=r}if("throw"===g)throw f;if(u)throw w;return a(w),f}},5844:function(b,A,n){"use strict";var d,E,C,B=n(47044),a=n(94578),s=n(10819),o=n(69548),g=n(13711),f=n(38688),w=n(63432),u=f("iterator"),r=!1;[].keys&&("next"in(C=[].keys())?(E=o(o(C)))!==Object.prototype&&(d=E):r=!0),null==d||B(function(){var h={};return d[u].call(h)!==h})?d={}:w&&(d=s(d)),a(d[u])||g(d,u,function(){return this}),b.exports={IteratorPrototype:d,BUGGY_SAFARI_ITERATORS:r}},15366:function(b){b.exports={}},45495:function(b,A,n){var B=n(23417);b.exports=function(a){return B(a.length)}},59804:function(b,A,n){var Q,I,R,p,m,y,x,Y,B=n(32010),a=n(25567),s=n(72062).f,o=n(6616).set,g=n(17716),f=n(70573),w=n(664),u=n(95053),r=B.MutationObserver||B.WebKitMutationObserver,d=B.document,E=B.process,C=B.Promise,e=s(B,"queueMicrotask"),h=e&&e.value;h||(Q=function(){var v,S;for(u&&(v=E.domain)&&v.exit();I;){S=I.fn,I=I.next;try{S()}catch(z){throw I?p():R=void 0,z}}R=void 0,v&&v.enter()},g||u||w||!r||!d?!f&&C&&C.resolve?((x=C.resolve(void 0)).constructor=C,Y=a(x.then,x),p=function(){Y(Q)}):u?p=function(){E.nextTick(Q)}:(o=a(o,B),p=function(){o(Q)}):(m=!0,y=d.createTextNode(""),new r(Q).observe(y,{characterData:!0}),p=function(){y.data=m=!m})),b.exports=h||function(v){var S={fn:v,next:void 0};R&&(R.next=S),I||(I=S,p()),R=S}},5155:function(b,A,n){var B=n(32010);b.exports=B.Promise},46887:function(b,A,n){var B=n(70091),a=n(47044);b.exports=!!Object.getOwnPropertySymbols&&!a(function(){var s=Symbol();return!String(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&B&&B<41})},26168:function(b,A,n){var B=n(32010),a=n(94578),s=n(10447),o=B.WeakMap;b.exports=a(o)&&/native code/.test(s(o))},56614:function(b,A,n){"use strict";var B=n(32631),a=function(s){var o,g;this.promise=new s(function(f,w){if(void 0!==o||void 0!==g)throw TypeError("Bad Promise constructor");o=f,g=w}),this.resolve=B(o),this.reject=B(g)};b.exports.f=function(s){return new a(s)}},86392:function(b,A,n){var B=n(25096);b.exports=function(a,s){return void 0===a?arguments.length<2?"":s:B(a)}},93666:function(b,A,n){var B=n(32010),a=n(28831),s=B.TypeError;b.exports=function(o){if(a(o))throw s("The method doesn't accept regular expressions");return o}},59805:function(b,A,n){var a=n(32010).isFinite;b.exports=Number.isFinite||function(o){return"number"==typeof o&&a(o)}},87146:function(b,A,n){"use strict";var B=n(15567),a=n(38347),s=n(2834),o=n(47044),g=n(84675),f=n(61146),w=n(55574),u=n(43162),r=n(7514),d=Object.assign,E=Object.defineProperty,C=a([].concat);b.exports=!d||o(function(){if(B&&1!==d({b:1},d(E({},"a",{enumerable:!0,get:function(){E(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},h={},Q=Symbol(),I="abcdefghijklmnopqrst";return e[Q]=7,I.split("").forEach(function(R){h[R]=R}),7!=d({},e)[Q]||g(d({},h)).join("")!=I})?function(h,Q){for(var I=u(h),R=arguments.length,p=1,m=f.f,y=w.f;R>p;)for(var z,x=r(arguments[p++]),Y=m?C(g(x),m(x)):g(x),v=Y.length,S=0;v>S;)z=Y[S++],(!B||s(y,x,z))&&(I[z]=x[z]);return I}:d},10819:function(b,A,n){var R,B=n(34984),a=n(10196),s=n(2416),o=n(90682),g=n(520),f=n(12072),w=n(82194),d="prototype",E="script",C=w("IE_PROTO"),e=function(){},h=function(m){return"<"+E+">"+m+""},Q=function(m){m.write(h("")),m.close();var y=m.parentWindow.Object;return m=null,y},p=function(){try{R=new ActiveXObject("htmlfile")}catch{}p=typeof document<"u"?document.domain&&R?Q(R):function(){var x,m=f("iframe"),y="java"+E+":";return m.style.display="none",g.appendChild(m),m.src=String(y),(x=m.contentWindow.document).open(),x.write(h("document.F=Object")),x.close(),x.F}():Q(R);for(var m=s.length;m--;)delete p[d][s[m]];return p()};o[C]=!0,b.exports=Object.create||function(y,x){var Y;return null!==y?(e[d]=B(y),Y=new e,e[d]=null,Y[C]=y):Y=p(),void 0===x?Y:a(Y,x)}},10196:function(b,A,n){var B=n(15567),a=n(95892),s=n(34984),o=n(98086),g=n(84675);b.exports=B?Object.defineProperties:function(w,u){s(w);for(var e,r=o(u),d=g(u),E=d.length,C=0;E>C;)a.f(w,e=d[C++],r[e]);return w}},95892:function(b,A,n){var B=n(32010),a=n(15567),s=n(18904),o=n(34984),g=n(63918),f=B.TypeError,w=Object.defineProperty;A.f=a?w:function(r,d,E){if(o(r),d=g(d),o(E),s)try{return w(r,d,E)}catch{}if("get"in E||"set"in E)throw f("Accessors not supported");return"value"in E&&(r[d]=E.value),r}},72062:function(b,A,n){var B=n(15567),a=n(2834),s=n(55574),o=n(97841),g=n(98086),f=n(63918),w=n(20340),u=n(18904),r=Object.getOwnPropertyDescriptor;A.f=B?r:function(E,C){if(E=g(E),C=f(C),u)try{return r(E,C)}catch{}if(w(E,C))return o(!a(s.f,E,C),E[C])}},8807:function(b,A,n){var B=n(93975),a=n(98086),s=n(6611).f,o=n(73163),g="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];b.exports.f=function(u){return g&&"Window"==B(u)?function(w){try{return s(w)}catch{return o(g)}}(u):s(a(u))}},6611:function(b,A,n){var B=n(64429),s=n(2416).concat("length","prototype");A.f=Object.getOwnPropertyNames||function(g){return B(g,s)}},61146:function(b,A){A.f=Object.getOwnPropertySymbols},69548:function(b,A,n){var B=n(32010),a=n(20340),s=n(94578),o=n(43162),g=n(82194),f=n(68494),w=g("IE_PROTO"),u=B.Object,r=u.prototype;b.exports=f?u.getPrototypeOf:function(d){var E=o(d);if(a(E,w))return E[w];var C=E.constructor;return s(C)&&E instanceof C?C.prototype:E instanceof u?r:null}},70176:function(b,A,n){var B=n(38347);b.exports=B({}.isPrototypeOf)},64429:function(b,A,n){var B=n(38347),a=n(20340),s=n(98086),o=n(12636).indexOf,g=n(90682),f=B([].push);b.exports=function(w,u){var C,r=s(w),d=0,E=[];for(C in r)!a(g,C)&&a(r,C)&&f(E,C);for(;u.length>d;)a(r,C=u[d++])&&(~o(E,C)||f(E,C));return E}},84675:function(b,A,n){var B=n(64429),a=n(2416);b.exports=Object.keys||function(o){return B(o,a)}},55574:function(b,A){"use strict";var n={}.propertyIsEnumerable,B=Object.getOwnPropertyDescriptor,a=B&&!n.call({1:2},1);A.f=a?function(o){var g=B(this,o);return!!g&&g.enumerable}:n},3840:function(b,A,n){var B=n(38347),a=n(34984),s=n(58659);b.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var f,o=!1,g={};try{(f=B(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(g,[]),o=g instanceof Array}catch{}return function(u,r){return a(u),s(r),o?f(u,r):u.__proto__=r,u}}():void 0)},80754:function(b,A,n){var B=n(15567),a=n(38347),s=n(84675),o=n(98086),f=a(n(55574).f),w=a([].push),u=function(r){return function(d){for(var I,E=o(d),C=s(E),e=C.length,h=0,Q=[];e>h;)I=C[h++],(!B||f(E,I))&&w(Q,r?[I,E[I]]:E[I]);return Q}};b.exports={entries:u(!0),values:u(!1)}},52598:function(b,A,n){"use strict";var B=n(24663),a=n(52564);b.exports=B?{}.toString:function(){return"[object "+a(this)+"]"}},39629:function(b,A,n){var B=n(32010),a=n(2834),s=n(94578),o=n(24517),g=B.TypeError;b.exports=function(f,w){var u,r;if("string"===w&&s(u=f.toString)&&!o(r=a(u,f))||s(u=f.valueOf)&&!o(r=a(u,f))||"string"!==w&&s(u=f.toString)&&!o(r=a(u,f)))return r;throw g("Can't convert object to primitive value")}},21594:function(b,A,n){var B=n(38486),a=n(38347),s=n(6611),o=n(61146),g=n(34984),f=a([].concat);b.exports=B("Reflect","ownKeys")||function(u){var r=s.f(g(u)),d=o.f;return d?f(r,d(u)):r}},11206:function(b,A,n){var B=n(32010);b.exports=B},61900:function(b){b.exports=function(A){try{return{error:!1,value:A()}}catch(n){return{error:!0,value:n}}}},28617:function(b,A,n){var B=n(34984),a=n(24517),s=n(56614);b.exports=function(o,g){if(B(o),a(g)&&g.constructor===o)return g;var f=s.f(o);return(0,f.resolve)(g),f.promise}},15341:function(b,A,n){var B=n(13711);b.exports=function(a,s,o){for(var g in s)B(a,g,s[g],o);return a}},13711:function(b,A,n){var B=n(32010),a=n(94578),s=n(20340),o=n(48914),g=n(7421),f=n(10447),w=n(70172),u=n(7081).CONFIGURABLE,r=w.get,d=w.enforce,E=String(String).split("String");(b.exports=function(C,e,h,Q){var y,I=!!Q&&!!Q.unsafe,R=!!Q&&!!Q.enumerable,p=!!Q&&!!Q.noTargetGet,m=Q&&void 0!==Q.name?Q.name:e;a(h)&&("Symbol("===String(m).slice(0,7)&&(m="["+String(m).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!s(h,"name")||u&&h.name!==m)&&o(h,"name",m),(y=d(h)).source||(y.source=E.join("string"==typeof m?m:""))),C!==B?(I?!p&&C[e]&&(R=!0):delete C[e],R?C[e]=h:o(C,e,h)):R?C[e]=h:g(e,h)})(Function.prototype,"toString",function(){return a(this)&&r(this).source||f(this)})},66723:function(b,A,n){var B=n(32010),a=n(2834),s=n(34984),o=n(94578),g=n(93975),f=n(49820),w=B.TypeError;b.exports=function(u,r){var d=u.exec;if(o(d)){var E=a(d,u,r);return null!==E&&s(E),E}if("RegExp"===g(u))return a(f,u,r);throw w("RegExp#exec called on incompatible receiver")}},49820:function(b,A,n){"use strict";var Y,v,B=n(2834),a=n(38347),s=n(25096),o=n(21182),g=n(74846),f=n(464),w=n(10819),u=n(70172).get,r=n(84030),d=n(97739),E=f("native-string-replace",String.prototype.replace),C=RegExp.prototype.exec,e=C,h=a("".charAt),Q=a("".indexOf),I=a("".replace),R=a("".slice),p=(v=/b*/g,B(C,Y=/a/,"a"),B(C,v,"a"),0!==Y.lastIndex||0!==v.lastIndex),m=g.UNSUPPORTED_Y||g.BROKEN_CARET,y=void 0!==/()??/.exec("")[1];(p||y||m||r||d)&&(e=function(v){var gA,_,fA,iA,wA,IA,FA,S=this,z=u(S),F=s(v),$=z.raw;if($)return $.lastIndex=S.lastIndex,gA=B(e,$,F),S.lastIndex=$.lastIndex,gA;var YA=z.groups,HA=m&&S.sticky,J=B(o,S),BA=S.source,aA=0,eA=F;if(HA&&(J=I(J,"y",""),-1===Q(J,"g")&&(J+="g"),eA=R(F,S.lastIndex),S.lastIndex>0&&(!S.multiline||S.multiline&&"\n"!==h(F,S.lastIndex-1))&&(BA="(?: "+BA+")",eA=" "+eA,aA++),_=new RegExp("^(?:"+BA+")",J)),y&&(_=new RegExp("^"+BA+"$(?!\\s)",J)),p&&(fA=S.lastIndex),iA=B(C,HA?_:S,eA),HA?iA?(iA.input=R(iA.input,aA),iA[0]=R(iA[0],aA),iA.index=S.lastIndex,S.lastIndex+=iA[0].length):S.lastIndex=0:p&&iA&&(S.lastIndex=S.global?iA.index+iA[0].length:fA),y&&iA&&iA.length>1&&B(E,iA[0],_,function(){for(wA=1;wAb)","g");return"b"!==o.exec("b").groups.a||"bc"!=="b".replace(o,"$c")})},83943:function(b,A,n){var a=n(32010).TypeError;b.exports=function(s){if(null==s)throw a("Can't call method on "+s);return s}},7421:function(b,A,n){var B=n(32010),a=Object.defineProperty;b.exports=function(s,o){try{a(B,s,{value:o,configurable:!0,writable:!0})}catch{B[s]=o}return o}},51334:function(b,A,n){"use strict";var B=n(38486),a=n(95892),s=n(38688),o=n(15567),g=s("species");b.exports=function(f){var w=B(f);o&&w&&!w[g]&&(0,a.f)(w,g,{configurable:!0,get:function(){return this}})}},15216:function(b,A,n){var B=n(95892).f,a=n(20340),o=n(38688)("toStringTag");b.exports=function(g,f,w){g&&!a(g=w?g:g.prototype,o)&&B(g,o,{configurable:!0,value:f})}},82194:function(b,A,n){var B=n(464),a=n(46859),s=B("keys");b.exports=function(o){return s[o]||(s[o]=a(o))}},55480:function(b,A,n){var B=n(32010),a=n(7421),s="__core-js_shared__",o=B[s]||a(s,{});b.exports=o},464:function(b,A,n){var B=n(63432),a=n(55480);(b.exports=function(s,o){return a[s]||(a[s]=void 0!==o?o:{})})("versions",[]).push({version:"3.19.0",mode:B?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},27754:function(b,A,n){var B=n(34984),a=n(69075),o=n(38688)("species");b.exports=function(g,f){var u,w=B(g).constructor;return void 0===w||null==(u=B(w)[o])?f:a(u)}},7452:function(b,A,n){var B=n(47044);b.exports=function(a){return B(function(){var s=""[a]('"');return s!==s.toLowerCase()||s.split('"').length>3})}},69510:function(b,A,n){var B=n(38347),a=n(26882),s=n(25096),o=n(83943),g=B("".charAt),f=B("".charCodeAt),w=B("".slice),u=function(r){return function(d,E){var Q,I,C=s(o(d)),e=a(E),h=C.length;return e<0||e>=h?r?"":void 0:(Q=f(C,e))<55296||Q>56319||e+1===h||(I=f(C,e+1))<56320||I>57343?r?g(C,e):Q:r?w(C,e,e+2):I-56320+(Q-55296<<10)+65536}};b.exports={codeAt:u(!1),charAt:u(!0)}},34858:function(b,A,n){"use strict";var B=n(32010),a=n(26882),s=n(25096),o=n(83943),g=B.RangeError;b.exports=function(w){var u=s(o(this)),r="",d=a(w);if(d<0||d==1/0)throw g("Wrong number of repetitions");for(;d>0;(d>>>=1)&&(u+=u))1&d&&(r+=u);return r}},68899:function(b,A,n){var B=n(7081).PROPER,a=n(47044),s=n(43187);b.exports=function(g){return a(function(){return!!s[g]()||"\u200b\x85\u180e"!=="\u200b\x85\u180e"[g]()||B&&s[g].name!==g})}},29841:function(b,A,n){var B=n(38347),a=n(83943),s=n(25096),o=n(43187),g=B("".replace),f="["+o+"]",w=RegExp("^"+f+f+"*"),u=RegExp(f+f+"*$"),r=function(d){return function(E){var C=s(a(E));return 1&d&&(C=g(C,w,"")),2&d&&(C=g(C,u,"")),C}};b.exports={start:r(1),end:r(2),trim:r(3)}},6616:function(b,A,n){var Y,v,S,z,B=n(32010),a=n(58448),s=n(25567),o=n(94578),g=n(20340),f=n(47044),w=n(520),u=n(73163),r=n(12072),d=n(17716),E=n(95053),C=B.setImmediate,e=B.clearImmediate,h=B.process,Q=B.Dispatch,I=B.Function,R=B.MessageChannel,p=B.String,m=0,y={},x="onreadystatechange";try{Y=B.location}catch{}var F=function(fA){if(g(y,fA)){var iA=y[fA];delete y[fA],iA()}},$=function(fA){return function(){F(fA)}},gA=function(fA){F(fA.data)},_=function(fA){B.postMessage(p(fA),Y.protocol+"//"+Y.host)};(!C||!e)&&(C=function(iA){var wA=u(arguments,1);return y[++m]=function(){a(o(iA)?iA:I(iA),void 0,wA)},v(m),m},e=function(iA){delete y[iA]},E?v=function(fA){h.nextTick($(fA))}:Q&&Q.now?v=function(fA){Q.now($(fA))}:R&&!d?(z=(S=new R).port2,S.port1.onmessage=gA,v=s(z.postMessage,z)):B.addEventListener&&o(B.postMessage)&&!B.importScripts&&Y&&"file:"!==Y.protocol&&!f(_)?(v=_,B.addEventListener("message",gA,!1)):v=x in r("script")?function(fA){w.appendChild(r("script"))[x]=function(){w.removeChild(this),F(fA)}}:function(fA){setTimeout($(fA),0)}),b.exports={set:C,clear:e}},16679:function(b,A,n){var B=n(38347);b.exports=B(1..valueOf)},74841:function(b,A,n){var B=n(26882),a=Math.max,s=Math.min;b.exports=function(o,g){var f=B(o);return f<0?a(f+g,0):s(f,g)}},71265:function(b,A,n){var B=n(32010),a=n(26882),s=n(23417),o=B.RangeError;b.exports=function(g){if(void 0===g)return 0;var f=a(g),w=s(f);if(f!==w)throw o("Wrong length or index");return w}},98086:function(b,A,n){var B=n(7514),a=n(83943);b.exports=function(s){return B(a(s))}},26882:function(b){var A=Math.ceil,n=Math.floor;b.exports=function(B){var a=+B;return a!=a||0===a?0:(a>0?n:A)(a)}},23417:function(b,A,n){var B=n(26882),a=Math.min;b.exports=function(s){return s>0?a(B(s),9007199254740991):0}},43162:function(b,A,n){var B=n(32010),a=n(83943),s=B.Object;b.exports=function(o){return s(a(o))}},80670:function(b,A,n){var B=n(32010),a=n(64913),s=B.RangeError;b.exports=function(o,g){var f=a(o);if(f%g)throw s("Wrong offset");return f}},64913:function(b,A,n){var B=n(32010),a=n(26882),s=B.RangeError;b.exports=function(o){var g=a(o);if(g<0)throw s("The argument can't be less than 0");return g}},2644:function(b,A,n){var B=n(32010),a=n(2834),s=n(24517),o=n(46290),g=n(51839),f=n(39629),w=n(38688),u=B.TypeError,r=w("toPrimitive");b.exports=function(d,E){if(!s(d)||o(d))return d;var e,C=g(d,r);if(C){if(void 0===E&&(E="default"),e=a(C,d,E),!s(e)||o(e))return e;throw u("Can't convert object to primitive value")}return void 0===E&&(E="number"),f(d,E)}},63918:function(b,A,n){var B=n(2644),a=n(46290);b.exports=function(s){var o=B(s,"string");return a(o)?o:o+""}},24663:function(b,A,n){var s={};s[n(38688)("toStringTag")]="z",b.exports="[object z]"===String(s)},25096:function(b,A,n){var B=n(32010),a=n(52564),s=B.String;b.exports=function(o){if("Symbol"===a(o))throw TypeError("Cannot convert a Symbol value to a string");return s(o)}},68664:function(b,A,n){var a=n(32010).String;b.exports=function(s){try{return a(s)}catch{return"Object"}}},98828:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(2834),o=n(15567),g=n(28834),f=n(36597),w=n(89987),u=n(2868),r=n(97841),d=n(48914),E=n(17506),C=n(23417),e=n(71265),h=n(80670),Q=n(63918),I=n(20340),R=n(52564),p=n(24517),m=n(46290),y=n(10819),x=n(70176),Y=n(3840),v=n(6611).f,S=n(83590),z=n(91102).forEach,F=n(51334),$=n(95892),gA=n(72062),_=n(70172),fA=n(51868),iA=_.get,wA=_.set,IA=$.f,FA=gA.f,YA=Math.round,HA=a.RangeError,J=w.ArrayBuffer,BA=J.prototype,aA=w.DataView,eA=f.NATIVE_ARRAY_BUFFER_VIEWS,EA=f.TYPED_ARRAY_CONSTRUCTOR,xA=f.TYPED_ARRAY_TAG,OA=f.TypedArray,W=f.TypedArrayPrototype,L=f.aTypedArrayConstructor,rA=f.isTypedArray,AA="BYTES_PER_ELEMENT",QA="Wrong length",yA=function(pA,JA){L(pA);for(var ft=0,wt=JA.length,gt=new pA(wt);wt>ft;)gt[ft]=JA[ft++];return gt},cA=function(pA,JA){IA(pA,JA,{get:function(){return iA(this)[JA]}})},CA=function(pA){var JA;return x(BA,pA)||"ArrayBuffer"==(JA=R(pA))||"SharedArrayBuffer"==JA},DA=function(pA,JA){return rA(pA)&&!m(JA)&&JA in pA&&E(+JA)&&JA>=0},NA=function(JA,ft){return ft=Q(ft),DA(JA,ft)?r(2,JA[ft]):FA(JA,ft)},zA=function(JA,ft,wt){return ft=Q(ft),!(DA(JA,ft)&&p(wt)&&I(wt,"value"))||I(wt,"get")||I(wt,"set")||wt.configurable||I(wt,"writable")&&!wt.writable||I(wt,"enumerable")&&!wt.enumerable?IA(JA,ft,wt):(JA[ft]=wt.value,JA)};o?(eA||(gA.f=NA,$.f=zA,cA(W,"buffer"),cA(W,"byteOffset"),cA(W,"byteLength"),cA(W,"length")),B({target:"Object",stat:!0,forced:!eA},{getOwnPropertyDescriptor:NA,defineProperty:zA}),b.exports=function(pA,JA,ft){var wt=pA.match(/\d+$/)[0]/8,gt=pA+(ft?"Clamped":"")+"Array",pt="get"+pA,Yt="set"+pA,VA=a[gt],_A=VA,Qt=_A&&_A.prototype,ht={},vA=function(Bt,Z){IA(Bt,Z,{get:function(){return function(Bt,Z){var k=iA(Bt);return k.view[pt](Z*wt+k.byteOffset,!0)}(this,Z)},set:function(k){return function(Bt,Z,k){var U=iA(Bt);ft&&(k=(k=YA(k))<0?0:k>255?255:255&k),U.view[Yt](Z*wt+U.byteOffset,k,!0)}(this,Z,k)},enumerable:!0})};eA?g&&(_A=JA(function(Bt,Z,k,U){return u(Bt,Qt),fA(p(Z)?CA(Z)?void 0!==U?new VA(Z,h(k,wt),U):void 0!==k?new VA(Z,h(k,wt)):new VA(Z):rA(Z)?yA(_A,Z):s(S,_A,Z):new VA(e(Z)),Bt,_A)}),Y&&Y(_A,OA),z(v(VA),function(Bt){Bt in _A||d(_A,Bt,VA[Bt])}),_A.prototype=Qt):(_A=JA(function(Bt,Z,k,U){u(Bt,Qt);var GA,At,O,hA=0,q=0;if(p(Z)){if(!CA(Z))return rA(Z)?yA(_A,Z):s(S,_A,Z);GA=Z,q=h(k,wt);var qA=Z.byteLength;if(void 0===U){if(qA%wt||(At=qA-q)<0)throw HA(QA)}else if((At=C(U)*wt)+q>qA)throw HA(QA);O=At/wt}else O=e(Z),GA=new J(At=O*wt);for(wA(Bt,{buffer:GA,byteOffset:q,byteLength:At,length:O,view:new aA(GA)});hA1?arguments[1]:void 0,I=void 0!==Q,R=w(e);if(R&&!u(R))for(v=(Y=f(e,R)).next,e=[];!(x=a(v,Y)).done;)e.push(x.value);for(I&&h>2&&(Q=B(Q,arguments[2])),m=g(e),y=new(r(C))(m),p=0;m>p;p++)y[p]=I?Q(e[p],p):e[p];return y}},34815:function(b,A,n){var B=n(36597),a=n(27754),s=B.TYPED_ARRAY_CONSTRUCTOR,o=B.aTypedArrayConstructor;b.exports=function(g){return o(a(g,g[s]))}},46859:function(b,A,n){var B=n(38347),a=0,s=Math.random(),o=B(1..toString);b.exports=function(g){return"Symbol("+(void 0===g?"":g)+")_"+o(++a+s,36)}},9567:function(b,A,n){var B=n(46887);b.exports=B&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},75960:function(b,A,n){var B=n(38688);A.f=B},38688:function(b,A,n){var B=n(32010),a=n(464),s=n(20340),o=n(46859),g=n(46887),f=n(9567),w=a("wks"),u=B.Symbol,r=u&&u.for,d=f?u:u&&u.withoutSetter||o;b.exports=function(E){if(!s(w,E)||!g&&"string"!=typeof w[E]){var C="Symbol."+E;w[E]=g&&s(u,E)?u[E]:f&&r?r(C):d(C)}return w[E]}},43187:function(b){b.exports="\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},94910:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(70176),o=n(69548),g=n(3840),f=n(2675),w=n(10819),u=n(48914),r=n(97841),d=n(34074),E=n(87811),C=n(80383),e=n(86392),h=n(45144),Q=a.Error,I=[].push,R=function(y,x){var Y=s(p,this)?this:w(p),v=arguments.length>2?arguments[2]:void 0;g&&(Y=g(new Q(void 0),o(Y))),u(Y,"message",e(x,"")),h&&u(Y,"stack",d(Y.stack,1)),E(Y,v);var S=[];return C(y,I,{that:S}),u(Y,"errors",S),Y};g?g(R,Q):f(R,Q);var p=R.prototype=w(Q.prototype,{constructor:r(1,R),message:r(1,""),name:r(1,"AggregateError")});B({global:!0},{AggregateError:R})},39081:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(47044),o=n(59113),g=n(24517),f=n(43162),w=n(45495),u=n(38639),r=n(45744),d=n(56280),E=n(38688),C=n(70091),e=E("isConcatSpreadable"),h=9007199254740991,Q="Maximum allowed index exceeded",I=a.TypeError,R=C>=51||!s(function(){var x=[];return x[e]=!1,x.concat()[0]!==x}),p=d("concat"),m=function(x){if(!g(x))return!1;var Y=x[e];return void 0!==Y?!!Y:o(x)};B({target:"Array",proto:!0,forced:!R||!p},{concat:function(Y){var F,$,gA,_,fA,v=f(this),S=r(v,0),z=0;for(F=-1,gA=arguments.length;Fh)throw I(Q);for($=0;$<_;$++,z++)$ in fA&&u(S,z,fA[$])}else{if(z>=h)throw I(Q);u(S,z++,fA)}return S.length=z,S}})},68626:function(b,A,n){var B=n(56475),a=n(92642),s=n(71156);B({target:"Array",proto:!0},{copyWithin:a}),s("copyWithin")},41584:function(b,A,n){var B=n(56475),a=n(72864),s=n(71156);B({target:"Array",proto:!0},{fill:a}),s("fill")},49063:function(b,A,n){"use strict";var B=n(56475),a=n(91102).filter;B({target:"Array",proto:!0,forced:!n(56280)("filter")},{filter:function(f){return a(this,f,arguments.length>1?arguments[1]:void 0)}})},11765:function(b,A,n){var B=n(56475),a=n(95717);B({target:"Array",stat:!0,forced:!n(46769)(function(g){Array.from(g)})},{from:a})},58028:function(b,A,n){"use strict";var B=n(56475),a=n(12636).includes,s=n(71156);B({target:"Array",proto:!0},{includes:function(g){return a(this,g,arguments.length>1?arguments[1]:void 0)}}),s("includes")},81755:function(b,A,n){"use strict";var B=n(98086),a=n(71156),s=n(15366),o=n(70172),g=n(97001),f="Array Iterator",w=o.set,u=o.getterFor(f);b.exports=g(Array,"Array",function(r,d){w(this,{type:f,target:B(r),index:0,kind:d})},function(){var r=u(this),d=r.target,E=r.kind,C=r.index++;return!d||C>=d.length?(r.target=void 0,{value:void 0,done:!0}):"keys"==E?{value:C,done:!1}:"values"==E?{value:d[C],done:!1}:{value:[C,d[C]],done:!1}},"values"),s.Arguments=s.Array,a("keys"),a("values"),a("entries")},94845:function(b,A,n){"use strict";var B=n(56475),a=n(38347),s=n(7514),o=n(98086),g=n(81007),f=a([].join),w=s!=Object,u=g("join",",");B({target:"Array",proto:!0,forced:w||!u},{join:function(d){return f(o(this),void 0===d?",":d)}})},80055:function(b,A,n){"use strict";var B=n(56475),a=n(91102).map;B({target:"Array",proto:!0,forced:!n(56280)("map")},{map:function(f){return a(this,f,arguments.length>1?arguments[1]:void 0)}})},20731:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(59113),o=n(20884),g=n(24517),f=n(74841),w=n(45495),u=n(98086),r=n(38639),d=n(38688),E=n(56280),C=n(73163),e=E("slice"),h=d("species"),Q=a.Array,I=Math.max;B({target:"Array",proto:!0,forced:!e},{slice:function(p,m){var S,z,F,y=u(this),x=w(y),Y=f(p,x),v=f(void 0===m?x:m,x);if(s(y)&&((o(S=y.constructor)&&(S===Q||s(S.prototype))||g(S)&&null===(S=S[h]))&&(S=void 0),S===Q||void 0===S))return C(y,Y,v);for(z=new(void 0===S?Q:S)(I(v-Y,0)),F=0;Y3)){if(E)return!0;if(e)return e<603;var S,z,F,$,v="";for(S=65;S<76;S++){switch(z=String.fromCharCode(S),S){case 66:case 69:case 70:case 72:F=3;break;case 68:case 71:F=4;break;default:F=2}for($=0;$<47;$++)h.push({k:z+$,v:F})}for(h.sort(function(gA,_){return _.v-gA.v}),$=0;$f(z)?1:-1}}(S)),gA=F.length,_=0;_9007199254740991)throw E("Maximum allowed length exceeded");for(z=w(m,S),F=0;Fy-S+v;F--)delete m[F-1]}else if(v>S)for(F=y-S;F>x;F--)gA=F+v-1,($=F+S-1)in m?m[gA]=m[$]:delete m[gA];for(F=0;F2)if(fA=I(fA),43===(iA=Y(fA,0))||45===iA){if(88===(wA=Y(fA,2))||120===wA)return NaN}else if(48===iA){switch(Y(fA,1)){case 66:case 98:IA=2,FA=49;break;case 79:case 111:IA=8,FA=55;break;default:return+fA}for(HA=(YA=x(fA,2)).length,J=0;JFA)return NaN;return parseInt(YA,IA)}return+fA};if(o(R,!p(" 0o1")||!p("0b1")||p("+0x1"))){for(var gA,z=function(fA){var iA=arguments.length<1?0:p(function(_){var fA=d(_,"number");return"bigint"==typeof fA?fA:S(fA)}(fA)),wA=this;return u(m,wA)&&E(function(){Q(wA)})?w(Object(iA),wA,z):iA},F=B?C(p):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),$=0;F.length>$;$++)f(p,gA=F[$])&&!f(z,gA)&&h(z,gA,e(p,gA));z.prototype=m,m.constructor=z,g(a,R,z)}},58549:function(b,A,n){n(56475)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},70095:function(b,A,n){n(56475)({target:"Number",stat:!0},{isFinite:n(59805)})},2876:function(b,A,n){n(56475)({target:"Number",stat:!0},{isInteger:n(17506)})},10849:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(38347),o=n(26882),g=n(16679),f=n(34858),w=n(47044),u=a.RangeError,r=a.String,d=Math.floor,E=s(f),C=s("".slice),e=s(1..toFixed),h=function(y,x,Y){return 0===x?Y:x%2==1?h(y,x-1,Y*y):h(y*y,x/2,Y)},I=function(y,x,Y){for(var v=-1,S=Y;++v<6;)y[v]=(S+=x*y[v])%1e7,S=d(S/1e7)},R=function(y,x){for(var Y=6,v=0;--Y>=0;)y[Y]=d((v+=y[Y])/x),v=v%x*1e7},p=function(y){for(var x=6,Y="";--x>=0;)if(""!==Y||0===x||0!==y[x]){var v=r(y[x]);Y=""===Y?v:Y+E("0",7-v.length)+v}return Y};B({target:"Number",proto:!0,forced:w(function(){return"0.000"!==e(8e-5,3)||"1"!==e(.9,0)||"1.25"!==e(1.255,2)||"1000000000000000128"!==e(0xde0b6b3a7640080,0)})||!w(function(){e({})})},{toFixed:function(x){var $,gA,_,fA,Y=g(this),v=o(x),S=[0,0,0,0,0,0],z="",F="0";if(v<0||v>20)throw u("Incorrect fraction digits");if(Y!=Y)return"NaN";if(Y<=-1e21||Y>=1e21)return r(Y);if(Y<0&&(z="-",Y=-Y),Y>1e-21)if(gA=($=function(y){for(var x=0,Y=y;Y>=4096;)x+=12,Y/=4096;for(;Y>=2;)x+=1,Y/=2;return x}(Y*h(2,69,1))-69)<0?Y*h(2,-$,1):Y/h(2,$,1),gA*=4503599627370496,($=52-$)>0){for(I(S,0,gA),_=v;_>=7;)I(S,1e7,0),_-=7;for(I(S,h(10,_,1),0),_=$-1;_>=23;)R(S,8388608),_-=23;R(S,1<<_),I(S,1,1),R(S,2),F=p(S)}else I(S,0,gA),I(S,1<<-$,0),F=p(S)+E("0",v);return v>0?z+((fA=F.length)<=v?"0."+E("0",v-fA)+F:C(F,0,fA-v)+"."+C(F,fA-v)):z+F}})},18756:function(b,A,n){var B=n(56475),a=n(87146);B({target:"Object",stat:!0,forced:Object.assign!==a},{assign:a})},75174:function(b,A,n){var B=n(56475),a=n(55481),s=n(47044),o=n(24517),g=n(62148).onFreeze,f=Object.freeze;B({target:"Object",stat:!0,forced:s(function(){f(1)}),sham:!a},{freeze:function(r){return f&&o(r)?f(g(r)):r}})},57444:function(b,A,n){var B=n(56475),a=n(47044),s=n(98086),o=n(72062).f,g=n(15567),f=a(function(){o(1)});B({target:"Object",stat:!0,forced:!g||f,sham:!g},{getOwnPropertyDescriptor:function(r,d){return o(s(r),d)}})},28331:function(b,A,n){var B=n(56475),a=n(15567),s=n(21594),o=n(98086),g=n(72062),f=n(38639);B({target:"Object",stat:!0,sham:!a},{getOwnPropertyDescriptors:function(u){for(var h,Q,r=o(u),d=g.f,E=s(r),C={},e=0;E.length>e;)void 0!==(Q=d(r,h=E[e++]))&&f(C,h,Q);return C}})},71950:function(b,A,n){var B=n(56475),a=n(47044),s=n(43162),o=n(69548),g=n(68494);B({target:"Object",stat:!0,forced:a(function(){o(1)}),sham:!g},{getPrototypeOf:function(u){return o(s(u))}})},37309:function(b,A,n){var B=n(56475),a=n(43162),s=n(84675);B({target:"Object",stat:!0,forced:n(47044)(function(){s(1)})},{keys:function(w){return s(a(w))}})},14032:function(b,A,n){var B=n(24663),a=n(13711),s=n(52598);B||a(Object.prototype,"toString",s,{unsafe:!0})},59883:function(b,A,n){var B=n(56475),a=n(80754).values;B({target:"Object",stat:!0},{values:function(o){return a(o)}})},77074:function(b,A,n){"use strict";var B=n(56475),a=n(2834),s=n(32631),o=n(56614),g=n(61900),f=n(80383);B({target:"Promise",stat:!0},{allSettled:function(u){var r=this,d=o.f(r),E=d.resolve,C=d.reject,e=g(function(){var h=s(r.resolve),Q=[],I=0,R=1;f(u,function(p){var m=I++,y=!1;R++,a(h,r,p).then(function(x){y||(y=!0,Q[m]={status:"fulfilled",value:x},--R||E(Q))},function(x){y||(y=!0,Q[m]={status:"rejected",reason:x},--R||E(Q))})}),--R||E(Q)});return e.error&&C(e.value),d.promise}})},44455:function(b,A,n){"use strict";var B=n(56475),a=n(32631),s=n(38486),o=n(2834),g=n(56614),f=n(61900),w=n(80383),u="No one promise resolved";B({target:"Promise",stat:!0},{any:function(d){var E=this,C=s("AggregateError"),e=g.f(E),h=e.resolve,Q=e.reject,I=f(function(){var R=a(E.resolve),p=[],m=0,y=1,x=!1;w(d,function(Y){var v=m++,S=!1;y++,o(R,E,Y).then(function(z){S||x||(x=!0,h(z))},function(z){S||x||(S=!0,p[v]=z,--y||Q(new C(p,u)))})}),--y||Q(new C(p,u))});return I.error&&Q(I.value),e.promise}})},58605:function(b,A,n){"use strict";var B=n(56475),a=n(63432),s=n(5155),o=n(47044),g=n(38486),f=n(94578),w=n(27754),u=n(28617),r=n(13711);if(B({target:"Promise",proto:!0,real:!0,forced:!!s&&o(function(){s.prototype.finally.call({then:function(){}},function(){})})},{finally:function(C){var e=w(this,g("Promise")),h=f(C);return this.then(h?function(Q){return u(e,C()).then(function(){return Q})}:C,h?function(Q){return u(e,C()).then(function(){throw Q})}:C)}}),!a&&f(s)){var E=g("Promise").prototype.finally;s.prototype.finally!==E&&r(s.prototype,"finally",E,{unsafe:!0})}},68067:function(b,A,n){"use strict";var pA,JA,ft,wt,B=n(56475),a=n(63432),s=n(32010),o=n(38486),g=n(2834),f=n(5155),w=n(13711),u=n(15341),r=n(3840),d=n(15216),E=n(51334),C=n(32631),e=n(94578),h=n(24517),Q=n(2868),I=n(10447),R=n(80383),p=n(46769),m=n(27754),y=n(6616).set,x=n(59804),Y=n(28617),v=n(61144),S=n(56614),z=n(61900),F=n(70172),$=n(39599),gA=n(38688),_=n(3157),fA=n(95053),iA=n(70091),wA=gA("species"),IA="Promise",FA=F.get,YA=F.set,HA=F.getterFor(IA),J=f&&f.prototype,BA=f,aA=J,eA=s.TypeError,EA=s.document,xA=s.process,OA=S.f,W=OA,L=!!(EA&&EA.createEvent&&s.dispatchEvent),rA=e(s.PromiseRejectionEvent),AA="unhandledrejection",zA=!1,gt=$(IA,function(){var Z=I(BA),k=Z!==String(BA);if(!k&&66===iA||a&&!aA.finally)return!0;if(iA>=51&&/native code/.test(Z))return!1;var U=new BA(function(GA){GA(1)}),hA=function(GA){GA(function(){},function(){})};return(U.constructor={})[wA]=hA,!(zA=U.then(function(){})instanceof hA)||!k&&_&&!rA}),pt=gt||!p(function(Z){BA.all(Z).catch(function(){})}),Yt=function(Z){var k;return!(!h(Z)||!e(k=Z.then))&&k},VA=function(Z,k){if(!Z.notified){Z.notified=!0;var U=Z.reactions;x(function(){for(var hA=Z.value,q=1==Z.state,GA=0;U.length>GA;){var jA,ot,Tt,At=U[GA++],O=q?At.ok:At.fail,qA=At.resolve,nt=At.reject,MA=At.domain;try{O?(q||(2===Z.rejection&&vt(Z),Z.rejection=1),!0===O?jA=hA:(MA&&MA.enter(),jA=O(hA),MA&&(MA.exit(),Tt=!0)),jA===At.promise?nt(eA("Promise-chain cycle")):(ot=Yt(jA))?g(ot,jA,qA,nt):qA(jA)):nt(hA)}catch(yt){MA&&!Tt&&MA.exit(),nt(yt)}}Z.reactions=[],Z.notified=!1,k&&!Z.rejection&&Qt(Z)})}},_A=function(Z,k,U){var hA,q;L?((hA=EA.createEvent("Event")).promise=k,hA.reason=U,hA.initEvent(Z,!1,!0),s.dispatchEvent(hA)):hA={promise:k,reason:U},!rA&&(q=s["on"+Z])?q(hA):Z===AA&&v("Unhandled promise rejection",U)},Qt=function(Z){g(y,s,function(){var q,k=Z.facade,U=Z.value;if(ht(Z)&&(q=z(function(){fA?xA.emit("unhandledRejection",U,k):_A(AA,k,U)}),Z.rejection=fA||ht(Z)?2:1,q.error))throw q.value})},ht=function(Z){return 1!==Z.rejection&&!Z.parent},vt=function(Z){g(y,s,function(){var k=Z.facade;fA?xA.emit("rejectionHandled",k):_A("rejectionhandled",k,Z.value)})},Nt=function(Z,k,U){return function(hA){Z(k,hA,U)}},vA=function(Z,k,U){Z.done||(Z.done=!0,U&&(Z=U),Z.value=k,Z.state=2,VA(Z,!0))},Bt=function(Z,k,U){if(!Z.done){Z.done=!0,U&&(Z=U);try{if(Z.facade===k)throw eA("Promise can't be resolved itself");var hA=Yt(k);hA?x(function(){var q={done:!1};try{g(hA,k,Nt(Bt,q,Z),Nt(vA,q,Z))}catch(GA){vA(q,GA,Z)}}):(Z.value=k,Z.state=1,VA(Z,!1))}catch(q){vA({done:!1},q,Z)}}};if(gt&&(BA=function(k){Q(this,aA),C(k),g(pA,this);var U=FA(this);try{k(Nt(Bt,U),Nt(vA,U))}catch(hA){vA(U,hA)}},(pA=function(k){YA(this,{type:IA,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=u(aA=BA.prototype,{then:function(k,U){var hA=HA(this),q=hA.reactions,GA=OA(m(this,BA));return GA.ok=!e(k)||k,GA.fail=e(U)&&U,GA.domain=fA?xA.domain:void 0,hA.parent=!0,q[q.length]=GA,0!=hA.state&&VA(hA,!1),GA.promise},catch:function(Z){return this.then(void 0,Z)}}),JA=function(){var Z=new pA,k=FA(Z);this.promise=Z,this.resolve=Nt(Bt,k),this.reject=Nt(vA,k)},S.f=OA=function(Z){return Z===BA||Z===ft?new JA(Z):W(Z)},!a&&e(f)&&J!==Object.prototype)){wt=J.then,zA||(w(J,"then",function(k,U){var hA=this;return new BA(function(q,GA){g(wt,hA,q,GA)}).then(k,U)},{unsafe:!0}),w(J,"catch",aA.catch,{unsafe:!0}));try{delete J.constructor}catch{}r&&r(J,aA)}B({global:!0,wrap:!0,forced:gt},{Promise:BA}),d(BA,IA,!1,!0),E(IA),ft=o(IA),B({target:IA,stat:!0,forced:gt},{reject:function(k){var U=OA(this);return g(U.reject,void 0,k),U.promise}}),B({target:IA,stat:!0,forced:a||gt},{resolve:function(k){return Y(a&&this===ft?BA:this,k)}}),B({target:IA,stat:!0,forced:pt},{all:function(k){var U=this,hA=OA(U),q=hA.resolve,GA=hA.reject,At=z(function(){var O=C(U.resolve),qA=[],nt=0,MA=1;R(k,function(jA){var ot=nt++,Tt=!1;MA++,g(O,U,jA).then(function(yt){Tt||(Tt=!0,qA[ot]=yt,--MA||q(qA))},GA)}),--MA||q(qA)});return At.error&&GA(At.value),hA.promise},race:function(k){var U=this,hA=OA(U),q=hA.reject,GA=z(function(){var At=C(U.resolve);R(k,function(O){g(At,U,O).then(hA.resolve,q)})});return GA.error&&q(GA.value),hA.promise}})},73228:function(b,A,n){var B=n(56475),a=n(38486),s=n(58448),o=n(5481),g=n(69075),f=n(34984),w=n(24517),u=n(10819),r=n(47044),d=a("Reflect","construct"),E=Object.prototype,C=[].push,e=r(function(){function I(){}return!(d(function(){},[],I)instanceof I)}),h=!r(function(){d(function(){})}),Q=e||h;B({target:"Reflect",stat:!0,forced:Q,sham:Q},{construct:function(R,p){g(R),f(p);var m=arguments.length<3?R:g(arguments[2]);if(h&&!e)return d(R,p,m);if(R==m){switch(p.length){case 0:return new R;case 1:return new R(p[0]);case 2:return new R(p[0],p[1]);case 3:return new R(p[0],p[1],p[2]);case 4:return new R(p[0],p[1],p[2],p[3])}var y=[null];return s(C,y,p),new(s(o,R,y))}var x=m.prototype,Y=u(w(x)?x:E),v=s(R,Y,p);return w(v)?v:Y}})},61726:function(b,A,n){"use strict";var B=n(56475),a=n(49820);B({target:"RegExp",proto:!0,forced:/./.exec!==a},{exec:a})},74516:function(b,A,n){var B=n(15567),a=n(95892),s=n(21182),o=n(47044),g=RegExp.prototype;B&&o(function(){return"sy"!==Object.getOwnPropertyDescriptor(g,"flags").get.call({dotAll:!0,sticky:!0})})&&a.f(g,"flags",{configurable:!0,get:s})},57114:function(b,A,n){"use strict";var B=n(38347),a=n(7081).PROPER,s=n(13711),o=n(34984),g=n(70176),f=n(25096),w=n(47044),u=n(21182),r="toString",d=RegExp.prototype,E=d[r],C=B(u);(w(function(){return"/a/b"!=E.call({source:"a",flags:"b"})})||a&&E.name!=r)&&s(RegExp.prototype,r,function(){var I=o(this),R=f(I.source),p=I.flags;return"/"+R+"/"+f(void 0===p&&g(d,I)&&!("flags"in d)?C(I):p)},{unsafe:!0})},76014:function(b,A,n){"use strict";n(36673)("Set",function(s){return function(){return s(this,arguments.length?arguments[0]:void 0)}},n(9649))},26663:function(b,A,n){"use strict";var B=n(56475),a=n(69510).codeAt;B({target:"String",proto:!0},{codePointAt:function(o){return a(this,o)}})},65578:function(b,A,n){var B=n(56475),a=n(32010),s=n(38347),o=n(74841),g=a.RangeError,f=String.fromCharCode,w=String.fromCodePoint,u=s([].join);B({target:"String",stat:!0,forced:!!w&&1!=w.length},{fromCodePoint:function(E){for(var Q,C=[],e=arguments.length,h=0;e>h;){if(Q=+arguments[h++],o(Q,1114111)!==Q)throw g(Q+" is not a valid code point");C[h]=Q<65536?f(Q):f(55296+((Q-=65536)>>10),Q%1024+56320)}return u(C,"")}})},47458:function(b,A,n){"use strict";var B=n(56475),a=n(38347),s=n(93666),o=n(83943),g=n(25096),f=n(91151),w=a("".indexOf);B({target:"String",proto:!0,forced:!f("includes")},{includes:function(r){return!!~w(g(o(this)),g(s(r)),arguments.length>1?arguments[1]:void 0)}})},62046:function(b,A,n){"use strict";var B=n(56475),a=n(91159);B({target:"String",proto:!0,forced:n(7452)("italics")},{italics:function(){return a(this,"i","","")}})},58281:function(b,A,n){"use strict";var B=n(69510).charAt,a=n(25096),s=n(70172),o=n(97001),g="String Iterator",f=s.set,w=s.getterFor(g);o(String,"String",function(u){f(this,{type:g,string:a(u),index:0})},function(){var C,r=w(this),d=r.string,E=r.index;return E>=d.length?{value:void 0,done:!0}:(C=B(d,E),r.index+=C.length,{value:C,done:!1})})},47259:function(b,A,n){"use strict";var B=n(56475),a=n(91159);B({target:"String",proto:!0,forced:n(7452)("link")},{link:function(g){return a(this,"a","href",g)}})},71768:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(2834),o=n(38347),g=n(13945),f=n(83943),w=n(23417),u=n(25096),r=n(34984),d=n(93975),E=n(70176),C=n(28831),e=n(21182),h=n(51839),Q=n(13711),I=n(47044),R=n(38688),p=n(27754),m=n(36352),y=n(66723),x=n(70172),Y=n(63432),v=R("matchAll"),S="RegExp String",z=S+" Iterator",F=x.set,$=x.getterFor(z),gA=RegExp.prototype,_=a.TypeError,fA=o(e),iA=o("".indexOf),wA=o("".matchAll),IA=!!wA&&!I(function(){wA("a",/./)}),FA=g(function(J,BA,aA,eA){F(this,{type:z,regexp:J,string:BA,global:aA,unicode:eA,done:!1})},S,function(){var J=$(this);if(J.done)return{value:void 0,done:!0};var BA=J.regexp,aA=J.string,eA=y(BA,aA);return null===eA?{value:void 0,done:J.done=!0}:J.global?(""===u(eA[0])&&(BA.lastIndex=m(aA,w(BA.lastIndex),J.unicode)),{value:eA,done:!1}):(J.done=!0,{value:eA,done:!1})}),YA=function(HA){var aA,eA,EA,xA,OA,W,J=r(this),BA=u(HA);return aA=p(J,RegExp),void 0===(eA=J.flags)&&E(gA,J)&&!("flags"in gA)&&(eA=fA(J)),EA=void 0===eA?"":u(eA),xA=new aA(aA===RegExp?J.source:J,EA),OA=!!~iA(EA,"g"),W=!!~iA(EA,"u"),xA.lastIndex=w(J.lastIndex),new FA(xA,BA,OA,W)};B({target:"String",proto:!0,forced:IA},{matchAll:function(J){var aA,eA,EA,xA,BA=f(this);if(null!=J){if(C(J)&&(aA=u(f("flags"in gA?J.flags:fA(J))),!~iA(aA,"g")))throw _("`.matchAll` does not allow non-global regexes");if(IA)return wA(BA,J);if(void 0===(EA=h(J,v))&&Y&&"RegExp"==d(J)&&(EA=YA),EA)return s(EA,J,BA)}else if(IA)return wA(BA,J);return eA=u(BA),xA=new RegExp(J,"g"),Y?s(YA,xA,eA):xA[v](eA)}}),Y||v in gA||Q(gA,v,YA)},6422:function(b,A,n){"use strict";var B=n(2834),a=n(11813),s=n(34984),o=n(23417),g=n(25096),f=n(83943),w=n(51839),u=n(36352),r=n(66723);a("match",function(d,E,C){return[function(h){var Q=f(this),I=null==h?void 0:w(h,d);return I?B(I,h,Q):new RegExp(h)[d](g(Q))},function(e){var h=s(this),Q=g(e),I=C(E,h,Q);if(I.done)return I.value;if(!h.global)return r(h,Q);var R=h.unicode;h.lastIndex=0;for(var y,p=[],m=0;null!==(y=r(h,Q));){var x=g(y[0]);p[m]=x,""===x&&(h.lastIndex=u(Q,o(h.lastIndex),R)),m++}return 0===m?null:p}]})},28264:function(b,A,n){n(56475)({target:"String",proto:!0},{repeat:n(34858)})},46467:function(b,A,n){"use strict";var B=n(58448),a=n(2834),s=n(38347),o=n(11813),g=n(47044),f=n(34984),w=n(94578),u=n(26882),r=n(23417),d=n(25096),E=n(83943),C=n(36352),e=n(51839),h=n(29519),Q=n(66723),R=n(38688)("replace"),p=Math.max,m=Math.min,y=s([].concat),x=s([].push),Y=s("".indexOf),v=s("".slice),S=function(gA){return void 0===gA?gA:String(gA)},z="$0"==="a".replace(/./,"$0"),F=!!/./[R]&&""===/./[R]("a","$0");o("replace",function(gA,_,fA){var iA=F?"$":"$0";return[function(IA,FA){var YA=E(this),HA=null==IA?void 0:e(IA,R);return HA?a(HA,IA,YA,FA):a(_,d(YA),IA,FA)},function(wA,IA){var FA=f(this),YA=d(wA);if("string"==typeof IA&&-1===Y(IA,iA)&&-1===Y(IA,"$<")){var HA=fA(_,FA,YA,IA);if(HA.done)return HA.value}var J=w(IA);J||(IA=d(IA));var BA=FA.global;if(BA){var aA=FA.unicode;FA.lastIndex=0}for(var eA=[];;){var EA=Q(FA,YA);if(null===EA||(x(eA,EA),!BA))break;""===d(EA[0])&&(FA.lastIndex=C(YA,r(FA.lastIndex),aA))}for(var OA="",W=0,L=0;L=W&&(OA+=v(YA,W,AA)+DA,W=AA+rA.length)}return OA+v(YA,W)}]},!!g(function(){var gA=/./;return gA.exec=function(){var _=[];return _.groups={a:"7"},_},"7"!=="".replace(gA,"$")})||!z||F)},7851:function(b,A,n){"use strict";var B=n(58448),a=n(2834),s=n(38347),o=n(11813),g=n(28831),f=n(34984),w=n(83943),u=n(27754),r=n(36352),d=n(23417),E=n(25096),C=n(51839),e=n(73163),h=n(66723),Q=n(49820),I=n(74846),R=n(47044),p=I.UNSUPPORTED_Y,m=4294967295,y=Math.min,x=[].push,Y=s(/./.exec),v=s(x),S=s("".slice),z=!R(function(){var F=/(?:)/,$=F.exec;F.exec=function(){return $.apply(this,arguments)};var gA="ab".split(F);return 2!==gA.length||"a"!==gA[0]||"b"!==gA[1]});o("split",function(F,$,gA){var _;return _="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(fA,iA){var wA=E(w(this)),IA=void 0===iA?m:iA>>>0;if(0===IA)return[];if(void 0===fA)return[wA];if(!g(fA))return a($,wA,fA,IA);for(var BA,aA,eA,FA=[],HA=0,J=new RegExp(fA.source,(fA.ignoreCase?"i":"")+(fA.multiline?"m":"")+(fA.unicode?"u":"")+(fA.sticky?"y":"")+"g");(BA=a(Q,J,wA))&&!((aA=J.lastIndex)>HA&&(v(FA,S(wA,HA,BA.index)),BA.length>1&&BA.index=IA));)J.lastIndex===BA.index&&J.lastIndex++;return HA===wA.length?(eA||!Y(J,""))&&v(FA,""):v(FA,S(wA,HA)),FA.length>IA?e(FA,0,IA):FA}:"0".split(void 0,0).length?function(fA,iA){return void 0===fA&&0===iA?[]:a($,this,fA,iA)}:$,[function(iA,wA){var IA=w(this),FA=null==iA?void 0:C(iA,F);return FA?a(FA,iA,IA,wA):a(_,E(IA),iA,wA)},function(fA,iA){var wA=f(this),IA=E(fA),FA=gA(_,wA,IA,iA,_!==$);if(FA.done)return FA.value;var YA=u(wA,RegExp),HA=wA.unicode,BA=new YA(p?"^(?:"+wA.source+")":wA,(wA.ignoreCase?"i":"")+(wA.multiline?"m":"")+(wA.unicode?"u":"")+(p?"g":"y")),aA=void 0===iA?m:iA>>>0;if(0===aA)return[];if(0===IA.length)return null===h(BA,IA)?[IA]:[];for(var eA=0,EA=0,xA=[];EA2?arguments[2]:void 0)})},29883:function(b,A,n){"use strict";var B=n(36597),a=n(91102).every,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("every",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},35471:function(b,A,n){"use strict";var B=n(36597),a=n(2834),s=n(72864),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("fill",function(w){var u=arguments.length;return a(s,o(this),w,u>1?arguments[1]:void 0,u>2?arguments[2]:void 0)})},21012:function(b,A,n){"use strict";var B=n(36597),a=n(91102).filter,s=n(59610),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("filter",function(w){var u=a(o(this),w,arguments.length>1?arguments[1]:void 0);return s(this,u)})},97464:function(b,A,n){"use strict";var B=n(36597),a=n(91102).findIndex,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("findIndex",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},88997:function(b,A,n){"use strict";var B=n(36597),a=n(91102).find,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("find",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},3131:function(b,A,n){n(98828)("Float32",function(a){return function(o,g,f){return a(this,o,g,f)}})},90868:function(b,A,n){n(98828)("Float64",function(a){return function(o,g,f){return a(this,o,g,f)}})},2857:function(b,A,n){"use strict";var B=n(36597),a=n(91102).forEach,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("forEach",function(f){a(s(this),f,arguments.length>1?arguments[1]:void 0)})},83326:function(b,A,n){"use strict";var B=n(28834);(0,n(36597).exportTypedArrayStaticMethod)("from",n(83590),B)},94715:function(b,A,n){"use strict";var B=n(36597),a=n(12636).includes,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("includes",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},13624:function(b,A,n){"use strict";var B=n(36597),a=n(12636).indexOf,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("indexOf",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},75626:function(b,A,n){n(98828)("Int16",function(a){return function(o,g,f){return a(this,o,g,f)}})},95756:function(b,A,n){n(98828)("Int32",function(a){return function(o,g,f){return a(this,o,g,f)}})},65553:function(b,A,n){n(98828)("Int8",function(a){return function(o,g,f){return a(this,o,g,f)}})},91132:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(7081).PROPER,o=n(36597),g=n(81755),w=n(38688)("iterator"),u=B.Uint8Array,r=a(g.values),d=a(g.keys),E=a(g.entries),C=o.aTypedArray,e=o.exportTypedArrayMethod,h=u&&u.prototype[w],Q=!!h&&"values"===h.name,I=function(){return r(C(this))};e("entries",function(){return E(C(this))}),e("keys",function(){return d(C(this))}),e("values",I,s&&!Q),e(w,I,s&&!Q)},62514:function(b,A,n){"use strict";var B=n(36597),a=n(38347),s=B.aTypedArray,o=B.exportTypedArrayMethod,g=a([].join);o("join",function(w){return g(s(this),w)})},24597:function(b,A,n){"use strict";var B=n(36597),a=n(58448),s=n(84320),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("lastIndexOf",function(w){var u=arguments.length;return a(s,o(this),u>1?[w,arguments[1]]:[w])})},88042:function(b,A,n){"use strict";var B=n(36597),a=n(91102).map,s=n(34815),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("map",function(w){return a(o(this),w,arguments.length>1?arguments[1]:void 0,function(u,r){return new(s(u))(r)})})},92451:function(b,A,n){"use strict";var B=n(36597),a=n(32843).right,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("reduceRight",function(f){var w=arguments.length;return a(s(this),f,w,w>1?arguments[1]:void 0)})},4660:function(b,A,n){"use strict";var B=n(36597),a=n(32843).left,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("reduce",function(f){var w=arguments.length;return a(s(this),f,w,w>1?arguments[1]:void 0)})},44206:function(b,A,n){"use strict";var B=n(36597),a=B.aTypedArray,o=Math.floor;(0,B.exportTypedArrayMethod)("reverse",function(){for(var d,f=this,w=a(f).length,u=o(w/2),r=0;r1?arguments[1]:void 0,1),h=this.length,Q=g(C),I=s(Q),R=0;if(I+e>h)throw w("Wrong length");for(;Re;)Q[e]=E[e++];return Q},s(function(){new Int8Array(1).slice()}))},3858:function(b,A,n){"use strict";var B=n(36597),a=n(91102).some,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("some",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},84538:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(47044),o=n(32631),g=n(43977),f=n(36597),w=n(3809),u=n(21983),r=n(70091),d=n(41731),E=B.Array,C=f.aTypedArray,e=f.exportTypedArrayMethod,h=B.Uint16Array,Q=h&&a(h.prototype.sort),I=!(!Q||s(function(){Q(new h(2),null)})&&s(function(){Q(new h(2),{})})),R=!!Q&&!s(function(){if(r)return r<74;if(w)return w<67;if(u)return!0;if(d)return d<602;var x,Y,m=new h(516),y=E(516);for(x=0;x<516;x++)Y=x%4,m[x]=515-x,y[x]=x-2*Y+3;for(Q(m,function(v,S){return(v/4|0)-(S/4|0)}),x=0;x<516;x++)if(m[x]!==y[x])return!0});e("sort",function(y){return void 0!==y&&o(y),R?Q(this,y):g(C(this),(m=y,function(y,x){return void 0!==m?+m(y,x)||0:x!=x?-1:y!=y?1:0===y&&0===x?1/y>0&&1/x<0?1:-1:y>x}));var m},!R||I)},64793:function(b,A,n){"use strict";var B=n(36597),a=n(23417),s=n(74841),o=n(34815),g=B.aTypedArray;(0,B.exportTypedArrayMethod)("subarray",function(u,r){var d=g(this),E=d.length,C=s(u,E);return new(o(d))(d.buffer,d.byteOffset+C*d.BYTES_PER_ELEMENT,a((void 0===r?E:s(r,E))-C))})},74202:function(b,A,n){"use strict";var B=n(32010),a=n(58448),s=n(36597),o=n(47044),g=n(73163),f=B.Int8Array,w=s.aTypedArray,u=s.exportTypedArrayMethod,r=[].toLocaleString,d=!!f&&o(function(){r.call(new f(1))});u("toLocaleString",function(){return a(r,d?g(w(this)):w(this),g(arguments))},o(function(){return[1,2].toLocaleString()!=new f([1,2]).toLocaleString()})||!o(function(){f.prototype.toLocaleString.call([1,2])}))},52529:function(b,A,n){"use strict";var B=n(36597).exportTypedArrayMethod,a=n(47044),s=n(32010),o=n(38347),g=s.Uint8Array,f=g&&g.prototype||{},w=[].toString,u=o([].join);a(function(){w.call({})})&&(w=function(){return u(this)}),B("toString",w,f.toString!=w)},47969:function(b,A,n){n(98828)("Uint16",function(a){return function(o,g,f){return a(this,o,g,f)}})},59735:function(b,A,n){n(98828)("Uint32",function(a){return function(o,g,f){return a(this,o,g,f)}})},56912:function(b,A,n){n(98828)("Uint8",function(a){return function(o,g,f){return a(this,o,g,f)}})},58099:function(b,A,n){n(98828)("Uint8",function(a){return function(o,g,f){return a(this,o,g,f)}},!0)},84151:function(b,A,n){n(94910)},49109:function(b,A,n){n(64384)},98443:function(b,A,n){n(77074)},67858:function(b,A,n){n(44455)},49261:function(b,A,n){"use strict";var B=n(56475),a=n(56614),s=n(61900);B({target:"Promise",stat:!0},{try:function(o){var g=a.f(this),f=s(o);return(f.error?g.reject:g.resolve)(f.value),g.promise}})},1083:function(b,A,n){n(71768)},42437:function(b,A,n){var B=n(32010),a=n(23327),s=n(67797),o=n(82938),g=n(48914),f=function(u){if(u&&u.forEach!==o)try{g(u,"forEach",o)}catch{u.forEach=o}};for(var w in a)a[w]&&f(B[w]&&B[w].prototype);f(s)},94712:function(b,A,n){var B=n(32010),a=n(23327),s=n(67797),o=n(81755),g=n(48914),f=n(38688),w=f("iterator"),u=f("toStringTag"),r=o.values,d=function(C,e){if(C){if(C[w]!==r)try{g(C,w,r)}catch{C[w]=r}if(C[u]||g(C,u,e),a[e])for(var h in o)if(C[h]!==o[h])try{g(C,h,o[h])}catch{C[h]=o[h]}}};for(var E in a)d(B[E]&&B[E].prototype,E);d(s,"DOMTokenList")},41863:function(b,A,n){"use strict";var B=n(56475),a=n(2834);B({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return a(URL.prototype.toString,this)}})},90780:function(b,A,n){var B=n(42075);n(94712),b.exports=B},45728:function(b,A,n){var B=n(35643),a=n(67906),s=n(98527),o=n(71689),g=n(64607),f=n(71230),w=Date.prototype.getTime;function u(C,e,h){var Q=h||{};return!!(Q.strict?s(C,e):C===e)||(!C||!e||"object"!=typeof C&&"object"!=typeof e?Q.strict?s(C,e):C==e:function E(C,e,h){var Q,I;if(typeof C!=typeof e||r(C)||r(e)||C.prototype!==e.prototype||a(C)!==a(e))return!1;var R=o(C),p=o(e);if(R!==p)return!1;if(R||p)return C.source===e.source&&g(C)===g(e);if(f(C)&&f(e))return w.call(C)===w.call(e);var m=d(C),y=d(e);if(m!==y)return!1;if(m||y){if(C.length!==e.length)return!1;for(Q=0;Q=0;Q--)if(x[Q]!=Y[Q])return!1;for(Q=x.length-1;Q>=0;Q--)if(!u(C[I=x[Q]],e[I],h))return!1;return!0}(C,e,Q))}function r(C){return null==C}function d(C){return!(!C||"object"!=typeof C||"number"!=typeof C.length||"function"!=typeof C.copy||"function"!=typeof C.slice||C.length>0&&"number"!=typeof C[0])}b.exports=u},89295:function(b,A,n){"use strict";var B=n(56649),a=n(57770),s=n(96785),o=n(68109);b.exports=function(f,w,u){if(!f||"object"!=typeof f&&"function"!=typeof f)throw new s("`obj` must be an object or a function`");if("string"!=typeof w&&"symbol"!=typeof w)throw new s("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new s("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new s("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new s("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new s("`loose`, if provided, must be a boolean");var r=arguments.length>3?arguments[3]:null,d=arguments.length>4?arguments[4]:null,E=arguments.length>5?arguments[5]:null,C=arguments.length>6&&arguments[6],e=!!o&&o(f,w);if(B)B(f,w,{configurable:null===E&&e?e.configurable:!E,enumerable:null===r&&e?e.enumerable:!r,value:u,writable:null===d&&e?e.writable:!d});else{if(!C&&(r||d||E))throw new a("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");f[w]=u}}},77802:function(b,A,n){"use strict";var B=n(35643),a="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),s=Object.prototype.toString,o=Array.prototype.concat,g=n(89295),w=n(18890)(),u=function(d,E,C,e){if(E in d)if(!0===e){if(d[E]===C)return}else if(!function(d){return"function"==typeof d&&"[object Function]"===s.call(d)}(e)||!e())return;w?g(d,E,C,!0):g(d,E,C)},r=function(d,E){var C=arguments.length>2?arguments[2]:{},e=B(E);a&&(e=o.call(e,Object.getOwnPropertySymbols(E)));for(var h=0;h0&&z.length>v&&!z.warned){z.warned=!0;var F=new Error("Possible EventEmitter memory leak detected. "+z.length+" "+String(y)+" listeners added. Use emitter.setMaxListeners() to increase limit");F.name="MaxListenersExceededWarning",F.emitter=m,F.type=y,F.count=z.length,function a(m){console&&console.warn&&console.warn(m)}(F)}return m}function r(){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 d(m,y,x){var Y={fired:!1,wrapFn:void 0,target:m,type:y,listener:x},v=r.bind(Y);return v.listener=x,Y.wrapFn=v,v}function E(m,y,x){var Y=m._events;if(void 0===Y)return[];var v=Y[y];return void 0===v?[]:"function"==typeof v?x?[v.listener||v]:[v]:x?function Q(m){for(var y=new Array(m.length),x=0;x0&&(z=x[0]),z instanceof Error)throw z;var F=new Error("Unhandled error."+(z?" ("+z.message+")":""));throw F.context=z,F}var $=S[y];if(void 0===$)return!1;if("function"==typeof $)n($,this,x);else{var gA=$.length,_=e($,gA);for(Y=0;Y=0;z--)if(Y[z]===x||Y[z].listener===x){F=Y[z].listener,S=z;break}if(S<0)return this;0===S?Y.shift():function h(m,y){for(;y+1=0;v--)this.removeListener(y,x[v]);return this},o.prototype.listeners=function(y){return E(this,y,!0)},o.prototype.rawListeners=function(y){return E(this,y,!1)},o.listenerCount=function(m,y){return"function"==typeof m.listenerCount?m.listenerCount(y):C.call(m,y)},o.prototype.listenerCount=C,o.prototype.eventNames=function(){return this._eventsCount>0?B(this._events):[]}},72022:function(b,A,n){"use strict";b.exports=function(){if("object"==typeof globalThis)return globalThis;var B;try{B=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof n.g<"u")return n.g}return B}()},68404:function(b,A,n){"use strict";var B=n(3746),a=Object.prototype.toString,s=Object.prototype.hasOwnProperty;b.exports=function(r,d,E){if(!B(d))throw new TypeError("iterator must be a function");var C;arguments.length>=3&&(C=E),"[object Array]"===a.call(r)?function(r,d,E){for(var C=0,e=r.length;C"u"||!I?B:I(Uint8Array),m={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?B:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?B:ArrayBuffer,"%ArrayIteratorPrototype%":h&&I?I([][Symbol.iterator]()):B,"%AsyncFromSyncIteratorPrototype%":B,"%AsyncFunction%":R,"%AsyncGenerator%":R,"%AsyncGeneratorFunction%":R,"%AsyncIteratorPrototype%":R,"%Atomics%":typeof Atomics>"u"?B:Atomics,"%BigInt%":typeof BigInt>"u"?B:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?B:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?B:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?B:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":a,"%eval%":eval,"%EvalError%":s,"%Float32Array%":typeof Float32Array>"u"?B:Float32Array,"%Float64Array%":typeof Float64Array>"u"?B:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?B:FinalizationRegistry,"%Function%":r,"%GeneratorFunction%":R,"%Int8Array%":typeof Int8Array>"u"?B:Int8Array,"%Int16Array%":typeof Int16Array>"u"?B:Int16Array,"%Int32Array%":typeof Int32Array>"u"?B:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":h&&I?I(I([][Symbol.iterator]())):B,"%JSON%":"object"==typeof JSON?JSON:B,"%Map%":typeof Map>"u"?B:Map,"%MapIteratorPrototype%":typeof Map>"u"||!h||!I?B:I((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?B:Promise,"%Proxy%":typeof Proxy>"u"?B:Proxy,"%RangeError%":o,"%ReferenceError%":g,"%Reflect%":typeof Reflect>"u"?B:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?B:Set,"%SetIteratorPrototype%":typeof Set>"u"||!h||!I?B:I((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?B:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":h&&I?I(""[Symbol.iterator]()):B,"%Symbol%":h?Symbol:B,"%SyntaxError%":f,"%ThrowTypeError%":e,"%TypedArray%":p,"%TypeError%":w,"%Uint8Array%":typeof Uint8Array>"u"?B:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?B:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?B:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?B:Uint32Array,"%URIError%":u,"%WeakMap%":typeof WeakMap>"u"?B:WeakMap,"%WeakRef%":typeof WeakRef>"u"?B:WeakRef,"%WeakSet%":typeof WeakSet>"u"?B:WeakSet};if(I)try{null.error}catch(FA){var y=I(I(FA));m["%Error.prototype%"]=y}var x=function FA(YA){var HA;if("%AsyncFunction%"===YA)HA=d("async function () {}");else if("%GeneratorFunction%"===YA)HA=d("function* () {}");else if("%AsyncGeneratorFunction%"===YA)HA=d("async function* () {}");else if("%AsyncGenerator%"===YA){var J=FA("%AsyncGeneratorFunction%");J&&(HA=J.prototype)}else if("%AsyncIteratorPrototype%"===YA){var BA=FA("%AsyncGenerator%");BA&&I&&(HA=I(BA.prototype))}return m[YA]=HA,HA},Y={__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"]},v=n(5049),S=n(55215),z=v.call(Function.call,Array.prototype.concat),F=v.call(Function.apply,Array.prototype.splice),$=v.call(Function.call,String.prototype.replace),gA=v.call(Function.call,String.prototype.slice),_=v.call(Function.call,RegExp.prototype.exec),fA=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,iA=/\\(\\)?/g,IA=function(YA,HA){var BA,J=YA;if(S(Y,J)&&(J="%"+(BA=Y[J])[0]+"%"),S(m,J)){var aA=m[J];if(aA===R&&(aA=x(J)),typeof aA>"u"&&!HA)throw new w("intrinsic "+YA+" exists, but is not available. Please file an issue!");return{alias:BA,name:J,value:aA}}throw new f("intrinsic "+YA+" does not exist!")};b.exports=function(YA,HA){if("string"!=typeof YA||0===YA.length)throw new w("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof HA)throw new w('"allowMissing" argument must be a boolean');if(null===_(/^%?[^%]*%?$/,YA))throw new f("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var J=function(YA){var HA=gA(YA,0,1),J=gA(YA,-1);if("%"===HA&&"%"!==J)throw new f("invalid intrinsic syntax, expected closing `%`");if("%"===J&&"%"!==HA)throw new f("invalid intrinsic syntax, expected opening `%`");var BA=[];return $(YA,fA,function(aA,eA,EA,xA){BA[BA.length]=EA?$(xA,iA,"$1"):eA||aA}),BA}(YA),BA=J.length>0?J[0]:"",aA=IA("%"+BA+"%",HA),eA=aA.name,EA=aA.value,xA=!1,OA=aA.alias;OA&&(BA=OA[0],F(J,z([0,1],OA)));for(var W=1,L=!0;W=J.length){var yA=E(EA,rA);EA=(L=!!yA)&&"get"in yA&&!("originalValue"in yA.get)?yA.get:EA[rA]}else L=S(EA,rA),EA=EA[rA];L&&!xA&&(m[eA]=EA)}}return EA}},68109:function(b,A,n){"use strict";var a=n(28651)("%Object.getOwnPropertyDescriptor%",!0);if(a)try{a([],"length")}catch{a=null}b.exports=a},18890:function(b,A,n){"use strict";var B=n(56649),a=function(){return!!B};a.hasArrayLengthDefineBug=function(){if(!B)return null;try{return 1!==B([],"length",{value:1}).length}catch{return!0}},b.exports=a},85726:function(b){"use strict";var A={__proto__:null,foo:{}},n=Object;b.exports=function(){return{__proto__:A}.foo===A.foo&&!(A instanceof n)}},73257:function(b,A,n){"use strict";var B=typeof Symbol<"u"&&Symbol,a=n(12843);b.exports=function(){return"function"==typeof B&&"function"==typeof Symbol&&"symbol"==typeof B("foo")&&"symbol"==typeof Symbol("bar")&&a()}},12843:function(b){"use strict";b.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var n={},B=Symbol("test"),a=Object(B);if("string"==typeof B||"[object Symbol]"!==Object.prototype.toString.call(B)||"[object Symbol]"!==Object.prototype.toString.call(a))return!1;for(B in n[B]=42,n)return!1;if("function"==typeof Object.keys&&0!==Object.keys(n).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(n).length)return!1;var o=Object.getOwnPropertySymbols(n);if(1!==o.length||o[0]!==B||!Object.prototype.propertyIsEnumerable.call(n,B))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var g=Object.getOwnPropertyDescriptor(n,B);if(42!==g.value||!0!==g.enumerable)return!1}return!0}},26626:function(b,A,n){"use strict";var B=n(12843);b.exports=function(){return B()&&!!Symbol.toStringTag}},55215:function(b,A,n){"use strict";var B=Function.prototype.call,a=Object.prototype.hasOwnProperty,s=n(5049);b.exports=s.call(B,a)},35143:function(b,A,n){"use strict";var B=n(16696).Buffer;A._dbcs=r;for(var a=-1,s=-2,o=-10,g=-1e3,f=new Array(256),u=0;u<256;u++)f[u]=a;function r(e,h){if(this.encodingName=e.encodingName,!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var Q=e.table();this.decodeTables=[],this.decodeTables[0]=f.slice(0),this.decodeTableSeq=[];for(var I=0;Ig)throw new Error("gb18030 decode tables conflict at byte 2");for(var Y=this.decodeTables[g-y[x]],v=129;v<=254;v++){if(Y[v]===a)Y[v]=g-p;else{if(Y[v]===g-p)continue;if(Y[v]>g)throw new Error("gb18030 decode tables conflict at byte 3")}for(var S=this.decodeTables[g-Y[v]],z=48;z<=57;z++)S[z]===a&&(S[z]=s)}}}this.defaultCharUnicode=h.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var F={};if(e.encodeSkipVals)for(I=0;Ih)return-1;for(var Q=0,I=e.length;Q>1);e[R]<=h?Q=R:I=R}return Q}r.prototype.encoder=d,r.prototype.decoder=E,r.prototype._getDecodeTrieNode=function(e){for(var h=[];e>0;e>>>=8)h.push(255&e);0==h.length&&h.push(0);for(var Q=this.decodeTables[0],I=h.length-1;I>0;I--){var R=Q[h[I]];if(R==a)Q[h[I]]=g-this.decodeTables.length,this.decodeTables.push(Q=f.slice(0));else{if(!(R<=g))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16));Q=this.decodeTables[g-R]}}return Q},r.prototype._addDecodeChunk=function(e){var h=parseInt(e[0],16),Q=this._getDecodeTrieNode(h);h&=255;for(var I=1;I255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+h)},r.prototype._getEncodeBucket=function(e){var h=e>>8;return void 0===this.encodeTable[h]&&(this.encodeTable[h]=f.slice(0)),this.encodeTable[h]},r.prototype._setEncodeChar=function(e,h){var Q=this._getEncodeBucket(e),I=255&e;Q[I]<=o?this.encodeTableSeq[o-Q[I]][-1]=h:Q[I]==a&&(Q[I]=h)},r.prototype._setEncodeSequence=function(e,h){var p,Q=e[0],I=this._getEncodeBucket(Q),R=255&Q;I[R]<=o?p=this.encodeTableSeq[o-I[R]]:(p={},I[R]!==a&&(p[-1]=I[R]),I[R]=o-this.encodeTableSeq.length,this.encodeTableSeq.push(p));for(var m=1;m=0)this._setEncodeChar(y,x),R=!0;else if(y<=g){var Y=g-y;p[Y]||(this._fillEncodeTable(Y,x<<8>>>0,Q)?R=!0:p[Y]=!0)}else y<=o&&(this._setEncodeSequence(this.decodeTableSeq[o-y],x),R=!0)}return R},d.prototype.write=function(e){for(var h=B.alloc(e.length*(this.gb18030?4:3)),Q=this.leadSurrogate,I=this.seqObj,R=-1,p=0,m=0;;){if(-1===R){if(p==e.length)break;var y=e.charCodeAt(p++)}else y=R,R=-1;if(55296<=y&&y<57344)if(y<56320){if(-1===Q){Q=y;continue}Q=y,y=a}else-1!==Q?(y=65536+1024*(Q-55296)+(y-56320),Q=-1):y=a;else-1!==Q&&(R=y,y=a,Q=-1);var x=a;if(void 0!==I&&y!=a){var Y=I[y];if("object"==typeof Y){I=Y;continue}"number"==typeof Y?x=Y:null==Y&&void 0!==(Y=I[-1])&&(x=Y,R=y),I=void 0}else if(y>=0){var v=this.encodeTable[y>>8];if(void 0!==v&&(x=v[255&y]),x<=o){I=this.encodeTableSeq[o-x];continue}if(x==a&&this.gb18030){var S=C(this.gb18030.uChars,y);if(-1!=S){x=this.gb18030.gbChars[S]+(y-this.gb18030.uChars[S]),h[m++]=129+Math.floor(x/12600),x%=12600,h[m++]=48+Math.floor(x/1260),x%=1260,h[m++]=129+Math.floor(x/10),h[m++]=48+(x%=10);continue}}}x===a&&(x=this.defaultCharSingleByte),x<256?h[m++]=x:x<65536?(h[m++]=x>>8,h[m++]=255&x):x<16777216?(h[m++]=x>>16,h[m++]=x>>8&255,h[m++]=255&x):(h[m++]=x>>>24,h[m++]=x>>>16&255,h[m++]=x>>>8&255,h[m++]=255&x)}return this.seqObj=I,this.leadSurrogate=Q,h.slice(0,m)},d.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var e=B.alloc(10),h=0;if(this.seqObj){var Q=this.seqObj[-1];void 0!==Q&&(Q<256?e[h++]=Q:(e[h++]=Q>>8,e[h++]=255&Q)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(e[h++]=this.defaultCharSingleByte,this.leadSurrogate=-1),e.slice(0,h)}},d.prototype.findIdx=C,E.prototype.write=function(e){for(var h=B.alloc(2*e.length),Q=this.nodeIdx,I=this.prevBytes,R=this.prevBytes.length,p=-this.prevBytes.length,y=0,x=0;y=0?e[y]:I[y+R];if(!((m=this.decodeTables[Q][Y])>=0))if(m===a)m=this.defaultCharUnicode.charCodeAt(0),y=p;else if(m===s){if(y>=3)var v=12600*(e[y-3]-129)+1260*(e[y-2]-48)+10*(e[y-1]-129)+(Y-48);else v=12600*(I[y-3+R]-129)+1260*((y-2>=0?e[y-2]:I[y-2+R])-48)+10*((y-1>=0?e[y-1]:I[y-1+R])-129)+(Y-48);var S=C(this.gb18030.gbChars,v);m=this.gb18030.uChars[S]+v-this.gb18030.gbChars[S]}else{if(m<=g){Q=g-m;continue}if(!(m<=o))throw new Error("iconv-lite internal error: invalid decoding table value "+m+" at "+Q+"/"+Y);for(var z=this.decodeTableSeq[o-m],F=0;F>8;m=z[z.length-1]}if(m>=65536){var $=55296|(m-=65536)>>10;h[x++]=255&$,h[x++]=$>>8,m=56320|1023&m}h[x++]=255&m,h[x++]=m>>8,Q=0,p=y+1}return this.nodeIdx=Q,this.prevBytes=p>=0?Array.prototype.slice.call(e,p):I.slice(p+R).concat(Array.prototype.slice.call(e)),h.slice(0,x).toString("ucs2")},E.prototype.end=function(){for(var e="";this.prevBytes.length>0;){e+=this.defaultCharUnicode;var h=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,h.length>0&&(e+=this.write(h))}return this.prevBytes=[],this.nodeIdx=0,e}},90481:function(b,A,n){"use strict";b.exports={shiftjis:{type:"_dbcs",table:function(){return n(40679)},encodeAdd:{"\xa5":92,"\u203e":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return n(56406)},encodeAdd:{"\xa5":92,"\u203e":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return n(74488)}},gbk:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))},gb18030:function(){return n(99129)},encodeSkipVals:[128],encodeAdd:{"\u20ac":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(21166)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return n(72324)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(72324).concat(n(43267))},encodeSkipVals:[36457,36463,36478,36523,36532,36557,36560,36695,36713,36718,36811,36862,36973,36986,37060,37084,37105,37311,37551,37552,37553,37554,37585,37959,38090,38361,38652,39285,39798,39800,39803,39878,39902,39916,39926,40002,40019,40034,40040,40043,40055,40124,40125,40144,40279,40282,40388,40431,40443,40617,40687,40701,40800,40907,41079,41180,41183,36812,37576,38468,38637,41636,41637,41639,41638,41676,41678]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},26326:function(b,A,n){"use strict";for(var B=[n(16793),n(24162),n(17100),n(11326),n(99948),n(99900),n(81492),n(35143),n(90481)],a=0;a>>6),d[E++]=128+(63&e)):(d[E++]=224+(e>>>12),d[E++]=128+(e>>>6&63),d[E++]=128+(63&e))}return d.slice(0,E)},w.prototype.end=function(){},u.prototype.write=function(r){for(var d=this.acc,E=this.contBytes,C=this.accBytes,e="",h=0;h0&&(e+=this.defaultCharUnicode,E=0),Q<128?e+=String.fromCharCode(Q):Q<224?(d=31&Q,E=1,C=1):Q<240?(d=15&Q,E=2,C=1):e+=this.defaultCharUnicode):E>0?(d=d<<6|63&Q,C++,0==--E&&(e+=2===C&&d<128&&d>0||3===C&&d<2048?this.defaultCharUnicode:String.fromCharCode(d))):e+=this.defaultCharUnicode}return this.acc=d,this.contBytes=E,this.accBytes=C,e},u.prototype.end=function(){var r=0;return this.contBytes>0&&(r+=this.defaultCharUnicode),r}},99948:function(b,A,n){"use strict";var B=n(16696).Buffer;function a(g,f){if(!g)throw new Error("SBCS codec is called without the data.");if(!g.chars||128!==g.chars.length&&256!==g.chars.length)throw new Error("Encoding '"+g.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(128===g.chars.length){for(var w="",u=0;u<128;u++)w+=String.fromCharCode(u);g.chars=w+g.chars}this.decodeBuf=B.from(g.chars,"ucs2");var r=B.alloc(65536,f.defaultCharSingleByte.charCodeAt(0));for(u=0;u?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xb0\xb7\u2219\u221a\u2592\u2500\u2502\u253c\u2524\u252c\u251c\u2534\u2510\u250c\u2514\u2518\u03b2\u221e\u03c6\xb1\xbd\xbc\u2248\xab\xbb\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufffd\xa0\xad\ufe82\xa3\xa4\ufe84\ufffd\ufffd\ufe8e\ufe8f\ufe95\ufe99\u060c\ufe9d\ufea1\ufea5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufed1\u061b\ufeb1\ufeb5\ufeb9\u061f\xa2\ufe80\ufe81\ufe83\ufe85\ufeca\ufe8b\ufe8d\ufe91\ufe93\ufe97\ufe9b\ufe9f\ufea3\ufea7\ufea9\ufeab\ufead\ufeaf\ufeb3\ufeb7\ufebb\ufebf\ufec1\ufec5\ufecb\ufecf\xa6\xac\xf7\xd7\ufec9\u0640\ufed3\ufed7\ufedb\ufedf\ufee3\ufee7\ufeeb\ufeed\ufeef\ufef3\ufebd\ufecc\ufece\ufecd\ufee1\ufe7d\u0651\ufee5\ufee9\ufeec\ufef0\ufef2\ufed0\ufed5\ufef5\ufef6\ufedd\ufed9\ufef1\u25a0\ufffd"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"\xc7\xfc\xe9\xe2\xe4\xe0\xe5\xe7\xea\xeb\xe8\xef\xee\xec\xc4\xc5\xc9\xe6\xc6\xf4\xf6\xf2\xfb\xf9\xff\xd6\xdc\xf8\xa3\xd8\u20a7\u0192\xe1\xed\xf3\xfa\xf1\xd1\xaa\xba\xbf\u2310\xac\xbd\xbc\xa1\xab\xa4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0386\ufffd\xb7\xac\xa6\u2018\u2019\u0388\u2015\u0389\u038a\u03aa\u038c\ufffd\ufffd\u038e\u03ab\xa9\u038f\xb2\xb3\u03ac\xa3\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03cd\u0391\u0392\u0393\u0394\u0395\u0396\u0397\xbd\u0398\u0399\xab\xbb\u2591\u2592\u2593\u2502\u2524\u039a\u039b\u039c\u039d\u2563\u2551\u2557\u255d\u039e\u039f\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u03a0\u03a1\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u2518\u250c\u2588\u2584\u03b4\u03b5\u2580\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u0384\xad\xb1\u03c5\u03c6\u03c7\xa7\u03c8\u0385\xb0\xa8\u03c9\u03cb\u03b0\u03ce\u25a0\xa0"},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\u203e\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\u0160\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\u017d\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\u0161\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\u017e\xff"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"\ufe88\xd7\xf7\uf8f6\uf8f5\uf8f4\uf8f7\ufe71\x88\u25a0\u2502\u2500\u2510\u250c\u2514\u2518\ufe79\ufe7b\ufe7d\ufe7f\ufe77\ufe8a\ufef0\ufef3\ufef2\ufece\ufecf\ufed0\ufef6\ufef8\ufefa\ufefc\xa0\uf8fa\uf8f9\uf8f8\xa4\uf8fb\ufe8b\ufe91\ufe97\ufe9b\ufe9f\ufea3\u060c\xad\ufea7\ufeb3\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufeb7\u061b\ufebb\ufebf\ufeca\u061f\ufecb\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\ufec7\u0639\u063a\ufecc\ufe82\ufe84\ufe8e\ufed3\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u064b\u064c\u064d\u064e\u064f\u0650\u0651\u0652\ufed7\ufedb\ufedf\uf8fc\ufef5\ufef7\ufef9\ufefb\ufee3\ufee7\ufeec\ufee9\ufffd"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0401\u0402\u0490\u0404\u0405\u0406\u0407\u0408\u0409\u040a\u040b\u040c\xad\u040e\u040f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2116\u0451\u0452\u0491\u0454\u0455\u0456\u0457\u0458\u0459\u045a\u045b\u045c\xa7\u045e\u045f"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0490\u0491\u0404\u0454\u0406\u0456\u0407\u0457\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e81\u0e82\u0e84\u0e87\u0e88\u0eaa\u0e8a\u0e8d\u0e94\u0e95\u0e96\u0e97\u0e99\u0e9a\u0e9b\u0e9c\u0e9d\u0e9e\u0e9f\u0ea1\u0ea2\u0ea3\u0ea5\u0ea7\u0eab\u0ead\u0eae\ufffd\ufffd\ufffd\u0eaf\u0eb0\u0eb2\u0eb3\u0eb4\u0eb5\u0eb6\u0eb7\u0eb8\u0eb9\u0ebc\u0eb1\u0ebb\u0ebd\ufffd\ufffd\ufffd\u0ec0\u0ec1\u0ec2\u0ec3\u0ec4\u0ec8\u0ec9\u0eca\u0ecb\u0ecc\u0ecd\u0ec6\ufffd\u0edc\u0edd\u20ad\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0ed0\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\ufffd\ufffd\xa2\xac\xa6\ufffd"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e48\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\u0e49\u0e4a\u0e4b\u20ac\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\xa2\xac\xa6\xa0"},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"\u20ac\x81\x82\x83\x84\u2026\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\u20ac\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"\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\u2126\u017e\xf8\xbf\xa1\xac\u221a\u0192\u2248\u0106\xab\u010c\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u0110\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\ufffd\xa9\u2044\xa4\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"},maccyrillic:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\xa2\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u2202\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},macgreek:{type:"_sbcs",chars:"\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\xad\xf9\xfb\xfc\u2020\u0393\u0394\u0398\u039b\u039e\u03a0\xdf\xae\xa9\u03a3\u03aa\xa7\u2260\xb0\u0387\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\xa0\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\ufffd"},maciceland:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\xd0\xf0\xde\xfe\xfd\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macroman:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macromania:{type:"_sbcs",chars:"\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\u015e\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\u0103\u015f\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\u0162\u0163\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macthai:{type:"_sbcs",chars:"\xab\xbb\u2026\uf88c\uf88f\uf892\uf895\uf898\uf88b\uf88e\uf891\uf894\uf897\u201c\u201d\uf899\ufffd\u2022\uf884\uf889\uf885\uf886\uf887\uf888\uf88a\uf88d\uf890\uf893\uf896\u2018\u2019\ufffd\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufeff\u200b\u2013\u2014\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u2122\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\xae\xa9\ufffd\ufffd\ufffd\ufffd"},macturkish:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\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\ufffd\xd2\xda\xdb\xd9\ufffd\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macukraine:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\u0490\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},koi8r:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u2553\u2554\u2555\u2556\u2557\u2558\u2559\u255a\u255b\u255c\u255d\u255e\u255f\u2560\u2561\u0401\u2562\u2563\u2564\u2565\u2566\u2567\u2568\u2569\u256a\u256b\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8u:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u255d\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8ru:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u045e\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u040e\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8t:{type:"_sbcs",chars:"\u049b\u0493\u201a\u0492\u201e\u2026\u2020\u2021\ufffd\u2030\u04b3\u2039\u04b2\u04b7\u04b6\ufffd\u049a\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\ufffd\u203a\ufffd\ufffd\ufffd\ufffd\ufffd\u04ef\u04ee\u0451\xa4\u04e3\xa6\xa7\ufffd\ufffd\ufffd\xab\xac\xad\xae\ufffd\xb0\xb1\xb2\u0401\ufffd\u04e2\xb6\xb7\ufffd\u2116\ufffd\xbb\ufffd\ufffd\ufffd\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},armscii8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\ufffd\u0587\u0589)(\xbb\xab\u2014.\u055d,-\u058a\u2026\u055c\u055b\u055e\u0531\u0561\u0532\u0562\u0533\u0563\u0534\u0564\u0535\u0565\u0536\u0566\u0537\u0567\u0538\u0568\u0539\u0569\u053a\u056a\u053b\u056b\u053c\u056c\u053d\u056d\u053e\u056e\u053f\u056f\u0540\u0570\u0541\u0571\u0542\u0572\u0543\u0573\u0544\u0574\u0545\u0575\u0546\u0576\u0547\u0577\u0548\u0578\u0549\u0579\u054a\u057a\u054b\u057b\u054c\u057c\u054d\u057d\u054e\u057e\u054f\u057f\u0550\u0580\u0551\u0581\u0552\u0582\u0553\u0583\u0554\u0584\u0555\u0585\u0556\u0586\u055a\ufffd"},rk1048:{type:"_sbcs",chars:"\u0402\u0403\u201a\u0453\u201e\u2026\u2020\u2021\u20ac\u2030\u0409\u2039\u040a\u049a\u04ba\u040f\u0452\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\u0459\u203a\u045a\u049b\u04bb\u045f\xa0\u04b0\u04b1\u04d8\xa4\u04e8\xa6\xa7\u0401\xa9\u0492\xab\xac\xad\xae\u04ae\xb0\xb1\u0406\u0456\u04e9\xb5\xb6\xb7\u0451\u2116\u0493\xbb\u04d9\u04a2\u04a3\u04af\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},tcvn:{type:"_sbcs",chars:"\0\xda\u1ee4\x03\u1eea\u1eec\u1eee\x07\b\t\n\v\f\r\x0e\x0f\x10\u1ee8\u1ef0\u1ef2\u1ef6\u1ef8\xdd\u1ef4\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xc0\u1ea2\xc3\xc1\u1ea0\u1eb6\u1eac\xc8\u1eba\u1ebc\xc9\u1eb8\u1ec6\xcc\u1ec8\u0128\xcd\u1eca\xd2\u1ece\xd5\xd3\u1ecc\u1ed8\u1edc\u1ede\u1ee0\u1eda\u1ee2\xd9\u1ee6\u0168\xa0\u0102\xc2\xca\xd4\u01a0\u01af\u0110\u0103\xe2\xea\xf4\u01a1\u01b0\u0111\u1eb0\u0300\u0309\u0303\u0301\u0323\xe0\u1ea3\xe3\xe1\u1ea1\u1eb2\u1eb1\u1eb3\u1eb5\u1eaf\u1eb4\u1eae\u1ea6\u1ea8\u1eaa\u1ea4\u1ec0\u1eb7\u1ea7\u1ea9\u1eab\u1ea5\u1ead\xe8\u1ec2\u1ebb\u1ebd\xe9\u1eb9\u1ec1\u1ec3\u1ec5\u1ebf\u1ec7\xec\u1ec9\u1ec4\u1ebe\u1ed2\u0129\xed\u1ecb\xf2\u1ed4\u1ecf\xf5\xf3\u1ecd\u1ed3\u1ed5\u1ed7\u1ed1\u1ed9\u1edd\u1edf\u1ee1\u1edb\u1ee3\xf9\u1ed6\u1ee7\u0169\xfa\u1ee5\u1eeb\u1eed\u1eef\u1ee9\u1ef1\u1ef3\u1ef7\u1ef9\xfd\u1ef5\u1ed0"},georgianacademy:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10ef\u10f0\u10f1\u10f2\u10f3\u10f4\u10f5\u10f6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},georgianps:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10f1\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10f2\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10f3\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10f4\u10ef\u10f0\u10f5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},pt154:{type:"_sbcs",chars:"\u0496\u0492\u04ee\u0493\u201e\u2026\u04b6\u04ae\u04b2\u04af\u04a0\u04e2\u04a2\u049a\u04ba\u04b8\u0497\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u04b3\u04b7\u04a1\u04e3\u04a3\u049b\u04bb\u04b9\xa0\u040e\u045e\u0408\u04e8\u0498\u04b0\xa7\u0401\xa9\u04d8\xab\xac\u04ef\xae\u049c\xb0\u04b1\u0406\u0456\u0499\u04e9\xb6\xb7\u0451\u2116\u04d9\xbb\u0458\u04aa\u04ab\u049d\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},viscii:{type:"_sbcs",chars:"\0\x01\u1eb2\x03\x04\u1eb4\u1eaa\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\u1ef6\x15\x16\x17\x18\u1ef8\x1a\x1b\x1c\x1d\u1ef4\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u1ea0\u1eae\u1eb0\u1eb6\u1ea4\u1ea6\u1ea8\u1eac\u1ebc\u1eb8\u1ebe\u1ec0\u1ec2\u1ec4\u1ec6\u1ed0\u1ed2\u1ed4\u1ed6\u1ed8\u1ee2\u1eda\u1edc\u1ede\u1eca\u1ece\u1ecc\u1ec8\u1ee6\u0168\u1ee4\u1ef2\xd5\u1eaf\u1eb1\u1eb7\u1ea5\u1ea7\u1ea9\u1ead\u1ebd\u1eb9\u1ebf\u1ec1\u1ec3\u1ec5\u1ec7\u1ed1\u1ed3\u1ed5\u1ed7\u1ee0\u01a0\u1ed9\u1edd\u1edf\u1ecb\u1ef0\u1ee8\u1eea\u1eec\u01a1\u1edb\u01af\xc0\xc1\xc2\xc3\u1ea2\u0102\u1eb3\u1eb5\xc8\xc9\xca\u1eba\xcc\xcd\u0128\u1ef3\u0110\u1ee9\xd2\xd3\xd4\u1ea1\u1ef7\u1eeb\u1eed\xd9\xda\u1ef9\u1ef5\xdd\u1ee1\u01b0\xe0\xe1\xe2\xe3\u1ea3\u0103\u1eef\u1eab\xe8\xe9\xea\u1ebb\xec\xed\u0129\u1ec9\u0111\u1ef1\xf2\xf3\xf4\xf5\u1ecf\u1ecd\u1ee5\xf9\xfa\u0169\u1ee7\xfd\u1ee3\u1eee"},iso646cn:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#\xa5%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},iso646jp:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\xa5]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},hproman8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xc0\xc2\xc8\xca\xcb\xce\xcf\xb4\u02cb\u02c6\xa8\u02dc\xd9\xdb\u20a4\xaf\xdd\xfd\xb0\xc7\xe7\xd1\xf1\xa1\xbf\xa4\xa3\xa5\xa7\u0192\xa2\xe2\xea\xf4\xfb\xe1\xe9\xf3\xfa\xe0\xe8\xf2\xf9\xe4\xeb\xf6\xfc\xc5\xee\xd8\xc6\xe5\xed\xf8\xe6\xc4\xec\xd6\xdc\xc9\xef\xdf\xd4\xc1\xc3\xe3\xd0\xf0\xcd\xcc\xd3\xd2\xd5\xf5\u0160\u0161\xda\u0178\xff\xde\xfe\xb7\xb5\xb6\xbe\u2014\xbc\xbd\xaa\xba\xab\u25a0\xbb\xb1\ufffd"},macintosh:{type:"_sbcs",chars:"\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\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},ascii:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},tis620:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"}}},99900:function(b){"use strict";b.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"\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\xa0\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"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\u20ac\u25a0\xa0"},mik:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2514\u2534\u252c\u251c\u2500\u253c\u2563\u2551\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2510\u2591\u2592\u2593\u2502\u2524\u2116\xa7\u2557\u255d\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},cp720:{type:"_sbcs",chars:"\x80\x81\xe9\xe2\x84\xe0\x86\xe7\xea\xeb\xe8\xef\xee\x8d\x8e\x8f\x90\u0651\u0652\xf4\xa4\u0640\xfb\xf9\u0621\u0622\u0623\u0624\xa3\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\xab\xbb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0636\u0637\u0638\u0639\u063a\u0641\xb5\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u2261\u064b\u064c\u064d\u064e\u064f\u0650\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},17100:function(b,A,n){"use strict";var B=n(16696).Buffer;function a(){}function s(){}function o(){this.overflowByte=-1}function g(r,d){this.iconv=d}function f(r,d){void 0===(r=r||{}).addBOM&&(r.addBOM=!0),this.encoder=d.iconv.getEncoder("utf-16le",r)}function w(r,d){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=r||{},this.iconv=d.iconv}function u(r,d){var E=[],C=0,e=0,h=0;A:for(var Q=0;Q=100)break A}return h>e?"utf-16be":h1114111)&&(C=e),C>=65536){var h=55296|(C-=65536)>>10;d[E++]=255&h,d[E++]=h>>8,C=56320|1023&C}return d[E++]=255&C,d[E++]=C>>8,E}function f(d,E){this.iconv=E}function w(d,E){void 0===(d=d||{}).addBOM&&(d.addBOM=!0),this.encoder=E.iconv.getEncoder(d.defaultEncoding||"utf-32le",d)}function u(d,E){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=d||{},this.iconv=E.iconv}function r(d,E){var C=[],e=0,h=0,Q=0,I=0,R=0;A:for(var p=0;p16)&&Q++,(0!==C[3]||C[2]>16)&&h++,0===C[0]&&0===C[1]&&(0!==C[2]||0!==C[3])&&R++,(0!==C[0]||0!==C[1])&&0===C[2]&&0===C[3]&&I++,C.length=0,++e>=100)break A}return R-Q>I-h?"utf-32be":R-Q0){for(;E0&&(I=this.iconv.decode(B.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",I},A.utf7imap=C,C.prototype.encoder=e,C.prototype.decoder=h,C.prototype.bomAware=!0,e.prototype.write=function(I){for(var R=this.inBase64,p=this.base64Accum,m=this.base64AccumIdx,y=B.alloc(5*I.length+10),x=0,Y=0;Y0&&(x+=y.write(p.slice(0,m).toString("base64").replace(/\//g,",").replace(/=+$/,""),x),m=0),y[x++]=d,R=!1),R||(y[x++]=v,38===v&&(y[x++]=d))):(R||(y[x++]=38,R=!0),R&&(p[m++]=v>>8,p[m++]=255&v,m==p.length&&(x+=y.write(p.toString("base64").replace(/\//g,","),x),m=0)))}return this.inBase64=R,this.base64AccumIdx=m,y.slice(0,x)},e.prototype.end=function(){var I=B.alloc(10),R=0;return this.inBase64&&(this.base64AccumIdx>0&&(R+=I.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),R),this.base64AccumIdx=0),I[R++]=d,this.inBase64=!1),I.slice(0,R)};var Q=w.slice();Q[44]=!0,h.prototype.write=function(I){for(var R="",p=0,m=this.inBase64,y=this.base64Accum,x=0;x0&&(I=this.iconv.decode(B.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",I}},52331:function(b,A){"use strict";function B(s,o){this.encoder=s,this.addBOM=!0}function a(s,o){this.decoder=s,this.pass=!1,this.options=o||{}}A.PrependBOM=B,B.prototype.write=function(s){return this.addBOM&&(s="\ufeff"+s,this.addBOM=!1),this.encoder.write(s)},B.prototype.end=function(){return this.encoder.end()},A.StripBOM=a,a.prototype.write=function(s){var o=this.decoder.write(s);return this.pass||!o||("\ufeff"===o[0]&&(o=o.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),o},a.prototype.end=function(){return this.decoder.end()}},54171:function(b,A,n){"use strict";var o,B=n(16696).Buffer,a=n(52331),s=b.exports;s.encodings=null,s.defaultCharUnicode="\ufffd",s.defaultCharSingleByte="?",s.encode=function(f,w,u){f=""+(f||"");var r=s.getEncoder(w,u),d=r.write(f),E=r.end();return E&&E.length>0?B.concat([d,E]):d},s.decode=function(f,w,u){"string"==typeof f&&(s.skipDecodeWarning||(console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding"),s.skipDecodeWarning=!0),f=B.from(""+(f||""),"binary"));var r=s.getDecoder(w,u),d=r.write(f),E=r.end();return E?d+E:d},s.encodingExists=function(f){try{return s.getCodec(f),!0}catch{return!1}},s.toEncoding=s.encode,s.fromEncoding=s.decode,s._codecDataCache={},s.getCodec=function(f){s.encodings||(s.encodings=n(26326));for(var w=s._canonicalizeEncoding(f),u={};;){var r=s._codecDataCache[w];if(r)return r;var d=s.encodings[w];switch(typeof d){case"string":w=d;break;case"object":for(var E in d)u[E]=d[E];u.encodingName||(u.encodingName=w),w=d.type;break;case"function":return u.encodingName||(u.encodingName=w),r=new d(u,s),s._codecDataCache[u.encodingName]=r,r;default:throw new Error("Encoding not recognized: '"+f+"' (searched as: '"+w+"')")}}},s._canonicalizeEncoding=function(g){return(""+g).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},s.getEncoder=function(f,w){var u=s.getCodec(f),r=new u.encoder(w,u);return u.bomAware&&w&&w.addBOM&&(r=new a.PrependBOM(r,w)),r},s.getDecoder=function(f,w){var u=s.getCodec(f),r=new u.decoder(w,u);return u.bomAware&&!(w&&!1===w.stripBOM)&&(r=new a.StripBOM(r,w)),r},s.enableStreamingAPI=function(f){if(!s.supportsStreams){var w=n(34506)(f);s.IconvLiteEncoderStream=w.IconvLiteEncoderStream,s.IconvLiteDecoderStream=w.IconvLiteDecoderStream,s.encodeStream=function(r,d){return new s.IconvLiteEncoderStream(s.getEncoder(r,d),d)},s.decodeStream=function(r,d){return new s.IconvLiteDecoderStream(s.getDecoder(r,d),d)},s.supportsStreams=!0}};try{o=n(16403)}catch{}o&&o.Transform?s.enableStreamingAPI(o):s.encodeStream=s.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},34506:function(b,A,n){"use strict";var B=n(16696).Buffer;b.exports=function(a){var s=a.Transform;function o(f,w){this.conv=f,(w=w||{}).decodeStrings=!1,s.call(this,w)}function g(f,w){this.conv=f,(w=w||{}).encoding=this.encoding="utf8",s.call(this,w)}return(o.prototype=Object.create(s.prototype,{constructor:{value:o}}))._transform=function(f,w,u){if("string"!=typeof f)return u(new Error("Iconv encoding stream needs strings as its input."));try{var r=this.conv.write(f);r&&r.length&&this.push(r),u()}catch(d){u(d)}},o.prototype._flush=function(f){try{var w=this.conv.end();w&&w.length&&this.push(w),f()}catch(u){f(u)}},o.prototype.collect=function(f){var w=[];return this.on("error",f),this.on("data",function(u){w.push(u)}),this.on("end",function(){f(null,B.concat(w))}),this},(g.prototype=Object.create(s.prototype,{constructor:{value:g}}))._transform=function(f,w,u){if(!(B.isBuffer(f)||f instanceof Uint8Array))return u(new Error("Iconv decoding stream needs buffers as its input."));try{var r=this.conv.write(f);r&&r.length&&this.push(r,this.encoding),u()}catch(d){u(d)}},g.prototype._flush=function(f){try{var w=this.conv.end();w&&w.length&&this.push(w,this.encoding),f()}catch(u){f(u)}},g.prototype.collect=function(f){var w="";return this.on("error",f),this.on("data",function(u){w+=u}),this.on("end",function(){f(null,w)}),this},{IconvLiteEncoderStream:o,IconvLiteDecoderStream:g}}},89029:function(b,A){A.read=function(n,B,a,s,o){var g,f,w=8*o-s-1,u=(1<>1,d=-7,E=a?o-1:0,C=a?-1:1,e=n[B+E];for(E+=C,g=e&(1<<-d)-1,e>>=-d,d+=w;d>0;g=256*g+n[B+E],E+=C,d-=8);for(f=g&(1<<-d)-1,g>>=-d,d+=s;d>0;f=256*f+n[B+E],E+=C,d-=8);if(0===g)g=1-r;else{if(g===u)return f?NaN:1/0*(e?-1:1);f+=Math.pow(2,s),g-=r}return(e?-1:1)*f*Math.pow(2,g-s)},A.write=function(n,B,a,s,o,g){var f,w,u,r=8*g-o-1,d=(1<>1,C=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,e=s?0:g-1,h=s?1:-1,Q=B<0||0===B&&1/B<0?1:0;for(B=Math.abs(B),isNaN(B)||B===1/0?(w=isNaN(B)?1:0,f=d):(f=Math.floor(Math.log(B)/Math.LN2),B*(u=Math.pow(2,-f))<1&&(f--,u*=2),(B+=f+E>=1?C/u:C*Math.pow(2,1-E))*u>=2&&(f++,u/=2),f+E>=d?(w=0,f=d):f+E>=1?(w=(B*u-1)*Math.pow(2,o),f+=E):(w=B*Math.pow(2,E-1)*Math.pow(2,o),f=0));o>=8;n[a+e]=255&w,e+=h,w/=256,o-=8);for(f=f<0;n[a+e]=255&f,e+=h,f/=256,r-=8);n[a+e-h]|=128*Q}},89784:function(b){b.exports="function"==typeof Object.create?function(n,B){B&&(n.super_=B,n.prototype=Object.create(B.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}))}:function(n,B){if(B){n.super_=B;var a=function(){};a.prototype=B.prototype,n.prototype=new a,n.prototype.constructor=n}}},67906:function(b,A,n){"use strict";var B=n(26626)(),s=n(67913)("Object.prototype.toString"),o=function(u){return!(B&&u&&"object"==typeof u&&Symbol.toStringTag in u)&&"[object Arguments]"===s(u)},g=function(u){return!!o(u)||null!==u&&"object"==typeof u&&"number"==typeof u.length&&u.length>=0&&"[object Array]"!==s(u)&&"[object Function]"===s(u.callee)},f=function(){return o(arguments)}();o.isLegacyArguments=g,b.exports=f?o:g},3746:function(b){"use strict";var B,a,A=Function.prototype.toString,n="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof n&&"function"==typeof Object.defineProperty)try{B=Object.defineProperty({},"length",{get:function(){throw a}}),a={},n(function(){throw 42},null,B)}catch(R){R!==a&&(n=null)}else n=null;var s=/^\s*class\b/,o=function(p){try{var m=A.call(p);return s.test(m)}catch{return!1}},g=function(p){try{return!o(p)&&(A.call(p),!0)}catch{return!1}},f=Object.prototype.toString,e="function"==typeof Symbol&&!!Symbol.toStringTag,h=!(0 in[,]),Q=function(){return!1};if("object"==typeof document){var I=document.all;f.call(I)===f.call(document.all)&&(Q=function(p){if((h||!p)&&(typeof p>"u"||"object"==typeof p))try{var m=f.call(p);return("[object HTMLAllCollection]"===m||"[object HTML document.all class]"===m||"[object HTMLCollection]"===m||"[object Object]"===m)&&null==p("")}catch{}return!1})}b.exports=n?function(p){if(Q(p))return!0;if(!p||"function"!=typeof p&&"object"!=typeof p)return!1;try{n(p,null,B)}catch(m){if(m!==a)return!1}return!o(p)&&g(p)}:function(p){if(Q(p))return!0;if(!p||"function"!=typeof p&&"object"!=typeof p)return!1;if(e)return g(p);if(o(p))return!1;var m=f.call(p);return!("[object Function]"!==m&&"[object GeneratorFunction]"!==m&&!/^\[object HTML/.test(m))&&g(p)}},71230:function(b,A,n){"use strict";var B=Date.prototype.getDay,s=Object.prototype.toString,g=n(26626)();b.exports=function(w){return"object"==typeof w&&null!==w&&(g?function(w){try{return B.call(w),!0}catch{return!1}}(w):"[object Date]"===s.call(w))}},44610:function(b,A,n){"use strict";var w,B=Object.prototype.toString,a=Function.prototype.toString,s=/^\s*(?:function)?\*/,o=n(26626)(),g=Object.getPrototypeOf;b.exports=function(r){if("function"!=typeof r)return!1;if(s.test(a.call(r)))return!0;if(!o)return"[object GeneratorFunction]"===B.call(r);if(!g)return!1;if(typeof w>"u"){var E=function(){if(!o)return!1;try{return Function("return function*() {}")()}catch{}}();w=!!E&&g(E)}return g(r)===w}},82621:function(b){"use strict";b.exports=function(n){return n!=n}},7051:function(b,A,n){"use strict";var B=n(26601),a=n(77802),s=n(82621),o=n(61320),g=n(35074),f=B(o(),Number);a(f,{getPolyfill:o,implementation:s,shim:g}),b.exports=f},61320:function(b,A,n){"use strict";var B=n(82621);b.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:B}},35074:function(b,A,n){"use strict";var B=n(77802),a=n(61320);b.exports=function(){var o=a();return B(Number,{isNaN:o},{isNaN:function(){return Number.isNaN!==o}}),o}},71689:function(b,A,n){"use strict";var s,o,g,f,B=n(67913),a=n(26626)();if(a){s=B("Object.prototype.hasOwnProperty"),o=B("RegExp.prototype.exec"),g={};var w=function(){throw g};f={toString:w,valueOf:w},"symbol"==typeof Symbol.toPrimitive&&(f[Symbol.toPrimitive]=w)}var u=B("Object.prototype.toString"),r=Object.getOwnPropertyDescriptor;b.exports=a?function(C){if(!C||"object"!=typeof C)return!1;var e=r(C,"lastIndex");if(!e||!s(e,"value"))return!1;try{o(C,f)}catch(Q){return Q===g}}:function(C){return!(!C||"object"!=typeof C&&"function"!=typeof C)&&"[object RegExp]"===u(C)}},46094:function(b,A,n){"use strict";var B=n(43381);b.exports=function(s){return!!B(s)}},63249:function(b){"use strict";var A=function(n){return n!=n};b.exports=function(B,a){return 0===B&&0===a?1/B==1/a:!!(B===a||A(B)&&A(a))}},98527:function(b,A,n){"use strict";var B=n(77802),a=n(26601),s=n(63249),o=n(89636),g=n(3534),f=a(o(),Object);B(f,{getPolyfill:o,implementation:s,shim:g}),b.exports=f},89636:function(b,A,n){"use strict";var B=n(63249);b.exports=function(){return"function"==typeof Object.is?Object.is:B}},3534:function(b,A,n){"use strict";var B=n(89636),a=n(77802);b.exports=function(){var o=B();return a(Object,{is:o},{is:function(){return Object.is!==o}}),o}},48461:function(b,A,n){"use strict";var B;if(!Object.keys){var a=Object.prototype.hasOwnProperty,s=Object.prototype.toString,o=n(76515),g=Object.prototype.propertyIsEnumerable,f=!g.call({toString:null},"toString"),w=g.call(function(){},"prototype"),u=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],r=function(e){var h=e.constructor;return h&&h.prototype===e},d={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},E=function(){if(typeof window>"u")return!1;for(var e in window)try{if(!d["$"+e]&&a.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{r(window[e])}catch{return!0}}catch{return!0}return!1}();B=function(h){var Q=null!==h&&"object"==typeof h,I="[object Function]"===s.call(h),R=o(h),p=Q&&"[object String]"===s.call(h),m=[];if(!Q&&!I&&!R)throw new TypeError("Object.keys called on a non-object");var y=w&&I;if(p&&h.length>0&&!a.call(h,0))for(var x=0;x0)for(var Y=0;Y"u"||!E)return r(e);try{return r(e)}catch{return!1}}(h),z=0;z=0&&"[object Function]"===A.call(B.callee)),s}},36521:function(b,A,n){"use strict";var B=n(35643),a=n(12843)(),s=n(67913),o=Object,g=s("Array.prototype.push"),f=s("Object.prototype.propertyIsEnumerable"),w=a?Object.getOwnPropertySymbols:null;b.exports=function(r,d){if(null==r)throw new TypeError("target must be an object");var E=o(r);if(1===arguments.length)return E;for(var C=1;C>>16&65535,f=0;0!==a;){a-=f=a>2e3?2e3:a;do{g=g+(o=o+B[s++]|0)|0}while(--f);o%=65521,g%=65521}return o|g<<16}},81607:function(b){"use strict";b.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}},99049:function(b){"use strict";var n=function A(){for(var a,s=[],o=0;o<256;o++){a=o;for(var g=0;g<8;g++)a=1&a?3988292384^a>>>1:a>>>1;s[o]=a}return s}();b.exports=function B(a,s,o,g){var f=n,w=g+o;a^=-1;for(var u=g;u>>8^f[255&(a^s[u])];return~a}},22925:function(b,A,n){"use strict";var vt,B=n(72519),a=n(22367),s=n(46911),o=n(99049),g=n(56228),f=0,r=4,E=0,e=-2,I=-1,y=4,Y=2,v=8,S=9,_=286,fA=30,iA=19,wA=2*_+1,IA=15,FA=3,YA=258,HA=YA+FA+1,BA=42,OA=113,W=666,L=1,rA=2,AA=3,QA=4;function cA(O,qA){return O.msg=g[qA],qA}function CA(O){return(O<<1)-(O>4?9:0)}function DA(O){for(var qA=O.length;--qA>=0;)O[qA]=0}function NA(O){var qA=O.state,nt=qA.pending;nt>O.avail_out&&(nt=O.avail_out),0!==nt&&(B.arraySet(O.output,qA.pending_buf,qA.pending_out,nt,O.next_out),O.next_out+=nt,qA.pending_out+=nt,O.total_out+=nt,O.avail_out-=nt,qA.pending-=nt,0===qA.pending&&(qA.pending_out=0))}function zA(O,qA){a._tr_flush_block(O,O.block_start>=0?O.block_start:-1,O.strstart-O.block_start,qA),O.block_start=O.strstart,NA(O.strm)}function pA(O,qA){O.pending_buf[O.pending++]=qA}function JA(O,qA){O.pending_buf[O.pending++]=qA>>>8&255,O.pending_buf[O.pending++]=255&qA}function ft(O,qA,nt,MA){var jA=O.avail_in;return jA>MA&&(jA=MA),0===jA?0:(O.avail_in-=jA,B.arraySet(qA,O.input,O.next_in,jA,nt),1===O.state.wrap?O.adler=s(O.adler,qA,jA,nt):2===O.state.wrap&&(O.adler=o(O.adler,qA,jA,nt)),O.next_in+=jA,O.total_in+=jA,jA)}function wt(O,qA){var jA,ot,nt=O.max_chain_length,MA=O.strstart,Tt=O.prev_length,yt=O.nice_match,Ut=O.strstart>O.w_size-HA?O.strstart-(O.w_size-HA):0,Lt=O.window,sn=O.w_mask,$t=O.prev,Kt=O.strstart+YA,Me=Lt[MA+Tt-1],ze=Lt[MA+Tt];O.prev_length>=O.good_match&&(nt>>=2),yt>O.lookahead&&(yt=O.lookahead);do{if(Lt[(jA=qA)+Tt]===ze&&Lt[jA+Tt-1]===Me&&Lt[jA]===Lt[MA]&&Lt[++jA]===Lt[MA+1]){MA+=2,jA++;do{}while(Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&MATt){if(O.match_start=qA,Tt=ot,ot>=yt)break;Me=Lt[MA+Tt-1],ze=Lt[MA+Tt]}}}while((qA=$t[qA&sn])>Ut&&0!=--nt);return Tt<=O.lookahead?Tt:O.lookahead}function gt(O){var nt,MA,jA,ot,Tt,qA=O.w_size;do{if(ot=O.window_size-O.lookahead-O.strstart,O.strstart>=qA+(qA-HA)){B.arraySet(O.window,O.window,qA,qA,0),O.match_start-=qA,O.strstart-=qA,O.block_start-=qA,nt=MA=O.hash_size;do{jA=O.head[--nt],O.head[nt]=jA>=qA?jA-qA:0}while(--MA);nt=MA=qA;do{jA=O.prev[--nt],O.prev[nt]=jA>=qA?jA-qA:0}while(--MA);ot+=qA}if(0===O.strm.avail_in)break;if(MA=ft(O.strm,O.window,O.strstart+O.lookahead,ot),O.lookahead+=MA,O.lookahead+O.insert>=FA)for(O.ins_h=O.window[Tt=O.strstart-O.insert],O.ins_h=(O.ins_h<=FA&&(O.ins_h=(O.ins_h<=FA)if(MA=a._tr_tally(O,O.strstart-O.match_start,O.match_length-FA),O.lookahead-=O.match_length,O.match_length<=O.max_lazy_match&&O.lookahead>=FA){O.match_length--;do{O.strstart++,O.ins_h=(O.ins_h<=FA&&(O.ins_h=(O.ins_h<4096)&&(O.match_length=FA-1)),O.prev_length>=FA&&O.match_length<=O.prev_length){jA=O.strstart+O.lookahead-FA,MA=a._tr_tally(O,O.strstart-1-O.prev_match,O.prev_length-FA),O.lookahead-=O.prev_length-1,O.prev_length-=2;do{++O.strstart<=jA&&(O.ins_h=(O.ins_h<15&&(Tt=2,MA-=16),jA<1||jA>S||nt!==v||MA<8||MA>15||qA<0||qA>9||ot<0||ot>y)return cA(O,e);8===MA&&(MA=9);var yt=new vA;return O.state=yt,yt.strm=O,yt.wrap=Tt,yt.gzhead=null,yt.w_bits=MA,yt.w_size=1<O.pending_buf_size-5&&(nt=O.pending_buf_size-5);;){if(O.lookahead<=1){if(gt(O),0===O.lookahead&&qA===f)return L;if(0===O.lookahead)break}O.strstart+=O.lookahead,O.lookahead=0;var MA=O.block_start+nt;if((0===O.strstart||O.strstart>=MA)&&(O.lookahead=O.strstart-MA,O.strstart=MA,zA(O,!1),0===O.strm.avail_out)||O.strstart-O.block_start>=O.w_size-HA&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):(O.strstart>O.block_start&&zA(O,!1),L)}),new ht(4,4,8,4,Yt),new ht(4,5,16,8,Yt),new ht(4,6,32,32,Yt),new ht(4,4,16,16,VA),new ht(8,16,32,32,VA),new ht(8,16,128,128,VA),new ht(8,32,128,256,VA),new ht(32,128,258,1024,VA),new ht(32,258,258,4096,VA)],A.deflateInit=function hA(O,qA){return U(O,qA,v,15,8,0)},A.deflateInit2=U,A.deflateReset=Z,A.deflateResetKeep=Bt,A.deflateSetHeader=function k(O,qA){return O&&O.state&&2===O.state.wrap?(O.state.gzhead=qA,E):e},A.deflate=function q(O,qA){var nt,MA,jA,ot;if(!O||!O.state||qA>5||qA<0)return O?cA(O,e):e;if(MA=O.state,!O.output||!O.input&&0!==O.avail_in||MA.status===W&&qA!==r)return cA(O,0===O.avail_out?-5:e);if(MA.strm=O,nt=MA.last_flush,MA.last_flush=qA,MA.status===BA)if(2===MA.wrap)O.adler=0,pA(MA,31),pA(MA,139),pA(MA,8),MA.gzhead?(pA(MA,(MA.gzhead.text?1:0)+(MA.gzhead.hcrc?2:0)+(MA.gzhead.extra?4:0)+(MA.gzhead.name?8:0)+(MA.gzhead.comment?16:0)),pA(MA,255&MA.gzhead.time),pA(MA,MA.gzhead.time>>8&255),pA(MA,MA.gzhead.time>>16&255),pA(MA,MA.gzhead.time>>24&255),pA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),pA(MA,255&MA.gzhead.os),MA.gzhead.extra&&MA.gzhead.extra.length&&(pA(MA,255&MA.gzhead.extra.length),pA(MA,MA.gzhead.extra.length>>8&255)),MA.gzhead.hcrc&&(O.adler=o(O.adler,MA.pending_buf,MA.pending,0)),MA.gzindex=0,MA.status=69):(pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),pA(MA,3),MA.status=OA);else{var Tt=v+(MA.w_bits-8<<4)<<8;Tt|=(MA.strategy>=2||MA.level<2?0:MA.level<6?1:6===MA.level?2:3)<<6,0!==MA.strstart&&(Tt|=32),Tt+=31-Tt%31,MA.status=OA,JA(MA,Tt),0!==MA.strstart&&(JA(MA,O.adler>>>16),JA(MA,65535&O.adler)),O.adler=1}if(69===MA.status)if(MA.gzhead.extra){for(jA=MA.pending;MA.gzindex<(65535&MA.gzhead.extra.length)&&(MA.pending!==MA.pending_buf_size||(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending!==MA.pending_buf_size));)pA(MA,255&MA.gzhead.extra[MA.gzindex]),MA.gzindex++;MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),MA.gzindex===MA.gzhead.extra.length&&(MA.gzindex=0,MA.status=73)}else MA.status=73;if(73===MA.status)if(MA.gzhead.name){jA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending===MA.pending_buf_size)){ot=1;break}ot=MA.gzindexjA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),0===ot&&(MA.gzindex=0,MA.status=91)}else MA.status=91;if(91===MA.status)if(MA.gzhead.comment){jA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending===MA.pending_buf_size)){ot=1;break}ot=MA.gzindexjA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),0===ot&&(MA.status=103)}else MA.status=103;if(103===MA.status&&(MA.gzhead.hcrc?(MA.pending+2>MA.pending_buf_size&&NA(O),MA.pending+2<=MA.pending_buf_size&&(pA(MA,255&O.adler),pA(MA,O.adler>>8&255),O.adler=0,MA.status=OA)):MA.status=OA),0!==MA.pending){if(NA(O),0===O.avail_out)return MA.last_flush=-1,E}else if(0===O.avail_in&&CA(qA)<=CA(nt)&&qA!==r)return cA(O,-5);if(MA.status===W&&0!==O.avail_in)return cA(O,-5);if(0!==O.avail_in||0!==MA.lookahead||qA!==f&&MA.status!==W){var Ut=2===MA.strategy?function Qt(O,qA){for(var nt;;){if(0===O.lookahead&&(gt(O),0===O.lookahead)){if(qA===f)return L;break}if(O.match_length=0,nt=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++,nt&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?L:rA}(MA,qA):3===MA.strategy?function _A(O,qA){for(var nt,MA,jA,ot,Tt=O.window;;){if(O.lookahead<=YA){if(gt(O),O.lookahead<=YA&&qA===f)return L;if(0===O.lookahead)break}if(O.match_length=0,O.lookahead>=FA&&O.strstart>0&&(MA=Tt[jA=O.strstart-1])===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]){ot=O.strstart+YA;do{}while(MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&jAO.lookahead&&(O.match_length=O.lookahead)}if(O.match_length>=FA?(nt=a._tr_tally(O,1,O.match_length-FA),O.lookahead-=O.match_length,O.strstart+=O.match_length,O.match_length=0):(nt=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++),nt&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?L:rA}(MA,qA):vt[MA.level].func(MA,qA);if((Ut===AA||Ut===QA)&&(MA.status=W),Ut===L||Ut===AA)return 0===O.avail_out&&(MA.last_flush=-1),E;if(Ut===rA&&(1===qA?a._tr_align(MA):5!==qA&&(a._tr_stored_block(MA,0,0,!1),3===qA&&(DA(MA.head),0===MA.lookahead&&(MA.strstart=0,MA.block_start=0,MA.insert=0))),NA(O),0===O.avail_out))return MA.last_flush=-1,E}return qA!==r?E:MA.wrap<=0?1:(2===MA.wrap?(pA(MA,255&O.adler),pA(MA,O.adler>>8&255),pA(MA,O.adler>>16&255),pA(MA,O.adler>>24&255),pA(MA,255&O.total_in),pA(MA,O.total_in>>8&255),pA(MA,O.total_in>>16&255),pA(MA,O.total_in>>24&255)):(JA(MA,O.adler>>>16),JA(MA,65535&O.adler)),NA(O),MA.wrap>0&&(MA.wrap=-MA.wrap),0!==MA.pending?E:1)},A.deflateEnd=function GA(O){var qA;return O&&O.state?(qA=O.state.status)!==BA&&69!==qA&&73!==qA&&91!==qA&&103!==qA&&qA!==OA&&qA!==W?cA(O,e):(O.state=null,qA===OA?cA(O,-3):E):e},A.deflateSetDictionary=function At(O,qA){var MA,jA,ot,Tt,yt,Ut,Lt,sn,nt=qA.length;if(!O||!O.state||2===(Tt=(MA=O.state).wrap)||1===Tt&&MA.status!==BA||MA.lookahead)return e;for(1===Tt&&(O.adler=s(O.adler,qA,nt,0)),MA.wrap=0,nt>=MA.w_size&&(0===Tt&&(DA(MA.head),MA.strstart=0,MA.block_start=0,MA.insert=0),sn=new B.Buf8(MA.w_size),B.arraySet(sn,qA,nt-MA.w_size,MA.w_size,0),qA=sn,nt=MA.w_size),yt=O.avail_in,Ut=O.next_in,Lt=O.input,O.avail_in=nt,O.next_in=0,O.input=qA,gt(MA);MA.lookahead>=FA;){jA=MA.strstart,ot=MA.lookahead-(FA-1);do{MA.ins_h=(MA.ins_h<>>=Y=x>>>24,I-=Y,0==(Y=x>>>16&255))gA[w++]=65535&x;else{if(!(16&Y)){if(64&Y){if(32&Y){o.mode=12;break A}a.msg="invalid literal/length code",o.mode=30;break A}x=R[(65535&x)+(Q&(1<>>=Y,I-=Y),I<15&&(Q+=$[g++]<>>=Y=x>>>24,I-=Y,16&(Y=x>>>16&255)){if(S=65535&x,I<(Y&=15)&&(Q+=$[g++]<d){a.msg="invalid distance too far back",o.mode=30;break A}if(Q>>>=Y,I-=Y,S>(Y=w-u)){if((Y=S-Y)>C&&o.sane){a.msg="invalid distance too far back",o.mode=30;break A}if(z=0,F=h,0===e){if(z+=E-Y,Y2;)gA[w++]=F[z++],gA[w++]=F[z++],gA[w++]=F[z++],v-=3;v&&(gA[w++]=F[z++],v>1&&(gA[w++]=F[z++]))}else{z=w-S;do{gA[w++]=gA[z++],gA[w++]=gA[z++],gA[w++]=gA[z++],v-=3}while(v>2);v&&(gA[w++]=gA[z++],v>1&&(gA[w++]=gA[z++]))}break}if(64&Y){a.msg="invalid distance code",o.mode=30;break A}x=p[(65535&x)+(Q&(1<>3)<<3))-1,a.next_in=g-=v,a.next_out=w,a.avail_in=g>>24&255)+(U>>>8&65280)+((65280&U)<<8)+((255&U)<<24)}function ft(){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 B.Buf16(320),this.work=new B.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function wt(U){var hA;return U&&U.state?(U.total_in=U.total_out=(hA=U.state).total=0,U.msg="",hA.wrap&&(U.adler=1&hA.wrap),hA.mode=y,hA.last=0,hA.havedict=0,hA.dmax=32768,hA.head=null,hA.hold=0,hA.bits=0,hA.lencode=hA.lendyn=new B.Buf32(DA),hA.distcode=hA.distdyn=new B.Buf32(NA),hA.sane=1,hA.back=-1,C):Q}function gt(U){var hA;return U&&U.state?((hA=U.state).wsize=0,hA.whave=0,hA.wnext=0,wt(U)):Q}function pt(U,hA){var q,GA;return!U||!U.state||(GA=U.state,hA<0?(q=0,hA=-hA):(q=1+(hA>>4),hA<48&&(hA&=15)),hA&&(hA<8||hA>15))?Q:(null!==GA.window&&GA.wbits!==hA&&(GA.window=null),GA.wrap=q,GA.wbits=hA,gt(U))}function Yt(U,hA){var q,GA;return U?(GA=new ft,U.state=GA,GA.window=null,(q=pt(U,hA))!==C&&(U.state=null),q):Q}var Qt,ht,_A=!0;function vt(U){if(_A){var hA;for(Qt=new B.Buf32(512),ht=new B.Buf32(32),hA=0;hA<144;)U.lens[hA++]=8;for(;hA<256;)U.lens[hA++]=9;for(;hA<280;)U.lens[hA++]=7;for(;hA<288;)U.lens[hA++]=8;for(g(w,U.lens,0,288,Qt,0,U.work,{bits:9}),hA=0;hA<32;)U.lens[hA++]=5;g(u,U.lens,0,32,ht,0,U.work,{bits:5}),_A=!1}U.lencode=Qt,U.lenbits=9,U.distcode=ht,U.distbits=5}function Nt(U,hA,q,GA){var At,O=U.state;return null===O.window&&(O.wsize=1<=O.wsize?(B.arraySet(O.window,hA,q-O.wsize,O.wsize,0),O.wnext=0,O.whave=O.wsize):((At=O.wsize-O.wnext)>GA&&(At=GA),B.arraySet(O.window,hA,q-GA,At,O.wnext),(GA-=At)?(B.arraySet(O.window,hA,q-GA,GA,0),O.wnext=GA,O.whave=O.wsize):(O.wnext+=At,O.wnext===O.wsize&&(O.wnext=0),O.whave>>8&255,q.check=s(q.check,Te,2,0),jA=0,ot=0,q.mode=2;break}if(q.flags=0,q.head&&(q.head.done=!1),!(1&q.wrap)||(((255&jA)<<8)+(jA>>8))%31){U.msg="incorrect header check",q.mode=30;break}if(8!=(15&jA)){U.msg="unknown compression method",q.mode=30;break}if(ot-=4,ee=8+(15&(jA>>>=4)),0===q.wbits)q.wbits=ee;else if(ee>q.wbits){U.msg="invalid window size",q.mode=30;break}q.dmax=1<>8&1),512&q.flags&&(Te[0]=255&jA,Te[1]=jA>>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0,q.mode=3;case 3:for(;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>8&255,Te[2]=jA>>>16&255,Te[3]=jA>>>24&255,q.check=s(q.check,Te,4,0)),jA=0,ot=0,q.mode=4;case 4:for(;ot<16;){if(0===nt)break A;nt--,jA+=GA[O++]<>8),512&q.flags&&(Te[0]=255&jA,Te[1]=jA>>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0,q.mode=5;case 5:if(1024&q.flags){for(;ot<16;){if(0===nt)break A;nt--,jA+=GA[O++]<>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0}else q.head&&(q.head.extra=null);q.mode=6;case 6:if(1024&q.flags&&((Ut=q.length)>nt&&(Ut=nt),Ut&&(q.head&&(ee=q.head.extra_len-q.length,q.head.extra||(q.head.extra=new Array(q.head.extra_len)),B.arraySet(q.head.extra,GA,O,Ut,ee)),512&q.flags&&(q.check=s(q.check,GA,Ut,O)),nt-=Ut,O+=Ut,q.length-=Ut),q.length))break A;q.length=0,q.mode=7;case 7:if(2048&q.flags){if(0===nt)break A;Ut=0;do{ee=GA[O+Ut++],q.head&&ee&&q.length<65536&&(q.head.name+=String.fromCharCode(ee))}while(ee&&Ut>9&1,q.head.done=!0),U.adler=q.check=0,q.mode=12;break;case 10:for(;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=7&ot,ot-=7&ot,q.mode=27;break}for(;ot<3;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=1)){case 0:q.mode=14;break;case 1:if(vt(q),q.mode=20,6===hA){jA>>>=2,ot-=2;break A}break;case 2:q.mode=17;break;case 3:U.msg="invalid block type",q.mode=30}jA>>>=2,ot-=2;break;case 14:for(jA>>>=7&ot,ot-=7&ot;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>16^65535)){U.msg="invalid stored block lengths",q.mode=30;break}if(q.length=65535&jA,jA=0,ot=0,q.mode=15,6===hA)break A;case 15:q.mode=16;case 16:if(Ut=q.length){if(Ut>nt&&(Ut=nt),Ut>MA&&(Ut=MA),0===Ut)break A;B.arraySet(At,GA,O,Ut,qA),nt-=Ut,O+=Ut,MA-=Ut,qA+=Ut,q.length-=Ut;break}q.mode=12;break;case 17:for(;ot<14;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=5)),ot-=5,q.ncode=4+(15&(jA>>>=5)),jA>>>=4,ot-=4,q.nlen>286||q.ndist>30){U.msg="too many length or distance symbols",q.mode=30;break}q.have=0,q.mode=18;case 18:for(;q.have>>=3,ot-=3}for(;q.have<19;)q.lens[In[q.have++]]=0;if(q.lencode=q.lendyn,q.lenbits=7,An=g(0,q.lens,0,19,q.lencode,0,q.work,Fe={bits:q.lenbits}),q.lenbits=Fe.bits,An){U.msg="invalid code lengths set",q.mode=30;break}q.have=0,q.mode=19;case 19:for(;q.have>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Kt,ot-=Kt,q.lens[q.have++]=ze;else{if(16===ze){for(Qe=Kt+2;ot>>=Kt,ot-=Kt,0===q.have){U.msg="invalid bit length repeat",q.mode=30;break}ee=q.lens[q.have-1],Ut=3+(3&jA),jA>>>=2,ot-=2}else if(17===ze){for(Qe=Kt+3;ot>>=Kt)),jA>>>=3,ot-=3}else{for(Qe=Kt+7;ot>>=Kt)),jA>>>=7,ot-=7}if(q.have+Ut>q.nlen+q.ndist){U.msg="invalid bit length repeat",q.mode=30;break}for(;Ut--;)q.lens[q.have++]=ee}}if(30===q.mode)break;if(0===q.lens[256]){U.msg="invalid code -- missing end-of-block",q.mode=30;break}if(q.lenbits=9,An=g(w,q.lens,0,q.nlen,q.lencode,0,q.work,Fe={bits:q.lenbits}),q.lenbits=Fe.bits,An){U.msg="invalid literal/lengths set",q.mode=30;break}if(q.distbits=6,q.distcode=q.distdyn,An=g(u,q.lens,q.nlen,q.ndist,q.distcode,0,q.work,Fe={bits:q.distbits}),q.distbits=Fe.bits,An){U.msg="invalid distances set",q.mode=30;break}if(q.mode=20,6===hA)break A;case 20:q.mode=21;case 21:if(nt>=6&&MA>=258){U.next_out=qA,U.avail_out=MA,U.next_in=O,U.avail_in=nt,q.hold=jA,q.bits=ot,o(U,yt),qA=U.next_out,At=U.output,MA=U.avail_out,O=U.next_in,GA=U.input,nt=U.avail_in,jA=q.hold,ot=q.bits,12===q.mode&&(q.back=-1);break}for(q.back=0;Me=($t=q.lencode[jA&(1<>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>Re)])>>>16&255,ze=65535&$t,!(Re+(Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Re,ot-=Re,q.back+=Re}if(jA>>>=Kt,ot-=Kt,q.back+=Kt,q.length=ze,0===Me){q.mode=26;break}if(32&Me){q.back=-1,q.mode=12;break}if(64&Me){U.msg="invalid literal/length code",q.mode=30;break}q.extra=15&Me,q.mode=22;case 22:if(q.extra){for(Qe=q.extra;ot>>=q.extra,ot-=q.extra,q.back+=q.extra}q.was=q.length,q.mode=23;case 23:for(;Me=($t=q.distcode[jA&(1<>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>Re)])>>>16&255,ze=65535&$t,!(Re+(Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Re,ot-=Re,q.back+=Re}if(jA>>>=Kt,ot-=Kt,q.back+=Kt,64&Me){U.msg="invalid distance code",q.mode=30;break}q.offset=ze,q.extra=15&Me,q.mode=24;case 24:if(q.extra){for(Qe=q.extra;ot>>=q.extra,ot-=q.extra,q.back+=q.extra}if(q.offset>q.dmax){U.msg="invalid distance too far back",q.mode=30;break}q.mode=25;case 25:if(0===MA)break A;if(q.offset>(Ut=yt-MA)){if((Ut=q.offset-Ut)>q.whave&&q.sane){U.msg="invalid distance too far back",q.mode=30;break}Lt=Ut>q.wnext?q.wsize-(Ut-=q.wnext):q.wnext-Ut,Ut>q.length&&(Ut=q.length),sn=q.window}else sn=At,Lt=qA-q.offset,Ut=q.length;Ut>MA&&(Ut=MA),MA-=Ut,q.length-=Ut;do{At[qA++]=sn[Lt++]}while(--Ut);0===q.length&&(q.mode=21);break;case 26:if(0===MA)break A;At[qA++]=q.length,MA--,q.mode=21;break;case 27:if(q.wrap){for(;ot<32;){if(0===nt)break A;nt--,jA|=GA[O++]<=1&&0===eA[z];z--);if(F>z&&(F=z),0===z)return R[p++]=20971520,R[p++]=20971520,y.bits=1,0;for(S=1;S0&&(0===e||1!==z))return-1;for(EA[1]=0,Y=1;Y852||2===e&&fA>592)return 1;for(;;){W=Y-gA,m[v]aA?(L=xA[OA+m[v]],rA=J[BA+m[v]]):(L=96,rA=0),wA=1<>gA)+(IA-=wA)]=W<<24|L<<16|rA}while(0!==IA);for(wA=1<>=1;if(0!==wA?(iA&=wA-1,iA+=wA):iA=0,v++,0==--eA[Y]){if(Y===z)break;Y=h[Q+m[v]]}if(Y>F&&(iA&YA)!==FA){for(0===gA&&(gA=F),HA+=S,_=1<<($=Y-gA);$+gA852||2===e&&fA>592)return 1;R[FA=iA&YA]=F<<24|$<<16|HA-p}}return 0!==iA&&(R[HA+iA]=4194304|Y-gA<<24),y.bits=F,0}},56228:function(b){"use strict";b.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"}},22367:function(b,A,n){"use strict";var B=n(72519),s=0,o=1;function f(vA){for(var Bt=vA.length;--Bt>=0;)vA[Bt]=0}var w=0,C=29,e=256,h=e+1+C,Q=30,I=19,R=2*h+1,p=15,m=16,y=7,x=256,Y=16,v=17,S=18,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],F=[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],$=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],gA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],fA=new Array(2*(h+2));f(fA);var iA=new Array(2*Q);f(iA);var wA=new Array(512);f(wA);var IA=new Array(256);f(IA);var FA=new Array(C);f(FA);var J,BA,aA,YA=new Array(Q);function HA(vA,Bt,Z,k,U){this.static_tree=vA,this.extra_bits=Bt,this.extra_base=Z,this.elems=k,this.max_length=U,this.has_stree=vA&&vA.length}function eA(vA,Bt){this.dyn_tree=vA,this.max_code=0,this.stat_desc=Bt}function EA(vA){return vA<256?wA[vA]:wA[256+(vA>>>7)]}function xA(vA,Bt){vA.pending_buf[vA.pending++]=255&Bt,vA.pending_buf[vA.pending++]=Bt>>>8&255}function OA(vA,Bt,Z){vA.bi_valid>m-Z?(vA.bi_buf|=Bt<>m-vA.bi_valid,vA.bi_valid+=Z-m):(vA.bi_buf|=Bt<>>=1,Z<<=1}while(--Bt>0);return Z>>>1}function QA(vA,Bt,Z){var hA,q,k=new Array(p+1),U=0;for(hA=1;hA<=p;hA++)k[hA]=U=U+Z[hA-1]<<1;for(q=0;q<=Bt;q++){var GA=vA[2*q+1];0!==GA&&(vA[2*q]=L(k[GA]++,GA))}}function cA(vA){var Bt;for(Bt=0;Bt8?xA(vA,vA.bi_buf):vA.bi_valid>0&&(vA.pending_buf[vA.pending++]=vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0}function NA(vA,Bt,Z,k){var U=2*Bt,hA=2*Z;return vA[U]>1;q>=1;q--)zA(vA,Z,q);O=hA;do{q=vA.heap[1],vA.heap[1]=vA.heap[vA.heap_len--],zA(vA,Z,1),GA=vA.heap[1],vA.heap[--vA.heap_max]=q,vA.heap[--vA.heap_max]=GA,Z[2*O]=Z[2*q]+Z[2*GA],vA.depth[O]=(vA.depth[q]>=vA.depth[GA]?vA.depth[q]:vA.depth[GA])+1,Z[2*q+1]=Z[2*GA+1]=O,vA.heap[1]=O++,zA(vA,Z,1)}while(vA.heap_len>=2);vA.heap[--vA.heap_max]=vA.heap[1],function AA(vA,Bt){var O,qA,nt,MA,jA,ot,Z=Bt.dyn_tree,k=Bt.max_code,U=Bt.stat_desc.static_tree,hA=Bt.stat_desc.has_stree,q=Bt.stat_desc.extra_bits,GA=Bt.stat_desc.extra_base,At=Bt.stat_desc.max_length,Tt=0;for(MA=0;MA<=p;MA++)vA.bl_count[MA]=0;for(Z[2*vA.heap[vA.heap_max]+1]=0,O=vA.heap_max+1;OAt&&(MA=At,Tt++),Z[2*qA+1]=MA,!(qA>k)&&(vA.bl_count[MA]++,jA=0,qA>=GA&&(jA=q[qA-GA]),vA.opt_len+=(ot=Z[2*qA])*(MA+jA),hA&&(vA.static_len+=ot*(U[2*qA+1]+jA)));if(0!==Tt){do{for(MA=At-1;0===vA.bl_count[MA];)MA--;vA.bl_count[MA]--,vA.bl_count[MA+1]+=2,vA.bl_count[At]--,Tt-=2}while(Tt>0);for(MA=At;0!==MA;MA--)for(qA=vA.bl_count[MA];0!==qA;)!((nt=vA.heap[--O])>k)&&(Z[2*nt+1]!==MA&&(vA.opt_len+=(MA-Z[2*nt+1])*Z[2*nt],Z[2*nt+1]=MA),qA--)}}(vA,Bt),QA(Z,At,vA.bl_count)}function ft(vA,Bt,Z){var k,hA,U=-1,q=Bt[1],GA=0,At=7,O=4;for(0===q&&(At=138,O=3),Bt[2*(Z+1)+1]=65535,k=0;k<=Z;k++)hA=q,q=Bt[2*(k+1)+1],!(++GA>=7;k0?(2===vA.strm.data_type&&(vA.strm.data_type=function Yt(vA){var Z,Bt=4093624447;for(Z=0;Z<=31;Z++,Bt>>>=1)if(1&Bt&&0!==vA.dyn_ltree[2*Z])return s;if(0!==vA.dyn_ltree[18]||0!==vA.dyn_ltree[20]||0!==vA.dyn_ltree[26])return o;for(Z=32;Z=3&&0===vA.bl_tree[2*gA[Bt]+1];Bt--);return vA.opt_len+=3*(Bt+1)+5+5+4,Bt}(vA),(hA=vA.static_len+3+7>>>3)<=(U=vA.opt_len+3+7>>>3)&&(U=hA)):U=hA=Z+5,Z+4<=U&&-1!==Bt?Qt(vA,Bt,Z,k):4===vA.strategy||hA===U?(OA(vA,2+(k?1:0),3),pA(vA,fA,iA)):(OA(vA,4+(k?1:0),3),function pt(vA,Bt,Z,k){var U;for(OA(vA,Bt-257,5),OA(vA,Z-1,5),OA(vA,k-4,4),U=0;U>>8&255,vA.pending_buf[vA.d_buf+2*vA.last_lit+1]=255&Bt,vA.pending_buf[vA.l_buf+vA.last_lit]=255&Z,vA.last_lit++,0===Bt?vA.dyn_ltree[2*Z]++:(vA.matches++,Bt--,vA.dyn_ltree[2*(IA[Z]+e+1)]++,vA.dyn_dtree[2*EA(Bt)]++),vA.last_lit===vA.lit_bufsize-1},A._tr_align=function ht(vA){OA(vA,2,3),W(vA,x,fA),function rA(vA){16===vA.bi_valid?(xA(vA,vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0):vA.bi_valid>=8&&(vA.pending_buf[vA.pending++]=255&vA.bi_buf,vA.bi_buf>>=8,vA.bi_valid-=8)}(vA)}},37468:function(b){"use strict";b.exports=function A(){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}},10884:function(b){"use strict";b.exports=["Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},9964:function(b){var n,B,A=b.exports={};function a(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function o(h){if(n===setTimeout)return setTimeout(h,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(h,0);try{return n(h,0)}catch{try{return n.call(null,h,0)}catch{return n.call(this,h,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch{n=a}try{B="function"==typeof clearTimeout?clearTimeout:s}catch{B=s}}();var u,f=[],w=!1,r=-1;function d(){!w||!u||(w=!1,u.length?f=u.concat(f):r=-1,f.length&&E())}function E(){if(!w){var h=o(d);w=!0;for(var Q=f.length;Q;){for(u=f,f=[];++r1)for(var I=1;I"===AA?(_(L,"onsgmldeclaration",L.sgmlDecl),L.sgmlDecl="",L.state=F.TEXT):(Y(AA)&&(L.state=F.SGML_DECL_QUOTED),L.sgmlDecl+=AA);continue;case F.SGML_DECL_QUOTED:AA===L.q&&(L.state=F.SGML_DECL,L.q=""),L.sgmlDecl+=AA;continue;case F.DOCTYPE:">"===AA?(L.state=F.TEXT,_(L,"ondoctype",L.doctype),L.doctype=!0):(L.doctype+=AA,"["===AA?L.state=F.DOCTYPE_DTD:Y(AA)&&(L.state=F.DOCTYPE_QUOTED,L.q=AA));continue;case F.DOCTYPE_QUOTED:L.doctype+=AA,AA===L.q&&(L.q="",L.state=F.DOCTYPE);continue;case F.DOCTYPE_DTD:L.doctype+=AA,"]"===AA?L.state=F.DOCTYPE:Y(AA)&&(L.state=F.DOCTYPE_DTD_QUOTED,L.q=AA);continue;case F.DOCTYPE_DTD_QUOTED:L.doctype+=AA,AA===L.q&&(L.state=F.DOCTYPE_DTD,L.q="");continue;case F.COMMENT:"-"===AA?L.state=F.COMMENT_ENDING:L.comment+=AA;continue;case F.COMMENT_ENDING:"-"===AA?(L.state=F.COMMENT_ENDED,L.comment=iA(L.opt,L.comment),L.comment&&_(L,"oncomment",L.comment),L.comment=""):(L.comment+="-"+AA,L.state=F.COMMENT);continue;case F.COMMENT_ENDED:">"!==AA?(FA(L,"Malformed comment"),L.comment+="--"+AA,L.state=F.COMMENT):L.state=F.TEXT;continue;case F.CDATA:"]"===AA?L.state=F.CDATA_ENDING:L.cdata+=AA;continue;case F.CDATA_ENDING:"]"===AA?L.state=F.CDATA_ENDING_2:(L.cdata+="]"+AA,L.state=F.CDATA);continue;case F.CDATA_ENDING_2:">"===AA?(L.cdata&&_(L,"oncdata",L.cdata),_(L,"onclosecdata"),L.cdata="",L.state=F.TEXT):"]"===AA?L.cdata+="]":(L.cdata+="]]"+AA,L.state=F.CDATA);continue;case F.PROC_INST:"?"===AA?L.state=F.PROC_INST_ENDING:x(AA)?L.state=F.PROC_INST_BODY:L.procInstName+=AA;continue;case F.PROC_INST_BODY:if(!L.procInstBody&&x(AA))continue;"?"===AA?L.state=F.PROC_INST_ENDING:L.procInstBody+=AA;continue;case F.PROC_INST_ENDING:">"===AA?(_(L,"onprocessinginstruction",{name:L.procInstName,body:L.procInstBody}),L.procInstName=L.procInstBody="",L.state=F.TEXT):(L.procInstBody+="?"+AA,L.state=F.PROC_INST_BODY);continue;case F.OPEN_TAG:S(p,AA)?L.tagName+=AA:(YA(L),">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:(x(AA)||FA(L,"Invalid character in tag name"),L.state=F.ATTRIB));continue;case F.OPEN_TAG_SLASH:">"===AA?(BA(L,!0),aA(L)):(FA(L,"Forward-slash in opening tag not followed by >"),L.state=F.ATTRIB);continue;case F.ATTRIB:if(x(AA))continue;">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:S(R,AA)?(L.attribName=AA,L.attribValue="",L.state=F.ATTRIB_NAME):FA(L,"Invalid attribute name");continue;case F.ATTRIB_NAME:"="===AA?L.state=F.ATTRIB_VALUE:">"===AA?(FA(L,"Attribute without value"),L.attribValue=L.attribName,J(L),BA(L)):x(AA)?L.state=F.ATTRIB_NAME_SAW_WHITE:S(p,AA)?L.attribName+=AA:FA(L,"Invalid attribute name");continue;case F.ATTRIB_NAME_SAW_WHITE:if("="===AA)L.state=F.ATTRIB_VALUE;else{if(x(AA))continue;FA(L,"Attribute without value"),L.tag.attributes[L.attribName]="",L.attribValue="",_(L,"onattribute",{name:L.attribName,value:""}),L.attribName="",">"===AA?BA(L):S(R,AA)?(L.attribName=AA,L.state=F.ATTRIB_NAME):(FA(L,"Invalid attribute name"),L.state=F.ATTRIB)}continue;case F.ATTRIB_VALUE:if(x(AA))continue;Y(AA)?(L.q=AA,L.state=F.ATTRIB_VALUE_QUOTED):(FA(L,"Unquoted attribute value"),L.state=F.ATTRIB_VALUE_UNQUOTED,L.attribValue=AA);continue;case F.ATTRIB_VALUE_QUOTED:if(AA!==L.q){"&"===AA?L.state=F.ATTRIB_VALUE_ENTITY_Q:L.attribValue+=AA;continue}J(L),L.q="",L.state=F.ATTRIB_VALUE_CLOSED;continue;case F.ATTRIB_VALUE_CLOSED:x(AA)?L.state=F.ATTRIB:">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:S(R,AA)?(FA(L,"No whitespace between attributes"),L.attribName=AA,L.attribValue="",L.state=F.ATTRIB_NAME):FA(L,"Invalid attribute name");continue;case F.ATTRIB_VALUE_UNQUOTED:if(!v(AA)){"&"===AA?L.state=F.ATTRIB_VALUE_ENTITY_U:L.attribValue+=AA;continue}J(L),">"===AA?BA(L):L.state=F.ATTRIB;continue;case F.CLOSE_TAG:if(L.tagName)">"===AA?aA(L):S(p,AA)?L.tagName+=AA:L.script?(L.script+=""===AA?aA(L):FA(L,"Invalid characters in closing tag");continue;case F.TEXT_ENTITY:case F.ATTRIB_VALUE_ENTITY_Q:case F.ATTRIB_VALUE_ENTITY_U:var cA,CA;switch(L.state){case F.TEXT_ENTITY:cA=F.TEXT,CA="textNode";break;case F.ATTRIB_VALUE_ENTITY_Q:cA=F.ATTRIB_VALUE_QUOTED,CA="attribValue";break;case F.ATTRIB_VALUE_ENTITY_U:cA=F.ATTRIB_VALUE_UNQUOTED,CA="attribValue"}if(";"===AA)if(L.opt.unparsedEntities){var DA=eA(L);L.entity="",L.state=cA,L.write(DA)}else L[CA]+=eA(L),L.entity="",L.state=cA;else S(L.entity.length?y:m,AA)?L.entity+=AA:(FA(L,"Invalid character in entity name"),L[CA]+="&"+L.entity+AA,L.entity="",L.state=cA);continue;default:throw new Error(L,"Unknown state: "+L.state)}return L.position>=L.bufferCheckPosition&&function g(W){for(var L=Math.max(a.MAX_BUFFER_LENGTH,10),rA=0,AA=0,QA=s.length;AAL)switch(s[AA]){case"textNode":fA(W);break;case"cdata":_(W,"oncdata",W.cdata),W.cdata="";break;case"script":_(W,"onscript",W.script),W.script="";break;default:wA(W,"Max buffer length exceeded: "+s[AA])}rA=Math.max(rA,yA)}W.bufferCheckPosition=a.MAX_BUFFER_LENGTH-rA+W.position}(L),L},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function w(W){fA(W),""!==W.cdata&&(_(W,"oncdata",W.cdata),W.cdata=""),""!==W.script&&(_(W,"onscript",W.script),W.script="")}(this)}};try{u=n(9760).Stream}catch{u=function(){}}u||(u=function(){});var r=a.EVENTS.filter(function(W){return"error"!==W&&"end"!==W});function E(W,L){if(!(this instanceof E))return new E(W,L);u.apply(this),this._parser=new o(W,L),this.writable=!0,this.readable=!0;var rA=this;this._parser.onend=function(){rA.emit("end")},this._parser.onerror=function(AA){rA.emit("error",AA),rA._parser.error=null},this._decoder=null,r.forEach(function(AA){Object.defineProperty(rA,"on"+AA,{get:function(){return rA._parser["on"+AA]},set:function(QA){if(!QA)return rA.removeAllListeners(AA),rA._parser["on"+AA]=QA,QA;rA.on(AA,QA)},enumerable:!0,configurable:!1})})}(E.prototype=Object.create(u.prototype,{constructor:{value:E}})).write=function(W){if("function"==typeof B&&"function"==typeof B.isBuffer&&B.isBuffer(W)){if(!this._decoder){var L=n(43143).I;this._decoder=new L("utf8")}W=this._decoder.write(W)}return this._parser.write(W.toString()),this.emit("data",W),!0},E.prototype.end=function(W){return W&&W.length&&this.write(W),this._parser.end(),!0},E.prototype.on=function(W,L){var rA=this;return!rA._parser["on"+W]&&-1!==r.indexOf(W)&&(rA._parser["on"+W]=function(){var AA=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);AA.splice(0,0,W),rA.emit.apply(rA,AA)}),u.prototype.on.call(rA,W,L)};var C="[CDATA[",e="DOCTYPE",h="http://www.w3.org/XML/1998/namespace",Q="http://www.w3.org/2000/xmlns/",I={xml:h,xmlns:Q},R=/[:_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]/,p=/[:_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-]/,m=/[#:_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]/,y=/[#:_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 x(W){return" "===W||"\n"===W||"\r"===W||"\t"===W}function Y(W){return'"'===W||"'"===W}function v(W){return">"===W||x(W)}function S(W,L){return W.test(L)}function z(W,L){return!S(W,L)}var W,L,rA,F=0;for(var $ in a.STATE={BEGIN:F++,BEGIN_WHITESPACE:F++,TEXT:F++,TEXT_ENTITY:F++,OPEN_WAKA:F++,SGML_DECL:F++,SGML_DECL_QUOTED:F++,DOCTYPE:F++,DOCTYPE_QUOTED:F++,DOCTYPE_DTD:F++,DOCTYPE_DTD_QUOTED:F++,COMMENT_STARTING:F++,COMMENT:F++,COMMENT_ENDING:F++,COMMENT_ENDED:F++,CDATA:F++,CDATA_ENDING:F++,CDATA_ENDING_2:F++,PROC_INST:F++,PROC_INST_BODY:F++,PROC_INST_ENDING:F++,OPEN_TAG:F++,OPEN_TAG_SLASH:F++,ATTRIB:F++,ATTRIB_NAME:F++,ATTRIB_NAME_SAW_WHITE:F++,ATTRIB_VALUE:F++,ATTRIB_VALUE_QUOTED:F++,ATTRIB_VALUE_CLOSED:F++,ATTRIB_VALUE_UNQUOTED:F++,ATTRIB_VALUE_ENTITY_Q:F++,ATTRIB_VALUE_ENTITY_U:F++,CLOSE_TAG:F++,CLOSE_TAG_SAW_WHITE:F++,SCRIPT:F++,SCRIPT_ENDING:F++},a.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},a.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(a.ENTITIES).forEach(function(W){var L=a.ENTITIES[W],rA="number"==typeof L?String.fromCharCode(L):L;a.ENTITIES[W]=rA}),a.STATE)a.STATE[a.STATE[$]]=$;function gA(W,L,rA){W[L]&&W[L](rA)}function _(W,L,rA){W.textNode&&fA(W),gA(W,L,rA)}function fA(W){W.textNode=iA(W.opt,W.textNode),W.textNode&&gA(W,"ontext",W.textNode),W.textNode=""}function iA(W,L){return W.trim&&(L=L.trim()),W.normalize&&(L=L.replace(/\s+/g," ")),L}function wA(W,L){return fA(W),W.trackPosition&&(L+="\nLine: "+W.line+"\nColumn: "+W.column+"\nChar: "+W.c),L=new Error(L),W.error=L,gA(W,"onerror",L),W}function IA(W){return W.sawRoot&&!W.closedRoot&&FA(W,"Unclosed root tag"),W.state!==F.BEGIN&&W.state!==F.BEGIN_WHITESPACE&&W.state!==F.TEXT&&wA(W,"Unexpected end"),fA(W),W.c="",W.closed=!0,gA(W,"onend"),o.call(W,W.strict,W.opt),W}function FA(W,L){if("object"!=typeof W||!(W instanceof o))throw new Error("bad call to strictFail");W.strict&&wA(W,L)}function YA(W){W.strict||(W.tagName=W.tagName[W.looseCase]());var L=W.tags[W.tags.length-1]||W,rA=W.tag={name:W.tagName,attributes:{}};W.opt.xmlns&&(rA.ns=L.ns),W.attribList.length=0,_(W,"onopentagstart",rA)}function HA(W,L){var AA=W.indexOf(":")<0?["",W]:W.split(":"),QA=AA[0],yA=AA[1];return L&&"xmlns"===W&&(QA="xmlns",yA=""),{prefix:QA,local:yA}}function J(W){if(W.strict||(W.attribName=W.attribName[W.looseCase]()),-1!==W.attribList.indexOf(W.attribName)||W.tag.attributes.hasOwnProperty(W.attribName))W.attribName=W.attribValue="";else{if(W.opt.xmlns){var L=HA(W.attribName,!0),AA=L.local;if("xmlns"===L.prefix)if("xml"===AA&&W.attribValue!==h)FA(W,"xml: prefix must be bound to "+h+"\nActual: "+W.attribValue);else if("xmlns"===AA&&W.attribValue!==Q)FA(W,"xmlns: prefix must be bound to "+Q+"\nActual: "+W.attribValue);else{var QA=W.tag,yA=W.tags[W.tags.length-1]||W;QA.ns===yA.ns&&(QA.ns=Object.create(yA.ns)),QA.ns[AA]=W.attribValue}W.attribList.push([W.attribName,W.attribValue])}else W.tag.attributes[W.attribName]=W.attribValue,_(W,"onattribute",{name:W.attribName,value:W.attribValue});W.attribName=W.attribValue=""}}function BA(W,L){if(W.opt.xmlns){var rA=W.tag,AA=HA(W.tagName);rA.prefix=AA.prefix,rA.local=AA.local,rA.uri=rA.ns[AA.prefix]||"",rA.prefix&&!rA.uri&&(FA(W,"Unbound namespace prefix: "+JSON.stringify(W.tagName)),rA.uri=AA.prefix),rA.ns&&(W.tags[W.tags.length-1]||W).ns!==rA.ns&&Object.keys(rA.ns).forEach(function(gt){_(W,"onopennamespace",{prefix:gt,uri:rA.ns[gt]})});for(var yA=0,cA=W.attribList.length;yA",W.tagName="",void(W.state=F.SCRIPT);_(W,"onscript",W.script),W.script=""}var L=W.tags.length,rA=W.tagName;W.strict||(rA=rA[W.looseCase]());for(var AA=rA;L--&&W.tags[L].name!==AA;)FA(W,"Unexpected close tag");if(L<0)return FA(W,"Unmatched closing tag: "+W.tagName),W.textNode+="",void(W.state=F.TEXT);W.tagName=rA;for(var yA=W.tags.length;yA-- >L;){var cA=W.tag=W.tags.pop();W.tagName=W.tag.name,_(W,"onclosetag",W.tagName);var CA={};for(var DA in cA.ns)CA[DA]=cA.ns[DA];W.opt.xmlns&&cA.ns!==(W.tags[W.tags.length-1]||W).ns&&Object.keys(cA.ns).forEach(function(zA){_(W,"onclosenamespace",{prefix:zA,uri:cA.ns[zA]})})}0===L&&(W.closedRoot=!0),W.tagName=W.attribValue=W.attribName="",W.attribList.length=0,W.state=F.TEXT}function eA(W){var AA,L=W.entity,rA=L.toLowerCase(),QA="";return W.ENTITIES[L]?W.ENTITIES[L]:W.ENTITIES[rA]?W.ENTITIES[rA]:("#"===(L=rA).charAt(0)&&("x"===L.charAt(1)?(L=L.slice(2),QA=(AA=parseInt(L,16)).toString(16)):(L=L.slice(1),QA=(AA=parseInt(L,10)).toString(10))),L=L.replace(/^0+/,""),isNaN(AA)||QA.toLowerCase()!==L?(FA(W,"Invalid character entity"),"&"+W.entity+";"):String.fromCodePoint(AA))}function EA(W,L){"<"===L?(W.state=F.OPEN_WAKA,W.startTagPosition=W.position):x(L)||(FA(W,"Non-whitespace before first tag."),W.textNode=L,W.state=F.TEXT)}function xA(W,L){var rA="";return L1114111||L(zA)!==zA)throw RangeError("Invalid code point: "+zA);zA<=65535?QA.push(zA):QA.push(55296+((zA-=65536)>>10),zA%1024+56320),(CA+1===DA||QA.length>16384)&&(NA+=W.apply(null,QA),QA.length=0)}return NA},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:rA,configurable:!0,writable:!0}):String.fromCodePoint=rA)}(A)},86255:function(b,A,n){"use strict";var B=n(28651),a=n(89295),s=n(18890)(),o=n(68109),g=n(96785),f=B("%Math.floor%");b.exports=function(u,r){if("function"!=typeof u)throw new g("`fn` is not a function");if("number"!=typeof r||r<0||r>4294967295||f(r)!==r)throw new g("`length` must be a positive 32-bit integer");var d=arguments.length>2&&!!arguments[2],E=!0,C=!0;if("length"in u&&o){var e=o(u,"length");e&&!e.configurable&&(E=!1),e&&!e.writable&&(C=!1)}return(E||C||!d)&&(s?a(u,"length",r,!0,!0):a(u,"length",r)),u}},95304:function(b,A,n){"use strict";var B=n(89295),a=n(18890)(),s=n(61084).functionsHaveConfigurableNames(),o=n(96785);b.exports=function(f,w){if("function"!=typeof f)throw new o("`fn` is not a function");return(!(arguments.length>2&&arguments[2])||s)&&(a?B(f,"name",w,!0,!0):B(f,"name",w)),f}},9760:function(b,A,n){b.exports=s;var B=n(64785).EventEmitter;function s(){B.call(this)}n(89784)(s,B),s.Readable=n(88261),s.Writable=n(29781),s.Duplex=n(14903),s.Transform=n(48569),s.PassThrough=n(17723),s.finished=n(12167),s.pipeline=n(43765),s.Stream=s,s.prototype.pipe=function(o,g){var f=this;function w(h){o.writable&&!1===o.write(h)&&f.pause&&f.pause()}function u(){f.readable&&f.resume&&f.resume()}f.on("data",w),o.on("drain",u),!o._isStdio&&(!g||!1!==g.end)&&(f.on("end",d),f.on("close",E));var r=!1;function d(){r||(r=!0,o.end())}function E(){r||(r=!0,"function"==typeof o.destroy&&o.destroy())}function C(h){if(e(),0===B.listenerCount(this,"error"))throw h}function e(){f.removeListener("data",w),o.removeListener("drain",u),f.removeListener("end",d),f.removeListener("close",E),f.removeListener("error",C),o.removeListener("error",C),f.removeListener("end",e),f.removeListener("close",e),o.removeListener("close",e)}return f.on("error",C),o.on("error",C),f.on("end",e),f.on("close",e),o.on("close",e),o.emit("pipe",f),o}},83797:function(b){"use strict";var n={};function B(f,w,u){u||(u=Error);var d=function(E){function C(e,h,Q){return E.call(this,function r(E,C,e){return"string"==typeof w?w:w(E,C,e)}(e,h,Q))||this}return function A(f,w){f.prototype=Object.create(w.prototype),f.prototype.constructor=f,f.__proto__=w}(C,E),C}(u);d.prototype.name=u.name,d.prototype.code=f,n[f]=d}function a(f,w){if(Array.isArray(f)){var u=f.length;return f=f.map(function(r){return String(r)}),u>2?"one of ".concat(w," ").concat(f.slice(0,u-1).join(", "),", or ")+f[u-1]:2===u?"one of ".concat(w," ").concat(f[0]," or ").concat(f[1]):"of ".concat(w," ").concat(f[0])}return"of ".concat(w," ").concat(String(f))}B("ERR_INVALID_OPT_VALUE",function(f,w){return'The value "'+w+'" is invalid for option "'+f+'"'},TypeError),B("ERR_INVALID_ARG_TYPE",function(f,w,u){var r,d;if("string"==typeof w&&function s(f,w,u){return f.substr(!u||u<0?0:+u,w.length)===w}(w,"not ")?(r="must not be",w=w.replace(/^not /,"")):r="must be",function o(f,w,u){return(void 0===u||u>f.length)&&(u=f.length),f.substring(u-w.length,u)===w}(f," argument"))d="The ".concat(f," ").concat(r," ").concat(a(w,"type"));else{var E=function g(f,w,u){return"number"!=typeof u&&(u=0),!(u+w.length>f.length)&&-1!==f.indexOf(w,u)}(f,".")?"property":"argument";d='The "'.concat(f,'" ').concat(E," ").concat(r," ").concat(a(w,"type"))}return d+". Received type ".concat(typeof u)},TypeError),B("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),B("ERR_METHOD_NOT_IMPLEMENTED",function(f){return"The "+f+" method is not implemented"}),B("ERR_STREAM_PREMATURE_CLOSE","Premature close"),B("ERR_STREAM_DESTROYED",function(f){return"Cannot call "+f+" after a stream was destroyed"}),B("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),B("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),B("ERR_STREAM_WRITE_AFTER_END","write after end"),B("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),B("ERR_UNKNOWN_ENCODING",function(f){return"Unknown encoding: "+f},TypeError),B("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),b.exports.F=n},14903:function(b,A,n){"use strict";var B=n(9964),a=Object.keys||function(E){var C=[];for(var e in E)C.push(e);return C};b.exports=u;var s=n(88261),o=n(29781);n(89784)(u,s);for(var g=a(o.prototype),f=0;f0)if("string"!=typeof CA&&!pA.objectMode&&Object.getPrototypeOf(CA)!==f.prototype&&(CA=function u(cA){return f.from(cA)}(CA)),NA)pA.endEmitted?S(cA,new y):fA(cA,pA,CA,!0);else if(pA.ended)S(cA,new p);else{if(pA.destroyed)return!1;pA.reading=!1,pA.decoder&&!DA?(CA=pA.decoder.write(CA),pA.objectMode||0!==CA.length?fA(cA,pA,CA,!1):BA(cA,pA)):fA(cA,pA,CA,!1)}else NA||(pA.reading=!1,BA(cA,pA));return!pA.ended&&(pA.lengthCA.highWaterMark&&(CA.highWaterMark=function IA(cA){return cA>=wA?cA=wA:(cA--,cA|=cA>>>1,cA|=cA>>>2,cA|=cA>>>4,cA|=cA>>>8,cA|=cA>>>16,cA++),cA}(cA)),cA<=CA.length?cA:CA.ended?CA.length:(CA.needReadable=!0,0))}function HA(cA){var CA=cA._readableState;E("emitReadable",CA.needReadable,CA.emittedReadable),CA.needReadable=!1,CA.emittedReadable||(E("emitReadable",CA.flowing),CA.emittedReadable=!0,B.nextTick(J,cA))}function J(cA){var CA=cA._readableState;E("emitReadable_",CA.destroyed,CA.length,CA.ended),!CA.destroyed&&(CA.length||CA.ended)&&(cA.emit("readable"),CA.emittedReadable=!1),CA.needReadable=!CA.flowing&&!CA.ended&&CA.length<=CA.highWaterMark,L(cA)}function BA(cA,CA){CA.readingMore||(CA.readingMore=!0,B.nextTick(aA,cA,CA))}function aA(cA,CA){for(;!CA.reading&&!CA.ended&&(CA.length0,CA.resumeScheduled&&!CA.paused?CA.flowing=!0:cA.listenerCount("data")>0&&cA.resume()}function xA(cA){E("readable nexttick read 0"),cA.read(0)}function W(cA,CA){E("resume",CA.reading),CA.reading||cA.read(0),CA.resumeScheduled=!1,cA.emit("resume"),L(cA),CA.flowing&&!CA.reading&&cA.read(0)}function L(cA){var CA=cA._readableState;for(E("flow",CA.flowing);CA.flowing&&null!==cA.read(););}function rA(cA,CA){return 0===CA.length?null:(CA.objectMode?DA=CA.buffer.shift():!cA||cA>=CA.length?(DA=CA.decoder?CA.buffer.join(""):1===CA.buffer.length?CA.buffer.first():CA.buffer.concat(CA.length),CA.buffer.clear()):DA=CA.buffer.consume(cA,CA.decoder),DA);var DA}function AA(cA){var CA=cA._readableState;E("endReadable",CA.endEmitted),CA.endEmitted||(CA.ended=!0,B.nextTick(QA,CA,cA))}function QA(cA,CA){if(E("endReadableNT",cA.endEmitted,cA.length),!cA.endEmitted&&0===cA.length&&(cA.endEmitted=!0,CA.readable=!1,CA.emit("end"),cA.autoDestroy)){var DA=CA._writableState;(!DA||DA.autoDestroy&&DA.finished)&&CA.destroy()}}function yA(cA,CA){for(var DA=0,NA=cA.length;DA=CA.highWaterMark:CA.length>0)||CA.ended))return E("read: emitReadable",CA.length,CA.ended),0===CA.length&&CA.ended?AA(this):HA(this),null;if(0===(cA=FA(cA,CA))&&CA.ended)return 0===CA.length&&AA(this),null;var zA,NA=CA.needReadable;return E("need readable",NA),(0===CA.length||CA.length-cA0?rA(cA,CA):null)?(CA.needReadable=CA.length<=CA.highWaterMark,cA=0):(CA.length-=cA,CA.awaitDrain=0),0===CA.length&&(CA.ended||(CA.needReadable=!0),DA!==cA&&CA.ended&&AA(this)),null!==zA&&this.emit("data",zA),zA},gA.prototype._read=function(cA){S(this,new m("_read()"))},gA.prototype.pipe=function(cA,CA){var DA=this,NA=this._readableState;switch(NA.pipesCount){case 0:NA.pipes=cA;break;case 1:NA.pipes=[NA.pipes,cA];break;default:NA.pipes.push(cA)}NA.pipesCount+=1,E("pipe count=%d opts=%j",NA.pipesCount,CA);var pA=CA&&!1===CA.end||cA===B.stdout||cA===B.stderr?ht:ft;function JA(vt,Nt){E("onunpipe"),vt===DA&&Nt&&!1===Nt.hasUnpiped&&(Nt.hasUnpiped=!0,function pt(){E("cleanup"),cA.removeListener("close",_A),cA.removeListener("finish",Qt),cA.removeListener("drain",wt),cA.removeListener("error",VA),cA.removeListener("unpipe",JA),DA.removeListener("end",ft),DA.removeListener("end",ht),DA.removeListener("data",Yt),gt=!0,NA.awaitDrain&&(!cA._writableState||cA._writableState.needDrain)&&wt()}())}function ft(){E("onend"),cA.end()}NA.endEmitted?B.nextTick(pA):DA.once("end",pA),cA.on("unpipe",JA);var wt=function eA(cA){return function(){var DA=cA._readableState;E("pipeOnDrain",DA.awaitDrain),DA.awaitDrain&&DA.awaitDrain--,0===DA.awaitDrain&&o(cA,"data")&&(DA.flowing=!0,L(cA))}}(DA);cA.on("drain",wt);var gt=!1;function Yt(vt){E("ondata");var Nt=cA.write(vt);E("dest.write",Nt),!1===Nt&&((1===NA.pipesCount&&NA.pipes===cA||NA.pipesCount>1&&-1!==yA(NA.pipes,cA))&&!gt&&(E("false write response, pause",NA.awaitDrain),NA.awaitDrain++),DA.pause())}function VA(vt){E("onerror",vt),ht(),cA.removeListener("error",VA),0===o(cA,"error")&&S(cA,vt)}function _A(){cA.removeListener("finish",Qt),ht()}function Qt(){E("onfinish"),cA.removeListener("close",_A),ht()}function ht(){E("unpipe"),DA.unpipe(cA)}return DA.on("data",Yt),function F(cA,CA,DA){if("function"==typeof cA.prependListener)return cA.prependListener(CA,DA);cA._events&&cA._events[CA]?Array.isArray(cA._events[CA])?cA._events[CA].unshift(DA):cA._events[CA]=[DA,cA._events[CA]]:cA.on(CA,DA)}(cA,"error",VA),cA.once("close",_A),cA.once("finish",Qt),cA.emit("pipe",DA),NA.flowing||(E("pipe resume"),DA.resume()),cA},gA.prototype.unpipe=function(cA){var CA=this._readableState,DA={hasUnpiped:!1};if(0===CA.pipesCount)return this;if(1===CA.pipesCount)return cA&&cA!==CA.pipes||(cA||(cA=CA.pipes),CA.pipes=null,CA.pipesCount=0,CA.flowing=!1,cA&&cA.emit("unpipe",this,DA)),this;if(!cA){var NA=CA.pipes,zA=CA.pipesCount;CA.pipes=null,CA.pipesCount=0,CA.flowing=!1;for(var pA=0;pA0,!1!==NA.flowing&&this.resume()):"readable"===cA&&!NA.endEmitted&&!NA.readableListening&&(NA.readableListening=NA.needReadable=!0,NA.flowing=!1,NA.emittedReadable=!1,E("on readable",NA.length,NA.reading),NA.length?HA(this):NA.reading||B.nextTick(xA,this)),DA},gA.prototype.removeListener=function(cA,CA){var DA=g.prototype.removeListener.call(this,cA,CA);return"readable"===cA&&B.nextTick(EA,this),DA},gA.prototype.removeAllListeners=function(cA){var CA=g.prototype.removeAllListeners.apply(this,arguments);return("readable"===cA||void 0===cA)&&B.nextTick(EA,this),CA},gA.prototype.resume=function(){var cA=this._readableState;return cA.flowing||(E("resume"),cA.flowing=!cA.readableListening,function OA(cA,CA){CA.resumeScheduled||(CA.resumeScheduled=!0,B.nextTick(W,cA,CA))}(this,cA)),cA.paused=!1,this},gA.prototype.pause=function(){return E("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(E("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},gA.prototype.wrap=function(cA){var CA=this,DA=this._readableState,NA=!1;for(var zA in cA.on("end",function(){if(E("wrapped end"),DA.decoder&&!DA.ended){var JA=DA.decoder.end();JA&&JA.length&&CA.push(JA)}CA.push(null)}),cA.on("data",function(JA){E("wrapped data"),DA.decoder&&(JA=DA.decoder.write(JA)),DA.objectMode&&null==JA||!(DA.objectMode||JA&&JA.length)||CA.push(JA)||(NA=!0,cA.pause())}),cA)void 0===this[zA]&&"function"==typeof cA[zA]&&(this[zA]=function(ft){return function(){return cA[ft].apply(cA,arguments)}}(zA));for(var pA=0;pA-1))throw new Y(rA);return this._writableState.defaultEncoding=rA,this},Object.defineProperty($.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty($.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),$.prototype._write=function(L,rA,AA){AA(new I("_write()"))},$.prototype._writev=null,$.prototype.end=function(L,rA,AA){var QA=this._writableState;return"function"==typeof L?(AA=L,L=null,rA=null):"function"==typeof rA&&(AA=rA,rA=null),null!=L&&this.write(L,rA),QA.corked&&(QA.corked=1,this.uncork()),QA.ending||function OA(L,rA,AA){rA.ending=!0,xA(L,rA),AA&&(rA.finished?B.nextTick(AA):L.once("finish",AA)),rA.ended=!0,L.writable=!1}(this,QA,AA),this},Object.defineProperty($.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty($.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(rA){this._writableState&&(this._writableState.destroyed=rA)}}),$.prototype.destroy=E.destroy,$.prototype._undestroy=E.undestroy,$.prototype._destroy=function(L,rA){rA(L)}},79676:function(b,A,n){"use strict";var a,B=n(9964);function s(x,Y,v){return(Y=function o(x){var Y=function g(x,Y){if("object"!=typeof x||null===x)return x;var v=x[Symbol.toPrimitive];if(void 0!==v){var S=v.call(x,Y||"default");if("object"!=typeof S)return S;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===Y?String:Number)(x)}(x,"string");return"symbol"==typeof Y?Y:String(Y)}(Y))in x?Object.defineProperty(x,Y,{value:v,enumerable:!0,configurable:!0,writable:!0}):x[Y]=v,x}var f=n(12167),w=Symbol("lastResolve"),u=Symbol("lastReject"),r=Symbol("error"),d=Symbol("ended"),E=Symbol("lastPromise"),C=Symbol("handlePromise"),e=Symbol("stream");function h(x,Y){return{value:x,done:Y}}function Q(x){var Y=x[w];if(null!==Y){var v=x[e].read();null!==v&&(x[E]=null,x[w]=null,x[u]=null,Y(h(v,!1)))}}function I(x){B.nextTick(Q,x)}var p=Object.getPrototypeOf(function(){}),m=Object.setPrototypeOf((s(a={get stream(){return this[e]},next:function(){var Y=this,v=this[r];if(null!==v)return Promise.reject(v);if(this[d])return Promise.resolve(h(void 0,!0));if(this[e].destroyed)return new Promise(function($,gA){B.nextTick(function(){Y[r]?gA(Y[r]):$(h(void 0,!0))})});var z,S=this[E];if(S)z=new Promise(function R(x,Y){return function(v,S){x.then(function(){Y[d]?v(h(void 0,!0)):Y[C](v,S)},S)}}(S,this));else{var F=this[e].read();if(null!==F)return Promise.resolve(h(F,!1));z=new Promise(this[C])}return this[E]=z,z}},Symbol.asyncIterator,function(){return this}),s(a,"return",function(){var Y=this;return new Promise(function(v,S){Y[e].destroy(null,function(z){z?S(z):v(h(void 0,!0))})})}),a),p);b.exports=function(Y){var v,S=Object.create(m,(s(v={},e,{value:Y,writable:!0}),s(v,w,{value:null,writable:!0}),s(v,u,{value:null,writable:!0}),s(v,r,{value:null,writable:!0}),s(v,d,{value:Y._readableState.endEmitted,writable:!0}),s(v,C,{value:function(F,$){var gA=S[e].read();gA?(S[E]=null,S[w]=null,S[u]=null,F(h(gA,!1))):(S[w]=F,S[u]=$)},writable:!0}),v));return S[E]=null,f(Y,function(z){if(z&&"ERR_STREAM_PREMATURE_CLOSE"!==z.code){var F=S[u];return null!==F&&(S[E]=null,S[w]=null,S[u]=null,F(z)),void(S[r]=z)}var $=S[w];null!==$&&(S[E]=null,S[w]=null,S[u]=null,$(h(void 0,!0))),S[d]=!0}),Y.on("readable",I.bind(null,S)),S}},37385:function(b,A,n){"use strict";var B=n(9964);function s(u,r){f(u,r),o(u)}function o(u){u._writableState&&!u._writableState.emitClose||u._readableState&&!u._readableState.emitClose||u.emit("close")}function f(u,r){u.emit("error",r)}b.exports={destroy:function a(u,r){var d=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(r?r(u):u&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,B.nextTick(f,this,u)):B.nextTick(f,this,u)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(u||null,function(e){!r&&e?d._writableState?d._writableState.errorEmitted?B.nextTick(o,d):(d._writableState.errorEmitted=!0,B.nextTick(s,d,e)):B.nextTick(s,d,e):r?(B.nextTick(o,d),r(e)):B.nextTick(o,d)}),this)},undestroy:function g(){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 w(u,r){var d=u._readableState,E=u._writableState;d&&d.autoDestroy||E&&E.autoDestroy?u.destroy(r):u.emit("error",r)}}},12167:function(b,A,n){"use strict";var B=n(83797).F.ERR_STREAM_PREMATURE_CLOSE;function s(){}b.exports=function g(f,w,u){if("function"==typeof w)return g(f,null,w);w||(w={}),u=function a(f){var w=!1;return function(){if(!w){w=!0;for(var u=arguments.length,r=new Array(u),d=0;d0,function(v){R||(R=v),v&&p.forEach(r),!x&&(p.forEach(r),I(R))})});return h.reduce(d)}},68130:function(b,A,n){"use strict";var B=n(83797).F.ERR_INVALID_OPT_VALUE;b.exports={getHighWaterMark:function s(o,g,f,w){var u=function a(o,g,f){return null!=o.highWaterMark?o.highWaterMark:g?o[f]:null}(g,w,f);if(null!=u){if(!isFinite(u)||Math.floor(u)!==u||u<0)throw new B(w?f:"highWaterMark",u);return Math.floor(u)}return o.objectMode?16:16384}}},99018:function(b,A,n){b.exports=n(64785).EventEmitter},43143:function(b,A,n){"use strict";var B=n(72361).Buffer,a=B.isEncoding||function(p){switch((p=""+p)&&p.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 g(p){var m;switch(this.encoding=function o(p){var m=function s(p){if(!p)return"utf8";for(var m;;)switch(p){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 p;default:if(m)return;p=(""+p).toLowerCase(),m=!0}}(p);if("string"!=typeof m&&(B.isEncoding===a||!a(p)))throw new Error("Unknown encoding: "+p);return m||p}(p),this.encoding){case"utf16le":this.text=C,this.end=e,m=4;break;case"utf8":this.fillLast=r,m=4;break;case"base64":this.text=h,this.end=Q,m=3;break;default:return this.write=I,void(this.end=R)}this.lastNeed=0,this.lastTotal=0,this.lastChar=B.allocUnsafe(m)}function f(p){return p<=127?0:p>>5==6?2:p>>4==14?3:p>>3==30?4:p>>6==2?-1:-2}function r(p){var m=this.lastTotal-this.lastNeed,y=function u(p,m,y){if(128!=(192&m[0]))return p.lastNeed=0,"\ufffd";if(p.lastNeed>1&&m.length>1){if(128!=(192&m[1]))return p.lastNeed=1,"\ufffd";if(p.lastNeed>2&&m.length>2&&128!=(192&m[2]))return p.lastNeed=2,"\ufffd"}}(this,p);return void 0!==y?y:this.lastNeed<=p.length?(p.copy(this.lastChar,m,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(p.copy(this.lastChar,m,0,p.length),void(this.lastNeed-=p.length))}function C(p,m){if((p.length-m)%2==0){var y=p.toString("utf16le",m);if(y){var x=y.charCodeAt(y.length-1);if(x>=55296&&x<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=p[p.length-2],this.lastChar[1]=p[p.length-1],y.slice(0,-1)}return y}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=p[p.length-1],p.toString("utf16le",m,p.length-1)}function e(p){var m=p&&p.length?this.write(p):"";return this.lastNeed?m+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):m}function h(p,m){var y=(p.length-m)%3;return 0===y?p.toString("base64",m):(this.lastNeed=3-y,this.lastTotal=3,1===y?this.lastChar[0]=p[p.length-1]:(this.lastChar[0]=p[p.length-2],this.lastChar[1]=p[p.length-1]),p.toString("base64",m,p.length-y))}function Q(p){var m=p&&p.length?this.write(p):"";return this.lastNeed?m+this.lastChar.toString("base64",0,3-this.lastNeed):m}function I(p){return p.toString(this.encoding)}function R(p){return p&&p.length?this.write(p):""}A.I=g,g.prototype.write=function(p){if(0===p.length)return"";var m,y;if(this.lastNeed){if(void 0===(m=this.fillLast(p)))return"";y=this.lastNeed,this.lastNeed=0}else y=0;return y=0?(Y>0&&(p.lastNeed=Y-1),Y):--x=0?(Y>0&&(p.lastNeed=Y-2),Y):--x=0?(Y>0&&(2===Y?Y=0:p.lastNeed=Y-3),Y):0}(this,p,m);if(!this.lastNeed)return p.toString("utf8",m);this.lastTotal=y;var x=p.length-(y-this.lastNeed);return p.copy(this.lastChar,0,x),p.toString("utf8",m,x)},g.prototype.fillLast=function(p){if(this.lastNeed<=p.length)return p.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);p.copy(this.lastChar,this.lastTotal-this.lastNeed,0,p.length),this.lastNeed-=p.length}},3483:function(b){var A=0,n=-3;function B(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function a(v,S){this.source=v,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=S,this.destLen=0,this.ltree=new B,this.dtree=new B}var s=new B,o=new B,g=new Uint8Array(30),f=new Uint16Array(30),w=new Uint8Array(30),u=new Uint16Array(30),r=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),d=new B,E=new Uint8Array(320);function C(v,S,z,F){var $,gA;for($=0;$>>=1,S}function R(v,S,z){if(!S)return z;for(;v.bitcount<24;)v.tag|=v.source[v.sourceIndex++]<>>16-S;return v.tag>>>=S,v.bitcount-=S,F+z}function p(v,S){for(;v.bitcount<24;)v.tag|=v.source[v.sourceIndex++]<>>=1,++$,z+=S.table[$],F-=S.table[$]}while(F>=0);return v.tag=gA,v.bitcount-=$,S.trans[z+F]}function m(v,S,z){var F,$,gA,_,fA,iA;for(F=R(v,5,257),$=R(v,5,1),gA=R(v,4,4),_=0;_<19;++_)E[_]=0;for(_=0;_8;)v.sourceIndex--,v.bitcount-=8;if((S=256*(S=v.source[v.sourceIndex+1])+v.source[v.sourceIndex])!==(65535&~(256*v.source[v.sourceIndex+3]+v.source[v.sourceIndex+2])))return n;for(v.sourceIndex+=4,F=S;F;--F)v.dest[v.destLen++]=v.source[v.sourceIndex++];return v.bitcount=0,A}(function e(v,S){var z;for(z=0;z<7;++z)v.table[z]=0;for(v.table[7]=24,v.table[8]=152,v.table[9]=112,z=0;z<24;++z)v.trans[z]=256+z;for(z=0;z<144;++z)v.trans[24+z]=z;for(z=0;z<8;++z)v.trans[168+z]=280+z;for(z=0;z<112;++z)v.trans[176+z]=144+z;for(z=0;z<5;++z)S.table[z]=0;for(S.table[5]=32,z=0;z<32;++z)S.trans[z]=z})(s,o),C(g,f,4,3),C(w,u,2,1),g[28]=0,f[28]=258,b.exports=function Y(v,S){var F,gA,z=new a(v,S);do{switch(F=I(z),R(z,2,0)){case 0:gA=x(z);break;case 1:gA=y(z,s,o);break;case 2:m(z,z.ltree,z.dtree),gA=y(z,z.ltree,z.dtree);break;default:gA=n}if(gA!==A)throw new Error("Data error")}while(!F);return z.destLen"u")&&(HA.working?HA(pA):pA instanceof ArrayBuffer)}function BA(pA){return"[object DataView]"===u(pA)}function aA(pA){return!(typeof DataView>"u")&&(BA.working?BA(pA):pA instanceof DataView)}A.isArgumentsObject=B,A.isGeneratorFunction=a,A.isTypedArray=o,A.isPromise=function Q(pA){return typeof Promise<"u"&&pA instanceof Promise||null!==pA&&"object"==typeof pA&&"function"==typeof pA.then&&"function"==typeof pA.catch},A.isArrayBufferView=function I(pA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(pA):o(pA)||aA(pA)},A.isUint8Array=function R(pA){return"Uint8Array"===s(pA)},A.isUint8ClampedArray=function p(pA){return"Uint8ClampedArray"===s(pA)},A.isUint16Array=function m(pA){return"Uint16Array"===s(pA)},A.isUint32Array=function y(pA){return"Uint32Array"===s(pA)},A.isInt8Array=function x(pA){return"Int8Array"===s(pA)},A.isInt16Array=function Y(pA){return"Int16Array"===s(pA)},A.isInt32Array=function v(pA){return"Int32Array"===s(pA)},A.isFloat32Array=function S(pA){return"Float32Array"===s(pA)},A.isFloat64Array=function z(pA){return"Float64Array"===s(pA)},A.isBigInt64Array=function F(pA){return"BigInt64Array"===s(pA)},A.isBigUint64Array=function $(pA){return"BigUint64Array"===s(pA)},gA.working=typeof Map<"u"&&gA(new Map),A.isMap=function _(pA){return!(typeof Map>"u")&&(gA.working?gA(pA):pA instanceof Map)},fA.working=typeof Set<"u"&&fA(new Set),A.isSet=function iA(pA){return!(typeof Set>"u")&&(fA.working?fA(pA):pA instanceof Set)},wA.working=typeof WeakMap<"u"&&wA(new WeakMap),A.isWeakMap=function IA(pA){return!(typeof WeakMap>"u")&&(wA.working?wA(pA):pA instanceof WeakMap)},FA.working=typeof WeakSet<"u"&&FA(new WeakSet),A.isWeakSet=function YA(pA){return FA(pA)},HA.working=typeof ArrayBuffer<"u"&&HA(new ArrayBuffer),A.isArrayBuffer=J,BA.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&BA(new DataView(new ArrayBuffer(1),0,1)),A.isDataView=aA;var eA=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function EA(pA){return"[object SharedArrayBuffer]"===u(pA)}function xA(pA){return!(typeof eA>"u")&&(typeof EA.working>"u"&&(EA.working=EA(new eA)),EA.working?EA(pA):pA instanceof eA)}function QA(pA){return h(pA,r)}function yA(pA){return h(pA,d)}function cA(pA){return h(pA,E)}function CA(pA){return f&&h(pA,C)}function DA(pA){return w&&h(pA,e)}A.isSharedArrayBuffer=xA,A.isAsyncFunction=function OA(pA){return"[object AsyncFunction]"===u(pA)},A.isMapIterator=function W(pA){return"[object Map Iterator]"===u(pA)},A.isSetIterator=function L(pA){return"[object Set Iterator]"===u(pA)},A.isGeneratorObject=function rA(pA){return"[object Generator]"===u(pA)},A.isWebAssemblyCompiledModule=function AA(pA){return"[object WebAssembly.Module]"===u(pA)},A.isNumberObject=QA,A.isStringObject=yA,A.isBooleanObject=cA,A.isBigIntObject=CA,A.isSymbolObject=DA,A.isBoxedPrimitive=function NA(pA){return QA(pA)||yA(pA)||cA(pA)||CA(pA)||DA(pA)},A.isAnyArrayBuffer=function zA(pA){return typeof Uint8Array<"u"&&(J(pA)||xA(pA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(pA){Object.defineProperty(A,pA,{enumerable:!1,value:function(){throw new Error(pA+" is not supported in userland")}})})},7187:function(b,A,n){var B=n(9964),a=Object.getOwnPropertyDescriptors||function(eA){for(var EA=Object.keys(eA),xA={},OA=0;OA=OA)return rA;switch(rA){case"%s":return String(xA[EA++]);case"%d":return Number(xA[EA++]);case"%j":try{return JSON.stringify(xA[EA++])}catch{return"[Circular]"}default:return rA}}),L=xA[EA];EA"u")return function(){return A.deprecate(aA,eA).apply(this,arguments)};var EA=!1;return function xA(){if(!EA){if(B.throwDeprecation)throw new Error(eA);B.traceDeprecation?console.trace(eA):console.error(eA),EA=!0}return aA.apply(this,arguments)}};var o={},g=/^$/;if(B.env.NODE_DEBUG){var f=B.env.NODE_DEBUG;f=f.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),g=new RegExp("^"+f+"$","i")}function w(aA,eA){var EA={seen:[],stylize:r};return arguments.length>=3&&(EA.depth=arguments[2]),arguments.length>=4&&(EA.colors=arguments[3]),p(eA)?EA.showHidden=eA:eA&&A._extend(EA,eA),S(EA.showHidden)&&(EA.showHidden=!1),S(EA.depth)&&(EA.depth=2),S(EA.colors)&&(EA.colors=!1),S(EA.customInspect)&&(EA.customInspect=!0),EA.colors&&(EA.stylize=u),E(EA,aA,EA.depth)}function u(aA,eA){var EA=w.styles[eA];return EA?"\x1b["+w.colors[EA][0]+"m"+aA+"\x1b["+w.colors[EA][1]+"m":aA}function r(aA,eA){return aA}function E(aA,eA,EA){if(aA.customInspect&&eA&&_(eA.inspect)&&eA.inspect!==A.inspect&&(!eA.constructor||eA.constructor.prototype!==eA)){var xA=eA.inspect(EA,aA);return Y(xA)||(xA=E(aA,xA,EA)),xA}var OA=function C(aA,eA){if(S(eA))return aA.stylize("undefined","undefined");if(Y(eA)){var EA="'"+JSON.stringify(eA).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return aA.stylize(EA,"string")}return x(eA)?aA.stylize(""+eA,"number"):p(eA)?aA.stylize(""+eA,"boolean"):m(eA)?aA.stylize("null","null"):void 0}(aA,eA);if(OA)return OA;var W=Object.keys(eA),L=function d(aA){var eA={};return aA.forEach(function(EA,xA){eA[EA]=!0}),eA}(W);if(aA.showHidden&&(W=Object.getOwnPropertyNames(eA)),gA(eA)&&(W.indexOf("message")>=0||W.indexOf("description")>=0))return e(eA);if(0===W.length){if(_(eA))return aA.stylize("[Function"+(eA.name?": "+eA.name:"")+"]","special");if(z(eA))return aA.stylize(RegExp.prototype.toString.call(eA),"regexp");if($(eA))return aA.stylize(Date.prototype.toString.call(eA),"date");if(gA(eA))return e(eA)}var CA,AA="",QA=!1,yA=["{","}"];return R(eA)&&(QA=!0,yA=["[","]"]),_(eA)&&(AA=" [Function"+(eA.name?": "+eA.name:"")+"]"),z(eA)&&(AA=" "+RegExp.prototype.toString.call(eA)),$(eA)&&(AA=" "+Date.prototype.toUTCString.call(eA)),gA(eA)&&(AA=" "+e(eA)),0!==W.length||QA&&0!=eA.length?EA<0?z(eA)?aA.stylize(RegExp.prototype.toString.call(eA),"regexp"):aA.stylize("[Object]","special"):(aA.seen.push(eA),CA=QA?function h(aA,eA,EA,xA,OA){for(var W=[],L=0,rA=eA.length;L60?EA[0]+(""===eA?"":eA+"\n ")+" "+aA.join(",\n ")+" "+EA[1]:EA[0]+eA+" "+aA.join(", ")+" "+EA[1]}(CA,AA,yA)):yA[0]+AA+yA[1]}function e(aA){return"["+Error.prototype.toString.call(aA)+"]"}function Q(aA,eA,EA,xA,OA,W){var L,rA,AA;if((AA=Object.getOwnPropertyDescriptor(eA,OA)||{value:eA[OA]}).get?rA=aA.stylize(AA.set?"[Getter/Setter]":"[Getter]","special"):AA.set&&(rA=aA.stylize("[Setter]","special")),YA(xA,OA)||(L="["+OA+"]"),rA||(aA.seen.indexOf(AA.value)<0?(rA=m(EA)?E(aA,AA.value,null):E(aA,AA.value,EA-1)).indexOf("\n")>-1&&(rA=W?rA.split("\n").map(function(QA){return" "+QA}).join("\n").slice(2):"\n"+rA.split("\n").map(function(QA){return" "+QA}).join("\n")):rA=aA.stylize("[Circular]","special")),S(L)){if(W&&OA.match(/^\d+$/))return rA;(L=JSON.stringify(""+OA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(L=L.slice(1,-1),L=aA.stylize(L,"name")):(L=L.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),L=aA.stylize(L,"string"))}return L+": "+rA}function R(aA){return Array.isArray(aA)}function p(aA){return"boolean"==typeof aA}function m(aA){return null===aA}function x(aA){return"number"==typeof aA}function Y(aA){return"string"==typeof aA}function S(aA){return void 0===aA}function z(aA){return F(aA)&&"[object RegExp]"===iA(aA)}function F(aA){return"object"==typeof aA&&null!==aA}function $(aA){return F(aA)&&"[object Date]"===iA(aA)}function gA(aA){return F(aA)&&("[object Error]"===iA(aA)||aA instanceof Error)}function _(aA){return"function"==typeof aA}function iA(aA){return Object.prototype.toString.call(aA)}function wA(aA){return aA<10?"0"+aA.toString(10):aA.toString(10)}A.debuglog=function(aA){if(aA=aA.toUpperCase(),!o[aA])if(g.test(aA)){var eA=B.pid;o[aA]=function(){var EA=A.format.apply(A,arguments);console.error("%s %d: %s",aA,eA,EA)}}else o[aA]=function(){};return o[aA]},A.inspect=w,w.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]},w.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},A.types=n(29490),A.isArray=R,A.isBoolean=p,A.isNull=m,A.isNullOrUndefined=function y(aA){return null==aA},A.isNumber=x,A.isString=Y,A.isSymbol=function v(aA){return"symbol"==typeof aA},A.isUndefined=S,A.isRegExp=z,A.types.isRegExp=z,A.isObject=F,A.isDate=$,A.types.isDate=$,A.isError=gA,A.types.isNativeError=gA,A.isFunction=_,A.isPrimitive=function fA(aA){return null===aA||"boolean"==typeof aA||"number"==typeof aA||"string"==typeof aA||"symbol"==typeof aA||typeof aA>"u"},A.isBuffer=n(41201);var IA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function YA(aA,eA){return Object.prototype.hasOwnProperty.call(aA,eA)}A.log=function(){console.log("%s - %s",function FA(){var aA=new Date,eA=[wA(aA.getHours()),wA(aA.getMinutes()),wA(aA.getSeconds())].join(":");return[aA.getDate(),IA[aA.getMonth()],eA].join(" ")}(),A.format.apply(A,arguments))},A.inherits=n(89784),A._extend=function(aA,eA){if(!eA||!F(eA))return aA;for(var EA=Object.keys(eA),xA=EA.length;xA--;)aA[EA[xA]]=eA[EA[xA]];return aA};var HA=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function J(aA,eA){if(!aA){var EA=new Error("Promise was rejected with a falsy value");EA.reason=aA,aA=EA}return eA(aA)}A.promisify=function(eA){if("function"!=typeof eA)throw new TypeError('The "original" argument must be of type Function');if(HA&&eA[HA]){var EA;if("function"!=typeof(EA=eA[HA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(EA,HA,{value:EA,enumerable:!1,writable:!1,configurable:!0}),EA}function EA(){for(var xA,OA,W=new Promise(function(AA,QA){xA=AA,OA=QA}),L=[],rA=0;rA"u"?n.g:globalThis,r=a(),d=o("String.prototype.slice"),E=Object.getPrototypeOf,C=o("Array.prototype.indexOf",!0)||function(R,p){for(var m=0;m-1?p:"Object"===p&&function(R){var p=!1;return B(e,function(m,y){if(!p)try{m(R),p=d(y,1)}catch{}}),p}(R)}return g?function(R){var p=!1;return B(e,function(m,y){if(!p)try{"$"+m(R)===y&&(p=d(y,1))}catch{}}),p}(R):null}},52242:function(b,A,n){b.exports=n(45349)},45349:function(b,A,n){!function(){var B;if(b.exports&&!n.g.xmldocAssumeBrowser)B=n(61733);else if(!(B=this.sax))throw new Error("Expected sax to be defined. Make sure you're including sax.js before this file.");function a(m,y){if(!y){var x=w[w.length-1];x.parser&&(y=x.parser)}this.name=m.name,this.attr=m.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}function s(m){this.text=m}function o(m){this.cdata=m}function g(m){this.comment=m}function f(m){if(m&&(m=m.toString().trim()),!m)throw new Error("No XML to parse!");this.doctype="",this.parser=B.parser(!0),function u(m){m.onopentag=r,m.onclosetag=d,m.ontext=E,m.oncdata=C,m.oncomment=e,m.ondoctype=h,m.onerror=Q}(this.parser),w=[this];try{this.parser.write(m)}finally{delete this.parser}}a.prototype._addChild=function(m){this.children.push(m),this.firstChild||(this.firstChild=m),this.lastChild=m},a.prototype._opentag=function(m){var y=new a(m);this._addChild(y),w.unshift(y)},a.prototype._closetag=function(){w.shift()},a.prototype._text=function(m){typeof this.children>"u"||(this.val+=m,this._addChild(new s(m)))},a.prototype._cdata=function(m){this.val+=m,this._addChild(new o(m))},a.prototype._comment=function(m){typeof this.children>"u"||this._addChild(new g(m))},a.prototype._error=function(m){throw m},a.prototype.eachChild=function(m,y){for(var x=0,Y=this.children.length;x1?x.attr[y[1]]:x.val},a.prototype.toString=function(m){return this.toStringWithIndent("",m)},a.prototype.toStringWithIndent=function(m,y){var x=m+"<"+this.name,Y=y&&y.compressed?"":"\n";for(var S in this.attr)Object.prototype.hasOwnProperty.call(this.attr,S)&&(x+=" "+S+'="'+R(this.attr[S])+'"');if(1===this.children.length&&"element"!==this.children[0].type)x+=">"+this.children[0].toString(y)+"";else if(this.children.length){x+=">"+Y;for(var z=m+(y&&y.compressed?"":" "),F=0,$=this.children.length;F<$;F++)x+=this.children[F].toStringWithIndent(z,y)+Y;x+=m+""}else y&&y.html?-1!==["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].indexOf(this.name)?x+="/>":x+=">":x+="/>";return x},s.prototype.toString=function(m){return p(R(this.text),m)},s.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},o.prototype.toString=function(m){return""+p(this.cdata,m)+""},o.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},g.prototype.toString=function(m){return"\x3c!--"+p(R(this.comment),m)+"--\x3e"},g.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},a.prototype.type="element",s.prototype.type="text",o.prototype.type="cdata",g.prototype.type="comment",function I(m,y){for(var x in y)y.hasOwnProperty(x)&&(m[x]=y[x])}(f.prototype,a.prototype),f.prototype._opentag=function(m){typeof this.children>"u"?a.call(this,m):a.prototype._opentag.apply(this,arguments)},f.prototype._doctype=function(m){this.doctype+=m};var w=null;function r(){w[0]&&w[0]._opentag.apply(w[0],arguments)}function d(){w[0]&&w[0]._closetag.apply(w[0],arguments)}function E(){w[0]&&w[0]._text.apply(w[0],arguments)}function C(){w[0]&&w[0]._cdata.apply(w[0],arguments)}function e(){w[0]&&w[0]._comment.apply(w[0],arguments)}function h(){w[0]&&w[0]._doctype.apply(w[0],arguments)}function Q(){w[0]&&w[0]._error.apply(w[0],arguments)}function R(m){return m.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function p(m,y){var x=m;return y&&y.trimmed&&m.length>25&&(x=x.substring(0,25).trim()+"\u2026"),y&&y.preserveWhitespace||(x=x.trim()),x}b.exports&&!n.g.xmldocAssumeBrowser?(b.exports.XmlDocument=f,b.exports.XmlElement=a,b.exports.XmlTextNode=s,b.exports.XmlCDataNode=o,b.exports.XmlCommentNode=g):(this.XmlDocument=f,this.XmlElement=a,this.XmlTextNode=s,this.XmlCDataNode=o,this.XmlCommentNode=g)}()},7785:function(b,A,n){"use strict";typeof window<"u"&&!window.Promise&&n(98168),n(83043);function a(s){this.fs=s,this.resolving={}}a.prototype.resolve=function(s,o){if(!this.resolving[s]){var g=this;this.resolving[s]=new Promise(function(f,w){0===s.toLowerCase().indexOf("https://")||0===s.toLowerCase().indexOf("http://")?g.fs.existsSync(s)?f():function(s,o){return new Promise(function(g,f){var w=new XMLHttpRequest;for(var u in w.open("GET",s,!0),o)w.setRequestHeader(u,o[u]);w.responseType="arraybuffer",w.onreadystatechange=function(){4===w.readyState&&(w.status>=200&&w.status<300||setTimeout(function(){f(new TypeError('Failed to fetch (url: "'+s+'")'))},0))},w.onload=function(){w.status>=200&&w.status<300&&g(w.response)},w.onerror=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},w.ontimeout=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},w.send()})}(s,o).then(function(u){g.fs.writeFileSync(s,u),f()},function(u){w(u)}):f()})}return this.resolving[s]},a.prototype.resolved=function(){var s=this;return new Promise(function(o,g){Promise.all(Object.values(s.resolving)).then(function(){o()},function(f){g(f)})})},b.exports=a},45314:function(b,A,n){"use strict";var B=n(50621).Buffer,a=n(91867).isFunction,s=n(91867).isUndefined,f=(n(91867),n(44134).saveAs),w={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};function u(d,E,C,e){this.docDefinition=d,this.tableLayouts=E||null,this.fonts=C||w,this.vfs=e}u.prototype._createDoc=function(d,E){var C=function(Y){return"object"==typeof Y?{url:Y.url,headers:Y.headers}:{url:Y,headers:{}}};d=d||{},this.tableLayouts&&(d.tableLayouts=this.tableLayouts);var h=new(n(81566))(this.fonts);if(n(48181).bindFS(this.vfs),!a(E))return h.createPdfKitDocument(this.docDefinition,d);var R=new(n(7785))(n(48181));for(var p in this.fonts)if(this.fonts.hasOwnProperty(p)){if(this.fonts[p].normal)if(Array.isArray(this.fonts[p].normal)){var m=C(this.fonts[p].normal[0]);R.resolve(m.url,m.headers),this.fonts[p].normal[0]=m.url}else m=C(this.fonts[p].normal),R.resolve(m.url,m.headers),this.fonts[p].normal=m.url;this.fonts[p].bold&&(Array.isArray(this.fonts[p].bold)?(m=C(this.fonts[p].bold[0]),R.resolve(m.url,m.headers),this.fonts[p].bold[0]=m.url):(m=C(this.fonts[p].bold),R.resolve(m.url,m.headers),this.fonts[p].bold=m.url)),this.fonts[p].italics&&(Array.isArray(this.fonts[p].italics)?(m=C(this.fonts[p].italics[0]),R.resolve(m.url,m.headers),this.fonts[p].italics[0]=m.url):(m=C(this.fonts[p].italics),R.resolve(m.url,m.headers),this.fonts[p].italics=m.url)),this.fonts[p].bolditalics&&(Array.isArray(this.fonts[p].bolditalics)?(m=C(this.fonts[p].bolditalics[0]),R.resolve(m.url,m.headers),this.fonts[p].bolditalics[0]=m.url):(m=C(this.fonts[p].bolditalics),R.resolve(m.url,m.headers),this.fonts[p].bolditalics=m.url))}if(this.docDefinition.images)for(var y in this.docDefinition.images)this.docDefinition.images.hasOwnProperty(y)&&(m=C(this.docDefinition.images[y]),R.resolve(m.url,m.headers),this.docDefinition.images[y]=m.url);var x=this;R.resolved().then(function(){var Y=h.createPdfKitDocument(x.docDefinition,d);E(Y)},function(Y){throw Y})},u.prototype._flushDoc=function(d,E){var e,C=[];d.on("readable",function(){for(var h;null!==(h=d.read(9007199254740991));)C.push(h)}),d.on("end",function(){e=B.concat(C),E(e,d._pdfMakePages)}),d.end()},u.prototype._getPages=function(d,E){if(!E)throw"_getPages is an async method and needs a callback argument";var C=this;this._createDoc(d,function(e){C._flushDoc(e,function(h,Q){E(Q)})})},u.prototype._bufferToBlob=function(d){var E;try{E=new Blob([d],{type:"application/pdf"})}catch(e){if("InvalidStateError"===e.name){var C=new Uint8Array(d);E=new Blob([C.buffer],{type:"application/pdf"})}}if(!E)throw"Could not generate blob";return E},u.prototype._openWindow=function(){var d=window.open("","_blank");if(null===d)throw"Open PDF in new window blocked by browser";return d},u.prototype._openPdf=function(d,E){E||(E=this._openWindow());try{this.getBlob(function(C){var h=(window.URL||window.webkitURL).createObjectURL(C);E.location.href=h},d)}catch(C){throw E.close(),C}},u.prototype.open=function(d,E){(d=d||{}).autoPrint=!1,this._openPdf(d,E=E||null)},u.prototype.print=function(d,E){(d=d||{}).autoPrint=!0,this._openPdf(d,E=E||null)},u.prototype.download=function(d,E,C){a(d)&&(s(E)||(C=E),E=d,d=null),d=d||"file.pdf",this.getBlob(function(e){f(e,d),a(E)&&E()},C)},u.prototype.getBase64=function(d,E){if(!d)throw"getBase64 is an async method and needs a callback argument";this.getBuffer(function(C){d(C.toString("base64"))},E)},u.prototype.getDataUrl=function(d,E){if(!d)throw"getDataUrl is an async method and needs a callback argument";this.getBuffer(function(C){d("data:application/pdf;base64,"+C.toString("base64"))},E)},u.prototype.getBlob=function(d,E){if(!d)throw"getBlob is an async method and needs a callback argument";var C=this;this.getBuffer(function(e){var h=C._bufferToBlob(e);d(h)},E)},u.prototype.getBuffer=function(d,E){if(!d)throw"getBuffer is an async method and needs a callback argument";var C=this;this._createDoc(E,function(e){C._flushDoc(e,function(h){d(h)})})},u.prototype.getStream=function(d,E){if(!a(E))return this._createDoc(d);this._createDoc(d,function(e){E(e)})},b.exports={createPdf:function(d,E,C,e){if(!function r(){try{var d=new Uint8Array(1),E={foo:function(){return 42}};return Object.setPrototypeOf(E,Uint8Array.prototype),Object.setPrototypeOf(d,E),42===d.foo()}catch{return!1}}())throw"Your browser does not provide the level of support needed";return new u(d,E||n.g.pdfMake.tableLayouts,C||n.g.pdfMake.fonts,e||n.g.pdfMake.vfs)}}},48181:function(b,A,n){"use strict";var a=n(50621).Buffer;function s(){this.fileSystem={},this.dataSystem={}}function o(g){return 0===g.indexOf("/")&&(g=g.substring(1)),0===g.indexOf("/")&&(g=g.substring(1)),g}s.prototype.existsSync=function(g){return g=o(g),typeof this.fileSystem[g]<"u"||typeof this.dataSystem[g]<"u"},s.prototype.readFileSync=function(g,f){g=o(g);var w=this.dataSystem[g];if("string"==typeof w&&"utf8"===f)return w;if(w)return new a(w,"string"==typeof w?"base64":void 0);var u=this.fileSystem[g];if(u)return u;throw"File '"+g+"' not found in virtual file system"},s.prototype.writeFileSync=function(g,f){this.fileSystem[o(g)]=f},s.prototype.bindFS=function(g){this.dataSystem=g||{}},b.exports=new s},77530:function(b,A,n){"use strict";var B=n(91867).isString;function s(f){return"auto"===f.width}function o(f){return null==f.width||"*"===f.width||"star"===f.width}b.exports={buildColumnWidths:function a(f,w){var u=[],r=0,d=0,E=[],C=0,e=0,h=[],Q=w;f.forEach(function(x){s(x)?(u.push(x),r+=x._minWidth,d+=x._maxWidth):o(x)?(E.push(x),C=Math.max(C,x._minWidth),e=Math.max(e,x._maxWidth)):h.push(x)}),h.forEach(function(x){B(x.width)&&/\d+%/.test(x.width)&&(x.width=parseFloat(x.width)*Q/100),x._calcWidth=x.width=w)u.forEach(function(x){x._calcWidth=x._minWidth}),E.forEach(function(x){x._calcWidth=C});else{if(R0){var y=w/E.length;E.forEach(function(x){x._calcWidth=y})}}},measureMinMax:function g(f){for(var w={min:0,max:0},u={min:0,max:0},r=0,d=0,E=f.length;d=0;z--){var $=h.styleStack.styleDictionary[v[z]];for(var gA in $)$.hasOwnProperty(gA)&&(S[gA]=$[gA])}return S}function m(v){return g(v)?v=[v,v,v,v]:w(v)&&2===v.length&&(v=[v[0],v[1],v[0],v[1]]),v}var y=[void 0,void 0,void 0,void 0];if(e.style){var Y=p(w(e.style)?e.style:[e.style]);Y&&(y=R(Y,y)),Y.margin&&(y=m(Y.margin))}return y=R(e,y),e.margin&&(y=m(e.margin)),void 0===y[0]&&void 0===y[1]&&void 0===y[2]&&void 0===y[3]?null:y}(),e.columns)return Q(h.measureColumns(e));if(e.stack)return Q(h.measureVerticalContainer(e));if(e.ul)return Q(h.measureUnorderedList(e));if(e.ol)return Q(h.measureOrderedList(e));if(e.table)return Q(h.measureTable(e));if(void 0!==e.text)return Q(h.measureLeaf(e));if(e.toc)return Q(h.measureToc(e));if(e.image)return Q(h.measureImage(e));if(e.svg)return Q(h.measureSVG(e));if(e.canvas)return Q(h.measureCanvas(e));if(e.qr)return Q(h.measureQr(e));throw"Unrecognized document structure: "+JSON.stringify(e,u)});function Q(R){var p=R._margin;return p&&(R._minWidth+=p[0]+p[2],R._maxWidth+=p[0]+p[2]),R}},C.prototype.convertIfBase64Image=function(e){if(/^data:image\/(jpeg|jpg|png);base64,/.test(e.image)){var h="$$pdfmake$$"+this.autoImageIndex++;this.images[h]=e.image,e.image=h}},C.prototype.measureImageWithDimensions=function(e,h){if(e.fit){var Q=h.width/h.height>e.fit[0]/e.fit[1]?e.fit[0]/h.width:e.fit[1]/h.height;e._width=e._minWidth=e._maxWidth=h.width*Q,e._height=h.height*Q}else e.cover?(e._width=e._minWidth=e._maxWidth=e.cover.width,e._height=e._minHeight=e._maxHeight=e.cover.height):(e._width=e._minWidth=e._maxWidth=e.width||h.width,e._height=e.height||h.height*e._width/h.width,g(e.maxWidth)&&e.maxWidthe._width&&(e._width=e._minWidth=e._maxWidth=e.minWidth,e._height=e._width*h.height/h.width),g(e.minHeight)&&e.minHeight>e._height&&(e._height=e.minHeight,e._width=e._minWidth=e._maxWidth=e._height*h.width/h.height));e._alignment=this.styleStack.getProperty("alignment")},C.prototype.measureImage=function(e){this.images&&this.convertIfBase64Image(e);var h=this.imageMeasure.measureImage(e.image);return this.measureImageWithDimensions(e,h),e},C.prototype.measureSVG=function(e){var h=this.svgMeasure.measureSVG(e.svg);return this.measureImageWithDimensions(e,h),e.font=this.styleStack.getProperty("font"),e.svg=this.svgMeasure.writeDimensions(e.svg,{width:e._width,height:e._height}),e},C.prototype.measureLeaf=function(e){e._textRef&&e._textRef._textNodeRef.text&&(e.text=e._textRef._textNodeRef.text);var h=this.styleStack.clone();h.push(e);var Q=this.textTools.buildInlines(e.text,h);return e._inlines=Q.items,e._minWidth=Q.minWidth,e._maxWidth=Q.maxWidth,e},C.prototype.measureToc=function(e){if(e.toc.title&&(e.toc.title=this.measureNode(e.toc.title)),e.toc._items.length>0){for(var h=[],Q=e.toc.textStyle||{},I=e.toc.numberStyle||Q,R=e.toc.textMargin||[0,0,0,0],p=0,m=e.toc._items.length;p=26?S((z/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[z%26|0]}(v-1)}function p(v){if(v<1||v>4999)return v.toString();var $,S=v,z={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},F="";for($ in z)for(;S>=z[$];)F+=$,S-=z[$];return F}var y;switch(Q){case"none":y=null;break;case"upper-alpha":y=R(e).toUpperCase();break;case"lower-alpha":y=R(e);break;case"upper-roman":y=p(e);break;case"lower-roman":y=p(e).toLowerCase();break;default:y=function m(v){return v.toString()}(e)}if(null===y)return{};I&&(w(I)?(I[0]&&(y=I[0]+y),I[1]&&(y+=I[1]),y+=" "):y+=I+" ");var x={text:y},Y=h.getProperty("markerColor");return Y&&(x.color=Y),{_inlines:this.textTools.buildInlines(x,h).items}},C.prototype.measureUnorderedList=function(e){var h=this.styleStack.clone(),Q=e.ul;e.type=e.type||"disc",e._gapSize=this.gapSizeForList(),e._minWidth=0,e._maxWidth=0;for(var I=0,R=Q.length;I0?h.length-1:0;return e._minWidth=R.min+e._gap*p,e._maxWidth=R.max+e._gap*p,e},C.prototype.measureTable=function(e){(function fA(iA){if(iA.table.widths||(iA.table.widths="auto"),o(iA.table.widths))for(iA.table.widths=[iA.table.widths];iA.table.widths.length1?(gA(y,Q,x.colSpan),h.push({col:Q,span:x.colSpan,minWidth:x._minWidth,maxWidth:x._maxWidth})):(m._minWidth=Math.max(m._minWidth,x._minWidth),m._maxWidth=Math.max(m._maxWidth,x._maxWidth))),x.rowSpan&&x.rowSpan>1&&_(e.table,I,Q,x.rowSpan)}}!function F(){for(var iA,wA,IA=0,FA=h.length;IA0)for(iA=J/YA.span,wA=0;wA0)for(iA=BA/YA.span,wA=0;wAu.page?w:u.page>w.page?u:w.y>u.y?w:u).page,x:r.x,y:r.y,availableHeight:r.availableHeight,availableWidth:r.availableWidth}}(this,w.bottomMost)},s.prototype.markEnding=function(w){this.page=w._columnEndingContext.page,this.x=w._columnEndingContext.x,this.y=w._columnEndingContext.y,this.availableWidth=w._columnEndingContext.availableWidth,this.availableHeight=w._columnEndingContext.availableHeight,this.lastColumnWidth=w._columnEndingContext.lastColumnWidth},s.prototype.saveContextInEndingCell=function(w){w._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}},s.prototype.completeColumnGroup=function(w){var u=this.snapshots.pop();this.calculateBottomMost(u),this.endingCell=null,this.x=u.x;var r=u.bottomMost.y;w&&(u.page===u.bottomMost.page?u.y+w>r&&(r=u.y+w):r+=w),this.y=r,this.page=u.bottomMost.page,this.availableWidth=u.availableWidth,this.availableHeight=u.bottomMost.availableHeight,w&&(this.availableHeight-=r-u.bottomMost.y),this.lastColumnWidth=u.lastColumnWidth},s.prototype.addMargin=function(w,u){this.x+=w,this.availableWidth-=w+(u||0)},s.prototype.moveDown=function(w){return this.y+=w,this.availableHeight-=w,this.availableHeight>0},s.prototype.initializePage=function(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom,this.pageSnapshot().availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right},s.prototype.pageSnapshot=function(){return this.snapshots[0]?this.snapshots[0]:this},s.prototype.moveTo=function(w,u){null!=w&&(this.x=w,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=u&&(this.y=u,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)},s.prototype.moveToRelative=function(w,u){null!=w&&(this.x=this.x+w),null!=u&&(this.y=this.y+u)},s.prototype.beginDetachedBlock=function(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,endingCell:this.endingCell,lastColumnWidth:this.lastColumnWidth})},s.prototype.endDetachedBlock=function(){var w=this.snapshots.pop();this.x=w.x,this.y=w.y,this.availableWidth=w.availableWidth,this.availableHeight=w.availableHeight,this.page=w.page,this.endingCell=w.endingCell,this.lastColumnWidth=w.lastColumnWidth};var g=function(w,u){return(u=function o(w,u){return void 0===w?u:a(w)&&"landscape"===w.toLowerCase()?"landscape":"portrait"}(u,w.pageSize.orientation))!==w.pageSize.orientation?{orientation:u,width:w.pageSize.height,height:w.pageSize.width}:{orientation:w.pageSize.orientation,width:w.pageSize.width,height:w.pageSize.height}};s.prototype.moveToNextPage=function(w){var u=this.page+1,r=this.page,d=this.y,E=u>=this.pages.length;if(E){var C=this.availableWidth,e=this.getCurrentPage().pageSize.orientation,h=g(this.getCurrentPage(),w);this.addPage(h),e===h.orientation&&(this.availableWidth=C)}else this.page=u,this.initializePage();return{newPageCreated:E,prevPage:r,prevY:d,y:this.y}},s.prototype.addPage=function(w){var u={items:[],pageSize:w};return this.pages.push(u),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.tracker.emit("pageAdded"),u},s.prototype.getCurrentPage=function(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]},s.prototype.getCurrentPosition=function(){var w=this.getCurrentPage().pageSize,u=w.height-this.pageMargins.top-this.pageMargins.bottom,r=w.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:w.orientation,pageInnerHeight:u,pageInnerWidth:r,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/u,horizontalRatio:(this.x-this.pageMargins.left)/r}},b.exports=s},54861:function(b,A,n){"use strict";var B=n(70770),a=n(91867).isNumber,s=n(91867).pack,o=n(91867).offsetVector,g=n(79178);function f(r,d){this.context=r,this.contextStack=[],this.tracker=d}function w(r,d,E){null==E||E<0||E>r.items.length?r.items.push(d):r.items.splice(E,0,d)}f.prototype.addLine=function(r,d,E){var C=r.getHeight(),e=this.context,h=e.getCurrentPage(),Q=this.getCurrentPositionOnPage();return!(e.availableHeight0&&r.inlines[0].alignment,e=0;switch(C){case"right":e=d-E;break;case"center":e=(d-E)/2}if(e&&(r.x=(r.x||0)+e),"justify"===C&&!r.newLineForced&&!r.lastLineInParagraph&&r.inlines.length>1)for(var h=(d-E)/(r.inlines.length-1),Q=1,I=r.inlines.length;Q0)&&(void 0===r._x&&(r._x=r.x||0),r.x=C.x+r._x,r.y=C.y,this.alignImage(r),w(e,{type:E||"image",item:r},d),C.moveDown(r._height),h)},f.prototype.addSVG=function(r,d){return this.addImage(r,d,"svg")},f.prototype.addQr=function(r,d){var E=this.context,C=E.getCurrentPage(),e=this.getCurrentPositionOnPage();if(!C||void 0===r.absolutePosition&&E.availableHeighte.availableHeight||(r.items.forEach(function(Q){switch(Q.type){case"line":var I=function u(r){var d=new B(r.maxWidth);for(var E in r)r.hasOwnProperty(E)&&(d[E]=r[E]);return d}(Q.item);I._node&&(I._node.positions[0].pageNumber=e.page+1),I.x=(I.x||0)+(d?r.xOffset||0:e.x),I.y=(I.y||0)+(E?r.yOffset||0:e.y),h.items.push({type:"line",item:I});break;case"vector":var R=s(Q.item);o(R,d?r.xOffset||0:e.x,E?r.yOffset||0:e.y),h.items.push({type:"vector",item:R});break;case"image":case"svg":var p=s(Q.item);p.x=(p.x||0)+(d?r.xOffset||0:e.x),p.y=(p.y||0)+(E?r.yOffset||0:e.y),h.items.push({type:Q.type,item:p})}}),C||e.moveDown(r.height),0))},f.prototype.pushContext=function(r,d){void 0===r&&(d=this.context.getCurrentPage().height-this.context.pageMargins.top-this.context.pageMargins.bottom,r=this.context.availableWidth),a(r)&&(r=new g({width:r,height:d},{left:0,right:0,top:0,bottom:0})),this.contextStack.push(this.context),this.context=r},f.prototype.popContext=function(){this.context=this.contextStack.pop()},f.prototype.getCurrentPositionOnPage=function(){return(this.contextStack[0]||this.context).getCurrentPosition()},b.exports=f},28284:function(b,A,n){"use strict";var B=n(91867).isArray;function s(o,g){for(var f in this.fonts={},this.pdfKitDoc=g,this.fontCache={},o)if(o.hasOwnProperty(f)){var w=o[f];this.fonts[f]={normal:w.normal,bold:w.bold,italics:w.italics,bolditalics:w.bolditalics}}}s.prototype.getFontType=function(o,g){return function a(o,g){var f="normal";return o&&g?f="bolditalics":o?f="bold":g&&(f="italics"),f}(o,g)},s.prototype.getFontFile=function(o,g,f){var w=this.getFontType(g,f);return this.fonts[o]&&this.fonts[o][w]?this.fonts[o][w]:null},s.prototype.provideFont=function(o,g,f){var w=this.getFontType(g,f);if(null===this.getFontFile(o,g,f))throw new Error("Font '"+o+"' in style '"+w+"' is not defined in the font section of the document definition.");if(this.fontCache[o]=this.fontCache[o]||{},!this.fontCache[o][w]){var u=this.fonts[o][w];B(u)||(u=[u]),this.fontCache[o][w]=this.pdfKitDoc.font.apply(this.pdfKitDoc,u)._font}return this.fontCache[o][w]},b.exports=s},91867:function(b){"use strict";function a(e){return Array.isArray(e)}b.exports={isString:function A(e){return"string"==typeof e||e instanceof String},isNumber:function n(e){return"number"==typeof e||e instanceof Number},isBoolean:function B(e){return"boolean"==typeof e},isArray:a,isFunction:function s(e){return"function"==typeof e},isObject:function o(e){return null!==e&&"object"==typeof e},isNull:function g(e){return null===e},isUndefined:function f(e){return void 0===e},pack:function w(){for(var e={},h=0,Q=arguments.length;h0})).forEach(function(AA){var QA={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(function(yA){void 0!==AA[yA]&&(QA[yA]=AA[yA])}),QA.startPosition=AA.positions[0],QA.pageNumbers=Array.from(new Set(AA.positions.map(function(yA){return yA.pageNumber}))),QA.pages=BA.length,QA.stack=d(AA.stack),AA.nodeInfo=QA});for(var aA=0;aA1)for(var L=aA+1,rA=J.length;L-1&&xA.push(J[L].nodeInfo),IA.length>2&&J[L].nodeInfo.pageNumbers.indexOf(EA+1)>-1&&OA.push(J[L].nodeInfo);if(IA.length>3)for(L=0;L-1&&W.push(J[L].nodeInfo);if(IA(eA.nodeInfo,xA,OA,W))return eA.pageBreak="before",!0}}return!1}this.docPreprocessor=new a,this.docMeasure=new s(z,F,$,this.imageMeasure,this.svgMeasure,this.tableLayouts,iA);for(var HA=this.tryLayoutDocument(S,z,F,$,gA,_,fA,iA,wA);FA(HA.linearNodeList,HA.pages);)HA.linearNodeList.forEach(function(BA){BA.resetXY()}),HA=this.tryLayoutDocument(S,z,F,$,gA,_,fA,iA,wA);return HA.pages},Y.prototype.tryLayoutDocument=function(S,z,F,$,gA,_,fA,iA,wA,IA){this.linearNodeList=[],S=this.docPreprocessor.preprocessDocument(S),S=this.docMeasure.measureDocument(S),this.writer=new g(new o(this.pageSize,this.pageMargins),this.tracker);var FA=this;return this.writer.context().tracker.startTracking("pageAdded",function(){FA.addBackground(gA)}),this.addBackground(gA),this.processNode(S),this.addHeadersAndFooters(_,fA),null!=wA&&this.addWatermark(wA,z,$),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList}},Y.prototype.addBackground=function(S){var z=R(S)?S:function(){return S},F=this.writer.context(),$=F.getCurrentPage().pageSize,gA=z(F.page+1,$);gA&&(this.writer.beginUnbreakableBlock($.width,$.height),gA=this.docPreprocessor.preprocessDocument(gA),this.processNode(this.docMeasure.measureDocument(gA)),this.writer.commitUnbreakableBlock(0,0),F.backgroundLength[F.page]+=gA.positions.length)},Y.prototype.addStaticRepeatable=function(S,z){this.addDynamicRepeatable(function(){return JSON.parse(JSON.stringify(S))},z)},Y.prototype.addDynamicRepeatable=function(S,z){for(var $=0,gA=this.writer.context().pages.length;$1;)J.push({fontSize:EA}),(BA=HA.sizeOfRotatedText(FA.text,FA.angle,J)).width>IA.width?EA=(aA+(eA=EA))/2:BA.widthIA.height?(aA+(eA=EA))/2:((aA=EA)+eA)/2),J.pop();return EA}(this.pageSize,S,z));var $={text:S.text,font:z.provideFont(S.font,S.bold,S.italics),fontSize:S.fontSize,color:S.color,opacity:S.opacity,angle:S.angle};$._size=function iA(IA,FA){var YA=new p(FA),HA=new m(null,{font:IA.font,bold:IA.bold,italics:IA.italics});return HA.push({fontSize:IA.fontSize}),{size:YA.sizeOfString(IA.text,HA),rotatedSize:YA.sizeOfRotatedText(IA.text,IA.angle,HA)}}(S,z);for(var gA=this.writer.context().pages,_=0,fA=gA.length;_0;wA--)iA.push(fA);return iA}(S._gap);$&&(F-=($.length-1)*S._gap),f.buildColumnWidths(z,F);var gA=this.processRow(z,z,$);x(S.positions,gA.positions)},Y.prototype.processRow=function(S,z,F,$,gA,_){var fA=this,iA=[],wA=[];return this.tracker.auto("pageChanged",function IA(HA){for(var J,BA=0,aA=iA.length;BA1)for(var EA=1;EAHA?F[HA]:0}function YA(HA,J){if(HA.rowSpan&&HA.rowSpan>1){var BA=gA+HA.rowSpan-1;if(BA>=$.length)throw"Row span for column "+J+" (with indexes starting from 0) exceeded row count";return $[BA][J]}return null}},Y.prototype.processList=function(S,z){var _,F=this,$=S?z.ol:z.ul,gA=z._gapSize;this.writer.context().addMargin(gA.width),this.tracker.auto("lineAdded",function fA(iA){if(_){var wA=_;if(_=null,wA.canvas){var IA=wA.canvas[0];h(IA,-wA._minWidth,0),F.writer.addVector(IA)}else if(wA._inlines){var FA=new u(F.pageSize.width);FA.addInline(wA._inlines[0]),FA.x=-wA._minWidth,FA.y=iA.getAscenderHeight()-FA.getAscenderHeight(),F.writer.addLine(FA,!0)}}},function(){$.forEach(function(iA){_=iA.listMarker,F.processNode(iA),x(z.positions,iA.positions)})}),this.writer.context().addMargin(-gA.width)},Y.prototype.processTable=function(S){var z=new w(S);z.beginTable(this.writer);for(var F=S.table.heights,$=0,gA=S.table.body.length;$0&&(F.hasEnoughSpaceForInline(S._inlines[0],S._inlines.slice(1))||gA);){var _=!1,fA=S._inlines.shift();if(gA=!1,!fA.noWrap&&fA.text.length>1&&fA.width>F.getAvailableWidth()){var iA=fA.width/fA.text.length,wA=Math.floor(F.getAvailableWidth()/iA);if(wA<1&&(wA=1),wA0){var r=w.pages[0];if(r.xOffset=g,r.yOffset=f,u>1)if(void 0!==g||void 0!==f)r.height=w.getCurrentPage().pageSize.height-w.pageMargins.top-w.pageMargins.bottom;else{r.height=this.writer.context.getCurrentPage().pageSize.height-this.writer.context.pageMargins.top-this.writer.context.pageMargins.bottom;for(var d=0,E=this.repeatables.length;dOA.item.y2?OA.item.y1:OA.item.y2:OA.item.h:0}(OA)}var EA=v(BA||40),xA=EA.top;return J.forEach(function(OA){OA.items.forEach(function(W){var L=eA(W);L>xA&&(xA=L)})}),xA+=EA.bottom}function Y(J,BA){J&&"auto"===J.height&&(J.height=1/0);var eA=function z(J){if(d(J)){var BA=o[J.toUpperCase()];if(!BA)throw"Page size "+J+" not recognized";return{width:BA[0],height:BA[1]}}return J}(J||"A4");return function aA(EA){return!!d(EA)&&("portrait"===(EA=EA.toLowerCase())&&eA.width>eA.height||"landscape"===EA&&eA.widtheA.height?"landscape":"portrait",eA}function v(J){if(E(J))J={left:J,right:J,top:J,bottom:J};else if(e(J))if(2===J.length)J={left:J[0],top:J[1],right:J[0],bottom:J[1]};else{if(4!==J.length)throw"Invalid pageMargins definition";J={left:J[0],top:J[1],right:J[2],bottom:J[3]}}return J}function F(J,BA){J.pageSize.orientation!==(BA.options.size[0]>BA.options.size[1]?"landscape":"portrait")&&(BA.options.size=[BA.options.size[1],BA.options.size[0]])}function gA(J,BA){var aA=J;return BA.sup&&(aA-=.75*BA.fontSize),BA.sub&&(aA+=.35*BA.fontSize),aA}function _(J,BA,aA,eA,EA){function xA(zA,pA){var JA,ft,wt=new u(null);if(h(zA.positions))throw"Page reference id not found";var gt=zA.positions[0].pageNumber.toString();switch(pA.text=gt,JA=wt.widthOfString(pA.text,pA.font,pA.fontSize,pA.characterSpacing,pA.fontFeatures),ft=pA.width-JA,pA.width=JA,pA.alignment){case"right":pA.x+=ft;break;case"center":pA.x+=ft/2}}J._pageNodeRef&&xA(J._pageNodeRef,J.inlines[0]),BA=BA||0,aA=aA||0;var OA=J.getHeight(),L=OA-J.getAscenderHeight();w.drawBackground(J,BA,aA,eA,EA);for(var rA=0,AA=J.inlines.length;rA1){var OA=J.points[0],W=J.points[J.points.length-1];(J.closePath||OA.x===W.x&&OA.y===W.y)&&aA.closePath()}break;case"path":aA.path(J.d)}if(J.linearGradient&&eA){var L=1/(J.linearGradient.length-1);for(EA=0;EA-1&&(xA=xA.slice(0,OA)),aA.height===1/0){var W=x(xA,J.pageMargins);this.pdfKitDoc.options.size=[aA.width,W]}var L=function HA(J,BA){var aA={};return Object.keys(J).forEach(function(eA){var EA=J[eA];aA[eA]=BA.pattern(EA.boundingBox,EA.xStep,EA.yStep,EA.pattern,EA.colored)}),aA}(J.patterns||{},this.pdfKitDoc);if(function $(J,BA,aA,eA,EA){aA._pdfMakePages=J,aA.addPage();var xA=0;EA&&J.forEach(function(yA){xA+=yA.items.length});var OA=0;EA=EA||function(){};for(var W=0;W0&&(F(J[W],aA),aA.addPage(aA.options));for(var L=J[W],rA=0,AA=L.items.length;rA=128?285:0);var I=[[]];for(h=0;h<30;++h){for(var R=I[h],p=[],m=0;m<=h;++m)p.push(e[(m6},$=function(W,L){var rA=-8&function(W){var L=A[W],rA=16*W*W+128*W+64;return S(W)&&(rA-=36),L[2].length&&(rA-=25*L[2].length*L[2].length-10*L[2].length-55),rA}(W),AA=A[W];return rA-8*AA[0][L]*AA[1][L]},gA=function(W,L){switch(L){case B:return W<10?10:W<27?12:14;case a:return W<10?9:W<27?11:13;case s:return W<10?8:16;case 8:return W<10?8:W<27?10:12}},_=function(W,L,rA){var AA=$(W,rA)-4-gA(W,L);switch(L){case B:return 3*(AA/10|0)+(AA%10<4?0:AA%10<7?1:2);case a:return 2*(AA/11|0)+(AA%11<6?0:1);case s:return AA/8|0;case 8:return AA/13|0}},fA=function(W,L){switch(W){case B:return L.match(g)?L:null;case a:return L.match(f)?L.toUpperCase():null;case s:if("string"==typeof L){for(var rA=[],AA=0;AA>6,128|63&QA):QA<65536?rA.push(224|QA>>12,128|QA>>6&63,128|63&QA):rA.push(240|QA>>18,128|QA>>12&63,128|QA>>6&63,128|63&QA)}return rA}return L}},wA=function(W,L){for(var rA=W.slice(0),AA=W.length,QA=L.length,yA=0;yA=0)for(var CA=0;CA=0;--yA)QA>>AA+yA&1&&(QA^=rA<>cA&1;return W},aA=function(W){for(var yA=function(pt){for(var Yt=0,VA=0;VA=5&&(Yt+=pt[VA]-5+3);for(VA=5;VA=4*_A||pt[VA+1]>=4*_A)&&(Yt+=40)}return Yt},cA=W.length,CA=0,DA=0,NA=0;NA=cA){for(QA.push(yA|pA>>(JA-=cA));JA>=8;)QA.push(pA>>(JA-=8)&255);yA=0,cA=8}JA>0&&(yA|=(pA&(1<>3);cA=function(W,L,rA){for(var AA=[],QA=W.length/L|0,yA=0,cA=L-W.length%L,CA=0;CA>Qt&1,QA[wt+_A][gt+Qt]=1};for(cA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),cA(rA-8,0,8,9,[256,127,65,93,93,93,65,127]),cA(0,rA-8,9,8,[254,130,186,186,186,130,254,0,0]),yA=9;yA>ft++&1,QA[yA][rA-11+pA]=QA[rA-11+pA][yA]=1}return{matrix:AA,reserved:QA}}(L),DA=CA.matrix,NA=CA.reserved;if(function(W,L,rA){for(var AA=W.length,QA=0,yA=-1,cA=AA-1;cA>=0;cA-=2){6==cA&&--cA;for(var CA=yA<0?AA-1:0,DA=0;DAcA-2;--NA)L[CA][NA]||(W[CA][NA]=rA[QA>>3]>>(7&~QA)&1,++QA);CA+=yA}yA=-yA}}(DA,NA,cA),QA<0){J(DA,NA,0),BA(DA,0,AA,0);var zA=0,pA=aA(DA);for(J(DA,NA,0),QA=1;QA<8;++QA){J(DA,NA,QA),BA(DA,0,AA,QA);var JA=aA(DA);pA>JA&&(pA=JA,zA=QA),J(DA,NA,QA)}QA=zA}return J(DA,NA,QA),BA(DA,0,AA,QA),DA};function xA(W,L){var rA=[],AA=L.background||"#fff",QA=L.foreground||"#000",yA=L.padding||0,cA=function EA(W,L){var rA={numeric:B,alphanumeric:a,octet:s},QA=(L=L||{}).version||-1,yA={L:u,M:r,Q:d,H:E}[(L.eccLevel||"L").toUpperCase()],cA=L.mode?rA[L.mode.toLowerCase()]:-1,CA="mask"in L?L.mask:-1;if(cA<0)cA="string"==typeof W?W.match(g)?B:W.match(w)?a:s:s;else if(cA!=B&&cA!=a&&cA!=s)throw"invalid or unsupported mode";if(null===(W=fA(cA,W)))throw"invalid data format";if(yA<0||yA>3)throw"invalid ECC level";if(QA<0){for(QA=1;QA<=40&&!(W.length<=_(QA,cA,yA));++QA);if(QA>40)throw"too large data for the Qr format"}else if(QA<1||QA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=CA&&(CA<0||CA>8))throw"invalid mask";return eA(W,QA,cA,yA,CA)}(W,L),CA=cA.length,DA=Math.floor(L.fit?L.fit/CA:5),NA=CA*DA+DA*yA*2,zA=DA*yA;rA.push({type:"rect",x:0,y:0,w:NA,h:NA,lineWidth:0,color:AA});for(var pA=0;pA0;)this.styleOverrides.pop()},g.prototype.autopush=function(f){if(B(f))return 0;var w=[];f.style&&(w=a(f.style)?f.style:[f.style]);for(var u=0,r=w.length;u0&&this.pop(u),r},g.prototype.getProperty=function(f){if(this.styleOverrides)for(var w=this.styleOverrides.length-1;w>=0;w--){var u=this.styleOverrides[w];if(B(u)){var r=this.styleDictionary[u];if(r&&!s(r[f])&&!o(r[f]))return r[f]}else if(!s(u[f])&&!o(u[f]))return u[f]}return this.defaultStyle&&this.defaultStyle[f]},b.exports=g},89638:function(b,A,n){"use strict";var B=n(52242);function a(g){var f=parseFloat(g);if("number"==typeof f&&!isNaN(f))return f}function s(g){var f;try{f=new B.XmlDocument(g)}catch(w){throw new Error("SVGMeasure: "+w)}if("svg"!==f.name)throw new Error("SVGMeasure: expected document");return f}function o(){}o.prototype.measureSVG=function(g){var f=s(g),w=a(f.attr.width),u=a(f.attr.height);if((null==w||null==u)&&"string"==typeof f.attr.viewBox){var r=f.attr.viewBox.split(/[,\s]+/);if(4!==r.length)throw new Error("Unexpected svg viewbox format, should have 4 entries but found: '"+f.attr.viewBox+"'");null==w&&(w=a(r[2])),null==u&&(u=a(r[3]))}return{width:w,height:u}},o.prototype.writeDimensions=function(g,f){var w=s(g);return w.attr.width=""+f.width,w.attr.height=""+f.height,w.toString()},b.exports=o},89836:function(b,A,n){"use strict";var B=n(77530),a=n(91867).isFunction,s=n(91867).isNumber;function o(g){this.tableNode=g}o.prototype.beginTable=function(g){var f,w,u=this;if(this.offsets=(f=this.tableNode)._offsets,this.layout=f._layout,w=g.context().availableWidth-this.offsets.total,B.buildColumnWidths(f.table.widths,w),this.tableWidth=f._offsets.total+function r(){var C=0;return f.table.widths.forEach(function(e){C+=e._calcWidth}),C}(),this.rowSpanData=function d(){var C=[],e=0,h=0;C.push({left:0,rowSpan:0});for(var Q=0,I=u.tableNode.table.body[0].length;Qf.table.body.length)throw new Error(`Too few rows in the table. Property headerRows requires at least ${this.headerRows}, contains only ${f.table.body.length}`);this.rowsWithoutPageBreak=this.headerRows+(f.table.keepWithHeaderRows||0),this.dontBreakRows=f.table.dontBreakRows||!1,this.rowsWithoutPageBreak&&g.beginUnbreakableBlock(),function E(C){for(var e=0;e0&&x(e+m,Q,0,I.border[0]),void 0!==I.border[2]&&x(e+m,Q+p-1,2,I.border[2]);for(var y=0;y0&&x(e,Q+y,1,I.border[1]),void 0!==I.border[3]&&x(e+R-1,Q+y,3,I.border[3])}}function x(Y,v,S,z){var F=C[Y][v];F.border=F.border||{},F.border[S]=z}}(this.tableNode.table.body),this.drawHorizontalLine(0,g)},o.prototype.onRowBreak=function(g,f){var w=this;return function(){var u=w.rowPaddingTop+(w.headerRows?0:w.topLineWidth);f.context().availableHeight-=w.reservedAtBottom,f.context().moveDown(u)}},o.prototype.beginRow=function(g,f){this.topLineWidth=this.layout.hLineWidth(g,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(g,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(g+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(g,this.tableNode),this.rowCallback=this.onRowBreak(g,f),f.tracker.startTracking("pageChanged",this.rowCallback),this.dontBreakRows&&f.beginUnbreakableBlock(),this.rowTopY=f.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,f.context().availableHeight-=this.reservedAtBottom,f.context().moveDown(this.rowPaddingTop)},o.prototype.drawHorizontalLine=function(g,f,w){var u=this.layout.hLineWidth(g,this.tableNode);if(u){var d,r=this.layout.hLineStyle(g,this.tableNode);r&&r.dash&&(d=r.dash);for(var h,Q,I,E=u/2,C=null,e=this.tableNode.table.body,R=0,p=this.rowSpanData.length;R0&&(v=(h=e[g-1][R]).border?h.border[3]:this.layout.defaultBorder)&&h.borderColor&&(x=h.borderColor[3]),gz;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else if(h&&h.colSpan&&v){for(;h.colSpan>z;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else if(Q&&Q.colSpan&&Y){for(;Q.colSpan>z;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else C.width+=this.rowSpanData[R].width||0}var F=(w||0)+E;y&&C&&C.width&&(f.addVector({type:"line",x1:C.left,x2:C.left+C.width,y1:F,y2:F,lineWidth:u,dash:d,lineColor:x},!1,w),C=null,x=null,h=null,Q=null,I=null)}f.context().moveDown(u)}},o.prototype.drawVerticalLine=function(g,f,w,u,r,d,E){var C=this.layout.vLineWidth(u,this.tableNode);if(0!==C){var h,e=this.layout.vLineStyle(u,this.tableNode);e&&e.dash&&(h=e.dash);var I,R,p,Q=this.tableNode.table.body;if(u>0&&(I=Q[d][E])&&I.borderColor&&(I.border?I.border[2]:this.layout.defaultBorder)&&(p=I.borderColor[2]),null==p&&u0&&rA--}return L.push({x:d.rowSpanData[d.rowSpanData.length-1].left,index:d.rowSpanData.length-1}),L}(),h=[],Q=w&&w.length>0,I=this.tableNode.table.body;if(h.push({y0:this.rowTopY,page:Q?w[0].prevPage:E}),Q)for(r=0,u=w.length;r0&&!this.headerRows,v=Y?0:this.topLineWidth,S=h[m].y0,z=h[m].y1;for(x&&(z+=this.rowPaddingBottom),f.context().page!=h[m].page&&(f.context().page=h[m].page,this.reservedAtBottom=0),r=0,u=e.length;r0&&!F&&(F=(_=I[g][gA-1]).border?_.border[2]:this.layout.defaultBorder),gA+11)for(var OA=1;OA1)for(OA=1;OA0&&this.rowSpanData[r].rowSpan--}this.drawHorizontalLine(g+1,f),this.headerRows&&g===this.headerRows-1&&(this.headerRepeatable=f.currentBlockToRepeatable()),this.dontBreakRows&&f.tracker.auto("pageChanged",function(){!d.headerRows&&!1!==d.layout.hLineWhenBroken&&d.drawHorizontalLine(g,f)},function(){f.commitUnbreakableBlock()}),this.headerRepeatable&&(g===this.rowsWithoutPageBreak-1||g===this.tableNode.table.body.length-1)&&(f.commitUnbreakableBlock(),f.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)},b.exports=o},84786:function(b,A,n){"use strict";var B=n(91867).isArray,a=n(91867).isPattern,s=n(91867).getPattern;function g(u,r,d,E){var h=u.inlines[0],Q=function C(){for(var FA=0,YA=0,HA=u.inlines.length;YAFA?YA:FA;return u.inlines[FA]}(),I=function e(){for(var FA=0,YA=0,HA=u.inlines.length;YA=0&&a.splice(s,1)}},A.prototype.emit=function(n){var B=Array.prototype.slice.call(arguments,1),a=this.events[n];a&&a.forEach(function(s){s.apply(this,B)})},A.prototype.auto=function(n,B,a){this.startTracking(n,B),a(),this.stopTracking(n,B)},b.exports=A},44134:function(b,A,n){var B,s;void 0!==(s="function"==typeof(B=function(){"use strict";function g(E,C,e){var h=new XMLHttpRequest;h.open("GET",E),h.responseType="blob",h.onload=function(){d(h.response,C,e)},h.onerror=function(){console.error("could not download file")},h.send()}function f(E){var C=new XMLHttpRequest;C.open("HEAD",E,!1);try{C.send()}catch{}return 200<=C.status&&299>=C.status}function w(E){try{E.dispatchEvent(new MouseEvent("click"))}catch{var C=document.createEvent("MouseEvents");C.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),E.dispatchEvent(C)}}var u="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,r=u.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),d=u.saveAs||("object"!=typeof window||window!==u?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!r?function(E,C,e){var h=u.URL||u.webkitURL,Q=document.createElement("a");Q.download=C=C||E.name||"download",Q.rel="noopener","string"==typeof E?(Q.href=E,Q.origin===location.origin?w(Q):f(Q.href)?g(E,C,e):w(Q,Q.target="_blank")):(Q.href=h.createObjectURL(E),setTimeout(function(){h.revokeObjectURL(Q.href)},4e4),setTimeout(function(){w(Q)},0))}:"msSaveOrOpenBlob"in navigator?function(E,C,e){if(C=C||E.name||"download","string"!=typeof E)navigator.msSaveOrOpenBlob(function o(E,C){return typeof C>"u"?C={autoBom:!1}:"object"!=typeof C&&(console.warn("Deprecated: Expected third argument to be a object"),C={autoBom:!C}),C.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(E.type)?new Blob(["\ufeff",E],{type:E.type}):E}(E,e),C);else if(f(E))g(E,C,e);else{var h=document.createElement("a");h.href=E,h.target="_blank",setTimeout(function(){w(h)})}}:function(E,C,e,h){if((h=h||open("","_blank"))&&(h.document.title=h.document.body.innerText="downloading..."),"string"==typeof E)return g(E,C,e);var Q="application/octet-stream"===E.type,I=/constructor/i.test(u.HTMLElement)||u.safari,R=/CriOS\/[\d]+/.test(navigator.userAgent);if((R||Q&&I||r)&&typeof FileReader<"u"){var p=new FileReader;p.onloadend=function(){var x=p.result;x=R?x:x.replace(/^data:[^;]*;/,"data:attachment/file;"),h?h.location.href=x:location=x,h=null},p.readAsDataURL(E)}else{var m=u.URL||u.webkitURL,y=m.createObjectURL(E);h?h.location=y:location.href=y,h=null,setTimeout(function(){m.revokeObjectURL(y)},4e4)}});u.saveAs=d.saveAs=d,b.exports=d})?B.apply(A,[]):B)&&(b.exports=s)},60421:function(b,A,n){"use strict";var a,B=n(50621).Buffer;function s(tA,G){for(var K=0;K=tA.length?{done:!0}:{done:!1,value:tA[M++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function E(tA,G){(null==G||G>tA.length)&&(G=tA.length);for(var K=0,M=new Array(G);K0?sA[0]:"value";if(nA.has(KA))return nA.get(KA);var lt=N.apply(this,sA);return nA.set(KA,lt),lt}return Object.defineProperty(this,G,{value:oA}),oA}}}}v.registerFormat=function(tA){S.push(tA)},v.openSync=function(tA,G){var K=Y.readFileSync(tA);return v.create(K,G)},v.open=function(tA,G,K){"function"==typeof G&&(K=G,G=null),Y.readFile(tA,function(M,N){if(M)return K(M);try{var P=v.create(N,G)}catch(nA){return K(nA)}return K(null,P)})},v.create=function(tA,G){for(var K=0;K>1},searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,endCode:new e.LazyArray(e.uint16,"segCount"),reservedPad:new e.Reserved(e.uint16),startCode:new e.LazyArray(e.uint16,"segCount"),idDelta:new e.LazyArray(e.int16,"segCount"),idRangeOffset:new e.LazyArray(e.uint16,"segCount"),glyphIndexArray:new e.LazyArray(e.uint16,function(tA){return(tA.length-tA._currentOffset)/2})},6:{length:e.uint16,language:e.uint16,firstCode:e.uint16,entryCount:e.uint16,glyphIndices:new e.LazyArray(e.uint16,"entryCount")},8:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint16,is32:new e.LazyArray(e.uint8,8192),nGroups:e.uint32,groups:new e.LazyArray(_,"nGroups")},10:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,firstCode:e.uint32,entryCount:e.uint32,glyphIndices:new e.LazyArray(e.uint16,"numChars")},12:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(_,"nGroups")},13:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(_,"nGroups")},14:{length:e.uint32,numRecords:e.uint32,varSelectors:new e.LazyArray(FA,"numRecords")}}),HA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,table:new e.Pointer(e.uint32,YA,{type:"parent",lazy:!0})}),J=new e.Struct({version:e.uint16,numSubtables:e.uint16,tables:new e.Array(HA,"numSubtables")}),BA=new e.Struct({version:e.int32,revision:e.int32,checkSumAdjustment:e.uint32,magicNumber:e.uint32,flags:e.uint16,unitsPerEm:e.uint16,created:new e.Array(e.int32,2),modified:new e.Array(e.int32,2),xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,macStyle:new e.Bitfield(e.uint16,["bold","italic","underline","outline","shadow","condensed","extended"]),lowestRecPPEM:e.uint16,fontDirectionHint:e.int16,indexToLocFormat:e.int16,glyphDataFormat:e.int16}),aA=new e.Struct({version:e.int32,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceWidthMax:e.uint16,minLeftSideBearing:e.int16,minRightSideBearing:e.int16,xMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),eA=new e.Struct({advance:e.uint16,bearing:e.int16}),EA=new e.Struct({metrics:new e.LazyArray(eA,function(tA){return tA.parent.hhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.hhea.numberOfMetrics})}),xA=new e.Struct({version:e.int32,numGlyphs:e.uint16,maxPoints:e.uint16,maxContours:e.uint16,maxComponentPoints:e.uint16,maxComponentContours:e.uint16,maxZones:e.uint16,maxTwilightPoints:e.uint16,maxStorage:e.uint16,maxFunctionDefs:e.uint16,maxInstructionDefs:e.uint16,maxStackElements:e.uint16,maxSizeOfInstructions:e.uint16,maxComponentElements:e.uint16,maxComponentDepth:e.uint16});function OA(tA,G,K){return void 0===K&&(K=0),1===tA&&L[K]?L[K]:W[tA][G]}var W=[["utf16be","utf16be","utf16be","utf16be","utf16be","utf16be"],["macroman","shift-jis","big5","euc-kr","iso-8859-6","iso-8859-8","macgreek","maccyrillic","symbol","Devanagari","Gurmukhi","Gujarati","Oriya","Bengali","Tamil","Telugu","Kannada","Malayalam","Sinhalese","Burmese","Khmer","macthai","Laotian","Georgian","Armenian","gb-2312-80","Tibetan","Mongolian","Geez","maccenteuro","Vietnamese","Sindhi"],["ascii"],["symbol","utf16be","shift-jis","gb18030","big5","wansung","johab",null,null,null,"utf16be"]],L={15:"maciceland",17:"macturkish",18:"maccroatian",24:"maccenteuro",25:"maccenteuro",26:"maccenteuro",27:"maccenteuro",28:"maccenteuro",30:"maciceland",37:"macromania",38:"maccenteuro",39:"maccenteuro",40:"maccenteuro",143:"macinuit",146:"macgaelic"},rA=[[],{0:"en",30:"fo",60:"ks",90:"rw",1:"fr",31:"fa",61:"ku",91:"rn",2:"de",32:"ru",62:"sd",92:"ny",3:"it",33:"zh",63:"bo",93:"mg",4:"nl",34:"nl-BE",64:"ne",94:"eo",5:"sv",35:"ga",65:"sa",128:"cy",6:"es",36:"sq",66:"mr",129:"eu",7:"da",37:"ro",67:"bn",130:"ca",8:"pt",38:"cz",68:"as",131:"la",9:"no",39:"sk",69:"gu",132:"qu",10:"he",40:"si",70:"pa",133:"gn",11:"ja",41:"yi",71:"or",134:"ay",12:"ar",42:"sr",72:"ml",135:"tt",13:"fi",43:"mk",73:"kn",136:"ug",14:"el",44:"bg",74:"ta",137:"dz",15:"is",45:"uk",75:"te",138:"jv",16:"mt",46:"be",76:"si",139:"su",17:"tr",47:"uz",77:"my",140:"gl",18:"hr",48:"kk",78:"km",141:"af",19:"zh-Hant",49:"az-Cyrl",79:"lo",142:"br",20:"ur",50:"az-Arab",80:"vi",143:"iu",21:"hi",51:"hy",81:"id",144:"gd",22:"th",52:"ka",82:"tl",145:"gv",23:"ko",53:"mo",83:"ms",146:"ga",24:"lt",54:"ky",84:"ms-Arab",147:"to",25:"pl",55:"tg",85:"am",148:"el-polyton",26:"hu",56:"tk",86:"ti",149:"kl",27:"es",57:"mn-CN",87:"om",150:"az",28:"lv",58:"mn",88:"so",151:"nn",29:"se",59:"ps",89:"sw"},[],{1078:"af",16393:"en-IN",1159:"rw",1074:"tn",1052:"sq",6153:"en-IE",1089:"sw",1115:"si",1156:"gsw",8201:"en-JM",1111:"kok",1051:"sk",1118:"am",17417:"en-MY",1042:"ko",1060:"sl",5121:"ar-DZ",5129:"en-NZ",1088:"ky",11274:"es-AR",15361:"ar-BH",13321:"en-PH",1108:"lo",16394:"es-BO",3073:"ar",18441:"en-SG",1062:"lv",13322:"es-CL",2049:"ar-IQ",7177:"en-ZA",1063:"lt",9226:"es-CO",11265:"ar-JO",11273:"en-TT",2094:"dsb",5130:"es-CR",13313:"ar-KW",2057:"en-GB",1134:"lb",7178:"es-DO",12289:"ar-LB",1033:"en",1071:"mk",12298:"es-EC",4097:"ar-LY",12297:"en-ZW",2110:"ms-BN",17418:"es-SV",6145:"ary",1061:"et",1086:"ms",4106:"es-GT",8193:"ar-OM",1080:"fo",1100:"ml",18442:"es-HN",16385:"ar-QA",1124:"fil",1082:"mt",2058:"es-MX",1025:"ar-SA",1035:"fi",1153:"mi",19466:"es-NI",10241:"ar-SY",2060:"fr-BE",1146:"arn",6154:"es-PA",7169:"aeb",3084:"fr-CA",1102:"mr",15370:"es-PY",14337:"ar-AE",1036:"fr",1148:"moh",10250:"es-PE",9217:"ar-YE",5132:"fr-LU",1104:"mn",20490:"es-PR",1067:"hy",6156:"fr-MC",2128:"mn-CN",3082:"es",1101:"as",4108:"fr-CH",1121:"ne",1034:"es",2092:"az-Cyrl",1122:"fy",1044:"nb",21514:"es-US",1068:"az",1110:"gl",2068:"nn",14346:"es-UY",1133:"ba",1079:"ka",1154:"oc",8202:"es-VE",1069:"eu",3079:"de-AT",1096:"or",2077:"sv-FI",1059:"be",1031:"de",1123:"ps",1053:"sv",2117:"bn",5127:"de-LI",1045:"pl",1114:"syr",1093:"bn-IN",4103:"de-LU",1046:"pt",1064:"tg",8218:"bs-Cyrl",2055:"de-CH",2070:"pt-PT",2143:"tzm",5146:"bs",1032:"el",1094:"pa",1097:"ta",1150:"br",1135:"kl",1131:"qu-BO",1092:"tt",1026:"bg",1095:"gu",2155:"qu-EC",1098:"te",1027:"ca",1128:"ha",3179:"qu",1054:"th",3076:"zh-HK",1037:"he",1048:"ro",1105:"bo",5124:"zh-MO",1081:"hi",1047:"rm",1055:"tr",2052:"zh",1038:"hu",1049:"ru",1090:"tk",4100:"zh-SG",1039:"is",9275:"smn",1152:"ug",1028:"zh-TW",1136:"ig",4155:"smj-NO",1058:"uk",1155:"co",1057:"id",5179:"smj",1070:"hsb",1050:"hr",1117:"iu",3131:"se-FI",1056:"ur",4122:"hr-BA",2141:"iu-Latn",1083:"se",2115:"uz-Cyrl",1029:"cs",2108:"ga",2107:"se-SE",1091:"uz",1030:"da",1076:"xh",8251:"sms",1066:"vi",1164:"prs",1077:"zu",6203:"sma-NO",1106:"cy",1125:"dv",1040:"it",7227:"sms",1160:"wo",2067:"nl-BE",2064:"it-CH",1103:"sa",1157:"sah",1043:"nl",1041:"ja",7194:"sr-Cyrl-BA",1144:"ii",3081:"en-AU",1099:"kn",3098:"sr",1130:"yo",10249:"en-BZ",1087:"kk",6170:"sr-Latn-BA",4105:"en-CA",1107:"km",2074:"sr-Latn",9225:"en-029",1158:"quc",1132:"nso"}],AA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,languageID:e.uint16,nameID:e.uint16,length:e.uint16,string:new e.Pointer(e.uint16,new e.String("length",function(tA){return OA(tA.platformID,tA.encodingID,tA.languageID)}),{type:"parent",relativeTo:function(G){return G.parent.stringOffset},allowNull:!1})}),QA=new e.Struct({length:e.uint16,tag:new e.Pointer(e.uint16,new e.String("length","utf16be"),{type:"parent",relativeTo:function(G){return G.stringOffset}})}),yA=new e.VersionedStruct(e.uint16,{0:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(AA,"count")},1:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(AA,"count"),langTagCount:e.uint16,langTags:new e.Array(QA,"langTagCount")}}),cA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];yA.process=function(tA){for(var M,G={},K=r(this.records);!(M=K()).done;){var N=M.value,P=rA[N.platformID][N.languageID];null==P&&null!=this.langTags&&N.languageID>=32768&&(P=this.langTags[N.languageID-32768].tag),null==P&&(P=N.platformID+"-"+N.languageID);var nA=N.nameID>=256?"fontFeatures":cA[N.nameID]||N.nameID;null==G[nA]&&(G[nA]={});var oA=G[nA];N.nameID>=256&&(oA=oA[N.nameID]||(oA[N.nameID]={})),("string"==typeof N.string||"string"!=typeof oA[P])&&(oA[P]=N.string)}this.records=G},yA.preEncode=function(){if(!Array.isArray(this.records)){this.version=0;var tA=[];for(var G in this.records){var K=this.records[G];"fontFeatures"!==G&&(tA.push({platformID:3,encodingID:1,languageID:1033,nameID:cA.indexOf(G),length:B.byteLength(K.en,"utf16le"),string:K.en}),"postscriptName"===G&&tA.push({platformID:1,encodingID:0,languageID:0,nameID:cA.indexOf(G),length:K.en.length,string:K.en}))}this.records=tA,this.count=tA.length,this.stringOffset=yA.size(this,null,!1)}};var CA=new e.VersionedStruct(e.uint16,{header:{xAvgCharWidth:e.int16,usWeightClass:e.uint16,usWidthClass:e.uint16,fsType:new e.Bitfield(e.uint16,[null,"noEmbedding","viewOnly","editable",null,null,null,null,"noSubsetting","bitmapOnly"]),ySubscriptXSize:e.int16,ySubscriptYSize:e.int16,ySubscriptXOffset:e.int16,ySubscriptYOffset:e.int16,ySuperscriptXSize:e.int16,ySuperscriptYSize:e.int16,ySuperscriptXOffset:e.int16,ySuperscriptYOffset:e.int16,yStrikeoutSize:e.int16,yStrikeoutPosition:e.int16,sFamilyClass:e.int16,panose:new e.Array(e.uint8,10),ulCharRange:new e.Array(e.uint32,4),vendorID:new e.String(4),fsSelection:new e.Bitfield(e.uint16,["italic","underscore","negative","outlined","strikeout","bold","regular","useTypoMetrics","wws","oblique"]),usFirstCharIndex:e.uint16,usLastCharIndex:e.uint16},0:{},1:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2)},2:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16},5:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16,usLowerOpticalPointSize:e.uint16,usUpperOpticalPointSize:e.uint16}}),DA=CA.versions;DA[3]=DA[4]=DA[2];var NA=new e.VersionedStruct(e.fixed32,{header:{italicAngle:e.fixed32,underlinePosition:e.int16,underlineThickness:e.int16,isFixedPitch:e.uint32,minMemType42:e.uint32,maxMemType42:e.uint32,minMemType1:e.uint32,maxMemType1:e.uint32},1:{},2:{numberOfGlyphs:e.uint16,glyphNameIndex:new e.Array(e.uint16,"numberOfGlyphs"),names:new e.Array(new e.String(e.uint8))},2.5:{numberOfGlyphs:e.uint16,offsets:new e.Array(e.uint8,"numberOfGlyphs")},3:{},4:{map:new e.Array(e.uint32,function(tA){return tA.parent.maxp.numGlyphs})}}),zA=new e.Struct({controlValues:new e.Array(e.int16)}),pA=new e.Struct({instructions:new e.Array(e.uint8)}),JA=new e.VersionedStruct("head.indexToLocFormat",{0:{offsets:new e.Array(e.uint16)},1:{offsets:new e.Array(e.uint32)}});JA.process=function(){if(0===this.version)for(var tA=0;tA>>=1};var ft=new e.Struct({controlValueProgram:new e.Array(e.uint8)}),wt=new e.Array(new e.Buffer),gt=function(){function tA(K){this.type=K}var G=tA.prototype;return G.getCFFVersion=function(M){for(;M&&!M.hdrSize;)M=M.parent;return M?M.version:-1},G.decode=function(M,N){var nA=this.getCFFVersion(N)>=2?M.readUInt32BE():M.readUInt16BE();if(0===nA)return[];var lA,oA=M.readUInt8();if(1===oA)lA=e.uint8;else if(2===oA)lA=e.uint16;else if(3===oA)lA=e.uint24;else{if(4!==oA)throw new Error("Bad offset size in CFFIndex: ".concat(oA," ").concat(M.pos));lA=e.uint32}for(var sA=[],bA=M.pos+(nA+1)*oA-1,KA=lA.decode(M),lt=0;lt>4;if(15===nA)break;N+=Yt[nA];var oA=15&P;if(15===oA)break;N+=Yt[oA]}return parseFloat(N)}return null},tA.size=function(K){return K.forceLarge&&(K=32768),(0|K)!==K?1+Math.ceil(((""+K).length+1)/2):-107<=K&&K<=107?1:108<=K&&K<=1131||-1131<=K&&K<=-108?2:-32768<=K&&K<=32767?3:5},tA.encode=function(K,M){var N=Number(M);if(M.forceLarge)return K.writeUInt8(29),K.writeInt32BE(N);if((0|N)===N)return-107<=N&&N<=107?K.writeUInt8(N+139):108<=N&&N<=1131?(K.writeUInt8(247+((N-=108)>>8)),K.writeUInt8(255&N)):-1131<=N&&N<=-108?(K.writeUInt8(251+((N=-N-108)>>8)),K.writeUInt8(255&N)):-32768<=N&&N<=32767?(K.writeUInt8(28),K.writeInt16BE(N)):(K.writeUInt8(29),K.writeInt32BE(N));K.writeUInt8(30);for(var P=""+N,nA=0;nAP;)N.pop()},tA}(),null],[19,"Subrs",new ht(new gt,{type:"local"}),null]]),Bt=[".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"],Z=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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"],U=[".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"],GA=new e.Struct({reserved:new e.Reserved(e.uint16),reqFeatureIndex:e.uint16,featureCount:e.uint16,featureIndexes:new e.Array(e.uint16,"featureCount")}),At=new e.Struct({tag:new e.String(4),langSys:new e.Pointer(e.uint16,GA,{type:"parent"})}),O=new e.Struct({defaultLangSys:new e.Pointer(e.uint16,GA),count:e.uint16,langSysRecords:new e.Array(At,"count")}),qA=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,O,{type:"parent"})}),nt=new e.Array(qA,e.uint16),MA=new e.Struct({featureParams:e.uint16,lookupCount:e.uint16,lookupListIndexes:new e.Array(e.uint16,"lookupCount")}),jA=new e.Struct({tag:new e.String(4),feature:new e.Pointer(e.uint16,MA,{type:"parent"})}),ot=new e.Array(jA,e.uint16),Tt=new e.Struct({markAttachmentType:e.uint8,flags:new e.Bitfield(e.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function yt(tA){var G=new e.Struct({lookupType:e.uint16,flags:Tt,subTableCount:e.uint16,subTables:new e.Array(new e.Pointer(e.uint16,tA),"subTableCount"),markFilteringSet:new e.Optional(e.uint16,function(K){return K.flags.flags.useMarkFilteringSet})});return new e.LazyArray(new e.Pointer(e.uint16,G),e.uint16)}var Ut=new e.Struct({start:e.uint16,end:e.uint16,startCoverageIndex:e.uint16}),Lt=new e.VersionedStruct(e.uint16,{1:{glyphCount:e.uint16,glyphs:new e.Array(e.uint16,"glyphCount")},2:{rangeCount:e.uint16,rangeRecords:new e.Array(Ut,"rangeCount")}}),sn=new e.Struct({start:e.uint16,end:e.uint16,class:e.uint16}),$t=new e.VersionedStruct(e.uint16,{1:{startGlyph:e.uint16,glyphCount:e.uint16,classValueArray:new e.Array(e.uint16,"glyphCount")},2:{classRangeCount:e.uint16,classRangeRecord:new e.Array(sn,"classRangeCount")}}),Kt=new e.Struct({a:e.uint16,b:e.uint16,deltaFormat:e.uint16}),Me=new e.Struct({sequenceIndex:e.uint16,lookupListIndex:e.uint16}),ze=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(Me,"lookupCount")}),Re=new e.Array(new e.Pointer(e.uint16,ze),e.uint16),yn=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,classes:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(Me,"lookupCount")}),Mn=new e.Array(new e.Pointer(e.uint16,yn),e.uint16),ee=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),ruleSetCount:e.uint16,ruleSets:new e.Array(new e.Pointer(e.uint16,Re),"ruleSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),classDef:new e.Pointer(e.uint16,$t),classSetCnt:e.uint16,classSet:new e.Array(new e.Pointer(e.uint16,Mn),"classSetCnt")},3:{glyphCount:e.uint16,lookupCount:e.uint16,coverages:new e.Array(new e.Pointer(e.uint16,Lt),"glyphCount"),lookupRecords:new e.Array(Me,"lookupCount")}}),An=new e.Struct({backtrackGlyphCount:e.uint16,backtrack:new e.Array(e.uint16,"backtrackGlyphCount"),inputGlyphCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.inputGlyphCount-1}),lookaheadGlyphCount:e.uint16,lookahead:new e.Array(e.uint16,"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(Me,"lookupCount")}),Te=new e.Array(new e.Pointer(e.uint16,An),e.uint16),Fe=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),chainCount:e.uint16,chainRuleSets:new e.Array(new e.Pointer(e.uint16,Te),"chainCount")},2:{coverage:new e.Pointer(e.uint16,Lt),backtrackClassDef:new e.Pointer(e.uint16,$t),inputClassDef:new e.Pointer(e.uint16,$t),lookaheadClassDef:new e.Pointer(e.uint16,$t),chainCount:e.uint16,chainClassSet:new e.Array(new e.Pointer(e.uint16,Te),"chainCount")},3:{backtrackGlyphCount:e.uint16,backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),inputGlyphCount:e.uint16,inputCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"inputGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(Me,"lookupCount")}}),Qe=new e.Fixed(16,"BE",14),In=new e.Struct({startCoord:Qe,peakCoord:Qe,endCoord:Qe}),wn=new e.Struct({axisCount:e.uint16,regionCount:e.uint16,variationRegions:new e.Array(new e.Array(In,"axisCount"),"regionCount")}),kt=new e.Struct({shortDeltas:new e.Array(e.int16,function(tA){return tA.parent.shortDeltaCount}),regionDeltas:new e.Array(e.int8,function(tA){return tA.parent.regionIndexCount-tA.parent.shortDeltaCount}),deltas:function(G){return G.shortDeltas.concat(G.regionDeltas)}}),zt=new e.Struct({itemCount:e.uint16,shortDeltaCount:e.uint16,regionIndexCount:e.uint16,regionIndexes:new e.Array(e.uint16,"regionIndexCount"),deltaSets:new e.Array(kt,"itemCount")}),Wt=new e.Struct({format:e.uint16,variationRegionList:new e.Pointer(e.uint32,wn),variationDataCount:e.uint16,itemVariationData:new e.Array(new e.Pointer(e.uint32,zt),"variationDataCount")}),ae=new e.VersionedStruct(e.uint16,{1:(a={axisIndex:e.uint16},a.axisIndex=e.uint16,a.filterRangeMinValue=Qe,a.filterRangeMaxValue=Qe,a)}),mn=new e.Struct({conditionCount:e.uint16,conditionTable:new e.Array(new e.Pointer(e.uint32,ae),"conditionCount")}),dn=new e.Struct({featureIndex:e.uint16,alternateFeatureTable:new e.Pointer(e.uint32,MA,{type:"parent"})}),Tn=new e.Struct({version:e.fixed32,substitutionCount:e.uint16,substitutions:new e.Array(dn,"substitutionCount")}),Wn=new e.Struct({conditionSet:new e.Pointer(e.uint32,mn,{type:"parent"}),featureTableSubstitution:new e.Pointer(e.uint32,Tn,{type:"parent"})}),ti=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,featureVariationRecordCount:e.uint32,featureVariationRecords:new e.Array(Wn,"featureVariationRecordCount")}),xn=function(){function tA(K,M){this.predefinedOps=K,this.type=M}var G=tA.prototype;return G.decode=function(M,N,P){return this.predefinedOps[P[0]]?this.predefinedOps[P[0]]:this.type.decode(M,N,P)},G.size=function(M,N){return this.type.size(M,N)},G.encode=function(M,N,P){var nA=this.predefinedOps.indexOf(N);return-1!==nA?nA:this.type.encode(M,N,P)},tA}(),ZA=function(tA){function G(){return tA.call(this,"UInt8")||this}return w(G,tA),G.prototype.decode=function(N){return 127&e.uint8.decode(N)},G}(e.Number),SA=new e.Struct({first:e.uint16,nLeft:e.uint8}),it=new e.Struct({first:e.uint16,nLeft:e.uint16}),TA=new xn([Z,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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 ht(new e.VersionedStruct(new ZA,{0:{nCodes:e.uint8,codes:new e.Array(e.uint8,"nCodes")},1:{nRanges:e.uint8,ranges:new e.Array(SA,"nRanges")}}),{lazy:!0})),UA=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.prototype.decode=function(N,P){for(var nA=h.resolveLength(this.length,N,P),oA=0,lA=[];oA=2?null:M=2||this.isCIDFont)return null;var N=this.topDict.charset;if(Array.isArray(N))return N[M];if(0===M)return".notdef";switch(M-=1,N.version){case 0:return this.string(N.glyphs[M]);case 1:case 2:for(var P=0;P>1;if(M=N[oA+1].first))return N[oA].fd;P=oA+1}}default:throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version))}},G.privateDictForGlyph=function(M){if(this.topDict.FDSelect){var N=this.fdForGlyph(M);return this.topDict.FDArray[N]?this.topDict.FDArray[N].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private},o(tA,[{key:"postscriptName",get:function(){return this.version<2?this.nameIndex[0]:null}},{key:"fullName",get:function(){return this.string(this.topDict.FullName)}},{key:"familyName",get:function(){return this.string(this.topDict.FamilyName)}}]),tA}(),Zt=new e.Struct({glyphIndex:e.uint16,vertOriginY:e.int16}),Ht=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,defaultVertOriginY:e.int16,numVertOriginYMetrics:e.uint16,metrics:new e.Array(Zt,"numVertOriginYMetrics")}),ie=new e.Struct({height:e.uint8,width:e.uint8,horiBearingX:e.int8,horiBearingY:e.int8,horiAdvance:e.uint8,vertBearingX:e.int8,vertBearingY:e.int8,vertAdvance:e.uint8}),Jt=new e.Struct({height:e.uint8,width:e.uint8,bearingX:e.int8,bearingY:e.int8,advance:e.uint8}),ue=new e.Struct({glyph:e.uint16,xOffset:e.int8,yOffset:e.int8}),se=function(){},ve=function(){},ge=(new e.VersionedStruct("version",{1:{metrics:Jt,data:se},2:{metrics:Jt,data:ve},5:{data:ve},6:{metrics:ie,data:se},7:{metrics:ie,data:ve},8:{metrics:Jt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},9:{metrics:ie,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},17:{metrics:Jt,dataLen:e.uint32,data:new e.Buffer("dataLen")},18:{metrics:ie,dataLen:e.uint32,data:new e.Buffer("dataLen")},19:{dataLen:e.uint32,data:new e.Buffer("dataLen")}}),new e.Struct({ascender:e.int8,descender:e.int8,widthMax:e.uint8,caretSlopeNumerator:e.int8,caretSlopeDenominator:e.int8,caretOffset:e.int8,minOriginSB:e.int8,minAdvanceSB:e.int8,maxBeforeBL:e.int8,minAfterBL:e.int8,pad:new e.Reserved(e.int8,2)})),xe=new e.Struct({glyphCode:e.uint16,offset:e.uint16}),Ne=new e.VersionedStruct(e.uint16,{header:{imageFormat:e.uint16,imageDataOffset:e.uint32},1:{offsetArray:new e.Array(e.uint32,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},2:{imageSize:e.uint32,bigMetrics:ie},3:{offsetArray:new e.Array(e.uint16,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},4:{numGlyphs:e.uint32,glyphArray:new e.Array(xe,function(tA){return tA.numGlyphs+1})},5:{imageSize:e.uint32,bigMetrics:ie,numGlyphs:e.uint32,glyphCodeArray:new e.Array(e.uint16,"numGlyphs")}}),qe=new e.Struct({firstGlyphIndex:e.uint16,lastGlyphIndex:e.uint16,subtable:new e.Pointer(e.uint32,Ne)}),Dn=new e.Struct({indexSubTableArray:new e.Pointer(e.uint32,new e.Array(qe,1),{type:"parent"}),indexTablesSize:e.uint32,numberOfIndexSubTables:e.uint32,colorRef:e.uint32,hori:ge,vert:ge,startGlyphIndex:e.uint16,endGlyphIndex:e.uint16,ppemX:e.uint8,ppemY:e.uint8,bitDepth:e.uint8,flags:new e.Bitfield(e.uint8,["horizontal","vertical"])}),tn=new e.Struct({version:e.uint32,numSizes:e.uint32,sizes:new e.Array(Dn,"numSizes")}),Qn=new e.Struct({ppem:e.uint16,resolution:e.uint16,imageOffsets:new e.Array(new e.Pointer(e.uint32,"void"),function(tA){return tA.parent.parent.maxp.numGlyphs+1})}),Yn=new e.Struct({version:e.uint16,flags:new e.Bitfield(e.uint16,["renderOutlines"]),numImgTables:e.uint32,imageTables:new e.Array(new e.Pointer(e.uint32,Qn),"numImgTables")}),en=new e.Struct({gid:e.uint16,paletteIndex:e.uint16}),gn=new e.Struct({gid:e.uint16,firstLayerIndex:e.uint16,numLayers:e.uint16}),on=new e.Struct({version:e.uint16,numBaseGlyphRecords:e.uint16,baseGlyphRecord:new e.Pointer(e.uint32,new e.Array(gn,"numBaseGlyphRecords")),layerRecords:new e.Pointer(e.uint32,new e.Array(en,"numLayerRecords"),{lazy:!0}),numLayerRecords:e.uint16}),Mi=new e.Struct({blue:e.uint8,green:e.uint8,red:e.uint8,alpha:e.uint8}),Ii=new e.VersionedStruct(e.uint16,{header:{numPaletteEntries:e.uint16,numPalettes:e.uint16,numColorRecords:e.uint16,colorRecords:new e.Pointer(e.uint32,new e.Array(Mi,"numColorRecords")),colorRecordIndices:new e.Array(e.uint16,"numPalettes")},0:{},1:{offsetPaletteTypeArray:new e.Pointer(e.uint32,new e.Array(e.uint32,"numPalettes")),offsetPaletteLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPalettes")),offsetPaletteEntryLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPaletteEntries"))}}),Kn=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{coordinate:e.int16,referenceGlyph:e.uint16,baseCoordPoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Kt)}}),Di=new e.Struct({defaultIndex:e.uint16,baseCoordCount:e.uint16,baseCoords:new e.Array(new e.Pointer(e.uint16,Kn),"baseCoordCount")}),vi=new e.Struct({tag:new e.String(4),minCoord:new e.Pointer(e.uint16,Kn,{type:"parent"}),maxCoord:new e.Pointer(e.uint16,Kn,{type:"parent"})}),jn=new e.Struct({minCoord:new e.Pointer(e.uint16,Kn),maxCoord:new e.Pointer(e.uint16,Kn),featMinMaxCount:e.uint16,featMinMaxRecords:new e.Array(vi,"featMinMaxCount")}),Ci=new e.Struct({tag:new e.String(4),minMax:new e.Pointer(e.uint16,jn,{type:"parent"})}),ei=new e.Struct({baseValues:new e.Pointer(e.uint16,Di),defaultMinMax:new e.Pointer(e.uint16,jn),baseLangSysCount:e.uint16,baseLangSysRecords:new e.Array(Ci,"baseLangSysCount")}),Sn=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,ei,{type:"parent"})}),sa=new e.Array(Sn,e.uint16),dA=new e.Array(new e.String(4),e.uint16),H=new e.Struct({baseTagList:new e.Pointer(e.uint16,dA),baseScriptList:new e.Pointer(e.uint16,sa)}),T=new e.VersionedStruct(e.uint32,{header:{horizAxis:new e.Pointer(e.uint16,H),vertAxis:new e.Pointer(e.uint16,H)},65536:{},65537:{itemVariationStore:new e.Pointer(e.uint32,Wt)}}),X=new e.Array(e.uint16,e.uint16),V=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,attachPoints:new e.Array(new e.Pointer(e.uint16,X),"glyphCount")}),uA=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{caretValuePoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Kt)}}),mA=new e.Array(new e.Pointer(e.uint16,uA),e.uint16),tt=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),ligGlyphCount:e.uint16,ligGlyphs:new e.Array(new e.Pointer(e.uint16,mA),"ligGlyphCount")}),rt=new e.Struct({markSetTableFormat:e.uint16,markSetCount:e.uint16,coverage:new e.Array(new e.Pointer(e.uint32,Lt),"markSetCount")}),ut=new e.VersionedStruct(e.uint32,{header:{glyphClassDef:new e.Pointer(e.uint16,$t),attachList:new e.Pointer(e.uint16,V),ligCaretList:new e.Pointer(e.uint16,tt),markAttachClassDef:new e.Pointer(e.uint16,$t)},65536:{},65538:{markGlyphSetsDef:new e.Pointer(e.uint16,rt)},65539:{markGlyphSetsDef:new e.Pointer(e.uint16,rt),itemVariationStore:new e.Pointer(e.uint32,Wt)}}),Ct=new e.Bitfield(e.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Mt={xPlacement:e.int16,yPlacement:e.int16,xAdvance:e.int16,yAdvance:e.int16,xPlaDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),yPlaDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),xAdvDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),yAdvDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}})},Dt=function(){function tA(K){void 0===K&&(K="valueFormat"),this.key=K}var G=tA.prototype;return G.buildStruct=function(M){for(var N=M;!N[this.key]&&N.parent;)N=N.parent;if(N[this.key]){var P={rel:function(){return N._startOffset}},nA=N[this.key];for(var oA in nA)nA[oA]&&(P[oA]=Mt[oA]);return new e.Struct(P)}},G.size=function(M,N){return this.buildStruct(N).size(M,N)},G.decode=function(M,N){var P=this.buildStruct(N).decode(M,N);return delete P.rel,P},tA}(),Ft=new e.Struct({secondGlyph:e.uint16,value1:new Dt("valueFormat1"),value2:new Dt("valueFormat2")}),Ot=new e.Array(Ft,e.uint16),Vt=new e.Struct({value1:new Dt("valueFormat1"),value2:new Dt("valueFormat2")}),Ae=new e.VersionedStruct(e.uint16,{1:{xCoordinate:e.int16,yCoordinate:e.int16},2:{xCoordinate:e.int16,yCoordinate:e.int16,anchorPoint:e.uint16},3:{xCoordinate:e.int16,yCoordinate:e.int16,xDeviceTable:new e.Pointer(e.uint16,Kt),yDeviceTable:new e.Pointer(e.uint16,Kt)}}),Be=new e.Struct({entryAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"}),exitAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"})}),Ye=new e.Struct({class:e.uint16,markAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"})}),Ze=new e.Array(Ye,e.uint16),me=new e.Array(new e.Pointer(e.uint16,Ae),function(tA){return tA.parent.classCount}),Ve=new e.Array(me,e.uint16),hn=new e.Array(new e.Pointer(e.uint16,Ae),function(tA){return tA.parent.parent.classCount}),We=new e.Array(hn,e.uint16),En=new e.Array(new e.Pointer(e.uint16,We),e.uint16),vn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Ct,value:new Dt},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Ct,valueCount:e.uint16,values:new e.LazyArray(new Dt,"valueCount")}}),2:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Ct,valueFormat2:Ct,pairSetCount:e.uint16,pairSets:new e.LazyArray(new e.Pointer(e.uint16,Ot),"pairSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Ct,valueFormat2:Ct,classDef1:new e.Pointer(e.uint16,$t),classDef2:new e.Pointer(e.uint16,$t),class1Count:e.uint16,class2Count:e.uint16,classRecords:new e.LazyArray(new e.LazyArray(Vt,"class2Count"),"class1Count")}}),3:{format:e.uint16,coverage:new e.Pointer(e.uint16,Lt),entryExitCount:e.uint16,entryExitRecords:new e.Array(Be,"entryExitCount")},4:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),baseCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ze),baseArray:new e.Pointer(e.uint16,Ve)},5:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),ligatureCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ze),ligatureArray:new e.Pointer(e.uint16,En)},6:{format:e.uint16,mark1Coverage:new e.Pointer(e.uint16,Lt),mark2Coverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,mark1Array:new e.Pointer(e.uint16,Ze),mark2Array:new e.Pointer(e.uint16,Ve)},7:ee,8:Fe,9:{posFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,vn)}});vn.versions[9].extension.type=vn;var Xn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,nt),featureList:new e.Pointer(e.uint16,ot),lookupList:new e.Pointer(e.uint16,new yt(vn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ti)}}),On=new e.Array(e.uint16,e.uint16),bi=On,Jn=new e.Struct({glyph:e.uint16,compCount:e.uint16,components:new e.Array(e.uint16,function(tA){return tA.compCount-1})}),ni=new e.Array(new e.Pointer(e.uint16,Jn),e.uint16),Zn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),deltaGlyphID:e.int16},2:{coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,substitute:new e.LazyArray(e.uint16,"glyphCount")}}),2:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,sequences:new e.LazyArray(new e.Pointer(e.uint16,On),"count")},3:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,alternateSet:new e.LazyArray(new e.Pointer(e.uint16,bi),"count")},4:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,ligatureSets:new e.LazyArray(new e.Pointer(e.uint16,ni),"count")},5:ee,6:Fe,7:{substFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,Zn)},8:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),glyphCount:e.uint16,substitutes:new e.Array(e.uint16,"glyphCount")}});Zn.versions[7].extension.type=Zn;var qn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,nt),featureList:new e.Pointer(e.uint16,ot),lookupList:new e.Pointer(e.uint16,new yt(Zn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ti)}}),Hn=new e.Array(e.uint16,e.uint16),Ri=new e.Struct({shrinkageEnableGSUB:new e.Pointer(e.uint16,Hn),shrinkageDisableGSUB:new e.Pointer(e.uint16,Hn),shrinkageEnableGPOS:new e.Pointer(e.uint16,Hn),shrinkageDisableGPOS:new e.Pointer(e.uint16,Hn),shrinkageJstfMax:new e.Pointer(e.uint16,new yt(vn)),extensionEnableGSUB:new e.Pointer(e.uint16,Hn),extensionDisableGSUB:new e.Pointer(e.uint16,Hn),extensionEnableGPOS:new e.Pointer(e.uint16,Hn),extensionDisableGPOS:new e.Pointer(e.uint16,Hn),extensionJstfMax:new e.Pointer(e.uint16,new yt(vn))}),Ti=new e.Array(new e.Pointer(e.uint16,Ri),e.uint16),Ui=new e.Struct({tag:new e.String(4),jstfLangSys:new e.Pointer(e.uint16,Ti)}),Fi=new e.Struct({extenderGlyphs:new e.Pointer(e.uint16,new e.Array(e.uint16,e.uint16)),defaultLangSys:new e.Pointer(e.uint16,Ti),langSysCount:e.uint16,langSysRecords:new e.Array(Ui,"langSysCount")}),Li=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,Fi,{type:"parent"})}),Pi=new e.Struct({version:e.uint32,scriptCount:e.uint16,scriptList:new e.Array(Li,"scriptCount")}),zi=new e.Struct({entry:new(function(){function tA(K){this._size=K}var G=tA.prototype;return G.decode=function(M,N){switch(this.size(0,N)){case 1:return M.readUInt8();case 2:return M.readUInt16BE();case 3:return M.readUInt24BE();case 4:return M.readUInt32BE()}},G.size=function(M,N){return h.resolveLength(this._size,null,N)},tA}())(function(tA){return 1+((48&tA.parent.entryFormat)>>4)}),outerIndex:function(G){return G.entry>>1+(15&G.parent.entryFormat)},innerIndex:function(G){return G.entry&(1<<1+(15&G.parent.entryFormat))-1}}),Vn=new e.Struct({entryFormat:e.uint16,mapCount:e.uint16,mapData:new e.Array(zi,"mapCount")}),Gi=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,itemVariationStore:new e.Pointer(e.uint32,Wt),advanceWidthMapping:new e.Pointer(e.uint32,Vn),LSBMapping:new e.Pointer(e.uint32,Vn),RSBMapping:new e.Pointer(e.uint32,Vn)}),ii=new e.Struct({format:e.uint32,length:e.uint32,offset:e.uint32}),Rr=new e.Struct({reserved:new e.Reserved(e.uint16,2),cbSignature:e.uint32,signature:new e.Buffer("cbSignature")}),Tr=new e.Struct({ulVersion:e.uint32,usNumSigs:e.uint16,usFlag:e.uint16,signatures:new e.Array(ii,"usNumSigs"),signatureBlocks:new e.Array(Rr,"usNumSigs")}),Bs=new e.Struct({rangeMaxPPEM:e.uint16,rangeGaspBehavior:new e.Bitfield(e.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])}),us=new e.Struct({version:e.uint16,numRanges:e.uint16,gaspRanges:new e.Array(Bs,"numRanges")}),fs=new e.Struct({pixelSize:e.uint8,maximumWidth:e.uint8,widths:new e.Array(e.uint8,function(tA){return tA.parent.parent.maxp.numGlyphs})}),hs=new e.Struct({version:e.uint16,numRecords:e.int16,sizeDeviceRecord:e.int32,records:new e.Array(fs,"numRecords")}),Es=new e.Struct({left:e.uint16,right:e.uint16,value:e.int16}),oa=new e.Struct({firstGlyph:e.uint16,nGlyphs:e.uint16,offsets:new e.Array(e.uint16,"nGlyphs"),max:function(G){return G.offsets.length&&Math.max.apply(Math,G.offsets)}}),Cs=new e.Struct({off:function(G){return G._startOffset-G.parent.parent._startOffset},len:function(G){return G.parent.rowWidth/2*((G.parent.leftTable.max-G.off)/G.parent.rowWidth+1)},values:new e.LazyArray(e.int16,"len")}),la=new e.VersionedStruct("format",{0:{nPairs:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,pairs:new e.Array(Es,"nPairs")},2:{rowWidth:e.uint16,leftTable:new e.Pointer(e.uint16,oa,{type:"parent"}),rightTable:new e.Pointer(e.uint16,oa,{type:"parent"}),array:new e.Pointer(e.uint16,Cs,{type:"parent"})},3:{glyphCount:e.uint16,kernValueCount:e.uint8,leftClassCount:e.uint8,rightClassCount:e.uint8,flags:e.uint8,kernValue:new e.Array(e.int16,"kernValueCount"),leftClass:new e.Array(e.uint8,"glyphCount"),rightClass:new e.Array(e.uint8,"glyphCount"),kernIndex:new e.Array(e.uint8,function(tA){return tA.leftClassCount*tA.rightClassCount})}}),ca=new e.VersionedStruct("version",{0:{subVersion:e.uint16,length:e.uint16,format:e.uint8,coverage:new e.Bitfield(e.uint8,["horizontal","minimum","crossStream","override"]),subtable:la,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})},1:{length:e.uint32,coverage:new e.Bitfield(e.uint8,[null,null,null,null,null,"variation","crossStream","vertical"]),format:e.uint8,tupleIndex:e.uint16,subtable:la,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}}),ws=new e.VersionedStruct(e.uint16,{0:{nTables:e.uint16,tables:new e.Array(ca,"nTables")},1:{reserved:new e.Reserved(e.uint16),nTables:e.uint32,tables:new e.Array(ca,"nTables")}}),ds=new e.Struct({version:e.uint16,numGlyphs:e.uint16,yPels:new e.Array(e.uint8,"numGlyphs")}),Qs=new e.Struct({version:e.uint16,fontNumber:e.uint32,pitch:e.uint16,xHeight:e.uint16,style:e.uint16,typeFamily:e.uint16,capHeight:e.uint16,symbolSet:e.uint16,typeface:new e.String(16),characterComplement:new e.String(8),fileName:new e.String(6),strokeWeight:new e.String(1),widthType:new e.String(1),serifStyle:e.uint8,reserved:new e.Reserved(e.uint8)}),ga=new e.Struct({bCharSet:e.uint8,xRatio:e.uint8,yStartRatio:e.uint8,yEndRatio:e.uint8}),Ba=new e.Struct({yPelHeight:e.uint16,yMax:e.int16,yMin:e.int16}),ms=new e.Struct({recs:e.uint16,startsz:e.uint8,endsz:e.uint8,entries:new e.Array(Ba,"recs")}),ps=new e.Struct({version:e.uint16,numRecs:e.uint16,numRatios:e.uint16,ratioRanges:new e.Array(ga,"numRatios"),offsets:new e.Array(e.uint16,"numRatios"),groups:new e.Array(ms,"numRecs")}),Ms=new e.Struct({version:e.uint16,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceHeightMax:e.int16,minTopSideBearing:e.int16,minBottomSideBearing:e.int16,yMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),ua=new e.Struct({advance:e.uint16,bearing:e.int16}),Is=new e.Struct({metrics:new e.LazyArray(ua,function(tA){return tA.parent.vhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.vhea.numberOfMetrics})}),fa=new e.Fixed(16,"BE",14),Ds=new e.Struct({fromCoord:fa,toCoord:fa}),vs=new e.Struct({pairCount:e.uint16,correspondence:new e.Array(Ds,"pairCount")}),Fs=new e.Struct({version:e.fixed32,axisCount:e.uint32,segment:new e.Array(vs,"axisCount")}),ys=function(){function tA(K,M,N){this.type=K,this.stream=M,this.parent=N,this.base=this.stream.pos,this._items=[]}var G=tA.prototype;return G.getItem=function(M){if(null==this._items[M]){var N=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.parent)*M,this._items[M]=this.type.decode(this.stream,this.parent),this.stream.pos=N}return this._items[M]},G.inspect=function(){return"[UnboundedArray ".concat(this.type.constructor.name,"]")},tA}(),_n=function(tA){function G(M){return tA.call(this,M,0)||this}return w(G,tA),G.prototype.decode=function(N,P){return new ys(this.type,N,P)},G}(e.Array),gi=function(G){void 0===G&&(G=e.uint16),G=new(function(){function oA(sA){this.type=sA}var lA=oA.prototype;return lA.decode=function(bA,KA){return this.type.decode(bA,KA=KA.parent.parent)},lA.size=function(bA,KA){return this.type.size(bA,KA=KA.parent.parent)},lA.encode=function(bA,KA,lt){return this.type.encode(bA,KA,lt=lt.parent.parent)},oA}())(G);var M=new e.Struct({unitSize:e.uint16,nUnits:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16}),N=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,value:G}),P=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,values:new e.Pointer(e.uint16,new e.Array(G,function(oA){return oA.lastGlyph-oA.firstGlyph+1}),{type:"parent"})}),nA=new e.Struct({glyph:e.uint16,value:G});return new e.VersionedStruct(e.uint16,{0:{values:new _n(G)},2:{binarySearchHeader:M,segments:new e.Array(N,function(oA){return oA.binarySearchHeader.nUnits})},4:{binarySearchHeader:M,segments:new e.Array(P,function(oA){return oA.binarySearchHeader.nUnits})},6:{binarySearchHeader:M,segments:new e.Array(nA,function(oA){return oA.binarySearchHeader.nUnits})},8:{firstGlyph:e.uint16,count:e.uint16,values:new e.Array(G,"count")}})};function Hi(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var K=Object.assign({newState:e.uint16,flags:e.uint16},tA),M=new e.Struct(K),N=new _n(new e.Array(e.uint16,function(nA){return nA.nClasses}));return new e.Struct({nClasses:e.uint32,classTable:new e.Pointer(e.uint32,new gi(G)),stateArray:new e.Pointer(e.uint32,N),entryTable:new e.Pointer(e.uint32,new _n(M))})}var Ys=new e.VersionedStruct("format",{0:{deltas:new e.Array(e.int16,32)},1:{deltas:new e.Array(e.int16,32),mappingData:new gi(e.uint16)},2:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32)},3:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32),mappingData:new gi(e.uint16)}}),ha=new e.Struct({version:e.fixed32,format:e.uint16,defaultBaseline:e.uint16,subtable:Ys}),ri=new e.Struct({setting:e.uint16,nameIndex:e.int16,name:function(G){return G.parent.parent.parent.name.records.fontFeatures[G.nameIndex]}}),Ss=new e.Struct({feature:e.uint16,nSettings:e.uint16,settingTable:new e.Pointer(e.uint32,new e.Array(ri,"nSettings"),{type:"parent"}),featureFlags:new e.Bitfield(e.uint8,[null,null,null,null,null,null,"hasDefault","exclusive"]),defaultSetting:e.uint8,nameIndex:e.int16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameIndex]}}),Ns=new e.Struct({version:e.fixed32,featureNameCount:e.uint16,reserved1:new e.Reserved(e.uint16),reserved2:new e.Reserved(e.uint32),featureNames:new e.Array(Ss,"featureNameCount")}),bs=new e.Struct({axisTag:new e.String(4),minValue:e.fixed32,defaultValue:e.fixed32,maxValue:e.fixed32,flags:e.uint16,nameID:e.uint16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameID]}}),Rs=new e.Struct({nameID:e.uint16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameID]},flags:e.uint16,coord:new e.Array(e.fixed32,function(tA){return tA.parent.axisCount}),postscriptNameID:new e.Optional(e.uint16,function(tA){return tA.parent.instanceSize-tA._currentOffset>0})}),Ts=new e.Struct({version:e.fixed32,offsetToData:e.uint16,countSizePairs:e.uint16,axisCount:e.uint16,axisSize:e.uint16,instanceCount:e.uint16,instanceSize:e.uint16,axis:new e.Array(bs,"axisCount"),instance:new e.Array(Rs,"instanceCount")}),Us=new e.Fixed(16,"BE",14),Ls=function(){function tA(){}return tA.decode=function(K,M){return M.flags?K.readUInt32BE():2*K.readUInt16BE()},tA}(),Ps=new e.Struct({version:e.uint16,reserved:new e.Reserved(e.uint16),axisCount:e.uint16,globalCoordCount:e.uint16,globalCoords:new e.Pointer(e.uint32,new e.Array(new e.Array(Us,"axisCount"),"globalCoordCount")),glyphCount:e.uint16,flags:e.uint16,offsetToData:e.uint32,offsets:new e.Array(new e.Pointer(Ls,"void",{relativeTo:function(G){return G.offsetToData},allowNull:!1}),function(tA){return tA.glyphCount+1})}),zs=new e.Struct({length:e.uint16,coverage:e.uint16,subFeatureFlags:e.uint32,stateTable:new function xs(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var K=new e.Struct({version:function(){return 8},firstGlyph:e.uint16,values:new e.Array(e.uint8,e.uint16)}),M=Object.assign({newStateOffset:e.uint16,newState:function(lA){return(lA.newStateOffset-(lA.parent.stateArray.base-lA.parent._startOffset))/lA.parent.nClasses},flags:e.uint16},tA),N=new e.Struct(M),P=new _n(new e.Array(e.uint8,function(oA){return oA.nClasses}));return new e.Struct({nClasses:e.uint16,classTable:new e.Pointer(e.uint16,K),stateArray:new e.Pointer(e.uint16,P),entryTable:new e.Pointer(e.uint16,new _n(N))})}}),Gs=new e.Struct({justClass:e.uint32,beforeGrowLimit:e.fixed32,beforeShrinkLimit:e.fixed32,afterGrowLimit:e.fixed32,afterShrinkLimit:e.fixed32,growFlags:e.uint16,shrinkFlags:e.uint16}),Hs=new e.Array(Gs,e.uint32),ks=new e.VersionedStruct("actionType",{0:{lowerLimit:e.fixed32,upperLimit:e.fixed32,order:e.uint16,glyphs:new e.Array(e.uint16,e.uint16)},1:{addGlyph:e.uint16},2:{substThreshold:e.fixed32,addGlyph:e.uint16,substGlyph:e.uint16},3:{},4:{variationAxis:e.uint32,minimumLimit:e.fixed32,noStretchValue:e.fixed32,maximumLimit:e.fixed32},5:{flags:e.uint16,glyph:e.uint16}}),js=new e.Struct({actionClass:e.uint16,actionType:e.uint16,actionLength:e.uint32,actionData:ks,padding:new e.Reserved(e.uint8,function(tA){return tA.actionLength-tA._currentOffset})}),Os=new e.Array(js,e.uint32),Js=new e.Struct({lookupTable:new gi(new e.Pointer(e.uint16,Os))}),Ea=new e.Struct({classTable:new e.Pointer(e.uint16,zs,{type:"parent"}),wdcOffset:e.uint16,postCompensationTable:new e.Pointer(e.uint16,Js,{type:"parent"}),widthDeltaClusters:new gi(new e.Pointer(e.uint16,Hs,{type:"parent",relativeTo:function(G){return G.wdcOffset}}))}),Vs=new e.Struct({version:e.uint32,format:e.uint16,horizontal:new e.Pointer(e.uint16,Ea),vertical:new e.Pointer(e.uint16,Ea)}),Ws={action:e.uint16},Ks={markIndex:e.uint16,currentIndex:e.uint16},Xs={currentInsertIndex:e.uint16,markedInsertIndex:e.uint16},Zs=new e.Struct({items:new _n(new e.Pointer(e.uint32,new gi))}),qs=new e.VersionedStruct("type",{0:{stateTable:new Hi},1:{stateTable:new Hi(Ks),substitutionTable:new e.Pointer(e.uint32,Zs)},2:{stateTable:new Hi(Ws),ligatureActions:new e.Pointer(e.uint32,new _n(e.uint32)),components:new e.Pointer(e.uint32,new _n(e.uint16)),ligatureList:new e.Pointer(e.uint32,new _n(e.uint16))},4:{lookupTable:new gi},5:{stateTable:new Hi(Xs),insertionActions:new e.Pointer(e.uint32,new _n(e.uint16))}}),Ca=new e.Struct({length:e.uint32,coverage:e.uint24,type:e.uint8,subFeatureFlags:e.uint32,table:qs,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}),_s=new e.Struct({featureType:e.uint16,featureSetting:e.uint16,enableFlags:e.uint32,disableFlags:e.uint32}),$s=new e.Struct({defaultFlags:e.uint32,chainLength:e.uint32,nFeatureEntries:e.uint32,nSubtables:e.uint32,features:new e.Array(_s,"nFeatureEntries"),subtables:new e.Array(Ca,"nSubtables")}),Ao=new e.Struct({version:e.uint16,unused:new e.Reserved(e.uint16),nChains:e.uint32,chains:new e.Array($s,"nChains")}),to=new e.Struct({left:e.int16,top:e.int16,right:e.int16,bottom:e.int16}),eo=new e.Struct({version:e.fixed32,format:e.uint16,lookupTable:new gi(to)}),oe={};oe.cmap=J,oe.head=BA,oe.hhea=aA,oe.hmtx=EA,oe.maxp=xA,oe.name=yA,oe["OS/2"]=CA,oe.post=NA,oe.fpgm=pA,oe.loca=JA,oe.prep=ft,oe["cvt "]=zA,oe.glyf=wt,oe["CFF "]=Rt,oe.CFF2=Rt,oe.VORG=Ht,oe.EBLC=tn,oe.CBLC=oe.EBLC,oe.sbix=Yn,oe.COLR=on,oe.CPAL=Ii,oe.BASE=T,oe.GDEF=ut,oe.GPOS=Xn,oe.GSUB=qn,oe.JSTF=Pi,oe.HVAR=Gi,oe.DSIG=Tr,oe.gasp=us,oe.hdmx=hs,oe.kern=ws,oe.LTSH=ds,oe.PCLT=Qs,oe.VDMX=ps,oe.vhea=Ms,oe.vmtx=Is,oe.avar=Fs,oe.bsln=ha,oe.feat=Ns,oe.fvar=Ts,oe.gvar=Ps,oe.just=Vs,oe.morx=Ao,oe.opbd=eo;var Bi,no=new e.Struct({tag:new e.String(4),checkSum:e.uint32,offset:new e.Pointer(e.uint32,"void",{type:"global"}),length:e.uint32}),rr=new e.Struct({tag:new e.String(4),numTables:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,tables:new e.Array(no,"numTables")});function ar(tA,G){for(var K=0,M=tA.length-1;K<=M;){var N=K+M>>1,P=G(tA[N]);if(P<0)M=N-1;else{if(!(P>0))return N;K=N+1}}return-1}function yi(tA,G){for(var K=[];tA>1;if(MlA.endCode.get(KA))){var lt=lA.idRangeOffset.get(KA),$A=void 0;if(0===lt)$A=M+lA.idDelta.get(KA);else{var ct=lt/2+(M-lA.startCode.get(KA))-(lA.segCount-KA);0!==($A=lA.glyphIndexArray.get(ct)||0)&&($A+=lA.idDelta.get(KA))}return 65535&$A}sA=KA+1}}return 0;case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return lA.glyphIndices.get(M-lA.firstCode)||0;case 12:case 13:for(var mt=0,It=lA.nGroups-1;mt<=It;){var Gt=mt+It>>1,_t=lA.groups.get(Gt);if(M<_t.startCharCode)It=Gt-1;else{if(!(M>_t.endCharCode))return 12===lA.version?_t.glyphID+(M-_t.startCharCode):_t.glyphID;mt=Gt+1}}return 0;case 14:throw new Error("TODO: cmap format 14");default:throw new Error("Unknown cmap format ".concat(lA.version))}},G.getVariationSelector=function(M,N){if(!this.uvs)return 0;var P=this.uvs.varSelectors.toArray(),nA=ar(P,function(lA){return N-lA.varSelector}),oA=P[nA];return-1!==nA&&oA.defaultUVS&&(nA=ar(oA.defaultUVS,function(lA){return MlA.startUnicodeValue+lA.additionalCount?1:0})),-1!==nA&&oA.nonDefaultUVS&&-1!==(nA=ar(oA.nonDefaultUVS,function(lA){return M-lA.unicodeValue}))?oA.nonDefaultUVS[nA].glyphID:0},G.getCharacterSet=function(){var M=this.cmap;switch(M.version){case 0:return yi(0,M.codeMap.length);case 4:for(var N=[],P=M.endCode.toArray(),nA=0;nA=qt.glyphID&&M<=qt.glyphID+(qt.endCharCode-qt.startCharCode)&&It.push(qt.startCharCode+(M-qt.glyphID))}return It;case 13:for(var Ce,re=[],ce=r(N.groups.toArray());!(Ce=ce()).done;){var de=Ce.value;M===de.glyphID&&re.push.apply(re,yi(de.startCharCode,de.endCharCode+1))}return re;default:throw new Error("Unknown cmap format ".concat(N.version))}},tA}()).prototype,"getCharacterSet",[$],Object.getOwnPropertyDescriptor(Bi.prototype,"getCharacterSet"),Bi.prototype),F(Bi.prototype,"codePointsForGlyph",[$],Object.getOwnPropertyDescriptor(Bi.prototype,"codePointsForGlyph"),Bi.prototype),Bi),ro=function(){function tA(K){this.kern=K.kern}var G=tA.prototype;return G.process=function(M,N){for(var P=0;P=0&&(sA=bA.pairs[KA].value);break;case 2:var $A=0;N>=bA.rightTable.firstGlyph&&N=bA.leftTable.firstGlyph&&M=bA.glyphCount||N>=bA.glyphCount)return 0;sA=bA.kernValue[bA.kernIndex[bA.leftClass[M]*bA.rightClassCount+bA.rightClass[N]]];break;default:throw new Error("Unsupported kerning sub-table format ".concat(lA.format))}lA.coverage.override?P=sA:P+=sA}}return P},tA}(),ao=function(){function tA(K){this.font=K}var G=tA.prototype;return G.positionGlyphs=function(M,N){for(var P=0,nA=0,oA=0;oA1&&(lA.minX+=(oA.codePoints.length-1)*lA.width/oA.codePoints.length);for(var sA=-N[P].xAdvance,bA=0,KA=this.font.unitsPerEm/16,lt=P+1;lt<=nA;lt++){var $A=M[lt],ct=$A.cbox,mt=N[lt],It=this.getCombiningClass($A.codePoints[0]);if("Not_Reordered"!==It){switch(mt.xOffset=mt.yOffset=0,It){case"Double_Above":case"Double_Below":mt.xOffset+=lA.minX-ct.width/2-ct.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":mt.xOffset+=lA.minX-ct.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":mt.xOffset+=lA.maxX-ct.width-ct.minX;break;default:mt.xOffset+=lA.minX+(lA.width-ct.width)/2-ct.minX}switch(It){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===It||"Attached_Below"===It)&&(lA.minY+=KA),mt.yOffset=-lA.minY-ct.maxY,lA.minY+=ct.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===It||"Attached_Above_Right"===It)&&(lA.maxY+=KA),mt.yOffset=lA.maxY-ct.minY,lA.maxY+=ct.height}mt.xAdvance=mt.yAdvance=0,mt.xOffset+=sA,mt.yOffset+=bA}else sA-=mt.xAdvance,bA-=mt.yAdvance}},G.getCombiningClass=function(M){var N=I.getCombiningClass(M);if(3584==(-256&M))if("Not_Reordered"===N)switch(M){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===M)return"Below_Right";switch(N){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 N},tA}(),xi=function(){function tA(K,M,N,P){void 0===K&&(K=1/0),void 0===M&&(M=1/0),void 0===N&&(N=-1/0),void 0===P&&(P=-1/0),this.minX=K,this.minY=M,this.maxX=N,this.maxY=P}var G=tA.prototype;return G.addPoint=function(M,N){Math.abs(M)!==1/0&&(Mthis.maxX&&(this.maxX=M)),Math.abs(N)!==1/0&&(Nthis.maxY&&(this.maxY=N))},G.copy=function(){return new tA(this.minX,this.minY,this.maxX,this.maxY)},o(tA,[{key:"width",get:function(){return this.maxX-this.minX}},{key:"height",get:function(){return this.maxY-this.minY}}]),tA}(),Yi={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"},Lr={};for(var Pr in Yi){var zr=Yi[Pr];if(Array.isArray(zr))for(var wa,so=r(zr);!(wa=so()).done;)Lr[wa.value]=Pr;else Lr[zr]=Pr}var Bo={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 Gr(tA){return Bo[tA]?"rtl":"ltr"}for(var uo=function(){function tA(G,K,M,N,P){if(this.glyphs=G,this.positions=null,this.script=M,this.language=N||null,this.direction=P||Gr(M),this.features={},Array.isArray(K))for(var oA,nA=r(K);!(oA=nA()).done;)this.features[oA.value]=!0;else"object"==typeof K&&(this.features=K)}return o(tA,[{key:"advanceWidth",get:function(){for(var N,K=0,M=r(this.positions);!(N=M()).done;)K+=N.value.xAdvance;return K}},{key:"advanceHeight",get:function(){for(var N,K=0,M=r(this.positions);!(N=M()).done;)K+=N.value.yAdvance;return K}},{key:"bbox",get:function(){for(var K=new xi,M=0,N=0,P=0;P>1]).firstGlyph)return null;if(MoA.lastGlyph))return 2===this.table.version?oA.value:oA.values[M-oA.firstGlyph];N=nA+1}}return null;case 6:for(var lA=0,sA=this.table.binarySearchHeader.nUnits-1;lA<=sA;){var nA,oA;if(65535===(oA=this.table.segments[nA=lA+sA>>1]).glyph)return null;if(MoA.glyph))return oA.value;lA=nA+1}}return null;case 8:return this.table.values[M-this.table.firstGlyph];default:throw new Error("Unknown lookup table format: ".concat(this.table.version))}},G.glyphsForValue=function(M){var N=[];switch(this.table.version){case 2:case 4:for(var nA,P=r(this.table.segments);!(nA=P()).done;){var oA=nA.value;if(2===this.table.version&&oA.value===M)N.push.apply(N,yi(oA.firstGlyph,oA.lastGlyph+1));else for(var lA=0;lA=-1;){var sA=null,bA=1,KA=!0;oA===M.length||-1===oA?bA=0:65535===(sA=M[oA]).id?bA=2:null==(bA=this.lookupTable.lookup(sA.id))&&(bA=1);var lt=this.stateTable.stateArray.getItem(nA),ct=this.stateTable.entryTable.getItem(lt[bA]);0!==bA&&2!==bA&&(P(sA,ct,oA),KA=!(16384&ct.flags)),nA=ct.newState,KA&&(oA+=lA)}return M},G.traverse=function(M,N,P){if(void 0===N&&(N=0),void 0===P&&(P=new Set),!P.has(N)){P.add(N);for(var nA=this.stateTable,oA=nA.nClasses,sA=nA.entryTable,bA=nA.stateArray.getItem(N),KA=4;KA=0;)65535===M[It].id&&M.splice(It,1),It--;return M},G.processSubtable=function(M,N){if(this.subtable=M,this.glyphs=N,4!==this.subtable.type){this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;var P=this.getStateMachine(M),nA=this.getProcessor();return P.process(this.glyphs,!!(4194304&this.subtable.coverage),nA)}this.processNoncontextualSubstitutions(this.subtable,this.glyphs)},G.getStateMachine=function(M){return new wo(M.table.stateTable)},G.getProcessor=function(){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: ".concat(this.subtable.type))}},G.processIndicRearragement=function(M,N,P){32768&N.flags&&(this.firstGlyph=P),8192&N.flags&&(this.lastGlyph=P),function Yo(tA,G,K,M){switch(G){case 0:return tA;case 1:return bn(tA,[K,1],[M,0]);case 2:return bn(tA,[K,0],[M,1]);case 3:return bn(tA,[K,1],[M,1]);case 4:return bn(tA,[K,2],[M,0]);case 5:return bn(tA,[K,2],[M,0],!0,!1);case 6:return bn(tA,[K,0],[M,2]);case 7:return bn(tA,[K,0],[M,2],!1,!0);case 8:return bn(tA,[K,1],[M,2]);case 9:return bn(tA,[K,1],[M,2],!1,!0);case 10:return bn(tA,[K,2],[M,1]);case 11:return bn(tA,[K,2],[M,1],!0,!1);case 12:return bn(tA,[K,2],[M,2]);case 13:return bn(tA,[K,2],[M,2],!0,!1);case 14:return bn(tA,[K,2],[M,2],!1,!0);case 15:return bn(tA,[K,2],[M,2],!0,!0);default:throw new Error("Unknown verb: ".concat(G))}}(this.glyphs,15&N.flags,this.firstGlyph,this.lastGlyph)},G.processContextualSubstitution=function(M,N,P){var nA=this.subtable.table.substitutionTable.items;if(65535!==N.markIndex){var oA=nA.getItem(N.markIndex);(sA=new cr(oA).lookup((M=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(sA,M.codePoints))}if(65535!==N.currentIndex){var sA,bA=nA.getItem(N.currentIndex);(sA=new cr(bA).lookup((M=this.glyphs[P]).id))&&(this.glyphs[P]=this.font.getGlyph(sA,M.codePoints))}32768&N.flags&&(this.markedGlyph=P)},G.processLigature=function(M,N,P){if(32768&N.flags&&this.ligatureStack.push(P),8192&N.flags){for(var nA,oA=this.subtable.table.ligatureActions,lA=this.subtable.table.components,sA=this.subtable.table.ligatureList,bA=N.action,KA=!1,lt=0,$A=[],ct=[];!KA;){var mt,It=this.ligatureStack.pop();(mt=$A).unshift.apply(mt,this.glyphs[It].codePoints);var Gt=oA.getItem(bA++);KA=!!(2147483648&Gt);var _t=!!(1073741824&Gt),qt=(1073741823&Gt)<<2>>2;if(lt+=lA.getItem(qt+=this.glyphs[It].id),KA||_t){var ce=sA.getItem(lt);this.glyphs[It]=this.font.getGlyph(ce,$A),ct.push(It),lt=0,$A=[]}else this.glyphs[It]=this.font.getGlyph(65535)}(nA=this.ligatureStack).push.apply(nA,ct)}},G.processNoncontextualSubstitutions=function(M,N,P){var nA=new cr(M.table.lookupTable);for(P=0;P>>5,!!(1024&N.flags)),65535!==N.currentInsertIndex&&this._insertGlyphs(P,N.currentInsertIndex,(992&N.flags)>>>5,!!(2048&N.flags))},G.getSupportedFeatures=function(){for(var P,M=[],N=r(this.morx.chains);!(P=N()).done;)for(var lA,oA=r(P.value.features);!(lA=oA()).done;){var sA=lA.value;M.push([sA.featureType,sA.featureSetting])}return M},G.generateInputs=function(M){return this.inputCache||this.generateInputCache(),this.inputCache[M]||[]},G.generateInputCache=function(){this.inputCache={};for(var N,M=r(this.morx.chains);!(N=M()).done;)for(var lA,P=N.value,nA=P.defaultFlags,oA=r(P.subtables);!(lA=oA()).done;){var sA=lA.value;sA.subFeatureFlags&nA&&this.generateInputsForSubtable(sA)}},G.generateInputsForSubtable=function(M){var N=this;if(2===M.type){if(4194304&M.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=M,this.ligatureStack=[];var nA=this.getStateMachine(M),oA=this.getProcessor(),lA=[],sA=[];this.glyphs=[],nA.traverse({enter:function(KA,lt){var $A=N.glyphs;sA.push({glyphs:$A.slice(),ligatureStack:N.ligatureStack.slice()});var ct=N.font.getGlyph(KA);lA.push(ct),$A.push(lA[lA.length-1]),oA($A[$A.length-1],lt,$A.length-1);for(var mt=0,It=0,Gt=0;Gt<$A.length&&mt<=1;Gt++)65535!==$A[Gt].id&&(mt++,It=$A[Gt].id);if(1===mt){var _t=lA.map(function(re){return re.id}),qt=N.inputCache[It];qt?qt.push(_t):N.inputCache[It]=[_t]}},exit:function(){var KA=sA.pop();N.glyphs=KA.glyphs,N.ligatureStack=KA.ligatureStack,lA.pop()}})}},tA}()).prototype,"getStateMachine",[$],Object.getOwnPropertyDescriptor(Oi.prototype,"getStateMachine"),Oi.prototype),Oi);function bn(tA,G,K,M,N){void 0===M&&(M=!1),void 0===N&&(N=!1);var P=tA.splice(K[0]-(K[1]-1),K[1]);N&&P.reverse();var nA=tA.splice.apply(tA,[G[0],G[1]].concat(P));return M&&nA.reverse(),tA.splice.apply(tA,[K[0]-(G[1]-1),0].concat(nA)),tA}var So=function(){function tA(K){this.font=K,this.morxProcessor=new jr(K),this.fallbackPosition=!1}var G=tA.prototype;return G.substitute=function(M){"rtl"===M.direction&&M.glyphs.reverse(),this.morxProcessor.process(M.glyphs,function fo(tA){var G={};for(var K in tA){var M;(M=sr[K])&&(null==G[M[0]]&&(G[M[0]]={}),G[M[0]][M[1]]=tA[K])}return G}(M.features))},G.getAvailableFeatures=function(M,N){return function ho(tA){var G={};if(Array.isArray(tA))for(var K=0;K0&&M.applyFeatures(lA,N,P)}},tA}(),No=["rvrn"],bo=["ccmp","locl","rlig","mark","mkmk"],Ro=["frac","numr","dnom"],To=["calt","clig","liga","rclt","curs","kern"],Uo={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]},ui=function(){function tA(){}return tA.plan=function(K,M,N){this.planPreprocessing(K),this.planFeatures(K),this.planPostprocessing(K,N),K.assignGlobalFeatures(M),this.assignFeatures(K,M)},tA.planPreprocessing=function(K){K.add({global:[].concat(No,Uo[K.direction]),local:Ro})},tA.planFeatures=function(K){},tA.planPostprocessing=function(K,M){K.add([].concat(bo,To)),K.setFeatureOverrides(M)},tA.assignFeatures=function(K,M){for(var N=0;N0&&I.isDigit(M[nA-1].codePoints[0]);)M[nA-1].features.numr=!0,M[nA-1].features.frac=!0,nA--;for(;oAthis.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]},G.next=function(){return this.move(1)},G.prev=function(){return this.move(-1)},G.peek=function(M){void 0===M&&(M=1);var N=this.index,P=this.increment(M);return this.index=N,P},G.peekIndex=function(M){void 0===M&&(M=1);var N=this.index;this.increment(M);var P=this.index;return this.index=N,P},G.increment=function(M){void 0===M&&(M=1);var N=M<0?-1:1;for(M=Math.abs(M);M--;)this.move(N);return this.glyphs[this.index]},o(tA,[{key:"cur",get:function(){return this.glyphs[this.index]||null}}]),tA}(),ko=["DFLT","dflt","latn"],fr=function(){function tA(K,M){this.font=K,this.table=M,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=K._variationProcessor?this.findVariationsIndex(K._variationProcessor.normalizedCoords):-1,this.selectScript(),this.glyphs=[],this.positions=[],this.ligatureID=1,this.currentFeature=null}var G=tA.prototype;return G.findScript=function(M){if(null==this.table.scriptList)return null;Array.isArray(M)||(M=[M]);for(var P,N=r(M);!(P=N()).done;)for(var lA,nA=P.value,oA=r(this.table.scriptList);!(lA=oA()).done;){var sA=lA.value;if(sA.tag===nA)return sA}return null},G.selectScript=function(M,N,P){var oA,nA=!1;if(!this.script||M!==this.scriptTag){if((oA=this.findScript(M))||(oA=this.findScript(ko)),!oA)return this.scriptTag;this.scriptTag=oA.tag,this.script=oA.script,this.language=null,this.languageTag=null,nA=!0}if((!P||P!==this.direction)&&(this.direction=P||Gr(M)),N&&N.length<4&&(N+=" ".repeat(4-N.length)),!N||N!==this.languageTag){this.language=null;for(var sA,lA=r(this.script.langSysRecords);!(sA=lA()).done;){var bA=sA.value;if(bA.tag===N){this.language=bA.langSys,this.languageTag=bA.tag;break}}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),nA=!0}if(nA&&(this.features={},this.language))for(var lt,KA=r(this.language.featureIndexes);!(lt=KA()).done;){var $A=lt.value,ct=this.table.featureList[$A],mt=this.substituteFeatureForVariations($A);this.features[ct.tag]=mt||ct.feature}return this.scriptTag},G.lookupsForFeatures=function(M,N){void 0===M&&(M=[]);for(var oA,P=[],nA=r(M);!(oA=nA()).done;){var lA=oA.value,sA=this.features[lA];if(sA)for(var KA,bA=r(sA.lookupListIndexes);!(KA=bA()).done;){var lt=KA.value;N&&-1!==N.indexOf(lt)||P.push({feature:lA,index:lt,lookup:this.table.lookupList.get(lt)})}}return P.sort(function($A,ct){return $A.index-ct.index}),P},G.substituteFeatureForVariations=function(M){if(-1===this.variationsIndex)return null;for(var oA,nA=r(this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions);!(oA=nA()).done;){var lA=oA.value;if(lA.featureIndex===M)return lA.alternateFeatureTable}return null},G.findVariationsIndex=function(M){var N=this.table.featureVariations;if(!N)return-1;for(var P=N.featureVariationRecords,nA=0;nA=0})},G.getClassID=function(M,N){switch(N.version){case 1:var P=M-N.startGlyph;if(P>=0&&P0&&this.codePoints.every(I.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}}]),tA}(),Fa=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.planFeatures=function(M){M.add(["ljmo","vjmo","tjmo"],!1)},G.assignFeatures=function(M,N){for(var P=0,nA=0;nAdi){var lt=Vi(K,nA,M.features);lt.features.tjmo=!0,KA.push(lt)}return tA.splice.apply(tA,[G,1].concat(KA)),G+KA.length-1}function s0(tA,G,K){var lA,sA,bA,KA,M=tA[G],P=Qr(tA[G].codePoints[0]),nA=tA[G-1].codePoints[0],oA=Qr(nA);if(oA===dr&&P===Wr)lA=nA,KA=M;else{P===wr?(sA=tA[G-1],bA=M):(sA=tA[G-2],bA=tA[G-1],KA=M);var lt=sA.codePoints[0],$A=bA.codePoints[0];A0(lt)&&t0($A)&&(lA=Si+((lt-hr)*Cr+($A-Er))*Ji)}var ct=KA&&KA.codePoints[0]||di;if(null!=lA&&(ct===di||e0(ct))){var mt=lA+(ct-di);if(K.hasGlyphForCodePoint(mt)){var It=oA===wr?3:2;return tA.splice(G-It+1,It,Vi(K,mt,M.features)),G-It+1}}return sA&&(sA.features.ljmo=!0),bA&&(bA.features.vjmo=!0),KA&&(KA.features.tjmo=!0),oA===dr?(Sa(tA,G-1,K),G+1):G}function l0(tA,G,K){var M=tA[G];if(0!==K.glyphForCodePoint(tA[G].codePoints[0]).advanceWidth){var nA=function o0(tA){switch(Qr(tA)){case dr:case Ya:return 1;case wr:return 2;case Wr:return 3}}(tA[G-1].codePoints[0]);return tA.splice(G,1),tA.splice(G-nA,0,M)}}function c0(tA,G,K){var M=tA[G],N=tA[G].codePoints[0];if(K.hasGlyphForCodePoint(xa)){var P=Vi(K,xa,M.features),nA=0===K.glyphForCodePoint(N).advanceWidth?G:G+1;tA.splice(nA,0,P),G++}return G}var pr={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:[!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!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],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"]]},Ie_X=1,Ie_N=8,Ie_H=16,Ie_ZWNJ=32,Ie_ZWJ=64,Ie_M=128,Ie_RS=8192,Ie_Repha=32768,Ie_Ra=65536,Ie_CM=1<<17,te={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},w0=2|Ie_Ra|Ie_CM|4|2048|4096,ba=Ie_ZWJ|Ie_ZWNJ,Wi=Ie_H|16384,Ra={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:te.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:te.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:te.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:te.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:te.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:te.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:te.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:te.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},d0={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},Q0=pr.decompositions,Ta=new R(B("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","base64")),m0=new p({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:[!1,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!1,!1,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0],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"]]}),Bn=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.planFeatures=function(M){M.addStage(p0),M.addStage(["locl","ccmp"]),M.addStage(I0),M.addStage("nukt"),M.addStage("akhn"),M.addStage("rphf",!1),M.addStage("rkrf"),M.addStage("pref",!1),M.addStage("blwf",!1),M.addStage("abvf",!1),M.addStage("half",!1),M.addStage("pstf",!1),M.addStage("vatu"),M.addStage("cjct"),M.addStage("cfar",!1),M.addStage(D0),M.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),M.unicodeScript=function lo(tA){return Lr[tA]}(M.script),M.indicConfig=Ra[M.unicodeScript]||Ra.Default,M.isOldSpec=M.indicConfig.hasOldSpec&&"2"!==M.script[M.script.length-1]},G.assignFeatures=function(M,N){for(var P=function(lA){var sA=N[lA].codePoints[0],bA=d0[sA]||Q0[sA];if(bA){var KA=bA.map(function(lt){var $A=M.font.glyphForCodePoint(lt);return new ai(M.font,$A.id,[lt],N[lA].features)});N.splice.apply(N,[lA,1].concat(KA))}},nA=N.length-1;nA>=0;nA--)P(nA)},G}(ui);function qr(tA){return Ta.get(tA.codePoints[0])>>8}function Ua(tA){return 1<<(255&Ta.get(tA.codePoints[0]))}z(Bn,"zeroMarkWidths","NONE");var Mr=function(G,K,M,N){this.category=G,this.position=K,this.syllableType=M,this.syllable=N};function p0(tA,G){for(var P,K=0,M=0,N=r(m0.match(G.map(qr)));!(P=N()).done;){var nA=P.value,oA=nA[0],lA=nA[1],sA=nA[2];if(oA>M){++K;for(var bA=M;bAGt);break;case"First":for(var de=(It=sA)+1;deHe&&!(Qi(G[ke])||Je&&G[ke].shaperInfo.category===Ie_H);ke--);if(G[ke].shaperInfo.category!==Ie_H&&ke>He){var pe=G[He];G.splice.apply(G,[He,0].concat(G.splice(He+1,ke-He))),G[ke]=pe}break}for(var Le=te.Start,_e=sA;_esA;$e--)if(G[$e-1].shaperInfo.position!==te.Pre_M){Ee.position=G[$e-1].shaperInfo.position;break}}else Ee.position!==te.SMVD&&(Le=Ee.position)}for(var Ln=It,fn=It+1;fnsA&&!Qi(G[Gn]))}}}}function D0(tA,G,K){for(var M=K.indicConfig,N=tA._layoutEngine.engine.GSUBProcessor.features,P=0,nA=Ir(G,0);P=te.Base_C){if(oA&&lA+1te.Base_C&&lA--;break}if(lA===nA&&PP&&!(G[KA].shaperInfo.category&(Ie_M|Wi));)KA--;oi(G[KA])&&G[KA].shaperInfo.position!==te.Pre_M?KA+1P;lt--)if(G[lt-1].shaperInfo.position===te.Pre_M){var $A=lt-1;$AP&&G[mt].shaperInfo.position===te.SMVD;)mt--;if(oi(G[mt]))for(var _t=lA+1;_tP&&!(G[ce-1].shaperInfo.category&(Ie_M|Wi));)ce--;if(ce>P&&G[ce-1].shaperInfo.category===Ie_M)for(var Ce=re,de=lA+1;deP&&oi(G[ce-1])&&ce=tA.length)return G;for(var K=tA[G].shaperInfo.syllable;++G=0;nA--)P(nA)},G}(ui);function La(tA){return F0.get(tA.codePoints[0])}z(we,"zeroMarkWidths","BEFORE_GPOS");var x0=function(G,K,M){this.category=G,this.syllableType=K,this.syllable=M};function Y0(tA,G){for(var N,K=0,M=r(y0.match(G.map(La)));!(N=M()).done;){var P=N.value,nA=P[0],oA=P[1],lA=P[2];++K;for(var sA=nA;sA<=oA;sA++)G[sA].shaperInfo=new x0(v0[La(G[sA])],lA[0],K);for(var bA="R"===G[nA].shaperInfo.category?1:Math.min(3,oA-nA),KA=nA;KA1)for(P=M+1;P=tA.length)return G;for(var K=tA[G].shaperInfo.syllable;++G=0;Pn--)this.glyphs.splice(ce[Pn],1);return this.glyphs[this.glyphIterator.index]=Je,!0}}return!1;case 5:return this.applyContext(P);case 6:return this.applyChainingContext(P);case 7:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("GSUB lookupType ".concat(N," is not supported"))}},G}(fr),L0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K.applyPositionValue=function(N,P){var nA=this.positions[this.glyphIterator.peekIndex(N)];null!=P.xAdvance&&(nA.xAdvance+=P.xAdvance),null!=P.yAdvance&&(nA.yAdvance+=P.yAdvance),null!=P.xPlacement&&(nA.xOffset+=P.xPlacement),null!=P.yPlacement&&(nA.yOffset+=P.yPlacement);var oA=this.font._variationProcessor,lA=this.font.GDEF&&this.font.GDEF.itemVariationStore;oA&&lA&&(P.xPlaDevice&&(nA.xOffset+=oA.getDelta(lA,P.xPlaDevice.a,P.xPlaDevice.b)),P.yPlaDevice&&(nA.yOffset+=oA.getDelta(lA,P.yPlaDevice.a,P.yPlaDevice.b)),P.xAdvDevice&&(nA.xAdvance+=oA.getDelta(lA,P.xAdvDevice.a,P.xAdvDevice.b)),P.yAdvDevice&&(nA.yAdvance+=oA.getDelta(lA,P.yAdvDevice.a,P.yAdvDevice.b)))},K.applyLookup=function(N,P){switch(N){case 1:var nA=this.coverageIndex(P.coverage);if(-1===nA)return!1;switch(P.version){case 1:this.applyPositionValue(0,P.value);break;case 2:this.applyPositionValue(0,P.values.get(nA))}return!0;case 2:var oA=this.glyphIterator.peek();if(!oA)return!1;var lA=this.coverageIndex(P.coverage);if(-1===lA)return!1;switch(P.version){case 1:for(var KA,bA=r(P.pairSets.get(lA));!(KA=bA()).done;){var lt=KA.value;if(lt.secondGlyph===oA.id)return this.applyPositionValue(0,lt.value1),this.applyPositionValue(1,lt.value2),!0}return!1;case 2:var $A=this.getClassID(this.glyphIterator.cur.id,P.classDef1),ct=this.getClassID(oA.id,P.classDef2);if(-1===$A||-1===ct)return!1;var mt=P.classRecords.get($A).get(ct);return this.applyPositionValue(0,mt.value1),this.applyPositionValue(1,mt.value2),!0}case 3:var It=this.glyphIterator.peekIndex(),Gt=this.glyphs[It];if(!Gt)return!1;var _t=P.entryExitRecords[this.coverageIndex(P.coverage)];if(!_t||!_t.exitAnchor)return!1;var qt=P.entryExitRecords[this.coverageIndex(P.coverage,Gt.id)];if(!qt||!qt.entryAnchor)return!1;var re=this.getAnchor(qt.entryAnchor),ce=this.getAnchor(_t.exitAnchor),Ce=this.positions[this.glyphIterator.index],de=this.positions[It];switch(this.direction){case"ltr":Ce.xAdvance=ce.x+Ce.xOffset;var Ge=re.x+de.xOffset;de.xAdvance-=Ge,de.xOffset-=Ge;break;case"rtl":Ce.xAdvance-=Ge=ce.x+Ce.xOffset,Ce.xOffset-=Ge,de.xAdvance=re.x+de.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=It,Ce.yOffset=re.y-ce.y):(Gt.cursiveAttachment=this.glyphIterator.index,Ce.yOffset=ce.y-re.y),!0;case 4:var rn=this.coverageIndex(P.markCoverage);if(-1===rn)return!1;for(var Ue=this.glyphIterator.index;--Ue>=0&&(this.glyphs[Ue].isMark||this.glyphs[Ue].ligatureComponent>0););if(Ue<0)return!1;var he=this.coverageIndex(P.baseCoverage,this.glyphs[Ue].id);if(-1===he)return!1;var Je=P.markArray[rn];return this.applyAnchor(Je,P.baseArray[he][Je.class],Ue),!0;case 5:var ke=this.coverageIndex(P.markCoverage);if(-1===ke)return!1;for(var pe=this.glyphIterator.index;--pe>=0&&this.glyphs[pe].isMark;);if(pe<0)return!1;var Le=this.coverageIndex(P.ligatureCoverage,this.glyphs[pe].id);if(-1===Le)return!1;var _e=P.ligatureArray[Le],Ee=this.glyphIterator.cur,$e=this.glyphs[pe],Ln=$e.ligatureID&&$e.ligatureID===Ee.ligatureID&&Ee.ligatureComponent>0?Math.min(Ee.ligatureComponent,$e.codePoints.length)-1:$e.codePoints.length-1,fn=P.markArray[ke];return this.applyAnchor(fn,_e[Ln][fn.class],pe),!0;case 6:var Rn=this.coverageIndex(P.mark1Coverage);if(-1===Rn)return!1;var Pn=this.glyphIterator.peekIndex(-1),pn=this.glyphs[Pn];if(!pn||!pn.isMark)return!1;var zn=this.glyphIterator.cur,Cn=!1;if(zn.ligatureID===pn.ligatureID?zn.ligatureID?zn.ligatureComponent===pn.ligatureComponent&&(Cn=!0):Cn=!0:(zn.ligatureID&&!zn.ligatureComponent||pn.ligatureID&&!pn.ligatureComponent)&&(Cn=!0),!Cn)return!1;var kn=this.coverageIndex(P.mark2Coverage,pn.id);if(-1===kn)return!1;var De=P.mark1Array[Rn];return this.applyAnchor(De,P.mark2Array[kn][De.class],Pn),!0;case 7:return this.applyContext(P);case 8:return this.applyChainingContext(P);case 9:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("Unsupported GPOS table: ".concat(N))}},K.applyAnchor=function(N,P,nA){var oA=this.getAnchor(P),lA=this.getAnchor(N.markAnchor),bA=this.positions[this.glyphIterator.index];bA.xOffset=oA.x-lA.x,bA.yOffset=oA.y-lA.y,this.glyphIterator.cur.markAttachment=nA},K.getAnchor=function(N){var P=N.xCoordinate,nA=N.yCoordinate,oA=this.font._variationProcessor,lA=this.font.GDEF&&this.font.GDEF.itemVariationStore;return oA&&lA&&(N.xDeviceTable&&(P+=oA.getDelta(lA,N.xDeviceTable.a,N.xDeviceTable.b)),N.yDeviceTable&&(nA+=oA.getDelta(lA,N.yDeviceTable.a,N.yDeviceTable.b))),{x:P,y:nA}},K.applyFeatures=function(N,P,nA){tA.prototype.applyFeatures.call(this,N,P,nA);for(var oA=0;oA>16;if(0===N)switch(M>>8){case 0:return 173===M;case 3:return 847===M;case 6:return 1564===M;case 23:return 6068<=M&&M<=6069;case 24:return 6155<=M&&M<=6158;case 32:return 8203<=M&&M<=8207||8234<=M&&M<=8238||8288<=M&&M<=8303;case 254:return 65024<=M&&M<=65039||65279===M;case 255:return 65520<=M&&M<=65528;default:return!1}else switch(N){case 1:return 113824<=M&&M<=113827||119155<=M&&M<=119162;case 14:return 917504<=M&&M<=921599;default:return!1}},G.getAvailableFeatures=function(M,N){var P=[];return this.engine&&P.push.apply(P,this.engine.getAvailableFeatures(M,N)),this.font.kern&&-1===P.indexOf("kern")&&P.push("kern"),P},G.stringsForGlyph=function(M){for(var oA,N=new Set,nA=r(this.font._cmapProcessor.codePointsForGlyph(M));!(oA=nA()).done;)N.add(String.fromCodePoint(oA.value));if(this.engine&&this.engine.stringsForGlyph)for(var bA,sA=r(this.engine.stringsForGlyph(M));!(bA=sA()).done;)N.add(bA.value);return Array.from(N)},tA}(),G0={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"},Fr=function(){function tA(){this.commands=[],this._bbox=null,this._cbox=null}var G=tA.prototype;return G.toFunction=function(){var M=this;return function(N){M.commands.forEach(function(P){return N[P.command].apply(N,P.args)})}},G.toSVG=function(){return this.commands.map(function(N){var P=N.args.map(function(nA){return Math.round(100*nA)/100});return"".concat(G0[N.command]).concat(P.join(" "))}).join("")},G.mapPoints=function(M){for(var nA,N=new tA,P=r(this.commands);!(nA=P()).done;){for(var oA=nA.value,lA=[],sA=0;sA0&&this.codePoints.every(I.isMark),this.isLigature=this.codePoints.length>1}var G=tA.prototype;return G._getPath=function(){return new Fr},G._getCBox=function(){return this.path.cbox},G._getBBox=function(){return this.path.bbox},G._getTableMetrics=function(M){if(this.id"u"||null===M)&&(M=this.cbox),(bA=this._font["OS/2"])&&bA.version>0)lA=Math.abs(bA.typoAscender-bA.typoDescender),sA=bA.typoAscender-M.maxY;else{var KA=this._font.hhea;lA=Math.abs(KA.ascent-KA.descent),sA=KA.ascent-M.maxY}return this._font._variationProcessor&&this._font.HVAR&&(P+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:P,advanceHeight:lA,leftBearing:nA,topBearing:sA}},G.getScaledPath=function(M){return this.path.scale(1/this._font.unitsPerEm*M)},G._getName=function(){var M=this._font.post;if(!M)return null;switch(M.version){case 1:return Ki[this.id];case 2:var N=M.glyphNameIndex[this.id];return N0?this._decodeSimple(lA,nA):lA.numberOfContours<0&&this._decodeComposite(lA,nA,oA),lA},K._decodeSimple=function(N,P){N.points=[];var nA=new e.Array(e.uint16,N.numberOfContours).decode(P);N.instructions=new e.Array(e.uint8,e.uint16).decode(P);for(var oA=[],lA=nA[nA.length-1]+1;oA.length=0,0,0);N.points.push($A)}var ct=0;for(lt=0;lt>1,sA.length=0}function Je(ke,pe){Gt&&lA.closePath(),lA.moveTo(ke,pe),Gt=!0}return function ke(){for(;P.pos1&&Ue(),ct+=sA.shift(),Je($A,ct);break;case 5:for(;sA.length>=2;)$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);break;case 6:case 7:for(var Le=6===pe;sA.length>=1;)Le?$A+=sA.shift():ct+=sA.shift(),lA.lineTo($A,ct),Le=!Le;break;case 8:for(;sA.length>0;){var De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift();$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct)}break;case 10:var _e=sA.pop()+Ce,Ee=ce[_e];if(Ee){It[_e]=!0;var $e=P.pos,Ln=oA;P.pos=Ee.offset,oA=Ee.offset+Ee.length,ke(),P.pos=$e,oA=Ln}break;case 11:if(N.version>=2)break;return;case 14:if(N.version>=2)break;sA.length>0&&Ue(),Gt&&(lA.closePath(),Gt=!1);break;case 15:if(N.version<2)throw new Error("vsindex operator not supported in CFF v1");Ge=sA.pop();break;case 16:if(N.version<2)throw new Error("blend operator not supported in CFF v1");if(!rn)throw new Error("blend operator in non-variation font");for(var fn=rn.getBlendVector(de,Ge),Fn=sA.pop(),Rn=Fn*fn.length,Pn=sA.length-Rn,pn=Pn-Fn,zn=0;zn>3;break;case 21:sA.length>2&&Ue(),$A+=sA.shift(),ct+=sA.shift(),Je($A,ct);break;case 22:sA.length>1&&Ue(),Je($A+=sA.shift(),ct);break;case 24:for(;sA.length>=8;)De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);break;case 25:for(;sA.length>=8;)$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);break;case 26:for(sA.length%2&&($A+=sA.shift());sA.length>=4;)De=$A,be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se,ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);break;case 27:for(sA.length%2&&(ct+=sA.shift());sA.length>=4;)De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct=Xe);break;case 28:sA.push(P.readInt16BE());break;case 29:_e=sA.pop()+qt,(Ee=_t[_e])&&(mt[_e]=!0,$e=P.pos,Ln=oA,P.pos=Ee.offset,oA=Ee.offset+Ee.length,ke(),P.pos=$e,oA=Ln);break;case 30:case 31:for(Le=31===pe;sA.length>=4;)Le?(De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift(),ct=Xe+sA.shift(),$A=Se+(1===sA.length?sA.shift():0)):(De=$A,be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+(1===sA.length?sA.shift():0)),lA.bezierCurveTo(De,be,Se,Xe,$A,ct),Le=!Le;break;case 12:switch(pe=P.readUInt8()){case 3:var je=sA.pop(),ln=sA.pop();sA.push(je&&ln?1:0);break;case 4:je=sA.pop(),ln=sA.pop(),sA.push(je||ln?1:0);break;case 5:je=sA.pop(),sA.push(je?0:1);break;case 9:je=sA.pop(),sA.push(Math.abs(je));break;case 10:je=sA.pop(),ln=sA.pop(),sA.push(je+ln);break;case 11:je=sA.pop(),ln=sA.pop(),sA.push(je-ln);break;case 12:je=sA.pop(),ln=sA.pop(),sA.push(je/ln);break;case 14:je=sA.pop(),sA.push(-je);break;case 15:je=sA.pop(),ln=sA.pop(),sA.push(je===ln?1:0);break;case 18:sA.pop();break;case 20:var ea=sA.pop(),Gn=sA.pop();bA[Gn]=ea;break;case 21:Gn=sA.pop(),sA.push(bA[Gn]||0);break;case 22:var na=sA.pop(),ia=sA.pop(),Tl=sA.pop(),Ul=sA.pop();sA.push(Tl<=Ul?na:ia);break;case 23:sA.push(Math.random());break;case 24:je=sA.pop(),ln=sA.pop(),sA.push(je*ln);break;case 26:je=sA.pop(),sA.push(Math.sqrt(je));break;case 27:je=sA.pop(),sA.push(je,je);break;case 28:je=sA.pop(),ln=sA.pop(),sA.push(ln,je);break;case 29:(Gn=sA.pop())<0?Gn=0:Gn>sA.length-1&&(Gn=sA.length-1),sA.push(sA[Gn]);break;case 30:var Yr=sA.pop(),Xi=sA.pop();if(Xi>=0)for(;Xi>0;){for(var ra=sA[Yr-1],Sr=Yr-2;Sr>=0;Sr--)sA[Sr+1]=sA[Sr];sA[0]=ra,Xi--}else for(;Xi<0;){ra=sA[0];for(var Nr=0;Nr<=Yr;Nr++)sA[Nr]=sA[Nr+1];sA[Yr-1]=ra,Xi++}break;case 34:De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift();var Zi=Se+sA.shift(),qi=Xe,_i=Zi+sA.shift(),$i=qi,Ar=_i+sA.shift(),tr=$i,er=Ar+sA.shift(),nr=tr;$A=er,ct=nr,lA.bezierCurveTo(De,be,Se,Xe,Zi,qi),lA.bezierCurveTo(_i,$i,Ar,tr,er,nr);break;case 35:for(var Ei=[],ss=0;ss<=5;ss++)$A+=sA.shift(),ct+=sA.shift(),Ei.push($A,ct);lA.bezierCurveTo.apply(lA,Ei.slice(0,6)),lA.bezierCurveTo.apply(lA,Ei.slice(6)),sA.shift();break;case 36:De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),$i=qi=Xe=be+sA.shift(),Ar=(_i=(Zi=Se+sA.shift())+sA.shift())+sA.shift(),tr=$i+sA.shift(),er=Ar+sA.shift(),$A=er,ct=nr=tr,lA.bezierCurveTo(De,be,Se,Xe,Zi,qi),lA.bezierCurveTo(_i,$i,Ar,tr,er,nr);break;case 37:var os=$A,ls=ct;Ei=[];for(var cs=0;cs<=4;cs++)$A+=sA.shift(),ct+=sA.shift(),Ei.push($A,ct);Math.abs($A-os)>Math.abs(ct-ls)?($A+=sA.shift(),ct=ls):($A=os,ct+=sA.shift()),Ei.push($A,ct),lA.bezierCurveTo.apply(lA,Ei.slice(0,6)),lA.bezierCurveTo.apply(lA,Ei.slice(6));break;default:throw new Error("Unknown op: 12 ".concat(pe))}break;default:throw new Error("Unknown op: ".concat(pe))}else if(pe<247)sA.push(pe-139);else if(pe<251){var aa=P.readUInt8();sA.push(256*(pe-247)+aa+108)}else pe<255?(aa=P.readUInt8(),sA.push(256*-(pe-251)-aa-108)):sA.push(P.readInt32BE()/65536)}}(),Gt&&lA.closePath(),lA},G}(yr),q0=new e.Struct({originX:e.uint16,originY:e.uint16,type:new e.String(4),data:new e.Buffer(function(tA){return tA.parent.buflen-tA._currentOffset})}),_0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K.getImageForSize=function(N){for(var P=0;P=N)break}var oA=nA.imageOffsets,lA=oA[this.id],sA=oA[this.id+1];return lA===sA?null:(this._font.stream.pos=lA,q0.decode(this._font.stream,{buflen:sA-lA}))},K.render=function(N,P){var nA=this.getImageForSize(P);null!=nA&&N.image(nA.data,{height:P,x:nA.originX,y:P/this._font.unitsPerEm*(this.bbox.minY-nA.originY)}),this._font.sbix.flags.renderOutlines&&tA.prototype.render.call(this,N,P)},G}(xr),Wa=function(G,K){this.glyph=G,this.color=K},$0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K._getBBox=function(){for(var N=new xi,P=0;P>1;if(this.id<(sA=P.baseGlyphRecord[lA]).gid)oA=lA-1;else{if(!(this.id>sA.gid)){var bA=sA;break}nA=lA+1}}if(null==bA){var KA=this._font._getBaseGlyph(this.id);return[new Wa(KA,lt={red:0,green:0,blue:0,alpha:255})]}for(var $A=[],ct=bA.firstLayerIndex;ct=1&&N[P]=P.glyphCount)){var nA=P.offsets[M];if(nA!==P.offsets[M+1]){var oA=this.font.stream;if(oA.pos=nA,!(oA.pos>=oA.length)){var lA=oA.readUInt16BE(),sA=nA+oA.readUInt16BE();if(32768&lA){var bA=oA.pos;oA.pos=sA;var KA=this.decodePoints();sA=oA.pos,oA.pos=bA}var lt=N.map(function(fn){return fn.copy()});lA&=4095;for(var $A=0;$A=P.globalCoordCount)throw new Error("Invalid gvar table");It=P.globalCoords[4095&mt]}if(16384&mt){for(var _t=[],qt=0;qtnA[bA])return 0;sA=oA[bA]Math.max(0,N[bA]))return 0;sA=(sA*oA[bA]+Number.EPSILON)/(N[bA]+Number.EPSILON)}}return sA},G.interpolateMissingDeltas=function(M,N,P){if(0!==M.length)for(var nA=0;nAlA)){var bA=nA,KA=nA;for(nA++;nA<=lA;)P[nA]&&(this.deltaInterpolate(KA+1,nA-1,KA,nA,N,M),KA=nA),nA++;KA===bA?this.deltaShift(oA,lA,KA,N,M):(this.deltaInterpolate(KA+1,lA,KA,bA,N,M),bA>0&&this.deltaInterpolate(oA,bA-1,KA,bA,N,M)),nA=lA+1}}},G.deltaInterpolate=function(M,N,P,nA,oA,lA){if(!(M>N))for(var sA=["x","y"],bA=0;bAoA[nA][KA]){var lt=P;P=nA,nA=lt}var $A=oA[P][KA],ct=oA[nA][KA],mt=lA[P][KA],It=lA[nA][KA];if($A!==ct||mt===It)for(var Gt=$A===ct?0:(It-mt)/(ct-$A),_t=M;_t<=N;_t++){var qt=oA[_t][KA];qt<=$A?qt+=mt-$A:qt>=ct?qt+=It-ct:qt=mt+(qt-$A)*Gt,lA[_t][KA]=qt}}},G.deltaShift=function(M,N,P,nA,oA){var lA=oA[P].x-nA[P].x,sA=oA[P].y-nA[P].y;if(0!==lA||0!==sA)for(var bA=M;bA<=N;bA++)bA!==P&&(oA[bA].x+=lA,oA[bA].y+=sA)},G.getAdvanceAdjustment=function(M,N){var P,nA;if(N.advanceWidthMapping){var oA=M;oA>=N.advanceWidthMapping.mapCount&&(oA=N.advanceWidthMapping.mapCount-1);var sA=N.advanceWidthMapping.mapData[oA];P=sA.outerIndex,nA=sA.innerIndex}else P=0,nA=M;return this.getDelta(N.itemVariationStore,P,nA)},G.getDelta=function(M,N,P){if(N>=M.itemVariationData.length)return 0;var nA=M.itemVariationData[N];if(P>=nA.deltaSets.length)return 0;for(var oA=nA.deltaSets[P],lA=this.getBlendVector(M,N),sA=0,bA=0;bA$A.peakCoord||$A.peakCoord>$A.endCoord||$A.startCoord<0&&$A.endCoord>0&&0!==$A.peakCoord||0===$A.peakCoord?1:nA[lt]<$A.startCoord||nA[lt]>$A.endCoord?0:nA[lt]===$A.peakCoord?1:nA[lt]<$A.peakCoord?(nA[lt]-$A.startCoord+Number.EPSILON)/($A.peakCoord-$A.startCoord+Number.EPSILON):($A.endCoord-nA[lt]+Number.EPSILON)/($A.endCoord-$A.peakCoord+Number.EPSILON)}oA[lA]=sA}return this.blendVectors.set(P,oA),oA},tA}(),_a=Promise.resolve(),$a=function(){function tA(K){this.font=K,this.glyphs=[],this.mapping={},this.includeGlyph(0)}var G=tA.prototype;return G.includeGlyph=function(M){return"object"==typeof M&&(M=M.id),null==this.mapping[M]&&(this.glyphs.push(M),this.mapping[M]=this.glyphs.length-1),this.mapping[M]},G.encodeStream=function(){var M=this,N=new e.EncodeStream;return _a.then(function(){return M.encode(N),N.end()}),N},tA}(),As=function(){function tA(){}return tA.size=function(K){return K>=0&&K<=255?1:2},tA.encode=function(K,M){M>=0&&M<=255?K.writeUInt8(M):K.writeInt16BE(M)},tA}(),ts=new e.Struct({numberOfContours:e.int16,xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,endPtsOfContours:new e.Array(e.uint16,"numberOfContours"),instructions:new e.Array(e.uint8,e.uint16),flags:new e.Array(e.uint8,0),xPoints:new e.Array(As,0),yPoints:new e.Array(As,0)}),fl=function(){function tA(){}var G=tA.prototype;return G.encodeSimple=function(M,N){void 0===N&&(N=[]);for(var P=[],nA=[],oA=[],lA=[],sA=0,bA=0,KA=0,lt=0,$A=0,ct=0;ct0&&(lA.push(sA),sA=0),lA.push(qt),lt=qt),bA=Gt,KA=_t,$A++}"closePath"===mt.command&&P.push($A-1)}M.commands.length>1&&"closePath"!==M.commands[M.commands.length-1].command&&P.push($A-1);var de=M.bbox,Ge={numberOfContours:P.length,xMin:de.minX,yMin:de.minY,xMax:de.maxX,yMax:de.maxY,endPtsOfContours:P,instructions:N,flags:lA,xPoints:nA,yPoints:oA},rn=ts.size(Ge),Ue=4-rn%4,he=new e.EncodeStream(rn+Ue);return ts.encode(he,Ge),0!==Ue&&he.fill(0,Ue),he.buffer},G._encodePoint=function(M,N,P,nA,oA,lA){var sA=M-N;return M===N?nA|=lA:(-255<=sA&&sA<=255&&(nA|=oA,sA<0?sA=-sA:nA|=lA),P.push(sA)),nA},tA}(),hl=function(tA){function G(M){var N;return(N=tA.call(this,M)||this).glyphEncoder=new fl,N}w(G,tA);var K=G.prototype;return K._addGlyph=function(N){var P=this.font.getGlyph(N),nA=P._decode(),oA=this.font.loca.offsets[N],lA=this.font.loca.offsets[N+1],sA=this.font._getTableStream("glyf");sA.pos+=oA;var bA=sA.readBuffer(lA-oA);if(nA&&nA.numberOfContours<0){bA=B.from(bA);for(var lt,KA=r(nA.components);!(lt=KA()).done;){var $A=lt.value;N=this.includeGlyph($A.glyphID),bA.writeUInt16BE(N,$A.pos)}}else nA&&this.font._variationProcessor&&(bA=this.glyphEncoder.encodeSimple(P.path,nA.instructions));return this.glyf.push(bA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:P.advanceWidth,bearing:P._getMetrics().leftBearing}),this.offset+=bA.length,this.glyf.length-1},K.encode=function(N){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};for(var P=0;P255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},nA=Object.assign({},this.cff.topDict);nA.Private=null,nA.charset=P,nA.Encoding=null,nA.CharStrings=this.charstrings;for(var oA=0,lA=["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"];oA0&&Object.defineProperty(this,N,{get:this._getTable.bind(this,P)})}}tA.probe=function(M){var N=M.toString("ascii",0,4);return"true"===N||"OTTO"===N||"\0\x01\0\0"===N};var G=tA.prototype;return G.setDefaultLanguage=function(M){void 0===M&&(M=null),this.defaultLanguage=M},G._getTable=function(M){if(!(M.tag in this._tables))try{this._tables[M.tag]=this._decodeTable(M)}catch(N){v.logErrors&&(console.error("Error decoding table ".concat(M.tag)),console.error(N.stack))}return this._tables[M.tag]},G._getTableStream=function(M){var N=this.directory.tables[M];return N?(this.stream.pos=N.offset,this.stream):null},G._decodeDirectory=function(){return this.directory=rr.decode(this.stream,{_startOffset:0})},G._decodeTable=function(M){var N=this.stream.pos,P=this._getTableStream(M.tag),nA=oe[M.tag].decode(P,this,M.length);return this.stream.pos=N,nA},G.getName=function(M,N){void 0===N&&(N=this.defaultLanguage||v.defaultLanguage);var P=this.name&&this.name.records[M];return P&&(P[N]||P[this.defaultLanguage]||P[v.defaultLanguage]||P.en||P[Object.keys(P)[0]])||null},G.hasGlyphForCodePoint=function(M){return!!this._cmapProcessor.lookup(M)},G.glyphForCodePoint=function(M){return this.getGlyph(this._cmapProcessor.lookup(M),[M])},G.glyphsForString=function(M){for(var N=[],P=M.length,nA=0,oA=-1,lA=-1;nA<=P;){var sA=0,bA=0;if(nA>>6&3},transformed:function(G){return"glyf"===G.tag||"loca"===G.tag?0===G.transformVersion:0!==G.transformVersion},transformLength:new e.Optional(ns,function(tA){return tA.transformed})}),is=new e.Struct({tag:new e.String(4),flavor:e.uint32,length:e.uint32,numTables:e.uint16,reserved:new e.Reserved(e.uint16),totalSfntSize:e.uint32,totalCompressedSize:e.uint32,majorVersion:e.uint16,minorVersion:e.uint16,metaOffset:e.uint32,metaLength:e.uint32,metaOrigLength:e.uint32,privOffset:e.uint32,privLength:e.uint32,tables:new e.Array(Ql,"numTables")});is.process=function(){for(var tA={},G=0;G0){for(var sA=[],bA=0,KA=0;KA>7);if((sA&=127)<10)oA=0,lA=Ai(sA,((14&sA)<<7)+G.readUInt8());else if(sA<20)oA=Ai(sA,((sA-10&14)<<7)+G.readUInt8()),lA=0;else if(sA<84)oA=Ai(sA,1+(48&(KA=sA-20))+((lt=G.readUInt8())>>4)),lA=Ai(sA>>1,1+((12&KA)<<2)+(15<));else if(sA<120){var KA;oA=Ai(sA,1+((KA=sA-84)/12<<8)+G.readUInt8()),lA=Ai(sA>>1,1+(KA%12>>2<<8)+G.readUInt8())}else if(sA<124){var lt=G.readUInt8(),$A=G.readUInt8();oA=Ai(sA,(lt<<4)+($A>>4)),lA=Ai(sA>>1,((15&$A)<<8)+G.readUInt8())}else oA=Ai(sA,G.readUInt16BE()),lA=Ai(sA>>1,G.readUInt16BE());P.push(new ci(bA,!1,N+=oA,M+=lA))}return P}var Fl=new e.VersionedStruct(e.uint32,{65536:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts")},131072:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts"),dsigTag:e.uint32,dsigLength:e.uint32,dsigOffset:e.uint32}}),yl=function(){function tA(K){if(this.stream=K,"ttcf"!==K.readString(4))throw new Error("Not a TrueType collection");this.header=Fl.decode(K)}return tA.probe=function(M){return"ttcf"===M.toString("ascii",0,4)},tA.prototype.getFont=function(M){for(var P,N=r(this.header.offsets);!(P=N()).done;){var nA=P.value,oA=new e.DecodeStream(this.stream.buffer);oA.pos=nA;var lA=new mi(oA);if(lA.postscriptName===M)return lA}return null},o(tA,[{key:"fonts",get:function(){for(var P,M=[],N=r(this.header.offsets);!(P=N()).done;){var nA=P.value,oA=new e.DecodeStream(this.stream.buffer);oA.pos=nA,M.push(new mi(oA))}return M}}]),tA}(),xl=new e.String(e.uint8),Yl=(new e.Struct({len:e.uint32,buf:new e.Buffer("len")}),new e.Struct({id:e.uint16,nameOffset:e.int16,attr:e.uint8,dataOffset:e.uint24,handle:e.uint32})),Sl=new e.Struct({name:new e.String(4),maxTypeIndex:e.uint16,refList:new e.Pointer(e.uint16,new e.Array(Yl,function(tA){return tA.maxTypeIndex+1}),{type:"parent"})}),Nl=new e.Struct({length:e.uint16,types:new e.Array(Sl,function(tA){return tA.length+1})}),bl=new e.Struct({reserved:new e.Reserved(e.uint8,24),typeList:new e.Pointer(e.uint16,Nl),nameListOffset:new e.Pointer(e.uint16,"void")}),as=new e.Struct({dataOffset:e.uint32,map:new e.Pointer(e.uint32,bl),dataLength:e.uint32,mapLength:e.uint32}),Rl=function(){function tA(K){this.stream=K,this.header=as.decode(this.stream);for(var N,M=r(this.header.map.typeList.types);!(N=M()).done;){for(var oA,P=N.value,nA=r(P.refList);!(oA=nA()).done;){var lA=oA.value;lA.nameOffset>=0?(this.stream.pos=lA.nameOffset+this.header.map.nameListOffset,lA.name=xl.decode(this.stream)):lA.name=null}"sfnt"===P.name&&(this.sfnt=P)}}return tA.probe=function(M){var N=new e.DecodeStream(M);try{var P=as.decode(N)}catch{return!1}for(var oA,nA=r(P.map.typeList.types);!(oA=nA()).done;)if("sfnt"===oA.value.name)return!0;return!1},tA.prototype.getFont=function(M){if(!this.sfnt)return null;for(var P,N=r(this.sfnt.refList);!(P=N()).done;){var lA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4)),sA=new mi(lA);if(sA.postscriptName===M)return sA}return null},o(tA,[{key:"fonts",get:function(){for(var P,M=[],N=r(this.sfnt.refList);!(P=N()).done;){var lA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4));M.push(new mi(lA))}return M}}]),tA}();v.registerFormat(mi),v.registerFormat(Cl),v.registerFormat(ml),v.registerFormat(yl),v.registerFormat(Rl),b.exports=v},19304:function(b,A,n){"use strict";var B=n(41209),a=n(32504),s=n(41783),o=s.BK,g=s.CR,f=s.LF,w=s.NL,u=s.SG,r=s.WJ,d=s.SP,E=s.ZWJ,C=s.BA,e=s.HY,h=s.NS,Q=s.AI,I=s.AL,R=s.CJ,p=s.HL,m=s.RI,y=s.SA,x=s.XX,Y=n(98282),v=Y.DI_BRK,S=Y.IN_BRK,z=Y.CI_BRK,F=Y.CP_BRK,gA=Y.pairTable,fA=new B(a.toByteArray("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")),iA=function(HA){switch(HA){case Q:case y:case u:case x:return I;case R:return h;default:return HA}},wA=function(HA){switch(HA){case f:case w:return o;case d:return r;default:return HA}},IA=function(HA,J){void 0===J&&(J=!1),this.position=HA,this.required=J};b.exports=function(){function YA(J){this.string=J,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}var HA=YA.prototype;return HA.nextCodePoint=function(){var BA=this.string.charCodeAt(this.pos++),aA=this.string.charCodeAt(this.pos);return 55296<=BA&&BA<=56319&&56320<=aA&&aA<=57343?(this.pos++,1024*(BA-55296)+(aA-56320)+65536):BA},HA.nextCharClass=function(){return iA(fA.get(this.nextCodePoint()))},HA.getSimpleBreak=function(){switch(this.nextClass){case d:return!1;case o:case f:case w:return this.curClass=o,!1;case g:return this.curClass=g,!1}return null},HA.getPairTableBreak=function(BA){var aA=!1;switch(gA[this.curClass][this.nextClass]){case v:aA=!0;break;case S:aA=BA===d;break;case z:if(!(aA=BA===d))return!1;break;case F:if(BA!==d)return aA}return this.LB8a&&(aA=!1),!this.LB21a||this.curClass!==e&&this.curClass!==C?this.LB21a=this.curClass===p:(aA=!1,this.LB21a=!1),this.curClass===m?(this.LB30a++,2==this.LB30a&&this.nextClass===m&&(aA=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,aA},HA.nextBreak=function(){if(null==this.curClass){var BA=this.nextCharClass();this.curClass=wA(BA),this.nextClass=BA,this.LB8a=BA===E,this.LB30a=0}for(;this.pos"u"?n.g:globalThis;b.exports=function(){for(var o=[],g=0;gS),g(b.exports,"getCombiningClass",()=>z),g(b.exports,"getScript",()=>F),g(b.exports,"getEastAsianWidth",()=>$),g(b.exports,"getNumericValue",()=>gA),g(b.exports,"isAlphabetic",()=>_),g(b.exports,"isDigit",()=>fA),g(b.exports,"isPunctuation",()=>iA),g(b.exports,"isLowerCase",()=>wA),g(b.exports,"isUpperCase",()=>IA),g(b.exports,"isTitleCase",()=>FA),g(b.exports,"isWhiteSpace",()=>YA),g(b.exports,"isBaseForm",()=>HA),g(b.exports,"isMark",()=>J),g(b.exports,"default",()=>BA);var f={};f=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 w=new(s(a))(s(B).toByteArray("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")),u=Math.log2||(aA=>Math.log(aA)/Math.LN2),r=aA=>u(aA)+1|0,d=r(s(f).categories.length-1),E=r(s(f).combiningClasses.length-1),C=r(s(f).scripts.length-1),e=r(s(f).eaw.length-1),Q=E+C+e+10,I=C+e+10,R=e+10,p=10,m=(1<>Q&m]}function z(aA){const eA=w.get(aA);return s(f).combiningClasses[eA>>I&y]}function F(aA){const eA=w.get(aA);return s(f).scripts[eA>>R&x]}function $(aA){const eA=w.get(aA);return s(f).eaw[eA>>p&Y]}function gA(aA){let eA=w.get(aA),EA=eA&v;if(0===EA)return null;if(EA<=50)return EA-1;if(EA<480)return((EA>>4)-12)/(1+(15&EA));if(EA<768){eA=(EA>>5)-14;let xA=2+(31&EA);for(;xA>0;)eA*=10,xA--;return eA}{eA=(EA>>2)-191;let xA=1+(3&EA);for(;xA>0;)eA*=60,xA--;return eA}}function _(aA){const eA=S(aA);return"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Nl"===eA}function fA(aA){return"Nd"===S(aA)}function iA(aA){const eA=S(aA);return"Pc"===eA||"Pd"===eA||"Pe"===eA||"Pf"===eA||"Pi"===eA||"Po"===eA||"Ps"===eA}function wA(aA){return"Ll"===S(aA)}function IA(aA){return"Lu"===S(aA)}function FA(aA){return"Lt"===S(aA)}function YA(aA){const eA=S(aA);return"Zs"===eA||"Zl"===eA||"Zp"===eA}function HA(aA){const eA=S(aA);return"Nd"===eA||"No"===eA||"Nl"===eA||"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Me"===eA||"Mc"===eA}function J(aA){const eA=S(aA);return"Mn"===eA||"Me"===eA||"Mc"===eA}var BA={getCategory:S,getCombiningClass:z,getScript:F,getEastAsianWidth:$,getNumericValue:gA,isAlphabetic:_,isDigit:fA,isPunctuation:iA,isLowerCase:wA,isUpperCase:IA,isTitleCase:FA,isWhiteSpace:YA,isBaseForm:HA,isMark:J}},43267:function(b){"use strict";b.exports=JSON.parse('[["8740","\u43f0\u4c32\u4603\u45a6\u4578\u{27267}\u4d77\u45b3\u{27cb1}\u4ce2\u{27cc5}\u3b95\u4736\u4744\u4c47\u4c40\u{242bf}\u{23617}\u{27352}\u{26e8b}\u{270d2}\u4c57\u{2a351}\u474f\u45da\u4c85\u{27c6c}\u4d07\u4aa4\u46a1\u{26b23}\u7225\u{25a54}\u{21a63}\u{23e06}\u{23f61}\u664d\u56fb"],["8767","\u7d95\u591d\u{28bb9}\u3df4\u9734\u{27bef}\u5bdb\u{21d5e}\u5aa4\u3625\u{29eb0}\u5ad1\u5bb7\u5cfc\u676e\u8593\u{29945}\u7461\u749d\u3875\u{21d53}\u{2369e}\u{26021}\u3eec"],["87a1","\u{258de}\u3af5\u7afc\u9f97\u{24161}\u{2890d}\u{231ea}\u{20a8a}\u{2325e}\u430a\u8484\u9f96\u942f\u4930\u8613\u5896\u974a\u9218\u79d0\u7a32\u6660\u6a29\u889d\u744c\u7bc5\u6782\u7a2c\u524f\u9046\u34e6\u73c4\u{25db9}\u74c6\u9fc7\u57b3\u492f\u544c\u4131\u{2368e}\u5818\u7a72\u{27b65}\u8b8f\u46ae\u{26e88}\u4181\u{25d99}\u7bae\u{224bc}\u9fc8\u{224c1}\u{224c9}\u{224cc}\u9fc9\u8504\u{235bb}\u40b4\u9fca\u44e1\u{2adff}\u62c1\u706e\u9fcb"],["8840","\u31c0",4,"\u{2010c}\u31c5\u{200d1}\u{200cd}\u31c6\u31c7\u{200cb}\u{21fe8}\u31c8\u{200ca}\u31c9\u31ca\u31cb\u31cc\u{2010e}\u31cd\u31ce\u0100\xc1\u01cd\xc0\u0112\xc9\u011a\xc8\u014c\xd3\u01d1\xd2\u0fff\xca\u0304\u1ebe\u0fff\xca\u030c\u1ec0\xca\u0101\xe1\u01ce\xe0\u0251\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da"],["88a1","\u01dc\xfc\u0fff\xea\u0304\u1ebf\u0fff\xea\u030c\u1ec1\xea\u0261\u23da\u23db"],["8940","\u{2a3a9}\u{21145}"],["8943","\u650a"],["8946","\u4e3d\u6edd\u9d4e\u91df"],["894c","\u{27735}\u6491\u4f1a\u4f28\u4fa8\u5156\u5174\u519c\u51e4\u52a1\u52a8\u533b\u534e\u53d1\u53d8\u56e2\u58f0\u5904\u5907\u5932\u5934\u5b66\u5b9e\u5b9f\u5c9a\u5e86\u603b\u6589\u67fe\u6804\u6865\u6d4e\u70bc\u7535\u7ea4\u7eac\u7eba\u7ec7\u7ecf\u7edf\u7f06\u7f37\u827a\u82cf\u836f\u89c6\u8bbe\u8be2\u8f66\u8f67\u8f6e"],["89a1","\u7411\u7cfc\u7dcd\u6946\u7ac9\u5227"],["89ab","\u918c\u78b8\u915e\u80bc"],["89b0","\u8d0b\u80f6\u{209e7}"],["89b5","\u809f\u9ec7\u4ccd\u9dc9\u9e0c\u4c3e\u{29df6}\u{2700e}\u9e0a\u{2a133}\u35c1"],["89c1","\u6e9a\u823e\u7519"],["89c5","\u4911\u9a6c\u9a8f\u9f99\u7987\u{2846c}\u{21dca}\u{205d0}\u{22ae6}\u4e24\u4e81\u4e80\u4e87\u4ebf\u4eeb\u4f37\u344c\u4fbd\u3e48\u5003\u5088\u347d\u3493\u34a5\u5186\u5905\u51db\u51fc\u5205\u4e89\u5279\u5290\u5327\u35c7\u53a9\u3551\u53b0\u3553\u53c2\u5423\u356d\u3572\u3681\u5493\u54a3\u54b4\u54b9\u54d0\u54ef\u5518\u5523\u5528\u3598\u553f\u35a5\u35bf\u55d7\u35c5"],["8a40","\u{27d84}\u5525"],["8a43","\u{20c42}\u{20d15}\u{2512b}\u5590\u{22cc6}\u39ec\u{20341}\u8e46\u{24db8}\u{294e5}\u4053\u{280be}\u777a\u{22c38}\u3a34\u47d5\u{2815d}\u{269f2}\u{24dea}\u64dd\u{20d7c}\u{20fb4}\u{20cd5}\u{210f4}\u648d\u8e7e\u{20e96}\u{20c0b}\u{20f64}\u{22ca9}\u{28256}\u{244d3}"],["8a64","\u{20d46}\u{29a4d}\u{280e9}\u47f4\u{24ea7}\u{22cc2}\u9ab2\u3a67\u{295f4}\u3fed\u3506\u{252c7}\u{297d4}\u{278c8}\u{22d44}\u9d6e\u9815"],["8a76","\u43d9\u{260a5}\u64b4\u54e3\u{22d4c}\u{22bca}\u{21077}\u39fb\u{2106f}"],["8aa1","\u{266da}\u{26716}\u{279a0}\u64ea\u{25052}\u{20c43}\u8e68\u{221a1}\u{28b4c}\u{20731}"],["8aac","\u480b\u{201a9}\u3ffa\u5873\u{22d8d}"],["8ab2","\u{245c8}\u{204fc}\u{26097}\u{20f4c}\u{20d96}\u5579\u40bb\u43ba"],["8abb","\u4ab4\u{22a66}\u{2109d}\u81aa\u98f5\u{20d9c}\u6379\u39fe\u{22775}\u8dc0\u56a1\u647c\u3e43"],["8ac9","\u{2a601}\u{20e09}\u{22acf}\u{22cc9}"],["8ace","\u{210c8}\u{239c2}\u3992\u3a06\u{2829b}\u3578\u{25e49}\u{220c7}\u5652\u{20f31}\u{22cb2}\u{29720}\u34bc\u6c3d\u{24e3b}"],["8adf","\u{27574}\u{22e8b}\u{22208}\u{2a65b}\u{28ccd}\u{20e7a}\u{20c34}\u{2681c}\u7f93\u{210cf}\u{22803}\u{22939}\u35fb\u{251e3}\u{20e8c}\u{20f8d}\u{20eaa}\u3f93\u{20f30}\u{20d47}\u{2114f}\u{20e4c}"],["8af6","\u{20eab}\u{20ba9}\u{20d48}\u{210c0}\u{2113d}\u3ff9\u{22696}\u6432\u{20fad}"],["8b40","\u{233f4}\u{27639}\u{22bce}\u{20d7e}\u{20d7f}\u{22c51}\u{22c55}\u3a18\u{20e98}\u{210c7}\u{20f2e}\u{2a632}\u{26b50}\u{28cd2}\u{28d99}\u{28cca}\u95aa\u54cc\u82c4\u55b9"],["8b55","\u{29ec3}\u9c26\u9ab6\u{2775e}\u{22dee}\u7140\u816d\u80ec\u5c1c\u{26572}\u8134\u3797\u535f\u{280bd}\u91b6\u{20efa}\u{20e0f}\u{20e77}\u{20efb}\u35dd\u{24deb}\u3609\u{20cd6}\u56af\u{227b5}\u{210c9}\u{20e10}\u{20e78}\u{21078}\u{21148}\u{28207}\u{21455}\u{20e79}\u{24e50}\u{22da4}\u5a54\u{2101d}\u{2101e}\u{210f5}\u{210f6}\u579c\u{20e11}"],["8ba1","\u{27694}\u{282cd}\u{20fb5}\u{20e7b}\u{2517e}\u3703\u{20fb6}\u{21180}\u{252d8}\u{2a2bd}\u{249da}\u{2183a}\u{24177}\u{2827c}\u5899\u5268\u361a\u{2573d}\u7bb2\u5b68\u4800\u4b2c\u9f27\u49e7\u9c1f\u9b8d\u{25b74}\u{2313d}\u55fb\u35f2\u5689\u4e28\u5902\u{21bc1}\u{2f878}\u9751\u{20086}\u4e5b\u4ebb\u353e\u5c23\u5f51\u5fc4\u38fa\u624c\u6535\u6b7a\u6c35\u6c3a\u706c\u722b\u4e2c\u72ad\u{248e9}\u7f52\u793b\u7cf9\u7f53\u{2626a}\u34c1"],["8bde","\u{2634b}\u8002\u8080\u{26612}\u{26951}\u535d\u8864\u89c1\u{278b2}\u8ba0\u8d1d\u9485\u9578\u957f\u95e8\u{28e0f}\u97e6\u9875\u98ce\u98de\u9963\u{29810}\u9c7c\u9e1f\u9ec4\u6b6f\uf907\u4e37\u{20087}\u961d\u6237\u94a2"],["8c40","\u503b\u6dfe\u{29c73}\u9fa6\u3dc9\u888f\u{2414e}\u7077\u5cf5\u4b20\u{251cd}\u3559\u{25d30}\u6122\u{28a32}\u8fa7\u91f6\u7191\u6719\u73ba\u{23281}\u{2a107}\u3c8b\u{21980}\u4b10\u78e4\u7402\u51ae\u{2870f}\u4009\u6a63\u{2a2ba}\u4223\u860f\u{20a6f}\u7a2a\u{29947}\u{28aea}\u9755\u704d\u5324\u{2207e}\u93f4\u76d9\u{289e3}\u9fa7\u77dd\u4ea3\u4ff0\u50bc\u4e2f\u4f17\u9fa8\u5434\u7d8b\u5892\u58d0\u{21db6}\u5e92\u5e99\u5fc2\u{22712}\u658b"],["8ca1","\u{233f9}\u6919\u6a43\u{23c63}\u6cff"],["8ca7","\u7200\u{24505}\u738c\u3edb\u{24a13}\u5b15\u74b9\u8b83\u{25ca4}\u{25695}\u7a93\u7bec\u7cc3\u7e6c\u82f8\u8597\u9fa9\u8890\u9faa\u8eb9\u9fab\u8fcf\u855f\u99e0\u9221\u9fac\u{28db9}\u{2143f}\u4071\u42a2\u5a1a"],["8cc9","\u9868\u676b\u4276\u573d"],["8cce","\u85d6\u{2497b}\u82bf\u{2710d}\u4c81\u{26d74}\u5d7b\u{26b15}\u{26fbe}\u9fad\u9fae\u5b96\u9faf\u66e7\u7e5b\u6e57\u79ca\u3d88\u44c3\u{23256}\u{22796}\u439a\u4536"],["8ce6","\u5cd5\u{23b1a}\u8af9\u5c78\u3d12\u{23551}\u5d78\u9fb2\u7157\u4558\u{240ec}\u{21e23}\u4c77\u3978\u344a\u{201a4}\u{26c41}\u8acc\u4fb4\u{20239}\u59bf\u816c\u9856\u{298fa}\u5f3b"],["8d40","\u{20b9f}"],["8d42","\u{221c1}\u{2896d}\u4102\u46bb\u{29079}\u3f07\u9fb3\u{2a1b5}\u40f8\u37d6\u46f7\u{26c46}\u417c\u{286b2}\u{273ff}\u456d\u38d4\u{2549a}\u4561\u451b\u4d89\u4c7b\u4d76\u45ea\u3fc8\u{24b0f}\u3661\u44de\u44bd\u41ed\u5d3e\u5d48\u5d56\u3dfc\u380f\u5da4\u5db9\u3820\u3838\u5e42\u5ebd\u5f25\u5f83\u3908\u3914\u393f\u394d\u60d7\u613d\u5ce5\u3989\u61b7\u61b9\u61cf\u39b8\u622c\u6290\u62e5\u6318\u39f8\u56b1"],["8da1","\u3a03\u63e2\u63fb\u6407\u645a\u3a4b\u64c0\u5d15\u5621\u9f9f\u3a97\u6586\u3abd\u65ff\u6653\u3af2\u6692\u3b22\u6716\u3b42\u67a4\u6800\u3b58\u684a\u6884\u3b72\u3b71\u3b7b\u6909\u6943\u725c\u6964\u699f\u6985\u3bbc\u69d6\u3bdd\u6a65\u6a74\u6a71\u6a82\u3bec\u6a99\u3bf2\u6aab\u6ab5\u6ad4\u6af6\u6b81\u6bc1\u6bea\u6c75\u6caa\u3ccb\u6d02\u6d06\u6d26\u6d81\u3cef\u6da4\u6db1\u6e15\u6e18\u6e29\u6e86\u{289c0}\u6ebb\u6ee2\u6eda\u9f7f\u6ee8\u6ee9\u6f24\u6f34\u3d46\u{23f41}\u6f81\u6fbe\u3d6a\u3d75\u71b7\u5c99\u3d8a\u702c\u3d91\u7050\u7054\u706f\u707f\u7089\u{20325}\u43c1\u35f1\u{20ed8}"],["8e40","\u{23ed7}\u57be\u{26ed3}\u713e\u{257e0}\u364e\u69a2\u{28be9}\u5b74\u7a49\u{258e1}\u{294d9}\u7a65\u7a7d\u{259ac}\u7abb\u7ab0\u7ac2\u7ac3\u71d1\u{2648d}\u41ca\u7ada\u7add\u7aea\u41ef\u54b2\u{25c01}\u7b0b\u7b55\u7b29\u{2530e}\u{25cfe}\u7ba2\u7b6f\u839c\u{25bb4}\u{26c7f}\u7bd0\u8421\u7b92\u7bb8\u{25d20}\u3dad\u{25c65}\u8492\u7bfa\u7c06\u7c35\u{25cc1}\u7c44\u7c83\u{24882}\u7ca6\u667d\u{24578}\u7cc9\u7cc7\u7ce6\u7c74\u7cf3\u7cf5\u7cce"],["8ea1","\u7e67\u451d\u{26e44}\u7d5d\u{26ed6}\u748d\u7d89\u7dab\u7135\u7db3\u7dd2\u{24057}\u{26029}\u7de4\u3d13\u7df5\u{217f9}\u7de5\u{2836d}\u7e1d\u{26121}\u{2615a}\u7e6e\u7e92\u432b\u946c\u7e27\u7f40\u7f41\u7f47\u7936\u{262d0}\u99e1\u7f97\u{26351}\u7fa3\u{21661}\u{20068}\u455c\u{23766}\u4503\u{2833a}\u7ffa\u{26489}\u8005\u8008\u801d\u8028\u802f\u{2a087}\u{26cc3}\u803b\u803c\u8061\u{22714}\u4989\u{26626}\u{23de3}\u{266e8}\u6725\u80a7\u{28a48}\u8107\u811a\u58b0\u{226f6}\u6c7f\u{26498}\u{24fb8}\u64e7\u{2148a}\u8218\u{2185e}\u6a53\u{24a65}\u{24a95}\u447a\u8229\u{20b0d}\u{26a52}\u{23d7e}\u4ff9\u{214fd}\u84e2\u8362\u{26b0a}\u{249a7}\u{23530}\u{21773}\u{23df8}\u82aa\u691b\u{2f994}\u41db"],["8f40","\u854b\u82d0\u831a\u{20e16}\u{217b4}\u36c1\u{2317d}\u{2355a}\u827b\u82e2\u8318\u{23e8b}\u{26da3}\u{26b05}\u{26b97}\u{235ce}\u3dbf\u831d\u55ec\u8385\u450b\u{26da5}\u83ac\u83c1\u83d3\u347e\u{26ed4}\u6a57\u855a\u3496\u{26e42}\u{22eef}\u8458\u{25be4}\u8471\u3dd3\u44e4\u6aa7\u844a\u{23cb5}\u7958\u84a8\u{26b96}\u{26e77}\u{26e43}\u84de\u840f\u8391\u44a0\u8493\u84e4\u{25c91}\u4240\u{25cc0}\u4543\u8534\u5af2\u{26e99}\u4527\u8573\u4516\u67bf\u8616"],["8fa1","\u{28625}\u{2863b}\u85c1\u{27088}\u8602\u{21582}\u{270cd}\u{2f9b2}\u456a\u8628\u3648\u{218a2}\u53f7\u{2739a}\u867e\u8771\u{2a0f8}\u87ee\u{22c27}\u87b1\u87da\u880f\u5661\u866c\u6856\u460f\u8845\u8846\u{275e0}\u{23db9}\u{275e4}\u885e\u889c\u465b\u88b4\u88b5\u63c1\u88c5\u7777\u{2770f}\u8987\u898a\u89a6\u89a9\u89a7\u89bc\u{28a25}\u89e7\u{27924}\u{27abd}\u8a9c\u7793\u91fe\u8a90\u{27a59}\u7ae9\u{27b3a}\u{23f8f}\u4713\u{27b38}\u717c\u8b0c\u8b1f\u{25430}\u{25565}\u8b3f\u8b4c\u8b4d\u8aa9\u{24a7a}\u8b90\u8b9b\u8aaf\u{216df}\u4615\u884f\u8c9b\u{27d54}\u{27d8f}\u{2f9d4}\u3725\u{27d53}\u8cd6\u{27d98}\u{27dbd}\u8d12\u8d03\u{21910}\u8cdb\u705c\u8d11\u{24cc9}\u3ed0\u8d77"],["9040","\u8da9\u{28002}\u{21014}\u{2498a}\u3b7c\u{281bc}\u{2710c}\u7ae7\u8ead\u8eb6\u8ec3\u92d4\u8f19\u8f2d\u{28365}\u{28412}\u8fa5\u9303\u{2a29f}\u{20a50}\u8fb3\u492a\u{289de}\u{2853d}\u{23dbb}\u5ef8\u{23262}\u8ff9\u{2a014}\u{286bc}\u{28501}\u{22325}\u3980\u{26ed7}\u9037\u{2853c}\u{27abe}\u9061\u{2856c}\u{2860b}\u90a8\u{28713}\u90c4\u{286e6}\u90ae\u90fd\u9167\u3af0\u91a9\u91c4\u7cac\u{28933}\u{21e89}\u920e\u6c9f\u9241\u9262\u{255b9}\u92b9\u{28ac6}\u{23c9b}\u{28b0c}\u{255db}"],["90a1","\u{20d31}\u932c\u936b\u{28ae1}\u{28beb}\u708f\u5ac3\u{28ae2}\u{28ae5}\u4965\u9244\u{28bec}\u{28c39}\u{28bff}\u9373\u945b\u8ebc\u9585\u95a6\u9426\u95a0\u6ff6\u42b9\u{2267a}\u{286d8}\u{2127c}\u{23e2e}\u49df\u6c1c\u967b\u9696\u416c\u96a3\u{26ed5}\u61da\u96b6\u78f5\u{28ae0}\u96bd\u53cc\u49a1\u{26cb8}\u{20274}\u{26410}\u{290af}\u{290e5}\u{24ad1}\u{21915}\u{2330a}\u9731\u8642\u9736\u4a0f\u453d\u4585\u{24ae9}\u7075\u5b41\u971b\u975c\u{291d5}\u9757\u5b4a\u{291eb}\u975f\u9425\u50d0\u{230b7}\u{230bc}\u9789\u979f\u97b1\u97be\u97c0\u97d2\u97e0\u{2546c}\u97ee\u741c\u{29433}\u97ff\u97f5\u{2941d}\u{2797a}\u4ad1\u9834\u9833\u984b\u9866\u3b0e\u{27175}\u3d51\u{20630}\u{2415c}"],["9140","\u{25706}\u98ca\u98b7\u98c8\u98c7\u4aff\u{26d27}\u{216d3}\u55b0\u98e1\u98e6\u98ec\u9378\u9939\u{24a29}\u4b72\u{29857}\u{29905}\u99f5\u9a0c\u9a3b\u9a10\u9a58\u{25725}\u36c4\u{290b1}\u{29bd5}\u9ae0\u9ae2\u{29b05}\u9af4\u4c0e\u9b14\u9b2d\u{28600}\u5034\u9b34\u{269a8}\u38c3\u{2307d}\u9b50\u9b40\u{29d3e}\u5a45\u{21863}\u9b8e\u{2424b}\u9c02\u9bff\u9c0c\u{29e68}\u9dd4\u{29fb7}\u{2a192}\u{2a1ab}\u{2a0e1}\u{2a123}\u{2a1df}\u9d7e\u9d83\u{2a134}\u9e0e\u6888"],["91a1","\u9dc4\u{2215b}\u{2a193}\u{2a220}\u{2193b}\u{2a233}\u9d39\u{2a0b9}\u{2a2b4}\u9e90\u9e95\u9e9e\u9ea2\u4d34\u9eaa\u9eaf\u{24364}\u9ec1\u3b60\u39e5\u3d1d\u4f32\u37be\u{28c2b}\u9f02\u9f08\u4b96\u9424\u{26da2}\u9f17\u9f16\u9f39\u569f\u568a\u9f45\u99b8\u{2908b}\u97f2\u847f\u9f62\u9f69\u7adc\u9f8e\u7216\u4bbe\u{24975}\u{249bb}\u7177\u{249f8}\u{24348}\u{24a51}\u739e\u{28bda}\u{218fa}\u799f\u{2897e}\u{28e36}\u9369\u93f3\u{28a44}\u92ec\u9381\u93cb\u{2896c}\u{244b9}\u7217\u3eeb\u7772\u7a43\u70d0\u{24473}\u{243f8}\u717e\u{217ef}\u70a3\u{218be}\u{23599}\u3ec7\u{21885}\u{2542f}\u{217f8}\u3722\u{216fb}\u{21839}\u36e1\u{21774}\u{218d1}\u{25f4b}\u3723\u{216c0}\u575b\u{24a25}\u{213fe}\u{212a8}"],["9240","\u{213c6}\u{214b6}\u8503\u{236a6}\u8503\u8455\u{24994}\u{27165}\u{23e31}\u{2555c}\u{23efb}\u{27052}\u44f4\u{236ee}\u{2999d}\u{26f26}\u67f9\u3733\u3c15\u3de7\u586c\u{21922}\u6810\u4057\u{2373f}\u{240e1}\u{2408b}\u{2410f}\u{26c21}\u54cb\u569e\u{266b1}\u5692\u{20fdf}\u{20ba8}\u{20e0d}\u93c6\u{28b13}\u939c\u4ef8\u512b\u3819\u{24436}\u4ebc\u{20465}\u{2037f}\u4f4b\u4f8a\u{25651}\u5a68\u{201ab}\u{203cb}\u3999\u{2030a}\u{20414}\u3435\u4f29\u{202c0}\u{28eb3}\u{20275}\u8ada\u{2020c}\u4e98"],["92a1","\u50cd\u510d\u4fa2\u4f03\u{24a0e}\u{23e8a}\u4f42\u502e\u506c\u5081\u4fcc\u4fe5\u5058\u50fc\u5159\u515b\u515d\u515e\u6e76\u{23595}\u{23e39}\u{23ebf}\u6d72\u{21884}\u{23e89}\u51a8\u51c3\u{205e0}\u44dd\u{204a3}\u{20492}\u{20491}\u8d7a\u{28a9c}\u{2070e}\u5259\u52a4\u{20873}\u52e1\u936e\u467a\u718c\u{2438c}\u{20c20}\u{249ac}\u{210e4}\u69d1\u{20e1d}\u7479\u3ede\u7499\u7414\u7456\u7398\u4b8e\u{24abc}\u{2408d}\u53d0\u3584\u720f\u{240c9}\u55b4\u{20345}\u54cd\u{20bc6}\u571d\u925d\u96f4\u9366\u57dd\u578d\u577f\u363e\u58cb\u5a99\u{28a46}\u{216fa}\u{2176f}\u{21710}\u5a2c\u59b8\u928f\u5a7e\u5acf\u5a12\u{25946}\u{219f3}\u{21861}\u{24295}\u36f5\u6d05\u7443\u5a21\u{25e83}"],["9340","\u5a81\u{28bd7}\u{20413}\u93e0\u748c\u{21303}\u7105\u4972\u9408\u{289fb}\u93bd\u37a0\u5c1e\u5c9e\u5e5e\u5e48\u{21996}\u{2197c}\u{23aee}\u5ecd\u5b4f\u{21903}\u{21904}\u3701\u{218a0}\u36dd\u{216fe}\u36d3\u812a\u{28a47}\u{21dba}\u{23472}\u{289a8}\u5f0c\u5f0e\u{21927}\u{217ab}\u5a6b\u{2173b}\u5b44\u8614\u{275fd}\u8860\u607e\u{22860}\u{2262b}\u5fdb\u3eb8\u{225af}\u{225be}\u{29088}\u{26f73}\u61c0\u{2003e}\u{20046}\u{2261b}\u6199\u6198\u6075\u{22c9b}\u{22d07}\u{246d4}\u{2914d}"],["93a1","\u6471\u{24665}\u{22b6a}\u3a29\u{22b22}\u{23450}\u{298ea}\u{22e78}\u6337\u{2a45b}\u64b6\u6331\u63d1\u{249e3}\u{22d67}\u62a4\u{22ca1}\u643b\u656b\u6972\u3bf4\u{2308e}\u{232ad}\u{24989}\u{232ab}\u550d\u{232e0}\u{218d9}\u{2943f}\u66ce\u{23289}\u{231b3}\u3ae0\u4190\u{25584}\u{28b22}\u{2558f}\u{216fc}\u{2555b}\u{25425}\u78ee\u{23103}\u{2182a}\u{23234}\u3464\u{2320f}\u{23182}\u{242c9}\u668e\u{26d24}\u666b\u4b93\u6630\u{27870}\u{21deb}\u6663\u{232d2}\u{232e1}\u661e\u{25872}\u38d1\u{2383a}\u{237bc}\u3b99\u{237a2}\u{233fe}\u74d0\u3b96\u678f\u{2462a}\u68b6\u681e\u3bc4\u6abe\u3863\u{237d5}\u{24487}\u6a33\u6a52\u6ac9\u6b05\u{21912}\u6511\u6898\u6a4c\u3bd7\u6a7a\u6b57\u{23fc0}\u{23c9a}\u93a0\u92f2\u{28bea}\u{28acb}"],["9440","\u9289\u{2801e}\u{289dc}\u9467\u6da5\u6f0b\u{249ec}\u6d67\u{23f7f}\u3d8f\u6e04\u{2403c}\u5a3d\u6e0a\u5847\u6d24\u7842\u713b\u{2431a}\u{24276}\u70f1\u7250\u7287\u7294\u{2478f}\u{24725}\u5179\u{24aa4}\u{205eb}\u747a\u{23ef8}\u{2365f}\u{24a4a}\u{24917}\u{25fe1}\u3f06\u3eb1\u{24adf}\u{28c23}\u{23f35}\u60a7\u3ef3\u74cc\u743c\u9387\u7437\u449f\u{26dea}\u4551\u7583\u3f63\u{24cd9}\u{24d06}\u3f58\u7555\u7673\u{2a5c6}\u3b19\u7468\u{28acc}\u{249ab}\u{2498e}\u3afb"],["94a1","\u3dcd\u{24a4e}\u3eff\u{249c5}\u{248f3}\u91fa\u5732\u9342\u{28ae3}\u{21864}\u50df\u{25221}\u{251e7}\u7778\u{23232}\u770e\u770f\u777b\u{24697}\u{23781}\u3a5e\u{248f0}\u7438\u749b\u3ebf\u{24aba}\u{24ac7}\u40c8\u{24a96}\u{261ae}\u9307\u{25581}\u781e\u788d\u7888\u78d2\u73d0\u7959\u{27741}\u{256e3}\u410e\u799b\u8496\u79a5\u6a2d\u{23efa}\u7a3a\u79f4\u416e\u{216e6}\u4132\u9235\u79f1\u{20d4c}\u{2498c}\u{20299}\u{23dba}\u{2176e}\u3597\u556b\u3570\u36aa\u{201d4}\u{20c0d}\u7ae2\u5a59\u{226f5}\u{25aaf}\u{25a9c}\u5a0d\u{2025b}\u78f0\u5a2a\u{25bc6}\u7afe\u41f9\u7c5d\u7c6d\u4211\u{25bb3}\u{25ebc}\u{25ea6}\u7ccd\u{249f9}\u{217b0}\u7c8e\u7c7c\u7cae\u6ab2\u7ddc\u7e07\u7dd3\u7f4e\u{26261}"],["9540","\u{2615c}\u{27b48}\u7d97\u{25e82}\u426a\u{26b75}\u{20916}\u67d6\u{2004e}\u{235cf}\u57c4\u{26412}\u{263f8}\u{24962}\u7fdd\u7b27\u{2082c}\u{25ae9}\u{25d43}\u7b0c\u{25e0e}\u99e6\u8645\u9a63\u6a1c\u{2343f}\u39e2\u{249f7}\u{265ad}\u9a1f\u{265a0}\u8480\u{27127}\u{26cd1}\u44ea\u8137\u4402\u80c6\u8109\u8142\u{267b4}\u98c3\u{26a42}\u8262\u8265\u{26a51}\u8453\u{26da7}\u8610\u{2721b}\u5a86\u417f\u{21840}\u5b2b\u{218a1}\u5ae4\u{218d8}\u86a0\u{2f9bc}\u{23d8f}\u882d\u{27422}\u5a02"],["95a1","\u886e\u4f45\u8887\u88bf\u88e6\u8965\u894d\u{25683}\u8954\u{27785}\u{27784}\u{28bf5}\u{28bd9}\u{28b9c}\u{289f9}\u3ead\u84a3\u46f5\u46cf\u37f2\u8a3d\u8a1c\u{29448}\u5f4d\u922b\u{24284}\u65d4\u7129\u70c4\u{21845}\u9d6d\u8c9f\u8ce9\u{27ddc}\u599a\u77c3\u59f0\u436e\u36d4\u8e2a\u8ea7\u{24c09}\u8f30\u8f4a\u42f4\u6c58\u6fbb\u{22321}\u489b\u6f79\u6e8b\u{217da}\u9be9\u36b5\u{2492f}\u90bb\u9097\u5571\u4906\u91bb\u9404\u{28a4b}\u4062\u{28afc}\u9427\u{28c1d}\u{28c3b}\u84e5\u8a2b\u9599\u95a7\u9597\u9596\u{28d34}\u7445\u3ec2\u{248ff}\u{24a42}\u{243ea}\u3ee7\u{23225}\u968f\u{28ee7}\u{28e66}\u{28e65}\u3ecc\u{249ed}\u{24a78}\u{23fee}\u7412\u746b\u3efc\u9741\u{290b0}"],["9640","\u6847\u4a1d\u{29093}\u{257df}\u975d\u9368\u{28989}\u{28c26}\u{28b2f}\u{263be}\u92ba\u5b11\u8b69\u493c\u73f9\u{2421b}\u979b\u9771\u9938\u{20f26}\u5dc1\u{28bc5}\u{24ab2}\u981f\u{294da}\u92f6\u{295d7}\u91e5\u44c0\u{28b50}\u{24a67}\u{28b64}\u98dc\u{28a45}\u3f00\u922a\u4925\u8414\u993b\u994d\u{27b06}\u3dfd\u999b\u4b6f\u99aa\u9a5c\u{28b65}\u{258c8}\u6a8f\u9a21\u5afe\u9a2f\u{298f1}\u4b90\u{29948}\u99bc\u4bbd\u4b97\u937d\u5872\u{21302}\u5822\u{249b8}"],["96a1","\u{214e8}\u7844\u{2271f}\u{23db8}\u68c5\u3d7d\u9458\u3927\u6150\u{22781}\u{2296b}\u6107\u9c4f\u9c53\u9c7b\u9c35\u9c10\u9b7f\u9bcf\u{29e2d}\u9b9f\u{2a1f5}\u{2a0fe}\u9d21\u4cae\u{24104}\u9e18\u4cb0\u9d0c\u{2a1b4}\u{2a0ed}\u{2a0f3}\u{2992f}\u9da5\u84bd\u{26e12}\u{26fdf}\u{26b82}\u85fc\u4533\u{26da4}\u{26e84}\u{26df0}\u8420\u85ee\u{26e00}\u{237d7}\u{26064}\u79e2\u{2359c}\u{23640}\u492d\u{249de}\u3d62\u93db\u92be\u9348\u{202bf}\u78b9\u9277\u944d\u4fe4\u3440\u9064\u{2555d}\u783d\u7854\u78b6\u784b\u{21757}\u{231c9}\u{24941}\u369a\u4f72\u6fda\u6fd9\u701e\u701e\u5414\u{241b5}\u57bb\u58f3\u578a\u9d16\u57d7\u7134\u34af\u{241ac}\u71eb\u{26c40}\u{24f97}\u5b28\u{217b5}\u{28a49}"],["9740","\u610c\u5ace\u5a0b\u42bc\u{24488}\u372c\u4b7b\u{289fc}\u93bb\u93b8\u{218d6}\u{20f1d}\u8472\u{26cc0}\u{21413}\u{242fa}\u{22c26}\u{243c1}\u5994\u{23db7}\u{26741}\u7da8\u{2615b}\u{260a4}\u{249b9}\u{2498b}\u{289fa}\u92e5\u73e2\u3ee9\u74b4\u{28b63}\u{2189f}\u3ee1\u{24ab3}\u6ad8\u73f3\u73fb\u3ed6\u{24a3e}\u{24a94}\u{217d9}\u{24a66}\u{203a7}\u{21424}\u{249e5}\u7448\u{24916}\u70a5\u{24976}\u9284\u73e6\u935f\u{204fe}\u9331\u{28ace}\u{28a16}\u9386\u{28be7}\u{255d5}\u4935\u{28a82}\u716b"],["97a1","\u{24943}\u{20cff}\u56a4\u{2061a}\u{20beb}\u{20cb8}\u5502\u79c4\u{217fa}\u7dfe\u{216c2}\u{24a50}\u{21852}\u452e\u9401\u370a\u{28ac0}\u{249ad}\u59b0\u{218bf}\u{21883}\u{27484}\u5aa1\u36e2\u{23d5b}\u36b0\u925f\u5a79\u{28a81}\u{21862}\u9374\u3ccd\u{20ab4}\u4a96\u398a\u50f4\u3d69\u3d4c\u{2139c}\u7175\u42fb\u{28218}\u6e0f\u{290e4}\u44eb\u6d57\u{27e4f}\u7067\u6caf\u3cd6\u{23fed}\u{23e2d}\u6e02\u6f0c\u3d6f\u{203f5}\u7551\u36bc\u34c8\u4680\u3eda\u4871\u59c4\u926e\u493e\u8f41\u{28c1c}\u{26bc0}\u5812\u57c8\u36d6\u{21452}\u70fe\u{24362}\u{24a71}\u{22fe3}\u{212b0}\u{223bd}\u68b9\u6967\u{21398}\u{234e5}\u{27bf4}\u{236df}\u{28a83}\u{237d6}\u{233fa}\u{24c9f}\u6a1a\u{236ad}\u{26cb7}\u843e\u44df\u44ce"],["9840","\u{26d26}\u{26d51}\u{26c82}\u{26fde}\u6f17\u{27109}\u833d\u{2173a}\u83ed\u{26c80}\u{27053}\u{217db}\u5989\u5a82\u{217b3}\u5a61\u5a71\u{21905}\u{241fc}\u372d\u59ef\u{2173c}\u36c7\u718e\u9390\u669a\u{242a5}\u5a6e\u5a2b\u{24293}\u6a2b\u{23ef9}\u{27736}\u{2445b}\u{242ca}\u711d\u{24259}\u{289e1}\u4fb0\u{26d28}\u5cc2\u{244ce}\u{27e4d}\u{243bd}\u6a0c\u{24256}\u{21304}\u70a6\u7133\u{243e9}\u3da5\u6cdf\u{2f825}\u{24a4f}\u7e65\u59eb\u5d2f\u3df3\u5f5c\u{24a5d}\u{217df}\u7da4\u8426"],["98a1","\u5485\u{23afa}\u{23300}\u{20214}\u577e\u{208d5}\u{20619}\u3fe5\u{21f9e}\u{2a2b6}\u7003\u{2915b}\u5d70\u738f\u7cd3\u{28a59}\u{29420}\u4fc8\u7fe7\u72cd\u7310\u{27af4}\u7338\u7339\u{256f6}\u7341\u7348\u3ea9\u{27b18}\u906c\u71f5\u{248f2}\u73e1\u81f6\u3eca\u770c\u3ed1\u6ca2\u56fd\u7419\u741e\u741f\u3ee2\u3ef0\u3ef4\u3efa\u74d3\u3f0e\u3f53\u7542\u756d\u7572\u758d\u3f7c\u75c8\u75dc\u3fc0\u764d\u3fd7\u7674\u3fdc\u767a\u{24f5c}\u7188\u5623\u8980\u5869\u401d\u7743\u4039\u6761\u4045\u35db\u7798\u406a\u406f\u5c5e\u77be\u77cb\u58f2\u7818\u70b9\u781c\u40a8\u7839\u7847\u7851\u7866\u8448\u{25535}\u7933\u6803\u7932\u4103"],["9940","\u4109\u7991\u7999\u8fbb\u7a06\u8fbc\u4167\u7a91\u41b2\u7abc\u8279\u41c4\u7acf\u7adb\u41cf\u4e21\u7b62\u7b6c\u7b7b\u7c12\u7c1b\u4260\u427a\u7c7b\u7c9c\u428c\u7cb8\u4294\u7ced\u8f93\u70c0\u{20ccf}\u7dcf\u7dd4\u7dd0\u7dfd\u7fae\u7fb4\u729f\u4397\u8020\u8025\u7b39\u802e\u8031\u8054\u3dcc\u57b4\u70a0\u80b7\u80e9\u43ed\u810c\u732a\u810e\u8112\u7560\u8114\u4401\u3b39\u8156\u8159\u815a"],["99a1","\u4413\u583a\u817c\u8184\u4425\u8193\u442d\u81a5\u57ef\u81c1\u81e4\u8254\u448f\u82a6\u8276\u82ca\u82d8\u82ff\u44b0\u8357\u9669\u698a\u8405\u70f5\u8464\u60e3\u8488\u4504\u84be\u84e1\u84f8\u8510\u8538\u8552\u453b\u856f\u8570\u85e0\u4577\u8672\u8692\u86b2\u86ef\u9645\u878b\u4606\u4617\u88ae\u88ff\u8924\u8947\u8991\u{27967}\u8a29\u8a38\u8a94\u8ab4\u8c51\u8cd4\u8cf2\u8d1c\u4798\u585f\u8dc3\u47ed\u4eee\u8e3a\u55d8\u5754\u8e71\u55f5\u8eb0\u4837\u8ece\u8ee2\u8ee4\u8eed\u8ef2\u8fb7\u8fc1\u8fca\u8fcc\u9033\u99c4\u48ad\u98e0\u9213\u491e\u9228\u9258\u926b\u92b1\u92ae\u92bf"],["9a40","\u92e3\u92eb\u92f3\u92f4\u92fd\u9343\u9384\u93ad\u4945\u4951\u9ebf\u9417\u5301\u941d\u942d\u943e\u496a\u9454\u9479\u952d\u95a2\u49a7\u95f4\u9633\u49e5\u67a0\u4a24\u9740\u4a35\u97b2\u97c2\u5654\u4ae4\u60e8\u98b9\u4b19\u98f1\u5844\u990e\u9919\u51b4\u991c\u9937\u9942\u995d\u9962\u4b70\u99c5\u4b9d\u9a3c\u9b0f\u7a83\u9b69\u9b81\u9bdd\u9bf1\u9bf4\u4c6d\u9c20\u376f\u{21bc2}\u9d49\u9c3a"],["9aa1","\u9efe\u5650\u9d93\u9dbd\u9dc0\u9dfc\u94f6\u8fb6\u9e7b\u9eac\u9eb1\u9ebd\u9ec6\u94dc\u9ee2\u9ef1\u9ef8\u7ac8\u9f44\u{20094}\u{202b7}\u{203a0}\u691a\u94c3\u59ac\u{204d7}\u5840\u94c1\u37b9\u{205d5}\u{20615}\u{20676}\u{216ba}\u5757\u7173\u{20ac2}\u{20acd}\u{20bbf}\u546a\u{2f83b}\u{20bcb}\u549e\u{20bfb}\u{20c3b}\u{20c53}\u{20c65}\u{20c7c}\u60e7\u{20c8d}\u567a\u{20cb5}\u{20cdd}\u{20ced}\u{20d6f}\u{20db2}\u{20dc8}\u6955\u9c2f\u87a5\u{20e04}\u{20e0e}\u{20ed7}\u{20f90}\u{20f2d}\u{20e73}\u5c20\u{20fbc}\u5e0b\u{2105c}\u{2104f}\u{21076}\u671e\u{2107b}\u{21088}\u{21096}\u3647\u{210bf}\u{210d3}\u{2112f}\u{2113b}\u5364\u84ad\u{212e3}\u{21375}\u{21336}\u8b81\u{21577}\u{21619}\u{217c3}\u{217c7}\u4e78\u70bb\u{2182d}\u{2196a}"],["9b40","\u{21a2d}\u{21a45}\u{21c2a}\u{21c70}\u{21cac}\u{21ec8}\u62c3\u{21ed5}\u{21f15}\u7198\u6855\u{22045}\u69e9\u36c8\u{2227c}\u{223d7}\u{223fa}\u{2272a}\u{22871}\u{2294f}\u82fd\u{22967}\u{22993}\u{22ad5}\u89a5\u{22ae8}\u8fa0\u{22b0e}\u97b8\u{22b3f}\u9847\u9abd\u{22c4c}"],["9b62","\u{22c88}\u{22cb7}\u{25be8}\u{22d08}\u{22d12}\u{22db7}\u{22d95}\u{22e42}\u{22f74}\u{22fcc}\u{23033}\u{23066}\u{2331f}\u{233de}\u5fb1\u6648\u66bf\u{27a79}\u{23567}\u{235f3}\u7201\u{249ba}\u77d7\u{2361a}\u{23716}\u7e87\u{20346}\u58b5\u670e"],["9ba1","\u6918\u{23aa7}\u{27657}\u{25fe2}\u{23e11}\u{23eb9}\u{275fe}\u{2209a}\u48d0\u4ab8\u{24119}\u{28a9a}\u{242ee}\u{2430d}\u{2403b}\u{24334}\u{24396}\u{24a45}\u{205ca}\u51d2\u{20611}\u599f\u{21ea8}\u3bbe\u{23cff}\u{24404}\u{244d6}\u5788\u{24674}\u399b\u{2472f}\u{285e8}\u{299c9}\u3762\u{221c3}\u8b5e\u{28b4e}\u99d6\u{24812}\u{248fb}\u{24a15}\u7209\u{24ac0}\u{20c78}\u5965\u{24ea5}\u{24f86}\u{20779}\u8eda\u{2502c}\u528f\u573f\u7171\u{25299}\u{25419}\u{23f4a}\u{24aa7}\u55bc\u{25446}\u{2546e}\u{26b52}\u91d4\u3473\u{2553f}\u{27632}\u{2555e}\u4718\u{25562}\u{25566}\u{257c7}\u{2493f}\u{2585d}\u5066\u34fb\u{233cc}\u60de\u{25903}\u477c\u{28948}\u{25aae}\u{25b89}\u{25c06}\u{21d90}\u57a1\u7151\u6fb6\u{26102}\u{27c12}\u9056\u{261b2}\u{24f9a}\u8b62\u{26402}\u{2644a}"],["9c40","\u5d5b\u{26bf7}\u8f36\u{26484}\u{2191c}\u8aea\u{249f6}\u{26488}\u{23fef}\u{26512}\u4bc0\u{265bf}\u{266b5}\u{2271b}\u9465\u{257e1}\u6195\u5a27\u{2f8cd}\u4fbb\u56b9\u{24521}\u{266fc}\u4e6a\u{24934}\u9656\u6d8f\u{26cbd}\u3618\u8977\u{26799}\u{2686e}\u{26411}\u{2685e}\u71df\u{268c7}\u7b42\u{290c0}\u{20a11}\u{26926}\u9104\u{26939}\u7a45\u9df0\u{269fa}\u9a26\u{26a2d}\u365f\u{26469}\u{20021}\u7983\u{26a34}\u{26b5b}\u5d2c\u{23519}\u83cf\u{26b9d}\u46d0\u{26ca4}\u753b\u8865\u{26dae}\u58b6"],["9ca1","\u371c\u{2258d}\u{2704b}\u{271cd}\u3c54\u{27280}\u{27285}\u9281\u{2217a}\u{2728b}\u9330\u{272e6}\u{249d0}\u6c39\u949f\u{27450}\u{20ef8}\u8827\u88f5\u{22926}\u{28473}\u{217b1}\u6eb8\u{24a2a}\u{21820}\u39a4\u36b9\u5c10\u79e3\u453f\u66b6\u{29cad}\u{298a4}\u8943\u{277cc}\u{27858}\u56d6\u40df\u{2160a}\u39a1\u{2372f}\u{280e8}\u{213c5}\u71ad\u8366\u{279dd}\u{291a8}\u5a67\u4cb7\u{270af}\u{289ab}\u{279fd}\u{27a0a}\u{27b0b}\u{27d66}\u{2417a}\u7b43\u797e\u{28009}\u6fb5\u{2a2df}\u6a03\u{28318}\u53a2\u{26e07}\u93bf\u6836\u975d\u{2816f}\u{28023}\u{269b5}\u{213ed}\u{2322f}\u{28048}\u5d85\u{28c30}\u{28083}\u5715\u9823\u{28949}\u5dab\u{24988}\u65be\u69d5\u53d2\u{24aa5}\u{23f81}\u3c11\u6736\u{28090}\u{280f4}\u{2812e}\u{21fa1}\u{2814f}"],["9d40","\u{28189}\u{281af}\u{2821a}\u{28306}\u{2832f}\u{2838a}\u35ca\u{28468}\u{286aa}\u48fa\u63e6\u{28956}\u7808\u9255\u{289b8}\u43f2\u{289e7}\u43df\u{289e8}\u{28b46}\u{28bd4}\u59f8\u{28c09}\u8f0b\u{28fc5}\u{290ec}\u7b51\u{29110}\u{2913c}\u3df7\u{2915e}\u{24aca}\u8fd0\u728f\u568b\u{294e7}\u{295e9}\u{295b0}\u{295b8}\u{29732}\u{298d1}\u{29949}\u{2996a}\u{299c3}\u{29a28}\u{29b0e}\u{29d5a}\u{29d9b}\u7e9f\u{29ef8}\u{29f23}\u4ca4\u9547\u{2a293}\u71a2\u{2a2ff}\u4d91\u9012\u{2a5cb}\u4d9c\u{20c9c}\u8fbe\u55c1"],["9da1","\u8fba\u{224b0}\u8fb9\u{24a93}\u4509\u7e7f\u6f56\u6ab1\u4eea\u34e4\u{28b2c}\u{2789d}\u373a\u8e80\u{217f5}\u{28024}\u{28b6c}\u{28b99}\u{27a3e}\u{266af}\u3deb\u{27655}\u{23cb7}\u{25635}\u{25956}\u4e9a\u{25e81}\u{26258}\u56bf\u{20e6d}\u8e0e\u5b6d\u{23e88}\u{24c9e}\u63de\u62d0\u{217f6}\u{2187b}\u6530\u562d\u{25c4a}\u541a\u{25311}\u3dc6\u{29d98}\u4c7d\u5622\u561e\u7f49\u{25ed8}\u5975\u{23d40}\u8770\u4e1c\u{20fea}\u{20d49}\u{236ba}\u8117\u9d5e\u8d18\u763b\u9c45\u764e\u77b9\u9345\u5432\u8148\u82f7\u5625\u8132\u8418\u80bd\u55ea\u7962\u5643\u5416\u{20e9d}\u35ce\u5605\u55f1\u66f1\u{282e2}\u362d\u7534\u55f0\u55ba\u5497\u5572\u{20c41}\u{20c96}\u5ed0\u{25148}\u{20e76}\u{22c62}"],["9e40","\u{20ea2}\u9eab\u7d5a\u55de\u{21075}\u629d\u976d\u5494\u8ccd\u71f6\u9176\u63fc\u63b9\u63fe\u5569\u{22b43}\u9c72\u{22eb3}\u519a\u34df\u{20da7}\u51a7\u544d\u551e\u5513\u7666\u8e2d\u{2688a}\u75b1\u80b6\u8804\u8786\u88c7\u81b6\u841c\u{210c1}\u44ec\u7304\u{24706}\u5b90\u830b\u{26893}\u567b\u{226f4}\u{27d2f}\u{241a3}\u{27d73}\u{26ed0}\u{272b6}\u9170\u{211d9}\u9208\u{23cfc}\u{2a6a9}\u{20eac}\u{20ef9}\u7266\u{21ca2}\u474e\u{24fc2}\u{27ff9}\u{20feb}\u40fa"],["9ea1","\u9c5d\u651f\u{22da0}\u48f3\u{247e0}\u{29d7c}\u{20fec}\u{20e0a}\u6062\u{275a3}\u{20fed}"],["9ead","\u{26048}\u{21187}\u71a3\u7e8e\u9d50\u4e1a\u4e04\u3577\u5b0d\u6cb2\u5367\u36ac\u39dc\u537d\u36a5\u{24618}\u589a\u{24b6e}\u822d\u544b\u57aa\u{25a95}\u{20979}"],["9ec5","\u3a52\u{22465}\u7374\u{29eac}\u4d09\u9bed\u{23cfe}\u{29f30}\u4c5b\u{24fa9}\u{2959e}\u{29fde}\u845c\u{23db6}\u{272b2}\u{267b3}\u{23720}\u632e\u7d25\u{23ef7}\u{23e2c}\u3a2a\u9008\u52cc\u3e74\u367a\u45e9\u{2048e}\u7640\u5af0\u{20eb6}\u787a\u{27f2e}\u58a7\u40bf\u567c\u9b8b\u5d74\u7654\u{2a434}\u9e85\u4ce1\u75f9\u37fb\u6119\u{230da}\u{243f2}"],["9ef5","\u565d\u{212a9}\u57a7\u{24963}\u{29e06}\u5234\u{270ae}\u35ad\u6c4a\u9d7c"],["9f40","\u7c56\u9b39\u57de\u{2176c}\u5c53\u64d3\u{294d0}\u{26335}\u{27164}\u86ad\u{20d28}\u{26d22}\u{24ae2}\u{20d71}"],["9f4f","\u51fe\u{21f0f}\u5d8e\u9703\u{21dd1}\u9e81\u904c\u7b1f\u9b02\u5cd1\u7ba3\u6268\u6335\u9aff\u7bcf\u9b2a\u7c7e\u9b2e\u7c42\u7c86\u9c15\u7bfc\u9b09\u9f17\u9c1b\u{2493e}\u9f5a\u5573\u5bc3\u4ffd\u9e98\u4ff2\u5260\u3e06\u52d1\u5767\u5056\u59b7\u5e12\u97c8\u9dab\u8f5c\u5469\u97b4\u9940\u97ba\u532c\u6130"],["9fa1","\u692c\u53da\u9c0a\u9d02\u4c3b\u9641\u6980\u50a6\u7546\u{2176d}\u99da\u5273"],["9fae","\u9159\u9681\u915c"],["9fb2","\u9151\u{28e97}\u637f\u{26d23}\u6aca\u5611\u918e\u757a\u6285\u{203fc}\u734f\u7c70\u{25c21}\u{23cfd}"],["9fc1","\u{24919}\u76d6\u9b9d\u4e2a\u{20cd4}\u83be\u8842"],["9fc9","\u5c4a\u69c0\u50ed\u577a\u521f\u5df5\u4ece\u6c31\u{201f2}\u4f39\u549c\u54da\u529a\u8d82\u35fe\u5f0c\u35f3"],["9fdb","\u6b52\u917c\u9fa5\u9b97\u982e\u98b4\u9aba\u9ea8\u9e84\u717a\u7b14"],["9fe7","\u6bfa\u8818\u7f78"],["9feb","\u5620\u{2a64a}\u8e77\u9f53"],["9ff0","\u8dd4\u8e4f\u9e1c\u8e01\u6282\u{2837d}\u8e28\u8e75\u7ad3\u{24a77}\u7a3e\u78d8\u6cea\u8a67\u7607"],["a040","\u{28a5a}\u9f26\u6cce\u87d6\u75c3\u{2a2b2}\u7853\u{2f840}\u8d0c\u72e2\u7371\u8b2d\u7302\u74f1\u8ceb\u{24abb}\u862f\u5fba\u88a0\u44b7"],["a055","\u{2183b}\u{26e05}"],["a058","\u8a7e\u{2251b}"],["a05b","\u60fd\u7667\u9ad7\u9d44\u936e\u9b8f\u87f5"],["a063","\u880f\u8cf7\u732c\u9721\u9bb0\u35d6\u72b2\u4c07\u7c51\u994a\u{26159}\u6159\u4c04\u9e96\u617d"],["a073","\u575f\u616f\u62a6\u6239\u62ce\u3a5c\u61e2\u53aa\u{233f5}\u6364\u6802\u35d2"],["a0a1","\u5d57\u{28bc2}\u8fda\u{28e39}"],["a0a6","\u50d9\u{21d46}\u7906\u5332\u9638\u{20f3b}\u4065"],["a0ae","\u77fe"],["a0b0","\u7cc2\u{25f1a}\u7cda\u7a2d\u8066\u8063\u7d4d\u7505\u74f2\u8994\u821a\u670c\u8062\u{27486}\u805b\u74f0\u8103\u7724\u8989\u{267cc}\u7553\u{26ed1}\u87a9\u87ce\u81c8\u878c\u8a49\u8cad\u8b43\u772b\u74f8\u84da\u3635\u69b2\u8da6"],["a0d4","\u89a9\u7468\u6db9\u87c1\u{24011}\u74e7\u3ddb\u7176\u60a4\u619c\u3cd1\u7162\u6077"],["a0e2","\u7f71\u{28b2d}\u7250\u60e9\u4b7e\u5220\u3c18\u{23cc7}\u{25ed7}\u{27656}\u{25531}\u{21944}\u{212fe}\u{29903}\u{26ddc}\u{270ad}\u5cc1\u{261ad}\u{28a0f}\u{23677}\u{200ee}\u{26846}\u{24f0e}\u4562\u5b1f\u{2634c}\u9f50\u9ea6\u{2626b}"],["a3c0","\u2400",31,"\u2421"],["c6a1","\u2460",9,"\u2474",9,"\u2170",9,"\u4e36\u4e3f\u4e85\u4ea0\u5182\u5196\u51ab\u52f9\u5338\u5369\u53b6\u590a\u5b80\u5ddb\u2f33\u5e7f\u5ef4\u5f50\u5f61\u6534\u65e0\u7592\u7676\u8fb5\u96b6\xa8\u02c6\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\uff3b\uff3d\u273d\u3041",23],["c740","\u3059",58,"\u30a1\u30a2\u30a3\u30a4"],["c7a1","\u30a5",81,"\u0410",5,"\u0401\u0416",4],["c840","\u041b",26,"\u0451\u0436",25,"\u21e7\u21b8\u21b9\u31cf\u{200cc}\u4e5a\u{2008a}\u5202\u4491"],["c8a1","\u9fb0\u5188\u9fb1\u{27607}"],["c8cd","\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u309b\u309c\u2e80\u2e84\u2e86\u2e87\u2e88\u2e8a\u2e8c\u2e8d\u2e95\u2e9c\u2e9d\u2ea5\u2ea7\u2eaa\u2eac\u2eae\u2eb6\u2ebc\u2ebe\u2ec6\u2eca\u2ecc\u2ecd\u2ecf\u2ed6\u2ed7\u2ede\u2ee3"],["c8f5","\u0283\u0250\u025b\u0254\u0275\u0153\xf8\u014b\u028a\u026a"],["f9fe","\uffed"],["fa40","\u{20547}\u92db\u{205df}\u{23fc5}\u854c\u42b5\u73ef\u51b5\u3649\u{24942}\u{289e4}\u9344\u{219db}\u82ee\u{23cc8}\u783c\u6744\u62df\u{24933}\u{289aa}\u{202a0}\u{26bb3}\u{21305}\u4fab\u{224ed}\u5008\u{26d29}\u{27a84}\u{23600}\u{24ab1}\u{22513}\u5029\u{2037e}\u5fa4\u{20380}\u{20347}\u6edb\u{2041f}\u507d\u5101\u347a\u510e\u986c\u3743\u8416\u{249a4}\u{20487}\u5160\u{233b4}\u516a\u{20bff}\u{220fc}\u{202e5}\u{22530}\u{2058e}\u{23233}\u{21983}\u5b82\u877d\u{205b3}\u{23c99}\u51b2\u51b8"],["faa1","\u9d34\u51c9\u51cf\u51d1\u3cdc\u51d3\u{24aa6}\u51b3\u51e2\u5342\u51ed\u83cd\u693e\u{2372d}\u5f7b\u520b\u5226\u523c\u52b5\u5257\u5294\u52b9\u52c5\u7c15\u8542\u52e0\u860d\u{26b13}\u5305\u{28ade}\u5549\u6ed9\u{23f80}\u{20954}\u{23fec}\u5333\u5344\u{20be2}\u6ccb\u{21726}\u681b\u73d5\u604a\u3eaa\u38cc\u{216e8}\u71dd\u44a2\u536d\u5374\u{286ab}\u537e\u537f\u{21596}\u{21613}\u77e6\u5393\u{28a9b}\u53a0\u53ab\u53ae\u73a7\u{25772}\u3f59\u739c\u53c1\u53c5\u6c49\u4e49\u57fe\u53d9\u3aab\u{20b8f}\u53e0\u{23feb}\u{22da3}\u53f6\u{20c77}\u5413\u7079\u552b\u6657\u6d5b\u546d\u{26b53}\u{20d74}\u555d\u548f\u54a4\u47a6\u{2170d}\u{20edd}\u3db4\u{20d4d}"],["fb40","\u{289bc}\u{22698}\u5547\u4ced\u542f\u7417\u5586\u55a9\u5605\u{218d7}\u{2403a}\u4552\u{24435}\u66b3\u{210b4}\u5637\u66cd\u{2328a}\u66a4\u66ad\u564d\u564f\u78f1\u56f1\u9787\u53fe\u5700\u56ef\u56ed\u{28b66}\u3623\u{2124f}\u5746\u{241a5}\u6c6e\u708b\u5742\u36b1\u{26c7e}\u57e6\u{21416}\u5803\u{21454}\u{24363}\u5826\u{24bf5}\u585c\u58aa\u3561\u58e0\u58dc\u{2123c}\u58fb\u5bff\u5743\u{2a150}\u{24278}\u93d3\u35a1\u591f\u68a6\u36c3\u6e59"],["fba1","\u{2163e}\u5a24\u5553\u{21692}\u8505\u59c9\u{20d4e}\u{26c81}\u{26d2a}\u{217dc}\u59d9\u{217fb}\u{217b2}\u{26da6}\u6d71\u{21828}\u{216d5}\u59f9\u{26e45}\u5aab\u5a63\u36e6\u{249a9}\u5a77\u3708\u5a96\u7465\u5ad3\u{26fa1}\u{22554}\u3d85\u{21911}\u3732\u{216b8}\u5e83\u52d0\u5b76\u6588\u5b7c\u{27a0e}\u4004\u485d\u{20204}\u5bd5\u6160\u{21a34}\u{259cc}\u{205a5}\u5bf3\u5b9d\u4d10\u5c05\u{21b44}\u5c13\u73ce\u5c14\u{21ca5}\u{26b28}\u5c49\u48dd\u5c85\u5ce9\u5cef\u5d8b\u{21df9}\u{21e37}\u5d10\u5d18\u5d46\u{21ea4}\u5cba\u5dd7\u82fc\u382d\u{24901}\u{22049}\u{22173}\u8287\u3836\u3bc2\u5e2e\u6a8a\u5e75\u5e7a\u{244bc}\u{20cd3}\u53a6\u4eb7\u5ed0\u53a8\u{21771}\u5e09\u5ef4\u{28482}"],["fc40","\u5ef9\u5efb\u38a0\u5efc\u683e\u941b\u5f0d\u{201c1}\u{2f894}\u3ade\u48ae\u{2133a}\u5f3a\u{26888}\u{223d0}\u5f58\u{22471}\u5f63\u97bd\u{26e6e}\u5f72\u9340\u{28a36}\u5fa7\u5db6\u3d5f\u{25250}\u{21f6a}\u{270f8}\u{22668}\u91d6\u{2029e}\u{28a29}\u6031\u6685\u{21877}\u3963\u3dc7\u3639\u5790\u{227b4}\u7971\u3e40\u609e\u60a4\u60b3\u{24982}\u{2498f}\u{27a53}\u74a4\u50e1\u5aa0\u6164\u8424\u6142\u{2f8a6}\u{26ed2}\u6181\u51f4\u{20656}\u6187\u5baa\u{23fb7}"],["fca1","\u{2285f}\u61d3\u{28b9d}\u{2995d}\u61d0\u3932\u{22980}\u{228c1}\u6023\u615c\u651e\u638b\u{20118}\u62c5\u{21770}\u62d5\u{22e0d}\u636c\u{249df}\u3a17\u6438\u63f8\u{2138e}\u{217fc}\u6490\u6f8a\u{22e36}\u9814\u{2408c}\u{2571d}\u64e1\u64e5\u947b\u3a66\u643a\u3a57\u654d\u6f16\u{24a28}\u{24a23}\u6585\u656d\u655f\u{2307e}\u65b5\u{24940}\u4b37\u65d1\u40d8\u{21829}\u65e0\u65e3\u5fdf\u{23400}\u6618\u{231f7}\u{231f8}\u6644\u{231a4}\u{231a5}\u664b\u{20e75}\u6667\u{251e6}\u6673\u6674\u{21e3d}\u{23231}\u{285f4}\u{231c8}\u{25313}\u77c5\u{228f7}\u99a4\u6702\u{2439c}\u{24a21}\u3b2b\u69fa\u{237c2}\u675e\u6767\u6762\u{241cd}\u{290ed}\u67d7\u44e9\u6822\u6e50\u923c\u6801\u{233e6}\u{26da0}\u685d"],["fd40","\u{2346f}\u69e1\u6a0b\u{28adf}\u6973\u68c3\u{235cd}\u6901\u6900\u3d32\u3a01\u{2363c}\u3b80\u67ac\u6961\u{28a4a}\u42fc\u6936\u6998\u3ba1\u{203c9}\u8363\u5090\u69f9\u{23659}\u{2212a}\u6a45\u{23703}\u6a9d\u3bf3\u67b1\u6ac8\u{2919c}\u3c0d\u6b1d\u{20923}\u60de\u6b35\u6b74\u{227cd}\u6eb5\u{23adb}\u{203b5}\u{21958}\u3740\u5421\u{23b5a}\u6be1\u{23efc}\u6bdc\u6c37\u{2248b}\u{248f1}\u{26b51}\u6c5a\u8226\u6c79\u{23dbc}\u44c5\u{23dbd}\u{241a4}\u{2490c}\u{24900}"],["fda1","\u{23cc9}\u36e5\u3ceb\u{20d32}\u9b83\u{231f9}\u{22491}\u7f8f\u6837\u{26d25}\u{26da1}\u{26deb}\u6d96\u6d5c\u6e7c\u6f04\u{2497f}\u{24085}\u{26e72}\u8533\u{26f74}\u51c7\u6c9c\u6e1d\u842e\u{28b21}\u6e2f\u{23e2f}\u7453\u{23f82}\u79cc\u6e4f\u5a91\u{2304b}\u6ff8\u370d\u6f9d\u{23e30}\u6efa\u{21497}\u{2403d}\u4555\u93f0\u6f44\u6f5c\u3d4e\u6f74\u{29170}\u3d3b\u6f9f\u{24144}\u6fd3\u{24091}\u{24155}\u{24039}\u{23ff0}\u{23fb4}\u{2413f}\u51df\u{24156}\u{24157}\u{24140}\u{261dd}\u704b\u707e\u70a7\u7081\u70cc\u70d5\u70d6\u70df\u4104\u3de8\u71b4\u7196\u{24277}\u712b\u7145\u5a88\u714a\u716e\u5c9c\u{24365}\u714f\u9362\u{242c1}\u712c\u{2445a}\u{24a27}\u{24a22}\u71ba\u{28be8}\u70bd\u720e"],["fe40","\u9442\u7215\u5911\u9443\u7224\u9341\u{25605}\u722e\u7240\u{24974}\u68bd\u7255\u7257\u3e55\u{23044}\u680d\u6f3d\u7282\u732a\u732b\u{24823}\u{2882b}\u48ed\u{28804}\u7328\u732e\u73cf\u73aa\u{20c3a}\u{26a2e}\u73c9\u7449\u{241e2}\u{216e7}\u{24a24}\u6623\u36c5\u{249b7}\u{2498d}\u{249fb}\u73f7\u7415\u6903\u{24a26}\u7439\u{205c3}\u3ed7\u745c\u{228ad}\u7460\u{28eb2}\u7447\u73e4\u7476\u83b9\u746c\u3730\u7474\u93f1\u6a2c\u7482\u4953\u{24a8c}"],["fea1","\u{2415f}\u{24a79}\u{28b8f}\u5b46\u{28c03}\u{2189e}\u74c8\u{21988}\u750e\u74e9\u751e\u{28ed9}\u{21a4b}\u5bd7\u{28eac}\u9385\u754d\u754a\u7567\u756e\u{24f82}\u3f04\u{24d13}\u758e\u745d\u759e\u75b4\u7602\u762c\u7651\u764f\u766f\u7676\u{263f5}\u7690\u81ef\u37f8\u{26911}\u{2690e}\u76a1\u76a5\u76b7\u76cc\u{26f9f}\u8462\u{2509d}\u{2517d}\u{21e1c}\u771e\u7726\u7740\u64af\u{25220}\u7758\u{232ac}\u77af\u{28964}\u{28968}\u{216c1}\u77f4\u7809\u{21376}\u{24a12}\u68ca\u78af\u78c7\u78d3\u96a5\u792e\u{255e0}\u78d7\u7934\u78b1\u{2760c}\u8fb8\u8884\u{28b2b}\u{26083}\u{2261c}\u7986\u8900\u6902\u7980\u{25857}\u799d\u{27b39}\u793c\u79a9\u6e2a\u{27126}\u3ea8\u79c6\u{2910d}\u79d4"]]')},74488:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127,"\u20ac"],["8140","\u4e02\u4e04\u4e05\u4e06\u4e0f\u4e12\u4e17\u4e1f\u4e20\u4e21\u4e23\u4e26\u4e29\u4e2e\u4e2f\u4e31\u4e33\u4e35\u4e37\u4e3c\u4e40\u4e41\u4e42\u4e44\u4e46\u4e4a\u4e51\u4e55\u4e57\u4e5a\u4e5b\u4e62\u4e63\u4e64\u4e65\u4e67\u4e68\u4e6a",5,"\u4e72\u4e74",9,"\u4e7f",6,"\u4e87\u4e8a"],["8180","\u4e90\u4e96\u4e97\u4e99\u4e9c\u4e9d\u4e9e\u4ea3\u4eaa\u4eaf\u4eb0\u4eb1\u4eb4\u4eb6\u4eb7\u4eb8\u4eb9\u4ebc\u4ebd\u4ebe\u4ec8\u4ecc\u4ecf\u4ed0\u4ed2\u4eda\u4edb\u4edc\u4ee0\u4ee2\u4ee6\u4ee7\u4ee9\u4eed\u4eee\u4eef\u4ef1\u4ef4\u4ef8\u4ef9\u4efa\u4efc\u4efe\u4f00\u4f02",6,"\u4f0b\u4f0c\u4f12",4,"\u4f1c\u4f1d\u4f21\u4f23\u4f28\u4f29\u4f2c\u4f2d\u4f2e\u4f31\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e",4,"\u4f44\u4f45\u4f47",5,"\u4f52\u4f54\u4f56\u4f61\u4f62\u4f66\u4f68\u4f6a\u4f6b\u4f6d\u4f6e\u4f71\u4f72\u4f75\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f80\u4f81\u4f82\u4f85\u4f86\u4f87\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f95\u4f96\u4f98\u4f99\u4f9a\u4f9c\u4f9e\u4f9f\u4fa1\u4fa2"],["8240","\u4fa4\u4fab\u4fad\u4fb0",4,"\u4fb6",8,"\u4fc0\u4fc1\u4fc2\u4fc6\u4fc7\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fd2",4,"\u4fd9\u4fdb\u4fe0\u4fe2\u4fe4\u4fe5\u4fe7\u4feb\u4fec\u4ff0\u4ff2\u4ff4\u4ff5\u4ff6\u4ff7\u4ff9\u4ffb\u4ffc\u4ffd\u4fff",11],["8280","\u500b\u500e\u5010\u5011\u5013\u5015\u5016\u5017\u501b\u501d\u501e\u5020\u5022\u5023\u5024\u5027\u502b\u502f",10,"\u503b\u503d\u503f\u5040\u5041\u5042\u5044\u5045\u5046\u5049\u504a\u504b\u504d\u5050",4,"\u5056\u5057\u5058\u5059\u505b\u505d",7,"\u5066",5,"\u506d",8,"\u5078\u5079\u507a\u507c\u507d\u5081\u5082\u5083\u5084\u5086\u5087\u5089\u508a\u508b\u508c\u508e",20,"\u50a4\u50a6\u50aa\u50ab\u50ad",4,"\u50b3",6,"\u50bc"],["8340","\u50bd",17,"\u50d0",5,"\u50d7\u50d8\u50d9\u50db",10,"\u50e8\u50e9\u50ea\u50eb\u50ef\u50f0\u50f1\u50f2\u50f4\u50f6",4,"\u50fc",9,"\u5108"],["8380","\u5109\u510a\u510c",5,"\u5113",13,"\u5122",28,"\u5142\u5147\u514a\u514c\u514e\u514f\u5150\u5152\u5153\u5157\u5158\u5159\u515b\u515d",4,"\u5163\u5164\u5166\u5167\u5169\u516a\u516f\u5172\u517a\u517e\u517f\u5183\u5184\u5186\u5187\u518a\u518b\u518e\u518f\u5190\u5191\u5193\u5194\u5198\u519a\u519d\u519e\u519f\u51a1\u51a3\u51a6",4,"\u51ad\u51ae\u51b4\u51b8\u51b9\u51ba\u51be\u51bf\u51c1\u51c2\u51c3\u51c5\u51c8\u51ca\u51cd\u51ce\u51d0\u51d2",5],["8440","\u51d8\u51d9\u51da\u51dc\u51de\u51df\u51e2\u51e3\u51e5",5,"\u51ec\u51ee\u51f1\u51f2\u51f4\u51f7\u51fe\u5204\u5205\u5209\u520b\u520c\u520f\u5210\u5213\u5214\u5215\u521c\u521e\u521f\u5221\u5222\u5223\u5225\u5226\u5227\u522a\u522c\u522f\u5231\u5232\u5234\u5235\u523c\u523e\u5244",5,"\u524b\u524e\u524f\u5252\u5253\u5255\u5257\u5258"],["8480","\u5259\u525a\u525b\u525d\u525f\u5260\u5262\u5263\u5264\u5266\u5268\u526b\u526c\u526d\u526e\u5270\u5271\u5273",9,"\u527e\u5280\u5283",4,"\u5289",6,"\u5291\u5292\u5294",6,"\u529c\u52a4\u52a5\u52a6\u52a7\u52ae\u52af\u52b0\u52b4",9,"\u52c0\u52c1\u52c2\u52c4\u52c5\u52c6\u52c8\u52ca\u52cc\u52cd\u52ce\u52cf\u52d1\u52d3\u52d4\u52d5\u52d7\u52d9",5,"\u52e0\u52e1\u52e2\u52e3\u52e5",10,"\u52f1",7,"\u52fb\u52fc\u52fd\u5301\u5302\u5303\u5304\u5307\u5309\u530a\u530b\u530c\u530e"],["8540","\u5311\u5312\u5313\u5314\u5318\u531b\u531c\u531e\u531f\u5322\u5324\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u532f",9,"\u533c\u533d\u5340\u5342\u5344\u5346\u534b\u534c\u534d\u5350\u5354\u5358\u5359\u535b\u535d\u5365\u5368\u536a\u536c\u536d\u5372\u5376\u5379\u537b\u537c\u537d\u537e\u5380\u5381\u5383\u5387\u5388\u538a\u538e\u538f"],["8580","\u5390",4,"\u5396\u5397\u5399\u539b\u539c\u539e\u53a0\u53a1\u53a4\u53a7\u53aa\u53ab\u53ac\u53ad\u53af",6,"\u53b7\u53b8\u53b9\u53ba\u53bc\u53bd\u53be\u53c0\u53c3",4,"\u53ce\u53cf\u53d0\u53d2\u53d3\u53d5\u53da\u53dc\u53dd\u53de\u53e1\u53e2\u53e7\u53f4\u53fa\u53fe\u53ff\u5400\u5402\u5405\u5407\u540b\u5414\u5418\u5419\u541a\u541c\u5422\u5424\u5425\u542a\u5430\u5433\u5436\u5437\u543a\u543d\u543f\u5441\u5442\u5444\u5445\u5447\u5449\u544c\u544d\u544e\u544f\u5451\u545a\u545d",4,"\u5463\u5465\u5467\u5469",7,"\u5474\u5479\u547a\u547e\u547f\u5481\u5483\u5485\u5487\u5488\u5489\u548a\u548d\u5491\u5493\u5497\u5498\u549c\u549e\u549f\u54a0\u54a1"],["8640","\u54a2\u54a5\u54ae\u54b0\u54b2\u54b5\u54b6\u54b7\u54b9\u54ba\u54bc\u54be\u54c3\u54c5\u54ca\u54cb\u54d6\u54d8\u54db\u54e0",4,"\u54eb\u54ec\u54ef\u54f0\u54f1\u54f4",5,"\u54fb\u54fe\u5500\u5502\u5503\u5504\u5505\u5508\u550a",4,"\u5512\u5513\u5515",5,"\u551c\u551d\u551e\u551f\u5521\u5525\u5526"],["8680","\u5528\u5529\u552b\u552d\u5532\u5534\u5535\u5536\u5538\u5539\u553a\u553b\u553d\u5540\u5542\u5545\u5547\u5548\u554b",4,"\u5551\u5552\u5553\u5554\u5557",4,"\u555d\u555e\u555f\u5560\u5562\u5563\u5568\u5569\u556b\u556f",5,"\u5579\u557a\u557d\u557f\u5585\u5586\u558c\u558d\u558e\u5590\u5592\u5593\u5595\u5596\u5597\u559a\u559b\u559e\u55a0",6,"\u55a8",8,"\u55b2\u55b4\u55b6\u55b8\u55ba\u55bc\u55bf",4,"\u55c6\u55c7\u55c8\u55ca\u55cb\u55ce\u55cf\u55d0\u55d5\u55d7",4,"\u55de\u55e0\u55e2\u55e7\u55e9\u55ed\u55ee\u55f0\u55f1\u55f4\u55f6\u55f8",4,"\u55ff\u5602\u5603\u5604\u5605"],["8740","\u5606\u5607\u560a\u560b\u560d\u5610",7,"\u5619\u561a\u561c\u561d\u5620\u5621\u5622\u5625\u5626\u5628\u5629\u562a\u562b\u562e\u562f\u5630\u5633\u5635\u5637\u5638\u563a\u563c\u563d\u563e\u5640",11,"\u564f",4,"\u5655\u5656\u565a\u565b\u565d",4],["8780","\u5663\u5665\u5666\u5667\u566d\u566e\u566f\u5670\u5672\u5673\u5674\u5675\u5677\u5678\u5679\u567a\u567d",7,"\u5687",6,"\u5690\u5691\u5692\u5694",14,"\u56a4",10,"\u56b0",6,"\u56b8\u56b9\u56ba\u56bb\u56bd",12,"\u56cb",8,"\u56d5\u56d6\u56d8\u56d9\u56dc\u56e3\u56e5",5,"\u56ec\u56ee\u56ef\u56f2\u56f3\u56f6\u56f7\u56f8\u56fb\u56fc\u5700\u5701\u5702\u5705\u5707\u570b",6],["8840","\u5712",9,"\u571d\u571e\u5720\u5721\u5722\u5724\u5725\u5726\u5727\u572b\u5731\u5732\u5734",4,"\u573c\u573d\u573f\u5741\u5743\u5744\u5745\u5746\u5748\u5749\u574b\u5752",4,"\u5758\u5759\u5762\u5763\u5765\u5767\u576c\u576e\u5770\u5771\u5772\u5774\u5775\u5778\u5779\u577a\u577d\u577e\u577f\u5780"],["8880","\u5781\u5787\u5788\u5789\u578a\u578d",4,"\u5794",6,"\u579c\u579d\u579e\u579f\u57a5\u57a8\u57aa\u57ac\u57af\u57b0\u57b1\u57b3\u57b5\u57b6\u57b7\u57b9",8,"\u57c4",6,"\u57cc\u57cd\u57d0\u57d1\u57d3\u57d6\u57d7\u57db\u57dc\u57de\u57e1\u57e2\u57e3\u57e5",7,"\u57ee\u57f0\u57f1\u57f2\u57f3\u57f5\u57f6\u57f7\u57fb\u57fc\u57fe\u57ff\u5801\u5803\u5804\u5805\u5808\u5809\u580a\u580c\u580e\u580f\u5810\u5812\u5813\u5814\u5816\u5817\u5818\u581a\u581b\u581c\u581d\u581f\u5822\u5823\u5825",4,"\u582b",4,"\u5831\u5832\u5833\u5834\u5836",7],["8940","\u583e",5,"\u5845",6,"\u584e\u584f\u5850\u5852\u5853\u5855\u5856\u5857\u5859",4,"\u585f",5,"\u5866",4,"\u586d",16,"\u587f\u5882\u5884\u5886\u5887\u5888\u588a\u588b\u588c"],["8980","\u588d",4,"\u5894",4,"\u589b\u589c\u589d\u58a0",7,"\u58aa",17,"\u58bd\u58be\u58bf\u58c0\u58c2\u58c3\u58c4\u58c6",10,"\u58d2\u58d3\u58d4\u58d6",13,"\u58e5",5,"\u58ed\u58ef\u58f1\u58f2\u58f4\u58f5\u58f7\u58f8\u58fa",7,"\u5903\u5905\u5906\u5908",4,"\u590e\u5910\u5911\u5912\u5913\u5917\u5918\u591b\u591d\u591e\u5920\u5921\u5922\u5923\u5926\u5928\u592c\u5930\u5932\u5933\u5935\u5936\u593b"],["8a40","\u593d\u593e\u593f\u5940\u5943\u5945\u5946\u594a\u594c\u594d\u5950\u5952\u5953\u5959\u595b",4,"\u5961\u5963\u5964\u5966",12,"\u5975\u5977\u597a\u597b\u597c\u597e\u597f\u5980\u5985\u5989\u598b\u598c\u598e\u598f\u5990\u5991\u5994\u5995\u5998\u599a\u599b\u599c\u599d\u599f\u59a0\u59a1\u59a2\u59a6"],["8a80","\u59a7\u59ac\u59ad\u59b0\u59b1\u59b3",5,"\u59ba\u59bc\u59bd\u59bf",6,"\u59c7\u59c8\u59c9\u59cc\u59cd\u59ce\u59cf\u59d5\u59d6\u59d9\u59db\u59de",4,"\u59e4\u59e6\u59e7\u59e9\u59ea\u59eb\u59ed",11,"\u59fa\u59fc\u59fd\u59fe\u5a00\u5a02\u5a0a\u5a0b\u5a0d\u5a0e\u5a0f\u5a10\u5a12\u5a14\u5a15\u5a16\u5a17\u5a19\u5a1a\u5a1b\u5a1d\u5a1e\u5a21\u5a22\u5a24\u5a26\u5a27\u5a28\u5a2a",6,"\u5a33\u5a35\u5a37",4,"\u5a3d\u5a3e\u5a3f\u5a41",4,"\u5a47\u5a48\u5a4b",9,"\u5a56\u5a57\u5a58\u5a59\u5a5b",5],["8b40","\u5a61\u5a63\u5a64\u5a65\u5a66\u5a68\u5a69\u5a6b",8,"\u5a78\u5a79\u5a7b\u5a7c\u5a7d\u5a7e\u5a80",17,"\u5a93",6,"\u5a9c",13,"\u5aab\u5aac"],["8b80","\u5aad",4,"\u5ab4\u5ab6\u5ab7\u5ab9",4,"\u5abf\u5ac0\u5ac3",5,"\u5aca\u5acb\u5acd",4,"\u5ad3\u5ad5\u5ad7\u5ad9\u5ada\u5adb\u5add\u5ade\u5adf\u5ae2\u5ae4\u5ae5\u5ae7\u5ae8\u5aea\u5aec",4,"\u5af2",22,"\u5b0a",11,"\u5b18",25,"\u5b33\u5b35\u5b36\u5b38",7,"\u5b41",6],["8c40","\u5b48",7,"\u5b52\u5b56\u5b5e\u5b60\u5b61\u5b67\u5b68\u5b6b\u5b6d\u5b6e\u5b6f\u5b72\u5b74\u5b76\u5b77\u5b78\u5b79\u5b7b\u5b7c\u5b7e\u5b7f\u5b82\u5b86\u5b8a\u5b8d\u5b8e\u5b90\u5b91\u5b92\u5b94\u5b96\u5b9f\u5ba7\u5ba8\u5ba9\u5bac\u5bad\u5bae\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbb\u5bbc\u5bc0\u5bc1\u5bc3\u5bc8\u5bc9\u5bca\u5bcb\u5bcd\u5bce\u5bcf"],["8c80","\u5bd1\u5bd4",8,"\u5be0\u5be2\u5be3\u5be6\u5be7\u5be9",4,"\u5bef\u5bf1",6,"\u5bfd\u5bfe\u5c00\u5c02\u5c03\u5c05\u5c07\u5c08\u5c0b\u5c0c\u5c0d\u5c0e\u5c10\u5c12\u5c13\u5c17\u5c19\u5c1b\u5c1e\u5c1f\u5c20\u5c21\u5c23\u5c26\u5c28\u5c29\u5c2a\u5c2b\u5c2d\u5c2e\u5c2f\u5c30\u5c32\u5c33\u5c35\u5c36\u5c37\u5c43\u5c44\u5c46\u5c47\u5c4c\u5c4d\u5c52\u5c53\u5c54\u5c56\u5c57\u5c58\u5c5a\u5c5b\u5c5c\u5c5d\u5c5f\u5c62\u5c64\u5c67",6,"\u5c70\u5c72",6,"\u5c7b\u5c7c\u5c7d\u5c7e\u5c80\u5c83",4,"\u5c89\u5c8a\u5c8b\u5c8e\u5c8f\u5c92\u5c93\u5c95\u5c9d",4,"\u5ca4",4],["8d40","\u5caa\u5cae\u5caf\u5cb0\u5cb2\u5cb4\u5cb6\u5cb9\u5cba\u5cbb\u5cbc\u5cbe\u5cc0\u5cc2\u5cc3\u5cc5",5,"\u5ccc",5,"\u5cd3",5,"\u5cda",6,"\u5ce2\u5ce3\u5ce7\u5ce9\u5ceb\u5cec\u5cee\u5cef\u5cf1",9,"\u5cfc",4],["8d80","\u5d01\u5d04\u5d05\u5d08",5,"\u5d0f",4,"\u5d15\u5d17\u5d18\u5d19\u5d1a\u5d1c\u5d1d\u5d1f",4,"\u5d25\u5d28\u5d2a\u5d2b\u5d2c\u5d2f",4,"\u5d35",7,"\u5d3f",7,"\u5d48\u5d49\u5d4d",10,"\u5d59\u5d5a\u5d5c\u5d5e",10,"\u5d6a\u5d6d\u5d6e\u5d70\u5d71\u5d72\u5d73\u5d75",12,"\u5d83",21,"\u5d9a\u5d9b\u5d9c\u5d9e\u5d9f\u5da0"],["8e40","\u5da1",21,"\u5db8",12,"\u5dc6",6,"\u5dce",12,"\u5ddc\u5ddf\u5de0\u5de3\u5de4\u5dea\u5dec\u5ded"],["8e80","\u5df0\u5df5\u5df6\u5df8",4,"\u5dff\u5e00\u5e04\u5e07\u5e09\u5e0a\u5e0b\u5e0d\u5e0e\u5e12\u5e13\u5e17\u5e1e",7,"\u5e28",4,"\u5e2f\u5e30\u5e32",4,"\u5e39\u5e3a\u5e3e\u5e3f\u5e40\u5e41\u5e43\u5e46",5,"\u5e4d",6,"\u5e56",4,"\u5e5c\u5e5d\u5e5f\u5e60\u5e63",14,"\u5e75\u5e77\u5e79\u5e7e\u5e81\u5e82\u5e83\u5e85\u5e88\u5e89\u5e8c\u5e8d\u5e8e\u5e92\u5e98\u5e9b\u5e9d\u5ea1\u5ea2\u5ea3\u5ea4\u5ea8",4,"\u5eae",4,"\u5eb4\u5eba\u5ebb\u5ebc\u5ebd\u5ebf",6],["8f40","\u5ec6\u5ec7\u5ec8\u5ecb",5,"\u5ed4\u5ed5\u5ed7\u5ed8\u5ed9\u5eda\u5edc",11,"\u5ee9\u5eeb",8,"\u5ef5\u5ef8\u5ef9\u5efb\u5efc\u5efd\u5f05\u5f06\u5f07\u5f09\u5f0c\u5f0d\u5f0e\u5f10\u5f12\u5f14\u5f16\u5f19\u5f1a\u5f1c\u5f1d\u5f1e\u5f21\u5f22\u5f23\u5f24"],["8f80","\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f32",6,"\u5f3b\u5f3d\u5f3e\u5f3f\u5f41",14,"\u5f51\u5f54\u5f59\u5f5a\u5f5b\u5f5c\u5f5e\u5f5f\u5f60\u5f63\u5f65\u5f67\u5f68\u5f6b\u5f6e\u5f6f\u5f72\u5f74\u5f75\u5f76\u5f78\u5f7a\u5f7d\u5f7e\u5f7f\u5f83\u5f86\u5f8d\u5f8e\u5f8f\u5f91\u5f93\u5f94\u5f96\u5f9a\u5f9b\u5f9d\u5f9e\u5f9f\u5fa0\u5fa2",5,"\u5fa9\u5fab\u5fac\u5faf",5,"\u5fb6\u5fb8\u5fb9\u5fba\u5fbb\u5fbe",4,"\u5fc7\u5fc8\u5fca\u5fcb\u5fce\u5fd3\u5fd4\u5fd5\u5fda\u5fdb\u5fdc\u5fde\u5fdf\u5fe2\u5fe3\u5fe5\u5fe6\u5fe8\u5fe9\u5fec\u5fef\u5ff0\u5ff2\u5ff3\u5ff4\u5ff6\u5ff7\u5ff9\u5ffa\u5ffc\u6007"],["9040","\u6008\u6009\u600b\u600c\u6010\u6011\u6013\u6017\u6018\u601a\u601e\u601f\u6022\u6023\u6024\u602c\u602d\u602e\u6030",4,"\u6036",4,"\u603d\u603e\u6040\u6044",6,"\u604c\u604e\u604f\u6051\u6053\u6054\u6056\u6057\u6058\u605b\u605c\u605e\u605f\u6060\u6061\u6065\u6066\u606e\u6071\u6072\u6074\u6075\u6077\u607e\u6080"],["9080","\u6081\u6082\u6085\u6086\u6087\u6088\u608a\u608b\u608e\u608f\u6090\u6091\u6093\u6095\u6097\u6098\u6099\u609c\u609e\u60a1\u60a2\u60a4\u60a5\u60a7\u60a9\u60aa\u60ae\u60b0\u60b3\u60b5\u60b6\u60b7\u60b9\u60ba\u60bd",7,"\u60c7\u60c8\u60c9\u60cc",4,"\u60d2\u60d3\u60d4\u60d6\u60d7\u60d9\u60db\u60de\u60e1",4,"\u60ea\u60f1\u60f2\u60f5\u60f7\u60f8\u60fb",4,"\u6102\u6103\u6104\u6105\u6107\u610a\u610b\u610c\u6110",4,"\u6116\u6117\u6118\u6119\u611b\u611c\u611d\u611e\u6121\u6122\u6125\u6128\u6129\u612a\u612c",18,"\u6140",6],["9140","\u6147\u6149\u614b\u614d\u614f\u6150\u6152\u6153\u6154\u6156",6,"\u615e\u615f\u6160\u6161\u6163\u6164\u6165\u6166\u6169",6,"\u6171\u6172\u6173\u6174\u6176\u6178",18,"\u618c\u618d\u618f",4,"\u6195"],["9180","\u6196",6,"\u619e",8,"\u61aa\u61ab\u61ad",9,"\u61b8",5,"\u61bf\u61c0\u61c1\u61c3",4,"\u61c9\u61cc",4,"\u61d3\u61d5",16,"\u61e7",13,"\u61f6",8,"\u6200",5,"\u6207\u6209\u6213\u6214\u6219\u621c\u621d\u621e\u6220\u6223\u6226\u6227\u6228\u6229\u622b\u622d\u622f\u6230\u6231\u6232\u6235\u6236\u6238",4,"\u6242\u6244\u6245\u6246\u624a"],["9240","\u624f\u6250\u6255\u6256\u6257\u6259\u625a\u625c",6,"\u6264\u6265\u6268\u6271\u6272\u6274\u6275\u6277\u6278\u627a\u627b\u627d\u6281\u6282\u6283\u6285\u6286\u6287\u6288\u628b",5,"\u6294\u6299\u629c\u629d\u629e\u62a3\u62a6\u62a7\u62a9\u62aa\u62ad\u62ae\u62af\u62b0\u62b2\u62b3\u62b4\u62b6\u62b7\u62b8\u62ba\u62be\u62c0\u62c1"],["9280","\u62c3\u62cb\u62cf\u62d1\u62d5\u62dd\u62de\u62e0\u62e1\u62e4\u62ea\u62eb\u62f0\u62f2\u62f5\u62f8\u62f9\u62fa\u62fb\u6300\u6303\u6304\u6305\u6306\u630a\u630b\u630c\u630d\u630f\u6310\u6312\u6313\u6314\u6315\u6317\u6318\u6319\u631c\u6326\u6327\u6329\u632c\u632d\u632e\u6330\u6331\u6333",5,"\u633b\u633c\u633e\u633f\u6340\u6341\u6344\u6347\u6348\u634a\u6351\u6352\u6353\u6354\u6356",7,"\u6360\u6364\u6365\u6366\u6368\u636a\u636b\u636c\u636f\u6370\u6372\u6373\u6374\u6375\u6378\u6379\u637c\u637d\u637e\u637f\u6381\u6383\u6384\u6385\u6386\u638b\u638d\u6391\u6393\u6394\u6395\u6397\u6399",6,"\u63a1\u63a4\u63a6\u63ab\u63af\u63b1\u63b2\u63b5\u63b6\u63b9\u63bb\u63bd\u63bf\u63c0"],["9340","\u63c1\u63c2\u63c3\u63c5\u63c7\u63c8\u63ca\u63cb\u63cc\u63d1\u63d3\u63d4\u63d5\u63d7",6,"\u63df\u63e2\u63e4",4,"\u63eb\u63ec\u63ee\u63ef\u63f0\u63f1\u63f3\u63f5\u63f7\u63f9\u63fa\u63fb\u63fc\u63fe\u6403\u6404\u6406",4,"\u640d\u640e\u6411\u6412\u6415",5,"\u641d\u641f\u6422\u6423\u6424"],["9380","\u6425\u6427\u6428\u6429\u642b\u642e",5,"\u6435",4,"\u643b\u643c\u643e\u6440\u6442\u6443\u6449\u644b",6,"\u6453\u6455\u6456\u6457\u6459",4,"\u645f",7,"\u6468\u646a\u646b\u646c\u646e",9,"\u647b",6,"\u6483\u6486\u6488",8,"\u6493\u6494\u6497\u6498\u649a\u649b\u649c\u649d\u649f",4,"\u64a5\u64a6\u64a7\u64a8\u64aa\u64ab\u64af\u64b1\u64b2\u64b3\u64b4\u64b6\u64b9\u64bb\u64bd\u64be\u64bf\u64c1\u64c3\u64c4\u64c6",6,"\u64cf\u64d1\u64d3\u64d4\u64d5\u64d6\u64d9\u64da"],["9440","\u64db\u64dc\u64dd\u64df\u64e0\u64e1\u64e3\u64e5\u64e7",24,"\u6501",7,"\u650a",7,"\u6513",4,"\u6519",8],["9480","\u6522\u6523\u6524\u6526",4,"\u652c\u652d\u6530\u6531\u6532\u6533\u6537\u653a\u653c\u653d\u6540",4,"\u6546\u6547\u654a\u654b\u654d\u654e\u6550\u6552\u6553\u6554\u6557\u6558\u655a\u655c\u655f\u6560\u6561\u6564\u6565\u6567\u6568\u6569\u656a\u656d\u656e\u656f\u6571\u6573\u6575\u6576\u6578",14,"\u6588\u6589\u658a\u658d\u658e\u658f\u6592\u6594\u6595\u6596\u6598\u659a\u659d\u659e\u65a0\u65a2\u65a3\u65a6\u65a8\u65aa\u65ac\u65ae\u65b1",7,"\u65ba\u65bb\u65be\u65bf\u65c0\u65c2\u65c7\u65c8\u65c9\u65ca\u65cd\u65d0\u65d1\u65d3\u65d4\u65d5\u65d8",7,"\u65e1\u65e3\u65e4\u65ea\u65eb"],["9540","\u65f2\u65f3\u65f4\u65f5\u65f8\u65f9\u65fb",4,"\u6601\u6604\u6605\u6607\u6608\u6609\u660b\u660d\u6610\u6611\u6612\u6616\u6617\u6618\u661a\u661b\u661c\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6632\u6633\u6637",4,"\u663d\u663f\u6640\u6642\u6644",6,"\u664d\u664e\u6650\u6651\u6658"],["9580","\u6659\u665b\u665c\u665d\u665e\u6660\u6662\u6663\u6665\u6667\u6669",4,"\u6671\u6672\u6673\u6675\u6678\u6679\u667b\u667c\u667d\u667f\u6680\u6681\u6683\u6685\u6686\u6688\u6689\u668a\u668b\u668d\u668e\u668f\u6690\u6692\u6693\u6694\u6695\u6698",4,"\u669e",8,"\u66a9",4,"\u66af",4,"\u66b5\u66b6\u66b7\u66b8\u66ba\u66bb\u66bc\u66bd\u66bf",25,"\u66da\u66de",7,"\u66e7\u66e8\u66ea",5,"\u66f1\u66f5\u66f6\u66f8\u66fa\u66fb\u66fd\u6701\u6702\u6703"],["9640","\u6704\u6705\u6706\u6707\u670c\u670e\u670f\u6711\u6712\u6713\u6716\u6718\u6719\u671a\u671c\u671e\u6720",5,"\u6727\u6729\u672e\u6730\u6732\u6733\u6736\u6737\u6738\u6739\u673b\u673c\u673e\u673f\u6741\u6744\u6745\u6747\u674a\u674b\u674d\u6752\u6754\u6755\u6757",4,"\u675d\u6762\u6763\u6764\u6766\u6767\u676b\u676c\u676e\u6771\u6774\u6776"],["9680","\u6778\u6779\u677a\u677b\u677d\u6780\u6782\u6783\u6785\u6786\u6788\u678a\u678c\u678d\u678e\u678f\u6791\u6792\u6793\u6794\u6796\u6799\u679b\u679f\u67a0\u67a1\u67a4\u67a6\u67a9\u67ac\u67ae\u67b1\u67b2\u67b4\u67b9",7,"\u67c2\u67c5",9,"\u67d5\u67d6\u67d7\u67db\u67df\u67e1\u67e3\u67e4\u67e6\u67e7\u67e8\u67ea\u67eb\u67ed\u67ee\u67f2\u67f5",7,"\u67fe\u6801\u6802\u6803\u6804\u6806\u680d\u6810\u6812\u6814\u6815\u6818",4,"\u681e\u681f\u6820\u6822",6,"\u682b",6,"\u6834\u6835\u6836\u683a\u683b\u683f\u6847\u684b\u684d\u684f\u6852\u6856",5],["9740","\u685c\u685d\u685e\u685f\u686a\u686c",7,"\u6875\u6878",8,"\u6882\u6884\u6887",7,"\u6890\u6891\u6892\u6894\u6895\u6896\u6898",9,"\u68a3\u68a4\u68a5\u68a9\u68aa\u68ab\u68ac\u68ae\u68b1\u68b2\u68b4\u68b6\u68b7\u68b8"],["9780","\u68b9",6,"\u68c1\u68c3",5,"\u68ca\u68cc\u68ce\u68cf\u68d0\u68d1\u68d3\u68d4\u68d6\u68d7\u68d9\u68db",4,"\u68e1\u68e2\u68e4",9,"\u68ef\u68f2\u68f3\u68f4\u68f6\u68f7\u68f8\u68fb\u68fd\u68fe\u68ff\u6900\u6902\u6903\u6904\u6906",4,"\u690c\u690f\u6911\u6913",11,"\u6921\u6922\u6923\u6925",7,"\u692e\u692f\u6931\u6932\u6933\u6935\u6936\u6937\u6938\u693a\u693b\u693c\u693e\u6940\u6941\u6943",16,"\u6955\u6956\u6958\u6959\u695b\u695c\u695f"],["9840","\u6961\u6962\u6964\u6965\u6967\u6968\u6969\u696a\u696c\u696d\u696f\u6970\u6972",4,"\u697a\u697b\u697d\u697e\u697f\u6981\u6983\u6985\u698a\u698b\u698c\u698e",5,"\u6996\u6997\u6999\u699a\u699d",9,"\u69a9\u69aa\u69ac\u69ae\u69af\u69b0\u69b2\u69b3\u69b5\u69b6\u69b8\u69b9\u69ba\u69bc\u69bd"],["9880","\u69be\u69bf\u69c0\u69c2",7,"\u69cb\u69cd\u69cf\u69d1\u69d2\u69d3\u69d5",5,"\u69dc\u69dd\u69de\u69e1",11,"\u69ee\u69ef\u69f0\u69f1\u69f3",9,"\u69fe\u6a00",9,"\u6a0b",11,"\u6a19",5,"\u6a20\u6a22",5,"\u6a29\u6a2b\u6a2c\u6a2d\u6a2e\u6a30\u6a32\u6a33\u6a34\u6a36",6,"\u6a3f",4,"\u6a45\u6a46\u6a48",7,"\u6a51",6,"\u6a5a"],["9940","\u6a5c",4,"\u6a62\u6a63\u6a64\u6a66",10,"\u6a72",6,"\u6a7a\u6a7b\u6a7d\u6a7e\u6a7f\u6a81\u6a82\u6a83\u6a85",8,"\u6a8f\u6a92",4,"\u6a98",7,"\u6aa1",5],["9980","\u6aa7\u6aa8\u6aaa\u6aad",114,"\u6b25\u6b26\u6b28",6],["9a40","\u6b2f\u6b30\u6b31\u6b33\u6b34\u6b35\u6b36\u6b38\u6b3b\u6b3c\u6b3d\u6b3f\u6b40\u6b41\u6b42\u6b44\u6b45\u6b48\u6b4a\u6b4b\u6b4d",11,"\u6b5a",7,"\u6b68\u6b69\u6b6b",13,"\u6b7a\u6b7d\u6b7e\u6b7f\u6b80\u6b85\u6b88"],["9a80","\u6b8c\u6b8e\u6b8f\u6b90\u6b91\u6b94\u6b95\u6b97\u6b98\u6b99\u6b9c",4,"\u6ba2",7,"\u6bab",7,"\u6bb6\u6bb8",6,"\u6bc0\u6bc3\u6bc4\u6bc6",4,"\u6bcc\u6bce\u6bd0\u6bd1\u6bd8\u6bda\u6bdc",4,"\u6be2",7,"\u6bec\u6bed\u6bee\u6bf0\u6bf1\u6bf2\u6bf4\u6bf6\u6bf7\u6bf8\u6bfa\u6bfb\u6bfc\u6bfe",6,"\u6c08",4,"\u6c0e\u6c12\u6c17\u6c1c\u6c1d\u6c1e\u6c20\u6c23\u6c25\u6c2b\u6c2c\u6c2d\u6c31\u6c33\u6c36\u6c37\u6c39\u6c3a\u6c3b\u6c3c\u6c3e\u6c3f\u6c43\u6c44\u6c45\u6c48\u6c4b",4,"\u6c51\u6c52\u6c53\u6c56\u6c58"],["9b40","\u6c59\u6c5a\u6c62\u6c63\u6c65\u6c66\u6c67\u6c6b",4,"\u6c71\u6c73\u6c75\u6c77\u6c78\u6c7a\u6c7b\u6c7c\u6c7f\u6c80\u6c84\u6c87\u6c8a\u6c8b\u6c8d\u6c8e\u6c91\u6c92\u6c95\u6c96\u6c97\u6c98\u6c9a\u6c9c\u6c9d\u6c9e\u6ca0\u6ca2\u6ca8\u6cac\u6caf\u6cb0\u6cb4\u6cb5\u6cb6\u6cb7\u6cba\u6cc0\u6cc1\u6cc2\u6cc3\u6cc6\u6cc7\u6cc8\u6ccb\u6ccd\u6cce\u6ccf\u6cd1\u6cd2\u6cd8"],["9b80","\u6cd9\u6cda\u6cdc\u6cdd\u6cdf\u6ce4\u6ce6\u6ce7\u6ce9\u6cec\u6ced\u6cf2\u6cf4\u6cf9\u6cff\u6d00\u6d02\u6d03\u6d05\u6d06\u6d08\u6d09\u6d0a\u6d0d\u6d0f\u6d10\u6d11\u6d13\u6d14\u6d15\u6d16\u6d18\u6d1c\u6d1d\u6d1f",5,"\u6d26\u6d28\u6d29\u6d2c\u6d2d\u6d2f\u6d30\u6d34\u6d36\u6d37\u6d38\u6d3a\u6d3f\u6d40\u6d42\u6d44\u6d49\u6d4c\u6d50\u6d55\u6d56\u6d57\u6d58\u6d5b\u6d5d\u6d5f\u6d61\u6d62\u6d64\u6d65\u6d67\u6d68\u6d6b\u6d6c\u6d6d\u6d70\u6d71\u6d72\u6d73\u6d75\u6d76\u6d79\u6d7a\u6d7b\u6d7d",4,"\u6d83\u6d84\u6d86\u6d87\u6d8a\u6d8b\u6d8d\u6d8f\u6d90\u6d92\u6d96",4,"\u6d9c\u6da2\u6da5\u6dac\u6dad\u6db0\u6db1\u6db3\u6db4\u6db6\u6db7\u6db9",5,"\u6dc1\u6dc2\u6dc3\u6dc8\u6dc9\u6dca"],["9c40","\u6dcd\u6dce\u6dcf\u6dd0\u6dd2\u6dd3\u6dd4\u6dd5\u6dd7\u6dda\u6ddb\u6ddc\u6ddf\u6de2\u6de3\u6de5\u6de7\u6de8\u6de9\u6dea\u6ded\u6def\u6df0\u6df2\u6df4\u6df5\u6df6\u6df8\u6dfa\u6dfd",7,"\u6e06\u6e07\u6e08\u6e09\u6e0b\u6e0f\u6e12\u6e13\u6e15\u6e18\u6e19\u6e1b\u6e1c\u6e1e\u6e1f\u6e22\u6e26\u6e27\u6e28\u6e2a\u6e2c\u6e2e\u6e30\u6e31\u6e33\u6e35"],["9c80","\u6e36\u6e37\u6e39\u6e3b",7,"\u6e45",7,"\u6e4f\u6e50\u6e51\u6e52\u6e55\u6e57\u6e59\u6e5a\u6e5c\u6e5d\u6e5e\u6e60",10,"\u6e6c\u6e6d\u6e6f",14,"\u6e80\u6e81\u6e82\u6e84\u6e87\u6e88\u6e8a",4,"\u6e91",6,"\u6e99\u6e9a\u6e9b\u6e9d\u6e9e\u6ea0\u6ea1\u6ea3\u6ea4\u6ea6\u6ea8\u6ea9\u6eab\u6eac\u6ead\u6eae\u6eb0\u6eb3\u6eb5\u6eb8\u6eb9\u6ebc\u6ebe\u6ebf\u6ec0\u6ec3\u6ec4\u6ec5\u6ec6\u6ec8\u6ec9\u6eca\u6ecc\u6ecd\u6ece\u6ed0\u6ed2\u6ed6\u6ed8\u6ed9\u6edb\u6edc\u6edd\u6ee3\u6ee7\u6eea",5],["9d40","\u6ef0\u6ef1\u6ef2\u6ef3\u6ef5\u6ef6\u6ef7\u6ef8\u6efa",7,"\u6f03\u6f04\u6f05\u6f07\u6f08\u6f0a",4,"\u6f10\u6f11\u6f12\u6f16",9,"\u6f21\u6f22\u6f23\u6f25\u6f26\u6f27\u6f28\u6f2c\u6f2e\u6f30\u6f32\u6f34\u6f35\u6f37",6,"\u6f3f\u6f40\u6f41\u6f42"],["9d80","\u6f43\u6f44\u6f45\u6f48\u6f49\u6f4a\u6f4c\u6f4e",9,"\u6f59\u6f5a\u6f5b\u6f5d\u6f5f\u6f60\u6f61\u6f63\u6f64\u6f65\u6f67",5,"\u6f6f\u6f70\u6f71\u6f73\u6f75\u6f76\u6f77\u6f79\u6f7b\u6f7d",6,"\u6f85\u6f86\u6f87\u6f8a\u6f8b\u6f8f",12,"\u6f9d\u6f9e\u6f9f\u6fa0\u6fa2",4,"\u6fa8",10,"\u6fb4\u6fb5\u6fb7\u6fb8\u6fba",5,"\u6fc1\u6fc3",5,"\u6fca",6,"\u6fd3",10,"\u6fdf\u6fe2\u6fe3\u6fe4\u6fe5"],["9e40","\u6fe6",7,"\u6ff0",32,"\u7012",7,"\u701c",6,"\u7024",6],["9e80","\u702b",9,"\u7036\u7037\u7038\u703a",17,"\u704d\u704e\u7050",13,"\u705f",11,"\u706e\u7071\u7072\u7073\u7074\u7077\u7079\u707a\u707b\u707d\u7081\u7082\u7083\u7084\u7086\u7087\u7088\u708b\u708c\u708d\u708f\u7090\u7091\u7093\u7097\u7098\u709a\u709b\u709e",12,"\u70b0\u70b2\u70b4\u70b5\u70b6\u70ba\u70be\u70bf\u70c4\u70c5\u70c6\u70c7\u70c9\u70cb",12,"\u70da"],["9f40","\u70dc\u70dd\u70de\u70e0\u70e1\u70e2\u70e3\u70e5\u70ea\u70ee\u70f0",6,"\u70f8\u70fa\u70fb\u70fc\u70fe",10,"\u710b",4,"\u7111\u7112\u7114\u7117\u711b",10,"\u7127",7,"\u7132\u7133\u7134"],["9f80","\u7135\u7137",13,"\u7146\u7147\u7148\u7149\u714b\u714d\u714f",12,"\u715d\u715f",4,"\u7165\u7169",4,"\u716f\u7170\u7171\u7174\u7175\u7176\u7177\u7179\u717b\u717c\u717e",5,"\u7185",4,"\u718b\u718c\u718d\u718e\u7190\u7191\u7192\u7193\u7195\u7196\u7197\u719a",4,"\u71a1",6,"\u71a9\u71aa\u71ab\u71ad",5,"\u71b4\u71b6\u71b7\u71b8\u71ba",8,"\u71c4",9,"\u71cf",4],["a040","\u71d6",9,"\u71e1\u71e2\u71e3\u71e4\u71e6\u71e8",5,"\u71ef",9,"\u71fa",11,"\u7207",19],["a080","\u721b\u721c\u721e",9,"\u7229\u722b\u722d\u722e\u722f\u7232\u7233\u7234\u723a\u723c\u723e\u7240",6,"\u7249\u724a\u724b\u724e\u724f\u7250\u7251\u7253\u7254\u7255\u7257\u7258\u725a\u725c\u725e\u7260\u7263\u7264\u7265\u7268\u726a\u726b\u726c\u726d\u7270\u7271\u7273\u7274\u7276\u7277\u7278\u727b\u727c\u727d\u7282\u7283\u7285",4,"\u728c\u728e\u7290\u7291\u7293",11,"\u72a0",11,"\u72ae\u72b1\u72b2\u72b3\u72b5\u72ba",6,"\u72c5\u72c6\u72c7\u72c9\u72ca\u72cb\u72cc\u72cf\u72d1\u72d3\u72d4\u72d5\u72d6\u72d8\u72da\u72db"],["a1a1","\u3000\u3001\u3002\xb7\u02c9\u02c7\xa8\u3003\u3005\u2014\uff5e\u2016\u2026\u2018\u2019\u201c\u201d\u3014\u3015\u3008",7,"\u3016\u3017\u3010\u3011\xb1\xd7\xf7\u2236\u2227\u2228\u2211\u220f\u222a\u2229\u2208\u2237\u221a\u22a5\u2225\u2220\u2312\u2299\u222b\u222e\u2261\u224c\u2248\u223d\u221d\u2260\u226e\u226f\u2264\u2265\u221e\u2235\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uff04\xa4\uffe0\uffe1\u2030\xa7\u2116\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u203b\u2192\u2190\u2191\u2193\u3013"],["a2a1","\u2170",9],["a2b1","\u2488",19,"\u2474",19,"\u2460",9],["a2e5","\u3220",9],["a2f1","\u2160",11],["a3a1","\uff01\uff02\uff03\uffe5\uff05",88,"\uffe3"],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a6e0","\ufe35\ufe36\ufe39\ufe3a\ufe3f\ufe40\ufe3d\ufe3e\ufe41\ufe42\ufe43\ufe44"],["a6ee","\ufe3b\ufe3c\ufe37\ufe38\ufe31"],["a6f4","\ufe33\ufe34"],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a840","\u02ca\u02cb\u02d9\u2013\u2015\u2025\u2035\u2105\u2109\u2196\u2197\u2198\u2199\u2215\u221f\u2223\u2252\u2266\u2267\u22bf\u2550",35,"\u2581",6],["a880","\u2588",7,"\u2593\u2594\u2595\u25bc\u25bd\u25e2\u25e3\u25e4\u25e5\u2609\u2295\u3012\u301d\u301e"],["a8a1","\u0101\xe1\u01ce\xe0\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da\u01dc\xfc\xea\u0251"],["a8bd","\u0144\u0148"],["a8c0","\u0261"],["a8c5","\u3105",36],["a940","\u3021",8,"\u32a3\u338e\u338f\u339c\u339d\u339e\u33a1\u33c4\u33ce\u33d1\u33d2\u33d5\ufe30\uffe2\uffe4"],["a959","\u2121\u3231"],["a95c","\u2010"],["a960","\u30fc\u309b\u309c\u30fd\u30fe\u3006\u309d\u309e\ufe49",9,"\ufe54\ufe55\ufe56\ufe57\ufe59",8],["a980","\ufe62",4,"\ufe68\ufe69\ufe6a\ufe6b"],["a996","\u3007"],["a9a4","\u2500",75],["aa40","\u72dc\u72dd\u72df\u72e2",5,"\u72ea\u72eb\u72f5\u72f6\u72f9\u72fd\u72fe\u72ff\u7300\u7302\u7304",5,"\u730b\u730c\u730d\u730f\u7310\u7311\u7312\u7314\u7318\u7319\u731a\u731f\u7320\u7323\u7324\u7326\u7327\u7328\u732d\u732f\u7330\u7332\u7333\u7335\u7336\u733a\u733b\u733c\u733d\u7340",8],["aa80","\u7349\u734a\u734b\u734c\u734e\u734f\u7351\u7353\u7354\u7355\u7356\u7358",7,"\u7361",10,"\u736e\u7370\u7371"],["ab40","\u7372",11,"\u737f",4,"\u7385\u7386\u7388\u738a\u738c\u738d\u738f\u7390\u7392\u7393\u7394\u7395\u7397\u7398\u7399\u739a\u739c\u739d\u739e\u73a0\u73a1\u73a3",5,"\u73aa\u73ac\u73ad\u73b1\u73b4\u73b5\u73b6\u73b8\u73b9\u73bc\u73bd\u73be\u73bf\u73c1\u73c3",4],["ab80","\u73cb\u73cc\u73ce\u73d2",6,"\u73da\u73db\u73dc\u73dd\u73df\u73e1\u73e2\u73e3\u73e4\u73e6\u73e8\u73ea\u73eb\u73ec\u73ee\u73ef\u73f0\u73f1\u73f3",4],["ac40","\u73f8",10,"\u7404\u7407\u7408\u740b\u740c\u740d\u740e\u7411",8,"\u741c",5,"\u7423\u7424\u7427\u7429\u742b\u742d\u742f\u7431\u7432\u7437",4,"\u743d\u743e\u743f\u7440\u7442",11],["ac80","\u744e",6,"\u7456\u7458\u745d\u7460",12,"\u746e\u746f\u7471",4,"\u7478\u7479\u747a"],["ad40","\u747b\u747c\u747d\u747f\u7482\u7484\u7485\u7486\u7488\u7489\u748a\u748c\u748d\u748f\u7491",10,"\u749d\u749f",7,"\u74aa",15,"\u74bb",12],["ad80","\u74c8",9,"\u74d3",8,"\u74dd\u74df\u74e1\u74e5\u74e7",6,"\u74f0\u74f1\u74f2"],["ae40","\u74f3\u74f5\u74f8",6,"\u7500\u7501\u7502\u7503\u7505",7,"\u750e\u7510\u7512\u7514\u7515\u7516\u7517\u751b\u751d\u751e\u7520",4,"\u7526\u7527\u752a\u752e\u7534\u7536\u7539\u753c\u753d\u753f\u7541\u7542\u7543\u7544\u7546\u7547\u7549\u754a\u754d\u7550\u7551\u7552\u7553\u7555\u7556\u7557\u7558"],["ae80","\u755d",7,"\u7567\u7568\u7569\u756b",6,"\u7573\u7575\u7576\u7577\u757a",4,"\u7580\u7581\u7582\u7584\u7585\u7587"],["af40","\u7588\u7589\u758a\u758c\u758d\u758e\u7590\u7593\u7595\u7598\u759b\u759c\u759e\u75a2\u75a6",4,"\u75ad\u75b6\u75b7\u75ba\u75bb\u75bf\u75c0\u75c1\u75c6\u75cb\u75cc\u75ce\u75cf\u75d0\u75d1\u75d3\u75d7\u75d9\u75da\u75dc\u75dd\u75df\u75e0\u75e1\u75e5\u75e9\u75ec\u75ed\u75ee\u75ef\u75f2\u75f3\u75f5\u75f6\u75f7\u75f8\u75fa\u75fb\u75fd\u75fe\u7602\u7604\u7606\u7607"],["af80","\u7608\u7609\u760b\u760d\u760e\u760f\u7611\u7612\u7613\u7614\u7616\u761a\u761c\u761d\u761e\u7621\u7623\u7627\u7628\u762c\u762e\u762f\u7631\u7632\u7636\u7637\u7639\u763a\u763b\u763d\u7641\u7642\u7644"],["b040","\u7645",6,"\u764e",5,"\u7655\u7657",4,"\u765d\u765f\u7660\u7661\u7662\u7664",6,"\u766c\u766d\u766e\u7670",7,"\u7679\u767a\u767c\u767f\u7680\u7681\u7683\u7685\u7689\u768a\u768c\u768d\u768f\u7690\u7692\u7694\u7695\u7697\u7698\u769a\u769b"],["b080","\u769c",7,"\u76a5",8,"\u76af\u76b0\u76b3\u76b5",9,"\u76c0\u76c1\u76c3\u554a\u963f\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698\u978d\u6c28\u5b89\u4ffa\u6309\u6697\u5cb8\u80fa\u6848\u80ae\u6602\u76ce\u51f9\u6556\u71ac\u7ff1\u8884\u50b2\u5965\u61ca\u6fb3\u82ad\u634c\u6252\u53ed\u5427\u7b06\u516b\u75a4\u5df4\u62d4\u8dcb\u9776\u628a\u8019\u575d\u9738\u7f62\u7238\u767d\u67cf\u767e\u6446\u4f70\u8d25\u62dc\u7a17\u6591\u73ed\u642c\u6273\u822c\u9881\u677f\u7248\u626e\u62cc\u4f34\u74e3\u534a\u529e\u7eca\u90a6\u5e2e\u6886\u699c\u8180\u7ed1\u68d2\u78c5\u868c\u9551\u508d\u8c24\u82de\u80de\u5305\u8912\u5265"],["b140","\u76c4\u76c7\u76c9\u76cb\u76cc\u76d3\u76d5\u76d9\u76da\u76dc\u76dd\u76de\u76e0",4,"\u76e6",7,"\u76f0\u76f3\u76f5\u76f6\u76f7\u76fa\u76fb\u76fd\u76ff\u7700\u7702\u7703\u7705\u7706\u770a\u770c\u770e",10,"\u771b\u771c\u771d\u771e\u7721\u7723\u7724\u7725\u7727\u772a\u772b"],["b180","\u772c\u772e\u7730",4,"\u7739\u773b\u773d\u773e\u773f\u7742\u7744\u7745\u7746\u7748",7,"\u7752",7,"\u775c\u8584\u96f9\u4fdd\u5821\u9971\u5b9d\u62b1\u62a5\u66b4\u8c79\u9c8d\u7206\u676f\u7891\u60b2\u5351\u5317\u8f88\u80cc\u8d1d\u94a1\u500d\u72c8\u5907\u60eb\u7119\u88ab\u5954\u82ef\u672c\u7b28\u5d29\u7ef7\u752d\u6cf5\u8e66\u8ff8\u903c\u9f3b\u6bd4\u9119\u7b14\u5f7c\u78a7\u84d6\u853d\u6bd5\u6bd9\u6bd6\u5e01\u5e87\u75f9\u95ed\u655d\u5f0a\u5fc5\u8f9f\u58c1\u81c2\u907f\u965b\u97ad\u8fb9\u7f16\u8d2c\u6241\u4fbf\u53d8\u535e\u8fa8\u8fa9\u8fab\u904d\u6807\u5f6a\u8198\u8868\u9cd6\u618b\u522b\u762a\u5f6c\u658c\u6fd2\u6ee8\u5bbe\u6448\u5175\u51b0\u67c4\u4e19\u79c9\u997c\u70b3"],["b240","\u775d\u775e\u775f\u7760\u7764\u7767\u7769\u776a\u776d",11,"\u777a\u777b\u777c\u7781\u7782\u7783\u7786",5,"\u778f\u7790\u7793",11,"\u77a1\u77a3\u77a4\u77a6\u77a8\u77ab\u77ad\u77ae\u77af\u77b1\u77b2\u77b4\u77b6",4],["b280","\u77bc\u77be\u77c0",12,"\u77ce",8,"\u77d8\u77d9\u77da\u77dd",4,"\u77e4\u75c5\u5e76\u73bb\u83e0\u64ad\u62e8\u94b5\u6ce2\u535a\u52c3\u640f\u94c2\u7b94\u4f2f\u5e1b\u8236\u8116\u818a\u6e24\u6cca\u9a73\u6355\u535c\u54fa\u8865\u57e0\u4e0d\u5e03\u6b65\u7c3f\u90e8\u6016\u64e6\u731c\u88c1\u6750\u624d\u8d22\u776c\u8e29\u91c7\u5f69\u83dc\u8521\u9910\u53c2\u8695\u6b8b\u60ed\u60e8\u707f\u82cd\u8231\u4ed3\u6ca7\u85cf\u64cd\u7cd9\u69fd\u66f9\u8349\u5395\u7b56\u4fa7\u518c\u6d4b\u5c42\u8e6d\u63d2\u53c9\u832c\u8336\u67e5\u78b4\u643d\u5bdf\u5c94\u5dee\u8be7\u62c6\u67f4\u8c7a\u6400\u63ba\u8749\u998b\u8c17\u7f20\u94f2\u4ea7\u9610\u98a4\u660c\u7316"],["b340","\u77e6\u77e8\u77ea\u77ef\u77f0\u77f1\u77f2\u77f4\u77f5\u77f7\u77f9\u77fa\u77fb\u77fc\u7803",5,"\u780a\u780b\u780e\u780f\u7810\u7813\u7815\u7819\u781b\u781e\u7820\u7821\u7822\u7824\u7828\u782a\u782b\u782e\u782f\u7831\u7832\u7833\u7835\u7836\u783d\u783f\u7841\u7842\u7843\u7844\u7846\u7848\u7849\u784a\u784b\u784d\u784f\u7851\u7853\u7854\u7858\u7859\u785a"],["b380","\u785b\u785c\u785e",11,"\u786f",7,"\u7878\u7879\u787a\u787b\u787d",6,"\u573a\u5c1d\u5e38\u957f\u507f\u80a0\u5382\u655e\u7545\u5531\u5021\u8d85\u6284\u949e\u671d\u5632\u6f6e\u5de2\u5435\u7092\u8f66\u626f\u64a4\u63a3\u5f7b\u6f88\u90f4\u81e3\u8fb0\u5c18\u6668\u5ff1\u6c89\u9648\u8d81\u886c\u6491\u79f0\u57ce\u6a59\u6210\u5448\u4e58\u7a0b\u60e9\u6f84\u8bda\u627f\u901e\u9a8b\u79e4\u5403\u75f4\u6301\u5319\u6c60\u8fdf\u5f1b\u9a70\u803b\u9f7f\u4f88\u5c3a\u8d64\u7fc5\u65a5\u70bd\u5145\u51b2\u866b\u5d07\u5ba0\u62bd\u916c\u7574\u8e0c\u7a20\u6101\u7b79\u4ec7\u7ef8\u7785\u4e11\u81ed\u521d\u51fa\u6a71\u53a8\u8e87\u9504\u96cf\u6ec1\u9664\u695a"],["b440","\u7884\u7885\u7886\u7888\u788a\u788b\u788f\u7890\u7892\u7894\u7895\u7896\u7899\u789d\u789e\u78a0\u78a2\u78a4\u78a6\u78a8",7,"\u78b5\u78b6\u78b7\u78b8\u78ba\u78bb\u78bc\u78bd\u78bf\u78c0\u78c2\u78c3\u78c4\u78c6\u78c7\u78c8\u78cc\u78cd\u78ce\u78cf\u78d1\u78d2\u78d3\u78d6\u78d7\u78d8\u78da",9],["b480","\u78e4\u78e5\u78e6\u78e7\u78e9\u78ea\u78eb\u78ed",4,"\u78f3\u78f5\u78f6\u78f8\u78f9\u78fb",5,"\u7902\u7903\u7904\u7906",6,"\u7840\u50a8\u77d7\u6410\u89e6\u5904\u63e3\u5ddd\u7a7f\u693d\u4f20\u8239\u5598\u4e32\u75ae\u7a97\u5e62\u5e8a\u95ef\u521b\u5439\u708a\u6376\u9524\u5782\u6625\u693f\u9187\u5507\u6df3\u7eaf\u8822\u6233\u7ef0\u75b5\u8328\u78c1\u96cc\u8f9e\u6148\u74f7\u8bcd\u6b64\u523a\u8d50\u6b21\u806a\u8471\u56f1\u5306\u4ece\u4e1b\u51d1\u7c97\u918b\u7c07\u4fc3\u8e7f\u7be1\u7a9c\u6467\u5d14\u50ac\u8106\u7601\u7cb9\u6dec\u7fe0\u6751\u5b58\u5bf8\u78cb\u64ae\u6413\u63aa\u632b\u9519\u642d\u8fbe\u7b54\u7629\u6253\u5927\u5446\u6b79\u50a3\u6234\u5e26\u6b86\u4ee3\u8d37\u888b\u5f85\u902e"],["b540","\u790d",5,"\u7914",9,"\u791f",4,"\u7925",14,"\u7935",4,"\u793d\u793f\u7942\u7943\u7944\u7945\u7947\u794a",8,"\u7954\u7955\u7958\u7959\u7961\u7963"],["b580","\u7964\u7966\u7969\u796a\u796b\u796c\u796e\u7970",6,"\u7979\u797b",4,"\u7982\u7983\u7986\u7987\u7988\u7989\u798b\u798c\u798d\u798e\u7990\u7991\u7992\u6020\u803d\u62c5\u4e39\u5355\u90f8\u63b8\u80c6\u65e6\u6c2e\u4f46\u60ee\u6de1\u8bde\u5f39\u86cb\u5f53\u6321\u515a\u8361\u6863\u5200\u6363\u8e48\u5012\u5c9b\u7977\u5bfc\u5230\u7a3b\u60bc\u9053\u76d7\u5fb7\u5f97\u7684\u8e6c\u706f\u767b\u7b49\u77aa\u51f3\u9093\u5824\u4f4e\u6ef4\u8fea\u654c\u7b1b\u72c4\u6da4\u7fdf\u5ae1\u62b5\u5e95\u5730\u8482\u7b2c\u5e1d\u5f1f\u9012\u7f14\u98a0\u6382\u6ec7\u7898\u70b9\u5178\u975b\u57ab\u7535\u4f43\u7538\u5e97\u60e6\u5960\u6dc0\u6bbf\u7889\u53fc\u96d5\u51cb\u5201\u6389\u540a\u9493\u8c03\u8dcc\u7239\u789f\u8776\u8fed\u8c0d\u53e0"],["b640","\u7993",6,"\u799b",11,"\u79a8",10,"\u79b4",4,"\u79bc\u79bf\u79c2\u79c4\u79c5\u79c7\u79c8\u79ca\u79cc\u79ce\u79cf\u79d0\u79d3\u79d4\u79d6\u79d7\u79d9",5,"\u79e0\u79e1\u79e2\u79e5\u79e8\u79ea"],["b680","\u79ec\u79ee\u79f1",6,"\u79f9\u79fa\u79fc\u79fe\u79ff\u7a01\u7a04\u7a05\u7a07\u7a08\u7a09\u7a0a\u7a0c\u7a0f",4,"\u7a15\u7a16\u7a18\u7a19\u7a1b\u7a1c\u4e01\u76ef\u53ee\u9489\u9876\u9f0e\u952d\u5b9a\u8ba2\u4e22\u4e1c\u51ac\u8463\u61c2\u52a8\u680b\u4f97\u606b\u51bb\u6d1e\u515c\u6296\u6597\u9661\u8c46\u9017\u75d8\u90fd\u7763\u6bd2\u728a\u72ec\u8bfb\u5835\u7779\u8d4c\u675c\u9540\u809a\u5ea6\u6e21\u5992\u7aef\u77ed\u953b\u6bb5\u65ad\u7f0e\u5806\u5151\u961f\u5bf9\u58a9\u5428\u8e72\u6566\u987f\u56e4\u949d\u76fe\u9041\u6387\u54c6\u591a\u593a\u579b\u8eb2\u6735\u8dfa\u8235\u5241\u60f0\u5815\u86fe\u5ce8\u9e45\u4fc4\u989d\u8bb9\u5a25\u6076\u5384\u627c\u904f\u9102\u997f\u6069\u800c\u513f\u8033\u5c14\u9975\u6d31\u4e8c"],["b740","\u7a1d\u7a1f\u7a21\u7a22\u7a24",14,"\u7a34\u7a35\u7a36\u7a38\u7a3a\u7a3e\u7a40",5,"\u7a47",9,"\u7a52",4,"\u7a58",16],["b780","\u7a69",6,"\u7a71\u7a72\u7a73\u7a75\u7a7b\u7a7c\u7a7d\u7a7e\u7a82\u7a85\u7a87\u7a89\u7a8a\u7a8b\u7a8c\u7a8e\u7a8f\u7a90\u7a93\u7a94\u7a99\u7a9a\u7a9b\u7a9e\u7aa1\u7aa2\u8d30\u53d1\u7f5a\u7b4f\u4f10\u4e4f\u9600\u6cd5\u73d0\u85e9\u5e06\u756a\u7ffb\u6a0a\u77fe\u9492\u7e41\u51e1\u70e6\u53cd\u8fd4\u8303\u8d29\u72af\u996d\u6cdb\u574a\u82b3\u65b9\u80aa\u623f\u9632\u59a8\u4eff\u8bbf\u7eba\u653e\u83f2\u975e\u5561\u98de\u80a5\u532a\u8bfd\u5420\u80ba\u5e9f\u6cb8\u8d39\u82ac\u915a\u5429\u6c1b\u5206\u7eb7\u575f\u711a\u6c7e\u7c89\u594b\u4efd\u5fff\u6124\u7caa\u4e30\u5c01\u67ab\u8702\u5cf0\u950b\u98ce\u75af\u70fd\u9022\u51af\u7f1d\u8bbd\u5949\u51e4\u4f5b\u5426\u592b\u6577\u80a4\u5b75\u6276\u62c2\u8f90\u5e45\u6c1f\u7b26\u4f0f\u4fd8\u670d"],["b840","\u7aa3\u7aa4\u7aa7\u7aa9\u7aaa\u7aab\u7aae",4,"\u7ab4",10,"\u7ac0",10,"\u7acc",9,"\u7ad7\u7ad8\u7ada\u7adb\u7adc\u7add\u7ae1\u7ae2\u7ae4\u7ae7",5,"\u7aee\u7af0\u7af1\u7af2\u7af3"],["b880","\u7af4",4,"\u7afb\u7afc\u7afe\u7b00\u7b01\u7b02\u7b05\u7b07\u7b09\u7b0c\u7b0d\u7b0e\u7b10\u7b12\u7b13\u7b16\u7b17\u7b18\u7b1a\u7b1c\u7b1d\u7b1f\u7b21\u7b22\u7b23\u7b27\u7b29\u7b2d\u6d6e\u6daa\u798f\u88b1\u5f17\u752b\u629a\u8f85\u4fef\u91dc\u65a7\u812f\u8151\u5e9c\u8150\u8d74\u526f\u8986\u8d4b\u590d\u5085\u4ed8\u961c\u7236\u8179\u8d1f\u5bcc\u8ba3\u9644\u5987\u7f1a\u5490\u5676\u560e\u8be5\u6539\u6982\u9499\u76d6\u6e89\u5e72\u7518\u6746\u67d1\u7aff\u809d\u8d76\u611f\u79c6\u6562\u8d63\u5188\u521a\u94a2\u7f38\u809b\u7eb2\u5c97\u6e2f\u6760\u7bd9\u768b\u9ad8\u818f\u7f94\u7cd5\u641e\u9550\u7a3f\u544a\u54e5\u6b4c\u6401\u6208\u9e3d\u80f3\u7599\u5272\u9769\u845b\u683c\u86e4\u9601\u9694\u94ec\u4e2a\u5404\u7ed9\u6839\u8ddf\u8015\u66f4\u5e9a\u7fb9"],["b940","\u7b2f\u7b30\u7b32\u7b34\u7b35\u7b36\u7b37\u7b39\u7b3b\u7b3d\u7b3f",5,"\u7b46\u7b48\u7b4a\u7b4d\u7b4e\u7b53\u7b55\u7b57\u7b59\u7b5c\u7b5e\u7b5f\u7b61\u7b63",10,"\u7b6f\u7b70\u7b73\u7b74\u7b76\u7b78\u7b7a\u7b7c\u7b7d\u7b7f\u7b81\u7b82\u7b83\u7b84\u7b86",6,"\u7b8e\u7b8f"],["b980","\u7b91\u7b92\u7b93\u7b96\u7b98\u7b99\u7b9a\u7b9b\u7b9e\u7b9f\u7ba0\u7ba3\u7ba4\u7ba5\u7bae\u7baf\u7bb0\u7bb2\u7bb3\u7bb5\u7bb6\u7bb7\u7bb9",7,"\u7bc2\u7bc3\u7bc4\u57c2\u803f\u6897\u5de5\u653b\u529f\u606d\u9f9a\u4f9b\u8eac\u516c\u5bab\u5f13\u5de9\u6c5e\u62f1\u8d21\u5171\u94a9\u52fe\u6c9f\u82df\u72d7\u57a2\u6784\u8d2d\u591f\u8f9c\u83c7\u5495\u7b8d\u4f30\u6cbd\u5b64\u59d1\u9f13\u53e4\u86ca\u9aa8\u8c37\u80a1\u6545\u987e\u56fa\u96c7\u522e\u74dc\u5250\u5be1\u6302\u8902\u4e56\u62d0\u602a\u68fa\u5173\u5b98\u51a0\u89c2\u7ba1\u9986\u7f50\u60ef\u704c\u8d2f\u5149\u5e7f\u901b\u7470\u89c4\u572d\u7845\u5f52\u9f9f\u95fa\u8f68\u9b3c\u8be1\u7678\u6842\u67dc\u8dea\u8d35\u523d\u8f8a\u6eda\u68cd\u9505\u90ed\u56fd\u679c\u88f9\u8fc7\u54c8"],["ba40","\u7bc5\u7bc8\u7bc9\u7bca\u7bcb\u7bcd\u7bce\u7bcf\u7bd0\u7bd2\u7bd4",4,"\u7bdb\u7bdc\u7bde\u7bdf\u7be0\u7be2\u7be3\u7be4\u7be7\u7be8\u7be9\u7beb\u7bec\u7bed\u7bef\u7bf0\u7bf2",4,"\u7bf8\u7bf9\u7bfa\u7bfb\u7bfd\u7bff",7,"\u7c08\u7c09\u7c0a\u7c0d\u7c0e\u7c10",5,"\u7c17\u7c18\u7c19"],["ba80","\u7c1a",4,"\u7c20",5,"\u7c28\u7c29\u7c2b",12,"\u7c39",5,"\u7c42\u9ab8\u5b69\u6d77\u6c26\u4ea5\u5bb3\u9a87\u9163\u61a8\u90af\u97e9\u542b\u6db5\u5bd2\u51fd\u558a\u7f55\u7ff0\u64bc\u634d\u65f1\u61be\u608d\u710a\u6c57\u6c49\u592f\u676d\u822a\u58d5\u568e\u8c6a\u6beb\u90dd\u597d\u8017\u53f7\u6d69\u5475\u559d\u8377\u83cf\u6838\u79be\u548c\u4f55\u5408\u76d2\u8c89\u9602\u6cb3\u6db8\u8d6b\u8910\u9e64\u8d3a\u563f\u9ed1\u75d5\u5f88\u72e0\u6068\u54fc\u4ea8\u6a2a\u8861\u6052\u8f70\u54c4\u70d8\u8679\u9e3f\u6d2a\u5b8f\u5f18\u7ea2\u5589\u4faf\u7334\u543c\u539a\u5019\u540e\u547c\u4e4e\u5ffd\u745a\u58f6\u846b\u80e1\u8774\u72d0\u7cca\u6e56"],["bb40","\u7c43",9,"\u7c4e",36,"\u7c75",5,"\u7c7e",9],["bb80","\u7c88\u7c8a",6,"\u7c93\u7c94\u7c96\u7c99\u7c9a\u7c9b\u7ca0\u7ca1\u7ca3\u7ca6\u7ca7\u7ca8\u7ca9\u7cab\u7cac\u7cad\u7caf\u7cb0\u7cb4",4,"\u7cba\u7cbb\u5f27\u864e\u552c\u62a4\u4e92\u6caa\u6237\u82b1\u54d7\u534e\u733e\u6ed1\u753b\u5212\u5316\u8bdd\u69d0\u5f8a\u6000\u6dee\u574f\u6b22\u73af\u6853\u8fd8\u7f13\u6362\u60a3\u5524\u75ea\u8c62\u7115\u6da3\u5ba6\u5e7b\u8352\u614c\u9ec4\u78fa\u8757\u7c27\u7687\u51f0\u60f6\u714c\u6643\u5e4c\u604d\u8c0e\u7070\u6325\u8f89\u5fbd\u6062\u86d4\u56de\u6bc1\u6094\u6167\u5349\u60e0\u6666\u8d3f\u79fd\u4f1a\u70e9\u6c47\u8bb3\u8bf2\u7ed8\u8364\u660f\u5a5a\u9b42\u6d51\u6df7\u8c41\u6d3b\u4f19\u706b\u83b7\u6216\u60d1\u970d\u8d27\u7978\u51fb\u573e\u57fa\u673a\u7578\u7a3d\u79ef\u7b95"],["bc40","\u7cbf\u7cc0\u7cc2\u7cc3\u7cc4\u7cc6\u7cc9\u7ccb\u7cce",6,"\u7cd8\u7cda\u7cdb\u7cdd\u7cde\u7ce1",6,"\u7ce9",5,"\u7cf0",7,"\u7cf9\u7cfa\u7cfc",13,"\u7d0b",5],["bc80","\u7d11",14,"\u7d21\u7d23\u7d24\u7d25\u7d26\u7d28\u7d29\u7d2a\u7d2c\u7d2d\u7d2e\u7d30",6,"\u808c\u9965\u8ff9\u6fc0\u8ba5\u9e21\u59ec\u7ee9\u7f09\u5409\u6781\u68d8\u8f91\u7c4d\u96c6\u53ca\u6025\u75be\u6c72\u5373\u5ac9\u7ea7\u6324\u51e0\u810a\u5df1\u84df\u6280\u5180\u5b63\u4f0e\u796d\u5242\u60b8\u6d4e\u5bc4\u5bc2\u8ba1\u8bb0\u65e2\u5fcc\u9645\u5993\u7ee7\u7eaa\u5609\u67b7\u5939\u4f73\u5bb6\u52a0\u835a\u988a\u8d3e\u7532\u94be\u5047\u7a3c\u4ef7\u67b6\u9a7e\u5ac1\u6b7c\u76d1\u575a\u5c16\u7b3a\u95f4\u714e\u517c\u80a9\u8270\u5978\u7f04\u8327\u68c0\u67ec\u78b1\u7877\u62e3\u6361\u7b80\u4fed\u526a\u51cf\u8350\u69db\u9274\u8df5\u8d31\u89c1\u952e\u7bad\u4ef6"],["bd40","\u7d37",54,"\u7d6f",7],["bd80","\u7d78",32,"\u5065\u8230\u5251\u996f\u6e10\u6e85\u6da7\u5efa\u50f5\u59dc\u5c06\u6d46\u6c5f\u7586\u848b\u6868\u5956\u8bb2\u5320\u9171\u964d\u8549\u6912\u7901\u7126\u80f6\u4ea4\u90ca\u6d47\u9a84\u5a07\u56bc\u6405\u94f0\u77eb\u4fa5\u811a\u72e1\u89d2\u997a\u7f34\u7ede\u527f\u6559\u9175\u8f7f\u8f83\u53eb\u7a96\u63ed\u63a5\u7686\u79f8\u8857\u9636\u622a\u52ab\u8282\u6854\u6770\u6377\u776b\u7aed\u6d01\u7ed3\u89e3\u59d0\u6212\u85c9\u82a5\u754c\u501f\u4ecb\u75a5\u8beb\u5c4a\u5dfe\u7b4b\u65a4\u91d1\u4eca\u6d25\u895f\u7d27\u9526\u4ec5\u8c28\u8fdb\u9773\u664b\u7981\u8fd1\u70ec\u6d78"],["be40","\u7d99",12,"\u7da7",6,"\u7daf",42],["be80","\u7dda",32,"\u5c3d\u52b2\u8346\u5162\u830e\u775b\u6676\u9cb8\u4eac\u60ca\u7cbe\u7cb3\u7ecf\u4e95\u8b66\u666f\u9888\u9759\u5883\u656c\u955c\u5f84\u75c9\u9756\u7adf\u7ade\u51c0\u70af\u7a98\u63ea\u7a76\u7ea0\u7396\u97ed\u4e45\u7078\u4e5d\u9152\u53a9\u6551\u65e7\u81fc\u8205\u548e\u5c31\u759a\u97a0\u62d8\u72d9\u75bd\u5c45\u9a79\u83ca\u5c40\u5480\u77e9\u4e3e\u6cae\u805a\u62d2\u636e\u5de8\u5177\u8ddd\u8e1e\u952f\u4ff1\u53e5\u60e7\u70ac\u5267\u6350\u9e43\u5a1f\u5026\u7737\u5377\u7ee2\u6485\u652b\u6289\u6398\u5014\u7235\u89c9\u51b3\u8bc0\u7edd\u5747\u83cc\u94a7\u519b\u541b\u5cfb"],["bf40","\u7dfb",62],["bf80","\u7e3a\u7e3c",4,"\u7e42",4,"\u7e48",21,"\u4fca\u7ae3\u6d5a\u90e1\u9a8f\u5580\u5496\u5361\u54af\u5f00\u63e9\u6977\u51ef\u6168\u520a\u582a\u52d8\u574e\u780d\u770b\u5eb7\u6177\u7ce0\u625b\u6297\u4ea2\u7095\u8003\u62f7\u70e4\u9760\u5777\u82db\u67ef\u68f5\u78d5\u9897\u79d1\u58f3\u54b3\u53ef\u6e34\u514b\u523b\u5ba2\u8bfe\u80af\u5543\u57a6\u6073\u5751\u542d\u7a7a\u6050\u5b54\u63a7\u62a0\u53e3\u6263\u5bc7\u67af\u54ed\u7a9f\u82e6\u9177\u5e93\u88e4\u5938\u57ae\u630e\u8de8\u80ef\u5757\u7b77\u4fa9\u5feb\u5bbd\u6b3e\u5321\u7b50\u72c2\u6846\u77ff\u7736\u65f7\u51b5\u4e8f\u76d4\u5cbf\u7aa5\u8475\u594e\u9b41\u5080"],["c040","\u7e5e",35,"\u7e83",23,"\u7e9c\u7e9d\u7e9e"],["c080","\u7eae\u7eb4\u7ebb\u7ebc\u7ed6\u7ee4\u7eec\u7ef9\u7f0a\u7f10\u7f1e\u7f37\u7f39\u7f3b",6,"\u7f43\u7f46",9,"\u7f52\u7f53\u9988\u6127\u6e83\u5764\u6606\u6346\u56f0\u62ec\u6269\u5ed3\u9614\u5783\u62c9\u5587\u8721\u814a\u8fa3\u5566\u83b1\u6765\u8d56\u84dd\u5a6a\u680f\u62e6\u7bee\u9611\u5170\u6f9c\u8c30\u63fd\u89c8\u61d2\u7f06\u70c2\u6ee5\u7405\u6994\u72fc\u5eca\u90ce\u6717\u6d6a\u635e\u52b3\u7262\u8001\u4f6c\u59e5\u916a\u70d9\u6d9d\u52d2\u4e50\u96f7\u956d\u857e\u78ca\u7d2f\u5121\u5792\u64c2\u808b\u7c7b\u6cea\u68f1\u695e\u51b7\u5398\u68a8\u7281\u9ece\u7bf1\u72f8\u79bb\u6f13\u7406\u674e\u91cc\u9ca4\u793c\u8389\u8354\u540f\u6817\u4e3d\u5389\u52b1\u783e\u5386\u5229\u5088\u4f8b\u4fd0"],["c140","\u7f56\u7f59\u7f5b\u7f5c\u7f5d\u7f5e\u7f60\u7f63",4,"\u7f6b\u7f6c\u7f6d\u7f6f\u7f70\u7f73\u7f75\u7f76\u7f77\u7f78\u7f7a\u7f7b\u7f7c\u7f7d\u7f7f\u7f80\u7f82",7,"\u7f8b\u7f8d\u7f8f",4,"\u7f95",4,"\u7f9b\u7f9c\u7fa0\u7fa2\u7fa3\u7fa5\u7fa6\u7fa8",6,"\u7fb1"],["c180","\u7fb3",4,"\u7fba\u7fbb\u7fbe\u7fc0\u7fc2\u7fc3\u7fc4\u7fc6\u7fc7\u7fc8\u7fc9\u7fcb\u7fcd\u7fcf",4,"\u7fd6\u7fd7\u7fd9",5,"\u7fe2\u7fe3\u75e2\u7acb\u7c92\u6ca5\u96b6\u529b\u7483\u54e9\u4fe9\u8054\u83b2\u8fde\u9570\u5ec9\u601c\u6d9f\u5e18\u655b\u8138\u94fe\u604b\u70bc\u7ec3\u7cae\u51c9\u6881\u7cb1\u826f\u4e24\u8f86\u91cf\u667e\u4eae\u8c05\u64a9\u804a\u50da\u7597\u71ce\u5be5\u8fbd\u6f66\u4e86\u6482\u9563\u5ed6\u6599\u5217\u88c2\u70c8\u52a3\u730e\u7433\u6797\u78f7\u9716\u4e34\u90bb\u9cde\u6dcb\u51db\u8d41\u541d\u62ce\u73b2\u83f1\u96f6\u9f84\u94c3\u4f36\u7f9a\u51cc\u7075\u9675\u5cad\u9886\u53e6\u4ee4\u6e9c\u7409\u69b4\u786b\u998f\u7559\u5218\u7624\u6d41\u67f3\u516d\u9f99\u804b\u5499\u7b3c\u7abf"],["c240","\u7fe4\u7fe7\u7fe8\u7fea\u7feb\u7fec\u7fed\u7fef\u7ff2\u7ff4",6,"\u7ffd\u7ffe\u7fff\u8002\u8007\u8008\u8009\u800a\u800e\u800f\u8011\u8013\u801a\u801b\u801d\u801e\u801f\u8021\u8023\u8024\u802b",5,"\u8032\u8034\u8039\u803a\u803c\u803e\u8040\u8041\u8044\u8045\u8047\u8048\u8049\u804e\u804f\u8050\u8051\u8053\u8055\u8056\u8057"],["c280","\u8059\u805b",13,"\u806b",5,"\u8072",11,"\u9686\u5784\u62e2\u9647\u697c\u5a04\u6402\u7bd3\u6f0f\u964b\u82a6\u5362\u9885\u5e90\u7089\u63b3\u5364\u864f\u9c81\u9e93\u788c\u9732\u8def\u8d42\u9e7f\u6f5e\u7984\u5f55\u9646\u622e\u9a74\u5415\u94dd\u4fa3\u65c5\u5c65\u5c61\u7f15\u8651\u6c2f\u5f8b\u7387\u6ee4\u7eff\u5ce6\u631b\u5b6a\u6ee6\u5375\u4e71\u63a0\u7565\u62a1\u8f6e\u4f26\u4ed1\u6ca6\u7eb6\u8bba\u841d\u87ba\u7f57\u903b\u9523\u7ba9\u9aa1\u88f8\u843d\u6d1b\u9a86\u7edc\u5988\u9ebb\u739b\u7801\u8682\u9a6c\u9a82\u561b\u5417\u57cb\u4e70\u9ea6\u5356\u8fc8\u8109\u7792\u9992\u86ee\u6ee1\u8513\u66fc\u6162\u6f2b"],["c340","\u807e\u8081\u8082\u8085\u8088\u808a\u808d",5,"\u8094\u8095\u8097\u8099\u809e\u80a3\u80a6\u80a7\u80a8\u80ac\u80b0\u80b3\u80b5\u80b6\u80b8\u80b9\u80bb\u80c5\u80c7",4,"\u80cf",6,"\u80d8\u80df\u80e0\u80e2\u80e3\u80e6\u80ee\u80f5\u80f7\u80f9\u80fb\u80fe\u80ff\u8100\u8101\u8103\u8104\u8105\u8107\u8108\u810b"],["c380","\u810c\u8115\u8117\u8119\u811b\u811c\u811d\u811f",12,"\u812d\u812e\u8130\u8133\u8134\u8135\u8137\u8139",4,"\u813f\u8c29\u8292\u832b\u76f2\u6c13\u5fd9\u83bd\u732b\u8305\u951a\u6bdb\u77db\u94c6\u536f\u8302\u5192\u5e3d\u8c8c\u8d38\u4e48\u73ab\u679a\u6885\u9176\u9709\u7164\u6ca1\u7709\u5a92\u9541\u6bcf\u7f8e\u6627\u5bd0\u59b9\u5a9a\u95e8\u95f7\u4eec\u840c\u8499\u6aac\u76df\u9530\u731b\u68a6\u5b5f\u772f\u919a\u9761\u7cdc\u8ff7\u8c1c\u5f25\u7c73\u79d8\u89c5\u6ccc\u871c\u5bc6\u5e42\u68c9\u7720\u7ef5\u5195\u514d\u52c9\u5a29\u7f05\u9762\u82d7\u63cf\u7784\u85d0\u79d2\u6e3a\u5e99\u5999\u8511\u706d\u6c11\u62bf\u76bf\u654f\u60af\u95fd\u660e\u879f\u9e23\u94ed\u540d\u547d\u8c2c\u6478"],["c440","\u8140",5,"\u8147\u8149\u814d\u814e\u814f\u8152\u8156\u8157\u8158\u815b",4,"\u8161\u8162\u8163\u8164\u8166\u8168\u816a\u816b\u816c\u816f\u8172\u8173\u8175\u8176\u8177\u8178\u8181\u8183",4,"\u8189\u818b\u818c\u818d\u818e\u8190\u8192",5,"\u8199\u819a\u819e",4,"\u81a4\u81a5"],["c480","\u81a7\u81a9\u81ab",7,"\u81b4",5,"\u81bc\u81bd\u81be\u81bf\u81c4\u81c5\u81c7\u81c8\u81c9\u81cb\u81cd",6,"\u6479\u8611\u6a21\u819c\u78e8\u6469\u9b54\u62b9\u672b\u83ab\u58a8\u9ed8\u6cab\u6f20\u5bde\u964c\u8c0b\u725f\u67d0\u62c7\u7261\u4ea9\u59c6\u6bcd\u5893\u66ae\u5e55\u52df\u6155\u6728\u76ee\u7766\u7267\u7a46\u62ff\u54ea\u5450\u94a0\u90a3\u5a1c\u7eb3\u6c16\u4e43\u5976\u8010\u5948\u5357\u7537\u96be\u56ca\u6320\u8111\u607c\u95f9\u6dd6\u5462\u9981\u5185\u5ae9\u80fd\u59ae\u9713\u502a\u6ce5\u5c3c\u62df\u4f60\u533f\u817b\u9006\u6eba\u852b\u62c8\u5e74\u78be\u64b5\u637b\u5ff5\u5a18\u917f\u9e1f\u5c3f\u634f\u8042\u5b7d\u556e\u954a\u954d\u6d85\u60a8\u67e0\u72de\u51dd\u5b81"],["c540","\u81d4",14,"\u81e4\u81e5\u81e6\u81e8\u81e9\u81eb\u81ee",4,"\u81f5",5,"\u81fd\u81ff\u8203\u8207",4,"\u820e\u820f\u8211\u8213\u8215",5,"\u821d\u8220\u8224\u8225\u8226\u8227\u8229\u822e\u8232\u823a\u823c\u823d\u823f"],["c580","\u8240\u8241\u8242\u8243\u8245\u8246\u8248\u824a\u824c\u824d\u824e\u8250",7,"\u8259\u825b\u825c\u825d\u825e\u8260",7,"\u8269\u62e7\u6cde\u725b\u626d\u94ae\u7ebd\u8113\u6d53\u519c\u5f04\u5974\u52aa\u6012\u5973\u6696\u8650\u759f\u632a\u61e6\u7cef\u8bfa\u54e6\u6b27\u9e25\u6bb4\u85d5\u5455\u5076\u6ca4\u556a\u8db4\u722c\u5e15\u6015\u7436\u62cd\u6392\u724c\u5f98\u6e43\u6d3e\u6500\u6f58\u76d8\u78d0\u76fc\u7554\u5224\u53db\u4e53\u5e9e\u65c1\u802a\u80d6\u629b\u5486\u5228\u70ae\u888d\u8dd1\u6ce1\u5478\u80da\u57f9\u88f4\u8d54\u966a\u914d\u4f69\u6c9b\u55b7\u76c6\u7830\u62a8\u70f9\u6f8e\u5f6d\u84ec\u68da\u787c\u7bf7\u81a8\u670b\u9e4f\u6367\u78b0\u576f\u7812\u9739\u6279\u62ab\u5288\u7435\u6bd7"],["c640","\u826a\u826b\u826c\u826d\u8271\u8275\u8276\u8277\u8278\u827b\u827c\u8280\u8281\u8283\u8285\u8286\u8287\u8289\u828c\u8290\u8293\u8294\u8295\u8296\u829a\u829b\u829e\u82a0\u82a2\u82a3\u82a7\u82b2\u82b5\u82b6\u82ba\u82bb\u82bc\u82bf\u82c0\u82c2\u82c3\u82c5\u82c6\u82c9\u82d0\u82d6\u82d9\u82da\u82dd\u82e2\u82e7\u82e8\u82e9\u82ea\u82ec\u82ed\u82ee\u82f0\u82f2\u82f3\u82f5\u82f6\u82f8"],["c680","\u82fa\u82fc",4,"\u830a\u830b\u830d\u8310\u8312\u8313\u8316\u8318\u8319\u831d",9,"\u8329\u832a\u832e\u8330\u8332\u8337\u833b\u833d\u5564\u813e\u75b2\u76ae\u5339\u75de\u50fb\u5c41\u8b6c\u7bc7\u504f\u7247\u9a97\u98d8\u6f02\u74e2\u7968\u6487\u77a5\u62fc\u9891\u8d2b\u54c1\u8058\u4e52\u576a\u82f9\u840d\u5e73\u51ed\u74f6\u8bc4\u5c4f\u5761\u6cfc\u9887\u5a46\u7834\u9b44\u8feb\u7c95\u5256\u6251\u94fa\u4ec6\u8386\u8461\u83e9\u84b2\u57d4\u6734\u5703\u666e\u6d66\u8c31\u66dd\u7011\u671f\u6b3a\u6816\u621a\u59bb\u4e03\u51c4\u6f06\u67d2\u6c8f\u5176\u68cb\u5947\u6b67\u7566\u5d0e\u8110\u9f50\u65d7\u7948\u7941\u9a91\u8d77\u5c82\u4e5e\u4f01\u542f\u5951\u780c\u5668\u6c14\u8fc4\u5f03\u6c7d\u6ce3\u8bab\u6390"],["c740","\u833e\u833f\u8341\u8342\u8344\u8345\u8348\u834a",4,"\u8353\u8355",4,"\u835d\u8362\u8370",6,"\u8379\u837a\u837e",6,"\u8387\u8388\u838a\u838b\u838c\u838d\u838f\u8390\u8391\u8394\u8395\u8396\u8397\u8399\u839a\u839d\u839f\u83a1",6,"\u83ac\u83ad\u83ae"],["c780","\u83af\u83b5\u83bb\u83be\u83bf\u83c2\u83c3\u83c4\u83c6\u83c8\u83c9\u83cb\u83cd\u83ce\u83d0\u83d1\u83d2\u83d3\u83d5\u83d7\u83d9\u83da\u83db\u83de\u83e2\u83e3\u83e4\u83e6\u83e7\u83e8\u83eb\u83ec\u83ed\u6070\u6d3d\u7275\u6266\u948e\u94c5\u5343\u8fc1\u7b7e\u4edf\u8c26\u4e7e\u9ed4\u94b1\u94b3\u524d\u6f5c\u9063\u6d45\u8c34\u5811\u5d4c\u6b20\u6b49\u67aa\u545b\u8154\u7f8c\u5899\u8537\u5f3a\u62a2\u6a47\u9539\u6572\u6084\u6865\u77a7\u4e54\u4fa8\u5de7\u9798\u64ac\u7fd8\u5ced\u4fcf\u7a8d\u5207\u8304\u4e14\u602f\u7a83\u94a6\u4fb5\u4eb2\u79e6\u7434\u52e4\u82b9\u64d2\u79bd\u5bdd\u6c81\u9752\u8f7b\u6c22\u503e\u537f\u6e05\u64ce\u6674\u6c30\u60c5\u9877\u8bf7\u5e86\u743c\u7a77\u79cb\u4e18\u90b1\u7403\u6c42\u56da\u914b\u6cc5\u8d8b\u533a\u86c6\u66f2\u8eaf\u5c48\u9a71\u6e20"],["c840","\u83ee\u83ef\u83f3",4,"\u83fa\u83fb\u83fc\u83fe\u83ff\u8400\u8402\u8405\u8407\u8408\u8409\u840a\u8410\u8412",5,"\u8419\u841a\u841b\u841e",5,"\u8429",7,"\u8432",5,"\u8439\u843a\u843b\u843e",7,"\u8447\u8448\u8449"],["c880","\u844a",6,"\u8452",4,"\u8458\u845d\u845e\u845f\u8460\u8462\u8464",4,"\u846a\u846e\u846f\u8470\u8472\u8474\u8477\u8479\u847b\u847c\u53d6\u5a36\u9f8b\u8da3\u53bb\u5708\u98a7\u6743\u919b\u6cc9\u5168\u75ca\u62f3\u72ac\u5238\u529d\u7f3a\u7094\u7638\u5374\u9e4a\u69b7\u786e\u96c0\u88d9\u7fa4\u7136\u71c3\u5189\u67d3\u74e4\u58e4\u6518\u56b7\u8ba9\u9976\u6270\u7ed5\u60f9\u70ed\u58ec\u4ec1\u4eba\u5fcd\u97e7\u4efb\u8ba4\u5203\u598a\u7eab\u6254\u4ecd\u65e5\u620e\u8338\u84c9\u8363\u878d\u7194\u6eb6\u5bb9\u7ed2\u5197\u63c9\u67d4\u8089\u8339\u8815\u5112\u5b7a\u5982\u8fb1\u4e73\u6c5d\u5165\u8925\u8f6f\u962e\u854a\u745e\u9510\u95f0\u6da6\u82e5\u5f31\u6492\u6d12\u8428\u816e\u9cc3\u585e\u8d5b\u4e09\u53c1"],["c940","\u847d",4,"\u8483\u8484\u8485\u8486\u848a\u848d\u848f",7,"\u8498\u849a\u849b\u849d\u849e\u849f\u84a0\u84a2",12,"\u84b0\u84b1\u84b3\u84b5\u84b6\u84b7\u84bb\u84bc\u84be\u84c0\u84c2\u84c3\u84c5\u84c6\u84c7\u84c8\u84cb\u84cc\u84ce\u84cf\u84d2\u84d4\u84d5\u84d7"],["c980","\u84d8",4,"\u84de\u84e1\u84e2\u84e4\u84e7",4,"\u84ed\u84ee\u84ef\u84f1",10,"\u84fd\u84fe\u8500\u8501\u8502\u4f1e\u6563\u6851\u55d3\u4e27\u6414\u9a9a\u626b\u5ac2\u745f\u8272\u6da9\u68ee\u50e7\u838e\u7802\u6740\u5239\u6c99\u7eb1\u50bb\u5565\u715e\u7b5b\u6652\u73ca\u82eb\u6749\u5c71\u5220\u717d\u886b\u95ea\u9655\u64c5\u8d61\u81b3\u5584\u6c55\u6247\u7f2e\u5892\u4f24\u5546\u8d4f\u664c\u4e0a\u5c1a\u88f3\u68a2\u634e\u7a0d\u70e7\u828d\u52fa\u97f6\u5c11\u54e8\u90b5\u7ecd\u5962\u8d4a\u86c7\u820c\u820d\u8d66\u6444\u5c04\u6151\u6d89\u793e\u8bbe\u7837\u7533\u547b\u4f38\u8eab\u6df1\u5a20\u7ec5\u795e\u6c88\u5ba1\u5a76\u751a\u80be\u614e\u6e17\u58f0\u751f\u7525\u7272\u5347\u7ef3"],["ca40","\u8503",8,"\u850d\u850e\u850f\u8510\u8512\u8514\u8515\u8516\u8518\u8519\u851b\u851c\u851d\u851e\u8520\u8522",8,"\u852d",9,"\u853e",4,"\u8544\u8545\u8546\u8547\u854b",10],["ca80","\u8557\u8558\u855a\u855b\u855c\u855d\u855f",4,"\u8565\u8566\u8567\u8569",8,"\u8573\u8575\u8576\u8577\u8578\u857c\u857d\u857f\u8580\u8581\u7701\u76db\u5269\u80dc\u5723\u5e08\u5931\u72ee\u65bd\u6e7f\u8bd7\u5c38\u8671\u5341\u77f3\u62fe\u65f6\u4ec0\u98df\u8680\u5b9e\u8bc6\u53f2\u77e2\u4f7f\u5c4e\u9a76\u59cb\u5f0f\u793a\u58eb\u4e16\u67ff\u4e8b\u62ed\u8a93\u901d\u52bf\u662f\u55dc\u566c\u9002\u4ed5\u4f8d\u91ca\u9970\u6c0f\u5e02\u6043\u5ba4\u89c6\u8bd5\u6536\u624b\u9996\u5b88\u5bff\u6388\u552e\u53d7\u7626\u517d\u852c\u67a2\u68b3\u6b8a\u6292\u8f93\u53d4\u8212\u6dd1\u758f\u4e66\u8d4e\u5b70\u719f\u85af\u6691\u66d9\u7f72\u8700\u9ecd\u9f20\u5c5e\u672f\u8ff0\u6811\u675f\u620d\u7ad6\u5885\u5eb6\u6570\u6f31"],["cb40","\u8582\u8583\u8586\u8588",6,"\u8590",10,"\u859d",6,"\u85a5\u85a6\u85a7\u85a9\u85ab\u85ac\u85ad\u85b1",5,"\u85b8\u85ba",6,"\u85c2",6,"\u85ca",4,"\u85d1\u85d2"],["cb80","\u85d4\u85d6",5,"\u85dd",6,"\u85e5\u85e6\u85e7\u85e8\u85ea",14,"\u6055\u5237\u800d\u6454\u8870\u7529\u5e05\u6813\u62f4\u971c\u53cc\u723d\u8c01\u6c34\u7761\u7a0e\u542e\u77ac\u987a\u821c\u8bf4\u7855\u6714\u70c1\u65af\u6495\u5636\u601d\u79c1\u53f8\u4e1d\u6b7b\u8086\u5bfa\u55e3\u56db\u4f3a\u4f3c\u9972\u5df3\u677e\u8038\u6002\u9882\u9001\u5b8b\u8bbc\u8bf5\u641c\u8258\u64de\u55fd\u82cf\u9165\u4fd7\u7d20\u901f\u7c9f\u50f3\u5851\u6eaf\u5bbf\u8bc9\u8083\u9178\u849c\u7b97\u867d\u968b\u968f\u7ee5\u9ad3\u788e\u5c81\u7a57\u9042\u96a7\u795f\u5b59\u635f\u7b0b\u84d1\u68ad\u5506\u7f29\u7410\u7d22\u9501\u6240\u584c\u4ed6\u5b83\u5979\u5854"],["cc40","\u85f9\u85fa\u85fc\u85fd\u85fe\u8600",4,"\u8606",10,"\u8612\u8613\u8614\u8615\u8617",15,"\u8628\u862a",13,"\u8639\u863a\u863b\u863d\u863e\u863f\u8640"],["cc80","\u8641",11,"\u8652\u8653\u8655",4,"\u865b\u865c\u865d\u865f\u8660\u8661\u8663",7,"\u736d\u631e\u8e4b\u8e0f\u80ce\u82d4\u62ac\u53f0\u6cf0\u915e\u592a\u6001\u6c70\u574d\u644a\u8d2a\u762b\u6ee9\u575b\u6a80\u75f0\u6f6d\u8c2d\u8c08\u5766\u6bef\u8892\u78b3\u63a2\u53f9\u70ad\u6c64\u5858\u642a\u5802\u68e0\u819b\u5510\u7cd6\u5018\u8eba\u6dcc\u8d9f\u70eb\u638f\u6d9b\u6ed4\u7ee6\u8404\u6843\u9003\u6dd8\u9676\u8ba8\u5957\u7279\u85e4\u817e\u75bc\u8a8a\u68af\u5254\u8e22\u9511\u63d0\u9898\u8e44\u557c\u4f53\u66ff\u568f\u60d5\u6d95\u5243\u5c49\u5929\u6dfb\u586b\u7530\u751c\u606c\u8214\u8146\u6311\u6761\u8fe2\u773a\u8df3\u8d34\u94c1\u5e16\u5385\u542c\u70c3"],["cd40","\u866d\u866f\u8670\u8672",6,"\u8683",6,"\u868e",4,"\u8694\u8696",5,"\u869e",4,"\u86a5\u86a6\u86ab\u86ad\u86ae\u86b2\u86b3\u86b7\u86b8\u86b9\u86bb",4,"\u86c1\u86c2\u86c3\u86c5\u86c8\u86cc\u86cd\u86d2\u86d3\u86d5\u86d6\u86d7\u86da\u86dc"],["cd80","\u86dd\u86e0\u86e1\u86e2\u86e3\u86e5\u86e6\u86e7\u86e8\u86ea\u86eb\u86ec\u86ef\u86f5\u86f6\u86f7\u86fa\u86fb\u86fc\u86fd\u86ff\u8701\u8704\u8705\u8706\u870b\u870c\u870e\u870f\u8710\u8711\u8714\u8716\u6c40\u5ef7\u505c\u4ead\u5ead\u633a\u8247\u901a\u6850\u916e\u77b3\u540c\u94dc\u5f64\u7ae5\u6876\u6345\u7b52\u7edf\u75db\u5077\u6295\u5934\u900f\u51f8\u79c3\u7a81\u56fe\u5f92\u9014\u6d82\u5c60\u571f\u5410\u5154\u6e4d\u56e2\u63a8\u9893\u817f\u8715\u892a\u9000\u541e\u5c6f\u81c0\u62d6\u6258\u8131\u9e35\u9640\u9a6e\u9a7c\u692d\u59a5\u62d3\u553e\u6316\u54c7\u86d9\u6d3c\u5a03\u74e6\u889c\u6b6a\u5916\u8c4c\u5f2f\u6e7e\u73a9\u987d\u4e38\u70f7\u5b8c\u7897\u633d\u665a\u7696\u60cb\u5b9b\u5a49\u4e07\u8155\u6c6a\u738b\u4ea1\u6789\u7f51\u5f80\u65fa\u671b\u5fd8\u5984\u5a01"],["ce40","\u8719\u871b\u871d\u871f\u8720\u8724\u8726\u8727\u8728\u872a\u872b\u872c\u872d\u872f\u8730\u8732\u8733\u8735\u8736\u8738\u8739\u873a\u873c\u873d\u8740",6,"\u874a\u874b\u874d\u874f\u8750\u8751\u8752\u8754\u8755\u8756\u8758\u875a",5,"\u8761\u8762\u8766",7,"\u876f\u8771\u8772\u8773\u8775"],["ce80","\u8777\u8778\u8779\u877a\u877f\u8780\u8781\u8784\u8786\u8787\u8789\u878a\u878c\u878e",4,"\u8794\u8795\u8796\u8798",6,"\u87a0",4,"\u5dcd\u5fae\u5371\u97e6\u8fdd\u6845\u56f4\u552f\u60df\u4e3a\u6f4d\u7ef4\u82c7\u840e\u59d4\u4f1f\u4f2a\u5c3e\u7eac\u672a\u851a\u5473\u754f\u80c3\u5582\u9b4f\u4f4d\u6e2d\u8c13\u5c09\u6170\u536b\u761f\u6e29\u868a\u6587\u95fb\u7eb9\u543b\u7a33\u7d0a\u95ee\u55e1\u7fc1\u74ee\u631d\u8717\u6da1\u7a9d\u6211\u65a1\u5367\u63e1\u6c83\u5deb\u545c\u94a8\u4e4c\u6c61\u8bec\u5c4b\u65e0\u829c\u68a7\u543e\u5434\u6bcb\u6b66\u4e94\u6342\u5348\u821e\u4f0d\u4fae\u575e\u620a\u96fe\u6664\u7269\u52ff\u52a1\u609f\u8bef\u6614\u7199\u6790\u897f\u7852\u77fd\u6670\u563b\u5438\u9521\u727a"],["cf40","\u87a5\u87a6\u87a7\u87a9\u87aa\u87ae\u87b0\u87b1\u87b2\u87b4\u87b6\u87b7\u87b8\u87b9\u87bb\u87bc\u87be\u87bf\u87c1",4,"\u87c7\u87c8\u87c9\u87cc",4,"\u87d4",6,"\u87dc\u87dd\u87de\u87df\u87e1\u87e2\u87e3\u87e4\u87e6\u87e7\u87e8\u87e9\u87eb\u87ec\u87ed\u87ef",9],["cf80","\u87fa\u87fb\u87fc\u87fd\u87ff\u8800\u8801\u8802\u8804",5,"\u880b",7,"\u8814\u8817\u8818\u8819\u881a\u881c",4,"\u8823\u7a00\u606f\u5e0c\u6089\u819d\u5915\u60dc\u7184\u70ef\u6eaa\u6c50\u7280\u6a84\u88ad\u5e2d\u4e60\u5ab3\u559c\u94e3\u6d17\u7cfb\u9699\u620f\u7ec6\u778e\u867e\u5323\u971e\u8f96\u6687\u5ce1\u4fa0\u72ed\u4e0b\u53a6\u590f\u5413\u6380\u9528\u5148\u4ed9\u9c9c\u7ea4\u54b8\u8d24\u8854\u8237\u95f2\u6d8e\u5f26\u5acc\u663e\u9669\u73b0\u732e\u53bf\u817a\u9985\u7fa1\u5baa\u9677\u9650\u7ebf\u76f8\u53a2\u9576\u9999\u7bb1\u8944\u6e58\u4e61\u7fd4\u7965\u8be6\u60f3\u54cd\u4eab\u9879\u5df7\u6a61\u50cf\u5411\u8c61\u8427\u785d\u9704\u524a\u54ee\u56a3\u9500\u6d88\u5bb5\u6dc6\u6653"],["d040","\u8824",13,"\u8833",5,"\u883a\u883b\u883d\u883e\u883f\u8841\u8842\u8843\u8846",5,"\u884e",5,"\u8855\u8856\u8858\u885a",6,"\u8866\u8867\u886a\u886d\u886f\u8871\u8873\u8874\u8875\u8876\u8878\u8879\u887a"],["d080","\u887b\u887c\u8880\u8883\u8886\u8887\u8889\u888a\u888c\u888e\u888f\u8890\u8891\u8893\u8894\u8895\u8897",4,"\u889d",4,"\u88a3\u88a5",5,"\u5c0f\u5b5d\u6821\u8096\u5578\u7b11\u6548\u6954\u4e9b\u6b47\u874e\u978b\u534f\u631f\u643a\u90aa\u659c\u80c1\u8c10\u5199\u68b0\u5378\u87f9\u61c8\u6cc4\u6cfb\u8c22\u5c51\u85aa\u82af\u950c\u6b23\u8f9b\u65b0\u5ffb\u5fc3\u4fe1\u8845\u661f\u8165\u7329\u60fa\u5174\u5211\u578b\u5f62\u90a2\u884c\u9192\u5e78\u674f\u6027\u59d3\u5144\u51f6\u80f8\u5308\u6c79\u96c4\u718a\u4f11\u4fee\u7f9e\u673d\u55c5\u9508\u79c0\u8896\u7ee3\u589f\u620c\u9700\u865a\u5618\u987b\u5f90\u8bb8\u84c4\u9157\u53d9\u65ed\u5e8f\u755c\u6064\u7d6e\u5a7f\u7eea\u7eed\u8f69\u55a7\u5ba3\u60ac\u65cb\u7384"],["d140","\u88ac\u88ae\u88af\u88b0\u88b2",4,"\u88b8\u88b9\u88ba\u88bb\u88bd\u88be\u88bf\u88c0\u88c3\u88c4\u88c7\u88c8\u88ca\u88cb\u88cc\u88cd\u88cf\u88d0\u88d1\u88d3\u88d6\u88d7\u88da",4,"\u88e0\u88e1\u88e6\u88e7\u88e9",6,"\u88f2\u88f5\u88f6\u88f7\u88fa\u88fb\u88fd\u88ff\u8900\u8901\u8903",5],["d180","\u8909\u890b",4,"\u8911\u8914",4,"\u891c",4,"\u8922\u8923\u8924\u8926\u8927\u8928\u8929\u892c\u892d\u892e\u892f\u8931\u8932\u8933\u8935\u8937\u9009\u7663\u7729\u7eda\u9774\u859b\u5b66\u7a74\u96ea\u8840\u52cb\u718f\u5faa\u65ec\u8be2\u5bfb\u9a6f\u5de1\u6b89\u6c5b\u8bad\u8baf\u900a\u8fc5\u538b\u62bc\u9e26\u9e2d\u5440\u4e2b\u82bd\u7259\u869c\u5d16\u8859\u6daf\u96c5\u54d1\u4e9a\u8bb6\u7109\u54bd\u9609\u70df\u6df9\u76d0\u4e25\u7814\u8712\u5ca9\u5ef6\u8a00\u989c\u960e\u708e\u6cbf\u5944\u63a9\u773c\u884d\u6f14\u8273\u5830\u71d5\u538c\u781a\u96c1\u5501\u5f66\u7130\u5bb4\u8c1a\u9a8c\u6b83\u592e\u9e2f\u79e7\u6768\u626c\u4f6f\u75a1\u7f8a\u6d0b\u9633\u6c27\u4ef0\u75d2\u517b\u6837\u6f3e\u9080\u8170\u5996\u7476"],["d240","\u8938",8,"\u8942\u8943\u8945",24,"\u8960",5,"\u8967",19,"\u897c"],["d280","\u897d\u897e\u8980\u8982\u8984\u8985\u8987",26,"\u6447\u5c27\u9065\u7a91\u8c23\u59da\u54ac\u8200\u836f\u8981\u8000\u6930\u564e\u8036\u7237\u91ce\u51b6\u4e5f\u9875\u6396\u4e1a\u53f6\u66f3\u814b\u591c\u6db2\u4e00\u58f9\u533b\u63d6\u94f1\u4f9d\u4f0a\u8863\u9890\u5937\u9057\u79fb\u4eea\u80f0\u7591\u6c82\u5b9c\u59e8\u5f5d\u6905\u8681\u501a\u5df2\u4e59\u77e3\u4ee5\u827a\u6291\u6613\u9091\u5c79\u4ebf\u5f79\u81c6\u9038\u8084\u75ab\u4ea6\u88d4\u610f\u6bc5\u5fc6\u4e49\u76ca\u6ea2\u8be3\u8bae\u8c0a\u8bd1\u5f02\u7ffc\u7fcc\u7ece\u8335\u836b\u56e0\u6bb7\u97f3\u9634\u59fb\u541f\u94f6\u6deb\u5bc5\u996e\u5c39\u5f15\u9690"],["d340","\u89a2",30,"\u89c3\u89cd\u89d3\u89d4\u89d5\u89d7\u89d8\u89d9\u89db\u89dd\u89df\u89e0\u89e1\u89e2\u89e4\u89e7\u89e8\u89e9\u89ea\u89ec\u89ed\u89ee\u89f0\u89f1\u89f2\u89f4",6],["d380","\u89fb",4,"\u8a01",5,"\u8a08",21,"\u5370\u82f1\u6a31\u5a74\u9e70\u5e94\u7f28\u83b9\u8424\u8425\u8367\u8747\u8fce\u8d62\u76c8\u5f71\u9896\u786c\u6620\u54df\u62e5\u4f63\u81c3\u75c8\u5eb8\u96cd\u8e0a\u86f9\u548f\u6cf3\u6d8c\u6c38\u607f\u52c7\u7528\u5e7d\u4f18\u60a0\u5fe7\u5c24\u7531\u90ae\u94c0\u72b9\u6cb9\u6e38\u9149\u6709\u53cb\u53f3\u4f51\u91c9\u8bf1\u53c8\u5e7c\u8fc2\u6de4\u4e8e\u76c2\u6986\u865e\u611a\u8206\u4f59\u4fde\u903e\u9c7c\u6109\u6e1d\u6e14\u9685\u4e88\u5a31\u96e8\u4e0e\u5c7f\u79b9\u5b87\u8bed\u7fbd\u7389\u57df\u828b\u90c1\u5401\u9047\u55bb\u5cea\u5fa1\u6108\u6b32\u72f1\u80b2\u8a89"],["d440","\u8a1e",31,"\u8a3f",8,"\u8a49",21],["d480","\u8a5f",25,"\u8a7a",6,"\u6d74\u5bd3\u88d5\u9884\u8c6b\u9a6d\u9e33\u6e0a\u51a4\u5143\u57a3\u8881\u539f\u63f4\u8f95\u56ed\u5458\u5706\u733f\u6e90\u7f18\u8fdc\u82d1\u613f\u6028\u9662\u66f0\u7ea6\u8d8a\u8dc3\u94a5\u5cb3\u7ca4\u6708\u60a6\u9605\u8018\u4e91\u90e7\u5300\u9668\u5141\u8fd0\u8574\u915d\u6655\u97f5\u5b55\u531d\u7838\u6742\u683d\u54c9\u707e\u5bb0\u8f7d\u518d\u5728\u54b1\u6512\u6682\u8d5e\u8d43\u810f\u846c\u906d\u7cdf\u51ff\u85fb\u67a3\u65e9\u6fa1\u86a4\u8e81\u566a\u9020\u7682\u7076\u71e5\u8d23\u62e9\u5219\u6cfd\u8d3c\u600e\u589e\u618e\u66fe\u8d60\u624e\u55b3\u6e23\u672d\u8f67"],["d540","\u8a81",7,"\u8a8b",7,"\u8a94",46],["d580","\u8ac3",32,"\u94e1\u95f8\u7728\u6805\u69a8\u548b\u4e4d\u70b8\u8bc8\u6458\u658b\u5b85\u7a84\u503a\u5be8\u77bb\u6be1\u8a79\u7c98\u6cbe\u76cf\u65a9\u8f97\u5d2d\u5c55\u8638\u6808\u5360\u6218\u7ad9\u6e5b\u7efd\u6a1f\u7ae0\u5f70\u6f33\u5f20\u638c\u6da8\u6756\u4e08\u5e10\u8d26\u4ed7\u80c0\u7634\u969c\u62db\u662d\u627e\u6cbc\u8d75\u7167\u7f69\u5146\u8087\u53ec\u906e\u6298\u54f2\u86f0\u8f99\u8005\u9517\u8517\u8fd9\u6d59\u73cd\u659f\u771f\u7504\u7827\u81fb\u8d1e\u9488\u4fa6\u6795\u75b9\u8bca\u9707\u632f\u9547\u9635\u84b8\u6323\u7741\u5f81\u72f0\u4e89\u6014\u6574\u62ef\u6b63\u653f"],["d640","\u8ae4",34,"\u8b08",27],["d680","\u8b24\u8b25\u8b27",30,"\u5e27\u75c7\u90d1\u8bc1\u829d\u679d\u652f\u5431\u8718\u77e5\u80a2\u8102\u6c41\u4e4b\u7ec7\u804c\u76f4\u690d\u6b96\u6267\u503c\u4f84\u5740\u6307\u6b62\u8dbe\u53ea\u65e8\u7eb8\u5fd7\u631a\u63b7\u81f3\u81f4\u7f6e\u5e1c\u5cd9\u5236\u667a\u79e9\u7a1a\u8d28\u7099\u75d4\u6ede\u6cbb\u7a92\u4e2d\u76c5\u5fe0\u949f\u8877\u7ec8\u79cd\u80bf\u91cd\u4ef2\u4f17\u821f\u5468\u5dde\u6d32\u8bcc\u7ca5\u8f74\u8098\u5e1a\u5492\u76b1\u5b99\u663c\u9aa4\u73e0\u682a\u86db\u6731\u732a\u8bf8\u8bdb\u9010\u7af9\u70db\u716e\u62c4\u77a9\u5631\u4e3b\u8457\u67f1\u52a9\u86c0\u8d2e\u94f8\u7b51"],["d740","\u8b46",31,"\u8b67",4,"\u8b6d",25],["d780","\u8b87",24,"\u8bac\u8bb1\u8bbb\u8bc7\u8bd0\u8bea\u8c09\u8c1e\u4f4f\u6ce8\u795d\u9a7b\u6293\u722a\u62fd\u4e13\u7816\u8f6c\u64b0\u8d5a\u7bc6\u6869\u5e84\u88c5\u5986\u649e\u58ee\u72b6\u690e\u9525\u8ffd\u8d58\u5760\u7f00\u8c06\u51c6\u6349\u62d9\u5353\u684c\u7422\u8301\u914c\u5544\u7740\u707c\u6d4a\u5179\u54a8\u8d44\u59ff\u6ecb\u6dc4\u5b5c\u7d2b\u4ed4\u7c7d\u6ed3\u5b50\u81ea\u6e0d\u5b57\u9b03\u68d5\u8e2a\u5b97\u7efc\u603b\u7eb5\u90b9\u8d70\u594f\u63cd\u79df\u8db3\u5352\u65cf\u7956\u8bc5\u963b\u7ec4\u94bb\u7e82\u5634\u9189\u6700\u7f6a\u5c0a\u9075\u6628\u5de6\u4f50\u67de\u505a\u4f5c\u5750\u5ea7"],["d840","\u8c38",8,"\u8c42\u8c43\u8c44\u8c45\u8c48\u8c4a\u8c4b\u8c4d",7,"\u8c56\u8c57\u8c58\u8c59\u8c5b",5,"\u8c63",6,"\u8c6c",6,"\u8c74\u8c75\u8c76\u8c77\u8c7b",6,"\u8c83\u8c84\u8c86\u8c87"],["d880","\u8c88\u8c8b\u8c8d",6,"\u8c95\u8c96\u8c97\u8c99",20,"\u4e8d\u4e0c\u5140\u4e10\u5eff\u5345\u4e15\u4e98\u4e1e\u9b32\u5b6c\u5669\u4e28\u79ba\u4e3f\u5315\u4e47\u592d\u723b\u536e\u6c10\u56df\u80e4\u9997\u6bd3\u777e\u9f17\u4e36\u4e9f\u9f10\u4e5c\u4e69\u4e93\u8288\u5b5b\u556c\u560f\u4ec4\u538d\u539d\u53a3\u53a5\u53ae\u9765\u8d5d\u531a\u53f5\u5326\u532e\u533e\u8d5c\u5366\u5363\u5202\u5208\u520e\u522d\u5233\u523f\u5240\u524c\u525e\u5261\u525c\u84af\u527d\u5282\u5281\u5290\u5293\u5182\u7f54\u4ebb\u4ec3\u4ec9\u4ec2\u4ee8\u4ee1\u4eeb\u4ede\u4f1b\u4ef3\u4f22\u4f64\u4ef5\u4f25\u4f27\u4f09\u4f2b\u4f5e\u4f67\u6538\u4f5a\u4f5d"],["d940","\u8cae",62],["d980","\u8ced",32,"\u4f5f\u4f57\u4f32\u4f3d\u4f76\u4f74\u4f91\u4f89\u4f83\u4f8f\u4f7e\u4f7b\u4faa\u4f7c\u4fac\u4f94\u4fe6\u4fe8\u4fea\u4fc5\u4fda\u4fe3\u4fdc\u4fd1\u4fdf\u4ff8\u5029\u504c\u4ff3\u502c\u500f\u502e\u502d\u4ffe\u501c\u500c\u5025\u5028\u507e\u5043\u5055\u5048\u504e\u506c\u507b\u50a5\u50a7\u50a9\u50ba\u50d6\u5106\u50ed\u50ec\u50e6\u50ee\u5107\u510b\u4edd\u6c3d\u4f58\u4f65\u4fce\u9fa0\u6c46\u7c74\u516e\u5dfd\u9ec9\u9998\u5181\u5914\u52f9\u530d\u8a07\u5310\u51eb\u5919\u5155\u4ea0\u5156\u4eb3\u886e\u88a4\u4eb5\u8114\u88d2\u7980\u5b34\u8803\u7fb8\u51ab\u51b1\u51bd\u51bc"],["da40","\u8d0e",14,"\u8d20\u8d51\u8d52\u8d57\u8d5f\u8d65\u8d68\u8d69\u8d6a\u8d6c\u8d6e\u8d6f\u8d71\u8d72\u8d78",8,"\u8d82\u8d83\u8d86\u8d87\u8d88\u8d89\u8d8c",4,"\u8d92\u8d93\u8d95",9,"\u8da0\u8da1"],["da80","\u8da2\u8da4",12,"\u8db2\u8db6\u8db7\u8db9\u8dbb\u8dbd\u8dc0\u8dc1\u8dc2\u8dc5\u8dc7\u8dc8\u8dc9\u8dca\u8dcd\u8dd0\u8dd2\u8dd3\u8dd4\u51c7\u5196\u51a2\u51a5\u8ba0\u8ba6\u8ba7\u8baa\u8bb4\u8bb5\u8bb7\u8bc2\u8bc3\u8bcb\u8bcf\u8bce\u8bd2\u8bd3\u8bd4\u8bd6\u8bd8\u8bd9\u8bdc\u8bdf\u8be0\u8be4\u8be8\u8be9\u8bee\u8bf0\u8bf3\u8bf6\u8bf9\u8bfc\u8bff\u8c00\u8c02\u8c04\u8c07\u8c0c\u8c0f\u8c11\u8c12\u8c14\u8c15\u8c16\u8c19\u8c1b\u8c18\u8c1d\u8c1f\u8c20\u8c21\u8c25\u8c27\u8c2a\u8c2b\u8c2e\u8c2f\u8c32\u8c33\u8c35\u8c36\u5369\u537a\u961d\u9622\u9621\u9631\u962a\u963d\u963c\u9642\u9649\u9654\u965f\u9667\u966c\u9672\u9674\u9688\u968d\u9697\u96b0\u9097\u909b\u909d\u9099\u90ac\u90a1\u90b4\u90b3\u90b6\u90ba"],["db40","\u8dd5\u8dd8\u8dd9\u8ddc\u8de0\u8de1\u8de2\u8de5\u8de6\u8de7\u8de9\u8ded\u8dee\u8df0\u8df1\u8df2\u8df4\u8df6\u8dfc\u8dfe",6,"\u8e06\u8e07\u8e08\u8e0b\u8e0d\u8e0e\u8e10\u8e11\u8e12\u8e13\u8e15",7,"\u8e20\u8e21\u8e24",4,"\u8e2b\u8e2d\u8e30\u8e32\u8e33\u8e34\u8e36\u8e37\u8e38\u8e3b\u8e3c\u8e3e"],["db80","\u8e3f\u8e43\u8e45\u8e46\u8e4c",4,"\u8e53",5,"\u8e5a",11,"\u8e67\u8e68\u8e6a\u8e6b\u8e6e\u8e71\u90b8\u90b0\u90cf\u90c5\u90be\u90d0\u90c4\u90c7\u90d3\u90e6\u90e2\u90dc\u90d7\u90db\u90eb\u90ef\u90fe\u9104\u9122\u911e\u9123\u9131\u912f\u9139\u9143\u9146\u520d\u5942\u52a2\u52ac\u52ad\u52be\u54ff\u52d0\u52d6\u52f0\u53df\u71ee\u77cd\u5ef4\u51f5\u51fc\u9b2f\u53b6\u5f01\u755a\u5def\u574c\u57a9\u57a1\u587e\u58bc\u58c5\u58d1\u5729\u572c\u572a\u5733\u5739\u572e\u572f\u575c\u573b\u5742\u5769\u5785\u576b\u5786\u577c\u577b\u5768\u576d\u5776\u5773\u57ad\u57a4\u578c\u57b2\u57cf\u57a7\u57b4\u5793\u57a0\u57d5\u57d8\u57da\u57d9\u57d2\u57b8\u57f4\u57ef\u57f8\u57e4\u57dd"],["dc40","\u8e73\u8e75\u8e77",4,"\u8e7d\u8e7e\u8e80\u8e82\u8e83\u8e84\u8e86\u8e88",6,"\u8e91\u8e92\u8e93\u8e95",6,"\u8e9d\u8e9f",11,"\u8ead\u8eae\u8eb0\u8eb1\u8eb3",6,"\u8ebb",7],["dc80","\u8ec3",10,"\u8ecf",21,"\u580b\u580d\u57fd\u57ed\u5800\u581e\u5819\u5844\u5820\u5865\u586c\u5881\u5889\u589a\u5880\u99a8\u9f19\u61ff\u8279\u827d\u827f\u828f\u828a\u82a8\u8284\u828e\u8291\u8297\u8299\u82ab\u82b8\u82be\u82b0\u82c8\u82ca\u82e3\u8298\u82b7\u82ae\u82cb\u82cc\u82c1\u82a9\u82b4\u82a1\u82aa\u829f\u82c4\u82ce\u82a4\u82e1\u8309\u82f7\u82e4\u830f\u8307\u82dc\u82f4\u82d2\u82d8\u830c\u82fb\u82d3\u8311\u831a\u8306\u8314\u8315\u82e0\u82d5\u831c\u8351\u835b\u835c\u8308\u8392\u833c\u8334\u8331\u839b\u835e\u832f\u834f\u8347\u8343\u835f\u8340\u8317\u8360\u832d\u833a\u8333\u8366\u8365"],["dd40","\u8ee5",62],["dd80","\u8f24",32,"\u8368\u831b\u8369\u836c\u836a\u836d\u836e\u83b0\u8378\u83b3\u83b4\u83a0\u83aa\u8393\u839c\u8385\u837c\u83b6\u83a9\u837d\u83b8\u837b\u8398\u839e\u83a8\u83ba\u83bc\u83c1\u8401\u83e5\u83d8\u5807\u8418\u840b\u83dd\u83fd\u83d6\u841c\u8438\u8411\u8406\u83d4\u83df\u840f\u8403\u83f8\u83f9\u83ea\u83c5\u83c0\u8426\u83f0\u83e1\u845c\u8451\u845a\u8459\u8473\u8487\u8488\u847a\u8489\u8478\u843c\u8446\u8469\u8476\u848c\u848e\u8431\u846d\u84c1\u84cd\u84d0\u84e6\u84bd\u84d3\u84ca\u84bf\u84ba\u84e0\u84a1\u84b9\u84b4\u8497\u84e5\u84e3\u850c\u750d\u8538\u84f0\u8539\u851f\u853a"],["de40","\u8f45",32,"\u8f6a\u8f80\u8f8c\u8f92\u8f9d\u8fa0\u8fa1\u8fa2\u8fa4\u8fa5\u8fa6\u8fa7\u8faa\u8fac\u8fad\u8fae\u8faf\u8fb2\u8fb3\u8fb4\u8fb5\u8fb7\u8fb8\u8fba\u8fbb\u8fbc\u8fbf\u8fc0\u8fc3\u8fc6"],["de80","\u8fc9",4,"\u8fcf\u8fd2\u8fd6\u8fd7\u8fda\u8fe0\u8fe1\u8fe3\u8fe7\u8fec\u8fef\u8ff1\u8ff2\u8ff4\u8ff5\u8ff6\u8ffa\u8ffb\u8ffc\u8ffe\u8fff\u9007\u9008\u900c\u900e\u9013\u9015\u9018\u8556\u853b\u84ff\u84fc\u8559\u8548\u8568\u8564\u855e\u857a\u77a2\u8543\u8572\u857b\u85a4\u85a8\u8587\u858f\u8579\u85ae\u859c\u8585\u85b9\u85b7\u85b0\u85d3\u85c1\u85dc\u85ff\u8627\u8605\u8629\u8616\u863c\u5efe\u5f08\u593c\u5941\u8037\u5955\u595a\u5958\u530f\u5c22\u5c25\u5c2c\u5c34\u624c\u626a\u629f\u62bb\u62ca\u62da\u62d7\u62ee\u6322\u62f6\u6339\u634b\u6343\u63ad\u63f6\u6371\u637a\u638e\u63b4\u636d\u63ac\u638a\u6369\u63ae\u63bc\u63f2\u63f8\u63e0\u63ff\u63c4\u63de\u63ce\u6452\u63c6\u63be\u6445\u6441\u640b\u641b\u6420\u640c\u6426\u6421\u645e\u6484\u646d\u6496"],["df40","\u9019\u901c\u9023\u9024\u9025\u9027",5,"\u9030",4,"\u9037\u9039\u903a\u903d\u903f\u9040\u9043\u9045\u9046\u9048",4,"\u904e\u9054\u9055\u9056\u9059\u905a\u905c",5,"\u9064\u9066\u9067\u9069\u906a\u906b\u906c\u906f",4,"\u9076",6,"\u907e\u9081"],["df80","\u9084\u9085\u9086\u9087\u9089\u908a\u908c",4,"\u9092\u9094\u9096\u9098\u909a\u909c\u909e\u909f\u90a0\u90a4\u90a5\u90a7\u90a8\u90a9\u90ab\u90ad\u90b2\u90b7\u90bc\u90bd\u90bf\u90c0\u647a\u64b7\u64b8\u6499\u64ba\u64c0\u64d0\u64d7\u64e4\u64e2\u6509\u6525\u652e\u5f0b\u5fd2\u7519\u5f11\u535f\u53f1\u53fd\u53e9\u53e8\u53fb\u5412\u5416\u5406\u544b\u5452\u5453\u5454\u5456\u5443\u5421\u5457\u5459\u5423\u5432\u5482\u5494\u5477\u5471\u5464\u549a\u549b\u5484\u5476\u5466\u549d\u54d0\u54ad\u54c2\u54b4\u54d2\u54a7\u54a6\u54d3\u54d4\u5472\u54a3\u54d5\u54bb\u54bf\u54cc\u54d9\u54da\u54dc\u54a9\u54aa\u54a4\u54dd\u54cf\u54de\u551b\u54e7\u5520\u54fd\u5514\u54f3\u5522\u5523\u550f\u5511\u5527\u552a\u5567\u558f\u55b5\u5549\u556d\u5541\u5555\u553f\u5550\u553c"],["e040","\u90c2\u90c3\u90c6\u90c8\u90c9\u90cb\u90cc\u90cd\u90d2\u90d4\u90d5\u90d6\u90d8\u90d9\u90da\u90de\u90df\u90e0\u90e3\u90e4\u90e5\u90e9\u90ea\u90ec\u90ee\u90f0\u90f1\u90f2\u90f3\u90f5\u90f6\u90f7\u90f9\u90fa\u90fb\u90fc\u90ff\u9100\u9101\u9103\u9105",19,"\u911a\u911b\u911c"],["e080","\u911d\u911f\u9120\u9121\u9124",10,"\u9130\u9132",6,"\u913a",8,"\u9144\u5537\u5556\u5575\u5576\u5577\u5533\u5530\u555c\u558b\u55d2\u5583\u55b1\u55b9\u5588\u5581\u559f\u557e\u55d6\u5591\u557b\u55df\u55bd\u55be\u5594\u5599\u55ea\u55f7\u55c9\u561f\u55d1\u55eb\u55ec\u55d4\u55e6\u55dd\u55c4\u55ef\u55e5\u55f2\u55f3\u55cc\u55cd\u55e8\u55f5\u55e4\u8f94\u561e\u5608\u560c\u5601\u5624\u5623\u55fe\u5600\u5627\u562d\u5658\u5639\u5657\u562c\u564d\u5662\u5659\u565c\u564c\u5654\u5686\u5664\u5671\u566b\u567b\u567c\u5685\u5693\u56af\u56d4\u56d7\u56dd\u56e1\u56f5\u56eb\u56f9\u56ff\u5704\u570a\u5709\u571c\u5e0f\u5e19\u5e14\u5e11\u5e31\u5e3b\u5e3c"],["e140","\u9145\u9147\u9148\u9151\u9153\u9154\u9155\u9156\u9158\u9159\u915b\u915c\u915f\u9160\u9166\u9167\u9168\u916b\u916d\u9173\u917a\u917b\u917c\u9180",4,"\u9186\u9188\u918a\u918e\u918f\u9193",6,"\u919c",5,"\u91a4",5,"\u91ab\u91ac\u91b0\u91b1\u91b2\u91b3\u91b6\u91b7\u91b8\u91b9\u91bb"],["e180","\u91bc",10,"\u91c8\u91cb\u91d0\u91d2",9,"\u91dd",8,"\u5e37\u5e44\u5e54\u5e5b\u5e5e\u5e61\u5c8c\u5c7a\u5c8d\u5c90\u5c96\u5c88\u5c98\u5c99\u5c91\u5c9a\u5c9c\u5cb5\u5ca2\u5cbd\u5cac\u5cab\u5cb1\u5ca3\u5cc1\u5cb7\u5cc4\u5cd2\u5ce4\u5ccb\u5ce5\u5d02\u5d03\u5d27\u5d26\u5d2e\u5d24\u5d1e\u5d06\u5d1b\u5d58\u5d3e\u5d34\u5d3d\u5d6c\u5d5b\u5d6f\u5d5d\u5d6b\u5d4b\u5d4a\u5d69\u5d74\u5d82\u5d99\u5d9d\u8c73\u5db7\u5dc5\u5f73\u5f77\u5f82\u5f87\u5f89\u5f8c\u5f95\u5f99\u5f9c\u5fa8\u5fad\u5fb5\u5fbc\u8862\u5f61\u72ad\u72b0\u72b4\u72b7\u72b8\u72c3\u72c1\u72ce\u72cd\u72d2\u72e8\u72ef\u72e9\u72f2\u72f4\u72f7\u7301\u72f3\u7303\u72fa"],["e240","\u91e6",62],["e280","\u9225",32,"\u72fb\u7317\u7313\u7321\u730a\u731e\u731d\u7315\u7322\u7339\u7325\u732c\u7338\u7331\u7350\u734d\u7357\u7360\u736c\u736f\u737e\u821b\u5925\u98e7\u5924\u5902\u9963\u9967",5,"\u9974\u9977\u997d\u9980\u9984\u9987\u998a\u998d\u9990\u9991\u9993\u9994\u9995\u5e80\u5e91\u5e8b\u5e96\u5ea5\u5ea0\u5eb9\u5eb5\u5ebe\u5eb3\u8d53\u5ed2\u5ed1\u5edb\u5ee8\u5eea\u81ba\u5fc4\u5fc9\u5fd6\u5fcf\u6003\u5fee\u6004\u5fe1\u5fe4\u5ffe\u6005\u6006\u5fea\u5fed\u5ff8\u6019\u6035\u6026\u601b\u600f\u600d\u6029\u602b\u600a\u603f\u6021\u6078\u6079\u607b\u607a\u6042"],["e340","\u9246",45,"\u9275",16],["e380","\u9286",7,"\u928f",24,"\u606a\u607d\u6096\u609a\u60ad\u609d\u6083\u6092\u608c\u609b\u60ec\u60bb\u60b1\u60dd\u60d8\u60c6\u60da\u60b4\u6120\u6126\u6115\u6123\u60f4\u6100\u610e\u612b\u614a\u6175\u61ac\u6194\u61a7\u61b7\u61d4\u61f5\u5fdd\u96b3\u95e9\u95eb\u95f1\u95f3\u95f5\u95f6\u95fc\u95fe\u9603\u9604\u9606\u9608\u960a\u960b\u960c\u960d\u960f\u9612\u9615\u9616\u9617\u9619\u961a\u4e2c\u723f\u6215\u6c35\u6c54\u6c5c\u6c4a\u6ca3\u6c85\u6c90\u6c94\u6c8c\u6c68\u6c69\u6c74\u6c76\u6c86\u6ca9\u6cd0\u6cd4\u6cad\u6cf7\u6cf8\u6cf1\u6cd7\u6cb2\u6ce0\u6cd6\u6cfa\u6ceb\u6cee\u6cb1\u6cd3\u6cef\u6cfe"],["e440","\u92a8",5,"\u92af",24,"\u92c9",31],["e480","\u92e9",32,"\u6d39\u6d27\u6d0c\u6d43\u6d48\u6d07\u6d04\u6d19\u6d0e\u6d2b\u6d4d\u6d2e\u6d35\u6d1a\u6d4f\u6d52\u6d54\u6d33\u6d91\u6d6f\u6d9e\u6da0\u6d5e\u6d93\u6d94\u6d5c\u6d60\u6d7c\u6d63\u6e1a\u6dc7\u6dc5\u6dde\u6e0e\u6dbf\u6de0\u6e11\u6de6\u6ddd\u6dd9\u6e16\u6dab\u6e0c\u6dae\u6e2b\u6e6e\u6e4e\u6e6b\u6eb2\u6e5f\u6e86\u6e53\u6e54\u6e32\u6e25\u6e44\u6edf\u6eb1\u6e98\u6ee0\u6f2d\u6ee2\u6ea5\u6ea7\u6ebd\u6ebb\u6eb7\u6ed7\u6eb4\u6ecf\u6e8f\u6ec2\u6e9f\u6f62\u6f46\u6f47\u6f24\u6f15\u6ef9\u6f2f\u6f36\u6f4b\u6f74\u6f2a\u6f09\u6f29\u6f89\u6f8d\u6f8c\u6f78\u6f72\u6f7c\u6f7a\u6fd1"],["e540","\u930a",51,"\u933f",10],["e580","\u934a",31,"\u936b\u6fc9\u6fa7\u6fb9\u6fb6\u6fc2\u6fe1\u6fee\u6fde\u6fe0\u6fef\u701a\u7023\u701b\u7039\u7035\u704f\u705e\u5b80\u5b84\u5b95\u5b93\u5ba5\u5bb8\u752f\u9a9e\u6434\u5be4\u5bee\u8930\u5bf0\u8e47\u8b07\u8fb6\u8fd3\u8fd5\u8fe5\u8fee\u8fe4\u8fe9\u8fe6\u8ff3\u8fe8\u9005\u9004\u900b\u9026\u9011\u900d\u9016\u9021\u9035\u9036\u902d\u902f\u9044\u9051\u9052\u9050\u9068\u9058\u9062\u905b\u66b9\u9074\u907d\u9082\u9088\u9083\u908b\u5f50\u5f57\u5f56\u5f58\u5c3b\u54ab\u5c50\u5c59\u5b71\u5c63\u5c66\u7fbc\u5f2a\u5f29\u5f2d\u8274\u5f3c\u9b3b\u5c6e\u5981\u5983\u598d\u59a9\u59aa\u59a3"],["e640","\u936c",34,"\u9390",27],["e680","\u93ac",29,"\u93cb\u93cc\u93cd\u5997\u59ca\u59ab\u599e\u59a4\u59d2\u59b2\u59af\u59d7\u59be\u5a05\u5a06\u59dd\u5a08\u59e3\u59d8\u59f9\u5a0c\u5a09\u5a32\u5a34\u5a11\u5a23\u5a13\u5a40\u5a67\u5a4a\u5a55\u5a3c\u5a62\u5a75\u80ec\u5aaa\u5a9b\u5a77\u5a7a\u5abe\u5aeb\u5ab2\u5ad2\u5ad4\u5ab8\u5ae0\u5ae3\u5af1\u5ad6\u5ae6\u5ad8\u5adc\u5b09\u5b17\u5b16\u5b32\u5b37\u5b40\u5c15\u5c1c\u5b5a\u5b65\u5b73\u5b51\u5b53\u5b62\u9a75\u9a77\u9a78\u9a7a\u9a7f\u9a7d\u9a80\u9a81\u9a85\u9a88\u9a8a\u9a90\u9a92\u9a93\u9a96\u9a98\u9a9b\u9a9c\u9a9d\u9a9f\u9aa0\u9aa2\u9aa3\u9aa5\u9aa7\u7e9f\u7ea1\u7ea3\u7ea5\u7ea8\u7ea9"],["e740","\u93ce",7,"\u93d7",54],["e780","\u940e",32,"\u7ead\u7eb0\u7ebe\u7ec0\u7ec1\u7ec2\u7ec9\u7ecb\u7ecc\u7ed0\u7ed4\u7ed7\u7edb\u7ee0\u7ee1\u7ee8\u7eeb\u7eee\u7eef\u7ef1\u7ef2\u7f0d\u7ef6\u7efa\u7efb\u7efe\u7f01\u7f02\u7f03\u7f07\u7f08\u7f0b\u7f0c\u7f0f\u7f11\u7f12\u7f17\u7f19\u7f1c\u7f1b\u7f1f\u7f21",6,"\u7f2a\u7f2b\u7f2c\u7f2d\u7f2f",4,"\u7f35\u5e7a\u757f\u5ddb\u753e\u9095\u738e\u7391\u73ae\u73a2\u739f\u73cf\u73c2\u73d1\u73b7\u73b3\u73c0\u73c9\u73c8\u73e5\u73d9\u987c\u740a\u73e9\u73e7\u73de\u73ba\u73f2\u740f\u742a\u745b\u7426\u7425\u7428\u7430\u742e\u742c"],["e840","\u942f",14,"\u943f",43,"\u946c\u946d\u946e\u946f"],["e880","\u9470",20,"\u9491\u9496\u9498\u94c7\u94cf\u94d3\u94d4\u94da\u94e6\u94fb\u951c\u9520\u741b\u741a\u7441\u745c\u7457\u7455\u7459\u7477\u746d\u747e\u749c\u748e\u7480\u7481\u7487\u748b\u749e\u74a8\u74a9\u7490\u74a7\u74d2\u74ba\u97ea\u97eb\u97ec\u674c\u6753\u675e\u6748\u6769\u67a5\u6787\u676a\u6773\u6798\u67a7\u6775\u67a8\u679e\u67ad\u678b\u6777\u677c\u67f0\u6809\u67d8\u680a\u67e9\u67b0\u680c\u67d9\u67b5\u67da\u67b3\u67dd\u6800\u67c3\u67b8\u67e2\u680e\u67c1\u67fd\u6832\u6833\u6860\u6861\u684e\u6862\u6844\u6864\u6883\u681d\u6855\u6866\u6841\u6867\u6840\u683e\u684a\u6849\u6829\u68b5\u688f\u6874\u6877\u6893\u686b\u68c2\u696e\u68fc\u691f\u6920\u68f9"],["e940","\u9527\u9533\u953d\u9543\u9548\u954b\u9555\u955a\u9560\u956e\u9574\u9575\u9577",7,"\u9580",42],["e980","\u95ab",32,"\u6924\u68f0\u690b\u6901\u6957\u68e3\u6910\u6971\u6939\u6960\u6942\u695d\u6984\u696b\u6980\u6998\u6978\u6934\u69cc\u6987\u6988\u69ce\u6989\u6966\u6963\u6979\u699b\u69a7\u69bb\u69ab\u69ad\u69d4\u69b1\u69c1\u69ca\u69df\u6995\u69e0\u698d\u69ff\u6a2f\u69ed\u6a17\u6a18\u6a65\u69f2\u6a44\u6a3e\u6aa0\u6a50\u6a5b\u6a35\u6a8e\u6a79\u6a3d\u6a28\u6a58\u6a7c\u6a91\u6a90\u6aa9\u6a97\u6aab\u7337\u7352\u6b81\u6b82\u6b87\u6b84\u6b92\u6b93\u6b8d\u6b9a\u6b9b\u6ba1\u6baa\u8f6b\u8f6d\u8f71\u8f72\u8f73\u8f75\u8f76\u8f78\u8f77\u8f79\u8f7a\u8f7c\u8f7e\u8f81\u8f82\u8f84\u8f87\u8f8b"],["ea40","\u95cc",27,"\u95ec\u95ff\u9607\u9613\u9618\u961b\u961e\u9620\u9623",6,"\u962b\u962c\u962d\u962f\u9630\u9637\u9638\u9639\u963a\u963e\u9641\u9643\u964a\u964e\u964f\u9651\u9652\u9653\u9656\u9657"],["ea80","\u9658\u9659\u965a\u965c\u965d\u965e\u9660\u9663\u9665\u9666\u966b\u966d",4,"\u9673\u9678",12,"\u9687\u9689\u968a\u8f8d\u8f8e\u8f8f\u8f98\u8f9a\u8ece\u620b\u6217\u621b\u621f\u6222\u6221\u6225\u6224\u622c\u81e7\u74ef\u74f4\u74ff\u750f\u7511\u7513\u6534\u65ee\u65ef\u65f0\u660a\u6619\u6772\u6603\u6615\u6600\u7085\u66f7\u661d\u6634\u6631\u6636\u6635\u8006\u665f\u6654\u6641\u664f\u6656\u6661\u6657\u6677\u6684\u668c\u66a7\u669d\u66be\u66db\u66dc\u66e6\u66e9\u8d32\u8d33\u8d36\u8d3b\u8d3d\u8d40\u8d45\u8d46\u8d48\u8d49\u8d47\u8d4d\u8d55\u8d59\u89c7\u89ca\u89cb\u89cc\u89ce\u89cf\u89d0\u89d1\u726e\u729f\u725d\u7266\u726f\u727e\u727f\u7284\u728b\u728d\u728f\u7292\u6308\u6332\u63b0"],["eb40","\u968c\u968e\u9691\u9692\u9693\u9695\u9696\u969a\u969b\u969d",9,"\u96a8",7,"\u96b1\u96b2\u96b4\u96b5\u96b7\u96b8\u96ba\u96bb\u96bf\u96c2\u96c3\u96c8\u96ca\u96cb\u96d0\u96d1\u96d3\u96d4\u96d6",9,"\u96e1",6,"\u96eb"],["eb80","\u96ec\u96ed\u96ee\u96f0\u96f1\u96f2\u96f4\u96f5\u96f8\u96fa\u96fb\u96fc\u96fd\u96ff\u9702\u9703\u9705\u970a\u970b\u970c\u9710\u9711\u9712\u9714\u9715\u9717",4,"\u971d\u971f\u9720\u643f\u64d8\u8004\u6bea\u6bf3\u6bfd\u6bf5\u6bf9\u6c05\u6c07\u6c06\u6c0d\u6c15\u6c18\u6c19\u6c1a\u6c21\u6c29\u6c24\u6c2a\u6c32\u6535\u6555\u656b\u724d\u7252\u7256\u7230\u8662\u5216\u809f\u809c\u8093\u80bc\u670a\u80bd\u80b1\u80ab\u80ad\u80b4\u80b7\u80e7\u80e8\u80e9\u80ea\u80db\u80c2\u80c4\u80d9\u80cd\u80d7\u6710\u80dd\u80eb\u80f1\u80f4\u80ed\u810d\u810e\u80f2\u80fc\u6715\u8112\u8c5a\u8136\u811e\u812c\u8118\u8132\u8148\u814c\u8153\u8174\u8159\u815a\u8171\u8160\u8169\u817c\u817d\u816d\u8167\u584d\u5ab5\u8188\u8182\u8191\u6ed5\u81a3\u81aa\u81cc\u6726\u81ca\u81bb"],["ec40","\u9721",8,"\u972b\u972c\u972e\u972f\u9731\u9733",4,"\u973a\u973b\u973c\u973d\u973f",18,"\u9754\u9755\u9757\u9758\u975a\u975c\u975d\u975f\u9763\u9764\u9766\u9767\u9768\u976a",7],["ec80","\u9772\u9775\u9777",4,"\u977d",7,"\u9786",4,"\u978c\u978e\u978f\u9790\u9793\u9795\u9796\u9797\u9799",4,"\u81c1\u81a6\u6b24\u6b37\u6b39\u6b43\u6b46\u6b59\u98d1\u98d2\u98d3\u98d5\u98d9\u98da\u6bb3\u5f40\u6bc2\u89f3\u6590\u9f51\u6593\u65bc\u65c6\u65c4\u65c3\u65cc\u65ce\u65d2\u65d6\u7080\u709c\u7096\u709d\u70bb\u70c0\u70b7\u70ab\u70b1\u70e8\u70ca\u7110\u7113\u7116\u712f\u7131\u7173\u715c\u7168\u7145\u7172\u714a\u7178\u717a\u7198\u71b3\u71b5\u71a8\u71a0\u71e0\u71d4\u71e7\u71f9\u721d\u7228\u706c\u7118\u7166\u71b9\u623e\u623d\u6243\u6248\u6249\u793b\u7940\u7946\u7949\u795b\u795c\u7953\u795a\u7962\u7957\u7960\u796f\u7967\u797a\u7985\u798a\u799a\u79a7\u79b3\u5fd1\u5fd0"],["ed40","\u979e\u979f\u97a1\u97a2\u97a4",6,"\u97ac\u97ae\u97b0\u97b1\u97b3\u97b5",46],["ed80","\u97e4\u97e5\u97e8\u97ee",4,"\u97f4\u97f7",23,"\u603c\u605d\u605a\u6067\u6041\u6059\u6063\u60ab\u6106\u610d\u615d\u61a9\u619d\u61cb\u61d1\u6206\u8080\u807f\u6c93\u6cf6\u6dfc\u77f6\u77f8\u7800\u7809\u7817\u7818\u7811\u65ab\u782d\u781c\u781d\u7839\u783a\u783b\u781f\u783c\u7825\u782c\u7823\u7829\u784e\u786d\u7856\u7857\u7826\u7850\u7847\u784c\u786a\u789b\u7893\u789a\u7887\u789c\u78a1\u78a3\u78b2\u78b9\u78a5\u78d4\u78d9\u78c9\u78ec\u78f2\u7905\u78f4\u7913\u7924\u791e\u7934\u9f9b\u9ef9\u9efb\u9efc\u76f1\u7704\u770d\u76f9\u7707\u7708\u771a\u7722\u7719\u772d\u7726\u7735\u7738\u7750\u7751\u7747\u7743\u775a\u7768"],["ee40","\u980f",62],["ee80","\u984e",32,"\u7762\u7765\u777f\u778d\u777d\u7780\u778c\u7791\u779f\u77a0\u77b0\u77b5\u77bd\u753a\u7540\u754e\u754b\u7548\u755b\u7572\u7579\u7583\u7f58\u7f61\u7f5f\u8a48\u7f68\u7f74\u7f71\u7f79\u7f81\u7f7e\u76cd\u76e5\u8832\u9485\u9486\u9487\u948b\u948a\u948c\u948d\u948f\u9490\u9494\u9497\u9495\u949a\u949b\u949c\u94a3\u94a4\u94ab\u94aa\u94ad\u94ac\u94af\u94b0\u94b2\u94b4\u94b6",4,"\u94bc\u94bd\u94bf\u94c4\u94c8",6,"\u94d0\u94d1\u94d2\u94d5\u94d6\u94d7\u94d9\u94d8\u94db\u94de\u94df\u94e0\u94e2\u94e4\u94e5\u94e7\u94e8\u94ea"],["ef40","\u986f",5,"\u988b\u988e\u9892\u9895\u9899\u98a3\u98a8",37,"\u98cf\u98d0\u98d4\u98d6\u98d7\u98db\u98dc\u98dd\u98e0",4],["ef80","\u98e5\u98e6\u98e9",30,"\u94e9\u94eb\u94ee\u94ef\u94f3\u94f4\u94f5\u94f7\u94f9\u94fc\u94fd\u94ff\u9503\u9502\u9506\u9507\u9509\u950a\u950d\u950e\u950f\u9512",4,"\u9518\u951b\u951d\u951e\u951f\u9522\u952a\u952b\u9529\u952c\u9531\u9532\u9534\u9536\u9537\u9538\u953c\u953e\u953f\u9542\u9535\u9544\u9545\u9546\u9549\u954c\u954e\u954f\u9552\u9553\u9554\u9556\u9557\u9558\u9559\u955b\u955e\u955f\u955d\u9561\u9562\u9564",8,"\u956f\u9571\u9572\u9573\u953a\u77e7\u77ec\u96c9\u79d5\u79ed\u79e3\u79eb\u7a06\u5d47\u7a03\u7a02\u7a1e\u7a14"],["f040","\u9908",4,"\u990e\u990f\u9911",28,"\u992f",26],["f080","\u994a",9,"\u9956",12,"\u9964\u9966\u9973\u9978\u9979\u997b\u997e\u9982\u9983\u9989\u7a39\u7a37\u7a51\u9ecf\u99a5\u7a70\u7688\u768e\u7693\u7699\u76a4\u74de\u74e0\u752c\u9e20\u9e22\u9e28",4,"\u9e32\u9e31\u9e36\u9e38\u9e37\u9e39\u9e3a\u9e3e\u9e41\u9e42\u9e44\u9e46\u9e47\u9e48\u9e49\u9e4b\u9e4c\u9e4e\u9e51\u9e55\u9e57\u9e5a\u9e5b\u9e5c\u9e5e\u9e63\u9e66",6,"\u9e71\u9e6d\u9e73\u7592\u7594\u7596\u75a0\u759d\u75ac\u75a3\u75b3\u75b4\u75b8\u75c4\u75b1\u75b0\u75c3\u75c2\u75d6\u75cd\u75e3\u75e8\u75e6\u75e4\u75eb\u75e7\u7603\u75f1\u75fc\u75ff\u7610\u7600\u7605\u760c\u7617\u760a\u7625\u7618\u7615\u7619"],["f140","\u998c\u998e\u999a",10,"\u99a6\u99a7\u99a9",47],["f180","\u99d9",32,"\u761b\u763c\u7622\u7620\u7640\u762d\u7630\u763f\u7635\u7643\u763e\u7633\u764d\u765e\u7654\u765c\u7656\u766b\u766f\u7fca\u7ae6\u7a78\u7a79\u7a80\u7a86\u7a88\u7a95\u7aa6\u7aa0\u7aac\u7aa8\u7aad\u7ab3\u8864\u8869\u8872\u887d\u887f\u8882\u88a2\u88c6\u88b7\u88bc\u88c9\u88e2\u88ce\u88e3\u88e5\u88f1\u891a\u88fc\u88e8\u88fe\u88f0\u8921\u8919\u8913\u891b\u890a\u8934\u892b\u8936\u8941\u8966\u897b\u758b\u80e5\u76b2\u76b4\u77dc\u8012\u8014\u8016\u801c\u8020\u8022\u8025\u8026\u8027\u8029\u8028\u8031\u800b\u8035\u8043\u8046\u804d\u8052\u8069\u8071\u8983\u9878\u9880\u9883"],["f240","\u99fa",62],["f280","\u9a39",32,"\u9889\u988c\u988d\u988f\u9894\u989a\u989b\u989e\u989f\u98a1\u98a2\u98a5\u98a6\u864d\u8654\u866c\u866e\u867f\u867a\u867c\u867b\u86a8\u868d\u868b\u86ac\u869d\u86a7\u86a3\u86aa\u8693\u86a9\u86b6\u86c4\u86b5\u86ce\u86b0\u86ba\u86b1\u86af\u86c9\u86cf\u86b4\u86e9\u86f1\u86f2\u86ed\u86f3\u86d0\u8713\u86de\u86f4\u86df\u86d8\u86d1\u8703\u8707\u86f8\u8708\u870a\u870d\u8709\u8723\u873b\u871e\u8725\u872e\u871a\u873e\u8748\u8734\u8731\u8729\u8737\u873f\u8782\u8722\u877d\u877e\u877b\u8760\u8770\u874c\u876e\u878b\u8753\u8763\u877c\u8764\u8759\u8765\u8793\u87af\u87a8\u87d2"],["f340","\u9a5a",17,"\u9a72\u9a83\u9a89\u9a8d\u9a8e\u9a94\u9a95\u9a99\u9aa6\u9aa9",6,"\u9ab2\u9ab3\u9ab4\u9ab5\u9ab9\u9abb\u9abd\u9abe\u9abf\u9ac3\u9ac4\u9ac6",4,"\u9acd\u9ace\u9acf\u9ad0\u9ad2\u9ad4\u9ad5\u9ad6\u9ad7\u9ad9\u9ada\u9adb\u9adc"],["f380","\u9add\u9ade\u9ae0\u9ae2\u9ae3\u9ae4\u9ae5\u9ae7\u9ae8\u9ae9\u9aea\u9aec\u9aee\u9af0",8,"\u9afa\u9afc",6,"\u9b04\u9b05\u9b06\u87c6\u8788\u8785\u87ad\u8797\u8783\u87ab\u87e5\u87ac\u87b5\u87b3\u87cb\u87d3\u87bd\u87d1\u87c0\u87ca\u87db\u87ea\u87e0\u87ee\u8816\u8813\u87fe\u880a\u881b\u8821\u8839\u883c\u7f36\u7f42\u7f44\u7f45\u8210\u7afa\u7afd\u7b08\u7b03\u7b04\u7b15\u7b0a\u7b2b\u7b0f\u7b47\u7b38\u7b2a\u7b19\u7b2e\u7b31\u7b20\u7b25\u7b24\u7b33\u7b3e\u7b1e\u7b58\u7b5a\u7b45\u7b75\u7b4c\u7b5d\u7b60\u7b6e\u7b7b\u7b62\u7b72\u7b71\u7b90\u7ba6\u7ba7\u7bb8\u7bac\u7b9d\u7ba8\u7b85\u7baa\u7b9c\u7ba2\u7bab\u7bb4\u7bd1\u7bc1\u7bcc\u7bdd\u7bda\u7be5\u7be6\u7bea\u7c0c\u7bfe\u7bfc\u7c0f\u7c16\u7c0b"],["f440","\u9b07\u9b09",5,"\u9b10\u9b11\u9b12\u9b14",10,"\u9b20\u9b21\u9b22\u9b24",10,"\u9b30\u9b31\u9b33",7,"\u9b3d\u9b3e\u9b3f\u9b40\u9b46\u9b4a\u9b4b\u9b4c\u9b4e\u9b50\u9b52\u9b53\u9b55",5],["f480","\u9b5b",32,"\u7c1f\u7c2a\u7c26\u7c38\u7c41\u7c40\u81fe\u8201\u8202\u8204\u81ec\u8844\u8221\u8222\u8223\u822d\u822f\u8228\u822b\u8238\u823b\u8233\u8234\u823e\u8244\u8249\u824b\u824f\u825a\u825f\u8268\u887e\u8885\u8888\u88d8\u88df\u895e\u7f9d\u7f9f\u7fa7\u7faf\u7fb0\u7fb2\u7c7c\u6549\u7c91\u7c9d\u7c9c\u7c9e\u7ca2\u7cb2\u7cbc\u7cbd\u7cc1\u7cc7\u7ccc\u7ccd\u7cc8\u7cc5\u7cd7\u7ce8\u826e\u66a8\u7fbf\u7fce\u7fd5\u7fe5\u7fe1\u7fe6\u7fe9\u7fee\u7ff3\u7cf8\u7d77\u7da6\u7dae\u7e47\u7e9b\u9eb8\u9eb4\u8d73\u8d84\u8d94\u8d91\u8db1\u8d67\u8d6d\u8c47\u8c49\u914a\u9150\u914e\u914f\u9164"],["f540","\u9b7c",62],["f580","\u9bbb",32,"\u9162\u9161\u9170\u9169\u916f\u917d\u917e\u9172\u9174\u9179\u918c\u9185\u9190\u918d\u9191\u91a2\u91a3\u91aa\u91ad\u91ae\u91af\u91b5\u91b4\u91ba\u8c55\u9e7e\u8db8\u8deb\u8e05\u8e59\u8e69\u8db5\u8dbf\u8dbc\u8dba\u8dc4\u8dd6\u8dd7\u8dda\u8dde\u8dce\u8dcf\u8ddb\u8dc6\u8dec\u8df7\u8df8\u8de3\u8df9\u8dfb\u8de4\u8e09\u8dfd\u8e14\u8e1d\u8e1f\u8e2c\u8e2e\u8e23\u8e2f\u8e3a\u8e40\u8e39\u8e35\u8e3d\u8e31\u8e49\u8e41\u8e42\u8e51\u8e52\u8e4a\u8e70\u8e76\u8e7c\u8e6f\u8e74\u8e85\u8e8f\u8e94\u8e90\u8e9c\u8e9e\u8c78\u8c82\u8c8a\u8c85\u8c98\u8c94\u659b\u89d6\u89de\u89da\u89dc"],["f640","\u9bdc",62],["f680","\u9c1b",32,"\u89e5\u89eb\u89ef\u8a3e\u8b26\u9753\u96e9\u96f3\u96ef\u9706\u9701\u9708\u970f\u970e\u972a\u972d\u9730\u973e\u9f80\u9f83\u9f85",5,"\u9f8c\u9efe\u9f0b\u9f0d\u96b9\u96bc\u96bd\u96ce\u96d2\u77bf\u96e0\u928e\u92ae\u92c8\u933e\u936a\u93ca\u938f\u943e\u946b\u9c7f\u9c82\u9c85\u9c86\u9c87\u9c88\u7a23\u9c8b\u9c8e\u9c90\u9c91\u9c92\u9c94\u9c95\u9c9a\u9c9b\u9c9e",5,"\u9ca5",4,"\u9cab\u9cad\u9cae\u9cb0",7,"\u9cba\u9cbb\u9cbc\u9cbd\u9cc4\u9cc5\u9cc6\u9cc7\u9cca\u9ccb"],["f740","\u9c3c",62],["f780","\u9c7b\u9c7d\u9c7e\u9c80\u9c83\u9c84\u9c89\u9c8a\u9c8c\u9c8f\u9c93\u9c96\u9c97\u9c98\u9c99\u9c9d\u9caa\u9cac\u9caf\u9cb9\u9cbe",4,"\u9cc8\u9cc9\u9cd1\u9cd2\u9cda\u9cdb\u9ce0\u9ce1\u9ccc",4,"\u9cd3\u9cd4\u9cd5\u9cd7\u9cd8\u9cd9\u9cdc\u9cdd\u9cdf\u9ce2\u977c\u9785\u9791\u9792\u9794\u97af\u97ab\u97a3\u97b2\u97b4\u9ab1\u9ab0\u9ab7\u9e58\u9ab6\u9aba\u9abc\u9ac1\u9ac0\u9ac5\u9ac2\u9acb\u9acc\u9ad1\u9b45\u9b43\u9b47\u9b49\u9b48\u9b4d\u9b51\u98e8\u990d\u992e\u9955\u9954\u9adf\u9ae1\u9ae6\u9aef\u9aeb\u9afb\u9aed\u9af9\u9b08\u9b0f\u9b13\u9b1f\u9b23\u9ebd\u9ebe\u7e3b\u9e82\u9e87\u9e88\u9e8b\u9e92\u93d6\u9e9d\u9e9f\u9edb\u9edc\u9edd\u9ee0\u9edf\u9ee2\u9ee9\u9ee7\u9ee5\u9eea\u9eef\u9f22\u9f2c\u9f2f\u9f39\u9f37\u9f3d\u9f3e\u9f44"],["f840","\u9ce3",62],["f880","\u9d22",32],["f940","\u9d43",62],["f980","\u9d82",32],["fa40","\u9da3",62],["fa80","\u9de2",32],["fb40","\u9e03",27,"\u9e24\u9e27\u9e2e\u9e30\u9e34\u9e3b\u9e3c\u9e40\u9e4d\u9e50\u9e52\u9e53\u9e54\u9e56\u9e59\u9e5d\u9e5f\u9e60\u9e61\u9e62\u9e65\u9e6e\u9e6f\u9e72\u9e74",9,"\u9e80"],["fb80","\u9e81\u9e83\u9e84\u9e85\u9e86\u9e89\u9e8a\u9e8c",5,"\u9e94",8,"\u9e9e\u9ea0",5,"\u9ea7\u9ea8\u9ea9\u9eaa"],["fc40","\u9eab",8,"\u9eb5\u9eb6\u9eb7\u9eb9\u9eba\u9ebc\u9ebf",4,"\u9ec5\u9ec6\u9ec7\u9ec8\u9eca\u9ecb\u9ecc\u9ed0\u9ed2\u9ed3\u9ed5\u9ed6\u9ed7\u9ed9\u9eda\u9ede\u9ee1\u9ee3\u9ee4\u9ee6\u9ee8\u9eeb\u9eec\u9eed\u9eee\u9ef0",8,"\u9efa\u9efd\u9eff",6],["fc80","\u9f06",4,"\u9f0c\u9f0f\u9f11\u9f12\u9f14\u9f15\u9f16\u9f18\u9f1a",5,"\u9f21\u9f23",8,"\u9f2d\u9f2e\u9f30\u9f31"],["fd40","\u9f32",4,"\u9f38\u9f3a\u9f3c\u9f3f",4,"\u9f45",10,"\u9f52",38],["fd80","\u9f79",5,"\u9f81\u9f82\u9f8d",11,"\u9f9c\u9f9d\u9f9e\u9fa1",4,"\uf92c\uf979\uf995\uf9e7\uf9f1"],["fe40","\ufa0c\ufa0d\ufa0e\ufa0f\ufa11\ufa13\ufa14\ufa18\ufa1f\ufa20\ufa21\ufa23\ufa24\ufa27\ufa28\ufa29"]]')},21166:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127],["8141","\uac02\uac03\uac05\uac06\uac0b",4,"\uac18\uac1e\uac1f\uac21\uac22\uac23\uac25",6,"\uac2e\uac32\uac33\uac34"],["8161","\uac35\uac36\uac37\uac3a\uac3b\uac3d\uac3e\uac3f\uac41",9,"\uac4c\uac4e",5,"\uac55"],["8181","\uac56\uac57\uac59\uac5a\uac5b\uac5d",18,"\uac72\uac73\uac75\uac76\uac79\uac7b",4,"\uac82\uac87\uac88\uac8d\uac8e\uac8f\uac91\uac92\uac93\uac95",6,"\uac9e\uaca2",5,"\uacab\uacad\uacae\uacb1",6,"\uacba\uacbe\uacbf\uacc0\uacc2\uacc3\uacc5\uacc6\uacc7\uacc9\uacca\uaccb\uaccd",7,"\uacd6\uacd8",7,"\uace2\uace3\uace5\uace6\uace9\uaceb\uaced\uacee\uacf2\uacf4\uacf7",4,"\uacfe\uacff\uad01\uad02\uad03\uad05\uad07",4,"\uad0e\uad10\uad12\uad13"],["8241","\uad14\uad15\uad16\uad17\uad19\uad1a\uad1b\uad1d\uad1e\uad1f\uad21",7,"\uad2a\uad2b\uad2e",5],["8261","\uad36\uad37\uad39\uad3a\uad3b\uad3d",6,"\uad46\uad48\uad4a",5,"\uad51\uad52\uad53\uad55\uad56\uad57"],["8281","\uad59",7,"\uad62\uad64",7,"\uad6e\uad6f\uad71\uad72\uad77\uad78\uad79\uad7a\uad7e\uad80\uad83",4,"\uad8a\uad8b\uad8d\uad8e\uad8f\uad91",10,"\uad9e",5,"\uada5",17,"\uadb8",7,"\uadc2\uadc3\uadc5\uadc6\uadc7\uadc9",6,"\uadd2\uadd4",7,"\uaddd\uadde\uaddf\uade1\uade2\uade3\uade5",18],["8341","\uadfa\uadfb\uadfd\uadfe\uae02",5,"\uae0a\uae0c\uae0e",5,"\uae15",7],["8361","\uae1d",18,"\uae32\uae33\uae35\uae36\uae39\uae3b\uae3c"],["8381","\uae3d\uae3e\uae3f\uae42\uae44\uae47\uae48\uae49\uae4b\uae4f\uae51\uae52\uae53\uae55\uae57",4,"\uae5e\uae62\uae63\uae64\uae66\uae67\uae6a\uae6b\uae6d\uae6e\uae6f\uae71",6,"\uae7a\uae7e",5,"\uae86",5,"\uae8d",46,"\uaebf\uaec1\uaec2\uaec3\uaec5",6,"\uaece\uaed2",5,"\uaeda\uaedb\uaedd",8],["8441","\uaee6\uaee7\uaee9\uaeea\uaeec\uaeee",5,"\uaef5\uaef6\uaef7\uaef9\uaefa\uaefb\uaefd",8],["8461","\uaf06\uaf09\uaf0a\uaf0b\uaf0c\uaf0e\uaf0f\uaf11",18],["8481","\uaf24",7,"\uaf2e\uaf2f\uaf31\uaf33\uaf35",6,"\uaf3e\uaf40\uaf44\uaf45\uaf46\uaf47\uaf4a",5,"\uaf51",10,"\uaf5e",5,"\uaf66",18,"\uaf7a",5,"\uaf81\uaf82\uaf83\uaf85\uaf86\uaf87\uaf89",6,"\uaf92\uaf93\uaf94\uaf96",5,"\uaf9d",26,"\uafba\uafbb\uafbd\uafbe"],["8541","\uafbf\uafc1",5,"\uafca\uafcc\uafcf",4,"\uafd5",6,"\uafdd",4],["8561","\uafe2",5,"\uafea",5,"\uaff2\uaff3\uaff5\uaff6\uaff7\uaff9",6,"\ub002\ub003"],["8581","\ub005",6,"\ub00d\ub00e\ub00f\ub011\ub012\ub013\ub015",6,"\ub01e",9,"\ub029",26,"\ub046\ub047\ub049\ub04b\ub04d\ub04f\ub050\ub051\ub052\ub056\ub058\ub05a\ub05b\ub05c\ub05e",29,"\ub07e\ub07f\ub081\ub082\ub083\ub085",6,"\ub08e\ub090\ub092",5,"\ub09b\ub09d\ub09e\ub0a3\ub0a4"],["8641","\ub0a5\ub0a6\ub0a7\ub0aa\ub0b0\ub0b2\ub0b6\ub0b7\ub0b9\ub0ba\ub0bb\ub0bd",6,"\ub0c6\ub0ca",5,"\ub0d2"],["8661","\ub0d3\ub0d5\ub0d6\ub0d7\ub0d9",6,"\ub0e1\ub0e2\ub0e3\ub0e4\ub0e6",10],["8681","\ub0f1",22,"\ub10a\ub10d\ub10e\ub10f\ub111\ub114\ub115\ub116\ub117\ub11a\ub11e",4,"\ub126\ub127\ub129\ub12a\ub12b\ub12d",6,"\ub136\ub13a",5,"\ub142\ub143\ub145\ub146\ub147\ub149",6,"\ub152\ub153\ub156\ub157\ub159\ub15a\ub15b\ub15d\ub15e\ub15f\ub161",22,"\ub17a\ub17b\ub17d\ub17e\ub17f\ub181\ub183",4,"\ub18a\ub18c\ub18e\ub18f\ub190\ub191\ub195\ub196\ub197\ub199\ub19a\ub19b\ub19d"],["8741","\ub19e",9,"\ub1a9",15],["8761","\ub1b9",18,"\ub1cd\ub1ce\ub1cf\ub1d1\ub1d2\ub1d3\ub1d5"],["8781","\ub1d6",5,"\ub1de\ub1e0",7,"\ub1ea\ub1eb\ub1ed\ub1ee\ub1ef\ub1f1",7,"\ub1fa\ub1fc\ub1fe",5,"\ub206\ub207\ub209\ub20a\ub20d",6,"\ub216\ub218\ub21a",5,"\ub221",18,"\ub235",6,"\ub23d",26,"\ub259\ub25a\ub25b\ub25d\ub25e\ub25f\ub261",6,"\ub26a",4],["8841","\ub26f",4,"\ub276",5,"\ub27d",6,"\ub286\ub287\ub288\ub28a",4],["8861","\ub28f\ub292\ub293\ub295\ub296\ub297\ub29b",4,"\ub2a2\ub2a4\ub2a7\ub2a8\ub2a9\ub2ab\ub2ad\ub2ae\ub2af\ub2b1\ub2b2\ub2b3\ub2b5\ub2b6\ub2b7"],["8881","\ub2b8",15,"\ub2ca\ub2cb\ub2cd\ub2ce\ub2cf\ub2d1\ub2d3",4,"\ub2da\ub2dc\ub2de\ub2df\ub2e0\ub2e1\ub2e3\ub2e7\ub2e9\ub2ea\ub2f0\ub2f1\ub2f2\ub2f6\ub2fc\ub2fd\ub2fe\ub302\ub303\ub305\ub306\ub307\ub309",6,"\ub312\ub316",5,"\ub31d",54,"\ub357\ub359\ub35a\ub35d\ub360\ub361\ub362\ub363"],["8941","\ub366\ub368\ub36a\ub36c\ub36d\ub36f\ub372\ub373\ub375\ub376\ub377\ub379",6,"\ub382\ub386",5,"\ub38d"],["8961","\ub38e\ub38f\ub391\ub392\ub393\ub395",10,"\ub3a2",5,"\ub3a9\ub3aa\ub3ab\ub3ad"],["8981","\ub3ae",21,"\ub3c6\ub3c7\ub3c9\ub3ca\ub3cd\ub3cf\ub3d1\ub3d2\ub3d3\ub3d6\ub3d8\ub3da\ub3dc\ub3de\ub3df\ub3e1\ub3e2\ub3e3\ub3e5\ub3e6\ub3e7\ub3e9",18,"\ub3fd",18,"\ub411",6,"\ub419\ub41a\ub41b\ub41d\ub41e\ub41f\ub421",6,"\ub42a\ub42c",7,"\ub435",15],["8a41","\ub445",10,"\ub452\ub453\ub455\ub456\ub457\ub459",6,"\ub462\ub464\ub466"],["8a61","\ub467",4,"\ub46d",18,"\ub481\ub482"],["8a81","\ub483",4,"\ub489",19,"\ub49e",5,"\ub4a5\ub4a6\ub4a7\ub4a9\ub4aa\ub4ab\ub4ad",7,"\ub4b6\ub4b8\ub4ba",5,"\ub4c1\ub4c2\ub4c3\ub4c5\ub4c6\ub4c7\ub4c9",6,"\ub4d1\ub4d2\ub4d3\ub4d4\ub4d6",5,"\ub4de\ub4df\ub4e1\ub4e2\ub4e5\ub4e7",4,"\ub4ee\ub4f0\ub4f2",5,"\ub4f9",26,"\ub516\ub517\ub519\ub51a\ub51d"],["8b41","\ub51e",5,"\ub526\ub52b",4,"\ub532\ub533\ub535\ub536\ub537\ub539",6,"\ub542\ub546"],["8b61","\ub547\ub548\ub549\ub54a\ub54e\ub54f\ub551\ub552\ub553\ub555",6,"\ub55e\ub562",8],["8b81","\ub56b",52,"\ub5a2\ub5a3\ub5a5\ub5a6\ub5a7\ub5a9\ub5ac\ub5ad\ub5ae\ub5af\ub5b2\ub5b6",4,"\ub5be\ub5bf\ub5c1\ub5c2\ub5c3\ub5c5",6,"\ub5ce\ub5d2",5,"\ub5d9",18,"\ub5ed",18],["8c41","\ub600",15,"\ub612\ub613\ub615\ub616\ub617\ub619",4],["8c61","\ub61e",6,"\ub626",5,"\ub62d",6,"\ub635",5],["8c81","\ub63b",12,"\ub649",26,"\ub665\ub666\ub667\ub669",50,"\ub69e\ub69f\ub6a1\ub6a2\ub6a3\ub6a5",5,"\ub6ad\ub6ae\ub6af\ub6b0\ub6b2",16],["8d41","\ub6c3",16,"\ub6d5",8],["8d61","\ub6de",17,"\ub6f1\ub6f2\ub6f3\ub6f5\ub6f6\ub6f7\ub6f9\ub6fa"],["8d81","\ub6fb",4,"\ub702\ub703\ub704\ub706",33,"\ub72a\ub72b\ub72d\ub72e\ub731",6,"\ub73a\ub73c",7,"\ub745\ub746\ub747\ub749\ub74a\ub74b\ub74d",6,"\ub756",9,"\ub761\ub762\ub763\ub765\ub766\ub767\ub769",6,"\ub772\ub774\ub776",5,"\ub77e\ub77f\ub781\ub782\ub783\ub785",6,"\ub78e\ub793\ub794\ub795\ub79a\ub79b\ub79d\ub79e"],["8e41","\ub79f\ub7a1",6,"\ub7aa\ub7ae",5,"\ub7b6\ub7b7\ub7b9",8],["8e61","\ub7c2",4,"\ub7c8\ub7ca",19],["8e81","\ub7de",13,"\ub7ee\ub7ef\ub7f1\ub7f2\ub7f3\ub7f5",6,"\ub7fe\ub802",4,"\ub80a\ub80b\ub80d\ub80e\ub80f\ub811",6,"\ub81a\ub81c\ub81e",5,"\ub826\ub827\ub829\ub82a\ub82b\ub82d",6,"\ub836\ub83a",5,"\ub841\ub842\ub843\ub845",11,"\ub852\ub854",7,"\ub85e\ub85f\ub861\ub862\ub863\ub865",6,"\ub86e\ub870\ub872",5,"\ub879\ub87a\ub87b\ub87d",7],["8f41","\ub885",7,"\ub88e",17],["8f61","\ub8a0",7,"\ub8a9",6,"\ub8b1\ub8b2\ub8b3\ub8b5\ub8b6\ub8b7\ub8b9",4],["8f81","\ub8be\ub8bf\ub8c2\ub8c4\ub8c6",5,"\ub8cd\ub8ce\ub8cf\ub8d1\ub8d2\ub8d3\ub8d5",7,"\ub8de\ub8e0\ub8e2",5,"\ub8ea\ub8eb\ub8ed\ub8ee\ub8ef\ub8f1",6,"\ub8fa\ub8fc\ub8fe",5,"\ub905",18,"\ub919",6,"\ub921",26,"\ub93e\ub93f\ub941\ub942\ub943\ub945",6,"\ub94d\ub94e\ub950\ub952",5],["9041","\ub95a\ub95b\ub95d\ub95e\ub95f\ub961",6,"\ub96a\ub96c\ub96e",5,"\ub976\ub977\ub979\ub97a\ub97b\ub97d"],["9061","\ub97e",5,"\ub986\ub988\ub98b\ub98c\ub98f",15],["9081","\ub99f",12,"\ub9ae\ub9af\ub9b1\ub9b2\ub9b3\ub9b5",6,"\ub9be\ub9c0\ub9c2",5,"\ub9ca\ub9cb\ub9cd\ub9d3",4,"\ub9da\ub9dc\ub9df\ub9e0\ub9e2\ub9e6\ub9e7\ub9e9\ub9ea\ub9eb\ub9ed",6,"\ub9f6\ub9fb",4,"\uba02",5,"\uba09",11,"\uba16",33,"\uba3a\uba3b\uba3d\uba3e\uba3f\uba41\uba43\uba44\uba45\uba46"],["9141","\uba47\uba4a\uba4c\uba4f\uba50\uba51\uba52\uba56\uba57\uba59\uba5a\uba5b\uba5d",6,"\uba66\uba6a",5],["9161","\uba72\uba73\uba75\uba76\uba77\uba79",9,"\uba86\uba88\uba89\uba8a\uba8b\uba8d",5],["9181","\uba93",20,"\ubaaa\ubaad\ubaae\ubaaf\ubab1\ubab3",4,"\ubaba\ubabc\ubabe",5,"\ubac5\ubac6\ubac7\ubac9",14,"\ubada",33,"\ubafd\ubafe\ubaff\ubb01\ubb02\ubb03\ubb05",7,"\ubb0e\ubb10\ubb12",5,"\ubb19\ubb1a\ubb1b\ubb1d\ubb1e\ubb1f\ubb21",6],["9241","\ubb28\ubb2a\ubb2c",7,"\ubb37\ubb39\ubb3a\ubb3f",4,"\ubb46\ubb48\ubb4a\ubb4b\ubb4c\ubb4e\ubb51\ubb52"],["9261","\ubb53\ubb55\ubb56\ubb57\ubb59",7,"\ubb62\ubb64",7,"\ubb6d",4],["9281","\ubb72",21,"\ubb89\ubb8a\ubb8b\ubb8d\ubb8e\ubb8f\ubb91",18,"\ubba5\ubba6\ubba7\ubba9\ubbaa\ubbab\ubbad",6,"\ubbb5\ubbb6\ubbb8",7,"\ubbc1\ubbc2\ubbc3\ubbc5\ubbc6\ubbc7\ubbc9",6,"\ubbd1\ubbd2\ubbd4",35,"\ubbfa\ubbfb\ubbfd\ubbfe\ubc01"],["9341","\ubc03",4,"\ubc0a\ubc0e\ubc10\ubc12\ubc13\ubc19\ubc1a\ubc20\ubc21\ubc22\ubc23\ubc26\ubc28\ubc2a\ubc2b\ubc2c\ubc2e\ubc2f\ubc32\ubc33\ubc35"],["9361","\ubc36\ubc37\ubc39",6,"\ubc42\ubc46\ubc47\ubc48\ubc4a\ubc4b\ubc4e\ubc4f\ubc51",8],["9381","\ubc5a\ubc5b\ubc5c\ubc5e",37,"\ubc86\ubc87\ubc89\ubc8a\ubc8d\ubc8f",4,"\ubc96\ubc98\ubc9b",4,"\ubca2\ubca3\ubca5\ubca6\ubca9",6,"\ubcb2\ubcb6",5,"\ubcbe\ubcbf\ubcc1\ubcc2\ubcc3\ubcc5",7,"\ubcce\ubcd2\ubcd3\ubcd4\ubcd6\ubcd7\ubcd9\ubcda\ubcdb\ubcdd",22,"\ubcf7\ubcf9\ubcfa\ubcfb\ubcfd"],["9441","\ubcfe",5,"\ubd06\ubd08\ubd0a",5,"\ubd11\ubd12\ubd13\ubd15",8],["9461","\ubd1e",5,"\ubd25",6,"\ubd2d",12],["9481","\ubd3a",5,"\ubd41",6,"\ubd4a\ubd4b\ubd4d\ubd4e\ubd4f\ubd51",6,"\ubd5a",9,"\ubd65\ubd66\ubd67\ubd69",22,"\ubd82\ubd83\ubd85\ubd86\ubd8b",4,"\ubd92\ubd94\ubd96\ubd97\ubd98\ubd9b\ubd9d",6,"\ubda5",10,"\ubdb1",6,"\ubdb9",24],["9541","\ubdd2\ubdd3\ubdd6\ubdd7\ubdd9\ubdda\ubddb\ubddd",11,"\ubdea",5,"\ubdf1"],["9561","\ubdf2\ubdf3\ubdf5\ubdf6\ubdf7\ubdf9",6,"\ube01\ube02\ube04\ube06",5,"\ube0e\ube0f\ube11\ube12\ube13"],["9581","\ube15",6,"\ube1e\ube20",35,"\ube46\ube47\ube49\ube4a\ube4b\ube4d\ube4f",4,"\ube56\ube58\ube5c\ube5d\ube5e\ube5f\ube62\ube63\ube65\ube66\ube67\ube69\ube6b",4,"\ube72\ube76",4,"\ube7e\ube7f\ube81\ube82\ube83\ube85",6,"\ube8e\ube92",5,"\ube9a",13,"\ubea9",14],["9641","\ubeb8",23,"\ubed2\ubed3"],["9661","\ubed5\ubed6\ubed9",6,"\ubee1\ubee2\ubee6",5,"\ubeed",8],["9681","\ubef6",10,"\ubf02",5,"\ubf0a",13,"\ubf1a\ubf1e",33,"\ubf42\ubf43\ubf45\ubf46\ubf47\ubf49",6,"\ubf52\ubf53\ubf54\ubf56",44],["9741","\ubf83",16,"\ubf95",8],["9761","\ubf9e",17,"\ubfb1",7],["9781","\ubfb9",11,"\ubfc6",5,"\ubfce\ubfcf\ubfd1\ubfd2\ubfd3\ubfd5",6,"\ubfdd\ubfde\ubfe0\ubfe2",89,"\uc03d\uc03e\uc03f"],["9841","\uc040",16,"\uc052",5,"\uc059\uc05a\uc05b"],["9861","\uc05d\uc05e\uc05f\uc061",6,"\uc06a",15],["9881","\uc07a",21,"\uc092\uc093\uc095\uc096\uc097\uc099",6,"\uc0a2\uc0a4\uc0a6",5,"\uc0ae\uc0b1\uc0b2\uc0b7",4,"\uc0be\uc0c2\uc0c3\uc0c4\uc0c6\uc0c7\uc0ca\uc0cb\uc0cd\uc0ce\uc0cf\uc0d1",6,"\uc0da\uc0de",5,"\uc0e6\uc0e7\uc0e9\uc0ea\uc0eb\uc0ed",6,"\uc0f6\uc0f8\uc0fa",5,"\uc101\uc102\uc103\uc105\uc106\uc107\uc109",6,"\uc111\uc112\uc113\uc114\uc116",5,"\uc121\uc122\uc125\uc128\uc129\uc12a\uc12b\uc12e"],["9941","\uc132\uc133\uc134\uc135\uc137\uc13a\uc13b\uc13d\uc13e\uc13f\uc141",6,"\uc14a\uc14e",5,"\uc156\uc157"],["9961","\uc159\uc15a\uc15b\uc15d",6,"\uc166\uc16a",5,"\uc171\uc172\uc173\uc175\uc176\uc177\uc179\uc17a\uc17b"],["9981","\uc17c",8,"\uc186",5,"\uc18f\uc191\uc192\uc193\uc195\uc197",4,"\uc19e\uc1a0\uc1a2\uc1a3\uc1a4\uc1a6\uc1a7\uc1aa\uc1ab\uc1ad\uc1ae\uc1af\uc1b1",11,"\uc1be",5,"\uc1c5\uc1c6\uc1c7\uc1c9\uc1ca\uc1cb\uc1cd",6,"\uc1d5\uc1d6\uc1d9",6,"\uc1e1\uc1e2\uc1e3\uc1e5\uc1e6\uc1e7\uc1e9",6,"\uc1f2\uc1f4",7,"\uc1fe\uc1ff\uc201\uc202\uc203\uc205",6,"\uc20e\uc210\uc212",5,"\uc21a\uc21b\uc21d\uc21e\uc221\uc222\uc223"],["9a41","\uc224\uc225\uc226\uc227\uc22a\uc22c\uc22e\uc230\uc233\uc235",16],["9a61","\uc246\uc247\uc249",6,"\uc252\uc253\uc255\uc256\uc257\uc259",6,"\uc261\uc262\uc263\uc264\uc266"],["9a81","\uc267",4,"\uc26e\uc26f\uc271\uc272\uc273\uc275",6,"\uc27e\uc280\uc282",5,"\uc28a",5,"\uc291",6,"\uc299\uc29a\uc29c\uc29e",5,"\uc2a6\uc2a7\uc2a9\uc2aa\uc2ab\uc2ae",5,"\uc2b6\uc2b8\uc2ba",33,"\uc2de\uc2df\uc2e1\uc2e2\uc2e5",5,"\uc2ee\uc2f0\uc2f2\uc2f3\uc2f4\uc2f5\uc2f7\uc2fa\uc2fd\uc2fe\uc2ff\uc301",6,"\uc30a\uc30b\uc30e\uc30f"],["9b41","\uc310\uc311\uc312\uc316\uc317\uc319\uc31a\uc31b\uc31d",6,"\uc326\uc327\uc32a",8],["9b61","\uc333",17,"\uc346",7],["9b81","\uc34e",25,"\uc36a\uc36b\uc36d\uc36e\uc36f\uc371\uc373",4,"\uc37a\uc37b\uc37e",5,"\uc385\uc386\uc387\uc389\uc38a\uc38b\uc38d",50,"\uc3c1",22,"\uc3da"],["9c41","\uc3db\uc3dd\uc3de\uc3e1\uc3e3",4,"\uc3ea\uc3eb\uc3ec\uc3ee",5,"\uc3f6\uc3f7\uc3f9",5],["9c61","\uc3ff",8,"\uc409",6,"\uc411",9],["9c81","\uc41b",8,"\uc425",6,"\uc42d\uc42e\uc42f\uc431\uc432\uc433\uc435",6,"\uc43e",9,"\uc449",26,"\uc466\uc467\uc469\uc46a\uc46b\uc46d",6,"\uc476\uc477\uc478\uc47a",5,"\uc481",18,"\uc495",6,"\uc49d",12],["9d41","\uc4aa",13,"\uc4b9\uc4ba\uc4bb\uc4bd",8],["9d61","\uc4c6",25],["9d81","\uc4e0",8,"\uc4ea",5,"\uc4f2\uc4f3\uc4f5\uc4f6\uc4f7\uc4f9\uc4fb\uc4fc\uc4fd\uc4fe\uc502",9,"\uc50d\uc50e\uc50f\uc511\uc512\uc513\uc515",6,"\uc51d",10,"\uc52a\uc52b\uc52d\uc52e\uc52f\uc531",6,"\uc53a\uc53c\uc53e",5,"\uc546\uc547\uc54b\uc54f\uc550\uc551\uc552\uc556\uc55a\uc55b\uc55c\uc55f\uc562\uc563\uc565\uc566\uc567\uc569",6,"\uc572\uc576",5,"\uc57e\uc57f\uc581\uc582\uc583\uc585\uc586\uc588\uc589\uc58a\uc58b\uc58e\uc590\uc592\uc593\uc594"],["9e41","\uc596\uc599\uc59a\uc59b\uc59d\uc59e\uc59f\uc5a1",7,"\uc5aa",9,"\uc5b6"],["9e61","\uc5b7\uc5ba\uc5bf",4,"\uc5cb\uc5cd\uc5cf\uc5d2\uc5d3\uc5d5\uc5d6\uc5d7\uc5d9",6,"\uc5e2\uc5e4\uc5e6\uc5e7"],["9e81","\uc5e8\uc5e9\uc5ea\uc5eb\uc5ef\uc5f1\uc5f2\uc5f3\uc5f5\uc5f8\uc5f9\uc5fa\uc5fb\uc602\uc603\uc604\uc609\uc60a\uc60b\uc60d\uc60e\uc60f\uc611",6,"\uc61a\uc61d",6,"\uc626\uc627\uc629\uc62a\uc62b\uc62f\uc631\uc632\uc636\uc638\uc63a\uc63c\uc63d\uc63e\uc63f\uc642\uc643\uc645\uc646\uc647\uc649",6,"\uc652\uc656",5,"\uc65e\uc65f\uc661",10,"\uc66d\uc66e\uc670\uc672",5,"\uc67a\uc67b\uc67d\uc67e\uc67f\uc681",6,"\uc68a\uc68c\uc68e",5,"\uc696\uc697\uc699\uc69a\uc69b\uc69d",6,"\uc6a6"],["9f41","\uc6a8\uc6aa",5,"\uc6b2\uc6b3\uc6b5\uc6b6\uc6b7\uc6bb",4,"\uc6c2\uc6c4\uc6c6",5,"\uc6ce"],["9f61","\uc6cf\uc6d1\uc6d2\uc6d3\uc6d5",6,"\uc6de\uc6df\uc6e2",5,"\uc6ea\uc6eb\uc6ed\uc6ee\uc6ef\uc6f1\uc6f2"],["9f81","\uc6f3",4,"\uc6fa\uc6fb\uc6fc\uc6fe",5,"\uc706\uc707\uc709\uc70a\uc70b\uc70d",6,"\uc716\uc718\uc71a",5,"\uc722\uc723\uc725\uc726\uc727\uc729",6,"\uc732\uc734\uc736\uc738\uc739\uc73a\uc73b\uc73e\uc73f\uc741\uc742\uc743\uc745",4,"\uc74b\uc74e\uc750\uc759\uc75a\uc75b\uc75d\uc75e\uc75f\uc761",6,"\uc769\uc76a\uc76c",7,"\uc776\uc777\uc779\uc77a\uc77b\uc77f\uc780\uc781\uc782\uc786\uc78b\uc78c\uc78d\uc78f\uc792\uc793\uc795\uc799\uc79b",4,"\uc7a2\uc7a7",4,"\uc7ae\uc7af\uc7b1\uc7b2\uc7b3\uc7b5\uc7b6\uc7b7"],["a041","\uc7b8\uc7b9\uc7ba\uc7bb\uc7be\uc7c2",5,"\uc7ca\uc7cb\uc7cd\uc7cf\uc7d1",6,"\uc7d9\uc7da\uc7db\uc7dc"],["a061","\uc7de",5,"\uc7e5\uc7e6\uc7e7\uc7e9\uc7ea\uc7eb\uc7ed",13],["a081","\uc7fb",4,"\uc802\uc803\uc805\uc806\uc807\uc809\uc80b",4,"\uc812\uc814\uc817",4,"\uc81e\uc81f\uc821\uc822\uc823\uc825",6,"\uc82e\uc830\uc832",5,"\uc839\uc83a\uc83b\uc83d\uc83e\uc83f\uc841",6,"\uc84a\uc84b\uc84e",5,"\uc855",26,"\uc872\uc873\uc875\uc876\uc877\uc879\uc87b",4,"\uc882\uc884\uc888\uc889\uc88a\uc88e",5,"\uc895",7,"\uc89e\uc8a0\uc8a2\uc8a3\uc8a4"],["a141","\uc8a5\uc8a6\uc8a7\uc8a9",18,"\uc8be\uc8bf\uc8c0\uc8c1"],["a161","\uc8c2\uc8c3\uc8c5\uc8c6\uc8c7\uc8c9\uc8ca\uc8cb\uc8cd",6,"\uc8d6\uc8d8\uc8da",5,"\uc8e2\uc8e3\uc8e5"],["a181","\uc8e6",14,"\uc8f6",5,"\uc8fe\uc8ff\uc901\uc902\uc903\uc907",4,"\uc90e\u3000\u3001\u3002\xb7\u2025\u2026\xa8\u3003\xad\u2015\u2225\uff3c\u223c\u2018\u2019\u201c\u201d\u3014\u3015\u3008",9,"\xb1\xd7\xf7\u2260\u2264\u2265\u221e\u2234\xb0\u2032\u2033\u2103\u212b\uffe0\uffe1\uffe5\u2642\u2640\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\xa7\u203b\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u2192\u2190\u2191\u2193\u2194\u3013\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229\u2227\u2228\uffe2"],["a241","\uc910\uc912",5,"\uc919",18],["a261","\uc92d",6,"\uc935",18],["a281","\uc948",7,"\uc952\uc953\uc955\uc956\uc957\uc959",6,"\uc962\uc964",7,"\uc96d\uc96e\uc96f\u21d2\u21d4\u2200\u2203\xb4\uff5e\u02c7\u02d8\u02dd\u02da\u02d9\xb8\u02db\xa1\xbf\u02d0\u222e\u2211\u220f\xa4\u2109\u2030\u25c1\u25c0\u25b7\u25b6\u2664\u2660\u2661\u2665\u2667\u2663\u2299\u25c8\u25a3\u25d0\u25d1\u2592\u25a4\u25a5\u25a8\u25a7\u25a6\u25a9\u2668\u260f\u260e\u261c\u261e\xb6\u2020\u2021\u2195\u2197\u2199\u2196\u2198\u266d\u2669\u266a\u266c\u327f\u321c\u2116\u33c7\u2122\u33c2\u33d8\u2121\u20ac\xae"],["a341","\uc971\uc972\uc973\uc975",6,"\uc97d",10,"\uc98a\uc98b\uc98d\uc98e\uc98f"],["a361","\uc991",6,"\uc99a\uc99c\uc99e",16],["a381","\uc9af",16,"\uc9c2\uc9c3\uc9c5\uc9c6\uc9c9\uc9cb",4,"\uc9d2\uc9d4\uc9d7\uc9d8\uc9db\uff01",58,"\uffe6\uff3d",32,"\uffe3"],["a441","\uc9de\uc9df\uc9e1\uc9e3\uc9e5\uc9e6\uc9e8\uc9e9\uc9ea\uc9eb\uc9ee\uc9f2",5,"\uc9fa\uc9fb\uc9fd\uc9fe\uc9ff\uca01\uca02\uca03\uca04"],["a461","\uca05\uca06\uca07\uca0a\uca0e",5,"\uca15\uca16\uca17\uca19",12],["a481","\uca26\uca27\uca28\uca2a",28,"\u3131",93],["a541","\uca47",4,"\uca4e\uca4f\uca51\uca52\uca53\uca55",6,"\uca5e\uca62",5,"\uca69\uca6a"],["a561","\uca6b",17,"\uca7e",5,"\uca85\uca86"],["a581","\uca87",16,"\uca99",14,"\u2170",9],["a5b0","\u2160",9],["a5c1","\u0391",16,"\u03a3",6],["a5e1","\u03b1",16,"\u03c3",6],["a641","\ucaa8",19,"\ucabe\ucabf\ucac1\ucac2\ucac3\ucac5"],["a661","\ucac6",5,"\ucace\ucad0\ucad2\ucad4\ucad5\ucad6\ucad7\ucada",5,"\ucae1",6],["a681","\ucae8\ucae9\ucaea\ucaeb\ucaed",6,"\ucaf5",18,"\ucb09\ucb0a\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542\u2512\u2511\u251a\u2519\u2516\u2515\u250e\u250d\u251e\u251f\u2521\u2522\u2526\u2527\u2529\u252a\u252d\u252e\u2531\u2532\u2535\u2536\u2539\u253a\u253d\u253e\u2540\u2541\u2543",7],["a741","\ucb0b",4,"\ucb11\ucb12\ucb13\ucb15\ucb16\ucb17\ucb19",6,"\ucb22",7],["a761","\ucb2a",22,"\ucb42\ucb43\ucb44"],["a781","\ucb45\ucb46\ucb47\ucb4a\ucb4b\ucb4d\ucb4e\ucb4f\ucb51",6,"\ucb5a\ucb5b\ucb5c\ucb5e",5,"\ucb65",7,"\u3395\u3396\u3397\u2113\u3398\u33c4\u33a3\u33a4\u33a5\u33a6\u3399",9,"\u33ca\u338d\u338e\u338f\u33cf\u3388\u3389\u33c8\u33a7\u33a8\u33b0",9,"\u3380",4,"\u33ba",5,"\u3390",4,"\u2126\u33c0\u33c1\u338a\u338b\u338c\u33d6\u33c5\u33ad\u33ae\u33af\u33db\u33a9\u33aa\u33ab\u33ac\u33dd\u33d0\u33d3\u33c3\u33c9\u33dc\u33c6"],["a841","\ucb6d",10,"\ucb7a",14],["a861","\ucb89",18,"\ucb9d",6],["a881","\ucba4",19,"\ucbb9",11,"\xc6\xd0\xaa\u0126"],["a8a6","\u0132"],["a8a8","\u013f\u0141\xd8\u0152\xba\xde\u0166\u014a"],["a8b1","\u3260",27,"\u24d0",25,"\u2460",14,"\xbd\u2153\u2154\xbc\xbe\u215b\u215c\u215d\u215e"],["a941","\ucbc5",14,"\ucbd5",10],["a961","\ucbe0\ucbe1\ucbe2\ucbe3\ucbe5\ucbe6\ucbe8\ucbea",18],["a981","\ucbfd",14,"\ucc0e\ucc0f\ucc11\ucc12\ucc13\ucc15",6,"\ucc1e\ucc1f\ucc20\ucc23\ucc24\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0140\u0142\xf8\u0153\xdf\xfe\u0167\u014b\u0149\u3200",27,"\u249c",25,"\u2474",14,"\xb9\xb2\xb3\u2074\u207f\u2081\u2082\u2083\u2084"],["aa41","\ucc25\ucc26\ucc2a\ucc2b\ucc2d\ucc2f\ucc31",6,"\ucc3a\ucc3f",4,"\ucc46\ucc47\ucc49\ucc4a\ucc4b\ucc4d\ucc4e"],["aa61","\ucc4f",4,"\ucc56\ucc5a",5,"\ucc61\ucc62\ucc63\ucc65\ucc67\ucc69",6,"\ucc71\ucc72"],["aa81","\ucc73\ucc74\ucc76",29,"\u3041",82],["ab41","\ucc94\ucc95\ucc96\ucc97\ucc9a\ucc9b\ucc9d\ucc9e\ucc9f\ucca1",6,"\uccaa\uccae",5,"\uccb6\uccb7\uccb9"],["ab61","\uccba\uccbb\uccbd",6,"\uccc6\uccc8\uccca",5,"\uccd1\uccd2\uccd3\uccd5",5],["ab81","\uccdb",8,"\ucce5",6,"\ucced\uccee\uccef\uccf1",12,"\u30a1",85],["ac41","\uccfe\uccff\ucd00\ucd02",5,"\ucd0a\ucd0b\ucd0d\ucd0e\ucd0f\ucd11",6,"\ucd1a\ucd1c\ucd1e\ucd1f\ucd20"],["ac61","\ucd21\ucd22\ucd23\ucd25\ucd26\ucd27\ucd29\ucd2a\ucd2b\ucd2d",11,"\ucd3a",4],["ac81","\ucd3f",28,"\ucd5d\ucd5e\ucd5f\u0410",5,"\u0401\u0416",25],["acd1","\u0430",5,"\u0451\u0436",25],["ad41","\ucd61\ucd62\ucd63\ucd65",6,"\ucd6e\ucd70\ucd72",5,"\ucd79",7],["ad61","\ucd81",6,"\ucd89",10,"\ucd96\ucd97\ucd99\ucd9a\ucd9b\ucd9d\ucd9e\ucd9f"],["ad81","\ucda0\ucda1\ucda2\ucda3\ucda6\ucda8\ucdaa",5,"\ucdb1",18,"\ucdc5"],["ae41","\ucdc6",5,"\ucdcd\ucdce\ucdcf\ucdd1",16],["ae61","\ucde2",5,"\ucde9\ucdea\ucdeb\ucded\ucdee\ucdef\ucdf1",6,"\ucdfa\ucdfc\ucdfe",4],["ae81","\uce03\uce05\uce06\uce07\uce09\uce0a\uce0b\uce0d",6,"\uce15\uce16\uce17\uce18\uce1a",5,"\uce22\uce23\uce25\uce26\uce27\uce29\uce2a\uce2b"],["af41","\uce2c\uce2d\uce2e\uce2f\uce32\uce34\uce36",19],["af61","\uce4a",13,"\uce5a\uce5b\uce5d\uce5e\uce62",5,"\uce6a\uce6c"],["af81","\uce6e",5,"\uce76\uce77\uce79\uce7a\uce7b\uce7d",6,"\uce86\uce88\uce8a",5,"\uce92\uce93\uce95\uce96\uce97\uce99"],["b041","\uce9a",5,"\ucea2\ucea6",5,"\uceae",12],["b061","\ucebb",5,"\ucec2",19],["b081","\uced6",13,"\ucee6\ucee7\ucee9\uceea\uceed",6,"\ucef6\ucefa",5,"\uac00\uac01\uac04\uac07\uac08\uac09\uac0a\uac10",7,"\uac19",4,"\uac20\uac24\uac2c\uac2d\uac2f\uac30\uac31\uac38\uac39\uac3c\uac40\uac4b\uac4d\uac54\uac58\uac5c\uac70\uac71\uac74\uac77\uac78\uac7a\uac80\uac81\uac83\uac84\uac85\uac86\uac89\uac8a\uac8b\uac8c\uac90\uac94\uac9c\uac9d\uac9f\uaca0\uaca1\uaca8\uaca9\uacaa\uacac\uacaf\uacb0\uacb8\uacb9\uacbb\uacbc\uacbd\uacc1\uacc4\uacc8\uaccc\uacd5\uacd7\uace0\uace1\uace4\uace7\uace8\uacea\uacec\uacef\uacf0\uacf1\uacf3\uacf5\uacf6\uacfc\uacfd\uad00\uad04\uad06"],["b141","\ucf02\ucf03\ucf05\ucf06\ucf07\ucf09",6,"\ucf12\ucf14\ucf16",5,"\ucf1d\ucf1e\ucf1f\ucf21\ucf22\ucf23"],["b161","\ucf25",6,"\ucf2e\ucf32",5,"\ucf39",11],["b181","\ucf45",14,"\ucf56\ucf57\ucf59\ucf5a\ucf5b\ucf5d",6,"\ucf66\ucf68\ucf6a\ucf6b\ucf6c\uad0c\uad0d\uad0f\uad11\uad18\uad1c\uad20\uad29\uad2c\uad2d\uad34\uad35\uad38\uad3c\uad44\uad45\uad47\uad49\uad50\uad54\uad58\uad61\uad63\uad6c\uad6d\uad70\uad73\uad74\uad75\uad76\uad7b\uad7c\uad7d\uad7f\uad81\uad82\uad88\uad89\uad8c\uad90\uad9c\uad9d\uada4\uadb7\uadc0\uadc1\uadc4\uadc8\uadd0\uadd1\uadd3\uaddc\uade0\uade4\uadf8\uadf9\uadfc\uadff\uae00\uae01\uae08\uae09\uae0b\uae0d\uae14\uae30\uae31\uae34\uae37\uae38\uae3a\uae40\uae41\uae43\uae45\uae46\uae4a\uae4c\uae4d\uae4e\uae50\uae54\uae56\uae5c\uae5d\uae5f\uae60\uae61\uae65\uae68\uae69\uae6c\uae70\uae78"],["b241","\ucf6d\ucf6e\ucf6f\ucf72\ucf73\ucf75\ucf76\ucf77\ucf79",6,"\ucf81\ucf82\ucf83\ucf84\ucf86",5,"\ucf8d"],["b261","\ucf8e",18,"\ucfa2",5,"\ucfa9"],["b281","\ucfaa",5,"\ucfb1",18,"\ucfc5",6,"\uae79\uae7b\uae7c\uae7d\uae84\uae85\uae8c\uaebc\uaebd\uaebe\uaec0\uaec4\uaecc\uaecd\uaecf\uaed0\uaed1\uaed8\uaed9\uaedc\uaee8\uaeeb\uaeed\uaef4\uaef8\uaefc\uaf07\uaf08\uaf0d\uaf10\uaf2c\uaf2d\uaf30\uaf32\uaf34\uaf3c\uaf3d\uaf3f\uaf41\uaf42\uaf43\uaf48\uaf49\uaf50\uaf5c\uaf5d\uaf64\uaf65\uaf79\uaf80\uaf84\uaf88\uaf90\uaf91\uaf95\uaf9c\uafb8\uafb9\uafbc\uafc0\uafc7\uafc8\uafc9\uafcb\uafcd\uafce\uafd4\uafdc\uafe8\uafe9\uaff0\uaff1\uaff4\uaff8\ub000\ub001\ub004\ub00c\ub010\ub014\ub01c\ub01d\ub028\ub044\ub045\ub048\ub04a\ub04c\ub04e\ub053\ub054\ub055\ub057\ub059"],["b341","\ucfcc",19,"\ucfe2\ucfe3\ucfe5\ucfe6\ucfe7\ucfe9"],["b361","\ucfea",5,"\ucff2\ucff4\ucff6",5,"\ucffd\ucffe\ucfff\ud001\ud002\ud003\ud005",5],["b381","\ud00b",5,"\ud012",5,"\ud019",19,"\ub05d\ub07c\ub07d\ub080\ub084\ub08c\ub08d\ub08f\ub091\ub098\ub099\ub09a\ub09c\ub09f\ub0a0\ub0a1\ub0a2\ub0a8\ub0a9\ub0ab",4,"\ub0b1\ub0b3\ub0b4\ub0b5\ub0b8\ub0bc\ub0c4\ub0c5\ub0c7\ub0c8\ub0c9\ub0d0\ub0d1\ub0d4\ub0d8\ub0e0\ub0e5\ub108\ub109\ub10b\ub10c\ub110\ub112\ub113\ub118\ub119\ub11b\ub11c\ub11d\ub123\ub124\ub125\ub128\ub12c\ub134\ub135\ub137\ub138\ub139\ub140\ub141\ub144\ub148\ub150\ub151\ub154\ub155\ub158\ub15c\ub160\ub178\ub179\ub17c\ub180\ub182\ub188\ub189\ub18b\ub18d\ub192\ub193\ub194\ub198\ub19c\ub1a8\ub1cc\ub1d0\ub1d4\ub1dc\ub1dd"],["b441","\ud02e",5,"\ud036\ud037\ud039\ud03a\ud03b\ud03d",6,"\ud046\ud048\ud04a",5],["b461","\ud051\ud052\ud053\ud055\ud056\ud057\ud059",6,"\ud061",10,"\ud06e\ud06f"],["b481","\ud071\ud072\ud073\ud075",6,"\ud07e\ud07f\ud080\ud082",18,"\ub1df\ub1e8\ub1e9\ub1ec\ub1f0\ub1f9\ub1fb\ub1fd\ub204\ub205\ub208\ub20b\ub20c\ub214\ub215\ub217\ub219\ub220\ub234\ub23c\ub258\ub25c\ub260\ub268\ub269\ub274\ub275\ub27c\ub284\ub285\ub289\ub290\ub291\ub294\ub298\ub299\ub29a\ub2a0\ub2a1\ub2a3\ub2a5\ub2a6\ub2aa\ub2ac\ub2b0\ub2b4\ub2c8\ub2c9\ub2cc\ub2d0\ub2d2\ub2d8\ub2d9\ub2db\ub2dd\ub2e2\ub2e4\ub2e5\ub2e6\ub2e8\ub2eb",4,"\ub2f3\ub2f4\ub2f5\ub2f7",4,"\ub2ff\ub300\ub301\ub304\ub308\ub310\ub311\ub313\ub314\ub315\ub31c\ub354\ub355\ub356\ub358\ub35b\ub35c\ub35e\ub35f\ub364\ub365"],["b541","\ud095",14,"\ud0a6\ud0a7\ud0a9\ud0aa\ud0ab\ud0ad",5],["b561","\ud0b3\ud0b6\ud0b8\ud0ba",5,"\ud0c2\ud0c3\ud0c5\ud0c6\ud0c7\ud0ca",5,"\ud0d2\ud0d6",4],["b581","\ud0db\ud0de\ud0df\ud0e1\ud0e2\ud0e3\ud0e5",6,"\ud0ee\ud0f2",5,"\ud0f9",11,"\ub367\ub369\ub36b\ub36e\ub370\ub371\ub374\ub378\ub380\ub381\ub383\ub384\ub385\ub38c\ub390\ub394\ub3a0\ub3a1\ub3a8\ub3ac\ub3c4\ub3c5\ub3c8\ub3cb\ub3cc\ub3ce\ub3d0\ub3d4\ub3d5\ub3d7\ub3d9\ub3db\ub3dd\ub3e0\ub3e4\ub3e8\ub3fc\ub410\ub418\ub41c\ub420\ub428\ub429\ub42b\ub434\ub450\ub451\ub454\ub458\ub460\ub461\ub463\ub465\ub46c\ub480\ub488\ub49d\ub4a4\ub4a8\ub4ac\ub4b5\ub4b7\ub4b9\ub4c0\ub4c4\ub4c8\ub4d0\ub4d5\ub4dc\ub4dd\ub4e0\ub4e3\ub4e4\ub4e6\ub4ec\ub4ed\ub4ef\ub4f1\ub4f8\ub514\ub515\ub518\ub51b\ub51c\ub524\ub525\ub527\ub528\ub529\ub52a\ub530\ub531\ub534\ub538"],["b641","\ud105",7,"\ud10e",17],["b661","\ud120",15,"\ud132\ud133\ud135\ud136\ud137\ud139\ud13b\ud13c\ud13d\ud13e"],["b681","\ud13f\ud142\ud146",5,"\ud14e\ud14f\ud151\ud152\ud153\ud155",6,"\ud15e\ud160\ud162",5,"\ud169\ud16a\ud16b\ud16d\ub540\ub541\ub543\ub544\ub545\ub54b\ub54c\ub54d\ub550\ub554\ub55c\ub55d\ub55f\ub560\ub561\ub5a0\ub5a1\ub5a4\ub5a8\ub5aa\ub5ab\ub5b0\ub5b1\ub5b3\ub5b4\ub5b5\ub5bb\ub5bc\ub5bd\ub5c0\ub5c4\ub5cc\ub5cd\ub5cf\ub5d0\ub5d1\ub5d8\ub5ec\ub610\ub611\ub614\ub618\ub625\ub62c\ub634\ub648\ub664\ub668\ub69c\ub69d\ub6a0\ub6a4\ub6ab\ub6ac\ub6b1\ub6d4\ub6f0\ub6f4\ub6f8\ub700\ub701\ub705\ub728\ub729\ub72c\ub72f\ub730\ub738\ub739\ub73b\ub744\ub748\ub74c\ub754\ub755\ub760\ub764\ub768\ub770\ub771\ub773\ub775\ub77c\ub77d\ub780\ub784\ub78c\ub78d\ub78f\ub790\ub791\ub792\ub796\ub797"],["b741","\ud16e",13,"\ud17d",6,"\ud185\ud186\ud187\ud189\ud18a"],["b761","\ud18b",20,"\ud1a2\ud1a3\ud1a5\ud1a6\ud1a7"],["b781","\ud1a9",6,"\ud1b2\ud1b4\ud1b6\ud1b7\ud1b8\ud1b9\ud1bb\ud1bd\ud1be\ud1bf\ud1c1",14,"\ub798\ub799\ub79c\ub7a0\ub7a8\ub7a9\ub7ab\ub7ac\ub7ad\ub7b4\ub7b5\ub7b8\ub7c7\ub7c9\ub7ec\ub7ed\ub7f0\ub7f4\ub7fc\ub7fd\ub7ff\ub800\ub801\ub807\ub808\ub809\ub80c\ub810\ub818\ub819\ub81b\ub81d\ub824\ub825\ub828\ub82c\ub834\ub835\ub837\ub838\ub839\ub840\ub844\ub851\ub853\ub85c\ub85d\ub860\ub864\ub86c\ub86d\ub86f\ub871\ub878\ub87c\ub88d\ub8a8\ub8b0\ub8b4\ub8b8\ub8c0\ub8c1\ub8c3\ub8c5\ub8cc\ub8d0\ub8d4\ub8dd\ub8df\ub8e1\ub8e8\ub8e9\ub8ec\ub8f0\ub8f8\ub8f9\ub8fb\ub8fd\ub904\ub918\ub920\ub93c\ub93d\ub940\ub944\ub94c\ub94f\ub951\ub958\ub959\ub95c\ub960\ub968\ub969"],["b841","\ud1d0",7,"\ud1d9",17],["b861","\ud1eb",8,"\ud1f5\ud1f6\ud1f7\ud1f9",13],["b881","\ud208\ud20a",5,"\ud211",24,"\ub96b\ub96d\ub974\ub975\ub978\ub97c\ub984\ub985\ub987\ub989\ub98a\ub98d\ub98e\ub9ac\ub9ad\ub9b0\ub9b4\ub9bc\ub9bd\ub9bf\ub9c1\ub9c8\ub9c9\ub9cc\ub9ce",4,"\ub9d8\ub9d9\ub9db\ub9dd\ub9de\ub9e1\ub9e3\ub9e4\ub9e5\ub9e8\ub9ec\ub9f4\ub9f5\ub9f7\ub9f8\ub9f9\ub9fa\uba00\uba01\uba08\uba15\uba38\uba39\uba3c\uba40\uba42\uba48\uba49\uba4b\uba4d\uba4e\uba53\uba54\uba55\uba58\uba5c\uba64\uba65\uba67\uba68\uba69\uba70\uba71\uba74\uba78\uba83\uba84\uba85\uba87\uba8c\ubaa8\ubaa9\ubaab\ubaac\ubab0\ubab2\ubab8\ubab9\ubabb\ubabd\ubac4\ubac8\ubad8\ubad9\ubafc"],["b941","\ud22a\ud22b\ud22e\ud22f\ud231\ud232\ud233\ud235",6,"\ud23e\ud240\ud242",5,"\ud249\ud24a\ud24b\ud24c"],["b961","\ud24d",14,"\ud25d",6,"\ud265\ud266\ud267\ud268"],["b981","\ud269",22,"\ud282\ud283\ud285\ud286\ud287\ud289\ud28a\ud28b\ud28c\ubb00\ubb04\ubb0d\ubb0f\ubb11\ubb18\ubb1c\ubb20\ubb29\ubb2b\ubb34\ubb35\ubb36\ubb38\ubb3b\ubb3c\ubb3d\ubb3e\ubb44\ubb45\ubb47\ubb49\ubb4d\ubb4f\ubb50\ubb54\ubb58\ubb61\ubb63\ubb6c\ubb88\ubb8c\ubb90\ubba4\ubba8\ubbac\ubbb4\ubbb7\ubbc0\ubbc4\ubbc8\ubbd0\ubbd3\ubbf8\ubbf9\ubbfc\ubbff\ubc00\ubc02\ubc08\ubc09\ubc0b\ubc0c\ubc0d\ubc0f\ubc11\ubc14",4,"\ubc1b",4,"\ubc24\ubc25\ubc27\ubc29\ubc2d\ubc30\ubc31\ubc34\ubc38\ubc40\ubc41\ubc43\ubc44\ubc45\ubc49\ubc4c\ubc4d\ubc50\ubc5d\ubc84\ubc85\ubc88\ubc8b\ubc8c\ubc8e\ubc94\ubc95\ubc97"],["ba41","\ud28d\ud28e\ud28f\ud292\ud293\ud294\ud296",5,"\ud29d\ud29e\ud29f\ud2a1\ud2a2\ud2a3\ud2a5",6,"\ud2ad"],["ba61","\ud2ae\ud2af\ud2b0\ud2b2",5,"\ud2ba\ud2bb\ud2bd\ud2be\ud2c1\ud2c3",4,"\ud2ca\ud2cc",5],["ba81","\ud2d2\ud2d3\ud2d5\ud2d6\ud2d7\ud2d9\ud2da\ud2db\ud2dd",6,"\ud2e6",9,"\ud2f2\ud2f3\ud2f5\ud2f6\ud2f7\ud2f9\ud2fa\ubc99\ubc9a\ubca0\ubca1\ubca4\ubca7\ubca8\ubcb0\ubcb1\ubcb3\ubcb4\ubcb5\ubcbc\ubcbd\ubcc0\ubcc4\ubccd\ubccf\ubcd0\ubcd1\ubcd5\ubcd8\ubcdc\ubcf4\ubcf5\ubcf6\ubcf8\ubcfc\ubd04\ubd05\ubd07\ubd09\ubd10\ubd14\ubd24\ubd2c\ubd40\ubd48\ubd49\ubd4c\ubd50\ubd58\ubd59\ubd64\ubd68\ubd80\ubd81\ubd84\ubd87\ubd88\ubd89\ubd8a\ubd90\ubd91\ubd93\ubd95\ubd99\ubd9a\ubd9c\ubda4\ubdb0\ubdb8\ubdd4\ubdd5\ubdd8\ubddc\ubde9\ubdf0\ubdf4\ubdf8\ube00\ube03\ube05\ube0c\ube0d\ube10\ube14\ube1c\ube1d\ube1f\ube44\ube45\ube48\ube4c\ube4e\ube54\ube55\ube57\ube59\ube5a\ube5b\ube60\ube61\ube64"],["bb41","\ud2fb",4,"\ud302\ud304\ud306",5,"\ud30f\ud311\ud312\ud313\ud315\ud317",4,"\ud31e\ud322\ud323"],["bb61","\ud324\ud326\ud327\ud32a\ud32b\ud32d\ud32e\ud32f\ud331",6,"\ud33a\ud33e",5,"\ud346\ud347\ud348\ud349"],["bb81","\ud34a",31,"\ube68\ube6a\ube70\ube71\ube73\ube74\ube75\ube7b\ube7c\ube7d\ube80\ube84\ube8c\ube8d\ube8f\ube90\ube91\ube98\ube99\ubea8\ubed0\ubed1\ubed4\ubed7\ubed8\ubee0\ubee3\ubee4\ubee5\ubeec\ubf01\ubf08\ubf09\ubf18\ubf19\ubf1b\ubf1c\ubf1d\ubf40\ubf41\ubf44\ubf48\ubf50\ubf51\ubf55\ubf94\ubfb0\ubfc5\ubfcc\ubfcd\ubfd0\ubfd4\ubfdc\ubfdf\ubfe1\uc03c\uc051\uc058\uc05c\uc060\uc068\uc069\uc090\uc091\uc094\uc098\uc0a0\uc0a1\uc0a3\uc0a5\uc0ac\uc0ad\uc0af\uc0b0\uc0b3\uc0b4\uc0b5\uc0b6\uc0bc\uc0bd\uc0bf\uc0c0\uc0c1\uc0c5\uc0c8\uc0c9\uc0cc\uc0d0\uc0d8\uc0d9\uc0db\uc0dc\uc0dd\uc0e4"],["bc41","\ud36a",17,"\ud37e\ud37f\ud381\ud382\ud383\ud385\ud386\ud387"],["bc61","\ud388\ud389\ud38a\ud38b\ud38e\ud392",5,"\ud39a\ud39b\ud39d\ud39e\ud39f\ud3a1",6,"\ud3aa\ud3ac\ud3ae"],["bc81","\ud3af",4,"\ud3b5\ud3b6\ud3b7\ud3b9\ud3ba\ud3bb\ud3bd",6,"\ud3c6\ud3c7\ud3ca",5,"\ud3d1",5,"\uc0e5\uc0e8\uc0ec\uc0f4\uc0f5\uc0f7\uc0f9\uc100\uc104\uc108\uc110\uc115\uc11c",4,"\uc123\uc124\uc126\uc127\uc12c\uc12d\uc12f\uc130\uc131\uc136\uc138\uc139\uc13c\uc140\uc148\uc149\uc14b\uc14c\uc14d\uc154\uc155\uc158\uc15c\uc164\uc165\uc167\uc168\uc169\uc170\uc174\uc178\uc185\uc18c\uc18d\uc18e\uc190\uc194\uc196\uc19c\uc19d\uc19f\uc1a1\uc1a5\uc1a8\uc1a9\uc1ac\uc1b0\uc1bd\uc1c4\uc1c8\uc1cc\uc1d4\uc1d7\uc1d8\uc1e0\uc1e4\uc1e8\uc1f0\uc1f1\uc1f3\uc1fc\uc1fd\uc200\uc204\uc20c\uc20d\uc20f\uc211\uc218\uc219\uc21c\uc21f\uc220\uc228\uc229\uc22b\uc22d"],["bd41","\ud3d7\ud3d9",7,"\ud3e2\ud3e4",7,"\ud3ee\ud3ef\ud3f1\ud3f2\ud3f3\ud3f5\ud3f6\ud3f7"],["bd61","\ud3f8\ud3f9\ud3fa\ud3fb\ud3fe\ud400\ud402",5,"\ud409",13],["bd81","\ud417",5,"\ud41e",25,"\uc22f\uc231\uc232\uc234\uc248\uc250\uc251\uc254\uc258\uc260\uc265\uc26c\uc26d\uc270\uc274\uc27c\uc27d\uc27f\uc281\uc288\uc289\uc290\uc298\uc29b\uc29d\uc2a4\uc2a5\uc2a8\uc2ac\uc2ad\uc2b4\uc2b5\uc2b7\uc2b9\uc2dc\uc2dd\uc2e0\uc2e3\uc2e4\uc2eb\uc2ec\uc2ed\uc2ef\uc2f1\uc2f6\uc2f8\uc2f9\uc2fb\uc2fc\uc300\uc308\uc309\uc30c\uc30d\uc313\uc314\uc315\uc318\uc31c\uc324\uc325\uc328\uc329\uc345\uc368\uc369\uc36c\uc370\uc372\uc378\uc379\uc37c\uc37d\uc384\uc388\uc38c\uc3c0\uc3d8\uc3d9\uc3dc\uc3df\uc3e0\uc3e2\uc3e8\uc3e9\uc3ed\uc3f4\uc3f5\uc3f8\uc408\uc410\uc424\uc42c\uc430"],["be41","\ud438",7,"\ud441\ud442\ud443\ud445",14],["be61","\ud454",7,"\ud45d\ud45e\ud45f\ud461\ud462\ud463\ud465",7,"\ud46e\ud470\ud471\ud472"],["be81","\ud473",4,"\ud47a\ud47b\ud47d\ud47e\ud481\ud483",4,"\ud48a\ud48c\ud48e",5,"\ud495",8,"\uc434\uc43c\uc43d\uc448\uc464\uc465\uc468\uc46c\uc474\uc475\uc479\uc480\uc494\uc49c\uc4b8\uc4bc\uc4e9\uc4f0\uc4f1\uc4f4\uc4f8\uc4fa\uc4ff\uc500\uc501\uc50c\uc510\uc514\uc51c\uc528\uc529\uc52c\uc530\uc538\uc539\uc53b\uc53d\uc544\uc545\uc548\uc549\uc54a\uc54c\uc54d\uc54e\uc553\uc554\uc555\uc557\uc558\uc559\uc55d\uc55e\uc560\uc561\uc564\uc568\uc570\uc571\uc573\uc574\uc575\uc57c\uc57d\uc580\uc584\uc587\uc58c\uc58d\uc58f\uc591\uc595\uc597\uc598\uc59c\uc5a0\uc5a9\uc5b4\uc5b5\uc5b8\uc5b9\uc5bb\uc5bc\uc5bd\uc5be\uc5c4",6,"\uc5cc\uc5ce"],["bf41","\ud49e",10,"\ud4aa",14],["bf61","\ud4b9",18,"\ud4cd\ud4ce\ud4cf\ud4d1\ud4d2\ud4d3\ud4d5"],["bf81","\ud4d6",5,"\ud4dd\ud4de\ud4e0",7,"\ud4e9\ud4ea\ud4eb\ud4ed\ud4ee\ud4ef\ud4f1",6,"\ud4f9\ud4fa\ud4fc\uc5d0\uc5d1\uc5d4\uc5d8\uc5e0\uc5e1\uc5e3\uc5e5\uc5ec\uc5ed\uc5ee\uc5f0\uc5f4\uc5f6\uc5f7\uc5fc",5,"\uc605\uc606\uc607\uc608\uc60c\uc610\uc618\uc619\uc61b\uc61c\uc624\uc625\uc628\uc62c\uc62d\uc62e\uc630\uc633\uc634\uc635\uc637\uc639\uc63b\uc640\uc641\uc644\uc648\uc650\uc651\uc653\uc654\uc655\uc65c\uc65d\uc660\uc66c\uc66f\uc671\uc678\uc679\uc67c\uc680\uc688\uc689\uc68b\uc68d\uc694\uc695\uc698\uc69c\uc6a4\uc6a5\uc6a7\uc6a9\uc6b0\uc6b1\uc6b4\uc6b8\uc6b9\uc6ba\uc6c0\uc6c1\uc6c3\uc6c5\uc6cc\uc6cd\uc6d0\uc6d4\uc6dc\uc6dd\uc6e0\uc6e1\uc6e8"],["c041","\ud4fe",5,"\ud505\ud506\ud507\ud509\ud50a\ud50b\ud50d",6,"\ud516\ud518",5],["c061","\ud51e",25],["c081","\ud538\ud539\ud53a\ud53b\ud53e\ud53f\ud541\ud542\ud543\ud545",6,"\ud54e\ud550\ud552",5,"\ud55a\ud55b\ud55d\ud55e\ud55f\ud561\ud562\ud563\uc6e9\uc6ec\uc6f0\uc6f8\uc6f9\uc6fd\uc704\uc705\uc708\uc70c\uc714\uc715\uc717\uc719\uc720\uc721\uc724\uc728\uc730\uc731\uc733\uc735\uc737\uc73c\uc73d\uc740\uc744\uc74a\uc74c\uc74d\uc74f\uc751",7,"\uc75c\uc760\uc768\uc76b\uc774\uc775\uc778\uc77c\uc77d\uc77e\uc783\uc784\uc785\uc787\uc788\uc789\uc78a\uc78e\uc790\uc791\uc794\uc796\uc797\uc798\uc79a\uc7a0\uc7a1\uc7a3\uc7a4\uc7a5\uc7a6\uc7ac\uc7ad\uc7b0\uc7b4\uc7bc\uc7bd\uc7bf\uc7c0\uc7c1\uc7c8\uc7c9\uc7cc\uc7ce\uc7d0\uc7d8\uc7dd\uc7e4\uc7e8\uc7ec\uc800\uc801\uc804\uc808\uc80a"],["c141","\ud564\ud566\ud567\ud56a\ud56c\ud56e",5,"\ud576\ud577\ud579\ud57a\ud57b\ud57d",6,"\ud586\ud58a\ud58b"],["c161","\ud58c\ud58d\ud58e\ud58f\ud591",19,"\ud5a6\ud5a7"],["c181","\ud5a8",31,"\uc810\uc811\uc813\uc815\uc816\uc81c\uc81d\uc820\uc824\uc82c\uc82d\uc82f\uc831\uc838\uc83c\uc840\uc848\uc849\uc84c\uc84d\uc854\uc870\uc871\uc874\uc878\uc87a\uc880\uc881\uc883\uc885\uc886\uc887\uc88b\uc88c\uc88d\uc894\uc89d\uc89f\uc8a1\uc8a8\uc8bc\uc8bd\uc8c4\uc8c8\uc8cc\uc8d4\uc8d5\uc8d7\uc8d9\uc8e0\uc8e1\uc8e4\uc8f5\uc8fc\uc8fd\uc900\uc904\uc905\uc906\uc90c\uc90d\uc90f\uc911\uc918\uc92c\uc934\uc950\uc951\uc954\uc958\uc960\uc961\uc963\uc96c\uc970\uc974\uc97c\uc988\uc989\uc98c\uc990\uc998\uc999\uc99b\uc99d\uc9c0\uc9c1\uc9c4\uc9c7\uc9c8\uc9ca\uc9d0\uc9d1\uc9d3"],["c241","\ud5ca\ud5cb\ud5cd\ud5ce\ud5cf\ud5d1\ud5d3",4,"\ud5da\ud5dc\ud5de",5,"\ud5e6\ud5e7\ud5e9\ud5ea\ud5eb\ud5ed\ud5ee"],["c261","\ud5ef",4,"\ud5f6\ud5f8\ud5fa",5,"\ud602\ud603\ud605\ud606\ud607\ud609",6,"\ud612"],["c281","\ud616",5,"\ud61d\ud61e\ud61f\ud621\ud622\ud623\ud625",7,"\ud62e",9,"\ud63a\ud63b\uc9d5\uc9d6\uc9d9\uc9da\uc9dc\uc9dd\uc9e0\uc9e2\uc9e4\uc9e7\uc9ec\uc9ed\uc9ef\uc9f0\uc9f1\uc9f8\uc9f9\uc9fc\uca00\uca08\uca09\uca0b\uca0c\uca0d\uca14\uca18\uca29\uca4c\uca4d\uca50\uca54\uca5c\uca5d\uca5f\uca60\uca61\uca68\uca7d\uca84\uca98\ucabc\ucabd\ucac0\ucac4\ucacc\ucacd\ucacf\ucad1\ucad3\ucad8\ucad9\ucae0\ucaec\ucaf4\ucb08\ucb10\ucb14\ucb18\ucb20\ucb21\ucb41\ucb48\ucb49\ucb4c\ucb50\ucb58\ucb59\ucb5d\ucb64\ucb78\ucb79\ucb9c\ucbb8\ucbd4\ucbe4\ucbe7\ucbe9\ucc0c\ucc0d\ucc10\ucc14\ucc1c\ucc1d\ucc21\ucc22\ucc27\ucc28\ucc29\ucc2c\ucc2e\ucc30\ucc38\ucc39\ucc3b"],["c341","\ud63d\ud63e\ud63f\ud641\ud642\ud643\ud644\ud646\ud647\ud64a\ud64c\ud64e\ud64f\ud650\ud652\ud653\ud656\ud657\ud659\ud65a\ud65b\ud65d",4],["c361","\ud662",4,"\ud668\ud66a",5,"\ud672\ud673\ud675",11],["c381","\ud681\ud682\ud684\ud686",5,"\ud68e\ud68f\ud691\ud692\ud693\ud695",7,"\ud69e\ud6a0\ud6a2",5,"\ud6a9\ud6aa\ucc3c\ucc3d\ucc3e\ucc44\ucc45\ucc48\ucc4c\ucc54\ucc55\ucc57\ucc58\ucc59\ucc60\ucc64\ucc66\ucc68\ucc70\ucc75\ucc98\ucc99\ucc9c\ucca0\ucca8\ucca9\uccab\uccac\uccad\uccb4\uccb5\uccb8\uccbc\uccc4\uccc5\uccc7\uccc9\uccd0\uccd4\ucce4\uccec\uccf0\ucd01\ucd08\ucd09\ucd0c\ucd10\ucd18\ucd19\ucd1b\ucd1d\ucd24\ucd28\ucd2c\ucd39\ucd5c\ucd60\ucd64\ucd6c\ucd6d\ucd6f\ucd71\ucd78\ucd88\ucd94\ucd95\ucd98\ucd9c\ucda4\ucda5\ucda7\ucda9\ucdb0\ucdc4\ucdcc\ucdd0\ucde8\ucdec\ucdf0\ucdf8\ucdf9\ucdfb\ucdfd\uce04\uce08\uce0c\uce14\uce19\uce20\uce21\uce24\uce28\uce30\uce31\uce33\uce35"],["c441","\ud6ab\ud6ad\ud6ae\ud6af\ud6b1",7,"\ud6ba\ud6bc",7,"\ud6c6\ud6c7\ud6c9\ud6ca\ud6cb"],["c461","\ud6cd\ud6ce\ud6cf\ud6d0\ud6d2\ud6d3\ud6d5\ud6d6\ud6d8\ud6da",5,"\ud6e1\ud6e2\ud6e3\ud6e5\ud6e6\ud6e7\ud6e9",4],["c481","\ud6ee\ud6ef\ud6f1\ud6f2\ud6f3\ud6f4\ud6f6",5,"\ud6fe\ud6ff\ud701\ud702\ud703\ud705",11,"\ud712\ud713\ud714\uce58\uce59\uce5c\uce5f\uce60\uce61\uce68\uce69\uce6b\uce6d\uce74\uce75\uce78\uce7c\uce84\uce85\uce87\uce89\uce90\uce91\uce94\uce98\ucea0\ucea1\ucea3\ucea4\ucea5\uceac\ucead\ucec1\ucee4\ucee5\ucee8\uceeb\uceec\ucef4\ucef5\ucef7\ucef8\ucef9\ucf00\ucf01\ucf04\ucf08\ucf10\ucf11\ucf13\ucf15\ucf1c\ucf20\ucf24\ucf2c\ucf2d\ucf2f\ucf30\ucf31\ucf38\ucf54\ucf55\ucf58\ucf5c\ucf64\ucf65\ucf67\ucf69\ucf70\ucf71\ucf74\ucf78\ucf80\ucf85\ucf8c\ucfa1\ucfa8\ucfb0\ucfc4\ucfe0\ucfe1\ucfe4\ucfe8\ucff0\ucff1\ucff3\ucff5\ucffc\ud000\ud004\ud011\ud018\ud02d\ud034\ud035\ud038\ud03c"],["c541","\ud715\ud716\ud717\ud71a\ud71b\ud71d\ud71e\ud71f\ud721",6,"\ud72a\ud72c\ud72e",5,"\ud736\ud737\ud739"],["c561","\ud73a\ud73b\ud73d",6,"\ud745\ud746\ud748\ud74a",5,"\ud752\ud753\ud755\ud75a",4],["c581","\ud75f\ud762\ud764\ud766\ud767\ud768\ud76a\ud76b\ud76d\ud76e\ud76f\ud771\ud772\ud773\ud775",6,"\ud77e\ud77f\ud780\ud782",5,"\ud78a\ud78b\ud044\ud045\ud047\ud049\ud050\ud054\ud058\ud060\ud06c\ud06d\ud070\ud074\ud07c\ud07d\ud081\ud0a4\ud0a5\ud0a8\ud0ac\ud0b4\ud0b5\ud0b7\ud0b9\ud0c0\ud0c1\ud0c4\ud0c8\ud0c9\ud0d0\ud0d1\ud0d3\ud0d4\ud0d5\ud0dc\ud0dd\ud0e0\ud0e4\ud0ec\ud0ed\ud0ef\ud0f0\ud0f1\ud0f8\ud10d\ud130\ud131\ud134\ud138\ud13a\ud140\ud141\ud143\ud144\ud145\ud14c\ud14d\ud150\ud154\ud15c\ud15d\ud15f\ud161\ud168\ud16c\ud17c\ud184\ud188\ud1a0\ud1a1\ud1a4\ud1a8\ud1b0\ud1b1\ud1b3\ud1b5\ud1ba\ud1bc\ud1c0\ud1d8\ud1f4\ud1f8\ud207\ud209\ud210\ud22c\ud22d\ud230\ud234\ud23c\ud23d\ud23f\ud241\ud248\ud25c"],["c641","\ud78d\ud78e\ud78f\ud791",6,"\ud79a\ud79c\ud79e",5],["c6a1","\ud264\ud280\ud281\ud284\ud288\ud290\ud291\ud295\ud29c\ud2a0\ud2a4\ud2ac\ud2b1\ud2b8\ud2b9\ud2bc\ud2bf\ud2c0\ud2c2\ud2c8\ud2c9\ud2cb\ud2d4\ud2d8\ud2dc\ud2e4\ud2e5\ud2f0\ud2f1\ud2f4\ud2f8\ud300\ud301\ud303\ud305\ud30c\ud30d\ud30e\ud310\ud314\ud316\ud31c\ud31d\ud31f\ud320\ud321\ud325\ud328\ud329\ud32c\ud330\ud338\ud339\ud33b\ud33c\ud33d\ud344\ud345\ud37c\ud37d\ud380\ud384\ud38c\ud38d\ud38f\ud390\ud391\ud398\ud399\ud39c\ud3a0\ud3a8\ud3a9\ud3ab\ud3ad\ud3b4\ud3b8\ud3bc\ud3c4\ud3c5\ud3c8\ud3c9\ud3d0\ud3d8\ud3e1\ud3e3\ud3ec\ud3ed\ud3f0\ud3f4\ud3fc\ud3fd\ud3ff\ud401"],["c7a1","\ud408\ud41d\ud440\ud444\ud45c\ud460\ud464\ud46d\ud46f\ud478\ud479\ud47c\ud47f\ud480\ud482\ud488\ud489\ud48b\ud48d\ud494\ud4a9\ud4cc\ud4d0\ud4d4\ud4dc\ud4df\ud4e8\ud4ec\ud4f0\ud4f8\ud4fb\ud4fd\ud504\ud508\ud50c\ud514\ud515\ud517\ud53c\ud53d\ud540\ud544\ud54c\ud54d\ud54f\ud551\ud558\ud559\ud55c\ud560\ud565\ud568\ud569\ud56b\ud56d\ud574\ud575\ud578\ud57c\ud584\ud585\ud587\ud588\ud589\ud590\ud5a5\ud5c8\ud5c9\ud5cc\ud5d0\ud5d2\ud5d8\ud5d9\ud5db\ud5dd\ud5e4\ud5e5\ud5e8\ud5ec\ud5f4\ud5f5\ud5f7\ud5f9\ud600\ud601\ud604\ud608\ud610\ud611\ud613\ud614\ud615\ud61c\ud620"],["c8a1","\ud624\ud62d\ud638\ud639\ud63c\ud640\ud645\ud648\ud649\ud64b\ud64d\ud651\ud654\ud655\ud658\ud65c\ud667\ud669\ud670\ud671\ud674\ud683\ud685\ud68c\ud68d\ud690\ud694\ud69d\ud69f\ud6a1\ud6a8\ud6ac\ud6b0\ud6b9\ud6bb\ud6c4\ud6c5\ud6c8\ud6cc\ud6d1\ud6d4\ud6d7\ud6d9\ud6e0\ud6e4\ud6e8\ud6f0\ud6f5\ud6fc\ud6fd\ud700\ud704\ud711\ud718\ud719\ud71c\ud720\ud728\ud729\ud72b\ud72d\ud734\ud735\ud738\ud73c\ud744\ud747\ud749\ud750\ud751\ud754\ud756\ud757\ud758\ud759\ud760\ud761\ud763\ud765\ud769\ud76c\ud770\ud774\ud77c\ud77d\ud781\ud788\ud789\ud78c\ud790\ud798\ud799\ud79b\ud79d"],["caa1","\u4f3d\u4f73\u5047\u50f9\u52a0\u53ef\u5475\u54e5\u5609\u5ac1\u5bb6\u6687\u67b6\u67b7\u67ef\u6b4c\u73c2\u75c2\u7a3c\u82db\u8304\u8857\u8888\u8a36\u8cc8\u8dcf\u8efb\u8fe6\u99d5\u523b\u5374\u5404\u606a\u6164\u6bbc\u73cf\u811a\u89ba\u89d2\u95a3\u4f83\u520a\u58be\u5978\u59e6\u5e72\u5e79\u61c7\u63c0\u6746\u67ec\u687f\u6f97\u764e\u770b\u78f5\u7a08\u7aff\u7c21\u809d\u826e\u8271\u8aeb\u9593\u4e6b\u559d\u66f7\u6e34\u78a3\u7aed\u845b\u8910\u874e\u97a8\u52d8\u574e\u582a\u5d4c\u611f\u61be\u6221\u6562\u67d1\u6a44\u6e1b\u7518\u75b3\u76e3\u77b0\u7d3a\u90af\u9451\u9452\u9f95"],["cba1","\u5323\u5cac\u7532\u80db\u9240\u9598\u525b\u5808\u59dc\u5ca1\u5d17\u5eb7\u5f3a\u5f4a\u6177\u6c5f\u757a\u7586\u7ce0\u7d73\u7db1\u7f8c\u8154\u8221\u8591\u8941\u8b1b\u92fc\u964d\u9c47\u4ecb\u4ef7\u500b\u51f1\u584f\u6137\u613e\u6168\u6539\u69ea\u6f11\u75a5\u7686\u76d6\u7b87\u82a5\u84cb\uf900\u93a7\u958b\u5580\u5ba2\u5751\uf901\u7cb3\u7fb9\u91b5\u5028\u53bb\u5c45\u5de8\u62d2\u636e\u64da\u64e7\u6e20\u70ac\u795b\u8ddd\u8e1e\uf902\u907d\u9245\u92f8\u4e7e\u4ef6\u5065\u5dfe\u5efa\u6106\u6957\u8171\u8654\u8e47\u9375\u9a2b\u4e5e\u5091\u6770\u6840\u5109\u528d\u5292\u6aa2"],["cca1","\u77bc\u9210\u9ed4\u52ab\u602f\u8ff2\u5048\u61a9\u63ed\u64ca\u683c\u6a84\u6fc0\u8188\u89a1\u9694\u5805\u727d\u72ac\u7504\u7d79\u7e6d\u80a9\u898b\u8b74\u9063\u9d51\u6289\u6c7a\u6f54\u7d50\u7f3a\u8a23\u517c\u614a\u7b9d\u8b19\u9257\u938c\u4eac\u4fd3\u501e\u50be\u5106\u52c1\u52cd\u537f\u5770\u5883\u5e9a\u5f91\u6176\u61ac\u64ce\u656c\u666f\u66bb\u66f4\u6897\u6d87\u7085\u70f1\u749f\u74a5\u74ca\u75d9\u786c\u78ec\u7adf\u7af6\u7d45\u7d93\u8015\u803f\u811b\u8396\u8b66\u8f15\u9015\u93e1\u9803\u9838\u9a5a\u9be8\u4fc2\u5553\u583a\u5951\u5b63\u5c46\u60b8\u6212\u6842\u68b0"],["cda1","\u68e8\u6eaa\u754c\u7678\u78ce\u7a3d\u7cfb\u7e6b\u7e7c\u8a08\u8aa1\u8c3f\u968e\u9dc4\u53e4\u53e9\u544a\u5471\u56fa\u59d1\u5b64\u5c3b\u5eab\u62f7\u6537\u6545\u6572\u66a0\u67af\u69c1\u6cbd\u75fc\u7690\u777e\u7a3f\u7f94\u8003\u80a1\u818f\u82e6\u82fd\u83f0\u85c1\u8831\u88b4\u8aa5\uf903\u8f9c\u932e\u96c7\u9867\u9ad8\u9f13\u54ed\u659b\u66f2\u688f\u7a40\u8c37\u9d60\u56f0\u5764\u5d11\u6606\u68b1\u68cd\u6efe\u7428\u889e\u9be4\u6c68\uf904\u9aa8\u4f9b\u516c\u5171\u529f\u5b54\u5de5\u6050\u606d\u62f1\u63a7\u653b\u73d9\u7a7a\u86a3\u8ca2\u978f\u4e32\u5be1\u6208\u679c\u74dc"],["cea1","\u79d1\u83d3\u8a87\u8ab2\u8de8\u904e\u934b\u9846\u5ed3\u69e8\u85ff\u90ed\uf905\u51a0\u5b98\u5bec\u6163\u68fa\u6b3e\u704c\u742f\u74d8\u7ba1\u7f50\u83c5\u89c0\u8cab\u95dc\u9928\u522e\u605d\u62ec\u9002\u4f8a\u5149\u5321\u58d9\u5ee3\u66e0\u6d38\u709a\u72c2\u73d6\u7b50\u80f1\u945b\u5366\u639b\u7f6b\u4e56\u5080\u584a\u58de\u602a\u6127\u62d0\u69d0\u9b41\u5b8f\u7d18\u80b1\u8f5f\u4ea4\u50d1\u54ac\u55ac\u5b0c\u5da0\u5de7\u652a\u654e\u6821\u6a4b\u72e1\u768e\u77ef\u7d5e\u7ff9\u81a0\u854e\u86df\u8f03\u8f4e\u90ca\u9903\u9a55\u9bab\u4e18\u4e45\u4e5d\u4ec7\u4ff1\u5177\u52fe"],["cfa1","\u5340\u53e3\u53e5\u548e\u5614\u5775\u57a2\u5bc7\u5d87\u5ed0\u61fc\u62d8\u6551\u67b8\u67e9\u69cb\u6b50\u6bc6\u6bec\u6c42\u6e9d\u7078\u72d7\u7396\u7403\u77bf\u77e9\u7a76\u7d7f\u8009\u81fc\u8205\u820a\u82df\u8862\u8b33\u8cfc\u8ec0\u9011\u90b1\u9264\u92b6\u99d2\u9a45\u9ce9\u9dd7\u9f9c\u570b\u5c40\u83ca\u97a0\u97ab\u9eb4\u541b\u7a98\u7fa4\u88d9\u8ecd\u90e1\u5800\u5c48\u6398\u7a9f\u5bae\u5f13\u7a79\u7aae\u828e\u8eac\u5026\u5238\u52f8\u5377\u5708\u62f3\u6372\u6b0a\u6dc3\u7737\u53a5\u7357\u8568\u8e76\u95d5\u673a\u6ac3\u6f70\u8a6d\u8ecc\u994b\uf906\u6677\u6b78\u8cb4"],["d0a1","\u9b3c\uf907\u53eb\u572d\u594e\u63c6\u69fb\u73ea\u7845\u7aba\u7ac5\u7cfe\u8475\u898f\u8d73\u9035\u95a8\u52fb\u5747\u7547\u7b60\u83cc\u921e\uf908\u6a58\u514b\u524b\u5287\u621f\u68d8\u6975\u9699\u50c5\u52a4\u52e4\u61c3\u65a4\u6839\u69ff\u747e\u7b4b\u82b9\u83eb\u89b2\u8b39\u8fd1\u9949\uf909\u4eca\u5997\u64d2\u6611\u6a8e\u7434\u7981\u79bd\u82a9\u887e\u887f\u895f\uf90a\u9326\u4f0b\u53ca\u6025\u6271\u6c72\u7d1a\u7d66\u4e98\u5162\u77dc\u80af\u4f01\u4f0e\u5176\u5180\u55dc\u5668\u573b\u57fa\u57fc\u5914\u5947\u5993\u5bc4\u5c90\u5d0e\u5df1\u5e7e\u5fcc\u6280\u65d7\u65e3"],["d1a1","\u671e\u671f\u675e\u68cb\u68c4\u6a5f\u6b3a\u6c23\u6c7d\u6c82\u6dc7\u7398\u7426\u742a\u7482\u74a3\u7578\u757f\u7881\u78ef\u7941\u7947\u7948\u797a\u7b95\u7d00\u7dba\u7f88\u8006\u802d\u808c\u8a18\u8b4f\u8c48\u8d77\u9321\u9324\u98e2\u9951\u9a0e\u9a0f\u9a65\u9e92\u7dca\u4f76\u5409\u62ee\u6854\u91d1\u55ab\u513a\uf90b\uf90c\u5a1c\u61e6\uf90d\u62cf\u62ff\uf90e",5,"\u90a3\uf914",4,"\u8afe\uf919\uf91a\uf91b\uf91c\u6696\uf91d\u7156\uf91e\uf91f\u96e3\uf920\u634f\u637a\u5357\uf921\u678f\u6960\u6e73\uf922\u7537\uf923\uf924\uf925"],["d2a1","\u7d0d\uf926\uf927\u8872\u56ca\u5a18\uf928",4,"\u4e43\uf92d\u5167\u5948\u67f0\u8010\uf92e\u5973\u5e74\u649a\u79ca\u5ff5\u606c\u62c8\u637b\u5be7\u5bd7\u52aa\uf92f\u5974\u5f29\u6012\uf930\uf931\uf932\u7459\uf933",5,"\u99d1\uf939",10,"\u6fc3\uf944\uf945\u81bf\u8fb2\u60f1\uf946\uf947\u8166\uf948\uf949\u5c3f\uf94a",7,"\u5ae9\u8a25\u677b\u7d10\uf952",5,"\u80fd\uf958\uf959\u5c3c\u6ce5\u533f\u6eba\u591a\u8336"],["d3a1","\u4e39\u4eb6\u4f46\u55ae\u5718\u58c7\u5f56\u65b7\u65e6\u6a80\u6bb5\u6e4d\u77ed\u7aef\u7c1e\u7dde\u86cb\u8892\u9132\u935b\u64bb\u6fbe\u737a\u75b8\u9054\u5556\u574d\u61ba\u64d4\u66c7\u6de1\u6e5b\u6f6d\u6fb9\u75f0\u8043\u81bd\u8541\u8983\u8ac7\u8b5a\u931f\u6c93\u7553\u7b54\u8e0f\u905d\u5510\u5802\u5858\u5e62\u6207\u649e\u68e0\u7576\u7cd6\u87b3\u9ee8\u4ee3\u5788\u576e\u5927\u5c0d\u5cb1\u5e36\u5f85\u6234\u64e1\u73b3\u81fa\u888b\u8cb8\u968a\u9edb\u5b85\u5fb7\u60b3\u5012\u5200\u5230\u5716\u5835\u5857\u5c0e\u5c60\u5cf6\u5d8b\u5ea6\u5f92\u60bc\u6311\u6389\u6417\u6843"],["d4a1","\u68f9\u6ac2\u6dd8\u6e21\u6ed4\u6fe4\u71fe\u76dc\u7779\u79b1\u7a3b\u8404\u89a9\u8ced\u8df3\u8e48\u9003\u9014\u9053\u90fd\u934d\u9676\u97dc\u6bd2\u7006\u7258\u72a2\u7368\u7763\u79bf\u7be4\u7e9b\u8b80\u58a9\u60c7\u6566\u65fd\u66be\u6c8c\u711e\u71c9\u8c5a\u9813\u4e6d\u7a81\u4edd\u51ac\u51cd\u52d5\u540c\u61a7\u6771\u6850\u68df\u6d1e\u6f7c\u75bc\u77b3\u7ae5\u80f4\u8463\u9285\u515c\u6597\u675c\u6793\u75d8\u7ac7\u8373\uf95a\u8c46\u9017\u982d\u5c6f\u81c0\u829a\u9041\u906f\u920d\u5f97\u5d9d\u6a59\u71c8\u767b\u7b49\u85e4\u8b04\u9127\u9a30\u5587\u61f6\uf95b\u7669\u7f85"],["d5a1","\u863f\u87ba\u88f8\u908f\uf95c\u6d1b\u70d9\u73de\u7d61\u843d\uf95d\u916a\u99f1\uf95e\u4e82\u5375\u6b04\u6b12\u703e\u721b\u862d\u9e1e\u524c\u8fa3\u5d50\u64e5\u652c\u6b16\u6feb\u7c43\u7e9c\u85cd\u8964\u89bd\u62c9\u81d8\u881f\u5eca\u6717\u6d6a\u72fc\u7405\u746f\u8782\u90de\u4f86\u5d0d\u5fa0\u840a\u51b7\u63a0\u7565\u4eae\u5006\u5169\u51c9\u6881\u6a11\u7cae\u7cb1\u7ce7\u826f\u8ad2\u8f1b\u91cf\u4fb6\u5137\u52f5\u5442\u5eec\u616e\u623e\u65c5\u6ada\u6ffe\u792a\u85dc\u8823\u95ad\u9a62\u9a6a\u9e97\u9ece\u529b\u66c6\u6b77\u701d\u792b\u8f62\u9742\u6190\u6200\u6523\u6f23"],["d6a1","\u7149\u7489\u7df4\u806f\u84ee\u8f26\u9023\u934a\u51bd\u5217\u52a3\u6d0c\u70c8\u88c2\u5ec9\u6582\u6bae\u6fc2\u7c3e\u7375\u4ee4\u4f36\u56f9\uf95f\u5cba\u5dba\u601c\u73b2\u7b2d\u7f9a\u7fce\u8046\u901e\u9234\u96f6\u9748\u9818\u9f61\u4f8b\u6fa7\u79ae\u91b4\u96b7\u52de\uf960\u6488\u64c4\u6ad3\u6f5e\u7018\u7210\u76e7\u8001\u8606\u865c\u8def\u8f05\u9732\u9b6f\u9dfa\u9e75\u788c\u797f\u7da0\u83c9\u9304\u9e7f\u9e93\u8ad6\u58df\u5f04\u6727\u7027\u74cf\u7c60\u807e\u5121\u7028\u7262\u78ca\u8cc2\u8cda\u8cf4\u96f7\u4e86\u50da\u5bee\u5ed6\u6599\u71ce\u7642\u77ad\u804a\u84fc"],["d7a1","\u907c\u9b27\u9f8d\u58d8\u5a41\u5c62\u6a13\u6dda\u6f0f\u763b\u7d2f\u7e37\u851e\u8938\u93e4\u964b\u5289\u65d2\u67f3\u69b4\u6d41\u6e9c\u700f\u7409\u7460\u7559\u7624\u786b\u8b2c\u985e\u516d\u622e\u9678\u4f96\u502b\u5d19\u6dea\u7db8\u8f2a\u5f8b\u6144\u6817\uf961\u9686\u52d2\u808b\u51dc\u51cc\u695e\u7a1c\u7dbe\u83f1\u9675\u4fda\u5229\u5398\u540f\u550e\u5c65\u60a7\u674e\u68a8\u6d6c\u7281\u72f8\u7406\u7483\uf962\u75e2\u7c6c\u7f79\u7fb8\u8389\u88cf\u88e1\u91cc\u91d0\u96e2\u9bc9\u541d\u6f7e\u71d0\u7498\u85fa\u8eaa\u96a3\u9c57\u9e9f\u6797\u6dcb\u7433\u81e8\u9716\u782c"],["d8a1","\u7acb\u7b20\u7c92\u6469\u746a\u75f2\u78bc\u78e8\u99ac\u9b54\u9ebb\u5bde\u5e55\u6f20\u819c\u83ab\u9088\u4e07\u534d\u5a29\u5dd2\u5f4e\u6162\u633d\u6669\u66fc\u6eff\u6f2b\u7063\u779e\u842c\u8513\u883b\u8f13\u9945\u9c3b\u551c\u62b9\u672b\u6cab\u8309\u896a\u977a\u4ea1\u5984\u5fd8\u5fd9\u671b\u7db2\u7f54\u8292\u832b\u83bd\u8f1e\u9099\u57cb\u59b9\u5a92\u5bd0\u6627\u679a\u6885\u6bcf\u7164\u7f75\u8cb7\u8ce3\u9081\u9b45\u8108\u8c8a\u964c\u9a40\u9ea5\u5b5f\u6c13\u731b\u76f2\u76df\u840c\u51aa\u8993\u514d\u5195\u52c9\u68c9\u6c94\u7704\u7720\u7dbf\u7dec\u9762\u9eb5\u6ec5"],["d9a1","\u8511\u51a5\u540d\u547d\u660e\u669d\u6927\u6e9f\u76bf\u7791\u8317\u84c2\u879f\u9169\u9298\u9cf4\u8882\u4fae\u5192\u52df\u59c6\u5e3d\u6155\u6478\u6479\u66ae\u67d0\u6a21\u6bcd\u6bdb\u725f\u7261\u7441\u7738\u77db\u8017\u82bc\u8305\u8b00\u8b28\u8c8c\u6728\u6c90\u7267\u76ee\u7766\u7a46\u9da9\u6b7f\u6c92\u5922\u6726\u8499\u536f\u5893\u5999\u5edf\u63cf\u6634\u6773\u6e3a\u732b\u7ad7\u82d7\u9328\u52d9\u5deb\u61ae\u61cb\u620a\u62c7\u64ab\u65e0\u6959\u6b66\u6bcb\u7121\u73f7\u755d\u7e46\u821e\u8302\u856a\u8aa3\u8cbf\u9727\u9d61\u58a8\u9ed8\u5011\u520e\u543b\u554f\u6587"],["daa1","\u6c76\u7d0a\u7d0b\u805e\u868a\u9580\u96ef\u52ff\u6c95\u7269\u5473\u5a9a\u5c3e\u5d4b\u5f4c\u5fae\u672a\u68b6\u6963\u6e3c\u6e44\u7709\u7c73\u7f8e\u8587\u8b0e\u8ff7\u9761\u9ef4\u5cb7\u60b6\u610d\u61ab\u654f\u65fb\u65fc\u6c11\u6cef\u739f\u73c9\u7de1\u9594\u5bc6\u871c\u8b10\u525d\u535a\u62cd\u640f\u64b2\u6734\u6a38\u6cca\u73c0\u749e\u7b94\u7c95\u7e1b\u818a\u8236\u8584\u8feb\u96f9\u99c1\u4f34\u534a\u53cd\u53db\u62cc\u642c\u6500\u6591\u69c3\u6cee\u6f58\u73ed\u7554\u7622\u76e4\u76fc\u78d0\u78fb\u792c\u7d46\u822c\u87e0\u8fd4\u9812\u98ef\u52c3\u62d4\u64a5\u6e24\u6f51"],["dba1","\u767c\u8dcb\u91b1\u9262\u9aee\u9b43\u5023\u508d\u574a\u59a8\u5c28\u5e47\u5f77\u623f\u653e\u65b9\u65c1\u6609\u678b\u699c\u6ec2\u78c5\u7d21\u80aa\u8180\u822b\u82b3\u84a1\u868c\u8a2a\u8b17\u90a6\u9632\u9f90\u500d\u4ff3\uf963\u57f9\u5f98\u62dc\u6392\u676f\u6e43\u7119\u76c3\u80cc\u80da\u88f4\u88f5\u8919\u8ce0\u8f29\u914d\u966a\u4f2f\u4f70\u5e1b\u67cf\u6822\u767d\u767e\u9b44\u5e61\u6a0a\u7169\u71d4\u756a\uf964\u7e41\u8543\u85e9\u98dc\u4f10\u7b4f\u7f70\u95a5\u51e1\u5e06\u68b5\u6c3e\u6c4e\u6cdb\u72af\u7bc4\u8303\u6cd5\u743a\u50fb\u5288\u58c1\u64d8\u6a97\u74a7\u7656"],["dca1","\u78a7\u8617\u95e2\u9739\uf965\u535e\u5f01\u8b8a\u8fa8\u8faf\u908a\u5225\u77a5\u9c49\u9f08\u4e19\u5002\u5175\u5c5b\u5e77\u661e\u663a\u67c4\u68c5\u70b3\u7501\u75c5\u79c9\u7add\u8f27\u9920\u9a08\u4fdd\u5821\u5831\u5bf6\u666e\u6b65\u6d11\u6e7a\u6f7d\u73e4\u752b\u83e9\u88dc\u8913\u8b5c\u8f14\u4f0f\u50d5\u5310\u535c\u5b93\u5fa9\u670d\u798f\u8179\u832f\u8514\u8907\u8986\u8f39\u8f3b\u99a5\u9c12\u672c\u4e76\u4ff8\u5949\u5c01\u5cef\u5cf0\u6367\u68d2\u70fd\u71a2\u742b\u7e2b\u84ec\u8702\u9022\u92d2\u9cf3\u4e0d\u4ed8\u4fef\u5085\u5256\u526f\u5426\u5490\u57e0\u592b\u5a66"],["dda1","\u5b5a\u5b75\u5bcc\u5e9c\uf966\u6276\u6577\u65a7\u6d6e\u6ea5\u7236\u7b26\u7c3f\u7f36\u8150\u8151\u819a\u8240\u8299\u83a9\u8a03\u8ca0\u8ce6\u8cfb\u8d74\u8dba\u90e8\u91dc\u961c\u9644\u99d9\u9ce7\u5317\u5206\u5429\u5674\u58b3\u5954\u596e\u5fff\u61a4\u626e\u6610\u6c7e\u711a\u76c6\u7c89\u7cde\u7d1b\u82ac\u8cc1\u96f0\uf967\u4f5b\u5f17\u5f7f\u62c2\u5d29\u670b\u68da\u787c\u7e43\u9d6c\u4e15\u5099\u5315\u532a\u5351\u5983\u5a62\u5e87\u60b2\u618a\u6249\u6279\u6590\u6787\u69a7\u6bd4\u6bd6\u6bd7\u6bd8\u6cb8\uf968\u7435\u75fa\u7812\u7891\u79d5\u79d8\u7c83\u7dcb\u7fe1\u80a5"],["dea1","\u813e\u81c2\u83f2\u871a\u88e8\u8ab9\u8b6c\u8cbb\u9119\u975e\u98db\u9f3b\u56ac\u5b2a\u5f6c\u658c\u6ab3\u6baf\u6d5c\u6ff1\u7015\u725d\u73ad\u8ca7\u8cd3\u983b\u6191\u6c37\u8058\u9a01\u4e4d\u4e8b\u4e9b\u4ed5\u4f3a\u4f3c\u4f7f\u4fdf\u50ff\u53f2\u53f8\u5506\u55e3\u56db\u58eb\u5962\u5a11\u5beb\u5bfa\u5c04\u5df3\u5e2b\u5f99\u601d\u6368\u659c\u65af\u67f6\u67fb\u68ad\u6b7b\u6c99\u6cd7\u6e23\u7009\u7345\u7802\u793e\u7940\u7960\u79c1\u7be9\u7d17\u7d72\u8086\u820d\u838e\u84d1\u86c7\u88df\u8a50\u8a5e\u8b1d\u8cdc\u8d66\u8fad\u90aa\u98fc\u99df\u9e9d\u524a\uf969\u6714\uf96a"],["dfa1","\u5098\u522a\u5c71\u6563\u6c55\u73ca\u7523\u759d\u7b97\u849c\u9178\u9730\u4e77\u6492\u6bba\u715e\u85a9\u4e09\uf96b\u6749\u68ee\u6e17\u829f\u8518\u886b\u63f7\u6f81\u9212\u98af\u4e0a\u50b7\u50cf\u511f\u5546\u55aa\u5617\u5b40\u5c19\u5ce0\u5e38\u5e8a\u5ea0\u5ec2\u60f3\u6851\u6a61\u6e58\u723d\u7240\u72c0\u76f8\u7965\u7bb1\u7fd4\u88f3\u89f4\u8a73\u8c61\u8cde\u971c\u585e\u74bd\u8cfd\u55c7\uf96c\u7a61\u7d22\u8272\u7272\u751f\u7525\uf96d\u7b19\u5885\u58fb\u5dbc\u5e8f\u5eb6\u5f90\u6055\u6292\u637f\u654d\u6691\u66d9\u66f8\u6816\u68f2\u7280\u745e\u7b6e\u7d6e\u7dd6\u7f72"],["e0a1","\u80e5\u8212\u85af\u897f\u8a93\u901d\u92e4\u9ecd\u9f20\u5915\u596d\u5e2d\u60dc\u6614\u6673\u6790\u6c50\u6dc5\u6f5f\u77f3\u78a9\u84c6\u91cb\u932b\u4ed9\u50ca\u5148\u5584\u5b0b\u5ba3\u6247\u657e\u65cb\u6e32\u717d\u7401\u7444\u7487\u74bf\u766c\u79aa\u7dda\u7e55\u7fa8\u817a\u81b3\u8239\u861a\u87ec\u8a75\u8de3\u9078\u9291\u9425\u994d\u9bae\u5368\u5c51\u6954\u6cc4\u6d29\u6e2b\u820c\u859b\u893b\u8a2d\u8aaa\u96ea\u9f67\u5261\u66b9\u6bb2\u7e96\u87fe\u8d0d\u9583\u965d\u651d\u6d89\u71ee\uf96e\u57ce\u59d3\u5bac\u6027\u60fa\u6210\u661f\u665f\u7329\u73f9\u76db\u7701\u7b6c"],["e1a1","\u8056\u8072\u8165\u8aa0\u9192\u4e16\u52e2\u6b72\u6d17\u7a05\u7b39\u7d30\uf96f\u8cb0\u53ec\u562f\u5851\u5bb5\u5c0f\u5c11\u5de2\u6240\u6383\u6414\u662d\u68b3\u6cbc\u6d88\u6eaf\u701f\u70a4\u71d2\u7526\u758f\u758e\u7619\u7b11\u7be0\u7c2b\u7d20\u7d39\u852c\u856d\u8607\u8a34\u900d\u9061\u90b5\u92b7\u97f6\u9a37\u4fd7\u5c6c\u675f\u6d91\u7c9f\u7e8c\u8b16\u8d16\u901f\u5b6b\u5dfd\u640d\u84c0\u905c\u98e1\u7387\u5b8b\u609a\u677e\u6dde\u8a1f\u8aa6\u9001\u980c\u5237\uf970\u7051\u788e\u9396\u8870\u91d7\u4fee\u53d7\u55fd\u56da\u5782\u58fd\u5ac2\u5b88\u5cab\u5cc0\u5e25\u6101"],["e2a1","\u620d\u624b\u6388\u641c\u6536\u6578\u6a39\u6b8a\u6c34\u6d19\u6f31\u71e7\u72e9\u7378\u7407\u74b2\u7626\u7761\u79c0\u7a57\u7aea\u7cb9\u7d8f\u7dac\u7e61\u7f9e\u8129\u8331\u8490\u84da\u85ea\u8896\u8ab0\u8b90\u8f38\u9042\u9083\u916c\u9296\u92b9\u968b\u96a7\u96a8\u96d6\u9700\u9808\u9996\u9ad3\u9b1a\u53d4\u587e\u5919\u5b70\u5bbf\u6dd1\u6f5a\u719f\u7421\u74b9\u8085\u83fd\u5de1\u5f87\u5faa\u6042\u65ec\u6812\u696f\u6a53\u6b89\u6d35\u6df3\u73e3\u76fe\u77ac\u7b4d\u7d14\u8123\u821c\u8340\u84f4\u8563\u8a62\u8ac4\u9187\u931e\u9806\u99b4\u620c\u8853\u8ff0\u9265\u5d07\u5d27"],["e3a1","\u5d69\u745f\u819d\u8768\u6fd5\u62fe\u7fd2\u8936\u8972\u4e1e\u4e58\u50e7\u52dd\u5347\u627f\u6607\u7e69\u8805\u965e\u4f8d\u5319\u5636\u59cb\u5aa4\u5c38\u5c4e\u5c4d\u5e02\u5f11\u6043\u65bd\u662f\u6642\u67be\u67f4\u731c\u77e2\u793a\u7fc5\u8494\u84cd\u8996\u8a66\u8a69\u8ae1\u8c55\u8c7a\u57f4\u5bd4\u5f0f\u606f\u62ed\u690d\u6b96\u6e5c\u7184\u7bd2\u8755\u8b58\u8efe\u98df\u98fe\u4f38\u4f81\u4fe1\u547b\u5a20\u5bb8\u613c\u65b0\u6668\u71fc\u7533\u795e\u7d33\u814e\u81e3\u8398\u85aa\u85ce\u8703\u8a0a\u8eab\u8f9b\uf971\u8fc5\u5931\u5ba4\u5be6\u6089\u5be9\u5c0b\u5fc3\u6c81"],["e4a1","\uf972\u6df1\u700b\u751a\u82af\u8af6\u4ec0\u5341\uf973\u96d9\u6c0f\u4e9e\u4fc4\u5152\u555e\u5a25\u5ce8\u6211\u7259\u82bd\u83aa\u86fe\u8859\u8a1d\u963f\u96c5\u9913\u9d09\u9d5d\u580a\u5cb3\u5dbd\u5e44\u60e1\u6115\u63e1\u6a02\u6e25\u9102\u9354\u984e\u9c10\u9f77\u5b89\u5cb8\u6309\u664f\u6848\u773c\u96c1\u978d\u9854\u9b9f\u65a1\u8b01\u8ecb\u95bc\u5535\u5ca9\u5dd6\u5eb5\u6697\u764c\u83f4\u95c7\u58d3\u62bc\u72ce\u9d28\u4ef0\u592e\u600f\u663b\u6b83\u79e7\u9d26\u5393\u54c0\u57c3\u5d16\u611b\u66d6\u6daf\u788d\u827e\u9698\u9744\u5384\u627c\u6396\u6db2\u7e0a\u814b\u984d"],["e5a1","\u6afb\u7f4c\u9daf\u9e1a\u4e5f\u503b\u51b6\u591c\u60f9\u63f6\u6930\u723a\u8036\uf974\u91ce\u5f31\uf975\uf976\u7d04\u82e5\u846f\u84bb\u85e5\u8e8d\uf977\u4f6f\uf978\uf979\u58e4\u5b43\u6059\u63da\u6518\u656d\u6698\uf97a\u694a\u6a23\u6d0b\u7001\u716c\u75d2\u760d\u79b3\u7a70\uf97b\u7f8a\uf97c\u8944\uf97d\u8b93\u91c0\u967d\uf97e\u990a\u5704\u5fa1\u65bc\u6f01\u7600\u79a6\u8a9e\u99ad\u9b5a\u9f6c\u5104\u61b6\u6291\u6a8d\u81c6\u5043\u5830\u5f66\u7109\u8a00\u8afa\u5b7c\u8616\u4ffa\u513c\u56b4\u5944\u63a9\u6df9\u5daa\u696d\u5186\u4e88\u4f59\uf97f\uf980\uf981\u5982\uf982"],["e6a1","\uf983\u6b5f\u6c5d\uf984\u74b5\u7916\uf985\u8207\u8245\u8339\u8f3f\u8f5d\uf986\u9918\uf987\uf988\uf989\u4ea6\uf98a\u57df\u5f79\u6613\uf98b\uf98c\u75ab\u7e79\u8b6f\uf98d\u9006\u9a5b\u56a5\u5827\u59f8\u5a1f\u5bb4\uf98e\u5ef6\uf98f\uf990\u6350\u633b\uf991\u693d\u6c87\u6cbf\u6d8e\u6d93\u6df5\u6f14\uf992\u70df\u7136\u7159\uf993\u71c3\u71d5\uf994\u784f\u786f\uf995\u7b75\u7de3\uf996\u7e2f\uf997\u884d\u8edf\uf998\uf999\uf99a\u925b\uf99b\u9cf6\uf99c\uf99d\uf99e\u6085\u6d85\uf99f\u71b1\uf9a0\uf9a1\u95b1\u53ad\uf9a2\uf9a3\uf9a4\u67d3\uf9a5\u708e\u7130\u7430\u8276\u82d2"],["e7a1","\uf9a6\u95bb\u9ae5\u9e7d\u66c4\uf9a7\u71c1\u8449\uf9a8\uf9a9\u584b\uf9aa\uf9ab\u5db8\u5f71\uf9ac\u6620\u668e\u6979\u69ae\u6c38\u6cf3\u6e36\u6f41\u6fda\u701b\u702f\u7150\u71df\u7370\uf9ad\u745b\uf9ae\u74d4\u76c8\u7a4e\u7e93\uf9af\uf9b0\u82f1\u8a60\u8fce\uf9b1\u9348\uf9b2\u9719\uf9b3\uf9b4\u4e42\u502a\uf9b5\u5208\u53e1\u66f3\u6c6d\u6fca\u730a\u777f\u7a62\u82ae\u85dd\u8602\uf9b6\u88d4\u8a63\u8b7d\u8c6b\uf9b7\u92b3\uf9b8\u9713\u9810\u4e94\u4f0d\u4fc9\u50b2\u5348\u543e\u5433\u55da\u5862\u58ba\u5967\u5a1b\u5be4\u609f\uf9b9\u61ca\u6556\u65ff\u6664\u68a7\u6c5a\u6fb3"],["e8a1","\u70cf\u71ac\u7352\u7b7d\u8708\u8aa4\u9c32\u9f07\u5c4b\u6c83\u7344\u7389\u923a\u6eab\u7465\u761f\u7a69\u7e15\u860a\u5140\u58c5\u64c1\u74ee\u7515\u7670\u7fc1\u9095\u96cd\u9954\u6e26\u74e6\u7aa9\u7aaa\u81e5\u86d9\u8778\u8a1b\u5a49\u5b8c\u5b9b\u68a1\u6900\u6d63\u73a9\u7413\u742c\u7897\u7de9\u7feb\u8118\u8155\u839e\u8c4c\u962e\u9811\u66f0\u5f80\u65fa\u6789\u6c6a\u738b\u502d\u5a03\u6b6a\u77ee\u5916\u5d6c\u5dcd\u7325\u754f\uf9ba\uf9bb\u50e5\u51f9\u582f\u592d\u5996\u59da\u5be5\uf9bc\uf9bd\u5da2\u62d7\u6416\u6493\u64fe\uf9be\u66dc\uf9bf\u6a48\uf9c0\u71ff\u7464\uf9c1"],["e9a1","\u7a88\u7aaf\u7e47\u7e5e\u8000\u8170\uf9c2\u87ef\u8981\u8b20\u9059\uf9c3\u9080\u9952\u617e\u6b32\u6d74\u7e1f\u8925\u8fb1\u4fd1\u50ad\u5197\u52c7\u57c7\u5889\u5bb9\u5eb8\u6142\u6995\u6d8c\u6e67\u6eb6\u7194\u7462\u7528\u752c\u8073\u8338\u84c9\u8e0a\u9394\u93de\uf9c4\u4e8e\u4f51\u5076\u512a\u53c8\u53cb\u53f3\u5b87\u5bd3\u5c24\u611a\u6182\u65f4\u725b\u7397\u7440\u76c2\u7950\u7991\u79b9\u7d06\u7fbd\u828b\u85d5\u865e\u8fc2\u9047\u90f5\u91ea\u9685\u96e8\u96e9\u52d6\u5f67\u65ed\u6631\u682f\u715c\u7a36\u90c1\u980a\u4e91\uf9c5\u6a52\u6b9e\u6f90\u7189\u8018\u82b8\u8553"],["eaa1","\u904b\u9695\u96f2\u97fb\u851a\u9b31\u4e90\u718a\u96c4\u5143\u539f\u54e1\u5713\u5712\u57a3\u5a9b\u5ac4\u5bc3\u6028\u613f\u63f4\u6c85\u6d39\u6e72\u6e90\u7230\u733f\u7457\u82d1\u8881\u8f45\u9060\uf9c6\u9662\u9858\u9d1b\u6708\u8d8a\u925e\u4f4d\u5049\u50de\u5371\u570d\u59d4\u5a01\u5c09\u6170\u6690\u6e2d\u7232\u744b\u7def\u80c3\u840e\u8466\u853f\u875f\u885b\u8918\u8b02\u9055\u97cb\u9b4f\u4e73\u4f91\u5112\u516a\uf9c7\u552f\u55a9\u5b7a\u5ba5\u5e7c\u5e7d\u5ebe\u60a0\u60df\u6108\u6109\u63c4\u6538\u6709\uf9c8\u67d4\u67da\uf9c9\u6961\u6962\u6cb9\u6d27\uf9ca\u6e38\uf9cb"],["eba1","\u6fe1\u7336\u7337\uf9cc\u745c\u7531\uf9cd\u7652\uf9ce\uf9cf\u7dad\u81fe\u8438\u88d5\u8a98\u8adb\u8aed\u8e30\u8e42\u904a\u903e\u907a\u9149\u91c9\u936e\uf9d0\uf9d1\u5809\uf9d2\u6bd3\u8089\u80b2\uf9d3\uf9d4\u5141\u596b\u5c39\uf9d5\uf9d6\u6f64\u73a7\u80e4\u8d07\uf9d7\u9217\u958f\uf9d8\uf9d9\uf9da\uf9db\u807f\u620e\u701c\u7d68\u878d\uf9dc\u57a0\u6069\u6147\u6bb7\u8abe\u9280\u96b1\u4e59\u541f\u6deb\u852d\u9670\u97f3\u98ee\u63d6\u6ce3\u9091\u51dd\u61c9\u81ba\u9df9\u4f9d\u501a\u5100\u5b9c\u610f\u61ff\u64ec\u6905\u6bc5\u7591\u77e3\u7fa9\u8264\u858f\u87fb\u8863\u8abc"],["eca1","\u8b70\u91ab\u4e8c\u4ee5\u4f0a\uf9dd\uf9de\u5937\u59e8\uf9df\u5df2\u5f1b\u5f5b\u6021\uf9e0\uf9e1\uf9e2\uf9e3\u723e\u73e5\uf9e4\u7570\u75cd\uf9e5\u79fb\uf9e6\u800c\u8033\u8084\u82e1\u8351\uf9e7\uf9e8\u8cbd\u8cb3\u9087\uf9e9\uf9ea\u98f4\u990c\uf9eb\uf9ec\u7037\u76ca\u7fca\u7fcc\u7ffc\u8b1a\u4eba\u4ec1\u5203\u5370\uf9ed\u54bd\u56e0\u59fb\u5bc5\u5f15\u5fcd\u6e6e\uf9ee\uf9ef\u7d6a\u8335\uf9f0\u8693\u8a8d\uf9f1\u976d\u9777\uf9f2\uf9f3\u4e00\u4f5a\u4f7e\u58f9\u65e5\u6ea2\u9038\u93b0\u99b9\u4efb\u58ec\u598a\u59d9\u6041\uf9f4\uf9f5\u7a14\uf9f6\u834f\u8cc3\u5165\u5344"],["eda1","\uf9f7\uf9f8\uf9f9\u4ecd\u5269\u5b55\u82bf\u4ed4\u523a\u54a8\u59c9\u59ff\u5b50\u5b57\u5b5c\u6063\u6148\u6ecb\u7099\u716e\u7386\u74f7\u75b5\u78c1\u7d2b\u8005\u81ea\u8328\u8517\u85c9\u8aee\u8cc7\u96cc\u4f5c\u52fa\u56bc\u65ab\u6628\u707c\u70b8\u7235\u7dbd\u828d\u914c\u96c0\u9d72\u5b71\u68e7\u6b98\u6f7a\u76de\u5c91\u66ab\u6f5b\u7bb4\u7c2a\u8836\u96dc\u4e08\u4ed7\u5320\u5834\u58bb\u58ef\u596c\u5c07\u5e33\u5e84\u5f35\u638c\u66b2\u6756\u6a1f\u6aa3\u6b0c\u6f3f\u7246\uf9fa\u7350\u748b\u7ae0\u7ca7\u8178\u81df\u81e7\u838a\u846c\u8523\u8594\u85cf\u88dd\u8d13\u91ac\u9577"],["eea1","\u969c\u518d\u54c9\u5728\u5bb0\u624d\u6750\u683d\u6893\u6e3d\u6ed3\u707d\u7e21\u88c1\u8ca1\u8f09\u9f4b\u9f4e\u722d\u7b8f\u8acd\u931a\u4f47\u4f4e\u5132\u5480\u59d0\u5e95\u62b5\u6775\u696e\u6a17\u6cae\u6e1a\u72d9\u732a\u75bd\u7bb8\u7d35\u82e7\u83f9\u8457\u85f7\u8a5b\u8caf\u8e87\u9019\u90b8\u96ce\u9f5f\u52e3\u540a\u5ae1\u5bc2\u6458\u6575\u6ef4\u72c4\uf9fb\u7684\u7a4d\u7b1b\u7c4d\u7e3e\u7fdf\u837b\u8b2b\u8cca\u8d64\u8de1\u8e5f\u8fea\u8ff9\u9069\u93d1\u4f43\u4f7a\u50b3\u5168\u5178\u524d\u526a\u5861\u587c\u5960\u5c08\u5c55\u5edb\u609b\u6230\u6813\u6bbf\u6c08\u6fb1"],["efa1","\u714e\u7420\u7530\u7538\u7551\u7672\u7b4c\u7b8b\u7bad\u7bc6\u7e8f\u8a6e\u8f3e\u8f49\u923f\u9293\u9322\u942b\u96fb\u985a\u986b\u991e\u5207\u622a\u6298\u6d59\u7664\u7aca\u7bc0\u7d76\u5360\u5cbe\u5e97\u6f38\u70b9\u7c98\u9711\u9b8e\u9ede\u63a5\u647a\u8776\u4e01\u4e95\u4ead\u505c\u5075\u5448\u59c3\u5b9a\u5e40\u5ead\u5ef7\u5f81\u60c5\u633a\u653f\u6574\u65cc\u6676\u6678\u67fe\u6968\u6a89\u6b63\u6c40\u6dc0\u6de8\u6e1f\u6e5e\u701e\u70a1\u738e\u73fd\u753a\u775b\u7887\u798e\u7a0b\u7a7d\u7cbe\u7d8e\u8247\u8a02\u8aea\u8c9e\u912d\u914a\u91d8\u9266\u92cc\u9320\u9706\u9756"],["f0a1","\u975c\u9802\u9f0e\u5236\u5291\u557c\u5824\u5e1d\u5f1f\u608c\u63d0\u68af\u6fdf\u796d\u7b2c\u81cd\u85ba\u88fd\u8af8\u8e44\u918d\u9664\u969b\u973d\u984c\u9f4a\u4fce\u5146\u51cb\u52a9\u5632\u5f14\u5f6b\u63aa\u64cd\u65e9\u6641\u66fa\u66f9\u671d\u689d\u68d7\u69fd\u6f15\u6f6e\u7167\u71e5\u722a\u74aa\u773a\u7956\u795a\u79df\u7a20\u7a95\u7c97\u7cdf\u7d44\u7e70\u8087\u85fb\u86a4\u8a54\u8abf\u8d99\u8e81\u9020\u906d\u91e3\u963b\u96d5\u9ce5\u65cf\u7c07\u8db3\u93c3\u5b58\u5c0a\u5352\u62d9\u731d\u5027\u5b97\u5f9e\u60b0\u616b\u68d5\u6dd9\u742e\u7a2e\u7d42\u7d9c\u7e31\u816b"],["f1a1","\u8e2a\u8e35\u937e\u9418\u4f50\u5750\u5de6\u5ea7\u632b\u7f6a\u4e3b\u4f4f\u4f8f\u505a\u59dd\u80c4\u546a\u5468\u55fe\u594f\u5b99\u5dde\u5eda\u665d\u6731\u67f1\u682a\u6ce8\u6d32\u6e4a\u6f8d\u70b7\u73e0\u7587\u7c4c\u7d02\u7d2c\u7da2\u821f\u86db\u8a3b\u8a85\u8d70\u8e8a\u8f33\u9031\u914e\u9152\u9444\u99d0\u7af9\u7ca5\u4fca\u5101\u51c6\u57c8\u5bef\u5cfb\u6659\u6a3d\u6d5a\u6e96\u6fec\u710c\u756f\u7ae3\u8822\u9021\u9075\u96cb\u99ff\u8301\u4e2d\u4ef2\u8846\u91cd\u537d\u6adb\u696b\u6c41\u847a\u589e\u618e\u66fe\u62ef\u70dd\u7511\u75c7\u7e52\u84b8\u8b49\u8d08\u4e4b\u53ea"],["f2a1","\u54ab\u5730\u5740\u5fd7\u6301\u6307\u646f\u652f\u65e8\u667a\u679d\u67b3\u6b62\u6c60\u6c9a\u6f2c\u77e5\u7825\u7949\u7957\u7d19\u80a2\u8102\u81f3\u829d\u82b7\u8718\u8a8c\uf9fc\u8d04\u8dbe\u9072\u76f4\u7a19\u7a37\u7e54\u8077\u5507\u55d4\u5875\u632f\u6422\u6649\u664b\u686d\u699b\u6b84\u6d25\u6eb1\u73cd\u7468\u74a1\u755b\u75b9\u76e1\u771e\u778b\u79e6\u7e09\u7e1d\u81fb\u852f\u8897\u8a3a\u8cd1\u8eeb\u8fb0\u9032\u93ad\u9663\u9673\u9707\u4f84\u53f1\u59ea\u5ac9\u5e19\u684e\u74c6\u75be\u79e9\u7a92\u81a3\u86ed\u8cea\u8dcc\u8fed\u659f\u6715\uf9fd\u57f7\u6f57\u7ddd\u8f2f"],["f3a1","\u93f6\u96c6\u5fb5\u61f2\u6f84\u4e14\u4f98\u501f\u53c9\u55df\u5d6f\u5dee\u6b21\u6b64\u78cb\u7b9a\uf9fe\u8e49\u8eca\u906e\u6349\u643e\u7740\u7a84\u932f\u947f\u9f6a\u64b0\u6faf\u71e6\u74a8\u74da\u7ac4\u7c12\u7e82\u7cb2\u7e98\u8b9a\u8d0a\u947d\u9910\u994c\u5239\u5bdf\u64e6\u672d\u7d2e\u50ed\u53c3\u5879\u6158\u6159\u61fa\u65ac\u7ad9\u8b92\u8b96\u5009\u5021\u5275\u5531\u5a3c\u5ee0\u5f70\u6134\u655e\u660c\u6636\u66a2\u69cd\u6ec4\u6f32\u7316\u7621\u7a93\u8139\u8259\u83d6\u84bc\u50b5\u57f0\u5bc0\u5be8\u5f69\u63a1\u7826\u7db5\u83dc\u8521\u91c7\u91f5\u518a\u67f5\u7b56"],["f4a1","\u8cac\u51c4\u59bb\u60bd\u8655\u501c\uf9ff\u5254\u5c3a\u617d\u621a\u62d3\u64f2\u65a5\u6ecc\u7620\u810a\u8e60\u965f\u96bb\u4edf\u5343\u5598\u5929\u5ddd\u64c5\u6cc9\u6dfa\u7394\u7a7f\u821b\u85a6\u8ce4\u8e10\u9077\u91e7\u95e1\u9621\u97c6\u51f8\u54f2\u5586\u5fb9\u64a4\u6f88\u7db4\u8f1f\u8f4d\u9435\u50c9\u5c16\u6cbe\u6dfb\u751b\u77bb\u7c3d\u7c64\u8a79\u8ac2\u581e\u59be\u5e16\u6377\u7252\u758a\u776b\u8adc\u8cbc\u8f12\u5ef3\u6674\u6df8\u807d\u83c1\u8acb\u9751\u9bd6\ufa00\u5243\u66ff\u6d95\u6eef\u7de0\u8ae6\u902e\u905e\u9ad4\u521d\u527f\u54e8\u6194\u6284\u62db\u68a2"],["f5a1","\u6912\u695a\u6a35\u7092\u7126\u785d\u7901\u790e\u79d2\u7a0d\u8096\u8278\u82d5\u8349\u8549\u8c82\u8d85\u9162\u918b\u91ae\u4fc3\u56d1\u71ed\u77d7\u8700\u89f8\u5bf8\u5fd6\u6751\u90a8\u53e2\u585a\u5bf5\u60a4\u6181\u6460\u7e3d\u8070\u8525\u9283\u64ae\u50ac\u5d14\u6700\u589c\u62bd\u63a8\u690e\u6978\u6a1e\u6e6b\u76ba\u79cb\u82bb\u8429\u8acf\u8da8\u8ffd\u9112\u914b\u919c\u9310\u9318\u939a\u96db\u9a36\u9c0d\u4e11\u755c\u795d\u7afa\u7b51\u7bc9\u7e2e\u84c4\u8e59\u8e74\u8ef8\u9010\u6625\u693f\u7443\u51fa\u672e\u9edc\u5145\u5fe0\u6c96\u87f2\u885d\u8877\u60b4\u81b5\u8403"],["f6a1","\u8d05\u53d6\u5439\u5634\u5a36\u5c31\u708a\u7fe0\u805a\u8106\u81ed\u8da3\u9189\u9a5f\u9df2\u5074\u4ec4\u53a0\u60fb\u6e2c\u5c64\u4f88\u5024\u55e4\u5cd9\u5e5f\u6065\u6894\u6cbb\u6dc4\u71be\u75d4\u75f4\u7661\u7a1a\u7a49\u7dc7\u7dfb\u7f6e\u81f4\u86a9\u8f1c\u96c9\u99b3\u9f52\u5247\u52c5\u98ed\u89aa\u4e03\u67d2\u6f06\u4fb5\u5be2\u6795\u6c88\u6d78\u741b\u7827\u91dd\u937c\u87c4\u79e4\u7a31\u5feb\u4ed6\u54a4\u553e\u58ae\u59a5\u60f0\u6253\u62d6\u6736\u6955\u8235\u9640\u99b1\u99dd\u502c\u5353\u5544\u577c\ufa01\u6258\ufa02\u64e2\u666b\u67dd\u6fc1\u6fef\u7422\u7438\u8a17"],["f7a1","\u9438\u5451\u5606\u5766\u5f48\u619a\u6b4e\u7058\u70ad\u7dbb\u8a95\u596a\u812b\u63a2\u7708\u803d\u8caa\u5854\u642d\u69bb\u5b95\u5e11\u6e6f\ufa03\u8569\u514c\u53f0\u592a\u6020\u614b\u6b86\u6c70\u6cf0\u7b1e\u80ce\u82d4\u8dc6\u90b0\u98b1\ufa04\u64c7\u6fa4\u6491\u6504\u514e\u5410\u571f\u8a0e\u615f\u6876\ufa05\u75db\u7b52\u7d71\u901a\u5806\u69cc\u817f\u892a\u9000\u9839\u5078\u5957\u59ac\u6295\u900f\u9b2a\u615d\u7279\u95d6\u5761\u5a46\u5df4\u628a\u64ad\u64fa\u6777\u6ce2\u6d3e\u722c\u7436\u7834\u7f77\u82ad\u8ddb\u9817\u5224\u5742\u677f\u7248\u74e3\u8ca9\u8fa6\u9211"],["f8a1","\u962a\u516b\u53ed\u634c\u4f69\u5504\u6096\u6557\u6c9b\u6d7f\u724c\u72fd\u7a17\u8987\u8c9d\u5f6d\u6f8e\u70f9\u81a8\u610e\u4fbf\u504f\u6241\u7247\u7bc7\u7de8\u7fe9\u904d\u97ad\u9a19\u8cb6\u576a\u5e73\u67b0\u840d\u8a55\u5420\u5b16\u5e63\u5ee2\u5f0a\u6583\u80ba\u853d\u9589\u965b\u4f48\u5305\u530d\u530f\u5486\u54fa\u5703\u5e03\u6016\u629b\u62b1\u6355\ufa06\u6ce1\u6d66\u75b1\u7832\u80de\u812f\u82de\u8461\u84b2\u888d\u8912\u900b\u92ea\u98fd\u9b91\u5e45\u66b4\u66dd\u7011\u7206\ufa07\u4ff5\u527d\u5f6a\u6153\u6753\u6a19\u6f02\u74e2\u7968\u8868\u8c79\u98c7\u98c4\u9a43"],["f9a1","\u54c1\u7a1f\u6953\u8af7\u8c4a\u98a8\u99ae\u5f7c\u62ab\u75b2\u76ae\u88ab\u907f\u9642\u5339\u5f3c\u5fc5\u6ccc\u73cc\u7562\u758b\u7b46\u82fe\u999d\u4e4f\u903c\u4e0b\u4f55\u53a6\u590f\u5ec8\u6630\u6cb3\u7455\u8377\u8766\u8cc0\u9050\u971e\u9c15\u58d1\u5b78\u8650\u8b14\u9db4\u5bd2\u6068\u608d\u65f1\u6c57\u6f22\u6fa3\u701a\u7f55\u7ff0\u9591\u9592\u9650\u97d3\u5272\u8f44\u51fd\u542b\u54b8\u5563\u558a\u6abb\u6db5\u7dd8\u8266\u929c\u9677\u9e79\u5408\u54c8\u76d2\u86e4\u95a4\u95d4\u965c\u4ea2\u4f09\u59ee\u5ae6\u5df7\u6052\u6297\u676d\u6841\u6c86\u6e2f\u7f38\u809b\u822a"],["faa1","\ufa08\ufa09\u9805\u4ea5\u5055\u54b3\u5793\u595a\u5b69\u5bb3\u61c8\u6977\u6d77\u7023\u87f9\u89e3\u8a72\u8ae7\u9082\u99ed\u9ab8\u52be\u6838\u5016\u5e78\u674f\u8347\u884c\u4eab\u5411\u56ae\u73e6\u9115\u97ff\u9909\u9957\u9999\u5653\u589f\u865b\u8a31\u61b2\u6af6\u737b\u8ed2\u6b47\u96aa\u9a57\u5955\u7200\u8d6b\u9769\u4fd4\u5cf4\u5f26\u61f8\u665b\u6ceb\u70ab\u7384\u73b9\u73fe\u7729\u774d\u7d43\u7d62\u7e23\u8237\u8852\ufa0a\u8ce2\u9249\u986f\u5b51\u7a74\u8840\u9801\u5acc\u4fe0\u5354\u593e\u5cfd\u633e\u6d79\u72f9\u8105\u8107\u83a2\u92cf\u9830\u4ea8\u5144\u5211\u578b"],["fba1","\u5f62\u6cc2\u6ece\u7005\u7050\u70af\u7192\u73e9\u7469\u834a\u87a2\u8861\u9008\u90a2\u93a3\u99a8\u516e\u5f57\u60e0\u6167\u66b3\u8559\u8e4a\u91af\u978b\u4e4e\u4e92\u547c\u58d5\u58fa\u597d\u5cb5\u5f27\u6236\u6248\u660a\u6667\u6beb\u6d69\u6dcf\u6e56\u6ef8\u6f94\u6fe0\u6fe9\u705d\u72d0\u7425\u745a\u74e0\u7693\u795c\u7cca\u7e1e\u80e1\u82a6\u846b\u84bf\u864e\u865f\u8774\u8b77\u8c6a\u93ac\u9800\u9865\u60d1\u6216\u9177\u5a5a\u660f\u6df7\u6e3e\u743f\u9b42\u5ffd\u60da\u7b0f\u54c4\u5f18\u6c5e\u6cd3\u6d2a\u70d8\u7d05\u8679\u8a0c\u9d3b\u5316\u548c\u5b05\u6a3a\u706b\u7575"],["fca1","\u798d\u79be\u82b1\u83ef\u8a71\u8b41\u8ca8\u9774\ufa0b\u64f4\u652b\u78ba\u78bb\u7a6b\u4e38\u559a\u5950\u5ba6\u5e7b\u60a3\u63db\u6b61\u6665\u6853\u6e19\u7165\u74b0\u7d08\u9084\u9a69\u9c25\u6d3b\u6ed1\u733e\u8c41\u95ca\u51f0\u5e4c\u5fa8\u604d\u60f6\u6130\u614c\u6643\u6644\u69a5\u6cc1\u6e5f\u6ec9\u6f62\u714c\u749c\u7687\u7bc1\u7c27\u8352\u8757\u9051\u968d\u9ec3\u532f\u56de\u5efb\u5f8a\u6062\u6094\u61f7\u6666\u6703\u6a9c\u6dee\u6fae\u7070\u736a\u7e6a\u81be\u8334\u86d4\u8aa8\u8cc4\u5283\u7372\u5b96\u6a6b\u9404\u54ee\u5686\u5b5d\u6548\u6585\u66c9\u689f\u6d8d\u6dc6"],["fda1","\u723b\u80b4\u9175\u9a4d\u4faf\u5019\u539a\u540e\u543c\u5589\u55c5\u5e3f\u5f8c\u673d\u7166\u73dd\u9005\u52db\u52f3\u5864\u58ce\u7104\u718f\u71fb\u85b0\u8a13\u6688\u85a8\u55a7\u6684\u714a\u8431\u5349\u5599\u6bc1\u5f59\u5fbd\u63ee\u6689\u7147\u8af1\u8f1d\u9ebe\u4f11\u643a\u70cb\u7566\u8667\u6064\u8b4e\u9df8\u5147\u51f6\u5308\u6d36\u80f8\u9ed1\u6615\u6b23\u7098\u75d5\u5403\u5c79\u7d07\u8a16\u6b20\u6b3d\u6b46\u5438\u6070\u6d3d\u7fd5\u8208\u50d6\u51de\u559c\u566b\u56cd\u59ec\u5b09\u5e0c\u6199\u6198\u6231\u665e\u66e6\u7199\u71b9\u71ba\u72a7\u79a7\u7a00\u7fb2\u8a70"]]')},72324:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127],["a140","\u3000\uff0c\u3001\u3002\uff0e\u2027\uff1b\uff1a\uff1f\uff01\ufe30\u2026\u2025\ufe50\ufe51\ufe52\xb7\ufe54\ufe55\ufe56\ufe57\uff5c\u2013\ufe31\u2014\ufe33\u2574\ufe34\ufe4f\uff08\uff09\ufe35\ufe36\uff5b\uff5d\ufe37\ufe38\u3014\u3015\ufe39\ufe3a\u3010\u3011\ufe3b\ufe3c\u300a\u300b\ufe3d\ufe3e\u3008\u3009\ufe3f\ufe40\u300c\u300d\ufe41\ufe42\u300e\u300f\ufe43\ufe44\ufe59\ufe5a"],["a1a1","\ufe5b\ufe5c\ufe5d\ufe5e\u2018\u2019\u201c\u201d\u301d\u301e\u2035\u2032\uff03\uff06\uff0a\u203b\xa7\u3003\u25cb\u25cf\u25b3\u25b2\u25ce\u2606\u2605\u25c7\u25c6\u25a1\u25a0\u25bd\u25bc\u32a3\u2105\xaf\uffe3\uff3f\u02cd\ufe49\ufe4a\ufe4d\ufe4e\ufe4b\ufe4c\ufe5f\ufe60\ufe61\uff0b\uff0d\xd7\xf7\xb1\u221a\uff1c\uff1e\uff1d\u2266\u2267\u2260\u221e\u2252\u2261\ufe62",4,"\uff5e\u2229\u222a\u22a5\u2220\u221f\u22bf\u33d2\u33d1\u222b\u222e\u2235\u2234\u2640\u2642\u2295\u2299\u2191\u2193\u2190\u2192\u2196\u2197\u2199\u2198\u2225\u2223\uff0f"],["a240","\uff3c\u2215\ufe68\uff04\uffe5\u3012\uffe0\uffe1\uff05\uff20\u2103\u2109\ufe69\ufe6a\ufe6b\u33d5\u339c\u339d\u339e\u33ce\u33a1\u338e\u338f\u33c4\xb0\u5159\u515b\u515e\u515d\u5161\u5163\u55e7\u74e9\u7cce\u2581",7,"\u258f\u258e\u258d\u258c\u258b\u258a\u2589\u253c\u2534\u252c\u2524\u251c\u2594\u2500\u2502\u2595\u250c\u2510\u2514\u2518\u256d"],["a2a1","\u256e\u2570\u256f\u2550\u255e\u256a\u2561\u25e2\u25e3\u25e5\u25e4\u2571\u2572\u2573\uff10",9,"\u2160",9,"\u3021",8,"\u5341\u5344\u5345\uff21",25,"\uff41",21],["a340","\uff57\uff58\uff59\uff5a\u0391",16,"\u03a3",6,"\u03b1",16,"\u03c3",6,"\u3105",10],["a3a1","\u3110",25,"\u02d9\u02c9\u02ca\u02c7\u02cb"],["a3e1","\u20ac"],["a440","\u4e00\u4e59\u4e01\u4e03\u4e43\u4e5d\u4e86\u4e8c\u4eba\u513f\u5165\u516b\u51e0\u5200\u5201\u529b\u5315\u5341\u535c\u53c8\u4e09\u4e0b\u4e08\u4e0a\u4e2b\u4e38\u51e1\u4e45\u4e48\u4e5f\u4e5e\u4e8e\u4ea1\u5140\u5203\u52fa\u5343\u53c9\u53e3\u571f\u58eb\u5915\u5927\u5973\u5b50\u5b51\u5b53\u5bf8\u5c0f\u5c22\u5c38\u5c71\u5ddd\u5de5\u5df1\u5df2\u5df3\u5dfe\u5e72\u5efe\u5f0b\u5f13\u624d"],["a4a1","\u4e11\u4e10\u4e0d\u4e2d\u4e30\u4e39\u4e4b\u5c39\u4e88\u4e91\u4e95\u4e92\u4e94\u4ea2\u4ec1\u4ec0\u4ec3\u4ec6\u4ec7\u4ecd\u4eca\u4ecb\u4ec4\u5143\u5141\u5167\u516d\u516e\u516c\u5197\u51f6\u5206\u5207\u5208\u52fb\u52fe\u52ff\u5316\u5339\u5348\u5347\u5345\u535e\u5384\u53cb\u53ca\u53cd\u58ec\u5929\u592b\u592a\u592d\u5b54\u5c11\u5c24\u5c3a\u5c6f\u5df4\u5e7b\u5eff\u5f14\u5f15\u5fc3\u6208\u6236\u624b\u624e\u652f\u6587\u6597\u65a4\u65b9\u65e5\u66f0\u6708\u6728\u6b20\u6b62\u6b79\u6bcb\u6bd4\u6bdb\u6c0f\u6c34\u706b\u722a\u7236\u723b\u7247\u7259\u725b\u72ac\u738b\u4e19"],["a540","\u4e16\u4e15\u4e14\u4e18\u4e3b\u4e4d\u4e4f\u4e4e\u4ee5\u4ed8\u4ed4\u4ed5\u4ed6\u4ed7\u4ee3\u4ee4\u4ed9\u4ede\u5145\u5144\u5189\u518a\u51ac\u51f9\u51fa\u51f8\u520a\u52a0\u529f\u5305\u5306\u5317\u531d\u4edf\u534a\u5349\u5361\u5360\u536f\u536e\u53bb\u53ef\u53e4\u53f3\u53ec\u53ee\u53e9\u53e8\u53fc\u53f8\u53f5\u53eb\u53e6\u53ea\u53f2\u53f1\u53f0\u53e5\u53ed\u53fb\u56db\u56da\u5916"],["a5a1","\u592e\u5931\u5974\u5976\u5b55\u5b83\u5c3c\u5de8\u5de7\u5de6\u5e02\u5e03\u5e73\u5e7c\u5f01\u5f18\u5f17\u5fc5\u620a\u6253\u6254\u6252\u6251\u65a5\u65e6\u672e\u672c\u672a\u672b\u672d\u6b63\u6bcd\u6c11\u6c10\u6c38\u6c41\u6c40\u6c3e\u72af\u7384\u7389\u74dc\u74e6\u7518\u751f\u7528\u7529\u7530\u7531\u7532\u7533\u758b\u767d\u76ae\u76bf\u76ee\u77db\u77e2\u77f3\u793a\u79be\u7a74\u7acb\u4e1e\u4e1f\u4e52\u4e53\u4e69\u4e99\u4ea4\u4ea6\u4ea5\u4eff\u4f09\u4f19\u4f0a\u4f15\u4f0d\u4f10\u4f11\u4f0f\u4ef2\u4ef6\u4efb\u4ef0\u4ef3\u4efd\u4f01\u4f0b\u5149\u5147\u5146\u5148\u5168"],["a640","\u5171\u518d\u51b0\u5217\u5211\u5212\u520e\u5216\u52a3\u5308\u5321\u5320\u5370\u5371\u5409\u540f\u540c\u540a\u5410\u5401\u540b\u5404\u5411\u540d\u5408\u5403\u540e\u5406\u5412\u56e0\u56de\u56dd\u5733\u5730\u5728\u572d\u572c\u572f\u5729\u5919\u591a\u5937\u5938\u5984\u5978\u5983\u597d\u5979\u5982\u5981\u5b57\u5b58\u5b87\u5b88\u5b85\u5b89\u5bfa\u5c16\u5c79\u5dde\u5e06\u5e76\u5e74"],["a6a1","\u5f0f\u5f1b\u5fd9\u5fd6\u620e\u620c\u620d\u6210\u6263\u625b\u6258\u6536\u65e9\u65e8\u65ec\u65ed\u66f2\u66f3\u6709\u673d\u6734\u6731\u6735\u6b21\u6b64\u6b7b\u6c16\u6c5d\u6c57\u6c59\u6c5f\u6c60\u6c50\u6c55\u6c61\u6c5b\u6c4d\u6c4e\u7070\u725f\u725d\u767e\u7af9\u7c73\u7cf8\u7f36\u7f8a\u7fbd\u8001\u8003\u800c\u8012\u8033\u807f\u8089\u808b\u808c\u81e3\u81ea\u81f3\u81fc\u820c\u821b\u821f\u826e\u8272\u827e\u866b\u8840\u884c\u8863\u897f\u9621\u4e32\u4ea8\u4f4d\u4f4f\u4f47\u4f57\u4f5e\u4f34\u4f5b\u4f55\u4f30\u4f50\u4f51\u4f3d\u4f3a\u4f38\u4f43\u4f54\u4f3c\u4f46\u4f63"],["a740","\u4f5c\u4f60\u4f2f\u4f4e\u4f36\u4f59\u4f5d\u4f48\u4f5a\u514c\u514b\u514d\u5175\u51b6\u51b7\u5225\u5224\u5229\u522a\u5228\u52ab\u52a9\u52aa\u52ac\u5323\u5373\u5375\u541d\u542d\u541e\u543e\u5426\u544e\u5427\u5446\u5443\u5433\u5448\u5442\u541b\u5429\u544a\u5439\u543b\u5438\u542e\u5435\u5436\u5420\u543c\u5440\u5431\u542b\u541f\u542c\u56ea\u56f0\u56e4\u56eb\u574a\u5751\u5740\u574d"],["a7a1","\u5747\u574e\u573e\u5750\u574f\u573b\u58ef\u593e\u599d\u5992\u59a8\u599e\u59a3\u5999\u5996\u598d\u59a4\u5993\u598a\u59a5\u5b5d\u5b5c\u5b5a\u5b5b\u5b8c\u5b8b\u5b8f\u5c2c\u5c40\u5c41\u5c3f\u5c3e\u5c90\u5c91\u5c94\u5c8c\u5deb\u5e0c\u5e8f\u5e87\u5e8a\u5ef7\u5f04\u5f1f\u5f64\u5f62\u5f77\u5f79\u5fd8\u5fcc\u5fd7\u5fcd\u5ff1\u5feb\u5ff8\u5fea\u6212\u6211\u6284\u6297\u6296\u6280\u6276\u6289\u626d\u628a\u627c\u627e\u6279\u6273\u6292\u626f\u6298\u626e\u6295\u6293\u6291\u6286\u6539\u653b\u6538\u65f1\u66f4\u675f\u674e\u674f\u6750\u6751\u675c\u6756\u675e\u6749\u6746\u6760"],["a840","\u6753\u6757\u6b65\u6bcf\u6c42\u6c5e\u6c99\u6c81\u6c88\u6c89\u6c85\u6c9b\u6c6a\u6c7a\u6c90\u6c70\u6c8c\u6c68\u6c96\u6c92\u6c7d\u6c83\u6c72\u6c7e\u6c74\u6c86\u6c76\u6c8d\u6c94\u6c98\u6c82\u7076\u707c\u707d\u7078\u7262\u7261\u7260\u72c4\u72c2\u7396\u752c\u752b\u7537\u7538\u7682\u76ef\u77e3\u79c1\u79c0\u79bf\u7a76\u7cfb\u7f55\u8096\u8093\u809d\u8098\u809b\u809a\u80b2\u826f\u8292"],["a8a1","\u828b\u828d\u898b\u89d2\u8a00\u8c37\u8c46\u8c55\u8c9d\u8d64\u8d70\u8db3\u8eab\u8eca\u8f9b\u8fb0\u8fc2\u8fc6\u8fc5\u8fc4\u5de1\u9091\u90a2\u90aa\u90a6\u90a3\u9149\u91c6\u91cc\u9632\u962e\u9631\u962a\u962c\u4e26\u4e56\u4e73\u4e8b\u4e9b\u4e9e\u4eab\u4eac\u4f6f\u4f9d\u4f8d\u4f73\u4f7f\u4f6c\u4f9b\u4f8b\u4f86\u4f83\u4f70\u4f75\u4f88\u4f69\u4f7b\u4f96\u4f7e\u4f8f\u4f91\u4f7a\u5154\u5152\u5155\u5169\u5177\u5176\u5178\u51bd\u51fd\u523b\u5238\u5237\u523a\u5230\u522e\u5236\u5241\u52be\u52bb\u5352\u5354\u5353\u5351\u5366\u5377\u5378\u5379\u53d6\u53d4\u53d7\u5473\u5475"],["a940","\u5496\u5478\u5495\u5480\u547b\u5477\u5484\u5492\u5486\u547c\u5490\u5471\u5476\u548c\u549a\u5462\u5468\u548b\u547d\u548e\u56fa\u5783\u5777\u576a\u5769\u5761\u5766\u5764\u577c\u591c\u5949\u5947\u5948\u5944\u5954\u59be\u59bb\u59d4\u59b9\u59ae\u59d1\u59c6\u59d0\u59cd\u59cb\u59d3\u59ca\u59af\u59b3\u59d2\u59c5\u5b5f\u5b64\u5b63\u5b97\u5b9a\u5b98\u5b9c\u5b99\u5b9b\u5c1a\u5c48\u5c45"],["a9a1","\u5c46\u5cb7\u5ca1\u5cb8\u5ca9\u5cab\u5cb1\u5cb3\u5e18\u5e1a\u5e16\u5e15\u5e1b\u5e11\u5e78\u5e9a\u5e97\u5e9c\u5e95\u5e96\u5ef6\u5f26\u5f27\u5f29\u5f80\u5f81\u5f7f\u5f7c\u5fdd\u5fe0\u5ffd\u5ff5\u5fff\u600f\u6014\u602f\u6035\u6016\u602a\u6015\u6021\u6027\u6029\u602b\u601b\u6216\u6215\u623f\u623e\u6240\u627f\u62c9\u62cc\u62c4\u62bf\u62c2\u62b9\u62d2\u62db\u62ab\u62d3\u62d4\u62cb\u62c8\u62a8\u62bd\u62bc\u62d0\u62d9\u62c7\u62cd\u62b5\u62da\u62b1\u62d8\u62d6\u62d7\u62c6\u62ac\u62ce\u653e\u65a7\u65bc\u65fa\u6614\u6613\u660c\u6606\u6602\u660e\u6600\u660f\u6615\u660a"],["aa40","\u6607\u670d\u670b\u676d\u678b\u6795\u6771\u679c\u6773\u6777\u6787\u679d\u6797\u676f\u6770\u677f\u6789\u677e\u6790\u6775\u679a\u6793\u677c\u676a\u6772\u6b23\u6b66\u6b67\u6b7f\u6c13\u6c1b\u6ce3\u6ce8\u6cf3\u6cb1\u6ccc\u6ce5\u6cb3\u6cbd\u6cbe\u6cbc\u6ce2\u6cab\u6cd5\u6cd3\u6cb8\u6cc4\u6cb9\u6cc1\u6cae\u6cd7\u6cc5\u6cf1\u6cbf\u6cbb\u6ce1\u6cdb\u6cca\u6cac\u6cef\u6cdc\u6cd6\u6ce0"],["aaa1","\u7095\u708e\u7092\u708a\u7099\u722c\u722d\u7238\u7248\u7267\u7269\u72c0\u72ce\u72d9\u72d7\u72d0\u73a9\u73a8\u739f\u73ab\u73a5\u753d\u759d\u7599\u759a\u7684\u76c2\u76f2\u76f4\u77e5\u77fd\u793e\u7940\u7941\u79c9\u79c8\u7a7a\u7a79\u7afa\u7cfe\u7f54\u7f8c\u7f8b\u8005\u80ba\u80a5\u80a2\u80b1\u80a1\u80ab\u80a9\u80b4\u80aa\u80af\u81e5\u81fe\u820d\u82b3\u829d\u8299\u82ad\u82bd\u829f\u82b9\u82b1\u82ac\u82a5\u82af\u82b8\u82a3\u82b0\u82be\u82b7\u864e\u8671\u521d\u8868\u8ecb\u8fce\u8fd4\u8fd1\u90b5\u90b8\u90b1\u90b6\u91c7\u91d1\u9577\u9580\u961c\u9640\u963f\u963b\u9644"],["ab40","\u9642\u96b9\u96e8\u9752\u975e\u4e9f\u4ead\u4eae\u4fe1\u4fb5\u4faf\u4fbf\u4fe0\u4fd1\u4fcf\u4fdd\u4fc3\u4fb6\u4fd8\u4fdf\u4fca\u4fd7\u4fae\u4fd0\u4fc4\u4fc2\u4fda\u4fce\u4fde\u4fb7\u5157\u5192\u5191\u51a0\u524e\u5243\u524a\u524d\u524c\u524b\u5247\u52c7\u52c9\u52c3\u52c1\u530d\u5357\u537b\u539a\u53db\u54ac\u54c0\u54a8\u54ce\u54c9\u54b8\u54a6\u54b3\u54c7\u54c2\u54bd\u54aa\u54c1"],["aba1","\u54c4\u54c8\u54af\u54ab\u54b1\u54bb\u54a9\u54a7\u54bf\u56ff\u5782\u578b\u57a0\u57a3\u57a2\u57ce\u57ae\u5793\u5955\u5951\u594f\u594e\u5950\u59dc\u59d8\u59ff\u59e3\u59e8\u5a03\u59e5\u59ea\u59da\u59e6\u5a01\u59fb\u5b69\u5ba3\u5ba6\u5ba4\u5ba2\u5ba5\u5c01\u5c4e\u5c4f\u5c4d\u5c4b\u5cd9\u5cd2\u5df7\u5e1d\u5e25\u5e1f\u5e7d\u5ea0\u5ea6\u5efa\u5f08\u5f2d\u5f65\u5f88\u5f85\u5f8a\u5f8b\u5f87\u5f8c\u5f89\u6012\u601d\u6020\u6025\u600e\u6028\u604d\u6070\u6068\u6062\u6046\u6043\u606c\u606b\u606a\u6064\u6241\u62dc\u6316\u6309\u62fc\u62ed\u6301\u62ee\u62fd\u6307\u62f1\u62f7"],["ac40","\u62ef\u62ec\u62fe\u62f4\u6311\u6302\u653f\u6545\u65ab\u65bd\u65e2\u6625\u662d\u6620\u6627\u662f\u661f\u6628\u6631\u6624\u66f7\u67ff\u67d3\u67f1\u67d4\u67d0\u67ec\u67b6\u67af\u67f5\u67e9\u67ef\u67c4\u67d1\u67b4\u67da\u67e5\u67b8\u67cf\u67de\u67f3\u67b0\u67d9\u67e2\u67dd\u67d2\u6b6a\u6b83\u6b86\u6bb5\u6bd2\u6bd7\u6c1f\u6cc9\u6d0b\u6d32\u6d2a\u6d41\u6d25\u6d0c\u6d31\u6d1e\u6d17"],["aca1","\u6d3b\u6d3d\u6d3e\u6d36\u6d1b\u6cf5\u6d39\u6d27\u6d38\u6d29\u6d2e\u6d35\u6d0e\u6d2b\u70ab\u70ba\u70b3\u70ac\u70af\u70ad\u70b8\u70ae\u70a4\u7230\u7272\u726f\u7274\u72e9\u72e0\u72e1\u73b7\u73ca\u73bb\u73b2\u73cd\u73c0\u73b3\u751a\u752d\u754f\u754c\u754e\u754b\u75ab\u75a4\u75a5\u75a2\u75a3\u7678\u7686\u7687\u7688\u76c8\u76c6\u76c3\u76c5\u7701\u76f9\u76f8\u7709\u770b\u76fe\u76fc\u7707\u77dc\u7802\u7814\u780c\u780d\u7946\u7949\u7948\u7947\u79b9\u79ba\u79d1\u79d2\u79cb\u7a7f\u7a81\u7aff\u7afd\u7c7d\u7d02\u7d05\u7d00\u7d09\u7d07\u7d04\u7d06\u7f38\u7f8e\u7fbf\u8004"],["ad40","\u8010\u800d\u8011\u8036\u80d6\u80e5\u80da\u80c3\u80c4\u80cc\u80e1\u80db\u80ce\u80de\u80e4\u80dd\u81f4\u8222\u82e7\u8303\u8305\u82e3\u82db\u82e6\u8304\u82e5\u8302\u8309\u82d2\u82d7\u82f1\u8301\u82dc\u82d4\u82d1\u82de\u82d3\u82df\u82ef\u8306\u8650\u8679\u867b\u867a\u884d\u886b\u8981\u89d4\u8a08\u8a02\u8a03\u8c9e\u8ca0\u8d74\u8d73\u8db4\u8ecd\u8ecc\u8ff0\u8fe6\u8fe2\u8fea\u8fe5"],["ada1","\u8fed\u8feb\u8fe4\u8fe8\u90ca\u90ce\u90c1\u90c3\u914b\u914a\u91cd\u9582\u9650\u964b\u964c\u964d\u9762\u9769\u97cb\u97ed\u97f3\u9801\u98a8\u98db\u98df\u9996\u9999\u4e58\u4eb3\u500c\u500d\u5023\u4fef\u5026\u5025\u4ff8\u5029\u5016\u5006\u503c\u501f\u501a\u5012\u5011\u4ffa\u5000\u5014\u5028\u4ff1\u5021\u500b\u5019\u5018\u4ff3\u4fee\u502d\u502a\u4ffe\u502b\u5009\u517c\u51a4\u51a5\u51a2\u51cd\u51cc\u51c6\u51cb\u5256\u525c\u5254\u525b\u525d\u532a\u537f\u539f\u539d\u53df\u54e8\u5510\u5501\u5537\u54fc\u54e5\u54f2\u5506\u54fa\u5514\u54e9\u54ed\u54e1\u5509\u54ee\u54ea"],["ae40","\u54e6\u5527\u5507\u54fd\u550f\u5703\u5704\u57c2\u57d4\u57cb\u57c3\u5809\u590f\u5957\u5958\u595a\u5a11\u5a18\u5a1c\u5a1f\u5a1b\u5a13\u59ec\u5a20\u5a23\u5a29\u5a25\u5a0c\u5a09\u5b6b\u5c58\u5bb0\u5bb3\u5bb6\u5bb4\u5bae\u5bb5\u5bb9\u5bb8\u5c04\u5c51\u5c55\u5c50\u5ced\u5cfd\u5cfb\u5cea\u5ce8\u5cf0\u5cf6\u5d01\u5cf4\u5dee\u5e2d\u5e2b\u5eab\u5ead\u5ea7\u5f31\u5f92\u5f91\u5f90\u6059"],["aea1","\u6063\u6065\u6050\u6055\u606d\u6069\u606f\u6084\u609f\u609a\u608d\u6094\u608c\u6085\u6096\u6247\u62f3\u6308\u62ff\u634e\u633e\u632f\u6355\u6342\u6346\u634f\u6349\u633a\u6350\u633d\u632a\u632b\u6328\u634d\u634c\u6548\u6549\u6599\u65c1\u65c5\u6642\u6649\u664f\u6643\u6652\u664c\u6645\u6641\u66f8\u6714\u6715\u6717\u6821\u6838\u6848\u6846\u6853\u6839\u6842\u6854\u6829\u68b3\u6817\u684c\u6851\u683d\u67f4\u6850\u6840\u683c\u6843\u682a\u6845\u6813\u6818\u6841\u6b8a\u6b89\u6bb7\u6c23\u6c27\u6c28\u6c26\u6c24\u6cf0\u6d6a\u6d95\u6d88\u6d87\u6d66\u6d78\u6d77\u6d59\u6d93"],["af40","\u6d6c\u6d89\u6d6e\u6d5a\u6d74\u6d69\u6d8c\u6d8a\u6d79\u6d85\u6d65\u6d94\u70ca\u70d8\u70e4\u70d9\u70c8\u70cf\u7239\u7279\u72fc\u72f9\u72fd\u72f8\u72f7\u7386\u73ed\u7409\u73ee\u73e0\u73ea\u73de\u7554\u755d\u755c\u755a\u7559\u75be\u75c5\u75c7\u75b2\u75b3\u75bd\u75bc\u75b9\u75c2\u75b8\u768b\u76b0\u76ca\u76cd\u76ce\u7729\u771f\u7720\u7728\u77e9\u7830\u7827\u7838\u781d\u7834\u7837"],["afa1","\u7825\u782d\u7820\u781f\u7832\u7955\u7950\u7960\u795f\u7956\u795e\u795d\u7957\u795a\u79e4\u79e3\u79e7\u79df\u79e6\u79e9\u79d8\u7a84\u7a88\u7ad9\u7b06\u7b11\u7c89\u7d21\u7d17\u7d0b\u7d0a\u7d20\u7d22\u7d14\u7d10\u7d15\u7d1a\u7d1c\u7d0d\u7d19\u7d1b\u7f3a\u7f5f\u7f94\u7fc5\u7fc1\u8006\u8018\u8015\u8019\u8017\u803d\u803f\u80f1\u8102\u80f0\u8105\u80ed\u80f4\u8106\u80f8\u80f3\u8108\u80fd\u810a\u80fc\u80ef\u81ed\u81ec\u8200\u8210\u822a\u822b\u8228\u822c\u82bb\u832b\u8352\u8354\u834a\u8338\u8350\u8349\u8335\u8334\u834f\u8332\u8339\u8336\u8317\u8340\u8331\u8328\u8343"],["b040","\u8654\u868a\u86aa\u8693\u86a4\u86a9\u868c\u86a3\u869c\u8870\u8877\u8881\u8882\u887d\u8879\u8a18\u8a10\u8a0e\u8a0c\u8a15\u8a0a\u8a17\u8a13\u8a16\u8a0f\u8a11\u8c48\u8c7a\u8c79\u8ca1\u8ca2\u8d77\u8eac\u8ed2\u8ed4\u8ecf\u8fb1\u9001\u9006\u8ff7\u9000\u8ffa\u8ff4\u9003\u8ffd\u9005\u8ff8\u9095\u90e1\u90dd\u90e2\u9152\u914d\u914c\u91d8\u91dd\u91d7\u91dc\u91d9\u9583\u9662\u9663\u9661"],["b0a1","\u965b\u965d\u9664\u9658\u965e\u96bb\u98e2\u99ac\u9aa8\u9ad8\u9b25\u9b32\u9b3c\u4e7e\u507a\u507d\u505c\u5047\u5043\u504c\u505a\u5049\u5065\u5076\u504e\u5055\u5075\u5074\u5077\u504f\u500f\u506f\u506d\u515c\u5195\u51f0\u526a\u526f\u52d2\u52d9\u52d8\u52d5\u5310\u530f\u5319\u533f\u5340\u533e\u53c3\u66fc\u5546\u556a\u5566\u5544\u555e\u5561\u5543\u554a\u5531\u5556\u554f\u5555\u552f\u5564\u5538\u552e\u555c\u552c\u5563\u5533\u5541\u5557\u5708\u570b\u5709\u57df\u5805\u580a\u5806\u57e0\u57e4\u57fa\u5802\u5835\u57f7\u57f9\u5920\u5962\u5a36\u5a41\u5a49\u5a66\u5a6a\u5a40"],["b140","\u5a3c\u5a62\u5a5a\u5a46\u5a4a\u5b70\u5bc7\u5bc5\u5bc4\u5bc2\u5bbf\u5bc6\u5c09\u5c08\u5c07\u5c60\u5c5c\u5c5d\u5d07\u5d06\u5d0e\u5d1b\u5d16\u5d22\u5d11\u5d29\u5d14\u5d19\u5d24\u5d27\u5d17\u5de2\u5e38\u5e36\u5e33\u5e37\u5eb7\u5eb8\u5eb6\u5eb5\u5ebe\u5f35\u5f37\u5f57\u5f6c\u5f69\u5f6b\u5f97\u5f99\u5f9e\u5f98\u5fa1\u5fa0\u5f9c\u607f\u60a3\u6089\u60a0\u60a8\u60cb\u60b4\u60e6\u60bd"],["b1a1","\u60c5\u60bb\u60b5\u60dc\u60bc\u60d8\u60d5\u60c6\u60df\u60b8\u60da\u60c7\u621a\u621b\u6248\u63a0\u63a7\u6372\u6396\u63a2\u63a5\u6377\u6367\u6398\u63aa\u6371\u63a9\u6389\u6383\u639b\u636b\u63a8\u6384\u6388\u6399\u63a1\u63ac\u6392\u638f\u6380\u637b\u6369\u6368\u637a\u655d\u6556\u6551\u6559\u6557\u555f\u654f\u6558\u6555\u6554\u659c\u659b\u65ac\u65cf\u65cb\u65cc\u65ce\u665d\u665a\u6664\u6668\u6666\u665e\u66f9\u52d7\u671b\u6881\u68af\u68a2\u6893\u68b5\u687f\u6876\u68b1\u68a7\u6897\u68b0\u6883\u68c4\u68ad\u6886\u6885\u6894\u689d\u68a8\u689f\u68a1\u6882\u6b32\u6bba"],["b240","\u6beb\u6bec\u6c2b\u6d8e\u6dbc\u6df3\u6dd9\u6db2\u6de1\u6dcc\u6de4\u6dfb\u6dfa\u6e05\u6dc7\u6dcb\u6daf\u6dd1\u6dae\u6dde\u6df9\u6db8\u6df7\u6df5\u6dc5\u6dd2\u6e1a\u6db5\u6dda\u6deb\u6dd8\u6dea\u6df1\u6dee\u6de8\u6dc6\u6dc4\u6daa\u6dec\u6dbf\u6de6\u70f9\u7109\u710a\u70fd\u70ef\u723d\u727d\u7281\u731c\u731b\u7316\u7313\u7319\u7387\u7405\u740a\u7403\u7406\u73fe\u740d\u74e0\u74f6"],["b2a1","\u74f7\u751c\u7522\u7565\u7566\u7562\u7570\u758f\u75d4\u75d5\u75b5\u75ca\u75cd\u768e\u76d4\u76d2\u76db\u7737\u773e\u773c\u7736\u7738\u773a\u786b\u7843\u784e\u7965\u7968\u796d\u79fb\u7a92\u7a95\u7b20\u7b28\u7b1b\u7b2c\u7b26\u7b19\u7b1e\u7b2e\u7c92\u7c97\u7c95\u7d46\u7d43\u7d71\u7d2e\u7d39\u7d3c\u7d40\u7d30\u7d33\u7d44\u7d2f\u7d42\u7d32\u7d31\u7f3d\u7f9e\u7f9a\u7fcc\u7fce\u7fd2\u801c\u804a\u8046\u812f\u8116\u8123\u812b\u8129\u8130\u8124\u8202\u8235\u8237\u8236\u8239\u838e\u839e\u8398\u8378\u83a2\u8396\u83bd\u83ab\u8392\u838a\u8393\u8389\u83a0\u8377\u837b\u837c"],["b340","\u8386\u83a7\u8655\u5f6a\u86c7\u86c0\u86b6\u86c4\u86b5\u86c6\u86cb\u86b1\u86af\u86c9\u8853\u889e\u8888\u88ab\u8892\u8896\u888d\u888b\u8993\u898f\u8a2a\u8a1d\u8a23\u8a25\u8a31\u8a2d\u8a1f\u8a1b\u8a22\u8c49\u8c5a\u8ca9\u8cac\u8cab\u8ca8\u8caa\u8ca7\u8d67\u8d66\u8dbe\u8dba\u8edb\u8edf\u9019\u900d\u901a\u9017\u9023\u901f\u901d\u9010\u9015\u901e\u9020\u900f\u9022\u9016\u901b\u9014"],["b3a1","\u90e8\u90ed\u90fd\u9157\u91ce\u91f5\u91e6\u91e3\u91e7\u91ed\u91e9\u9589\u966a\u9675\u9673\u9678\u9670\u9674\u9676\u9677\u966c\u96c0\u96ea\u96e9\u7ae0\u7adf\u9802\u9803\u9b5a\u9ce5\u9e75\u9e7f\u9ea5\u9ebb\u50a2\u508d\u5085\u5099\u5091\u5080\u5096\u5098\u509a\u6700\u51f1\u5272\u5274\u5275\u5269\u52de\u52dd\u52db\u535a\u53a5\u557b\u5580\u55a7\u557c\u558a\u559d\u5598\u5582\u559c\u55aa\u5594\u5587\u558b\u5583\u55b3\u55ae\u559f\u553e\u55b2\u559a\u55bb\u55ac\u55b1\u557e\u5589\u55ab\u5599\u570d\u582f\u582a\u5834\u5824\u5830\u5831\u5821\u581d\u5820\u58f9\u58fa\u5960"],["b440","\u5a77\u5a9a\u5a7f\u5a92\u5a9b\u5aa7\u5b73\u5b71\u5bd2\u5bcc\u5bd3\u5bd0\u5c0a\u5c0b\u5c31\u5d4c\u5d50\u5d34\u5d47\u5dfd\u5e45\u5e3d\u5e40\u5e43\u5e7e\u5eca\u5ec1\u5ec2\u5ec4\u5f3c\u5f6d\u5fa9\u5faa\u5fa8\u60d1\u60e1\u60b2\u60b6\u60e0\u611c\u6123\u60fa\u6115\u60f0\u60fb\u60f4\u6168\u60f1\u610e\u60f6\u6109\u6100\u6112\u621f\u6249\u63a3\u638c\u63cf\u63c0\u63e9\u63c9\u63c6\u63cd"],["b4a1","\u63d2\u63e3\u63d0\u63e1\u63d6\u63ed\u63ee\u6376\u63f4\u63ea\u63db\u6452\u63da\u63f9\u655e\u6566\u6562\u6563\u6591\u6590\u65af\u666e\u6670\u6674\u6676\u666f\u6691\u667a\u667e\u6677\u66fe\u66ff\u671f\u671d\u68fa\u68d5\u68e0\u68d8\u68d7\u6905\u68df\u68f5\u68ee\u68e7\u68f9\u68d2\u68f2\u68e3\u68cb\u68cd\u690d\u6912\u690e\u68c9\u68da\u696e\u68fb\u6b3e\u6b3a\u6b3d\u6b98\u6b96\u6bbc\u6bef\u6c2e\u6c2f\u6c2c\u6e2f\u6e38\u6e54\u6e21\u6e32\u6e67\u6e4a\u6e20\u6e25\u6e23\u6e1b\u6e5b\u6e58\u6e24\u6e56\u6e6e\u6e2d\u6e26\u6e6f\u6e34\u6e4d\u6e3a\u6e2c\u6e43\u6e1d\u6e3e\u6ecb"],["b540","\u6e89\u6e19\u6e4e\u6e63\u6e44\u6e72\u6e69\u6e5f\u7119\u711a\u7126\u7130\u7121\u7136\u716e\u711c\u724c\u7284\u7280\u7336\u7325\u7334\u7329\u743a\u742a\u7433\u7422\u7425\u7435\u7436\u7434\u742f\u741b\u7426\u7428\u7525\u7526\u756b\u756a\u75e2\u75db\u75e3\u75d9\u75d8\u75de\u75e0\u767b\u767c\u7696\u7693\u76b4\u76dc\u774f\u77ed\u785d\u786c\u786f\u7a0d\u7a08\u7a0b\u7a05\u7a00\u7a98"],["b5a1","\u7a97\u7a96\u7ae5\u7ae3\u7b49\u7b56\u7b46\u7b50\u7b52\u7b54\u7b4d\u7b4b\u7b4f\u7b51\u7c9f\u7ca5\u7d5e\u7d50\u7d68\u7d55\u7d2b\u7d6e\u7d72\u7d61\u7d66\u7d62\u7d70\u7d73\u5584\u7fd4\u7fd5\u800b\u8052\u8085\u8155\u8154\u814b\u8151\u814e\u8139\u8146\u813e\u814c\u8153\u8174\u8212\u821c\u83e9\u8403\u83f8\u840d\u83e0\u83c5\u840b\u83c1\u83ef\u83f1\u83f4\u8457\u840a\u83f0\u840c\u83cc\u83fd\u83f2\u83ca\u8438\u840e\u8404\u83dc\u8407\u83d4\u83df\u865b\u86df\u86d9\u86ed\u86d4\u86db\u86e4\u86d0\u86de\u8857\u88c1\u88c2\u88b1\u8983\u8996\u8a3b\u8a60\u8a55\u8a5e\u8a3c\u8a41"],["b640","\u8a54\u8a5b\u8a50\u8a46\u8a34\u8a3a\u8a36\u8a56\u8c61\u8c82\u8caf\u8cbc\u8cb3\u8cbd\u8cc1\u8cbb\u8cc0\u8cb4\u8cb7\u8cb6\u8cbf\u8cb8\u8d8a\u8d85\u8d81\u8dce\u8ddd\u8dcb\u8dda\u8dd1\u8dcc\u8ddb\u8dc6\u8efb\u8ef8\u8efc\u8f9c\u902e\u9035\u9031\u9038\u9032\u9036\u9102\u90f5\u9109\u90fe\u9163\u9165\u91cf\u9214\u9215\u9223\u9209\u921e\u920d\u9210\u9207\u9211\u9594\u958f\u958b\u9591"],["b6a1","\u9593\u9592\u958e\u968a\u968e\u968b\u967d\u9685\u9686\u968d\u9672\u9684\u96c1\u96c5\u96c4\u96c6\u96c7\u96ef\u96f2\u97cc\u9805\u9806\u9808\u98e7\u98ea\u98ef\u98e9\u98f2\u98ed\u99ae\u99ad\u9ec3\u9ecd\u9ed1\u4e82\u50ad\u50b5\u50b2\u50b3\u50c5\u50be\u50ac\u50b7\u50bb\u50af\u50c7\u527f\u5277\u527d\u52df\u52e6\u52e4\u52e2\u52e3\u532f\u55df\u55e8\u55d3\u55e6\u55ce\u55dc\u55c7\u55d1\u55e3\u55e4\u55ef\u55da\u55e1\u55c5\u55c6\u55e5\u55c9\u5712\u5713\u585e\u5851\u5858\u5857\u585a\u5854\u586b\u584c\u586d\u584a\u5862\u5852\u584b\u5967\u5ac1\u5ac9\u5acc\u5abe\u5abd\u5abc"],["b740","\u5ab3\u5ac2\u5ab2\u5d69\u5d6f\u5e4c\u5e79\u5ec9\u5ec8\u5f12\u5f59\u5fac\u5fae\u611a\u610f\u6148\u611f\u60f3\u611b\u60f9\u6101\u6108\u614e\u614c\u6144\u614d\u613e\u6134\u6127\u610d\u6106\u6137\u6221\u6222\u6413\u643e\u641e\u642a\u642d\u643d\u642c\u640f\u641c\u6414\u640d\u6436\u6416\u6417\u6406\u656c\u659f\u65b0\u6697\u6689\u6687\u6688\u6696\u6684\u6698\u668d\u6703\u6994\u696d"],["b7a1","\u695a\u6977\u6960\u6954\u6975\u6930\u6982\u694a\u6968\u696b\u695e\u6953\u6979\u6986\u695d\u6963\u695b\u6b47\u6b72\u6bc0\u6bbf\u6bd3\u6bfd\u6ea2\u6eaf\u6ed3\u6eb6\u6ec2\u6e90\u6e9d\u6ec7\u6ec5\u6ea5\u6e98\u6ebc\u6eba\u6eab\u6ed1\u6e96\u6e9c\u6ec4\u6ed4\u6eaa\u6ea7\u6eb4\u714e\u7159\u7169\u7164\u7149\u7167\u715c\u716c\u7166\u714c\u7165\u715e\u7146\u7168\u7156\u723a\u7252\u7337\u7345\u733f\u733e\u746f\u745a\u7455\u745f\u745e\u7441\u743f\u7459\u745b\u745c\u7576\u7578\u7600\u75f0\u7601\u75f2\u75f1\u75fa\u75ff\u75f4\u75f3\u76de\u76df\u775b\u776b\u7766\u775e\u7763"],["b840","\u7779\u776a\u776c\u775c\u7765\u7768\u7762\u77ee\u788e\u78b0\u7897\u7898\u788c\u7889\u787c\u7891\u7893\u787f\u797a\u797f\u7981\u842c\u79bd\u7a1c\u7a1a\u7a20\u7a14\u7a1f\u7a1e\u7a9f\u7aa0\u7b77\u7bc0\u7b60\u7b6e\u7b67\u7cb1\u7cb3\u7cb5\u7d93\u7d79\u7d91\u7d81\u7d8f\u7d5b\u7f6e\u7f69\u7f6a\u7f72\u7fa9\u7fa8\u7fa4\u8056\u8058\u8086\u8084\u8171\u8170\u8178\u8165\u816e\u8173\u816b"],["b8a1","\u8179\u817a\u8166\u8205\u8247\u8482\u8477\u843d\u8431\u8475\u8466\u846b\u8449\u846c\u845b\u843c\u8435\u8461\u8463\u8469\u846d\u8446\u865e\u865c\u865f\u86f9\u8713\u8708\u8707\u8700\u86fe\u86fb\u8702\u8703\u8706\u870a\u8859\u88df\u88d4\u88d9\u88dc\u88d8\u88dd\u88e1\u88ca\u88d5\u88d2\u899c\u89e3\u8a6b\u8a72\u8a73\u8a66\u8a69\u8a70\u8a87\u8a7c\u8a63\u8aa0\u8a71\u8a85\u8a6d\u8a62\u8a6e\u8a6c\u8a79\u8a7b\u8a3e\u8a68\u8c62\u8c8a\u8c89\u8cca\u8cc7\u8cc8\u8cc4\u8cb2\u8cc3\u8cc2\u8cc5\u8de1\u8ddf\u8de8\u8def\u8df3\u8dfa\u8dea\u8de4\u8de6\u8eb2\u8f03\u8f09\u8efe\u8f0a"],["b940","\u8f9f\u8fb2\u904b\u904a\u9053\u9042\u9054\u903c\u9055\u9050\u9047\u904f\u904e\u904d\u9051\u903e\u9041\u9112\u9117\u916c\u916a\u9169\u91c9\u9237\u9257\u9238\u923d\u9240\u923e\u925b\u924b\u9264\u9251\u9234\u9249\u924d\u9245\u9239\u923f\u925a\u9598\u9698\u9694\u9695\u96cd\u96cb\u96c9\u96ca\u96f7\u96fb\u96f9\u96f6\u9756\u9774\u9776\u9810\u9811\u9813\u980a\u9812\u980c\u98fc\u98f4"],["b9a1","\u98fd\u98fe\u99b3\u99b1\u99b4\u9ae1\u9ce9\u9e82\u9f0e\u9f13\u9f20\u50e7\u50ee\u50e5\u50d6\u50ed\u50da\u50d5\u50cf\u50d1\u50f1\u50ce\u50e9\u5162\u51f3\u5283\u5282\u5331\u53ad\u55fe\u5600\u561b\u5617\u55fd\u5614\u5606\u5609\u560d\u560e\u55f7\u5616\u561f\u5608\u5610\u55f6\u5718\u5716\u5875\u587e\u5883\u5893\u588a\u5879\u5885\u587d\u58fd\u5925\u5922\u5924\u596a\u5969\u5ae1\u5ae6\u5ae9\u5ad7\u5ad6\u5ad8\u5ae3\u5b75\u5bde\u5be7\u5be1\u5be5\u5be6\u5be8\u5be2\u5be4\u5bdf\u5c0d\u5c62\u5d84\u5d87\u5e5b\u5e63\u5e55\u5e57\u5e54\u5ed3\u5ed6\u5f0a\u5f46\u5f70\u5fb9\u6147"],["ba40","\u613f\u614b\u6177\u6162\u6163\u615f\u615a\u6158\u6175\u622a\u6487\u6458\u6454\u64a4\u6478\u645f\u647a\u6451\u6467\u6434\u646d\u647b\u6572\u65a1\u65d7\u65d6\u66a2\u66a8\u669d\u699c\u69a8\u6995\u69c1\u69ae\u69d3\u69cb\u699b\u69b7\u69bb\u69ab\u69b4\u69d0\u69cd\u69ad\u69cc\u69a6\u69c3\u69a3\u6b49\u6b4c\u6c33\u6f33\u6f14\u6efe\u6f13\u6ef4\u6f29\u6f3e\u6f20\u6f2c\u6f0f\u6f02\u6f22"],["baa1","\u6eff\u6eef\u6f06\u6f31\u6f38\u6f32\u6f23\u6f15\u6f2b\u6f2f\u6f88\u6f2a\u6eec\u6f01\u6ef2\u6ecc\u6ef7\u7194\u7199\u717d\u718a\u7184\u7192\u723e\u7292\u7296\u7344\u7350\u7464\u7463\u746a\u7470\u746d\u7504\u7591\u7627\u760d\u760b\u7609\u7613\u76e1\u76e3\u7784\u777d\u777f\u7761\u78c1\u789f\u78a7\u78b3\u78a9\u78a3\u798e\u798f\u798d\u7a2e\u7a31\u7aaa\u7aa9\u7aed\u7aef\u7ba1\u7b95\u7b8b\u7b75\u7b97\u7b9d\u7b94\u7b8f\u7bb8\u7b87\u7b84\u7cb9\u7cbd\u7cbe\u7dbb\u7db0\u7d9c\u7dbd\u7dbe\u7da0\u7dca\u7db4\u7db2\u7db1\u7dba\u7da2\u7dbf\u7db5\u7db8\u7dad\u7dd2\u7dc7\u7dac"],["bb40","\u7f70\u7fe0\u7fe1\u7fdf\u805e\u805a\u8087\u8150\u8180\u818f\u8188\u818a\u817f\u8182\u81e7\u81fa\u8207\u8214\u821e\u824b\u84c9\u84bf\u84c6\u84c4\u8499\u849e\u84b2\u849c\u84cb\u84b8\u84c0\u84d3\u8490\u84bc\u84d1\u84ca\u873f\u871c\u873b\u8722\u8725\u8734\u8718\u8755\u8737\u8729\u88f3\u8902\u88f4\u88f9\u88f8\u88fd\u88e8\u891a\u88ef\u8aa6\u8a8c\u8a9e\u8aa3\u8a8d\u8aa1\u8a93\u8aa4"],["bba1","\u8aaa\u8aa5\u8aa8\u8a98\u8a91\u8a9a\u8aa7\u8c6a\u8c8d\u8c8c\u8cd3\u8cd1\u8cd2\u8d6b\u8d99\u8d95\u8dfc\u8f14\u8f12\u8f15\u8f13\u8fa3\u9060\u9058\u905c\u9063\u9059\u905e\u9062\u905d\u905b\u9119\u9118\u911e\u9175\u9178\u9177\u9174\u9278\u9280\u9285\u9298\u9296\u927b\u9293\u929c\u92a8\u927c\u9291\u95a1\u95a8\u95a9\u95a3\u95a5\u95a4\u9699\u969c\u969b\u96cc\u96d2\u9700\u977c\u9785\u97f6\u9817\u9818\u98af\u98b1\u9903\u9905\u990c\u9909\u99c1\u9aaf\u9ab0\u9ae6\u9b41\u9b42\u9cf4\u9cf6\u9cf3\u9ebc\u9f3b\u9f4a\u5104\u5100\u50fb\u50f5\u50f9\u5102\u5108\u5109\u5105\u51dc"],["bc40","\u5287\u5288\u5289\u528d\u528a\u52f0\u53b2\u562e\u563b\u5639\u5632\u563f\u5634\u5629\u5653\u564e\u5657\u5674\u5636\u562f\u5630\u5880\u589f\u589e\u58b3\u589c\u58ae\u58a9\u58a6\u596d\u5b09\u5afb\u5b0b\u5af5\u5b0c\u5b08\u5bee\u5bec\u5be9\u5beb\u5c64\u5c65\u5d9d\u5d94\u5e62\u5e5f\u5e61\u5ee2\u5eda\u5edf\u5edd\u5ee3\u5ee0\u5f48\u5f71\u5fb7\u5fb5\u6176\u6167\u616e\u615d\u6155\u6182"],["bca1","\u617c\u6170\u616b\u617e\u61a7\u6190\u61ab\u618e\u61ac\u619a\u61a4\u6194\u61ae\u622e\u6469\u646f\u6479\u649e\u64b2\u6488\u6490\u64b0\u64a5\u6493\u6495\u64a9\u6492\u64ae\u64ad\u64ab\u649a\u64ac\u6499\u64a2\u64b3\u6575\u6577\u6578\u66ae\u66ab\u66b4\u66b1\u6a23\u6a1f\u69e8\u6a01\u6a1e\u6a19\u69fd\u6a21\u6a13\u6a0a\u69f3\u6a02\u6a05\u69ed\u6a11\u6b50\u6b4e\u6ba4\u6bc5\u6bc6\u6f3f\u6f7c\u6f84\u6f51\u6f66\u6f54\u6f86\u6f6d\u6f5b\u6f78\u6f6e\u6f8e\u6f7a\u6f70\u6f64\u6f97\u6f58\u6ed5\u6f6f\u6f60\u6f5f\u719f\u71ac\u71b1\u71a8\u7256\u729b\u734e\u7357\u7469\u748b\u7483"],["bd40","\u747e\u7480\u757f\u7620\u7629\u761f\u7624\u7626\u7621\u7622\u769a\u76ba\u76e4\u778e\u7787\u778c\u7791\u778b\u78cb\u78c5\u78ba\u78ca\u78be\u78d5\u78bc\u78d0\u7a3f\u7a3c\u7a40\u7a3d\u7a37\u7a3b\u7aaf\u7aae\u7bad\u7bb1\u7bc4\u7bb4\u7bc6\u7bc7\u7bc1\u7ba0\u7bcc\u7cca\u7de0\u7df4\u7def\u7dfb\u7dd8\u7dec\u7ddd\u7de8\u7de3\u7dda\u7dde\u7de9\u7d9e\u7dd9\u7df2\u7df9\u7f75\u7f77\u7faf"],["bda1","\u7fe9\u8026\u819b\u819c\u819d\u81a0\u819a\u8198\u8517\u853d\u851a\u84ee\u852c\u852d\u8513\u8511\u8523\u8521\u8514\u84ec\u8525\u84ff\u8506\u8782\u8774\u8776\u8760\u8766\u8778\u8768\u8759\u8757\u874c\u8753\u885b\u885d\u8910\u8907\u8912\u8913\u8915\u890a\u8abc\u8ad2\u8ac7\u8ac4\u8a95\u8acb\u8af8\u8ab2\u8ac9\u8ac2\u8abf\u8ab0\u8ad6\u8acd\u8ab6\u8ab9\u8adb\u8c4c\u8c4e\u8c6c\u8ce0\u8cde\u8ce6\u8ce4\u8cec\u8ced\u8ce2\u8ce3\u8cdc\u8cea\u8ce1\u8d6d\u8d9f\u8da3\u8e2b\u8e10\u8e1d\u8e22\u8e0f\u8e29\u8e1f\u8e21\u8e1e\u8eba\u8f1d\u8f1b\u8f1f\u8f29\u8f26\u8f2a\u8f1c\u8f1e"],["be40","\u8f25\u9069\u906e\u9068\u906d\u9077\u9130\u912d\u9127\u9131\u9187\u9189\u918b\u9183\u92c5\u92bb\u92b7\u92ea\u92ac\u92e4\u92c1\u92b3\u92bc\u92d2\u92c7\u92f0\u92b2\u95ad\u95b1\u9704\u9706\u9707\u9709\u9760\u978d\u978b\u978f\u9821\u982b\u981c\u98b3\u990a\u9913\u9912\u9918\u99dd\u99d0\u99df\u99db\u99d1\u99d5\u99d2\u99d9\u9ab7\u9aee\u9aef\u9b27\u9b45\u9b44\u9b77\u9b6f\u9d06\u9d09"],["bea1","\u9d03\u9ea9\u9ebe\u9ece\u58a8\u9f52\u5112\u5118\u5114\u5110\u5115\u5180\u51aa\u51dd\u5291\u5293\u52f3\u5659\u566b\u5679\u5669\u5664\u5678\u566a\u5668\u5665\u5671\u566f\u566c\u5662\u5676\u58c1\u58be\u58c7\u58c5\u596e\u5b1d\u5b34\u5b78\u5bf0\u5c0e\u5f4a\u61b2\u6191\u61a9\u618a\u61cd\u61b6\u61be\u61ca\u61c8\u6230\u64c5\u64c1\u64cb\u64bb\u64bc\u64da\u64c4\u64c7\u64c2\u64cd\u64bf\u64d2\u64d4\u64be\u6574\u66c6\u66c9\u66b9\u66c4\u66c7\u66b8\u6a3d\u6a38\u6a3a\u6a59\u6a6b\u6a58\u6a39\u6a44\u6a62\u6a61\u6a4b\u6a47\u6a35\u6a5f\u6a48\u6b59\u6b77\u6c05\u6fc2\u6fb1\u6fa1"],["bf40","\u6fc3\u6fa4\u6fc1\u6fa7\u6fb3\u6fc0\u6fb9\u6fb6\u6fa6\u6fa0\u6fb4\u71be\u71c9\u71d0\u71d2\u71c8\u71d5\u71b9\u71ce\u71d9\u71dc\u71c3\u71c4\u7368\u749c\u74a3\u7498\u749f\u749e\u74e2\u750c\u750d\u7634\u7638\u763a\u76e7\u76e5\u77a0\u779e\u779f\u77a5\u78e8\u78da\u78ec\u78e7\u79a6\u7a4d\u7a4e\u7a46\u7a4c\u7a4b\u7aba\u7bd9\u7c11\u7bc9\u7be4\u7bdb\u7be1\u7be9\u7be6\u7cd5\u7cd6\u7e0a"],["bfa1","\u7e11\u7e08\u7e1b\u7e23\u7e1e\u7e1d\u7e09\u7e10\u7f79\u7fb2\u7ff0\u7ff1\u7fee\u8028\u81b3\u81a9\u81a8\u81fb\u8208\u8258\u8259\u854a\u8559\u8548\u8568\u8569\u8543\u8549\u856d\u856a\u855e\u8783\u879f\u879e\u87a2\u878d\u8861\u892a\u8932\u8925\u892b\u8921\u89aa\u89a6\u8ae6\u8afa\u8aeb\u8af1\u8b00\u8adc\u8ae7\u8aee\u8afe\u8b01\u8b02\u8af7\u8aed\u8af3\u8af6\u8afc\u8c6b\u8c6d\u8c93\u8cf4\u8e44\u8e31\u8e34\u8e42\u8e39\u8e35\u8f3b\u8f2f\u8f38\u8f33\u8fa8\u8fa6\u9075\u9074\u9078\u9072\u907c\u907a\u9134\u9192\u9320\u9336\u92f8\u9333\u932f\u9322\u92fc\u932b\u9304\u931a"],["c040","\u9310\u9326\u9321\u9315\u932e\u9319\u95bb\u96a7\u96a8\u96aa\u96d5\u970e\u9711\u9716\u970d\u9713\u970f\u975b\u975c\u9766\u9798\u9830\u9838\u983b\u9837\u982d\u9839\u9824\u9910\u9928\u991e\u991b\u9921\u991a\u99ed\u99e2\u99f1\u9ab8\u9abc\u9afb\u9aed\u9b28\u9b91\u9d15\u9d23\u9d26\u9d28\u9d12\u9d1b\u9ed8\u9ed4\u9f8d\u9f9c\u512a\u511f\u5121\u5132\u52f5\u568e\u5680\u5690\u5685\u5687"],["c0a1","\u568f\u58d5\u58d3\u58d1\u58ce\u5b30\u5b2a\u5b24\u5b7a\u5c37\u5c68\u5dbc\u5dba\u5dbd\u5db8\u5e6b\u5f4c\u5fbd\u61c9\u61c2\u61c7\u61e6\u61cb\u6232\u6234\u64ce\u64ca\u64d8\u64e0\u64f0\u64e6\u64ec\u64f1\u64e2\u64ed\u6582\u6583\u66d9\u66d6\u6a80\u6a94\u6a84\u6aa2\u6a9c\u6adb\u6aa3\u6a7e\u6a97\u6a90\u6aa0\u6b5c\u6bae\u6bda\u6c08\u6fd8\u6ff1\u6fdf\u6fe0\u6fdb\u6fe4\u6feb\u6fef\u6f80\u6fec\u6fe1\u6fe9\u6fd5\u6fee\u6ff0\u71e7\u71df\u71ee\u71e6\u71e5\u71ed\u71ec\u71f4\u71e0\u7235\u7246\u7370\u7372\u74a9\u74b0\u74a6\u74a8\u7646\u7642\u764c\u76ea\u77b3\u77aa\u77b0\u77ac"],["c140","\u77a7\u77ad\u77ef\u78f7\u78fa\u78f4\u78ef\u7901\u79a7\u79aa\u7a57\u7abf\u7c07\u7c0d\u7bfe\u7bf7\u7c0c\u7be0\u7ce0\u7cdc\u7cde\u7ce2\u7cdf\u7cd9\u7cdd\u7e2e\u7e3e\u7e46\u7e37\u7e32\u7e43\u7e2b\u7e3d\u7e31\u7e45\u7e41\u7e34\u7e39\u7e48\u7e35\u7e3f\u7e2f\u7f44\u7ff3\u7ffc\u8071\u8072\u8070\u806f\u8073\u81c6\u81c3\u81ba\u81c2\u81c0\u81bf\u81bd\u81c9\u81be\u81e8\u8209\u8271\u85aa"],["c1a1","\u8584\u857e\u859c\u8591\u8594\u85af\u859b\u8587\u85a8\u858a\u8667\u87c0\u87d1\u87b3\u87d2\u87c6\u87ab\u87bb\u87ba\u87c8\u87cb\u893b\u8936\u8944\u8938\u893d\u89ac\u8b0e\u8b17\u8b19\u8b1b\u8b0a\u8b20\u8b1d\u8b04\u8b10\u8c41\u8c3f\u8c73\u8cfa\u8cfd\u8cfc\u8cf8\u8cfb\u8da8\u8e49\u8e4b\u8e48\u8e4a\u8f44\u8f3e\u8f42\u8f45\u8f3f\u907f\u907d\u9084\u9081\u9082\u9080\u9139\u91a3\u919e\u919c\u934d\u9382\u9328\u9375\u934a\u9365\u934b\u9318\u937e\u936c\u935b\u9370\u935a\u9354\u95ca\u95cb\u95cc\u95c8\u95c6\u96b1\u96b8\u96d6\u971c\u971e\u97a0\u97d3\u9846\u98b6\u9935\u9a01"],["c240","\u99ff\u9bae\u9bab\u9baa\u9bad\u9d3b\u9d3f\u9e8b\u9ecf\u9ede\u9edc\u9edd\u9edb\u9f3e\u9f4b\u53e2\u5695\u56ae\u58d9\u58d8\u5b38\u5f5d\u61e3\u6233\u64f4\u64f2\u64fe\u6506\u64fa\u64fb\u64f7\u65b7\u66dc\u6726\u6ab3\u6aac\u6ac3\u6abb\u6ab8\u6ac2\u6aae\u6aaf\u6b5f\u6b78\u6baf\u7009\u700b\u6ffe\u7006\u6ffa\u7011\u700f\u71fb\u71fc\u71fe\u71f8\u7377\u7375\u74a7\u74bf\u7515\u7656\u7658"],["c2a1","\u7652\u77bd\u77bf\u77bb\u77bc\u790e\u79ae\u7a61\u7a62\u7a60\u7ac4\u7ac5\u7c2b\u7c27\u7c2a\u7c1e\u7c23\u7c21\u7ce7\u7e54\u7e55\u7e5e\u7e5a\u7e61\u7e52\u7e59\u7f48\u7ff9\u7ffb\u8077\u8076\u81cd\u81cf\u820a\u85cf\u85a9\u85cd\u85d0\u85c9\u85b0\u85ba\u85b9\u85a6\u87ef\u87ec\u87f2\u87e0\u8986\u89b2\u89f4\u8b28\u8b39\u8b2c\u8b2b\u8c50\u8d05\u8e59\u8e63\u8e66\u8e64\u8e5f\u8e55\u8ec0\u8f49\u8f4d\u9087\u9083\u9088\u91ab\u91ac\u91d0\u9394\u938a\u9396\u93a2\u93b3\u93ae\u93ac\u93b0\u9398\u939a\u9397\u95d4\u95d6\u95d0\u95d5\u96e2\u96dc\u96d9\u96db\u96de\u9724\u97a3\u97a6"],["c340","\u97ad\u97f9\u984d\u984f\u984c\u984e\u9853\u98ba\u993e\u993f\u993d\u992e\u99a5\u9a0e\u9ac1\u9b03\u9b06\u9b4f\u9b4e\u9b4d\u9bca\u9bc9\u9bfd\u9bc8\u9bc0\u9d51\u9d5d\u9d60\u9ee0\u9f15\u9f2c\u5133\u56a5\u58de\u58df\u58e2\u5bf5\u9f90\u5eec\u61f2\u61f7\u61f6\u61f5\u6500\u650f\u66e0\u66dd\u6ae5\u6add\u6ada\u6ad3\u701b\u701f\u7028\u701a\u701d\u7015\u7018\u7206\u720d\u7258\u72a2\u7378"],["c3a1","\u737a\u74bd\u74ca\u74e3\u7587\u7586\u765f\u7661\u77c7\u7919\u79b1\u7a6b\u7a69\u7c3e\u7c3f\u7c38\u7c3d\u7c37\u7c40\u7e6b\u7e6d\u7e79\u7e69\u7e6a\u7f85\u7e73\u7fb6\u7fb9\u7fb8\u81d8\u85e9\u85dd\u85ea\u85d5\u85e4\u85e5\u85f7\u87fb\u8805\u880d\u87f9\u87fe\u8960\u895f\u8956\u895e\u8b41\u8b5c\u8b58\u8b49\u8b5a\u8b4e\u8b4f\u8b46\u8b59\u8d08\u8d0a\u8e7c\u8e72\u8e87\u8e76\u8e6c\u8e7a\u8e74\u8f54\u8f4e\u8fad\u908a\u908b\u91b1\u91ae\u93e1\u93d1\u93df\u93c3\u93c8\u93dc\u93dd\u93d6\u93e2\u93cd\u93d8\u93e4\u93d7\u93e8\u95dc\u96b4\u96e3\u972a\u9727\u9761\u97dc\u97fb\u985e"],["c440","\u9858\u985b\u98bc\u9945\u9949\u9a16\u9a19\u9b0d\u9be8\u9be7\u9bd6\u9bdb\u9d89\u9d61\u9d72\u9d6a\u9d6c\u9e92\u9e97\u9e93\u9eb4\u52f8\u56a8\u56b7\u56b6\u56b4\u56bc\u58e4\u5b40\u5b43\u5b7d\u5bf6\u5dc9\u61f8\u61fa\u6518\u6514\u6519\u66e6\u6727\u6aec\u703e\u7030\u7032\u7210\u737b\u74cf\u7662\u7665\u7926\u792a\u792c\u792b\u7ac7\u7af6\u7c4c\u7c43\u7c4d\u7cef\u7cf0\u8fae\u7e7d\u7e7c"],["c4a1","\u7e82\u7f4c\u8000\u81da\u8266\u85fb\u85f9\u8611\u85fa\u8606\u860b\u8607\u860a\u8814\u8815\u8964\u89ba\u89f8\u8b70\u8b6c\u8b66\u8b6f\u8b5f\u8b6b\u8d0f\u8d0d\u8e89\u8e81\u8e85\u8e82\u91b4\u91cb\u9418\u9403\u93fd\u95e1\u9730\u98c4\u9952\u9951\u99a8\u9a2b\u9a30\u9a37\u9a35\u9c13\u9c0d\u9e79\u9eb5\u9ee8\u9f2f\u9f5f\u9f63\u9f61\u5137\u5138\u56c1\u56c0\u56c2\u5914\u5c6c\u5dcd\u61fc\u61fe\u651d\u651c\u6595\u66e9\u6afb\u6b04\u6afa\u6bb2\u704c\u721b\u72a7\u74d6\u74d4\u7669\u77d3\u7c50\u7e8f\u7e8c\u7fbc\u8617\u862d\u861a\u8823\u8822\u8821\u881f\u896a\u896c\u89bd\u8b74"],["c540","\u8b77\u8b7d\u8d13\u8e8a\u8e8d\u8e8b\u8f5f\u8faf\u91ba\u942e\u9433\u9435\u943a\u9438\u9432\u942b\u95e2\u9738\u9739\u9732\u97ff\u9867\u9865\u9957\u9a45\u9a43\u9a40\u9a3e\u9acf\u9b54\u9b51\u9c2d\u9c25\u9daf\u9db4\u9dc2\u9db8\u9e9d\u9eef\u9f19\u9f5c\u9f66\u9f67\u513c\u513b\u56c8\u56ca\u56c9\u5b7f\u5dd4\u5dd2\u5f4e\u61ff\u6524\u6b0a\u6b61\u7051\u7058\u7380\u74e4\u758a\u766e\u766c"],["c5a1","\u79b3\u7c60\u7c5f\u807e\u807d\u81df\u8972\u896f\u89fc\u8b80\u8d16\u8d17\u8e91\u8e93\u8f61\u9148\u9444\u9451\u9452\u973d\u973e\u97c3\u97c1\u986b\u9955\u9a55\u9a4d\u9ad2\u9b1a\u9c49\u9c31\u9c3e\u9c3b\u9dd3\u9dd7\u9f34\u9f6c\u9f6a\u9f94\u56cc\u5dd6\u6200\u6523\u652b\u652a\u66ec\u6b10\u74da\u7aca\u7c64\u7c63\u7c65\u7e93\u7e96\u7e94\u81e2\u8638\u863f\u8831\u8b8a\u9090\u908f\u9463\u9460\u9464\u9768\u986f\u995c\u9a5a\u9a5b\u9a57\u9ad3\u9ad4\u9ad1\u9c54\u9c57\u9c56\u9de5\u9e9f\u9ef4\u56d1\u58e9\u652c\u705e\u7671\u7672\u77d7\u7f50\u7f88\u8836\u8839\u8862\u8b93\u8b92"],["c640","\u8b96\u8277\u8d1b\u91c0\u946a\u9742\u9748\u9744\u97c6\u9870\u9a5f\u9b22\u9b58\u9c5f\u9df9\u9dfa\u9e7c\u9e7d\u9f07\u9f77\u9f72\u5ef3\u6b16\u7063\u7c6c\u7c6e\u883b\u89c0\u8ea1\u91c1\u9472\u9470\u9871\u995e\u9ad6\u9b23\u9ecc\u7064\u77da\u8b9a\u9477\u97c9\u9a62\u9a65\u7e9c\u8b9c\u8eaa\u91c5\u947d\u947e\u947c\u9c77\u9c78\u9ef7\u8c54\u947f\u9e1a\u7228\u9a6a\u9b31\u9e1b\u9e1e\u7c72"],["c940","\u4e42\u4e5c\u51f5\u531a\u5382\u4e07\u4e0c\u4e47\u4e8d\u56d7\ufa0c\u5c6e\u5f73\u4e0f\u5187\u4e0e\u4e2e\u4e93\u4ec2\u4ec9\u4ec8\u5198\u52fc\u536c\u53b9\u5720\u5903\u592c\u5c10\u5dff\u65e1\u6bb3\u6bcc\u6c14\u723f\u4e31\u4e3c\u4ee8\u4edc\u4ee9\u4ee1\u4edd\u4eda\u520c\u531c\u534c\u5722\u5723\u5917\u592f\u5b81\u5b84\u5c12\u5c3b\u5c74\u5c73\u5e04\u5e80\u5e82\u5fc9\u6209\u6250\u6c15"],["c9a1","\u6c36\u6c43\u6c3f\u6c3b\u72ae\u72b0\u738a\u79b8\u808a\u961e\u4f0e\u4f18\u4f2c\u4ef5\u4f14\u4ef1\u4f00\u4ef7\u4f08\u4f1d\u4f02\u4f05\u4f22\u4f13\u4f04\u4ef4\u4f12\u51b1\u5213\u5209\u5210\u52a6\u5322\u531f\u534d\u538a\u5407\u56e1\u56df\u572e\u572a\u5734\u593c\u5980\u597c\u5985\u597b\u597e\u5977\u597f\u5b56\u5c15\u5c25\u5c7c\u5c7a\u5c7b\u5c7e\u5ddf\u5e75\u5e84\u5f02\u5f1a\u5f74\u5fd5\u5fd4\u5fcf\u625c\u625e\u6264\u6261\u6266\u6262\u6259\u6260\u625a\u6265\u65ef\u65ee\u673e\u6739\u6738\u673b\u673a\u673f\u673c\u6733\u6c18\u6c46\u6c52\u6c5c\u6c4f\u6c4a\u6c54\u6c4b"],["ca40","\u6c4c\u7071\u725e\u72b4\u72b5\u738e\u752a\u767f\u7a75\u7f51\u8278\u827c\u8280\u827d\u827f\u864d\u897e\u9099\u9097\u9098\u909b\u9094\u9622\u9624\u9620\u9623\u4f56\u4f3b\u4f62\u4f49\u4f53\u4f64\u4f3e\u4f67\u4f52\u4f5f\u4f41\u4f58\u4f2d\u4f33\u4f3f\u4f61\u518f\u51b9\u521c\u521e\u5221\u52ad\u52ae\u5309\u5363\u5372\u538e\u538f\u5430\u5437\u542a\u5454\u5445\u5419\u541c\u5425\u5418"],["caa1","\u543d\u544f\u5441\u5428\u5424\u5447\u56ee\u56e7\u56e5\u5741\u5745\u574c\u5749\u574b\u5752\u5906\u5940\u59a6\u5998\u59a0\u5997\u598e\u59a2\u5990\u598f\u59a7\u59a1\u5b8e\u5b92\u5c28\u5c2a\u5c8d\u5c8f\u5c88\u5c8b\u5c89\u5c92\u5c8a\u5c86\u5c93\u5c95\u5de0\u5e0a\u5e0e\u5e8b\u5e89\u5e8c\u5e88\u5e8d\u5f05\u5f1d\u5f78\u5f76\u5fd2\u5fd1\u5fd0\u5fed\u5fe8\u5fee\u5ff3\u5fe1\u5fe4\u5fe3\u5ffa\u5fef\u5ff7\u5ffb\u6000\u5ff4\u623a\u6283\u628c\u628e\u628f\u6294\u6287\u6271\u627b\u627a\u6270\u6281\u6288\u6277\u627d\u6272\u6274\u6537\u65f0\u65f4\u65f3\u65f2\u65f5\u6745\u6747"],["cb40","\u6759\u6755\u674c\u6748\u675d\u674d\u675a\u674b\u6bd0\u6c19\u6c1a\u6c78\u6c67\u6c6b\u6c84\u6c8b\u6c8f\u6c71\u6c6f\u6c69\u6c9a\u6c6d\u6c87\u6c95\u6c9c\u6c66\u6c73\u6c65\u6c7b\u6c8e\u7074\u707a\u7263\u72bf\u72bd\u72c3\u72c6\u72c1\u72ba\u72c5\u7395\u7397\u7393\u7394\u7392\u753a\u7539\u7594\u7595\u7681\u793d\u8034\u8095\u8099\u8090\u8092\u809c\u8290\u828f\u8285\u828e\u8291\u8293"],["cba1","\u828a\u8283\u8284\u8c78\u8fc9\u8fbf\u909f\u90a1\u90a5\u909e\u90a7\u90a0\u9630\u9628\u962f\u962d\u4e33\u4f98\u4f7c\u4f85\u4f7d\u4f80\u4f87\u4f76\u4f74\u4f89\u4f84\u4f77\u4f4c\u4f97\u4f6a\u4f9a\u4f79\u4f81\u4f78\u4f90\u4f9c\u4f94\u4f9e\u4f92\u4f82\u4f95\u4f6b\u4f6e\u519e\u51bc\u51be\u5235\u5232\u5233\u5246\u5231\u52bc\u530a\u530b\u533c\u5392\u5394\u5487\u547f\u5481\u5491\u5482\u5488\u546b\u547a\u547e\u5465\u546c\u5474\u5466\u548d\u546f\u5461\u5460\u5498\u5463\u5467\u5464\u56f7\u56f9\u576f\u5772\u576d\u576b\u5771\u5770\u5776\u5780\u5775\u577b\u5773\u5774\u5762"],["cc40","\u5768\u577d\u590c\u5945\u59b5\u59ba\u59cf\u59ce\u59b2\u59cc\u59c1\u59b6\u59bc\u59c3\u59d6\u59b1\u59bd\u59c0\u59c8\u59b4\u59c7\u5b62\u5b65\u5b93\u5b95\u5c44\u5c47\u5cae\u5ca4\u5ca0\u5cb5\u5caf\u5ca8\u5cac\u5c9f\u5ca3\u5cad\u5ca2\u5caa\u5ca7\u5c9d\u5ca5\u5cb6\u5cb0\u5ca6\u5e17\u5e14\u5e19\u5f28\u5f22\u5f23\u5f24\u5f54\u5f82\u5f7e\u5f7d\u5fde\u5fe5\u602d\u6026\u6019\u6032\u600b"],["cca1","\u6034\u600a\u6017\u6033\u601a\u601e\u602c\u6022\u600d\u6010\u602e\u6013\u6011\u600c\u6009\u601c\u6214\u623d\u62ad\u62b4\u62d1\u62be\u62aa\u62b6\u62ca\u62ae\u62b3\u62af\u62bb\u62a9\u62b0\u62b8\u653d\u65a8\u65bb\u6609\u65fc\u6604\u6612\u6608\u65fb\u6603\u660b\u660d\u6605\u65fd\u6611\u6610\u66f6\u670a\u6785\u676c\u678e\u6792\u6776\u677b\u6798\u6786\u6784\u6774\u678d\u678c\u677a\u679f\u6791\u6799\u6783\u677d\u6781\u6778\u6779\u6794\u6b25\u6b80\u6b7e\u6bde\u6c1d\u6c93\u6cec\u6ceb\u6cee\u6cd9\u6cb6\u6cd4\u6cad\u6ce7\u6cb7\u6cd0\u6cc2\u6cba\u6cc3\u6cc6\u6ced\u6cf2"],["cd40","\u6cd2\u6cdd\u6cb4\u6c8a\u6c9d\u6c80\u6cde\u6cc0\u6d30\u6ccd\u6cc7\u6cb0\u6cf9\u6ccf\u6ce9\u6cd1\u7094\u7098\u7085\u7093\u7086\u7084\u7091\u7096\u7082\u709a\u7083\u726a\u72d6\u72cb\u72d8\u72c9\u72dc\u72d2\u72d4\u72da\u72cc\u72d1\u73a4\u73a1\u73ad\u73a6\u73a2\u73a0\u73ac\u739d\u74dd\u74e8\u753f\u7540\u753e\u758c\u7598\u76af\u76f3\u76f1\u76f0\u76f5\u77f8\u77fc\u77f9\u77fb\u77fa"],["cda1","\u77f7\u7942\u793f\u79c5\u7a78\u7a7b\u7afb\u7c75\u7cfd\u8035\u808f\u80ae\u80a3\u80b8\u80b5\u80ad\u8220\u82a0\u82c0\u82ab\u829a\u8298\u829b\u82b5\u82a7\u82ae\u82bc\u829e\u82ba\u82b4\u82a8\u82a1\u82a9\u82c2\u82a4\u82c3\u82b6\u82a2\u8670\u866f\u866d\u866e\u8c56\u8fd2\u8fcb\u8fd3\u8fcd\u8fd6\u8fd5\u8fd7\u90b2\u90b4\u90af\u90b3\u90b0\u9639\u963d\u963c\u963a\u9643\u4fcd\u4fc5\u4fd3\u4fb2\u4fc9\u4fcb\u4fc1\u4fd4\u4fdc\u4fd9\u4fbb\u4fb3\u4fdb\u4fc7\u4fd6\u4fba\u4fc0\u4fb9\u4fec\u5244\u5249\u52c0\u52c2\u533d\u537c\u5397\u5396\u5399\u5398\u54ba\u54a1\u54ad\u54a5\u54cf"],["ce40","\u54c3\u830d\u54b7\u54ae\u54d6\u54b6\u54c5\u54c6\u54a0\u5470\u54bc\u54a2\u54be\u5472\u54de\u54b0\u57b5\u579e\u579f\u57a4\u578c\u5797\u579d\u579b\u5794\u5798\u578f\u5799\u57a5\u579a\u5795\u58f4\u590d\u5953\u59e1\u59de\u59ee\u5a00\u59f1\u59dd\u59fa\u59fd\u59fc\u59f6\u59e4\u59f2\u59f7\u59db\u59e9\u59f3\u59f5\u59e0\u59fe\u59f4\u59ed\u5ba8\u5c4c\u5cd0\u5cd8\u5ccc\u5cd7\u5ccb\u5cdb"],["cea1","\u5cde\u5cda\u5cc9\u5cc7\u5cca\u5cd6\u5cd3\u5cd4\u5ccf\u5cc8\u5cc6\u5cce\u5cdf\u5cf8\u5df9\u5e21\u5e22\u5e23\u5e20\u5e24\u5eb0\u5ea4\u5ea2\u5e9b\u5ea3\u5ea5\u5f07\u5f2e\u5f56\u5f86\u6037\u6039\u6054\u6072\u605e\u6045\u6053\u6047\u6049\u605b\u604c\u6040\u6042\u605f\u6024\u6044\u6058\u6066\u606e\u6242\u6243\u62cf\u630d\u630b\u62f5\u630e\u6303\u62eb\u62f9\u630f\u630c\u62f8\u62f6\u6300\u6313\u6314\u62fa\u6315\u62fb\u62f0\u6541\u6543\u65aa\u65bf\u6636\u6621\u6632\u6635\u661c\u6626\u6622\u6633\u662b\u663a\u661d\u6634\u6639\u662e\u670f\u6710\u67c1\u67f2\u67c8\u67ba"],["cf40","\u67dc\u67bb\u67f8\u67d8\u67c0\u67b7\u67c5\u67eb\u67e4\u67df\u67b5\u67cd\u67b3\u67f7\u67f6\u67ee\u67e3\u67c2\u67b9\u67ce\u67e7\u67f0\u67b2\u67fc\u67c6\u67ed\u67cc\u67ae\u67e6\u67db\u67fa\u67c9\u67ca\u67c3\u67ea\u67cb\u6b28\u6b82\u6b84\u6bb6\u6bd6\u6bd8\u6be0\u6c20\u6c21\u6d28\u6d34\u6d2d\u6d1f\u6d3c\u6d3f\u6d12\u6d0a\u6cda\u6d33\u6d04\u6d19\u6d3a\u6d1a\u6d11\u6d00\u6d1d\u6d42"],["cfa1","\u6d01\u6d18\u6d37\u6d03\u6d0f\u6d40\u6d07\u6d20\u6d2c\u6d08\u6d22\u6d09\u6d10\u70b7\u709f\u70be\u70b1\u70b0\u70a1\u70b4\u70b5\u70a9\u7241\u7249\u724a\u726c\u7270\u7273\u726e\u72ca\u72e4\u72e8\u72eb\u72df\u72ea\u72e6\u72e3\u7385\u73cc\u73c2\u73c8\u73c5\u73b9\u73b6\u73b5\u73b4\u73eb\u73bf\u73c7\u73be\u73c3\u73c6\u73b8\u73cb\u74ec\u74ee\u752e\u7547\u7548\u75a7\u75aa\u7679\u76c4\u7708\u7703\u7704\u7705\u770a\u76f7\u76fb\u76fa\u77e7\u77e8\u7806\u7811\u7812\u7805\u7810\u780f\u780e\u7809\u7803\u7813\u794a\u794c\u794b\u7945\u7944\u79d5\u79cd\u79cf\u79d6\u79ce\u7a80"],["d040","\u7a7e\u7ad1\u7b00\u7b01\u7c7a\u7c78\u7c79\u7c7f\u7c80\u7c81\u7d03\u7d08\u7d01\u7f58\u7f91\u7f8d\u7fbe\u8007\u800e\u800f\u8014\u8037\u80d8\u80c7\u80e0\u80d1\u80c8\u80c2\u80d0\u80c5\u80e3\u80d9\u80dc\u80ca\u80d5\u80c9\u80cf\u80d7\u80e6\u80cd\u81ff\u8221\u8294\u82d9\u82fe\u82f9\u8307\u82e8\u8300\u82d5\u833a\u82eb\u82d6\u82f4\u82ec\u82e1\u82f2\u82f5\u830c\u82fb\u82f6\u82f0\u82ea"],["d0a1","\u82e4\u82e0\u82fa\u82f3\u82ed\u8677\u8674\u867c\u8673\u8841\u884e\u8867\u886a\u8869\u89d3\u8a04\u8a07\u8d72\u8fe3\u8fe1\u8fee\u8fe0\u90f1\u90bd\u90bf\u90d5\u90c5\u90be\u90c7\u90cb\u90c8\u91d4\u91d3\u9654\u964f\u9651\u9653\u964a\u964e\u501e\u5005\u5007\u5013\u5022\u5030\u501b\u4ff5\u4ff4\u5033\u5037\u502c\u4ff6\u4ff7\u5017\u501c\u5020\u5027\u5035\u502f\u5031\u500e\u515a\u5194\u5193\u51ca\u51c4\u51c5\u51c8\u51ce\u5261\u525a\u5252\u525e\u525f\u5255\u5262\u52cd\u530e\u539e\u5526\u54e2\u5517\u5512\u54e7\u54f3\u54e4\u551a\u54ff\u5504\u5508\u54eb\u5511\u5505\u54f1"],["d140","\u550a\u54fb\u54f7\u54f8\u54e0\u550e\u5503\u550b\u5701\u5702\u57cc\u5832\u57d5\u57d2\u57ba\u57c6\u57bd\u57bc\u57b8\u57b6\u57bf\u57c7\u57d0\u57b9\u57c1\u590e\u594a\u5a19\u5a16\u5a2d\u5a2e\u5a15\u5a0f\u5a17\u5a0a\u5a1e\u5a33\u5b6c\u5ba7\u5bad\u5bac\u5c03\u5c56\u5c54\u5cec\u5cff\u5cee\u5cf1\u5cf7\u5d00\u5cf9\u5e29\u5e28\u5ea8\u5eae\u5eaa\u5eac\u5f33\u5f30\u5f67\u605d\u605a\u6067"],["d1a1","\u6041\u60a2\u6088\u6080\u6092\u6081\u609d\u6083\u6095\u609b\u6097\u6087\u609c\u608e\u6219\u6246\u62f2\u6310\u6356\u632c\u6344\u6345\u6336\u6343\u63e4\u6339\u634b\u634a\u633c\u6329\u6341\u6334\u6358\u6354\u6359\u632d\u6347\u6333\u635a\u6351\u6338\u6357\u6340\u6348\u654a\u6546\u65c6\u65c3\u65c4\u65c2\u664a\u665f\u6647\u6651\u6712\u6713\u681f\u681a\u6849\u6832\u6833\u683b\u684b\u684f\u6816\u6831\u681c\u6835\u682b\u682d\u682f\u684e\u6844\u6834\u681d\u6812\u6814\u6826\u6828\u682e\u684d\u683a\u6825\u6820\u6b2c\u6b2f\u6b2d\u6b31\u6b34\u6b6d\u8082\u6b88\u6be6\u6be4"],["d240","\u6be8\u6be3\u6be2\u6be7\u6c25\u6d7a\u6d63\u6d64\u6d76\u6d0d\u6d61\u6d92\u6d58\u6d62\u6d6d\u6d6f\u6d91\u6d8d\u6def\u6d7f\u6d86\u6d5e\u6d67\u6d60\u6d97\u6d70\u6d7c\u6d5f\u6d82\u6d98\u6d2f\u6d68\u6d8b\u6d7e\u6d80\u6d84\u6d16\u6d83\u6d7b\u6d7d\u6d75\u6d90\u70dc\u70d3\u70d1\u70dd\u70cb\u7f39\u70e2\u70d7\u70d2\u70de\u70e0\u70d4\u70cd\u70c5\u70c6\u70c7\u70da\u70ce\u70e1\u7242\u7278"],["d2a1","\u7277\u7276\u7300\u72fa\u72f4\u72fe\u72f6\u72f3\u72fb\u7301\u73d3\u73d9\u73e5\u73d6\u73bc\u73e7\u73e3\u73e9\u73dc\u73d2\u73db\u73d4\u73dd\u73da\u73d7\u73d8\u73e8\u74de\u74df\u74f4\u74f5\u7521\u755b\u755f\u75b0\u75c1\u75bb\u75c4\u75c0\u75bf\u75b6\u75ba\u768a\u76c9\u771d\u771b\u7710\u7713\u7712\u7723\u7711\u7715\u7719\u771a\u7722\u7727\u7823\u782c\u7822\u7835\u782f\u7828\u782e\u782b\u7821\u7829\u7833\u782a\u7831\u7954\u795b\u794f\u795c\u7953\u7952\u7951\u79eb\u79ec\u79e0\u79ee\u79ed\u79ea\u79dc\u79de\u79dd\u7a86\u7a89\u7a85\u7a8b\u7a8c\u7a8a\u7a87\u7ad8\u7b10"],["d340","\u7b04\u7b13\u7b05\u7b0f\u7b08\u7b0a\u7b0e\u7b09\u7b12\u7c84\u7c91\u7c8a\u7c8c\u7c88\u7c8d\u7c85\u7d1e\u7d1d\u7d11\u7d0e\u7d18\u7d16\u7d13\u7d1f\u7d12\u7d0f\u7d0c\u7f5c\u7f61\u7f5e\u7f60\u7f5d\u7f5b\u7f96\u7f92\u7fc3\u7fc2\u7fc0\u8016\u803e\u8039\u80fa\u80f2\u80f9\u80f5\u8101\u80fb\u8100\u8201\u822f\u8225\u8333\u832d\u8344\u8319\u8351\u8325\u8356\u833f\u8341\u8326\u831c\u8322"],["d3a1","\u8342\u834e\u831b\u832a\u8308\u833c\u834d\u8316\u8324\u8320\u8337\u832f\u8329\u8347\u8345\u834c\u8353\u831e\u832c\u834b\u8327\u8348\u8653\u8652\u86a2\u86a8\u8696\u868d\u8691\u869e\u8687\u8697\u8686\u868b\u869a\u8685\u86a5\u8699\u86a1\u86a7\u8695\u8698\u868e\u869d\u8690\u8694\u8843\u8844\u886d\u8875\u8876\u8872\u8880\u8871\u887f\u886f\u8883\u887e\u8874\u887c\u8a12\u8c47\u8c57\u8c7b\u8ca4\u8ca3\u8d76\u8d78\u8db5\u8db7\u8db6\u8ed1\u8ed3\u8ffe\u8ff5\u9002\u8fff\u8ffb\u9004\u8ffc\u8ff6\u90d6\u90e0\u90d9\u90da\u90e3\u90df\u90e5\u90d8\u90db\u90d7\u90dc\u90e4\u9150"],["d440","\u914e\u914f\u91d5\u91e2\u91da\u965c\u965f\u96bc\u98e3\u9adf\u9b2f\u4e7f\u5070\u506a\u5061\u505e\u5060\u5053\u504b\u505d\u5072\u5048\u504d\u5041\u505b\u504a\u5062\u5015\u5045\u505f\u5069\u506b\u5063\u5064\u5046\u5040\u506e\u5073\u5057\u5051\u51d0\u526b\u526d\u526c\u526e\u52d6\u52d3\u532d\u539c\u5575\u5576\u553c\u554d\u5550\u5534\u552a\u5551\u5562\u5536\u5535\u5530\u5552\u5545"],["d4a1","\u550c\u5532\u5565\u554e\u5539\u5548\u552d\u553b\u5540\u554b\u570a\u5707\u57fb\u5814\u57e2\u57f6\u57dc\u57f4\u5800\u57ed\u57fd\u5808\u57f8\u580b\u57f3\u57cf\u5807\u57ee\u57e3\u57f2\u57e5\u57ec\u57e1\u580e\u57fc\u5810\u57e7\u5801\u580c\u57f1\u57e9\u57f0\u580d\u5804\u595c\u5a60\u5a58\u5a55\u5a67\u5a5e\u5a38\u5a35\u5a6d\u5a50\u5a5f\u5a65\u5a6c\u5a53\u5a64\u5a57\u5a43\u5a5d\u5a52\u5a44\u5a5b\u5a48\u5a8e\u5a3e\u5a4d\u5a39\u5a4c\u5a70\u5a69\u5a47\u5a51\u5a56\u5a42\u5a5c\u5b72\u5b6e\u5bc1\u5bc0\u5c59\u5d1e\u5d0b\u5d1d\u5d1a\u5d20\u5d0c\u5d28\u5d0d\u5d26\u5d25\u5d0f"],["d540","\u5d30\u5d12\u5d23\u5d1f\u5d2e\u5e3e\u5e34\u5eb1\u5eb4\u5eb9\u5eb2\u5eb3\u5f36\u5f38\u5f9b\u5f96\u5f9f\u608a\u6090\u6086\u60be\u60b0\u60ba\u60d3\u60d4\u60cf\u60e4\u60d9\u60dd\u60c8\u60b1\u60db\u60b7\u60ca\u60bf\u60c3\u60cd\u60c0\u6332\u6365\u638a\u6382\u637d\u63bd\u639e\u63ad\u639d\u6397\u63ab\u638e\u636f\u6387\u6390\u636e\u63af\u6375\u639c\u636d\u63ae\u637c\u63a4\u633b\u639f"],["d5a1","\u6378\u6385\u6381\u6391\u638d\u6370\u6553\u65cd\u6665\u6661\u665b\u6659\u665c\u6662\u6718\u6879\u6887\u6890\u689c\u686d\u686e\u68ae\u68ab\u6956\u686f\u68a3\u68ac\u68a9\u6875\u6874\u68b2\u688f\u6877\u6892\u687c\u686b\u6872\u68aa\u6880\u6871\u687e\u689b\u6896\u688b\u68a0\u6889\u68a4\u6878\u687b\u6891\u688c\u688a\u687d\u6b36\u6b33\u6b37\u6b38\u6b91\u6b8f\u6b8d\u6b8e\u6b8c\u6c2a\u6dc0\u6dab\u6db4\u6db3\u6e74\u6dac\u6de9\u6de2\u6db7\u6df6\u6dd4\u6e00\u6dc8\u6de0\u6ddf\u6dd6\u6dbe\u6de5\u6ddc\u6ddd\u6ddb\u6df4\u6dca\u6dbd\u6ded\u6df0\u6dba\u6dd5\u6dc2\u6dcf\u6dc9"],["d640","\u6dd0\u6df2\u6dd3\u6dfd\u6dd7\u6dcd\u6de3\u6dbb\u70fa\u710d\u70f7\u7117\u70f4\u710c\u70f0\u7104\u70f3\u7110\u70fc\u70ff\u7106\u7113\u7100\u70f8\u70f6\u710b\u7102\u710e\u727e\u727b\u727c\u727f\u731d\u7317\u7307\u7311\u7318\u730a\u7308\u72ff\u730f\u731e\u7388\u73f6\u73f8\u73f5\u7404\u7401\u73fd\u7407\u7400\u73fa\u73fc\u73ff\u740c\u740b\u73f4\u7408\u7564\u7563\u75ce\u75d2\u75cf"],["d6a1","\u75cb\u75cc\u75d1\u75d0\u768f\u7689\u76d3\u7739\u772f\u772d\u7731\u7732\u7734\u7733\u773d\u7725\u773b\u7735\u7848\u7852\u7849\u784d\u784a\u784c\u7826\u7845\u7850\u7964\u7967\u7969\u796a\u7963\u796b\u7961\u79bb\u79fa\u79f8\u79f6\u79f7\u7a8f\u7a94\u7a90\u7b35\u7b47\u7b34\u7b25\u7b30\u7b22\u7b24\u7b33\u7b18\u7b2a\u7b1d\u7b31\u7b2b\u7b2d\u7b2f\u7b32\u7b38\u7b1a\u7b23\u7c94\u7c98\u7c96\u7ca3\u7d35\u7d3d\u7d38\u7d36\u7d3a\u7d45\u7d2c\u7d29\u7d41\u7d47\u7d3e\u7d3f\u7d4a\u7d3b\u7d28\u7f63\u7f95\u7f9c\u7f9d\u7f9b\u7fca\u7fcb\u7fcd\u7fd0\u7fd1\u7fc7\u7fcf\u7fc9\u801f"],["d740","\u801e\u801b\u8047\u8043\u8048\u8118\u8125\u8119\u811b\u812d\u811f\u812c\u811e\u8121\u8115\u8127\u811d\u8122\u8211\u8238\u8233\u823a\u8234\u8232\u8274\u8390\u83a3\u83a8\u838d\u837a\u8373\u83a4\u8374\u838f\u8381\u8395\u8399\u8375\u8394\u83a9\u837d\u8383\u838c\u839d\u839b\u83aa\u838b\u837e\u83a5\u83af\u8388\u8397\u83b0\u837f\u83a6\u8387\u83ae\u8376\u839a\u8659\u8656\u86bf\u86b7"],["d7a1","\u86c2\u86c1\u86c5\u86ba\u86b0\u86c8\u86b9\u86b3\u86b8\u86cc\u86b4\u86bb\u86bc\u86c3\u86bd\u86be\u8852\u8889\u8895\u88a8\u88a2\u88aa\u889a\u8891\u88a1\u889f\u8898\u88a7\u8899\u889b\u8897\u88a4\u88ac\u888c\u8893\u888e\u8982\u89d6\u89d9\u89d5\u8a30\u8a27\u8a2c\u8a1e\u8c39\u8c3b\u8c5c\u8c5d\u8c7d\u8ca5\u8d7d\u8d7b\u8d79\u8dbc\u8dc2\u8db9\u8dbf\u8dc1\u8ed8\u8ede\u8edd\u8edc\u8ed7\u8ee0\u8ee1\u9024\u900b\u9011\u901c\u900c\u9021\u90ef\u90ea\u90f0\u90f4\u90f2\u90f3\u90d4\u90eb\u90ec\u90e9\u9156\u9158\u915a\u9153\u9155\u91ec\u91f4\u91f1\u91f3\u91f8\u91e4\u91f9\u91ea"],["d840","\u91eb\u91f7\u91e8\u91ee\u957a\u9586\u9588\u967c\u966d\u966b\u9671\u966f\u96bf\u976a\u9804\u98e5\u9997\u509b\u5095\u5094\u509e\u508b\u50a3\u5083\u508c\u508e\u509d\u5068\u509c\u5092\u5082\u5087\u515f\u51d4\u5312\u5311\u53a4\u53a7\u5591\u55a8\u55a5\u55ad\u5577\u5645\u55a2\u5593\u5588\u558f\u55b5\u5581\u55a3\u5592\u55a4\u557d\u558c\u55a6\u557f\u5595\u55a1\u558e\u570c\u5829\u5837"],["d8a1","\u5819\u581e\u5827\u5823\u5828\u57f5\u5848\u5825\u581c\u581b\u5833\u583f\u5836\u582e\u5839\u5838\u582d\u582c\u583b\u5961\u5aaf\u5a94\u5a9f\u5a7a\u5aa2\u5a9e\u5a78\u5aa6\u5a7c\u5aa5\u5aac\u5a95\u5aae\u5a37\u5a84\u5a8a\u5a97\u5a83\u5a8b\u5aa9\u5a7b\u5a7d\u5a8c\u5a9c\u5a8f\u5a93\u5a9d\u5bea\u5bcd\u5bcb\u5bd4\u5bd1\u5bca\u5bce\u5c0c\u5c30\u5d37\u5d43\u5d6b\u5d41\u5d4b\u5d3f\u5d35\u5d51\u5d4e\u5d55\u5d33\u5d3a\u5d52\u5d3d\u5d31\u5d59\u5d42\u5d39\u5d49\u5d38\u5d3c\u5d32\u5d36\u5d40\u5d45\u5e44\u5e41\u5f58\u5fa6\u5fa5\u5fab\u60c9\u60b9\u60cc\u60e2\u60ce\u60c4\u6114"],["d940","\u60f2\u610a\u6116\u6105\u60f5\u6113\u60f8\u60fc\u60fe\u60c1\u6103\u6118\u611d\u6110\u60ff\u6104\u610b\u624a\u6394\u63b1\u63b0\u63ce\u63e5\u63e8\u63ef\u63c3\u649d\u63f3\u63ca\u63e0\u63f6\u63d5\u63f2\u63f5\u6461\u63df\u63be\u63dd\u63dc\u63c4\u63d8\u63d3\u63c2\u63c7\u63cc\u63cb\u63c8\u63f0\u63d7\u63d9\u6532\u6567\u656a\u6564\u655c\u6568\u6565\u658c\u659d\u659e\u65ae\u65d0\u65d2"],["d9a1","\u667c\u666c\u667b\u6680\u6671\u6679\u666a\u6672\u6701\u690c\u68d3\u6904\u68dc\u692a\u68ec\u68ea\u68f1\u690f\u68d6\u68f7\u68eb\u68e4\u68f6\u6913\u6910\u68f3\u68e1\u6907\u68cc\u6908\u6970\u68b4\u6911\u68ef\u68c6\u6914\u68f8\u68d0\u68fd\u68fc\u68e8\u690b\u690a\u6917\u68ce\u68c8\u68dd\u68de\u68e6\u68f4\u68d1\u6906\u68d4\u68e9\u6915\u6925\u68c7\u6b39\u6b3b\u6b3f\u6b3c\u6b94\u6b97\u6b99\u6b95\u6bbd\u6bf0\u6bf2\u6bf3\u6c30\u6dfc\u6e46\u6e47\u6e1f\u6e49\u6e88\u6e3c\u6e3d\u6e45\u6e62\u6e2b\u6e3f\u6e41\u6e5d\u6e73\u6e1c\u6e33\u6e4b\u6e40\u6e51\u6e3b\u6e03\u6e2e\u6e5e"],["da40","\u6e68\u6e5c\u6e61\u6e31\u6e28\u6e60\u6e71\u6e6b\u6e39\u6e22\u6e30\u6e53\u6e65\u6e27\u6e78\u6e64\u6e77\u6e55\u6e79\u6e52\u6e66\u6e35\u6e36\u6e5a\u7120\u711e\u712f\u70fb\u712e\u7131\u7123\u7125\u7122\u7132\u711f\u7128\u713a\u711b\u724b\u725a\u7288\u7289\u7286\u7285\u728b\u7312\u730b\u7330\u7322\u7331\u7333\u7327\u7332\u732d\u7326\u7323\u7335\u730c\u742e\u742c\u7430\u742b\u7416"],["daa1","\u741a\u7421\u742d\u7431\u7424\u7423\u741d\u7429\u7420\u7432\u74fb\u752f\u756f\u756c\u75e7\u75da\u75e1\u75e6\u75dd\u75df\u75e4\u75d7\u7695\u7692\u76da\u7746\u7747\u7744\u774d\u7745\u774a\u774e\u774b\u774c\u77de\u77ec\u7860\u7864\u7865\u785c\u786d\u7871\u786a\u786e\u7870\u7869\u7868\u785e\u7862\u7974\u7973\u7972\u7970\u7a02\u7a0a\u7a03\u7a0c\u7a04\u7a99\u7ae6\u7ae4\u7b4a\u7b3b\u7b44\u7b48\u7b4c\u7b4e\u7b40\u7b58\u7b45\u7ca2\u7c9e\u7ca8\u7ca1\u7d58\u7d6f\u7d63\u7d53\u7d56\u7d67\u7d6a\u7d4f\u7d6d\u7d5c\u7d6b\u7d52\u7d54\u7d69\u7d51\u7d5f\u7d4e\u7f3e\u7f3f\u7f65"],["db40","\u7f66\u7fa2\u7fa0\u7fa1\u7fd7\u8051\u804f\u8050\u80fe\u80d4\u8143\u814a\u8152\u814f\u8147\u813d\u814d\u813a\u81e6\u81ee\u81f7\u81f8\u81f9\u8204\u823c\u823d\u823f\u8275\u833b\u83cf\u83f9\u8423\u83c0\u83e8\u8412\u83e7\u83e4\u83fc\u83f6\u8410\u83c6\u83c8\u83eb\u83e3\u83bf\u8401\u83dd\u83e5\u83d8\u83ff\u83e1\u83cb\u83ce\u83d6\u83f5\u83c9\u8409\u840f\u83de\u8411\u8406\u83c2\u83f3"],["dba1","\u83d5\u83fa\u83c7\u83d1\u83ea\u8413\u83c3\u83ec\u83ee\u83c4\u83fb\u83d7\u83e2\u841b\u83db\u83fe\u86d8\u86e2\u86e6\u86d3\u86e3\u86da\u86ea\u86dd\u86eb\u86dc\u86ec\u86e9\u86d7\u86e8\u86d1\u8848\u8856\u8855\u88ba\u88d7\u88b9\u88b8\u88c0\u88be\u88b6\u88bc\u88b7\u88bd\u88b2\u8901\u88c9\u8995\u8998\u8997\u89dd\u89da\u89db\u8a4e\u8a4d\u8a39\u8a59\u8a40\u8a57\u8a58\u8a44\u8a45\u8a52\u8a48\u8a51\u8a4a\u8a4c\u8a4f\u8c5f\u8c81\u8c80\u8cba\u8cbe\u8cb0\u8cb9\u8cb5\u8d84\u8d80\u8d89\u8dd8\u8dd3\u8dcd\u8dc7\u8dd6\u8ddc\u8dcf\u8dd5\u8dd9\u8dc8\u8dd7\u8dc5\u8eef\u8ef7\u8efa"],["dc40","\u8ef9\u8ee6\u8eee\u8ee5\u8ef5\u8ee7\u8ee8\u8ef6\u8eeb\u8ef1\u8eec\u8ef4\u8ee9\u902d\u9034\u902f\u9106\u912c\u9104\u90ff\u90fc\u9108\u90f9\u90fb\u9101\u9100\u9107\u9105\u9103\u9161\u9164\u915f\u9162\u9160\u9201\u920a\u9225\u9203\u921a\u9226\u920f\u920c\u9200\u9212\u91ff\u91fd\u9206\u9204\u9227\u9202\u921c\u9224\u9219\u9217\u9205\u9216\u957b\u958d\u958c\u9590\u9687\u967e\u9688"],["dca1","\u9689\u9683\u9680\u96c2\u96c8\u96c3\u96f1\u96f0\u976c\u9770\u976e\u9807\u98a9\u98eb\u9ce6\u9ef9\u4e83\u4e84\u4eb6\u50bd\u50bf\u50c6\u50ae\u50c4\u50ca\u50b4\u50c8\u50c2\u50b0\u50c1\u50ba\u50b1\u50cb\u50c9\u50b6\u50b8\u51d7\u527a\u5278\u527b\u527c\u55c3\u55db\u55cc\u55d0\u55cb\u55ca\u55dd\u55c0\u55d4\u55c4\u55e9\u55bf\u55d2\u558d\u55cf\u55d5\u55e2\u55d6\u55c8\u55f2\u55cd\u55d9\u55c2\u5714\u5853\u5868\u5864\u584f\u584d\u5849\u586f\u5855\u584e\u585d\u5859\u5865\u585b\u583d\u5863\u5871\u58fc\u5ac7\u5ac4\u5acb\u5aba\u5ab8\u5ab1\u5ab5\u5ab0\u5abf\u5ac8\u5abb\u5ac6"],["dd40","\u5ab7\u5ac0\u5aca\u5ab4\u5ab6\u5acd\u5ab9\u5a90\u5bd6\u5bd8\u5bd9\u5c1f\u5c33\u5d71\u5d63\u5d4a\u5d65\u5d72\u5d6c\u5d5e\u5d68\u5d67\u5d62\u5df0\u5e4f\u5e4e\u5e4a\u5e4d\u5e4b\u5ec5\u5ecc\u5ec6\u5ecb\u5ec7\u5f40\u5faf\u5fad\u60f7\u6149\u614a\u612b\u6145\u6136\u6132\u612e\u6146\u612f\u614f\u6129\u6140\u6220\u9168\u6223\u6225\u6224\u63c5\u63f1\u63eb\u6410\u6412\u6409\u6420\u6424"],["dda1","\u6433\u6443\u641f\u6415\u6418\u6439\u6437\u6422\u6423\u640c\u6426\u6430\u6428\u6441\u6435\u642f\u640a\u641a\u6440\u6425\u6427\u640b\u63e7\u641b\u642e\u6421\u640e\u656f\u6592\u65d3\u6686\u668c\u6695\u6690\u668b\u668a\u6699\u6694\u6678\u6720\u6966\u695f\u6938\u694e\u6962\u6971\u693f\u6945\u696a\u6939\u6942\u6957\u6959\u697a\u6948\u6949\u6935\u696c\u6933\u693d\u6965\u68f0\u6978\u6934\u6969\u6940\u696f\u6944\u6976\u6958\u6941\u6974\u694c\u693b\u694b\u6937\u695c\u694f\u6951\u6932\u6952\u692f\u697b\u693c\u6b46\u6b45\u6b43\u6b42\u6b48\u6b41\u6b9b\ufa0d\u6bfb\u6bfc"],["de40","\u6bf9\u6bf7\u6bf8\u6e9b\u6ed6\u6ec8\u6e8f\u6ec0\u6e9f\u6e93\u6e94\u6ea0\u6eb1\u6eb9\u6ec6\u6ed2\u6ebd\u6ec1\u6e9e\u6ec9\u6eb7\u6eb0\u6ecd\u6ea6\u6ecf\u6eb2\u6ebe\u6ec3\u6edc\u6ed8\u6e99\u6e92\u6e8e\u6e8d\u6ea4\u6ea1\u6ebf\u6eb3\u6ed0\u6eca\u6e97\u6eae\u6ea3\u7147\u7154\u7152\u7163\u7160\u7141\u715d\u7162\u7172\u7178\u716a\u7161\u7142\u7158\u7143\u714b\u7170\u715f\u7150\u7153"],["dea1","\u7144\u714d\u715a\u724f\u728d\u728c\u7291\u7290\u728e\u733c\u7342\u733b\u733a\u7340\u734a\u7349\u7444\u744a\u744b\u7452\u7451\u7457\u7440\u744f\u7450\u744e\u7442\u7446\u744d\u7454\u74e1\u74ff\u74fe\u74fd\u751d\u7579\u7577\u6983\u75ef\u760f\u7603\u75f7\u75fe\u75fc\u75f9\u75f8\u7610\u75fb\u75f6\u75ed\u75f5\u75fd\u7699\u76b5\u76dd\u7755\u775f\u7760\u7752\u7756\u775a\u7769\u7767\u7754\u7759\u776d\u77e0\u7887\u789a\u7894\u788f\u7884\u7895\u7885\u7886\u78a1\u7883\u7879\u7899\u7880\u7896\u787b\u797c\u7982\u797d\u7979\u7a11\u7a18\u7a19\u7a12\u7a17\u7a15\u7a22\u7a13"],["df40","\u7a1b\u7a10\u7aa3\u7aa2\u7a9e\u7aeb\u7b66\u7b64\u7b6d\u7b74\u7b69\u7b72\u7b65\u7b73\u7b71\u7b70\u7b61\u7b78\u7b76\u7b63\u7cb2\u7cb4\u7caf\u7d88\u7d86\u7d80\u7d8d\u7d7f\u7d85\u7d7a\u7d8e\u7d7b\u7d83\u7d7c\u7d8c\u7d94\u7d84\u7d7d\u7d92\u7f6d\u7f6b\u7f67\u7f68\u7f6c\u7fa6\u7fa5\u7fa7\u7fdb\u7fdc\u8021\u8164\u8160\u8177\u815c\u8169\u815b\u8162\u8172\u6721\u815e\u8176\u8167\u816f"],["dfa1","\u8144\u8161\u821d\u8249\u8244\u8240\u8242\u8245\u84f1\u843f\u8456\u8476\u8479\u848f\u848d\u8465\u8451\u8440\u8486\u8467\u8430\u844d\u847d\u845a\u8459\u8474\u8473\u845d\u8507\u845e\u8437\u843a\u8434\u847a\u8443\u8478\u8432\u8445\u8429\u83d9\u844b\u842f\u8442\u842d\u845f\u8470\u8439\u844e\u844c\u8452\u846f\u84c5\u848e\u843b\u8447\u8436\u8433\u8468\u847e\u8444\u842b\u8460\u8454\u846e\u8450\u870b\u8704\u86f7\u870c\u86fa\u86d6\u86f5\u874d\u86f8\u870e\u8709\u8701\u86f6\u870d\u8705\u88d6\u88cb\u88cd\u88ce\u88de\u88db\u88da\u88cc\u88d0\u8985\u899b\u89df\u89e5\u89e4"],["e040","\u89e1\u89e0\u89e2\u89dc\u89e6\u8a76\u8a86\u8a7f\u8a61\u8a3f\u8a77\u8a82\u8a84\u8a75\u8a83\u8a81\u8a74\u8a7a\u8c3c\u8c4b\u8c4a\u8c65\u8c64\u8c66\u8c86\u8c84\u8c85\u8ccc\u8d68\u8d69\u8d91\u8d8c\u8d8e\u8d8f\u8d8d\u8d93\u8d94\u8d90\u8d92\u8df0\u8de0\u8dec\u8df1\u8dee\u8dd0\u8de9\u8de3\u8de2\u8de7\u8df2\u8deb\u8df4\u8f06\u8eff\u8f01\u8f00\u8f05\u8f07\u8f08\u8f02\u8f0b\u9052\u903f"],["e0a1","\u9044\u9049\u903d\u9110\u910d\u910f\u9111\u9116\u9114\u910b\u910e\u916e\u916f\u9248\u9252\u9230\u923a\u9266\u9233\u9265\u925e\u9283\u922e\u924a\u9246\u926d\u926c\u924f\u9260\u9267\u926f\u9236\u9261\u9270\u9231\u9254\u9263\u9250\u9272\u924e\u9253\u924c\u9256\u9232\u959f\u959c\u959e\u959b\u9692\u9693\u9691\u9697\u96ce\u96fa\u96fd\u96f8\u96f5\u9773\u9777\u9778\u9772\u980f\u980d\u980e\u98ac\u98f6\u98f9\u99af\u99b2\u99b0\u99b5\u9aad\u9aab\u9b5b\u9cea\u9ced\u9ce7\u9e80\u9efd\u50e6\u50d4\u50d7\u50e8\u50f3\u50db\u50ea\u50dd\u50e4\u50d3\u50ec\u50f0\u50ef\u50e3\u50e0"],["e140","\u51d8\u5280\u5281\u52e9\u52eb\u5330\u53ac\u5627\u5615\u560c\u5612\u55fc\u560f\u561c\u5601\u5613\u5602\u55fa\u561d\u5604\u55ff\u55f9\u5889\u587c\u5890\u5898\u5886\u5881\u587f\u5874\u588b\u587a\u5887\u5891\u588e\u5876\u5882\u5888\u587b\u5894\u588f\u58fe\u596b\u5adc\u5aee\u5ae5\u5ad5\u5aea\u5ada\u5aed\u5aeb\u5af3\u5ae2\u5ae0\u5adb\u5aec\u5ade\u5add\u5ad9\u5ae8\u5adf\u5b77\u5be0"],["e1a1","\u5be3\u5c63\u5d82\u5d80\u5d7d\u5d86\u5d7a\u5d81\u5d77\u5d8a\u5d89\u5d88\u5d7e\u5d7c\u5d8d\u5d79\u5d7f\u5e58\u5e59\u5e53\u5ed8\u5ed1\u5ed7\u5ece\u5edc\u5ed5\u5ed9\u5ed2\u5ed4\u5f44\u5f43\u5f6f\u5fb6\u612c\u6128\u6141\u615e\u6171\u6173\u6152\u6153\u6172\u616c\u6180\u6174\u6154\u617a\u615b\u6165\u613b\u616a\u6161\u6156\u6229\u6227\u622b\u642b\u644d\u645b\u645d\u6474\u6476\u6472\u6473\u647d\u6475\u6466\u64a6\u644e\u6482\u645e\u645c\u644b\u6453\u6460\u6450\u647f\u643f\u646c\u646b\u6459\u6465\u6477\u6573\u65a0\u66a1\u66a0\u669f\u6705\u6704\u6722\u69b1\u69b6\u69c9"],["e240","\u69a0\u69ce\u6996\u69b0\u69ac\u69bc\u6991\u6999\u698e\u69a7\u698d\u69a9\u69be\u69af\u69bf\u69c4\u69bd\u69a4\u69d4\u69b9\u69ca\u699a\u69cf\u69b3\u6993\u69aa\u69a1\u699e\u69d9\u6997\u6990\u69c2\u69b5\u69a5\u69c6\u6b4a\u6b4d\u6b4b\u6b9e\u6b9f\u6ba0\u6bc3\u6bc4\u6bfe\u6ece\u6ef5\u6ef1\u6f03\u6f25\u6ef8\u6f37\u6efb\u6f2e\u6f09\u6f4e\u6f19\u6f1a\u6f27\u6f18\u6f3b\u6f12\u6eed\u6f0a"],["e2a1","\u6f36\u6f73\u6ef9\u6eee\u6f2d\u6f40\u6f30\u6f3c\u6f35\u6eeb\u6f07\u6f0e\u6f43\u6f05\u6efd\u6ef6\u6f39\u6f1c\u6efc\u6f3a\u6f1f\u6f0d\u6f1e\u6f08\u6f21\u7187\u7190\u7189\u7180\u7185\u7182\u718f\u717b\u7186\u7181\u7197\u7244\u7253\u7297\u7295\u7293\u7343\u734d\u7351\u734c\u7462\u7473\u7471\u7475\u7472\u7467\u746e\u7500\u7502\u7503\u757d\u7590\u7616\u7608\u760c\u7615\u7611\u760a\u7614\u76b8\u7781\u777c\u7785\u7782\u776e\u7780\u776f\u777e\u7783\u78b2\u78aa\u78b4\u78ad\u78a8\u787e\u78ab\u789e\u78a5\u78a0\u78ac\u78a2\u78a4\u7998\u798a\u798b\u7996\u7995\u7994\u7993"],["e340","\u7997\u7988\u7992\u7990\u7a2b\u7a4a\u7a30\u7a2f\u7a28\u7a26\u7aa8\u7aab\u7aac\u7aee\u7b88\u7b9c\u7b8a\u7b91\u7b90\u7b96\u7b8d\u7b8c\u7b9b\u7b8e\u7b85\u7b98\u5284\u7b99\u7ba4\u7b82\u7cbb\u7cbf\u7cbc\u7cba\u7da7\u7db7\u7dc2\u7da3\u7daa\u7dc1\u7dc0\u7dc5\u7d9d\u7dce\u7dc4\u7dc6\u7dcb\u7dcc\u7daf\u7db9\u7d96\u7dbc\u7d9f\u7da6\u7dae\u7da9\u7da1\u7dc9\u7f73\u7fe2\u7fe3\u7fe5\u7fde"],["e3a1","\u8024\u805d\u805c\u8189\u8186\u8183\u8187\u818d\u818c\u818b\u8215\u8497\u84a4\u84a1\u849f\u84ba\u84ce\u84c2\u84ac\u84ae\u84ab\u84b9\u84b4\u84c1\u84cd\u84aa\u849a\u84b1\u84d0\u849d\u84a7\u84bb\u84a2\u8494\u84c7\u84cc\u849b\u84a9\u84af\u84a8\u84d6\u8498\u84b6\u84cf\u84a0\u84d7\u84d4\u84d2\u84db\u84b0\u8491\u8661\u8733\u8723\u8728\u876b\u8740\u872e\u871e\u8721\u8719\u871b\u8743\u872c\u8741\u873e\u8746\u8720\u8732\u872a\u872d\u873c\u8712\u873a\u8731\u8735\u8742\u8726\u8727\u8738\u8724\u871a\u8730\u8711\u88f7\u88e7\u88f1\u88f2\u88fa\u88fe\u88ee\u88fc\u88f6\u88fb"],["e440","\u88f0\u88ec\u88eb\u899d\u89a1\u899f\u899e\u89e9\u89eb\u89e8\u8aab\u8a99\u8a8b\u8a92\u8a8f\u8a96\u8c3d\u8c68\u8c69\u8cd5\u8ccf\u8cd7\u8d96\u8e09\u8e02\u8dff\u8e0d\u8dfd\u8e0a\u8e03\u8e07\u8e06\u8e05\u8dfe\u8e00\u8e04\u8f10\u8f11\u8f0e\u8f0d\u9123\u911c\u9120\u9122\u911f\u911d\u911a\u9124\u9121\u911b\u917a\u9172\u9179\u9173\u92a5\u92a4\u9276\u929b\u927a\u92a0\u9294\u92aa\u928d"],["e4a1","\u92a6\u929a\u92ab\u9279\u9297\u927f\u92a3\u92ee\u928e\u9282\u9295\u92a2\u927d\u9288\u92a1\u928a\u9286\u928c\u9299\u92a7\u927e\u9287\u92a9\u929d\u928b\u922d\u969e\u96a1\u96ff\u9758\u977d\u977a\u977e\u9783\u9780\u9782\u977b\u9784\u9781\u977f\u97ce\u97cd\u9816\u98ad\u98ae\u9902\u9900\u9907\u999d\u999c\u99c3\u99b9\u99bb\u99ba\u99c2\u99bd\u99c7\u9ab1\u9ae3\u9ae7\u9b3e\u9b3f\u9b60\u9b61\u9b5f\u9cf1\u9cf2\u9cf5\u9ea7\u50ff\u5103\u5130\u50f8\u5106\u5107\u50f6\u50fe\u510b\u510c\u50fd\u510a\u528b\u528c\u52f1\u52ef\u5648\u5642\u564c\u5635\u5641\u564a\u5649\u5646\u5658"],["e540","\u565a\u5640\u5633\u563d\u562c\u563e\u5638\u562a\u563a\u571a\u58ab\u589d\u58b1\u58a0\u58a3\u58af\u58ac\u58a5\u58a1\u58ff\u5aff\u5af4\u5afd\u5af7\u5af6\u5b03\u5af8\u5b02\u5af9\u5b01\u5b07\u5b05\u5b0f\u5c67\u5d99\u5d97\u5d9f\u5d92\u5da2\u5d93\u5d95\u5da0\u5d9c\u5da1\u5d9a\u5d9e\u5e69\u5e5d\u5e60\u5e5c\u7df3\u5edb\u5ede\u5ee1\u5f49\u5fb2\u618b\u6183\u6179\u61b1\u61b0\u61a2\u6189"],["e5a1","\u619b\u6193\u61af\u61ad\u619f\u6192\u61aa\u61a1\u618d\u6166\u61b3\u622d\u646e\u6470\u6496\u64a0\u6485\u6497\u649c\u648f\u648b\u648a\u648c\u64a3\u649f\u6468\u64b1\u6498\u6576\u657a\u6579\u657b\u65b2\u65b3\u66b5\u66b0\u66a9\u66b2\u66b7\u66aa\u66af\u6a00\u6a06\u6a17\u69e5\u69f8\u6a15\u69f1\u69e4\u6a20\u69ff\u69ec\u69e2\u6a1b\u6a1d\u69fe\u6a27\u69f2\u69ee\u6a14\u69f7\u69e7\u6a40\u6a08\u69e6\u69fb\u6a0d\u69fc\u69eb\u6a09\u6a04\u6a18\u6a25\u6a0f\u69f6\u6a26\u6a07\u69f4\u6a16\u6b51\u6ba5\u6ba3\u6ba2\u6ba6\u6c01\u6c00\u6bff\u6c02\u6f41\u6f26\u6f7e\u6f87\u6fc6\u6f92"],["e640","\u6f8d\u6f89\u6f8c\u6f62\u6f4f\u6f85\u6f5a\u6f96\u6f76\u6f6c\u6f82\u6f55\u6f72\u6f52\u6f50\u6f57\u6f94\u6f93\u6f5d\u6f00\u6f61\u6f6b\u6f7d\u6f67\u6f90\u6f53\u6f8b\u6f69\u6f7f\u6f95\u6f63\u6f77\u6f6a\u6f7b\u71b2\u71af\u719b\u71b0\u71a0\u719a\u71a9\u71b5\u719d\u71a5\u719e\u71a4\u71a1\u71aa\u719c\u71a7\u71b3\u7298\u729a\u7358\u7352\u735e\u735f\u7360\u735d\u735b\u7361\u735a\u7359"],["e6a1","\u7362\u7487\u7489\u748a\u7486\u7481\u747d\u7485\u7488\u747c\u7479\u7508\u7507\u757e\u7625\u761e\u7619\u761d\u761c\u7623\u761a\u7628\u761b\u769c\u769d\u769e\u769b\u778d\u778f\u7789\u7788\u78cd\u78bb\u78cf\u78cc\u78d1\u78ce\u78d4\u78c8\u78c3\u78c4\u78c9\u799a\u79a1\u79a0\u799c\u79a2\u799b\u6b76\u7a39\u7ab2\u7ab4\u7ab3\u7bb7\u7bcb\u7bbe\u7bac\u7bce\u7baf\u7bb9\u7bca\u7bb5\u7cc5\u7cc8\u7ccc\u7ccb\u7df7\u7ddb\u7dea\u7de7\u7dd7\u7de1\u7e03\u7dfa\u7de6\u7df6\u7df1\u7df0\u7dee\u7ddf\u7f76\u7fac\u7fb0\u7fad\u7fed\u7feb\u7fea\u7fec\u7fe6\u7fe8\u8064\u8067\u81a3\u819f"],["e740","\u819e\u8195\u81a2\u8199\u8197\u8216\u824f\u8253\u8252\u8250\u824e\u8251\u8524\u853b\u850f\u8500\u8529\u850e\u8509\u850d\u851f\u850a\u8527\u851c\u84fb\u852b\u84fa\u8508\u850c\u84f4\u852a\u84f2\u8515\u84f7\u84eb\u84f3\u84fc\u8512\u84ea\u84e9\u8516\u84fe\u8528\u851d\u852e\u8502\u84fd\u851e\u84f6\u8531\u8526\u84e7\u84e8\u84f0\u84ef\u84f9\u8518\u8520\u8530\u850b\u8519\u852f\u8662"],["e7a1","\u8756\u8763\u8764\u8777\u87e1\u8773\u8758\u8754\u875b\u8752\u8761\u875a\u8751\u875e\u876d\u876a\u8750\u874e\u875f\u875d\u876f\u876c\u877a\u876e\u875c\u8765\u874f\u877b\u8775\u8762\u8767\u8769\u885a\u8905\u890c\u8914\u890b\u8917\u8918\u8919\u8906\u8916\u8911\u890e\u8909\u89a2\u89a4\u89a3\u89ed\u89f0\u89ec\u8acf\u8ac6\u8ab8\u8ad3\u8ad1\u8ad4\u8ad5\u8abb\u8ad7\u8abe\u8ac0\u8ac5\u8ad8\u8ac3\u8aba\u8abd\u8ad9\u8c3e\u8c4d\u8c8f\u8ce5\u8cdf\u8cd9\u8ce8\u8cda\u8cdd\u8ce7\u8da0\u8d9c\u8da1\u8d9b\u8e20\u8e23\u8e25\u8e24\u8e2e\u8e15\u8e1b\u8e16\u8e11\u8e19\u8e26\u8e27"],["e840","\u8e14\u8e12\u8e18\u8e13\u8e1c\u8e17\u8e1a\u8f2c\u8f24\u8f18\u8f1a\u8f20\u8f23\u8f16\u8f17\u9073\u9070\u906f\u9067\u906b\u912f\u912b\u9129\u912a\u9132\u9126\u912e\u9185\u9186\u918a\u9181\u9182\u9184\u9180\u92d0\u92c3\u92c4\u92c0\u92d9\u92b6\u92cf\u92f1\u92df\u92d8\u92e9\u92d7\u92dd\u92cc\u92ef\u92c2\u92e8\u92ca\u92c8\u92ce\u92e6\u92cd\u92d5\u92c9\u92e0\u92de\u92e7\u92d1\u92d3"],["e8a1","\u92b5\u92e1\u92c6\u92b4\u957c\u95ac\u95ab\u95ae\u95b0\u96a4\u96a2\u96d3\u9705\u9708\u9702\u975a\u978a\u978e\u9788\u97d0\u97cf\u981e\u981d\u9826\u9829\u9828\u9820\u981b\u9827\u98b2\u9908\u98fa\u9911\u9914\u9916\u9917\u9915\u99dc\u99cd\u99cf\u99d3\u99d4\u99ce\u99c9\u99d6\u99d8\u99cb\u99d7\u99cc\u9ab3\u9aec\u9aeb\u9af3\u9af2\u9af1\u9b46\u9b43\u9b67\u9b74\u9b71\u9b66\u9b76\u9b75\u9b70\u9b68\u9b64\u9b6c\u9cfc\u9cfa\u9cfd\u9cff\u9cf7\u9d07\u9d00\u9cf9\u9cfb\u9d08\u9d05\u9d04\u9e83\u9ed3\u9f0f\u9f10\u511c\u5113\u5117\u511a\u5111\u51de\u5334\u53e1\u5670\u5660\u566e"],["e940","\u5673\u5666\u5663\u566d\u5672\u565e\u5677\u571c\u571b\u58c8\u58bd\u58c9\u58bf\u58ba\u58c2\u58bc\u58c6\u5b17\u5b19\u5b1b\u5b21\u5b14\u5b13\u5b10\u5b16\u5b28\u5b1a\u5b20\u5b1e\u5bef\u5dac\u5db1\u5da9\u5da7\u5db5\u5db0\u5dae\u5daa\u5da8\u5db2\u5dad\u5daf\u5db4\u5e67\u5e68\u5e66\u5e6f\u5ee9\u5ee7\u5ee6\u5ee8\u5ee5\u5f4b\u5fbc\u619d\u61a8\u6196\u61c5\u61b4\u61c6\u61c1\u61cc\u61ba"],["e9a1","\u61bf\u61b8\u618c\u64d7\u64d6\u64d0\u64cf\u64c9\u64bd\u6489\u64c3\u64db\u64f3\u64d9\u6533\u657f\u657c\u65a2\u66c8\u66be\u66c0\u66ca\u66cb\u66cf\u66bd\u66bb\u66ba\u66cc\u6723\u6a34\u6a66\u6a49\u6a67\u6a32\u6a68\u6a3e\u6a5d\u6a6d\u6a76\u6a5b\u6a51\u6a28\u6a5a\u6a3b\u6a3f\u6a41\u6a6a\u6a64\u6a50\u6a4f\u6a54\u6a6f\u6a69\u6a60\u6a3c\u6a5e\u6a56\u6a55\u6a4d\u6a4e\u6a46\u6b55\u6b54\u6b56\u6ba7\u6baa\u6bab\u6bc8\u6bc7\u6c04\u6c03\u6c06\u6fad\u6fcb\u6fa3\u6fc7\u6fbc\u6fce\u6fc8\u6f5e\u6fc4\u6fbd\u6f9e\u6fca\u6fa8\u7004\u6fa5\u6fae\u6fba\u6fac\u6faa\u6fcf\u6fbf\u6fb8"],["ea40","\u6fa2\u6fc9\u6fab\u6fcd\u6faf\u6fb2\u6fb0\u71c5\u71c2\u71bf\u71b8\u71d6\u71c0\u71c1\u71cb\u71d4\u71ca\u71c7\u71cf\u71bd\u71d8\u71bc\u71c6\u71da\u71db\u729d\u729e\u7369\u7366\u7367\u736c\u7365\u736b\u736a\u747f\u749a\u74a0\u7494\u7492\u7495\u74a1\u750b\u7580\u762f\u762d\u7631\u763d\u7633\u763c\u7635\u7632\u7630\u76bb\u76e6\u779a\u779d\u77a1\u779c\u779b\u77a2\u77a3\u7795\u7799"],["eaa1","\u7797\u78dd\u78e9\u78e5\u78ea\u78de\u78e3\u78db\u78e1\u78e2\u78ed\u78df\u78e0\u79a4\u7a44\u7a48\u7a47\u7ab6\u7ab8\u7ab5\u7ab1\u7ab7\u7bde\u7be3\u7be7\u7bdd\u7bd5\u7be5\u7bda\u7be8\u7bf9\u7bd4\u7bea\u7be2\u7bdc\u7beb\u7bd8\u7bdf\u7cd2\u7cd4\u7cd7\u7cd0\u7cd1\u7e12\u7e21\u7e17\u7e0c\u7e1f\u7e20\u7e13\u7e0e\u7e1c\u7e15\u7e1a\u7e22\u7e0b\u7e0f\u7e16\u7e0d\u7e14\u7e25\u7e24\u7f43\u7f7b\u7f7c\u7f7a\u7fb1\u7fef\u802a\u8029\u806c\u81b1\u81a6\u81ae\u81b9\u81b5\u81ab\u81b0\u81ac\u81b4\u81b2\u81b7\u81a7\u81f2\u8255\u8256\u8257\u8556\u8545\u856b\u854d\u8553\u8561\u8558"],["eb40","\u8540\u8546\u8564\u8541\u8562\u8544\u8551\u8547\u8563\u853e\u855b\u8571\u854e\u856e\u8575\u8555\u8567\u8560\u858c\u8566\u855d\u8554\u8565\u856c\u8663\u8665\u8664\u879b\u878f\u8797\u8793\u8792\u8788\u8781\u8796\u8798\u8779\u8787\u87a3\u8785\u8790\u8791\u879d\u8784\u8794\u879c\u879a\u8789\u891e\u8926\u8930\u892d\u892e\u8927\u8931\u8922\u8929\u8923\u892f\u892c\u891f\u89f1\u8ae0"],["eba1","\u8ae2\u8af2\u8af4\u8af5\u8add\u8b14\u8ae4\u8adf\u8af0\u8ac8\u8ade\u8ae1\u8ae8\u8aff\u8aef\u8afb\u8c91\u8c92\u8c90\u8cf5\u8cee\u8cf1\u8cf0\u8cf3\u8d6c\u8d6e\u8da5\u8da7\u8e33\u8e3e\u8e38\u8e40\u8e45\u8e36\u8e3c\u8e3d\u8e41\u8e30\u8e3f\u8ebd\u8f36\u8f2e\u8f35\u8f32\u8f39\u8f37\u8f34\u9076\u9079\u907b\u9086\u90fa\u9133\u9135\u9136\u9193\u9190\u9191\u918d\u918f\u9327\u931e\u9308\u931f\u9306\u930f\u937a\u9338\u933c\u931b\u9323\u9312\u9301\u9346\u932d\u930e\u930d\u92cb\u931d\u92fa\u9325\u9313\u92f9\u92f7\u9334\u9302\u9324\u92ff\u9329\u9339\u9335\u932a\u9314\u930c"],["ec40","\u930b\u92fe\u9309\u9300\u92fb\u9316\u95bc\u95cd\u95be\u95b9\u95ba\u95b6\u95bf\u95b5\u95bd\u96a9\u96d4\u970b\u9712\u9710\u9799\u9797\u9794\u97f0\u97f8\u9835\u982f\u9832\u9924\u991f\u9927\u9929\u999e\u99ee\u99ec\u99e5\u99e4\u99f0\u99e3\u99ea\u99e9\u99e7\u9ab9\u9abf\u9ab4\u9abb\u9af6\u9afa\u9af9\u9af7\u9b33\u9b80\u9b85\u9b87\u9b7c\u9b7e\u9b7b\u9b82\u9b93\u9b92\u9b90\u9b7a\u9b95"],["eca1","\u9b7d\u9b88\u9d25\u9d17\u9d20\u9d1e\u9d14\u9d29\u9d1d\u9d18\u9d22\u9d10\u9d19\u9d1f\u9e88\u9e86\u9e87\u9eae\u9ead\u9ed5\u9ed6\u9efa\u9f12\u9f3d\u5126\u5125\u5122\u5124\u5120\u5129\u52f4\u5693\u568c\u568d\u5686\u5684\u5683\u567e\u5682\u567f\u5681\u58d6\u58d4\u58cf\u58d2\u5b2d\u5b25\u5b32\u5b23\u5b2c\u5b27\u5b26\u5b2f\u5b2e\u5b7b\u5bf1\u5bf2\u5db7\u5e6c\u5e6a\u5fbe\u5fbb\u61c3\u61b5\u61bc\u61e7\u61e0\u61e5\u61e4\u61e8\u61de\u64ef\u64e9\u64e3\u64eb\u64e4\u64e8\u6581\u6580\u65b6\u65da\u66d2\u6a8d\u6a96\u6a81\u6aa5\u6a89\u6a9f\u6a9b\u6aa1\u6a9e\u6a87\u6a93\u6a8e"],["ed40","\u6a95\u6a83\u6aa8\u6aa4\u6a91\u6a7f\u6aa6\u6a9a\u6a85\u6a8c\u6a92\u6b5b\u6bad\u6c09\u6fcc\u6fa9\u6ff4\u6fd4\u6fe3\u6fdc\u6fed\u6fe7\u6fe6\u6fde\u6ff2\u6fdd\u6fe2\u6fe8\u71e1\u71f1\u71e8\u71f2\u71e4\u71f0\u71e2\u7373\u736e\u736f\u7497\u74b2\u74ab\u7490\u74aa\u74ad\u74b1\u74a5\u74af\u7510\u7511\u7512\u750f\u7584\u7643\u7648\u7649\u7647\u76a4\u76e9\u77b5\u77ab\u77b2\u77b7\u77b6"],["eda1","\u77b4\u77b1\u77a8\u77f0\u78f3\u78fd\u7902\u78fb\u78fc\u78f2\u7905\u78f9\u78fe\u7904\u79ab\u79a8\u7a5c\u7a5b\u7a56\u7a58\u7a54\u7a5a\u7abe\u7ac0\u7ac1\u7c05\u7c0f\u7bf2\u7c00\u7bff\u7bfb\u7c0e\u7bf4\u7c0b\u7bf3\u7c02\u7c09\u7c03\u7c01\u7bf8\u7bfd\u7c06\u7bf0\u7bf1\u7c10\u7c0a\u7ce8\u7e2d\u7e3c\u7e42\u7e33\u9848\u7e38\u7e2a\u7e49\u7e40\u7e47\u7e29\u7e4c\u7e30\u7e3b\u7e36\u7e44\u7e3a\u7f45\u7f7f\u7f7e\u7f7d\u7ff4\u7ff2\u802c\u81bb\u81c4\u81cc\u81ca\u81c5\u81c7\u81bc\u81e9\u825b\u825a\u825c\u8583\u8580\u858f\u85a7\u8595\u85a0\u858b\u85a3\u857b\u85a4\u859a\u859e"],["ee40","\u8577\u857c\u8589\u85a1\u857a\u8578\u8557\u858e\u8596\u8586\u858d\u8599\u859d\u8581\u85a2\u8582\u8588\u8585\u8579\u8576\u8598\u8590\u859f\u8668\u87be\u87aa\u87ad\u87c5\u87b0\u87ac\u87b9\u87b5\u87bc\u87ae\u87c9\u87c3\u87c2\u87cc\u87b7\u87af\u87c4\u87ca\u87b4\u87b6\u87bf\u87b8\u87bd\u87de\u87b2\u8935\u8933\u893c\u893e\u8941\u8952\u8937\u8942\u89ad\u89af\u89ae\u89f2\u89f3\u8b1e"],["eea1","\u8b18\u8b16\u8b11\u8b05\u8b0b\u8b22\u8b0f\u8b12\u8b15\u8b07\u8b0d\u8b08\u8b06\u8b1c\u8b13\u8b1a\u8c4f\u8c70\u8c72\u8c71\u8c6f\u8c95\u8c94\u8cf9\u8d6f\u8e4e\u8e4d\u8e53\u8e50\u8e4c\u8e47\u8f43\u8f40\u9085\u907e\u9138\u919a\u91a2\u919b\u9199\u919f\u91a1\u919d\u91a0\u93a1\u9383\u93af\u9364\u9356\u9347\u937c\u9358\u935c\u9376\u9349\u9350\u9351\u9360\u936d\u938f\u934c\u936a\u9379\u9357\u9355\u9352\u934f\u9371\u9377\u937b\u9361\u935e\u9363\u9367\u9380\u934e\u9359\u95c7\u95c0\u95c9\u95c3\u95c5\u95b7\u96ae\u96b0\u96ac\u9720\u971f\u9718\u971d\u9719\u979a\u97a1\u979c"],["ef40","\u979e\u979d\u97d5\u97d4\u97f1\u9841\u9844\u984a\u9849\u9845\u9843\u9925\u992b\u992c\u992a\u9933\u9932\u992f\u992d\u9931\u9930\u9998\u99a3\u99a1\u9a02\u99fa\u99f4\u99f7\u99f9\u99f8\u99f6\u99fb\u99fd\u99fe\u99fc\u9a03\u9abe\u9afe\u9afd\u9b01\u9afc\u9b48\u9b9a\u9ba8\u9b9e\u9b9b\u9ba6\u9ba1\u9ba5\u9ba4\u9b86\u9ba2\u9ba0\u9baf\u9d33\u9d41\u9d67\u9d36\u9d2e\u9d2f\u9d31\u9d38\u9d30"],["efa1","\u9d45\u9d42\u9d43\u9d3e\u9d37\u9d40\u9d3d\u7ff5\u9d2d\u9e8a\u9e89\u9e8d\u9eb0\u9ec8\u9eda\u9efb\u9eff\u9f24\u9f23\u9f22\u9f54\u9fa0\u5131\u512d\u512e\u5698\u569c\u5697\u569a\u569d\u5699\u5970\u5b3c\u5c69\u5c6a\u5dc0\u5e6d\u5e6e\u61d8\u61df\u61ed\u61ee\u61f1\u61ea\u61f0\u61eb\u61d6\u61e9\u64ff\u6504\u64fd\u64f8\u6501\u6503\u64fc\u6594\u65db\u66da\u66db\u66d8\u6ac5\u6ab9\u6abd\u6ae1\u6ac6\u6aba\u6ab6\u6ab7\u6ac7\u6ab4\u6aad\u6b5e\u6bc9\u6c0b\u7007\u700c\u700d\u7001\u7005\u7014\u700e\u6fff\u7000\u6ffb\u7026\u6ffc\u6ff7\u700a\u7201\u71ff\u71f9\u7203\u71fd\u7376"],["f040","\u74b8\u74c0\u74b5\u74c1\u74be\u74b6\u74bb\u74c2\u7514\u7513\u765c\u7664\u7659\u7650\u7653\u7657\u765a\u76a6\u76bd\u76ec\u77c2\u77ba\u78ff\u790c\u7913\u7914\u7909\u7910\u7912\u7911\u79ad\u79ac\u7a5f\u7c1c\u7c29\u7c19\u7c20\u7c1f\u7c2d\u7c1d\u7c26\u7c28\u7c22\u7c25\u7c30\u7e5c\u7e50\u7e56\u7e63\u7e58\u7e62\u7e5f\u7e51\u7e60\u7e57\u7e53\u7fb5\u7fb3\u7ff7\u7ff8\u8075\u81d1\u81d2"],["f0a1","\u81d0\u825f\u825e\u85b4\u85c6\u85c0\u85c3\u85c2\u85b3\u85b5\u85bd\u85c7\u85c4\u85bf\u85cb\u85ce\u85c8\u85c5\u85b1\u85b6\u85d2\u8624\u85b8\u85b7\u85be\u8669\u87e7\u87e6\u87e2\u87db\u87eb\u87ea\u87e5\u87df\u87f3\u87e4\u87d4\u87dc\u87d3\u87ed\u87d8\u87e3\u87a4\u87d7\u87d9\u8801\u87f4\u87e8\u87dd\u8953\u894b\u894f\u894c\u8946\u8950\u8951\u8949\u8b2a\u8b27\u8b23\u8b33\u8b30\u8b35\u8b47\u8b2f\u8b3c\u8b3e\u8b31\u8b25\u8b37\u8b26\u8b36\u8b2e\u8b24\u8b3b\u8b3d\u8b3a\u8c42\u8c75\u8c99\u8c98\u8c97\u8cfe\u8d04\u8d02\u8d00\u8e5c\u8e62\u8e60\u8e57\u8e56\u8e5e\u8e65\u8e67"],["f140","\u8e5b\u8e5a\u8e61\u8e5d\u8e69\u8e54\u8f46\u8f47\u8f48\u8f4b\u9128\u913a\u913b\u913e\u91a8\u91a5\u91a7\u91af\u91aa\u93b5\u938c\u9392\u93b7\u939b\u939d\u9389\u93a7\u938e\u93aa\u939e\u93a6\u9395\u9388\u9399\u939f\u938d\u93b1\u9391\u93b2\u93a4\u93a8\u93b4\u93a3\u93a5\u95d2\u95d3\u95d1\u96b3\u96d7\u96da\u5dc2\u96df\u96d8\u96dd\u9723\u9722\u9725\u97ac\u97ae\u97a8\u97ab\u97a4\u97aa"],["f1a1","\u97a2\u97a5\u97d7\u97d9\u97d6\u97d8\u97fa\u9850\u9851\u9852\u98b8\u9941\u993c\u993a\u9a0f\u9a0b\u9a09\u9a0d\u9a04\u9a11\u9a0a\u9a05\u9a07\u9a06\u9ac0\u9adc\u9b08\u9b04\u9b05\u9b29\u9b35\u9b4a\u9b4c\u9b4b\u9bc7\u9bc6\u9bc3\u9bbf\u9bc1\u9bb5\u9bb8\u9bd3\u9bb6\u9bc4\u9bb9\u9bbd\u9d5c\u9d53\u9d4f\u9d4a\u9d5b\u9d4b\u9d59\u9d56\u9d4c\u9d57\u9d52\u9d54\u9d5f\u9d58\u9d5a\u9e8e\u9e8c\u9edf\u9f01\u9f00\u9f16\u9f25\u9f2b\u9f2a\u9f29\u9f28\u9f4c\u9f55\u5134\u5135\u5296\u52f7\u53b4\u56ab\u56ad\u56a6\u56a7\u56aa\u56ac\u58da\u58dd\u58db\u5912\u5b3d\u5b3e\u5b3f\u5dc3\u5e70"],["f240","\u5fbf\u61fb\u6507\u6510\u650d\u6509\u650c\u650e\u6584\u65de\u65dd\u66de\u6ae7\u6ae0\u6acc\u6ad1\u6ad9\u6acb\u6adf\u6adc\u6ad0\u6aeb\u6acf\u6acd\u6ade\u6b60\u6bb0\u6c0c\u7019\u7027\u7020\u7016\u702b\u7021\u7022\u7023\u7029\u7017\u7024\u701c\u702a\u720c\u720a\u7207\u7202\u7205\u72a5\u72a6\u72a4\u72a3\u72a1\u74cb\u74c5\u74b7\u74c3\u7516\u7660\u77c9\u77ca\u77c4\u77f1\u791d\u791b"],["f2a1","\u7921\u791c\u7917\u791e\u79b0\u7a67\u7a68\u7c33\u7c3c\u7c39\u7c2c\u7c3b\u7cec\u7cea\u7e76\u7e75\u7e78\u7e70\u7e77\u7e6f\u7e7a\u7e72\u7e74\u7e68\u7f4b\u7f4a\u7f83\u7f86\u7fb7\u7ffd\u7ffe\u8078\u81d7\u81d5\u8264\u8261\u8263\u85eb\u85f1\u85ed\u85d9\u85e1\u85e8\u85da\u85d7\u85ec\u85f2\u85f8\u85d8\u85df\u85e3\u85dc\u85d1\u85f0\u85e6\u85ef\u85de\u85e2\u8800\u87fa\u8803\u87f6\u87f7\u8809\u880c\u880b\u8806\u87fc\u8808\u87ff\u880a\u8802\u8962\u895a\u895b\u8957\u8961\u895c\u8958\u895d\u8959\u8988\u89b7\u89b6\u89f6\u8b50\u8b48\u8b4a\u8b40\u8b53\u8b56\u8b54\u8b4b\u8b55"],["f340","\u8b51\u8b42\u8b52\u8b57\u8c43\u8c77\u8c76\u8c9a\u8d06\u8d07\u8d09\u8dac\u8daa\u8dad\u8dab\u8e6d\u8e78\u8e73\u8e6a\u8e6f\u8e7b\u8ec2\u8f52\u8f51\u8f4f\u8f50\u8f53\u8fb4\u9140\u913f\u91b0\u91ad\u93de\u93c7\u93cf\u93c2\u93da\u93d0\u93f9\u93ec\u93cc\u93d9\u93a9\u93e6\u93ca\u93d4\u93ee\u93e3\u93d5\u93c4\u93ce\u93c0\u93d2\u93e7\u957d\u95da\u95db\u96e1\u9729\u972b\u972c\u9728\u9726"],["f3a1","\u97b3\u97b7\u97b6\u97dd\u97de\u97df\u985c\u9859\u985d\u9857\u98bf\u98bd\u98bb\u98be\u9948\u9947\u9943\u99a6\u99a7\u9a1a\u9a15\u9a25\u9a1d\u9a24\u9a1b\u9a22\u9a20\u9a27\u9a23\u9a1e\u9a1c\u9a14\u9ac2\u9b0b\u9b0a\u9b0e\u9b0c\u9b37\u9bea\u9beb\u9be0\u9bde\u9be4\u9be6\u9be2\u9bf0\u9bd4\u9bd7\u9bec\u9bdc\u9bd9\u9be5\u9bd5\u9be1\u9bda\u9d77\u9d81\u9d8a\u9d84\u9d88\u9d71\u9d80\u9d78\u9d86\u9d8b\u9d8c\u9d7d\u9d6b\u9d74\u9d75\u9d70\u9d69\u9d85\u9d73\u9d7b\u9d82\u9d6f\u9d79\u9d7f\u9d87\u9d68\u9e94\u9e91\u9ec0\u9efc\u9f2d\u9f40\u9f41\u9f4d\u9f56\u9f57\u9f58\u5337\u56b2"],["f440","\u56b5\u56b3\u58e3\u5b45\u5dc6\u5dc7\u5eee\u5eef\u5fc0\u5fc1\u61f9\u6517\u6516\u6515\u6513\u65df\u66e8\u66e3\u66e4\u6af3\u6af0\u6aea\u6ae8\u6af9\u6af1\u6aee\u6aef\u703c\u7035\u702f\u7037\u7034\u7031\u7042\u7038\u703f\u703a\u7039\u7040\u703b\u7033\u7041\u7213\u7214\u72a8\u737d\u737c\u74ba\u76ab\u76aa\u76be\u76ed\u77cc\u77ce\u77cf\u77cd\u77f2\u7925\u7923\u7927\u7928\u7924\u7929"],["f4a1","\u79b2\u7a6e\u7a6c\u7a6d\u7af7\u7c49\u7c48\u7c4a\u7c47\u7c45\u7cee\u7e7b\u7e7e\u7e81\u7e80\u7fba\u7fff\u8079\u81db\u81d9\u820b\u8268\u8269\u8622\u85ff\u8601\u85fe\u861b\u8600\u85f6\u8604\u8609\u8605\u860c\u85fd\u8819\u8810\u8811\u8817\u8813\u8816\u8963\u8966\u89b9\u89f7\u8b60\u8b6a\u8b5d\u8b68\u8b63\u8b65\u8b67\u8b6d\u8dae\u8e86\u8e88\u8e84\u8f59\u8f56\u8f57\u8f55\u8f58\u8f5a\u908d\u9143\u9141\u91b7\u91b5\u91b2\u91b3\u940b\u9413\u93fb\u9420\u940f\u9414\u93fe\u9415\u9410\u9428\u9419\u940d\u93f5\u9400\u93f7\u9407\u940e\u9416\u9412\u93fa\u9409\u93f8\u940a\u93ff"],["f540","\u93fc\u940c\u93f6\u9411\u9406\u95de\u95e0\u95df\u972e\u972f\u97b9\u97bb\u97fd\u97fe\u9860\u9862\u9863\u985f\u98c1\u98c2\u9950\u994e\u9959\u994c\u994b\u9953\u9a32\u9a34\u9a31\u9a2c\u9a2a\u9a36\u9a29\u9a2e\u9a38\u9a2d\u9ac7\u9aca\u9ac6\u9b10\u9b12\u9b11\u9c0b\u9c08\u9bf7\u9c05\u9c12\u9bf8\u9c40\u9c07\u9c0e\u9c06\u9c17\u9c14\u9c09\u9d9f\u9d99\u9da4\u9d9d\u9d92\u9d98\u9d90\u9d9b"],["f5a1","\u9da0\u9d94\u9d9c\u9daa\u9d97\u9da1\u9d9a\u9da2\u9da8\u9d9e\u9da3\u9dbf\u9da9\u9d96\u9da6\u9da7\u9e99\u9e9b\u9e9a\u9ee5\u9ee4\u9ee7\u9ee6\u9f30\u9f2e\u9f5b\u9f60\u9f5e\u9f5d\u9f59\u9f91\u513a\u5139\u5298\u5297\u56c3\u56bd\u56be\u5b48\u5b47\u5dcb\u5dcf\u5ef1\u61fd\u651b\u6b02\u6afc\u6b03\u6af8\u6b00\u7043\u7044\u704a\u7048\u7049\u7045\u7046\u721d\u721a\u7219\u737e\u7517\u766a\u77d0\u792d\u7931\u792f\u7c54\u7c53\u7cf2\u7e8a\u7e87\u7e88\u7e8b\u7e86\u7e8d\u7f4d\u7fbb\u8030\u81dd\u8618\u862a\u8626\u861f\u8623\u861c\u8619\u8627\u862e\u8621\u8620\u8629\u861e\u8625"],["f640","\u8829\u881d\u881b\u8820\u8824\u881c\u882b\u884a\u896d\u8969\u896e\u896b\u89fa\u8b79\u8b78\u8b45\u8b7a\u8b7b\u8d10\u8d14\u8daf\u8e8e\u8e8c\u8f5e\u8f5b\u8f5d\u9146\u9144\u9145\u91b9\u943f\u943b\u9436\u9429\u943d\u943c\u9430\u9439\u942a\u9437\u942c\u9440\u9431\u95e5\u95e4\u95e3\u9735\u973a\u97bf\u97e1\u9864\u98c9\u98c6\u98c0\u9958\u9956\u9a39\u9a3d\u9a46\u9a44\u9a42\u9a41\u9a3a"],["f6a1","\u9a3f\u9acd\u9b15\u9b17\u9b18\u9b16\u9b3a\u9b52\u9c2b\u9c1d\u9c1c\u9c2c\u9c23\u9c28\u9c29\u9c24\u9c21\u9db7\u9db6\u9dbc\u9dc1\u9dc7\u9dca\u9dcf\u9dbe\u9dc5\u9dc3\u9dbb\u9db5\u9dce\u9db9\u9dba\u9dac\u9dc8\u9db1\u9dad\u9dcc\u9db3\u9dcd\u9db2\u9e7a\u9e9c\u9eeb\u9eee\u9eed\u9f1b\u9f18\u9f1a\u9f31\u9f4e\u9f65\u9f64\u9f92\u4eb9\u56c6\u56c5\u56cb\u5971\u5b4b\u5b4c\u5dd5\u5dd1\u5ef2\u6521\u6520\u6526\u6522\u6b0b\u6b08\u6b09\u6c0d\u7055\u7056\u7057\u7052\u721e\u721f\u72a9\u737f\u74d8\u74d5\u74d9\u74d7\u766d\u76ad\u7935\u79b4\u7a70\u7a71\u7c57\u7c5c\u7c59\u7c5b\u7c5a"],["f740","\u7cf4\u7cf1\u7e91\u7f4f\u7f87\u81de\u826b\u8634\u8635\u8633\u862c\u8632\u8636\u882c\u8828\u8826\u882a\u8825\u8971\u89bf\u89be\u89fb\u8b7e\u8b84\u8b82\u8b86\u8b85\u8b7f\u8d15\u8e95\u8e94\u8e9a\u8e92\u8e90\u8e96\u8e97\u8f60\u8f62\u9147\u944c\u9450\u944a\u944b\u944f\u9447\u9445\u9448\u9449\u9446\u973f\u97e3\u986a\u9869\u98cb\u9954\u995b\u9a4e\u9a53\u9a54\u9a4c\u9a4f\u9a48\u9a4a"],["f7a1","\u9a49\u9a52\u9a50\u9ad0\u9b19\u9b2b\u9b3b\u9b56\u9b55\u9c46\u9c48\u9c3f\u9c44\u9c39\u9c33\u9c41\u9c3c\u9c37\u9c34\u9c32\u9c3d\u9c36\u9ddb\u9dd2\u9dde\u9dda\u9dcb\u9dd0\u9ddc\u9dd1\u9ddf\u9de9\u9dd9\u9dd8\u9dd6\u9df5\u9dd5\u9ddd\u9eb6\u9ef0\u9f35\u9f33\u9f32\u9f42\u9f6b\u9f95\u9fa2\u513d\u5299\u58e8\u58e7\u5972\u5b4d\u5dd8\u882f\u5f4f\u6201\u6203\u6204\u6529\u6525\u6596\u66eb\u6b11\u6b12\u6b0f\u6bca\u705b\u705a\u7222\u7382\u7381\u7383\u7670\u77d4\u7c67\u7c66\u7e95\u826c\u863a\u8640\u8639\u863c\u8631\u863b\u863e\u8830\u8832\u882e\u8833\u8976\u8974\u8973\u89fe"],["f840","\u8b8c\u8b8e\u8b8b\u8b88\u8c45\u8d19\u8e98\u8f64\u8f63\u91bc\u9462\u9455\u945d\u9457\u945e\u97c4\u97c5\u9800\u9a56\u9a59\u9b1e\u9b1f\u9b20\u9c52\u9c58\u9c50\u9c4a\u9c4d\u9c4b\u9c55\u9c59\u9c4c\u9c4e\u9dfb\u9df7\u9def\u9de3\u9deb\u9df8\u9de4\u9df6\u9de1\u9dee\u9de6\u9df2\u9df0\u9de2\u9dec\u9df4\u9df3\u9de8\u9ded\u9ec2\u9ed0\u9ef2\u9ef3\u9f06\u9f1c\u9f38\u9f37\u9f36\u9f43\u9f4f"],["f8a1","\u9f71\u9f70\u9f6e\u9f6f\u56d3\u56cd\u5b4e\u5c6d\u652d\u66ed\u66ee\u6b13\u705f\u7061\u705d\u7060\u7223\u74db\u74e5\u77d5\u7938\u79b7\u79b6\u7c6a\u7e97\u7f89\u826d\u8643\u8838\u8837\u8835\u884b\u8b94\u8b95\u8e9e\u8e9f\u8ea0\u8e9d\u91be\u91bd\u91c2\u946b\u9468\u9469\u96e5\u9746\u9743\u9747\u97c7\u97e5\u9a5e\u9ad5\u9b59\u9c63\u9c67\u9c66\u9c62\u9c5e\u9c60\u9e02\u9dfe\u9e07\u9e03\u9e06\u9e05\u9e00\u9e01\u9e09\u9dff\u9dfd\u9e04\u9ea0\u9f1e\u9f46\u9f74\u9f75\u9f76\u56d4\u652e\u65b8\u6b18\u6b19\u6b17\u6b1a\u7062\u7226\u72aa\u77d8\u77d9\u7939\u7c69\u7c6b\u7cf6\u7e9a"],["f940","\u7e98\u7e9b\u7e99\u81e0\u81e1\u8646\u8647\u8648\u8979\u897a\u897c\u897b\u89ff\u8b98\u8b99\u8ea5\u8ea4\u8ea3\u946e\u946d\u946f\u9471\u9473\u9749\u9872\u995f\u9c68\u9c6e\u9c6d\u9e0b\u9e0d\u9e10\u9e0f\u9e12\u9e11\u9ea1\u9ef5\u9f09\u9f47\u9f78\u9f7b\u9f7a\u9f79\u571e\u7066\u7c6f\u883c\u8db2\u8ea6\u91c3\u9474\u9478\u9476\u9475\u9a60\u9c74\u9c73\u9c71\u9c75\u9e14\u9e13\u9ef6\u9f0a"],["f9a1","\u9fa4\u7068\u7065\u7cf7\u866a\u883e\u883d\u883f\u8b9e\u8c9c\u8ea9\u8ec9\u974b\u9873\u9874\u98cc\u9961\u99ab\u9a64\u9a66\u9a67\u9b24\u9e15\u9e17\u9f48\u6207\u6b1e\u7227\u864c\u8ea8\u9482\u9480\u9481\u9a69\u9a68\u9b2e\u9e19\u7229\u864b\u8b9f\u9483\u9c79\u9eb7\u7675\u9a6b\u9c7a\u9e1d\u7069\u706a\u9ea4\u9f7e\u9f49\u9f98\u7881\u92b9\u88cf\u58bb\u6052\u7ca7\u5afa\u2554\u2566\u2557\u2560\u256c\u2563\u255a\u2569\u255d\u2552\u2564\u2555\u255e\u256a\u2561\u2558\u2567\u255b\u2553\u2565\u2556\u255f\u256b\u2562\u2559\u2568\u255c\u2551\u2550\u256d\u256e\u2570\u256f\u2593"]]')},56406:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127],["8ea1","\uff61",62],["a1a1","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7"],["a2a1","\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["a2ba","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["a2ca","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["a2dc","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["a2f2","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["a2fe","\u25ef"],["a3b0","\uff10",9],["a3c1","\uff21",25],["a3e1","\uff41",25],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a8a1","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["ada1","\u2460",19,"\u2160",9],["adc0","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["addf","\u337b\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["b0a1","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["b1a1","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc"],["b2a1","\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["b3a1","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431"],["b4a1","\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["b5a1","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac"],["b6a1","\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["b7a1","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372"],["b8a1","\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["b9a1","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc"],["baa1","\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["bba1","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642"],["bca1","\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["bda1","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f"],["bea1","\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["bfa1","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe"],["c0a1","\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["c1a1","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e"],["c2a1","\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["c3a1","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5"],["c4a1","\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["c5a1","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230"],["c6a1","\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["c7a1","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6"],["c8a1","\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["c9a1","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d"],["caa1","\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["cba1","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80"],["cca1","\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["cda1","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483"],["cea1","\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["cfa1","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["d0a1","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["d1a1","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8"],["d2a1","\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["d3a1","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709"],["d4a1","\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["d5a1","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53"],["d6a1","\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["d7a1","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a"],["d8a1","\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["d9a1","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc"],["daa1","\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["dba1","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd"],["dca1","\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["dda1","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe"],["dea1","\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["dfa1","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc"],["e0a1","\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e1a1","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670"],["e2a1","\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e3a1","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50"],["e4a1","\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e5a1","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a"],["e6a1","\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e7a1","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9"],["e8a1","\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e9a1","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759"],["eaa1","\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["eba1","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b"],["eca1","\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["eda1","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8"],["eea1","\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["efa1","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e"],["f0a1","\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["f1a1","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7"],["f2a1","\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["f3a1","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0"],["f4a1","\u582f\u69c7\u9059\u7464\u51dc\u7199"],["f9a1","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7"],["faa1","\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["fba1","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da"],["fca1","\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["fcf1","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["8fa2af","\u02d8\u02c7\xb8\u02d9\u02dd\xaf\u02db\u02da\uff5e\u0384\u0385"],["8fa2c2","\xa1\xa6\xbf"],["8fa2eb","\xba\xaa\xa9\xae\u2122\xa4\u2116"],["8fa6e1","\u0386\u0388\u0389\u038a\u03aa"],["8fa6e7","\u038c"],["8fa6e9","\u038e\u03ab"],["8fa6ec","\u038f"],["8fa6f1","\u03ac\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03c2\u03cd\u03cb\u03b0\u03ce"],["8fa7c2","\u0402",10,"\u040e\u040f"],["8fa7f2","\u0452",10,"\u045e\u045f"],["8fa9a1","\xc6\u0110"],["8fa9a4","\u0126"],["8fa9a6","\u0132"],["8fa9a8","\u0141\u013f"],["8fa9ab","\u014a\xd8\u0152"],["8fa9af","\u0166\xde"],["8fa9c1","\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0142\u0140\u0149\u014b\xf8\u0153\xdf\u0167\xfe"],["8faaa1","\xc1\xc0\xc4\xc2\u0102\u01cd\u0100\u0104\xc5\xc3\u0106\u0108\u010c\xc7\u010a\u010e\xc9\xc8\xcb\xca\u011a\u0116\u0112\u0118"],["8faaba","\u011c\u011e\u0122\u0120\u0124\xcd\xcc\xcf\xce\u01cf\u0130\u012a\u012e\u0128\u0134\u0136\u0139\u013d\u013b\u0143\u0147\u0145\xd1\xd3\xd2\xd6\xd4\u01d1\u0150\u014c\xd5\u0154\u0158\u0156\u015a\u015c\u0160\u015e\u0164\u0162\xda\xd9\xdc\xdb\u016c\u01d3\u0170\u016a\u0172\u016e\u0168\u01d7\u01db\u01d9\u01d5\u0174\xdd\u0178\u0176\u0179\u017d\u017b"],["8faba1","\xe1\xe0\xe4\xe2\u0103\u01ce\u0101\u0105\xe5\xe3\u0107\u0109\u010d\xe7\u010b\u010f\xe9\xe8\xeb\xea\u011b\u0117\u0113\u0119\u01f5\u011d\u011f"],["8fabbd","\u0121\u0125\xed\xec\xef\xee\u01d0"],["8fabc5","\u012b\u012f\u0129\u0135\u0137\u013a\u013e\u013c\u0144\u0148\u0146\xf1\xf3\xf2\xf6\xf4\u01d2\u0151\u014d\xf5\u0155\u0159\u0157\u015b\u015d\u0161\u015f\u0165\u0163\xfa\xf9\xfc\xfb\u016d\u01d4\u0171\u016b\u0173\u016f\u0169\u01d8\u01dc\u01da\u01d6\u0175\xfd\xff\u0177\u017a\u017e\u017c"],["8fb0a1","\u4e02\u4e04\u4e05\u4e0c\u4e12\u4e1f\u4e23\u4e24\u4e28\u4e2b\u4e2e\u4e2f\u4e30\u4e35\u4e40\u4e41\u4e44\u4e47\u4e51\u4e5a\u4e5c\u4e63\u4e68\u4e69\u4e74\u4e75\u4e79\u4e7f\u4e8d\u4e96\u4e97\u4e9d\u4eaf\u4eb9\u4ec3\u4ed0\u4eda\u4edb\u4ee0\u4ee1\u4ee2\u4ee8\u4eef\u4ef1\u4ef3\u4ef5\u4efd\u4efe\u4eff\u4f00\u4f02\u4f03\u4f08\u4f0b\u4f0c\u4f12\u4f15\u4f16\u4f17\u4f19\u4f2e\u4f31\u4f60\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e\u4f40\u4f42\u4f48\u4f49\u4f4b\u4f4c\u4f52\u4f54\u4f56\u4f58\u4f5f\u4f63\u4f6a\u4f6c\u4f6e\u4f71\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f7e\u4f81\u4f82\u4f84"],["8fb1a1","\u4f85\u4f89\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f94\u4f97\u4f99\u4f9a\u4f9e\u4f9f\u4fb2\u4fb7\u4fb9\u4fbb\u4fbc\u4fbd\u4fbe\u4fc0\u4fc1\u4fc5\u4fc6\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fcf\u4fd2\u4fdc\u4fe0\u4fe2\u4ff0\u4ff2\u4ffc\u4ffd\u4fff\u5000\u5001\u5004\u5007\u500a\u500c\u500e\u5010\u5013\u5017\u5018\u501b\u501c\u501d\u501e\u5022\u5027\u502e\u5030\u5032\u5033\u5035\u5040\u5041\u5042\u5045\u5046\u504a\u504c\u504e\u5051\u5052\u5053\u5057\u5059\u505f\u5060\u5062\u5063\u5066\u5067\u506a\u506d\u5070\u5071\u503b\u5081\u5083\u5084\u5086\u508a\u508e\u508f\u5090"],["8fb2a1","\u5092\u5093\u5094\u5096\u509b\u509c\u509e",4,"\u50aa\u50af\u50b0\u50b9\u50ba\u50bd\u50c0\u50c3\u50c4\u50c7\u50cc\u50ce\u50d0\u50d3\u50d4\u50d8\u50dc\u50dd\u50df\u50e2\u50e4\u50e6\u50e8\u50e9\u50ef\u50f1\u50f6\u50fa\u50fe\u5103\u5106\u5107\u5108\u510b\u510c\u510d\u510e\u50f2\u5110\u5117\u5119\u511b\u511c\u511d\u511e\u5123\u5127\u5128\u512c\u512d\u512f\u5131\u5133\u5134\u5135\u5138\u5139\u5142\u514a\u514f\u5153\u5155\u5157\u5158\u515f\u5164\u5166\u517e\u5183\u5184\u518b\u518e\u5198\u519d\u51a1\u51a3\u51ad\u51b8\u51ba\u51bc\u51be\u51bf\u51c2"],["8fb3a1","\u51c8\u51cf\u51d1\u51d2\u51d3\u51d5\u51d8\u51de\u51e2\u51e5\u51ee\u51f2\u51f3\u51f4\u51f7\u5201\u5202\u5205\u5212\u5213\u5215\u5216\u5218\u5222\u5228\u5231\u5232\u5235\u523c\u5245\u5249\u5255\u5257\u5258\u525a\u525c\u525f\u5260\u5261\u5266\u526e\u5277\u5278\u5279\u5280\u5282\u5285\u528a\u528c\u5293\u5295\u5296\u5297\u5298\u529a\u529c\u52a4\u52a5\u52a6\u52a7\u52af\u52b0\u52b6\u52b7\u52b8\u52ba\u52bb\u52bd\u52c0\u52c4\u52c6\u52c8\u52cc\u52cf\u52d1\u52d4\u52d6\u52db\u52dc\u52e1\u52e5\u52e8\u52e9\u52ea\u52ec\u52f0\u52f1\u52f4\u52f6\u52f7\u5300\u5303\u530a\u530b"],["8fb4a1","\u530c\u5311\u5313\u5318\u531b\u531c\u531e\u531f\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u5330\u5332\u5335\u533c\u533d\u533e\u5342\u534c\u534b\u5359\u535b\u5361\u5363\u5365\u536c\u536d\u5372\u5379\u537e\u5383\u5387\u5388\u538e\u5393\u5394\u5399\u539d\u53a1\u53a4\u53aa\u53ab\u53af\u53b2\u53b4\u53b5\u53b7\u53b8\u53ba\u53bd\u53c0\u53c5\u53cf\u53d2\u53d3\u53d5\u53da\u53dd\u53de\u53e0\u53e6\u53e7\u53f5\u5402\u5413\u541a\u5421\u5427\u5428\u542a\u542f\u5431\u5434\u5435\u5443\u5444\u5447\u544d\u544f\u545e\u5462\u5464\u5466\u5467\u5469\u546b\u546d\u546e\u5474\u547f"],["8fb5a1","\u5481\u5483\u5485\u5488\u5489\u548d\u5491\u5495\u5496\u549c\u549f\u54a1\u54a6\u54a7\u54a9\u54aa\u54ad\u54ae\u54b1\u54b7\u54b9\u54ba\u54bb\u54bf\u54c6\u54ca\u54cd\u54ce\u54e0\u54ea\u54ec\u54ef\u54f6\u54fc\u54fe\u54ff\u5500\u5501\u5505\u5508\u5509\u550c\u550d\u550e\u5515\u552a\u552b\u5532\u5535\u5536\u553b\u553c\u553d\u5541\u5547\u5549\u554a\u554d\u5550\u5551\u5558\u555a\u555b\u555e\u5560\u5561\u5564\u5566\u557f\u5581\u5582\u5586\u5588\u558e\u558f\u5591\u5592\u5593\u5594\u5597\u55a3\u55a4\u55ad\u55b2\u55bf\u55c1\u55c3\u55c6\u55c9\u55cb\u55cc\u55ce\u55d1\u55d2"],["8fb6a1","\u55d3\u55d7\u55d8\u55db\u55de\u55e2\u55e9\u55f6\u55ff\u5605\u5608\u560a\u560d",5,"\u5619\u562c\u5630\u5633\u5635\u5637\u5639\u563b\u563c\u563d\u563f\u5640\u5641\u5643\u5644\u5646\u5649\u564b\u564d\u564f\u5654\u565e\u5660\u5661\u5662\u5663\u5666\u5669\u566d\u566f\u5671\u5672\u5675\u5684\u5685\u5688\u568b\u568c\u5695\u5699\u569a\u569d\u569e\u569f\u56a6\u56a7\u56a8\u56a9\u56ab\u56ac\u56ad\u56b1\u56b3\u56b7\u56be\u56c5\u56c9\u56ca\u56cb\u56cf\u56d0\u56cc\u56cd\u56d9\u56dc\u56dd\u56df\u56e1\u56e4",4,"\u56f1\u56eb\u56ed"],["8fb7a1","\u56f6\u56f7\u5701\u5702\u5707\u570a\u570c\u5711\u5715\u571a\u571b\u571d\u5720\u5722\u5723\u5724\u5725\u5729\u572a\u572c\u572e\u572f\u5733\u5734\u573d\u573e\u573f\u5745\u5746\u574c\u574d\u5752\u5762\u5765\u5767\u5768\u576b\u576d",4,"\u5773\u5774\u5775\u5777\u5779\u577a\u577b\u577c\u577e\u5781\u5783\u578c\u5794\u5797\u5799\u579a\u579c\u579d\u579e\u579f\u57a1\u5795\u57a7\u57a8\u57a9\u57ac\u57b8\u57bd\u57c7\u57c8\u57cc\u57cf\u57d5\u57dd\u57de\u57e4\u57e6\u57e7\u57e9\u57ed\u57f0\u57f5\u57f6\u57f8\u57fd\u57fe\u57ff\u5803\u5804\u5808\u5809\u57e1"],["8fb8a1","\u580c\u580d\u581b\u581e\u581f\u5820\u5826\u5827\u582d\u5832\u5839\u583f\u5849\u584c\u584d\u584f\u5850\u5855\u585f\u5861\u5864\u5867\u5868\u5878\u587c\u587f\u5880\u5881\u5887\u5888\u5889\u588a\u588c\u588d\u588f\u5890\u5894\u5896\u589d\u58a0\u58a1\u58a2\u58a6\u58a9\u58b1\u58b2\u58c4\u58bc\u58c2\u58c8\u58cd\u58ce\u58d0\u58d2\u58d4\u58d6\u58da\u58dd\u58e1\u58e2\u58e9\u58f3\u5905\u5906\u590b\u590c\u5912\u5913\u5914\u8641\u591d\u5921\u5923\u5924\u5928\u592f\u5930\u5933\u5935\u5936\u593f\u5943\u5946\u5952\u5953\u5959\u595b\u595d\u595e\u595f\u5961\u5963\u596b\u596d"],["8fb9a1","\u596f\u5972\u5975\u5976\u5979\u597b\u597c\u598b\u598c\u598e\u5992\u5995\u5997\u599f\u59a4\u59a7\u59ad\u59ae\u59af\u59b0\u59b3\u59b7\u59ba\u59bc\u59c1\u59c3\u59c4\u59c8\u59ca\u59cd\u59d2\u59dd\u59de\u59df\u59e3\u59e4\u59e7\u59ee\u59ef\u59f1\u59f2\u59f4\u59f7\u5a00\u5a04\u5a0c\u5a0d\u5a0e\u5a12\u5a13\u5a1e\u5a23\u5a24\u5a27\u5a28\u5a2a\u5a2d\u5a30\u5a44\u5a45\u5a47\u5a48\u5a4c\u5a50\u5a55\u5a5e\u5a63\u5a65\u5a67\u5a6d\u5a77\u5a7a\u5a7b\u5a7e\u5a8b\u5a90\u5a93\u5a96\u5a99\u5a9c\u5a9e\u5a9f\u5aa0\u5aa2\u5aa7\u5aac\u5ab1\u5ab2\u5ab3\u5ab5\u5ab8\u5aba\u5abb\u5abf"],["8fbaa1","\u5ac4\u5ac6\u5ac8\u5acf\u5ada\u5adc\u5ae0\u5ae5\u5aea\u5aee\u5af5\u5af6\u5afd\u5b00\u5b01\u5b08\u5b17\u5b34\u5b19\u5b1b\u5b1d\u5b21\u5b25\u5b2d\u5b38\u5b41\u5b4b\u5b4c\u5b52\u5b56\u5b5e\u5b68\u5b6e\u5b6f\u5b7c\u5b7d\u5b7e\u5b7f\u5b81\u5b84\u5b86\u5b8a\u5b8e\u5b90\u5b91\u5b93\u5b94\u5b96\u5ba8\u5ba9\u5bac\u5bad\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbc\u5bc0\u5bc1\u5bcd\u5bcf\u5bd6",4,"\u5be0\u5bef\u5bf1\u5bf4\u5bfd\u5c0c\u5c17\u5c1e\u5c1f\u5c23\u5c26\u5c29\u5c2b\u5c2c\u5c2e\u5c30\u5c32\u5c35\u5c36\u5c59\u5c5a\u5c5c\u5c62\u5c63\u5c67\u5c68\u5c69"],["8fbba1","\u5c6d\u5c70\u5c74\u5c75\u5c7a\u5c7b\u5c7c\u5c7d\u5c87\u5c88\u5c8a\u5c8f\u5c92\u5c9d\u5c9f\u5ca0\u5ca2\u5ca3\u5ca6\u5caa\u5cb2\u5cb4\u5cb5\u5cba\u5cc9\u5ccb\u5cd2\u5cdd\u5cd7\u5cee\u5cf1\u5cf2\u5cf4\u5d01\u5d06\u5d0d\u5d12\u5d2b\u5d23\u5d24\u5d26\u5d27\u5d31\u5d34\u5d39\u5d3d\u5d3f\u5d42\u5d43\u5d46\u5d48\u5d55\u5d51\u5d59\u5d4a\u5d5f\u5d60\u5d61\u5d62\u5d64\u5d6a\u5d6d\u5d70\u5d79\u5d7a\u5d7e\u5d7f\u5d81\u5d83\u5d88\u5d8a\u5d92\u5d93\u5d94\u5d95\u5d99\u5d9b\u5d9f\u5da0\u5da7\u5dab\u5db0\u5db4\u5db8\u5db9\u5dc3\u5dc7\u5dcb\u5dd0\u5dce\u5dd8\u5dd9\u5de0\u5de4"],["8fbca1","\u5de9\u5df8\u5df9\u5e00\u5e07\u5e0d\u5e12\u5e14\u5e15\u5e18\u5e1f\u5e20\u5e2e\u5e28\u5e32\u5e35\u5e3e\u5e4b\u5e50\u5e49\u5e51\u5e56\u5e58\u5e5b\u5e5c\u5e5e\u5e68\u5e6a",4,"\u5e70\u5e80\u5e8b\u5e8e\u5ea2\u5ea4\u5ea5\u5ea8\u5eaa\u5eac\u5eb1\u5eb3\u5ebd\u5ebe\u5ebf\u5ec6\u5ecc\u5ecb\u5ece\u5ed1\u5ed2\u5ed4\u5ed5\u5edc\u5ede\u5ee5\u5eeb\u5f02\u5f06\u5f07\u5f08\u5f0e\u5f19\u5f1c\u5f1d\u5f21\u5f22\u5f23\u5f24\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f34\u5f36\u5f3b\u5f3d\u5f3f\u5f40\u5f44\u5f45\u5f47\u5f4d\u5f50\u5f54\u5f58\u5f5b\u5f60\u5f63\u5f64\u5f67"],["8fbda1","\u5f6f\u5f72\u5f74\u5f75\u5f78\u5f7a\u5f7d\u5f7e\u5f89\u5f8d\u5f8f\u5f96\u5f9c\u5f9d\u5fa2\u5fa7\u5fab\u5fa4\u5fac\u5faf\u5fb0\u5fb1\u5fb8\u5fc4\u5fc7\u5fc8\u5fc9\u5fcb\u5fd0",4,"\u5fde\u5fe1\u5fe2\u5fe8\u5fe9\u5fea\u5fec\u5fed\u5fee\u5fef\u5ff2\u5ff3\u5ff6\u5ffa\u5ffc\u6007\u600a\u600d\u6013\u6014\u6017\u6018\u601a\u601f\u6024\u602d\u6033\u6035\u6040\u6047\u6048\u6049\u604c\u6051\u6054\u6056\u6057\u605d\u6061\u6067\u6071\u607e\u607f\u6082\u6086\u6088\u608a\u608e\u6091\u6093\u6095\u6098\u609d\u609e\u60a2\u60a4\u60a5\u60a8\u60b0\u60b1\u60b7"],["8fbea1","\u60bb\u60be\u60c2\u60c4\u60c8\u60c9\u60ca\u60cb\u60ce\u60cf\u60d4\u60d5\u60d9\u60db\u60dd\u60de\u60e2\u60e5\u60f2\u60f5\u60f8\u60fc\u60fd\u6102\u6107\u610a\u610c\u6110",4,"\u6116\u6117\u6119\u611c\u611e\u6122\u612a\u612b\u6130\u6131\u6135\u6136\u6137\u6139\u6141\u6145\u6146\u6149\u615e\u6160\u616c\u6172\u6178\u617b\u617c\u617f\u6180\u6181\u6183\u6184\u618b\u618d\u6192\u6193\u6197\u6198\u619c\u619d\u619f\u61a0\u61a5\u61a8\u61aa\u61ad\u61b8\u61b9\u61bc\u61c0\u61c1\u61c2\u61ce\u61cf\u61d5\u61dc\u61dd\u61de\u61df\u61e1\u61e2\u61e7\u61e9\u61e5"],["8fbfa1","\u61ec\u61ed\u61ef\u6201\u6203\u6204\u6207\u6213\u6215\u621c\u6220\u6222\u6223\u6227\u6229\u622b\u6239\u623d\u6242\u6243\u6244\u6246\u624c\u6250\u6251\u6252\u6254\u6256\u625a\u625c\u6264\u626d\u626f\u6273\u627a\u627d\u628d\u628e\u628f\u6290\u62a6\u62a8\u62b3\u62b6\u62b7\u62ba\u62be\u62bf\u62c4\u62ce\u62d5\u62d6\u62da\u62ea\u62f2\u62f4\u62fc\u62fd\u6303\u6304\u630a\u630b\u630d\u6310\u6313\u6316\u6318\u6329\u632a\u632d\u6335\u6336\u6339\u633c\u6341\u6342\u6343\u6344\u6346\u634a\u634b\u634e\u6352\u6353\u6354\u6358\u635b\u6365\u6366\u636c\u636d\u6371\u6374\u6375"],["8fc0a1","\u6378\u637c\u637d\u637f\u6382\u6384\u6387\u638a\u6390\u6394\u6395\u6399\u639a\u639e\u63a4\u63a6\u63ad\u63ae\u63af\u63bd\u63c1\u63c5\u63c8\u63ce\u63d1\u63d3\u63d4\u63d5\u63dc\u63e0\u63e5\u63ea\u63ec\u63f2\u63f3\u63f5\u63f8\u63f9\u6409\u640a\u6410\u6412\u6414\u6418\u641e\u6420\u6422\u6424\u6425\u6429\u642a\u642f\u6430\u6435\u643d\u643f\u644b\u644f\u6451\u6452\u6453\u6454\u645a\u645b\u645c\u645d\u645f\u6460\u6461\u6463\u646d\u6473\u6474\u647b\u647d\u6485\u6487\u648f\u6490\u6491\u6498\u6499\u649b\u649d\u649f\u64a1\u64a3\u64a6\u64a8\u64ac\u64b3\u64bd\u64be\u64bf"],["8fc1a1","\u64c4\u64c9\u64ca\u64cb\u64cc\u64ce\u64d0\u64d1\u64d5\u64d7\u64e4\u64e5\u64e9\u64ea\u64ed\u64f0\u64f5\u64f7\u64fb\u64ff\u6501\u6504\u6508\u6509\u650a\u650f\u6513\u6514\u6516\u6519\u651b\u651e\u651f\u6522\u6526\u6529\u652e\u6531\u653a\u653c\u653d\u6543\u6547\u6549\u6550\u6552\u6554\u655f\u6560\u6567\u656b\u657a\u657d\u6581\u6585\u658a\u6592\u6595\u6598\u659d\u65a0\u65a3\u65a6\u65ae\u65b2\u65b3\u65b4\u65bf\u65c2\u65c8\u65c9\u65ce\u65d0\u65d4\u65d6\u65d8\u65df\u65f0\u65f2\u65f4\u65f5\u65f9\u65fe\u65ff\u6600\u6604\u6608\u6609\u660d\u6611\u6612\u6615\u6616\u661d"],["8fc2a1","\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6631\u6633\u6639\u6637\u6640\u6645\u6646\u664a\u664c\u6651\u664e\u6657\u6658\u6659\u665b\u665c\u6660\u6661\u66fb\u666a\u666b\u666c\u667e\u6673\u6675\u667f\u6677\u6678\u6679\u667b\u6680\u667c\u668b\u668c\u668d\u6690\u6692\u6699\u669a\u669b\u669c\u669f\u66a0\u66a4\u66ad\u66b1\u66b2\u66b5\u66bb\u66bf\u66c0\u66c2\u66c3\u66c8\u66cc\u66ce\u66cf\u66d4\u66db\u66df\u66e8\u66eb\u66ec\u66ee\u66fa\u6705\u6707\u670e\u6713\u6719\u671c\u6720\u6722\u6733\u673e\u6745\u6747\u6748\u674c\u6754\u6755\u675d"],["8fc3a1","\u6766\u676c\u676e\u6774\u6776\u677b\u6781\u6784\u678e\u678f\u6791\u6793\u6796\u6798\u6799\u679b\u67b0\u67b1\u67b2\u67b5\u67bb\u67bc\u67bd\u67f9\u67c0\u67c2\u67c3\u67c5\u67c8\u67c9\u67d2\u67d7\u67d9\u67dc\u67e1\u67e6\u67f0\u67f2\u67f6\u67f7\u6852\u6814\u6819\u681d\u681f\u6828\u6827\u682c\u682d\u682f\u6830\u6831\u6833\u683b\u683f\u6844\u6845\u684a\u684c\u6855\u6857\u6858\u685b\u686b\u686e",4,"\u6875\u6879\u687a\u687b\u687c\u6882\u6884\u6886\u6888\u6896\u6898\u689a\u689c\u68a1\u68a3\u68a5\u68a9\u68aa\u68ae\u68b2\u68bb\u68c5\u68c8\u68cc\u68cf"],["8fc4a1","\u68d0\u68d1\u68d3\u68d6\u68d9\u68dc\u68dd\u68e5\u68e8\u68ea\u68eb\u68ec\u68ed\u68f0\u68f1\u68f5\u68f6\u68fb\u68fc\u68fd\u6906\u6909\u690a\u6910\u6911\u6913\u6916\u6917\u6931\u6933\u6935\u6938\u693b\u6942\u6945\u6949\u694e\u6957\u695b\u6963\u6964\u6965\u6966\u6968\u6969\u696c\u6970\u6971\u6972\u697a\u697b\u697f\u6980\u698d\u6992\u6996\u6998\u69a1\u69a5\u69a6\u69a8\u69ab\u69ad\u69af\u69b7\u69b8\u69ba\u69bc\u69c5\u69c8\u69d1\u69d6\u69d7\u69e2\u69e5\u69ee\u69ef\u69f1\u69f3\u69f5\u69fe\u6a00\u6a01\u6a03\u6a0f\u6a11\u6a15\u6a1a\u6a1d\u6a20\u6a24\u6a28\u6a30\u6a32"],["8fc5a1","\u6a34\u6a37\u6a3b\u6a3e\u6a3f\u6a45\u6a46\u6a49\u6a4a\u6a4e\u6a50\u6a51\u6a52\u6a55\u6a56\u6a5b\u6a64\u6a67\u6a6a\u6a71\u6a73\u6a7e\u6a81\u6a83\u6a86\u6a87\u6a89\u6a8b\u6a91\u6a9b\u6a9d\u6a9e\u6a9f\u6aa5\u6aab\u6aaf\u6ab0\u6ab1\u6ab4\u6abd\u6abe\u6abf\u6ac6\u6ac9\u6ac8\u6acc\u6ad0\u6ad4\u6ad5\u6ad6\u6adc\u6add\u6ae4\u6ae7\u6aec\u6af0\u6af1\u6af2\u6afc\u6afd\u6b02\u6b03\u6b06\u6b07\u6b09\u6b0f\u6b10\u6b11\u6b17\u6b1b\u6b1e\u6b24\u6b28\u6b2b\u6b2c\u6b2f\u6b35\u6b36\u6b3b\u6b3f\u6b46\u6b4a\u6b4d\u6b52\u6b56\u6b58\u6b5d\u6b60\u6b67\u6b6b\u6b6e\u6b70\u6b75\u6b7d"],["8fc6a1","\u6b7e\u6b82\u6b85\u6b97\u6b9b\u6b9f\u6ba0\u6ba2\u6ba3\u6ba8\u6ba9\u6bac\u6bad\u6bae\u6bb0\u6bb8\u6bb9\u6bbd\u6bbe\u6bc3\u6bc4\u6bc9\u6bcc\u6bd6\u6bda\u6be1\u6be3\u6be6\u6be7\u6bee\u6bf1\u6bf7\u6bf9\u6bff\u6c02\u6c04\u6c05\u6c09\u6c0d\u6c0e\u6c10\u6c12\u6c19\u6c1f\u6c26\u6c27\u6c28\u6c2c\u6c2e\u6c33\u6c35\u6c36\u6c3a\u6c3b\u6c3f\u6c4a\u6c4b\u6c4d\u6c4f\u6c52\u6c54\u6c59\u6c5b\u6c5c\u6c6b\u6c6d\u6c6f\u6c74\u6c76\u6c78\u6c79\u6c7b\u6c85\u6c86\u6c87\u6c89\u6c94\u6c95\u6c97\u6c98\u6c9c\u6c9f\u6cb0\u6cb2\u6cb4\u6cc2\u6cc6\u6ccd\u6ccf\u6cd0\u6cd1\u6cd2\u6cd4\u6cd6"],["8fc7a1","\u6cda\u6cdc\u6ce0\u6ce7\u6ce9\u6ceb\u6cec\u6cee\u6cf2\u6cf4\u6d04\u6d07\u6d0a\u6d0e\u6d0f\u6d11\u6d13\u6d1a\u6d26\u6d27\u6d28\u6c67\u6d2e\u6d2f\u6d31\u6d39\u6d3c\u6d3f\u6d57\u6d5e\u6d5f\u6d61\u6d65\u6d67\u6d6f\u6d70\u6d7c\u6d82\u6d87\u6d91\u6d92\u6d94\u6d96\u6d97\u6d98\u6daa\u6dac\u6db4\u6db7\u6db9\u6dbd\u6dbf\u6dc4\u6dc8\u6dca\u6dce\u6dcf\u6dd6\u6ddb\u6ddd\u6ddf\u6de0\u6de2\u6de5\u6de9\u6def\u6df0\u6df4\u6df6\u6dfc\u6e00\u6e04\u6e1e\u6e22\u6e27\u6e32\u6e36\u6e39\u6e3b\u6e3c\u6e44\u6e45\u6e48\u6e49\u6e4b\u6e4f\u6e51\u6e52\u6e53\u6e54\u6e57\u6e5c\u6e5d\u6e5e"],["8fc8a1","\u6e62\u6e63\u6e68\u6e73\u6e7b\u6e7d\u6e8d\u6e93\u6e99\u6ea0\u6ea7\u6ead\u6eae\u6eb1\u6eb3\u6ebb\u6ebf\u6ec0\u6ec1\u6ec3\u6ec7\u6ec8\u6eca\u6ecd\u6ece\u6ecf\u6eeb\u6eed\u6eee\u6ef9\u6efb\u6efd\u6f04\u6f08\u6f0a\u6f0c\u6f0d\u6f16\u6f18\u6f1a\u6f1b\u6f26\u6f29\u6f2a\u6f2f\u6f30\u6f33\u6f36\u6f3b\u6f3c\u6f2d\u6f4f\u6f51\u6f52\u6f53\u6f57\u6f59\u6f5a\u6f5d\u6f5e\u6f61\u6f62\u6f68\u6f6c\u6f7d\u6f7e\u6f83\u6f87\u6f88\u6f8b\u6f8c\u6f8d\u6f90\u6f92\u6f93\u6f94\u6f96\u6f9a\u6f9f\u6fa0\u6fa5\u6fa6\u6fa7\u6fa8\u6fae\u6faf\u6fb0\u6fb5\u6fb6\u6fbc\u6fc5\u6fc7\u6fc8\u6fca"],["8fc9a1","\u6fda\u6fde\u6fe8\u6fe9\u6ff0\u6ff5\u6ff9\u6ffc\u6ffd\u7000\u7005\u7006\u7007\u700d\u7017\u7020\u7023\u702f\u7034\u7037\u7039\u703c\u7043\u7044\u7048\u7049\u704a\u704b\u7054\u7055\u705d\u705e\u704e\u7064\u7065\u706c\u706e\u7075\u7076\u707e\u7081\u7085\u7086\u7094",4,"\u709b\u70a4\u70ab\u70b0\u70b1\u70b4\u70b7\u70ca\u70d1\u70d3\u70d4\u70d5\u70d6\u70d8\u70dc\u70e4\u70fa\u7103",4,"\u710b\u710c\u710f\u711e\u7120\u712b\u712d\u712f\u7130\u7131\u7138\u7141\u7145\u7146\u7147\u714a\u714b\u7150\u7152\u7157\u715a\u715c\u715e\u7160"],["8fcaa1","\u7168\u7179\u7180\u7185\u7187\u718c\u7192\u719a\u719b\u71a0\u71a2\u71af\u71b0\u71b2\u71b3\u71ba\u71bf\u71c0\u71c1\u71c4\u71cb\u71cc\u71d3\u71d6\u71d9\u71da\u71dc\u71f8\u71fe\u7200\u7207\u7208\u7209\u7213\u7217\u721a\u721d\u721f\u7224\u722b\u722f\u7234\u7238\u7239\u7241\u7242\u7243\u7245\u724e\u724f\u7250\u7253\u7255\u7256\u725a\u725c\u725e\u7260\u7263\u7268\u726b\u726e\u726f\u7271\u7277\u7278\u727b\u727c\u727f\u7284\u7289\u728d\u728e\u7293\u729b\u72a8\u72ad\u72ae\u72b1\u72b4\u72be\u72c1\u72c7\u72c9\u72cc\u72d5\u72d6\u72d8\u72df\u72e5\u72f3\u72f4\u72fa\u72fb"],["8fcba1","\u72fe\u7302\u7304\u7305\u7307\u730b\u730d\u7312\u7313\u7318\u7319\u731e\u7322\u7324\u7327\u7328\u732c\u7331\u7332\u7335\u733a\u733b\u733d\u7343\u734d\u7350\u7352\u7356\u7358\u735d\u735e\u735f\u7360\u7366\u7367\u7369\u736b\u736c\u736e\u736f\u7371\u7377\u7379\u737c\u7380\u7381\u7383\u7385\u7386\u738e\u7390\u7393\u7395\u7397\u7398\u739c\u739e\u739f\u73a0\u73a2\u73a5\u73a6\u73aa\u73ab\u73ad\u73b5\u73b7\u73b9\u73bc\u73bd\u73bf\u73c5\u73c6\u73c9\u73cb\u73cc\u73cf\u73d2\u73d3\u73d6\u73d9\u73dd\u73e1\u73e3\u73e6\u73e7\u73e9\u73f4\u73f5\u73f7\u73f9\u73fa\u73fb\u73fd"],["8fcca1","\u73ff\u7400\u7401\u7404\u7407\u740a\u7411\u741a\u741b\u7424\u7426\u7428",9,"\u7439\u7440\u7443\u7444\u7446\u7447\u744b\u744d\u7451\u7452\u7457\u745d\u7462\u7466\u7467\u7468\u746b\u746d\u746e\u7471\u7472\u7480\u7481\u7485\u7486\u7487\u7489\u748f\u7490\u7491\u7492\u7498\u7499\u749a\u749c\u749f\u74a0\u74a1\u74a3\u74a6\u74a8\u74a9\u74aa\u74ab\u74ae\u74af\u74b1\u74b2\u74b5\u74b9\u74bb\u74bf\u74c8\u74c9\u74cc\u74d0\u74d3\u74d8\u74da\u74db\u74de\u74df\u74e4\u74e8\u74ea\u74eb\u74ef\u74f4\u74fa\u74fb\u74fc\u74ff\u7506"],["8fcda1","\u7512\u7516\u7517\u7520\u7521\u7524\u7527\u7529\u752a\u752f\u7536\u7539\u753d\u753e\u753f\u7540\u7543\u7547\u7548\u754e\u7550\u7552\u7557\u755e\u755f\u7561\u756f\u7571\u7579",5,"\u7581\u7585\u7590\u7592\u7593\u7595\u7599\u759c\u75a2\u75a4\u75b4\u75ba\u75bf\u75c0\u75c1\u75c4\u75c6\u75cc\u75ce\u75cf\u75d7\u75dc\u75df\u75e0\u75e1\u75e4\u75e7\u75ec\u75ee\u75ef\u75f1\u75f9\u7600\u7602\u7603\u7604\u7607\u7608\u760a\u760c\u760f\u7612\u7613\u7615\u7616\u7619\u761b\u761c\u761d\u761e\u7623\u7625\u7626\u7629\u762d\u7632\u7633\u7635\u7638\u7639"],["8fcea1","\u763a\u763c\u764a\u7640\u7641\u7643\u7644\u7645\u7649\u764b\u7655\u7659\u765f\u7664\u7665\u766d\u766e\u766f\u7671\u7674\u7681\u7685\u768c\u768d\u7695\u769b\u769c\u769d\u769f\u76a0\u76a2",6,"\u76aa\u76ad\u76bd\u76c1\u76c5\u76c9\u76cb\u76cc\u76ce\u76d4\u76d9\u76e0\u76e6\u76e8\u76ec\u76f0\u76f1\u76f6\u76f9\u76fc\u7700\u7706\u770a\u770e\u7712\u7714\u7715\u7717\u7719\u771a\u771c\u7722\u7728\u772d\u772e\u772f\u7734\u7735\u7736\u7739\u773d\u773e\u7742\u7745\u7746\u774a\u774d\u774e\u774f\u7752\u7756\u7757\u775c\u775e\u775f\u7760\u7762"],["8fcfa1","\u7764\u7767\u776a\u776c\u7770\u7772\u7773\u7774\u777a\u777d\u7780\u7784\u778c\u778d\u7794\u7795\u7796\u779a\u779f\u77a2\u77a7\u77aa\u77ae\u77af\u77b1\u77b5\u77be\u77c3\u77c9\u77d1\u77d2\u77d5\u77d9\u77de\u77df\u77e0\u77e4\u77e6\u77ea\u77ec\u77f0\u77f1\u77f4\u77f8\u77fb\u7805\u7806\u7809\u780d\u780e\u7811\u781d\u7821\u7822\u7823\u782d\u782e\u7830\u7835\u7837\u7843\u7844\u7847\u7848\u784c\u784e\u7852\u785c\u785e\u7860\u7861\u7863\u7864\u7868\u786a\u786e\u787a\u787e\u788a\u788f\u7894\u7898\u78a1\u789d\u789e\u789f\u78a4\u78a8\u78ac\u78ad\u78b0\u78b1\u78b2\u78b3"],["8fd0a1","\u78bb\u78bd\u78bf\u78c7\u78c8\u78c9\u78cc\u78ce\u78d2\u78d3\u78d5\u78d6\u78e4\u78db\u78df\u78e0\u78e1\u78e6\u78ea\u78f2\u78f3\u7900\u78f6\u78f7\u78fa\u78fb\u78ff\u7906\u790c\u7910\u791a\u791c\u791e\u791f\u7920\u7925\u7927\u7929\u792d\u7931\u7934\u7935\u793b\u793d\u793f\u7944\u7945\u7946\u794a\u794b\u794f\u7951\u7954\u7958\u795b\u795c\u7967\u7969\u796b\u7972\u7979\u797b\u797c\u797e\u798b\u798c\u7991\u7993\u7994\u7995\u7996\u7998\u799b\u799c\u79a1\u79a8\u79a9\u79ab\u79af\u79b1\u79b4\u79b8\u79bb\u79c2\u79c4\u79c7\u79c8\u79ca\u79cf\u79d4\u79d6\u79da\u79dd\u79de"],["8fd1a1","\u79e0\u79e2\u79e5\u79ea\u79eb\u79ed\u79f1\u79f8\u79fc\u7a02\u7a03\u7a07\u7a09\u7a0a\u7a0c\u7a11\u7a15\u7a1b\u7a1e\u7a21\u7a27\u7a2b\u7a2d\u7a2f\u7a30\u7a34\u7a35\u7a38\u7a39\u7a3a\u7a44\u7a45\u7a47\u7a48\u7a4c\u7a55\u7a56\u7a59\u7a5c\u7a5d\u7a5f\u7a60\u7a65\u7a67\u7a6a\u7a6d\u7a75\u7a78\u7a7e\u7a80\u7a82\u7a85\u7a86\u7a8a\u7a8b\u7a90\u7a91\u7a94\u7a9e\u7aa0\u7aa3\u7aac\u7ab3\u7ab5\u7ab9\u7abb\u7abc\u7ac6\u7ac9\u7acc\u7ace\u7ad1\u7adb\u7ae8\u7ae9\u7aeb\u7aec\u7af1\u7af4\u7afb\u7afd\u7afe\u7b07\u7b14\u7b1f\u7b23\u7b27\u7b29\u7b2a\u7b2b\u7b2d\u7b2e\u7b2f\u7b30"],["8fd2a1","\u7b31\u7b34\u7b3d\u7b3f\u7b40\u7b41\u7b47\u7b4e\u7b55\u7b60\u7b64\u7b66\u7b69\u7b6a\u7b6d\u7b6f\u7b72\u7b73\u7b77\u7b84\u7b89\u7b8e\u7b90\u7b91\u7b96\u7b9b\u7b9e\u7ba0\u7ba5\u7bac\u7baf\u7bb0\u7bb2\u7bb5\u7bb6\u7bba\u7bbb\u7bbc\u7bbd\u7bc2\u7bc5\u7bc8\u7bca\u7bd4\u7bd6\u7bd7\u7bd9\u7bda\u7bdb\u7be8\u7bea\u7bf2\u7bf4\u7bf5\u7bf8\u7bf9\u7bfa\u7bfc\u7bfe\u7c01\u7c02\u7c03\u7c04\u7c06\u7c09\u7c0b\u7c0c\u7c0e\u7c0f\u7c19\u7c1b\u7c20\u7c25\u7c26\u7c28\u7c2c\u7c31\u7c33\u7c34\u7c36\u7c39\u7c3a\u7c46\u7c4a\u7c55\u7c51\u7c52\u7c53\u7c59",5],["8fd3a1","\u7c61\u7c63\u7c67\u7c69\u7c6d\u7c6e\u7c70\u7c72\u7c79\u7c7c\u7c7d\u7c86\u7c87\u7c8f\u7c94\u7c9e\u7ca0\u7ca6\u7cb0\u7cb6\u7cb7\u7cba\u7cbb\u7cbc\u7cbf\u7cc4\u7cc7\u7cc8\u7cc9\u7ccd\u7ccf\u7cd3\u7cd4\u7cd5\u7cd7\u7cd9\u7cda\u7cdd\u7ce6\u7ce9\u7ceb\u7cf5\u7d03\u7d07\u7d08\u7d09\u7d0f\u7d11\u7d12\u7d13\u7d16\u7d1d\u7d1e\u7d23\u7d26\u7d2a\u7d2d\u7d31\u7d3c\u7d3d\u7d3e\u7d40\u7d41\u7d47\u7d48\u7d4d\u7d51\u7d53\u7d57\u7d59\u7d5a\u7d5c\u7d5d\u7d65\u7d67\u7d6a\u7d70\u7d78\u7d7a\u7d7b\u7d7f\u7d81\u7d82\u7d83\u7d85\u7d86\u7d88\u7d8b\u7d8c\u7d8d\u7d91\u7d96\u7d97\u7d9d"],["8fd4a1","\u7d9e\u7da6\u7da7\u7daa\u7db3\u7db6\u7db7\u7db9\u7dc2",4,"\u7dcc\u7dcd\u7dce\u7dd7\u7dd9\u7e00\u7de2\u7de5\u7de6\u7dea\u7deb\u7ded\u7df1\u7df5\u7df6\u7df9\u7dfa\u7e08\u7e10\u7e11\u7e15\u7e17\u7e1c\u7e1d\u7e20\u7e27\u7e28\u7e2c\u7e2d\u7e2f\u7e33\u7e36\u7e3f\u7e44\u7e45\u7e47\u7e4e\u7e50\u7e52\u7e58\u7e5f\u7e61\u7e62\u7e65\u7e6b\u7e6e\u7e6f\u7e73\u7e78\u7e7e\u7e81\u7e86\u7e87\u7e8a\u7e8d\u7e91\u7e95\u7e98\u7e9a\u7e9d\u7e9e\u7f3c\u7f3b\u7f3d\u7f3e\u7f3f\u7f43\u7f44\u7f47\u7f4f\u7f52\u7f53\u7f5b\u7f5c\u7f5d\u7f61\u7f63\u7f64\u7f65\u7f66\u7f6d"],["8fd5a1","\u7f71\u7f7d\u7f7e\u7f7f\u7f80\u7f8b\u7f8d\u7f8f\u7f90\u7f91\u7f96\u7f97\u7f9c\u7fa1\u7fa2\u7fa6\u7faa\u7fad\u7fb4\u7fbc\u7fbf\u7fc0\u7fc3\u7fc8\u7fce\u7fcf\u7fdb\u7fdf\u7fe3\u7fe5\u7fe8\u7fec\u7fee\u7fef\u7ff2\u7ffa\u7ffd\u7ffe\u7fff\u8007\u8008\u800a\u800d\u800e\u800f\u8011\u8013\u8014\u8016\u801d\u801e\u801f\u8020\u8024\u8026\u802c\u802e\u8030\u8034\u8035\u8037\u8039\u803a\u803c\u803e\u8040\u8044\u8060\u8064\u8066\u806d\u8071\u8075\u8081\u8088\u808e\u809c\u809e\u80a6\u80a7\u80ab\u80b8\u80b9\u80c8\u80cd\u80cf\u80d2\u80d4\u80d5\u80d7\u80d8\u80e0\u80ed\u80ee"],["8fd6a1","\u80f0\u80f2\u80f3\u80f6\u80f9\u80fa\u80fe\u8103\u810b\u8116\u8117\u8118\u811c\u811e\u8120\u8124\u8127\u812c\u8130\u8135\u813a\u813c\u8145\u8147\u814a\u814c\u8152\u8157\u8160\u8161\u8167\u8168\u8169\u816d\u816f\u8177\u8181\u8190\u8184\u8185\u8186\u818b\u818e\u8196\u8198\u819b\u819e\u81a2\u81ae\u81b2\u81b4\u81bb\u81cb\u81c3\u81c5\u81ca\u81ce\u81cf\u81d5\u81d7\u81db\u81dd\u81de\u81e1\u81e4\u81eb\u81ec\u81f0\u81f1\u81f2\u81f5\u81f6\u81f8\u81f9\u81fd\u81ff\u8200\u8203\u820f\u8213\u8214\u8219\u821a\u821d\u8221\u8222\u8228\u8232\u8234\u823a\u8243\u8244\u8245\u8246"],["8fd7a1","\u824b\u824e\u824f\u8251\u8256\u825c\u8260\u8263\u8267\u826d\u8274\u827b\u827d\u827f\u8280\u8281\u8283\u8284\u8287\u8289\u828a\u828e\u8291\u8294\u8296\u8298\u829a\u829b\u82a0\u82a1\u82a3\u82a4\u82a7\u82a8\u82a9\u82aa\u82ae\u82b0\u82b2\u82b4\u82b7\u82ba\u82bc\u82be\u82bf\u82c6\u82d0\u82d5\u82da\u82e0\u82e2\u82e4\u82e8\u82ea\u82ed\u82ef\u82f6\u82f7\u82fd\u82fe\u8300\u8301\u8307\u8308\u830a\u830b\u8354\u831b\u831d\u831e\u831f\u8321\u8322\u832c\u832d\u832e\u8330\u8333\u8337\u833a\u833c\u833d\u8342\u8343\u8344\u8347\u834d\u834e\u8351\u8355\u8356\u8357\u8370\u8378"],["8fd8a1","\u837d\u837f\u8380\u8382\u8384\u8386\u838d\u8392\u8394\u8395\u8398\u8399\u839b\u839c\u839d\u83a6\u83a7\u83a9\u83ac\u83be\u83bf\u83c0\u83c7\u83c9\u83cf\u83d0\u83d1\u83d4\u83dd\u8353\u83e8\u83ea\u83f6\u83f8\u83f9\u83fc\u8401\u8406\u840a\u840f\u8411\u8415\u8419\u83ad\u842f\u8439\u8445\u8447\u8448\u844a\u844d\u844f\u8451\u8452\u8456\u8458\u8459\u845a\u845c\u8460\u8464\u8465\u8467\u846a\u8470\u8473\u8474\u8476\u8478\u847c\u847d\u8481\u8485\u8492\u8493\u8495\u849e\u84a6\u84a8\u84a9\u84aa\u84af\u84b1\u84b4\u84ba\u84bd\u84be\u84c0\u84c2\u84c7\u84c8\u84cc\u84cf\u84d3"],["8fd9a1","\u84dc\u84e7\u84ea\u84ef\u84f0\u84f1\u84f2\u84f7\u8532\u84fa\u84fb\u84fd\u8502\u8503\u8507\u850c\u850e\u8510\u851c\u851e\u8522\u8523\u8524\u8525\u8527\u852a\u852b\u852f\u8533\u8534\u8536\u853f\u8546\u854f",4,"\u8556\u8559\u855c",6,"\u8564\u856b\u856f\u8579\u857a\u857b\u857d\u857f\u8581\u8585\u8586\u8589\u858b\u858c\u858f\u8593\u8598\u859d\u859f\u85a0\u85a2\u85a5\u85a7\u85b4\u85b6\u85b7\u85b8\u85bc\u85bd\u85be\u85bf\u85c2\u85c7\u85ca\u85cb\u85ce\u85ad\u85d8\u85da\u85df\u85e0\u85e6\u85e8\u85ed\u85f3\u85f6\u85fc"],["8fdaa1","\u85ff\u8600\u8604\u8605\u860d\u860e\u8610\u8611\u8612\u8618\u8619\u861b\u861e\u8621\u8627\u8629\u8636\u8638\u863a\u863c\u863d\u8640\u8642\u8646\u8652\u8653\u8656\u8657\u8658\u8659\u865d\u8660",4,"\u8669\u866c\u866f\u8675\u8676\u8677\u867a\u868d\u8691\u8696\u8698\u869a\u869c\u86a1\u86a6\u86a7\u86a8\u86ad\u86b1\u86b3\u86b4\u86b5\u86b7\u86b8\u86b9\u86bf\u86c0\u86c1\u86c3\u86c5\u86d1\u86d2\u86d5\u86d7\u86da\u86dc\u86e0\u86e3\u86e5\u86e7\u8688\u86fa\u86fc\u86fd\u8704\u8705\u8707\u870b\u870e\u870f\u8710\u8713\u8714\u8719\u871e\u871f\u8721\u8723"],["8fdba1","\u8728\u872e\u872f\u8731\u8732\u8739\u873a\u873c\u873d\u873e\u8740\u8743\u8745\u874d\u8758\u875d\u8761\u8764\u8765\u876f\u8771\u8772\u877b\u8783",6,"\u878b\u878c\u8790\u8793\u8795\u8797\u8798\u8799\u879e\u87a0\u87a3\u87a7\u87ac\u87ad\u87ae\u87b1\u87b5\u87be\u87bf\u87c1\u87c8\u87c9\u87ca\u87ce\u87d5\u87d6\u87d9\u87da\u87dc\u87df\u87e2\u87e3\u87e4\u87ea\u87eb\u87ed\u87f1\u87f3\u87f8\u87fa\u87ff\u8801\u8803\u8806\u8809\u880a\u880b\u8810\u8819\u8812\u8813\u8814\u8818\u881a\u881b\u881c\u881e\u881f\u8828\u882d\u882e\u8830\u8832\u8835"],["8fdca1","\u883a\u883c\u8841\u8843\u8845\u8848\u8849\u884a\u884b\u884e\u8851\u8855\u8856\u8858\u885a\u885c\u885f\u8860\u8864\u8869\u8871\u8879\u887b\u8880\u8898\u889a\u889b\u889c\u889f\u88a0\u88a8\u88aa\u88ba\u88bd\u88be\u88c0\u88ca",4,"\u88d1\u88d2\u88d3\u88db\u88de\u88e7\u88ef\u88f0\u88f1\u88f5\u88f7\u8901\u8906\u890d\u890e\u890f\u8915\u8916\u8918\u8919\u891a\u891c\u8920\u8926\u8927\u8928\u8930\u8931\u8932\u8935\u8939\u893a\u893e\u8940\u8942\u8945\u8946\u8949\u894f\u8952\u8957\u895a\u895b\u895c\u8961\u8962\u8963\u896b\u896e\u8970\u8973\u8975\u897a"],["8fdda1","\u897b\u897c\u897d\u8989\u898d\u8990\u8994\u8995\u899b\u899c\u899f\u89a0\u89a5\u89b0\u89b4\u89b5\u89b6\u89b7\u89bc\u89d4",4,"\u89e5\u89e9\u89eb\u89ed\u89f1\u89f3\u89f6\u89f9\u89fd\u89ff\u8a04\u8a05\u8a07\u8a0f\u8a11\u8a12\u8a14\u8a15\u8a1e\u8a20\u8a22\u8a24\u8a26\u8a2b\u8a2c\u8a2f\u8a35\u8a37\u8a3d\u8a3e\u8a40\u8a43\u8a45\u8a47\u8a49\u8a4d\u8a4e\u8a53\u8a56\u8a57\u8a58\u8a5c\u8a5d\u8a61\u8a65\u8a67\u8a75\u8a76\u8a77\u8a79\u8a7a\u8a7b\u8a7e\u8a7f\u8a80\u8a83\u8a86\u8a8b\u8a8f\u8a90\u8a92\u8a96\u8a97\u8a99\u8a9f\u8aa7\u8aa9\u8aae\u8aaf\u8ab3"],["8fdea1","\u8ab6\u8ab7\u8abb\u8abe\u8ac3\u8ac6\u8ac8\u8ac9\u8aca\u8ad1\u8ad3\u8ad4\u8ad5\u8ad7\u8add\u8adf\u8aec\u8af0\u8af4\u8af5\u8af6\u8afc\u8aff\u8b05\u8b06\u8b0b\u8b11\u8b1c\u8b1e\u8b1f\u8b0a\u8b2d\u8b30\u8b37\u8b3c\u8b42",4,"\u8b48\u8b52\u8b53\u8b54\u8b59\u8b4d\u8b5e\u8b63\u8b6d\u8b76\u8b78\u8b79\u8b7c\u8b7e\u8b81\u8b84\u8b85\u8b8b\u8b8d\u8b8f\u8b94\u8b95\u8b9c\u8b9e\u8b9f\u8c38\u8c39\u8c3d\u8c3e\u8c45\u8c47\u8c49\u8c4b\u8c4f\u8c51\u8c53\u8c54\u8c57\u8c58\u8c5b\u8c5d\u8c59\u8c63\u8c64\u8c66\u8c68\u8c69\u8c6d\u8c73\u8c75\u8c76\u8c7b\u8c7e\u8c86"],["8fdfa1","\u8c87\u8c8b\u8c90\u8c92\u8c93\u8c99\u8c9b\u8c9c\u8ca4\u8cb9\u8cba\u8cc5\u8cc6\u8cc9\u8ccb\u8ccf\u8cd6\u8cd5\u8cd9\u8cdd\u8ce1\u8ce8\u8cec\u8cef\u8cf0\u8cf2\u8cf5\u8cf7\u8cf8\u8cfe\u8cff\u8d01\u8d03\u8d09\u8d12\u8d17\u8d1b\u8d65\u8d69\u8d6c\u8d6e\u8d7f\u8d82\u8d84\u8d88\u8d8d\u8d90\u8d91\u8d95\u8d9e\u8d9f\u8da0\u8da6\u8dab\u8dac\u8daf\u8db2\u8db5\u8db7\u8db9\u8dbb\u8dc0\u8dc5\u8dc6\u8dc7\u8dc8\u8dca\u8dce\u8dd1\u8dd4\u8dd5\u8dd7\u8dd9\u8de4\u8de5\u8de7\u8dec\u8df0\u8dbc\u8df1\u8df2\u8df4\u8dfd\u8e01\u8e04\u8e05\u8e06\u8e0b\u8e11\u8e14\u8e16\u8e20\u8e21\u8e22"],["8fe0a1","\u8e23\u8e26\u8e27\u8e31\u8e33\u8e36\u8e37\u8e38\u8e39\u8e3d\u8e40\u8e41\u8e4b\u8e4d\u8e4e\u8e4f\u8e54\u8e5b\u8e5c\u8e5d\u8e5e\u8e61\u8e62\u8e69\u8e6c\u8e6d\u8e6f\u8e70\u8e71\u8e79\u8e7a\u8e7b\u8e82\u8e83\u8e89\u8e90\u8e92\u8e95\u8e9a\u8e9b\u8e9d\u8e9e\u8ea2\u8ea7\u8ea9\u8ead\u8eae\u8eb3\u8eb5\u8eba\u8ebb\u8ec0\u8ec1\u8ec3\u8ec4\u8ec7\u8ecf\u8ed1\u8ed4\u8edc\u8ee8\u8eee\u8ef0\u8ef1\u8ef7\u8ef9\u8efa\u8eed\u8f00\u8f02\u8f07\u8f08\u8f0f\u8f10\u8f16\u8f17\u8f18\u8f1e\u8f20\u8f21\u8f23\u8f25\u8f27\u8f28\u8f2c\u8f2d\u8f2e\u8f34\u8f35\u8f36\u8f37\u8f3a\u8f40\u8f41"],["8fe1a1","\u8f43\u8f47\u8f4f\u8f51",4,"\u8f58\u8f5d\u8f5e\u8f65\u8f9d\u8fa0\u8fa1\u8fa4\u8fa5\u8fa6\u8fb5\u8fb6\u8fb8\u8fbe\u8fc0\u8fc1\u8fc6\u8fca\u8fcb\u8fcd\u8fd0\u8fd2\u8fd3\u8fd5\u8fe0\u8fe3\u8fe4\u8fe8\u8fee\u8ff1\u8ff5\u8ff6\u8ffb\u8ffe\u9002\u9004\u9008\u900c\u9018\u901b\u9028\u9029\u902f\u902a\u902c\u902d\u9033\u9034\u9037\u903f\u9043\u9044\u904c\u905b\u905d\u9062\u9066\u9067\u906c\u9070\u9074\u9079\u9085\u9088\u908b\u908c\u908e\u9090\u9095\u9097\u9098\u9099\u909b\u90a0\u90a1\u90a2\u90a5\u90b0\u90b2\u90b3\u90b4\u90b6\u90bd\u90cc\u90be\u90c3"],["8fe2a1","\u90c4\u90c5\u90c7\u90c8\u90d5\u90d7\u90d8\u90d9\u90dc\u90dd\u90df\u90e5\u90d2\u90f6\u90eb\u90ef\u90f0\u90f4\u90fe\u90ff\u9100\u9104\u9105\u9106\u9108\u910d\u9110\u9114\u9116\u9117\u9118\u911a\u911c\u911e\u9120\u9125\u9122\u9123\u9127\u9129\u912e\u912f\u9131\u9134\u9136\u9137\u9139\u913a\u913c\u913d\u9143\u9147\u9148\u914f\u9153\u9157\u9159\u915a\u915b\u9161\u9164\u9167\u916d\u9174\u9179\u917a\u917b\u9181\u9183\u9185\u9186\u918a\u918e\u9191\u9193\u9194\u9195\u9198\u919e\u91a1\u91a6\u91a8\u91ac\u91ad\u91ae\u91b0\u91b1\u91b2\u91b3\u91b6\u91bb\u91bc\u91bd\u91bf"],["8fe3a1","\u91c2\u91c3\u91c5\u91d3\u91d4\u91d7\u91d9\u91da\u91de\u91e4\u91e5\u91e9\u91ea\u91ec",5,"\u91f7\u91f9\u91fb\u91fd\u9200\u9201\u9204\u9205\u9206\u9207\u9209\u920a\u920c\u9210\u9212\u9213\u9216\u9218\u921c\u921d\u9223\u9224\u9225\u9226\u9228\u922e\u922f\u9230\u9233\u9235\u9236\u9238\u9239\u923a\u923c\u923e\u9240\u9242\u9243\u9246\u9247\u924a\u924d\u924e\u924f\u9251\u9258\u9259\u925c\u925d\u9260\u9261\u9265\u9267\u9268\u9269\u926e\u926f\u9270\u9275",4,"\u927b\u927c\u927d\u927f\u9288\u9289\u928a\u928d\u928e\u9292\u9297"],["8fe4a1","\u9299\u929f\u92a0\u92a4\u92a5\u92a7\u92a8\u92ab\u92af\u92b2\u92b6\u92b8\u92ba\u92bb\u92bc\u92bd\u92bf",4,"\u92c5\u92c6\u92c7\u92c8\u92cb\u92cc\u92cd\u92ce\u92d0\u92d3\u92d5\u92d7\u92d8\u92d9\u92dc\u92dd\u92df\u92e0\u92e1\u92e3\u92e5\u92e7\u92e8\u92ec\u92ee\u92f0\u92f9\u92fb\u92ff\u9300\u9302\u9308\u930d\u9311\u9314\u9315\u931c\u931d\u931e\u931f\u9321\u9324\u9325\u9327\u9329\u932a\u9333\u9334\u9336\u9337\u9347\u9348\u9349\u9350\u9351\u9352\u9355\u9357\u9358\u935a\u935e\u9364\u9365\u9367\u9369\u936a\u936d\u936f\u9370\u9371\u9373\u9374\u9376"],["8fe5a1","\u937a\u937d\u937f\u9380\u9381\u9382\u9388\u938a\u938b\u938d\u938f\u9392\u9395\u9398\u939b\u939e\u93a1\u93a3\u93a4\u93a6\u93a8\u93ab\u93b4\u93b5\u93b6\u93ba\u93a9\u93c1\u93c4\u93c5\u93c6\u93c7\u93c9",4,"\u93d3\u93d9\u93dc\u93de\u93df\u93e2\u93e6\u93e7\u93f9\u93f7\u93f8\u93fa\u93fb\u93fd\u9401\u9402\u9404\u9408\u9409\u940d\u940e\u940f\u9415\u9416\u9417\u941f\u942e\u942f\u9431\u9432\u9433\u9434\u943b\u943f\u943d\u9443\u9445\u9448\u944a\u944c\u9455\u9459\u945c\u945f\u9461\u9463\u9468\u946b\u946d\u946e\u946f\u9471\u9472\u9484\u9483\u9578\u9579"],["8fe6a1","\u957e\u9584\u9588\u958c\u958d\u958e\u959d\u959e\u959f\u95a1\u95a6\u95a9\u95ab\u95ac\u95b4\u95b6\u95ba\u95bd\u95bf\u95c6\u95c8\u95c9\u95cb\u95d0\u95d1\u95d2\u95d3\u95d9\u95da\u95dd\u95de\u95df\u95e0\u95e4\u95e6\u961d\u961e\u9622\u9624\u9625\u9626\u962c\u9631\u9633\u9637\u9638\u9639\u963a\u963c\u963d\u9641\u9652\u9654\u9656\u9657\u9658\u9661\u966e\u9674\u967b\u967c\u967e\u967f\u9681\u9682\u9683\u9684\u9689\u9691\u9696\u969a\u969d\u969f\u96a4\u96a5\u96a6\u96a9\u96ae\u96af\u96b3\u96ba\u96ca\u96d2\u5db2\u96d8\u96da\u96dd\u96de\u96df\u96e9\u96ef\u96f1\u96fa\u9702"],["8fe7a1","\u9703\u9705\u9709\u971a\u971b\u971d\u9721\u9722\u9723\u9728\u9731\u9733\u9741\u9743\u974a\u974e\u974f\u9755\u9757\u9758\u975a\u975b\u9763\u9767\u976a\u976e\u9773\u9776\u9777\u9778\u977b\u977d\u977f\u9780\u9789\u9795\u9796\u9797\u9799\u979a\u979e\u979f\u97a2\u97ac\u97ae\u97b1\u97b2\u97b5\u97b6\u97b8\u97b9\u97ba\u97bc\u97be\u97bf\u97c1\u97c4\u97c5\u97c7\u97c9\u97ca\u97cc\u97cd\u97ce\u97d0\u97d1\u97d4\u97d7\u97d8\u97d9\u97dd\u97de\u97e0\u97db\u97e1\u97e4\u97ef\u97f1\u97f4\u97f7\u97f8\u97fa\u9807\u980a\u9819\u980d\u980e\u9814\u9816\u981c\u981e\u9820\u9823\u9826"],["8fe8a1","\u982b\u982e\u982f\u9830\u9832\u9833\u9835\u9825\u983e\u9844\u9847\u984a\u9851\u9852\u9853\u9856\u9857\u9859\u985a\u9862\u9863\u9865\u9866\u986a\u986c\u98ab\u98ad\u98ae\u98b0\u98b4\u98b7\u98b8\u98ba\u98bb\u98bf\u98c2\u98c5\u98c8\u98cc\u98e1\u98e3\u98e5\u98e6\u98e7\u98ea\u98f3\u98f6\u9902\u9907\u9908\u9911\u9915\u9916\u9917\u991a\u991b\u991c\u991f\u9922\u9926\u9927\u992b\u9931",4,"\u9939\u993a\u993b\u993c\u9940\u9941\u9946\u9947\u9948\u994d\u994e\u9954\u9958\u9959\u995b\u995c\u995e\u995f\u9960\u999b\u999d\u999f\u99a6\u99b0\u99b1\u99b2\u99b5"],["8fe9a1","\u99b9\u99ba\u99bd\u99bf\u99c3\u99c9\u99d3\u99d4\u99d9\u99da\u99dc\u99de\u99e7\u99ea\u99eb\u99ec\u99f0\u99f4\u99f5\u99f9\u99fd\u99fe\u9a02\u9a03\u9a04\u9a0b\u9a0c\u9a10\u9a11\u9a16\u9a1e\u9a20\u9a22\u9a23\u9a24\u9a27\u9a2d\u9a2e\u9a33\u9a35\u9a36\u9a38\u9a47\u9a41\u9a44\u9a4a\u9a4b\u9a4c\u9a4e\u9a51\u9a54\u9a56\u9a5d\u9aaa\u9aac\u9aae\u9aaf\u9ab2\u9ab4\u9ab5\u9ab6\u9ab9\u9abb\u9abe\u9abf\u9ac1\u9ac3\u9ac6\u9ac8\u9ace\u9ad0\u9ad2\u9ad5\u9ad6\u9ad7\u9adb\u9adc\u9ae0\u9ae4\u9ae5\u9ae7\u9ae9\u9aec\u9af2\u9af3\u9af5\u9af9\u9afa\u9afd\u9aff",4],["8feaa1","\u9b04\u9b05\u9b08\u9b09\u9b0b\u9b0c\u9b0d\u9b0e\u9b10\u9b12\u9b16\u9b19\u9b1b\u9b1c\u9b20\u9b26\u9b2b\u9b2d\u9b33\u9b34\u9b35\u9b37\u9b39\u9b3a\u9b3d\u9b48\u9b4b\u9b4c\u9b55\u9b56\u9b57\u9b5b\u9b5e\u9b61\u9b63\u9b65\u9b66\u9b68\u9b6a",4,"\u9b73\u9b75\u9b77\u9b78\u9b79\u9b7f\u9b80\u9b84\u9b85\u9b86\u9b87\u9b89\u9b8a\u9b8b\u9b8d\u9b8f\u9b90\u9b94\u9b9a\u9b9d\u9b9e\u9ba6\u9ba7\u9ba9\u9bac\u9bb0\u9bb1\u9bb2\u9bb7\u9bb8\u9bbb\u9bbc\u9bbe\u9bbf\u9bc1\u9bc7\u9bc8\u9bce\u9bd0\u9bd7\u9bd8\u9bdd\u9bdf\u9be5\u9be7\u9bea\u9beb\u9bef\u9bf3\u9bf7\u9bf8"],["8feba1","\u9bf9\u9bfa\u9bfd\u9bff\u9c00\u9c02\u9c0b\u9c0f\u9c11\u9c16\u9c18\u9c19\u9c1a\u9c1c\u9c1e\u9c22\u9c23\u9c26",4,"\u9c31\u9c35\u9c36\u9c37\u9c3d\u9c41\u9c43\u9c44\u9c45\u9c49\u9c4a\u9c4e\u9c4f\u9c50\u9c53\u9c54\u9c56\u9c58\u9c5b\u9c5d\u9c5e\u9c5f\u9c63\u9c69\u9c6a\u9c5c\u9c6b\u9c68\u9c6e\u9c70\u9c72\u9c75\u9c77\u9c7b\u9ce6\u9cf2\u9cf7\u9cf9\u9d0b\u9d02\u9d11\u9d17\u9d18\u9d1c\u9d1d\u9d1e\u9d2f\u9d30\u9d32\u9d33\u9d34\u9d3a\u9d3c\u9d45\u9d3d\u9d42\u9d43\u9d47\u9d4a\u9d53\u9d54\u9d5f\u9d63\u9d62\u9d65\u9d69\u9d6a\u9d6b\u9d70\u9d76\u9d77\u9d7b"],["8feca1","\u9d7c\u9d7e\u9d83\u9d84\u9d86\u9d8a\u9d8d\u9d8e\u9d92\u9d93\u9d95\u9d96\u9d97\u9d98\u9da1\u9daa\u9dac\u9dae\u9db1\u9db5\u9db9\u9dbc\u9dbf\u9dc3\u9dc7\u9dc9\u9dca\u9dd4\u9dd5\u9dd6\u9dd7\u9dda\u9dde\u9ddf\u9de0\u9de5\u9de7\u9de9\u9deb\u9dee\u9df0\u9df3\u9df4\u9dfe\u9e0a\u9e02\u9e07\u9e0e\u9e10\u9e11\u9e12\u9e15\u9e16\u9e19\u9e1c\u9e1d\u9e7a\u9e7b\u9e7c\u9e80\u9e82\u9e83\u9e84\u9e85\u9e87\u9e8e\u9e8f\u9e96\u9e98\u9e9b\u9e9e\u9ea4\u9ea8\u9eac\u9eae\u9eaf\u9eb0\u9eb3\u9eb4\u9eb5\u9ec6\u9ec8\u9ecb\u9ed5\u9edf\u9ee4\u9ee7\u9eec\u9eed\u9eee\u9ef0\u9ef1\u9ef2\u9ef5"],["8feda1","\u9ef8\u9eff\u9f02\u9f03\u9f09\u9f0f\u9f10\u9f11\u9f12\u9f14\u9f16\u9f17\u9f19\u9f1a\u9f1b\u9f1f\u9f22\u9f26\u9f2a\u9f2b\u9f2f\u9f31\u9f32\u9f34\u9f37\u9f39\u9f3a\u9f3c\u9f3d\u9f3f\u9f41\u9f43",4,"\u9f53\u9f55\u9f56\u9f57\u9f58\u9f5a\u9f5d\u9f5e\u9f68\u9f69\u9f6d",4,"\u9f73\u9f75\u9f7a\u9f7d\u9f8f\u9f90\u9f91\u9f92\u9f94\u9f96\u9f97\u9f9e\u9fa1\u9fa2\u9fa3\u9fa5"]]')},99129:function(b){"use strict";b.exports=JSON.parse('{"uChars":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],"gbChars":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}')},55914:function(b){"use strict";b.exports=JSON.parse('[["a140","\ue4c6",62],["a180","\ue505",32],["a240","\ue526",62],["a280","\ue565",32],["a2ab","\ue766",5],["a2e3","\u20ac\ue76d"],["a2ef","\ue76e\ue76f"],["a2fd","\ue770\ue771"],["a340","\ue586",62],["a380","\ue5c5",31,"\u3000"],["a440","\ue5e6",62],["a480","\ue625",32],["a4f4","\ue772",10],["a540","\ue646",62],["a580","\ue685",32],["a5f7","\ue77d",7],["a640","\ue6a6",62],["a680","\ue6e5",32],["a6b9","\ue785",7],["a6d9","\ue78d",6],["a6ec","\ue794\ue795"],["a6f3","\ue796"],["a6f6","\ue797",8],["a740","\ue706",62],["a780","\ue745",32],["a7c2","\ue7a0",14],["a7f2","\ue7af",12],["a896","\ue7bc",10],["a8bc","\u1e3f"],["a8bf","\u01f9"],["a8c1","\ue7c9\ue7ca\ue7cb\ue7cc"],["a8ea","\ue7cd",20],["a958","\ue7e2"],["a95b","\ue7e3"],["a95d","\ue7e4\ue7e5\ue7e6"],["a989","\u303e\u2ff0",11],["a997","\ue7f4",12],["a9f0","\ue801",14],["aaa1","\ue000",93],["aba1","\ue05e",93],["aca1","\ue0bc",93],["ada1","\ue11a",93],["aea1","\ue178",93],["afa1","\ue1d6",93],["d7fa","\ue810",4],["f8a1","\ue234",93],["f9a1","\ue292",93],["faa1","\ue2f0",93],["fba1","\ue34e",93],["fca1","\ue3ac",93],["fda1","\ue40a",93],["fe50","\u2e81\ue816\ue817\ue818\u2e84\u3473\u3447\u2e88\u2e8b\ue81e\u359e\u361a\u360e\u2e8c\u2e97\u396e\u3918\ue826\u39cf\u39df\u3a73\u39d0\ue82b\ue82c\u3b4e\u3c6e\u3ce0\u2ea7\ue831\ue832\u2eaa\u4056\u415f\u2eae\u4337\u2eb3\u2eb6\u2eb7\ue83b\u43b1\u43ac\u2ebb\u43dd\u44d6\u4661\u464c\ue843"],["fe80","\u4723\u4729\u477c\u478d\u2eca\u4947\u497a\u497d\u4982\u4983\u4985\u4986\u499f\u499b\u49b7\u49b6\ue854\ue855\u4ca3\u4c9f\u4ca0\u4ca1\u4c77\u4ca2\u4d13",6,"\u4dae\ue864\ue468",93],["8135f437","\ue7c7"]]')},40679:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",128],["a1","\uff61",62],["8140","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7"],["8180","\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["81b8","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["81c8","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["81da","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["81f0","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["81fc","\u25ef"],["824f","\uff10",9],["8260","\uff21",25],["8281","\uff41",25],["829f","\u3041",82],["8340","\u30a1",62],["8380","\u30e0",22],["839f","\u0391",16,"\u03a3",6],["83bf","\u03b1",16,"\u03c3",6],["8440","\u0410",5,"\u0401\u0416",25],["8470","\u0430",5,"\u0451\u0436",7],["8480","\u043e",17],["849f","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["8740","\u2460",19,"\u2160",9],["875f","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["877e","\u337b"],["8780","\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["889f","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["8940","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186"],["8980","\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["8a40","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b"],["8a80","\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["8b40","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551"],["8b80","\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["8c40","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8"],["8c80","\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["8d40","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d"],["8d80","\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["8e40","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62"],["8e80","\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["8f40","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3"],["8f80","\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["9040","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8"],["9080","\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["9140","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb"],["9180","\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["9240","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4"],["9280","\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["9340","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac"],["9380","\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["9440","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885"],["9480","\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["9540","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577"],["9580","\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["9640","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6"],["9680","\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["9740","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32"],["9780","\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["9840","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["989f","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["9940","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed"],["9980","\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["9a40","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638"],["9a80","\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["9b40","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80"],["9b80","\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["9c40","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060"],["9c80","\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["9d40","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b"],["9d80","\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["9e40","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e"],["9e80","\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["9f40","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef"],["9f80","\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["e040","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd"],["e080","\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e140","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff"],["e180","\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e240","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0"],["e280","\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e340","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37"],["e380","\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e440","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264"],["e480","\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e540","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec"],["e580","\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["e640","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7"],["e680","\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["e740","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c"],["e780","\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["e840","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599"],["e880","\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["e940","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43"],["e980","\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["ea40","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef"],["ea80","\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0\u582f\u69c7\u9059\u7464\u51dc\u7199"],["ed40","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f"],["ed80","\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["ee40","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559"],["ee80","\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["eeef","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["f040","\ue000",62],["f080","\ue03f",124],["f140","\ue0bc",62],["f180","\ue0fb",124],["f240","\ue178",62],["f280","\ue1b7",124],["f340","\ue234",62],["f380","\ue273",124],["f440","\ue2f0",62],["f480","\ue32f",124],["f540","\ue3ac",62],["f580","\ue3eb",124],["f640","\ue468",62],["f680","\ue4a7",124],["f740","\ue524",62],["f780","\ue563",124],["f840","\ue5e0",62],["f880","\ue61f",124],["f940","\ue69c"],["fa40","\u2170",9,"\u2160",9,"\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u2235\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a"],["fa80","\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f"],["fb40","\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19"],["fb80","\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9"],["fc40","\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"]]')}},Pt={};function st(b){var A=Pt[b];if(void 0!==A)return A.exports;var n=Pt[b]={id:b,loaded:!1,exports:{}};return br[b].call(n.exports,n,n.exports,st),n.loaded=!0,n.exports}return st.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch{if("object"==typeof window)return window}}(),st.nmd=function(b){return b.paths=[],b.children||(b.children=[]),b},st(36164)}()},7235:function(){this.b=this.b||{},this.b.vfs={"Roboto-Italic.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAddgAAACWEdQT1N/jKrdAAHZuAAAWMBHU1VCm18k/AACMngAABX2T1MvMpeDsUwAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHXVAAAAAxnbHlmNN3JWAAAOswAAZmmaGVhZAh9pEIAAAEcAAAANmhoZWEMnBKkAAABVAAAACRobXR4VUzdowAAAfgAABSkbG9jYV8SwLgAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOSJt5gAB1HQAAALAcG9zdP9hAGQAAdc0AAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDJn8J2NfDzz1ABsIAAAAAADE8BEuAAAAAODgRcL6N/3VCUMIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJA/o3/mwJQwgAAbMAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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//IAwkA8wP/AAAH9AAAA/8AAAf0AAACrgAAAgQAAAFcAAAEZgAAAikAAAGfAAABAgAAANUAAAAAAAACLQAaAi0AGgUiAKYGGQCYA4r/XgGOALABjgCJAYz/lwGOANICyAC4AtAAlQKt/5QESAB3BG3/9gKeAKEDsQA4BTsAOAF0AFIHbwCWAlUAXQJVAAQDh//wAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgMfAIgC4QCJAuEAcwHiAI8B4gA+A0cAfgLi/9wC4gAtAuL/qwLi/7wC4v+yAuL/2ALi/94C4v/wAuL/yQLi//gDKf/cAuv/3QLr/8cB4v/oAeL/nQSD//MGJQAKBl8AOQg/ADsFvgAJBfwAHwRcAFEFrQBDBAMASgRSAAsFH//yBSb/5QW7AMwDsQBLB/sANQTbAOsE8QB/BgEAtgasAJIGpQCQBkMAvgRtAE0FZAAkBIv/rQRwAKsEoABBB/sASwH9/xUEXwAzBEIAcAP8/9MEGQAYA+kAQgJEAHcCfABxAfX/5ATXAHUETQBZBGgAdQagAHUGoAB1BMgAdQZoACgAAAAAB/X/qwg1AFwC2P/qAtgAbALYABwD8QBpA/EAJwPxAHAD8ABLA/EASgPx//cD8QAXA/H//QPxAL0D8QBGBAP/3QQLAHUEM/+3BeYAlARGAHkEWwBCBAcAbgQAABIEKQAdBJgARgQ7AB4EmABMBL0AHgXUAB4DmQAeBDQAHgOy//YB2gArBL4AHgSIAEwDrwAeBAAAEgQUAAYDhQAZA5MAHgRG/7AEmABMBEb/sANu/9MEqgAeA9L/1gU+AFIE8AB9BM0ADgVJAG0EWgBIBwr/wwcYAB4FSgBuBKkAHgQ5ACAE/f+JBd3/rwQfABIExgAgBC0AHwSc/8QEAABaBQEAHgRIAFYGIAAeBnkAHgT2AFEFzQAgBC4AIARaACAGRQAeBGT/4APz//oGGP+vBFcAHwTjAB8FDwBqBZcAUARHAHUEhP+3BjEAbQRIAFUESAAeBZgALgSmAEAEHwASBJwARgQUAAADxgAfB+QAHgSH/94C2P/7Atj/8QLYABcC2AAdAtgALwLYAAgC2AA3A3sAkwKgAQsDyAAeBBr/mQSfAEgFIwBEBP0ARAP1ACYFFQBEA/AAJgRdAB4EWgBIBDAAHgRj/6YB7wD8A4kBEgAA/SoD0gDTA9YAIgPwAM4D1wDNA5MAHgOEARIDgwETAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgVYAIAFgwCBBWgARAWzAIMFtgCDA7gAvARfADkEN/+BBKr/0wRJ/9UEDgArA4kBFAGG/74GcQBMBJYAPgHt/w8EZv+sBGb/4wRm/7gEZgAsBGYAVgRmACQEZgBmBGYAGwRmAEAEZgENAgD/CQH//wkB9gAvAfb/eAH2AC8EMAAeBNoAZAQBAGIEXAAfBBMARARwAEMEaQAjBHwAQgRr/9cEeQBCBB0ARgRcADUETv+/A2gAqQSxACwDmf/pBgr/mgPaAB4EmP/0BL0AHgS9AB4B9wAAAiUAGgU2AC8FNgAvBGQAPgShAKkCiv/0BRD/rwUQ/68FEP+vBRD/rwUQ/68FEP+vBRD/rwUNAHAEaQA7BGkAOwRpADsEaQA7AhwASQIcAEkCHABJAhwASQWJADsFVwBzBVcAcwVXAHMFVwBzBVcAcwUIAGMFCABjBQgAYwUIAGMEqQCoBDkAMQQ5ADEEOQAxBDkAMQQ5ADEEOQAxBDkAMQQQAEYEHQBFBB0ARQQdAEUEHQBFAewALwHsAC8B7AAvAewALwRJACAEbQBGBG0ARgRtAEYEbQBGBG0ARgRHAFsERwBbBEcAWwRHAFsDrP+qA6z/qgUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUNAHAEEABGBQ0AcAQQAEYFDQBwBBAARgUNAHAEEABGBRgAOwT2AEcEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBUkAdARcAAMFSQB0BFwAAwVJAHQEXAADBUkAdARcAAMFiQA7BEYAIAIcAEkB7AARAhwASQHsAC4CHABJAewALwIc/4sB4/9tAhwASQZkAEkDvgAvBEgABwH1/wkE3gA7A+8AIAQuADsB4wAvBC4AOwHj/6IELgA7AnkALwQuADsCvwAvBYkAOwRJACAFiQA7BEkAIAWJADsESQAgBEkAIAVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgTIADsCoQAgBMgAOwKh/58EyAA7AqEAIAScACkEAQAuBJwAKQQBAC4EnAApBAEALgScACkEAQAuBJwAKQQBAC4EoQCpAooAQwShAKkCigBDBKEAqQKyAEMFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsG4gDDBdUAgASpAKgDrP+qBKkAqASm/+wD2v/uBKb/7APa/+4Epv/sA9r/7gdB/4MGjgATBVcAIARmADoEXf+vBF3/rwQHAG4EY/+mBGP/pgRj/6YEY/+mBGP/pgRj/6YEY/+mBFoASAPIAB4DyAAeA8gAHgPIAB4B2gArAdoAKwHaACsB2gArBL0AHgSYAEwEmABMBJgATASYAEwEmABMBFsAQgRbAEIEWwBCBFsAQgQLAHUEY/+mBGP/pgRj/6YEWgBIBFoASARaAEgEWgBIBF0AHgPIAB4DyAAeA8gAHgPIAB4DyAAeBIgATASIAEwEiABMBIgATAS+AB4B2gAOAdoAKwHaACsB5P+CAdoAKwOy//YENAAeA5kAHgOZAB4DmQAeA5kAHgS9AB4EvQAeBL0AHgSYAEwEmABMBJgATAQpAB0EKQAdBCkAHQQAABIEAAASBAAAEgQAABIEBwBuBAcAbgQHAG4EWwBCBFsAQgRbAEIEWwBCBFsAQgRbAEIF5gCUBAsAdQQLAHUEA//dBAP/3QQD/90FEP+vBM0AAwXtABECgAAXBWsAawUN/+0FPQAeAoQAIAUQ/68E1gA7BGkAOwSm/+wFiQA7AhwASQTeADsGxgA7BYkAOwVXAHME5QA7BKEAqQSpAKgE3f/UAhwASQSpAKgEYwBIBDAAKQRmACUChACEBDwAaARSAC4EbQBGBGb/5gPCAG4ETv+/AoQAZQQ8AGgEbQBGBDwAaAZkAGcEaQA7BFEARAScACkCHABJAhwASQRIAAcE/QBEBN4AOwThAJQFEP+vBNYAOwRRAEQEaQA7BYkARAbGADsFiQA7BVcAcwWJAEQE5QA7BQ0AcAShAKkE3f/UBDkAMQQdAEUEewAwBG0ARgRc/9cEEABGA6z/qgPa/8UEHQBFA0IALgQBAC4B4wAvAewALwHb/xMEMgAwA6z/qgbiAMMF1QCABuIAwwXVAIAG4gDDBdUAgASpAKgDrP+qAVsArAJ8AMkEAABEAfX/CQGOAIkGxgA7Bs4AHgUQ/68EOQAxBGkAOwWJAEQEHQBFBHsAMAVeAIUFbwBOBOQArQPlAIUIGQBGCQMAcwScACUD8QAgBQ0AcAQQAEYEqQCoA+QAhQIcAEkHC/+rBfL/pwIcAEkFEP+vBDkAMQUQ/68EOQAxB0H/gwaOABMEaQA7BB0ARQVdAFIEGAA/BBgAPwcL/6sF8v+nBJwAJQPxACAFiQBEBHsAMAWJAEQEewAwBVcAcwRtAEYFSABnBGkAQwVIAGcEaQBDBTwAdgQtADIE4QCUA6z/qgThAJQDrP+qBOEAlAOs/6oFUADLBDkAeQbAAEQGEAAxBGAARwUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUCHABJAewALwIcAA0B4//wBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVQBmBHAAQwVVAGYEcABDBVUAZgRwAEMFVQBmBHAAQwVVAGYEcABDBQgAYwRHAFsFCABjBEcAWwVlAGMEzQBbBWUAYwTNAFsFZQBjBM0AWwVlAGMEzQBbBWUAYwTNAFsEqQCoA6z/qgSpAKgDrP+qBKkAqAOs/6oEfgAABKEAqQO7AGAFUADLBDkAeQRRAEQDQgAuBgAAiASaAAQERgAgBN4ALATeACwEUQARA0L/5wURAFgECQA6BKkAqAPkAF4E3f/UA9r/xQQwACkESv/XBhkAmARcABgEXAA1BFwABQRcAHIEcACBBIQAVARwAJQEhAB+BUkAdARcAAMFiQA7BEkAIAUQ/68EOQAxBGkAOwQdAEUCHP/gAez/jQVXAHMEbQBGBMgAOwKhACAFCABjBEcAWwSG/7EE1gA7BFwAHwUYADsEYABHBRgAOwRgAEcFiQA7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AGUAcwAvAEwASQBDAEUATgBTAEUALQAyAC4AMAADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAErTAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/5UAAAAA/4gAAP9WAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLrQABAAAAIUeQh4IHYwdkh3QHwYgAjbCMNQ08ih8Hn4x6izCH9AlEB5+Hn4hHB5+Hn4efimMJBQefh+mJJIjJB5cJ9IiZB28JzQdmB98I5ovwh4sIN4lkiG4HyweLCIOH1IhZiA4HywgpB7CHewdsh98HiwmHB28H9AdmCBuIG4gbh5+H9AdmB5+Hn4d+h28H9AdmCLCJhwefh5+IG4gbiEcIKQdniYcHn4efh36Hd4eGiamH9AeoB2oHsIeLB2yHZgdqB28HbIdqB3sHbIeGh7kHbIefh/QHZgefiCkHqAgpB6gHagdqB2oH9AdmB36HsIewh4sIRwdsiEcHbIhHB2yJqYmHB28HcYfpiYcIG4e5AABOcYABAAAAPQswChIKEgy9CzWK2goTit2PCArhCzsKE4objUkMi4tMiyuLQIoWjHwK6AycBemN8IXpjccF6YXphemK5IzOihULRgoVDKyKE4ziCycKEg4nChIKEgoSChCLVQteig8KGQoNitaKDYraChOKE4oTihOLTIs1izWLNYs1izWLNYs1itoK3Yrdit2K3YoTihOKE4oTihOMfAXphemF6YXphemF6YXphemF6YXpihUKFQs1izWLNYraCtoK2graChOK3YXpit2F6YrdhemK3YXpit2F6YXpiuELOws7CzsLOwXphemF6YXpihOF6YoThemKE4XpiuSK5Irki0yLTItMi0CMfAoVDHwK6AroCugKDwoPChCKDYoNig2KDYoNig2KDYoPCg8KDwoPCg8KDYoNig2KDwoZChkKGQoZCg8KDwoPChCLQItAi0CMfAoVChIKEgoSBemLNYs1izWLNYs1izWLNYs1izWLNYs1izWLNYrdhemK3YXpit2F6YrdhemK3YXpit2F6YrdhemK3YXpihOF6YoThemKE4XpihOF6YoThemKE4XpihOF6YXpjHwKFQx8ChUMfAoVBemLNYrdihO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/58AOgCyAA8A0v/mANQADgDW/+YA2QATANoADgDdAA4A3gALAOH/5QDm/+YA5//0AO0AEgDyAA8A9v/nAPn/6AD+AAABBAAPAQ0ADwEZ/+YBMwAOATn/5gE6/+cBQwAOAUX/5gFH/+UBSP/oAUn/5QFK/+gBTP/kAVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoADwBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd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/8oBif/KA9D/7QPc/9ID3f/0A+D/0QPi/9ED5P/mA+X/7wPn/9ED7P/RA+3/5gP2/8oD9//KA/r/ygQC/9EEBf/UBAb/5gQN/9MEDv/mBBD/9AQR/+8EHv/0BB//7wQj/9EEJf/RBC7/7QQv/+YEMP/tBDH/5gQy/+0EM//mBDT/4QQ3/9EEkv/SBJT/4QSX/9EEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR//FAEj/xQBJ/8UAS//FAEwAIABPACAAUAAgAFP/gABV/8UAV/+QAFsACwCU/8UAmf/FAdv/kAK8/8UCvf/FAr7/xQK//8UCwP/FAsb/gALH/4ACyP+AAsn/gALK/4AC2P/FAtr/xQLc/8UC3v/FAuD/xQLi/8UC5P/FAub/xQLo/8UC6v/FAuz/xQLu/8UC8P/FAvL/xQMU/4ADFv+AAxj/gAMg/5ADIv+QAyT/kAMm/5ADKP+QBFL/xQRU/8UEVv/FBFj/xQRa/8UEXP/FBF7/xQRg/8UEZv+ABGj/gARq/4AEbP+ABG7/gARw/4AEcv+ABHT/xQR2/8UEeP/FBHr/gAR8/8UEt//FBLv/gATE/8UExv/FBMgAIATKACAEzAAgBNn/kAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8WABL/FgAl/1YALv74ADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/VgGG/xYBiv8WAY7/FgGP/xYCBf/AAk3/wAKa/1YCm/9WApz/VgKd/1YCnv9WAp//VgKg/1YCtf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/1YC0v/eAtP/VgLU/94C1f9WAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD++AMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/A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AiQCJQIOAg8CEAIRAhICEwJVAicCKAIpAioFEwIrAi0CLgIvAjECMwKRA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDnQNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9BRoDfwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5AFHQORA5IDlAOTA5UDlgOXA5gDmQOaA5sDnAOeA58DoAUbBRwE5gTnBOgE6QTzBPYE9AT1BPoE+wT8BOoE6wTsBQUFCAUJBQwFDgUPAhsFEQT9BP4E/wUABQEFAgUDBQQFHgUfBSAFIQUSBRQFFQIyBRcCNAUYBRYCMAImAiwFJgUnAAIHAAD6AgECjAHrAeoB6QHoAecB5gHlAeQB4wHiAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AICAgMCjgKQAo8CkQKNApICbAIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIaAhsFGQIcAh0CHgIfAiACIQIiAiMCJAIlAlUCJwIoAikCKgUTAisCLQIuAi8CMAIxAjICMwI1AjYCOAI3A0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2A3cDeAN5A3oDewN8A30DfgUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDnQOeA58DoAUbBRwE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AT5BPoE+wT8BP0E/gT/BQAFAQUCAhkFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFHgUfBSAFIQUSBRQFFQUXAjQFGAUWAiYCLAUmBScAAQABAXsAAQABAEsAAQABALsAAQABADYAAQABABMAAQACAyMDJAACBuQG2AACBuYG2AABBu4AAQbwAAEG8gACAAEAFAAdAAAAAQACAC8ATwABAAMASQBLAoQAAgAAAAEG3gABAAYC1QLWAucC6ANqA3MAAQAGAE0ATgL8A+kD6wRkAAIAAwGUAZQAAAHfAeEAAQI5Aj8ABAACAAIAqACsAAEBJAEnAAEAAQAMACcAKAArADMANQBGAEcASABLAFMAVABVAAIAAgAUAB0AAAJvAngACgACAAYATQBNAAYATgBOAAQC/AL8AAUD6QPpAAMD6wPrAAIEZARkAAEAAgAEABQAHQAAAoACgAAKAosCiwALBKgErwAMAAIABgAaABoAAAAcABwAAQJkAmkAAgJtAm0ACAJvAngACQJ/An8AEwABABQAGgAcAmQCZQJmAmcCaAJpAm0CfwKAAosEqASpBKoEqwSsBK0ErgSvAAEF3gABBeAAAQXiAAEF5AABBeYAAQXoAAEF6gABBewAAQXuAAEF8AABBfIAAQX0AAEF9gABBfgAAQX6AAIF/AYCAAIGAgYIAAIGCAYOAAIGDgYUAAIGFAYaAAIGGgYgAAIGIAYmAAIGJgYsAAIGLAYyAAIGMgY4AAIGOAY+AAMGPgZEBkoAAwZIBk4GVAADBlIGWAZeAAMGXAZiBmgAAwZmBmwGcgADBnAGdgZ8AAMGegaABoYAAwaEBooGkAAEBo4GlAaaBqAABAacBqIGqAauAAUGqgawBrYGvAbCAAUGvAbCBsgGzgbUAAUGzgbUBtoG4AbmAAUG4AbmBuwG8gb4AAUG8gb4Bv4HBAcKAAUHBAcKBxAHFgccAAUHFgccByIHKAcuAAUHKAcuBzQHOgdAAAUHOgdAB0YHTAdSAAYHTAdSB1gHXgdkB2oABgdiB2gHbgd0B3oHgAAGB3gHfgeEB4oHkAeWAAYHjgeUB5oHoAemB6wABgekB6oHsAe2B7wHwgAGB7oHwAfGB8wH0gfYAAYH0AfWB9wH4gfoB+4ABwguB+YH7AfyB/gH/ggEAAcIJgf6CAAIBggMCBIIGAABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoClwKZArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL/AwEDAwMFAwcDCQMLAw0DDwMRAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM2AzgDOgM8Az4DQQNDA0UDRwNJA7kDugO7A7wDvgO/A8ADwQPCA8MDxAPFA8YDxwPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+8D8QPzA/UECgQMBA4EHAQjBCkELwSZBJoEngSiBSMFJQABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAHWAAIATQHXAAIAUAHYAAMASgBNAdkAAwBKAFAAAQABAEoB1QACAEoB2wACAFgB2gACAFgAAQADAEoAVwCVAAAAAQABAAEAAQAAAAMEwQACAK0C1wACAKkExwACAK0E1AACAKkEwgACAK0C2AACAKkEsQACAKkEyAACAK0EZAACAK0E1QACAKkDRgACAKkDSAACAKkDRwACAKkDSQACAKkEwAACAKkExQACAdQEwwACAK0EsAACAKkC8QACAdQD+wACAKkEzwACAK0DKQACAdQE2gACAK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-Medium.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcGUAAACWEdQT1OYN0PaAAHD7AAAWPxHU1VCm18k/AACHOgAABX2T1MvMpfnsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBiAAAAAxnbHlml3ag9QAAOswAAYOyaGVhZAiGpEQAAAEcAAAANmhoZWEK9griAAABVAAAACRobXR4QNtY9AAAAfgAABSkbG9jYcJrHvoAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lQmB1PgABvoAAAALmcG9zdP9tAGQAAcFoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDPWGK6FfDzz1ABkIAAAAAADE8BEuAAAAAODgRcT6Jv3VCWEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJbvom/j4JYQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/ywUgAJEEeACNBh8ALAUUACAFrQCZBIYAfQYqAJQFEQCEB3UAlAZ0AI8FjQBVBKMAWwSkAF0EwwAsA6oAJAVpACYEcQAfBPkATwbzAGgG2wBfBlEAPQUoAC8EgwBKBEgAcwe8AEIGpAA/B/UAlAaeAHQFBgBcBC8AVQWoACEFHQBEBU4AfQZGACwFOwAgAxsAZAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACtwBQArcAUAUjAJwGKgB7A5oACAG/AGUBugA3Ac4ANQGjAEsDCwBtAxMAQwMAADUEWwA/BJoAXQLMAIoD/QCNBaoAjQHPAF4HrgBQAnQAbAJpAFUDmQArAvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwM5AFAC8wBQAvMAUAIDAFMCAwBQA1wAZwL1AEwC9QCCAvUAPQL1ADcC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcDOQBQAvMAUALzAFACAwBTAgMAUAS1AGIGbgAjBr8AmQiVAJQGOwAjBpsAfQSMAFwF6gAjBC0AKgSbACQFYgBPBX4AKwXkAG4D4wBFCCkAkAUIAG8FFACWBjcAXAbeAFYG0ABeBqwAXASTAGEFigCmBN4APwSAAJwEnQA7CFIAYQIy/6cEkQBlBIAAjwQSAD0EKAB9BA4AJQJRAJwCjgBkAekARwUZACsErQAaBL0AKwcoACsHKAArBQ8AKwa3AEkAAAAACDAAWQg1AFwC9QA9AvUAggL1AEwEHQBPBB0AVwQdADgEHQBfBB0AZgQdADMEHQA9BB0AQwQdAJgEHQBYBCsAQQQ+AAYEXAATBgkAJwR5AAgEiABpBD8AJQQ3AD8EZAB1BL0ATQRrAHYEvQBOBNwAdgYFAHYDtwB2BF4AdgPWACYB/gCGBN0AdgSnAFYDyAB2BDcAPwRoADoDpQAKA7wAdgR5AAgEvQBOBHkACAOdAEYE2QB2BB4ARAWmAE8FWABPBOAAXgWSACMEgABPB1YAJAdYAHYFmQAlBNgAdgRyAHYFXgAnBkUAGwRGAEME4gB2BF0AdgTLACQETAAfBWIAdgSNAEMGhAB2Bw4AdgVhAAkGFgB2BGcAdgSAAD0GjwB2BIQAQgQoAAsGowAbBKAAdgUNAHYFdAAhBfgATgRWAAYExAATBpcAIwSNAEMEjQB2BgAADgTOAE0ERwBDBL0ATgRoADoD9ABFCC0AdgT0ACgC9QA3AvUANgL1AFAC9QBOAvUANwL1AEsC9QBHA7YAjQKuAJgD4AB2BDoADAS2AFYFQQCZBSgAmQQwAIEFNQCZBCgAgQR6AHYEgABPBGAAdgSaAAgB/gCQA6EAdQAA/J4D9wB6A/r/UQQLAHkD+gB5A7wAdgOdAHUDnQB1AvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwVzAGkFngBpBX8AmQXZAGkF2gBpBCgAlgSCAGsEWAAPBLsANARrAGcELgBCA6EAdgG6AGIGmABOBK8AbgIM/6cEjAA4BIwAaASMACwEjABiBIwAXwSMADQEjABsBIwAWQSMAGcEjADmAib/rgIl/64CFwCQAhf/+gIXAJAEYAB2BOYAYAQwADkEiAB9BD4ATwSVAE4EkQBOBJ0ASQSSAH0EmgBOBEkAUQSJAFAEWQA0A60AYQUMAF8DxAAFBkb/7AQHAHYEvQBOBQ4ANATcAHYB/QAAArgAUAVXABcFVwAXBJD/9QTgAC0Cqv/rBU4AEQVOABEFTgARBU4AEQVOABEFTgARBU4AEQU5AGYEhQCUBIUAlASFAJQEhQCUAkT/ywJEAKUCRP/KAkT/vgWtAJQFgwBlBYMAZQWDAGUFgwBlBYMAZQU8AIAFPACABTwAgAU8AIAE4wAIBFAAVgRQAFYEUABWBFAAVgRQAFYEUABWBFAAVgQtAE4ESQBRBEkAUQRJAFEESQBRAhf/tQIXAJACF/+zAhf/qAR0AHoEigBOBIoATgSKAE4EigBOBIoATgRzAHcEcwB3BHMAdwRzAHcD6wAMA+sADAVOABEEUABWBU4AEQRQAFYFTgARBFAAVgU5AGYELQBOBTkAZgQtAE4FOQBmBC0ATgU5AGYELQBOBTkAlAUYAFAEhQCUBEkAUQSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBXMAawSJAFIFcwBrBIkAUgVzAGsEiQBSBXMAawSJAFIFrQCUBHIAegJE/7QCF/+dAkT/0QIX/7sCRP/dAhf/xgJEABgCCv//AkQAnwa1AKUECwB8BHIALwIl/64FDgCUBCwAfQRSAJQCCgCMBFIAlAIKAFkEUgCUAqAAjARSAJQC5gCMBa0AlAR0AHoFrQCUBHQAegWtAJQEdAB6BHT/owWDAGUEigBOBYMAZQSKAE4FgwBlBIoATgUJAJQC1AB9BQkAlALUAFIFCQCUAtQANwTYAEsEHgBJBNgASwQeAEkE2ABLBB4ASQTYAEsEHgBJBNgASwQeAEkE4AAtAqoACgTgAC0CqgAKBOAALQLSAAoFPACABHMAdwU8AIAEcwB3BTwAgARzAHcFPACABHMAdwU8AIAEcwB3BTwAgARzAHcHCwAvBfAAIwTjAAgD6wAMBOMACATTAFAEBgBRBNMAUAQGAFEE0wBQBAYAUQd+//wGwgBIBYEAaQSGAE4Eev+lBHr/pQQ/ACUEmgAIBJoACASaAAgEmgAIBJoACASaAAgEmgAIBIAATwPgAHYD4AB2A+AAdgPgAHYB/v+pAf4AhgH+/6cB/v+cBNwAdgS9AE4EvQBOBL0ATgS9AE4EvQBOBIgAaQSIAGkEiABpBIgAaQQ+AAYEmgAIBJoACASaAAgEgABPBIAATwSAAE8EgABPBHoAYQPgAHYD4AB2A+AAdgPgAHYD4AB2BKcAVgSnAFYEpwBWBKcAVgTdAHYB/v+RAf7/rwH+/7oB/gAXAf4AfQPWACYEXgB2A7cAdgO3AHYDtwB2A7cAdgTcAHYE3AB2BNwAdgS9AE4EvQBOBL0ATgRkAHUEZAB1BGQAdQQ3AD8ENwA/BDcAPwQ3AD8EPwAlBD8AJQQ/ACUEiABpBIgAaQSIAGkEiABpBIgAaQSIAGkGCQAnBD4ABgQ+AAYEKwBBBCsAQQQrAEEFTgARBOn/QgYR/0oCqP9OBZf/tAVH/0EFbf/CAqX/hQVOABEFDQCUBIUAlATTAFAFrQCUAkQApQUOAJQG/wCUBa0AlAWDAGUFGwCUBOAALQTjAAgFDQAmAkT/vgTjAAgEhABWBGUAYgSGAH0CpQCjBF0AfwSaAI0EigBOBMEAkwP4ABYEWQA0AqX/wwRdAH8EigBOBF0AfwaUAGUEhQCUBHQAmQTYAEsCRAClAkT/vgRyAC8FKACZBQ4AlAULADIFTgARBQ0AlAR0AJkEhQCUBaYAkgb/AJQFrQCUBYMAZQWuAJkFGwCUBTkAZgTgAC0FDQAmBFAAVgRJAFEEkgCEBIoATgR/AH0ELQBOA+sADAQGAB8ESQBRA1sAgwQeAEkCCgB8Ahf/qAIC/6sEbACPA+sADAcLAC8F8AAjBwsALwXwACMHCwAvBfAAIwTjAAgD6wAMAVcAUgKOAGAEPACMAiX/qgG6ADcG/wCUBvgAfAVOABEEUABWBIUAlAWmAJIESQBRBJIAhAWxAEYFzABSBRgAEAQN//MIdQBOCW4AZQTbAEkEFwBOBTkAZgQtAE4E4wAIBA0AHgJEAKUHqQAVBocAIAJEAKUFTgARBFAAVgVOABEEUABWB37//AbCAEgEhQCUBEkAUQWNAFUEOQBXBDkAVwepABUGhwAgBNsASQQXAE4FpgCSBJIAhAWmAJIEkgCEBYMAZQSKAE4FegBgBIgATQV6AGAEiABNBUgAYwQ5AFAFCwAyA+sADAULADID6wAMBQsAMgPrAAwFhQCRBGUAYAbwAJkGbwCPBIIAUAVOABEEUABWBU4AEQRQAFYFTgARBFAAVgVOABEEUP+fBU4AEQRQAFYFTgARBFAAVgVOABEEUABWBU4AEQRQAFYFTgARBFAAVgVOABEEUABWBU4AEQRQAFYFTgARBFAAVgSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBIX/3wRJ/5QEhQCUBEkAUQSFAJQESQBRBIUAlARJAFECRAClAhcAkAJEAJUCCgB4BYMAZQSKAE4FgwBlBIoATgWDAGUEigBOBYMALASK/6oFgwBlBIoATgWDAGUEigBOBYMAZQSKAE4FkQBbBJ0ATQWRAFsEnQBNBZEAWwSdAE0FkQBbBJ0ATQWRAFsEnQBNBTwAgARzAHcFPACABHMAdwWjAIAE5gB3BaMAgATmAHcFowCABOYAdwWjAIAE5gB3BaMAgATmAHcE4wAIA+sADATjAAgD6wAMBOMACAPrAAwEoABQBOAALQP6ACMFhQCRBGUAYAR0AJkDWwCDBhsACgTE/8sEcgB6BQL/1wUC/9cEdP/0A1v/3wU8//MERP/JBOMACAQNAB4FDQAmBAYAHwRlAGIEaAABBioAewSMAFIEjABOBIwANwSMAH8EoACHBLQAewSgAF0EtAB8BXMAawSJAFIFrQCUBHQAegVOABEEUAAOBIUATgRJAAMCRP77Ahf+5QWDAGUEigAZBQkANQLU/3MFPAB3BHMAFATr/wsFDQCUBH8AfQU5AJQEggBQBTkAlASCAFAFrQCUBHIAegUOAJQELAB9BQ4AlAQsAH0EUgCUAgoAeAb/AJQG+AB8Ba0AlAR0AHoFgwBlBRsAlAR/AH0FCQCUAtQAcQTYAEsEHgBJBOAALQKqAAoFPACABSoAEQP4ABYFKgARA/gAFgcLAC8F8AAjBNMAUAQGAFEFyf5sBJoACAQc/2IFGf9rAjr/bgTH/5gEev8gBOr/qwSaAAgEYAB2A+AAdgQrAEEE3QB2Af4AhgReAHYGBQB2BNwAdgS9AE4EawB2BD8AJQQ+AAYEXAATAf7/nAQ+AAYD4AB2A7wAdgQ3AD8B/gCGAf7/nAPWACYEXgB2BEwAHwSaAAgEYAB2A7wAdgPgAHYE4gB2BgUAdgTdAHYEvQBOBNkAdgRrAHYEgABPBD8AJQRcABMERgBDBN0AdgSAAE8EPgAGBgAADgTiAHYETAAfBaYATwXUAIYGRv/sBL0ATgQ3AD8GCQAnBgkAJwYJACcEPgAGBU4AEQRQAFYEhQCUBEkAUQSaAAgD4AB2AhcAeAAAAAIAAAADAAAAFAADAAEAAAAUAAQGbgAAAPQAgAAGAHQAAAACAA0AfgCgAKwArQC/AMYAzwDmAO8A/gEPAREBJQEnATABUwFfAWcBfgF/AY8BkgGhAbAB8AH/AhsCNwJZArwCxwLJAt0C8wMBAwMDCQMPAyMDigOMA5IDoQOwA7kDyQPOA9ID1gQlBC8ERQRPBGIEbwR5BIYEnwSpBLEEugTOBNcE4QT1BQEFEAUTHgEePx6FHvEe8x75H00gCSALIBEgFSAeICIgJyAwIDMgOiA8IEQgcCCOIKQgqiCsILEguiC9IQUhEyEWISIhJiEuIV4iAiIGIg8iEiIaIh4iKyJIImAiZSXK7gL2w/sE/v///f//AAAAAAACAA0AIACgAKEArQCuAMAAxwDQAOcA8AD/ARABEgEmASgBMQFUAWABaAF/AY8BkgGgAa8B8AH6AhgCNwJZArwCxgLJAtgC8wMAAwMDCQMPAyMDhAOMA44DkwOjA7EDugPKA9ED1gQABCYEMARGBFAEYwRwBHoEiASgBKoEsgS7BM8E2ATiBPYFAgURHgAePh6AHqAe8h70H00gACAKIBAgEyAXICAgJSAwIDIgOSA8IEQgcCB0IKMgpiCrILEguSC8IQUhEyEWISIhJiEuIVsiAiIGIg8iESIaIh4iKyJIImAiZCXK7gH2w/sB/v///P//AAEAAP/2/+QB8//CAef/wQAAAdoAAAHVAAAB0QAAAc8AAAHNAAABxQAAAcf/Fv8H/wX++P7rAgkAAAAA/mX+RAE+/dj91/3J/bT9qP2n/aL9nf2KAAAAGQAYAAAAAP0KAAD/+fz+/PsAAPy6AAD8sgAA/KcAAPyhAAD8mQAA/JEAAP9DAAD/QAAA/F4AAOX95b3lbuWZ5QLll+WY4XLhc+FvAADhbOFr4WnhYePE4VnjvOFQ4SXhIgAA4QwAAOEH4QDg/+C44KvgqeCe35Tgk+Bn38TerN+437ffsN+t36Hfhd9u32vcBxPRCxEG1QLdAeEAAQAAAAAAAAAAAAAAAAAAAAAA5AAAAO4AAAEYAAABMgAAATIAAAEyAAABdAAAAAAAAAAAAAAAAAAAAXQBfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAAAAF0AZAAAAGoAAAAAAAAAcAAAAIIAAACMAAAAlIAAAJiAAACjgAAApoAAAK+AAACzgAAAuIAAAAAAAAAAAAAAAAAAAAAAAAAAALSAAAAAAAAAAAAAAAAAAAAAAAAAAACwgAAAsIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmgKbApwCnQKeAp8AgQKWAqoCqwKsAq0CrgKvAIIAgwKwArECsgKzArQAhACFArUCtgK3ArgCuQK6AIYAhwLFAsYCxwLIAskCygCIAIkCywLMAs0CzgLPAIoClQCLAIwClwCNAv4C/wMAAwEDAgMDAI4DBAMFAwYDBwMIAwkDCgMLAI8AkAMMAw0DDgMPAxADEQMSAJEAkgMTAxQDFQMWAxcDGACTAJQDJwMoAysDLAMtAy4CmAKZAqACuwNGA0cDSANJAyUDJgMpAyoArgCvA6EAsAOiA6MDpACxALIDqwOsA60AswOuA68AtAOwA7EAtQOyALYDswC3A7QDtQC4A7YAuQC6A7cDuAO5A7oDuwO8A70DvgDEA8ADwQDFA78AxgDHAMgAyQDKAMsAzAPCAM0AzgP/A8gA0gPJANMDygPLA8wDzQDUANUA1gPPBAAD0ADXA9EA2APSA9MA2QPUANoA2wDcA9UDzgDdA9YD1wPYA9kD2gPbA9wA3gDfA90D3gDqAOsA7ADtA98A7gDvAPAD4ADxAPIA8wD0A+EA9QPiA+MA9gPkAPcD5QQBA+YBAgPnAQMD6APpA+oD6wEEAQUBBgPsBAID7QEHAQgBCQScBAMEBAEXARgBGQEaBAUEBgQIBAcBKAEpASoBKwSbASwBLQEuAS8BMASdBJ4BMQEyATMBNAQJBAoBNQE2ATcBOASfBKAECwQMBJIEkwQNBA4EoQSiBJoBTAFNBJgEmQQPBBAEEQFOAU8BUAFRAVIBUwFUAVUElASVAVYBVwFYBBwEGwQdBB4EHwQgBCEBWQFaBJYElwQ2BDcBWwFcAV0BXgSjBKQBXwQ4BKUBbwFwAYEBggSnBKYBsQSRAbcAAEBKmZiXloeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUVBPTk1MS0pJSEdGKB8QCgksAbELCkMjQ2UKLSwAsQoLQyNDCy0sAbAGQ7AHQ2UKLSywTysgsEBRWCFLUlhFRBshIVkbIyGwQLAEJUWwBCVFYWSKY1JYRUQbISFZWS0sALAHQ7AGQwstLEtTI0tRWlggRYpgRBshIVktLEtUWCBFimBEGyEhWS0sS1MjS1FaWDgbISFZLSxLVFg4GyEhWS0ssAJDVFiwRisbISEhIVktLLACQ1RYsEcrGyEhIVktLLACQ1RYsEgrGyEhISFZLSywAkNUWLBJKxshISFZLSwjILAAUIqKZLEAAyVUWLBAG7EBAyVUWLAFQ4tZsE8rWSOwYisjISNYZVktLLEIAAwhVGBDLSyxDAAMIVRgQy0sASBHsAJDILgQAGK4EABjVyO4AQBiuBAAY1daWLAgYGZZSC0ssQACJbACJbACJVO4ADUjeLACJbACJWCwIGMgILAGJSNiUFiKIbABYCMbICCwBiUjYlJYIyGwAWEbiiEjISBZWbj/wRxgsCBjIyEtLLECAEKxIwGIUbFAAYhTWli4EACwIIhUWLICAQJDYEJZsSQBiFFYuCAAsECIVFiyAgICQ2BCsSQBiFRYsgIgAkNgQgBLAUtSWLICCAJDYEJZG7hAALCAiFRYsgIEAkNgQlm4QACwgGO4AQCIVFiyAggCQ2BCWblAAAEAY7gCAIhUWLICEAJDYEJZsSYBiFFYuUAAAgBjuAQAiFRYsgJAAkNgQlm5QAAEAGO4CACIVFiyAoACQ2BCWbEoAYhRWLlAAAgAY7gQAIhUWLkAAgEAsAJDYEJZWVlZWVlZsQACQ1RYQAoFQAhACUAMAg0CG7EBAkNUWLIFQAi6AQAACQEAswwBDQEbsYACQ1JYsgVACLgBgLEJQBu4AQCwAkNSWLIFQAi6AYAACQFAG7gBgLACQ1JYsgVACLgCALEJQBuyBUAIugEAAAkBAFlZWbhAALCAiFW5QAACAGO4BACIVVpYswwADQEbswwADQFZWVlCQkJCQi0sRbECTisjsE8rILBAUVghS1FYsAIlRbEBTitgWRsjS1FYsAMlRSBkimOwQFNYsQJOK2AbIVkbIVlZRC0sILAAUCBYI2UbI1mxFBSKcEWwTysjsWEGJmAriliwBUOLWSNYZVkjEDotLLADJUljI0ZgsE8rI7AEJbAEJUmwAyVjViBgsGJgK7ADJSAQRopGYLAgY2E6LSywABaxAgMlsQEEJQE+AD6xAQIGDLAKI2VCsAsjQrECAyWxAQQlAT8AP7EBAgYMsAYjZUKwByNCsAEWsQACQ1RYRSNFIBhpimMjYiAgsEBQWGcbZllhsCBjsEAjYbAEI0IbsQQAQiEhWRgBLSwgRbEATitELSxLUbFATytQW1ggRbEBTisgiopEILFABCZhY2GxAU4rRCEbIyGKRbEBTisgiiNERFktLEtRsUBPK1BbWEUgirBAYWNgGyMhRVmxAU4rRC0sI0UgikUjYSBksEBRsAQlILAAUyOwQFFaWrFATytUWliKDGQjZCNTWLFAQIphIGNhGyBjWRuKWWOxAk4rYEQtLAEtLAAtLAWxCwpDI0NlCi0ssQoLQyNDCwItLLACJWNmsAIluCAAYmAjYi0ssAIlY7AgYGawAiW4IABiYCNiLSywAiVjZ7ACJbggAGJgI2ItLLACJWNmsCBgsAIluCAAYmAjYi0sI0qxAk4rLSwjSrEBTistLCOKSiNFZLACJWSwAiVhZLADQ1JYISBkWbECTisjsABQWGVZLSwjikojRWSwAiVksAIlYWSwA0NSWCEgZFmxAU4rI7AAUFhlWS0sILADJUqxAk4rihA7LSwgsAMlSrEBTiuKEDstLLADJbADJYqwZyuKEDstLLADJbADJYqwaCuKEDstLLADJUawAyVGYLAEJS6wBCWwBCWwBCYgsABQWCGwahuwbFkrsAMlRrADJUZgYbCAYiCKIBAjOiMgECM6LSywAyVHsAMlR2CwBSVHsIBjYbACJbAGJUljI7AFJUqwgGMgWGIbIVmwBCZGYIpGikZgsCBjYS0ssAQmsAQlsAQlsAQmsG4rIIogECM6IyAQIzotLCMgsAFUWCGwAiWxAk4rsIBQIGBZIGBgILABUVghIRsgsAVRWCEgZmGwQCNhsQADJVCwAyWwAyVQWlggsAMlYYpTWCGwAFkbIVkbsAdUWCBmYWUjIRshIbAAWVlZsQJOKy0ssAIlsAQlSrAAU1iwABuKiiOKsAFZsAQlRiBmYSCwBSawBiZJsAUmsAUmsHArI2FlsCBgIGZhsCBhZS0ssAIlRiCKILAAUFghsQJOKxtFIyFZYWWwAiUQOy0ssAQmILgCAGIguAIAY4ojYSCwXWArsAUlEYoSiiA5ili5AF0QALAEJmNWYCsjISAQIEYgsQJOKyNhGyMhIIogEEmxAk4rWTstLLkAXRAAsAklY1ZgK7AFJbAFJbAFJrBtK7FdByVgK7AFJbAFJbAFJbAFJbBvK7kAXRAAsAgmY1ZgKyCwAFJYsFArsAUlsAUlsAclsAclsAUlsHErsAIXOLAAUrACJbABUlpYsAQlsAYlSbADJbAFJUlgILBAUlghG7AAUlggsAJUWLAEJbAEJbAHJbAHJUmwAhc4G7AEJbAEJbAEJbAGJUmwAhc4WVlZWVkhISEhIS0suQBdEACwCyVjVmArsAclsAclsAYlsAYlsAwlsAwlsAklsAglsG4rsAQXOLAHJbAHJbAHJrBtK7AEJbAEJbAEJrBtK7BQK7AGJbAGJbADJbBxK7AFJbAFJbADJbACFzggsAYlsAYlsAUlsHErYLAGJbAGJbAEJWWwAhc4sAIlsAIlYCCwQFNYIbBAYSOwQGEjG7j/wFBYsEBgI7BAYCNZWbAIJbAIJbAEJrACFziwBSWwBSWKsAIXOCCwAFJYsAYlsAglSbADJbAFJUlgILBAUlghG7AAUliwBiWwBiWwBiWwBiWwCyWwCyVJsAQXOLAGJbAGJbAGJbAGJbAKJbAKJbAHJbBxK7AEFziwBCWwBCWwBSWwByWwBSWwcSuwAhc4G7AEJbAEJbj/wLACFzhZWVkhISEhISEhIS0ssAQlsAMlh7ADJbADJYogsABQWCGwZRuwaFkrZLAEJbAEJQawBCWwBCVJICBjsAMlIGNRsQADJVRbWCEhIyEHGyBjsAIlIGNhILBTK4pjsAUlsAUlh7AEJbAEJkqwAFBYZVmwBCYgAUYjAEawBSYgAUYjAEawABYAsAAjSAGwACNIACCwASNIsAIjSAEgsAEjSLACI0gjsgIAAQgjOLICAAEJIzixAgEHsAEWWS0sIxANDIpjI4pjYGS5QAAEAGNQWLAAOBs8WS0ssAYlsAklsAklsAcmsHYrI7AAVFgFGwRZsAQlsAYmsHcrsAUlsAUmsAUlsAUmsHYrsABUWAUbBFmwdystLLAHJbAKJbAKJbAIJrB2K4qwAFRYBRsEWbAFJbAHJrB3K7AGJbAGJrAGJbAGJrB2KwiwdystLLAHJbAKJbAKJbAIJrB2K4qKCLAEJbAGJrB3K7AFJbAFJrAFJbAFJrB2K7AAVFgFGwRZsHcrLSywCCWwCyWwCyWwCSawdiuwBCawBCYIsAUlsAcmsHcrsAYlsAYmsAYlsAYmsHYrCLB3Ky0sA7ADJbADJUqwBCWwAyVKArAFJbAFJkqwBSawBSZKsAQmY4qKY2EtLLFdDiVgK7AMJhGwBSYSsAolObAHJTmwCiWwCiWwCSWwfCuwAFCwCyWwCCWwCiWwfCuwAFBUWLAHJbALJYewBCWwBCULsAolELAJJcGwAiWwAiULsAclELAGJcEbsAclsAslsAsluP//sHYrsAQlsAQlC7AHJbAKJbB3K7AKJbAIJbAIJbj//7B2K7ACJbACJQuwCiWwByWwdytZsAolRrAKJUZgsAglRrAIJUZgsAYlsAYlC7AMJbAMJbAMJiCwAFBYIbBqG7BsWSuwBCWwBCULsAklsAklsAkmILAAUFghsGobsGxZKyOwCiVGsAolRmBhsCBjI7AIJUawCCVGYGGwIGOxAQwlVFgEGwVZsAomIBCwAyU6sAYmsAYmC7AHJiAQijqxAQcmVFgEGwVZsAUmIBCwAiU6iooLIyAQIzotLCOwAVRYuQAAQAAbuEAAsABZirABVFi5AABAABu4QACwAFmwfSstLIqKCA2KsAFUWLkAAEAAG7hAALAAWbB9Ky0sCLABVFi5AABAABu4QACwAFkNsH0rLSywBCawBCYIDbAEJrAEJggNsH0rLSwgAUYjAEawCkOwC0OKYyNiYS0ssAkrsAYlLrAFJX3FsAYlsAUlsAQlILAAUFghsGobsGxZK7AFJbAEJbADJSCwAFBYIbBqG7BsWSsYsAglsAclsAYlsAolsG8rsAYlsAUlsAQmILAAUFghsGYbsGhZK7AFJbAEJbAEJiCwAFBYIbBmG7BoWStUWH2wBCUQsAMlxbACJRCwASXFsAUmIbAFJiEbsAYmsAQlsAMlsAgmsG8rWbEAAkNUWH2wAiWwgiuwBSWwgisgIGlhsARDASNhsGBgIGlhsCBhILAIJrAIJoqwAhc4iophIGlhYbACFzgbISEhIVkYLSxLUrEBAkNTWlgjECABPAA8GyEhWS0sI7ACJbACJVNYILAEJVg8GzlZsAFguP/pHFkhISEtLLACJUewAiVHVIogIBARsAFgiiASsAFhsIUrLSywBCVHsAIlR1QjIBKwAWEjILAGJiAgEBGwAWCwBiawhSuKirCFKy0ssAJDVFgMAopLU7AEJktRWlgKOBsKISFZGyEhISFZLSywmCtYDAKKS1OwBCZLUVpYCjgbCiEhWRshISEhWS0sILACQ1SwASO4AGgjeCGxAAJDuABeI3khsAJDI7AgIFxYISEhsAC4AE0cWYqKIIogiiO4EABjVli4EABjVlghISGwAbgAMBxZGyFZsIBiIFxYISEhsAC4AB0cWSOwgGIgXFghISGwALgADBxZirABYbj/qxwjIS0sILACQ1SwASO4AIEjeCGxAAJDuAB3I3khsQACQ4qwICBcWCEhIbgAZxxZioogiiCKI7gQAGNWWLgQAGNWWLAEJrABW7AEJrAEJrAEJhshISEhuAA4sAAjHFkbIVmwBCYjsIBiIFxYilyKWiMhIyG4AB4cWYqwgGIgXFghISMhuAAOHFmwBCawAWG4/5McIyEtAABA/340fVV8Pv8fezv/H3o9/x95O0AfeDz/H3c8PR92NQcfdTr/H3Q6Zx9zOU8fcjn/H3E2/x9wOM0fbzj/H243Xh9tN80fbDf/H2s3LR9qNxgfaTT/H2gy/x9nMs0fZjP/H2Ux/x9kMP8fYzCrH2IwZx9hLv8fYC6AH18v/x9eL5MfXS3/H1ws/x9bK/8fWirNH1kq/x9YKg0fVyn/H1Yo/x9VJyQfVCctH1MlXh9SJf8fUSWrH1Am/x9PJoAfTiT/H00jKx9MI6sfSyP/H0ojVh9JIysfSCL/H0cg/x9GIHIfRSH/H0Qhch9DH/8fQh6TH0Ee/x9AHf8fPxz/Hz07k0DqHzw7NB86NQ4fOTZyHzg2Tx83NiIfNjWTHzMyQB8xMHIfLy5KHysqQB8nGQQfJiUoHyUzGxlcJBoSHyMFGhlcIhn/HyEgPR8gOBgWXB8YLR8eF/8fHRb/HxwWBx8bMxkcWxg0FhxbGjMZHFsXNBYcWxUZPhamWhMxElURMRBVElkQWQ00DFUFNARVDFkEWR8EXwQCDwR/BO8EAw9eDlULNApVBzQGVQExAFUOWQpZBll/BgEvBk8GbwYDPwZfBn8GAwBZLwABLwBvAO8AAwk0CFUDNAJVCFkCWR8CXwICDwJ/Au8CAwNAQAUBuAGQsFQrS7gH/1JLsAlQW7ABiLAlU7ABiLBAUVqwBoiwAFVaW1ixAQGOWYWNjQAdQkuwkFNYsgMAAB1CWbECAkNRWLEEA45Zc3QAKwArKytzdAArc3R1ACsAKwArKysrK3N0ACsAKysrACsAKysrASsBKwErASsBKwErKwArKwErKwErACsAKwErKysrKwErKwArKysrKysrASsrACsrKysrKysBKwArKysrKysrKysrKysrASsrACsrKysrKysrKysBKysrKysrKwArKysrKysrKysrKysrKysrKysrKysYAAAGAAAVBbAAFAWwABQEOgAUAAD/7AAA/+wAAP/s/mD/9QWwABUAAP/rAAAAvQDAAJ0AnQC6AJcAlwAnAMAAnQCGALwAqwC6AJoA0wCzAJkB4ACWALoAmgCpAQsAggCuAKAAjACVALkAqQAXAJMAmgB7AIsAoQDeAKAAjACdALYAJwDAAJ0ApACGAKIAqwC2AL8AugCCAI4AmgCiALIA0wCRAJkArQCzAL4ByQH9AJYAugBHAJgAnQCpAQsAggCZAJ8AqQCwAIEAhQCLAJQAqQC1ALoAFwBQAGMAeAB9AIMAiwCQAJgAogCuANQA3gEmAHsAiQCTAJ0ApQC0BI0AEAAAAAAAMgAyADIAMgAyAFoAeQCvASQBpQIZAi4CXgKOArsC2ALyAwMDHgMyA38DmAPXBD4EagS3BREFLgWdBfcGAwYPBjQGTwZ0BsUHbwenCAYISgiICLgI4QkwCVgJbAmXCcoJ6AobCj4Kigq9CxULWgu5C9cMBQwtDG8MngzDDPANCQ0dDTYNWw1rDX8N5w46DoAO0w8gD08Ptw/vEBUQThCBEJUQ8RErEXERxBIYEkwSoxLTEwoTMBNyE58T2xQHFE0UXxSmFOUVCRVjFa4WDxZWFnAXAhcvF6cX/RgJGCYYvxjQGQMZKBlfGb0Z0RoRGjAaShp0GosayRrVGuYa9xsIG1gbpRvDHBwcVRyyHVAdsR3oHjwekB7sHx0fMR9jH4wfqx/nIDQgnyEoIU4hmiHpIkoioSLgIysjUSObI7sj2iPiJAQkHyRPJHoktiTUJQAlFCUpJTIlXSV6JZQlpyXiJeomASYxJokmsSbYJvUnKSd8J7koGCiCKOQpESl7KeEqMipsKscq7StAK7Ar6Sw3LIIs1S0FLT0tkC3RLjguly7tL14vpy/3MFMwmzDaMP4xQTGTMeAyRzJqMqIy4DMyM1szkTO2M+c0JDRjNJg06DVKNYk1+DZcNnM2uDcHN2s3jjfAN/g4JzhPOHU4kTklOU05gTmmOdc6FTpTOog61js0O3Q7zzwdPHg8wT0BPSY9ez3RPhA+aT7DPv8/Nz+KP9lAPECdQRNBikIIQoRC60M9Q3NDq0QQRG5FEkWzRhtGhEbIRwlHOUdXR4JHl0etSEVIlkiySM5JCUlMSbBJ0kn0Si9Kakp9SpBKnEqvSu5LLEtmS6BLs0vGS/dMKExnTLBNGk2CTZVNqE3aTgxOH04yTnZOuE7uT05PrE/1UDtQTlBhUJhQ0VDkUPdRClEdUWtRtlIBUhBSIFIsUjhSalLAUzVTqlQfVIxU91VTVbJV/lZNVplW41ckV2VXzVfZV+VYDVgNWA1YDVgNWA1YDVgNWA1YDVgNWA1YDVgNWBVYHVguWD9YWlh0WI9YqljEWNBY3FkJWShZUlluWXpZilmkWlhae1qbWrJau1rEWs1a1lrfWuha8VsQWyFbO1tlW5BbxVvOW9db4FvpW/Jb+1wEXA1cFlwfXChcMVw6XGFciFzaXRFdaV11Xc1eE15lXq9fAF8/X3tftmA0YH9g4WEaYWJheGGJYZ9htWIaYjRiZ2J4YqNjMWNrY8lj9mQnZFlkjWSaZLZk0GTcZRNlT2WrZg5maWcPZw9oBWhLaIBopGjhaTNppGm+ag5qUWp5attrFGssa3JrnmvPa/psOmxdbIlspW0BbUFtlm3Ibg5uLm5ebnluqW7RbuNvCm9Sb3tv7XA6cHdwknDBcRFxNHFacX1xs3H/cj9ynnLlczFzhnPKdAZ0NXRvdLV1BnVqdZV1x3X+djl2anacdsp3B3c/d0t3e3fIeCN4a3iTeO55K3lpeaN6C3oXelB6iXrIevl7T3uYe+J8QXyYfOl9TH2Ifdx+A35Afot+pH8Kf1V/Zn+gf8+AboDIgR6BUYGDgbOB54IigmSCxIL1gxGDPIN4g5yDwoP/hESEbYSYhOWE7oT3hQCFCYUShRuFJIVrhbuF+YZFhqCGvYb7hzyHZIeth8iIGIgpiJmI9IkYiSCJKIkwiTiJQIlIiVCJWIlgiWiJcIl4iYCJkomaifuKQIpdirCK9otJi7GL94xKjJ6M541OjZ2NpY4RjjuOiI67jxCPP49+j36Pho/PkBiQWJB9kLmQzJDfkPKRBZEZkS2RQ5FWkWmRfJGPkaORtpHJkdyR8JIDkhaSKZI8kk+SY5J2komSnJKwksOS1pLpkvuTDZMgkzSTSpNdk3CTg5OVk6iTu5PNk+CT9JQGlBmULJQ+lFCUY5R2lImUm5SulMGU1JTnlPmVDJUelXWV/ZYQliOWNpZIlluWbpaBlpOWppa5lsyW3pbxlwOXFpcpl36X7Jf/mBGYJJg2mEmYW5humIGYlZiomLuYzpjhmPSZB5kamS2ZQJlSmWSZd5mDmY+Zopm1mcmZ3ZnwmgOaF5ormj6aUZpdmmmafJqPmqOat5rKmtya75sCmxSbJ5s6m06bYpt1m4ibnJuwm8Ob1Zvom/ucDpwgnDOcRpxanG6cgZyTnKecu5zOnOGc9J0InRudLZ1AnVKdZZ14nYydoJ20ncieGJ5znoaemZ6snr6e0p7lnvifC58enzGfQ59Wn2mffJ+Pn5ufp5+yn8Wf2J/qn/ygEKAkoDCgPKBPoGKgdKCHoJqgrKC/oNOg5qD5oQyhHqEwoUShV6FqoXyhj6GiobShx6IZoiyiPqJRomOidaKHopmirKL+oxCjIqM1o0ijXKNuo4GjlKOno7KjxKPXo+Oj9aQJpBWkIaQ0pECkU6RlpHikjKSfpKukvaTQpOKk7qUApRSlJqUypUSlVqVppX2lkaXgpfOmBaYYpiumPqZQpmOmd6aDppemq6a+ptKm56bvpvem/6cHpw+nF6cfpyenL6c3pz+nR6dPp1ena6d/p5Knpae4p8qn3qfmp+6n9qf+qAaoGqgtqECoU6hmqHqojajqqPKpBqkOqRapKak8qUSpTKlUqVypb6l3qX+ph6mPqZepn6mnqa+pt6m/qdKp2qniqiWqLao1qkiqW6pjqmuqf6qHqpqqrKq/qtKq5ar4qwyrIKszq0WrTatVq2GrdKt8q4+roqu3q8yr36vyrAWsGKwgrCisPKxQrFysaKx7rI6soay0rLysxKzMrN+s8qz6rQ2tH60zrUatTq1WrWmte62PrZetqq2+rdKt5q35rgyuHq4yrkauWq5trnWufa6RrqSuuK7Lrt6u8K8ErxevK68/r1OvZq96r46vlq+qr76v0a/kr/iwC7AfsDKwRrBZsG2wgLCdsLmwzbDgsPSxB7EbsS6xQrFVsXKxjrGisbaxybHcse+yAbIVsiiyPLJPsmOydrKKsp2yurLWsumy/LMQsySzOLNMs1+zcrOGs5mzrbPAs9Sz57P7tA60K7RHtFq0bbSAtJO0prS5tMy03rTytQa1GrUutUG1VLVntXq1jbWgtbO1xrXZteu1/7YTtie2O7ZOtmG2dLaGtqO2trbJtty277cCtxW3KLc7t0O3gLe8t964ALg/uIC4r7jiuRq5ULlYuWy5dLl8uYS5jLmUuZy5pLmsubS5x7naue26ALoUuii6PLpQumS6eLqMuqC6tLrIuty68Lr8uxC7JLs4u0y7YLt0u4i7nLuvu8K71rvqu/68ErwmvDq8TrxivHa8ibycvLC8xLzYvOy9AL0UvSi9O71NvWG9db2JvZ29sb3Fvdm95b3xvf2+Cb4VviG+Lb41vj2+Rb5NvlW+Xb5lvm2+db59voW+jb6Vvp2+sb7Evte+6r7yvvq/Dr8Wvym/O79Dv0u/U79bv26/dr9+v4a/jr+Wv56/pr+uwB/AUMCcwKTAsMDDwNXA3cDpwPzBD8EbwS7BQcFVwWHBdMGHwZrBrcG5wcXB2QAGAGQAAAMoBbAAAwAHAAsADwATABcAAEEVITUzESMRIREjERMVITUBASMBEQEzAQMJ/XYbNgLENhf9dgKK/a86AlH9rzoCUQWwNjb6UAWw+lAFsPqGNjYFXPqMBXT6jAV0+owAAgCM//IBoAWwAAMADwATQAkCAgcNC3IAAnIAKyvdzi8wMUEDIwMDNDYzMhYVFAYjIiYBkhjOGQdJQUBKSkBBSQWw+/0EA/rCN0tLNzVLSwACAGAD+AI6BgAABQALAAyzCQMLBQAvM80yMDFBFQMjETUhFQMjETUBDiOLAdojiwYAif6BAXSUif6BAXyMAAQAVgAABLIFsAADAAcACwAPACNAEQQABQ0ODgAKCQkAAgJyABJyACsrETkvMxE5LzMyETMwMXMBMwEzATMBASE1IQMhNSH0AQyk/vTiAQyk/vQBlPvwBBBL++8EEQWw+lAFsPpQA3Wb/YqbAAMAZP8sBCcGmQADAAcAPQA2QBwEBzo6CCsQIwQULzU1Bi8NcgECHx8UGhoDFAVyACvNMy8RMxI5OSvNMy8REhc5MxI5OTAxQREjERMRIxEBNCYmJy4CNTQ2NjMyHgIVIzQuAiMiBgYVFBYWFx4CFRQGBiMiLgI1MxQeAjMyNjYCsZqHmQEwL2pZgL9pccqHaKd2P/AdOE8yR1wrLGtegb1nd9WNWa+OVPIqSFktS2c1Bpn+1QEr+Z/+9AEMAUM6V0cfLXGnfXu0Yj54r3FAZUcmNVw7OVZFIy5xpX2BtF0vbLOCTmg8GjNdAAUAZP/rBYoFxQARACMANQBHAEsAI0ARSTJLBTtEKTIXDiAFBXIyDXIAKysyxDIQxDIzETMRMzAxUzU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGATU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGEwEnAWRIimFkiUhHiWNii0inH0AvMD0eHz4wLj8fAhdJimFkiUdHiGNii0moIUAtMz4bHz8wLz4fyP05ewLHBEtNU4hSUohTTVGIUlKInk0oSCwsSChNKUksLEn8Vk5SiFJSiFJOUohSUoigTihILS1HKU4pSCwsSANS+45HBHIAAAEAVf/sBRAFxABCACRAFCMSAA8iAQYaMDArERE7E3IHGgNyACsyKzIvMjIvERc5MDFBNzY2NTQmIyIGBhUUFhYXASEBLgI1NDY2MzIWFhUUBgYHBQ4CFRQWFjMyPgI1MxQGBgcGBgcGBiMiJiY1NDY2AXX7PzZQSTNGIy5QMgKw/un9zklwPl6sc2+hVzJYOv7PNTMQN2tNU5x8SdApWUgHEQhW1XiR1HNKgQMYqSpRPTRYL00vLV9nO/zUApVYk4tKcqRZWZJXRXJeKt4rT0IZQGg9S4rAdWq+okAHFQdPTWq6eFmHdQABAFID/gEJBgAABQAIsQMFAC/GMDFBFQMjEzUBCRqdAQYAgf5/AXGRAAABAIH+MQKeBl0AFwAIsQYTAC8vMDFTNTQSEjY3Fw4CAhUVFBIWFhcHJiYCAoFdlqtPMDpzXzk5X3M6ME+rll0CPxHWAV0BB60miiuY3f7ZuhW6/tnemy6EJ60BBwFdAAABACf+MQJNBl0AFwAIsRMGAC8vMDFBFRQCAgYHJz4CEjU1NAImJic3FhYSEgJNX5evUDE6c185O2JyNjFQr5dfAlAR0/6k/viwJ4QsmeEBKLoVugEp35orhCaw/vf+pAABABwCUAN5BbEADgAUQAoNAQcEBA4MBgJyACvEMhc5MDFTEyU3BQMzAyUXBRMHAwOA0v7KNQE0Dq4QAS81/sTNjbm2ArsBE1qkdgFb/p52p1v+82YBIv7mAAACAEIAkgQoBLYAAwAHABC1BwcDAwYCAC/GMxDGLzAxQRUhNQERIxEEKPwaAmjpAx7Z2QGY+9wEJAAAAQAi/rgBXgDoAAoACLEEAAAvzTAxZQcUBgcnPgI1NQFeAWZUgRwuHOisZthGSy1caD+1AAEAUAIOAmECzgADAAixAwIALzMwMUEVITUCYf3vAs7AwAABAIb/9AGgAP0ACwAKswMJC3IAKzIwMXc0NjMyFhUUBiMiJoZMQUJLS0JBTHg4TU04OExMAAABAAH/gwL1BbAAAwAJsgACAQAvPzAxQQEjAQL1/cm9AjgFsPnTBi0AAgBo/+wEIwXEABcALwATQAkrBh8SBXIGDXIAKysyETMwMUEVFA4CIyIuAzU1ND4CMzIeAwMRNC4DIyIOAhURFB4DMzI+AgQjQ36vbFaTdlMtRH6vbFeTdVMs8RQnOkouOFg8HxQoOUstOVg8HgNS7qvxlkYsXpXQie6s7ZVEK1yTz/5nATRXhV07GytemW3+zFiGXz0cLGGcAAEAqgAAAwAFtQAGAAy1BgRyAQxyACsrMDFBESMRBTUlAwDx/psCOQW1+ksEl3nH0AAAAQBSAAAEPgXEAB8AGUAMEBAMFQVyAx8fAgxyACsyETMrMjIvMDFlFSE1AT4CNTQmJiMiBgYVIzQ2NjMyFhYVFA4CBwEEPvwwAdpOWiUzYkZRbjjxdNybksxrLFFuQv7FwMClAgVYgGcxRWk9RntPf9N9YrR7RIaFhUT+pQAAAgBO/+wEGgXEABwAOwAqQBYbHB4fBAAAHR0SMy8vKQ1yDQ0JEgVyACsyMi8rMi8yETkvMxIXOTAxQTMyNjY1NCYmIyIGBhUjNDY2MzIWFhUUDgIjIxU1MzIeAhUUDgIjIi4CNTMUFhYzMjY2NTQmJiMBiZBUbzYxY0xAZzzyetOEjdN2OnKqcLW1gLVyNUmGs2lerIhP8T1vSExuO0J6UwNFOmZCRWM2M11AdLRnXbiIPoBpQTaEPGmGS2afbjg0Z5tmQWM4NmpLVWozAAACADcAAARZBbAABwALAB1ADgMHBwYCAgUJDHILBQRyACsyKxI5LzkzEjkwMUEVIScBMwMBAREjEQRZ++YIAnTB0f6XAnHxAgfAkQPY/pr9vQOp+lAFsAAAAQB//+wEOQWwACkAHUAOJwkJAh0ZGRMNcgUCBHIAKzIrMi8yETkvMzAxQScTIRUhAzY2MzIeAhUUDgIjIi4CJzMeAjMyPgI1NC4CIyIGAWvATwMR/bcoInhNZ6NyPDt2s3pbp4RQBuwJPWZDPVg7HSFBYkBWWwKlLwLczP6bFCdDf7VxZbCGSzVpm2VHYzQrUW5DQGpOKzIAAAEAc//sBDkFuQA2ABtADQ4sGCIiLAMABHIsDXIAKysyETkvMxEzMDFBMxUjIg4CFRUUHgIzMj4CNTQuAiMiBgYHJz4DMzIeAhUUDgIjIi4CNTU0EjYkA0YeEYG7eDsmRVo0Nlg+IB88WTpIdUcDXAhDbpFXapxnM0B7r291t39CVK8BEgW5xVCMu2nlV4VZLi1QbkE+bVMvRG09Hl2UaDdQia9fabWITFqeznNkpgEn4oEAAAEARAAABDUFsAAGABNACQEFBQYEcgMMcgArKzIRMzAxQRUBIwEhNQQ1/br+AkX9DgWwhPrUBPDAAAAEAGf/7AQmBcQAEAAgADAAQAAhQBANPT0lLRUVBDUtBXIdBA1yACsyKzISOS8SOTMSOTAxQRQGBiMiJiY1ND4CMzIWFgc0JiYjIgYGFRQWFjMyNjYTFAYGIyImJjU0NjYzMhYWBzQmJiMiBgYVFBYWMzI2NgQmftmIiNp+RoGvaIraffI8bEdIajs6bElJajrRc8qBgstzc8qCgspz8TNcPz9cMjJdPz9cMgGNiLpfX7qIWpNrOma0bEluPDxuSUprODhrAuJtqmFhqm2Cs15es4pBYzg2YkRDYzg4YwABAF3/9wQVBcQAOAAbQA0AOBYhITgMKwVyOAxyACsrMhE5LzMRMzAxZTMyPgI1NTQuAiMiDgIVFB4CMzI+AjcXFA4CIyIuAjU0PgIzMh4CFRUUDgMjIwEwFIq5bjAlQ1cyN1c7Hx06WDs4XkYoAlw/b5NWaJ9pNEB6r292sno+Lmen8aIWvkmCsGf7WYdbLjFVcUA8b1YyK0pcMBxMk3lIT4iwYWm4jU9cotZ7VYHvy5lVAP//AH//9AGaBFEEJgAS+QAABwAS//oDVP//ADP+uAGHBFEEJwAS/+cDVAAGABARAAACAD4ApwOJBEwABAAJABZADAEDBwYABAgFCAIJAgAvLxIXOTAxUwUVATUlAQc1AfQClfy1A0v9a7YDSwKR/e0BdJ2o/v8jnQFzAAIAjwFkA/MD0gADAAcADrUGBxIDAhAAPzM/MzAxQRUhNQEVITUD8/ycA2T8nAPSxsb+WMbGAAIAfgCoA94ETQAEAAkAFUALBQgEAAYDAQcCCQIALy8SFzkwMUElNQEVBQE3FQEDH/1fA2D8oAKjvfygAmn76f6NnqsBACid/owAAgA7//QDlwXEACAALAAbQA0BASQkKgtyERENFgNyACsyMi8rMhEzLzAxQSM+Ajc+AjU0JiYjIgYGByM+AjMyFhYVFAYGBwYGAzQ2MzIWFRQGIyImAj/fAR5HOy5KLCpRPDJYNgLxAnTEeYa+ZUZwQTgo9EpAQEpKQEBKAa1df2g6LE9ZOj9YLidRQn6sVluteliPez0zd/58NktLNjZLSwAAAgBb/jsG1gWPAEEAaAAnQBISBQVHUhNyYWRkC11dHR08KTAALzMvMxEzLzMzETMrMjIRMzAxQQ4DIyIuAjcTMwMGHgIzMj4CNzYuAyMiDgMHBh4DMzI2NxcGBiMiJCYmAjc2EjY2JDMyHgISAQYeAjMyPgI3Fw4DIyIuAjc+BDMyFhcHJiYjIg4CBs8EMmWeb0NoRR4HM68yBhEkLhc2Vj0jAwcoX5fSh3zSpndDBgctZpvNfVi1PiZG0l2b/v/Fgj4HB1aX0QEGmpz8v346/AAHDSU8KBk5ODIRTBdGWGY3SXFIHgkKOVVsfUJxgDleHV1AOV1GLwIIYcCeXi9YfU0CN/3JPU4qED1tkFSM7bqBREyPx/eNlPS8gUIoIYUtLFCb4AEir6QBIeyrXFKc3v7p/v1EakgmGThdRVdOd08pQHWjZWewimEzQCt4GzA0aZoAAAMAEQAABT8FsAAEAAkADQApQBQEBwcKDQ0GAAsMDAIIAwJyBQIIcgArMisyETkvMzk5MxEzMhEzMDFBASEBMwEBJzMBARUhNQLL/k3++QIkqAFa/kwTqQIm/uP86ATu+xIFsPpQBO7C+lACHMfHAAACAJQAAASlBbAAGQAwAClAFBkpJgInJwEmJg4MDwJyHBsbDghyACsyETMrMhE5LzMzETMSOTkwMUEhJyEyNjY1NCYmIyMRIxEhMh4CFRQGBgcDITchMjY2NTQmJiMhNyEXHgIVFAYGArb+jQIBRFJzPDhzWfP7Ae54vYVFVqh9W/5JcQFGVXI5MmxX/uYCAW85eJtMeeICkrcxXUJJXCr7GAWwLmGUZlqVXgn9L8c5ZURHaTm3RQRinFqLvGEAAQBm/+wE6wXEACcAFUAKGRUQA3IkAAUJcgArzDMrzDMwMUEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAjMyNjYD8PoMiPawh9iaUVOc24mu8IUP+gpDgmlWgFYrJ1F+WGuFRQHaj9+AYbP+nXmd/rVggOKSXoZHQHy1dHtus4BGRIMAAAIAlAAABNIFsAAaAB4AG0ANAgEBHQ4PDx4Cch0IcgArKzIRMxEzETMwMWEhNyEyNjY1NTQuAiMhNSEyHgIVFRQOAgERIxECO/7JAgE1h7ddNWeVYf66AUaR8K9eXrDz/r77x3bcmE92tnxAyGG2/p1Nnf61YQWw+lAFsAAEAJQAAARNBbAAAwAHAAsADwAdQA4LCgoGDw4HAnIDAgYIcgArMjIrMjIROS8zMDFlFSE1ExEjEQEVITUBFSE1BE38+0f7A1T9YAMA/QDHx8cE6fpQBbD9oMTEAmDIyAADAJQAAAQ0BbAAAwAHAAsAG0ANBwYGAgoLCwMCcgIIcgArKzIRMxE5LzMwMUERIxEBFSE1ARUhNQGP+wNN/W4C5f0bBbD6UAWw/YPHxwJ9yMgAAQBr/+wE8gXEACsAG0ANKyoqBRkVEANyJAUJcgArMivMMxI5LzMwMUERDgIjIiYmAjU1NBI2NjMyFhYXIy4CIyIOAhUVFB4CMzI2NjcRITUE8h+D2KGJ5KVaU5zdjLPrgBH2DEV/ZVeEVywzYYxYVm5BEv7RAuj91ClhRl20AQOmZaUBA7Rdd9KHTHhFQoC4dmd4uoBBHSkTASG7AAADAJQAAAUXBbAAAwAHAAsAG0ANCQYIAwICBgcCcgYIcgArKxE5LzMyETMwMUEVITUTESMRIREjEQRW/Ps++wSD+gNQx8cCYPpQBbD6UAWwAAEApQAAAaAFsAADAAy1AAJyAQhyACsrMDFBESMRAaD7BbD6UAWwAAABAC//7APlBbAAEwATQAkQDAwHCXICAnIAKysyLzIwMUERMxEUBgYjIiYmNTMUFhYzMjY2Auv6fNaIi9d6/DdlREFlOgG1A/v8BZHMbF7ClVZpLztzAAMAlAAABRYFsAADAAkADQAcQBAGBwsFDAgGAgQDAnIKAghyACsyKzISFzkwMUERIxEhAQEnEwETATcBAY/7BGb9sv6wLPABqCT+Ia0CXAWw+lAFsP1D/pz5ASgCAPpQArKr/KMAAAIAlAAABCQFsAADAAcAFUAKAwICBgcCcgYIcgArKxEzETMwMWUVITUTESMRBCT9JUb7x8fHBOn6UAWwAAMAlAAABmoFsAAGAAsAEAAbQA0CBw4FCwhyDAQABwJyACsyMjIrMjIROTAxUzMBATMBIwEzExEjATMRIxH64AGlAaTg/dSy/W/VJfoFANb7BbD7nQRj+lAFsPw0/hwFsPpQAeQAAAEAlAAABRcFsAAJABdACwMIBQkHAnICBQhyACsyKzISOTkwMUERIwERIxEzAREFF/v9c/v7Ao8FsPpQBBP77QWw++sEFQACAGX/7AUdBcQAFQArABNACScGHBEDcgYJcgArKzIRMzAxQRUUAgYGIyImJgI1NTQSNjYzMhYWEgc1NC4CIyIOAhUVFB4CMzI+AgUdVp/eh4bdollYod2Gh96gV/svW4RTU4JbMDBdglNUglovAwBQpf76uGFhuAEGpVClAQW5YWG5/vv1Unq7f0FBf7t6Unq8gUFBgbwAAAEAlAAABM8FsAAXABdACwIBAQ4MDwJyDghyACsrMhE5LzMwMUEhNSEyNjY1NCYmIyERIxEhMhYWFRQGBgK9/oUBe2N6OTl6Y/7S+wIpqe18fO0CH8dAcUlFeUr7GAWwd9GGjcpsAAMAYP8DBRkFxAADABkALwAZQAwgFQNyACsrAwoJcgIALysyMhEzKzIwMWUBBwEBFRQCBgYjIiYmAjU1NBI2NjMyFhYSBzU0LgIjIg4CFRUUHgIzMj4CA5cBf6P+iAIeVqDeh4bdollYod2Gh9+gV/wvW4NUUoJcMDBdg1JUglovwv7QjwEtAtBQpf76uGFhuAEGpVClAQW5YWG5/vv1Unq7f0FBf7t6Unq8gUFBgbwAAgCUAAAE3wWwABgAHQAjQBIbGgkDDAwLCwAcGRgIchYAAnIAKzIrMjISOS8zEhc5MDFTITIWFhUUBgYHByEnITI2NjU0JiYjIREjIQElARWUAgOm6n1QkmVM/jECAVtaeD07el7++PsDP/6qAQcBWwWwZMOPbaZxHyXHQG9GTHE9+xgCjgH9fg0AAQBL/+wEjgXEADkAH0APCiYPNjExKwlyGBQUDwNyACsyLzIrMi8yETk5MDFBNC4CJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4DFRQOAiMiLgI1MxQeAjMyNjYDkhtEe19or4JIS4u+c6Lrf/k9e15ZdjomTnZQebR4PEqJv3Vpy6Zi+zFYdUNYdzwBdy1GOjcdIE9piVpZkms7eMp6SG9ANlw6KUM5MhckV26LWFyTZzc4c610R2Q/HjJaAAIALQAABLQFsAADAAcAFUAKAAMDBgcCcgEIcgArKzIyETMwMUERIxEhFSE1Auv5AsL7eQWw+lAFsMjIAAEAgP/sBL8FsAAVABNACQERBgsCcgYJcgArKxEzMjAxQTMRFAYGIyImJjURMxEUFhYzMjY2NQPF+pD3mJ32jfpIhFpag0gFsPwzpuBxceCmA838M2mHQECHaQAAAgARAAAFGwWwAAQACQAXQAsABggBCQJyAwgIcgArMisyEjk5MDFBASEBIwEBEyMBAocBfwEV/fa7/s8BfDS8/fgBCgSm+lAFsPta/vYFsAAEAC8AAAbmBbAABQAKAA8AFQAbQA0QDAEKAnITEg4ECQhyACsyMjIyKzIyMjAxQQEzAwEjAxMTIwEBEzMBIwMBEyMBAwIBASKYEf7Knq7rFaj+rwTV6Pr+r6j3AR8qnv7PEAFHBGn+3ftzBbD7oP6wBbD7owRd+lAFsPuU/rwEjQEjAAABACYAAATpBbAACwAaQA4HBAoBBAkDCwJyBgkIcgArMisyEhc5MDFBAQEhAQEhAQEhAQEBUwE1ATUBIf5IAcP+3P7D/sP+2wHE/kcFsP3tAhP9L/0hAh394wLfAtEAAQAIAAAE2QWwAAgAF0AMBAcBAwYDCAJyBghyACsrMhIXOTAxQQEBIQERIxEBAR8BUgFSARb+Fv3+FgWw/UkCt/xo/egCGAOYAAADAFAAAASOBbAAAwAJAA0AH0APBAwMCQ0CcgcDAwICBghyACsyETMRMysyMhEzMDFlFSE1AQEjNQEzIxUhNQSO/A0D3PyBqAOCpV38PMfHxwRO+uufBRHIyAABAIX+ugIaBo8ABwAOtAMGAgcGAC8vMxEzMDFBFSMRMxUhEQIapKT+awaPuvmguwfVAAEAEv+DA2MFsAADAAmyAQIAAC8/MDFFATMBAnL9oPECYH0GLfnTAAABAAv+ugGiBo8ABwAOtAUEAAEEAC8vMxEzMDFTNSERITUzEQsBl/5ppgXVuvgruwZgAAIANgLZAzgFsAAEAAkAFkAJCAcHBgAFAgMCAD/NMjk5MxEzMDFBAyMBMxMDJzMBAcHBygErjIHBLI0BKgTL/g4C1/0pAfLl/SkAAQAC/0QDkgAAAAMACLECAwAvMzAxYRUhNQOS/HC8vAABADgE0wIMBgAAAwAKsgOAAgAvGs0wMUETIwEBScPJ/vUGAP7TAS0AAgBW/+wD+QROABsAOgApQBUrLB4nHjo6DycxC3IYGQpyCQUPB3IAKzIyKzIrMhI5LzMREjk5MDFlETQmJiMiBgYVIzQ+AjMyFhYVERQWFxUjJiYTFyMiDgIVFBYWMzI2NjcXDgMjIiYmNTQ+AjMC3ipVQDtWMPA+dqRmer1tFRT3ERMjAq1DZkQiKE03Sm9AAk4MOl2BVGqmXkF/uHbZAgQ6VC4oRCtAeF42UqV8/h9KdSsQJ3kB8pUZMEQrK0coPVkoayleVTZVkVxWhVovAAMAff/sBDAGAAAEABoALwAZQA4hFgdyKwsLcgQKcgAAcgArKysyKzIwMVMzEQcjARUUDgIjIi4CJzU+AzMyHgIHNTQuAiMiDgIHFR4CMzI+An3xF9oDszVrnWdllmU+DQ0+ZZVkaJ9qNfEYN11FQFw+IwYJO2xVQ1w3GQYA+ufnAicVeMmUUUyMwnVDdsGNTFCTyo8VSYFiOSxMZDq1S31LNmGCAAABAE7/7APxBE4AJwAZQAwdGRkUB3IEBAAJC3IAKzIyLysyLzIwMWUyNjY3Mw4CIyIuAjU1ND4CMzIWFhcjLgIjIg4CFRUUHgICNjtfOwPjAnjGeHy4ej09erh7gsRxAuMDNV9CSWA2FxY3YKwvVDdprGVVlsRwI3DFllVnt3k8YTo7ZX1DI0N+YzsAAAMAUP/sBAIGAAAEABoALwAZQA0hBAQWC3IrCwdyAQByACsrMisyLzIwMWURMxEjATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgMQ8tv9KTpunmNilGg+DQ0+aJVjYp1uOvEbOl1BUmo9CwYlPls+Qlw7HOAFIPoAAhEVe8uTT0yNw3dDdMCMTFKUyYsVSoBhN0h7TLU7Zk0rOGKCAAABAFH/7AQKBE4AKwAfQBBnEwEGExISABkLB3IkAAtyACsyKzIROS8zX10wMUUiLgI1NTQ+AjMyHgIVFSE1ITUuAiMiDgIVFRQeAjMyNjcXDgICWXjBh0hKhLRpdK5zOfy8AlYCL2BQPF0+ISdMbEVXiDJ/I3ChFE+OwG8of86TTk6NwnVnrRNBckYzYIdUKEd5WjNGQHszXToAAgArAAAC1QYVABEAFQAVQAsUFQZyDQYBcgEKcgArKzIrMjAxYSMRNDY2MzIWFwcmJiMiBgYVFxUhNQHC8VuqdCRGIQYULxs3Tynf/YoEonmlVQkJugUEKU45aLCwAAMAUv5VBAwETgATACkAPgAbQA8wJQtyOhoHcg4GD3IABnIAKysyKzIrMjAxQTMRFAYGIyImJic3FhYzMjY2NREBNTQ+AjMyHgIXFQ4DIyIuAjcVFB4CMzI2Njc1LgMjIg4CAzHbfN6SPpeNL3E6jE1TdUD9NzxwoGVplWQ5Dg0+ZpVlY59xPPEdPV9BVW07DAYlPl5AQWA9HgQ6++SSzGskT0CORUA9dlUDLP7MFXvLk09MjcN3Q3TAjExSlMmLFUqAYTdIe0y1O2ZNKzhiggACAHoAAAP6BgAAAwAaABdADBECFgoHcgMAcgIKcgArKysyETMwMUERIxETJz4DMzIeAhURIxE0JiYjIg4CAWrwxk4BPW+cX1CBXjHyLVY+QWNCIQYA+gAGAPxFAXC+jU0sYZtv/UkCuU5cKTRadgAAAgB8AAABkAXWAAMADwAQtwcNAwZyAgpyACsrzjIwMUERIxEDNDYzMhYVFAYjIiYBfvIQSUFASkpAQUkEOvvGBDoBHDdJSTc2SEgAAAL/q/5LAYcF1gARAB0AE0AJDQYPchUbAAZyACvOMisyMDFTMxEUBgYjIiYnNxYWMzI2NjUDNDYzMhYVFAYjIiaI8kyUayBFHwEVLxUrOh4VSkBBSUlBQEoEOvtob5lPCQi8BAUeQDUFtDdJSTc2SEgAAAMAfQAABDcGAAADAAkADQAdQBEGBwsFDAgGAgkGAwByCgIKcgArMis/Ehc5MDFBESMRCQInNwETATcBAW/yA5L+Kf7+P8MBMjT+oZgB3gYA+gAGAP46/fb++MzxAVX7xgH8qf1bAAEAjAAAAX4GAAADAAy1AwByAgpyACsrMDFBESMRAX7yBgD6AAYAAAADAHwAAAZ8BE4ABAAbADIAIUARKRICLiIiFwsDBnILB3ICCnIAKysrETMzETMRMzMwMUERIxEzAyc0PgIzMh4CFREjETQmJiMiDgIFBzQ+AjMyHgIVESMRNCYmIyIOAgFt8eMZUjhsoWpKe1sx8S9XPERfPBwCn3E3a55mU4NcMPIvVjw4VTodA178ogQ6/gsBcL6NTStckGb9LwK8T1onNFp2Axlir4VMLWCZbP1EAr1SWiMpSV4AAgB6AAAD+gROAAQAGwAZQA0SAhcLAwZyCwdyAgpyACsrKxEzETMwMUERIxEzAyc+AzMyHgIVESMRNCYmIyIOAgFr8eMdTgE/cZ5hTn9bMPItVT8+YkMkA1P8rQQ6/gsBc8CKSytgmW/9RQK8TlsnNFp2AAACAE7/7AQ8BE4AFQArABC3HBELcicGB3IAKzIrMjAxUzU0PgIzMh4CFRUUDgIjIi4CNxUUHgIzMj4CNTU0LgIjIg4CTkSBu3Z3u4JERIK6dne7gkTxHkBkRUNjQB8fQWNERGNAHgIRF3XJlVNTlcl1F3XIlVNTlciMF0mCYjg4YoJJF0iBZDk5ZIEAAAMAff5gBC8ETgAEABoALwAZQA4hFgdyKwsLcgMGcgIOcgArKysyKzIwMUERIxEzARUUDgIjIi4CJzU+AzMyHgIHNTQuAiMiDgIHFR4CMzI+AgFu8d4C1DdrnGZll2g/DQ0/aJZkZp5sNvEcPF1BQFw+IgcMOmtUQVw7HANq+vYF2v3tFXbJlVJLirtwUXfCjExPkcuRFUuBYjcrTGU7wkh4RzhjggADAFD+YAQCBE4ABAAaAC8AGUAOIRYLcisLB3IEDnIDBnIAKysrMisyMDFBETczEQE1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMjY2NzUuAyMiDgIDDxzX/E44bp5nZJVnPg4NPmiWZWWebTnxGzxcQVVtOwwHJD9dQEFeOxz+YAUD1/omA7IVe8uST0yNwndDdMCMTVKVyYsVSoFjOEp9TLU7Z00rOGOCAAACAH0AAAK5BE4ABAAWABlADQYJCQUUB3IDBnICCnIAKysrMjIRMzAxQREjETMlByYmIyIOAgcHND4CMzIWAW7x5gFWAhYzGT5ePyIDNyhRe1EWMwNs/JQEOgfgBAQjQVw5BGauhEoIAAEASf/sA8cETgA1ABdACxsADjIpC3IXDgdyACsyKzIROTkwMUE0JiYnLgM1ND4CMzIWFhUjNCYmIyIGBhUUHgIXHgIVFA4CIyImJjUzHgIzMjY2AtskZWJWj2Y4OmybYIjDaPErVkE+UScVMldCfLNgPXShZJPMaekEQ2U2QVguASUkOzAUEzVMaERCdlo0W5thK0svJz4lGysjHg4aUX9hSHdXMGmlWUNPIyM9AAIACv/sAnUFQwADABUAE0AJChELcgQCAwZyACsyLysyMDFBFSE1EzMRFBYWMzI2NxcGBiMiJiY1Amz9nrDxHTQjGS4OAR5PM1OASAQ6sLABCfvoMjUSBgO4CQ47hm8AAAIAd//sA/kEOgAEABsAFUAKAREGchgDAwsLcgArMi8yKzIwMWURMxEjEzcUDgIjIi4CNREzERQeAjMyNjYDB/LkFFEwZJxtT4RfNPEcMEAkZ3cz/wM7+8YB4AJtt4dLLmCaawK7/UM7TzAUUYoAAgAWAAAD3wQ6AAQACQAXQAsABggBCQZyAwgKcgArMisyEjk5MDFlATMBIwMBFyMBAdwBCfr+iJy6AQ4NnP6GvwN7+8YEOvyBuwQ6AAQAIwAABcgEOgAFAAoADwAVACRAFAcLABEDFAYJEAwBCgZyEg4ECQpyACsyMjIrMjIyEhc5MDFlEzMHAyMDExcjAQETMwEjAxMXIwMnAaL6mir8infDEJr+2wP9vev+3Jq69x+K/yrwA0r8/MIEOvyy7AQ6/LwDRPvGBDr8wPoDP/sAAAEAHwAAA+oEOgALABpADgcECgEECQMLBnIGCQpyACsyKzISFzkwMUETEyEBASEDAyEBAQE0ztIBCf64AVX+99zc/vYBVP65BDr+mQFn/e392QF2/ooCJwITAAIADP5LA94EOgATABgAGUANFxYVAwgCGAZyDwgPcgArMisyEhc5MDFlASEBDgMjIiYnJxYWMzI2NjcDARcHAQG2ASYBAv5ODzBNclEgOxoBCh0JPFAzElgBASun/nd2A8T7ISheVTULBrgBAh1ANgSW/Nb+KwRTAAMAUQAAA8EEOgADAAkADQAcQA0EDAwJDQZyBwMDBgISAD8zMxEzKzIyETMwMWUVITUBASM1ATMjFSE1A8H82gMQ/UKcArqgXf0PwMDAAuT8XJsDn8DAAAACADj+lAKOBj0AEQAlABlACh0JCgocHBITAQAALzIvMzkvMxI5OTAxQRcGBhUVFAYGIzUyNjU1NDY2EwcuAjU1NCYmIzUyFhYVFRQWFgJeMGdNVbiVZ1pBnLgwiJxBKFVElbhVIU8GPYkjsnPOZKRginhmzmm3i/kHiieLt2nMRWM3i2GjZsxNg2AAAAEAr/7yAVAFsAADAAmyAAIBAC8/MDFBESMRAVChBbD5Qga+AAIAHP6UAnMGPQATACYAG0ALHgsKCh8fARUUAAEALzMvMxI5LzMSOTkwMVM3HgIVFRQWFjMVIiYmNTU0JiYDJz4CNTU0NjYzFSIGFRUUBgYcMImcQChWRJS6VSBPFTBFTiFVupRmXECcBbSJJou3ac5DZDeEXaFkzk2EYPj3ihhgg03MZqBdhHlmzGm3iwABAHUBhgTXAy8AHwAbQAsMAAAWBoAcBhAQBgAvMy8RMxoQzTIvMjAxQTcUDgIjIiYnJiYjIgYGFSM0PgIzMhYXFhYzMjY2BB65MFd5SFSBSi5QLi1AJL4wV3hIVIdGME4sLUQmAxEBVpFqO0NELC8vVjlXj2c4RkEuLjNaAAACAIX+kwGZBE0AAwAPAAyzAQcNAAAvL93OMDFTEzMTExQGIyImNTQ2MzIWkhnOGQdJQUBKSkBBSf6TBAP7/QU6NktLNjZKSgADAGf/CwQLBSYAAwAHAC8AJUASAgElJSEDHAdyBwQICAwGEQ1yACvNzDMSOTkrzcwzEjk5MDFBESMRExEjETcyNjY3Mw4CIyIuAjU1ND4CMzIWFhcjLgIjIg4CFRUUHgICrb+/v2E7YDoD5AN5xXh8uXo8PHu4e4LEcQPkAzVfQklgNhcWN2AFJv7fASH7Bf7gASCBL1Q3aaxlVZbEcCNwxZZVZ7d5PGE6O2V9QyNDfmM7AAADAF8AAAR6BcQAAwAHACIAIUAQBgUFAR8WBXIMDQ0CAgEMcgArMhEzETMrMhE5LzMwMWEhNSEBITUhJRMWBgcnPgI1AzQ2NjMyFhYVIzQmJiMiBgYEevvpBBb+u/0rAtX+vBcBR1G2ISMNFXPKg4vCZvI4WzU2VzLHAZHD9P2UYJcrRghFXSkCdYrDaGa1eEtZKDZqAAAGAFz/5QVOBPEAEwAnACsALwAzADcADrUPGQUjDXIAKzIvMzAxQRQeAjMyPgI1NC4CIyIOAgc0PgIzMh4CFRQOAiMiLgIBByc3AQcnNwEnNxcBJzcXATBBc5dXV5dzQEBzl1dXl3NBsV2j2Ht72KRcXKTYe3vYo10Ez8qIyvzmyobKA6DKiMr72MqGygJgXaR6RUV6pF1eonpFRXqiXoXkql9fquSFheSrYGCr5AKKzozO+8POi83+p86LzQMmzovOAAUADQAABDIFsAADAAcADAARABUALUAWCxAQBgcSFRUIDgMDAgIRFAxyCREEcgArMisSOS8zEjk5MhEzzjIzETMwMUEVITUBFSE1JQEhASMDAQcjAQERIxEDy/ycA2T8nAF5AUgBCv5ekuQBSyKS/lwCjPoC45WV/t2UlPEC//yUA2z8+WUDbP1O/QIC/gACAIn+8gFqBbAAAwAHAA20AQIGBwIAP93ezTAxQSMRMxERIxEBauHh4f7yAxkDpf0KAvYAAgBc/iYEjAXFAC8AYQAeQBNTPwABBStdNTEwDyEMT0QdFBFyACsyLzMXOTAxZTUyNjY1NC4CJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4DFRQOAgMVIgYGFRQeAhceAxUUDgIjIi4CNTcUHgIzMjY2NTQuAicuAzU0PgICr0xqOCBKfV1vrno/R4W5dJ3jevE9dVdcdDgcRHxgcrB6QER9sPBLYS4bRn5hcbB4P0eFuHNjvppb8TRVaDRUdT0fSHtcb7B6QUF4qnyCMFU1Kj81Mh0eR2CHXlWKYjVkv4pCa0AxUTIrPzEtGh5IX4ZcUHxULALvhDBTNS1BNC8cH0dfh15Yil8xK2GkeAJEWzQXLk8zKDwzMBseR2CGXE57VS4AAAIAYwTlAywFzQALABcADrQDCQkPFQAvMzMvMzAxUzQ2MzIWFRQGIyImJTQ2MzIWFRQGIyImY0Q4OUREOThEAc9EOThFRTg5RAVZMUNDMTBDQy8xQ0MxMENDAAMAWv/rBeUFxAAfADMARwAfQA4dBAQlJUMUDQ0vLzkDcgArMhEzETMvMxEzETMwMUEzFAYjIiYmNTU0NjYzMhYVIzQmIyIGBhUVFBYWMzI2JRQeAjMyPgI1NC4CIyIOAgc0EjYkMzIEFhIVFAIGBCMiJCYCA8mWs5prm1VVm2uatJZdW0FZLS1ZQVtc/QZco9d7etajXFyj1np716NcdW7EAQGTkwEBw25uw/7/k5P+/8RuAlWdnWKuc3VzrmKdnWJVQXRKdkt0QVTnheWrX1+r5YWF5KpfX6rkhZ8BEMtxccv+8J+f/vDNcnLNARAAAAIAjgK0Aw4FxQAXADEAGrUxGhoNFiq4AQCyCA0DAD8zGtzEEjkvMzAxQRE0JiYjIgYVJzQ2NjMyFhYVERQWFyMmExcjIgYGFRQWMzI2NjUXDgIjIiY1NDY2MwJMGjYpQ02lTYtdV4FJDA6qGCkBkztNJTs/KlU6Eg8/YkR4gUuXcgNeAVQqOx40Mw5EaTw+elz+xjFYLEkBcnEfNB8qMSY4GHEgRCx7Z0pnNv//AFcAiQOFA6cEJgGS6/4ABwGSAVX//gACAH8BdwO/AyIAAwAHABK2BgcDBgICAwAvMxEzEjkvMDFBFSE1BREjEQO//MADQL4DIqWlS/6gAWAABABZ/+sF5QXEAB4ALwBDAFcANUAbHxsYIAQCAgEBDykNDTU1UwwPD0lTE3I/SQNyACsyKxI5LzMRMxEzLzMSOX0vMxIXOTAxQSMnMz4CNTQmJiMjESMRITIWFhUUBgYHIgYjDgIjNzIWFRUUFhcVIyYmNTU0JiUUHgIzMj4CNTQuAiMiDgIHNBI2JDMyBBYSFRQCBgQjIiQmAgM42ALBLEwuIU9DhZEBFmORTzJhRgMHAxEJCR4VnHIHCpUKA0L9UVuk13p71qJcXKLWe3rXpFt2bsQBAZOTAQHDb2/D/v+Tk/7/xG4CjoIBGzUnMToZ/TEDUDlzVjZUPRMOCgkCY4doNiVDFxAaYBY0SURLheWrX1+r5YWF5KpfX6rkhZ8BEMtxccv+8J+f/vDNcnLNARAAAQCdBRADRAWqAAMACLEDAgAvMzAxQRUhNQNE/VkFqpqaAAIAgQOxAo4FxQAPABsAD7UTDMAZBAMAPzMazDIwMVM0NjYzMhYWFRQGBiMiJiY3FBYzMjY1NCYjIgaBSHlHSHZHR3ZIR3lIh0w1NUhINTVMBLlJeklJeklJeUZGeUk2SUg3OEpKAAMAXAABA/AE/QADAAcACwAStwsCAwMEChJyACsvOS8zMjAxQRUhNQERIxEBFSE1A/D8bAI81QIL/K0Dg8TEAXr8PAPE+8XBwQAAAQA9ApsCsAW7ABwAE7EcArgBALMLEwNyACsyGswyMDFBFSE1AT4CNTQmIyIGFSM0NjYzMhYWFRQGBgcHArD9nwEfKTEXODVAP7ZJh15fhUcwW0ONAyyRegEJJT80Eis3RzNJekg6bEw3XVw3dgACADcCkAKpBbsAGQAzACxADBwYAAAaGhAsKSkkELgBALULCwgQA3IAKzIyLxoQzDIvMhE5LzMSOTkwMUEzMjY2NTQmIyIGFSM0NjYzMhYWFRQGBiMjFTUzMhYWFRQGBiMiJiY1MxQWMzI2NTQmJiMBDlcrOB03QDFDtlCGT1uKTUd9VHV1XYRFVJFaS41bt0g9QT8jQCsEbBksHiQ3KSVHZDQzZEo5WDEpUitYRkpoNjFqVic4OSsmLhUAAAEAbwTTAkIGAAADAAqyAYAAAC8azTAxUxMhAW/DARD+8ATTAS3+0wADAJP+YAQkBDoABAAaAB4AGUAMHQUAFgsTcgMSchwAAC8yKysyETkvMDFBMxEjJzc3FA4CIyImJicDMxQeAjMyPgIBMxEjAzLy3xMjXytZiF1KdlYcH4keNkkrT2c7Gf0+8PAEOvvG+v0CcsCOTitcSgERWnI9GDFZeQKL+iYAAAEASQAAA1QFsAAMAA62AwsCcgAScgArK80wMWEjESMiJiY1NDY2MyEDVMlWn9tyctufAR8CCHnUh4bUegAAAQCQAkYBqgNOAAsACLEDCQAvMzAxUzQ2MzIWFRQGIyImkEtCQktLQkJLAsk4TU04OEtLAAEAbP4/AcoABAATABG2CwqAEwIAEgA/MjIazDIwMXczBxYWFRQOAiMnMjY2NTQmJieLsww5XypTe1EHJz4lIEM1BDgKTVYzUjsgiBMoIB8iEgQAAAEAggKbAgEFrwAGAAqzBgJyAQAvKzAxQREjEQc1JQIBtcoBbAWv/OwCQDGPdgACAHkCswMoBcUAEQAjABC2Fw4gBQNyDgAvKzIRMzAxUzU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGeVWZamqaU1OZaWuaVagmUDw7TScoTTw7TyYEE1BnoFtboGdQZ59aWp+3UDxgNzdgPFA8Xjg4XgD//wBeAIsDlwOoBCYBkwkAAAcBkwF9AAD//wBfAAAFfQWsBCcB4P/dApgAJwGUARwACAAHAjoCvgAA//8AUwAABcUFrwQnAZQA8QAIACcB4P/RApsABwHfAxUAAP//AGYAAAYABbsEJwGUAa8ACAAnAjoDQQAAAAcCOQAvApsAAgBG/n4DpwROACEALQAYQAoAACUlKxAREQ0WAC8zMy8/My8zLzAxQTMUBgYHDgIVFBYWMzI2NjczDgIjIiYmNTQ2Njc+AhMUBiMiJjU0NjMyFgGY3x1DPCxKLSxTOzRYNwHxAXTDeojBZkhxPyUnDvdJQEFKSkFASQKWXX1lPCxQXT4/VispVEB+rVhbrHtakn47I0hUAWo2S0s2NkpKAAb//AAAB04FsAAEAAgADAAQABQAGAAxQBgAFxcIBxQTBxMHEwINAxgCcgwLCw4CCHIAKzIyETMrMjIROTkvLxEzETMyETMwMUEBIQEzExUhNQEVITUTEyMDARUhNQEVITUD2P1D/uEDPJmA/RUF6P0jGD3xPQMn/YoCx/0kBRj66AWw/HrS0v6XwcEE7/pQBbD9ocHBAl/BwQACAEwAywPrBHcAAwAHAAyzBAYCAAAvLzMyMDF3JwEXAwE3Ad6SAwuSkPz1kgMLy5EDG5L85gMakvzlAAADAGn/ogUiBe0AAwAbADMAF0ALAQAvCiMWA3IKCXIAKysyETMyMzAxQQEjARMVFAIGBiMiLgM1NTQSNjYzMh4DBzU0LgMjIg4CFRUUHgMzMj4CBRD8MqcD0LdWoN6Ha7mWazlYod2GbLqVaTn8HjtWb0NTglswHzxXbkJUglovBe35tQZL/RNQpf76uGE/d63dhFClAQW5YT94rN3UUmGfeVIqQX+7elJin3pTKkGBvAAAAgCVAAAEgQWwAAMAGQAdQA4PDg4DGQQEAwACcgMIcgArKxE5LzMROS8zMDFTMxEjEyEyFhYVFAYGIyE1ITI2NjU0JiYjI5Xx8WABiqfkd3fkp/7eASJidzc3d2L6BbD6UASYccZ/fsZxv0ZwPkBxSAAAAQCK/+wEngYVADkAGUANIxs2CAIKcggBchsLcgArKysRMxEzMDFBESMRND4CMzIWFhUUDgIVFB4DFRQGBiMiJiYnNxYWMzI2NjU0LgM1ND4CNTQmJiMiBgYBevA+c6BkcbVrIy4jQWBgQWa8gTRyXxsxIXxHQFQqQWBhQSUwJS1OMjtVLgRR+68EU3CocDpOnHdNYklLNzBRT1tzTHSfURIdEb8ULClHLjVSTFdyT0BZS1M6OE8qNXMAAwBI/+sGhgRPABQAMgBeADdAHFczMzIXRkUUJQADKRdFF0UPHykLckw+PgUPB3IAKzIyETMrMhI5OS8vEhc5ETMRMzIRMzAxZRE0JiYjIgYGFSc0PgIzMhYWFREDFyMiBgYVFBYWMzI+AjcXDgIjIiYmNTQ+AjMBIi4CNTU0PgIXMh4CFRUhNSE1NCYmIyIOAhUVFB4CMzI2NxcOAgLhKlM7QF4y8UF2pmZ+umjAAedNaTUoUj8wY1QzAXUac7R9e6pYPXixdQLDfL6DQkJ+sW5rp3M7/M8CQipcS0BdPR4iR3FPb4o3Rx1tm7cCEj5YLypIKxJIeFoxV66C/hMBqaQwTi4qQyYkOD8clTBkQ1KWZE97VS39aE6OwXM5d8WQTwFDgLRwjKcdRGw/NV5+STlHeVw0PR+hFzkrAAIAaP/sBEIGLAA0ADgAGUALNiAWFgEqDAtyOAEALzMrMhI5LzMzMDFTNxYEFhIVFRQOAiMiLgI1ND4CMzIWFhcnNC4CIyIOAhUUHgIzMj4CNTU0LgIlAScB9UurARrOb0qFtWxttINGP3elZnG2bQRXIUJkQ0BiQyIiQV48PF1AIWKp2AJv/dlLAigFbb8lovH+ybxVf9SaU0uGsWZyuYVIZ6lkAh1BOCMsU3ZKOWpUMThkh09lp/u0dTD+lWsBagAAAwBDAJYEOgTJAAMADwAbABO3GRMCBw0DAhIAP93GMhDGMjAxQRUhNQE0NjMyFhUUBiMiJhE0NjMyFhUUBiMiJgQ6/AkBcktCQktLQkJLS0JCS0tCQksDGM7OAS44S0s4OEpK/Qo4S0s4N0tLAAADAE7/dQQ8BL0AAwAZAC8AGUAMIAEBFQtyKwAACgdyACsyLzIrMi8yMDFBASMBATU0PgIzMh4CFRUUDgIjIi4CNxUUHgIzMj4CNTU0LgIjIg4CA9z9aY8Cl/0BRIG7dne7gkREgrp2d7uCRPEeQGRFQ2NAHx9BY0REY0AeBL36uAVI/VQXdcmVU1OVyXUXdciVU1OVyIwXSYJiODhigkkXSIFkOTlkgQADAIH+YAQ0BgAAAwAZAC8AG0APKwogFQdyCgtyAwByAg5yACsrKysyETMwMUERIxEBFRQOAiMiLgInNT4DMzIeAgc1NC4CIyIOAgcVHgMzMj4CAXPyA7M3a5xmZZdoPw0NP2iVZGeeazfxHDxdQUBcPiMGCCU9W0BBXDscBgD4YAeg/CcVdsmVUkuKu3BRd8KMTE+Ry5EVS4FiNytMZTvCN19IKThjggAEAFD/7AStBgAABAAaAC8AMwAdQA8hBAQWC3IzMisLB3IBAHIAKysyzjIrMi8yMDFlETMRIwE1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMjY2NzUuAyMiDgIBFSE1AxDy2/0pOm6eY2KUaD4NDT5olWNinW468Rs6XUFSaj0LBiU+Wz5CXDscA2z9YOAFIPoAAhEVe8uTT0yNw3dDdMCMTFKUyYsVSoBhN0h7TLU7Zk0rOGKCAwGnpwAABAAfAAAFnAWwAAMABwALAA8AH0APAwKABwYGCgwLAnINCghyACsyKzIROS8zGswyMDFBFSE1ARUhNRMRIxEhESMRBZz6gwQ8/Ps++gSD+wSrnp7+pcfHAmD6UAWw+lAFsAABAJAAAAGBBDoAAwAMtQMGcgIKcgArKzAxQREjEQGB8QQ6+8YEOgAAAwCNAAAEbQQ6AAMACQANAB9ADwwHBwsGBgIJAwZyCgIKcgArMisyETkvMzMRMzAxQREjESEBISczARMBNwEBfvEDxv3//vQfswFNE/6ZvwHbBDr7xgQ6/XXaAbH7xgHYif2fAAMAIAAABDYFsAADAAcACwAbQA0CCgAHBgYKCwJyCghyACsrETMRMzIRMzAxQRUFNQEVITUTESMRAo79kgQW/SVF+gOukLuQ/dTHxwTp+lAFsAACACAAAAIyBgAAAwAHABNACQIGAAcAcgYKcgArKzIRMzAxQRUFNQERIxECMv3uAXzxA7CQu5ADC/oABgAAAAMAkP5LBQwFsAADAAcAGQAdQA4VDgYHBwMIcgkFBAACcgArMjIyKzIRMy8zMDFTMxEjEzcBBxEzERQGBiMiJic3FhYzMjY2NZD7+0uwAzex+1ehcSM+JA4VNxcqOh4FsPpQBTt1+sV1BbD6GHuqWAcKwwYGKlE6AAIAff5LBAYETgAEACoAGUAOHBUPciYLB3IDBnICCnIAKysrMisyMDFBESMRMwMHND4CMzIeAhURFAYGIyImJzcWFjMyNjY1ETQuAiMiDgIBbvHeJyk5apZeUYNdM1aebyM+Ig4TOxYqOR8aM0kvSWtFIgNT/K0EOv4HAnLBjk4wZ6Vz/SN5qFYHCsEGBihPOgLbQ102GTRaeAAFAGX/6wc0BcUAIwAnACsALwAzADNAGi8uLiYyKDMCciknJghyFRISFhkJBAcHAwADAD8yMhEzPzMzETMrMjIrMjIROS8zMDFBMhYXFSYmIyIOAhURFB4CMzI2NxUGBiMiLgI1ETQ+AgEVITUTESMRARUhNQEVITUCqk2VQ0KUT05+Wi8wWn9OTpRBQ5NNgtabVFOb1QUM/PtH+wNU/WADAP0ABcUNCMYMDzNmlmT+zmSXZjQPDMYHDlef24QBMITbn1f7AsfHBOn6UAWw/aDExAJgyMgAAwBZ/+sG9gRPACoAQABWACdAEyQAAEc8ExISPFIZCwsxB3I8C3IAKysyETMyETkvMxEzMxEzMDFFIi4CNTU0PgIXMh4CFRUhNSE1NCYmIyIOAhUVFB4CMzI2NxcGBgE1ND4CMzIeAhUVFA4CIyIuAjcVFB4CMzI+AjU1NC4CIyIOAgVNdLmDR0eArmdwqXE6/NUCPS1eSzhYPB4iRmhGbYw4TDfH+nxDgLh2eLmAQkJ/uXd3uYBD8h0+YUVEYT4dHT5iRURhPR0VUZDDcyp3x5RRAUaBsW2OrRpCaz83YoBJKkZ8XzY2J5swUgImF3XJlVNTlcl1F3XJlVNTlcmMF0mCYzg4Y4JJF0iBZDk5ZIEAAAEAiQAAApQGFQARAA62DQYBcgEKcgArKzIwMWEjETQ2NjMyFhcHJiYjIgYGFQF68VmmcyhKJxgTLR81SCYEonmlVQwJtQUFKlA5AAABAFX/7AUjBcQALAAbQA0PAAYJCQAaIgNyAAlyACsrMhE5LzMRMzAxRSIuAjU1IRUhFRQeAjMyPgI1NTQuAiMiBgcnPgIzMh4CFRUUDgICvZfnm08EIPzaJ1aMZViIXS8wZqV3hLw7MBh5tG+k/KtYX6ffFF2x+ZqPwyFPimc7SoOtYntjrYNLMhjCDSwhZbf9l3uX/LdjAAH/3v5LAtQGFQAnAClAFRQCAhUnBnIfIiIeGwFyCw4OCgcPcgArMjIRMysyMhEzKzIyETMwMUEVIxEUBgYjIiYnNxYWMzI2NjURIzUzNTQ2NjMyFhcHJiYjIgYGFRUCic9Tm2wkPCIPDz8QKzgbpqZZpnQnSyYXFDEfNEckBDqw/DF3pFUHCrsFBylPOAPPsGh5pVUMCbgFBShPOWgAAwBb/+wFrwYrAAkAIQA5AB1ADgUGBikpAAAcA3I1EAlyACsyKzIvMhE5ETMwMUEzFAYGIzUyNjYTFRQCBgYjIi4DNTU0EjY2MzIeAwc1NC4DIyIOAhUVFB4DMzI+AgT6tVGngEtVIxpWoN6HarqWazlYod6FbLuUajj8HjtWb0NSglwwHzxXb0FUg1ouBiuHvmORQ339LFCl/vq4YT93rd2EUKUBBblhP3is3dRSYZ95UipBf7t6UmKfelMqQYG8AAADAE3/7AS3BKgACQAfADUAFUAKJhsLcjEAABAHcgArMi8yKzIwMUEzFAYGIzUyNjYBNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgIEFqFDlXtLTBv8N0SBu3Z3vIFERIG6d3e7gkTxHkFjRURiPyAfQGNFRGJBHgSoc6ZYdz5w/bUXdcmVU1OVyXUXdciVU1OVyIwXSYJiODhigkkXSIFkOTlkgQACAID/7AY6BgIACQAfABlADAUKCgAAFQJyGxAJcgArMisyLzIRMzAxQTMUBgYjNTI2NiUzERQGBiMiJiY1ETMRFBYWMzI2NjUFi69PuJ5paiP+OvqQ95id9o36SIRaWoNIBgKRyGiSRogP/DOm4HFx4KYDzfwzaYdAQIdpAAADAHf/7AUkBJUACQAOACUAHUAOBQsLAAAbBnIiDg4VC3IAKzIvMisyLzIRMzAxQTMUBgYjNzI2NgERMxEjEzcUDgIjIi4CNREzERQeAjMyNjYEhp5BnYsBXlUX/oHy5BRRMGScbU+EXzTxHDBAJGd3MwSVdJ5QfTFl/LkDO/vGAeACbbeHSy5gmmsCu/1DO08wFFGKAAAB/67+SwGSBDoAEQAOtg0GD3IBBnIAKysyMDFTMxEUBgYjIiYnNxYWMzI2NjWh8VWfbiQ8Ig4TOhUqOh8EOvuIeahWBwq7BgYrUjoAAQBX/+wD9gRQACoAGUAMERQUABkLC3IkAAdyACsyKzISOS8zMDFBMh4CFRUUDgInIi4CNTUhFSEVFBYWMzI+AjU1NC4CIyIGByc2NgIAdLmDRkaArmdwqXE6Ayv9wy1fSjhXPB8jRWhGbIw5TDjHBFBRkMNzKnbIlFEBRoGxbY6uGUFsQDhhgUkqRnxfNjYnmzBSAAEAkAThA0QGAAAIABS3BwUFBAEDgAgALxrNMjkyETMwMUEBFSMnByM1AQIvARXDmZm/AREGAP7sC52dDQESAAABAG4E4AM1BgAACAAStgEGgAcEAgAALzIyMhrNOTAxQRc3MxUBIwE1ATuWlc/+6Jj+6QYAnZ0L/usBFgoA//8AnQUQA0QFqgYGAHAAAAABAHUEzQL/BecADgAQtQEBCYAMBQAvMxrMMi8wMUEzFAYGIyImNTMUFjMyNgJMs0+RZJevs0NQT0IF51N/SJ19OFVVAAEAgQTkAYYF1QALAAmyAwkQAD8zMDFTNDYzMhYVFAYjIiaBRT09RkY9PUUFXDNGRjM0REQAAAIAeASNAi0GJQANABkADrQXBIARCwAvMxrMMjAxUzQ2NjMyFhUUBgYjIiY3FBYzMjY1NCYjIgZ4OmI/XX05Yz5efWs+MjI9PTIyPgVXOV04eVU5XDV0VixDQi0uQ0MAAAEAKf5UAZ8AOgAVAA60CA+AAQAALzIazDIwMWUXDgIVFBYzMjY3FwYGIyImNTQ2NgEWcy5KKSAnHiwPFxlOPFh7Lmg6Oh49RSgeJxEHiw8dZmI0ZV0AAQB3BN4DUwXzABkAJ0ATAAABAQoSQA8aSBIFgA0NDg4XBQAvMzMvMy8aEM0rMjIvMy8wMUEXFAYGIyIuAiMiBhUnNDY2MzIeAjMyNgLAkzpkPzFEODsoJjWUOmQ/KUM9QCcmNgXzC0lzQhwkGzgvCEh0RBskHDoAAgBLBNEDWAX/AAMABwAOtAEFgAAEAC8zGs0yMDFBEzMBIRMzAwGL5On+9f3+tOThBNEBLv7SAS7+0gAAAgCJ/m4B8P+9AAsAFwAOtA8JgBUDAC8zGswyMDFXNDYzMhYVFAYjIiY3FBYzMjY1NCYjIgaJa0tJaGhJS2tlLyIgLCwgIi/sSWBgSUpcXUkhLi0iIy4uAAH8kwTT/mcGAAADAAqyA4ACAC8azTAxQRMjAf2jxMn+9QYA/tMBLQAB/WIE0/81BgAAAwAKsgGAAAAvGs0wMUETIQH9YsMBEP7wBNMBLf7TAP///HQE3v9QBfMEBwCl+/0AAAAB/ToE5v6bBn0AFAAQtRQCAIALDAAvMxrMMjIwMUEjJz4CNTQuAiM3Mh4CFRQGB/4CswkzPh0XKjghB1WBVy1gOQTmjwMPHRgUHBEHeRsyRixIRAgAAAL8CATk/zAF7gADAAcADrQHA4AEAAAvMhrNMjAxQSMBIQEjAzP+AM/+1wEAAijD9vYE5AEK/vYBCgAB/R7+l/4x/4oACwAIsQMJAC8zMDFFNDYzMhYVFAYjIib9HklAQEpKQEBJ8DRGRjQzRkYAAQDNBOwB7AZAAAMACrIAgAEALxrNMDFTEzMDzUHejwTsAVT+rAADAG4E5QO3BrAAAwAPABsAGUAKExkZDQGAAAAHDQAvMzMvGs0RMxEzMDFBEzMDBTQ2MzIWFRQGIyImJTQ2MzIWFRQGIyImAcMs44L+HkM5OEVFODlDAk9EOTlERDk5RAWHASn+1y4xQ0MxMENDLzFDQzEwQ0P//wCQAkYBqgNOBgYAeAAAAAEAmQAABDcFsAAFAA62AgUCcgQIcgArKzIwMUEVIREjEQQ3/Vz6BbDI+xgFsAADABoAAAWmBbAABAAJAA0AG0ANBgIHAwJyDQwMBQIScgArMjIRMysyEjkwMUEBIQEzAQE3MwEnFSE1Ayj9+P76AlORAaL+ByySAkHf/BoFL/rRBbD6UAU3efpQx8fHAAADAFz/7AUVBcQAAwAbADMAG0ANLwoDAgIKIxYDcgoJcgArKzIROS8zETMwMUEVITUFFRQCBgYjIi4DNTU0EjY2MzIeAwc1NC4DIyIOAhUVFB4DMzI+AgOf/kYDMFag3odruZZrOVih3YZsupVqOPwePFVvQ1KCXDAfPFduQlSCWi8DOb+/OVCl/vq4YT93rd2EUKUBBblhP3is3dRSYZ95UipBf7t6UmKfelMqQYG8AAIAIAAABQ8FsAAEAAkAF0ALBgACBwMCcgUCCHIAKzIrMhI5OTAxQQEhATMBASczAQLA/m7+8gH7sAE3/mwKsAH7BM/7MQWw+lAE0936UAAAAwBqAAAELgWwAAMABwALABtADQEABQQEAAgJAnIACHIAKysyETkvMxEzMDFzNSEVATUhFQE1IRVqA8T8owLx/LcDlMfHAofCwgJhyMgAAQCZAAAFFAWwAAcAE0AJAgYEBwJyBghyACsrMhEzMDFBESMRIREjEQUU+v15+gWw+lAE6PsYBbAAAAMARwAABEsFsAADAAcAEAAhQBAOBgYHBw8CcgwDAwICCwhyACsyETMRMysyETMRMzAxZRUhNQEVITUBFQEjNQEBNTMES/xcA4H8ggJx/eG1Acv+NbXHx8cE6cjI/TcU/S2SAksCQZIAAwBMAAAFtgWwABMAJwArACFAEBQVFQEAKQhyHx4eCgsoAnIAK80yMhEzK80yMhEzMDFlIyIuAjU0NiQzMzIeAhUUBgQlMzI2NjU0LgIjIyIGBhUUHgIBESMRA2bKhdmdVZUBCa/Pg9mdVZT+9v6EzHCYTy1Xf1LRbZlRLViCATf7q06Ry3un/YxPlcx+pfiK0VGZbFOBWi9TnW9Qf1gtBDT6UAWwAAIARgAABWQFsAAZAB0AGUAMFAcHDRwIch0BDQJyACsyMisROREzMDFBMxEUAgQjIyIuAjURMxEUHgIzMzI2NjUBESMRBGj8nP7ptlaG36FZ+zNghlNVcqBU/ur6BbD+Er3++YlOltyNAe7+EmCSYjJZrYAB7vpQBbAAAwBsAAAE2wXEAC0AMQA1ACVAEigSEi8pKTQRETMuMhJyBh0DcgArMisyMjIRMzMRMzIRMzAxQTU0LgIjIg4CFRUUHgIXFS4DNTU0PgIzMh4CFRUUDgIHNT4DAzUhFSE1IRUDzSlOb0VEbU0pI0BaNWa4j1RSl89+f9GXUlKOtmQ0Vz4j7AHu+6gB9gLvZmieazY2a55oZn6+hlEPjw13ve2DZIrlp1tbp+WKZILtvXcOjxBRhr79jsjIyMgAAAMAVv/rBHsETgAWACwAQQAaQA0uBjQ7Ox0SC3IoBgdyACsyKzIyETM/MDFTNTQ+AjMyHgMXFQ4DIyIuAjcVFB4CMzI+Ajc1LgMjIg4CATMRFB4CMzI2NxcGBiMiLgInEVY3a55nSndaPykKDDlgjF5lnWw38ho4XEFAWj0mCwkkPlw/QVw6GgHkzwsVHBEIDgUYIDshNVc/JQUB+xV+0ppUMl+EpWA+dL+MTE6OwYgVR3pcMzJYdUJHRn5gNzxpiwHc/QkrNiENBAGxEgsjS3ZSAjAAAgCX/nUEbgXEABwAOgAeQA41ACYnJxwcMB0DEwkLcgArMj8zOS8zEjk5LzAxQTMyFhYVFAYGIyIuAjU3FBYWMzI2NjU0JiYjIxMyFhYVFAYGIyM1MzI2NjU0JiYjIgYGFREjETQ2NgIbjZDKbHDKiE6fhVBbT45eUHE7NmlNdU6Jym9rwYFjSk1dKy5cRz9nO/GA0wMtZLF1jMRnLl+WaBo/aT5BcEdIdEYDH2CweWOiYIQ1YkE3Xzw6aUT6WAWoe79tAAMAHv5fA/UEOgADAAgADQAZQA4IDAMECgUBBQ0GcgEOcgArKzISFzkwMWURIxE3EzMBIwMBFyMBAoHxb/v7/oGivAEEJKL+gG398gIOlQM4+8YEOvzE/gQ6AAIAUf/sBDoGIQAsAEIAGUANFCg+AwQzHgtyCwQBcgArMisyEhc5MDFTNDY2MzIWFwcmJiMiBgYVFB4CFx4CFRUUDgIjIi4CNTU0NjY3Jy4CExUUHgIzMj4CNTU0LgInIg4CzWCxe092RgEqh0w2TisQKUs8lshlRIG5dXe7gUNZlFUCPFkvdR9AYkRCYT8fJEReOkJjQSAE7GCKSxkavQ4nHDUjEigpKxQ0n9mKFXPDklFQj8FxFnS+gBUFHE9m/XEWSH9hODhhf0gWOnFiQww4YX4AAgBi/+wEEgRNAB8APwAfQA8AIT4+AwMWNSsHcgwWC3IAKzIrMhI5LzMSOTkwMUEzFSMiBgYVFB4CMzI2NjUzFA4CIyIuAjU0PgIFIyIuAjU0PgIzMh4CFSM0JiYjIgYGFRQeAjMzAg3qwkdmNR07VjhJaDjwUIalVWevgkg6bp4BT+pbl2w6QnqqZ1uhfEfxOWE9SV4sGTJPNcICS3cfQzYeNysZLEgpWIFTKCxUeUxEaUglRipLYjdNdU8pLFV4TCpAJCpBJB4zJRQAAgBZ/n0DxQWwACgALAAVQAkVAiwsKSkAAnIAKzIvMxEzLzAxQTMVAQ4CFRQeAhcXHgIVFAYGByc+AjU0JiYnJy4DNTQ2NjcBIRUhAz2I/ppHYTIVKD4pZVF8RkJeL3wgKhUZOjBRWX5QJTt6Xf6yAwv89QWwjf5SVJOaXi9DMB8MHxYxV1I3emshYiI9NxkXJh4MFhdBWHZMXcHObwHYvgAAAgB9/mEEBgROAAQAHAAXQAwYCwMGcgIKcgsHchEALysrKxEzMDFBESMRMwMHND4CMzIeAhURIxE0LgIjIg4CAW7x3hxGO2+dYlGDXTPyGjNJL0ZnQyADU/ytBDr+BwJywY5OKl+dc/usBFI9VDMXNFx4AAADAHb/7AQwBcQAGQAnADYAHUAQDShqMCBqMDANABpqAA0LcgArLysSOS8rKzAxQTIeAxUVFA4DIyIuAzU1ND4DFyIOAhUVITU0LgMDMj4DNTUhFRQeAwJSV5N2UysrUnWTV1aTdVQsLFN0k1Y4WDwfAdgUJjpLLC5LOCcT/igUKDlLBcQwZJfPhNeDz5plMjJlms+D14TPl2QwvzNnmmc0NFKEY0Eh+6ciQ2WFUy4uU4VlQyIAAAEAo//0Al4EOgARAA62Bg0LcgAGcgArKzIwMVMzAxQWFjMyNjcVBgYjIiYmNaPyAR00IxkuDx5PM1OASAQ6/PozNRMHA7cKDjyFcAACABX/7gRNBfwABAAmAB5AEAAbBAMEAiAFAHIPFhYCCnIAKzIvMysyEhc5MDFBASEBFwEyHgIXAR4CMzI2MxcGBiMiJiYnAQMuAiMiBgcnNjYCIf77/vkBnKb+vTdVPywPAaQNHSUZCRMIAxEwHUlnRx3+4HMOIy8fCx0OBBlPAvD9EARSCAGyGC1BKPvKHy0YAb0EBileTwMGAREkKhMBAbIHCQAAAgBn/nYD2gXEAB4ARgAZQAsfEQ8PISEzBRsDcgArMi85LzMSOTkwMUEHLgIjIgYGFRQeAjMzFSMiLgI1ND4CMzIWFgMzFSMiBgYVFBYWFxceAgcUBgYHJz4CNTQmJicnLgM1ND4CA64jLklGKFlyNh9BaEmSlnO7h0lDf7BuOmJX0ZKOcZ5TSXdHZld7QwFCXy2CHy0YGzkvPWiodkBUm9kFl7kLEQgsSy4oRDEbjC1UdUpWhl4xCxT9xYg/f2FPa0ARGRU0WUs4eWohYyE5OB8YIxwMERtCYJVwaJ9sNwADADD/9ATYBDoAAwAHABkAGUANDhULcgYKcgkHAgMGcgArMjIyKysyMDFBFSE1IREjESEzERQWFjMyNjcXBgYjIiYmNQSz+30Bn/ECPvIdNCMZLg4BHk8zU4BJBDq6uvvGBDr8+jM1EwcDtwoOPIVwAAABAID+YAQwBE4ALwAXQAweKQYRC3IGB3IADnIAKysrETMyMDFTETQ+AjMyHgIVFRQOAiMiLgInHgIzHgIzMj4CNTU0LgIjIg4CFRGARX6taHWwdzw2a5tlZJRmPg0ELS0BCzxtVEFcOhoZOVtBPFQ2Gf5gA+N6wYhIVJrSfhVzwY5NSYe6cAEcHEh1RTNcekcVTotpPDtkfD78KwABAFD+igPpBE4ALQAOtRsJBQAHcgArzDMvMDFBMhYWFSM0JiYjIg4CFRUUFhYXHgIXFAYGByc+Aic0JiYnLgI1NTQ+AgI4fsRv5C1bRUReOhpChmRZgUcCQF4ufyAqFQEbOCyZ0WtAfLYETmC2gTxiOTtlfUMjWoFXHRgzWVM3emkhYiI5Nh8cJhoKJobOjyNwxZZVAAADAFD/7AR9BDoAGAAuADIAE0AJKgYyBnIfFAtyACsyKzIyMDFTNTQ+AjMeAhceAhUVFA4CIyIuAjcVFB4CMzI+AjU1NC4CIyIOAgEVITVQQoC4dhovQTdVh09BfrZ1drqAQvEdPmJEQl48HBw8X0JEYj0dAzz9wwIRF3HBkFAHMjcQJISsZRZouY1RU5TJjBdJgmI5OWKCSRdDel82Nl96Ac/AwAAAAgA8/+wD7gQ6AAMAFQAVQAoFChECAwZyEQtyACsrMhEzMjAxQRUhNSEzERQWFjMyNjcXBgYjIiYmNQPu/E4BVPEZLR0fLBUiL1YyWoBFBDq+vvzyMTcVDQiuGhBEkHIAAQB//+sEBAQ6AB4AE0AJEAcZAAZyGQtyACsrETMyMDFTMxEUHgIzMj4CNSYCJzMeAhUUDgIjIi4CNX/yGCw7Ij9gQSECPi/uHjQgOni4f16YbDoEOv1qRGE6GkRyjEaHAQV7Ppy9b3fUolw0bKhzAAEARv4iBYUEQgAvABlADCsFBRkYBnIiDwtyAAAvKzIrMjIRMzAxQRE0NjYzMh4CFRQGBgQjIiQmJjU0NjY3Fw4CBxQeAjMyNjY1NC4CIyIGFRECaEp+UHm/hkdInf7/u7r+/5xHOmxJmTJCIQIrY6V6o7tRI0BfPiEZ/iIFHE50QleXwmpvzaNeYqnYdm6+mzaOMXqEQFCTc0Nur2BGfWA3Jxb63QACAFL+JQV/BDoAHgAiABVACiEHGQtyIBAABnIAKzIyKzIvMDFTMxEUHgIzMj4CNSYmJzMeAhUUBgYEIyIuAjUBMxEjUvE/b5RWeqhkLQJCMeohOCNFm/8Au5XzrlwCEfDwBDr+FHWiYStDdJRQgvt3O5e2bHfZqWJHlemhAen56wAAAgBl/+sGMAQ6AB4APwAZQAwBFwoKKTYfBnI2C3IAKysRMzMRMzIwMUEzHgIVFA4CIyIuAjURMxEUHgIzMj4CNSYCJTMGAgcUHgMzMj4CNREzERQOAiMiLgM1NDY2BLPtJ0EoLGGhdFeKYjOwHDREKDRHLBQETPwF7jtNAwwaLD4pKUUzHLAzYopXXYtiPBwoQgQ6Pp28cHfTolxEhMB9ATf+u1Z2SiFAbY1OhwEEfHz+/Ic+dGJLKSFKdlYBRf7JfcCERDxsk65fcLydAAABAHj/6wSeBcYAOAAdQA0dHhc2BAQNIxcLci0NAC8zKzIROS8zEMwyMDFBFwYGIyIkJjU1NDY2MzIeAhURFAYGIyIuAjURNxEUFhYzMjY2NRE0LgIjIgYGFRUUFhYzMjYElAoxgDyy/u6bXaNpUoNdMXTRjGqsfEPpO21MQl0yDx0rHSI2H1Wmezx2Ax/DEBmH7ZYTdqdZNWaUXv2GktJwRH2raAEhAf7eUXlCPHhYAoktQiwUIEY5FliSVxMAA//hAAAEqwXEAAMAFgApAB5ADhAJCR8mA3IaGBYDAwISAD8zETMzMysyMhEzMDFBESMRNxM+AjMyFhcHJiYjIgYGBwEnAxMXBwEuAiMiBgcnNjYzMhYWAsL7ctYhUGM/J0MfJQQmDhcmHwz+z6ST2COm/tIMISYWDiYEIx5CJzxkVAK3/UkCtyoCClFeKg4MvgIEDyIb/VABAvn96uMBArAcIQ8EAr0NDiRcAAMAK//rBmAEOgADACQARQAhQBAmBQMcDy88C3I8DwIDBnIPAC8rMhE5KzIRMxEzMzAxQRUhNSEzHgIVFA4DIyIuAjU1MxUUHgIzMj4DNSYCJTMGAgcUHgMzMj4CNTUzFRQOAiMiLgM1NDY2BmD5ywRv7iZBKBs5XIRZWI1jNa8eNkcqJTcmGAsETPwh7jtOAwsYJjckKkg1HrA1Y45ZWINdORsoQgQ6srI+nbxwX66TbDxEhMB91OJWdkohKUpjdD6HAQR8fP78hz50YkspIUp2VuLUfcCERDxsk65fcLydAAADACT/8QW7BbAAGwAfACMAIUARHyMYBQUOIiMeCHIjAnIOCXIAKysrETMSOS8zETMwMUE1PgIzMhYWFRQOAiMnMj4CNzQmJiMiBgYTESMRIRUhNQI4NoCDOKHugzx+yY8BVm49FwFDgF5DeHIt+gLr+5MCbsoTHxNmy5ZepHxHvSpIXDFSdD4PHgMs+lAFsMjIAAIAZ//sBO4FxAADACwAHUAOAwICCR0ZFANyKQQJCXIAK8wzK8wzEjkvMzAxQRUhNQEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAzMyNjYDWf2uAur8DIn2sIfZmVJTnNyJr++GD/sKQ4FqVYFXLBozUG1Ga4VFA0DHx/6aj+B/YLT+nXid/rVhgOKTX4dHQX21dHpZlnlVLESEAAADAC0AAAg4BbAAEQAVAC4AJ0ATJCEhCS4WFgAKCQhyFBUVIwACcgArMjIRMysyEjkvMxEzETMwMUEzAw4EIyM1Nz4ENwEVITUBITIWFhUUDgIjIREzESEyNjY1NCYmIyEBZPojCCdFaJFhQCc1TTcjFQUDAP1MAyYBbqbrfUeHw3395fsBIF97Ojp7X/6SBbD9LZ/yrG0zxwMEK1WIxIMCk8jI/e540oVkqX1FBbD7F0x5RUN4SwAAAwCZAAAIQgWwAAMABwAgACNAEQggIAMCAgYVBwJyFhMTBghyACsyETMrMhE5LzMzLzMwMUEVITUTESMRASEyFhYVFA4CIyERMxEhMjY2NTQmJiMhBFT9AT76BC4BbabrfUeIwn395foBIV97Ojp7X/6TA0HGxgJv+lAFsP3UdMiDY6V6QwWw+xtHc0JBcEUAAwAtAAAFwwWwABUAGQAdAB1ADhkBGAYRERgcHQJyGAhyACsrMhE5LzMRMzIwMWEjETQmJiMiDgIHNT4DMzIWFhUBESMRIRUhNQXD+j9/Xy5maGAoKFxlaDOl8IL82/sC6vugAcRndDAIDxUNyAwVDwhfzaYD7PpQBbDIyAAAAgCP/pkFCwWwAAcACwAXQAsJBgECcgsDAwAIcgArMhI5KzIvMDFzETMRIREzESURIxGP+wKG+/5K+wWw+xcE6fpQu/3eAiIAAgCQAAAEugWwAAUAHgAhQBAGHh4EAhMTBQJyFBERBAhyACsyETMrMhEzETkvMzAxQRUhESMREyEyFhYVFA4CIyERMxEhMjY2NTQmJiMhBC/9W/quAW6m7HxGiMN9/eT8ASBfejs7el/+kgWwyPsYBbD90W/IhWSmeUIFsPsXR3RFQ25CAAAGACb+mgXUBbAAAwAHAAsADwATACUAJ0ATCxERIAMDBx4Icg4PDxAUAnIJBQAvMysyMhEzKzIyETMyETMwMWUVITUzESMDIQMjEQMVITUhESMRITMDDgUHIzUzPgM3BRL7zz7wCQWuD+x3/WADYPr9aPsjCCo7SlRXKoZBG0I/MAnHx8f90wIt/dQCLATpyMj6UAWw/bKM4LGHYkUXxxlfm+aiAAUAFQAAB6IFsAAFAAkADQATABcAJ0ATFhEJAwMAAA8PFAwICHIOCgECcgArMjIrMjIyLzMRMxEzMzMwMUEBIQEhBycBIQEBESMRIQEhJyEBEwE3AQJO/eUBMQFjAQYj3/6C/sgB+wJO+gQh/en+qSMBAQFeF/6IvAH0AnYDOv2f2SD9agNAAnD6UAWw/MbZAmH6UAKWqvzAAAACAEn/7ASCBcQAHgA+ACNAEQAgAgI+PhU0MCoJcg8LFQNyACsyzCvMMxI5LzMSOTkwMUEjNTMyNjY1NCYmIyIGBhUjND4CMzIeAhUUDgIlMzIeAhUUDgIjIi4CNTMUFhYzMjY2NTQuAiMjAofKrl10NTt6YEh2RftRjblneMKMSkWAs/7Jynm8gkRRlMl4Yb2ZXPxHfVNfhUclSGpFrgK6jzdjQjtiOzReQF+Xajk1aJtmS4RkOVcyYI1bZp9uODFnoHA+Zz08aEE+WzkcAAEAkgAABQ0FsAAJABdACwUABgIIAnIEBghyACsyKzISOTkwMUEBMxEjEQEjETMBjAKG+/v9evr6AZkEF/pQBBj76AWwAAADACwAAAUPBbAAAwAHABkAGUAMEgURCHICAwMECAJyACsyMhEzKzIyMDFBFSE1IREjESEzAw4EIyM1Nz4ENwRP/UYDevv9T/kjByhEaJFhQCc1TTYkFQUFsMjI+lAFsP0tn/KsbTPHAwQrVYjEgwAAAgAy/+sE4QWwABMAGAAaQA4XFgAVBAgCGAJyDwgJcgArMisyEhc5MDFBASEBDgMjIiYnNxYWMzI2NjcDARMHAQJaAXIBFf4GGD1WelcXQQ8CDDkNOkQpEMsBbkjD/fsB+wO1+1g3Z1AvBALFAgInQygEbPza/voHBDMAAAMATv/EBhgF7AAVACkALQAbQAwfDAwrFgAAKyoDcisALysROS8zETkvMzAxQSEyHgIVFA4CIyEiLgI1ND4CFyIGBhUUHgIzITI2NjU0LgIjAxEjEQKkAR6B2aJaWqLZgf7igNqjWVmj2oBwolcyXoZTASBvoFcxXYRUGPEFJ1ad24aE2p1UVJzZhIbbn1bIX7J9XJBkNl+weV2TZjYBjfnYBigAAgCO/qEFvQWwAAUADQAZQAwMBwJyBQQECQYIcgEALysyMhEzKzIwMWUDIxEjNQURMxEhETMRBb0T54L8TfwChfzJ/dgBX8nJBbD7FwTp+lAAAAIAkQAABO0FsAAVABkAF0ALFwYRERgAAnIYCHIAKysROS8zMjAxUzMRFBYWMzI+AjcVDgMjIiYmNQEzESOR+z5/Xy5mZ2AoJ11kaDOl8IIDYfv7BbD+PWd1MAgPFQ3HDBYPCF/OpgHD+lAAAAEAlQAABwUFsAALABlADAUJBgICCwACcgsIcgArKxEzETMyMjAxUzMRIREzESERMxEhlfwBwvoBvvr5kAWw+xcE6fsXBOn6UAAAAgCV/qEHsQWwAAUAEQAdQA4MBQgIBBEIcg8LBgJyAQAvKzIyKzIyETMzMDFlAyMRIzUBMxEhETMRIREzESEHsRPdgvpW/AHC+gG++vmQv/3iAV+/BPH7FwTp+xcE6fpQAAACABUAAAXWBbAAAwAcAB1ADhESDwQcHA8AAQJyDwhyACsrMhE5LzMRMzIwMVM1IRUTITIWFhUUDgIjIREzESEyNjY1NCYmIyEVAexYAW6m635IiMN8/eX7ASBfejs7el/+kgTwwMD+kW/IhWSmeUIFsPsXR3RFQ25CAAIAmQAABlQFsAAYABwAHUAOGhkOCwAYGAsMAnILCHIAKysROS8zETMyMzAxQSEyFhYVFA4CIyERMxEhMjY2NTQmJiMhAREjEQFGAW+m631HiMN8/eT7ASFfejs7el/+kQUO+wOBb8iFZKZ5QgWw+xdHdEVDbkIC9vpQBbAAAAEAkAAABLoFsAAYABlADA4LABgYCwwCcgsIcgArKxE5LzMRMzAxQSEyFhYVFA4CIyERMxEhMjY2NTQmJiMhAT4BbqbsfEaIw3395PwBIF96Ozt6X/6SA4FvyIVkpnlCBbD7F0d0RUNuQgACAGP/7AToBcQAAwAsAB1ADgMCAh4JBSkJchkVHgNyACsyzCvMMxI5LzMwMUEVITUBMx4CMzI+AjU1NC4DIyIGBgcjPgIzMh4CFRUUDgIjIiYmBFD9n/51+gtFhWxXf1IoHDlTbkRpgkIL+g+G766J25xTUZrYhrH1iAM7yMj+n2CEREaBs296XZl2USpHh1+T4oBhtf6deJ3+tGB/4AAABACh/+wHDAXEAAMABwAdADMAI0ATLwcGBg4kGQMCcgIIchkDcg4JcgArKysrETMSOS8zMjAxQREjEQEVITUFFRQCBgYjIiYmAjU1NBI2NjMyFhYSBzU0LgIjIg4CFRUUHgIzMj4CAZz7Aiv+igW2VqDdiIXeolhYoN6FiN6gV/swWoRUUoJbMDBdglJVglovBbD6UAWw/XHAwCFQpf76uGFhuAEGpVClAQW5YWG5/vv1Unq7f0FBf7t6Unq8gUFBgbwAAAIAFwAABFgFsAAWABoAH0APFxYWAAAJDAwZCHIOCQJyACsyKzIREjkvMxI5MDFBIScmJjU0NjYzIREjESMiBhUUFhYzIQUBIQEDqf5vY6WwgO2iAen87YyIPXlaAT7+zv6u/vIBVgIiKTTUoZDGZvpQBOiIeFJ1P1D9bgKSAAMAWv/rBD8GFAAWAC8ARAAZQAw6IjAXFyIAAXIiC3IAKysROS8zETMwMUEzFA4CBw4DFxUHNTQSNjY3PgIDMh4CFRUUDgIjIi4CNTUmNjY3PgIXIgYGFRUUHgIzMj4CNTU0LgIDI8MxX4tbVIdbKAi/RoGzbktkMalsqHQ9QoC5d3a6gEIBGSQOMoivPVpxNR49Y0RFYT0dHT5iBhRZc0ksEhJNidaaRBFEvwEcw3QWECE1/hdLhrZrFnC+jU9Sk8Z1FhUoLh5lmFa/VYxSFkN4WzQ0W3hDFj5uVTIAAAIAjwAABDgEOgAbADMALUAWAgEbKykpKAEoASgPDRAGch4dHQ8KcgArMhEzKzIROTkvLxEzEjk5ETMwMUEhJyEyNjY1NC4CIyMRIxEhMh4CFRQOAgcDITchMjY2NTQmJiMhNyEXHgIVFA4CAor+pgIBHEZbLBo1TzTF8QG2aKd2PytUek83/mBgAUBAVCkoU0L+7QIBR0VniEQ5b6ABz6ocOSkiMyEP/IQEOiRKcUwyWEQrBf3vviA9Kis+IapCB0pwQkx0TScAAQCDAAADTAQ6AAUADrYCBQZyBApyACsrMjAxQRUhESMRA0z+KPEEOsD8hgQ6AAMAJ/6+BMIEOgAPABUAHQAhQBAdGAkWFhsTCApyFRAQAAZyACsyETMrMjIyETMvMzAxQTMDDgMHIzU3PgM3EyERIxEhASERIxEhESMBQPEMBUJqhUlHIis/LBkETAKu8P5C/qgEmvH9S/UEOv6Dpu6jaB6+Ai5dcZhpAX37xgNu/VL9/gFC/r4AAAUAIAAABmsEOgAFAAkADQATABcAMEAXFRAQABYREQkDAwYAABQHDBITDQ0CBnIAKzIRMz8zMzkvMzMRMzMRMxEzETMwMUEBIRMzBycBIQEBESMRIQEhJzMTEwE3AQHj/lABKPzTH67+6/7YAYgCE/ADi/5Q/tcg1PwT/uq7AYYBtQKF/lbbI/4oAmEB2fvGBDr9e9sBqvvGAdiJ/Z8AAgBO/+wDxwRNAB0AOwAjQBEAHwICOzsUMi4pC3IPCxQHcgArMswrzDMSOS8zEjk5MDFBIzUzMjY2NTQmJiMiBgYVIzQ2NjMyHgIVFA4CJTMyHgIVFA4CIyImJjUzFBYWMzI2NjU0JiYjIwI80KhATSEhTkM3VzLxc8J0Y55vOzRii/7a0GCUZDNBd6RjbMuD8TJeQkRWKipWQagCBXoiPSkkQSokQCplkk4pT3VNN2JLKkYlSGlETHlULEiXdSlILStHKDZCHwABAIQAAAQPBDoACQAXQAsFAAYCCAZyBAYKcgArMisyEjk5MDFBATMRIxEBIxEzAXUBqfHx/lfx8QFgAtr7xgLb/SUEOgAAAwCPAAAEZQQ6AAMACQANAB9ADwwHBwsGBgIJAwZyCgIKcgArMisyETkvMzMRMzAxQREjESEBISczARMBNwEBgPEDs/4Z/u0gyQEkE/66vgHFBDr7xgQ6/XXaAbH7xgHYif2fAAMAIAAABBAEOgADAAcAGQAZQAwSBREKcgIDAwQIBnIAKzIyETMrMjIwMUEVITUhESMRITMDDgQjIyc3PgQ3A1P98ALN8f3p7h0GIzpUcEZLASYlNicZDwQEOsDA+8YEOv3pd7WBUCbGAwMhPmKGWQADAI8AAAVwBDoABgAKAA4AG0ANAAkMBgEKBnILAwkKcgArMjIrMjIyEjkwMUEBMwEjATMjESMRAREzEQL/AULR/j+k/kDRPvED7/IBJAMW+8YEOvvGBDr7xgQ6+8YAAwCEAAAEDQQ6AAMABwALABtADQkGCAMCAgYHBnIGCnIAKysROS8zMhEzMDFBFSE1ExEjESERIxEDX/3QRvEDifECdr6+AcT7xgQ6+8YEOgADAIQAAAQPBDoAAwAHAAsAGUAMCQYIAgMDBwZyBgpyACsrMhEzMhEzMDFBFSE1MxEjESERIxEDUv3qOfEDi/IEOsDA+8YEOvvGBDoAAgAjAAAD1QQ6AAMABwAQtwMGBwZyAgpyACsrMjIwMUERIxEhFSE1AnLyAlX8TgQ6+8YEOr6+AAAFAFP+YAWBBgAAFgArAEIAVgBaACdAFScGBkkeERFSMz4LcjMHclgAclcOcgArKysrETMzETMyMhEzMDFBFRQOAiMiLgInET4DMzIeAwc1NC4DIyIGBgcRHgIzMj4CJTU0PgMzMh4CFxEOAyMiLgI3FRQeAjMyNjY3ES4CIyIOAgERMxEFgTNkk2FVflY0DAwzV3xVTn5gQCHxECE0STBBVSsGBy1UQTxTNRj7wyBBYH5OVHpVMwwLNFR8VWCUZDPxFzJSPEJULQcGLFRCPFMzFwEo8gIQFXPBjk46aY9WATlcmXA9N2WNsHoVP3JfRycrTTL+VipAJTNcekcVZbCNZTc9cJlc/tNYlGw8To7BiBVHels0KEYtAZ4yTSs8aYv8Ageg+GAAAAIAhP6/BKIEOgAHAA0AG0ANBgEDDQwMAApyAQZyCQAvKysyETMyETMwMXMRMxEhETMRNwMjESM1hPEBqPKTE92CBDr8hgN6+8a//gABQb8AAgBgAAAD4QQ7AAMAFwAXQAsPFAkJAQAGcgEKcgArKxE5LzMyMDFBESMRExUOAiMiJiY1ETMRFBYWMzI2NgPh8YssbXg9j89v8DFiSj5ubAQ6+8YEOv4hvxMfE1i3jQFI/rhRYCoRHgABAIQAAAYGBDoACwAZQAwFCQYCAgsABnILCnIAKysRMxEzMjIwMVMzESERMxEhETMRIYTxAVfzAVbx+n4EOvyGA3r8hgN6+8YAAAIAff6/BrsEOgAFABEAHUAODAUICAQRCnIPCwYGcgEALysyMisyMhEzMzAxZQMjESM1ATMRIREzESERMxEhBrsT3YL7NPEBWPIBV/H6fb/+AAFBvwN7/IYDevyGA3r7xgAAAgAgAAAE8QQ6AAMAHAAdQA4REg8cBAQPAgMGcg8KcgArKzIROS8zETMyMDFBFSE1ASEyFhYVFA4CIyERMxEzMjY2NTQmJiMhAir99gHcAT6Nw2c6cKRp/iHy7UhWJydWSP7CBDrAwP6oXqdrT4dkOAQ6/IUyUC0uUjQAAAIAjwAABc8EOgAYABwAHUAOGhkOCxgAAAsMBnILCnIAKysROS8zETMyMzAxQSEyFhYVFA4CIyERMxEzMjY2NTQmJiMhAREjEQEvAT+MxGc6caNp/iHy7UhWJydWSP7BBKDxAuJep2tPh2Q4BDr8hTJQLS5SNAIY+8YEOgABAI8AAAQlBDoAGAAZQAwOCxgAAAsMBnILCnIAKysROS8zETMwMUEhMhYWFRQOAiMhETMRMzI2NjU0JiYjIQEvAT+MxGc6caNp/iHy7UhWJydWSP7BAuJep2tPh2Q4BDr8hTJQLS5SNAAAAgBQ/+sD6AROACcAKwAdQA4rKioJHRkUC3IEAAkHcgArMswrzDMSOS8zMDFBIgYGFSM0NjYzMh4CFRUUDgIjIiYmNTMUFhYzMj4CNTU0LgIBFSE1AgA4XTfkd8R1d7Z8P0B8tXZ+xG/kNFw9Q146Gho5XwEO/kkDji9TOGqrZVWWxXAjcMSXVWi3eT1iOTxkf0EjQ35kO/7oo6MABACS/+wGNgROAAMABwAdADMAI0ATJAMCAhkvDgcGcgYKcg4HchkLcgArKysrETMSOS8zMjAxQRUhNRMRIxEBNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgIC+f28zvEBtUSCunZ4u4JERIG7d3e6g0TyHkBkRERjQB8fQGRFQ2NAHgKFwMABtfvGBDr91xd1yZVTU5XJdRd1yJVTU5XIjBdJgmI4OGKCSRdIgWQ5OWSBAAACAC4AAAPgBDoAAwAdAB1ADgESEhMTAwkEBnIHAwpyACsyKzISOS8zEjkwMUEzASMBIREjESMiBgYVFBYWMyEVISIuAjU0PgIBYPr+zfkB4gHQ8OBEWConUz8BPv7CZJ5uOjxxowIR/e8EOvvGA3wvSycnSC6wM1t7SUt+XjMAAAT/1/5LA/oGAAARABUALAAwAB1AEDAvKBwHchUAchQKcg0GD3IAKzIrKysyzDIwMUEzERQGBiMiJic3FhYzMjY2NQERIxETJz4DMzIeAhURIxE0JiYjIg4CARUhNQMI8lWebyM+Ig4TOxYpOh7+YvDGTgE9b5xfUIFeMfItVj5BY0IhATf9YAHO/fR5qFYHCrsGBitSOgY++gAGAPxFAXC+jU0sYZtv/UkCuU5cKTRadgLOpqYAAgBS/+wD9QROAAMAKwAbQA0EDQMCAg0hGAdyDQtyACsrMhE5LzMRMzAxQRUhNQEyNjY3Mw4CIyIuAjU1ND4CMzIWFhcjLgIjIg4CFRUUHgICpf4oAW07XzsD4wN4xXh8uXo8PHu4e4HFcAPjAzVfQklhNhYWN2ACaKOj/kQvVDdprGVVlsRwI3DFllVnt3k8YTo7ZX1DI0N+YzsAAwAdAAAGnwQ6ABEAFQAuACVAEhYuLgAkISEKCQpyFBUVIwAGcgArMjIRMysyMhEzETkvMzAxQTMDDgQjIyc3PgQ3ARUhNQEhMhYWFRQOAiMhETMRMzI2NjU0JiYjIQEF7h0GIjtUb0dLASckNiYaEAMCTf3/Am0BPo3EZjpwo2r+IvHtSVYnJ1ZJ/sIEOv3pd7WBUCbGAwMhPmKGWQHOwMD+h1qeZkyCYDUEOvyEMUwqKUgsAAADAIQAAAayBDoAAwAHACAAJUASFRYTEwYIAyADAgIGBwZyBgpyACsrETkvMzMRMxEzETMyMDFBFSE1ExEjEQEhMhYWFRQOAiMhETMRMzI2NjU0JiYjIQNf/dBG8QM3AT+NxGc6caRp/iLx7UhXJydXSP7BApy+vgGe+8YEOv6HWp5mTIJgNQQ6/IQxTCopSCwAAAP/6AAAA/oGAAADABoAHgAZQA0eHRYKB3IDAHIRAgpyACsyKysyzDIwMUERIxETJz4DMzIeAhURIxE0JiYjIg4CARUhNQFq8MZOAT1vnF9QgV4x8i1WPkFjQiEBSP1gBgD6AAYA/EUBcL6NTSxhm2/9SQK5TlwpNFp2AtenpwAAAgCE/psEDwQ6AAMACwAXQAsABgYLCnIJBAZyAgAvKzIrMhI5MDFlMxEjATMRIREzESEB0vLy/rLxAajy/HXA/dsFn/yGA3r7xgACAIj/6wbPBbAAGAAwABtADiwfCXIUBwlyJhoOAAJyACsyMjIrMisyMDFBMxEUDgIjIi4CNREzERQeAjMyNjY1ATMRFAYGIyIuAjURMxEUHgIzMjY2NQMtyz9zml1ipntE+x42Sy1DYzgCp/t50IZZmXA/zB85Ti8/YDUFsPwAcKpyOTlyqnAEAPwAQWA/HjdwVwQA/ACVymY5cqpwBAD8AEFgPx43cFcAAAIAcv/rBgMEOgAYADEAG0AOLB8LchQHC3ImGg4ABnIAKzIyMisyKzIwMUEzERQOAiMiLgI1ETMRFB4CMzI2NjUBMxEUBgYjIi4CNREzERQeAjMyPgI1AsTEOWeOVFiUbDzyFys7JTlVMAJO8Wq7d1OJYzbEGC5CKSZALRgEOv1XaZ5qNTVqnmkCqf1XO1c4HDFmTwKp/VeMu181ap5pAqn9VztXOBwcOFc7AAAC/+EAAAQjBhcAFwAbACFAEA0KABcXChobGwoLAXIKCnIAKysROS8zETkvMxEzMDFBITIWFhUUBgYjIREzETMyNjY1NCYmIyEBFSE1AS4BPo3EZmbEjf4i8uxIVycnV0j+wgFv/UQDAGOrb2+vZQYX+qg2WDIwWTkCoKenAAADAJj/7QbTBcUAAwAsADAAIEARAwICLzACci8IHRQDcikJCXIAKzIrMj8rEjkvMzAxQRUhNQEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAzMyNjYBESMRBSj8EwSd+gyJ9bGH2JlSU5zciK7xhg77CUOCalSBVisZM05tRmuFRvvG+wNOwMD+jY/fgGGz/p15nf61YIDikl6GR0B8tXR7WJd3VC1EgwQ0+lAFsAAAAwCG/+wFugROAAMAKwAvACRAEwMCAi4vBnIuCiEdGAdyCAQNC3IAKzLMK8wzPysSOS8zMDFBFSE1ATI2NjczDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAgERIxEEgvyWAuc7YDoD4wN4xXh8uXo8PHu3fILEcAPjAzVfQklgNhcWN2D9wvECcaen/jsvVDdprGVVlsRwI3DFllVnt3k8YTo7ZX1DI0N+YzsDjvvGBDoABAAaAAAFGwWwAAQACQANABEAJEAREQ0MDAIABgYHAwJyDwUFAggAPzMRMysyMhEzETkvMzMwMUEBIQEzAQE3MwEBFSE1BREjEQLb/kT++wIGkwFj/kYskgIB/un9FgHq3QUj+t0FsPpQBSuF+lACZri4Sv3kAhwABAALAAAERwQ6AAQACQANABEAHkAOEQ0MDAEHAwZyEAUFAQoAPzMRMysyEjkvMzMwMUEBIwEzEwEDMwEDFSE1BREjEQIL/vf3Aam16P7yW7YBqcz9ZAGluQLN/TMEOvvGAs0BbfvGAcWpqUD+ewGFAAYArAAABzUFsAADAAgADQARABUAGQA0QBoJFBQGBhgVEREQEAMCAhgIFgJyBAoKCwcCcgArMjIRMys/OS8zMxEzETMRMxEzETMwMUEVITUBASEBMwEBNzMBARUhNQURIxEBESMRA4f9vwOv/kT++wIHkgFj/kYskgIB/un9FgHp3P1m+wJmt7cCvfrdBbD6UAUrhfpQAma4uEr95AIcA5T6UAWwAAAGAJoAAAYdBDoAAwAIAA0AEQAVABkALkAXFREREBADAgIYGQZyCRQUBgYYCgsHBnIAKzI/MxEzETMrEjkvMzMRMxEzMDFBFSE1AQEjATMTAQMzAQMVITUFESMRAREjEQMk/cMC+v739wGptej+8lq1AanL/WMBpbn96/IBxaioAQj9MwQ6+8YCzQFt+8YBxampQP57AYUCtfvGBDoAAAUAfgAABmcFsAAWABoAHwAkACgANEAZGRoaJBsfHyMjEygGBhMTARwkAnINJycBCAA/MxEzKzISOS8zETMRMxEzETMRMxEzMDFhIxE0NjYzITIWFhURIxE0JiYjISIGFQEVITUBASEBIwEBByMBAREjEQF5+3vmogHjoud6+jp1Wv4dhYMDk/zvAUIBnQEW/gCT/skBoCSS/f8C6voBYabGWFjGpv6fAWFibS1pkwRPycn9CgL2/JcDaf0DbANp/VH8/wMBAAUAgQAABV0EOwAXABsAIAAlACkAMEAXGhsbJSAkJBMpBgYTEwEdJQZyDSgoAQoAPzMRMysyEjkvMxEzETMRMxEzETMwMWEjNTQ2NjMhMhYWFRUjNTQmJiMhIgYGFQEVITUBASEBIwMBByMBAREjEQFy8W7QkQE+kM9w8jBiS/7CS2MwAvz9LwEgASwBCP5vh9cBMB+H/m4CcfGun79VVb+frq5hbSwsbWEDjaur/boCRf1aAqb9tVsCpv3s/doCJgAABwClAAAIrAWwAAMABwAeACIAJwAsADAAPEAeISIiJCwCcicrKxswDg4bGwMCAgUHAnIVLy8JCQUIAD8zETMRMysSOS8zMxEzETMRMxEzKzIyETMwMUEVITUTESMRASMRNDY2MyEyFhYVESMRNCYmIyEiBhUBFSE1AQEhASMBAQcjAQERIxEFAvxRTfsDGfp656EB5KLmevo6dVn+HIWDA5T87gFCAZ4BFv3+kf7IAaElkf3/Aun6AyfAwAKJ+lAFsPpQAWGmxlhYxqb+nwFhYm0taZMET8nJ/QoC9vyXA2n9A2wDaf1R/P8DAQAHAJAAAAduBDsAAwAHAB8AIwAoAC0AMQA+QB4lIiMjLS0HKCwsGzEODhsbAwICBgcGchUwMAkJBgoAPzMRMxEzKxI5LzMzETMRMxEzETMRMxEzETMzMDFBFSE1ExEjEQEjNTQ2NjMhMhYWFRUjNTQmJiMhIgYGFQEVITUBASEBIwMBByMBAREjEQTP/CGR8QLz8W7QkQE+kM9w8jBiS/7CS2MwAvz9LwEgASwBCP5vh9YBMCCH/m4CcfECYbW1Adn7xgQ6+8aun79VVb+frq5hbSwsbWEDjaur/boCRf1aAqb9tVsCpv3s/doCJgAAAwAo/kQDsQeHABcAQABJACtAFBgNDEBAACssCUVDQ0JIQYBHFwACAD8y3hrNMjkyETM/MxI5LzMzMzAxUyEyHgIVFA4CIyM1MzI2NjU0JiYjIRMzMh4CFRQOAiMjIgYVFBYWFwcuAic0NjYzMzI+AjU0LgIjIxMXNzMVASMBNX8BGXC4hUlIhLlxl5JfdDY3c1r+54KSgcmMSEmEtW05RT01SBxOVoVOAVWaajg9YkQjKExySo5tlZbP/ueX/ugFsDFhkV9Vh18zjDdhPjpcNf4kMmCNW2afbTk6LjFDKg2VGGCKV155OyI9VDE9XD4fBP6dnQv+6wEWCgAAAwAy/kwDiQYbABgAQQBKACZAEQ0ZDEFBAC1DSUZEQoBIGAAGAD8y3hrNMjIyOS8SOS8zMzMwMVMhMh4CFRQOAiMjNTMyNjY1NC4CIyETMzIeAhUUDgIjIyIGFRQWFhcHLgInNDY2MzMyPgI1NC4CIyMTFzczFQEjATV9ARZoq31EQnmpaJ+bUGIsGzdWOv7qf5t3uYBCQXmnYzFMPzJEGk1Jf1EBUZNkMjdYPSAiQ2E/l0KVls/+6Jj+6AQ6Jk1ySkFoSid9JUIrHTEjFP69JEZmQkx4VCw6LjFDKg2NGl6GU1lyOBYnNiAmOCYTBFGdnQv+6wEWCgADAGD/7AUZBcQAFwAoADkAH0ASDClqMiBqMjIMABhqAANyDAlyACsrKxI5LysrMDFBMh4DFRUUAgYGIyIuAzU1NBI2NhciDgIHBgYVISYmJy4DAzI+Ajc2NjUhFhYXHgMCvGy7lGo4VqDdiGq6lWw5WKHehUh5WTkJAQICwAEBAgk3WXlJTHpYNggBAf1BAQIBCjhaeQXEP3is3YRQpf76uGE/d63dhFClAQW5Yc00ZZZiDh8QDx8OY5VmNPvBNWqaZAsXCw8cDWKWZjQAAAMATf/sBDsETgAVACAAKwAfQBILIWonG2onJwsAFmoAB3ILC3IAKysrEjkvKyswMUEyHgIVFRQOAiMiLgI1NTQ+AhciDgIHIS4DAzI+AjchHgMCQ3e8gUREgbp3d7uCRESBu3Y7Wz8lBwIEBiZAWzo7Wz8mBv38BiVAXAROU5XJdRd1yJVTU5XIdRd1yZVTwCxOaDs7aE4s/R4rT2g9PWhPKwAAAgAQAAAE9QXDAA4AEwAZQA0OEggFEwJyBQNyEghyACsrKxEzETMwMUETPgIzFwcjIgYGBwEjAQETIwECk+ciWn5YKQEWHzEmDv6cvP7iAURavP4SAXwDBWyPRwHSHTks+5IFsPvO/oIFsAAAAgAeAAAEGgROABIAFwAVQAsXBnISFgpyDAUHcgArMisyKzAxQRM+AjMyFhcHJiYjIgYGBwEjAxMTIwECCnseVnJGHTQYFwQeDhcrIQr++qKmxkyi/pYBbAHCYn8/Bw68AgQZLB383wQ6/TL+lAQ6AAQAYP92BRkGLgADAAcAHwA3ACRAEAICJycDGgNyBwczMwYOCXIAK80zETN8LysYzTMRM30vMDFBESMRExEjEQEVFAIGBiMiLgM1NTQSNjYzMh4DBzU0LgMjIg4CFRUUHgMzMj4CAxu8vbwCuVag3YhqupVsOVih3oVsu5RqOPweO1VvRFKCWzEgPFZvQVWCWi4GLv5ZAaf6+P5QAbAB2lCl/vq4YT93rd2EUKUBBblhP3is3dRSYZ95UipBf7t6UmKfelMqQYG8AAAEAE7/hgQ8BLUAAwAHAB0AMwAkQBAHByQkBhkLcgICLy8DDgdyACvNMxEzfS8rGM0zETN8LzAxQREjERMRIxElNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgICm6yprP5iRIG7dne7gkREgrp2d7uCRPEeQGRFQ2NAHx9BY0REY0AeBLX+aAGY/HD+YQGf7Bd1yZVTU5XJdRd1yJVTU5XIjBdJgmI4OGKCSRdIgWQ5OWSBAAQAiP/rBsIHOwAVACAAQQBlADNAGVtOCXJUMTEsOAlyQkNDEQgIGxsWFiIhAnIAKzIyfC8zGC8zETMyETMrMjIvMysyMDFBMxUjIi4CIyIGFRUjNTQ2MzIeAgEnNjY1NTMVFAYGJRUiBgYVERQeAjMyNjY1ETMRFA4CIyIuAjURNDY2BTUyHgIVERQOAiMiLgI1ETMRFB4CMzI+AjURNC4CBUscHVaLcmAsMTyBfW46bW9//oBOISOiMUb+sTxbNR42Sy1DYzjLP3OaXWKme0R3zgMuYqd6RER6p2Jbm3M/yyA6UjEtSzYfHzZLBr+CJjAmNDYSJG9rJTIl/lc4KEgmX2YmT0CIyDt5Xv3uRmhDITdwVwGG/npwqnI5PHexdQISndJryMg8d7J1/e51sXc8OXKqcAGG/npBYD8eIUNoRgISRmhDIQAEAHX/6wXgBeIAFQAgAEIAZgAzQBlcTwtyVTIyLDkLckNERBEICBsbFhYiIQZyACsyMnwvMxgvMxEzMhEzKzIyLzMrMjAxQTMVIyIuAiMiBhUVIzU0NjMyHgIBJzY2NTUzFRQGBiUVIgYGFRUUHgIzMj4CNTUzFRQOAiMiLgI1NTQ2NgU1Mh4CFRUUDgIjIi4CNTUzFRQeAjMyPgI1NTQuAgTfHiBWi3FgLDA9gX1uO2tvf/6ETSEjoTFF/t8zTywXKjkjKEEvGrs2YoVQVpJrPGy8AqNamHA+O2ySV06FYza7Gi9BJyM7KhcZL0AFZoElMSUzNxIkb2slMiX+VTgoSSVfZiZOQXu/NW1V8T9dPR0cOFc7xcVpnmo1N26lbPGRw2K/vzdupG3xbKVuNzVqnmnFxTtXOBwdPV0/8UBdPB4AAwCI/+sGzwcQAAcAIAA4ACtAFTQnCXIFAgEBBwctIQgIFQJyHA8JcgArMisyETMzM3wvMxgvMzMrMjAxQSE1IRchFSMHMxEUDgIjIi4CNREzERQeAjMyNjY1ATMRFAYGIyIuAjURMxEUHgIzMjY2NQNP/rcDUQL+o60iyz9zml1ipntE+x42Sy1DYzgCp/t50IZZmXA/zB85Ti8/YDUGmHh4fmr8AHCqcjk5cqpwBAD8AEFgPx43cFcEAPwAlcpmOXKqcAQA/ABBYD8eN3BXAAMAcv/rBgMFsQAHACAAOQArQBU0JwtyBQIBAQcHLSEICBUGchwPC3IAKzIrMhEzMzN8LzMYLzMzKzIwMUEhNSEXIRUjBzMRFA4CIyIuAjURMxEUHgIzMjY2NQEzERQGBiMiLgI1ETMRFB4CMzI+AjUC3/7HAzAF/rGtG8Q5Z45UWJRsPPIXKzslOVUwAk7xart3U4ljNsQYLkIpJkAtGAU5eHh/gP1XaZ5qNTVqnmkCqf1XO1c4HDFmTwKp/VeMu181ap5pAqn9VztXOBwcOFc7AAIAZ/6OBLIFxQAhACUAGUAMFhINA3IlAAAkAQlyACvNMxEzK8wzMDFlFSIuAzURND4CMzIWFhcjLgIjIg4CFREUHgMzESMRApVlrYlgM0+Uzn6o8YIB+gE/f2NKdE4pGjNKYtr6ssc6bZi7awEQhuClWnTen2KEQz5wllf+7kZ+Z0so/dwCJAACAF3+iwP0BE4AHwAjABlADBURDAdyIAAAIgELcgArzTMRMyvMMzAxZRUiLgI1NTQ+AjMyFhYVIzQmJiMiDgIVFRQeAjMRIxECRXe2fD8/fLZ2fsRu4zNcPkReORsbOGDZ8avAVZbFcCNwxZZVZ7d5PGI5O2V9QyNDfmQ7/eACIAAAAQBwAAAEkAU+ABMACLEPBQAvLzAxQQMFByUDIxMlNwUTJTcFEzMDBQcDJs4BIUb+3bWr4f7fRQElzP7eRwEju6jmASVKAyr+lqx+qv7AAY6rfasBa6t/qwFJ/mqrfQAAAfxwBKX/NwX8AAcAFbcGBgQEAQICAQAvMy8RMxEzfC8wMUMhFSc3IScXyf3jqgECHgGpBSN+AepsAQAAAfx1BRf/awYVABUAErYBFBQPBoALAC8azDIzETMwMUEzMj4CMzIWFRUjNTQmIyIOAiMj/HUeUIFxbTtvf4M8Myxhc41XIAWZJTIla28kEjczJTElAAAB/YEFGf5zBmIABQAKsgCAAgAvGs0wMUEnNTMHF/4ko7gBOwUZw4aXcAAB/aYFGf6XBmIABQAKsgGABAAvGs0wMUEHJzcnM/6Xo046AbgF3MNCcJcAAAj6Jv7EAcIFrwANABsAKQA3AEUAUwBhAG8AAEEjNDYzMhYVIzQmIyIGASM0NjMyFhUjNCYjIgYTIzQ2MzIWFSM0JiMiBgMjNDYzMhYVIzQmIyIGASM0NjMyFhUjNCYjIgYBIzQ2MzIWFSM0JiMiBgMjNDYzMhYVIzQmIyIGEyM0NjMyFhUjNCYjIgb9hHFxYWJxcC02NSwCUHJxYWJycSw3NCy6cXFhYnFwLDc0LcVxcWFicXAsNzQt/cBxcWFicXAtNjQt/b9ycmFicXAtNjUssXFxYWJxcCw3NC2ncnFhYnJxLDc0LATzU2lpUyg9Pf7DU2lpUyg9Pf3hU2lpUyg9Pf3RU2lpUyg9Pf68U2lpUyg9PQTyU2lpUyg9Pf3hU2lpUyg9Pf3RU2lpUyg9PQAI+lH+YwGSBcYABAAJAA4AEwAYAB0AIgAnAABFMxcDIxMjJxMzATU3BRUlFQclNQEnNyUXARcHBScBBycDNwE3FxMH/cuJC3pglIgMemAB2Q0BTfoZDf6zBVdhAgFCRPtrYQL+wEUBXWIRlEEDxWIRlUI8Dv6tBgMOAVL8JosMfGKXiwx8YgEEYxCZRPwpYxGZRQQOYgIBRkX7VWMC/rtHAP//AJL+gAXXByUEJgDcAAAAJwChARkBPgEHABAEef/IABVADgIjBAAAmFYBDwEBAV5WACs0KzQA//8AhP6ABNoF2gQmAPAAAAAnAKEAkv/zAQcAEAN8/8gAFUAOAiMEAQCYVgEPAQEBfVYAKzQrNAAAAv/hAAAEIwZgABcAGwAaQAwaCxsCcgAXFw0NChIAPzMRMy8zK84zMDFBITIWFhUUBgYjIREzETMyNjY1NCYmIyEBFSE1AS4BPo3EZmbEjf4i8uxIVycnV0j+wgFv/UQDAGOrb2+vZQZg+l82WDIwWTkDb6amAAIAlAAABM8FsAADABsAI0ARAQIFAAMGBgUFEhATAnISCHIAKysyETkvMxEzMxEzMzAxQQEHAQMhNSEyNjY1NCYmIyERIxEhMhYWFRQGBgM3AZZp/mwT/oUBe2N6OTl6Y/7R+gIpqex9fO0D3v5BXwG+/qHHQHFJRXlK+xgFsHfRho3KbAAABAB9/mAELwROAAMACAAeADQAJUAUAAMwAQIwJRoPC3IHBnIaB3IGDnIAKysrKxEzMjIyETMzMDFBAQcBAxEjETMBFRQOAiMiLgInNT4DMzIeAgc1NC4CIyIOAgcVHgMzMj4CAr8BZ2n+mOfx3gLUN2ucZmWXaD8NDT9olmRmnmw28Rw8XUFAXD4iBwkkPVtAQVw7HAGq/l5fAaICH/r2Bdr97RV2yZVSS4q7cFF3woxMT5HLkRVLgWI3K0xlO8I3X0gpOGOCAAACAI8AAAQ3BxMAAwAJABVACgIGBgMJAnIICHIAKyvOMxEzMDFBESMRExUhESMRBDfx6f1b+wcT/d4CIv6dyPsYBbAAAAIAfQAAA2AFdwADAAkAFUAKAgYGAwkGcggKcgArK84zETMwMUERIxETFSERIxEDYPLZ/ifxBXf+AwH9/sPA/IYEOgAAAgCZ/sUEmgWwAAUAHQAZQAwGBwcTEgIFAnIECHIAKysyLzM5LzMwMUEVIREjERM1MzIeAhUUDgIjNTI+AjUuAyMEN/1c+qv+it2dVDp7w4lTajsYAS5ahlgFsMj7GAWw/M3GS5TZjnfOnFe3P2yHR2KSYzEAAAIAff7jA90EOgAUABoAG0ANAAEBCxcaBnIZCnIMCwAvMysrMhE5LzMwMVM1MzIWFhUUDgIHJz4CJzYmJiMBFSERIxHN8p71iylbj2ZZT2MvAQFMhlsBiP4n8QHKxm/VnjmJhWkbqRtTcERefkACcMD8hgQ6AP//ABX+mggMBbAEJgDaAAABBwJrBrkAAAALtgUbDAAAmlYAKzQA//8AIP6aBsQEOgQmAO4AAAEHAmsFcQAAAAu2BRsMAACaVgArNAD//wCZ/pgFfwWwBCYCRgAAAAcCawQs//7//wCP/poEwQQ6BCYA8QAAAQcCawNuAAAAC7YDEQIBAJpWACs0AAAEAJEAAAU4BbAAAwAHAA0AEQAvQBcPDg4LDAQEDAwLBwcLCwAQAwhyCAACcgArMisyEjkvMy8RMxEzLxESOREzMDFTMxEjATMRIwEhASEnIQc3ASGR+/sBV56eAfMBM/4e/hgiAZsItwHM/sIFsPpQBEv9OAQt/MDZs6r8wAAEAI0AAASsBDoAAwAHAA0AEQAtQBYPDg4LBAQMDAsHBwsLABADCnIJAAZyACsyKzISOS8zLxEzETMvETMRMzAxUzMRIwEzESMBIQEhJyEHNwEhjfHxAUyUlAGMASz+c/5CHwF0ELYBa/7LBDr7xgNT/aUDQv112rGJ/Z8ABAA0AAAGogWwAAMABwANABEAI0AREA8PCwoKAw4GCHINBwIDAnIAKzIyMisyEjkvMzMRMzAxQRUhNSERIxEhASEnMwETATcBAmD91ALV+gRn/a/+nSL6Aagz/iiiAmMFsMDA+lAFsPzC2gJk+lACmMH8pwAEADwAAAWkBDoAAwAHAA0AEQAjQBEQDw8LCgoDDgYKcg0HAgMGcgArMjIyKzISOS8zMxEzMDFBFSE1IREjESEBISczARMBNwECUP3sAoPxA7P+Gf7tIMkBJBP+u70BxQQ6wMD7xgQ6/XXaAbH7xgHYif2f//8AlP6aBdYFsAQmACwAAAEHAmsEgwAAAAu2Aw8KAACaVgArNAD//wCE/poEzQQ6BCYA9AAAAQcCawN6AAAAC7YDDwoAAJpWACs0AAAEAJQAAAePBbAAAwAHAAsADwAfQA8HBgYKAgMDDAsCcg0KCHIAKzIrMjIRMxE5LzMwMUEVIScRFSE1ExEjESERIxEHj/2Auvz8PvsEg/sFsMDA/aDHxwJg+lAFsPpQBbAAAAQAfQAABWsEOgADAAcACwAPAB9ADwcGBgoCAwMMCwZyDQoKcgArMisyMhEzETkvMzAxQRUhNwMVITUTESMRIREjEQVr/kMCV/3PRvEDivIEOsDA/jy+vgHE+8YEOvvGBDoAAgCX/sQH9QWwAAcAHwAZQAwICQkUBAcCcgYIcgIALysrMi85LzMwMUERIxEhESMRATUzMh4CFRQOAiMnMj4CNTQuAiMFE/v9evsECP6K3Z5TOnvDiAFTajsYL1qGWAWw+lAE6PsYBbD8zMZLlNmOd86cV7c/bIdHYpJjMQAABAB9/ucGtgQ6ABQAGAAcACAAI0ARHhcYGAABAQsdHAZyGwpyDAsALzMrKzIROS8zMhEzLzAxQTUhMhYWFRQOAgcnPgI1NiYmIwEVITUzESMRIREjEQNlASCk/ZApWpFlWU9iLwFRj2D+x/3pOfEDjPIBzcZu1p05ioRpG6gbVHBEXX5AAm3AwPvGBDr7xgQ6AAABAGf/6wXgBcUAQwAdQA45DAwjIgNyAAEBLhcJcgArMjIRMysyMhEzMDFlFSIkJgI1NTQ+AjMyHgIVFRQCBgQjIi4CNTU0PgIzFSIOAhUVFB4CMzI+AjU1NC4CIyIOAhUVFB4CBeDE/sDnfDxum15joXU/Z8D+9qKW9q9fR4O3bjZXPCA3aZVfb696QBkxRi0qQi4ZU6Hrr8RrxQEOo9N1x5VTVJrTfs6Y/vzCbWm8+pHBg+GnXs8+bpVXw2ewgklOirls4liCWCstV35S13bFkU8AAAEAYP/rBMwETwBDAB1ADjkMDCMiB3IAAQEuFwtyACsyMi8zKzIyETMwMWUVIiQmJjU1ND4CMzIeAhUVFA4CIyIuAjU1ND4CMxUOAxUVFB4CMzI+AjU1NC4CIyIOAhUVFB4CBMyq/vqyXC9We0tNflkvUZbPf3jEjk05aZBZITUmFSdKakJLeFQsDx4qGxwrHQ9DgbuNoFac0HmBW5pyP0V8pmB/c8WUUlebz3lOZq2ASMYCKUlkO1BPh2U3NV6AS4E0WUQmIj1UMYVXlGw8AP//ACb+mgUiBbAEJgA8AAABBwJrA88AAAALtgEPBgAAmlYAKzQA//8AH/6aBCUEOgQmAFwAAAEHAmsC0gAAAAu2AQ8GAACaVgArNAAAAwAp/qEGuAWwAAMACQARAB1ADgkNDQgKCHIFEAwCAwJyACsyMjIvKzIyETMwMUEVITUBAyMRIzUFETMRIREzEQPn/EIGjxPngvxN/AKG+wWwwMD7Gf3YAV/JyQWw+xcE6fpQAAMAJ/6/BToEOwADAAsAEQAfQA8CAwMNCgUGcggHBxAECnIAKzIyETMrMi85LzMwMUEVITUTETMRIREzETcDIxEjNQLq/T318QGp8ZMS3oIEO8DA+8UEOvyGA3r7xr/+AAFBv///AJH+mgWpBbAEJgDhAAABBwJrBFYAAAALtgIdGQAAmlYAKzQA//8AYP6aBKIEOwQmAPkAAAEHAmsDTwAAAAu2AhsCAACaVgArNAAAAwCBAAAE3gWwAAMAGQAdACNAEQMDCgoVAgIVFQQcCHIbBAJyACsyKxE5LzMvETMRMy8wMUERIxEBMxEUFhYzMj4CNxUOAyMiJiY1ATMRIwMNnf4R+z9+Xy5mZ2AoJ1xlaDOl8IIDYvv7BBD9JALcAaD+PWd1MAgPFQ3HDBYPCF/OpgHD+lAAAAMAdQAAA/cEOwADAAcAGwAjQBAAABgYDQEBDQ0FCnISBAZyACsyKzIvM30vETMRMxgvMDFBESMRAREjERMVDgIjIiYmNREzERQWFjMyNjYCjZ0CB/GKK214PY/PcPEwYks9cGoDLP2gAmABDvvGBDr+Ib8THxNYt40BSP64UWAqER4AAAIAiQAABOYFsAAVABkAGUAMARcGEREXGAJyFwhyACsrETkvMxEzMDFhIxE0JiYjIg4CBzU+AzMyFhYVASMRMwTm+z9+YC1mZ2EnJl1laDKm74P8nvv7AcNodDAIDxUNxwwWDwhfzqb+PQWwAAIACv/pBbQFxAAJADYAJUASBR0BAR0dBhwcCiQVA3IvCglyACsyKzIROS8zMxEzLxEzMDFTMxQWFjMVIiYmASIuAjU1ND4CFzIeAhUVITUhNTQuAiMiDgIVFRQeAjMyNjcXDgIKsjFkToO1XQPFnvGjUlic0HmJ0I1G/EMCwyFIdVROeVIqK12Xa36yNzAXaqUEOUdpOq9kufwsXKjmif+I4qVaAV6x+pqJviBPimg6P3CSVP9WmHJBMRnCDioiAAL/y//sBJAETgAIADUAJUASBBwBARwcBRsbCSMUB3IuCQtyACsyKzISOS8zMxEzLxEzMDFDMxQWMxUiJiYBIi4CNTU0PgIzMh4CFRUhNSE1LgMjIg4CFRUUHgIzMjY3Fw4CNaZobXqpWAMTeMCIR0mFs2l1rXQ5/LsCVwIbNVQ8PF0/ICdMbEVYhzKAI3GhA1xkdqFcqv0FT47Abyh/zpNOTo3CdWetEzBaRygzYIdUKEd5WjNGQHszXToAAwCR/rwE7wWwAAMACQAhACFAEAoGBgsIBwcXFgkDAnICCHIAKysyLzM5LzMzMxEzMDFBESMRIQEhJzMBATUhMh4CFRQOAiMnMj4CNTQuAiMBjPsES/2S/tYi3gGq/ecBBojenlQ6fMaLAVNqOhYtWYNUBbD6UAWw/MPfAl78ws1KlNqQc86fW75BbIRDYZFiMAADAI3+5wRBBDoAAwAJAB4AIUAQFhUJBnIGCgoHCwsBAwZyAQAvKxI5LzMzETMrLzMwMUERIxEhASMnMwEBNSEyFhYVFA4CByc+AjU0JiYjAX7xA7T+A/4fswE6/dIBI6P9kCpZkGZZT2IwUI9gBDr7xgQ6/XXaAbH9dsVlzZ05hYBnGqgaUWpCXXU4//8ALP6ABdYFsAQmAN0AAAEHABAEeP/IAAu2AyQGAACYVgArNAD//wAg/oAE2wQ6BCYA8gAAAQcAEAN9/8gAC7YDJAYBAJhWACs0AAABAJn+SwUTBbAAGQAZQAwZCHIXAgIRCgUAAnIAKzIvMzkvMyswMVMzESERMxEUBgYjIiYnNxYWMzI2NjURIREjmfoChftXoXAkPSQOFDgXKToe/Xv6BbD9ggJ++hh7qlgHCsMGBipROgKj/ZUAAAEAff5LBAcEOgAZAB1ADxkKchcCAgARCg9yBQAGcgArMisyEjkvMyswMVMzESERMxEUBgYjIiYnNxYWMzI2NjURIREjffEBp/JVn28iPSIOEzsUKjoe/lnxBDr+PAHE+4h5qFYHCrsGBitSOgH2/kgA//8AlP6ABeEFsAQmACwAAAEHABAEg//IAAu2AxYKAQCYVgArNAD//wCE/oAE2QQ6BCYA9AAAAQcAEAN7/8gAC7YDFgoBAJhWACs0AP//AJT+gAcsBbAEJgAxAAABBwAQBc7/yAALtgMbDwAAmFYAKzQA//8Aj/6ABjsEOgQmAPMAAAEHABAE3f/IAAu2AxkLAQCYVgArNAAAAQBV/+sFIwXEACwAG0ANGgsRFBQLJQADcgsJcgArKzIROS8zETMwMUEyBBYWFRUUDgInIi4CNTUhFSEVFB4CMzI+AjU1NC4CIyIGByc+AgJ3qAEArFhfp9+Bl+ebTwQg/NonVoxlWIhdLzBmpXeEvDswGHCuBcRlt/2Xe5f9t2MBXbH5mo/DIU+KZztKg61ie2Otg0syGMINLCEAAgBb/+sESwWwAAcAJQAfQA8FCAgEJSUAHBIJcgcAAnIAKzIrMhE5ETMzETMwMVMhFwEjNQEhATcyFhYVFA4CIyIuAjUzFBYWMzI2NjU0JiYjI5EDlwH+HKcBaf2KAQ2lpeh7TIu8cFuvj1T7PGxKVHY/RIZgiQWwof3XdwGL/nIJa82UZqBtOTFnoXA+Zz08aEFlfjsAAgBd/nUERwQ6AAcAJQAfQA4IBQUEJSUAHBgSBwAGcgArMi/MMxI5LzMzETMwMVMhFwEjNQEhATcyFhYVFA4CIyIuAjUzFBYWMzI2NjU0JiYjI44DkwL+I6kBYv2PAQ+hpel7TIm8b1qvjVTyPXBLVnhARYhiiQQ6mv3OdwGV/mYIasuTZp9tOTFnoW9AaT89a0Nmfzr//wAs/ksEhQWwBCYAsU4AACYCQJ8oAAcCbgEwAAD//wAj/kcDmgQ6BCYA7E4AACcCQP+W/3YABwJuAQL//P//ACb+SwVTBbAEJgA8AAAABwJuA8gAAP//AB/+SwRWBDoEJgBcAAAABwJuAssAAAABAE8AAAR5BbAAGAAStwMAAAsQDQJyACsvMzkvMzAxQSEVISIGBhUUFhYzIREzESEiJiY1ND4CAl4Bbf6TYHo6OnpgASD7/eWm7H1HiMMDmcdJdUNFeUwE6fpQeNGGZKd8QwAAAgBoAAAGrQWwABgALQAfQA4bCwsQJSUDAAAaEA0CcgArLzM5LzMzLxEzETMwMUEhFSEiBgYVFBYWMyERMxEhIiYmNTQ+AgEjNTc+Ajc2LgInMx4CBw4CAncBbf6TYHk6OnlgASH6/eWm7H1HiMMC54yMSVoqAgEIDxcP9BIfFAICcMwDmcdJdUNFeUwE6fpQeNGGZKd8Q/xnxgEBTHpFJ19mXyczhIU2j9JyAAMAX//pBnsGGAAWACsARwAdQBAzRAtyOy0Bch0SC3InBgdyACsyKzIrLysyMDFTNTQ+AjMyHgMXFQ4DIyIuAjcVFB4CMzI2Njc1LgMjIg4CBREzEQYWFjM+Azc2JiczFhYHDgMjBiYmXzdrnmdLeFxDKgoMPGOOX2WdbDfyGjlbQVJtPwsHJj9dPkFcORsBvvIBI0EsPFo/IQICIR7rGyoCAk+IrmJzqF8B+xV+0ppUMl6Eo2BDdL+LS06OwYgVR3lbMkd5TLU7aE0tO2mK9gSw+1A3VTABMl2DUmTLZGHLZ4vPiEQCTaoAAAIAPf/pBeQFsAAgAEYAIUAQKCcnAgEBDjJDCXI6DQ4CcgArMi8rMhE5LzMzETMwMUEjNTMyNjY1NC4CIyE1ITIeAhUUDgMHIgYGBwYGEzU1NCYmIzcyHgIVFRQWFjM+Azc2JiczFhYHDgMjBiYmAb/dqGh+Oh5BaEn+owFdf8OERCA+XHhLAwYHAygZzTZlRhKEsGktGjIiNVI4HwECIh71GisCAk+GrGBpmlYCZ8kzZkwwTTgdyTVpmWY4YVNBMRAWFQEJBP7NAkBHaTx3NF+BTUQnPCMBMV2AT2TLZGHLZ4rPiUQCQ5UAAAIAL//kBQEEOgAdAEIAJUASPj09GwIBAQ0qKiIzC3IMDQZyACsyKzIyLxE5LzMzMxEzMDFBISczMjY2NTQmJiMhJyEyFhYVFA4CBw4CBwYGBTUGFjM+Azc2JiczFhYHDgMjBi4CJzU0JiYjNzIWFhUBi/77ArpFVCgoV0X++gYBDIzEZiNFZUECBQUDIg8BXQEjMCxFMBoBAiEf6xosAgJFdZZTUHhSLQQkRTQli51BAaG4Ij4pLEUov0yQZjJSQDARAR8gAggDugEoNgEnR2VATaVNTaJQcKhvNwEaOl1BTCg5HoRBcUkAAAMASv62BD4FsAAfADQAPwAfQA46OT8sDA0CciEgIAEBAgAvMxEzETMrMi8zLzMwMUEhNTMyNjY1NCYmIyEnITIWFhUUDgMHDgIHDgIHNzIWFhUVFBYWFxUjLgI1NTQmJgEVFAYHJz4CNTUBqf7uzmV7Ojh4Xv7cAwEnouV4HTlWcEUCCAYDGhUQMSyqwlANHhz4HhwGOm4CY2ZUgRwuHAJdwDZnSUhqO8BivIg5YFJCMREBExIBBgkFA4FgqGx4IlRMGRcbYWAYdExuO/6KrWbXR0wtW2g/tgAAAwBz/qgEHAQ6AB4AMwA+AB5ADjggHx8CAQE+KwoMDQZyACsyPzM5LzMzETMvMDFBITUzMjY2NTQmJiMhJyEyHgIVFA4CBwYGBw4CBzcyFhYVFRQWFhcVIy4CNTU0JiYFFRQGByc+AjU1Adz+1etHWywsW0f+2wQBKWmmdT0mTG9JBAgEFw4MRTqTpUUIFBL5ExADLVgCLmZUgRwuHAGdryRCLC1IKb4uV3tONldGNBEBIAIECAcBe0qBU1YROzgQEBBEQw5UNEomxK1m10dMLVtoP7YAAAMAQv/rB30FsAARABUAMgAdQA4mJh4vCXIXFAAVAnILCAAvMysyMjIrMjIvMDFBMwMOBCMjNTc+BDcBFSE1AREzERQeAjMyPgI3NiYnMxYWBw4DIyImJgF5+iMHKERpkGFBKDRNNyMVBQLo/YUCPvsTJTMhOVc9IQECIR71GisCAlCIr2F2r2IFsP0tn/KsbTPHAwQrVYjEgwKTycn7uwRF+7spRDEaMluBUGTLZGHLZ4vPiERNqgADAD//6wZYBDoAEQAVADMAH0AQJyceLwtyFxQAFQZyCwgKcgArMisyMjIrMjIvMDFBMwMOBCMjJzc+BDcBFSE1AREzERQeAjMyPgI3NiYnNxYWBw4DIyIuAgEn7h0GIjtUcEZLASYlNiYaDwQCRv4VAanxFSg3Iy9IMhsBAiEd6hosAgJIeZ1XWJBoOAQ6/el3tYFQJsYDAyE+YoZZAc7Cwv0uAtL9LilGMhssUnNIX8BeAV3AYX+/fj4rXJAAAwCU/+kHfAWwAAMABwAjACBAERYWDh8JcggCcgADAwYIBAJyACs/OS8zKysyMi8wMUEhFSEDMxEjATMRFBYWMz4DNzYmJzMWFgcOAyMGJiYnAVEC9v0Kvfv7A3b7IT4sOVc9IQICIh70GysCAlCIr2F1qmAHAzLHA0X6UAWw+7s2Uy8BMVuBUGTLZGHLZ4vPiEQCTquJAAADAHT/6gZXBDoAAwAHACUAIkASGRkQIQtyCQZyAwICBQcGcgUKAD8rEjkvMysrMjIvMDFBFSE1ExEjEQERMxEUHgIzPgM3NiYnNxYWBw4DIwYuAgNB/eNC8gKh8hQoOCMvSDIbAQIhHeoaLAICR3qdV1mMZTkCfL+/Ab77xgQ6/S4C0v0uKUYyGwEsUXNIX8BeAV3AYX+/fj4BKlySAAEAXP/rBL8FxQArABVAChILA3IlJR0ACXIAKzIyLysyMDFFIi4CNRE0PgIzMhYXByYmIyIOAhURFB4CMz4CNzYmJzMWFgcOAgK7h9+iV1ei34d0rkM8QZFXU4RdMDBdhFNUdD0CAh0X9BQnAgKQ6BVdp+GFAQaF4addLCy1ISNBcpdV/vhWmHNBAT5yTlezVlaxWZrKYwAAAQBV/+sD6wROACsAFUAKIRoHcgcHAA8LcgArMjIvKzIwMWU+Ajc0JiczFhYHDgIjIi4CNTU0PgIzMhYXByYmIyIOAhUVFB4CAls8Qx0BCQrqCxEBAmmzcXzChERCf7l4YI0sLS54RkVhPhwfQmqsASQ/LDVzNTZwN3KWSVeXw2wqbMOWVyIfuhwePWV7Pio+fGU9AAIAIf/pBVcFsAADACAAF0ALFBQMHQlyBQIDAnIAKzIyKzIyLzAxQRUhNQERMxEUHgIzPgM3NiYnMxYWBw4DIwYmJgSh+4ABxPoTJDQgOlc9IAICIh30GysDAk+Ir2J1qmAFsMnJ+7sERfu7KUMxGwExW4FQZMtkYctni8+IRAJOqwACAET/6gTLBDoAAwAgABdACxMTCxwLcgUCAwZyACsyMisyMi8wMUEVITUBETMRFBYWMz4DNzYmJzMWFgcOAyMGLgIDz/x1AUXwJUUvL0gzGwECIR7qGiwCAkh5nVdYjWU6BDq/v/0uAtL9LjdVMAEjQl07S55LS5tOcKlvNwEqXJIAAgB9/+sE+wXFACAAPwAjQBEAIj8/AgIXNTEsA3IRDRcJcgArMswrzDMSOS8zEjk5MDFBMxUjIg4CFRQeAjMyNjY1MxQOAiMiLgI1ND4CBSMiLgI1ND4CMzIWFhUjNCYmIyIGBhUUHgIzMwKg3MBPeVIqLVd+UVyMTvphocdngdefV0mMzAFe3HbBi0tQltGBkvaU+02DUW2MQyJJclDAAxGMHDlbPjFTPyI9Zz5woWcxOW2gZluNYDJXOWSES2abaTVjt4BAXjQ7YjsyUDsf//8ALP5LBf0FsAQmAN0AAAAHAm4EcgAA//8AIP5LBQIEOgQmAPIAAAAHAm4DdwAAAAIAZARwAsYF1wAFAA8AErYFBQ0HAgIHAC8zLxDNMi8wMUE1EzMVAyU1MxUUFhcHJiYBi3LJ4v6AqCYqTU9cBIQUAT8V/sL5WlRCYidIKI3//wBQAg4CYQLOBAYAEQAA//8AUAIOAmECzgQGABEAAAABAJwCcASaAzEAAwAIsQMCAC8zMDFBFSE1BJr8AgMxwcEAAQB7AnAFzAMxAAMACLEDAgAvMzAxQRUhNQXM+q8DMcHBAAIACP5mA5cAAAADAAcADrQCA4AGBwAvMxrOMjAxQRUhNQEVITUDl/xxA4/8cf7+mJgBApiYAAEAZQQmAY8GGwAKAAixBQAAL80wMVM1NDY2NxcGBhUVZS1RNHgoMwQmiD+HeyxLP4tXiQABADcEBQFhBgAACgAIsQUAAC/NMDFBFRQGBgcnNjY1NQFhLVA0eSkzBgCNP4d7LUw+i1ePAAABADX+2wFhAM8ACgAIsQUAAC/NMDFlBxQGBgcnNjY1NQFhAS1QNHoqLs+GP4d7LUs/i1eIAAABAEsEBQF2BgAACgAIsQYAAC/NMDFTMxUUFhcHLgI1S88zKXkzUS4GAI9Xiz5MLXuHPwD//wBtBCYC3wYbBCYBhAgAAAcBhAFQAAD//wBEBAUCtQYABCYBhQ0AAAcBhQFUAAAAAgA1/sgCoQD+AAoAFQAMsxAFCwAALzLNMjAxZQcUBgYHJzY2NTUhBxQGBgcnNjY1NQFhAStONH4qLgIUAS1QNH4qMv61Qo+CLktElFy3tUKPgi5LRJRctwAAAgA/AAAEHQWwAAMABwAVQAoGBwcCAwJyAhJyACsrETkvMzAxQREjEQEVITUCpPECavwiBbD6UAWw/orExAADAF3+YAQ6BbAAAwAHAAsAHUAOCwoGBwcBAwoScgMCcgEALysrERI5LzMRMzAxQREjEQEVITUBFSE1AsHyAmv8IwPd/CMFsPiwB1D+isDA/IbAwAABAIoCBgJGA9cADQAIsQQLAC/NMDFTNTQ2MzIWFRUUBiMiJop3Zmd4d2dmeALaJ154eF4nXXd3//8Ajf/0A28A/QQmABIHAAAHABIBzwAA//8Ajf/0BSgA/QQmABIHAAAnABIBzwAAAAcAEgOIAAAAAQBeAfABcgLvAAsACLEDCQAvzTAxUzQ2MzIWFRQGIyImXklAQUpKQUBJAm83SUk3N0hIAAcAUP/rB2MFxQARACMANQBHAFkAawBvAClAE19WVjJoTU1EKSk7Mg0XDg4gBQUAPzMzLzM/MzMvMzMvMxEzLzMwMVM1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgE1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgU1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgEBJwFQSIdcYopJSYlhXYdJnx8/MDA+Hh8/MC8+HwJDSotfW39DQ39ZYItLqCFALTM9Gx8+MC8/HgE5RH9ZYYpJSYlgWoBEkCE/LjM9Gx8+MC8/Hv7p/Tl8AscES01TiFJSiFNNUYhSUoieTShILCxIKE0pSC0tSPxWTlKIUlKIUk5SiFJSiKBOKEgtLUcpTilILCxId05SiFJSiFJOUohSUoigTihILS1HKU4pSCwsSANS+45HBHIAAAIAbACLAjADqQAEAAkAEkAJAQUDCQIIBgYAAC8vFzkwMUEDJzUBAxMjATUCMPvJAR9W+6X+4QOp/m0BDQGF/nb+bAGGDQACAFUAiwIaA6gABAAJAA60AggIBQAALy85LzMwMXcTFxUBAzMBFQdV+8r+4aamAR/KiwGTAQ3+ewMd/nsNAQAAAQArAG4DbgUnAAMADrMAAwIBAHwvMxgvMzAxQQEnAQNu/Tl8AscE4PuORwRy//8ATAKQAqkFuwYHAeEAAAKb//8ANgKbAr8FsAYHAjoAAAKb//8AUAKQAq0FsAYHAjsAAAKb//8ATgKQArgFvQYHAjwAAAKb//8ANwKbAq0FsAYHAj0AAAKb//8ASwKQAqoFuwYHAj4AAAKb//8ARwKRAqMFuwYHAj8AAAKbAAIAUAKPAukFUQADAAcAFbcGBgICAwcHAwAvMy8RMxEzfS8wMUEVITUBESMRAun9ZwGdoAQ7l5cBFv0+AsIAAQBQA6YCowQ+AAMACLEDAgAvMzAxQRUhNQKj/a0EPpiYAAIAUAMdAqMEwAADAAcADLMCAwcGAC8zzjIwMUEVITUBFSE1AqP9rQJT/a0DtZiYAQuXlwABAFMBhAGzBjMAFQAMsxARBgUALzMvMzAxUzU0NjY3Fw4CFRUUHgIXBy4DU1qEPUUnSi8bLzkdRS5jVTUD0xGj85seeyd3s4ITZpduTxx4F2KVxwABAFABhAGwBjMAFQAMsxARBgUALzMvMzAxQRUUBgYHJz4CNTU0LgInNx4DAbBbgz1FJ0kwGy46HUUtY1Y1A+QRo/SZH3gmdLWHE2GVb1EdexZklcYAAAIAZwKMAwAFugAEABkAE7cWCwQECwIRAgAvMz8zLxEzMDFBESMRMxMHND4CMzIWFhURIxE0JiYjIgYGASa/lRMvJkloQlF2QMAhPSs8SiIFAf2LAyH+iQFUjmk6P4hs/gUBy0hUJT1lAP//AEz+iAKpAbMGBwHhAAD+k///AIL+lAIBAagGBwHgAAD+lP//AD3+lAKwAbQGBwHfAAD+lP//ADf+iQKpAbQGBwI5AAD+lP//ADb+lAK/AakGBwI6AAD+lP//AFD+iQKtAakGBwI7AAD+lP//AE7+iQK4AbYGBwI8AAD+lP//ADf+lAKtAakGBwI9AAD+lP//AEv+iQKqAbQGBwI+AAD+lP//AEf+igKjAbQGBwI/AAD+lP//AFD+qALpAWoGBwGcAAD8Gf//AFD/vwKjAFcGBwGdAAD8Gf//AFD/NgKjANkGBwGeAAD8GQABAFP96gGzAlcAFAAIsQUQAC8vMDF3NTQ2NjcXDgIVFRQWFhcHLgNTWoQ9RSdKLzBKJkUuY1U1FhGb5pIdeyRvqHkTfqZrJXcVXI26AAABAFD96wGwAlcAFAAIsRAFAC8vMDFlFRQGBgcnPgI1NTQmJic3HgMBsFuDPUUnSTAvSShFLmNVNTEQnemUHHgkbauBEnekbCN7FVuLuQAEAGIAAAR6BcQAAwAeACIAJgAiQBAiISUmJgEbFxIFcgkCAgEMAD8zETMrzDMSOS8zzjIwMWEhNSEBExYGByc+AjUDNDY2MzIWFhUjNCYmIyIGBgUVITUBFSE1BHr76QQW/XcXAUdRtiEjDRVzyoOLwmbyOFs1NlcyAUL9MALQ/TDHA0j9lGCXK0YIRV0pAnWKw2hmtXhLWSg2avGNjf73jo4AAAMAIwAABksFsAADAAcAEQAiQBADAgYLDhAHBw0RDgRyCg0MAD8zKzISOS85EjkzzjIwMUEVITUBFSE1AREjAREjETMBEQZL+dgGKPnYBVL6/XP7+wKPA8Sbm/7Jm5sDI/pQBBP77QWw++sEFQAAAwCZ/+wGQQWwABcAGwAtACNAEiIpDRwZGAZyAgEBDgwPBHIODAA/KzISOS8zKzLMPzMwMUEjNTMyNjY1NCYmIyMRIxEhMhYWFRQGBgEVITUTMxEUFhYzMjY3FwYGIyImJjUCI9vbY20qKm1jkPoBiqvdbGzdA2r9n6/xHTQiGS8OAR5PM1OASAIdyUp3QkF0SfsZBbB2zYKF0XgCHbCwAQn76DI1EgYDuAkOO4ZvAP//AJT/7Ag9BbAEJgA2AAAABwBXBHYAAAAGACMAAAYYBbAAAwAHAA0AEgAXAB0AKkAUHRUKChIGBwMCAhESBHITGxsIEQwAPzMzETMrEjkvM84yETMRMzMwMUEVITUBFSE1ARMTMwMDARMTIwEBExMzAQETEyMDAwYY+gsF9foLAcEYspMJvP7atRef/tkDuxix+v7Z/tm0FZu7BAQtmpr+wpqa/REBWwRV/qv7pQWw+6r+pgWw+lABXQRT+lAFsPuq/qYEXwFRAAIAfQAABh8EOgARACIAIEAPFhMTERQIFAgRChwPAAZyACsyMj85OS8vETMRMzAxUyEyHgIVESMRNC4CIyERIyEhETMRITI2NjURMxEUDgJ9Apddilos8hs0Si/+p/EDyv3U8QFaPlkx8UyEqgQ6LmKabf7CAT8/VDAT/IYC1/3pJF1VAqT9XWybYi4AAwBc/+wEMwXEACMAJwArAB1ADiorJyYmBxkSBXIABw1yACsyKzISOS8zzjIwMWUyNjcXBgYjIi4CNRE0PgIzMhYXByYmIyIOAhURFB4CExUhNQEVITUDTDZmLh06fkF7zZZTU5nRfz51Ox0sZzRNe1YtL1Z5aPzyAw788rIQEMgOEEiP1Y4BU5LblEoRDskPEi5dkmX+q2SNWSoC9YmJ/vSJiQADACMAAAXIBbAAAwAHAB8AKUATBgcDAgIUChQXCQoKFhcEchYMcgArKxI5fS8zETMREjkYLzPOMjAxQRUhNQUVITUBITUhMjY2NTQmJiMhESMRITIWFhUUBgYFyPpbBaX6WwLf/oUBe2J7OTl7Yv7S+wIpqO59fe4Eppub6pub/mPHQHFJRXlK+xgFsHfRho3KbAAAAwAqAAAEBAWwAAMAHAAgAC1AFR8gIBEDAgUGBhoCGgIaBBARBHIEDAA/KzISOTl9Ly8RMxEzETMRMxEzMDFBByE3AQEnMzI2NjU0JiYjITczMhYWFRQGBgcBFRMHITcEAzH8WDEB4/4JAe9deTw4emT++jbQsep1VsCfAcysMv0DMQRHsbH7uQJRlUNzR012Qshqyo99v3UO/d8NBbCxsQAABAAk/+0ESQWwAAMAFAAYABwAFUAJBAQDDwELDQMEAD8/MzMSOS8wMUERIxEBMxUUAgYGIyImJzcyPgI1AxUBNQUVATUB8PoCWPtXod6IRXo29VeEWi6D/VkCp/1ZBbD6UAWw/U9PpP76uGELCLlBfr17AnvC/vXCQML+9cEAAgBPAAAFEgQ6ABsAHwAYQAsIFRUeHwZyDgEeCgA/MzMrEjkvMzAxYSM1NC4DIyIOAhUVIzU0EjY2MzIeAxUBESMRBRLxIEBackVTh2E08luj3oVsu5ZsOf4X8rNjoXpTKkKAvXyzsaUBBrhhP3is3YQDifvGBDoAAgArAAAFMgWwABcAGwAaQAwZGAMAAA4MDwRyDgwAPysyEjkvM84yMDFBITUhMjY2NTQmJiMhESMRITIWFhUUBgYHFSE1AyD9CwLwZXw6Onpi/tL7Aimo7H5/7Y788wIfxz9yTER2S/sYBbB2z4aPy2xrx8cAAAQAbv/rBYoFxQAhADMARQBJACVAEkInMEdHOTANch8FDklJFg4FcgArMjIvEMwyKzIyLxDMMjAxQTMUBgYjIiYmNTU0NjYzMhYWFSM0JiMiBgYVFRQWFjMyNgE1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBhMBJwECB6hCgFxcgkVEgltdgEOoOz0pNhobNyk9OQEbSYphZIlHR4hjYotJqCFALTM+Gx8/MC8+H8D9OXwCxwQjRXZIUohRTVOIUkh3Ri1JLEkpTShILEz9HE5SiFJSiFJOUohSUoigTihILS1HKU4pSCwsSANS+45HBHIAAAEARf/rA48F9gAuABS3GRgYASQMAAEALzMvMxI5LzMwMWUVIi4CNRE0PgIzMh4CFRUUDgIEIzUyPgI1NTQuAiMiDgIVERQeAgLbdq9zOS5YfU5DcFMuSIzM/vehouqVRwsWHBEWIhcMFTJTwtdAd6dmAqZim2w4LVd6TSleyr2ZWbRnpr5WKyAyIREYMUgy/WE/YkYkAAQAkAAAB7wFwAADABUAJwAxACVAESswLioCAxsSJAkJMS4EKi0MAD8zPzMzLzPcMs4yERI5OTAxQRUhNQM1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgERIQERIxEhAREHkv2jKVWaaWuZVFOZamqbVagmUDw7TiYnTjw7Tyb+zP73/gvyAQkB9gIvj48B3lNnn1pan2dTZ55aWp66Uz1eNjZePVM8Xjc3XgEU+lAEE/vtBbD76wQVAAACAG8DlQRdBbAADAAUACRAEQkEAQMGCgcHExQCAAMDBgYRAC8zETMRMz8zMxEzEhc5MDFBEQMjAxEjETMTEzMRARUjESMRIzUD7ntAfG+JgoaE/aCJeI0DlQF1/osBdv6KAhv+gQF//eUCG17+RAG8XgACAJb/7ASRBE4AHQAmABdACiIXFwQeDgcbBAsAPzM/MxI5LzMwMWUXBgYjIi4CNTQ+AjMyHgIVFBQVIREWFjMyNgEiBgcRIREmJgQSAlS8Ym2+kFFZlrtiZ7OITf0AN4xOXbv+6EuNOQIcNIrGaDQ+WJrMc3TLmlhRksV1AxIa/rgzOzsDaUI4/usBHjQ9AP//AFv/9QXMBZoEJwHg/9kChgAnAZQA/wAAAQcCPgMiAAAAB7EGBAA/MDEA//8AVv/1BmoFtAQnAjkAHwKUACcBlAGoAAAABwI+A8AAAP//AF7/9QZbBagEJwI7AA4CkwAnAZQBjgAAAQcCPgOxAAAAB7ECBAA/MDEA//8AXP/1BhsFpAQnAj0AJQKPACcBlAE3AAABBwI+A3EAAAAHsQYEAD8wMQAAAgBh/+sERgX3ACkAPwAZQAwqAAASNR8LcgkSAHIAKzIrMhE5LzMwMUEyFhcuBCMiBgYHJz4CMzIeAhIVFRQOAyMiLgI1NTQ+AhciDgIVFRQeAjMyPgI1NS4DAjlWmTsKLUFTYjc1U08uICRXck1ssohcMCpUeZ1fd7mAQj56r41FYj4dHT1iREViPh4JJj1ZBAVCQE+HakomDBkSshEiFkiLyv7+nDtwyKR5QVCPwXIVa7eHSr8zWHE/FkN4WzQ/bpNUWhg8NSQAAAEApv8WBOgFsAAHAA61BAcCcgIGAC8zKzIwMUERIxEhESMRBOjy/aPzBbD5ZgXd+iMGmgADAD/+8wTDBbAAAwAHABAAH0AODgYGBwcPAnIMAwMKAgsALzMzMxEzKzIRMxEzMDFFFSE1ARUhNQEVASM1AQE1MwTD+9gD8/wKAvD9W6QCSv22pE6/vwX+v7/8sR38r5ECzwLLkgABAJwCcAPvAzEAAwAIsQMCAC8zMDFBFSE1A+/8rQMxwcEAAwA7//8EfAWwAAQACQANABZACgkLCwoECAgBAnIAKz8zLzMRMzAxZQEzASMDExcjAQc1IRUCKwF/0v4onWuzIJL+5IYBU+kEx/pPAwP94eQDA8LCwgAEAGH/6wfqBE4AFwAvAEcAXwAdQA5bNjYeEwtyTkNDKwYHcgArMjIRMysyMhEzMDFTNTQ+AjMyHgMXFQ4EIyIuAjcVFB4CMzI+Azc1LgQjIg4CBRUUDgIjIi4DJzU+BDMyHgIHNTQuAiMiDgMHFR4EMzI+AmFHg7hyaqV6VDYODjZUeqRpc7mDR+0jRmZCQWZNNB4EBB4zTWhCQWZFIwacR4S5cmqkelQ2Dg42VXqka3G5hEbtJEVlQUNnTTQeBAQeNE1mQkFmRiQCERdwx5lWT36SizIjMoyVgVBXmMeHF0qAYjY6W2JUFSMUUmBaOThigUgXcMeYV1CBlYwyIzKLkn5PVpnHhxdIgWI4OVpgUhQjFVRiWzo2YoAAAAH/p/5LAqgGFQAfABC3GxQBcgsED3IAKzIrMjAxRRQGBiMiJic3FhYzMjY2NRE0NjYzMhYXByYmIyIGBhUBjlWebyNAIhESLBYvQCFapnQmSycYEywfNUolTXmgTwgKugQII0s6BPF4pVQMCbUFBipPOQAAAgBlAQYEGAP5ABkAMwAbQAsXBIAKEUAxHoAkKwAvMxrdMhreMhrNMjAxUzU2NjM2FhcWFjMyNjcXBgYjIiYnJiYHIgYDJzY2MzYWFxYWMzI2NxUGBiMiJicmJgciBmYvhUFQYz87XkpBdy8BL3RBSl07P2RQQYkvAS+BQVBjPzteSkF8Ly93QUpeOz9kUEGEArfUMzkCKyAeJ0M80zM5Jx4gKwJE/iLUMjoCKyAeJ0M81DI6Jx4gLAJEAAADAI8AfwPzBL8AAwAHAAsAH0ANAgEBCgoLAAMDBwcGCwAvzjIRMxEzETMRMxEzMDFBAScBFxUhNQEVITUDkv3CbAI+zfycA2T8nASD+/w8BATtxsb+WMbGAAADAD0AAQOQBEsABAAJAA0AIkAQAwcGAAQIBgUJCQECAg0NDAAvM3wQzi8yMhgvMxc5MDFTBRUBNSUFBzUBExUhNfQClfy1A0v9a7YDSwf8rQLK3swBRIeU4R2GAUT8bri4AAMAfQAAA94EWAAEAAkADQAiQBADBwYABAgGAQICBQkJDQ0MAC8zfBDOLzIyGC8zFzkwMUElNQEVBSU3FQEFFSE1Ax/9XwNg/KACo738oANS/K0Cs93I/ryHmOEih/67c7m5AAACACUAAAPrBbAABwAPAB1ADgUICA4HEnIDCgoLAQJyACsyMhEzKzIyETMwMVMBMwcBARcjNwEBJzMBASMlAX+uKP7uARcdpj8BE/7rHqYBgP6CpgLXAtm1/dz927KxAiYCJLX9J/0p//8AnACqAbYFBgQnABIAFgC2AAcAEgAWBAkAAgBkAoQCMgQ6AAMABwAQtgYCAgcDBnIAKzIyETMwMVMRIxEhESMR+5cBzpcEOv5KAbb+SgG2AAABAEf/ZAFUAQAACQAKsgSACQAvGs0wMUEVFAYHJzY2NTUBVE1DfSQnAQBLV7w+Szh4TVT//wArAAAFGwYVBCYASgAAAAcASgJGAAAAAwAaAAAEHQYVABAAFAAYABtADxgGFwpyExQGcg0GAXIBCgA/KzIrMis/MDFhIxE0NjYzMhYXByYmIyIGFRcVITUhESMRAbLyacWIUJVQJTN8UW1n2f2PBAPxBICDtF4iGsQRH2NiRrCw+8YEOgADACsAAAQuBhUAEgAWABoAG0APGRoGchQAcg4GAXITAQpyACsyKzIrKzIwMWEjETQ2NjMyFhYXByYmIyIGBhUBETMRARUhNQHC8WG4gjSdqkdoXaBBQFguAXvx/nP9igSbe6hXDhULuRETK1E7+2UF5/oZBDqwsAAFACsAAAaaBhUAEQAVACYAKgAuACVAFCMcAXIuKhQVBnINBgFyLRcXAQpyACsyETMrMisyMjIrMjAxYSMRNDY2MzIWFwcmJiMiBgYVFxUhNQEjETQ2NjMyFhcHJiYjIgYVFxUhNSERIxEBwvFbqnQkRiEGFC8bN08p5f2EBAPxaMWIUJZPJTJ9UG1o2v2PBAPyBKJ5pVUJCboFBClOOWiwsPvGBICDtF4iGsQRH2NiRrCw+8YEOgAABQArAAAGmgYVABEAFQAoACwAMAApQBcrAHIkHAFyLhQULRUGcg0GAXIpFwEKcgArMjIrMisyMhEzKzIrMDFhIxE0NjYzMhYXByYmIyIGBhUXFSE1ASMRNDY2MzIWFhcHJiYjIgYGFQERMxEBFSE1AcLxW6p0JEYhBhQvGzdPKeb9gwQD8WG3gzSdqkdpXKBBQFktAXry/nP9igSieaVVCQm6BQQpTjlosLD7xgSbe6hXDhULuRETK1E7+2UF5/oZBDqwsAAABAAr/+wE0wYVAAMAFwAbAC0AJUAUIikLchMKcgkcHA0NBAFyGAIDBnIAKzIyKzIRMxEzKysyMDFBFSE1ATIWFxUjNSYmIyIGBhURIxE0NjYBFSE1EzMRFBYWMzI2NxUGBiMiJiY1AYz+nwIZdvBf8RlmMzVJJvFZpgL6/Z+v8R00IxkuDx5PMlR/SQQ6sLAB2z0q0FcNEypQOfteBKJ5pVX+JbCwAQn76DI1EgYDuAkOO4ZvAAAEAEn/7AaCBhQAGwAfADEAZwAxQBs7MkBkYFsLcgFFSUAHciYtC3IeEB8GchQKAXIAKzIrMjIrMisyzDIrzDMSOTkwMUEjLgI1ND4CMzIeAhUjNCYmIyIGFRQeAiUVITU3MxEUFhYzMjY3FQYGIyImJjUFNCYmJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4CFRQOAiMiJiY1Mx4CMzI2NgPBeCZYPjRlkFx7pF8o8ixSOldQHCMbArj9pKnyHTQiGS8PHk8zU4BJ/hUkZWJWj2Y4OmybYIjDaPErVkE+UScVMldCfLNgPXShZJPMaekEQ2U2QVguAvdrqpdNPWpQLURxiUVDWy9cPzxmZnf2sLBZ/Ks3PRgGA7gJDkSUeRgkOzAUEzVMaERCdlo0W5thK0svJz4lGysjHg4aUX9hSHdXMGmlWUNPIyM9ABUAWf5yB+wFrgAFAAsAEQAXABsAHwAjACcAKwAvADMANwA7AD8AQwBHAFcAcwCMAJoAqAAAUyMRIRUjISM1IREjASERMxUzBSE1MzUzASE1IQUhNSERITUhARUjNRMVIzUBITUhARUjNQEhNSEFITUhARUjNRMVIzUBFSM1BxEzERQGIyImNTMUFjMyNiUjJzMyNjU0JiMjESMRMzIWFhUUBgYHIgYHBhQHIzczMjY1NCYjIzczMhQXFBYxHgIVFAYBFRQGIyImNTU0NjMyFgc1NCYjIgYVFRQWMzI2ynEBNcQGs8cBNm/6Ef7LccQGXv7Kx2/+Uf7qARb84P7sART+7AEUBM9vb2/9MP7rARX8HXEEVP7rARUBkP7qARb6jXFxcQeTb+hca1BYbV04MCk2/cKWAXY7Ozs7XV+8Ql8zIkEvAQQCDA65MIk0MzM0dwGXDgwHKzoeaf6Ef2ZngYBmZ4BcSkFASktBQEkEkQEddHT+4/nhATvKcXHK/sVxcXEGV3T7dPn5AvL6+vpecQI/+fkEGHR0dPzu/PwBePr6/oj8/PMBev6GT1xRUy4tN3JGKScpHv4vAiUgQjQiOCQEEwEEAfRLLCcnL0YBBQETBCY5IkxPAUhwYXp6YXBhenrRcERPT0RwRU5OAAUAXP3VB9cIcwADAB4AIgAmACoAAFMJAgMzNDY3NjY1NCYjIgYHMzY2MzIWFRQGBw4CEzUjFRM1MxUDNTMVXAO8A7/8QXfKGSlEYqeVf7ECywI+Jzg5NSgvPR3Jyn8EBgQCgwPP/DH8MQLeMz4bJYFSgJd9jTcwQDQ0TRohOk7+u6qq/UgEBAqaBAQAAQA9AAACsAMgABwAELUDHBwLEwIAL8wyMxEzMDFlFSE1AT4CNTQmIyIGFSM0NjYzMhYWFRQGBgcHArD9nwEfKTEXODVAP7ZJh15fhUcwW0ONkZF6AQklPzQSKzdHM0l6SDpsTDddXDd2AAEAggAAAgEDFAAGACNAFQQFBQMDLwB/AAIPAF8ArwD/AAQAAQAvzV1xMhEzETMwMUERIxEHNSUCAbXKAWwDFPzsAkAxj3YAAAIATP/1AqkDIAARACMADLMXDiAFAC8zxDIwMUEVFAYGIyImJjU1NDY2MzIWFgM1NCYmIyIGBhUVFBYWMzI2NgKpTIhZW4hNTIhaWohNth02JiY1HR03JiY1HAHWmHCSR0eScJhwkkhIkv7urT1MJCRMPa0+TCMjTAAAAQBP//QDuASdADIAF0AKFB4eJgExCgwmfgA/Mz8zEjkvMzAxZTMyPgI1NTQuAiMiBgYVFBYWMzI+AjcXDgIjIiYmNTQ2NjMyHgIVFRQOAiMjARkTbJtkMR42SCo9WC4sWEMwTTcfAUcCWJdjfKpYasSFZqFzPFCh9KUVtCtYhVrYPVk8HTxlPTpgOB4xOh1EQ4BTY7BzcrtxQXuwcEmb76VVAAAEAFf/8APGBJ0AEgAiADQARAAdQA0oFxdBDg4FOTF+HwULAD8zPzMSOS8zMxEzMDFBFA4CIyImJjU0PgIzMh4CBzQmJiMiBgYVFBYWMzI2NhMUDgIjIi4CNTQ2NjMyFhYHNCYmIyIGBhUUFhYzMjY2A8ZDdqBefcd0QXefX1+hd0LyMlo7O1kxMVo8O1kx1T1ulVpalm49abp2eLlr8SpMNTRLKSlNNDVLKQE/U31UK0uWbkx3VS0tVXc5M0gnJ0gzM0knJ0kCOERvUSsrUW9EapFLS5F2LEMkJEEuLUQmJkQAAQA4AAADzgSNAAYADrUFAQZ9AwoAPz8zMzAxQRUBIwEhNQPO/f/+AgH9aASNhfv4A83AAAEAX//wA9gEmwAxABVACRYfHw4nCwMAfgA/Mj8zOS8zMDFBMxUjIg4CFRUUHgIzMjY2NTQmJiMiBgYHJz4CMzIWFhUUBgYjIi4CNTU0PgIC9CIQa6NvOR84TS09WjEvWUBAZTsCQQNYnmx9pVNqwoZoqHdAV6n2BJvEL2CSYqs+Xj8fN186PFozMUwqR0CDW2ixbHK1akF5q2tQmfGpWAABAGb/8APQBI0AIwAXQAohCQkCGRELBQJ9AD8zPzMSOS8zMDFBJxMhFSEHNjYzMhYWFRQGBiMiJiYnMxYWMzI2NjU0JiYjIgYBRcBKAsb+AiMbb0R9sl9ewZVvxH0G7ghsVEZWJzJiRlBRAg4uAlHD+gwgW6t5abVvTpZsS0Y3Xzw8XTQpAAIAMwAAA+0EjQAHAAsAFUAJAAEBCgQLfQoSAD8/MxI5LzMwMUEVIScBMwMBAREjEQPt/FAKAiq90P7bAi3xAbvAlwL7/q3+gQLS+3MEjQAAAgA9//ADwASdAB0APQAdQA0fAAAdHh4SNCoLCRJ+AD8zPzMSOS8zMxEzMDFBMzI2NjU0JiYjIgYGFSM0NjYzMh4CFRQOAiMjFTUzMh4CFRQOAiMiLgI1MxQWFjMyNjY1NC4CIwFrfkdcLSdTQzZVMvJzwXZhoHU+NmqYYKiobaJqNER9pmFUnX9L8jReQENcLiA7VTUCpylILytEKCA8KmWRTypUfFE7Z1AtN3MoTG9GUn9YLShVglosRigpSTEtQSkTAAEAQwAAA9YEnQAeABK3CxR+Ax4eAhIAPzMRMz8zMDFlFSE1AT4CNTQmIyIGBhUjNDY2MzIWFhUUDgIHBwPW/IcBqUJNIlxWR10s8mrHi4a/ZCdKakP4v7+jAY49YU8gRlozWDhqsGhUnWs7amRoO9YAAAEAmAAAAsUEjQAGAAqzBn0CCgA/PzAxQREjEQU1JQLF8f7EAhIEjftzA3VTvq0AAAIAWP/wA8QEnQAVACsADrUcEX4nBgsAPzM/MzAxQRUUDgIjIi4CNTU0PgIzMh4CAzU0LgIjIg4CFRUUHgIzMj4CA8Q/c6FiYqF0QD90oGJionQ/8hoySTAuSTIaGjNKLi9JMhkCrc1/u3o8PHq7f81/uns8PHu6/qH1SWtGISFGa0n1SmxGIiJGbAAAAwBBAAAD9QSNAAMACQANABxADAQMDA0NCH0HAwMGAgAvMzMRMz8zLzMRMzAxZRUhNQEBIzUBMyMVITUD9fyNA2P9BKgDAqJU/LK/v78DSPv5igQDwMAAAAMABgAABDgEjQAEAAkADQAbQBAIBwMEBgAKDQgBDApyBQF9AD8zKxEXOTAxQQEhASMDAQcjAQERIxEB5AFMAQj+UYjzAU4hhv5RAo7xAgECjPz3Awn9bncDCf2V/d4CIgAAAQATAAAESQSNAAsAFUAKBwoEAQQJBQMAfQA/Mi8zFzkwMUETEyEBASEBAyEBAQE08fQBGv6JAY3+4f7//P7mAYL+iASN/moBlv2+/bUBnv5iAksCQgAEACcAAAXlBI0ABQAKAA8AFQAgQA4SBBABDgQMAQgEBgF9BAAvPzMRMxEzETMRMxEzMDFlEzMXAyMDExcjAQETMwEjAxMXIwM3AavyiwT+kIzFA5j+5QQQxOr+5pfC8guP/gXIA8XE/DcEjfxG0wSN/EcDuftzBI38OcYDycQAAAIACAAABHEEjQAEAAkAD7UHAwUBfQMALz8zETMwMUEBMwEjAwETIwECTQEl//5Is/4BIkm0/kkBLgNf+3MEjfyj/tAEjQABAGn/8AQgBI0AFQAPtQwRBgB9BgAvPxEzMjAxQTMRFAYGIyImJjURMxEUFhYzMjY2NQMu8nzWiYvXevA5aklJaDgEjf0AhrleXrmGAwD9AE1jLi5jTQAAAgAlAAAEGQSNAAMABwARtgYHBwEAfQEALz8ROS8zMDFBESMRIRUhNQKV8QJ1/AwEjftzBI3AwAABAD//8APwBJ0AOQAYQAoKJg82MSsYFA9+AD/MMy/MMxI5OTAxQTQuAicuAzU0PgIzMhYWFSM0JiYjIgYGFRQeAhceAxUUDgIjIi4CNTMUHgIzMjY2AwYXN19IaJ9sN0B2omGN0HPxM2JKR1wtGzxgRWeeajVAd6ZmWrGOVfIlRWA6SV0rATEhNCsmERk/VHJMSXlZMFyhajJQMClBJh4wKCQRGEJZd0xNeVQtLFyPYTRLLxYnQAAAAgB1AAAEOwSNABkAHgAYQAobDQ0MDBoYFwB9AD8yLzM5LzMSOTAxUyEyHgIVFAYGBwchJyEyNjY1NCYmIyMRIyEBNwEVdQHLa6p3P0R8VE3+awIBMEheMC9hSdnyAsL+4P8BJQSNLlmDVl+HWBsqwCxPNDdRLPwzAgQC/gULAAADAE3/LwRsBJ0AAwAZAC8AHEAMAAMDKysKCgIgFX4CAC8/MxI5LzMSOREzMDFlBQclARUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CAxcBT5v+uAHpS4zBd3TCjkxMjMJ1dsGNTPAnSmtERGpKJydLa0NEa0omr/yE+wI4OIXSlU5OldKFOIXSlk5OltK9OluMYDIyYIxbOlqNYTMzYY0AAAEAdgAABCgEjQAYABO3AgEBDQwPfQ0ALz8zEjkvMzAxQSE1ITI2NjU0JiYjIxEjESEyFhYVFA4CAlj+vgFCTmMvL2NO8fEB4pPQbT54rAGbwC5PMjRYN/wzBI1krXBUiGE0AAACAE7/8ARuBJ0AFQArABC2JwYcEX4GCwA/PzMRMzAxQRUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CBG5Mi8J1dcKOTU2MwnV2wY1M8SZLakRDa0knJ0trQ0RpSiYCYjiF0pVOTpXShTiF0pZOTpbSvTpbjGAyMmCMWzpajWEzM2GNAAEAdgAABGcEjQAJABG2AwgFAQcAfQA/Mi8zOTkwMUERIwERIxEzAREEZ/L98vHxAg4EjftzAyP83QSN/N0DIwADAHYAAAWPBI0ABgALABAAFkAJAg4KBQwHBAB9AD8yMjIvMzM5MDFTMwEBMwEjATMTESMBMxEjEeHQAVEBUND+MqX9x8wl8QRMzfEEjfyvA1H7cwSN/LP+wASN+3MBQAACAHYAAAOSBI0AAwAHAA+1BgMCBH0CAC8/ETMzMDFlFSE1ExEjEQOS/YlM8b+/vwPO+3MEjQADAHYAAARnBI0AAwAJAA0AF0AMBgcLBQwIBgoBBAB9AD8yLzMXOTAxQREjESEBASc3ARMBNwEBZ/ED3P4Q/ug4xgFOIf5/sAHxBI37cwSN/b7+7+LyAX/7cwIZlf1SAAABACb/8ANlBI0AEwANtBAMBwF9AD8vzDMwMUERMxEUBgYjIiYmNTMUFhYzMjY2AnPybLdyfcBt8ixTOTNJJwFvAx784nmrW0+jfj5PJCxVAAEAhgAAAXgEjQADAAmyAH0BAC8/MDFBESMRAXjyBI37cwSNAAMAdgAABGcEjQADAAcACwAYQAoCAwMECQUIBH0FAC8/MxEzEjkvMzAxQRUhNRMRIxEhESMRA7f9bETxA/HxAp3AwAHw+3MEjftzBI0AAAEAVv/wBEsEnQAqABZACSkqKgUZEH4kBQAvMz8zEjkvMzAxQREOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CMzI2NzUjNQRLHXa+injFkE1KicB2oM9uDusKOGdRRGtJJSlPc0pjZBX8AmL+MCFMNUuQ0YZJhtGQS2OucTxXMC9eiVtLW4teLykSy60AAAMAdgAAA6EEjQADAAcACwAaQAsHBgYBCgsLAQB9AQAvPxE5LzMROS8zMDFBESMRARUhNQEVITUBZ/EC6v3GAnv9hQSN+3MEjf4RwMAB78DAAAADAD//EwPwBXMAAwAHAEEAKUATBz4+JAgXMwYGMwsCICAXAAAXfgA/My8RMxEzPzMvERI5OTMRMzAxQREjERMRIxElNC4CJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4DFRQOAiMiLgI1MxQeAjMyNjYCe5mZmQEkFzdfSGifbDdAdqJhjdBz8TNiSkdcLRs8YEVnnmo1QHemZlqxjlXyJUVgOkldKwVz/swBNPrU/swBNOohNCsmERk/VHJMSXlZMFyhajJQMClBJh4wKCQRGEJZd0xNeVQtLFyPYTRLLxYnQAADADoAAAQbBJ0AAwAHACYAHUANBAUFASIZfg4CAg0BCgA/MzMRMz8zEjkvMzAxYSE1IQMVITUlFxYGBgcnPgMnAyY+AjMyFhYVIzQmJiMiDgIEG/xiA57S/PEBjAoEJlVCkBwjEwYBCQM1apddirZa8SxMLyg+KRTAAbmQkGj6U5NzJFYHPFVeKgEBaqRyPGS1eE1bKSFAXQAABQAKAAADmgSNAAMABwAMABEAFQAbQAsGBwMCAhEUCgkRfQA/Mz8SOXwvMxjOMjAxQRUhNQUVITUlEzMBIwMBByMBAREjEQNW/PEDD/zxAVf//f6jiasBARuH/qICPfACRJGR2I+PlQKM/PcDCf1udwMJ/ZX93gIiAAACAHYAAAOZBI0AAwAHAA61BwYDfQIKAD8/MzMwMUERIxEhFSE1AWfxAyP9igSN+3MEjcDAAAADAAgAAARxBI0AAwAIAA0AG0AMCAx9AAUFCQIDAwkKAD8zETMRMxEzPzMwMWE1IRUBATMBIwMBEyMBA7D9GwGCASX//kiz/gEiSbT+ScDAA1/8oQSN+3MDXQEw+3MAAwBO//AEbgSdAAMAGQAvABdACgMCAgogFX4rCgsAPzM/MxI5LzMwMUEVITUFFRQOAiMiLgI1NTQ+AjMyHgIHNTQuAiMiDgIVFRQeAjMyPgIDN/5bAtxMi8J1dcKOTU2MwnV2wY1M8SZLakRDa0knJ0trQ0RpSiYCocDAPziF0pVOTpXShTiF0pZOTpbSvTpbjGAyMmCMWzpajWEzM2GNAAIACAAABHEEjQAEAAkADrUBCQoECH0APzM/MzAxQQEzASMDARMjAQJNASX//kiz/gEiSbT+SQNf/KEEjftzA10BMPtzAAADAEYAAANXBI0AAwAHAAsAF0AKBwYGAgoLfQMCCgA/Mz8zEjkvMzAxZRUhNQEVITUBFSE1A1f87wLG/YQCx/zvwMDAAf7BwQHPwMAAAwB2AAAEYwSNAAMABwALABO3CgULBwIAA30APzMzMzMvMzAxQRUhNTMRIxEhESMRA7T9bUbxA+3yBI3AwPtzBI37cwSNAAMARAABA+oEjQADAAcAEAAlQBINCAkDCgYQEA4HfQoCDAMDAgoAPzMRMxEzPzMzETMSFzkwMWUVITUBFSE1ARUBIzUBATUzA+r8uAMj/NkB8P5dpwFC/r6nwL+/A83AwP3OFf27kgG9AauSAAMATwAABVcEjQAVACcAKwAVQAkWAAArfR4MKgoAP80yPzMvMzAxQTMyHgIVFA4CIyMiLgI1ND4CFyIGBgcUFhYzMzI2NjU0JiYjExEjEQKUfXzVnVhYndV8fXzUnVhYndR0Z5RQAU+WZ49nlVBQlWcy8gQZOnWudHazdz08d7J2dLB0O7s5fGNmfzs8gGZjejkBL/tzBI0AAgBPAAAFCQSNABkAHQAfQA4VFBQGBwcNHA4AHR0NfQA/MxEzPxI5ETMzETMwMUEzERQCBCMjIi4CNREzERQeAjMzMjY2NQMRIxEEGPGH/wC1TIbQkEzyJU97V0x3jkDz8QSN/tK8/vqITZbajQEu/tJhk2QzWrCBAS77cwSNAAADAF4AAASBBJ0ALAAwADQAJ0ATLTQKLjMKKBISKRERMjIxCgYdfgA/Mz8zETMRMzMRMz8zPzMwMUE1NC4CIyIOAhUVFB4CFxUuAzU1ND4CMzIeAhUVFA4CBzU+AgM1IRUhNSEVA48hR2xNS2xGIR08VjhnrX9GR4fFfX7FiUdGfatmTmQw4gHN+/IBywJkKkp6WjExWnpKKlmKZkMSdQxYkcF0Imm5jVFRjbhpI3TAkVgNdRlnp/4TwcHBwQAAAwAj/+wFVASNAAMABwAjABxADRcWCyANDQMECgUCA30APzMzPxI5LzM/MzAxQRUhNQERMxEDNT4CMzIWFhUUDgIjNTI+AjU0JiYjIgYGA9X8TgFc81osdIdHi890QXytbTZVOx81alE9dnEEjcDA+3MEjftzAfu+EyATWbSLZJBcK7kULEo1TWAuER8AAAIAT//wBEMEnQADACsAF0AKAAEBCR0UfigJCwA/Mz8zEjkvMzAxQRUhNQEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAjMyNjYCw/43AlbyCXnYmXe9hUdIiL12m9R2DPEGNmxYRGZFIx9CZ0dVbDoCp8DA/t13tmdOkc+BToHPk01punhBYzgvXolaT1iJXjEvYAAAAwAkAAAHFwSNABEAKQAtACBADygpKRwsHQEtfR8cCgsICgA/Mz8zPzMzMxI5LzMwMUEzAw4EIyM1Nz4ENyUyFhYVFA4CIyERMxEzMjY1NCYmIyE1AxUhNQEb8hQFHztfiF0yJio9KhoQBAQ/kNBvP3isbP4c8vJxbTBiTP68bP3DBI3994fRmmIwyAMDIEFomWhgX6lxVIxnOASN/DN1TDJSM8ABlcDAAAADAHYAAAcaBI0AFwAbAB8AIUAPFxYWGxoaHgsffQ0KCh4KAD8zETM/MxI5LzMzLzMwMUEyFhYVFA4CIyERMxEzMjY1NCYmIyE1BxUhNRMRIxEFS5DPcEB4q2z+G/LzcWwwYUz+u1/9fETxAvhfqXFUjGc4BI38M3VMMlIzwFvAwAHw+3MEjQAAAwAlAAAFVQSNAAMABwAbABlACxgNDQMTBAoFAgN9AD8zMz8zEjkvMzAxQRUhNQERMxEDNT4CMzIWFhURIxE0JiYjIgYGA9b8TwFc8Vksc4dFjNF08jVrUD12cASNwMD7cwSN+3MB+74TIBNVu5n+qgFWVmYtER8ABAB2/qEEYgSNAAMABwALAA8AG0AMDwt9AwcHDgoCAgoKAD8zLxEzMxEzPzMwMWURIxElFSE1ExEjESERIxEC7PIBuv1tRvED7PGz/e4CEg3AwAPN+3MEjftzBI0AAAIAdgAABCkEjQAXABsAG0AMAgEBDQsOChsaGg19AD8zETM/MxI5LzMwMUEhFSEyFhYVFAYjIxEjESEyPgI1NCYmNzUhFQJa/rwBRExiMG1x8/EB5GyreEBwz8n9cQLpwC5OM1BqA837czVjilZzpVnmvr4AAwAn/q8FFASNABAAFgAeACNAEBodHQkXCgocFAkKFhERAH0APzIRMz8zMzMRMxEzLzMwMUEzAw4EByM1Mz4DNxMhESMRIQEhESMRIREjAULvCgQrSmBuOkcjKkEuGQNJAv7x/fP+qATs8fz28gSN/mKT4KVzTBi/LmB6rn4BmvtzA8388/3vAVH+sAAFABsAAAYqBI0AAwAJAA0AEwAXADVAGRQXFxEMCwsHBxERBg4ODwoCAhUKCQMDD30APzMRMz8zETMSOS8zMxEzETMRMxEzETMwMUERIxEhASEnMxMTATcJAiETMwcnASEBA5vxA1/+df7UEbT4E/7owAGC+5f+ewEd97QRlv7p/tUBhgSN+3MEjf1L1QHg+3MCAZj9ZwHYArX+INUp/f8CmQACAEP/8APqBJ0AHgA+AB1ADR8CAgE+PhU0KgsLFX4APzM/MxI5LzMzETMwMUEjNTMyNjY1NCYmIyIGBhUjND4CMzIeAhUUDgIlMzIeAhUUDgIjIi4CNTMeAjMyNjY1NC4CIyMCObmRTV4qLWBPNVk38UN4n11pqXhCP3CX/u+5bKJtNkeCrmhRoYVR8QQ6YDtRaDIeO1g6jQIsfSdFLypFKh08Lk55VCwoT3dPQ3FTLUYtUm9BVH9VKyRQhF81QyAqSTAsQSoVAAMAdgAABG0EjQADAAcACwAbQAwAAwoHCwoBAgUFCH0APzMRMzM/MzMzMzAxdwEXAQEzESMBMxEjtgLFsP08AhTy8vz78fFeBC9e+9EEjftzBI37cwAAAwB2AAAEQQSNAAMACQANAB9ADgwLCwcHBgYCCQN9CgIKAD8zPzMSOS8zETMRMzAxQREjESEBISczARMBNwEBaPIDqf4k/u0gwgEzEP6nqgHbBI37cwSN/UvVAeD7cwIBmf1mAAMAJAAABFYEjQADAAcAGQAYQAsTEAoHAgMDCH0GCgA/PzMRMzM/MzAxQRUhNSERIxEhMwMOBCMjNTc+BDcDmP3DAvvy/bfyFQYfPF6IWzImKjwqGhAEBI3AwPtzBI3994fRmmIwyAQFIEBol2gAAgAf/+wEQQSNABIAFwAXQAoBF30VFhYODgcLAD8zETMRMz8zMDFBASEBDgIjIiYnNxYWMzI2NjcDARMHAQIsAQ4BB/5qI1SEbRhBDQILOw40PykStwEJXK3+PQHYArX8eU2BTAMCvgICKEInA1H9sv7uSAOoAAQAdv6vBSUEjQAFAAkADQARAB1ADRENfQUJCRALCAICCAoAPzMvETMzMxEzPzMwMWUDIxEjNTMVITUTESMRIREjEQUlE96EBP1tRvED7fLA/e8BUcDAwAPN+3MEjftzBI0AAgBDAAAEGASNAAMAFwATtxQJCQIDDn0CAC8/MxI5LzMwMUERIxETFQ4CIyImJjURMxEUFhYzMjY2BBjyWStzfz2U2XXyNWtQPnVxBI37cwSN/f++Ex8UVbyYAVz+pFZlLhIeAAQAdgAABg8EjQADAAcACwAPABlACwsHBw8QCgYGAw59AD8zMxEzPzMRMzAxZRUhNQERIxEhESMRIREjEQVg+6UCtvIDRvL8SvHAwMADzftzBI37cwSN+3MEjQAABQB2/q8G0ASNAAUACQANABEAFQAnQBIRDQ0VfQQQAgIQEAwMExMJCAoAPzMzETMRMxEzLxEzPzMRMzAxZQMjESM1MxUhNQERIxEhESMRIREjEQbQEt2EA/ulArbyA0by/ErxwP3vAVHAwMADzftzBI37cwSN+3MEjQACAAkAAAUkBI0AAwAaABdACgYFBQ8SChEBAH0APzIyPzM5LzMwMVMVITUBIRUhMhYWFRQGIyMRIxEhMjY2NTQmJgkBywGA/rwBRExjMG1y8/EB5JDQcHDQBI3AwP5rwDNSMkx1A837c2KtcHGpXwD//wB2AAAFogSNBCYCIgAAAAcB/QQqAAAAAQB2AAAEKQSNABYAFUAJFRYWCgwJCgp9AD8/MxI5LzMwMUEyFhYVFAYGIyERMxEzMjY1NCYmIyE1AlqQz3Bwz5D+HPHzcW0wYkz+vAL4X6lxcK1iBI38M3VMMlIzwAAAAgA9//AEMQSdAAMAKwAXQAoCAQEcCCcLExx+AD8zPzMSOS8zMDFBITUhAR4CMzI+AjU1NC4CIyIGBgcjPgIzMh4CFRUUDgIjIiYmJwOG/jgByP2qBzltVUdmQh8jRWZEV2w2BvINddWadr6HSEeEvXeZ2HkKAefA/t1GYC8xXolYT1qJXi84Y0F4umlNk8+BToHPkU5ntncAAAQAdv/wBkAEnQADAAcAHQAzAB1ADiQZfi8OCwMCAgYHfQYKAD8/EjkvMz8zPzMwMUEVITUTESMRARUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CApr+ikPxBcpMjMF2dcKNTUyMwnV2woxN8SdKa0REakonJ0xqRERqSScCpMDAAen7cwSN/dU4hdKVTk6V0oU4hdKWTk6W0r06W4xgMjJgjFs6Wo1hMzNhjQAAAgBCAAAEDwSNAAMAIwAZQAsjAAQEGRsWfRkBCgA/Mz8zEjkvMzMwMUEBIQEFIS4CJy4CJy4CNTQ+AjMhESMRIyIGFRQWFjMhAnX+0P79ATUB+P6RFg0MFgMKCgNhfz89daVpAc3y3GtjK1xHATACS/21AkuNAQcKBAEQEAEYW31MUYFaL/tzA81gSjJLKQAAAwALAAAEBQSNAAMABwALABtADAsKCgMCBgcHA30CCgA/PzMRMxESOS8zMDFBESMRIRUhNQEVITUB0/IDJP2KARv9YQSN+3MEjcDA/gGmpgAGABv+rwZ4BI0AAwAHAA0AEQAXABsAO0AcAg4BAQ4OBhsYGBUSEhAPDAkJEwYGGQoNBwcTfQA/MxEzPzMREjkvMzMzMxEzMxEzETMRMy8RMzAxQSMRMwERIxEhASEnMxMTATcJAiETMwcnASEBBnjOzv0j8QNf/nX+1BG0+BP+6MABgvuX/nsBHfe0EZb+6f7VAYb+rwIQA877cwSN/UvVAeD7cwIBmP1nAdgCtf4g1Sn9/wKZAAQAdv6vBH4EjQADAAcADQARACdAEhAPDwsKCgYNB30CDgEBDg4GCgA/MxEzLxEzPzMSOS8zMxEzMDFBIxEzAREjESEBISczARMBNwEEfszM/OryA6n+JP7tIMIBMxD+p6oB2/6vAhADzvtzBI39S9UB4PtzAgGZ/WYABAB2AAAE8QSNAAMABwANABEAKUATEA8PCgALCwoDAwoKBg0HfQ4GCgA/Mz8zEjkvMy8RMxEzETMRMzAxQTMRIwMRIxEhASEnIQETATcBAa6enkbyBFn+JP49IAFyATQP/qeqAdsDjf1+A4L7cwSN/UvVAeD7cwIBmf1mAAQAIQAABVMEjQADAAcADQARACFADxAPDwsKCg4GCg0HBwMAfQA/MjIRMz8zOS8zMxEzMDFTIRUhJREjESEBISczARMBNwEhAcv+NQJZ8QOp/iT+7B/CATMQ/qipAdoEjcDA+3MEjf1L1QHg+3MCAZn9ZgAAAQBO/+sFoASmAEQAG0AMAAEBLxgLJCMjOg1+AD8zMxEzPzMzLzMwMWUVIiQuAjU1ND4CMzIeAhUVFA4CIyIuAjU1ND4CMxUiDgIVFRQeAjMyPgI1NTQuAiMiDgIVFRQeAgWgm/7205RPOm2ZXmKcbzpnu/6YlO6oWkaCs246XEAhNWaXYGSlekMWLEMtLEUvGFKe6a6/Nmyf04Iod7qCREGAunhGjeqrXlGd45IugM2RTMcvXIZYJWWbajQ6cqhuNFJ1SiQmTXBLLX6zbzUA//8ABgAABDgEjQQmAe0AAAAHAkAAPv7TAAIAE/6vBIYEjQADAA8AIkARCw4IBQQKBg99AgoBAQoKDQoAPzMRMy8RMz8zEhc5MDFBIxEzARMTIQEBIQEDIQEBBIbNzfyu8fQBGv6JAY3+4f7//P7mAYL+iP6vAhADzv5qAZb9vv21AZ7+YgJLAkIAAAUAI/6vBjEEjQAFAAkADQARABUAIkAQEQ0NFBV9EBIMCQQIAgIIEgA/My8RMzMzPz8zMxEzMDFlAyMRIzUzFSE1ExEjESERIxEjFSE1BjET3YQD/WxH8gPt8bT8WsD97wFRwMDAA837cwSN+3MEjcDAAAMAQwAABBgEjQADAAcAGwAfQA4AGBgNAwMNDQYHEn0GCgA/PzMSOS8zLxEzETMwMUEzESMBESMRExUOAiMiJiY1ETMRFBYWMzI2NgHjnZ0CNfJZK3N/PZTZdfI1a1A+dXEDQv1+A837cwSN/f++Ex8UVbyYAVz+pFZlLhIeAAIAdgAABEoEjQADABcAFEAJDxIUCQkBfQASAD8/OS8zPzAxcxEzEQM1PgIzMhYWFREjETQmJiMiBgZ28Vkscn89ldh18TZqUT12cASN+3MCAr4TIBNVupn+ogFdVmYtER4AAQAO//AFrASkADQAG0AMGBgdHRERIgt+LQALAD8yPzM5LzMRMy8wMUUiLgI1NTQ+AjMyHgIVFSEiLgI1MxQWFjMhNTQmJiMiDgIVFRQeAjMyNjcXDgIDzoncnFNUlMNxfseJSPv2Z5hkMb8vXkgDGUSBX0ZvTignU4dhapUxQBdllhBMj8l+dHzHj0xHisqDmDxvml1FZjgXWoBFMVt+ToRLe1oxKxS2DSUdAAEATf/wBH8EpAArABVACREUFBkLCyQAfgA/Mj8zOS8zMDFBMh4CFRUUDgIjIi4CNTUhFSEVFBYWMzI+AjU1NC4CIyIGByc+AgI1htmZUlOVxHB/xolIA379dEKDXkZvTSknVIdgapUwQBdnmQSkTI/JfnR7yI9MSIrKgpnAF1mBRDBbf06CS3xaMSoVtg0mHAAAAgBD/+wD6gSNAAcAJgAbQAwIBQUEJiYdEwsHAH0APzI/MzkvMzMRMzAxUyEXASM1ASEBMzIeAhUUDgIjIi4CNTMeAjMyNjY1NCYmIyNsA1QB/mSdAQ791gEcsWyjbDZHgq5oUaGFUfEDOmJATWYyNWlNhQSNmv5cdAEK/ug5ZH5GWodaLSVRhWA1RiIrTzc5TyoAAAMATv/wBG4EnQAVACQANAAbQA4LJWotHWotLQsAFmoACwAvLysSOS8rKzAxQTIeAhUVFA4CIyIuAjU1ND4CFyIGBgcGBgchJiYnLgIDMjY2NzY2NyEWFhceAwJedsGNTEyLwnV1wo5NTYzCdU10SgwBAQICNgECAQxKc0xOc0gMAgEB/csBAgEJL0heBJ1OltKFOIXSlU5OldKFOIXSlk7AQX1aCA8JCRIIWXtB/NJBflkIDwgIEQhCaUYlAAAEADoAAAQbBJ0AAwAHAAsAKgAhQA8GBwMCAgkmHX4SCgoRCRIAPzMzETM/MxI5LzPOMjAxQRUhNQUVITUBITUhARcWBgYHJz4DJwMmPgIzMhYWFSM0JiYjIg4CA0n88QMP/PED4fxiA579qwoEJlVCkBwjEwYBCQM1apddirZa8SxMLyg+KRQCvJGR64+P/i/AAiH6U5NzJFYHPFVeKgEBaqRyPGKvdUlXJiFAXQADAEX/8AOuBJ4AIwAnACsAHUANJyYmKisrBxkSfgAHCwA/Mz8zEjkvMzMvMzAxZTI2NxcGBiMiLgI1NTQ+AjMyFhcHJiYjIg4CFRUUHgITFSE1BRUhNQLMO1szGThsPnW5gURDgLl1P2k8FTRgO0NgPx4fP2HE/PgDCPz4rw8NvA8QQn+5d8B5voNDEBC7EAwpUHZNwkxyTScCVJGR7pCQAAAEAHYAAAfCBJ4AAwAVACcAMQApQBIrMC4tJAkJMS59Ki0KGxISAgMALzMzfC8zGD8zPzMzLzMREjk5MDFBFSE1AzU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGAREjAREjETMBEQeG/cY6VZlqappUU5ppa5pVqCZQPDtOJidOPDtPJv6t8v3y8fECDgFhkJABpUlil1ZWl2JJYZdWVpeqSTdYMjJYN0k3VzMzVwEH+3MDI/zdBI383QMjAAACACgAAASvBI0AGAAcABtACxscAgEBDgwPfQ4KAD8/MxI5fC8zGM4yMDFBITUhMjY2NTQmJiMjESMRITIWFhUUDgIHFSE1Auj9QALASV8uLl9J+/EB7I7MbT52qVH9JwGesjdXMTNWNfwzBI1hqm1UiWQ2TrKyAAACADf/9QKpAyAAGQAzABlAChsAABkaGggQLCQALzPMMjkvMzMRMzAxQTMyNjY1NCYjIgYVIzQ2NjMyFhYVFAYGIyMVNTMyFhYVFAYGIyImJjUzFBYzMjY1NCYmIwEOVys4HTdAMUO2UIZPW4pNR31UdXVdhEVUkVpLjVu3SD1BPyNAKwHRGSweJDcpJUdkNDNkSjlYMSlSK1hGSmg2MWpWJzg5KyYuFQACADYAAAK/AxUABwALABdACQMHBwEBBgUICgAvzDIyOS8zETMwMUEVIScBMwcHAREjEQK//YEKAW+PnbABdrYBOZR2Afr64gHc/OsDFQABAFD/9QKtAxUAIQASth8JCQQDGREALzPMMjkvMzAxUycTIRUhBzY2MzIWFhUUBgYjIiYmJzMWFjMyNjU0JiMiBvSRNAHs/qkWEUssV3hAQoVnTIlXA7YCQzRENEVCNTYBXSQBlJGaBhY9clFHfE43aEgtKEs1OUYcAAEATv/1ArgDIgAtABO2ExwcAwAMJAAvM8wyOX0vMzAxQTMVIyIGBhUVFBYWMzI2NjU0JiMiBgYHJz4CMzIWFhUUBgYjIiYmNTU0PgICFh0LWIRIIDsoJTcgQjwpPyQBMAE5bkxTcDlLh1tdj1FDe6YDIpQvb2F2MUIgIzkkOT4eLBYjLV9BRHdNTXxHSY1oNXCmbjYAAAEANwAAAq0DFQAGAAyzBQEGAgAvzDIyMDFBFQEjASE1Aq3+q8ABVf5KAxVm/VECg5IABABL//UCqgMgAA8AHwAvAD0AF0AKDCQ7AxQUNCwcBAAvM8wyOS8XMzAxZRQGBiMiJiY1NDY2MzIWFgc0JiYjIgYGFRQWFjMyNjYTFAYGIyImJjU0NjYzMhYWBzQmJiMiBhUUFhYzMjYCqk+JV1aKUFCJVleJULUgNyQkNh4eNyQkNx+iSX9UU4FJSYFSU4FJtxcuITA2GC8gMTTZTGUzM2VMRmI2NmI2HysXFysfHi0XFy0Bdz9dMzNdP0liMzNiVRwnFi8qGikXMgAAAQBH//YCowMgAC4AE7YSGxsKIwEtAC8zzDI5fC8zMDF3MzI2NjU1NCYmIyIGBhUUFhYzMjY2NRcUBgYjIiYmNTQ2NjMyFhYVFRQOAiMj1Q1ZdjwfNSUlNh0cOSkpOR43Pmg/UnY9S4haWYhOPnSlaA+HKWNWmDE+HiY/JiU5IB4rEx8yWjk/dlJOgU1HkGw1c6RpMgAAAQCNAosDLQMxAAMACLEDAgAvMzAxQRUhNQMt/WADMaamAAMAmARNAqYGmgADAA8AGwAZQAkTDQ0HAQMDGQcALzMzfC8YzREzETMwMUE3MwcFNDYzMhYVFAYjIiY3FBYzMjY1NCYjIgYBGarj9/7pbk5Na2tNTm5jNCUkMTEkJTQF18PD3U1kZE1MYWFMJTExJSczMwAABAB2AAADtgSNAAMABwALAA8AG0AMCwoKBg8OB30DAgYKAD8zMz8zMxI5LzMwMWUVITUTESMRARUhNQEVITUDtv1lTPEC6v27Apn9Z7+/vwPO+3MEjf4tv78B08DAAAQADP5KBBgETgASACQAWwBfADNAGl1fBnIlJhgYD0BBQS5TUw8PBUo3D3IhBQdyACsyKzIROS85ETMzETMRMxI5OSsyMDFTNTQ2NjMyFhYVFRQOAiMiJiY3FRQWFjMyNjY1NTQmJiMiBgYTFwYGFRQWFjMzMhYWFRQOAiMiLgI1NDY2NxcOAhUUHgIzMj4CNTQmJiMjIiYmNTQ2NgEXISdGcsuGiMtwQHelZYfMcvA0X0JAXjM0X0BAXzQcWhtAIjojs36xXkiNyoN1tHs+X4xFOSI7JB4+XUFNc0wmIU9FyEl6Sz9YAuoC/oALAs4WaqRcXKRqFkuEZDhipHsWLlIzM1IuFjFQMTFQ/rQyDjYxHyIOQoVjO3xoQCxOZDdWekkNVgUsQikdNSgYHjA4GyM3ICdUQ0NcPQKElZUAAAQAVv/rBFoETgAVACsALwAzABdADDAKLQYcEQtyJwYHcgArMisyPz8wMVM1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMj4CNzUuAyMiDgIFEzMLAjMTVjhtoWlmlWc+DQ09aJZnZ6BuOPIaOFxBOlQ6IggGITpVOkFcOhoB403ba2lUvXIB+xV+0ppUT4/GeDh1wI1NTo7BiBVHelwzN194QjREfWQ6PGmLQgIe/eL95AIc/eQAAAIAmQAABPAFsAAZAC4AH0APJggbGhoCAQEODA8Ccg4IAD8rMhI5LzMzETM/MDFBISchMjY2NTQmJiMhESMRITIWFhUUBgYPAjceAhUVFBYWFxUhLgI1NTQmJgLi/mQBAWNheTk2c1z+3foCKKPgclikcRZzMau/TgwfHP7/HhsHNmsCWMY1ZEhGajn7GAWwYruIYZBgHC8XhQFhp210IVNMGBsaYmEYcExtOgADAJkAAAUsBbAAAwAJAA0AIEAQCggJAgwLCwcGBgIDAnICCAA/KxI5LzMzETM/PzAxQREjESEBISczARMBNwEBk/oEZv2w/p0i+gGoM/4pogJiBbD6UAWw/MLaAmT6UAKYwfynAAADAIEAAAQzBgAAAwAJAA0AHEAOCwcGBgIJBnIDAHIKAgoAPzMrKxI5LzMzMDFBESMRAQEhJzMBEwE3AQFx8AOH/kb+3EXxARgt/q6dAc0GAPoABgD+Ov2hvwGg+8YB+qr9XAAAAwCZAAAFCwWwAAMACQANABpADgYLBwgMBQIJAwJyCgIIAD8zKzISFzkwMUERIxEhASEnMwETATcBAZP6BE/9ff7OCm8CGCP9juICyAWw+lAFsP0GdgKE+lAC2Gb8wgAAAwCBAAAEHwYYAAMACQANACBAEAwLCwcGBgIJBnIDAXIKAgoAPzMrKxI5LzMzETMwMUERIxEBASEnMwETATcBAXHwA3P+Ev77HI0BXS3+UbYCHAYY+egGGP4i/cGeAaH7xgIXgP1pAAACAHYAAAQrBI0AGQAdABZACRsaDwIBDg99AQAvPzMRMxEzMjAxYSE3ITI2NjU1NC4CIyE1ITIeAhUVFAYEAREjEQHv/vACAQ5zkkUnUHtU/ucBGX3Rl1OR/v/+zvG/VaJ0OleHXC/AUJPMfDil+osEjftzBI0AAQBP//AEQwSdACcAEbYZFRB+JAAFAC/MMz/MMzAxQTMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CMzI2NgNQ8gl52Jl3vYVHSIi9dpvUdgzxBjZsWERmRSMfQmdHVWw6AYR3tmdOkc+BToHPk01punhBYzgvXolaT1iJXjEvYAAAAgB2AAAEDASNABkAMQAoQBMcGykZAgIBGyYBASYbAw0MD30NAC8/MxIXOS8vLxEzEjk5ETMwMUEhJyEyNjY1NCYmIyMRIxEhMh4CFRQGBgcDITchMjY2NTQmJiMjNyEXNhYWFRQOAgJY/r4CAR9BWi8uXETI8QGsbKl4P0eSdFT+hWIBGUZbLCdWRfYBATg3b4pBPHKmAf2mIkEvNUQf/DMEjSdOeVJHekwE/cS/KEUtMkkppkECUYBFVX1TKQAAAwAIAAAEkQSNAAQACQANABxADA0ABgMMDAEHA30FAQAvMz8zEjkvEjk5MzAxQQEjATMBASczAQEVITUCWv6i9AHVogEe/qAlpQHU/v39ZgOe/GIEjftzA6Dt+3MBsLW1AAABAJAEbQGeBikACgAKsgWAAAAvGs0wMVM1NDY2NxcGBhUHkChBJIEcJAEEbYVAeWIcUDV1SHoAAAIAdQTUAwMGfAAPABMAErUSEwoADQUALzN83DLWGM0wMUEzFAYGIyImJjUzFBYzMjYnJzMXAlatT5NkZZNQrEZWU0bJqrN3BbFBYzk5Y0EtRUU3wcEAAvyeBLz+2AaJABcAGwAdQAwAFRUFGRsbCRERDAUALzMzETMzLzMRMxEzMDFBFxQGBiMiJiYjIgYVJzQ2NjMyFhYzMjYlNzMH/nFnKkowNkU+Kx8raCpKMC1IRikeLf73gb60BZ0dMFIyJCQyJhwwUjMkIzI/0tIAAgB6BOcEewaKAAYACgAUtwgHBwUBgAQGAC8zGs05My/NMDFTJTMFIycHJRMzA3oBHp0BH82hoAHEmtfXBOf29o6OmwEI/vgAAv9RBNsDUwZ/AAYACgAXQAkHQAgIAwaAAgQALzMazTkzLxrNMDFBBSMnByMlJRMjAwI0AR/NoKDNAR7+kZqZ2AXR9o+P9q7++AEIAAIAeQToBAYGyAAGABoAH0ANERIIQBoJCAgDBoACBAAvMxrNOTMRMzMaEMwyMDFBBSMnByMlBSMnPgI1NCYmIzcyHgIVFAYHAj4BFb6vsL0BFAH2iAgrNRkjOyUHRGdHJFIxBd/3oKD3cnoDDBgTGRsMZxcrOyY+OgcAAgB5BOgDUwbNAAYAHgAlQBAIBwcQGAxAFBMTHAwMBoAEAC8azTIRMzMRMxoQzTIyETMwMUEFIycHIyU3FxQGBiMiJiYjIgYVJzQ2NjMyFhYzMjYCLgElvq+wvQEl8VolQiowQDonGydaJUIqKEJCJRooBdLqj4/q+x4nSC0iIiwdGChILyIhLgAAAwB2AAADmQXEAAMABwALABtADAIKCgsLBwMDB30GCgA/PzMvETMRMxEzMDFBESMRAREjESEVITUDmfH+v/EDI/2KBcT+CQH3/sn7cwSNwMAAAAIAdQTTAwMGfAAPABMAErUREwAKDQUALzN83DIY1s0wMUEzFAYGIyImJjUzFBYzMjYnNzMHAlatT5NkZZNQrEZWU0bgeLOqBbBBZDg4ZEEtRUU4wcEAAgB1BNUC/QcHAA8AJQAoQBEbHBwRJRISEREJDQUACQkFEAA/M3wvMxEzETMYLzMRMxEzLzMwMUEzFAYGIyImJjUzFBYzMjYnIyc+AjU0LgIjNzIeAhUUBgYHAlKrT5BlY5NOqkdTUkdKnAkxPB0XKTcgB094UCkrQyYFsEFjNzdjQS1CQkVzAgwWEhAWDQVeFSY3IiUwGAUA//8ATAKNAqkFuAYHAeEAAAKY//8ANgKYAr8FrQYHAjoAAAKY//8AUAKNAq0FrQYHAjsAAAKY//8ATgKNArgFugYHAjwAAAKY//8ANwKYAq0FrQYHAj0AAAKY//8ASwKNAqoFuAYHAj4AAAKY//8ARwKOAqMFuAYHAj8AAAKYAAEAaf/rBSEFxQApABVAChoWEQNyJgAFCXIAK8wzK8wzMDFBMw4CIyIuAzU1NBI2NjMyFhYXIy4CIyIOAhUVFB4DMzI2NgQl+w+M9a9vwZxwPFyo5omv+I8P+w5KiGpWimQ1I0JedUZohUoB2pXefEF9sOCDN6QBCr9lfeKWXodISYm/dzlfooBaL0aGAAABAGn/6wUiBcUALQAbQA0tLCwFGhYRA3ImBQlyACsyK8wzEjkvMzAxQREOAiMiLgM1NTQSNjYzMhYWFyMuAiMiDgIVFRQeAzMyNjY3ESE1BSIdiNmYdM2nekFdqueJt/OGEvcMS4doVo1nOChLaINLUHNIEP7cAuH92ihiRkJ8suKFJ6gBD8BleNKHTHhFSozEeClho4JbLxsoEgEfuwAAAgCZAAAFFAWwABsAHwAStxwPEAJyAh0AAC8yMisyMjAxYSE3ITI+AjU1NC4CIyE1ITIEFhIVFRQCBgQBESMRAkz+vAIBOHWwdjw8da1w/rcBU5oBAb1nZ73++v6p+sdKiblvLXK6hUjIZrz+/J0rnf78u2YFsPpQBbAAAAIAaf/rBW4FxQAZADEAELchFANyLQcJcgArMisyMDFBFRQOAyMiLgM1NTQ+AzMyHgMHNTQuAyMiDgIVFRQeAzMyPgIFbj5xn8RwbsOgdD4+c6DCbnDFn3I++SVEYXpHVpBoOiZFYnhFWpBnOALuLH3etIJGRoK03n0sfd21gkZGgrXdqS5an4JdMk6NvnEuW6CCXjJOjcAAAwBp/wQFbgXFAAMAHQA1ABtADSUYA3IAAwMxCwlyAQIALzMrMjIRMysyMDFlAQcBARUUDgMjIi4DNTU0PgMzMh4DBzU0LgMjIg4CFRUUHgMzMj4CA9EBdKP+lAI4PnGfxHBuw6B0Pj5zoMJucMWfcj75JURhekdWkGg6JkVieEVakGc4wv7RjwEtArcigOC1gUVFgbXggCKB4LWCRUWCteCjJF6ig1wxTIzCdiReooNdMU2MwwABAJYAAALqBI0ABgAVQAkDBAQFBQZ9AgoAPz8zLzMRMzAxQREjEQU1JQLq8f6dAjUEjftzA3B8yNEAAQBrAAAELwSfACAAF0AKEBAMFX4DICACEgA/MxEzPzMzLzAxZRUhNQE+AjU0JiYjIgYGFSM0NjYzMh4CFRQOAgcFBC/8WgHqPUEYJ1dJRGc78XjUi2ykbzgjQ2A//u2/v5wBqDVRSicqSzA1YkR0uW0yW3xKOWZfYDT7AAEAD/6jA/cEjQAfABpACwYAHh4DFg8FAgN9AD8zMy8zEjkvMzMwMUEBITUhFwEeAhUUDgIjIiYnNxYWMzI2NjU0JiYjIwFNAVD9uwN0Af6bbrVsWaDagWjEaDZKqllyo1dNnnpMAlQBecCN/n0Pdb6AgciJRjM0sygwVphgZYRAAAACADT+xASIBI0ABwALABZACQYEC30KAwcHAgAvMxEzLz8zMzAxZRUhJwEzAwEBESMRBIj7swcCqL3P/moCofG/wJID/P6S/aADzvo3BckAAAEAZ/6gBCEEjAAnABZACSQJCQIaEwUCfQA/My8zEjkvMzAxQScTIRUhAzY2NzYeAhUUDgIjIiYnNxYWMzI+AjU0LgIjIgYGAVLIVgMp/ZouKXdSaKRzO0SHzIhu0F1KOqRiT3hQKCJCYkE+UjQBaREDEsz+oBgfAQFDgLZxa76TUzo7ri02NFx4RUBtUi0bMwAAAQBC/sQEFgSNAAYAD7UBBQUGfQMALz8zETMwMUEVASMBITUEFv258wI8/SoEjYX6vAUJwAAAAgB2BM4C/AbaAA8AJwApQBEREBAZISEVHRwcJRUVAAkNBQAvM80yMnwvMzMRMxEzGC8zMxEzMDFBMxQGBiMiJiY1MxQWMzI2ExcUBgYjIiYmIyIGFSc0NjYzMhYWMzI2AlCsT5BkY5FPq0RUU0QiaCtJMTVFPiwfK2cpSjEsSEUrHiwFr0JmOTlmQi1ERAFYHjBSMiQkMiUbMFMzJCMyAAEAYv6aAVMAswADAAixAQAAL80wMWURIxEBU/Gz/ecCGQAFAE7/8AZuBJ0AKQAtADEANQA5ADFAGDg5OTF9Fi0tFzAKNTQ0JhsBBgYmfhEbCwA/Mz8zETMREjkvMz8zMxEzPzMRMzAxQQciLgIjIg4CFRUUHgIzMj4CMxciBgYjIi4CNTU0PgIzMhYWARUhNRMRIxEBFSE1ARUhNQPnGSBqcl8VQ2tJJydLa0MXYHRnHRpOlH0qdcKOTU2MwnUqf5UC0v1mS/EC6v28Apn9ZwSNwAQHBTJgjFs6Wo1hMwUFBb4ICE6V0oU4hdKWTggI/DK/vwPO+3MEjf4tv78B08DAAAEAbv60BFAEoQA7ABS3ABUfHzULKTUALy8zEjkvMzIwMUUyPgI1NTQuAiMiDgIVFB4CMzI+AjU3FAYGIyIuAjU0PgIzMh4CFRUUDgMjIiYnNxYWAepViWI0JUVhPTZaQiQgQVw8S3BKJWV3yHlppnU+SIGtZ3G8i006apKxZUiWRi8xaY1ChsuJ9VeDWCwuVnlKQXNYMitHUycKjMBiSIW5cHa+iEpIj9WNz5Ttsnc7Hh6yEh0AAf+n/ksBiwDOABEACrINBgAAL8wyMDF3MxEUBgYjIiYnNxYWMzI2NjWZ8laebiQ8Ig4TOhYpOh7O/vR5qFYHCsEGBihPOgD//wA4/qMEIASNBAYCZikA//8AaP6gBCIEjAQGAmgBAP//ACz+xASABI0EBgJn+AD//wBiAAAEJgSfBAYCZfcA//8AX/7EBDMEjQQGAmkdAP//ADT/6wRXBKAEBgJ/1AD//wBs/+wEMgW5BAYAGvkA//8AWf60BDsEoQQGAm3rAP//AGf/7AQmBcQGBgAcAAD//wDlAAADOQSNBAYCZE8A////rv5LAZIEOgQGAJwAAP///67+SwGSBDoGBgCcAAD//wCQAAABgQQ6BgYAjQAA////+v5eAYEEOgYmAI0AAAEGAKTRCgALtgEEAgAAQ1YAKzQA//8AkAAAAYEEOgYGAI0AAAADAHb/6wQZBJ0AAwAWADEAKUAUDyYmDSMjCRsvC3IEAAACEwl+AgoAPz8zEjkvMysyETkvMzMRMzAxQREjERcjNDY2MzIWFwEnNRMmJiMiBgYTNxYWMzI2NjU0JiYjIzU3Mh4CFRQGBiMiJgFi7OzsXbmLic5W/qiGzB1MNT5PJUZFGUovNk0pNm1QUm9pp3Y+Z7JvQ3QC7f0TAu0CkMFhdF/+ZANxAQIYJT5v/O62ESAvVDc7RyGdBypSek96qFYdAAIAYP/rBIMEoAAVACsADrUcEX4nBgsAPzM/MzAxQRUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CBINQj8FwcMKQUVCQwXBwwZBR8SxOaj0+aE8rLE9pPj5pTSsCThGU35RLS5TflBGU35VKSpXftDFjkV8vL1+RYzFjkmAuLmCSAAEAOQAAA+oFsAAGABNACQEFBQYEcgMMcgArKzIRMzAxQRUBIwEhNQPq/dPyAi39QQWwhPrUBPDAAAADAH3/7AREBgAABAAaAC8AGUAOIRYHcisLC3IECnIAAHIAKysrMisyMDFTMxEHIwEVFA4CIyIuAic1PgMzMh4CBzU0LgIjIg4CBxUeAjMyPgJ98SDRA8c7c6NnZZZlPg0NPmWVZGilcjvxH0BiREBePyQGCT1uVUNiPx8GAPrn5wInFXbJlVJNi8B0Q3fDjUxPksuQFUyCYTYrTGc7tUl8SzhigAAAAQBP/+wEAAROACcAGUAMHRkZFAdyBAQACQtyACsyMi8rMi8yMDFlMjY2NzMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CAkE7YT0D4wR6xnh8vH4/QH66fILFcgTjAzdgQ0ljOxkZO2OrMFQ3aaxlVZbEcCNwxZZVZ7d5PGE6O2V9QyNDfmQ7AAADAE7/7AQVBgAABAAaAC8AGUANIQQEFgtyKwsHcgEAcgArKzIrMi8yMDFlETMRIwE1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMjY2NzUuAyMiDgIDI/LS/QtBdqNkYpRnPg4NP2iUY2KjdkHyIUJiQVJtPwsGJkBdPkFjQyHgBSD6AAIRFXzLkk9MjcJ3RHPBi01SlMmLFUmBYTdIfEu2O2ZMKzZhggAAAwBO/lUEFQROABMAKQA+ABtADzAlC3I6GgdyDgYPcgAGcgArKzIrMisyMDFBMxEUDgIjIiYnNxYWMzI2NjURATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgNF0EOBunZLuUwxPIdKX3o7/Ss/dqNlaZZjOg4OPWaWZWOjdj/yIUJiQVVsPAwHJT5dQEJjQiEEOvwVebyCQysvqyEoR4toAvr+zRV7y5JPTI3Cd0N0wIxNUpXJixVKgGI3SXtMtTtmTCs2YYIAAAIASf/sBFMETgAVACsAELccEQtyJwYHcgArMisyMDFTNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgJJSYi+dXe/iEhIh792dr+ISfEkRWhEQ2dGIiNFaEREZkUkAhEXdcmVU1OVyXUXdciVU1OVyIwXSYJjODhjgkkXSIFkOTlkgQAAAwB9/mAEQwROAAQAGgAvABlADiEWB3IrCwtyAwZyAg5yACsrKzIrMjAxQREjETMBFRQOAiMiLgInNT4DMzIeAgc1NC4CIyIOAgcVHgIzMj4CAW7x2ALuPXOiZmWXaD8NDT9olmRmpHQ88SJEY0FAXUAkBgw8bVRBYkMiA2r69gXa/e0VdsmVUkuJu3BRd8KNTE+Sy5AVTIJhNitMZjvCSHhHOGSBAAMATv5gBBQETgAEABoALwAZQA4hFgtyKwsHcgQOcgMGcgArKysyKzIwMUERNzMRATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgMiIdH8Oj91pWZllWc+Dg0+aJZmZKV1P/IhQ2NBVW89CwYlQF9AQWRDIv5gBQPX+iYDsRV7y5NPTI3Cd0RzwYtNUpTJixVKgWM4Sn5LtjtmTis3YoMAAAEAUf/sBAoETgAqABlADBMSEgAZCwdyJAALcgArMisyETkvMzAxRSIuAjU1ND4CMzIeAhUVITUhNTQmJiMiDgIVFRQeAjMyNjcXBgYCcn3IkExKhLRpdK5zOfy8AlYtYlE8XT8hKlJ7UlOVNDcytxRQkMNzKn3Jj01Jh7pwf60aQm5CMlyDUSpJfV00MCGjJkcAAwBQ/lUEAwROABIAKAA9ABtADy8kC3I5GQdyDQYPcgAGcgArKzIrMisyMDFBMxEUBgYjIiYnNxYWMzI2NjURATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgMz0HffnUavRzI3e0VgeTv9PzptnmVplWQ5Dg49ZpVlZJ1tOvIaOlxBVWs6CwYjPV1AQV06GwQ6/Aqe3XQlKawdIUSHYwMG/swVfMuST0yNwndDdMCMTVKUyYsVSn9iN0l7TLU7ZkwrN2GCAAACADT+TQRbBEoAAwAlABlADA4VAQEVHwQHcgMGcgArKzIvMy8RMzAxQQEjASUyHgIXAR4CFxY2NwcGBicuAycBLgIjIgYHJzY2BCz9IvUC3/2CUGlFLBIBlhAmLx0OMQ4iFDsZPFpCNBf+fRAzQisMKg0EHUUEOvomBdoQNlRdJ/xnJjsmAwEBAcAHBgIDNFRpOAN2K0MnBAG2CAsA//8AYQAAArcFtQQGABW3AAABAF//7gS9BJ0AQQAXQAs4OBAifhkKMwALcgArMj8/MzkvMDFFIi4CNTQ2NjclNjY1NCYjIgYVFBYWFwEhAS4CNTQ2NjMyFhYVFAYGBwUOAhUUFhYzMj4CNTMUBgcGBgcGBgIBYZtsOjBZPQEHMydBOzs8JT8mAqD+9v3LOVgzUphoaZhUK0kt/uAhJAwrUz1hl2o30lhLDhgRUNESLlJwQERnVSmzIj4hKj5DKiA+QCf9TwJEOmJoQ018SUp/UDVdTh/GGC4rFClAIzxtlVqCzk4OGww/RgADAAUAAAOeBI0AAwAHAAsAHUANCAkJCwoKBgd9AwIGCgA/MzM/EjkvMzMvMzAxZRUhNRMRIxEBFQU1A579ikvxAfL9kb+/vwPO+3MEjf6hkbuRAAAG/+wAAAYEBI0AAwAHAAsAEAAUABgAM0AYCgsLGBgPBwYUEwYTBhMND30DAgIXFw0KAD8zETMRMz8SOTkvLxEzETMRMxEzETMwMWUVITUBFSE1ARUhNQcBIQEzExUhNQETIwMGBP2EAhL90QJu/YRf/fP++wJtoK79hwKQKu8rvr6+AgC+vgHPvr5y++UEjf03vLwCyftzBI0AAgB2AAAD0QSNAAMAGQAXQAoPEBABfQUEBAAKAD8yLzM/My8zMDFzETMRJzUzMjY2NTQmJiMjNTMyFhYVFAYGI3bxUetOYi8vYk7q6pLQbm7QkgSN+3PkwS5TNDJVNcBiqm5yqV0AAwBO/8cEbgS7ABUAKwAvABtACy8vHBF+LS0nBgtyACsyMnwvGD8zM3wvMDFBFRQOAiMiLgI1NTQ+AjMyHgIHNTQuAiMiDgIVFRQeAjMyPgITASMBBG5Mi8J1dcKOTU2MwnV2wY1M8SZLakRDa0knJ0trQ0RpSibs/I6fA3QCYjiF0pVOTpXShTiF0pZOTpbSvTpbjGAyMmCMWzpajWEzM2GNAuv7DAT0AAAEADQAAATaBI0AAwAHAAsADwAbQAwCA4AODw8LB30KBgoAPzM/MzMvMxrMMjAxQRUhNRMRIxEhESMRBRUhNQPQ/WxE8QPx8QFL+1oCncDAAfD7cwSN+3MEjZanpwAAAgB2/ksEZwSNAAkAGwAfQA8XEA9yCQMGfQgKCgICBQoAPzMRMxEzPzMzKzIwMUERIwERIxEzARERMxUUBgYjIiYnNxYWMzI2NjUEZ/L98vHxAg7yVZ9vIzwiDhM6FSo5HwSN+3MDI/zdBI383QMj+7iDeahWBwrBBgYoTzr//wBQAg4CYQLOBgYAEQAAAAMAFwAABPAFsAAaAB4AIgAjQBECAQEdIiEhHQ4PDx4Cch0IcgArKzIRMxE5LzMRMxEzMDFhITchMjY2NTU0LgIjITUhMh4CFRUUDgIBESMRARUhNQJZ/skCATWHt101Z5Vh/roBRpHwr15esPP+vvsCBf1gx3bcmE92tnxAyGG2/p1Nnf61YQWw+lAFsP2EpqYAAwAXAAAE8AWwABoAHgAiACNAEQIBAR0iISEdDg8PHgJyHQhyACsrMhEzETkvMxEzETMwMWEhNyEyNjY1NTQuAiMhNSEyHgIVFRQOAgERIxEBFSE1Aln+yQIBNYe3XTVnlWH+ugFGkfCvXl6w8/6++wIF/WDHdtyYT3a2fEDIYbb+nU2d/rVhBbD6UAWw/YSmpgAD//UAAAQYBgAAAwAaAB4AGUANHh0WCgdyAwByEQIKcgArMisrMsQyMDFBESMREyc+AzMyHgIVESMRNCYmIyIOAgEVITUBiPDGTgE9b5xfUIFeMfItVj5BY0IhATf9YAYA+gAGAPxFAXC+jU0sYZtv/UkCuU5cKTRadgLnpqYAAAMALQAABLQFsAADAAcACwAVQAoDCgsGBwJyAQhyACsrMi8zMjAxQREjESEVITUBFSE1Auv5AsL7eQOM/WAFsPpQBbDIyP4IpqYAA//r/+wCiwVDAAMAFQAZAB1ADgoRC3IYGRkCAgQEAwZyACsyLzIRMy8zKzIwMUEVITUTMxEUFhYzMjY3FwYGIyImJjUBFSE1Amz9nrDxHTQjGS4OAR5PM1OASAHR/WAEOrCwAQn76DI1EgYDuAkOO4ZvAcGmpgD//wARAAAFPwc3BiYAJQAAAQcARAEbATcAC7YDEAcBAWFWACs0AP//ABEAAAU/BzcGJgAlAAABBwB1AcIBNwALtgMOAwEBYVYAKzQA//8AEQAABT8HNwYmACUAAAEHAJ4AwgE3AAu2AxEHAQFsVgArNAD//wARAAAFPwcqBiYAJQAAAQcApQDFATcAC7YDHAMBAWtWACs0AP//ABEAAAU/BwQGJgAlAAABBwBqAOQBNwANtwQDIwcBAXhWACs0NAD//wARAAAFPweRBiYAJQAAAQcAowFYAWwADbcEAxkHAQFHVgArNDQA//8AEQAABT8HsQYmACUAAAEHAkEBWAEXABK2BQQDGwcBALj/srBWACs0NDT//wBm/jkE6wXEBiYAJwAAAQcAeQHL//oAC7YBKAUAAApWACs0AP//AJQAAARNBz4GJgApAAABBwBEAOUBPgALtgQSBwEBbFYAKzQA//8AlAAABE0HPgYmACkAAAEHAHUBjAE+AAu2BBAHAQFsVgArNAD//wCUAAAETQc+BiYAKQAAAQcAngCNAT4AC7YEEwcBAXdWACs0AP//AJQAAARNBwsGJgApAAABBwBqAK4BPgANtwUEJQcBAYNWACs0NAD////LAAABoAc+BiYALQAAAQcARP+TAT4AC7YBBgMBAWxWACs0AP//AKUAAAJ8Bz4GJgAtAAABBwB1ADoBPgALtgEEAwEBbFYAKzQA////ygAAAn4HPgYmAC0AAAEHAJ7/OgE+AAu2AQcDAQF3VgArNAD///++AAAChwcLBiYALQAAAQcAav9bAT4ADbcCARkDAQGDVgArNDQA//8AlAAABRcHKgYmADIAAAEHAKUA8QE3AAu2ARgGAQFrVgArNAD//wBl/+wFHQc4BiYAMwAAAQcARAEzATgAC7YCLhEBAU9WACs0AP//AGX/7AUdBzgGJgAzAAABBwB1AdoBOAALtgIsEQEBT1YAKzQA//8AZf/sBR0HOAYmADMAAAEHAJ4A2gE4AAu2Ai8RAQFaVgArNAD//wBl/+wFHQcsBiYAMwAAAQcApQDdATkAC7YCOhEBAVlWACs0AP//AGX/7AUdBwUGJgAzAAABBwBqAPwBOAANtwMCQREBAWZWACs0NAD//wCA/+wEvwc3BiYAOQAAAQcARAEPATcAC7YBGAABAWFWACs0AP//AID/7AS/BzcGJgA5AAABBwB1AbYBNwALtgEWCwEBYVYAKzQA//8AgP/sBL8HNwYmADkAAAEHAJ4AtgE3AAu2ARkAAQFsVgArNAD//wCA/+wEvwcEBiYAOQAAAQcAagDXATcADbcCASsAAQF4VgArNDQA//8ACAAABNkHNgYmAD0AAAEHAHUBjAE2AAu2AQkCAQFgVgArNAD//wBW/+wD+QYABiYARQAAAQcARACmAAAAC7YCPQ8BAYxWACs0AP//AFb/7AP5BgAGJgBFAAABBwB1AU0AAAALtgI7DwEBjFYAKzQA//8AVv/sA/kGAAYmAEUAAAEGAJ5NAAALtgI+DwEBl1YAKzQA//8AVv/sA/kF9AYmAEUAAAEGAKVQAQALtgJJDwEBllYAKzQA//8AVv/sA/kFzQYmAEUAAAEGAGpvAAANtwMCUA8BAaNWACs0NAD//wBW/+wD+QZaBiYARQAAAQcAowDjADUADbcDAkYPAQFyVgArNDQA//8AVv/sA/kGegYmAEUAAAEHAkEA4v/gABK2BAMCSA8AALj/3bBWACs0NDT//wBO/jkD8QROBiYARwAAAQcAeQFB//oAC7YBKAkAAApWACs0AP//AFH/7AQKBgAGJgBJAAABBwBEAJsAAAALtgEuCwEBjFYAKzQA//8AUf/sBAoGAAYmAEkAAAEHAHUBQgAAAAu2ASwLAQGMVgArNAD//wBR/+wECgYABiYASQAAAQYAnkIAAAu2AS8LAQGXVgArNAD//wBR/+wECgXNBiYASQAAAQYAamMAAA23AgFBCwEBo1YAKzQ0AP///7QAAAGIBfcGJgCNAAABBwBE/3z/9wALtgEGAwEBnlYAKzQA//8AkAAAAmUF9wYmAI0AAAEGAHUj9wALtgEEAwEBnlYAKzQA////tAAAAmgF9wYmAI0AAAEHAJ7/JP/3AAu2AQcDAQGpVgArNAD///+oAAACcQXEBiYAjQAAAQcAav9F//cADbcCARkDAQG1VgArNDQA//8AegAAA/oF9AYmAFIAAAEGAKVaAQALtgIqAwEBqlYAKzQA//8ATv/sBDwGAAYmAFMAAAEHAEQAsQAAAAu2Ai4GAQGMVgArNAD//wBO/+wEPAYABiYAUwAAAQcAdQFXAAAAC7YCLAYBAYxWACs0AP//AE7/7AQ8BgAGJgBTAAABBgCeWAAAC7YCLwYBAZdWACs0AP//AE7/7AQ8BfQGJgBTAAABBgClWwEAC7YCOgYBAZZWACs0AP//AE7/7AQ8Bc0GJgBTAAABBgBqeQAADbcDAkEGAQGjVgArNDQA//8Ad//sA/kGAAYmAFkAAAEHAEQArAAAAAu2Ah4RAQGgVgArNAD//wB3/+wD+QYABiYAWQAAAQcAdQFSAAAAC7YCHBEBAaBWACs0AP//AHf/7AP5BgAGJgBZAAABBgCeUwAAC7YCHxEBAatWACs0AP//AHf/7AP5Bc0GJgBZAAABBgBqdAAADbcDAjERAQG3VgArNDQA//8ADP5LA94GAAYmAF0AAAEHAHUBGwAAAAu2AhkBAQGgVgArNAD//wAM/ksD3gXNBiYAXQAAAQYAaj0AAA23AwIuAQEBt1YAKzQ0AP//ABEAAAU/BuMGJgAlAAABBwBwAL0BOQALtgMQAwEBplYAKzQA//8AVv/sA/kFrQYmAEUAAAEGAHBIAwALtgI9DwEB0VYAKzQA//8AEQAABT8HHgYmACUAAAEHAKEA8AE3AAu2AxMHAQFTVgArNAD//wBW/+wD+QXnBiYARQAAAQYAoXsAAAu2AkAPAQF+VgArNAAABAAR/lQFPwWwAAQACQANACMAK0AVDQwMAxYdBgACBwMCcg4PDwUFAghyACsyETMRMysyEjk5LzMSOS8zMDFBASEBMwEBJzMBARUhNQEXDgIVFBYzMjY3FwYGIyImNTQ2NgLL/k3++QIkqAFa/kwTqQIm/uP86AOCcy5KKSAnHiwPFxlOPFh7LmgE7vsSBbD6UATuwvpQAhzHx/4eOh49RSgeJxEHiw8dZmI0ZV0AAwBW/lQD+QROABsAOgBQACtAFx46Og9DSg9yJzELcjs8PBkKcgkFDwdyACsyMisyETMrMisyEjkvMzAxZRE0JiYjIgYGFSM0PgIzMhYWFREUFhcVIyYmExcjIg4CFRQWFjMyNjY3Fw4DIyImJjU0PgIzARcOAhUUFjMyNjcXBgYjIiY1NDY2At4qVUA7VjDwPnakZnq9bRUU9xETIwKtQ2ZEIihNN0pvQAJODDpdgVRqpl5Bf7h2ARlzL0kqICcfLA4XGU48WHouaNkCBDpULihEK0B4XjZSpXz+H0p1KxAneQHylRkwRCsrRyg9WShrKV5VNlWRXFaFWi/9qDoePUUoHicRB4sPHWZiNGVdAP//AGb/7ATrB0sGJgAnAAABBwB1AcQBSwALtgEoEAEBbVYAKzQA//8ATv/sA/EGAAYmAEcAAAEHAHUBLgAAAAu2ASgUAQGMVgArNAD//wBm/+wE6wdLBiYAJwAAAQcAngDFAUsAC7YBKxABAXhWACs0AP//AE7/7APxBgAGJgBHAAABBgCeLwAAC7YBKxQBAZdWACs0AP//AGb/7ATrBygGJgAnAAABBwCiAakBUwALtgExEAEBglYAKzQA//8ATv/sA/EF3QYmAEcAAAEHAKIBEwAIAAu2ATEUAQGhVgArNAD//wBm/+wE6wdLBiYAJwAAAQcAnwDbAUsAC7YBLhABAXZWACs0AP//AE7/7APxBgAGJgBHAAABBgCfRQAAC7YBLhQBAZVWACs0AP//AJQAAATSBz4GJgAoAAABBwCfAGEBPgALtgIlHgEBdVYAKzQA//8AUP/sBVgGAgQmAEgAAAEHAdQEBAUCAAu2AzkBAQAAVgArNAD//wCUAAAETQbqBiYAKQAAAQcAcACHAUAAC7YEEgcBAbFWACs0AP//AFH/7AQKBa0GJgBJAAABBgBwPAMAC7YBLgsBAdFWACs0AP//AJQAAARNByUGJgApAAABBwChALoBPgALtgQVBwEBXlYAKzQA//8AUf/sBAoF5wYmAEkAAAEGAKFwAAALtgExCwEBflYAKzQA//8AlAAABE0HGwYmACkAAAEHAKIBcQFGAAu2BBkHAQGBVgArNAD//wBR/+wECgXeBiYASQAAAQcAogEmAAkAC7YBNQsBAaFWACs0AAAFAJT+VARNBbAAAwAHAAsADwAlAClAFAoLCxgfDg8PBwJyEBERAwICBghyACsyETMyETMrMhEzLzM5LzMwMWUVITUTESMRARUhNQEVITUBFw4CFRQWMzI2NxcGBiMiJjU0NjYETfz7R/sDVP1gAwD9AAIdcy9JKiAoHiwOGBlPO1l6LmjHx8cE6fpQBbD9oMTEAmDIyPqKOh49RSgeJxEHiw8dZmI0ZV0AAAIAUf5yBAoETgArAEEAJUATEhMTCzQ7DnIZCwdyLC0kJAALcgArMhE5OSsyKzISOS8zMDFFIi4CNTU0PgIzMh4CFRUhNSE1LgIjIg4CFRUUHgIzMjY3Fw4CNxcOAhUUFjMyNjcXBgYjIiY1NDY2All4wYdISoS0aXSuczn8vAJWAi9gUDxdPiEnTGxFV4gyfyNwoQ9zLkopICceLA8XGU48WHsuaBRPjsBvKH/Ok05OjcJ1Z60TQXJGM2CHVChHeVozRkB7M106azoePkMoHyYQB4oPHWViNGVeAP//AJQAAARNBz4GJgApAAABBwCfAKMBPgALtgQWBwEBdVYAKzQA//8AUf/sBAoGAAYmAEkAAAEGAJ9YAAALtgEyCwEBlVYAKzQA//8Aa//sBPIHSwYmACsAAAEHAJ4AxgFLAAu2AS8QAQF4VgArNAD//wBS/lUEDAYABiYASwAAAQYAnkQAAAu2A0IaAQGXVgArNAD//wBr/+wE8gcyBiYAKwAAAQcAoQD0AUsAC7YBMRABAV9WACs0AP//AFL+VQQMBecGJgBLAAABBgChcQAAC7YDRBoBAX5WACs0AP//AGv/7ATyBygGJgArAAABBwCiAasBUwALtgE1EAEBglYAKzQA//8AUv5VBAwF3QQmAEsAAAEHAKIBKAAIAAu2A0gaAQGhVgArNAD//wBr/fYE8gXEBiYAKwAAAQcB1AHm/pIADrQBNQUBAbj/mLBWACs0//8AUv5VBAwGpQQmAEsAAAEHAk4BMAB8AAu2Az8aAQGYVgArNAD//wCUAAAFFwc+BiYALAAAAQcAngDmAT4AC7YDDwsBAXdWACs0AP//AHoAAAP6B18GJgBMAAABBwCeABoBXwALtgIeAwEBJlYAKzQA////tAAAApAHMQYmAC0AAAEHAKX/PQE+AAu2ARIDAQF2VgArNAD///+dAAACeQXrBiYAjQAAAQcApf8m//gAC7YBEgMBAahWACs0AP///9EAAAJ4BuoGJgAtAAABBwBw/zQBQAALtgEGAwEBsVYAKzQA////uwAAAmIFpAYmAI0AAAEHAHD/Hv/6AAu2AQYDAQHjVgArNAD////dAAACZwclBiYALQAAAQcAof9oAT4AC7YBCQMBAV5WACs0AP///8YAAAJQBd4GJgCNAAABBwCh/1H/9wALtgEJAwEBkFYAKzQA//8AGP5aAaAFsAYmAC0AAAEGAKTvBgALtgEFAgAAAFYAKzQA//////5UAZAF1gYmAE0AAAEGAKTWAAALtgIRAgAAAFYAKzQA//8AnwAAAaQHGwYmAC0AAAEHAKIAHgFGAAu2AQ0DAQGBVgArNAD//wCl/+wGKQWwBCYALQAAAAcALgJEAAD//wB8/ksDkQXWBCYATQAAAAcATgIKAAD//wAv/+wEswc1BiYALgAAAQcAngFvATUAC7YBFwEBAWpWACs0AP///67+SwJqBd4GJgCcAAABBwCe/yb/3gALtgEVAAEBglYAKzQA//8AlP5JBRYFsAQmAC8AAAEHAdQBnP7lAA60AxcCAQC4/+ewVgArNP//AH3+NAQ3BgAGJgBPAAABBwHUATL+0AAOtAMXAgEBuP/UsFYAKzT//wCUAAAEJAczBiYAMAAAAQcAdQAsATMAC7YCCAcBAVxWACs0AP//AIwAAAJfB5AGJgBQAAABBwB1AB0BkAALtgEEAwEBcVYAKzQA//8AlP4GBCQFsAQmADAAAAEHAdQBb/6iAA60AhECAQG4/5ewVgArNP//AFn+BgF+BgAEJgBQAAABBwHUABL+ogAOtAENAgEBuP+XsFYAKzT//wCUAAAEJAWxBiYAMAAAAQcB1AILBLEAC7YCEQcAAAFWACs0AP//AIwAAALgBgIEJgBQAAABBwHUAYwFAgALtgENAwAAAlYAKzQA//8AlAAABCQFsAYmADAAAAAHAKIBzf3Q//8AjAAAAusGAAQmAFAAAAAHAKIBZf2t//8AlAAABRcHNwYmADIAAAEHAHUB7gE3AAu2AQoGAQFhVgArNAD//wB6AAAD+gYABiYAUgAAAQcAdQFXAAAAC7YCHAMBAaBWACs0AP//AJT+AgUXBbAEJgAyAAABBwHUAeD+ngAOtAETBQEBuP+XsFYAKzT//wB6/gYD+gROBCYAUgAAAQcB1AFG/qIADrQCJQIBAbj/l7BWACs0//8AlAAABRcHNwYmADIAAAEHAJ8BBQE3AAu2ARAJAQFqVgArNAD//wB6AAAD+gYABiYAUgAAAQYAn20AAAu2AiIDAQGpVgArNAD///+jAAAD+gYDBiYAUgAAAQcB1P9cBQMAC7YCIAMBATpWACs0AP//AGX/7AUdBuUGJgAzAAABBwBwANUBOwALtgIuEQEBlFYAKzQA//8ATv/sBDwFrQYmAFMAAAEGAHBSAwALtgIuBgEB0VYAKzQA//8AZf/sBR0HHwYmADMAAAEHAKEBCAE4AAu2AjERAQFBVgArNAD//wBO/+wEPAXnBiYAUwAAAQcAoQCGAAAAC7YCMQYBAX5WACs0AP//AGX/7AUdBzcGJgAzAAABBwCmAWABOAANtwMCLBEBAUVWACs0NAD//wBO/+wEPAX/BiYAUwAAAQcApgDdAAAADbcDAiwGAQGCVgArNDQA//8AlAAABN8HNwYmADYAAAEHAHUBcwE3AAu2Ah4AAQFhVgArNAD//wB9AAAC9AYABiYAVgAAAQcAdQCyAAAAC7YCFwMBAaBWACs0AP//AJT+BgTfBbAEJgA2AAABBwHUAXH+ogAOtAInGAEBuP+XsFYAKzT//wBS/gcCuQROBCYAVgAAAQcB1AAL/qMADrQCIAIBAbj/mLBWACs0//8AlAAABN8HNwYmADYAAAEHAJ8AigE3AAu2AiQAAQFqVgArNAD//wA2AAAC/QYABiYAVgAAAQYAn8gAAAu2Ah0DAQGpVgArNAD//wBL/+wEjgc4BiYANwAAAQcAdQGVATgAC7YBOg8BAU9WACs0AP//AEn/7APHBgAGJgBXAAABBwB1ATYAAAALtgE2DgEBjFYAKzQA//8AS//sBI4HOAYmADcAAAEHAJ4AlgE4AAu2AT0PAQFaVgArNAD//wBJ/+wDxwYABiYAVwAAAQYAnjcAAAu2ATkOAQGXVgArNAD//wBL/j4EjgXEBiYANwAAAQcAeQGg//8AC7YBOisAABNWACs0AP//AEn+NQPHBE4GJgBXAAABBwB5AT7/9gALtgE2KQAAClYAKzQA//8AS/37BI4FxAYmADcAAAEHAdQBjv6XAA60AUMrAQG4/6CwVgArNP//AEn98gPHBE4GJgBXAAABBwHUASv+jgAOtAE/KQEBuP+XsFYAKzT//wBL/+wEjgc4BiYANwAAAQcAnwCsATgAC7YBQA8BAVhWACs0AP//AEn/7APHBgAGJgBXAAABBgCfTQAAC7YBPA4BAZVWACs0AP//AC3+AAS0BbAGJgA4AAABBwHUAXz+nAAOtAIRAgEBuP+NsFYAKzT//wAK/fwCdQVDBiYAWAAAAQcB1ADG/pgADrQCHxEBAbj/obBWACs0//8ALf5DBLQFsAYmADgAAAEHAHkBjgAEAAu2AggCAQAAVgArNAD//wAK/j8CowVDBiYAWAAAAQcAeQDZAAAAC7YCFhEAABRWACs0AP//AC0AAAS0BzYGJgA4AAABBwCfAJwBNgALtgIOAwEBaVYAKzQA//8ACv/sAyIGfgQmAFgAAAEHAdQBzgV+AA60AhoEAQC4/6iwVgArNP//AID/7AS/ByoGJgA5AAABBwClALkBNwALtgEkCwEBa1YAKzQA//8Ad//sA/kF9AYmAFkAAAEGAKVVAQALtgIqEQEBqlYAKzQA//8AgP/sBL8G4wYmADkAAAEHAHAAsAE5AAu2ARgLAQGmVgArNAD//wB3/+wD+QWtBiYAWQAAAQYAcE0DAAu2Ah4RAQHlVgArNAD//wCA/+wEvwceBiYAOQAAAQcAoQDkATcAC7YBGwABAVNWACs0AP//AHf/7AP5BecGJgBZAAABBwChAIAAAAALtgIhEQEBklYAKzQA//8AgP/sBL8HkQYmADkAAAEHAKMBTAFsAA23AgEhAAEBR1YAKzQ0AP//AHf/7AP5BloGJgBZAAABBwCjAOgANQANtwMCJxEBAYZWACs0NAD//wCA/+wEvwc2BiYAOQAAAQcApgE7ATcADbcCARYAAQFXVgArNDQA//8Ad//sBDAF/wYmAFkAAAEHAKYA2AAAAA23AwIcEQEBllYAKzQ0AAACAID+jAS/BbAAFQArABtADR4lAQsCchcWEREGCXIAKzISOTkrMi8zMDFBMxEUBgYjIiYmNREzERQWFjMyNjY1AxcOAhUUFjMyNjcXBgYjIiY1NDY2A8X6kPeYnfaN+kiEWlqDSGNzLkkqICceLA8XGU48WHsuaAWw/DOm4HFx4KYDzfwzaYdAQIdp/o86Hj5EKB4nEQeLDx1lYjVlXQAAAwB3/lQD+QQ6AAQAGwAxACFAESQrD3IBEQZyHB0dBAQYCwtyACsyMhEzETMrMisyMDFlETMRIxM3FA4CIyIuAjURMxEUHgIzMjY2ExcOAhUUFjMyNjcXBgYjIiY1NDY2Awfy5BRRMGScbU+EXzTxHDBAJGd3M0dzL0kqICgeLA4YGU87WXouaP8DO/vGAeACbbeHSy5gmmsCu/1DO08wFFGK/rA6Hj1FKB4nEQeLDx1mYjRlXf//AC8AAAbmBzcGJgA7AAABBwCeAakBNwALtgQZFQEBbFYAKzQA//8AIwAABcgGAAYmAFsAAAEHAJ4BDAAAAAu2BBkVAQGrVgArNAD//wAIAAAE2Qc2BiYAPQAAAQcAngCMATYAC7YBDAIBAWtWACs0AP//AAz+SwPeBgAGJgBdAAABBgCeHAAAC7YCHAEBAatWACs0AP//AAgAAATZBwMGJgA9AAABBwBqAK0BNgANtwIBHgIBAXdWACs0NAD//wBQAAAEjgc3BiYAPgAAAQcAdQGHATcAC7YDDg0BAWFWACs0AP//AFEAAAPBBgAGJgBeAAABBwB1AR8AAAALtgMODQEBoFYAKzQA//8AUAAABI4HFAYmAD4AAAEHAKIBbAE/AAu2AxcIAQF2VgArNAD//wBRAAADwQXdBiYAXgAAAQcAogEEAAgAC7YDFwgBAbVWACs0AP//AFAAAASOBzcGJgA+AAABBwCfAJ4BNwALtgMUCAEBalYAKzQA//8AUQAAA8EGAAYmAF4AAAEGAJ82AAALtgMUCAEBqVYAKzQA/////AAAB04HQgYmAIEAAAEHAHUCwQFCAAu2BhkDAQFsVgArNAD//wBI/+sGhgYBBiYAhgAAAQcAdQJ1AAEAC7YDXw8BAY1WACs0AP//AGn/ogUiB4AGJgCDAAABBwB1AeMBgAALtgM0FgEBllYAKzQA//8ATv91BDwF/QYmAIkAAAEHAHUBMv/9AAu2AzAKAQGLVgArNAD///+lAAAEKwSNBiYCSgAAAAcCQP8Y/2v///+lAAAEKwSNBiYCSgAAAAcCQP8Y/2v//wAlAAAEGQSNBiYB8gAAAAYCQDO6//8ACAAABJEGHgYmAk0AAAEHAEQAwAAeAAu2AxAHAQFrVgArNAD//wAIAAAEkQYeBiYCTQAAAQcAdQFnAB4AC7YDDgMBAWtWACs0AP//AAgAAASRBh4GJgJNAAABBgCeZx4AC7YDEwMBAWtWACs0AP//AAgAAASRBhIGJgJNAAABBgClah8AC7YDGwMBAWtWACs0AP//AAgAAASRBesGJgJNAAABBwBqAIgAHgANtwQDFwMBAWtWACs0NAD//wAIAAAEkQZ4BiYCTQAAAQcAowD9AFMADbcEAxkDAQFRVgArNDQA//8ACAAABJEGmAYmAk0AAAAHAkEA/P/+//8AT/4+BEMEnQYmAksAAAAHAHkBbf////8AdgAAA7YGHgYmAkIAAAEHAEQAkwAeAAu2BBIHAQFsVgArNAD//wB2AAADtgYeBiYCQgAAAQcAdQE6AB4AC7YEEAcBAWxWACs0AP//AHYAAAO2Bh4GJgJCAAABBgCeOx4AC7YEFgcBAWxWACs0AP//AHYAAAO2BesGJgJCAAABBgBqXB4ADbcFBBkHAQGEVgArNDQA////qAAAAXwGHgYmAf0AAAEHAET/cAAeAAu2AQYDAQFrVgArNAD//wCGAAACWQYeBiYB/QAAAQYAdRceAAu2AQQDAQFrVgArNAD///+nAAACWwYeBiYB/QAAAQcAnv8XAB4AC7YBCQMBAXZWACs0AP///5wAAAJlBesGJgH9AAABBwBq/zkAHgANtwIBDQMBAYRWACs0NAD//wB2AAAEZwYSBiYB+AAAAQcApQCLAB8AC7YBGAYBAXZWACs0AP//AE7/8ARuBh4GJgH3AAABBwBEAM4AHgALtgIuEQEBW1YAKzQA//8ATv/wBG4GHgYmAfcAAAEHAHUBdQAeAAu2AiwRAQFbVgArNAD//wBO//AEbgYeBiYB9wAAAQYAnnUeAAu2AjERAQFbVgArNAD//wBO//AEbgYSBiYB9wAAAQYApXgfAAu2AjERAQFvVgArNAD//wBO//AEbgXrBiYB9wAAAQcAagCXAB4ADbcDAjURAQF0VgArNDQA//8Aaf/wBCAGHgYmAfEAAAEHAEQAswAeAAu2ARgLAQFrVgArNAD//wBp//AEIAYeBiYB8QAAAQcAdQFaAB4AC7YBFgsBAWtWACs0AP//AGn/8AQgBh4GJgHxAAABBgCeWx4AC7YBGwsBAWtWACs0AP//AGn/8AQgBesGJgHxAAABBgBqfB4ADbcCAR8LAQGEVgArNDQA//8ABgAABDgGHgYmAe0AAAEHAHUBMQAeAAu2Aw4JAQFrVgArNAD//wAIAAAEkQXLBiYCTQAAAQYAcGEhAAu2AxADAQGwVgArNAD//wAIAAAEkQYFBiYCTQAAAQcAoQCVAB4AC7YDEwMBAV1WACs0AAAEAAj+VASRBI0ABAAJAA0AIwAhQA8NDAwDFh0IA30PDgUFARIAPzMRMzM/My8zEjkvMzAxQQEjATMBASczAQEVITUBFw4CFRQWMzI2NxcGBiMiJjU0NjYCWv6i9AHVogEe/qAlpQHU/v39ZgL1cy5KKSAnHiwPFxlOPFh7LmgDnvxiBI37cwOg7ftzAbC1tf6KOh49RSgeJxEHiw8dZmI0ZV0A//8AT//wBEMGHgYmAksAAAEHAHUBZwAeAAu2ASgQAQFbVgArNAD//wBP//AEQwYeBiYCSwAAAQYAnmgeAAu2AS0QAQFbVgArNAD//wBP//AEQwX7BiYCSwAAAQcAogFMACYAC7YBMRABAXBWACs0AP//AE//8ARDBh4GJgJLAAABBgCffh4AC7YBLhABAWRWACs0AP//AGEAAAQrBh4GJgJKAAABBgCf8x4AC7YCJB0BAXRWACs0AP//AHYAAAO2BcsGJgJCAAABBgBwNSEAC7YEEgcBAbBWACs0AP//AHYAAAO2BgUGJgJCAAABBgChaB4AC7YEFQcBAV5WACs0AP//AHYAAAO2BfsGJgJCAAABBwCiAR8AJgALtgQZBwEBgFYAKzQAAAUAdv5UA7YEjQADAAcACwAPACUAI0AQGB8LCgoGDw4HfREQEAUGEgA/MzMRMz8zMxI5LzMvMzAxZRUhNRMRIxEBFSE1ARUhNQEXDgIVFBYzMjY3FwYGIyImNTQ2NgO2/WVM8QLq/bsCmf1nAcVzL0kqICgeLA4YGU87WXouaL+/vwPO+3MEjf4tv78B08DA+606Hj1FKB4nEQeLDx1mYjRlXQD//wB2AAADtgYeBiYCQgAAAQYAn1EeAAu2BBYHAQF0VgArNAD//wBW//AESwYeBiYB/wAAAQYAnm8eAAu2ATAQAQFmVgArNAD//wBW//AESwYFBiYB/wAAAQcAoQCdAB4AC7YBMBABAU1WACs0AP//AFb/8ARLBfsGJgH/AAABBwCiAVMAJgALtgE0EAEBcFYAKzQA//8AVv37BEsEnQYmAf8AAAEHAdQBc/6XAA60ATQFAQG4/5mwVgArNP//AHYAAARnBh4GJgH+AAABBgCefR4AC7YDEQcBAXZWACs0AP///5EAAAJtBhIGJgH9AAABBwCl/xoAHwALtgEJAwEBf1YAKzQA////rwAAAlYFywYmAf0AAAEHAHD/EgAhAAu2AQYDAQGwVgArNAD///+6AAACRAYFBiYB/QAAAQcAof9FAB4AC7YBCQMBAV1WACs0AP//ABf+VAGNBI0GJgH9AAAABgCk7gD//wB9AAABggX7BiYB/QAAAQYAovwmAAu2AQ0DAQGAVgArNAD//wAm//AEPgYeBiYB/AAAAQcAngD6AB4AC7YBGQEBAXZWACs0AP//AHb+AwRnBI0GJgH7AAAABwHUART+n///AHYAAAOSBh4GJgH6AAABBgB1DR4AC7YCCAcBAWtWACs0AP//AHb+BAOSBI0GJgH6AAABBwHUARL+oAAOtAIRBgEBuP+VsFYAKzT//wB2AAADkgSQBiYB+gAAAAcB1AGSA5D//wB2AAADkgSNBiYB+gAAAAcAogF1/UH//wB2AAAEZwYeBiYB+AAAAQcAdQGIAB4AC7YBCgYBAWtWACs0AP//AHb9/QRnBI0GJgH4AAAABwHUAXz+mf//AHYAAARnBh4GJgH4AAABBwCfAJ8AHgALtgEQBgEBdFYAKzQA//8ATv/wBG4FywYmAfcAAAEGAHBwIQALtgIuEQEBoFYAKzQA//8ATv/wBG4GBQYmAfcAAAEHAKEAowAeAAu2AjERAQFNVgArNAD//wBO//AEbgYdBiYB9wAAAQcApgD7AB4ADbcDAjARAQFRVgArNDQA//8AdQAABDsGHgYmAfQAAAEHAHUBGgAeAAu2Ah8AAQFrVgArNAD//wB1/gQEOwSNBiYB9AAAAAcB1AEb/qD//wB1AAAEOwYeBiYB9AAAAQYAnzAeAAu2AiUAAQF0VgArNAD//wA///AD8AYeBiYB8wAAAQcAdQFHAB4AC7YBOg8BAVtWACs0AP//AD//8APwBh4GJgHzAAABBgCeRx4AC7YBPw8BAWZWACs0AP//AD/+PwPwBJ0GJgHzAAAABwB5AVIAAP//AD//8APwBh4GJgHzAAABBgCfXR4AC7YBQA8BAWZWACs0AP//ACX+AwQZBI0GJgHyAAABBwHUASn+nwAOtAIRAgEBuP+QsFYAKzT//wAlAAAEGQYeBiYB8gAAAQYAn0oeAAu2Ag4HAQF0VgArNAD//wAl/kYEGQSNBiYB8gAAAAcAeQE8AAf//wBp//AEIAYSBiYB8QAAAQYApV0fAAu2ARsLAQF/VgArNAD//wBp//AEIAXLBiYB8QAAAQYAcFUhAAu2ARgLAQGwVgArNAD//wBp//AEIAYFBiYB8QAAAQcAoQCIAB4AC7YBGwsBAV1WACs0AP//AGn/8AQgBngGJgHxAAABBwCjAPAAUwANtwIBIQsBAVFWACs0NAD//wBp//AEOAYdBiYB8QAAAQcApgDgAB4ADbcCARoLAQFhVgArNDQAAAIAaf6EBCAEjQAVACsAGkAMHiUXFhYRBgtyDAB9AD8yKzIyETMvMzAxQTMRFAYGIyImJjURMxEUFhYzMjY2NQMXDgIVFBYzMjY3FwYGIyImNTQ2NgMu8nzWiYvXevA5aklJaDhTcy9JKiAnHywOFxlOPFh6LmgEjf0AhrleXrmGAwD9AE1jLi5jTf7dOh49RSgeJxEHiw8dZmI0ZV3//wAnAAAF5QYeBiYB7wAAAQcAngEaAB4AC7YEGwoBAXZWACs0AP//AAYAAAQ4Bh4GJgHtAAABBgCeMR4AC7YDEwkBAXZWACs0AP//AAYAAAQ4BesGJgHtAAABBgBqUh4ADbcEAxcJAQGEVgArNDQA//8AQQAAA/UGHgYmAewAAAEHAHUBNAAeAAu2Aw4NAQFrVgArNAD//wBBAAAD9QX7BiYB7AAAAQcAogEZACYAC7YDFw0BAYBWACs0AP//AEEAAAP1Bh4GJgHsAAABBgCfSx4AC7YDFA0BAXRWACs0AP//ABEAAAU/Bj8GJgAlAAABBgCurf8ADrQDDgMAALj/PrBWACs0////QgAABLEGQQQmAClkAAEHAK7+dQABAA60BBAHAAC4/z+wVgArNP///0sAAAV7BkAEJgAsZAAABwCu/n4AAP///04AAAIEBkIEJgAtZAABBwCu/oEAAgAOtAEEAwAAuP9BsFYAKzT///+1/+wFMQY/BCYAMxQAAQcArv7o//8ADrQCLBEAALj/KrBWACs0////QQAABT0GPwQmAD1kAAEHAK7+dP//AAu2AQoIAACOVgArNAD////CAAAE7wY/BCYAuhQAAQcArv71//8ADrQDNh0AALj/KrBWACs0////hf/0As4GmwYmAMMAAAEHAK//F//rABBACQMCASsAAQGiVgArNDQ0//8AEQAABT8FsAYGACUAAP//AJQAAASlBbAGBgAmAAD//wCUAAAETQWwBgYAKQAA//8AUAAABI4FsAYGAD4AAP//AJQAAAUXBbAGBgAsAAD//wClAAABoAWwBgYALQAA//8AlAAABRYFsAYGAC8AAP//AJQAAAZqBbAGBgAxAAD//wCUAAAFFwWwBgYAMgAA//8AZf/sBR0FxAYGADMAAP//AJQAAATPBbAGBgA0AAD//wAtAAAEtAWwBgYAOAAA//8ACAAABNkFsAYGAD0AAP//ACYAAATpBbAGBgA8AAD///++AAAChwcLBiYALQAAAQcAav9bAT4ADbcCARkDAQGDVgArNDQA//8ACAAABNkHAwYmAD0AAAEHAGoArQE2AA23AgEeAgEBd1YAKzQ0AP//AFb/6wR7BjwGJgC7AAABBwCuAUn//AALtgNCBgEBmlYAKzQA//8AYv/sBBIGOwYmAL8AAAEHAK4BFf/7AAu2AkArAQGaVgArNAD//wB9/mEEBgY8BiYAwQAAAQcArgEd//wAC7YCHQMBAa5WACs0AP//AKP/9AJeBiYGJgDDAAABBgCuAeYAC7YBEgABAZlWACs0AP//AH//6wQEBqMGJgDLAAABBgCvHPMAEEAJAwIBOA8BAaJWACs0NDT//wCNAAAEbQQ6BgYAjgAA//8ATv/sBDwETgYGAFMAAP//AJP+YAQkBDoGBgB2AAD//wAWAAAD3wQ6BgYAWgAA//8ANP5NBFsESgYGAooAAP///8P/9AKMBbgGJgDDAAABBwBq/2D/6wANtwIBJwABAaJWACs0NAD//wB//+sEBAXABiYAywAAAQYAamXzAA23AgE0DwEBolYAKzQ0AP//AE7/7AQ8BjwGJgBTAAABBwCuARv//AALtgIsBgEBmlYAKzQA//8Af//rBAQGLgYmAMsAAAEHAK4BBv/uAAu2AR8PAQGZVgArNAD//wBl/+sGMAYsBiYAzgAAAQcArgIn/+wAC7YCQB8BAZZWACs0AP//AJQAAARNBwsGJgApAAABBwBqAK4BPgANtwUEJQcBAYNWACs0NAD//wCZAAAENwc+BiYAsQAAAQcAdQGEAT4AC7YBBgUBAWxWACs0AAABAEv/7ASOBcQAOQAbQA0KJg82MSsJchgUDwNyACvMMyvMMxI5OTAxQTQuAicuAzU0PgIzMhYWFSM0JiYjIgYGFRQeAhceAxUUDgIjIi4CNTMUHgIzMjY2A5IbRHtfaK+CSEuLvnOi63/5PXteWXY6Jk52UHm0eDxKib91acumYvsxWHVDWHc8AXctRjo3HSBPaYlaWZJrO3jKekhvQDZcOilDOTIXJFdui1hck2c3OHOtdEdkPx4yWv//AKUAAAGgBbAGBgAtAAD///++AAAChwcLBiYALQAAAQcAav9bAT4ADbcCARkDAQGDVgArNDQA//8AL//sA+UFsAYGAC4AAP//AJkAAAUsBbAGBgJGAAD//wCUAAAFFgczBiYALwAAAQcAdQFxATMAC7YDDgMBAVtWACs0AP//ADL/6wThByUGJgDeAAABBwChANkBPgALtgIeAQEBXlYAKzQA//8AEQAABT8FsAYGACUAAP//AJQAAASlBbAGBgAmAAD//wCZAAAENwWwBgYAsQAA//8AlAAABE0FsAYGACkAAP//AJIAAAUNByUGJgDcAAABBwChARkBPgALtgEPAQEBXlYAKzQA//8AlAAABmoFsAYGADEAAP//AJQAAAUXBbAGBgAsAAD//wBl/+wFHQXEBgYAMwAA//8AmQAABRQFsAYGALYAAP//AJQAAATPBbAGBgA0AAD//wBm/+wE6wXEBgYAJwAA//8ALQAABLQFsAYGADgAAP//ACYAAATpBbAGBgA8AAD//wBW/+wD+QROBgYARQAA//8AUf/sBAoETgYGAEkAAP//AIQAAAQPBdoGJgDwAAABBwChAJL/8wALtgEPAQEBfVYAKzQA//8ATv/sBDwETgYGAFMAAP//AH3+YAQvBE4GBgBUAAAAAQBO/+wD8QROACcAE0AJAAkdFAdyCQtyACsrMhEzMDFlMjY2NzMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CAjY7XzsD4wJ4xnh8uHo9PXq4e4LEcQLjAzVfQklgNhcWN2CsL1Q3aaxlVZbEcCNwxZZVZ7d5PGE6O2V9QyNDfmM7AP//AAz+SwPeBDoGBgBdAAD//wAfAAAD6gQ6BgYAXAAA//8AUf/sBAoFzQYmAEkAAAEGAGpjAAANtwIBQQsBAaNWACs0NAD//wCDAAADTAXzBiYA7AAAAQcAdQDE//MAC7YBBgUBAYtWACs0AP//AEn/7APHBE4GBgBXAAD//wB8AAABkAXWBgYATQAA////qAAAAnEFxAYmAI0AAAEHAGr/Rf/3AA23AgEZAwEBtVYAKzQ0AP///6v+SwGHBdYGBgBOAAD//wCPAAAEZQXyBiYA8QAAAQcAdQFL//IAC7YDDgMBAYpWACs0AP//AAz+SwPeBecGJgBdAAABBgChSQAAC7YCHgEBAZJWACs0AP//AC8AAAbmBzcGJgA7AAABBwBEAgIBNwALtgQYFQEBYVYAKzQA//8AIwAABcgGAAYmAFsAAAEHAEQBZQAAAAu2BBgVAQGgVgArNAD//wAvAAAG5gc3BiYAOwAAAQcAdQKpATcAC7YEFgEBAWFWACs0AP//ACMAAAXIBgAGJgBbAAABBwB1AgwAAAALtgQWAQEBoFYAKzQA//8ALwAABuYHBAYmADsAAAEHAGoBygE3AA23BQQrFQEBeFYAKzQ0AP//ACMAAAXIBc0GJgBbAAABBwBqAS0AAAANtwUEKxUBAbdWACs0NAD//wAIAAAE2Qc2BiYAPQAAAQcARADlATYAC7YBCwIBAWBWACs0AP//AAz+SwPeBgAGJgBdAAABBgBEdQAAC7YCGwEBAaBWACs0AP//AFID/gEJBgAGBgALAAD//wBgA/gCOgYABgYABgAA//8AjP/yA74FsAQmAAUAAAAHAAUCHgAA////qv5LAnEF3gYmAJwAAAEHAJ//PP/eAAu2ARgAAQGAVgArNAD//wA3BAUBYQYABgYBhQAA//8AlAAABmoHNwYmADEAAAEHAHUCkwE3AAu2AxEAAQFhVgArNAD//wB8AAAGfAYABiYAUQAAAQcAdQKkAAAAC7YDMwMBAaBWACs0AP//ABH+cgU/BbAGJgAlAAABBwCnAXQABAAQtQQDEQUBAbj/tbBWACs0NP//AFb+dwP5BE4GJgBFAAABBwCnAKcACQAQtQMCPjEBAbj/ybBWACs0NP//AJQAAARNBz4GJgApAAABBwBEAOUBPgALtgQSBwEBbFYAKzQA//8AkgAABQ0HPgYmANwAAAEHAEQBRAE+AAu2AQwBAQFsVgArNAD//wBR/+wECgYABiYASQAAAQcARACbAAAAC7YBLgsBAYxWACs0AP//AIQAAAQPBfMGJgDwAAABBwBEAL3/8wALtgEMAQEBi1YAKzQA//8ARgAABWQFsAYGALkAAP//AFL+JQV/BDoGBgDNAAD//wAQAAAE9Qb9BiYBGQAAAQcArAROAQ8ADbcDAhUTAQEtVgArNDQA////8gAABBoF0AYmARoAAAEHAKwD6v/iAA23AwIZFwEBe1YAKzQ0AP//AE7+SwhoBE4EJgBTAAAABwBdBIoAAP//AGX+SwlhBcQEJgAzAAAABwBdBYMAAP//AEn+NwSCBcQGJgDbAAABBwJrAZD/nQALtgJCKgAAZFYAKzQA//8ATv44A8cETQYmAO8AAAEHAmsBNP+eAAu2Aj8pAABlVgArNAD//wBm/joE6wXEBiYAJwAAAQcCawHR/6AAC7YBKwUAAGRWACs0AP//AE7+OgPxBE4GJgBHAAABBwJrAUj/oAALtgErCQAAZFYAKzQA//8ACAAABNkFsAYGAD0AAP//AB7+XwP1BDoGBgC9AAD//wClAAABoAWwBgYALQAA//8AFQAAB6IHJQYmANoAAAEHAKECHgE+AAu2BR0NAQFeVgArNAD//wAgAAAGawXaBiYA7gAAAQcAoQGO//MAC7YFHQ0BAX1WACs0AP//AKUAAAGgBbAGBgAtAAD//wARAAAFPwceBiYAJQAAAQcAoQDwATcAC7YDEwcBAVNWACs0AP//AFb/7AP5BecGJgBFAAABBgChewAAC7YCQA8BAX5WACs0AP//ABEAAAU/BwQGJgAlAAABBwBqAOQBNwANtwQDIwcBAXhWACs0NAD//wBW/+wD+QXNBiYARQAAAQYAam8AAA23AwJQDwEBo1YAKzQ0AP////wAAAdOBbAGBgCBAAD//wBI/+sGhgRPBgYAhgAA//8AlAAABE0HJQYmACkAAAEHAKEAugE+AAu2BBUHAQFeVgArNAD//wBR/+wECgXnBiYASQAAAQYAoXAAAAu2ATELAQF+VgArNAD//wBV/+sFIwbcBiYBWAAAAQcAagDCAQ8ADbcCAUIAAQFBVgArNDQA//8AV//sA/YEUAYGAJ0AAP//AFf/7AP2Bc4GJgCdAAABBgBqYgEADbcCAUAAAQGiVgArNDQA//8AFQAAB6IHCwYmANoAAAEHAGoCEQE+AA23BgUtDQEBg1YAKzQ0AP//ACAAAAZrBcAGJgDuAAABBwBqAYH/8wANtwYFLQ0BAaJWACs0NAD//wBJ/+wEggcYBiYA2wAAAQcAagCfAUsADbcDAlQVAQGEVgArNDQA//8ATv/sA8cFzAYmAO8AAAEGAGpI/wANtwMCURQBAaNWACs0NAD//wCSAAAFDQbqBiYA3AAAAQcAcADmAUAAC7YBDAgBAbFWACs0AP//AIQAAAQPBaAGJgDwAAABBgBwXvYAC7YBDAgBAdBWACs0AP//AJIAAAUNBwsGJgDcAAABBwBqAQwBPgANtwIBHwEBAYNWACs0NAD//wCEAAAEDwXABiYA8AAAAQcAagCF//MADbcCAR8BAQGiVgArNDQA//8AZf/sBR0HBQYmADMAAAEHAGoA/AE4AA23AwJBEQEBZlYAKzQ0AP//AE7/7AQ8Bc0GJgBTAAABBgBqeQAADbcDAkEGAQGjVgArNDQA//8AYP/sBRkFxAYGARcAAP//AE3/7AQ7BE4GBgEYAAD//wBg/+wFGQcHBiYBFwAAAQcAagEMAToADbcEA08AAQFqVgArNDQA//8ATf/sBDsFzgYmARgAAAEGAGptAQANtwQDQQABAaVWACs0NAD//wBj/+wE6AcZBiYA5wAAAQcAagDZAUwADbcDAkIeAQGFVgArNDQA//8AUP/rA+gFzQYmAP8AAAEGAGpQAAANtwMCQQkBAaNWACs0NAD//wAy/+sE4QbqBiYA3gAAAQcAcACmAUAAC7YCGxgBAbFWACs0AP//AAz+SwPeBa0GJgBdAAABBgBwFgMAC7YCGxgBAeVWACs0AP//ADL/6wThBwsGJgDeAAABBwBqAM0BPgANtwMCLgEBAYNWACs0NAD//wAM/ksD3gXNBiYAXQAAAQYAaj0AAA23AwIuAQEBt1YAKzQ0AP//ADL/6wThBz0GJgDeAAABBwCmATEBPgANtwMCGQEBAWJWACs0NAD//wAM/ksD+QX/BiYAXQAAAQcApgChAAAADbcDAhkBAQGWVgArNDQA//8AkQAABO0HCwYmAOEAAAEHAGoBDgE+AA23AwIvFgEBg1YAKzQ0AP//AGAAAAPhBcAGJgD5AAABBgBqYvMADbcDAi0DAQGiVgArNDQA//8AmQAABlQHCwYmAOUAAAEHAGoBugE+AA23AwIyHAEBg1YAKzQ0AP//AI8AAAXPBcAGJgD9AAABBwBqAXT/8wANtwMCMhwBAaJWACs0NAD//wBQ/+wEAgYABgYASAAA//8AEf6aBT8FsAYmACUAAAEHAK0FCgADAA60AxEFAQG4/3WwVgArNP//AFb+nwP5BE4GJgBFAAABBwCtBD0ACAAOtAI+MQEBuP+JsFYAKzT//wARAAAFPwe6BiYAJQAAAQcAqwUDAT0AC7YDDwcBAXFWACs0AP//AFb/7AP5BoQGJgBFAAABBwCrBI0ABwALtgI8DwEBnFYAKzQA//8AEQAABT8HqwYmACUAAAEHAlEAwgEhAA23BAMSBwEBYVYAKzQ0AP//AFb/7ATIBnQGJgBFAAABBgJRTeoADbcDAkEPAQGMVgArNDQA//8AEQAABT8HqQYmACUAAAEHAlIAwwEqAA23BAMQBwEBXFYAKzQ0AP///5//7AP5BnIGJgBFAAABBgJSTvMADbcDAj0PAQGHVgArNDQA//8AEQAABT8H3QYmACUAAAEHAlMAwgEVAA23BAMTAwEBUFYAKzQ0AP//AFb/7ARTBqYGJgBFAAABBgJTTd4ADbcDAkAPAQF7VgArNDQA//8AEQAABT8H1AYmACUAAAEHAlQAxAEHAA23BAMQBwEBOlYAKzQ0AP//AFb/7AP5Bp0GJgBFAAABBgJUT9AADbcDAj0PAQFlVgArNDQA//8AEf6aBT8HNwYmACUAAAAnAJ4AwgE3AQcArQUKAAMAF7QEGgUBAbj/dbdWAxEHAQFsVgArNCs0AP//AFb+nwP5BgAGJgBFAAAAJgCeTQABBwCtBD0ACAAXtANHMQEBuP+Jt1YCPg8BAZdWACs0KzQA//8AEQAABT8HrgYmACUAAAEHAlYA6gEyAA23BAMTBwEBXFYAKzQ0AP//AFb/7AP5BngGJgBFAAABBgJWdfwADbcDAkAPAQGHVgArNDQA//8AEQAABT8HrgYmACUAAAEHAk8A6gEyAA23BAMTBwEBXFYAKzQ0AP//AFb/7AP5BngGJgBFAAABBgJPdfwADbcDAkAPAQGHVgArNDQA//8AEQAABT8IPQYmACUAAAEHAlcA6AE2AA23BAMTBwEBblYAKzQ0AP//AFb/7AP5BwYGJgBFAAABBgJXc/8ADbcDAkAPAQGZVgArNDQA//8AEQAABT8IFgYmACUAAAEHAmoA6wE8AA23BAMTBwEBb1YAKzQ0AP//AFb/7AP5Bt8GJgBFAAABBgJqdgUADbcDAkAPAQGaVgArNDQA//8AEf6aBT8HHgYmACUAAAAnAKEA8AE3AQcArQUKAAMAF7QEIAUBAbj/dbdWAxMHAQFTVgArNCs0AP//AFb+nwP5BecGJgBFAAAAJgChewABBwCtBD0ACAAXtANNMQEBuP+Jt1YCQA8BAX5WACs0KzQA//8AlP6hBE0FsAYmACkAAAEHAK0EywAKAA60BBMCAQG4/3+wVgArNP//AFH+lwQKBE4GJgBJAAABBwCtBI4AAAAOtAEvAAEBuP+JsFYAKzT//wCUAAAETQfBBiYAKQAAAQcAqwTNAUQAC7YEEQcBAXxWACs0AP//AFH/7AQKBoQGJgBJAAABBwCrBIIABwALtgEtCwEBnFYAKzQA//8AlAAABE0HMQYmACkAAAEHAKUAjwE+AAu2BB4HAQF2VgArNAD//wBR/+wECgX0BiYASQAAAQYApUUBAAu2AToLAQGWVgArNAD//wCUAAAFBweyBiYAKQAAAQcCUQCMASgADbcFBBQHAQFsVgArNDQA//8AUf/sBL0GdQYmAEkAAAEGAlFC6wANtwIBMAsBAYxWACs0NAD////eAAAETQewBiYAKQAAAQcCUgCNATEADbcFBBIHAQFnVgArNDQA////lP/sBAoGcwYmAEkAAAEGAlJD9AANtwIBLgsBAYdWACs0NAD//wCUAAAEkgfkBiYAKQAAAQcCUwCMARwADbcFBBUHAQFbVgArNDQA//8AUf/sBEgGpwYmAEkAAAEGAlNC3wANtwIBMQsBAXtWACs0NAD//wCUAAAETQfbBiYAKQAAAQcCVACOAQ4ADbcFBBIHAQFFVgArNDQA//8AUf/sBAoGngYmAEkAAAEGAlRD0QANtwIBLgsBAWVWACs0NAD//wCU/qEETQc+BiYAKQAAACcAngCNAT4BBwCtBMsACgAXtAUcAgEBuP9/t1YEEwcBAXdWACs0KzQA//8AUf6XBAoGAAYmAEkAAAAmAJ5CAAEHAK0EjgAAABe0AjgAAQG4/4m3VgEvCwEBl1YAKzQrNAD//wClAAACFQfBBiYALQAAAQcAqwN6AUQAC7YBBQMBAXxWACs0AP//AJAAAAH/BnsGJgCNAAABBwCrA2T//gALtgEFAwEBrlYAKzQA//8Alv6dAakFsAYmAC0AAAEHAK0DeAAGAA60AQcCAQG4/36wVgArNP//AHj+oQGQBdYGJgBNAAABBwCtA1oACgAOtAITAgEBuP9/sFYAKzT//wBl/pcFHQXEBiYAMwAAAQcArQUbAAAADrQCLwYBAbj/ibBWACs0//8ATv6TBDwETgYmAFMAAAEHAK0Emv/8AA60Ai8RAQG4/4iwVgArNP//AGX/7AUdB7wGJgAzAAABBwCrBRsBPwALtgItEQEBX1YAKzQA//8ATv/sBDwGhAYmAFMAAAEHAKsEmAAHAAu2Ai0GAQGcVgArNAD//wBl/+wFVQesBiYAMwAAAQcCUQDaASIADbcDAjARAQFPVgArNDQA//8ATv/sBNIGdAYmAFMAAAEGAlFX6gANtwMCMAYBAYxWACs0NAD//wAs/+wFHQeqBiYAMwAAAQcCUgDbASsADbcDAi4RAQFKVgArNDQA////qv/sBDwGcgYmAFMAAAEGAlJZ8wANtwMCLgYBAYdWACs0NAD//wBl/+wFHQfeBiYAMwAAAQcCUwDaARYADbcDAjERAQE+VgArNDQA//8ATv/sBF4GpgYmAFMAAAEGAlNY3gANtwMCMQYBAXtWACs0NAD//wBl/+wFHQfVBiYAMwAAAQcCVADcAQgADbcDAi4RAQEoVgArNDQA//8ATv/sBDwGnQYmAFMAAAEGAlRZ0AANtwMCLgYBAWVWACs0NAD//wBl/pcFHQc4BiYAMwAAACcAngDaATgBBwCtBRsAAAAXtAM4BgEBuP+Jt1YCLxEBAVpWACs0KzQA//8ATv6TBDwGAAYmAFMAAAAmAJ5YAAEHAK0Emv/8ABe0AzgRAQG4/4i3VgIvBgEBl1YAKzQrNAD//wBb/+wFrwc1BiYAmAAAAQcAdQHZATUAC7YDOhwBAUdWACs0AP//AE3/7AS3BgAGJgCZAAABBwB1AVsAAAALtgM2EAEBjFYAKzQA//8AW//sBa8HNQYmAJgAAAEHAEQBMgE1AAu2AzwcAQFHVgArNAD//wBN/+wEtwYABiYAmQAAAQcARAC1AAAAC7YDOBABAYxWACs0AP//AFv/7AWvB7kGJgCYAAABBwCrBRoBPAALtgM7HAEBV1YAKzQA//8ATf/sBLcGhAYmAJkAAAEHAKsEnAAHAAu2AzcQAQGcVgArNAD//wBb/+wFrwcpBiYAmAAAAQcApQDcATYAC7YDSBwBAVFWACs0AP//AE3/7AS3BfQGJgCZAAABBgClXwEAC7YDRBABAZZWACs0AP//AFv+lwWvBisGJgCYAAABBwCtBQUAAAAOtAM9EAEBuP+JsFYAKzT//wBN/o0EtwSoBiYAmQAAAQcArQSZ//YADrQDORsBAbj/f7BWACs0//8AgP6XBL8FsAYmADkAAAEHAK0E8wAAAA60ARkGAQG4/4mwVgArNP//AHf+lwP5BDoGJgBZAAABBwCtBD4AAAAOtAIfCwEBuP+JsFYAKzT//wCA/+wEvwe6BiYAOQAAAQcAqwT2AT0AC7YBFwABAXFWACs0AP//AHf/7AP5BoQGJgBZAAABBwCrBJMABwALtgIdEQEBsFYAKzQA//8AgP/sBjoHQgYmAJoAAAEHAHUB2gFCAAu2AiAKAQFsVgArNAD//wB3/+wFJAXrBiYAmwAAAQcAdQFa/+sAC7YDJhsBAYtWACs0AP//AID/7AY6B0IGJgCaAAABBwBEATMBQgALtgIiCgEBbFYAKzQA//8Ad//sBSQF6wYmAJsAAAEHAEQAs//rAAu2AygbAQGLVgArNAD//wCA/+wGOgfGBiYAmgAAAQcAqwUaAUkAC7YCIQoBAXxWACs0AP//AHf/7AUkBm8GJgCbAAABBwCrBJr/8gALtgMnGwEBm1YAKzQA//8AgP/sBjoHNgYmAJoAAAEHAKUA3QFDAAu2Ai4VAQF2VgArNAD//wB3/+wFJAXfBiYAmwAAAQYApV3sAAu2AzQbAQGVVgArNAD//wCA/o4GOgYCBiYAmgAAAQcArQUW//cADrQCIxABAbj/gLBWACs0//8Ad/6XBSQElQYmAJsAAAEHAK0EjgAAAA60AykVAQG4/4mwVgArNP//AAj+qQTZBbAGJgA9AAABBwCtBMYAEgAOtAEMBgEBuP92sFYAKzT//wAM/hED3gQ6BiYAXQAAAQcArQVN/3oADrQCIggAALj/ubBWACs0//8ACAAABNkHugYmAD0AAAEHAKsEzAE9AAu2AQoCAQFwVgArNAD//wAM/ksD3gaEBiYAXQAAAQcAqwRcAAcAC7YCGgEBAbBWACs0AP//AAgAAATZByoGJgA9AAABBwClAI8BNwALtgEXCAEBalYAKzQA//8ADP5LA94F9AYmAF0AAAEGAKUfAQALtgInGAEBqlYAKzQA//8AUP6wBK0GAAQmAEgAAAAnAkABgAI/AQcAQwCZ/2wAF7QENxYBAbj/d7dWAzILAQGDVgArNCs0AP//AC3+mgS0BbAGJgA4AAABBwJrAkYAAAALtgILAgAAmlYAKzQA//8AI/6aA9UEOgYmAPYAAAEHAmsB3wAAAAu2AgsCAACaVgArNAD//wCR/poE7QWwBiYA4QAAAQcCawLOAAAAC7YCHRkBAJpWACs0AP//AGD+mgPhBDsGJgD5AAABBwJrAccAAAALtgIbAgEAmlYAKzQA//8Amf6aBDcFsAYmALEAAAEHAmsA/AAAAAu2AQkEAACaVgArNAD//wCD/poDTAQ6BiYA7AAAAQcCawDhAAAAC7YBCQQAAJpWACs0AP//AAr+PQW0BcQGJgFMAAABBwJrAt//owALtgI6CgAAa1YAKzQA////y/5EBJAETgYmAU0AAAEHAmsB7/+qAAu2AjkJAABrVgArNAD//wB6AAAD+gYABgYATAAAAAL/1wAABLoFsAAYABwAGkAMHBsYAAALDAJyDgsIAD8zKxI5LzPMMjAxQSEyFhYVFA4CIyERMxEhMjY2NTQmJiMhARUhNQE+AW6m7HxGiMN9/eT8ASBfejs7el/+kgE4/WEDgW/IhWSmeUIFsPsXR3RFQ25CAjWnpwAAAv/XAAAEugWwABgAHAAZQAscGxgAAAsMAg4LCAA/Mz8SOS8zzDIwMUEhMhYWFRQOAiMhETMRITI2NjU0JiYjIQEVITUBPgFupux8RojDff3k/AEgX3o7O3pf/pIBOP1hA4FvyIVkpnlCBbD7F0d0RUNuQgI1p6cAAv/0AAAENwWwAAUACQAWQAoGBwcEAgUCcgQIAD8rMhI5LzMwMUEVIREjEQEVITUEN/1c+gH6/WEFsMj7GAWw/ZempgAC/98AAANMBDoABQAJABZACgkICAQCBQZyBAoAPysyEjkvMzAxQRUhESMRARUhNQNM/ijxAfv9YQQ6wPyGBDr+P6enAAT/8wAABUAFsAADAAkADQARACtAFQwLCwcHBhARBhEGEQIJAwJyCgIIcgArMisyETk5Ly8RMxEzEjkRMzAxQREjESEBISczARMBNwEBFSE1Aaf6BGb9sP6dIvoBqDP+KaICYv1S/WEFsPpQBbD8wtoCZPpQApjB/KcE56enAAT/yQAABEcGAAADAAkADQARAC1AFwQGcgwLCwcHBhARBhEGEQIDAHIKAgpyACsyKxE5OS8vETMRMxI5ETMrMDFBESMRAQEhJzMBEwE3AQEVITUBhfADh/5G/txF8QEYLf6unQHN/iH9YQYA+gAGAP46/aG/AaD7xgH6qv1cBWOmpgACAAgAAATZBbAACAAMAB1ADwwBBAcDCwsGAwgCcgYIcgArKzIROS8XOTMwMUEBASEBESMRAQEVITUBHwFSAVIBFv4W/f4WA7/9YAWw/UkCt/xo/egCGAOY/PynpwAABAAe/l8D9QQ6AAMACAANABEAF0ALERAQAgUNBnICDnIAKysyEjkvMzAxZREjETcTMwEjAwEXIwEBFSE1AoHxb/v7/oGivAEEJKL+gANB/WFt/fICDpUDOPvGBDr8xP4EOvxspqYAAgAmAAAE6QWwAAsADwAfQA8PBwUBBAoDDg4JBQMAAnIAKzIvMzkvFzkSOTMwMUEBASEBASEBASEJAhUhNQFTATUBNQEh/kgBw/7c/sP+w/7bAcT+RwOq/WAFsP3tAhP9L/0hAh394wLfAtH9jaenAAIAHwAAA+oEOgALAA8AH0APDwcFAQoEAw4OCQUDAAZyACsyLzM5Lxc5EjkzMDFBExMhAQEhAwMhCQIVITUBNM7SAQn+uAFV/vfc3P72AVT+uQMt/WEEOv6ZAWf97f3ZAXb+igInAhP+Raam//8AYv/sBBIETQYGAL8AAP//AAEAAAQ0BbAGJgAqAAABBwJA/3T+ZQAOtAMOAgIAuAEIsFYAKzT//wB7AnAFzAMxBgYBggAA//8AUgAABD4FxAYGABYAAP//AE7/7AQaBcQGBgAXAAD//wA3AAAEWQWwBgYAGAAA//8Af//sBDkFsAYGABkAAP//AIf/7ARNBbkEBgAaFAD//wB7/+wEOgXEBAYAHBQA//8AXf/3BBUFxAQGAB0AAP//AHz/7AQ3BcQEBgAUFAD//wBr/+wE8gdLBiYAKwAAAQcAdQHGAUsAC7YBLBABAW1WACs0AP//AFL+VQQMBgAGJgBLAAABBwB1AUMAAAALtgM/GgEBjFYAKzQA//8AlAAABRcHNwYmADIAAAEHAEQBRwE3AAu2AQwJAQFhVgArNAD//wB6AAAD+gYABiYAUgAAAQcARACwAAAAC7YCHgMBAaBWACs0AP//ABEAAAU/ByEGJgAlAAABBwCsBHsBMwANtwQDDgMBAWZWACs0NAD//wAO/+wD+QXrBiYARQAAAQcArAQG//0ADbcDAjwPAQGRVgArNDQA//8ATgAABE0HKAYmACkAAAEHAKwERgE6AA23BQQRBwEBcVYAKzQ0AP//AAP/7AQKBesGJgBJAAABBwCsA/v//QANtwIBLQsBAZFWACs0NAD///77AAACIwcoBiYALQAAAQcArALzAToADbcCAQUDAQFxVgArNDQA///+5AAAAgwF4gYmAI0AAAEHAKwC3P/0AA23AgEFAwEBo1YAKzQ0AP//AGX/7AUdByMGJgAzAAABBwCsBJMBNQANtwMCLREBAVRWACs0NAD//wAZ/+wEPAXrBiYAUwAAAQcArAQR//0ADbcDAi0GAQGRVgArNDQA//8ANQAABN8HIQYmADYAAAEHAKwELQEzAA23AwIfAAEBZlYAKzQ0AP///3MAAAK5BesGJgBWAAABBwCsA2v//QANtwMCGAMBAaVWACs0NAD//wB3/+wEvwchBiYAOQAAAQcArARvATMADbcCARcLAQFmVgArNDQA//8AFP/sA/kF6wYmAFkAAAEHAKwEDP/9AA23AwIdEQEBpVYAKzQ0AP///wwAAAUPBj8EJgDQZAAABwCu/j//////AJT+oQSlBbAGJgAmAAABBwCtBLMACgAOtAI0GwEBuP9/sFYAKzT//wB9/o0EMAYABiYARgAAAQcArQTO//YADrQDMwQBAbj/a7BWACs0//8AlP6hBNIFsAYmACgAAAEHAK0EigAKAA60AiIdAQG4/3+wVgArNP//AFD+lwQCBgAGJgBIAAABBwCtBK8AAAAOtAMzFgEBuP+JsFYAKzT//wCU/gYE0gWwBiYAKAAAAQcB1AFC/qIADrQCKB0BAbj/l7BWACs0//8AUP38BAIGAAYmAEgAAAEHAdQBZv6YAA60AzkWAQG4/6GwVgArNP//AJT+oQUXBbAGJgAsAAABBwCtBSYACgAOtAMPCgEBuP9/sFYAKzT//wB6/qED+gYABiYATAAAAQcArQSfAAoADrQCHgIBAbj/f7BWACs0//8AlAAABRYHMwYmAC8AAAEHAHUBcQEzAAu2Aw4DAQFbVgArNAD//wB9AAAENwc9BiYATwAAAQcAdQF3AT0AC7YDDgMBABtWACs0AP//AJT+4wUWBbAGJgAvAAABBwCtBOUATAAOtAMRAgEBuP/PsFYAKzT//wB9/s8ENwYABiYATwAAAQcArQR6ADgADrQDEQIBAbj/vLBWACs0//8AlP6hBCQFsAYmADAAAAEHAK0EtwAKAA60AgsCAQG4/3+wVgArNP//AHj+oQGLBgAGJgBQAAABBwCtA1oACgAOtAEHAgEBuP9/sFYAKzT//wCU/qEGagWwBiYAMQAAAQcArQXUAAoADrQDFAYBAbj/f7BWACs0//8AfP6hBnwETgYmAFEAAAEHAK0F2gAKAA60AzYCAQG4/3+wVgArNP//AJT+nQUXBbAGJgAyAAABBwCtBSgABgAOtAENAgEBuP9/sFYAKzT//wB6/qED+gROBiYAUgAAAQcArQSPAAoADrQCHwIBAbj/f7BWACs0//8AZf/sBR0H3gYmADMAAAEHAlAFAAFVAA23AwIxEQEBWlYAKzQ0AP//AJQAAATPB0IGJgA0AAABBwB1AXIBQgALtgEYDwEBbFYAKzQA//8Aff5gBC8F9gYmAFQAAAEHAHUBoP/2AAu2AzADAQGWVgArNAD//wCU/qEE3wWwBiYANgAAAQcArQS5AAoADrQCIRgBAbj/f7BWACs0//8Acf6iArkETgYmAFYAAAEHAK0DUwALAA60AhoCAQG4/4CwVgArNP//AEv+lgSOBcQGJgA3AAABBwCtBNb//wAOtAE9KwEBuP+IsFYAKzT//wBJ/o0DxwROBiYAVwAAAQcArQR0//YADrQBOSkBAbj/f7BWACs0//8ALf6bBLQFsAYmADgAAAEHAK0ExAAEAA60AgsCAQG4/3WwVgArNP//AAr+lwJ1BUMGJgBYAAABBwCtBA8AAAAOtAIZEQEBuP+JsFYAKzT//wCA/+wEvwfcBiYAOQAAAQcCUATbAVMADbcCARsAAQFsVgArNDQA//8AEQAABRsHNgYmADoAAAEHAKUAsgFDAAu2AhgJAQF2VgArNAD//wAWAAAD3wXqBiYAWgAAAQYApR33AAu2AhgJAQGgVgArNAD//wAR/qEFGwWwBiYAOgAAAQcArQTsAAoADrQCDQQBAbj/f7BWACs0//8AFv6hA98EOgYmAFoAAAEHAK0EVgAKAA60Ag0EAQG4/3+wVgArNP//AC/+oQbmBbAGJgA7AAABBwCtBeMACgAOtAQZEwEBuP9/sFYAKzT//wAj/qEFyAQ6BiYAWwAAAQcArQVMAAoADrQEGRMBAbj/f7BWACs0//8AUP6hBI4FsAYmAD4AAAEHAK0ExAAKAA60AxECAQG4/3+wVgArNP//AFH+oQPBBDoGJgBeAAABBwCtBGQACgAOtAMRAgEBuP9/sFYAKzT///5s/+wFYwXWBCYAM0YAAQcBcf4I//8ADbcDAi4RAAASVgArNDQA//8ACAAABJEFHAYmAk0AAAAHAK7/X/7c////YwAAA/IFHwQmAkI8AAAHAK7+lv7f////awAABKMFGgQmAf48AAAHAK7+nv7a////bgAAAbQFHwQmAf08AAAHAK7+of7f////mf/wBHgFHAQmAfcKAAAHAK7+zP7c////IAAABHQFHAQmAe08AAAHAK7+U/7c////qwAABIsFHAQmAg0KAAAHAK7+3v7c//8ACAAABJEEjQYGAk0AAP//AHYAAAQMBI0GBgJMAAD//wB2AAADtgSNBgYCQgAA//8AQQAAA/UEjQYGAewAAP//AHYAAARnBI0GBgH+AAD//wCGAAABeASNBgYB/QAA//8AdgAABGcEjQYGAfsAAP//AHYAAAWPBI0GBgH5AAD//wB2AAAEZwSNBgYB+AAA//8ATv/wBG4EnQYGAfcAAP//AHYAAAQoBI0GBgH2AAD//wAlAAAEGQSNBgYB8gAA//8ABgAABDgEjQYGAe0AAP//ABMAAARJBI0GBgHuAAD///+cAAACZQXrBiYB/QAAAQcAav85AB4ADbcCAQ0DAQGEVgArNDQA//8ABgAABDgF6wYmAe0AAAEGAGpSHgANtwQDFwkBAYNWACs0NAD//wB2AAADtgXrBiYCQgAAAQYAalweAA23BQQZBwEBg1YAKzQ0AP//AHYAAAOZBh4GJgIEAAABBwB1ASMAHgALtgIIAwEBg1YAKzQA//8AP//wA/AEnQYGAfMAAP//AIYAAAF4BI0GBgH9AAD///+cAAACZQXrBiYB/QAAAQcAav85AB4ADbcCAQ0DAQGEVgArNDQA//8AJv/wA2UEjQYGAfwAAP//AHYAAARnBh4GJgH7AAABBwB1ARoAHgALtgMOAwEBhFYAKzQA//8AH//sBEEGBQYmAhsAAAEGAKF9HgALtgIdFwEBhFYAKzQA//8ACAAABJEEjQYGAk0AAP//AHYAAAQMBI0GBgJMAAD//wB2AAADmQSNBgYCBAAA//8AdgAAA7YEjQYGAkIAAP//AHYAAARtBgUGJgIYAAABBwChALYAHgALtgMRCAEBhFYAKzQA//8AdgAABY8EjQYGAfkAAP//AHYAAARnBI0GBgH+AAD//wBO//AEbgSdBgYB9wAA//8AdgAABGMEjQYGAgkAAP//AHYAAAQoBI0GBgH2AAD//wBP//AEQwSdBgYCSwAA//8AJQAABBkEjQYGAfIAAP//ABMAAARJBI0GBgHuAAAAAwBD/jcD6gSdAB4APgBCAChAEx8BAgI+PhU/NDRAMCoLcg8LFX4APzPMK8zNMxI5EjkvMxI5OTAxQSM1MzI2NjU0JiYjIgYGFSM0PgIzMh4CFRQOAiUzMh4CFRQOAiMiLgI1Mx4CMzI2NjU0LgIjIwERIxECObmRTV4qLWBPNVk38UN4n11pqXhCP3CX/u+5bKJtNkeCrmhRoYVR8QQ6YDtRaDIeO1g6jQEC8QIsfSdFLypFKh08Lk55VCwoT3dPQ3FTLUYtUm9BVH9VKyRQhF81QyAqSTAsQSoV/lL95wIZAAQAdv6aBSgEjQADAAcACwAPAB1ADQMCAgYLB30PDgoKBhIAPzMQzjM/MxI5LzMwMUEVITUTESMRIREjEQERIxEDt/1sRPED8fEBsvECncDAAfD7cwSN+3MEjfwm/ecCGQAAAgBP/kAEQwSdACcAKwAYQAsZEH4oJCQqKgULcgArMi8yETM/MzAxQTMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CMzI2NgcRIxEDUPIJediZd72FR0iIvXab1HYM8QY2bFhEZkUjH0JnR1VsOoTxAYR3tmdOkc+BToHPk01punhBYzgvXolaT1iJXjEvYOX95wIZAP//AAYAAAQ4BI0GBgHtAAD//wAO/jcFrASkBiYCMQAAAAcCawLm/53//wB2AAAEbQXLBiYCGAAAAQcAcACCACEAC7YDDggBAbBWACs0AP//AB//7ARBBcsGJgIbAAABBgBwSiEAC7YCGhcBAbBWACs0AP//AE8AAAVXBI0GBgILAAD//wCG//AFYwSNBCYB/QAAAAcB/AH+AAD////sAAAGBAYABiYCjgAAAQcAdQKBAAAAC7YGGQ8BAU1WACs0AP//AE7/xwRuBh4GJgKQAAABBwB1AXUAHgALtgMwEQEBW1YAKzQA//8AP/38A/AEnQYmAfMAAAAHAdQBP/6Y//8AJwAABeUGHgYmAe8AAAEHAEQBcwAeAAu2BBgKAQFrVgArNAD//wAnAAAF5QYeBiYB7wAAAQcAdQIZAB4AC7YEFgoBAWtWACs0AP//ACcAAAXlBesGJgHvAAABBwBqATsAHgANtwUEHwoBAYRWACs0NAD//wAGAAAEOAYeBiYB7QAAAAcARACKAB7//wAR/lcFPwWwBiYAJQAAAQcApAGAAAMAC7YDDgUBATlWACs0AP//AFb+XAP5BE4GJgBFAAABBwCkALQACAALtgI7MQAATVYAKzQA//8AlP5eBE0FsAYmACkAAAEHAKQBQgAKAAu2BBACAABDVgArNAD//wBR/lQECgROBiYASQAAAQcApAEFAAAAC7YBLAAAAE1WACs0AP//AAj+VASRBI0GJgJNAAAABwCkASIAAP//AHb+XAO2BI0GJgJCAAAABwCkAPEACP//AHj+oQGLBDoGJgCNAAABBwCtA1oACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAAF4AAAADAAEECQABABoAXgADAAEECQACAA4AeAADAAEECQADABoAXgADAAEECQAEABoAXgADAAEECQAFACYAhgADAAEECQAGABoArAADAAEECQAHAEAAxgADAAEECQAIAAwBBgADAAEECQAJACYBEgADAAEECQALABQBOAADAAEECQAMABQBOAADAAEECQANAFwBTAADAAEECQAOAFQBqAADAAEECQAQAAwB/AADAAEECQARAAwCCAADAAEECQAZAAwB/ABDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBSAGUAZwB1AGwAYQByAFYAZQByAHMAaQBvAG4AIAAzAC4AMAAwADgAOwAgADIAMAAyADMAUgBvAGIAbwB0AG8ALQBNAGUAZABpAHUAbQBSAG8AYgBvAHQAbwAgAGkAcwAgAGEAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAEcAbwBvAGcAbABlAC4ARwBvAG8AZwBsAGUAQwBoAHIAaQBzAHQAaQBhAG4AIABSAG8AYgBlAHIAdABzAG8AbgBHAG8AbwBnAGwAZQAuAGMAbwBtAEwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAQQBwAGEAYwBoAGUAIABMAGkAYwBlAG4AcwBlACwAIABWAGUAcgBzAGkAbwBuACAAMgAuADAAaAB0AHQAcAA6AC8ALwB3AHcAdwAuAGEAcABhAGMAaABlAC4AbwByAGcALwBsAGkAYwBlAG4AcwBlAHMALwBMAEkAQwBFAE4AUwBFAC0AMgAuADAAUgBvAGIAbwB0AG8ATQBlAGQAaQB1AG0AAAADAAAAAAAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAEriAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/68AAAAA/4gAAP8sAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLvAABAAAAIUeQh4I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AVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoAEQBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd/+gBH//oASH/6AE5/+ABQf/oAUX/4AFH/+EBSP/gAUn/4QFK/+ABTf/hAVAAEAFRABABWP/pAWL/3wFk/94BZgAQAWr/6AFs/98Bbv/yAW8AEAFwABAD0QAQA9j/6APb/+gD3P/gBAX/4AQI/+gEC//oBA3/3wQT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/+0EM//mBDT/4QQ3/+IEkv/SBJT/4QSX/+IEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR/+0AEj/tABJ/7QAS/+0AEwAFABPABQAUAAUAFP/egBV/7QAV/9kAFsACwCU/7QAmf+0Adv/ZAK8/7QCvf+0Ar7/tAK//7QCwP+0Asb/egLH/3oCyP96Asn/egLK/3oC2P+0Atr/tALc/7QC3v+0AuD/tALi/7QC5P+0Aub/tALo/7QC6v+0Auz/tALu/7QC8P+0AvL/tAMU/3oDFv96Axj/egMg/2QDIv9kAyT/ZAMm/2QDKP9kBFL/tARU/7QEVv+0BFj/tARa/7QEXP+0BF7/tARg/7QEZv96BGj/egRq/3oEbP96BG7/egRw/3oEcv96BHT/tAR2/7QEeP+0BHr/egR8/7QEt/+0BLv/egTE/7QExv+0BMgAFATKABQEzAAUBNn/ZAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8HABL/BwAl/04ALv8NADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/TgGG/wcBiv8HAY7/BwGP/wcCBf/AAk3/wAKa/04Cm/9OApz/TgKd/04Cnv9OAp//TgKg/04Ctf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/04C0v/eAtP/TgLU/94C1f9OAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD/DQMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/AA07/wANP/8ADUP/AA1H/wANS/8ADU//AA2j/wANp/8ADav/AA/X/6AP9/04D/v/eBDn/TgQ6/94EO/9OBDz/3gQ9/04EPv/eBD//TgRA/94EQf9OBEL/3gRD/04ERP/eBEX/TgRG/94ER/9OBEj/3gRJ/04ESv/e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AK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-MediumItalic.ttf":"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BGH/0QQI//YGcP+qBHwACgTmAAoFSgBgBcoAPgQ/AGwEn/+iBmUAYgRqAFsEagAJBdIAOwSpADIEJgAOBJwANARGAAcD1gAeB+8ACQTO/9oC3v/1At7/8wLeAAsC3gAWAt4AJQLeAAUC3gA0A5kAkQKaAQgDwgAJBBr/hwSSADsFGQArBQAAKwQQABQFDQArBAkAFARXAAkEXgA5BD8ACQR2/5oB7wDoA4UBBAAA/ScD2QDcA9sAFgPsANwD3ADbA58ACQOBAQQDgQEFAugAiQLoAGYC6AB+AugAiQLoAJgC6AB4AugApwVKAGwFcwBrBVUAKwWsAG4FrgBtBAkAqwRfABwEN/+BBJf/0QRJ/9gEDgAxA4UBBQGt/7gGZgA7BIsARQH8/wAEc/+pBHP/2QRz/8kEcwATBHMATARzACIEcwBXBHMAMQRzADcEcwD4Ah//BAIf/wQCEQAjAhH/fAIRACMEPwAJBMEATAQQAFYEZgAQBB4ANgRyADcEbgAtBHoAMgRv/8gEdwA2BCgAOgRmAC4EOP+fA5sAqwTmACQDp//vBhX/fgPoAAkEmf/bBOcAIgS2AAkB+AAAAqMAQAUvACAFLwAgBG4AKwS6AJ0Clv/lBSX/owUl/6MFJf+jBSX/owUl/6MFJf+jBSX/owURAF8EYwAmBGMAJgRjACYEYwAmAjIANwIyADcCMgA3AjIANwWBACYFWQBiBVkAYgVZAGIFWQBiBVkAYgUUAFgFFABYBRQAWAUUAFgEvQChBC8AHAQvABwELwAcBC8AHAQvABwELwAcBC8AHAQNADcEKAA6BCgAOgQoADoEKAA6AgcAIwIHACMCBwAjAgcAIwRSAA0EZwA4BGcAOARnADgEZwA4BGcAOARRAEoEUQBKBFEASgRRAEoDzf+8A83/vAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAURAF8EDQA3BREAXwQNADcFEQBfBA0ANwURAF8EDQA3BREAJgT1ADgEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BUkAZgRm//kFSQBmBGb/+QVJAGYEZv/5BUkAZgRm//kFgQAmBFAADQIyADcCBwATAjIANwIHACMCMgA3AgcAIwIy/44B+v91AjIANwaCADcD7AAgBE8ABAIV/wQE5wAmBAwAEQQxACYB+gAgBDEAJgH6/6YEMQAmApAAIAQxACYC1gAgBYEAJgRSAA0FgQAmBFIADQWBACYEUgANBFIADQVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOATiACYCvgARBOIAJgK+/58E4gAmAr4AEQS0ACYD/wAbBLQAJgP/ABsEtAAmA/8AGwS0ACYD/wAbBLQAJgP/ABsEugCdApYAPwS6AJ0ClgA/BLoAnQK+AD8FFABYBFEASgUUAFgEUQBKBRQAWARRAEoFFABYBFEASgUUAFgEUQBKBRQAWARRAEoG1QC1BcIAeQS9AKEDzf+8BL0AoQSu/+UD6P/mBK7/5QPo/+YErv/lA+j/5gdF/40GjgAOBVcAFgRjACoEV/+WBFf/lgQeAGMEdv+aBHb/mgR2/5oEdv+aBHb/mgR2/5oEdv+aBF4AOQPCAAkDwgAJA8IACQPCAAkB7wAaAe8AGgHvABoB7wAaBLYACQSZADsEmQA7BJkAOwSZADsEmQA7BGYAOARmADgEZgA4BGYAOAQeAGwEdv+aBHb/mgR2/5oEXgA5BF4AOQReADkEXgA5BFcACQPCAAkDwgAJA8IACQPCAAkDwgAJBIMAPwSDAD8EgwA/BIMAPwS3AAkB7wAOAe8AGgHvABoB+f+XAe8AGgO5//MEPAAJA5sACQObAAkDmwAJA5sACQS2AAkEtgAJBLYACQSZADsEmQA7BJkAOwRDAAkEQwAJBEMACQQWAA8EFgAPBBYADwQWAA8EHgBjBB4AYwQeAGMEZgA4BGYAOARmADgEZgA4BGYAOARmADgF2gCLBB4AbAQeAGwEC//WBAv/1gQL/9YFJf+jBMf/ugXl/8IClv/GBW0AJgUh/7gFRAAeApAACQUl/6ME5gAmBGMAJgSu/+UFgQAmAjIANwTnACYGyQAmBYEAJgVZAGIE9AAmBLoAnQS9AKEE5v/AAjIANwS9AKEEYQA7BEMAKARjABECkABmBDwAVwR3ACEEZwA4BJ3/3gPaAGQEOP+fApAARAQ8AFcEZwA4BDwAVwZhAFIEYwAmBFIAKwS0ACYCMgA3AjIANwRPAAQFAAArBOcAJgTkAJkFJf+jBOYAJgRSACsEYwAmBXoAJQbJACYFgQAmBVkAYgWCACsE9AAmBREAXwS6AJ0E5v/ABC8AHAQoADoEbwAXBGcAOARd/8gEDQA3A83/vAPo/7oEKAA6A0EAFgP/ABsB+gAgAgcAIwHy/wIESgAiA83/vAbVALUFwgB5BtUAtQXCAHkG1QC1BcIAeQS9AKEDzf+8AUwAkQJ6AJ0EGwAzAhX/BAGtAI0GyQAmBsMADwUl/6MELwAcBGMAJgV6ACUEKAA6BG8AFwWFAHYFnwA/BPEAqAPuAHUINAA4CSYAYgS2AB8D+AAXBREAXwQNADcEvQChA+0AdQIyADcHbv+kBlX/sAIyADcFJf+jBC8AHAUl/6MELwAcB0X/jQaOAA4EYwAmBCgAOgViAEsEGQA0BBkANAdu/6QGVf+wBLYAHwP4ABcFegAlBG8AFwV6ACUEbwAXBVkAYgRnADgFUABhBGUANAVQAGEEZQA0BSAASAQZACAE5ACZA83/vATkAJkDzf+8BOQAmQPN/7wFWgDEBEMAbQbFACwGSAAjBF8AOAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHARjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoCMgA3AgcAIwIy//8B+v/jBVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFZgBcBHoANAVmAFwEegA0BWYAXAR6ADQFZgBcBHoANAVmAFwEegA0BRQAWARRAEoFFABYBFEASgV3AFgEwABKBXcAWATAAEoFdwBYBMAASgV3AFgEwABKBXcAWATAAEoEvQChA83/vAS9AKEDzf+8BL0AoQPN/7wEff/0BLoAnQPbAFQFWgDEBEMAbQRSACsDQQAWBewAVQSg//IEUAANBNsAJATbACQEUgAAA0H/xwUUAD8EJAAoBL0AoQPtAFIE5v/AA+j/ugRDACgERv/CBgQAfARpAA0EaQAmBGkADQRpAFgEfQBxBJEASwR9AIwEkQBzBUkAZgRm//kFgQAmBFIADQUl/6MELwAcBGMAJgQoADoCMv/PAgf/gAVZAGIEZwA4BOIAJgK+AAwFFABYBFEASgTI/4UE5gAmBF0AEAURACYEXwA4BREAJgRfADgFgQAm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BiYB7QAAAAcARACXAB7///+j/lgEqwWwBiYAJQAAAQcApAFrAAMAC7YDDgUBATlWACs0AP//ABz+XQPRBFAGJgBFAAABBwCkAKYACAALtgI7MQAATVYAKzQA//8AJv5fBLwFsAYmACkAAAEHAKQBMAAKAAu2BBACAABDVgArNAD//wA6/lUD8ARRBiYASQAAAQcApAD9AAAAC7YBLAAAAE1WACs0AP///5r+VQQBBI0GJgJNAAAABwCkAQ8AAP//AAn+XQP7BI0GJgJCAAAABwCkAOAACP///+P+nwHKBDoGJgCNAAABBwCtA0IACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAAF4AAAADAAEECQABABoAXgADAAEECQACAAwAeAADAAEECQADACgAhAADAAEECQAEACgAhAADAAEECQAFACYArAADAAEECQAGACYA0gADAAEECQAHAEAA+AADAAEECQAIAAwBOAADAAEECQAJACYBRAADAAEECQALABQBagADAAEECQAMABQBagADAAEECQANAFwBfgADAAEECQAOAFQB2gADAAEECQAQAAwCLgADAAEECQARABoCOgADAAEECQAZAAwCLgBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBJAHQAYQBsAGkAYwBSAG8AYgBvAHQAbwAgAE0AZQBkAGkAdQBtACAASQB0AGEAbABpAGMAVgBlAHIAcwBpAG8AbgAgADMALgAwADAAOAA7ACAAMgAwADIAMwBSAG8AYgBvAHQAbwAtAE0AZQBkAGkAdQBtAEkAdABhAGwAaQBjAFIAbwBiAG8AdABvACAAaQBzACAAYQAgAHQAcgBhAGQAZQBtAGEAcgBrACAAbwBmACAARwBvAG8AZwBsAGUALgBHAG8AbwBnAGwAZQBDAGgAcgBpAHMAdABpAGEAbgAgAFIAbwBiAGUAcgB0AHMAbwBuAEcAbwBvAGcAbABlAC4AYwBvAG0ATABpAGMAZQBuAHMAZQBkACAAdQBuAGQAZQByACAAdABoAGUAIABBAHAAYQBjAGgAZQAg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//QA3v/tAOH/4QDm/9QA7P/iAO7/7wDw/+IA8f/iAPP/4gD0/+IA9f/iAPb/yQD4/+IA+v/iAPv/4gD+/9EBAP/iAQX/4gEJ/+UBGf/UARr/5gEg/+MBK//iATP/9AE0/+8BNv/iATn/0gE6/8QBPP/iAT7/4gFD//QBRP/vAUX/0gFH/+EBSf/hAVP/4gFV/+IBV//iAVz/4gFd//QBXv/vAWL/1AFj//UBZP/nAWz/qgFt/8kBhP/KAYX/ygGH/8oBiP/KAYn/ygPQ/+0D3P/SA93/9APg/+ID4v/iA+T/5gPl/+8D5//iA+z/4gPt/+YD9v/KA/f/ygP6/8oEAv/iBAX/1AQG/+YEDf/TBA7/5gQQ//QEEf/vBB7/9AQf/+8EI//iBCX/4gQu/+0EL//mBDD/7QQx/+YEMv/tBDP/5gQ0/+EEN//iBJL/0gSU/+EEl//iBKH/0wApAEf/7ABI/+wASf/sAEv/7ABV/+wAlP/sAJn/7AK8/+wCvf/sAr7/7AK//+wCwP/sAtj/7ALa/+wC3P/sAt7/7ALg/+wC4v/sAuT/7ALm/+wC6P/sAur/7ALs/+wC7v/sAvD/7ALy/+wEUv/sBFT/7ARW/+wEWP/sBFr/7ARc/+wEXv/sBGD/7AR0/+wEdv/sBHj/7AR8/+wEt//sBMT/7ATG/+wANgAGABAACwAQAA0AFABBABIAR//oAEj/6ABJ/+gAS//oAFX/6ABhABMAlP/oAJn/6AGEABABhQAQAYcAEAGIABABiQAQArz/6AK9/+gCvv/oAr//6ALA/+gC2P/oAtr/6ALc/+gC3v/oAuD/6ALi/+gC5P/oAub/6ALo/+gC6v/oAuz/6ALu/+gC8P/oAvL/6AP2ABAD9wAQA/oAEARS/+gEVP/oBFb/6ARY/+gEWv/oBFz/6ARe/+gEYP/oBHT/6AR2/+gEeP/oBHz/6AS3/+gExP/oBMb/6ABKAEf/tABI/7QASf+0AEv/tABMABQATwAUAFAAFABT/3oAVf+0AFf/ZABbAAsAlP+0AJn/tAHb/2QCvP+0Ar3/tAK+/7QCv/+0AsD/tALG/3oCx/96Asj/egLJ/3oCyv96Atj/tALa/7QC3P+0At7/tALg/7QC4v+0AuT/tALm/7QC6P+0Aur/tALs/7QC7v+0AvD/tALy/7QDFP96Axb/egMY/3oDIP9kAyL/ZAMk/2QDJv9kAyj/ZARS/7QEVP+0BFb/tARY/7QEWv+0BFz/tARe/7QEYP+0BGb/egRo/3oEav96BGz/egRu/3oEcP96BHL/egR0/7QEdv+0BHj/tAR6/3oEfP+0BLf/tAS7/3oExP+0BMb/tATIABQEygAUBMwAFATZ/2QAAQD0AAQABgALAAwAJQAnACgAKQAqAC8AMAAzADQANQA2ADgAOgA7ADwAPQA+AD8ASQBKAEwATwBRAFIAUwBWAFgAWgBbAF0AXwCWAJ0AsgGEAYUBhwGIAYkB8gH0AfUB9wH6AgUCSgJNAl8CYQJiApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqsCrAKtAq4CrwK0Ar0CvgK/AsACxQLGAscCyALJAsoCzwLQAtEC0wLVAtcC2QLbAt0C3wLhAuIC4wLkAuUC5gLnAugC6QLqAvQDAgMEAwYDCAMKAw0DDwMRAxIDEwMUAxUDFgMXAxgDGgMcAx4DKQMrAy0DOwM9Az4DPwNAA0IDRANKA0sDTANNA04DTwNQA1EDUgNTA14DXwNgA2EDYgNoA2kDagNvA4EDggODA4QDiAOJA4oDkwPuA/AD8gP0A/UD9gP3A/oD/AP9BDkEOwQ9BD8EQQRDBEUERwRJBEsETQRPBFEEUgRTBFQEVQRWBFcEWARZBFoEWwRcBF0EXgRfBGAEZQRmBGcEaARpBGoEawRsBG0EbgRvBHAEcQRyBHoEiwSMBI0EjgSPBJAEswS0BLYEugS7BL0EwwTFBMgEyQTLBM0E0ATSBNME1ATXBNoE3QTeBN8E4AThBOMAAQA1AAYACwCWALEAsgCzALQAvQDBAMcBhAGFAYcBiAGJAgUCBgIHA6EDogOjA6QDpQOmA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDuwO/A8EDxQP2A/cD+gTlBOYE6gTtBPME+ACnABD/BwAS/wcAJf9OAC7/DQA4ABQARf/eAEf/6wBI/+sASf/rAEv/6wBT/+sAVf/rAFb/5gBZ/+oAWv/oAF3/6ACU/+sAmf/rAJv/6gCy/04Bhv8HAYr/BwGO/wcBj/8HAgX/wAJN/8ACmv9OApv/TgKc/04Cnf9OAp7/TgKf/04CoP9OArX/3gK2/94Ct//eArj/3gK5/94Cuv/eArv/3gK8/+sCvf/r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ARgBGAATARkBGQAXARoBGgAFARsBGwADAR0BHQADAR4BHgACAR8BHwADASEBIQADASIBIgACASsBKwABATMBMwAGATQBNAAHATYBNgABATkBOQAKATwBPAABAT4BPgABAUEBQQADAUIBQgACAUMBQwAGAUQBRAAHAUUBRQAKAUcBRwARAUgBSAAUAVABUAANAVEBUQASAVMBUwABAVUBVQABAVcBVwABAVwBXAABAV0BXQAGAV4BXgAHAWABYQACAWYBZgANAWoBagADAWsBawACAW8BbwANAXABcAASAYEBggALAYQBhQAEAYYBhgAIAYcBiQAEAYoBigAIAY4BjwAIAgUCBQAZAg4CDgAMAg8CDwAJAhICEgAMAhYCFgAPAicCJwAPAioCKgAMAisCKwAJAiwCLAAWAi0CLQAPAi4CLgAMAjQCNAAJApQClAALA80DzQAcA9AD0AAOA9ED0QAQA9gD2AADA9sD2wADA9wD3AAKA90D3QAGA94D3gAVA98D3wACA+AD4AABA+ED4QATA+ID4gABA+MD4wACA+QD5AAFA+UD5QAHA+YD5gACA+cD5wABA+gD6AAdA+wD7AABA+0D7QAFA/YD9wAEA/oD+gAEBAEEAQACBAIEAgABBAUEBQAXBAYEBgAFBAcEBwACBAgECAADBAsECwADBAwEDAACBA0EDQAYBA4EDgAFBBAEEAAGBBEEEQAHBBMEEwAQBBQEFAAVBBUEFQAQBBYEFgAVBBoEGgACBBwEHQACBB4EHgAGBB8EHwAHBCMEIwABBCUEJQABBCYEJgADBCcEJwATBCgEKAADBCkEKQACBCoEKgADBCsEKwATBC4ELgAOBC8ELwAFBDAEMAAOBDEEMQAFBDIEMgAOBDMEMwAFBDQENAARBDUENQAUBDcENwABBDgEOAACBJIEkgAKBJQElAARBJUElQAUBJcElwABBKEEoQAYBKcEpwALBQUFBQAaBQwFDAAJBQ8FDwAJBRAFEAAMBREFEQAPBRQFFAAJBRUFFQAWAAIA7AAGAAYADAALAAsADAAlACUAAgAmACYAGwAnACcADgApACkABAAsAC0AAQAuAC4ABwAvAC8AGAAwADAADwAxADIAAQA0ADQAHAA4ADgAEAA5ADkABwA6ADoAGQA7ADsAEQA8ADwAHgA9AD0ADQA+AD4AFABFAEUAAwBG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BiAHRgYmBmoGqgYsBdwF4AXkBegGtgbCBs4G2gbmBewAAgcCAOsCjAJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCfgKOA0sCkAKPA0oB/QKNApICbATtBO4CBAIFBO8E8ATxAgYE8gIHAggCCQT3AgoCCgT4BPkCCwIMAg0CFAUGBQcCFQIWAhcCGAIZAhoFCgULBQ0FEAUZAhwCHQIeAh8CIAIhAiICIwIkAiUCDgIPAhACEQISAhMCVQInAigCKQIqBRMCKwItAi4CLwIxAjMCkQNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA50DaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDngOfA6AFGwUcBOYE5wToBOkE8wT2BPQE9QT6BPsE/ATqBOsE7AUFBQgFCQUMBQ4FDwIbBREE/QT+BP8FAAUBBQIFAwUEBR4FHwUgBSEFEgUUBRUCMgUXAjQFGAUWAjACJgIsBSYFJwACBwAA+gIBAowB6wHqAekB6AHnAeYB5QHkAeMB4gJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCAgIDAo4CkAKPApECjQKSAmwCBAIFAgYCBwIIAgkCCgILAgwCDQIOAg8CEAIRAhICEwIUAhUCFgIXAhgCGgIbBRkCHAIdAh4CHwIgAiECIgIjAiQCJQJVAicCKAIpAioFEwIrAi0CLgIvAjACMQIyAjMCNQI2AjgCNwNKA0sDTANNA04DTwNQA1EDUgNTA1QDVQNWA1cDWANZA1oDWwNcA10DXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9A34FGgN/A4ADgQOCA4MDhAOFA4YDhwOIA4kDigOLA4wDjQOOA48DkAUdA5EDkgOUA5MDlQOWA5cDmAOZA5oDmwOcA50DngOfA6AFGwUcBOYE5wToBOkE6gTrBOwE7QTuBO8E8ATxBPIE8wT0BPUE9gT3BPgE+QT6BPsE/AT9BP4E/wUABQEFAgIZBQMFBAUFBQYFBwUIBQkFCgULBQwFDQUOBQ8FEAURBR4FHwUgBSEFEgUUBRUFFwI0BRgFFgImAiwFJgUnAAEAAQF7AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMjAyQAAgbkBtgAAgbmBtgAAQbuAAEG8AABBvIAAgABABQAHQAAAAEAAgAvAE8AAQADAEkASwKEAAIAAAABBt4AAQAGAtUC1gLnAugDagNzAAEABgBNAE4C/APpA+sEZAACAAMBlAGUAAAB3wHhAAECOQI/AAQAAgACAKgArAABASQBJwABAAEADAAnACgAKwAzADUARgBHAEgASwBTAFQAVQACAAIAFAAdAAACbwJ4AAoAAgAGAE0ATQAGAE4ATgAEAvwC/AAFA+kD6QADA+sD6wACBGQEZAABAAIABAAUAB0AAAKAAoAACgKLAosACwSoBK8ADAACAAYAGgAaAAAAHAAcAAECZAJpAAICbQJtAAgCbwJ4AAkCfwJ/ABMAAQAUABoAHAJkAmUCZgJnAmgCaQJtAn8CgAKLBKgEqQSqBKsErAStBK4ErwABBd4AAQXgAAEF4gABBeQAAQXmAAEF6AABBeoAAQXsAAEF7gABBfAAAQXyAAEF9AABBfYAAQX4AAEF+gACBfwGAgACBgIGCAACBggGDgACBg4GFAACBhQGGgACBhoGIAACBiAGJgACBiYGLAACBiwGMgACBjIGOAACBjgGPgADBj4GRAZKAAMGSAZOBlQAAwZSBlgGXgADBlwGYgZoAAMGZgZsBnIAAwZwBnYGfAADBnoGgAaGAAMGhAaKBpAABAaOBpQGmgagAAQGnAaiBqgGrgAFBqoGsAa2BrwGwgAFBrwGwgbIBs4G1AAFBs4G1AbaBuAG5gAFBuAG5gbsBvIG+AAFBvIG+Ab+BwQHCgAFBwQHCgcQBxYHHAAFBxYHHAciBygHLgAFBygHLgc0BzoHQAAFBzoHQAdGB0wHUgAGB0wHUgdYB14HZAdqAAYHYgdoB24HdAd6B4AABgd4B34HhAeKB5AHlgAGB44HlAeaB6AHpgesAAYHpAeqB7AHtge8B8IABge6B8AHxgfMB9IH2AAGB9AH1gfcB+IH6AfuAAcILgfmB+wH8gf4B/4IBAAHCCYH+ggACAYIDAgSCBgAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaApcCmQK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtIC1ALWAtgC2gLcAt4C4ALiAuQC5gLoAuoC7ALuAvAC8gL0AvYC+AL6AvwC/wMBAwMDBQMHAwkDCwMNAw8DEQMUAxYDGAMaAxwDHgMgAyIDJAMmAygDKgMsAy4DMAMyAzQDNgM4AzoDPAM+A0EDQwNFA0cDSQO5A7oDuwO8A74DvwPAA8EDwgPDA8QDxQPGA8cD3gPfA+AD4QPiA+MD5APlA+YD5wPoA+kD6gPrA+wD7QPvA/ED8wP1BAoEDAQOBBwEIwQpBC8EmQSaBJ4EogUjBSUAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQB1gACAE0B1wACAFAB2AADAEoATQHZAAMASgBQAAEAAQBKAdUAAgBKAdsAAgBYAdoAAgBYAAEAAwBKAFcAlQAAAAEAAQABAAEAAAADBMEAAgCtAtcAAgCpBMcAAgCtBNQAAgCpBMIAAgCtAtgAAgCpBLEAAgCpBMgAAgCtBGQAAgCtBNUAAgCpA0YAAgCpA0gAAgCpA0cAAgCpA0kAAgCpBMAAAgCpBMUAAgHUBMMAAgCtBLAAAgCpAvEAAgHUA/sAAgCpBM8AAgCtAykAAgHUBNoAAgCtBN8AAgCtBN0AAgCqA0AAAgCpBOMAAgCtBMYAAgHUBMQAAgCtA/wAAgCpBNAAAgCtAyoAAgHUBNsAAgCtBOAAAgCtBN4AAgCqA0EAAgCpBOQAAgCtBMkAAgCpAwIAAgHUBMsAAgCtAwQAAgCpAwYAAgHUBM0AAgCtAx8AAgCpAyUAAgHUBNgAAgCtA/AAAgCpBOEAAgCtA+4AAgCoBMoAAgCpAwMAAgHUBMwAAgCtAwUAAgCpAwcAAgHUBM4AAgCtAyAAAgCpAyYAAgHUBNkAAgCtA/EAAgCpBOIAAgCtA+8AAgCoAxkAAgCpAxsAAgHUBNYAAgCtBLwAAgCsAxoAAgCpAxwAAgHUBNcAAgCtBL0AAgCsAwwAAgCpAw4AAgHUBNEAAgCtBLIAAgCoAqoAAgCqArQAAgCpBIsAAgCtA/QAAgCoBI0AAgCrBI8AAgCqAw0AAgCpAw8AAgHUBNIAAgCtBLMAAgCoAsUAAgCqAs8AAgCpBIwAAgCtA/UAAgCoBI4AAgCrBJAAAgCqAsIAAgCpAsEAAgCoBGIAAgCrAvYAAgCqBLkAAgCsBHMAAgCpBHsAAgCtBHUAAgCoBHcAAgCrBHkAAgCqBHQAAgCpBHwAAgCtBHYAAgCoBHgAAgCrBHoAAgCqBIEAAgCpBIkAAgCtBIMAAgCoBIUAAgCrBIcAAgCqBIIAAgCpBIoAAgCtBIQAAgCoBIYAAgCrBIgAAgCqApsAAgCpBDkAAgCtApoAAgCoBDsAAgCrAp0AAgCqBLQAAgCsAqMAAgCpBFEAAgCtAqIAAgCoBFMAAgCrBFUAAgCqBLYAAgCsAqcAAgCpBGMAAgCtAqYAAgCoBGEAAgCrAvUAAgCqBLgAAgCsArYAAgCpBDoAAgCtArUAAgCoBDwAAgCrArgAAgCqBLUAAgCsAr4AAgCpBFIAAgCtAr0AAgCoBFQAAgCrBFYAAgCqBLcAAgCsAscAAgCpBGYAAgCtAsYAAgCoBGgAAgCrAskAAgCqBLsAAgCsAswAAgCpBH4AAgCtAssAAgCoBIAAAgCrAzAAAgCqBL8AAgCsAqwAAgCpBGUAAgCtAqsAAgCoBGcAAgCrAq4AAgCqBLoAAgCsArEAAgCpBH0AAgCtArAAAgCoBH8AAgCrAy8AAgCqBL4AAgCsBNMAAwCqAKkE3AADAKoAqQACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAA==","Roboto-Regular.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcFUAAACWEdQT1N/jKrdAAHDrAAAWMBHU1VCm18k/AACHGwAABX2T1MvMpeDsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBSAAAAAxnbHlm5vV0AgAAOswAAYOwaGVhZAhMpEUAAAEcAAAANmhoZWEKugrKAAABVAAAACRobXR4//meUgAAAfgAABSkbG9jYadOA+EAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOEJpwQABvnwAAAKqcG9zdP9tAGQAAcEoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDFXLfBlfDzz1ABsIAAAAAADE8BEuAAAAAODgRcX6Gv3VCTEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJSvoa/koJMQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/sAqgaiAJAE9wB2BB4AZgWuACQFIQBGBWUAlwYCADAE8wAsAyEAcAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACNAAmAjQAJgVAAKIGPwCQA6YADQGaAGEBmgAwAZgAJAGaAE8C1ABpAtwAPALCACQEagBGBJAAVwKzAIsDxACUBVoAlAF/AFIHqgBEAmcAbAJnAFoDowA8Au8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgM4AFAC+ABQAvgAUAHxAFQB8QBQA2EAegLvAFEC7wB7Au8AQgLvAD8C7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoDOABQAvgAUAL4AFAB8QBUAfEAUASnAFsGVgAfBpEApwh2AKkF6wAfBisAjAR/AF8F2gAfBCMAKwR0ACEFSABdBU8AHwXoAHsDzgBoCDoAogUBAGgFGACYBiYAVAbXAGUGzwBkBmoAWgSQAGoFjwCpBK8ARgSTAKgExQA/CDoAYwIN/68EggBlBGQAmAQRAD0ELwCEBAgALAJMALUCkABvAgQAXQTzAD0EbwAgBIsAPQbUAD0G1AA9BO4APQabAF8AAAAACDQAWwg1AFwC7wBCAu8AewLvAFEEEABWBBAAYQQQAEIEDwByBBAAgQQQADEEEABPBBAATwQQAJkEEABjBCMASAQrAA4EVAAnBhUAMQRoABQEfQB1BCcAKQQgAEQESgCKBLwAWgRdAIsEvABgBOMAiwYCAIsDtQCLBFUAiwPPACwB6QCYBOQAiwSsAGQDzACLBCAARAQ0ADEDoQAOA68AiwRoABQEvABgBGgAFAOJAD4EzwCLA/AAQAVnAGEFFwBhBPMAdgVzACcEfABhB0IAKAdQAIsFdAApBM4AiwRaAIsFJQAuBgsAHwRAAEgE7ACLBE4AjATBACgEIAAjBSkAiwRqAD0GUQCLBqwAiwUdAAkF8QCLBE8AiwR8AEsGdwCLBIcAUAQSAAsGSAAfBHkAjAUKAIwFNwAkBcMAYARfAA4EqAAnBmIAJwRqAD0EagCLBcQAAgTLAF4EQABIBLwAYAQ0ADED5ABDCCIAiwSrACgC7wA/Au8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKA5cAjwK1AJ8D5gCLBDoAHwTEAGQFTACyBSQAsgQUAJMFPQCyBA8AkwSAAIsEfABhBFEAiwSGABQB/gCfA6UAggAA/KMD8ABvA/T/XQQPAGkD9QBpA68AiwOgAIIDnwCCAu8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgWCAH4FrwB+BZMAsgXgAH4F4wB+A9UAoASCAIMEWAAPBM8APgRrAGUELgBKA6UAhAGSAGgGpABgBLoAggH8/7YEfwA7BH8AcwR/ACIEfwB2BH8AdgR/ADYEfwB+BH8AXgR/AHEEfwD0Agb/tAIE/7QB+wCcAfv/+QH7AJwEUQCLBQAAeAQhADsEfgCMBDMAXQSTAFsEjABbBJ8AWgSOAIwEnABbBD4AXQR+AGEEcABaA3kAVwTWAGgDtQABBjoACQP5AIsEvABgBOMAMATjAIsB/AAAAjYAJgVeACUFXgAlBIYAAQTGADICnv/0BTgAHQU4AB0FOAAdBTgAHQU4AB0FOAAdBTgAHQU1AHgEjACpBIwAqQSMAKkEjACpAi3/3wItALECLf/qAi3/1QW1AKkFgQB3BYEAdwWBAHcFgQB3BYEAdwUwAIwFMACMBTAAjAUwAIwEzgAPBFoAbQRaAG0EWgBtBFoAbQRaAG0EWgBtBFoAbQQwAF0EPgBdBD4AXQQ+AF0EPgBdAfv/xAH7AJYB+//PAfv/ugRrAI0EkABcBJAAXASQAFwEkABcBJAAXARpAIkEaQCJBGkAiQRpAIkDyQAWA8kAFgU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU1AHgEMABdBTUAeAQwAF0FNQB4BDAAXQU1AHgEMABdBUAAqQUZAF8EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBXMAegR+AGEFcwB6BH4AYQVzAHoEfgBhBXMAegR+AGEFtQCpBGgAjQIt/7YB+/+bAi3/zQH7/7ICLf/sAfv/0QItABcB8v/6Ai0AqgaXALcD3ACOBGoANQIE/7QFBQCpBA4AjQRPAKIB8gCTBE8AqQHyAFYETwCpAogAnARPAKkCzgCcBbUAqQRrAI0FtQCpBGsAjQW1AKkEawCNBGv/uwWBAHcEkABcBYEAdwSQAFwFgQB3BJAAXATuAKkCtgCNBO4AqQK2AFME7gCpArYAZATAAFEEIQBfBMAAUQQhAF8EwABRBCEAXwTAAFEEIQBfBMAAUQQhAF8ExgAyAp4ACQTGADICngAJBMYAMgLGAAkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkHGQA9BgMAKwTOAA8DyQAWBM4ADwTLAFcD+ABZBMsAVwP4AFkEywBXA/gAWQd6//EGwgBPBYEAdwSJAFwEgP+9BID/vQQnACkEhgAUBIYAFASGABQEhgAUBIYAFASGABQEhgAUBHwAYQPmAIsD5gCLA+YAiwPmAIsB6f+8AekAjgHp/8cB6f+yBOMAiwS8AGAEvABgBLwAYAS8AGAEvABgBH0AdQR9AHUEfQB1BH0AdQQrAA4EhgAUBIYAFASGABQEfABhBHwAYQR8AGEEfABhBIAAiwPmAIsD5gCLA+YAiwPmAIsD5gCLBKwAZASsAGQErABkBKwAZATkAIsB6f+TAen/qgHp/8kB6QAFAekAhwPPACwEVQCLA7UAgwO1AIsDtQCLA7UAiwTjAIsE4wCLBOMAiwS8AGAEvABgBLwAYARKAIoESgCKBEoAigQgAEQEIABEBCAARAQgAEQEJwApBCcAKQQnACkEfQB1BH0AdQR9AHUEfQB1BH0AdQR9AHUGFQAxBCsADgQrAA4EIwBIBCMASAQjAEgFOAAdBPD/jAYZ/5oCkf+gBZX/+gUy/3YFZv/8Apj/mwU4AB0E/ACpBIwAqQTLAFcFtQCpAi0AtwUFAKkG/ACpBbUAqQWBAHcFDACpBMYAMgTOAA8FBAA6Ai3/1QTOAA8EhgBkBFEAZASJAJICmADDBF4AkAR0AJsEkABcBIkAmwPgACEEcABaApj/5AReAJAEkABcBF4AkAaXAHoEjACpBHMAsgTAAFECLQC3Ai3/1QRqADUFJACyBQUAqQUIAE0FOAAdBPwAqQRzALIEjACpBbUAsgb8AKkFtQCpBYEAdwW1ALIFDACpBTUAeATGADIFBAA6BFoAbQQ+AF0EngCdBJAAXAR+AIwEMABdA8kAFgP4ACoEPgBdA1wAmwQhAF8B8gCOAfv/ugHq/74EUwCdA8kAFgcZAD0GAwArBxkAPQYDACsHGQA9BgMAKwTOAA8DyQAWAWYAaAKQAIkEIAChAgT/tAGaADAG/ACpBwQAiwU4AB0EWgBtBIwAqQW1ALIEPgBdBJ4AnQWJAFoFmgBgBQsAFgQE//sIWQBcCUoAdwTAAFAEEABYBTUAeAQwAF0EzgAPBAMALwItALcHQwAbBiEAFgItALcFOAAdBFoAbQU4AB0EWgBtB3r/8QbCAE8EjACpBD4AXQWHAF4EOABjBDgAYwdDABsGIQAWBMAAUAQQAFgFtQCyBJ4AnQW1ALIEngCdBYEAdwSQAFwFcgBnBIwAXAVyAGcEjABcBWUAlAROAGQFCABNA8kAFgUIAE0DyQAWBQgATQPJABYFegCXBFoAaAbrALIGNgCeBIMAXwU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWv/JBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIz/7gQ+/7gEjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0CLQC3AfsAnAItAKQB8gCGBYEAdwSQAFwFgQB3BJAAXAWBAHcEkABcBYEARgSQ/8IFgQB3BJAAXAWBAHcEkABcBYEAdwSQAFwFfwBmBJMAXAV/AGYEkwBcBX8AZgSTAFwFfwBmBJMAXAV/AGYEkwBcBTAAjARpAIkFMACMBGkAiQWQAIwE8wCJBZAAjATzAIkFkACMBPMAiQWQAIwE8wCJBZAAjATzAIkEzgAPA8kAFgTOAA8DyQAWBM4ADwPJABYEoQBfBMYAMgPZACgFegCXBFoAaARzALIDXACbBjAAPwS+/90EaACNBQX/1AUF/9QEcwADA1z//QU4AAsEKP/TBM4ADwQDAC8FBAA6A/gAKgRRAGQEbAASBj8AkAR/AF4EfwBfBH8ANQR/AJoEkwCZBKcAhQSTAGQEpwCHBXMAegR+AGEFtQCpBGsAjQU4AB0EWgA6BIwAXwQ+ACkCLf8LAfv+8AWBAHcEkAAzBO4AVgK2/4wFMACMBGkAKwSn/zgE/ACpBH4AjAVAAKkEgwBfBUAAqQSDAF8FtQCp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ABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAADAe//9QHw/+4Dm//1AAMADf/mAEH/9ABh/+8AAwBK/+4AW//qAfD/8AADAFv/wQH//+YCS//oAAMASgAPAFgAMgBbABEAAwBb/+UB///rAkv/7QA7ALIAEADS/+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//IBbwAQAXAAEAPRABAD2P/oA9v/6APc/+AEBf/gBAj/6AQL/+gEDf/fBBMAEAQVABAEJv/oBCj/6AQq/+gENP/hBDX/4ASS/+AElP/hBJX/4ASh/98ABABY/+8AW//fAJr/7gHw/80ABAANABQAQQARAFb/4gBhABMABQA4/9gDKf/YAyv/2AMt/9gE2v/YAAUAI//DAFj/7wBb/98Amv/uAfD/zQAF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Au7/7ALw/+wC8v/sBFL/7ARU/+wEVv/sBFj/7ARa/+wEXP/sBF7/7ARg/+wEdP/sBHb/7AR4/+wEfP/sBLf/7ATE/+wExv/sADYABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gBhAAQAYUAEAGHABABiAAQAYkAEAK8/+gCvf/oAr7/6AK//+gCwP/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/oAuT/6ALm/+gC6P/oAur/6ALs/+gC7v/oAvD/6ALy/+gD9gAQA/cAEAP6ABAEUv/oBFT/6ARW/+gEWP/oBFr/6ARc/+gEXv/oBGD/6AR0/+gEdv/oBHj/6AR8/+gEt//oBMT/6ATG/+gASgBH/8UASP/FAEn/xQBL/8UATAAgAE8AIABQACAAU/+AAFX/xQBX/5AAWwALAJT/xQCZ/8UB2/+QArz/xQK9/8UCvv/FAr//xQLA/8UCxv+AAsf/gALI/4ACyf+AAsr/gALY/8UC2v/FAtz/xQLe/8UC4P/FAuL/xQLk/8UC5v/FAuj/xQLq/8UC7P/FAu7/xQLw/8UC8v/FAxT/gAMW/4ADGP+AAyD/kAMi/5ADJP+QAyb/kAMo/5AEUv/FBFT/xQRW/8UEWP/FBFr/xQRc/8UEXv/FBGD/xQRm/4AEaP+ABGr/gARs/4AEbv+ABHD/gARy/4AEdP/FBHb/xQR4/8UEev+ABHz/xQS3/8UEu/+ABMT/xQTG/8UEyAAgBMoAIATMACAE2f+QAAEA9AAEAAYACwAMACUAJwAoACkAKgAvADAAMwA0ADUANgA4ADoAOwA8AD0APgA/AEkASgBMAE8AUQBSAFMAVgBYAFoAWwBdAF8AlgCdALIBhAGFAYcBiAGJAfIB9AH1AfcB+gIFAkoCTQJfAmECYgKVApYCmAKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKrAqwCrQKuAq8CtAK9Ar4CvwLAAsUCxgLHAsgCyQLKAs8C0ALRAtMC1QLXAtkC2wLdAt8C4QLiAuMC5ALlAuYC5wLoAukC6gL0AwIDBAMGAwgDCgMNAw8DEQMSAxMDFAMVAxYDFwMYAxoDHAMeAykDKwMtAzsDPQM+Az8DQANCA0QDSgNLA0wDTQNOA08DUANRA1IDUwNeA18DYANhA2IDaANpA2oDbwOBA4IDgwOEA4gDiQOKA5MD7gPwA/ID9AP1A/YD9wP6A/wD/QQ5BDsEPQQ/BEEEQwRFBEcESQRLBE0ETwRRBFIEUwRUBFUEVgRXBFgEWQRaBFsEXARdBF4EXwRgBGUEZgRnBGgEaQRqBGsEbARtBG4EbwRwBHEEcgR6BIsEjASNBI4EjwSQBLMEtAS2BLoEuwS9BMMExQTIBMkEywTNBNAE0gTTBNQE1wTaBN0E3gTfBOAE4QTjAAEANQAGAAsAlgCxALIAswC0AL0AwQDHAYQBhQGHAYgBiQIFAgYCBwOhA6IDowOkA6UDpgOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7sDvwPBA8UD9gP3A/oE5QTmBOoE7QTzBPgApwAQ/xYAEv8WACX/VgAu/vgAOAAUAEX/3gBH/+sASP/rAEn/6wBL/+sAU//rAFX/6wBW/+YAWf/qAFr/6ABd/+gAlP/rAJn/6wCb/+oAsv9WAYb/FgGK/xYBjv8WAY//FgIF/8ACTf/AApr/VgKb/1YCnP9WAp3/VgKe/1YCn/9WAqD/VgK1/94Ctv/eArf/3gK4/94Cuf/eArr/3gK7/94CvP/rAr3/6wK+/+sCv//rAsD/6wLG/+sCx//rAsj/6wLJ/+sCyv/rAsv/6gLM/+oCzf/qAs7/6gLP/+gC0P/oAtH/VgLS/94C0/9WAtT/3gLV/1YC1v/eAtj/6wLa/+sC3P/rAt7/6wLg/+sC4v/rAuT/6wLm/+sC6P/rAur/6wLs/+sC7v/rAvD/6wLy/+sDAP74AxT/6wMW/+sDGP/rAykAFAMrABQDLQAUAzD/6gMy/+oDNP/qAzb/6gM4/+oDOv/qAz7/6ANN/8ADTv/AA0//wANQ/8ADUf/AA1L/wANT/8ADaP/AA2n/wANq/8AD9f/oA/3/VgP+/94EOf9WBDr/3gQ7/1YEPP/eBD3/VgQ+/94EP/9WBED/3gRB/1YEQv/eBEP/VgRE/94ERf9WBEb/3gRH/1YESP/eBEn/VgRK/94ES/9WBEz/3gRN/1YETv/eBE//VgRQ/94EUv/rBFT/6wRW/+sEWP/rBFr/6wRc/+sEXv/rBGD/6wRm/+sEaP/rBGr/6wRs/+sEbv/rBHD/6wRy/+sEdP/rBHb/6wR4/+sEev/rBHz/6wR+/+oEgP/qBIL/6gSE/+oEhv/q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"}}}]); \ No newline at end of file diff --git a/frontend/index.html b/frontend/index.html index 9be5b1c0..03330ca3 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -12,8 +12,8 @@ - + - + diff --git a/frontend/main.6e2567250e1fcca3.js b/frontend/main.6e2567250e1fcca3.js new file mode 100644 index 00000000..3f74f99c --- /dev/null +++ b/frontend/main.6e2567250e1fcca3.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[792],{8430:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>q,$J:()=>a,$Q:()=>T,Aw:()=>R,C2:()=>y,CK:()=>ee,Db:()=>Yt,Do:()=>N,Dq:()=>Xe,ED:()=>ve,EM:()=>ae,Eb:()=>st,Ew:()=>he,Fd:()=>ne,GZ:()=>Ie,Gy:()=>V,Gz:()=>Ct,Hm:()=>le,Jx:()=>ze,Ml:()=>ct,N4:()=>Me,NS:()=>w,NU:()=>_e,Qj:()=>j,Qv:()=>dt,Sn:()=>f,T4:()=>Ce,Uj:()=>fe,VK:()=>pe,We:()=>Q,XT:()=>O,Yi:()=>_,Zi:()=>ie,a5:()=>We,aB:()=>oe,cR:()=>C,dv:()=>n,ed:()=>J,fy:()=>c,g6:()=>se,gf:()=>D,ij:()=>k,jQ:()=>Be,kQ:()=>ue,kX:()=>S,kv:()=>z,lg:()=>l,no:()=>x,qw:()=>me,sq:()=>Y,uK:()=>b,vL:()=>m,w0:()=>d,x1:()=>h,y0:()=>Ee,zU:()=>A});var e=g(9640),t=g(4416);const x=(0,e.VP)(t.TC.UPDATE_API_CALL_STATUS_CLN,(0,e.xk)()),D=(0,e.VP)(t.TC.RESET_CLN_STORE),l=(0,e.VP)(t.TC.FETCH_PAGE_SETTINGS_CLN),w=(0,e.VP)(t.TC.SET_PAGE_SETTINGS_CLN,(0,e.xk)()),f=(0,e.VP)(t.TC.SAVE_PAGE_SETTINGS_CLN,(0,e.xk)()),R=(0,e.VP)(t.TC.FETCH_INFO_CLN,(0,e.xk)()),h=(0,e.VP)(t.TC.SET_INFO_CLN,(0,e.xk)()),S=(0,e.VP)(t.TC.FETCH_FEE_RATES_CLN,(0,e.xk)()),y=(0,e.VP)(t.TC.SET_FEE_RATES_CLN,(0,e.xk)()),O=(0,e.VP)(t.TC.GET_NEW_ADDRESS_CLN,(0,e.xk)()),V=((0,e.VP)(t.TC.SET_NEW_ADDRESS_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_PEERS_CLN)),j=(0,e.VP)(t.TC.SET_PEERS_CLN,(0,e.xk)()),Y=(0,e.VP)(t.TC.SAVE_NEW_PEER_CLN,(0,e.xk)()),Q=((0,e.VP)(t.TC.NEWLY_ADDED_PEER_CLN,(0,e.xk)()),(0,e.VP)(t.TC.ADD_PEER_CLN,(0,e.xk)())),J=(0,e.VP)(t.TC.DETACH_PEER_CLN,(0,e.xk)()),ie=(0,e.VP)(t.TC.REMOVE_PEER_CLN,(0,e.xk)()),ee=(0,e.VP)(t.TC.FETCH_PAYMENTS_CLN),fe=(0,e.VP)(t.TC.SET_PAYMENTS_CLN,(0,e.xk)()),ne=(0,e.VP)(t.TC.SEND_PAYMENT_CLN,(0,e.xk)()),Me=(0,e.VP)(t.TC.SEND_PAYMENT_STATUS_CLN,(0,e.xk)()),Ce=(0,e.VP)(t.TC.GET_QUERY_ROUTES_CLN,(0,e.xk)()),le=(0,e.VP)(t.TC.SET_QUERY_ROUTES_CLN,(0,e.xk)()),T=(0,e.VP)(t.TC.FETCH_CHANNELS_CLN),n=(0,e.VP)(t.TC.SET_CHANNELS_CLN,(0,e.xk)()),c=(0,e.VP)(t.TC.UPDATE_CHANNEL_CLN,(0,e.xk)()),m=(0,e.VP)(t.TC.SAVE_NEW_CHANNEL_CLN,(0,e.xk)()),d=(0,e.VP)(t.TC.CLOSE_CHANNEL_CLN,(0,e.xk)()),C=(0,e.VP)(t.TC.REMOVE_CHANNEL_CLN,(0,e.xk)()),A=(0,e.VP)(t.TC.PEER_LOOKUP_CLN,(0,e.xk)()),k=(0,e.VP)(t.TC.CHANNEL_LOOKUP_CLN,(0,e.xk)()),_=(0,e.VP)(t.TC.INVOICE_LOOKUP_CLN,(0,e.xk)()),a=(0,e.VP)(t.TC.SET_LOOKUP_CLN,(0,e.xk)()),b=(0,e.VP)(t.TC.GET_FORWARDING_HISTORY_CLN,(0,e.xk)()),z=(0,e.VP)(t.TC.SET_FORWARDING_HISTORY_CLN,(0,e.xk)()),N=(0,e.VP)(t.TC.FETCH_INVOICES_CLN),q=(0,e.VP)(t.TC.SET_INVOICES_CLN,(0,e.xk)()),pe=(0,e.VP)(t.TC.SAVE_NEW_INVOICE_CLN,(0,e.xk)()),ze=(0,e.VP)(t.TC.ADD_INVOICE_CLN,(0,e.xk)()),Xe=(0,e.VP)(t.TC.UPDATE_INVOICE_CLN,(0,e.xk)()),We=(0,e.VP)(t.TC.DELETE_EXPIRED_INVOICE_CLN,(0,e.xk)()),oe=(0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_CLN,(0,e.xk)()),se=((0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_RES_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_UTXO_BALANCES_CLN)),ae=(0,e.VP)(t.TC.SET_UTXO_BALANCES_CLN,(0,e.xk)()),he=(0,e.VP)(t.TC.FETCH_OFFER_INVOICE_CLN,(0,e.xk)()),Ie=(0,e.VP)(t.TC.SET_OFFER_INVOICE_CLN,(0,e.xk)()),st=(0,e.VP)(t.TC.FETCH_OFFERS_CLN),me=(0,e.VP)(t.TC.SET_OFFERS_CLN,(0,e.xk)()),Ee=(0,e.VP)(t.TC.SAVE_NEW_OFFER_CLN,(0,e.xk)()),ue=(0,e.VP)(t.TC.ADD_OFFER_CLN,(0,e.xk)()),Be=(0,e.VP)(t.TC.DISABLE_OFFER_CLN,(0,e.xk)()),Ct=(0,e.VP)(t.TC.UPDATE_OFFER_CLN,(0,e.xk)()),ct=(0,e.VP)(t.TC.FETCH_OFFER_BOOKMARKS_CLN),dt=(0,e.VP)(t.TC.SET_OFFER_BOOKMARKS_CLN,(0,e.xk)()),Yt=(0,e.VP)(t.TC.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,e.xk)()),ve=(0,e.VP)(t.TC.DELETE_OFFER_BOOKMARK_CLN,(0,e.xk)()),_e=(0,e.VP)(t.TC.REMOVE_OFFER_BOOKMARK_CLN,(0,e.xk)())},283:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>Me});var e=g(4054),t=g(1413),x=g(7673),D=g(1397),l=g(6977),w=g(6354),f=g(9437),R=g(2462),h=g(8321),S=g(4416),y=g(1771),O=g(8430),I=g(9584),V=g(2142),j=g(4438),Y=g(1626),W=g(9640),Q=g(3202),J=g(2571),ie=g(8570),ee=g(1188),fe=g(7879),ne=g(177);let Me=(()=>{class Ce{constructor(T,n,c,m,d,C,A,k,_){this.actions=T,this.httpClient=n,this.store=c,this.sessionService=m,this.commonService=d,this.logger=C,this.router=A,this.wsService=k,this.location=_,this.CHILD_API_URL=S.H$+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_INFO_CLN),(0,D.Z)(a=>(this.flgInitialized=!1,this.store.dispatch((0,y.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,O.no)({payload:{action:"FetchInfo",status:S.wn.INITIATED}})),this.store.dispatch((0,y.mt)({payload:S.MZ.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+S.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(S.aU.SET_SELECTED_NODE))),(0,w.T)(b=>(this.logger.info(b),this.CLN_VERISON=b.version||"",b.chains&&b.chains.length&&b.chains[0]&&"object"==typeof b.chains[0]&&b.chains[0].hasOwnProperty("chain")&&b?.chains[0].chain&&b?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&b?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,O.no)({payload:{action:"FetchInfo",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.GET_NODE_INFO})),this.store.dispatch((0,y.Jh)()),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:S.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:S.aU.LOGOUT,payload:"Sorry Not Sorry, RTL is Bitcoin Only!"}):(this.initializeRemainingData(b,a.payload.loadPage),this.store.dispatch((0,O.no)({payload:{action:"FetchInfo",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.GET_NODE_INFO})),{type:S.TC.SET_INFO_CLN,payload:b||{}}))),(0,f.W)(b=>{const z=this.commonService.extractErrorCode(b),N=503===z?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(b);return this.router.navigate(["/error"],{state:{errorCode:z,errorMessage:N}}),this.handleErrorWithoutAlert("FetchInfo",S.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:z,error:N}),(0,x.of)({type:S.aU.VOID})})))))),this.fetchFeeRatesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_FEE_RATES_CLN),(0,D.Z)(a=>(this.store.dispatch((0,O.no)({payload:{action:"FetchFeeRates"+a.payload,status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.NETWORK_API+"/feeRates",{style:a.payload}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"FetchFeeRates"+a.payload,status:S.wn.COMPLETED}})),{type:S.TC.SET_FEE_RATES_CLN,payload:b||{}})),(0,f.W)(b=>(this.handleErrorWithoutAlert("FetchFeeRates"+a.payload,S.MZ.NO_SPINNER,"Fetching Fee Rates Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.getNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.GET_NEW_ADDRESS_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+S.rl.ON_CHAIN_API+"/newaddr",{addresstype:a.payload.addressCode}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,y.y0)({payload:S.MZ.GENERATE_NEW_ADDRESS})),{type:S.TC.SET_NEW_ADDRESS_CLN,payload:b&&b[a.payload.addressCode]?b[a.payload.addressCode]:{}})),(0,f.W)(b=>(this.handleErrorWithAlert("GenerateNewAddress",S.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+S.rl.ON_CHAIN_API,b),(0,x.of)({type:S.aU.VOID})))))))),this.setNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SET_NEW_ADDRESS_CLN),(0,w.T)(a=>(this.logger.info(a.payload),a.payload))),{dispatch:!1}),this.peersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_PEERS_CLN),(0,D.Z)(()=>(this.store.dispatch((0,O.no)({payload:{action:"FetchPeers",status:S.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+S.rl.PEERS_API).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.no)({payload:{action:"FetchPeers",status:S.wn.COMPLETED}})),{type:S.TC.SET_PEERS_CLN,payload:a||[]})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchPeers",S.MZ.NO_SPINNER,"Fetching Peers Failed.",a),(0,x.of)({type:S.aU.VOID})))))))),this.saveNewPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SAVE_NEW_PEER_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.CONNECT_PEER})),this.store.dispatch((0,O.no)({payload:{action:"SaveNewPeer",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.PEERS_API,{id:a.payload.id}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"SaveNewPeer",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.CONNECT_PEER})),this.store.dispatch((0,O.Qj)({payload:b||[]})),{type:S.TC.NEWLY_ADDED_PEER_CLN,payload:{peer:b.find(z=>0===a.payload.id.indexOf(z.id?z.id:""))}})),(0,f.W)(b=>(this.handleErrorWithoutAlert("SaveNewPeer",S.MZ.CONNECT_PEER,"Peer Connection Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.detachPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.DETACH_PEER_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+S.rl.PEERS_API+"/disconnect",{id:a.payload.id,force:a.payload.force}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,y.y0)({payload:S.MZ.DISCONNECT_PEER})),this.store.dispatch((0,y.UI)({payload:"Peer Disconnected Successfully!"})),{type:S.TC.REMOVE_PEER_CLN,payload:{id:a.payload.id}})),(0,f.W)(b=>(this.handleErrorWithAlert("PeerDisconnect",S.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+S.rl.PEERS_API+"/"+a.payload.id,b),(0,x.of)({type:S.aU.VOID})))))))),this.channelsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_CHANNELS_CLN),(0,D.Z)(()=>(this.store.dispatch((0,O.no)({payload:{action:"FetchChannels",status:S.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+S.rl.CHANNELS_API+"/listPeerChannels"))),(0,w.T)(a=>{this.logger.info(a),this.store.dispatch((0,O.no)({payload:{action:"FetchChannels",status:S.wn.COMPLETED}}));const b={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return a.forEach(z=>{"CHANNELD_NORMAL"===z.state?z.peer_connected?b.activeChannels.push(z):b.inactiveChannels.push(z):b.pendingChannels.push(z)}),{type:S.TC.SET_CHANNELS_CLN,payload:b}}),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchChannels",S.MZ.NO_SPINNER,"Fetching Channels Failed.",a),(0,x.of)({type:S.aU.VOID}))))),this.openNewChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SAVE_NEW_CHANNEL_CLN),(0,D.Z)(a=>{this.store.dispatch((0,y.mt)({payload:S.MZ.OPEN_CHANNEL})),this.store.dispatch((0,O.no)({payload:{action:"SaveNewChannel",status:S.wn.INITIATED}}));const b={id:a.payload.peerId,amount:a.payload.amount,feerate:a.payload.feeRate,announce:a.payload.announce};return a.payload.minconf&&(b.minconf=a.payload.minconf),a.payload.utxos&&(b.utxos=a.payload.utxos),a.payload.requestAmount&&(b.request_amt=a.payload.requestAmount),a.payload.compactLease&&(b.compact_lease=a.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+S.rl.CHANNELS_API,b).pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,O.no)({payload:{action:"SaveNewChannel",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.OPEN_CHANNEL})),this.store.dispatch((0,y.UI)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,O.g6)()),{type:S.TC.FETCH_CHANNELS_CLN})),(0,f.W)(z=>(this.handleErrorWithoutAlert("SaveNewChannel",S.MZ.OPEN_CHANNEL,"Opening Channel Failed.",z),(0,x.of)({type:S.aU.VOID}))))}))),this.updateChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.UPDATE_CHANNEL_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+S.rl.CHANNELS_API+"/setChannelFee",a.payload).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,y.y0)({payload:S.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,y.UI)("all"===a.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:S.TC.FETCH_CHANNELS_CLN})),(0,f.W)(b=>(this.handleErrorWithAlert("UpdateChannel",S.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+S.rl.CHANNELS_API,b),(0,x.of)({type:S.aU.VOID})))))))),this.closeChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.CLOSE_CHANNEL_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:a.payload.force?S.MZ.FORCE_CLOSE_CHANNEL:S.MZ.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+S.rl.CHANNELS_API+"/close",{id:a.payload.channelId,unilateraltimeout:a.payload.force?1:null}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,y.y0)({payload:a.payload.force?S.MZ.FORCE_CLOSE_CHANNEL:S.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,O.$Q)()),this.store.dispatch((0,O.g6)()),this.store.dispatch((0,y.UI)({payload:"Channel Closed Successfully!"})),{type:S.TC.REMOVE_CHANNEL_CLN,payload:a.payload})),(0,f.W)(b=>(this.handleErrorWithAlert("CloseChannel",a.payload.force?S.MZ.FORCE_CLOSE_CHANNEL:S.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+S.rl.CHANNELS_API,b),(0,x.of)({type:S.aU.VOID})))))))),this.paymentsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_PAYMENTS_CLN),(0,D.Z)(()=>(this.store.dispatch((0,O.no)({payload:{action:"FetchPayments",status:S.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+S.rl.PAYMENTS_API))),(0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.no)({payload:{action:"FetchPayments",status:S.wn.COMPLETED}})),{type:S.TC.SET_PAYMENTS_CLN,payload:a||[]})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchPayments",S.MZ.NO_SPINNER,"Fetching Payments Failed.",a),(0,x.of)({type:S.aU.VOID}))))),this.fetchOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_OFFER_INVOICE_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.FETCH_INVOICE})),this.store.dispatch((0,O.no)({payload:{action:"FetchOfferInvoice",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.OFFERS_API+"/fetchOfferInvoice",a.payload).pipe((0,w.T)(b=>{this.logger.info(b),setTimeout(()=>{this.store.dispatch((0,O.no)({payload:{action:"FetchOfferInvoice",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.FETCH_INVOICE})),this.store.dispatch((0,O.GZ)({payload:b||{}}))},500)}),(0,f.W)(b=>(this.handleErrorWithoutAlert("FetchOfferInvoice",S.MZ.FETCH_INVOICE,"Offer Invoice Fetch Failed",b),(0,x.of)({type:S.aU.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SET_OFFER_INVOICE_CLN),(0,w.T)(a=>(this.logger.info(a.payload),a.payload))),{dispatch:!1}),this.sendPaymentCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SEND_PAYMENT_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:a.payload.uiMessage})),this.store.dispatch((0,O.no)({payload:{action:"SendPayment",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.PAYMENTS_API,a.payload).pipe((0,w.T)(b=>{this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"SendPayment",status:S.wn.COMPLETED}}));let z="Payment Sent Successfully!";b.saveToDBError&&(z="Payment Sent Successfully but Offer Saving to Database Failed."),b.saveToDBResponse&&"NA"!==b.saveToDBResponse&&(this.store.dispatch((0,O.Db)({payload:b.saveToDBResponse})),z="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,O.$Q)()),this.store.dispatch((0,O.g6)()),this.store.dispatch((0,O.CK)()),this.store.dispatch((0,y.y0)({payload:a.payload.uiMessage})),this.store.dispatch((0,y.UI)({payload:z})),this.store.dispatch((0,O.N4)({payload:b.paymentResponse}))},1e3)}),(0,f.W)(b=>(this.logger.error("Error: "+JSON.stringify(b)),a.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",a.payload.uiMessage,"Send Payment Failed.",b):this.handleErrorWithAlert("SendPayment",a.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+S.rl.PAYMENTS_API,b),(0,x.of)({type:S.aU.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.GET_QUERY_ROUTES_CLN),(0,D.Z)(a=>(this.store.dispatch((0,O.no)({payload:{action:"GetQueryRoutes",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.NETWORK_API+"/getRoute",{id:a.payload.destPubkey,amount_msat:a.payload.amount,riskfactor:0}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"GetQueryRoutes",status:S.wn.COMPLETED}})),{type:S.TC.SET_QUERY_ROUTES_CLN,payload:b})),(0,f.W)(b=>(this.store.dispatch((0,O.Hm)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",S.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+S.rl.NETWORK_API+"/getRoute",b),(0,x.of)({type:S.aU.VOID})))))))),this.setQueryRoutesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SET_QUERY_ROUTES_CLN),(0,w.T)(a=>a.payload)),{dispatch:!1}),this.peerLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.PEER_LOOKUP_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.SEARCHING_NODE})),this.store.dispatch((0,O.no)({payload:{action:"Lookup",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.NETWORK_API+"/listNodes",{id:a.payload}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"Lookup",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.SEARCHING_NODE})),{type:S.TC.SET_LOOKUP_CLN,payload:b})),(0,f.W)(b=>(this.handleErrorWithAlert("Lookup",S.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+S.rl.NETWORK_API+"/listNodes/"+a.payload,b),(0,x.of)({type:S.aU.VOID})))))))),this.channelLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.CHANNEL_LOOKUP_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:a.payload.uiMessage})),this.store.dispatch((0,O.no)({payload:{action:"Lookup",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.NETWORK_API+"/listChannels",{short_channel_id:a.payload.shortChannelID}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"Lookup",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:a.payload.uiMessage})),{type:S.TC.SET_LOOKUP_CLN,payload:b})),(0,f.W)(b=>(a.payload.showError?this.handleErrorWithAlert("Lookup",a.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+S.rl.NETWORK_API+"/listChannels/"+a.payload.shortChannelID,b):this.store.dispatch((0,y.y0)({payload:a.payload.uiMessage})),this.store.dispatch((0,O.$J)({payload:[]})),(0,x.of)({type:S.aU.VOID})))))))),this.invoiceLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.INVOICE_LOOKUP_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,O.no)({payload:{action:"Lookup",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.INVOICES_API+"/lookup",{label:a.payload}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"Lookup",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.SEARCHING_INVOICE})),b.invoices&&b.invoices.length&&b.invoices.length>0&&this.store.dispatch((0,O.Dq)({payload:b.invoices[0]})),{type:S.TC.SET_LOOKUP_CLN,payload:b.invoices&&b.invoices.length&&b.invoices.length>0?b.invoices[0]:b})),(0,f.W)(b=>(this.handleErrorWithoutAlert("Lookup",S.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",b),this.store.dispatch((0,y.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,x.of)({type:S.aU.VOID})))))))),this.setLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SET_LOOKUP_CLN),(0,w.T)(a=>(this.logger.info(a.payload),a.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.GET_FORWARDING_HISTORY_CLN),(0,D.Z)(a=>{const b=a.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,O.no)({payload:{action:"FetchForwardingHistory"+b,status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.CHANNELS_API+"/listForwards",a.payload).pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,O.no)({payload:{action:"FetchForwardingHistory"+b,status:S.wn.COMPLETED}})),a.payload.status===S.xk.FAILED?this.store.dispatch((0,O.kv)({payload:{status:S.xk.FAILED,totalForwards:z.length,listForwards:z}})):a.payload.status===S.xk.LOCAL_FAILED?this.store.dispatch((0,O.kv)({payload:{status:S.xk.LOCAL_FAILED,totalForwards:z.length,listForwards:z}})):a.payload.status===S.xk.SETTLED&&this.store.dispatch((0,O.kv)({payload:{status:S.xk.SETTLED,totalForwards:z.length,listForwards:z}})),{type:S.aU.VOID})),(0,f.W)(z=>(this.handleErrorWithAlert("FetchForwardingHistory"+b,S.MZ.NO_SPINNER,"Get "+a.payload.status+" Forwarding History Failed",this.CHILD_API_URL+S.rl.CHANNELS_API+"/listForwards",z),(0,x.of)({type:S.aU.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.DELETE_EXPIRED_INVOICE_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+S.rl.INVOICES_API+"/delete",{subsystem:"expiredinvoices",age:S.NG}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,y.y0)({payload:S.MZ.DELETE_INVOICE})),this.store.dispatch((0,y.UI)({payload:b.status})),{type:S.TC.FETCH_INVOICES_CLN})),(0,f.W)(b=>(this.handleErrorWithAlert("DeleteInvoices",S.MZ.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+S.rl.INVOICES_API,b),(0,x.of)({type:S.aU.VOID})))))))),this.saveNewInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SAVE_NEW_INVOICE_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.ADD_INVOICE})),this.store.dispatch((0,O.no)({payload:{action:"SaveNewInvoice",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.INVOICES_API,a.payload).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"SaveNewInvoice",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.ADD_INVOICE})),b.amount_msat=a.payload.amount_msat,b.label=a.payload.label,b.expires_at=Math.round((new Date).getTime()/1e3+a.payload.expiry),b.description=a.payload.description,b.status="unpaid",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{invoice:b,newlyAdded:!0,component:h.y}}}))},200),{type:S.TC.ADD_INVOICE_CLN,payload:b})),(0,f.W)(b=>(this.handleErrorWithoutAlert("SaveNewInvoice",S.MZ.ADD_INVOICE,"Add Invoice Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.saveNewOfferCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SAVE_NEW_OFFER_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.CREATE_OFFER})),this.store.dispatch((0,O.no)({payload:{action:"SaveNewOffer",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.OFFERS_API,a.payload).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"SaveNewOffer",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{offer:b,newlyAdded:!0,component:V.f}}}))},100),{type:S.TC.ADD_OFFER_CLN,payload:b})),(0,f.W)(b=>(this.handleErrorWithoutAlert("SaveNewOffer",S.MZ.CREATE_OFFER,"Create Offer Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.invoicesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_INVOICES_CLN),(0,D.Z)(()=>(this.store.dispatch((0,O.no)({payload:{action:"FetchInvoices",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.INVOICES_API+"/lookup",null))),(0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.no)({payload:{action:"FetchInvoices",status:S.wn.COMPLETED}})),{type:S.TC.SET_INVOICES_CLN,payload:a})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchInvoices",S.MZ.NO_SPINNER,"Fetching Invoices Failed.",a),(0,x.of)({type:S.aU.VOID}))))),this.offersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_OFFERS_CLN),(0,D.Z)(a=>(this.store.dispatch((0,O.no)({payload:{action:"FetchOffers",status:S.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+S.rl.OFFERS_API).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"FetchOffers",status:S.wn.COMPLETED}})),{type:S.TC.SET_OFFERS_CLN,payload:b.offers?b.offers:[]})),(0,f.W)(b=>(this.handleErrorWithoutAlert("FetchOffers",S.MZ.NO_SPINNER,"Fetching Offers Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.offersDisableCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.DISABLE_OFFER_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.DISABLE_OFFER})),this.store.dispatch((0,O.no)({payload:{action:"DisableOffer",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.OFFERS_API+"/disableOffer",{offer_id:a.payload.offer_id}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"DisableOffer",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.DISABLE_OFFER})),this.store.dispatch((0,y.UI)({payload:"Offer Disabled Successfully!"})),{type:S.TC.UPDATE_OFFER_CLN,payload:{offer:b}})),(0,f.W)(b=>(this.handleErrorWithoutAlert("DisableOffer",S.MZ.DISABLE_OFFER,"Disabling Offer Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.offerBookmarksFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_OFFER_BOOKMARKS_CLN),(0,D.Z)(a=>(this.store.dispatch((0,O.no)({payload:{action:"FetchOfferBookmarks",status:S.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+S.rl.OFFERS_API+"/offerbookmarks").pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"FetchOfferBookmarks",status:S.wn.COMPLETED}})),{type:S.TC.SET_OFFER_BOOKMARKS_CLN,payload:b||[]})),(0,f.W)(b=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",S.MZ.NO_SPINNER,"Fetching Offer Bookmarks Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.peidOffersDeleteCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.DELETE_OFFER_BOOKMARK_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,O.no)({payload:{action:"DeleteOfferBookmark",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.OFFERS_API+"/offerbookmark/delete",{offer_str:a.payload.bolt12}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"DeleteOfferBookmark",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,y.UI)({payload:"Offer Bookmark Deleted Successfully!"})),{type:S.TC.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:a.payload.bolt12}})),(0,f.W)(b=>(this.handleErrorWithAlert("DeleteOfferBookmark",S.MZ.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+S.rl.OFFERS_API+"/offerbookmark/"+a.payload.bolt12,b),(0,x.of)({type:S.aU.VOID})))))))),this.SetChannelTransactionCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SET_CHANNEL_TRANSACTION_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.SEND_FUNDS})),this.store.dispatch((0,O.no)({payload:{action:"SetChannelTransaction",status:S.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+S.rl.ON_CHAIN_API,a.payload).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"SetChannelTransaction",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.SEND_FUNDS})),this.store.dispatch((0,O.g6)()),{type:S.TC.SET_CHANNEL_TRANSACTION_RES_CLN,payload:b})),(0,f.W)(b=>(this.handleErrorWithoutAlert("SetChannelTransaction",S.MZ.SEND_FUNDS,"Sending Fund Failed.",b),(0,x.of)({type:S.aU.VOID})))))))),this.utxoBalancesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_UTXO_BALANCES_CLN),(0,D.Z)(()=>(this.store.dispatch((0,O.no)({payload:{action:"FetchUTXOBalances",status:S.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+S.rl.ON_CHAIN_API+"/utxos"))),(0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.no)({payload:{action:"FetchUTXOBalances",status:S.wn.COMPLETED}})),{type:S.TC.SET_UTXO_BALANCES_CLN,payload:a})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchUTXOBalances",S.MZ.NO_SPINNER,"Fetching UTXO and Balances Failed.",a),(0,x.of)({type:S.aU.VOID}))))),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.FETCH_PAGE_SETTINGS_CLN),(0,D.Z)(()=>(this.store.dispatch((0,O.no)({payload:{action:"FetchPageSettings",status:S.wn.INITIATED}})),this.httpClient.get(S.rl.PAGE_SETTINGS_API).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.no)({payload:{action:"FetchPageSettings",status:S.wn.COMPLETED}})),{type:S.TC.SET_PAGE_SETTINGS_CLN,payload:a||[]})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchPageSettings",S.MZ.NO_SPINNER,"Fetching Page Settings Failed.",a),(0,x.of)({type:S.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(S.TC.SAVE_PAGE_SETTINGS_CLN),(0,D.Z)(a=>(this.store.dispatch((0,y.mt)({payload:S.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,O.no)({payload:{action:"SavePageSettings",status:S.wn.INITIATED}})),this.httpClient.post(S.rl.PAGE_SETTINGS_API,a.payload).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.no)({payload:{action:"SavePageSettings",status:S.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:S.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,y.UI)({payload:"Page Layout Updated Successfully!"})),{type:S.TC.SET_PAGE_SETTINGS_CLN,payload:b||[]})),(0,f.W)(b=>(this.handleErrorWithAlert("SavePageSettings",S.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",S.rl.PAGE_SETTINGS_API,b),(0,x.of)({type:S.aU.VOID})))))))),this.store.select(I.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(a=>{a.FetchInfo.status!==S.wn.COMPLETED&&a.FetchInfo.status!==S.wn.ERROR||a.FetchChannels.status!==S.wn.COMPLETED&&a.FetchChannels.status!==S.wn.ERROR||a.FetchUTXOBalances.status!==S.wn.COMPLETED&&a.FetchUTXOBalances.status!==S.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,y.y0)({payload:S.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(a=>{this.logger.info("Received new message from the service: "+JSON.stringify(a)),a&&a.data&&a.data[S.Jr.INVOICE_PAYMENT]&&a.data[S.Jr.INVOICE_PAYMENT].label&&this.store.dispatch((0,O.Dq)({payload:a.data[S.Jr.INVOICE_PAYMENT]}))})}initializeRemainingData(T,n){this.sessionService.setItem("clnUnlocked","true");const c={identity_pubkey:T.id,alias:T.alias,testnet:"testnet"===T.network.toLowerCase(),chains:T.chains,uris:T.uris,version:T.version,api_version:T.api_version,numberOfPendingChannels:T.num_pending_channels};this.store.dispatch((0,y.mt)({payload:S.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,y.Fl)({payload:c}));let m=this.location.path();m.includes("/lnd/")?m=m?.replace("/lnd/","/cln/"):m.includes("/ecl/")&&(m=m?.replace("/ecl/","/cln/")),(m.includes("/login")||m.includes("/error")||""===m||"HOME"===n||m.includes("?access-key="))&&(m="/cln/home"),this.router.navigate([m]),this.store.dispatch((0,O.Do)()),this.store.dispatch((0,O.$Q)()),this.store.dispatch((0,O.g6)()),this.store.dispatch((0,O.kX)({payload:"perkw"})),this.store.dispatch((0,O.kX)({payload:"perkb"})),this.store.dispatch((0,O.Gy)()),this.store.dispatch((0,O.CK)())}handleErrorWithoutAlert(T,n,c,m){if(this.logger.error("ERROR IN: "+T+"\n"+JSON.stringify(m)),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,y.y0)({payload:n}));const d=this.commonService.extractErrorMessage(m,c);this.store.dispatch((0,O.no)({payload:{action:T,status:S.wn.ERROR,statusCode:m.status.toString(),message:d}}))}}handleErrorWithAlert(T,n,c,m,d){if(this.logger.error(d),401===d.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(d.error)})),this.store.dispatch((0,y.UI)({payload:"Authentication Failed: "+d.error}));else{this.store.dispatch((0,y.y0)({payload:n}));const C=this.commonService.extractErrorMessage(d);this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:c,message:{code:d.status,message:C,URL:m},component:R.f}}})),this.store.dispatch((0,O.no)({payload:{action:T,status:S.wn.ERROR,statusCode:d.status.toString(),message:C,URL:m}}))}}ngOnDestroy(){this.unSubs.forEach(T=>{T.next(null),T.complete()})}static{this.\u0275fac=function(n){return new(n||Ce)(j.KVO(e.En),j.KVO(Y.Qq),j.KVO(W.il),j.KVO(Q.Q),j.KVO(J.h),j.KVO(ie.gP),j.KVO(ee.Ix),j.KVO(fe.I),j.KVO(ne.aZ))}}static{this.\u0275prov=j.jDH({token:Ce,factory:Ce.\u0275fac})}}return Ce})()},9584:(Qe,te,g)=>{"use strict";g.d(te,{Al:()=>O,BM:()=>I,Dv:()=>j,GX:()=>W,Ie:()=>V,KT:()=>f,O5:()=>ie,Pj:()=>y,RB:()=>S,RQ:()=>J,aJ:()=>Y,av:()=>x,ip:()=>ee,kQ:()=>Q,kr:()=>h,mH:()=>D,os:()=>R,ru:()=>w});var e=g(9640);const t=(0,e.UX)("cln"),x=(0,e.Mz)(t,ne=>({pageSettings:ne.pageSettings,apiCallStatus:ne.apisCallStatus.FetchPageSettings})),D=(0,e.Mz)(t,ne=>ne.information),w=((0,e.Mz)(t,ne=>ne.apisCallStatus.FetchInfo),(0,e.Mz)(t,ne=>ne.apisCallStatus)),f=(0,e.Mz)(t,ne=>({payments:ne.payments,apiCallStatus:ne.apisCallStatus.FetchPayments})),R=(0,e.Mz)(t,ne=>({peers:ne.peers,apiCallStatus:ne.apisCallStatus.FetchPeers})),h=(0,e.Mz)(t,ne=>({feeRatesPerKB:ne.feeRatesPerKB,apiCallStatus:ne.apisCallStatus.FetchFeeRatesperkb})),S=(0,e.Mz)(t,ne=>({feeRatesPerKW:ne.feeRatesPerKW,apiCallStatus:ne.apisCallStatus.FetchFeeRatesperkw})),y=(0,e.Mz)(t,ne=>({listInvoices:ne.invoices,apiCallStatus:ne.apisCallStatus.FetchInvoices})),O=(0,e.Mz)(t,ne=>({utxos:ne.utxos,balance:ne.balance,localRemoteBalance:ne.localRemoteBalance,apiCallStatus:ne.apisCallStatus.FetchUTXOBalances})),I=(0,e.Mz)(t,ne=>({activeChannels:ne.activeChannels,pendingChannels:ne.pendingChannels,inactiveChannels:ne.inactiveChannels,apiCallStatus:ne.apisCallStatus.FetchChannels})),V=(0,e.Mz)(t,ne=>({forwardingHistory:ne.forwardingHistory,apiCallStatus:ne.apisCallStatus.FetchForwardingHistoryS})),j=(0,e.Mz)(t,ne=>({failedForwardingHistory:ne.failedForwardingHistory,apiCallStatus:ne.apisCallStatus.FetchForwardingHistoryF})),Y=(0,e.Mz)(t,ne=>({localFailedForwardingHistory:ne.localFailedForwardingHistory,apiCallStatus:ne.apisCallStatus.FetchForwardingHistoryL})),W=(0,e.Mz)(t,ne=>({information:ne.information,balance:ne.balance,numPeers:ne.peers.length})),Q=(0,e.Mz)(t,ne=>({information:ne.information,balance:ne.balance})),J=(0,e.Mz)(t,ne=>({information:ne.information,fees:ne.fees,apisCallStatus:[ne.apisCallStatus.FetchInfo,ne.apisCallStatus.FetchForwardingHistoryS]})),ie=(0,e.Mz)(t,ne=>({offers:ne.offers,apiCallStatus:ne.apisCallStatus.FetchOffers})),ee=(0,e.Mz)(t,ne=>({offersBookmarks:ne.offersBookmarks,apiCallStatus:ne.apisCallStatus.FetchOfferBookmarks}))},8321:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>st});var e=g(5351),t=g(5383),x=g(1413),D=g(6977),l=g(4416),w=g(9584),f=g(4438),R=g(8570),h=g(2571),S=g(5416),y=g(9640),O=g(177),I=g(60),V=g(2920),j=g(6038),Y=g(8834),W=g(5596),Q=g(1997),J=g(9183),ie=g(4823),ee=g(8288),fe=g(9157),ne=g(9587);const Me=me=>({"display-none":me}),Ce=me=>({"xs-scroll-y":me}),le=(me,Ee)=>({"mt-2":me,"mt-1":Ee}),T=me=>({"mr-0":me}),n=()=>[];function c(me,Ee){if(1&me&&f.nrm(0,"qr-code",33),2&me){const ue=f.XpG();f.Y8G("value",(null==ue.invoice?null:ue.invoice.bolt11)||(null==ue.invoice?null:ue.invoice.bolt12))("size",ue.qrWidth)("errorCorrectionLevel","L")}}function m(me,Ee){1&me&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function d(me,Ee){if(1&me&&f.nrm(0,"span",35),2&me){const ue=f.XpG();f.Y8G("ngClass",f.eq3(1,T,ue.screenSize===ue.screenSizeEnum.XS))}}function C(me,Ee){if(1&me&&f.nrm(0,"span",36),2&me){const ue=f.XpG();f.Y8G("ngClass",f.eq3(1,T,ue.screenSize===ue.screenSizeEnum.XS))}}function A(me,Ee){if(1&me&&f.nrm(0,"span",37),2&me){const ue=f.XpG();f.Y8G("ngClass",f.eq3(1,T,ue.screenSize===ue.screenSizeEnum.XS))}}function k(me,Ee){if(1&me&&f.nrm(0,"qr-code",33),2&me){const ue=f.XpG();f.Y8G("value",(null==ue.invoice?null:ue.invoice.bolt11)||(null==ue.invoice?null:ue.invoice.bolt12))("size",ue.qrWidth)("errorCorrectionLevel","L")}}function _(me,Ee){1&me&&(f.j41(0,"span",38),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function a(me,Ee){1&me&&f.nrm(0,"mat-divider",39)}function b(me,Ee){if(1&me&&(f.j41(0,"div",20)(1,"div",40),f.nrm(2,"fa-icon",41),f.j41(3,"span"),f.EFF(4),f.k0s()()()),2&me){const ue=f.XpG();f.R7$(2),f.Y8G("icon",ue.faExclamationTriangle),f.R7$(2),f.JRh(null==ue.invoice?null:ue.invoice.warning_capacity)}}function z(me,Ee){1&me&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function N(me,Ee){1&me&&f.nrm(0,"span",47)}function q(me,Ee){if(1&me&&(f.j41(0,"div",43)(1,"div",44)(2,"span",45),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,N,1,0,"span",46),f.k0s()()),2&me){const ue=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,(null==ue.invoice?null:ue.invoice.amount_received_msat)/1e3)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,n).constructor(35))}}function pe(me,Ee){if(1&me&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&me){const ue=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,(null==ue.invoice?null:ue.invoice.amount_received_msat)/1e3)," Sats")}}function ze(me,Ee){if(1&me&&(f.qex(0),f.DNE(1,q,6,5,"div",42)(2,pe,3,3,"div",24),f.bVm()),2&me){const ue=f.XpG();f.R7$(),f.Y8G("ngIf",ue.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!ue.flgInvoicePaid)}}function Xe(me,Ee){1&me&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function We(me,Ee){1&me&&f.nrm(0,"mat-spinner",49),2&me&&f.Y8G("diameter",20)}function oe(me,Ee){if(1&me&&(f.qex(0),f.DNE(1,Xe,2,0,"span",24)(2,We,1,1,"mat-spinner",48),f.bVm()),2&me){const ue=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==ue.invoice?null:ue.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==ue.invoice?null:ue.invoice.status))}}function X(me,Ee){if(1&me&&(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&me){const ue=f.XpG();f.R7$(7),f.JRh(null==ue.invoice?null:ue.invoice.payment_hash),f.R7$(7),f.JRh(null==ue.invoice?null:ue.invoice.label)}}function se(me,Ee){1&me&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ae(me,Ee){1&me&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function he(me,Ee){if(1&me){const ue=f.RV6();f.j41(0,"button",50),f.bIt("copied",function(Ct){f.eBV(ue);const ct=f.XpG();return f.Njj(ct.onCopyPayment(Ct))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&me){const ue=f.XpG();f.Y8G("payload",(null==ue.invoice?null:ue.invoice.bolt11)||(null==ue.invoice?null:ue.invoice.bolt12))}}function Ie(me,Ee){if(1&me){const ue=f.RV6();f.j41(0,"button",51),f.bIt("click",function(){f.eBV(ue);const Ct=f.XpG();return f.Njj(Ct.onClose())}),f.EFF(1,"OK"),f.k0s()}}let st=(()=>{class me{constructor(ue,Be,Ct,ct,dt,Yt){this.dialogRef=ue,this.data=Be,this.logger=Ct,this.commonService=ct,this.snackBar=dt,this.store=Yt,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.unSubs=[new x.B,new x.B,new x.B,new x.B,new x.B]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(w.Pj).pipe((0,D.Q)(this.unSubs[1])).subscribe(ue=>{const Ct=(ue.listInvoices.invoices||[])?.find(ct=>ct.payment_hash===this.invoice.payment_hash)||null;Ct&&(this.invoice=Ct),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(Ct),this.logger.info(ue)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(ue){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+ue)}ngOnDestroy(){this.unSubs.forEach(ue=>{ue.next(null),ue.complete()})}static{this.\u0275fac=function(Be){return new(Be||me)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(R.gP),f.rXU(h.h),f.rXU(S.UG),f.rXU(y.il))}}static{this.\u0275cmp=f.VBU({type:me,selectors:[["rtl-cln-invoice-information"]],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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(Be,Ct){if(1&Be){const ct=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,c,1,3,"qr-code",3)(3,m,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,d,1,3,"span",10)(11,C,1,3,"span",11)(12,A,1,3,"span",12),f.k0s()(),f.j41(13,"button",13),f.bIt("click",function(){return f.eBV(ct),f.Njj(Ct.onClose())}),f.EFF(14,"X"),f.k0s()(),f.j41(15,"mat-card-content",14)(16,"div",15)(17,"div",16),f.DNE(18,k,1,3,"qr-code",3)(19,_,2,0,"span",17),f.k0s(),f.DNE(20,a,1,0,"mat-divider",18)(21,b,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,z,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,ze,3,2,"ng-container",24)(35,oe,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,X,16,2,"div",24),f.j41(65,"div",28)(66,"button",29),f.bIt("click",function(){return f.eBV(ct),f.Njj(Ct.onShowAdvanced())}),f.DNE(67,se,2,0,"p",30)(68,ae,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(70,he,2,1,"button",31)(71,Ie,2,0,"button",32),f.k0s()()()()()}if(2&Be){const ct=f.sdS(69);f.R7$(),f.Y8G("fxLayoutAlign",null!=Ct.invoice&&Ct.invoice.bolt11&&""!==(null==Ct.invoice?null:Ct.invoice.bolt11)||null!=Ct.invoice&&Ct.invoice.bolt12&&""!==(null==Ct.invoice?null:Ct.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(40,Me,Ct.screenSize===Ct.screenSizeEnum.XS||Ct.screenSize===Ct.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ct.invoice?null:Ct.invoice.bolt11)&&""!==(null==Ct.invoice?null:Ct.invoice.bolt11)||(null==Ct.invoice?null:Ct.invoice.bolt12)&&""!==(null==Ct.invoice?null:Ct.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ct.invoice&&Ct.invoice.bolt11||null!=Ct.invoice&&Ct.invoice.bolt12)),f.R7$(4),f.Y8G("icon",Ct.faReceipt),f.R7$(2),f.SpI(" ",Ct.screenSize===Ct.screenSizeEnum.XS?Ct.newlyAdded?"Created":"Invoice":Ct.newlyAdded?"Invoice Created":"Invoice Information"," "),f.R7$(),f.Y8G("ngIf","paid"===(null==Ct.invoice?null:Ct.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==Ct.invoice?null:Ct.invoice.status)),f.R7$(),f.Y8G("ngIf","expired"===(null==Ct.invoice?null:Ct.invoice.status)),f.R7$(3),f.Y8G("ngClass",f.eq3(42,Ce,Ct.screenSize===Ct.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Ct.invoice&&Ct.invoice.bolt11&&""!==(null==Ct.invoice?null:Ct.invoice.bolt11)||null!=Ct.invoice&&Ct.invoice.bolt12&&""!==(null==Ct.invoice?null:Ct.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(44,Me,Ct.screenSize!==Ct.screenSizeEnum.XS&&Ct.screenSize!==Ct.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ct.invoice?null:Ct.invoice.bolt11)&&""!==(null==Ct.invoice?null:Ct.invoice.bolt11)||(null==Ct.invoice?null:Ct.invoice.bolt12)&&""!==(null==Ct.invoice?null:Ct.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ct.invoice&&Ct.invoice.bolt11||null!=Ct.invoice&&Ct.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",Ct.screenSize===Ct.screenSizeEnum.XS||Ct.screenSize===Ct.screenSizeEnum.SM),f.R7$(),f.Y8G("ngIf",null==Ct.invoice?null:Ct.invoice.warning_capacity),f.R7$(4),f.JRh(Ct.screenSize===Ct.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI(" ",f.bMT(28,32,(null==Ct.invoice?null:Ct.invoice.amount_msat)/1e3||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Ct.invoice&&Ct.invoice.amount_msat)||"0"===(null==Ct.invoice?null:Ct.invoice.amount_msat)||"any"===(null==Ct.invoice?null:Ct.invoice.amount_msat)),f.R7$(5),f.Y8G("ngIf","paid"===(null==Ct.invoice?null:Ct.invoice.status)),f.R7$(),f.Y8G("ngIf","paid"!==(null==Ct.invoice?null:Ct.invoice.status)),f.R7$(7),f.JRh(f.i5U(43,34,1e3*(null==Ct.invoice?null:Ct.invoice.expires_at),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(49,37,1e3*(null==Ct.invoice?null:Ct.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),f.R7$(8),f.JRh((null==Ct.invoice?null:Ct.invoice.description)||"-"),f.R7$(5),f.SpI("",null!=Ct.invoice&&Ct.invoice.bolt12?"Bolt12":null!=Ct.invoice&&Ct.invoice.bolt11&&!Ct.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),f.R7$(2),f.JRh((null==Ct.invoice?null:Ct.invoice.bolt11)||(null==Ct.invoice?null:Ct.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",Ct.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(46,le,!Ct.showAdvanced,Ct.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!Ct.showAdvanced)("ngIfElse",ct),f.R7$(3),f.Y8G("ngIf",(null==Ct.invoice?null:Ct.invoice.bolt11)&&""!==(null==Ct.invoice?null:Ct.invoice.bolt11)||(null==Ct.invoice?null:Ct.invoice.bolt12)&&""!==(null==Ct.invoice?null:Ct.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ct.invoice&&Ct.invoice.bolt11||null!=Ct.invoice&&Ct.invoice.bolt12))}},dependencies:[O.YU,O.Sq,O.bT,I.aY,V.DJ,V.sA,V.UI,j.PW,Y.$z,W.m2,W.MM,Q.q,J.LG,ie.oV,ee.Um,fe.U,ne.N,O.QX,O.vh]})}}return me})()},2142:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>q});var e=g(5351),t=g(5383),x=g(1413),D=g(6977),l=g(4416),w=g(4438),f=g(8570),R=g(2571),h=g(5416),S=g(1534),y=g(177),O=g(60),I=g(2920),V=g(6038),j=g(8834),Y=g(5596),W=g(1997),Q=g(8288),J=g(9157),ie=g(9587);const ee=pe=>({"display-none":pe}),fe=pe=>({"xs-scroll-y":pe}),ne=(pe,ze)=>({"mt-2":pe,"mt-1":ze});function Me(pe,ze){if(1&pe&&w.nrm(0,"qr-code",28),2&pe){const Xe=w.XpG();w.Y8G("value",null==Xe.offer?null:Xe.offer.bolt12)("size",Xe.qrWidth)("errorCorrectionLevel","L")}}function Ce(pe,ze){1&pe&&(w.j41(0,"span",29),w.EFF(1,"N/A"),w.k0s())}function le(pe,ze){if(1&pe&&w.nrm(0,"qr-code",28),2&pe){const Xe=w.XpG();w.Y8G("value",null==Xe.offer?null:Xe.offer.bolt12)("size",Xe.qrWidth)("errorCorrectionLevel","L")}}function T(pe,ze){1&pe&&(w.j41(0,"span",30),w.EFF(1,"QR Code Not Applicable"),w.k0s())}function n(pe,ze){1&pe&&w.nrm(0,"mat-divider",31),2&pe&&w.Y8G("inset",!0)}function c(pe,ze){1&pe&&w.nrm(0,"mat-divider",20)}function m(pe,ze){if(1&pe&&(w.j41(0,"div",16)(1,"div",17)(2,"h4",18),w.EFF(3,"Used"),w.k0s(),w.j41(4,"span",19),w.EFF(5),w.k0s()(),w.j41(6,"div",17)(7,"h4",18),w.EFF(8,"Single Use"),w.k0s(),w.j41(9,"span",19),w.EFF(10),w.k0s()()()),2&pe){const Xe=w.XpG(2);w.R7$(5),w.SpI(" ",null!=Xe.offer&&Xe.offer.used?null!=Xe.offer&&Xe.offer.used?"Yes":"No":"N/K"," "),w.R7$(5),w.SpI(" ",null!=Xe.offer&&Xe.offer.single_use?null!=Xe.offer&&Xe.offer.single_use?"Yes":"No":"N/K"," ")}}function d(pe,ze){1&pe&&w.nrm(0,"mat-divider",20)}function C(pe,ze){if(1&pe&&(w.j41(0,"div",16)(1,"div",21)(2,"h4",18),w.EFF(3,"Issuer"),w.k0s(),w.j41(4,"span",34),w.EFF(5),w.k0s()()()),2&pe){const Xe=w.XpG(2);w.R7$(5),w.JRh(null==Xe.offerDecoded?null:Xe.offerDecoded.offer_issuer)}}function A(pe,ze){1&pe&&w.nrm(0,"mat-divider",20)}function k(pe,ze){if(1&pe&&(w.j41(0,"div",16)(1,"div",21)(2,"h4",18),w.EFF(3,"Label"),w.k0s(),w.j41(4,"span",19),w.EFF(5),w.k0s()()()),2&pe){const Xe=w.XpG(2);w.R7$(5),w.JRh(Xe.offer.label)}}function _(pe,ze){if(1&pe&&(w.j41(0,"div"),w.DNE(1,c,1,0,"mat-divider",32)(2,m,11,2,"div",33)(3,d,1,0,"mat-divider",32)(4,C,6,1,"div",33)(5,A,1,0,"mat-divider",32)(6,k,6,1,"div",33),w.nrm(7,"mat-divider",20),w.j41(8,"div",16)(9,"div",21)(10,"h4",18),w.EFF(11,"Offer ID"),w.k0s(),w.j41(12,"span",19),w.EFF(13),w.k0s()()(),w.nrm(14,"mat-divider",20),w.j41(15,"div",16)(16,"div",21)(17,"h4",18),w.EFF(18,"Offer Node ID"),w.k0s(),w.j41(19,"span",19),w.EFF(20),w.k0s()()(),w.nrm(21,"mat-divider",20),w.k0s()),2&pe){const Xe=w.XpG();w.R7$(),w.Y8G("ngIf",(null==Xe.offer?null:Xe.offer.used)||(null==Xe.offer?null:Xe.offer.single_use)),w.R7$(),w.Y8G("ngIf",(null==Xe.offer?null:Xe.offer.used)||(null==Xe.offer?null:Xe.offer.single_use)),w.R7$(),w.Y8G("ngIf",null==Xe.offerDecoded?null:Xe.offerDecoded.issuer),w.R7$(),w.Y8G("ngIf",null==Xe.offerDecoded?null:Xe.offerDecoded.issuer),w.R7$(),w.Y8G("ngIf",Xe.offer.label),w.R7$(),w.Y8G("ngIf",Xe.offer.label),w.R7$(7),w.JRh(Xe.offerDecoded.offer_id),w.R7$(7),w.JRh(null==Xe.offerDecoded?null:Xe.offerDecoded.offer_node_id)}}function a(pe,ze){1&pe&&(w.j41(0,"p"),w.EFF(1,"Show Advanced"),w.k0s())}function b(pe,ze){1&pe&&(w.j41(0,"p"),w.EFF(1,"Hide Advanced"),w.k0s())}function z(pe,ze){if(1&pe){const Xe=w.RV6();w.j41(0,"button",35),w.bIt("copied",function(oe){w.eBV(Xe);const X=w.XpG();return w.Njj(X.onCopyOffer(oe))}),w.EFF(1,"Copy Offer"),w.k0s()}if(2&pe){const Xe=w.XpG();w.Y8G("payload",null==Xe.offer?null:Xe.offer.bolt12)}}function N(pe,ze){if(1&pe){const Xe=w.RV6();w.j41(0,"button",36),w.bIt("click",function(){w.eBV(Xe);const oe=w.XpG();return w.Njj(oe.onClose())}),w.EFF(1,"OK"),w.k0s()}}let q=(()=>{class pe{constructor(Xe,We,oe,X,se,ae){this.dialogRef=Xe,this.data=We,this.logger=oe,this.commonService=X,this.snackBar=se,this.dataService=ae,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOfferPaid=!1,this.unSubs=[new x.B,new x.B,new x.B,new x.B,new x.B]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,D.Q)(this.unSubs[1])).subscribe(Xe=>{this.offerDecoded=Xe,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(Xe){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+Xe)}ngOnDestroy(){this.unSubs.forEach(Xe=>{Xe.next(null),Xe.complete()})}static{this.\u0275fac=function(We){return new(We||pe)(w.rXU(e.CP),w.rXU(e.Vh),w.rXU(f.gP),w.rXU(R.h),w.rXU(h.UG),w.rXU(S.u))}}static{this.\u0275cmp=w.VBU({type:pe,selectors:[["rtl-cln-offer-information"]],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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(We,oe){if(1&We){const X=w.RV6();w.j41(0,"div",1)(1,"div",2),w.DNE(2,Me,1,3,"qr-code",3)(3,Ce,2,0,"span",4),w.k0s(),w.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),w.nrm(7,"fa-icon",8),w.j41(8,"span",9),w.EFF(9),w.k0s()(),w.j41(10,"button",10),w.bIt("click",function(){return w.eBV(X),w.Njj(oe.onClose())}),w.EFF(11,"X"),w.k0s()(),w.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),w.DNE(15,le,1,3,"qr-code",3)(16,T,2,0,"span",14),w.k0s(),w.DNE(17,n,1,1,"mat-divider",15),w.j41(18,"div",16)(19,"div",17)(20,"h4",18),w.EFF(21,"Amount Requested (Sats)"),w.k0s(),w.j41(22,"span",19),w.EFF(23),w.nI1(24,"number"),w.k0s()(),w.j41(25,"div",17)(26,"h4",18),w.EFF(27,"Valid"),w.k0s(),w.j41(28,"span",19),w.EFF(29),w.k0s()()(),w.nrm(30,"mat-divider",20),w.j41(31,"div",16)(32,"div",21)(33,"h4",18),w.EFF(34,"Description"),w.k0s(),w.j41(35,"span",19),w.EFF(36),w.k0s()()(),w.nrm(37,"mat-divider",20),w.j41(38,"div",16)(39,"div",21)(40,"h4",18),w.EFF(41,"Offer"),w.k0s(),w.j41(42,"span",19),w.EFF(43),w.k0s()()(),w.DNE(44,_,22,8,"div",22),w.j41(45,"div",23)(46,"button",24),w.bIt("click",function(){return w.eBV(X),w.Njj(oe.onShowAdvanced())}),w.DNE(47,a,2,0,"p",25)(48,b,2,0,"ng-template",null,0,w.C5r),w.k0s(),w.DNE(50,z,2,1,"button",26)(51,N,2,0,"button",27),w.k0s()()()()()}if(2&We){const X=w.sdS(49);w.R7$(),w.Y8G("fxLayoutAlign",null!=oe.offer&&oe.offer.bolt12&&""!==(null==oe.offer?null:oe.offer.bolt12)?"center start":"center center")("ngClass",w.eq3(24,ee,oe.screenSize===oe.screenSizeEnum.XS||oe.screenSize===oe.screenSizeEnum.SM)),w.R7$(),w.Y8G("ngIf",(null==oe.offer?null:oe.offer.bolt12)&&""!==(null==oe.offer?null:oe.offer.bolt12)),w.R7$(),w.Y8G("ngIf",!(null!=oe.offer&&oe.offer.bolt12)||""===(null==oe.offer?null:oe.offer.bolt12)),w.R7$(4),w.Y8G("icon",oe.faReceipt),w.R7$(2),w.JRh(oe.screenSize===oe.screenSizeEnum.XS?oe.newlyAdded?"Created":"Offer":oe.newlyAdded?"Offer Created":"Offer Information"),w.R7$(3),w.Y8G("ngClass",w.eq3(26,fe,oe.screenSize===oe.screenSizeEnum.XS)),w.R7$(2),w.Y8G("fxLayoutAlign",null!=oe.offer&&oe.offer.bolt12&&""!==(null==oe.offer?null:oe.offer.bolt12)?"center start":"center center")("ngClass",w.eq3(28,ee,oe.screenSize!==oe.screenSizeEnum.XS&&oe.screenSize!==oe.screenSizeEnum.SM)),w.R7$(),w.Y8G("ngIf",(null==oe.offer?null:oe.offer.bolt12)&&""!==(null==oe.offer?null:oe.offer.bolt12)),w.R7$(),w.Y8G("ngIf",!(null!=oe.offer&&oe.offer.bolt12)||""===(null==oe.offer?null:oe.offer.bolt12)),w.R7$(),w.Y8G("ngIf",oe.screenSize===oe.screenSizeEnum.XS||oe.screenSize===oe.screenSizeEnum.SM),w.R7$(6),w.SpI(" ",null!=oe.offerDecoded&&oe.offerDecoded.offer_amount_msat&&0!==(null==oe.offerDecoded?null:oe.offerDecoded.offer_amount_msat)?w.bMT(24,22,(null==oe.offerDecoded?null:oe.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),w.R7$(6),w.SpI(" ",null!=oe.offerDecoded&&oe.offerDecoded.valid?null!=oe.offerDecoded&&oe.offerDecoded.valid?"Yes":"No":"N/K"," "),w.R7$(7),w.SpI(" ",null==oe.offerDecoded?null:oe.offerDecoded.offer_description," "),w.R7$(7),w.JRh(null==oe.offer?null:oe.offer.bolt12),w.R7$(),w.Y8G("ngIf",oe.showAdvanced),w.R7$(),w.Y8G("ngClass",w.l_i(30,ne,!oe.showAdvanced,oe.showAdvanced)),w.R7$(2),w.Y8G("ngIf",!oe.showAdvanced)("ngIfElse",X),w.R7$(3),w.Y8G("ngIf",(null==oe.offer?null:oe.offer.bolt12)&&""!==(null==oe.offer?null:oe.offer.bolt12)),w.R7$(),w.Y8G("ngIf",!(null!=oe.offer&&oe.offer.bolt12)||""===(null==oe.offer?null:oe.offer.bolt12))}},dependencies:[y.YU,y.bT,O.aY,I.DJ,I.sA,I.UI,V.PW,j.$z,Y.m2,Y.MM,W.q,Q.Um,J.U,ie.N,y.QX]})}}return pe})()},5428:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>We,$Q:()=>O,As:()=>q,CK:()=>A,Do:()=>Xe,Dq:()=>se,Fd:()=>b,Gy:()=>ie,Hh:()=>D,Hm:()=>a,I6:()=>j,Jx:()=>X,Lc:()=>Ce,Lz:()=>pe,N4:()=>z,N8:()=>Q,NS:()=>w,Qj:()=>ee,Sn:()=>f,T4:()=>_,Tp:()=>I,Uj:()=>k,Uo:()=>y,XT:()=>T,Xx:()=>W,Yi:()=>he,ZE:()=>J,Zi:()=>le,cR:()=>C,cU:()=>V,fy:()=>m,gZ:()=>st,iO:()=>oe,jJ:()=>Y,lg:()=>l,mh:()=>N,sq:()=>fe,uL:()=>x,vL:()=>c,w0:()=>d,x1:()=>h,yn:()=>me,yp:()=>S,zR:()=>R,zU:()=>ae});var e=g(9640),t=g(4416);const x=(0,e.VP)(t.Uu.UPDATE_API_CALL_STATUS_ECL,(0,e.xk)()),D=(0,e.VP)(t.Uu.RESET_ECL_STORE),l=(0,e.VP)(t.Uu.FETCH_PAGE_SETTINGS_ECL),w=(0,e.VP)(t.Uu.SET_PAGE_SETTINGS_ECL,(0,e.xk)()),f=(0,e.VP)(t.Uu.SAVE_PAGE_SETTINGS_ECL,(0,e.xk)()),R=(0,e.VP)(t.Uu.FETCH_INFO_ECL,(0,e.xk)()),h=(0,e.VP)(t.Uu.SET_INFO_ECL,(0,e.xk)()),S=(0,e.VP)(t.Uu.FETCH_FEES_ECL),y=(0,e.VP)(t.Uu.SET_FEES_ECL,(0,e.xk)()),O=(0,e.VP)(t.Uu.FETCH_CHANNELS_ECL),I=(0,e.VP)(t.Uu.SET_ACTIVE_CHANNELS_ECL,(0,e.xk)()),V=(0,e.VP)(t.Uu.SET_PENDING_CHANNELS_ECL,(0,e.xk)()),j=(0,e.VP)(t.Uu.SET_INACTIVE_CHANNELS_ECL,(0,e.xk)()),Y=(0,e.VP)(t.Uu.FETCH_ONCHAIN_BALANCE_ECL),W=(0,e.VP)(t.Uu.SET_ONCHAIN_BALANCE_ECL,(0,e.xk)()),Q=(0,e.VP)(t.Uu.SET_LIGHTNING_BALANCE_ECL,(0,e.xk)()),J=(0,e.VP)(t.Uu.SET_CHANNELS_STATUS_ECL,(0,e.xk)()),ie=(0,e.VP)(t.Uu.FETCH_PEERS_ECL),ee=(0,e.VP)(t.Uu.SET_PEERS_ECL,(0,e.xk)()),fe=(0,e.VP)(t.Uu.SAVE_NEW_PEER_ECL,(0,e.xk)()),Ce=((0,e.VP)(t.Uu.NEWLY_ADDED_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.ADD_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.DETACH_PEER_ECL,(0,e.xk)())),le=(0,e.VP)(t.Uu.REMOVE_PEER_ECL,(0,e.xk)()),T=(0,e.VP)(t.Uu.GET_NEW_ADDRESS_ECL),c=((0,e.VP)(t.Uu.SET_NEW_ADDRESS_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.SAVE_NEW_CHANNEL_ECL,(0,e.xk)())),m=(0,e.VP)(t.Uu.UPDATE_CHANNEL_ECL,(0,e.xk)()),d=(0,e.VP)(t.Uu.CLOSE_CHANNEL_ECL,(0,e.xk)()),C=(0,e.VP)(t.Uu.REMOVE_CHANNEL_ECL,(0,e.xk)()),A=(0,e.VP)(t.Uu.FETCH_PAYMENTS_ECL,(0,e.xk)()),k=(0,e.VP)(t.Uu.SET_PAYMENTS_ECL,(0,e.xk)()),_=(0,e.VP)(t.Uu.GET_QUERY_ROUTES_ECL,(0,e.xk)()),a=(0,e.VP)(t.Uu.SET_QUERY_ROUTES_ECL,(0,e.xk)()),b=(0,e.VP)(t.Uu.SEND_PAYMENT_ECL,(0,e.xk)()),z=(0,e.VP)(t.Uu.SEND_PAYMENT_STATUS_ECL,(0,e.xk)()),N=(0,e.VP)(t.Uu.FETCH_TRANSACTIONS_ECL,(0,e.xk)()),q=(0,e.VP)(t.Uu.SET_TRANSACTIONS_ECL,(0,e.xk)()),pe=(0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_ECL,(0,e.xk)()),Xe=((0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.FETCH_INVOICES_ECL,(0,e.xk)())),We=(0,e.VP)(t.Uu.SET_INVOICES_ECL,(0,e.xk)()),oe=(0,e.VP)(t.Uu.CREATE_INVOICE_ECL,(0,e.xk)()),X=(0,e.VP)(t.Uu.ADD_INVOICE_ECL,(0,e.xk)()),se=(0,e.VP)(t.Uu.UPDATE_INVOICE_ECL,(0,e.xk)()),ae=(0,e.VP)(t.Uu.PEER_LOOKUP_ECL,(0,e.xk)()),he=(0,e.VP)(t.Uu.INVOICE_LOOKUP_ECL,(0,e.xk)()),st=((0,e.VP)(t.Uu.SET_LOOKUP_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.UPDATE_CHANNEL_STATE_ECL,(0,e.xk)())),me=(0,e.VP)(t.Uu.UPDATE_RELAYED_PAYMENT_ECL,(0,e.xk)())},3017:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>ne});var e=g(4054),t=g(1413),x=g(7673),D=g(1397),l=g(6977),w=g(6354),f=g(9437),R=g(2462),h=g(4416),S=g(1771),y=g(6439),O=g(5428),I=g(2730),V=g(4438),j=g(1626),Y=g(9640),W=g(3202),Q=g(2571),J=g(8570),ie=g(1188),ee=g(7879),fe=g(177);let ne=(()=>{class Me{constructor(le,T,n,c,m,d,C,A,k){this.actions=le,this.httpClient=T,this.store=n,this.sessionService=c,this.commonService=m,this.logger=d,this.router=C,this.wsService=A,this.location=k,this.CHILD_API_URL=h.H$+"/ecl",this.invoicesPageSettings=h.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"invoices"===_.tableId),this.paymentsPageSettings=h.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"payments"===_.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,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_INFO_ECL),(0,D.Z)(_=>(this.flgInitialized=!1,this.store.dispatch((0,S.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,S.mt)({payload:h.MZ.GET_NODE_INFO})),this.store.dispatch((0,O.uL)({payload:{action:"FetchInfo",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(h.aU.SET_SELECTED_NODE))),(0,w.T)(a=>(this.logger.info(a),this.initializeRemainingData(a,_.payload.loadPage),this.store.dispatch((0,O.uL)({payload:{action:"FetchInfo",status:h.wn.COMPLETED}})),this.store.dispatch((0,S.y0)({payload:h.MZ.GET_NODE_INFO})),{type:h.Uu.SET_INFO_ECL,payload:a||{}})),(0,f.W)(a=>{const b=this.commonService.extractErrorCode(a),z=503===b?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(a);return this.router.navigate(["/error"],{state:{errorCode:b,errorMessage:z}}),this.handleErrorWithoutAlert("FetchInfo",h.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:b,error:z}),(0,x.of)({type:h.aU.VOID})})))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_FEES_ECL),(0,D.Z)(()=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchFees",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.FEES_API+"/fees").pipe((0,w.T)(_=>(this.logger.info(_),this.store.dispatch((0,O.uL)({payload:{action:"FetchFees",status:h.wn.COMPLETED}})),{type:h.Uu.SET_FEES_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchFees",h.MZ.NO_SPINNER,"Fetching Fees Failed.",_),(0,x.of)({type:h.aU.VOID})))))))),this.fetchPayments=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_PAYMENTS_ECL),(0,D.Z)(_=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchPayments",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.FEES_API+"/payments?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"FetchPayments",status:h.wn.COMPLETED}})),{type:h.Uu.SET_PAYMENTS_ECL,payload:a||{}})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchPayments",h.MZ.NO_SPINNER,"Fetching Payments Failed.",a),(0,x.of)({type:h.aU.VOID})))))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_CHANNELS_ECL),(0,D.Z)(_=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchChannels",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.CHANNELS_API).pipe((0,w.T)(a=>(this.logger.info(a),this.rawChannelsList=a,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,O.uL)({payload:{action:"FetchChannels",status:h.wn.COMPLETED}})),{type:h.aU.VOID})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchChannels",h.MZ.NO_SPINNER,"Fetching Channels Failed.",a),(0,x.of)({type:h.aU.VOID})))))))),this.fetchOnchainBalance=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_ONCHAIN_BALANCE_ECL),(0,D.Z)(()=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchOnchainBalance",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.ON_CHAIN_API+"/balance"))),(0,w.T)(_=>(this.logger.info(_),this.store.dispatch((0,O.uL)({payload:{action:"FetchOnchainBalance",status:h.wn.COMPLETED}})),{type:h.Uu.SET_ONCHAIN_BALANCE_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchOnchainBalance",h.MZ.NO_SPINNER,"Fetching Onchain Balances Failed.",_),(0,x.of)({type:h.aU.VOID}))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_PEERS_ECL),(0,D.Z)(()=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchPeers",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.PEERS_API).pipe((0,w.T)(_=>(this.logger.info(_),this.store.dispatch((0,O.uL)({payload:{action:"FetchPeers",status:h.wn.COMPLETED}})),{type:h.Uu.SET_PEERS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPeers",h.MZ.NO_SPINNER,"Fetching Peers Failed.",_),(0,x.of)({type:h.aU.VOID})))))))),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.GET_NEW_ADDRESS_ECL),(0,D.Z)(()=>(this.store.dispatch((0,S.mt)({payload:h.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+h.rl.ON_CHAIN_API).pipe((0,w.T)(_=>(this.logger.info(_),this.store.dispatch((0,S.y0)({payload:h.MZ.GENERATE_NEW_ADDRESS})),{type:h.Uu.SET_NEW_ADDRESS_ECL,payload:_})),(0,f.W)(_=>(this.handleErrorWithAlert("GetNewAddress",h.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+h.rl.ON_CHAIN_API,_),(0,x.of)({type:h.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SET_NEW_ADDRESS_ECL),(0,w.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SAVE_NEW_PEER_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:h.MZ.CONNECT_PEER})),this.store.dispatch((0,O.uL)({payload:{action:"SaveNewPeer",status:h.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.rl.PEERS_API+(_.payload.id.includes("@")?"?uri=":"?nodeId=")+_.payload.id,{}).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"SaveNewPeer",status:h.wn.COMPLETED}})),a=a||[],this.store.dispatch((0,S.y0)({payload:h.MZ.CONNECT_PEER})),this.store.dispatch((0,O.Qj)({payload:a})),{type:h.Uu.NEWLY_ADDED_PEER_ECL,payload:{peer:a.find(b=>b.nodeId===(_.payload.id.includes("@")?_.payload.id.substring(0,_.payload.id.indexOf("@")):_.payload.id))}})),(0,f.W)(a=>(this.handleErrorWithoutAlert("SaveNewPeer",h.MZ.CONNECT_PEER,"Peer Connection Failed.",a),(0,x.of)({type:h.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.DETACH_PEER_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:h.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+h.rl.PEERS_API+"/"+_.payload.nodeId).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,S.y0)({payload:h.MZ.DISCONNECT_PEER})),this.store.dispatch((0,S.UI)({payload:"Disconnecting Peer!"})),{type:h.Uu.REMOVE_PEER_ECL,payload:{nodeId:_.payload.nodeId}})),(0,f.W)(a=>(this.handleErrorWithAlert("DisconnectPeer",h.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+h.rl.PEERS_API+"/"+_.payload.nodeId,a),(0,x.of)({type:h.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SAVE_NEW_CHANNEL_ECL),(0,D.Z)(_=>{this.store.dispatch((0,S.mt)({payload:h.MZ.OPEN_CHANNEL})),this.store.dispatch((0,O.uL)({payload:{action:"SaveNewChannel",status:h.wn.INITIATED}}));const a={nodeId:_.payload.nodeId,fundingSatoshis:_.payload.amount,announceChannel:!_.payload.private};return _.payload.feeRate&&_.payload.feeRate>0&&(a.fundingFeerateSatByte=_.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+h.rl.CHANNELS_API,a).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,O.uL)({payload:{action:"SaveNewChannel",status:h.wn.COMPLETED}})),this.store.dispatch((0,O.Gy)()),this.store.dispatch((0,O.jJ)()),this.store.dispatch((0,S.y0)({payload:h.MZ.OPEN_CHANNEL})),this.store.dispatch((0,S.UI)({payload:"Channel Added Successfully!"})),{type:h.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(b=>(this.handleErrorWithoutAlert("SaveNewChannel",h.MZ.OPEN_CHANNEL,"Opening Channel Failed.",b),(0,x.of)({type:h.aU.VOID}))))}))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.UPDATE_CHANNEL_ECL),(0,D.Z)(_=>{this.store.dispatch((0,S.mt)({payload:h.MZ.UPDATE_CHAN_POLICY}));let a="?feeBaseMsat="+_.payload.baseFeeMsat+"&feeProportionalMillionths="+_.payload.feeRate;return a=_.payload.nodeIds?a+"&nodeIds="+_.payload.nodeIds:_.payload.nodeId?a+"&nodeId="+_.payload.nodeId:_.payload.channelIds?a+"&channelIds="+_.payload.channelIds:a+"&channelId="+_.payload.channelId,this.httpClient.post(this.CHILD_API_URL+h.rl.CHANNELS_API+"/updateRelayFee"+a,{}).pipe((0,w.T)(b=>(this.logger.info(b),this.store.dispatch((0,S.y0)({payload:h.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,S.UI)(_.payload.nodeIds||_.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:h.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(b=>(this.handleErrorWithAlert("UpdateChannels",h.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+h.rl.CHANNELS_API,b),(0,x.of)({type:h.aU.VOID}))))}))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.CLOSE_CHANNEL_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:_.payload.force?h.MZ.FORCE_CLOSE_CHANNEL:h.MZ.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+h.rl.CHANNELS_API+"?channelId="+_.payload.channelId+"&force="+_.payload.force).pipe((0,w.T)(a=>(this.logger.info(a),setTimeout(()=>{this.store.dispatch((0,S.y0)({payload:_.payload.force?h.MZ.FORCE_CLOSE_CHANNEL:h.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,S.UI)({payload:_.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:h.aU.VOID})),(0,f.W)(a=>(this.handleErrorWithAlert("CloseChannel",_.payload.force?h.MZ.FORCE_CLOSE_CHANNEL:h.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+h.rl.CHANNELS_API,a),(0,x.of)({type:h.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.GET_QUERY_ROUTES_ECL),(0,D.Z)(_=>this.httpClient.get(this.CHILD_API_URL+h.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount).pipe((0,w.T)(a=>(this.logger.info(a),{type:h.Uu.SET_QUERY_ROUTES_ECL,payload:a})),(0,f.W)(a=>(this.store.dispatch((0,O.Hm)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",h.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+h.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount,a),(0,x.of)({type:h.aU.VOID}))))))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SET_QUERY_ROUTES_ECL),(0,w.T)(_=>_.payload)),{dispatch:!1}),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SEND_PAYMENT_ECL),(0,D.Z)(_=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,S.mt)({payload:h.MZ.SEND_PAYMENT})),this.store.dispatch((0,O.uL)({payload:{action:"SendPayment",status:h.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.rl.PAYMENTS_API,_.payload).pipe((0,w.T)(a=>(this.logger.info(a),this.latestPaymentRes=a,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:h.aU.VOID})),(0,f.W)(a=>(this.logger.error("Error: "+JSON.stringify(a)),_.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",h.MZ.SEND_PAYMENT,"Send Payment Failed.",a):this.handleErrorWithAlert("SendPayment",h.MZ.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+h.rl.PAYMENTS_API,a),(0,x.of)({type:h.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_TRANSACTIONS_ECL),(0,D.Z)(_=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchTransactions",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.ON_CHAIN_API+"/transactions?count="+_.payload.count+"&skip="+_.payload.skip))),(0,w.T)(_=>(this.logger.info(_),this.store.dispatch((0,O.uL)({payload:{action:"FetchTransactions",status:h.wn.COMPLETED}})),{type:h.Uu.SET_TRANSACTIONS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchTransactions",h.MZ.NO_SPINNER,"Fetching Transactions Failed.",_),(0,x.of)({type:h.aU.VOID}))))),this.SendOnchainFunds=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SEND_ONCHAIN_FUNDS_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:h.MZ.SEND_FUNDS})),this.store.dispatch((0,O.uL)({payload:{action:"SendOnchainFunds",status:h.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.rl.ON_CHAIN_API,_.payload).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"SendOnchainFunds",status:h.wn.COMPLETED}})),this.store.dispatch((0,S.y0)({payload:h.MZ.SEND_FUNDS})),this.store.dispatch((0,O.jJ)()),{type:h.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,payload:a})),(0,f.W)(a=>(this.handleErrorWithoutAlert("SendOnchainFunds",h.MZ.SEND_FUNDS,"Sending Fund Failed.",a),(0,x.of)({type:h.aU.VOID})))))))),this.createInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.CREATE_INVOICE_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:h.MZ.CREATE_INVOICE})),this.store.dispatch((0,O.uL)({payload:{action:"CreateInvoice",status:h.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.rl.INVOICES_API,_.payload).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"CreateInvoice",status:h.wn.COMPLETED}})),this.store.dispatch((0,S.y0)({payload:h.MZ.CREATE_INVOICE})),a.timestamp=Math.round((new Date).getTime()/1e3),a.expiresAt=Math.round(a.timestamp+_.payload.expireIn),a.description=_.payload.description,a.status="unpaid",setTimeout(()=>{this.store.dispatch((0,S.xO)({payload:{data:{invoice:a,newlyAdded:!0,component:y.Z}}}))},200),{type:h.Uu.ADD_INVOICE_ECL,payload:a})),(0,f.W)(a=>(this.handleErrorWithoutAlert("CreateInvoice",h.MZ.CREATE_INVOICE,"Create Invoice Failed.",a),(0,x.of)({type:h.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_INVOICES_ECL),(0,D.Z)(_=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchInvoices",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.INVOICES_API+"?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"FetchInvoices",status:h.wn.COMPLETED}})),{type:h.Uu.SET_INVOICES_ECL,payload:a})),(0,f.W)(a=>(this.handleErrorWithoutAlert("FetchInvoices",h.MZ.NO_SPINNER,"Fetching Invoices Failed.",a),(0,x.of)({type:h.aU.VOID})))))))),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.PEER_LOOKUP_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:h.MZ.SEARCHING_NODE})),this.store.dispatch((0,O.uL)({payload:{action:"Lookup",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.NETWORK_API+"/nodes/"+_.payload).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"Lookup",status:h.wn.COMPLETED}})),this.store.dispatch((0,S.y0)({payload:h.MZ.SEARCHING_NODE})),{type:h.Uu.SET_LOOKUP_ECL,payload:a})),(0,f.W)(a=>(this.handleErrorWithAlert("Lookup",h.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+h.rl.NETWORK_API+"/nodes/"+_.payload,a),(0,x.of)({type:h.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.INVOICE_LOOKUP_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:h.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,O.uL)({payload:{action:"Lookup",status:h.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.rl.INVOICES_API+"/"+_.payload).pipe((0,w.T)(a=>(this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"Lookup",status:h.wn.COMPLETED}})),this.store.dispatch((0,S.y0)({payload:h.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,O.Dq)({payload:a})),{type:h.Uu.SET_LOOKUP_ECL,payload:a})),(0,f.W)(a=>(this.handleErrorWithoutAlert("Lookup",h.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",a),this.store.dispatch((0,S.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,x.of)({type:h.aU.VOID})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SET_LOOKUP_ECL),(0,w.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.FETCH_PAGE_SETTINGS_ECL),(0,D.Z)(()=>(this.store.dispatch((0,O.uL)({payload:{action:"FetchPageSettings",status:h.wn.INITIATED}})),this.httpClient.get(h.rl.PAGE_SETTINGS_API).pipe((0,w.T)(_=>(this.logger.info(_),this.store.dispatch((0,O.uL)({payload:{action:"FetchPageSettings",status:h.wn.COMPLETED}})),this.invoicesPageSettings=_&&Object.keys(_).length>0?_.find(a=>"transactions"===a.pageId)?.tables.find(a=>"invoices"===a.tableId):h.X8.find(a=>"transactions"===a.pageId)?.tables.find(a=>"invoices"===a.tableId),this.paymentsPageSettings=_&&Object.keys(_).length>0?_.find(a=>"transactions"===a.pageId)?.tables.find(a=>"payments"===a.tableId):h.X8.find(a=>"transactions"===a.pageId)?.tables.find(a=>"payments"===a.tableId),{type:h.Uu.SET_PAGE_SETTINGS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPageSettings",h.MZ.NO_SPINNER,"Fetching Page Settings Failed.",_),(0,x.of)({type:h.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(h.Uu.SAVE_PAGE_SETTINGS_ECL),(0,D.Z)(_=>(this.store.dispatch((0,S.mt)({payload:h.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,O.uL)({payload:{action:"SavePageSettings",status:h.wn.INITIATED}})),this.httpClient.post(h.rl.PAGE_SETTINGS_API,_.payload).pipe((0,w.T)(a=>{this.logger.info(a),this.store.dispatch((0,O.uL)({payload:{action:"SavePageSettings",status:h.wn.COMPLETED}})),this.store.dispatch((0,S.y0)({payload:h.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,S.UI)({payload:"Page Layout Updated Successfully!"}));const b=(a.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId)||h.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId))?.recordsPerPage,z=(a.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId)||h.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId))?.recordsPerPage;return this.invoicesPageSettings&&b!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=b),this.paymentsPageSettings&&z!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=z),{type:h.Uu.SET_PAGE_SETTINGS_ECL,payload:a||[]}}),(0,f.W)(a=>(this.handleErrorWithAlert("SavePageSettings",h.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",h.rl.PAGE_SETTINGS_API,a),(0,x.of)({type:h.aU.VOID})))))))),this.handleSendPaymentStatus=_=>{this.store.dispatch((0,O.uL)({payload:{action:"SendPayment",status:h.wn.COMPLETED}})),this.store.dispatch((0,S.y0)({payload:h.MZ.SEND_PAYMENT})),this.store.dispatch((0,O.N4)({payload:this.latestPaymentRes})),this.store.dispatch((0,S.UI)({payload:_}))},this.store.select(I.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(_=>{_.FetchInfo.status!==h.wn.COMPLETED&&_.FetchInfo.status!==h.wn.ERROR||_.FetchFees.status!==h.wn.COMPLETED&&_.FetchFees.status!==h.wn.ERROR||_.FetchOnchainBalance.status!==h.wn.COMPLETED&&_.FetchOnchainBalance.status!==h.wn.ERROR||_.FetchChannels.status!==h.wn.COMPLETED&&_.FetchChannels.status!==h.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,S.y0)({payload:h.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(_=>{this.logger.info("Received new message from the service: "+JSON.stringify(_));let a="";if(_)switch(_.type){case h.ck.PAYMENT_SENT:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,a="Payment Sent: "+(_.paymentHash?"with payment hash "+_.paymentHash:JSON.stringify(_)),this.handleSendPaymentStatus(a));break;case h.ck.PAYMENT_FAILED:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,a="Payment Failed: "+(_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].t?_.failures[0].t:_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].e&&_.failures[0].e.failureMessage?_.failures[0].e.failureMessage:JSON.stringify(_)),this.handleSendPaymentStatus(a));break;case h.ck.PAYMENT_RECEIVED:this.store.dispatch((0,O.Dq)({payload:_}));break;case h.ck.PAYMENT_RELAYED:delete _.source,_.amountIn=Math.round((_.amountIn||0)/1e3),_.amountOut=Math.round((_.amountOut||0)/1e3),_.timestamp.unix&&(_.timestamp=1e3*_.timestamp.unix),this.store.dispatch((0,O.yn)({payload:_}));break;case h.ck.CHANNEL_STATE_CHANGED:"NORMAL"===_.currentState||"CLOSED"===_.currentState?(this.rawChannelsList=this.rawChannelsList?.map(b=>(b.channelId===_.channelId&&b.nodeId===_.remoteNodeId&&(b.state=_.currentState),b)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,O.gZ)({payload:_}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(_))}})}setChannelsAndStatusAndBalances(){let le=0,T=0,n=0,c={localBalance:0,remoteBalance:0},m=[];const d=[],C=[],A={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((k,_)=>{k&&("NORMAL"===k.state?(le=(k.toLocal||0)+(k.toRemote||0),T+=k.toLocal||0,n+=k.toRemote||0,k.balancedness=0===le?1:+(1-Math.abs(((k.toLocal||0)-(k.toRemote||0))/le)).toFixed(3),m.push(k),A.active.channels=A.active.channels+1,A.active.capacity=A.active.capacity+(k.toLocal||0)):k.state?.includes("WAIT")||k.state?.includes("CLOSING")||k.state?.includes("SYNCING")?(k.state=k.state?.replace(/_/g," "),d.push(k),A.pending.channels=A.pending.channels+1,A.pending.capacity=A.pending.capacity+(k.toLocal||0)):(k.state=k.state?.replace(/_/g," "),C.push(k),A.inactive.channels=A.inactive.channels+1,A.inactive.capacity=A.inactive.capacity+(k.toLocal||0)))}),c={localBalance:T,remoteBalance:n},m=this.commonService.sortDescByKey(m,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(m)),this.logger.info("Pending Channels: "+JSON.stringify(d)),this.logger.info("Inactive Channels: "+JSON.stringify(C)),this.logger.info("Lightning Balances: "+JSON.stringify(c)),this.logger.info("Channels Status: "+JSON.stringify(A)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:m,pending:d,inactive:C,balances:c,status:A})),this.store.dispatch((0,O.Tp)({payload:m})),this.store.dispatch((0,O.cU)({payload:d})),this.store.dispatch((0,O.I6)({payload:C})),this.store.dispatch((0,O.N8)({payload:c})),this.store.dispatch((0,O.ZE)({payload:A}))}initializeRemainingData(le,T){this.sessionService.setItem("eclUnlocked","true");const n={identity_pubkey:le.nodeId,alias:le.alias,testnet:"testnet"===le.network,chains:le.publicAddresses,uris:le.uris,version:le.version,numberOfPendingChannels:0};this.store.dispatch((0,S.mt)({payload:h.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,S.Fl)({payload:n}));let c=this.location.path();c.includes("/lnd/")?c=c?.replace("/lnd/","/ecl/"):c.includes("/cln/")&&(c=c?.replace("/cln/","/ecl/")),(c.includes("/login")||c.includes("/error")||""===c||"HOME"===T||c.includes("?access-key="))&&(c="/ecl/home"),this.router.navigate([c]),this.store.dispatch((0,O.$Q)()),this.store.dispatch((0,O.yp)()),this.store.dispatch((0,O.jJ)()),this.store.dispatch((0,O.Gy)())}handleErrorWithoutAlert(le,T,n,c){this.logger.error("ERROR IN: "+le+"\n"+JSON.stringify(c)),401===c.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,S.Jh)()),this.store.dispatch((0,S.ri)({payload:"Authentication Failed: "+JSON.stringify(c.error)}))):(this.store.dispatch((0,S.y0)({payload:T})),this.store.dispatch((0,O.uL)({payload:{action:le,status:h.wn.ERROR,statusCode:c.status.toString(),message:this.commonService.extractErrorMessage(c,n)}})))}handleErrorWithAlert(le,T,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,S.Jh)()),this.store.dispatch((0,S.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,S.y0)({payload:T}));const d=this.commonService.extractErrorMessage(m);this.store.dispatch((0,S.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status,message:d,URL:c},component:R.f}}})),this.store.dispatch((0,O.uL)({payload:{action:le,status:h.wn.ERROR,statusCode:m.status.toString(),message:d,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(le=>{le.next(null),le.complete()})}static{this.\u0275fac=function(T){return new(T||Me)(V.KVO(e.En),V.KVO(j.Qq),V.KVO(Y.il),V.KVO(W.Q),V.KVO(Q.h),V.KVO(J.gP),V.KVO(ie.Ix),V.KVO(ee.I),V.KVO(fe.aZ))}}static{this.\u0275prov=V.jDH({token:Me,factory:Me.\u0275fac})}}return Me})()},2730:(Qe,te,g)=>{"use strict";g.d(te,{DW:()=>W,KT:()=>R,Ou:()=>I,b_:()=>l,gN:()=>V,jZ:()=>x,oR:()=>h,os:()=>Y,p3:()=>D,rN:()=>j,ru:()=>f});var e=g(9640);const t=(0,e.UX)("ecl"),x=(0,e.Mz)(t,Q=>({pageSettings:Q.pageSettings,apiCallStatus:Q.apisCallStatus.FetchPageSettings})),D=(0,e.Mz)(t,Q=>Q.information),l=(0,e.Mz)(t,Q=>({information:Q.information,apiCallStatus:Q.apisCallStatus.FetchInfo})),f=((0,e.Mz)(t,Q=>Q.apisCallStatus.FetchInfo),(0,e.Mz)(t,Q=>Q.apisCallStatus)),R=(0,e.Mz)(t,Q=>({payments:Q.payments,apiCallStatus:Q.apisCallStatus.FetchPayments})),h=(0,e.Mz)(t,Q=>({fees:Q.fees,apiCallStatus:Q.apisCallStatus.FetchFees})),I=((0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({pendingChannels:Q.pendingChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({inactiveChannels:Q.inactiveChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,pendingChannels:Q.pendingChannels,inactiveChannels:Q.inactiveChannels,lightningBalance:Q.lightningBalance,channelsStatus:Q.channelsStatus,apiCallStatus:Q.apisCallStatus.FetchChannels}))),V=(0,e.Mz)(t,Q=>({transactions:Q.transactions,apiCallStatus:Q.apisCallStatus.FetchTransactions})),j=(0,e.Mz)(t,Q=>({invoices:Q.invoices,apiCallStatus:Q.apisCallStatus.FetchInvoices})),Y=(0,e.Mz)(t,Q=>({peers:Q.peers,apiCallStatus:Q.apisCallStatus.FetchPeers})),W=(0,e.Mz)(t,Q=>({onchainBalance:Q.onchainBalance,apiCallStatus:Q.apisCallStatus.FetchOnchainBalance}))},6439:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>oe});var e=g(5351),t=g(5383),x=g(1413),D=g(6977),l=g(4416),w=g(2730),f=g(4438),R=g(8570),h=g(2571),S=g(5416),y=g(9640),O=g(177),I=g(60),V=g(2920),j=g(6038),Y=g(8834),W=g(5596),Q=g(1997),J=g(9183),ie=g(8288),ee=g(9157),fe=g(9587);const ne=X=>({"display-none":X}),Me=X=>({"xs-scroll-y":X}),Ce=(X,se)=>({"mt-2":X,"mt-1":se}),le=()=>[];function T(X,se){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ae=f.XpG();f.Y8G("value",null==ae.invoice?null:ae.invoice.serialized)("size",ae.qrWidth)("errorCorrectionLevel","L")}}function n(X,se){1&X&&(f.j41(0,"span",30),f.EFF(1,"N/A"),f.k0s())}function c(X,se){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ae=f.XpG();f.Y8G("value",null==ae.invoice?null:ae.invoice.serialized)("size",ae.qrWidth)("errorCorrectionLevel","L")}}function m(X,se){1&X&&(f.j41(0,"span",31),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function d(X,se){1&X&&f.nrm(0,"mat-divider",32),2&X&&f.Y8G("inset",!0)}function C(X,se){1&X&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function A(X,se){1&X&&f.nrm(0,"span",38)}function k(X,se){if(1&X&&(f.j41(0,"div",34)(1,"div",35)(2,"span",36),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,A,1,0,"span",37),f.k0s()()),2&X){const ae=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==ae.invoice?null:ae.invoice.amountSettled)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,le).constructor(35))}}function _(X,se){if(1&X&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&X){const ae=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==ae.invoice?null:ae.invoice.amountSettled)," Sats")}}function a(X,se){if(1&X&&(f.qex(0),f.DNE(1,k,6,5,"div",33)(2,_,3,3,"div",20),f.bVm()),2&X){const ae=f.XpG();f.R7$(),f.Y8G("ngIf",ae.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!ae.flgInvoicePaid)}}function b(X,se){1&X&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function z(X,se){1&X&&f.nrm(0,"mat-spinner",40),2&X&&f.Y8G("diameter",20)}function N(X,se){if(1&X&&(f.qex(0),f.DNE(1,b,2,0,"span",20)(2,z,1,1,"mat-spinner",39),f.bVm()),2&X){const ae=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==ae.invoice?null:ae.invoice.status)||!ae.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","unpaid"===(null==ae.invoice?null:ae.invoice.status)&&ae.flgVersionCompatible)}}function q(X,se){if(1&X&&(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&X){const ae=f.XpG();f.R7$(7),f.JRh(f.i5U(8,4,1e3*(null==ae.invoice?null:ae.invoice.expiresAt),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(14,7,1e3*(null==ae.invoice?null:ae.invoice.receivedAt),"dd/MMM/y HH:mm")),f.R7$(8),f.JRh(null==ae.invoice?null:ae.invoice.paymentHash),f.R7$(7),f.JRh(null==ae.invoice?null:ae.invoice.nodeId)}}function pe(X,se){1&X&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ze(X,se){1&X&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function Xe(X,se){if(1&X){const ae=f.RV6();f.j41(0,"button",43),f.bIt("copied",function(Ie){f.eBV(ae);const st=f.XpG();return f.Njj(st.onCopyPayment(Ie))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&X){const ae=f.XpG();f.Y8G("payload",null==ae.invoice?null:ae.invoice.serialized)}}function We(X,se){if(1&X){const ae=f.RV6();f.j41(0,"button",44),f.bIt("click",function(){f.eBV(ae);const Ie=f.XpG();return f.Njj(Ie.onClose())}),f.EFF(1,"OK"),f.k0s()}}let oe=(()=>{class X{constructor(ae,he,Ie,st,me,Ee){this.dialogRef=ae,this.data=he,this.logger=Ie,this.commonService=st,this.snackBar=me,this.store=Ee,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new x.B,new x.B,new x.B,new x.B,new x.B]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(w.p3).pipe((0,D.Q)(this.unSubs[0])).subscribe(ae=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ae.version,"0.5.0")}),this.store.select(w.rN).pipe((0,D.Q)(this.unSubs[1])).subscribe(ae=>{const he=this.invoice.status,st=(ae.invoices&&ae.invoices.length>0?ae.invoices:[])?.find(me=>me.paymentHash===this.invoice.paymentHash)||null;st&&(this.invoice=st),he!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(ae)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(ae){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+ae)}ngOnDestroy(){this.unSubs.forEach(ae=>{ae.next(null),ae.complete()})}static{this.\u0275fac=function(he){return new(he||X)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(R.gP),f.rXU(h.h),f.rXU(S.UG),f.rXU(y.il))}}static{this.\u0275cmp=f.VBU({type:X,selectors:[["rtl-ecl-invoice-information"]],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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(he,Ie){if(1&he){const st=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,T,1,3,"qr-code",3)(3,n,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 f.eBV(st),f.Njj(Ie.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),f.DNE(15,c,1,3,"qr-code",3)(16,m,2,0,"span",14),f.k0s(),f.DNE(17,d,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,C,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,a,3,2,"ng-container",20)(31,N,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,q,30,10,"div",20),f.j41(61,"div",24)(62,"button",25),f.bIt("click",function(){return f.eBV(st),f.Njj(Ie.onShowAdvanced())}),f.DNE(63,pe,2,0,"p",26)(64,ze,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(66,Xe,2,1,"button",27)(67,We,2,0,"button",28),f.k0s()()()()()}if(2&he){const st=f.sdS(65);f.R7$(),f.Y8G("fxLayoutAlign",null!=Ie.invoice&&Ie.invoice.serialized&&""!==(null==Ie.invoice?null:Ie.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(33,ne,Ie.screenSize===Ie.screenSizeEnum.XS||Ie.screenSize===Ie.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.serialized)&&""!==(null==Ie.invoice?null:Ie.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.serialized)||""===(null==Ie.invoice?null:Ie.invoice.serialized)),f.R7$(4),f.Y8G("icon",Ie.faReceipt),f.R7$(2),f.JRh(Ie.screenSize===Ie.screenSizeEnum.XS?Ie.newlyAdded?"Created":"Invoice":Ie.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(35,Me,Ie.screenSize===Ie.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Ie.invoice&&Ie.invoice.serialized&&""!==(null==Ie.invoice?null:Ie.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(37,ne,Ie.screenSize!==Ie.screenSizeEnum.XS&&Ie.screenSize!==Ie.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.serialized)&&""!==(null==Ie.invoice?null:Ie.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.serialized)||""===(null==Ie.invoice?null:Ie.invoice.serialized)),f.R7$(),f.Y8G("ngIf",Ie.screenSize===Ie.screenSizeEnum.XS||Ie.screenSize===Ie.screenSizeEnum.SM),f.R7$(6),f.SpI("",f.bMT(24,26,(null==Ie.invoice?null:Ie.invoice.amount)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.amount)||"0"===(null==Ie.invoice?null:Ie.invoice.amount)),f.R7$(5),f.Y8G("ngIf",null==Ie.invoice?null:Ie.invoice.amountSettled),f.R7$(),f.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.amountSettled)),f.R7$(7),f.JRh(f.i5U(39,28,1e3*(null==Ie.invoice?null:Ie.invoice.timestamp),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.bMT(45,31,null==Ie.invoice?null:Ie.invoice.status)),f.R7$(8),f.JRh((null==Ie.invoice?null:Ie.invoice.description)||"-"),f.R7$(7),f.JRh((null==Ie.invoice?null:Ie.invoice.serialized)||"N/A"),f.R7$(),f.Y8G("ngIf",Ie.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(39,Ce,!Ie.showAdvanced,Ie.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!Ie.showAdvanced)("ngIfElse",st),f.R7$(3),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.serialized)&&""!==(null==Ie.invoice?null:Ie.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.serialized)||""===(null==Ie.invoice?null:Ie.invoice.serialized))}},dependencies:[O.YU,O.Sq,O.bT,I.aY,V.DJ,V.sA,V.UI,j.PW,Y.$z,W.m2,W.MM,Q.q,J.LG,ie.Um,ee.U,fe.N,O.QX,O.PV,O.vh]})}}return X})()},190:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>oe,$J:()=>q,$Q:()=>le,As:()=>he,Br:()=>h,CK:()=>me,DI:()=>ne,DY:()=>fe,Do:()=>We,Dq:()=>X,Fd:()=>ue,GZ:()=>je,Gy:()=>y,H2:()=>a,Hm:()=>It,J9:()=>Ce,Jx:()=>J,L:()=>b,Lf:()=>ze,NS:()=>f,O8:()=>st,Qj:()=>O,SM:()=>Ie,Sn:()=>R,T4:()=>Ae,Uj:()=>Ee,Uo:()=>ee,VK:()=>W,WE:()=>$e,X9:()=>w,XT:()=>dt,Yi:()=>Nt,Zi:()=>Y,_$:()=>se,aB:()=>ve,ar:()=>n,b1:()=>Tt,cR:()=>_,cU:()=>c,dv:()=>T,e8:()=>x,ed:()=>j,fy:()=>C,ij:()=>qt,jk:()=>yt,kv:()=>et,lg:()=>l,mh:()=>ae,oX:()=>we,p1:()=>D,pL:()=>m,sq:()=>I,t0:()=>Ct,t5:()=>pe,tG:()=>Qt,tf:()=>Me,uK:()=>Je,vL:()=>A,w0:()=>k,x1:()=>S,yp:()=>ie,z2:()=>d,zU:()=>nt});var e=g(9640),t=g(4416);const x=(0,e.VP)(t.QP.UPDATE_API_CALL_STATUS_LND,(0,e.xk)()),D=(0,e.VP)(t.QP.RESET_LND_STORE),l=(0,e.VP)(t.QP.FETCH_PAGE_SETTINGS_LND),w=(0,e.VP)(t.QP.UPDATE_SELECTED_NODE_OPTIONS),f=(0,e.VP)(t.QP.SET_PAGE_SETTINGS_LND,(0,e.xk)()),R=(0,e.VP)(t.QP.SAVE_PAGE_SETTINGS_LND,(0,e.xk)()),h=(0,e.VP)(t.QP.FETCH_INFO_LND,(0,e.xk)()),S=(0,e.VP)(t.QP.SET_INFO_LND,(0,e.xk)()),y=(0,e.VP)(t.QP.FETCH_PEERS_LND),O=(0,e.VP)(t.QP.SET_PEERS_LND,(0,e.xk)()),I=(0,e.VP)(t.QP.SAVE_NEW_PEER_LND,(0,e.xk)()),j=((0,e.VP)(t.QP.NEWLY_ADDED_PEER_LND,(0,e.xk)()),(0,e.VP)(t.QP.DETACH_PEER_LND,(0,e.xk)())),Y=(0,e.VP)(t.QP.REMOVE_PEER_LND,(0,e.xk)()),W=(0,e.VP)(t.QP.SAVE_NEW_INVOICE_LND,(0,e.xk)()),J=((0,e.VP)(t.QP.NEWLY_SAVED_INVOICE_LND,(0,e.xk)()),(0,e.VP)(t.QP.ADD_INVOICE_LND,(0,e.xk)())),ie=(0,e.VP)(t.QP.FETCH_FEES_LND),ee=(0,e.VP)(t.QP.SET_FEES_LND,(0,e.xk)()),fe=(0,e.VP)(t.QP.FETCH_BLOCKCHAIN_BALANCE_LND),ne=(0,e.VP)(t.QP.SET_BLOCKCHAIN_BALANCE_LND,(0,e.xk)()),Me=(0,e.VP)(t.QP.FETCH_NETWORK_LND),Ce=(0,e.VP)(t.QP.SET_NETWORK_LND,(0,e.xk)()),le=(0,e.VP)(t.QP.FETCH_CHANNELS_LND),T=(0,e.VP)(t.QP.SET_CHANNELS_LND,(0,e.xk)()),n=(0,e.VP)(t.QP.FETCH_PENDING_CHANNELS_LND),c=(0,e.VP)(t.QP.SET_PENDING_CHANNELS_LND,(0,e.xk)()),m=(0,e.VP)(t.QP.FETCH_CLOSED_CHANNELS_LND),d=(0,e.VP)(t.QP.SET_CLOSED_CHANNELS_LND,(0,e.xk)()),C=(0,e.VP)(t.QP.UPDATE_CHANNEL_LND,(0,e.xk)()),A=(0,e.VP)(t.QP.SAVE_NEW_CHANNEL_LND,(0,e.xk)()),k=(0,e.VP)(t.QP.CLOSE_CHANNEL_LND,(0,e.xk)()),_=(0,e.VP)(t.QP.REMOVE_CHANNEL_LND,(0,e.xk)()),a=(0,e.VP)(t.QP.BACKUP_CHANNELS_LND,(0,e.xk)()),b=(0,e.VP)(t.QP.VERIFY_CHANNEL_LND,(0,e.xk)()),q=((0,e.VP)(t.QP.BACKUP_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.VERIFY_CHANNEL_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.RESTORE_CHANNELS_LIST_LND)),pe=(0,e.VP)(t.QP.SET_RESTORE_CHANNELS_LIST_LND,(0,e.xk)()),ze=(0,e.VP)(t.QP.RESTORE_CHANNELS_LND,(0,e.xk)()),We=((0,e.VP)(t.QP.RESTORE_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_INVOICES_LND,(0,e.xk)())),oe=(0,e.VP)(t.QP.SET_INVOICES_LND,(0,e.xk)()),X=(0,e.VP)(t.QP.UPDATE_INVOICE_LND,(0,e.xk)()),se=(0,e.VP)(t.QP.UPDATE_PAYMENT_LND,(0,e.xk)()),ae=(0,e.VP)(t.QP.FETCH_TRANSACTIONS_LND),he=(0,e.VP)(t.QP.SET_TRANSACTIONS_LND,(0,e.xk)()),Ie=(0,e.VP)(t.QP.FETCH_UTXOS_LND),st=(0,e.VP)(t.QP.SET_UTXOS_LND,(0,e.xk)()),me=(0,e.VP)(t.QP.FETCH_PAYMENTS_LND,(0,e.xk)()),Ee=(0,e.VP)(t.QP.SET_PAYMENTS_LND,(0,e.xk)()),ue=(0,e.VP)(t.QP.SEND_PAYMENT_LND,(0,e.xk)()),Ct=((0,e.VP)(t.QP.SEND_PAYMENT_STATUS_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_GRAPH_NODE_LND,(0,e.xk)())),dt=((0,e.VP)(t.QP.SET_GRAPH_NODE_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_NEW_ADDRESS_LND,(0,e.xk)())),ve=((0,e.VP)(t.QP.SET_NEW_ADDRESS_LND,(0,e.xk)()),(0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_LND,(0,e.xk)())),we=((0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.GEN_SEED_LND,(0,e.xk)())),je=((0,e.VP)(t.QP.GEN_SEED_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.INIT_WALLET_LND,(0,e.xk)())),$e=((0,e.VP)(t.QP.INIT_WALLET_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.UNLOCK_WALLET_LND,(0,e.xk)())),nt=(0,e.VP)(t.QP.PEER_LOOKUP_LND,(0,e.xk)()),qt=(0,e.VP)(t.QP.CHANNEL_LOOKUP_LND,(0,e.xk)()),Nt=(0,e.VP)(t.QP.INVOICE_LOOKUP_LND,(0,e.xk)()),yt=(0,e.VP)(t.QP.PAYMENT_LOOKUP_LND,(0,e.xk)()),Je=((0,e.VP)(t.QP.SET_LOOKUP_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_FORWARDING_HISTORY_LND,(0,e.xk)())),et=(0,e.VP)(t.QP.SET_FORWARDING_HISTORY_LND,(0,e.xk)()),Ae=(0,e.VP)(t.QP.GET_QUERY_ROUTES_LND,(0,e.xk)()),It=(0,e.VP)(t.QP.SET_QUERY_ROUTES_LND,(0,e.xk)()),Qt=(0,e.VP)(t.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),Tt=(0,e.VP)(t.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,e.xk)())},9579:(Qe,te,g)=>{"use strict";g.d(te,{L:()=>Ce});var e=g(4054),t=g(1413),x=g(7673),D=g(1397),l=g(6977),w=g(6354),f=g(9437),R=g(3993),h=g(6391),S=g(2462),y=g(4416),O=g(1771),I=g(190),V=g(3536),j=g(4438),Y=g(1626),W=g(9640),Q=g(8570),J=g(2571),ie=g(3202),ee=g(5351),fe=g(1188),ne=g(7879),Me=g(177);let Ce=(()=>{class le{constructor(n,c,m,d,C,A,k,_,a,b){this.actions=n,this.httpClient=c,this.store=m,this.logger=d,this.commonService=C,this.sessionService=A,this.dialog=k,this.router=_,this.wsService=a,this.location=b,this.CHILD_API_URL=y.H$+"/lnd",this.invoicesPageSettings=y.ZC.find(z=>"transactions"===z.pageId)?.tables.find(z=>"invoices"===z.tableId),this.paymentsPageSettings=y.ZC.find(z=>"transactions"===z.pageId)?.tables.find(z=>"payments"===z.tableId),this.flgInitialized=!1,this.unSubs=[new t.B,new t.B],this.infoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INFO_LND),(0,D.Z)(z=>(this.flgInitialized=!1,this.store.dispatch((0,O.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,O.Jh)()),this.store.dispatch((0,O.mt)({payload:y.MZ.GET_NODE_INFO})),this.store.dispatch((0,I.e8)({payload:{action:"FetchInfo",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(y.aU.SET_SELECTED_NODE))),(0,w.T)(N=>(this.logger.info(N),N.chains&&N.chains.length&&N.chains[0]&&("string"==typeof N.chains[0]&&N.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof N.chains[0]&&N.chains[0].hasOwnProperty("chain")&&N.chains[0].chain&&N.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,I.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.Jh)()),this.store.dispatch((0,O.xO)({payload:{data:{type:y.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:y.aU.LOGOUT}):N.identity_pubkey?(N.lnImplementation="LND",this.initializeRemainingData(N,z.payload.loadPage),this.store.dispatch((0,I.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.Jh)()),{type:y.QP.SET_INFO_LND,payload:N||{}}):(this.store.dispatch((0,I.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.Jh)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:y.QP.SET_INFO_LND,payload:{}}))),(0,f.W)(N=>{if("string"==typeof N.error.error&&N.error.error.includes("Not Found")||"string"==typeof N.error.error&&N.error.error.includes("wallet locked")||502===N.status&&!N.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",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",N);else if("string"==typeof N.error.error&&N.error.error.includes("starting up")&&500===N.status)setTimeout(()=>{this.store.dispatch((0,I.Br)({payload:{loadPage:"HOME"}}))},2e3);else{const q=this.commonService.extractErrorCode(N),pe=503===q?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(N);this.router.navigate(["/error"],{state:{errorCode:q,errorMessage:pe}}),this.handleErrorWithoutAlert("FetchInfo",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:q,error:pe})}return(0,x.of)({type:y.aU.VOID})})))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PEERS_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchPeers",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PEERS_API).pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchPeers",status:y.wn.COMPLETED}})),{type:y.QP.SET_PEERS_LND,payload:z||[]})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchPeers",y.MZ.NO_SPINNER,"Fetching Peers Failed.",z),(0,x.of)({type:y.aU.VOID})))))))),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_PEER_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,I.e8)({payload:{action:"SaveNewPeer",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.PEERS_API,{pubkey:z.payload.pubkey,host:z.payload.host,perm:z.payload.perm}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"SaveNewPeer",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.y0)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,I.Qj)({payload:N||[]})),{type:y.QP.NEWLY_ADDED_PEER_LND,payload:{peer:N[0]}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewPeer",y.MZ.CONNECT_PEER,"Peer Connection Failed.",N),(0,x.of)({type:y.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.DETACH_PEER_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+y.rl.PEERS_API+"/"+z.payload.pubkey).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.DISCONNECT_PEER})),this.store.dispatch((0,O.UI)({payload:"Peer Disconnected Successfully."})),{type:y.QP.REMOVE_PEER_LND,payload:{pubkey:z.payload.pubkey}})),(0,f.W)(N=>(this.handleErrorWithAlert("DetachPeer",y.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+y.rl.PEERS_API+"/"+z.payload.pubkey,N),(0,x.of)({type:y.aU.VOID})))))))),this.saveNewInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_INVOICE_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:z.payload.uiMessage})),this.store.dispatch((0,I.e8)({payload:{action:"SaveNewInvoice",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.INVOICES_API,{memo:z.payload.memo,value:z.payload.value,private:z.payload.private,expiry:z.payload.expiry,is_amp:z.payload.is_amp}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"SaveNewInvoice",status:y.wn.COMPLETED}})),this.store.dispatch((0,I.Do)({payload:{num_max_invoices:z.payload.pageSize,reversed:!0}})),z.payload.openModal?(N.memo=z.payload.memo,N.value=z.payload.value,N.expiry=z.payload.expiry,N.private=z.payload.private,N.is_amp=z.payload.is_amp,N.cltv_expiry="144",N.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,O.xO)({payload:{data:{invoice:N,newlyAdded:!0,component:h.H}}}))},200),{type:y.aU.CLOSE_SPINNER,payload:z.payload.uiMessage}):{type:y.QP.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:N.payment_request}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewInvoice",z.payload.uiMessage,"Add Invoice Failed.",N),(0,x.of)({type:y.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_CHANNEL_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,I.e8)({payload:{action:"SaveNewChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API,{node_pubkey:z.payload.selectedPeerPubkey,local_funding_amount:z.payload.fundingAmount,private:z.payload.private,trans_type:z.payload.transType,trans_type_value:z.payload.transTypeValue,spend_unconfirmed:z.payload.spendUnconfirmed,commitment_type:z.payload.commitmentType}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"SaveNewChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.y0)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,I.DY)()),this.store.dispatch((0,I.$Q)()),this.store.dispatch((0,I.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:y.QP.FETCH_PENDING_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewChannel",y.MZ.OPEN_CHANNEL,"Opening Channel Failed.",N),(0,x.of)({type:y.aU.VOID})))))))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_CHANNEL_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",{baseFeeMsat:z.payload.baseFeeMsat,feeRate:z.payload.feeRate,timeLockDelta:z.payload.timeLockDelta,max_htlc_msat:z.payload.maxHtlcMsat,min_htlc_msat:z.payload.minHtlcMsat,chanPoint:z.payload.chanPoint}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,O.UI)("all"===z.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:y.QP.FETCH_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithAlert("UpdateChannels",y.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",N),(0,x.of)({type:y.aU.VOID})))))))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CLOSE_CHANNEL_LND),(0,D.Z)(z=>{this.store.dispatch((0,O.mt)({payload:z.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL}));let N=this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+z.payload.channelPoint+"?force="+z.payload.forcibly;return z.payload.targetConf&&(N=N+"&target_conf="+z.payload.targetConf),z.payload.satPerByte&&(N=N+"&sat_per_byte="+z.payload.satPerByte),this.httpClient.delete(N).pipe((0,w.T)(q=>(this.logger.info(q),this.store.dispatch((0,O.y0)({payload:z.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,I.$Q)()),this.store.dispatch((0,I.ar)()),this.store.dispatch((0,I.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:q.message}})),{type:y.aU.VOID})),(0,f.W)(q=>(this.handleErrorWithAlert("CloseChannel",z.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+z.payload.channelPoint+"?force="+z.payload.forcibly,q),(0,x.of)({type:y.aU.VOID}))))}))),this.backupChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.BACKUP_CHANNELS_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:z.payload.uiMessage})),this.store.dispatch((0,I.e8)({payload:{action:"BackupChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+z.payload.channelPoint).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"BackupChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.y0)({payload:z.payload.uiMessage})),this.store.dispatch((0,O.UI)({payload:z.payload.showMessage+" "+N.message})),{type:y.QP.BACKUP_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("BackupChannels",z.payload.uiMessage,z.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+z.payload.channelPoint,N),(0,x.of)({type:y.aU.VOID})))))))),this.verifyChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.VERIFY_CHANNEL_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,I.e8)({payload:{action:"VerifyChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+z.payload.channelPoint,{}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"VerifyChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.y0)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,O.UI)({payload:N.message})),{type:y.QP.VERIFY_CHANNEL_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("VerifyChannel",y.MZ.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+z.payload.channelPoint,N),(0,x.of)({type:y.aU.VOID})))))))),this.restoreChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,I.e8)({payload:{action:"RestoreChannels",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+z.payload.channelPoint,{}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"RestoreChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.y0)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,O.UI)({payload:N.message})),this.store.dispatch((0,I.t5)({payload:N.list})),{type:y.QP.RESTORE_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("RestoreChannels",y.MZ.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+z.payload.channelPoint,N),(0,x.of)({type:y.aU.VOID})))))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_FEES_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchFees",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.FEES_API))),(0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchFees",status:y.wn.COMPLETED}})),z.forwarding_events_history&&(this.store.dispatch((0,I.kv)({payload:z.forwarding_events_history})),delete z.forwarding_events_history),{type:y.QP.SET_FEES_LND,payload:z||{}})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchFees",y.MZ.NO_SPINNER,"Fetching Fees Failed.",z),(0,x.of)({type:y.aU.VOID}))))),this.balanceBlockchainFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_BLOCKCHAIN_BALANCE_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchBalance",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.BALANCE_API))),(0,w.T)(z=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchBalance",status:y.wn.COMPLETED}})),this.logger.info(z),{type:y.QP.SET_BLOCKCHAIN_BALANCE_LND,payload:z||{total_balance:""}})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchBalance",y.MZ.NO_SPINNER,"Fetching Blockchain Balance Failed.",z),(0,x.of)({type:y.aU.VOID}))))),this.networkInfoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_NETWORK_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchNetwork",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/info"))),(0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchNetwork",status:y.wn.COMPLETED}})),{type:y.QP.SET_NETWORK_LND,payload:z||{}})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchNetwork",y.MZ.NO_SPINNER,"Fetching Network Failed.",z),(0,x.of)({type:y.aU.VOID}))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CHANNELS_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API).pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CHANNELS_LND,payload:z.channels||[]})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchChannels",y.MZ.NO_SPINNER,"Fetching Channels Failed.",z),(0,x.of)({type:y.aU.VOID})))))))),this.channelsPendingFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PENDING_CHANNELS_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchPendingChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/pending").pipe((0,w.T)(z=>{this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchPendingChannels",status:y.wn.COMPLETED}}));const N={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 z&&(N.total_limbo_balance=z.total_limbo_balance,z.pending_closing_channels&&(N.closing.num_channels=z.pending_closing_channels.length,N.total_channels=N.total_channels+z.pending_closing_channels.length,z.pending_closing_channels.forEach(q=>{N.closing.limbo_balance=+N.closing.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)})),z.pending_force_closing_channels&&(N.force_closing.num_channels=z.pending_force_closing_channels.length,N.total_channels=N.total_channels+z.pending_force_closing_channels.length,z.pending_force_closing_channels.forEach(q=>{N.force_closing.limbo_balance=+N.force_closing.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)})),z.pending_open_channels&&(N.open.num_channels=z.pending_open_channels.length,N.total_channels=N.total_channels+z.pending_open_channels.length,z.pending_open_channels.forEach(q=>{N.open.limbo_balance=+N.open.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)})),z.waiting_close_channels&&(N.waiting_close.num_channels=z.waiting_close_channels.length,N.total_channels=N.total_channels+z.waiting_close_channels.length,z.waiting_close_channels.forEach(q=>{N.waiting_close.limbo_balance=+N.waiting_close.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)}))),{type:y.QP.SET_PENDING_CHANNELS_LND,payload:z?{pendingChannels:z,pendingChannelsSummary:N}:{pendingChannels:{},pendingChannelsSummary:N}}}),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchPendingChannels",y.MZ.NO_SPINNER,"Fetching Pending Channels Failed.",z),(0,x.of)({type:y.aU.VOID})))))))),this.channelsClosedFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CLOSED_CHANNELS_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchClosedChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/closed").pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchClosedChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CLOSED_CHANNELS_LND,payload:z.channels||[]})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchClosedChannels",y.MZ.NO_SPINNER,"Fetching Closed Channels Failed.",z),(0,x.of)({type:y.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INVOICES_LND),(0,D.Z)(z=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchInvoices",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.INVOICES_API+"?num_max_invoices="+(z.payload.num_max_invoices?z.payload.num_max_invoices:100)+"&index_offset="+(z.payload.index_offset?z.payload.index_offset:0)+"&reversed="+(!!z.payload.reversed&&z.payload.reversed)).pipe((0,w.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,I.e8)({payload:{action:"FetchInvoices",status:y.wn.COMPLETED}})),z.payload.reversed&&!z.payload.index_offset&&(ze.total_invoices=+(ze.last_index_offset||0)),{type:y.QP.SET_INVOICES_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchInvoices",y.MZ.NO_SPINNER,"Fetching Invoices Failed.",ze),(0,x.of)({type:y.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_TRANSACTIONS_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.TRANSACTIONS_API))),(0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_TRANSACTIONS_LND,payload:z||[]})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchTransactions",y.MZ.NO_SPINNER,"Fetching Transactions Failed.",z),(0,x.of)({type:y.aU.VOID}))))),this.utxosFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_UTXOS_LND),(0,R.E)(this.store.select(V.pI)),(0,D.Z)(([z,N])=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchUTXOs",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/getUTXOs?max_confs="+(N&&N.block_height?N.block_height:1e9)))),(0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchUTXOs",status:y.wn.COMPLETED}})),{type:y.QP.SET_UTXOS_LND,payload:z||[]})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchUTXOs",y.MZ.NO_SPINNER,"Fetching UTXOs Failed.",z),(0,x.of)({type:y.aU.VOID}))))),this.paymentsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAYMENTS_LND),(0,D.Z)(z=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchPayments",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"?max_payments="+(z.payload.max_payments?z.payload.max_payments:100)+"&index_offset="+(z.payload.index_offset?z.payload.index_offset:0)+"&reversed="+(!!z.payload.reversed&&z.payload.reversed)).pipe((0,w.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,I.e8)({payload:{action:"FetchPayments",status:y.wn.COMPLETED}})),this.commonService.sortByKey(ze.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:y.QP.SET_PAYMENTS_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchPayments",y.MZ.NO_SPINNER,"Fetching Payments Failed.",ze),(0,x.of)({type:y.QP.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SEND_PAYMENT_LND),(0,D.Z)(z=>{this.store.dispatch((0,O.mt)({payload:z.payload.uiMessage})),this.store.dispatch((0,I.e8)({payload:{action:"SendPayment",status:y.wn.INITIATED}}));const N=JSON.parse(JSON.stringify(z.payload));return delete N.uiMessage,delete N.fromDialog,this.httpClient.post(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/send",N).pipe((0,w.T)(q=>{if(this.logger.info(q),this.store.dispatch((0,O.y0)({payload:z.payload.uiMessage})),this.store.dispatch((0,I.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),q.payment_error)return z.payload.allow_self_payment?(this.store.dispatch((0,I.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:q}):(z.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",z.payload.uiMessage,"Send Payment Failed.",q.payment_error):this.handleErrorWithAlert("SendPayment",z.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",q.payment_error),{type:y.aU.VOID});if(this.store.dispatch((0,O.y0)({payload:z.payload.uiMessage})),this.store.dispatch((0,I.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),this.store.dispatch((0,I.$Q)()),this.store.dispatch((0,I.CK)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),z.payload.allow_self_payment)this.store.dispatch((0,I.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let pe="Payment Sent Successfully.";q.payment_route&&q.payment_route.total_fees_msat&&(pe="Payment sent successfully with the total fee "+q.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,O.UI)({payload:pe}))}return{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:q}}),(0,f.W)(q=>(this.logger.error("Error: "+JSON.stringify(q)),z.payload.allow_self_payment?(this.handleErrorWithoutAlert("SendPayment",z.payload.uiMessage,"Send Payment Failed.",q),this.store.dispatch((0,I.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,x.of)({type:y.QP.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(q)}})):(z.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",z.payload.uiMessage,"Send Payment Failed.",q):this.handleErrorWithAlert("SendPayment",z.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",q),(0,x.of)({type:y.aU.VOID})))))}))),this.graphNodeFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_GRAPH_NODE_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,I.e8)({payload:{action:"FetchGraphNode",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+z.payload.pubkey).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,I.e8)({payload:{action:"FetchGraphNode",status:y.wn.COMPLETED}})),{type:y.QP.SET_GRAPH_NODE_LND,payload:N&&N.node?{node:N.node}:{node:null}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("FetchGraphNode",y.MZ.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",N),(0,x.of)({type:y.aU.VOID})))))))),this.setGraphNode=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_GRAPH_NODE_LND),(0,w.T)(z=>(this.logger.info(z.payload),z.payload))),{dispatch:!1}),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_NEW_ADDRESS_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+z.payload.addressId).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.GENERATE_NEW_ADDRESS})),{type:y.QP.SET_NEW_ADDRESS_LND,payload:N&&N.address?N.address:{}})),(0,f.W)(N=>(this.handleErrorWithAlert("GetNewAddress",y.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+z.payload.addressId,N),(0,x.of)({type:y.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_NEW_ADDRESS_LND),(0,w.T)(z=>(this.logger.info(z.payload),z.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_CHANNEL_TRANSACTION_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,I.e8)({payload:{action:"SetChannelTransaction",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.TRANSACTIONS_API,{amount:z.payload.amount,address:z.payload.address,sendAll:z.payload.sendAll,fees:z.payload.fees,blocks:z.payload.blocks}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"SetChannelTransaction",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.y0)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,I.mh)()),this.store.dispatch((0,I.DY)()),this.store.dispatch((0,I.$Q)()),{type:y.QP.SET_CHANNEL_TRANSACTION_RES_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SetChannelTransaction",y.MZ.SEND_FUNDS,"Sending Fund Failed.",N),(0,x.of)({type:y.aU.VOID})))))))),this.fetchForwardingHistory=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_FORWARDING_HISTORY_LND),(0,D.Z)(z=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.SWITCH_API,{num_max_events:z.payload.num_max_events,index_offset:z.payload.index_offset,end_time:z.payload.end_time,start_time:z.payload.start_time}).pipe((0,w.T)(q=>(this.logger.info(q),this.store.dispatch((0,I.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.COMPLETED}})),{type:y.QP.SET_FORWARDING_HISTORY_LND,payload:q})),(0,f.W)(q=>(this.handleErrorWithAlert("FetchForwardingHistory",y.MZ.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+y.rl.SWITCH_API,q),(0,x.of)({type:y.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_QUERY_ROUTES_LND),(0,D.Z)(z=>{let N=this.CHILD_API_URL+y.rl.NETWORK_API+"/routes/"+z.payload.destPubkey+"/"+z.payload.amount;return z.payload.outgoingChanId&&(N=N+"?outgoing_chan_id="+z.payload.outgoingChanId),this.httpClient.get(N).pipe((0,w.T)(q=>(this.logger.info(q),{type:y.QP.SET_QUERY_ROUTES_LND,payload:q})),(0,f.W)(q=>(this.store.dispatch((0,I.Hm)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",y.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+y.rl.NETWORK_API,q),(0,x.of)({type:y.aU.VOID}))))}))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_QUERY_ROUTES_LND),(0,w.T)(z=>z.payload)),{dispatch:!1}),this.genSeed=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+z.payload).pipe((0,w.T)(N=>(this.logger.info("Generated GenSeed!"),this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.GEN_SEED})),{type:y.QP.GEN_SEED_RESPONSE_LND,payload:N.cipher_seed_mnemonic})),(0,f.W)(N=>(this.handleErrorWithAlert("GenSeed",y.MZ.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+z.payload,N),(0,x.of)({type:y.aU.VOID})))))))),this.updateSelNodeOptions=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_SELECTED_NODE_OPTIONS),(0,D.Z)(()=>this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/updateSelNodeOptions").pipe((0,w.T)(z=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(z),{type:y.aU.VOID})),(0,f.W)(z=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",y.MZ.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",z),(0,x.of)({type:y.aU.VOID}))))))),this.genSeedResponse=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_RESPONSE_LND),(0,w.T)(z=>z.payload)),{dispatch:!1}),this.initWalletRes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_RESPONSE_LND),(0,w.T)(z=>z.payload)),{dispatch:!1}),this.initWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/initwallet",{wallet_password:z.payload.pwd,cipher_seed_mnemonic:z.payload.cipher?z.payload.cipher:"",aezeed_passphrase:z.payload.passphrase?z.payload.passphrase:""}).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.INITIALIZE_WALLET})),{type:y.QP.INIT_WALLET_RESPONSE_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("InitWallet",y.MZ.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/initwallet",N),(0,x.of)({type:y.aU.VOID})))))))),this.unlockWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UNLOCK_WALLET_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/unlockwallet",{wallet_password:z.payload.pwd}).pipe((0,w.T)(N=>(this.logger.info(N),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,O.y0)({payload:y.MZ.UNLOCK_WALLET})),this.store.dispatch((0,O.mt)({payload:y.MZ.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,O.y0)({payload:y.MZ.WAIT_SYNC_NODE})),this.store.dispatch((0,I.Br)({payload:{loadPage:"HOME"}}))},5e3),{type:y.aU.VOID})),(0,f.W)(N=>(this.handleErrorWithAlert("UnlockWallet",y.MZ.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/unlockwallet",N),(0,x.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PEER_LOOKUP_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+z.payload).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",y.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+z.payload,N),(0,x.of)({type:y.aU.VOID})))))))),this.channelLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CHANNEL_LOOKUP_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:z.payload.uiMessage})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+z.payload.channelID).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:z.payload.uiMessage})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",z.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+z.payload.channelID,N),(0,x.of)({type:y.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INVOICE_LOOKUP_LND),(0,D.Z)(z=>{this.store.dispatch((0,O.mt)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}}));let N=this.CHILD_API_URL+y.rl.INVOICES_API+"/lookup";return N=z.payload.paymentAddress&&""!==z.payload.paymentAddress?N+"?payment_addr="+z.payload.paymentAddress:N+"?payment_hash="+z.payload.paymentHash,this.httpClient.get(N).pipe((0,w.T)(q=>(this.logger.info(q),this.store.dispatch((0,O.y0)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,I.Dq)({payload:q})),{type:y.QP.SET_LOOKUP_LND,payload:q})),(0,f.W)(q=>(this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",q),z.payload.openSnackBar&&this.store.dispatch((0,O.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,x.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:q}}))))}))),this.paymentLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PAYMENT_LOOKUP_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/lookup/"+z.payload).pipe((0,w.T)(N=>(this.logger.info(N),this.store.dispatch((0,O.y0)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,I._$)({payload:N})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.store.dispatch((0,I.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_PAYMENT,"Payment Lookup Failed",N),(0,x.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:N}})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_LOOKUP_LND),(0,w.T)(z=>(this.logger.info(z.payload),z.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LIST_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"RestoreChannelsList",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/list").pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"RestoreChannelsList",status:y.wn.COMPLETED}})),{type:y.QP.SET_RESTORE_CHANNELS_LIST_LND,payload:z||{all_restore_exists:!1,files:[]}})),(0,f.W)(z=>(this.handleErrorWithAlert("RestoreChannelsList",y.MZ.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API,z),(0,x.of)({type:y.aU.VOID})))))))),this.setRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_RESTORE_CHANNELS_LIST_LND),(0,w.T)(z=>(this.logger.info(z.payload),z.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/alltransactions").pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:z})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchLightningTransactions",y.MZ.NO_SPINNER,"Fetching All Lightning Transaction Failed.",z),(0,x.of)({type:y.aU.VOID})))))))),this.pageSettingsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAGE_SETTINGS_LND),(0,D.Z)(()=>(this.store.dispatch((0,I.e8)({payload:{action:"FetchPageSettings",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.PAGE_SETTINGS_API).pipe((0,w.T)(z=>(this.logger.info(z),this.store.dispatch((0,I.e8)({payload:{action:"FetchPageSettings",status:y.wn.COMPLETED}})),this.invoicesPageSettings=z&&Object.keys(z).length>0?z.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId),this.paymentsPageSettings=z&&Object.keys(z).length>0?z.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:z||[]})),(0,f.W)(z=>(this.handleErrorWithoutAlert("FetchPageSettings",y.MZ.NO_SPINNER,"Fetching Page Settings Failed.",z),(0,x.of)({type:y.aU.VOID})))))))),this.savePageSettings=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_PAGE_SETTINGS_LND),(0,D.Z)(z=>(this.store.dispatch((0,O.mt)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,I.e8)({payload:{action:"SavePageSettings",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.PAGE_SETTINGS_API,z.payload).pipe((0,w.T)(N=>{this.logger.info(N),this.store.dispatch((0,I.e8)({payload:{action:"SavePageSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,O.y0)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,O.UI)({payload:"Page Layout Updated Successfully!"}));const q=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)).recordsPerPage,pe=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)).recordsPerPage;return this.invoicesPageSettings&&q!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=q,this.store.dispatch((0,I.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&pe!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=pe),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:N||[]}}),(0,f.W)(N=>(this.handleErrorWithAlert("SavePageSettings",y.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",y.rl.PAGE_SETTINGS_API,N),(0,x.of)({type:y.aU.VOID})))))))),this.store.select(V.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(z=>{z.FetchInfo.status!==y.wn.COMPLETED&&z.FetchInfo.status!==y.wn.ERROR||z.FetchFees.status!==y.wn.COMPLETED&&z.FetchFees.status!==y.wn.ERROR||z.FetchBalanceBlockchain.status!==y.wn.COMPLETED&&z.FetchBalanceBlockchain.status!==y.wn.ERROR||z.FetchAllChannels.status!==y.wn.COMPLETED&&z.FetchAllChannels.status!==y.wn.ERROR||z.FetchPendingChannels.status!==y.wn.COMPLETED&&z.FetchPendingChannels.status!==y.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,O.y0)({payload:y.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(z=>{this.logger.info("Received new message from the service: "+JSON.stringify(z)),z&&(z.type===y.o1.INVOICE?(this.logger.info(z),z&&z.result&&z.result.payment_request&&this.store.dispatch((0,I.Dq)({payload:z.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(z)))})}initializeRemainingData(n,c){this.sessionService.setItem("lndUnlocked","true");const m={identity_pubkey:n.identity_pubkey,alias:n.alias,testnet:n.testnet,chains:n.chains,uris:n.uris,version:n.version?n.version.split(" ")[0]:""};this.store.dispatch((0,O.mt)({payload:y.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,O.Fl)({payload:m}));let d=this.location.path();d.includes("/cln/")?d=d?.replace("/cln/","/lnd/"):d.includes("/ecl/")&&(d=d?.replace("/ecl/","/lnd/")),(d.includes("/unlock")||d.includes("/login")||d.includes("/error")||""===d||"HOME"===c||d.includes("?access-key="))&&(d="/lnd/home"),this.router.navigate([d]),this.store.dispatch((0,I.DY)()),this.store.dispatch((0,I.$Q)()),this.store.dispatch((0,I.ar)()),this.store.dispatch((0,I.pL)()),this.store.dispatch((0,I.Gy)()),this.store.dispatch((0,I.tf)()),this.store.dispatch((0,I.yp)()),this.store.dispatch((0,I.CK)({payload:{max_payments:1e5,reversed:!0}})),this.store.dispatch((0,I.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(n,c,m,d){this.logger.error("ERROR IN: "+n+"\n"+JSON.stringify(d)),401===d.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,O.Jh)()),this.store.dispatch((0,O.ri)({payload:"Authentication Failed: "+JSON.stringify(d.error)}))):(this.store.dispatch((0,O.y0)({payload:c})),this.store.dispatch((0,I.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:d.status.toString(),message:this.commonService.extractErrorMessage(d,m)}})))}handleErrorWithAlert(n,c,m,d,C){if(this.logger.error(C),401===C.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,O.Jh)()),this.store.dispatch((0,O.ri)({payload:"Authentication Failed: "+JSON.stringify(C.error)}));else{this.store.dispatch((0,O.y0)({payload:c}));const A=this.commonService.extractErrorMessage(C);this.store.dispatch((0,O.xO)({payload:{data:{type:"ERROR",alertTitle:m,message:{code:C.status,message:A,URL:d},component:S.f}}})),this.store.dispatch((0,I.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:C.status.toString(),message:A,URL:d}}))}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static{this.\u0275fac=function(c){return new(c||le)(j.KVO(e.En),j.KVO(Y.Qq),j.KVO(W.il),j.KVO(Q.gP),j.KVO(J.h),j.KVO(ie.Q),j.KVO(ee.bZ),j.KVO(fe.Ix),j.KVO(ne.I),j.KVO(Me.aZ))}}static{this.\u0275prov=j.jDH({token:le,factory:le.\u0275fac})}}return le})()},3536:(Qe,te,g)=>{"use strict";g.d(te,{$7:()=>W,$G:()=>x,BM:()=>I,Bw:()=>Y,Ie:()=>f,KT:()=>R,Uv:()=>j,ah:()=>J,eO:()=>fe,gN:()=>y,gj:()=>ne,n_:()=>ee,oR:()=>h,os:()=>S,pI:()=>D,rN:()=>O,ru:()=>w,tA:()=>ie});var e=g(9640);const t=(0,e.UX)("lnd"),x=(0,e.Mz)(t,Me=>({pageSettings:Me.pageSettings,apiCallStatus:Me.apisCallStatus.FetchPageSettings})),D=(0,e.Mz)(t,Me=>Me.information),w=((0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo})),(0,e.Mz)(t,Me=>Me.apisCallStatus)),f=(0,e.Mz)(t,Me=>({forwardingHistory:Me.forwardingHistory,apiCallStatus:Me.apisCallStatus.FetchForwardingHistory})),R=(0,e.Mz)(t,Me=>({listPayments:Me.listPayments,apiCallStatus:Me.apisCallStatus.FetchPayments})),h=(0,e.Mz)(t,Me=>({fees:Me.fees,apiCallStatus:Me.apisCallStatus.FetchFees})),S=(0,e.Mz)(t,Me=>({peers:Me.peers,apiCallStatus:Me.apisCallStatus.FetchPeers})),y=(0,e.Mz)(t,Me=>({transactions:Me.transactions,apiCallStatus:Me.apisCallStatus.FetchTransactions})),O=(0,e.Mz)(t,Me=>({listInvoices:Me.listInvoices,apiCallStatus:Me.apisCallStatus.FetchInvoices})),I=(0,e.Mz)(t,Me=>({channels:Me.channels,channelsSummary:Me.channelsSummary,lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),j=((0,e.Mz)(t,Me=>({channelsSummary:Me.channelsSummary,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({pendingChannels:Me.pendingChannels,pendingChannelsSummary:Me.pendingChannelsSummary,apiCallStatus:Me.apisCallStatus.FetchPendingChannels}))),Y=(0,e.Mz)(t,Me=>({closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchClosedChannels})),W=(0,e.Mz)(t,Me=>({blockchainBalance:Me.blockchainBalance,apiCallStatus:Me.apisCallStatus.FetchBalanceBlockchain})),J=((0,e.Mz)(t,Me=>({lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({utxos:Me.utxos,apiCallStatus:Me.apisCallStatus.FetchUTXOs}))),ie=(0,e.Mz)(t,Me=>({networkInfo:Me.networkInfo,apiCallStatus:Me.apisCallStatus.FetchNetwork})),ee=(0,e.Mz)(t,Me=>({allLightningTransactions:Me.allLightningTransactions,apiCallStatus:Me.apisCallStatus.FetchLightningTransactions})),fe=(0,e.Mz)(t,Me=>({channels:Me.channels,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels})),ne=(0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo}))},6391:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>Yt});var e=g(5351),t=g(5383),x=g(1413),D=g(6977),l=g(4416),w=g(3536),f=g(4438),R=g(8570),h=g(2571),S=g(5416),y=g(9640),O=g(177),I=g(60),V=g(2920),j=g(6038),Y=g(8834),W=g(5596),Q=g(9454),J=g(9213),ie=g(1997),ee=g(9183),fe=g(4823),ne=g(8288),Me=g(9157),Ce=g(9587);const le=["scrollContainer"],T=ve=>({"display-none":ve}),n=ve=>({"xs-scroll-y":ve}),c=ve=>({"h-50":ve}),m=()=>[],d=ve=>({"mr-0":ve});function C(ve,_e){if(1&ve&&f.nrm(0,"qr-code",33),2&ve){const we=f.XpG();f.Y8G("value",null==we.invoice?null:we.invoice.payment_request)("size",we.qrWidth)("errorCorrectionLevel","L")}}function A(ve,_e){1&ve&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function k(ve,_e){if(1&ve&&f.nrm(0,"qr-code",33),2&ve){const we=f.XpG();f.Y8G("value",null==we.invoice?null:we.invoice.payment_request)("size",we.qrWidth)("errorCorrectionLevel","L")}}function _(ve,_e){1&ve&&(f.j41(0,"span",35),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function a(ve,_e){1&ve&&f.nrm(0,"mat-divider",24),2&ve&&f.Y8G("inset",!0)}function b(ve,_e){1&ve&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function z(ve,_e){1&ve&&f.nrm(0,"span",41)}function N(ve,_e){if(1&ve&&(f.j41(0,"div",37)(1,"div",38)(2,"span",39),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,z,1,0,"span",40),f.k0s()()),2&ve){const we=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==we.invoice?null:we.invoice.amt_paid_sat)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,m).constructor(35))}}function q(ve,_e){if(1&ve&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&ve){const we=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==we.invoice?null:we.invoice.amt_paid_sat)," Sats")}}function pe(ve,_e){if(1&ve&&(f.qex(0),f.DNE(1,N,6,5,"div",36)(2,q,3,3,"div",23),f.bVm()),2&ve){const we=f.XpG();f.R7$(),f.Y8G("ngIf",we.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!we.flgInvoicePaid)}}function ze(ve,_e){1&ve&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Xe(ve,_e){1&ve&&f.nrm(0,"mat-spinner",43),2&ve&&f.Y8G("diameter",20)}function We(ve,_e){if(1&ve&&(f.qex(0),f.DNE(1,ze,2,0,"span",23)(2,Xe,1,1,"mat-spinner",42),f.bVm()),2&ve){const we=f.XpG();f.R7$(),f.Y8G("ngIf","OPEN"!==(null==we.invoice?null:we.invoice.state)||!we.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","OPEN"===(null==we.invoice?null:we.invoice.state)&&we.flgVersionCompatible)}}function oe(ve,_e){1&ve&&f.eu8(0)}function X(ve,_e){if(1&ve&&(f.j41(0,"div"),f.DNE(1,oe,1,0,"ng-container",44),f.k0s()),2&ve){f.XpG();const we=f.sdS(79);f.R7$(),f.Y8G("ngTemplateOutlet",we)}}function se(ve,_e){if(1&ve){const we=f.RV6();f.j41(0,"div",45)(1,"button",46),f.bIt("click",function(){f.eBV(we);const je=f.XpG();return f.Njj(je.onScrollDown())}),f.j41(2,"mat-icon",47),f.EFF(3,"arrow_downward"),f.k0s()()()}}function ae(ve,_e){1&ve&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function he(ve,_e){1&ve&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function Ie(ve,_e){if(1&ve){const we=f.RV6();f.j41(0,"button",48),f.bIt("copied",function(je){f.eBV(we);const vt=f.XpG();return f.Njj(vt.onCopyPayment(je))}),f.EFF(1),f.k0s()}if(2&ve){const we=f.XpG();f.Y8G("payload",null==we.invoice?null:we.invoice.payment_request),f.R7$(),f.JRh(we.screenSize===we.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function st(ve,_e){if(1&ve){const we=f.RV6();f.j41(0,"button",49),f.bIt("click",function(){f.eBV(we);const je=f.XpG();return f.Njj(je.onClose())}),f.EFF(1,"OK"),f.k0s()}}function me(ve,_e){if(1&ve&&f.nrm(0,"span",64),2&ve){const we=f.XpG(4);f.Y8G("ngClass",f.eq3(1,d,we.screenSize===we.screenSizeEnum.XS))}}function Ee(ve,_e){if(1&ve&&f.nrm(0,"span",65),2&ve){const we=f.XpG(4);f.Y8G("ngClass",f.eq3(1,d,we.screenSize===we.screenSizeEnum.XS))}}function ue(ve,_e){if(1&ve&&f.nrm(0,"span",66),2&ve){const we=f.XpG(4);f.Y8G("ngClass",f.eq3(1,d,we.screenSize===we.screenSizeEnum.XS))}}function Be(ve,_e){if(1&ve&&(f.j41(0,"div",53)(1,"div",58)(2,"span",59),f.DNE(3,me,1,3,"span",60)(4,Ee,1,3,"span",61)(5,ue,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&ve){const we=_e.$implicit,Ue=f.XpG(3);f.R7$(3),f.Y8G("ngIf","SETTLED"===we.state),f.R7$(),f.Y8G("ngIf","ACCEPTED"===we.state),f.R7$(),f.Y8G("ngIf","CANCELED"===we.state),f.R7$(),f.SpI(" ",we.chan_id," "),f.R7$(2),f.JRh(f.i5U(9,6,+we.amt_msat/1e3||0,Ue.getDecimalFormat(we))),f.R7$(2),f.Y8G("inset",!0)}}function Ct(ve,_e){if(1&ve){const we=f.RV6();f.j41(0,"div",19)(1,"mat-expansion-panel",51),f.bIt("opened",function(){f.eBV(we);const je=f.XpG(2);return f.Njj(je.flgOpened=!0)})("closed",function(){f.eBV(we);const je=f.XpG(2);return f.Njj(je.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,Be,11,9,"div",57),f.k0s()()()}if(2&ve){const we=f.XpG(2);f.R7$(12),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngForOf",null==we.invoice?null:we.invoice.htlcs)}}function ct(ve,_e){1&ve&&f.nrm(0,"mat-divider",24),2&ve&&f.Y8G("inset",!0)}function dt(ve,_e){if(1&ve&&(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,Ct,14,2,"div",50)(34,ct,1,1,"mat-divider",17)),2&ve){const we=f.XpG();f.Y8G("inset",!0),f.R7$(6),f.JRh((null==we.invoice?null:we.invoice.r_preimage)||"-"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==we.invoice?null:we.invoice.state),f.R7$(5),f.JRh(f.i5U(19,11,1e3*(+(null==we.invoice?null:we.invoice.creation_date)+ +(null==we.invoice?null:we.invoice.expiry)),"dd/MMM/y HH:mm")),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null!=we.invoice&&we.invoice.private?"Yes":"No"),f.R7$(5),f.JRh(null!=we.invoice&&we.invoice.is_amp?"Yes":"No"),f.R7$(),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngIf",(null==we.invoice?null:we.invoice.htlcs)&&(null==we.invoice?null:we.invoice.htlcs.length)>0),f.R7$(),f.Y8G("ngIf",(null==we.invoice?null:we.invoice.htlcs)&&(null==we.invoice?null:we.invoice.htlcs.length)>0)}}let Yt=(()=>{class ve{set container(we){we&&(this.scrollContainer=we)}constructor(we,Ue,je,vt,$e,nt){this.dialogRef=we,this.data=Ue,this.logger=je,this.commonService=vt,this.snackBar=$e,this.store=nt,this.faReceipt=t.Mf0,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new x.B,new x.B,new x.B,new x.B,new x.B]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(w.pI).pipe((0,D.Q)(this.unSubs[0])).subscribe(Ue=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(Ue.version,"0.11.0")});const we=JSON.parse(JSON.stringify(this.invoice));this.store.select(w.rN).pipe((0,D.Q)(this.unSubs[1])).subscribe(Ue=>{const je=this.invoice?.state,$e=(Ue.listInvoices.invoices||[]).find(nt=>nt.r_hash===we.r_hash)||null;$e&&(this.invoice=$e),je!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(Ue)})}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(we){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+we)}getDecimalFormat(we){return we.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(we=>{we.next(null),we.complete()})}static{this.\u0275fac=function(Ue){return new(Ue||ve)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(R.gP),f.rXU(h.h),f.rXU(S.UG),f.rXU(y.il))}}static{this.\u0275cmp=f.VBU({type:ve,selectors:[["rtl-invoice-information"]],viewQuery:function(Ue,je){if(1&Ue&&f.GBs(le,5),2&Ue){let vt;f.mGM(vt=f.lsd())&&(je.container=vt.first)}},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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(Ue,je){if(1&Ue){const vt=f.RV6();f.j41(0,"div",3)(1,"div",4),f.DNE(2,C,1,3,"qr-code",5)(3,A,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 f.eBV(vt),f.Njj(je.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",13)(13,"div",14)(14,"div",15),f.DNE(15,k,1,3,"qr-code",5)(16,_,2,0,"span",16),f.k0s(),f.DNE(17,a,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,b,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,pe,3,2,"ng-container",23)(33,We,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,X,2,1,"div",23),f.k0s()()(),f.DNE(70,se,4,0,"div",27),f.j41(71,"div",28)(72,"button",29),f.bIt("click",function(){return f.eBV(vt),f.Njj(je.onShowAdvanced())}),f.DNE(73,ae,2,0,"p",30)(74,he,2,0,"ng-template",null,1,f.C5r),f.k0s(),f.DNE(76,Ie,2,2,"button",31)(77,st,2,0,"button",32),f.k0s()()(),f.DNE(78,dt,35,14,"ng-template",null,2,f.C5r)}if(2&Ue){const vt=f.sdS(75);f.R7$(),f.Y8G("fxLayoutAlign",null!=je.invoice&&je.invoice.payment_request&&""!==(null==je.invoice?null:je.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(41,T,je.screenSize===je.screenSizeEnum.XS||je.screenSize===je.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==je.invoice?null:je.invoice.payment_request)&&""!==(null==je.invoice?null:je.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=je.invoice&&je.invoice.payment_request)||""===(null==je.invoice?null:je.invoice.payment_request)),f.R7$(4),f.Y8G("icon",je.faReceipt),f.R7$(2),f.JRh(je.screenSize===je.screenSizeEnum.XS?je.newlyAdded?"Created":"Invoice":je.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(43,n,je.screenSize===je.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=je.invoice&&je.invoice.payment_request&&""!==(null==je.invoice?null:je.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(45,T,je.screenSize!==je.screenSizeEnum.XS&&je.screenSize!==je.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==je.invoice?null:je.invoice.payment_request)&&""!==(null==je.invoice?null:je.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=je.invoice&&je.invoice.payment_request)||""===(null==je.invoice?null:je.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",je.screenSize===je.screenSizeEnum.XS||je.screenSize===je.screenSizeEnum.SM),f.R7$(),f.Y8G("ngClass",f.eq3(47,c,(null==je.invoice?null:je.invoice.htlcs)&&(null==je.invoice?null:je.invoice.htlcs.length)>0&&je.showAdvanced)),f.R7$(5),f.JRh(je.screenSize===je.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI("",f.bMT(26,33,(null==je.invoice?null:je.invoice.value)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=je.invoice&&je.invoice.value)||"0"===(null==je.invoice?null:je.invoice.value)),f.R7$(5),f.Y8G("ngIf",(null==je.invoice?null:je.invoice.amt_paid_sat)&&"OPEN"!==(null==je.invoice?null:je.invoice.state)),f.R7$(),f.Y8G("ngIf",!(null!=je.invoice&&je.invoice.amt_paid_sat)||"0"===(null==je.invoice?null:je.invoice.amt_paid_sat)),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(f.i5U(41,35,1e3*(null==je.invoice?null:je.invoice.creation_date),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(0!=+(null==je.invoice?null:je.invoice.settle_date)?f.i5U(47,38,1e3*+(null==je.invoice?null:je.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==je.invoice?null:je.invoice.memo),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==je.invoice?null:je.invoice.payment_request)||"N/A"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==je.invoice?null:je.invoice.r_hash)||""),f.R7$(),f.Y8G("ngIf",je.showAdvanced),f.R7$(),f.Y8G("ngIf",(null==je.invoice?null:je.invoice.htlcs)&&(null==je.invoice?null:je.invoice.htlcs.length)>0&&je.showAdvanced&&je.flgOpened),f.R7$(3),f.Y8G("ngIf",!je.showAdvanced)("ngIfElse",vt),f.R7$(3),f.Y8G("ngIf",(null==je.invoice?null:je.invoice.payment_request)&&""!==(null==je.invoice?null:je.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=je.invoice&&je.invoice.payment_request)||""===(null==je.invoice?null:je.invoice.payment_request))}},dependencies:[O.YU,O.Sq,O.bT,O.T3,I.aY,V.DJ,V.sA,V.UI,j.PW,Y.$z,Y.$0,W.m2,W.MM,Q.GK,Q.Z2,Q.WN,J.An,ie.q,ee.LG,fe.oV,ne.Um,Me.U,Ce.N,O.QX,O.vh]})}}return ve})()},1001:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>t,q:()=>x});var e=g(9969);const t=[(0,e.hZ)("opacityAnimation",[(0,e.kY)(":enter",[(0,e.iF)({opacity:0}),(0,e.i0)("1000ms ease-in",(0,e.iF)({opacity:1}))]),(0,e.kY)(":leave",[(0,e.i0)("0ms",(0,e.iF)({opacity:0}))])])],x=[(0,e.hZ)("fadeIn",[(0,e.kY)("void => *",[]),(0,e.kY)("* => void",[]),(0,e.kY)("* => *",[(0,e.i0)(800,(0,e.i7)([(0,e.iF)({opacity:0,transform:"translateY(100%)"}),(0,e.iF)({opacity:1,transform:"translateY(0%)"})]))])])]},9881:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>t});var e=g(9969);const t=(0,e.hZ)("routeAnimation",[(0,e.kY)("* => *",[(0,e.P)(":enter, :leave",(0,e.iF)({position:"fixed",width:"100%"}),{optional:!0}),(0,e.Os)([(0,e.P)(":enter",[(0,e.iF)({transform:"translateX(100%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(0%)"}))],{optional:!0}),(0,e.P)(":leave",[(0,e.iF)({transform:"translateX(0%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(-100%)"}))],{optional:!0})])])])},6949:(Qe,te,g)=>{"use strict";g.d(te,{k:()=>t});var e=g(9969);const t=[(0,e.hZ)("sliderAnimation",[(0,e.wk)("*",(0,e.iF)({transform:"translateX(0)"})),(0,e.kY)("void => backward",[(0,e.iF)({transform:"translateX(-100%"}),(0,e.i0)("800ms")]),(0,e.kY)("backward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(100%)"}))]),(0,e.kY)("void => forward",[(0,e.iF)({transform:"translateX(100%"}),(0,e.i0)("800ms")]),(0,e.kY)("forward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(-100%)"}))])])]},2462:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>y});var e=g(5351),t=g(4438),x=g(8570),D=g(177),l=g(2920),w=g(8834),f=g(5596),R=g(1997),h=g(9587);function S(O,I){if(1&O&&(t.j41(0,"p",14),t.EFF(1),t.k0s()),2&O){const V=t.XpG();t.R7$(),t.JRh(V.data.titleMessage)}}let y=(()=>{class O{constructor(V,j,Y){this.dialogRef=V,this.data=j,this.logger=Y,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{this.\u0275fac=function(j){return new(j||O)(t.rXU(e.CP),t.rXU(e.Vh),t.rXU(x.gP))}}static{this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-error-message"]],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(j,Y){1&j&&(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 Y.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"div",7),t.DNE(10,S,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&j&&(t.R7$(5),t.JRh(Y.data.alertTitle||"ERROR"),t.R7$(5),t.Y8G("ngIf",Y.data.titleMessage),t.R7$(4),t.JRh(Y.data.message.code),t.R7$(5),t.JRh(Y.errorMessage),t.R7$(5),t.JRh(Y.data.message.URL),t.R7$(3),t.Y8G("mat-dialog-close",!1))},dependencies:[D.bT,l.DJ,l.sA,l.UI,e.tx,w.$z,f.m2,f.MM,R.q,h.N],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}}return O})()},8711:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>Qi});var e=g(9417),t=g(1413),x=g(6977),D=g(5351),l=g(5383),w=g(1001),f=g(4416),R=g(3536),h=g(4438),S=g(9640),y=g(4104),O=g(177),I=g(8570),V=g(1188),j=g(2571),Y=g(2920),W=g(6038),Q=g(8834),J=g(5596),ie=g(9454),ee=g(9213),fe=g(9631),ne=g(6467),Me=g(7575),Ce=g(5951),le=g(450),T=g(4823),n=g(6013),c=g(9587),m=g(1997);const d=Xt=>({"h-5":Xt});function C(Xt,St){1&Xt&&h.eu8(0)}function A(Xt,St){1&Xt&&h.eu8(0)}function k(Xt,St){if(1&Xt&&(h.j41(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),h.EFF(4),h.nI1(5,"number"),h.k0s()()(),h.DNE(6,A,1,0,"ng-container",2),h.k0s()),2&Xt){const tt=h.XpG(),ot=h.sdS(4);h.Y8G("expanded",tt.panelExpanded)("ngClass",h.eq3(7,d,!tt.flgShowPanel)),h.R7$(4),h.Lme("Quote for ",tt.termCaption," amount (",h.bMT(5,5,tt.quote.amount)," Sats)"),h.R7$(2),h.Y8G("ngTemplateOutlet",ot)}}function _(Xt,St){if(1&Xt&&(h.j41(0,"div",19)(1,"h4",8),h.EFF(2," Prepay Amount (Sats) "),h.j41(3,"mat-icon",20),h.EFF(4,"info_outline"),h.k0s()(),h.j41(5,"span",10),h.EFF(6),h.nI1(7,"number"),h.k0s()()),2&Xt){const tt=h.XpG(2);h.R7$(6),h.JRh(h.bMT(7,1,null==tt.quote?null:tt.quote.prepay_amt_sat))}}function a(Xt,St){1&Xt&&h.nrm(0,"mat-divider",13)}function b(Xt,St){if(1&Xt&&(h.j41(0,"div",6)(1,"div",21)(2,"h4",8),h.EFF(3," Swap Server Node Pubkey "),h.j41(4,"mat-icon",22),h.EFF(5,"info_outline"),h.k0s()(),h.j41(6,"span",10),h.EFF(7),h.k0s()()()),2&Xt){const tt=h.XpG(2);h.R7$(7),h.JRh(null==tt.quote?null:tt.quote.swap_payment_dest)}}function z(Xt,St){if(1&Xt&&(h.j41(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),h.EFF(4," Swap Fee (Sats) "),h.j41(5,"mat-icon",9),h.EFF(6,"info_outline"),h.k0s()(),h.j41(7,"span",10),h.EFF(8),h.nI1(9,"number"),h.k0s()(),h.j41(10,"div",7)(11,"h4",8),h.EFF(12),h.j41(13,"mat-icon",11),h.EFF(14,"info_outline"),h.k0s()(),h.j41(15,"span",10),h.EFF(16),h.nI1(17,"number"),h.k0s()(),h.DNE(18,_,8,3,"div",12),h.k0s(),h.nrm(19,"mat-divider",13),h.j41(20,"div",6)(21,"div",14)(22,"h4",8),h.EFF(23," Max Off-chain Swap Routing Fee (Sats) "),h.j41(24,"mat-icon",15),h.EFF(25,"info_outline"),h.k0s()(),h.j41(26,"span",10),h.EFF(27),h.nI1(28,"number"),h.k0s()(),h.j41(29,"div",14)(30,"h4",8),h.EFF(31," Max Off-chain Prepay Routing Fee (Sats) "),h.j41(32,"mat-icon",16),h.EFF(33,"info_outline"),h.k0s()(),h.j41(34,"span",10),h.EFF(35,"36"),h.k0s()()(),h.DNE(36,a,1,0,"mat-divider",17)(37,b,8,1,"div",18),h.k0s()),2&Xt){const tt=h.XpG();h.R7$(2),h.Y8G("fxFlex",null!=tt.quote&&tt.quote.prepay_amt_sat?"30":"50"),h.R7$(6),h.JRh(h.bMT(9,9,null==tt.quote?null:tt.quote.swap_fee_sat)),h.R7$(2),h.Y8G("fxFlex",null!=tt.quote&&tt.quote.prepay_amt_sat?"35":"50"),h.R7$(2),h.SpI(" ",null!=tt.quote&&tt.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=tt.quote&&tt.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),h.R7$(4),h.JRh(h.bMT(17,11,null!=tt.quote&&tt.quote.htlc_sweep_fee_sat?tt.quote.htlc_sweep_fee_sat:null!=tt.quote&&tt.quote.htlc_publish_fee_sat?tt.quote.htlc_publish_fee_sat:0)),h.R7$(2),h.Y8G("ngIf",null==tt.quote?null:tt.quote.prepay_amt_sat),h.R7$(9),h.JRh(h.bMT(28,13,(null==tt.quote?null:tt.quote.amount)*((null!=tt.quote&&tt.quote.off_chain_swap_routing_fee_percentage?null==tt.quote?null:tt.quote.off_chain_swap_routing_fee_percentage:2)/100))),h.R7$(9),h.Y8G("ngIf",""!==(null==tt.quote?null:tt.quote.swap_payment_dest)),h.R7$(),h.Y8G("ngIf",""!==(null==tt.quote?null:tt.quote.swap_payment_dest))}}let N=(()=>{class Xt{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static{this.\u0275fac=function(ot){return new(ot||Xt)}}static{this.\u0275cmp=h.VBU({type:Xt,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},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,"fxFlex"],["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(ot,Mt){if(1&ot&&h.DNE(0,C,1,0,"ng-container",2)(1,k,7,9,"ng-template",null,0,h.C5r)(3,z,38,15,"ng-template",null,1,h.C5r),2&ot){const Bt=h.sdS(2),Ci=h.sdS(4);h.Y8G("ngTemplateOutlet",Mt.showPanel?Bt:Ci)}},dependencies:[O.YU,O.bT,O.T3,Y.DJ,Y.sA,Y.UI,W.PW,ie.GK,ie.Z2,ie.WN,ee.An,m.q,T.oV,O.QX]})}}return Xt})();function q(Xt,St){1&Xt&&h.eu8(0)}function pe(Xt,St){if(1&Xt&&(h.j41(0,"div",3)(1,"span",4),h.EFF(2),h.k0s()()),2&Xt){const tt=h.XpG();h.R7$(2),h.JRh(null!=tt.loopStatus&&tt.loopStatus.error?null==tt.loopStatus?null:tt.loopStatus.error:"Unknown Error.")}}function ze(Xt,St){if(1&Xt&&(h.j41(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),h.EFF(4,"ID"),h.k0s(),h.j41(5,"span",4),h.EFF(6),h.k0s()()(),h.nrm(7,"mat-divider",8),h.j41(8,"div",5)(9,"div",6)(10,"h4",7),h.EFF(11,"HTLC Address"),h.k0s(),h.j41(12,"span",4),h.EFF(13),h.k0s()()()()),2&Xt){const tt=h.XpG();h.R7$(6),h.JRh(null==tt.loopStatus?null:tt.loopStatus.id_bytes),h.R7$(7),h.JRh(null==tt.loopStatus?null:tt.loopStatus.htlc_address)}}let Xe=(()=>{class Xt{constructor(){}static{this.\u0275fac=function(ot){return new(ot||Xt)}}static{this.\u0275cmp=h.VBU({type:Xt,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},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(ot,Mt){if(1&ot&&h.DNE(0,q,1,0,"ng-container",2)(1,pe,3,1,"ng-template",null,0,h.C5r)(3,ze,14,2,"ng-template",null,1,h.C5r),2&ot){const Bt=h.sdS(2),Ci=h.sdS(4);h.Y8G("ngTemplateOutlet",null!=Mt.loopStatus&&Mt.loopStatus.error?Bt:Ci)}},dependencies:[O.T3,Y.DJ,Y.sA,Y.UI,m.q]})}}return Xt})();var We=g(6949);const oe=(Xt,St)=>({"small-svg":Xt,"large-svg":St});function X(Xt,St){1&Xt&&h.eu8(0)}function se(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",7)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),h.nrm(8,"circle",12)(9,"path",13),h.k0s(),h.j41(10,"g",14),h.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),h.k0s()()()()(),h.joV(),h.j41(26,"div",30)(27,"mat-card-title"),h.EFF(28,"Loop In explained."),h.k0s()(),h.j41(29,"div",31)(30,"mat-card-subtitle",32),h.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,oe,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function ae(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",33)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"defs")(5,"linearGradient",34),h.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),h.k0s()(),h.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),h.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),h.k0s(),h.j41(28,"g",56)(29,"g",57)(30,"g",58),h.nrm(31,"path",59)(32,"rect",60)(33,"polygon",61),h.j41(34,"g",62),h.nrm(35,"path",63),h.k0s(),h.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),h.k0s(),h.j41(45,"g",73),h.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),h.k0s(),h.nrm(59,"path",87),h.k0s()()()()()(),h.joV(),h.j41(60,"div",30)(61,"mat-card-title"),h.EFF(62,"Step 1: Deciding to Loop In"),h.k0s()(),h.j41(63,"div",31)(64,"mat-card-subtitle",32),h.EFF(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,oe,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function he(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",88)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"defs")(5,"linearGradient",89),h.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),h.k0s()(),h.j41(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),h.nrm(14,"circle",95)(15,"path",96),h.j41(16,"g",97),h.nrm(17,"polygon",98)(18,"polygon",99)(19,"path",100),h.k0s(),h.j41(20,"g",101),h.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),h.j41(31,"g",112)(32,"g",113),h.nrm(33,"g",114),h.k0s(),h.nrm(34,"g",115),h.k0s()()(),h.j41(35,"g",116)(36,"g",40),h.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),h.k0s(),h.j41(53,"g",56)(54,"g",57)(55,"g",58),h.nrm(56,"path",59)(57,"rect",60)(58,"polygon",61),h.j41(59,"g",122),h.nrm(60,"path",63),h.k0s(),h.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),h.k0s(),h.j41(70,"g",73),h.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),h.k0s(),h.nrm(84,"path",139),h.k0s()()()(),h.nrm(85,"path",140)(86,"path",141),h.k0s()()()(),h.joV(),h.j41(87,"div",30)(88,"mat-card-title"),h.EFF(89,"Step 2: Send payment out"),h.k0s()(),h.j41(90,"div",31)(91,"mat-card-subtitle",32),h.EFF(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,oe,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function Ie(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",142)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),h.nrm(10,"circle",12)(11,"path",147),h.k0s(),h.j41(12,"g",14),h.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),h.k0s()(),h.j41(28,"g",149),h.nrm(29,"polygon",150)(30,"polygon",99)(31,"path",151),h.k0s(),h.j41(32,"g",152),h.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),h.j41(43,"g",112)(44,"g",113),h.nrm(45,"g",114),h.k0s(),h.nrm(46,"g",115),h.k0s()()(),h.nrm(47,"path",153),h.k0s()()()(),h.joV(),h.j41(48,"div",30)(49,"mat-card-title"),h.EFF(50,"Step 3: Recieve Funds Off-chain"),h.k0s()(),h.j41(51,"div",31)(52,"mat-card-subtitle",32),h.EFF(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,oe,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function st(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",154)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"defs")(5,"linearGradient",34),h.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),h.k0s()(),h.j41(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),h.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),h.k0s(),h.j41(28,"g",172),h.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),h.k0s(),h.nrm(43,"path",187),h.k0s()(),h.nrm(44,"circle",188),h.k0s()()()(),h.joV(),h.j41(45,"div",30)(46,"mat-card-title"),h.EFF(47,"Done!"),h.k0s()(),h.j41(48,"div",31)(49,"mat-card-subtitle",32),h.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. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,oe,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}let me=(()=>{class Xt{constructor(tt){this.commonService=tt,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new h.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(tt){2===tt.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===tt.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static{this.\u0275fac=function(ot){return new(ot||Xt)(h.rXU(j.h))}}static{this.\u0275cmp=h.VBU({type:Xt,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(ot,Mt){if(1&ot&&h.DNE(0,X,1,0,"ng-container",5)(1,se,32,5,"ng-template",null,0,h.C5r)(3,ae,66,5,"ng-template",null,1,h.C5r)(5,he,93,5,"ng-template",null,2,h.C5r)(7,Ie,54,5,"ng-template",null,3,h.C5r)(9,st,51,5,"ng-template",null,4,h.C5r),2&ot){const Bt=h.sdS(2),Ci=h.sdS(4),Ti=h.sdS(6),Hi=h.sdS(8),Zi=h.sdS(10);h.Y8G("ngTemplateOutlet",1===Mt.stepNumber?Bt:2===Mt.stepNumber?Ci:3===Mt.stepNumber?Ti:4===Mt.stepNumber?Hi:Zi)}},dependencies:[O.YU,O.T3,Y.DJ,Y.sA,Y.UI,W.PW,J.Lc,J.dh],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:[We.k]}})}}return Xt})();const Ee=(Xt,St)=>({"small-svg":Xt,"large-svg":St});function ue(Xt,St){1&Xt&&h.eu8(0)}function Be(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",7)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),h.nrm(8,"circle",12)(9,"path",13),h.k0s(),h.j41(10,"g",14),h.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),h.k0s()()()()(),h.joV(),h.j41(26,"div",30)(27,"mat-card-title"),h.EFF(28,"Loop Out explained."),h.k0s()(),h.j41(29,"div",31)(30,"mat-card-subtitle",32),h.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,Ee,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function Ct(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",33)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"defs")(5,"linearGradient",34),h.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),h.k0s()(),h.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),h.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),h.k0s(),h.j41(28,"g",56),h.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),h.k0s(),h.nrm(43,"path",71),h.k0s()(),h.nrm(44,"circle",72),h.k0s()()()(),h.joV(),h.j41(45,"div",30)(46,"mat-card-title"),h.EFF(47,"Step 1: Deciding to Loop Out"),h.k0s()(),h.j41(48,"div",31)(49,"mat-card-subtitle",32),h.EFF(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,Ee,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function ct(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",73)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"defs")(5,"linearGradient",74),h.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),h.k0s()(),h.j41(9,"g",8)(10,"g",75)(11,"g",76),h.nrm(12,"circle",77)(13,"path",78),h.j41(14,"g",79),h.nrm(15,"polygon",80)(16,"polygon",81)(17,"path",82),h.k0s(),h.j41(18,"g",83),h.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),h.j41(29,"g",94)(30,"g",95),h.nrm(31,"g",96),h.k0s(),h.nrm(32,"g",97),h.k0s(),h.nrm(33,"path",98),h.k0s(),h.j41(34,"g",99)(35,"g",41)(36,"g",42),h.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),h.k0s(),h.j41(52,"g",56),h.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),h.k0s(),h.nrm(67,"path",111),h.k0s()()()()()(),h.joV(),h.j41(68,"div",30)(69,"mat-card-title"),h.EFF(70,"Step 2: Send lightning payment"),h.k0s()(),h.j41(71,"div",31)(72,"mat-card-subtitle",32),h.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. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,Ee,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function dt(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",112)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),h.nrm(9,"circle",12)(10,"path",117),h.k0s(),h.j41(11,"g",14),h.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),h.k0s()(),h.j41(27,"g",119),h.nrm(28,"polygon",80)(29,"polygon",120)(30,"path",82),h.k0s(),h.j41(31,"g",121),h.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),h.j41(42,"g",94)(43,"g",95),h.nrm(44,"g",96),h.k0s(),h.nrm(45,"g",97),h.k0s(),h.nrm(46,"path",123),h.k0s()()()()(),h.joV(),h.j41(47,"div",30)(48,"mat-card-title"),h.EFF(49,"Step 3: Receive funds back"),h.k0s()(),h.j41(50,"div",31)(51,"mat-card-subtitle",32),h.EFF(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,Ee,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}function Yt(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",6),h.bIt("swipe",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.onSwipe(Mt))}),h.qSk(),h.j41(1,"svg",124)(2,"desc"),h.EFF(3,"Created with Sketch."),h.k0s(),h.j41(4,"defs")(5,"linearGradient",34),h.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),h.k0s()(),h.j41(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),h.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),h.k0s(),h.j41(28,"g",142)(29,"g",143)(30,"g",144),h.nrm(31,"path",145)(32,"rect",146)(33,"polygon",147),h.j41(34,"g",148),h.nrm(35,"path",149),h.k0s(),h.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),h.k0s(),h.j41(45,"g",159),h.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),h.k0s(),h.nrm(59,"path",173),h.k0s()()()()()(),h.joV(),h.j41(60,"div",30)(61,"mat-card-title"),h.EFF(62,"Done!"),h.k0s()(),h.j41(63,"div",31)(64,"mat-card-subtitle",32),h.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. "),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@sliderAnimation",tt.animationDirection),h.R7$(),h.Y8G("ngClass",h.l_i(2,Ee,tt.screenSize===tt.screenSizeEnum.XS,tt.screenSize!==tt.screenSizeEnum.XS))}}let ve=(()=>{class Xt{constructor(tt){this.commonService=tt,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new h.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(tt){2===tt.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===tt.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static{this.\u0275fac=function(ot){return new(ot||Xt)(h.rXU(j.h))}}static{this.\u0275cmp=h.VBU({type:Xt,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(ot,Mt){if(1&ot&&h.DNE(0,ue,1,0,"ng-container",5)(1,Be,32,5,"ng-template",null,0,h.C5r)(3,Ct,51,5,"ng-template",null,1,h.C5r)(5,ct,74,5,"ng-template",null,2,h.C5r)(7,dt,53,5,"ng-template",null,3,h.C5r)(9,Yt,66,5,"ng-template",null,4,h.C5r),2&ot){const Bt=h.sdS(2),Ci=h.sdS(4),Ti=h.sdS(6),Hi=h.sdS(8),Zi=h.sdS(10);h.Y8G("ngTemplateOutlet",1===Mt.stepNumber?Bt:2===Mt.stepNumber?Ci:3===Mt.stepNumber?Ti:4===Mt.stepNumber?Hi:Zi)}},dependencies:[O.YU,O.T3,Y.DJ,Y.sA,Y.UI,W.PW,J.Lc,J.dh],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:[We.k]}})}}return Xt})();const _e=["stepper"],we=()=>[1,2,3,4,5],Ue=(Xt,St)=>({"dot-primary":Xt,"dot-primary-lighter":St});function je(Xt,St){if(1&Xt&&(h.j41(0,"div",48)(1,"p",49)(2,"strong"),h.EFF(3,"Channel Peer:\xa0"),h.k0s(),h.EFF(4),h.nI1(5,"titlecase"),h.k0s(),h.j41(6,"p",50)(7,"strong"),h.EFF(8,"Channel ID:\xa0"),h.k0s(),h.EFF(9),h.k0s(),h.nrm(10,"p",50),h.k0s()),2&Xt){const tt=h.XpG(2);h.R7$(4),h.JRh(h.bMT(5,2,tt.channel.remote_alias)),h.R7$(5),h.JRh(tt.channel.chan_id)}}function vt(Xt,St){if(1&Xt&&h.EFF(0),2&Xt){const tt=h.XpG(2);h.JRh(tt.inputFormLabel)}}function $e(Xt,St){1&Xt&&(h.j41(0,"mat-error"),h.EFF(1,"Amount is required."),h.k0s())}function nt(Xt,St){if(1&Xt&&(h.j41(0,"mat-error"),h.EFF(1),h.nI1(2,"number"),h.k0s()),2&Xt){const tt=h.XpG(2);h.R7$(),h.SpI("Amount must be greater than or equal to ",h.bMT(2,1,tt.minQuote.amount),".")}}function qt(Xt,St){if(1&Xt&&(h.j41(0,"mat-error"),h.EFF(1),h.nI1(2,"number"),h.k0s()),2&Xt){const tt=h.XpG(2);h.R7$(),h.SpI("Amount must be less than or equal to ",h.bMT(2,1,tt.maxQuote.amount),".")}}function Nt(Xt,St){1&Xt&&(h.j41(0,"mat-error"),h.EFF(1,"Confirmation target is required."),h.k0s())}function yt(Xt,St){1&Xt&&(h.j41(0,"mat-error"),h.EFF(1,"Confirmation target must be a positive number."),h.k0s())}function jt(Xt,St){1&Xt&&(h.j41(0,"mat-error"),h.EFF(1,"Percentage is required."),h.k0s())}function Je(Xt,St){1&Xt&&(h.j41(0,"mat-error"),h.EFF(1,"Percentage must be a positive number."),h.k0s())}function et(Xt,St){if(1&Xt&&(h.j41(0,"mat-form-field",50)(1,"mat-label"),h.EFF(2,"Max Off-chain Routing Fee (%)"),h.k0s(),h.nrm(3,"input",51),h.DNE(4,jt,2,0,"mat-error",25)(5,Je,2,0,"mat-error",25),h.k0s()),2&Xt){const tt=h.XpG(2);h.R7$(3),h.Y8G("step",1),h.R7$(),h.Y8G("ngIf",null==tt.inputFormGroup.controls.routingFeePercent.errors?null:tt.inputFormGroup.controls.routingFeePercent.errors.required),h.R7$(),h.Y8G("ngIf",null==tt.inputFormGroup.controls.routingFeePercent.errors?null:tt.inputFormGroup.controls.routingFeePercent.errors.min)}}function Ae(Xt,St){1&Xt&&(h.j41(0,"div",52)(1,"mat-slide-toggle",53),h.EFF(2,"Fast"),h.k0s(),h.j41(3,"mat-icon",54),h.EFF(4,"info_outline"),h.k0s()())}function It(Xt,St){if(1&Xt&&h.EFF(0),2&Xt){const tt=h.XpG(2);h.JRh(tt.quoteFormLabel)}}function Qt(Xt,St){1&Xt&&(h.j41(0,"p",55)(1,"mat-icon",56),h.EFF(2,"close"),h.k0s(),h.EFF(3,"Local balance amount is insufficient for swap."),h.k0s())}function Tt(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",57),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onValidateAmount())}),h.EFF(1,"Next"),h.k0s()}}function xt(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",58),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onLoop())}),h.EFF(1),h.k0s()}if(2&Xt){const tt=h.XpG(2);h.R7$(),h.SpI("Initiate ",tt.loopDirectionCaption,"")}}function Se(Xt,St){if(1&Xt&&h.EFF(0),2&Xt){const tt=h.XpG(3);h.JRh(tt.addressFormLabel)}}function Te(Xt,St){1&Xt&&(h.j41(0,"mat-error"),h.EFF(1,"Address is required."),h.k0s())}function ce(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"mat-step",16)(1,"form",17),h.DNE(2,Se,1,1,"ng-template",18),h.j41(3,"div",59)(4,"mat-radio-group",60),h.bIt("change",function(Mt){h.eBV(tt);const Bt=h.XpG(2);return h.Njj(Bt.onAddressTypeChange(Mt))}),h.j41(5,"mat-radio-button",61),h.EFF(6,"Node Local Address"),h.k0s(),h.j41(7,"mat-radio-button",62),h.EFF(8,"External Address"),h.k0s()(),h.j41(9,"mat-form-field",63)(10,"mat-label"),h.EFF(11,"Address"),h.k0s(),h.nrm(12,"input",64),h.DNE(13,Te,2,0,"mat-error",25),h.k0s()(),h.j41(14,"div",29)(15,"button",65),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onLoop())}),h.EFF(16),h.k0s()()()()}if(2&Xt){const tt=h.XpG(2);h.Y8G("stepControl",tt.addressFormGroup)("editable",tt.flgEditable),h.R7$(),h.Y8G("formGroup",tt.addressFormGroup),h.R7$(11),h.Y8G("required","external"===tt.addressFormGroup.controls.addressType.value),h.R7$(),h.Y8G("ngIf",null==tt.addressFormGroup.controls.address.errors?null:tt.addressFormGroup.controls.address.errors.required),h.R7$(3),h.SpI("Initiate ",tt.loopDirectionCaption,"")}}function Z(Xt,St){if(1&Xt&&h.EFF(0),2&Xt){const tt=h.XpG(2);h.SpI("",tt.loopDirectionCaption," Status")}}function Re(Xt,St){if(1&Xt&&(h.j41(0,"mat-icon",66),h.EFF(1),h.k0s()),2&Xt){const tt=h.XpG(2);h.R7$(),h.JRh(tt.loopStatus&&null!=tt.loopStatus&&tt.loopStatus.id_bytes?"check":"close")}}function Pe(Xt,St){1&Xt&&h.nrm(0,"div")}function pt(Xt,St){1&Xt&&h.nrm(0,"mat-progress-bar",67)}function Ke(Xt,St){if(1&Xt&&(h.j41(0,"h4",68),h.EFF(1),h.k0s()),2&Xt){const tt=h.XpG(2);h.R7$(),h.JRh(tt.loopStatus&&tt.loopStatus.error?tt.loopDirectionCaption+" failed.":tt.loopStatus&&tt.loopStatus.id_bytes&&tt.channel?tt.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":tt.loopDirectionCaption+" request placed successfully.")}}function Fe(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",69),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.goToLoop())}),h.EFF(1,"Check Status"),h.k0s()}}function Ge(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",70),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onRestart())}),h.EFF(1,"Start Again"),h.k0s()}}function qe(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),h.EFF(5),h.k0s()(),h.j41(6,"div",9)(7,"button",10),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG();return h.Njj(Mt.showInfo())}),h.EFF(8,"?"),h.k0s(),h.j41(9,"button",11),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG();return h.Njj(Mt.onClose())}),h.EFF(10,"X"),h.k0s()()(),h.j41(11,"mat-card-content",12)(12,"div",13),h.DNE(13,je,11,4,"div",14),h.j41(14,"mat-vertical-stepper",15,1),h.bIt("selectionChange",function(Mt){h.eBV(tt);const Bt=h.XpG();return h.Njj(Bt.stepSelectionChanged(Mt))}),h.j41(16,"mat-step",16)(17,"form",17),h.DNE(18,vt,1,1,"ng-template",18),h.j41(19,"div",19),h.nrm(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",20),h.k0s(),h.j41(22,"div",21)(23,"mat-form-field",22)(24,"mat-label"),h.EFF(25,"Amount"),h.k0s(),h.nrm(26,"input",23),h.j41(27,"mat-hint"),h.EFF(28),h.nI1(29,"number"),h.nI1(30,"number"),h.k0s(),h.j41(31,"span",24),h.EFF(32,"Sats"),h.k0s(),h.DNE(33,$e,2,0,"mat-error",25)(34,nt,3,3,"mat-error",25)(35,qt,3,3,"mat-error",25),h.k0s(),h.j41(36,"mat-form-field",22)(37,"mat-label"),h.EFF(38,"Sweep Confirmation Target"),h.k0s(),h.nrm(39,"input",26),h.DNE(40,Nt,2,0,"mat-error",25)(41,yt,2,0,"mat-error",25),h.k0s(),h.DNE(42,et,6,3,"mat-form-field",27),h.k0s(),h.DNE(43,Ae,5,0,"div",28),h.j41(44,"div",29)(45,"button",30),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG();return h.Njj(Mt.onEstimateQuote())}),h.EFF(46,"Estimate Quote"),h.k0s()()()(),h.j41(47,"mat-step",16)(48,"form",17),h.DNE(49,It,1,1,"ng-template",18),h.nrm(50,"rtl-loop-quote",31),h.DNE(51,Qt,4,0,"p",32),h.j41(52,"div",29),h.DNE(53,Tt,2,0,"button",33)(54,xt,2,1,"button",34),h.k0s()()(),h.DNE(55,ce,17,6,"mat-step",35),h.j41(56,"mat-step",36)(57,"form",17),h.DNE(58,Z,1,1,"ng-template",18),h.j41(59,"div",37)(60,"mat-expansion-panel",38)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",39),h.EFF(64),h.DNE(65,Re,2,1,"mat-icon",40),h.k0s()()(),h.DNE(66,Pe,1,0,"div",41),h.k0s(),h.DNE(67,pt,1,0,"mat-progress-bar",42),h.k0s(),h.DNE(68,Ke,2,1,"h4",43),h.j41(69,"div",29),h.DNE(70,Fe,2,0,"button",44)(71,Ge,2,0,"button",45),h.k0s()()()(),h.j41(72,"div",46)(73,"button",47),h.EFF(74,"Close"),h.k0s()()()()()()}if(2&Xt){const tt=h.XpG(),ot=h.sdS(2);h.Y8G("@opacityAnimation",void 0),h.R7$(3),h.Y8G("fxFlex",tt.screenSize===tt.screenSizeEnum.XS||tt.screenSize===tt.screenSizeEnum.SM?"83":"91"),h.R7$(2),h.JRh(tt.channel?"Channel "+tt.loopDirectionCaption:tt.loopDirectionCaption),h.R7$(),h.Y8G("fxFlex",tt.screenSize===tt.screenSizeEnum.XS||tt.screenSize===tt.screenSizeEnum.SM?"17":"9"),h.R7$(7),h.Y8G("ngIf",tt.channel),h.R7$(),h.Y8G("linear",!0),h.R7$(2),h.Y8G("stepControl",tt.inputFormGroup)("editable",tt.flgEditable),h.R7$(),h.Y8G("formGroup",tt.inputFormGroup),h.R7$(3),h.Y8G("quote",tt.minQuote)("termCaption","min")("panelExpanded",!1)("showPanel",!0),h.R7$(),h.Y8G("quote",tt.maxQuote)("termCaption","max")("panelExpanded",!1)("showPanel",!0),h.R7$(2),h.Y8G("fxFlex",tt.direction===tt.LoopTypeEnum.LOOP_OUT?"35":"48"),h.R7$(3),h.Y8G("step",1e3),h.R7$(2),h.Lme("Range: ",h.bMT(29,51,tt.minQuote.amount),"-",h.bMT(30,53,tt.maxQuote.amount),""),h.R7$(5),h.Y8G("ngIf",null==tt.inputFormGroup.controls.amount.errors?null:tt.inputFormGroup.controls.amount.errors.required),h.R7$(),h.Y8G("ngIf",null==tt.inputFormGroup.controls.amount.errors?null:tt.inputFormGroup.controls.amount.errors.min),h.R7$(),h.Y8G("ngIf",null==tt.inputFormGroup.controls.amount.errors?null:tt.inputFormGroup.controls.amount.errors.max),h.R7$(),h.Y8G("fxFlex",tt.direction===tt.LoopTypeEnum.LOOP_OUT?"30":"48"),h.R7$(3),h.Y8G("step",1),h.R7$(),h.Y8G("ngIf",null==tt.inputFormGroup.controls.sweepConfTarget.errors?null:tt.inputFormGroup.controls.sweepConfTarget.errors.required),h.R7$(),h.Y8G("ngIf",null==tt.inputFormGroup.controls.sweepConfTarget.errors?null:tt.inputFormGroup.controls.sweepConfTarget.errors.min),h.R7$(),h.Y8G("ngIf",tt.direction===tt.LoopTypeEnum.LOOP_OUT),h.R7$(),h.Y8G("ngIf",tt.direction===tt.LoopTypeEnum.LOOP_OUT),h.R7$(4),h.Y8G("stepControl",tt.quoteFormGroup)("editable",tt.flgEditable),h.R7$(),h.Y8G("formGroup",tt.quoteFormGroup),h.R7$(2),h.Y8G("quote",tt.quote)("showPanel",!1),h.R7$(),h.Y8G("ngIf",tt.inputFormGroup.controls.amount.value>tt.localBalanceToCompare),h.R7$(2),h.Y8G("ngIf",tt.direction===tt.LoopTypeEnum.LOOP_OUT),h.R7$(),h.Y8G("ngIf",tt.direction===tt.LoopTypeEnum.LOOP_IN),h.R7$(),h.Y8G("ngIf",tt.direction===tt.LoopTypeEnum.LOOP_OUT),h.R7$(),h.Y8G("stepControl",tt.statusFormGroup),h.R7$(),h.Y8G("formGroup",tt.statusFormGroup),h.R7$(3),h.Y8G("expanded",!!tt.loopStatus),h.R7$(4),h.JRh(tt.loopStatus?tt.loopStatus.id_bytes?tt.loopDirectionCaption+" request details":tt.loopDirectionCaption+" error details":"Waiting for "+tt.loopDirectionCaption+" request..."),h.R7$(),h.Y8G("ngIf",tt.loopStatus),h.R7$(),h.Y8G("ngIf",!tt.loopStatus)("ngIfElse",ot),h.R7$(),h.Y8G("ngIf",!tt.loopStatus),h.R7$(),h.Y8G("ngIf",tt.loopStatus),h.R7$(2),h.Y8G("ngIf",tt.loopStatus&&tt.loopStatus.id_bytes&&tt.channel),h.R7$(),h.Y8G("ngIf",tt.loopStatus&&(tt.loopStatus.error||!tt.loopStatus.id_bytes)),h.R7$(2),h.Y8G("mat-dialog-close",!1)}}function at(Xt,St){if(1&Xt&&h.nrm(0,"rtl-loop-status",71),2&Xt){const tt=h.XpG();h.Y8G("loopStatus",tt.loopStatus)}}function Lt(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"rtl-loop-out-info-graphics",87),h.mxI("stepNumberChange",function(Mt){h.eBV(tt);const Bt=h.XpG(2);return h.DH7(Bt.stepNumber,Mt)||(Bt.stepNumber=Mt),h.Njj(Mt)}),h.k0s()}if(2&Xt){const tt=h.XpG(2);h.Y8G("animationDirection",tt.animationDirection),h.R50("stepNumber",tt.stepNumber)}}function pi(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"rtl-loop-in-info-graphics",87),h.mxI("stepNumberChange",function(Mt){h.eBV(tt);const Bt=h.XpG(2);return h.DH7(Bt.stepNumber,Mt)||(Bt.stepNumber=Mt),h.Njj(Mt)}),h.k0s()}if(2&Xt){const tt=h.XpG(2);h.Y8G("animationDirection",tt.animationDirection),h.R50("stepNumber",tt.stepNumber)}}function $t(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"span",88),h.bIt("click",function(){const Mt=h.eBV(tt).$implicit,Bt=h.XpG(2);return h.Njj(Bt.onStepChanged(Mt))}),h.nrm(1,"p",89),h.k0s()}if(2&Xt){const tt=St.$implicit,ot=h.XpG(2);h.R7$(),h.Y8G("ngClass",h.l_i(1,Ue,ot.stepNumber===tt,ot.stepNumber!==tt))}}function Kt(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",90),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onReadMore())}),h.EFF(1,"Read More"),h.k0s()}}function Ui(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",91),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onStepChanged(4))}),h.EFF(1,"Back"),h.k0s()}}function ti(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",92),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return Mt.flgShowInfo=!1,h.Njj(Mt.stepNumber=1)}),h.EFF(1,"Close"),h.k0s()}}function fi(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",93),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return Mt.flgShowInfo=!1,h.Njj(Mt.stepNumber=1)}),h.EFF(1,"Close"),h.k0s()}}function xn(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",94),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onStepChanged(Mt.stepNumber-1))}),h.EFF(1,"Back"),h.k0s()}}function tn(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"button",95),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG(2);return h.Njj(Mt.onStepChanged(Mt.stepNumber+1))}),h.EFF(1,"Next"),h.k0s()}}function Vi(Xt,St){if(1&Xt){const tt=h.RV6();h.j41(0,"div",72)(1,"div",19)(2,"mat-card-header",73)(3,"div",74),h.nrm(4,"span",8),h.k0s(),h.j41(5,"div",75)(6,"button",11),h.bIt("click",function(){h.eBV(tt);const Mt=h.XpG();return Mt.flgShowInfo=!1,h.Njj(Mt.stepNumber=1)}),h.EFF(7,"X"),h.k0s()()(),h.j41(8,"mat-card-content",76),h.DNE(9,Lt,1,2,"rtl-loop-out-info-graphics",77)(10,pi,1,2,"rtl-loop-in-info-graphics",77),h.k0s(),h.j41(11,"div",78),h.DNE(12,$t,2,4,"span",79),h.k0s(),h.j41(13,"div",80),h.DNE(14,Kt,2,0,"button",81)(15,Ui,2,0,"button",82)(16,ti,2,0,"button",83)(17,fi,2,0,"button",84)(18,xn,2,0,"button",85)(19,tn,2,0,"button",86),h.k0s()()()}if(2&Xt){const tt=h.XpG();h.Y8G("@opacityAnimation",void 0),h.R7$(9),h.Y8G("ngIf",tt.direction===tt.LoopTypeEnum.LOOP_OUT),h.R7$(),h.Y8G("ngIf",tt.direction===tt.LoopTypeEnum.LOOP_IN),h.R7$(2),h.Y8G("ngForOf",h.lJ4(10,we)),h.R7$(2),h.Y8G("ngIf",5===tt.stepNumber),h.R7$(),h.Y8G("ngIf",5===tt.stepNumber),h.R7$(),h.Y8G("ngIf",5===tt.stepNumber),h.R7$(),h.Y8G("ngIf",tt.stepNumber<5),h.R7$(),h.Y8G("ngIf",tt.stepNumber>1&&tt.stepNumber<5),h.R7$(),h.Y8G("ngIf",tt.stepNumber<5)}}let Qi=(()=>{class Xt{constructor(tt,ot,Mt,Bt,Ci,Ti,Hi,Zi,ln){this.dialogRef=tt,this.data=ot,this.store=Mt,this.loopService=Bt,this.formBuilder=Ci,this.decimalPipe=Ti,this.logger=Hi,this.router=Zi,this.commonService=ln,this.faInfoCircle=l.iW_,this.LoopTypeEnum=f.C7,this.direction=f.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=f.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||f.C7.LOOP_OUT,this.loopDirectionCaption=this.direction===f.C7.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[e.k0.required,e.k0.min(this.minQuote.amount||0),e.k0.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[e.k0.required,e.k0.min(1)]],routingFeePercent:[2,[e.k0.required,e.k0.min(0)]],fast:[!1,[e.k0.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[e.k0.required]],address:[{value:"",disabled:!0}]}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(R.BM).pipe((0,x.Q)(this.unSubs[6])).subscribe(tt=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:tt.lightningBalance&&tt.lightningBalance.local?+tt.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,x.Q)(this.unSubs[4])).subscribe(tt=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,x.Q)(this.unSubs[5])).subscribe(tt=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(tt){"external"===tt.value?(this.addressFormGroup.controls.address.setValidators([e.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===f.C7.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===f.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===f.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,x.Q)(this.unSubs[0])).subscribe({next:tt=>{this.loopStatus=tt,this.loopService.listSwaps(),this.flgEditable=!0},error:tt=>{this.loopStatus={error:tt},this.flgEditable=!0,this.logger.error(tt)}});else{const tt=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),ot="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",Mt=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,tt,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),Mt,ot).pipe((0,x.Q)(this.unSubs[1])).subscribe({next:Bt=>{this.loopStatus=Bt,this.loopService.listSwaps(),this.flgEditable=!0},error:Bt=>{this.loopStatus={error:Bt},this.flgEditable=!0,this.logger.error(Bt)}})}}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 tt=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===f.C7.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,tt).pipe((0,x.Q)(this.unSubs[2])).subscribe(ot=>{this.quote=ot,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,tt).pipe((0,x.Q)(this.unSubs[3])).subscribe(ot=>{this.quote=ot,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(tt){switch(tt.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===f.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===f.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===f.C7.LOOP_OUT&&1!==tt.selectedIndex&&tt.selectedIndex{tt.next(null),tt.complete()})}static{this.\u0275fac=function(ot){return new(ot||Xt)(h.rXU(D.CP),h.rXU(D.Vh),h.rXU(S.il),h.rXU(y.Q),h.rXU(e.ze),h.rXU(O.QX),h.rXU(I.gP),h.rXU(V.Ix),h.rXU(j.h))}}static{this.\u0275cmp=h.VBU({type:Xt,selectors:[["rtl-loop-modal"]],viewQuery:function(ot,Mt){if(1&ot&&h.GBs(_e,5),2&ot){let Bt;h.mGM(Bt=h.lsd())&&(Mt.stepper=Bt.first)}},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,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["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"],[3,"quote","termCaption","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"fxFlex"],["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(ot,Mt){1&ot&&h.DNE(0,qe,75,55,"div",2)(1,at,1,1,"ng-template",null,0,h.C5r)(3,Vi,20,11,"div",3),2&ot&&(h.Y8G("ngIf",!Mt.flgShowInfo),h.R7$(3),h.Y8G("ngIf",Mt.flgShowInfo))},dependencies:[O.YU,O.Sq,O.bT,e.qT,e.me,e.Q0,e.BC,e.cb,e.YS,e.j4,e.JD,Y.DJ,Y.sA,Y.UI,W.PW,D.tx,Q.$z,J.m2,J.MM,ie.GK,ie.Z2,ie.WN,ee.An,fe.fg,ne.rl,ne.nJ,ne.MV,ne.TL,ne.yw,Me.HM,Ce.VT,Ce._g,le.sG,T.oV,n.V5,n.Ti,n.M6,c.N,N,Xe,me,ve,O.QX,O.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:[w.C]}})}}return Xt})()},13:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>R});var e=g(5383),t=g(4438),x=g(1188),D=g(60),l=g(2920),w=g(8834),f=g(5596);let R=(()=>{class h{constructor(y){this.router=y,this.faTimes=e.GRI}goToHelp(){this.router.navigate(["/help"])}static{this.\u0275fac=function(O){return new(O||h)(t.rXU(x.Ix))}}static{this.\u0275cmp=t.VBU({type:h,selectors:[["rtl-not-found"]],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(O,I){1&O&&(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 I.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()()),2&O&&(t.R7$(),t.Y8G("icon",I.faTimes))},dependencies:[D.aY,l.DJ,l.sA,l.UI,w.$z,f.RN,f.m2],encapsulation:2})}}return h})()},9587:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>t});var e=g(4438);let t=(()=>{class x{constructor(l){this.el=l}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static{this.\u0275fac=function(w){return new(w||x)(e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:x,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"}})}}return x})()},9157:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>t});var e=g(4438);let t=(()=>{class x{constructor(){this.copied=new e.bkB}onClick(l){l.preventDefault(),this.payload&&(navigator.clipboard?this.copyUsingClipboardAPI():this.copyUsingFallbackMethod())}copyUsingFallbackMethod(){const l=document.createElement("textarea");l.value=this.payload,document.body.appendChild(l),l.select();try{document.execCommand("copy")?this.copied.emit(this.payload.toString()):this.copied.emit("Error could not copy text.")}finally{document.body.removeChild(l)}}copyUsingClipboardAPI(){navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())}).catch(l=>{this.copied.emit("Error could not copy text: "+JSON.stringify(l))})}static{this.\u0275fac=function(w){return new(w||x)}}static{this.\u0275dir=e.FsC({type:x,selectors:[["","rtlClipboard",""]],hostBindings:function(w,f){1&w&&e.bIt("click",function(h){return f.onClick(h)})},inputs:{payload:"payload"},outputs:{copied:"copied"}})}}return x})()},92:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>x});var e=g(9417),t=g(4438);let x=(()=>{class D{validate(w){return this.max?e.k0.max(+this.max)(w):null}static{this.\u0275fac=function(f){return new(f||D)}}static{this.\u0275dir=t.FsC({type:D,selectors:[["input","max",""]],inputs:{max:"max"},features:[t.Jv_([{provide:e.cz,useExisting:D,multi:!0}])]})}}return D})()},6114:(Qe,te,g)=>{"use strict";g.d(te,{V:()=>x});var e=g(9417),t=g(4438);let x=(()=>{class D{validate(w){return this.min?e.k0.min(+this.min)(w):null}static{this.\u0275fac=function(f){return new(f||D)}}static{this.\u0275dir=t.FsC({type:D,selectors:[["input","min",""]],inputs:{min:"min"},features:[t.Jv_([{provide:e.cz,useExisting:D,multi:!0}])]})}}return D})()},2929:(Qe,te,g)=>{"use strict";g.d(te,{Qu:()=>D,VD:()=>l,ZE:()=>x,gZ:()=>t});var e=g(4438);let t=(()=>{class w{transform(R,h){return R?.replace(/^[0]+/g,"")}static{this.\u0275fac=function(h){return new(h||w)}}static{this.\u0275pipe=e.EJ8({name:"removeleadingzeros",type:w,pure:!0})}}return w})(),x=(()=>{class w{transform(R,h){return R?.replace(/(?:^\w|[A-Z]|\b\w)/g,(S,y)=>S.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static{this.\u0275fac=function(h){return new(h||w)}}static{this.\u0275pipe=e.EJ8({name:"camelcase",type:w,pure:!0})}}return w})(),D=(()=>{class w{transform(R,h,S){return R.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,O)=>" "+y.toUpperCase())}static{this.\u0275fac=function(h){return new(h||w)}}static{this.\u0275pipe=e.EJ8({name:"camelCaseWithSpaces",type:w,pure:!0})}}return w})(),l=(()=>{class w{transform(R,h,S){return R=R?R.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",h&&(R=R.replace(new RegExp(h,"g")," ")),S&&(R=R.replace(new RegExp(S,"g")," ")),R.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,O)=>y.toUpperCase())}static{this.\u0275fac=function(h){return new(h||w)}}static{this.\u0275pipe=e.EJ8({name:"camelcaseWithReplace",type:w,pure:!0})}}return w})()},7186:(Qe,te,g)=>{"use strict";g.d(te,{Wz:()=>f,fe:()=>R,jn:()=>w,q_:()=>l});var e=g(4438),t=g(1188),x=g(3202),D=g(6354);function l(){return()=>{const h=(0,e.WQX)(t.Ix),S=(0,e.WQX)(t.nX),y=(0,e.WQX)(x.Q);return!(!y.getItem("token")||S.snapshot.url&&S.snapshot.url.length&&"settings"!==S.snapshot.url[0].path&&"auth"!==S.snapshot.url[0].path&&"true"===y.getItem("defaultPassword")&&(h.navigate(["/settings/auth"]),1))}}function w(){return()=>!!(0,e.WQX)(x.Q).watchSession().pipe((0,D.T)(S=>S.lndUnlocked))}function f(){return()=>!!(0,e.WQX)(x.Q).watchSession().pipe((0,D.T)(S=>S.clnUnlocked))}function R(){return()=>!!(0,e.WQX)(x.Q).watchSession().pipe((0,D.T)(S=>S.eclUnlocked))}},2571:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>V});var e=g(4412),t=g(1413),x=g(7673),D=g(8810),l=g(6977),w=g(5558),f=g(9437),R=g(4416),h=g(4438),S=g(1534),y=g(8570),O=g(177),I=g(345);let V=(()=>{class j{constructor(W,Q,J,ie){this.dataService=W,this.logger=Q,this.datePipe=J,this.sanitizer=ie,this.currencyUnits=[],this.CurrencyUnitEnum=R.BQ,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=R.wn.UN_INITIATED,this.screenSize=R.f7.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new e.t(this.containerSize),this.unSubs=[new t.B,new t.B,new t.B]}getScreenSize(){return this.screenSize}setScreenSize(W){this.screenSize=W}getContainerSize(){return this.containerSize}setContainerSize(W,Q){this.containerSize={width:W,height:Q},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(W,Q,J,ie="asc"){return W.sort("number"===J?"desc"===ie?(ee,fe)=>+ee[Q]>+fe[Q]?-1:1:(ee,fe)=>+ee[Q]>+fe[Q]?1:-1:"desc"===ie?(ee,fe)=>ee[Q]>fe[Q]?-1:1:(ee,fe)=>ee[Q]>fe[Q]?1:-1)}sortDescByKey(W,Q){return W.sort((J,ie)=>{const ee=+J[Q],fe=+ie[Q];return ee>fe?-1:ee{const ee=+J[Q],fe=+ie[Q];return eefe?1:0})}camelCase(W){return W?.replace(/(?:^\w|[A-Z]|\b\w)/g,(Q,J)=>Q.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(W,Q,J){return Q&&J&&""!==Q&&""!==J&&(W=W?.replace(new RegExp(Q,"g"),J)),W.indexOf("!\n")>0||W.indexOf(".\n")>0?W.split("\n")?.reduce((ie,ee)=>ie+ee.charAt(0).toUpperCase()+ee.substring(1).toLowerCase()+"\n",""):W.indexOf(" ")>0?W.split(" ")?.reduce((ie,ee)=>ie+ee.charAt(0).toUpperCase()+ee.substring(1).toLowerCase()+" ",""):W.charAt(0).toUpperCase()+W.substring(1).toLowerCase()}convertCurrency(W,Q,J,ie,ee){const fe=(new Date).valueOf();try{return ee&&ie&&(Q===R.BQ.OTHER||J===R.BQ.OTHER)?this.ratesAPIStatus!==R.wn.INITIATED?this.conversionData.data&&this.conversionData.last_fetched&&fe(this.ratesAPIStatus=R.wn.COMPLETED,this.conversionData.data=ne&&"object"==typeof ne?ne:ne&&"string"==typeof ne?JSON.parse(ne):{},this.conversionData.last_fetched=fe,(0,x.of)(this.convertWithFiat(W,Q,ie)))),(0,f.W)(ne=>(this.ratesAPIStatus=R.wn.ERROR,(0,D.$)(()=>"Currency Conversion Error."))))):(0,x.of)(this.conversionData.data&&this.conversionData.last_fetched&&fe"Currency Conversion Error.")}}convertWithoutFiat(W,Q){const J={};switch(J[R.BQ.SATS]=0,J[R.BQ.BTC]=0,Q){case R.BQ.SATS:J[R.BQ.SATS]=W,J[R.BQ.BTC]=1e-8*W;break;case R.BQ.BTC:J[R.BQ.SATS]=1e8*W,J[R.BQ.BTC]=W}return J}convertWithFiat(W,Q,J){const ie={unit:J,iconType:"FA",symbol:null};if(J){const ee=(0,R.Zo)(this.conversionData.data[J].symbol);ie.iconType=ee.iconType,ie.symbol=ee&&"SVG"===ee.iconType&&ee.symbol&&"string"==typeof ee.symbol?this.sanitizer.bypassSecurityTrustHtml(ee.symbol):ee.symbol}switch(ie[R.BQ.SATS]=0,ie[R.BQ.BTC]=0,ie[R.BQ.OTHER]=0,Q){case R.BQ.SATS:ie[R.BQ.SATS]=W,ie[R.BQ.BTC]=1e-8*W,ie[R.BQ.OTHER]=1e-8*W*this.conversionData.data[J].last;break;case R.BQ.BTC:ie[R.BQ.SATS]=1e8*W,ie[R.BQ.BTC]=W,ie[R.BQ.OTHER]=W*this.conversionData.data[J].last;break;case R.BQ.OTHER:ie[R.BQ.SATS]=W/this.conversionData.data[J].last*1e8,ie[R.BQ.BTC]=W/this.conversionData.data[J].last,ie[R.BQ.OTHER]=W}return ie}convertTime(W,Q,J){switch(Q){case R.F7.SECS:switch(J){case R.F7.MINS:W/=60;break;case R.F7.HOURS:W/=R.bz;break;case R.F7.DAYS:W/=24*R.bz}break;case R.F7.MINS:switch(J){case R.F7.SECS:W*=60;break;case R.F7.HOURS:W/=60;break;case R.F7.DAYS:W/=1440}break;case R.F7.HOURS:switch(J){case R.F7.SECS:W*=R.bz;break;case R.F7.MINS:W*=60;break;case R.F7.DAYS:W/=24}break;case R.F7.DAYS:switch(J){case R.F7.SECS:W=W*R.bz*24;break;case R.F7.MINS:W=60*W*24;break;case R.F7.HOURS:W*=24}}return W}downloadFile(W,Q,J=".json",ie=".csv"){let ee=new Blob;ee=".json"===J?new Blob(["\ufeff"+this.convertToCSV(W)],{type:"text/csv;charset=utf-8;"}):new Blob([W.toString()],{type:"text/plain;charset=utf-8"});const fe=document.createElement("a"),ne=URL.createObjectURL(ee);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&fe.setAttribute("target","_blank"),fe.setAttribute("href",ne),fe.setAttribute("download",Q+ie),fe.style.visibility="hidden",document.body.appendChild(fe),fe.click(),document.body.removeChild(fe)}convertToCSV(W){const Q=[];let J="",ie="",ee="";return"object"!=typeof W&&(W=JSON.parse(W)),W.forEach((ne,Me)=>{for(const Ce in ne)Q.findIndex(le=>le===Ce)<0&&Q.push(Ce)}),ee=Q.join(",")+"\r\n",W.forEach(ne=>{J="",Q.forEach(Me=>{if(ne.hasOwnProperty(Me))if(Array.isArray(ne[Me]))ie="",ne[Me].forEach((Ce,le)=>{ie+="object"==typeof Ce?"("+JSON.stringify(Ce)?.replace(/\,/g,";")+")":"("+Ce+")"}),J+=ie+",";else if("object"==typeof ne[Me])J+=JSON.stringify(ne[Me])?.replace(/\,/g,";")+",";else if(Me.includes("timestamp")||Me.includes("date"))try{switch(ne[Me].toString().length){case 10:J+=this.datePipe.transform(new Date(1e3*ne[Me]),"dd/MMM/y HH:mm")+",";break;case 13:J+=this.datePipe.transform(new Date(ne[Me]),"dd/MMM/y HH:mm")+",";break;default:J+=ne[Me]+","}}catch{J+=ne[Me]+","}else J+=ne[Me]+",";else J+=","}),ee+=J.slice(0,-1)+"\r\n"}),ee}isVersionCompatible(W,Q){if(W){const J=W.match(/v?(?\d+(?:\.\d+)*)/);if(J&&J.groups&&J.groups.version){this.logger.info("Current Version: "+J.groups.version),this.logger.info("Checking Compatiblility with Version: "+Q);const ie=J.groups.version.split(".")||[],ee=Q.split(".");return+ie[0]>+ee[0]||+ie[0]==+ee[0]&&+ie[1]>+ee[1]||+ie[0]==+ee[0]&&+ie[1]==+ee[1]&&+ie[2]>=+ee[2]}return this.logger.error("Invalid Version String: "+W),!1}return!1}extractErrorMessage(W,Q="Unknown Error."){const J=this.titleCase(W.error&&W.error.text&&"string"==typeof W.error.text&&W.error.text.includes('')?"API Route Does Not Exist.":W.error&&W.error.error&&W.error.error.error&&W.error.error.error.error&&W.error.error.error.error.error&&"string"==typeof W.error.error.error.error.error?W.error.error.error.error.error:W.error&&W.error.error&&W.error.error.error&&W.error.error.error.error&&"string"==typeof W.error.error.error.error?W.error.error.error.error:W.error&&W.error.error&&W.error.error.error&&"string"==typeof W.error.error.error?W.error.error.error:W.error&&W.error.error&&"string"==typeof W.error.error?W.error.error:W.error&&"string"==typeof W.error?W.error:W.error&&W.error.error&&W.error.error.error&&W.error.error.error.error&&W.error.error.error.error.message&&"string"==typeof W.error.error.error.error.message?W.error.error.error.error.message:W.error&&W.error.error&&W.error.error.error&&W.error.error.error.message&&"string"==typeof W.error.error.error.message?W.error.error.error.message:W.error&&W.error.error&&W.error.error.message&&"string"==typeof W.error.error.message?W.error.error.message:W.error&&W.error.message&&"string"==typeof W.error.message?W.error.message:W.message&&"string"==typeof W.message?W.message:Q);return this.logger.info("Error Message: "+J),J}extractErrorCode(W,Q=500){const J=W.error&&W.error.error&&W.error.error.message&&W.error.error.message.code?W.error.error.message.code:W.error&&W.error.error&&W.error.error.code?W.error.error.code:W.error&&W.error.code?W.error.code:W.code?W.code:W.status?W.status:Q;return this.logger.info("Error Code: "+J),J}extractErrorNumber(W,Q=500){const J=W.error&&W.error.error&&W.error.error.errno?W.error.error.errno:W.error&&W.error.errno?W.error.errno:W.errno?W.errno:W.status?W.status:Q;return this.logger.info("Error Number: "+J),J}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static{this.\u0275fac=function(Q){return new(Q||j)(h.KVO(S.u),h.KVO(y.gP),h.KVO(O.vh),h.KVO(I.up))}}static{this.\u0275prov=h.jDH({token:j,factory:j.\u0275fac})}}return j})()},4416:(Qe,te,g)=>{"use strict";g.d(te,{A$:()=>le,A0:()=>y,Ah:()=>We,BQ:()=>m,Bd:()=>N,Bv:()=>ee,C6:()=>et,C7:()=>z,F7:()=>n,G:()=>ie,H$:()=>h,HW:()=>Ce,Hx:()=>b,It:()=>f,Jd:()=>vt,Jr:()=>ne,KR:()=>pe,Ld:()=>W,MZ:()=>X,NG:()=>w,QP:()=>Ie,SY:()=>I,TC:()=>st,TH:()=>Ee,U1:()=>T,UN:()=>d,Uq:()=>ue,Uu:()=>me,WW:()=>Nt,X8:()=>qt,XG:()=>Q,Y0:()=>se,ZC:()=>$e,Zb:()=>a,Zi:()=>jt,Zo:()=>Je,_1:()=>nt,_U:()=>Be,aG:()=>k,aR:()=>ae,aU:()=>he,bz:()=>l,ck:()=>fe,f7:()=>C,iI:()=>_,jG:()=>Ue,k:()=>O,md:()=>j,mu:()=>je,nv:()=>J,o1:()=>Me,oi:()=>we,on:()=>D,q9:()=>q,rl:()=>S,rs:()=>ze,tj:()=>A,ul:()=>Ct,wn:()=>oe,xk:()=>ct,xp:()=>Y,xv:()=>R});var e=g(4438),t=g(6695),x=g(5383);function D(Ae){const It=new t.xX;return It.itemsPerPageLabel=Ae+" per page:",It}const l=3600,w=31536e3,f=24*l*7,R="0.15.3-beta",h=(0,e.naY)()?"http://localhost:3000/rtl/api":"./api",S={AUTHENTICATE_API:h+"/authenticate",CONF_API:h+"/conf",PAGE_SETTINGS_API:h+"/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"},y=["Sats","BTC"],O={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},I=["SECS","MINS","HOURS","DAYS"],j=10,Y=[5,10,25,100],W=[{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"}],Q=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],J=[{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"}],ie=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom"}],ee={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 fe=function(Ae){return Ae.PAYMENT_RECEIVED="payment-received",Ae.PAYMENT_RELAYED="payment-relayed",Ae.PAYMENT_SENT="payment-sent",Ae.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",Ae.PAYMENT_FAILED="payment-failed",Ae.CHANNEL_OPENED="channel-opened",Ae.CHANNEL_STATE_CHANGED="channel-state-changed",Ae.CHANNEL_CLOSED="channel-closed",Ae}(fe||{}),ne=function(Ae){return Ae.CONNECT="connect",Ae.DISCONNECT="disconnect",Ae.WARNING="warning",Ae.INVOICE_PAYMENT="invoice_payment",Ae.INVOICE_CREATION="invoice_creation",Ae.CHANNEL_OPENED="channel_opened",Ae.CHANNEL_STATE_CHANGED="channel_state_changed",Ae.SENDPAY_SUCCESS="sendpay_success",Ae.SENDPAY_FAILURE="sendpay_failure",Ae.COIN_MOVEMENT="coin_movement",Ae.BALANCE_SNAPSHOT="balance_snapshot",Ae.BLOCK_ADDED="block_added",Ae.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",Ae.CHANNEL_OPEN_FAILED="channel_open_failed",Ae}(ne||{}),Me=function(Ae){return Ae.INVOICE="invoice",Ae}(Me||{}),Ce=function(Ae){return Ae.OPERATOR="OPERATOR",Ae.MERCHANT="MERCHANT",Ae.ALL="ALL",Ae}(Ce||{}),le=function(Ae){return Ae.INFORMATION="Information",Ae.WARNING="Warning",Ae.ERROR="Error",Ae.SUCCESS="Success",Ae.CONFIRM="Confirm",Ae}(le||{}),T=function(Ae){return Ae.JWT="JWT",Ae.PASSWORD="PASSWORD",Ae}(T||{}),n=function(Ae){return Ae.SECS="SECS",Ae.MINS="MINS",Ae.HOURS="HOURS",Ae.DAYS="DAYS",Ae}(n||{}),m=function(Ae){return Ae.SATS="Sats",Ae.BTC="BTC",Ae.OTHER="OTHER",Ae}(m||{}),d=function(Ae){return Ae.ARRAY="ARRAY",Ae.NUMBER="NUMBER",Ae.STRING="STRING",Ae.BOOLEAN="BOOLEAN",Ae.PASSWORD="PASSWORD",Ae.DATE="DATE",Ae.DATE_TIME="DATE_TIME",Ae}(d||{}),C=function(Ae){return Ae.XS="XS",Ae.SM="SM",Ae.MD="MD",Ae.LG="LG",Ae.XL="XL",Ae}(C||{});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 _=function(Ae){return Ae.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",Ae.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",Ae.WIRE_INVALID_ONION_KEY="Invalid Onion Key",Ae.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",Ae.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",Ae.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",Ae.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",Ae.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",Ae.WIRE_FEE_INSUFFICIENT="Insufficient Fee",Ae.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",Ae.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",Ae.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",Ae.WIRE_CHANNEL_DISABLED="Channel Disabled",Ae.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",Ae.WIRE_INVALID_REALM="Invalid Realm",Ae.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",Ae.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",Ae.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",Ae.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",Ae.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",Ae.WIRE_MPP_TIMEOUT="MPP Timeout",Ae.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",Ae.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",Ae}(_||{}),a=function(Ae){return Ae.CHANNELD_NORMAL="Active",Ae.OPENINGD="Opening",Ae.CHANNELD_AWAITING_LOCKIN="Pending Open",Ae.CHANNELD_SHUTTING_DOWN="Shutting Down",Ae.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",Ae.CLOSINGD_COMPLETE="Closed",Ae.AWAITING_UNILATERAL="Awaiting Unilateral Close",Ae.FUNDING_SPEND_SEEN="Funding Spend Seen",Ae.ONCHAIN="Onchain",Ae.DUALOPEND_OPEN_INIT="Dual Open Initialized",Ae.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",Ae}(a||{}),b=function(Ae){return Ae.INITIATED="Initiated",Ae.PREIMAGE_REVEALED="Preimage Revealed",Ae.HTLC_PUBLISHED="HTLC Published",Ae.SUCCESS="Successful",Ae.FAILED="Failed",Ae.INVOICE_SETTLED="Invoice Settled",Ae}(b||{}),z=function(Ae){return Ae.LOOP_OUT="LOOP_OUT",Ae.LOOP_IN="LOOP_IN",Ae}(z||{}),N=function(Ae){return Ae.SWAP_OUT="SWAP_OUT",Ae.SWAP_IN="SWAP_IN",Ae}(N||{}),q=function(Ae){return Ae["swap.created"]="Swap Created",Ae["swap.expired"]="Swap Expired",Ae["invoice.set"]="Invoice Set",Ae["invoice.paid"]="Invoice Paid",Ae["invoice.pending"]="Invoice Pending",Ae["invoice.settled"]="Invoice Settled",Ae["invoice.failedToPay"]="Invoice Failed To Pay",Ae["channel.created"]="Channel Created",Ae["transaction.failed"]="Transaction Failed",Ae["transaction.mempool"]="Transaction Mempool",Ae["transaction.claimed"]="Transaction Claimed",Ae["transaction.refunded"]="Transaction Refunded",Ae["transaction.confirmed"]="Transaction Confirmed",Ae["transaction.lockupFailed"]="Lockup Transaction Failed",Ae["swap.refunded"]="Swap Refunded",Ae["swap.abandoned"]="Swap Abandoned",Ae}(q||{});const pe=[{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}],ze=["MONTHLY","YEARLY"],We=["password","changeme","moneyprintergobrrr"];var oe=function(Ae){return Ae.UN_INITIATED="UN_INITIATED",Ae.INITIATED="INITIATED",Ae.COMPLETED="COMPLETED",Ae.ERROR="ERROR",Ae}(oe||{});const X={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 se=function(Ae){return Ae.INVOICE="INVOICE",Ae.OFFER="OFFER",Ae.KEYSEND="KEYSEND",Ae}(se||{}),ae=function(Ae){return Ae.FEES="FEES",Ae.EVENTS="EVENTS",Ae}(ae||{}),he=function(Ae){return Ae.VOID="VOID",Ae.SET_API_URL_ECL="SET_API_URL_ECL",Ae.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",Ae.RESET_ROOT_STORE="RESET_ROOT_STORE",Ae.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",Ae.OPEN_SNACK_BAR="OPEN_SNACKBAR",Ae.OPEN_SPINNER="OPEN_SPINNER",Ae.CLOSE_SPINNER="CLOSE_SPINNER",Ae.OPEN_ALERT="OPEN_ALERT",Ae.CLOSE_ALERT="CLOSE_ALERT",Ae.OPEN_CONFIRMATION="OPEN_CONFIRMATION",Ae.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",Ae.SHOW_PUBKEY="SHOW_PUBKEY",Ae.FETCH_CONFIG="FETCH_CONFIG",Ae.SHOW_CONFIG="SHOW_CONFIG",Ae.FETCH_STORE="FETCH_STORE",Ae.SET_STORE="SET_STORE",Ae.FETCH_APPLICATION_SETTINGS="FETCH_APPLICATION_SETTINGS",Ae.SET_APPLICATION_SETTINGS="SET_APPLICATION_SETTINGS",Ae.SAVE_SETTINGS="SAVE_SETTINGS",Ae.SET_SELECTED_NODE="SET_SELECTED_NODE",Ae.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",Ae.UPDATE_APPLICATION_SETTINGS="UPDATE_APPLICATION_SETTINGS",Ae.UPDATE_NODE_SETTINGS="UPDATE_NODE_SETTINGS",Ae.SET_SELECTED_NODE_SETTINGS="SET_SELECTED_NODE_SETTINGS",Ae.SET_NODE_DATA="SET_NODE_DATA",Ae.IS_AUTHORIZED="IS_AUTHORIZED",Ae.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",Ae.LOGIN="LOGIN",Ae.VERIFY_TWO_FA="VERIFY_TWO_FA",Ae.LOGOUT="LOGOUT",Ae.RESET_PASSWORD="RESET_PASSWORD",Ae.RESET_PASSWORD_RES="RESET_PASSWORD_RES",Ae.FETCH_FILE="FETCH_FILE",Ae.SHOW_FILE="SHOW_FILE",Ae}(he||{}),Ie=function(Ae){return Ae.RESET_LND_STORE="RESET_LND_STORE",Ae.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",Ae.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",Ae.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",Ae.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",Ae.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",Ae.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",Ae.FETCH_INFO_LND="FETCH_INFO_LND",Ae.SET_INFO_LND="SET_INFO_LND",Ae.FETCH_PEERS_LND="FETCH_PEERS_LND",Ae.SET_PEERS_LND="SET_PEERS_LND",Ae.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",Ae.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",Ae.DETACH_PEER_LND="DETACH_PEER_LND",Ae.REMOVE_PEER_LND="REMOVE_PEER_LND",Ae.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",Ae.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",Ae.ADD_INVOICE_LND="ADD_INVOICE_LND",Ae.FETCH_FEES_LND="FETCH_FEES_LND",Ae.SET_FEES_LND="SET_FEES_LND",Ae.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",Ae.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",Ae.FETCH_NETWORK_LND="FETCH_NETWORK_LND",Ae.SET_NETWORK_LND="SET_NETWORK_LND",Ae.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",Ae.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",Ae.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",Ae.SET_CHANNELS_LND="SET_CHANNELS_LND",Ae.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",Ae.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",Ae.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",Ae.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",Ae.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",Ae.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",Ae.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",Ae.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",Ae.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",Ae.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",Ae.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",Ae.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",Ae.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",Ae.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",Ae.FETCH_INVOICES_LND="FETCH_INVOICES_LND",Ae.SET_INVOICES_LND="SET_INVOICES_LND",Ae.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",Ae.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",Ae.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",Ae.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",Ae.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",Ae.FETCH_UTXOS_LND="FETCH_UTXOS_LND",Ae.SET_UTXOS_LND="SET_UTXOS_LND",Ae.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",Ae.SET_PAYMENTS_LND="SET_PAYMENTS_LND",Ae.SEND_PAYMENT_LND="SEND_PAYMENT_LND",Ae.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",Ae.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",Ae.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",Ae.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",Ae.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",Ae.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",Ae.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",Ae.GEN_SEED_LND="GEN_SEED_LND",Ae.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",Ae.INIT_WALLET_LND="INIT_WALLET_LND",Ae.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",Ae.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",Ae.PEER_LOOKUP_LND="PEER_LOOKUP_LND",Ae.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",Ae.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",Ae.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",Ae.SET_LOOKUP_LND="SET_LOOKUP_LND",Ae.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",Ae.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",Ae.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",Ae.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",Ae.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",Ae.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",Ae}(Ie||{}),st=function(Ae){return Ae.RESET_CLN_STORE="RESET_CLN_STORE",Ae.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",Ae.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",Ae.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",Ae.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",Ae.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",Ae.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",Ae.SET_INFO_CLN="SET_INFO_CLN",Ae.FETCH_FEES_CLN="FETCH_FEES_CLN",Ae.SET_FEES_CLN="SET_FEES_CLN",Ae.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",Ae.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",Ae.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",Ae.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",Ae.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",Ae.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",Ae.FETCH_PEERS_CLN="FETCH_PEERS_CLN",Ae.SET_PEERS_CLN="SET_PEERS_CLN",Ae.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",Ae.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",Ae.ADD_PEER_CLN="ADD_PEER_CLN",Ae.DETACH_PEER_CLN="DETACH_PEER_CLN",Ae.REMOVE_PEER_CLN="REMOVE_PEER_CLN",Ae.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",Ae.SET_CHANNELS_CLN="SET_CHANNELS_CLN",Ae.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",Ae.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",Ae.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",Ae.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",Ae.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",Ae.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",Ae.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",Ae.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",Ae.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",Ae.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",Ae.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",Ae.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",Ae.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",Ae.SET_LOOKUP_CLN="SET_LOOKUP_CLN",Ae.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",Ae.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",Ae.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",Ae.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",Ae.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",Ae.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",Ae.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",Ae.SET_INVOICES_CLN="SET_INVOICES_CLN",Ae.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",Ae.ADD_INVOICE_CLN="ADD_INVOICE_CLN",Ae.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",Ae.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",Ae.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",Ae.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",Ae.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",Ae.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",Ae.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",Ae.SET_OFFERS_CLN="SET_OFFERS_CLN",Ae.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",Ae.ADD_OFFER_CLN="ADD_OFFER_CLN",Ae.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",Ae.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",Ae.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",Ae.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",Ae.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",Ae.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",Ae.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",Ae}(st||{}),me=function(Ae){return Ae.RESET_ECL_STORE="RESET_ECL_STORE",Ae.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",Ae.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",Ae.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",Ae.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",Ae.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",Ae.FETCH_INFO_ECL="FETCH_INFO_ECL",Ae.SET_INFO_ECL="SET_INFO_ECL",Ae.FETCH_FEES_ECL="FETCH_FEES_ECL",Ae.SET_FEES_ECL="SET_FEES_ECL",Ae.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",Ae.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",Ae.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",Ae.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",Ae.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",Ae.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",Ae.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",Ae.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",Ae.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",Ae.FETCH_PEERS_ECL="FETCH_PEERS_ECL",Ae.SET_PEERS_ECL="SET_PEERS_ECL",Ae.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",Ae.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",Ae.ADD_PEER_ECL="ADD_PEER_ECL",Ae.DETACH_PEER_ECL="DETACH_PEER_ECL",Ae.REMOVE_PEER_ECL="REMOVE_PEER_ECL",Ae.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",Ae.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",Ae.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",Ae.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",Ae.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",Ae.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",Ae.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",Ae.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",Ae.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",Ae.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",Ae.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",Ae.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",Ae.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",Ae.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",Ae.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",Ae.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",Ae.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",Ae.SET_INVOICES_ECL="SET_INVOICES_ECL",Ae.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",Ae.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",Ae.ADD_INVOICE_ECL="ADD_INVOICE_ECL",Ae.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",Ae.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",Ae.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",Ae.SET_LOOKUP_ECL="SET_LOOKUP_ECL",Ae.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",Ae.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",Ae}(me||{});const Ee=[{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 ue=function(Ae){return Ae.gossip_queries_ex="Gossip queries including additional information",Ae.option_anchor_outputs="Anchor outputs",Ae.option_data_loss_protect="Extra channel re-establish fields",Ae.var_onion_optin="Variable-length routing onion payloads",Ae.option_static_remotekey="Static key for remote output",Ae.option_support_large_channel="Create large channels",Ae.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",Ae.payment_secret="Payment secret field",Ae.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",Ae.basic_mpp="Basic multi-part payments",Ae.gossip_queries="More sophisticated gossip control",Ae.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",Ae.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",Ae.amp="AMP",Ae}(ue||{}),Be=function(Ae){return Ae["data-loss-protect"]="Extra channel re-establish fields",Ae["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",Ae["gossip-queries"]="More sophisticated gossip control",Ae["tlv-onion"]="Variable-length routing onion payloads",Ae["ext-gossip-queries"]="Gossip queries can include additional information",Ae["static-remote-key"]="Static key for remote output",Ae["payment-addr"]="Payment secret field",Ae["multi-path-payments"]="Basic multi-part payments",Ae["wumbo-channels"]="Wumbo Channels",Ae.anchors="Anchor outputs",Ae["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",Ae.amp="AMP",Ae}(Be||{});const Ct=[{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 ct=function(Ae){return Ae.OFFERED="offered",Ae.SETTLED="settled",Ae.FAILED="failed",Ae.LOCAL_FAILED="local_failed",Ae}(ct||{}),we=function(Ae){return Ae.ASCENDING="asc",Ae.DESCENDING="desc",Ae}(we||{});const Ue=["asc","desc"],je=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:j,sortBy:"blockheight",sortOrder:we.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:j,sortBy:"blockheight",sortOrder:we.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:j,sortBy:"msatoshi_to_us",sortOrder:we.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:j,sortBy:"state",sortOrder:we.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:j,sortBy:"alias",sortOrder:we.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:j,sortBy:"expiry",sortOrder:we.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:j,sortBy:"channel_opening_fee",sortOrder:we.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:j,sortBy:"created_at",sortOrder:we.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:j,sortBy:"expires_at",sortOrder:we.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:j,sortBy:"offer_id",sortOrder:we.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:j,sortBy:"lastUpdatedAt",sortOrder:we.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:j,sortBy:"received_time",sortOrder:we.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:j,sortBy:"total_fee",sortOrder:we.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:j,sortBy:"received_time",sortOrder:we.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:j,sortBy:"received_time",sortOrder:we.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:j,sortBy:"received_time",sortOrder:we.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:j,sortBy:"date",sortOrder:we.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:j,sortBy:"msatoshi",sortOrder:we.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],vt={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"}]}}},$e=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:j,sortBy:"tx_id",sortOrder:we.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:j,sortBy:"time_stamp",sortOrder:we.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:j,sortBy:"tx_id",sortOrder:we.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:j,sortBy:"balancedness",sortOrder:we.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:we.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:j,sortBy:"close_type",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:j,sortBy:"incoming",sortOrder:we.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:j,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:j,sortBy:"creation_date",sortOrder:we.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:j,sortBy:"creation_date",sortOrder:we.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:j,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:j,sortBy:"total_amount",sortOrder:we.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:j,sortBy:"remote_alias",sortOrder:we.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:j,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:j,sortBy:"date",sortOrder:we.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:j,sortBy:"hop_sequence",sortOrder:we.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:j,sortBy:"initiation_time",sortOrder:we.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:j,sortBy:"status",sortOrder:we.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:j,sortBy:"status",sortOrder:we.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],nt={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"}]}}},qt=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:j,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:j,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:j,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:j,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:j,sortBy:"alias",sortOrder:we.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:j,sortBy:"firstPartTimestamp",sortOrder:we.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:j,sortBy:"receivedAt",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:j,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:j,sortBy:"totalFee",sortOrder:we.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:j,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:j,sortBy:"date",sortOrder:we.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],Nt={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"}]}}},yt_DKK="\n \n \n \n ",jt=[{id:"USD",name:"United States Dollar",iconType:"FA",symbol:x.Vpi},{id:"ARS",name:"Argentina Peso",iconType:"FA",symbol:x.Vpi},{id:"AUD",name:"Australia Dollar",iconType:"FA",symbol:x.Vpi},{id:"BRL",name:"Brazil Real",iconType:"FA",symbol:x.Tq9},{id:"CAD",name:"Canada Dollar",iconType:"FA",symbol:x.Vpi},{id:"CHF",name:"Switzerland Franc",iconType:"FA",symbol:x.zjW},{id:"CLP",name:"Chile Peso",iconType:"FA",symbol:x.Vpi},{id:"CNY",name:"China Yuan Renminbi",iconType:"FA",symbol:x.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:yt_DKK,class:"currency-icon-medium"},{id:"EUR",name:"Euro Member Countries",iconType:"FA",symbol:x.s5m},{id:"GBP",name:"United Kingdom Pound",iconType:"FA",symbol:x.vfE},{id:"HKD",name:"Hong Kong Dollar",iconType:"FA",symbol:x.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:x.FYJ},{id:"ISK",name:"Iceland Krona",iconType:"SVG",symbol:yt_DKK,class:"currency-icon-medium"},{id:"JPY",name:"Japan Yen",iconType:"FA",symbol:x.zPk},{id:"KRW",name:"Korea (South) Won",iconType:"FA",symbol:x.JKM},{id:"NZD",name:"New Zealand Dollar",iconType:"FA",symbol:x.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:x.f6_},{id:"SEK",name:"Sweden Krona",iconType:"SVG",symbol:yt_DKK,class:"currency-icon-medium"},{id:"SGD",name:"Singapore Dollar",iconType:"FA",symbol:x.Vpi},{id:"THB",name:"Thailand Baht",iconType:"FA",symbol:x.Kcb},{id:"TRY",name:"Turkey Lira",iconType:"FA",symbol:x.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 Je(Ae){const It=jt.find(Qt=>Qt.id===Ae);return"SVG"===It.iconType&&"string"==typeof It.symbol&&(It.symbol=It.symbol.replace('{"use strict";g.d(te,{u:()=>ne});var e=g(1626),t=g(4412),x=g(1413),D=g(8810),l=g(7673),w=g(1594),f=g(1397),R=g(6977),h=g(6354),S=g(9437),y=g(3993),O=g(4416),I=g(2462),V=g(1771),j=g(190),Y=g(3536),W=g(9584),Q=g(4438),J=g(9640),ie=g(8570),ee=g(5416),fe=g(177);let ne=(()=>{class Me{constructor(le,T,n,c,m){this.httpClient=le,this.store=T,this.logger=n,this.snackBar=c,this.titleCasePipe=m,this.APIUrl=O.H$,this.lnImplementation="",this.lnImplementationUpdated=new t.t(null),this.unSubs=[new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B],this.mapAliases=(d,C)=>(d&&d.length>0?d.forEach((A,k)=>{if(C&&C.length>0)for(let _=0;_{let c=this.APIUrl+"/"+n+O.rl.PAYMENTS_API+"/decode/"+le,m="GET",d=null;return"cln"===n&&(c=this.APIUrl+"/"+n+O.rl.UTILITY_API+"/decode",d={string:le},m="POST"),this.store.dispatch((0,V.mt)({payload:O.MZ.DECODE_PAYMENT})),this.httpClient.request(m,c,{body:JSON.stringify(d),headers:{"Content-Type":"application/json"}}).pipe((0,R.Q)(this.unSubs[0]),(0,h.T)(C=>(this.store.dispatch((0,V.y0)({payload:O.MZ.DECODE_PAYMENT})),C)),(0,S.W)(C=>(T?this.handleErrorWithoutAlert("Decode Payment",O.MZ.DECODE_PAYMENT,C):this.handleErrorWithAlert("decodePaymentData",O.MZ.DECODE_PAYMENT,"Decode Payment Failed",c,C),(0,D.$)(()=>new Error(this.extractErrorMessage(C))))))}))}decodePayments(le){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(T=>{let n="",c="",m=null;return"ecl"===T?(n=this.APIUrl+"/"+T+O.rl.PAYMENTS_API+"/getsentinfos",m={payments:le},c=O.MZ.GET_SENT_PAYMENTS):"cln"===T?(n=this.APIUrl+"/"+T+O.rl.UTILITY_API+"/decode",m={string:le},c=O.MZ.DECODE_PAYMENTS):(n=this.APIUrl+"/"+T+O.rl.PAYMENTS_API,m={payments:le},c=O.MZ.DECODE_PAYMENTS),this.store.dispatch((0,V.mt)({payload:c})),this.httpClient.post(n,m).pipe((0,R.Q)(this.unSubs[1]),(0,h.T)(d=>(this.store.dispatch((0,V.y0)({payload:c})),d)),(0,S.W)(d=>(this.handleErrorWithAlert("decodePaymentsData",c,c+" Failed",n,d),(0,D.$)(()=>new Error(this.extractErrorMessage(d))))))}))}getAliasesFromPubkeys(le,T){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(n=>{if(T){const c=(new e.Nl).set("pubkeys",le);return this.httpClient.get(this.APIUrl+"/"+n+O.rl.NETWORK_API+"/nodes",{params:c})}return this.httpClient.get(this.APIUrl+"/"+n+O.rl.NETWORK_API+"/node/"+le)}))}signMessage(le){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(T=>{let n=this.APIUrl+"/"+T+O.rl.MESSAGE_API+"/sign";return"cln"===T&&(n=this.APIUrl+"/"+T+O.rl.UTILITY_API+"/sign"),this.store.dispatch((0,V.mt)({payload:O.MZ.SIGN_MESSAGE})),this.httpClient.post(n,{message:le}).pipe((0,R.Q)(this.unSubs[2]),(0,h.T)(c=>(this.store.dispatch((0,V.y0)({payload:O.MZ.SIGN_MESSAGE})),c)),(0,S.W)(c=>(this.handleErrorWithAlert("signMessageData",O.MZ.SIGN_MESSAGE,"Sign Message Failed",n,c),(0,D.$)(()=>new Error(this.extractErrorMessage(c))))))}))}verifyMessage(le,T){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(n=>{let c="",m=null;return"cln"===n?(c=this.APIUrl+"/"+n+O.rl.UTILITY_API+"/verify",m={message:le,zbase:T}):(c=this.APIUrl+"/"+n+O.rl.MESSAGE_API+"/verify",m={message:le,signature:T}),this.store.dispatch((0,V.mt)({payload:O.MZ.VERIFY_MESSAGE})),this.httpClient.post(c,m).pipe((0,R.Q)(this.unSubs[3]),(0,h.T)(d=>(this.store.dispatch((0,V.y0)({payload:O.MZ.VERIFY_MESSAGE})),d)),(0,S.W)(d=>(this.handleErrorWithAlert("verifyMessageData",O.MZ.VERIFY_MESSAGE,"Verify Message Failed",c,d),(0,D.$)(()=>new Error(this.extractErrorMessage(d))))))}))}bumpFee(le,T,n,c){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(m=>{const d={txid:le,outputIndex:T};return n&&(d.targetConf=n),c&&(d.satPerByte=c),this.store.dispatch((0,V.mt)({payload:O.MZ.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+m+O.rl.WALLET_API+"/bumpfee",d).pipe((0,R.Q)(this.unSubs[4]),(0,h.T)(C=>(this.store.dispatch((0,V.y0)({payload:O.MZ.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),C)),(0,S.W)(C=>(this.handleErrorWithoutAlert("Bump Fee",O.MZ.BUMP_FEE,C),(0,D.$)(()=>new Error(this.extractErrorMessage(C))))))}))}labelUTXO(le,T,n=!0){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(c=>{const m={txid:le,label:T,overwrite:n};return this.store.dispatch((0,V.mt)({payload:O.MZ.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+c+O.rl.WALLET_API+"/label",m).pipe((0,R.Q)(this.unSubs[5]),(0,h.T)(d=>(this.store.dispatch((0,V.y0)({payload:O.MZ.LABEL_UTXO})),d)),(0,S.W)(d=>(this.handleErrorWithoutAlert("Label UTXO",O.MZ.LABEL_UTXO,d),(0,D.$)(()=>new Error(this.extractErrorMessage(d))))))}))}leaseUTXO(le,T){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(n=>{const c={txid:le,outputIndex:T};return this.store.dispatch((0,V.mt)({payload:O.MZ.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+n+O.rl.WALLET_API+"/lease",c).pipe((0,R.Q)(this.unSubs[6]),(0,h.T)(m=>{this.store.dispatch((0,V.y0)({payload:O.MZ.LEASE_UTXO})),this.store.dispatch((0,j.mh)()),this.store.dispatch((0,j.SM)());const d=new Date(1e3*m.expiration);return Math.round(d.getTime())-60*d.getTimezoneOffset()}),(0,S.W)(m=>(this.handleErrorWithoutAlert("Lease UTXO",O.MZ.LEASE_UTXO,m),(0,D.$)(()=>new Error(this.extractErrorMessage(m))))))}))}getForwardingHistory(le,T,n,c){if("LND"===le){const m={end_time:n,start_time:T};return this.store.dispatch((0,V.mt)({payload:O.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+O.rl.SWITCH_API,m).pipe((0,R.Q)(this.unSubs[7]),(0,y.E)(this.store.select(Y.eO)),(0,f.Z)(([d,C])=>{if(d.forwarding_events){const A=[...C.channels,...C.closedChannels];d.forwarding_events.forEach(k=>{if(A&&A.length>0)for(let _=0;_(this.handleErrorWithAlert("getForwardingHistoryData",O.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+O.rl.SWITCH_API,d),(0,D.$)(()=>new Error(this.extractErrorMessage(d))))))}return"CLN"===le?(this.store.dispatch((0,V.mt)({payload:O.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+O.rl.CHANNELS_API+"/listForwards",{status:c||"settled"}).pipe((0,R.Q)(this.unSubs[8]),(0,y.E)(this.store.select(W.BM)),(0,f.Z)(([m,d])=>{const C=this.mapAliases(m,[...d.activeChannels,...d.pendingChannels,...d.inactiveChannels]);return this.store.dispatch((0,V.y0)({payload:O.MZ.GET_FORWARDING_HISTORY})),(0,l.of)(C)}),(0,S.W)(m=>(this.handleErrorWithAlert("getForwardingHistoryData",O.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+O.rl.CHANNELS_API+"/listForwards",m),(0,D.$)(()=>new Error(this.extractErrorMessage(m))))))):(0,l.of)({})}listNetworkNodes(le){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(T=>(this.store.dispatch((0,V.mt)({payload:O.MZ.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+T+O.rl.NETWORK_API+"/listNodes",le).pipe((0,R.Q)(this.unSubs[9]),(0,f.Z)(n=>(this.store.dispatch((0,V.y0)({payload:O.MZ.LIST_NETWORK_NODES})),(0,l.of)(n))),(0,S.W)(n=>(this.handleErrorWithoutAlert("List Network Nodes",O.MZ.LIST_NETWORK_NODES,n),(0,D.$)(()=>this.extractErrorMessage(n))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(le=>(this.store.dispatch((0,V.mt)({payload:O.MZ.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+le+O.rl.UTILITY_API+"/listConfigs").pipe((0,R.Q)(this.unSubs[10]),(0,f.Z)(T=>(this.store.dispatch((0,V.y0)({payload:O.MZ.GET_LIST_CONFIGS})),(0,l.of)(T))),(0,S.W)(T=>(this.handleErrorWithoutAlert("List Configurations",O.MZ.GET_LIST_CONFIGS,T),(0,D.$)(()=>this.extractErrorMessage(T))))))))}getOrUpdateFunderPolicy(le,T,n,c,m,d){return this.lnImplementationUpdated.pipe((0,w.$)(),(0,f.Z)(C=>{const A=le?{policy:le,policy_mod:T,lease_fee_base_msat:n,lease_fee_basis:c,channel_fee_max_base_msat:m,channel_fee_max_proportional_thousandths:d}:null;return this.store.dispatch((0,V.mt)({payload:O.MZ.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+C+O.rl.CHANNELS_API+"/funderUpdate",A).pipe((0,R.Q)(this.unSubs[11]),(0,h.T)(k=>(this.store.dispatch((0,V.y0)({payload:O.MZ.GET_FUNDER_POLICY})),A&&this.store.dispatch((0,V.UI)({payload:"Funder Policy Updated Successfully with Compact Lease: "+k.compact_lease+"!"})),k)),(0,S.W)(k=>(this.handleErrorWithoutAlert("Funder Policy",O.MZ.GET_FUNDER_POLICY,k),(0,D.$)(()=>new Error(this.extractErrorMessage(k))))))}))}circularRebalance(le,T="",n="",c="",m="",d=[],C="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+O.rl.CHANNELS_API+"/circularRebalance",{amountMsat:le,sourceShortChannelId:T,sourceNodeId:n,targetShortChannelId:c,targetNodeId:m,ignoreNodeIds:d,format:C}).pipe((0,R.Q)(this.unSubs[12]),(0,h.T)(_=>_),(0,S.W)(_=>(this.handleErrorWithoutAlert("Rebalance Channel",O.MZ.REBALANCE_CHANNEL,_),(0,D.$)(()=>_.error))))}extractErrorMessage(le,T="Unknown Error."){return this.titleCasePipe.transform(le.error.text&&"string"==typeof le.error.text&&le.error.text.includes('')?"API Route Does Not Exist.":le.error&&le.error.error&&le.error.error.error&&le.error.error.error.error&&le.error.error.error.error.error&&"string"==typeof le.error.error.error.error.error?le.error.error.error.error.error:le.error&&le.error.error&&le.error.error.error&&le.error.error.error.error&&"string"==typeof le.error.error.error.error?le.error.error.error.error:le.error&&le.error.error&&le.error.error.error&&"string"==typeof le.error.error.error?le.error.error.error:le.error&&le.error.error&&"string"==typeof le.error.error?le.error.error:le.error&&"string"==typeof le.error?le.error:le.error&&le.error.error&&le.error.error.error&&le.error.error.error.error&&le.error.error.error.error.message&&"string"==typeof le.error.error.error.error.message?le.error.error.error.error.message:le.error&&le.error.error&&le.error.error.error&&le.error.error.error.message&&"string"==typeof le.error.error.error.message?le.error.error.error.message:le.error&&le.error.error&&le.error.error.message&&"string"==typeof le.error.error.message?le.error.error.message:le.error&&le.error.message&&"string"==typeof le.error.message?le.error.message:le.message&&"string"==typeof le.message?le.message:T)}handleErrorWithoutAlert(le,T,n){n.error.text&&"string"==typeof n.error.text&&n.error.text.includes('')&&(n={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+le+"\n"+JSON.stringify(n)),401===n.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,V.Jh)()),this.store.dispatch((0,V.ri)({payload:"Authentication Failed: "+JSON.stringify(n.error)}))):(this.store.dispatch((0,V.y0)({payload:T})),this.store.dispatch((0,V.Gd)({payload:{action:le,status:O.wn.ERROR,statusCode:n.status.toString(),message:this.extractErrorMessage(n)}})))}handleErrorWithAlert(le,T,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,V.Jh)()),this.store.dispatch((0,V.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,V.y0)({payload:T}));const d=this.extractErrorMessage(m);this.store.dispatch((0,V.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status?m.status:"Unknown Error",message:d,URL:c},component:I.f}}})),this.store.dispatch((0,V.Gd)({payload:{action:le,status:O.wn.ERROR,statusCode:m.status.toString(),message:d,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(le=>{le.next(null),le.complete()})}static{this.\u0275fac=function(T){return new(T||Me)(Q.KVO(e.Qq),Q.KVO(J.il),Q.KVO(ie.gP),Q.KVO(ee.UG),Q.KVO(fe.PV))}}static{this.\u0275prov=Q.jDH({token:Me,factory:Me.\u0275fac})}}return Me})()},8570:(Qe,te,g)=>{"use strict";g.d(te,{gP:()=>l,tU:()=>w});var e=g(4438);const t=(0,e.naY)(),x=()=>null;let l=(()=>{class f{invokeConsoleMethod(h,S){}static{this.\u0275fac=function(S){return new(S||f)}}static{this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}}return f})(),w=(()=>{class f{get info(){return t?console.log.bind(console):x}get warn(){return t?console.warn.bind(console):x}get error(){return t?console.error.bind(console):x}invokeConsoleMethod(h,S){(console[h]||console.log||x).apply(console,[S])}static{this.\u0275fac=function(S){return new(S||f)}}static{this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}}return f})()},4104:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>Y});var e=g(1626),t=g(4412),x=g(1413),D=g(7673),l=g(8810),w=g(6977),f=g(9437),R=g(6354),h=g(4416),S=g(2462),y=g(1771),O=g(4438),I=g(8570),V=g(9640),j=g(2571);let Y=(()=>{class W{constructor(J,ie,ee,fe){this.httpClient=J,this.logger=ie,this.store=ee,this.commonService=fe,this.loopUrl="",this.swaps=[],this.swapsChanged=new t.t([]),this.unSubs=[new x.B,new x.B,new x.B,new x.B,new x.B,new x.B,new x.B]}getLoopInfo(){return this.loopUrl=h.H$+h.rl.LOOP_API+"/info",this.httpClient.get(this.loopUrl)}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,y.mt)({payload:h.MZ.GET_LOOP_SWAPS})),this.loopUrl=h.H$+h.rl.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,w.Q)(this.unSubs[0])).subscribe({next:J=>{this.store.dispatch((0,y.y0)({payload:h.MZ.GET_LOOP_SWAPS})),this.swaps=J,this.swapsChanged.next(this.swaps)},error:J=>this.swapsChanged.error(this.handleErrorWithAlert(h.MZ.GET_LOOP_SWAPS,this.loopUrl,J))})}loopOut(J,ie,ee,fe,ne,Me,Ce,le,T,n){const c={amount:J,targetConf:ee,swapRoutingFee:fe,minerFee:ne,prepayRoutingFee:Me,prepayAmt:Ce,swapFee:le,swapPublicationDeadline:T,destAddress:n};return""!==ie&&(c.chanId=ie),this.loopUrl=h.H$+h.rl.LOOP_API+"/out",this.httpClient.post(this.loopUrl,c).pipe((0,f.W)(m=>this.handleErrorWithoutAlert("Loop Out for Channel: "+ie,h.MZ.NO_SPINNER,m)))}getLoopOutTerms(){return this.loopUrl=h.H$+h.rl.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,f.W)(J=>this.handleErrorWithoutAlert("Loop Out Terms",h.MZ.NO_SPINNER,J)))}getLoopOutQuote(J,ie,ee){let fe=new e.Nl;return fe=fe.append("targetConf",ie.toString()),fe=fe.append("swapPublicationDeadline",ee.toString()),this.loopUrl=h.H$+h.rl.LOOP_API+"/out/quote/"+J,this.store.dispatch((0,y.mt)({payload:h.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:fe}).pipe((0,w.Q)(this.unSubs[1]),(0,R.T)(ne=>(this.store.dispatch((0,y.y0)({payload:h.MZ.GET_QUOTE})),ne)),(0,f.W)(ne=>this.handleErrorWithoutAlert("Loop Out Quote",h.MZ.GET_QUOTE,ne)))}getLoopOutTermsAndQuotes(J){let ie=new e.Nl;return ie=ie.append("targetConf",J.toString()),ie=ie.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=h.H$+h.rl.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:h.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ie}).pipe((0,w.Q)(this.unSubs[2]),(0,R.T)(ee=>(this.store.dispatch((0,y.y0)({payload:h.MZ.GET_TERMS_QUOTES})),ee)),(0,f.W)(ee=>(0,D.of)(this.handleErrorWithAlert(h.MZ.GET_TERMS_QUOTES,this.loopUrl,ee))))}loopIn(J,ie,ee,fe,ne){const Me={amount:J,swapFee:ie,minerFee:ee,lastHop:fe,externalHtlc:ne};return this.loopUrl=h.H$+h.rl.LOOP_API+"/in",this.httpClient.post(this.loopUrl,Me).pipe((0,f.W)(Ce=>this.handleErrorWithoutAlert("Loop In",h.MZ.NO_SPINNER,Ce)))}getLoopInTerms(){return this.loopUrl=h.H$+h.rl.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,f.W)(J=>this.handleErrorWithoutAlert("Loop In Terms",h.MZ.NO_SPINNER,J)))}getLoopInQuote(J,ie,ee){let fe=new e.Nl;return fe=fe.append("targetConf",ie.toString()),fe=fe.append("swapPublicationDeadline",ee.toString()),this.loopUrl=h.H$+h.rl.LOOP_API+"/in/quote/"+J,this.store.dispatch((0,y.mt)({payload:h.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:fe}).pipe((0,w.Q)(this.unSubs[3]),(0,R.T)(ne=>(this.store.dispatch((0,y.y0)({payload:h.MZ.GET_QUOTE})),ne)),(0,f.W)(ne=>this.handleErrorWithoutAlert("Loop In Qoute",h.MZ.GET_QUOTE,ne)))}getLoopInTermsAndQuotes(J){let ie=new e.Nl;return ie=ie.append("targetConf",J.toString()),ie=ie.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=h.H$+h.rl.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:h.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ie}).pipe((0,w.Q)(this.unSubs[4]),(0,R.T)(ee=>(this.store.dispatch((0,y.y0)({payload:h.MZ.GET_TERMS_QUOTES})),ee)),(0,f.W)(ee=>(0,D.of)(this.handleErrorWithAlert(h.MZ.GET_TERMS_QUOTES,this.loopUrl,ee))))}getSwap(J){return this.loopUrl=h.H$+h.rl.LOOP_API+"/swap/"+J,this.httpClient.get(this.loopUrl).pipe((0,f.W)(ie=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+J,h.MZ.NO_SPINNER,ie)))}handleErrorWithoutAlert(J,ie,ee){let fe="";return this.logger.error("ERROR IN: "+J+"\n"+JSON.stringify(ee)),this.store.dispatch((0,y.y0)({payload:ie})),401===ee.status?(fe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:fe}))):503===ee.status?(fe="Unable to Connect to Loop Server.",this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ee.status,message:"Unable to Connect to Loop Server",URL:J},component:S.f}}}))):fe=this.commonService.extractErrorMessage(ee),(0,l.$)(()=>new Error(fe))}handleErrorWithAlert(J,ie,ee){let fe="";if(this.logger.error(ee),this.store.dispatch((0,y.y0)({payload:J})),401===ee.status)fe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:fe}));else if(503===ee.status)fe="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ee.status,message:"Unable to Connect to Loop Server",URL:ie},component:S.f}}}))},100);else{fe=this.commonService.extractErrorMessage(ee);const ne=ee.error&&ee.error.error&&ee.error.error.code?ee.error.error.code:ee.error&&ee.error.code?ee.error.code:ee.code?ee.code:ee.status;setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:h.A$.ERROR,alertTitle:"ERROR",message:{code:ne,message:fe,URL:ie},component:S.f}}}))},100)}return{message:fe}}ngOnDestroy(){this.unSubs.forEach(J=>{J.next(null),J.complete()})}static{this.\u0275fac=function(ie){return new(ie||W)(O.KVO(e.Qq),O.KVO(I.gP),O.KVO(V.il),O.KVO(j.h))}}static{this.\u0275prov=O.jDH({token:W,factory:W.\u0275fac})}}return W})()},3202:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>x});var e=g(1413),t=g(4438);let x=(()=>{class D{constructor(){this.sessionSub=new e.B}watchSession(){return this.sessionSub.asObservable()}getItem(w){return sessionStorage.getItem(w)}getAllItems(){return sessionStorage}setItem(w,f){sessionStorage.setItem(w,f),this.sessionSub.next(sessionStorage)}removeItem(w){sessionStorage.removeItem(w),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static{this.\u0275fac=function(f){return new(f||D)}}static{this.\u0275prov=t.jDH({token:D,factory:D.\u0275fac})}}return D})()},7879:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>V});var e=g(4412),t=g(1413),x=g(6977),D=g(7707),l=g(1985),w=g(8359),f=g(2771);const R={url:"",deserializer:j=>JSON.parse(j.data),serializer:j=>JSON.stringify(j)};class S extends t.k{constructor(Y,W){if(super(),this._socket=null,Y instanceof l.c)this.destination=W,this.source=Y;else{const Q=this._config=Object.assign({},R);if(this._output=new t.B,"string"==typeof Y)Q.url=Y;else for(const J in Y)Y.hasOwnProperty(J)&&(Q[J]=Y[J]);if(!Q.WebSocketCtor&&WebSocket)Q.WebSocketCtor=WebSocket;else if(!Q.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new f.m}}lift(Y){const W=new S(this._config,this.destination);return W.operator=Y,W.source=this,W}_resetState(){this._socket=null,this.source||(this.destination=new f.m),this._output=new t.B}multiplex(Y,W,Q){const J=this;return new l.c(ie=>{try{J.next(Y())}catch(fe){ie.error(fe)}const ee=J.subscribe({next:fe=>{try{Q(fe)&&ie.next(fe)}catch(ne){ie.error(ne)}},error:fe=>ie.error(fe),complete:()=>ie.complete()});return()=>{try{J.next(W())}catch(fe){ie.error(fe)}ee.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:Y,protocol:W,url:Q,binaryType:J}=this._config,ie=this._output;let ee=null;try{ee=W?new Y(Q,W):new Y(Q),this._socket=ee,J&&(this._socket.binaryType=J)}catch(ne){return void ie.error(ne)}const fe=new w.yU(()=>{this._socket=null,ee&&1===ee.readyState&&ee.close()});ee.onopen=ne=>{const{_socket:Me}=this;if(!Me)return ee.close(),void this._resetState();const{openObserver:Ce}=this._config;Ce&&Ce.next(ne);const le=this.destination;this.destination=D.vU.create(T=>{if(1===ee.readyState)try{const{serializer:n}=this._config;ee.send(n(T))}catch(n){this.destination.error(n)}},T=>{const{closingObserver:n}=this._config;n&&n.next(void 0),T&&T.code?ee.close(T.code,T.reason):ie.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:T}=this._config;T&&T.next(void 0),ee.close(),this._resetState()}),le&&le instanceof f.m&&fe.add(le.subscribe(this.destination))},ee.onerror=ne=>{this._resetState(),ie.error(ne)},ee.onclose=ne=>{ee===this._socket&&this._resetState();const{closeObserver:Me}=this._config;Me&&Me.next(ne),ne.wasClean?ie.complete():ie.error(ne)},ee.onmessage=ne=>{try{const{deserializer:Me}=this._config;ie.next(Me(ne))}catch(Me){ie.error(Me)}}}_subscribe(Y){const{source:W}=this;return W?W.subscribe(Y):(this._socket||this._connectSocket(),this._output.subscribe(Y),Y.add(()=>{const{_socket:Q}=this;0===this._output.observers.length&&(Q&&(1===Q.readyState||0===Q.readyState)&&Q.close(),this._resetState())}),Y)}unsubscribe(){const{_socket:Y}=this;Y&&(1===Y.readyState||0===Y.readyState)&&Y.close(),this._resetState(),super.unsubscribe()}}var y=g(4438),O=g(8570),I=g(3202);let V=(()=>{class j{constructor(W,Q){this.logger=W,this.sessionService=Q,this.clWSMessages=new e.t(null),this.eclWSMessages=new e.t(null),this.lndWSMessages=new e.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(W,Q){(!this.socket||this.socket.closed)&&(this.wsUrl=W,this.nodeIndex=Q,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new S({url:W,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,x.Q)(this.unSubs[1])).subscribe({next:W=>{if((W="string"==typeof W?JSON.parse(W):W).error)this.handleError(W.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(W)),W.source){case"LND":this.lndWSMessages.next(W);break;case"CLN":this.clWSMessages.next(W);break;case"ECL":this.eclWSMessages.next(W)}},error:W=>this.handleError(W),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(W){this.logger.error(W),this.clWSMessages.error(W),this.eclWSMessages.error(W),this.lndWSMessages.error(W),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{this.\u0275fac=function(Q){return new(Q||j)(y.KVO(O.gP),y.KVO(I.Q))}}static{this.\u0275prov=y.jDH({token:j,factory:j.\u0275fac})}}return j})()},9029:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>Bo});var e=g(177),t=g(1188),x=g(9417),D=g(1626),l=g(60),w=g(4438),f=g(9340),R=g(6038),h=g(2920);g(4085);let ot=(()=>{class Ot{}return Ot.\u0275fac=function(wt){return new(wt||Ot)},Ot.\u0275mod=w.$C({type:Ot}),Ot.\u0275inj=w.G2t({imports:[f.Ui]}),Ot})(),Bt=(()=>{class Ot{constructor(wt,ni){(0,e.Vy)(ni)&&!wt&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(wt,ni=[]){return{ngModule:Ot,providers:wt.serverLoaded?[{provide:f.EA,useValue:{...f.PV,...wt}},{provide:f.SL,useValue:ni,multi:!0},{provide:f.Ce,useValue:!0}]:[{provide:f.EA,useValue:{...f.PV,...wt}},{provide:f.SL,useValue:ni,multi:!0}]}}}return Ot.\u0275fac=function(wt){return new(wt||Ot)(w.KVO(f.Ce),w.KVO(w.Agw))},Ot.\u0275mod=w.$C({type:Ot}),Ot.\u0275inj=w.G2t({imports:[h.w2,R.Cc,ot,h.w2,R.Cc,ot]}),Ot})();var Ci=g(9327),Ti=g(6600),Hi=g(5351),Zi=g(850),ln=g(1975),mn=g(8834),Ut=g(8617);g(5024);const re=["button"],He=["*"];function ye(Ot,si){if(1&Ot&&w.nrm(0,"mat-pseudo-checkbox",3),2&Ot){const wt=w.XpG();w.Y8G("disabled",wt.disabled)}}function rt(Ot,si){if(1&Ot&&w.nrm(0,"mat-pseudo-checkbox",3),2&Ot){const wt=w.XpG();w.Y8G("disabled",wt.disabled)}}const ht=new w.nKC("MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS",{providedIn:"root",factory:function ii(){return{hideSingleSelectionIndicator:!1,hideMultipleSelectionIndicator:!1}}}),di=new w.nKC("MatButtonToggleGroup");let Cn=0;class Hn{constructor(si,wt){this.source=si,this.value=wt}}let Jn=(()=>{class Ot{get buttonId(){return`${this.id}-button`}get appearance(){return this.buttonToggleGroup?this.buttonToggleGroup.appearance:this._appearance}set appearance(wt){this._appearance=wt}get checked(){return this.buttonToggleGroup?this.buttonToggleGroup._isSelected(this):this._checked}set checked(wt){wt!==this._checked&&(this._checked=wt,this.buttonToggleGroup&&this.buttonToggleGroup._syncButtonToggle(this,this._checked),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled||this.buttonToggleGroup&&this.buttonToggleGroup.disabled}set disabled(wt){this._disabled=wt}constructor(wt,ni,Ei,Ji,cr,ga){this._changeDetectorRef=ni,this._elementRef=Ei,this._focusMonitor=Ji,this._checked=!1,this.ariaLabelledby=null,this._disabled=!1,this.change=new w.bkB;const Ra=Number(cr);this.tabIndex=Ra||0===Ra?Ra:null,this.buttonToggleGroup=wt,this.appearance=ga&&ga.appearance?ga.appearance:"standard"}ngOnInit(){const wt=this.buttonToggleGroup;this.id=this.id||"mat-button-toggle-"+Cn++,wt&&(wt._isPrechecked(this)?this.checked=!0:wt._isSelected(this)!==this._checked&&wt._syncButtonToggle(this,this._checked))}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){const wt=this.buttonToggleGroup;this._focusMonitor.stopMonitoring(this._elementRef),wt&&wt._isSelected(this)&&wt._syncButtonToggle(this,!1,!1,!0)}focus(wt){this._buttonElement.nativeElement.focus(wt)}_onButtonClick(){const wt=!!this._isSingleSelector()||!this._checked;wt!==this._checked&&(this._checked=wt,this.buttonToggleGroup&&(this.buttonToggleGroup._syncButtonToggle(this,this._checked,!0),this.buttonToggleGroup._onTouched())),this.change.emit(new Hn(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{this.\u0275fac=function(ni){return new(ni||Ot)(w.rXU(di,8),w.rXU(w.gRc),w.rXU(w.aKT),w.rXU(Ut.FN),w.kS0("tabindex"),w.rXU(ht,8))}}static{this.\u0275cmp=w.VBU({type:Ot,selectors:[["mat-button-toggle"]],viewQuery:function(ni,Ei){if(1&ni&&w.GBs(re,5),2&ni){let Ji;w.mGM(Ji=w.lsd())&&(Ei._buttonElement=Ji.first)}},hostAttrs:["role","presentation",1,"mat-button-toggle"],hostVars:12,hostBindings:function(ni,Ei){1&ni&&w.bIt("focus",function(){return Ei.focus()}),2&ni&&(w.BMQ("aria-label",null)("aria-labelledby",null)("id",Ei.id)("name",null),w.AVh("mat-button-toggle-standalone",!Ei.buttonToggleGroup)("mat-button-toggle-checked",Ei.checked)("mat-button-toggle-disabled",Ei.disabled)("mat-button-toggle-appearance-standard","standard"===Ei.appearance))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],id:"id",name:"name",value:"value",tabIndex:"tabIndex",disableRipple:[2,"disableRipple","disableRipple",w.L39],appearance:"appearance",checked:[2,"checked","checked",w.L39],disabled:[2,"disabled","disabled",w.L39]},outputs:{change:"change"},exportAs:["matButtonToggle"],standalone:!0,features:[w.GFd,w.aNF],ngContentSelectors:He,decls:8,vars:11,consts:[["button",""],["type","button",1,"mat-button-toggle-button","mat-focus-indicator",3,"click","id","disabled"],[1,"mat-button-toggle-label-content"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"mat-button-toggle-focus-overlay"],["matRipple","",1,"mat-button-toggle-ripple",3,"matRippleTrigger","matRippleDisabled"]],template:function(ni,Ei){if(1&ni){const Ji=w.RV6();w.NAR(),w.j41(0,"button",1,0),w.bIt("click",function(){return w.eBV(Ji),w.Njj(Ei._onButtonClick())}),w.j41(2,"span",2),w.DNE(3,ye,1,1,"mat-pseudo-checkbox",3)(4,rt,1,1,"mat-pseudo-checkbox",3),w.SdG(5),w.k0s()(),w.nrm(6,"span",4)(7,"span",5)}if(2&ni){const Ji=w.sdS(1);w.Y8G("id",Ei.buttonId)("disabled",Ei.disabled||null),w.BMQ("tabindex",Ei.disabled?-1:Ei.tabIndex)("aria-pressed",Ei.checked)("name",Ei._getButtonName())("aria-label",Ei.ariaLabel)("aria-labelledby",Ei.ariaLabelledby),w.R7$(3),w.vxM(Ei.buttonToggleGroup&&Ei.checked&&!Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideSingleSelectionIndicator?3:-1),w.R7$(),w.vxM(Ei.buttonToggleGroup&&Ei.checked&&Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideMultipleSelectionIndicator?4:-1),w.R7$(3),w.Y8G("matRippleTrigger",Ji)("matRippleDisabled",Ei.disableRipple||Ei.disabled)}},dependencies:[Ti.r6,Ti.wg],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);transform:translateZ(0);border-radius:var(--mat-legacy-button-toggle-shape)}.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)}.cdk-high-contrast-active .mat-button-toggle-standalone,.cdk-high-contrast-active .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-standard-button-toggle-shape);border:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard .mat-pseudo-checkbox,.mat-button-toggle-group-appearance-standard .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-standard-button-toggle-selected-state-text-color )}.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}.cdk-high-contrast-active .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.cdk-high-contrast-active .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-legacy-button-toggle-text-color);font-family:var(--mat-legacy-button-toggle-label-text-font);font-size:var(--mat-legacy-button-toggle-label-text-size);line-height:var(--mat-legacy-button-toggle-label-text-line-height);font-weight:var(--mat-legacy-button-toggle-label-text-weight);letter-spacing:var(--mat-legacy-button-toggle-label-text-tracking);--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-legacy-button-toggle-selected-state-text-color )}.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-legacy-button-toggle-focus-state-layer-opacity)}.mat-button-toggle .mat-icon svg{vertical-align:top}.mat-button-toggle .mat-pseudo-checkbox{margin-right:12px}[dir=rtl] .mat-button-toggle .mat-pseudo-checkbox{margin-right:0;margin-left:12px}.mat-button-toggle-checked{color:var(--mat-legacy-button-toggle-selected-state-text-color);background-color:var(--mat-legacy-button-toggle-selected-state-background-color)}.mat-button-toggle-disabled{color:var(--mat-legacy-button-toggle-disabled-state-text-color);background-color:var(--mat-legacy-button-toggle-disabled-state-background-color);--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-legacy-button-toggle-disabled-state-text-color )}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:var(--mat-legacy-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard{color:var(--mat-standard-button-toggle-text-color);background-color:var(--mat-standard-button-toggle-background-color);font-family:var(--mat-standard-button-toggle-label-text-font);font-size:var(--mat-standard-button-toggle-label-text-size);line-height:var(--mat-standard-button-toggle-label-text-line-height);font-weight:var(--mat-standard-button-toggle-label-text-weight);letter-spacing:var(--mat-standard-button-toggle-label-text-tracking)}.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:solid 1px var(--mat-standard-button-toggle-divider-color)}[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-standard-button-toggle-divider-color)}.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-standard-button-toggle-divider-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-selected-state-text-color);background-color:var(--mat-standard-button-toggle-selected-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled{color:var(--mat-standard-button-toggle-disabled-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-standard-button-toggle-disabled-selected-state-text-color )}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-disabled-selected-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:var(--mat-standard-button-toggle-state-layer-color)}.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):hover .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-hover-state-layer-opacity)}.mat-button-toggle-appearance-standard.cdk-keyboard-focused:not(.mat-button-toggle-disabled) .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-focus-state-layer-opacity)}@media(hover: none){.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):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-legacy-button-toggle-height);position:relative}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{padding:0 12px;line-height:var(--mat-standard-button-toggle-height)}.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-legacy-button-toggle-state-layer-color)}.cdk-high-contrast-active .mat-button-toggle-checked .mat-button-toggle-focus-overlay{border-bottom:solid 500px;opacity:.5;height:0}.cdk-high-contrast-active .mat-button-toggle-checked:hover .mat-button-toggle-focus-overlay{opacity:.6}.cdk-high-contrast-active .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-disabled .mat-button-toggle-button{cursor:default}.mat-button-toggle-button::-moz-focus-inner{border:0}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard{--mat-focus-indicator-border-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-standard-button-toggle-shape);border-bottom-right-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-left-radius:var(--mat-standard-button-toggle-shape);border-bottom-left-radius:var(--mat-standard-button-toggle-shape)}"],encapsulation:2,changeDetection:0})}}return Ot})(),nr=(()=>{class Ot{static{this.\u0275fac=function(ni){return new(ni||Ot)}}static{this.\u0275mod=w.$C({type:Ot})}static{this.\u0275inj=w.G2t({imports:[Ti.yE,Ti.pZ,Jn,Ti.yE]})}}return Ot})();var dr=g(5596),wn=g(2765),Ai=g(5084),Yi=g(9454),Ft=g(6195),mi=g(9213),gi=g(9631),xi=g(3902),Ni=g(9115),nn=g(6695),On=g(7575),ir=g(9183),gn=g(5951),Xr=g(2798),fr=g(882),mr=g(450),wa=g(6860);g(1413);let zr=(()=>{class Ot{static{this.\u0275fac=function(ni){return new(ni||Ot)}}static{this.\u0275mod=w.$C({type:Ot})}static{this.\u0275inj=w.G2t({imports:[Ti.yE,Ti.pZ]})}}return Ot})();var Ea=g(5416),fa=g(2042),Bs=g(6013),Ar=g(9159),Io=g(6850),Ua=g(5911),ma=g(4823),no=g(7358),ta=g(6471),Ro=g(6064),As=g(8288),bo=g(497),$r=g(6969);let pa=(()=>{class Ot extends $r.Sf{constructor(wt,ni){super(wt,ni)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static{this.\u0275fac=function(ni){return new(ni||Ot)(w.rXU(e.qQ),w.rXU(wa.OD))}}static{this.\u0275dir=w.FsC({type:Ot,features:[w.Vt3]})}}return Ot})();var yo=g(8570),ro=g(4416),Ka=g(2929);const Ga={suppressScrollX:!1,suppressScrollY:!1};let sr=(()=>{class Ot extends Ti.xW{constructor(wt){super(wt)}format(wt,ni){if("input"===ni){let Ei=wt.getDate().toString();return Ei=+Ei<10?"0"+Ei:Ei,Ei+"/"+ro.KR[wt.getMonth()].name.toUpperCase()+"/"+wt.getFullYear()}return ro.KR[wt.getMonth()].name.toUpperCase()+" "+wt.getFullYear()}static{this.\u0275fac=function(ni){return new(ni||Ot)(w.KVO(Ti.Ju,8))}}static{this.\u0275prov=w.jDH({token:Ot,factory:Ot.\u0275fac})}}return Ot})();const ia={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 Bo=(()=>{class Ot{static{this.\u0275fac=function(ni){return new(ni||Ot)}}static{this.\u0275mod=w.$C({type:Ot})}static{this.\u0275inj=w.G2t({providers:[{provide:yo.gP,useClass:yo.tU},{provide:bo.kU,useValue:Ga},{provide:Ea.x6,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:Hi.di,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:Ti.MJ,useClass:sr},{provide:Ti.de,useValue:ia},{provide:$r.Sf,useClass:pa},e.QX,e.PV,e.vh,Ka.gZ,Ka.ZE,Ka.VD,Ka.Qu],imports:[e.MD,x.YN,x.X1,l.dX,Bt,Ci.RH,Hi.hM,mn.Hl,nr,dr.Hu,wn.g7,Yi.MY,Ft.Fe,Ai.X6,Ti.WX,mi.m_,gi.fS,xi.Fg,Ni.Cn,On.PO,ir.D6,gn.Wk,no.jH,ta.YN,Xr.Ve,fr.vg,mr.mV,fa.NQ,Ar.tP,Ua.s5,ma.uc,ln.Y,nn.Ou,Bs.aP,zr,Io.RI,Ea._T,Zi.jL,Ro.dV,As.XK,t.iI,D.q1,bo.U$,x.YN,x.X1,l.dX,Bt,Ci.RH,Hi.hM,mn.Hl,nr,dr.Hu,wn.g7,Yi.MY,Ft.Fe,Ai.X6,Ti.WX,mi.m_,gi.fS,xi.Fg,Ni.Cn,On.PO,ir.D6,gn.Wk,no.jH,ta.YN,Xr.Ve,fr.vg,mr.mV,fa.NQ,Ar.tP,Ua.s5,ma.uc,ln.Y,nn.Ou,Bs.aP,zr,Io.RI,Ea._T,Zi.jL,Ro.dV,As.XK,bo.U$]})}}return Ot})()},1771:(Qe,te,g)=>{"use strict";g.d(te,{Dz:()=>j,Fl:()=>Me,Gd:()=>l,I1:()=>O,IK:()=>J,Jh:()=>w,My:()=>D,NU:()=>Q,Np:()=>fe,OP:()=>V,Qi:()=>ie,R$:()=>y,T$:()=>ee,Tn:()=>W,UI:()=>f,iD:()=>m,mt:()=>R,oz:()=>n,rc:()=>ne,ri:()=>Ce,t2:()=>C,uP:()=>I,xO:()=>S,xw:()=>le,y0:()=>h});var e=g(9640),t=g(4416);(0,e.VP)(t.aU.VOID);const D=(0,e.VP)(t.aU.SET_API_URL_ECL,(0,e.xk)()),l=(0,e.VP)(t.aU.UPDATE_API_CALL_STATUS_ROOT,(0,e.xk)()),w=(0,e.VP)(t.aU.CLOSE_ALL_DIALOGS),f=(0,e.VP)(t.aU.OPEN_SNACK_BAR,(0,e.xk)()),R=(0,e.VP)(t.aU.OPEN_SPINNER,(0,e.xk)()),h=(0,e.VP)(t.aU.CLOSE_SPINNER,(0,e.xk)()),S=(0,e.VP)(t.aU.OPEN_ALERT,(0,e.xk)()),y=(0,e.VP)(t.aU.CLOSE_ALERT,(0,e.xk)()),O=(0,e.VP)(t.aU.OPEN_CONFIRMATION,(0,e.xk)()),I=(0,e.VP)(t.aU.CLOSE_CONFIRMATION,(0,e.xk)()),V=(0,e.VP)(t.aU.SHOW_PUBKEY),j=(0,e.VP)(t.aU.FETCH_CONFIG,(0,e.xk)()),W=((0,e.VP)(t.aU.SHOW_CONFIG,(0,e.xk)()),(0,e.VP)(t.aU.RESET_ROOT_STORE,(0,e.xk)())),Q=(0,e.VP)(t.aU.FETCH_APPLICATION_SETTINGS),J=(0,e.VP)(t.aU.SET_APPLICATION_SETTINGS,(0,e.xk)()),ie=(0,e.VP)(t.aU.SET_SELECTED_NODE,(0,e.xk)()),ee=(0,e.VP)(t.aU.UPDATE_NODE_SETTINGS,(0,e.xk)()),fe=(0,e.VP)(t.aU.SET_SELECTED_NODE_SETTINGS,(0,e.xk)()),ne=(0,e.VP)(t.aU.UPDATE_APPLICATION_SETTINGS,(0,e.xk)()),Me=(0,e.VP)(t.aU.SET_NODE_DATA,(0,e.xk)()),Ce=(0,e.VP)(t.aU.LOGOUT,(0,e.xk)()),le=(0,e.VP)(t.aU.RESET_PASSWORD,(0,e.xk)()),n=((0,e.VP)(t.aU.RESET_PASSWORD_RES,(0,e.xk)()),(0,e.VP)(t.aU.IS_AUTHORIZED,(0,e.xk)())),m=((0,e.VP)(t.aU.IS_AUTHORIZED_RES,(0,e.xk)()),(0,e.VP)(t.aU.LOGIN,(0,e.xk)())),C=((0,e.VP)(t.aU.VERIFY_TWO_FA,(0,e.xk)()),(0,e.VP)(t.aU.FETCH_FILE,(0,e.xk)()));(0,e.VP)(t.aU.SHOW_FILE,(0,e.xk)())},7541:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>He});var e=g(4438),t=g(4054),x=g(1413),D=g(7673),l=g(6354),w=g(6697),f=g(3993),R=g(1397),h=g(9437),S=g(6977),y=g(4416),O=g(5351),I=g(2920),V=g(9183);let j=(()=>{class ye{constructor(ht,ii){this.dialogRef=ht,this.data=ii}static{this.\u0275fac=function(ii){return new(ii||ye)(e.rXU(O.CP),e.rXU(O.Vh))}}static{this.\u0275cmp=e.VBU({type:ye,selectors:[["rtl-spinner-dialog"]],decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(ii,di){1&ii&&(e.j41(0,"div",0),e.nrm(1,"mat-progress-spinner",1),e.j41(2,"h2"),e.EFF(3),e.k0s()()),2&ii&&(e.R7$(3),e.JRh(di.data.titleMessage))},dependencies:[I.DJ,I.sA,V.LG],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]})}}return ye})();var Y=g(5383),W=g(9647),Q=g(8570),J=g(5416),ie=g(2571),ee=g(1188),fe=g(9640),ne=g(177),Me=g(60),Ce=g(6038),le=g(8834),T=g(5596),n=g(9213),c=g(1997),m=g(4823),d=g(8288),C=g(497),A=g(9157),k=g(9587);const _=["scrollContainer"],a=ye=>({"display-none":ye}),b=ye=>({"h-40":ye}),z=ye=>({"failed-status":ye});function N(ye,rt){if(1&ye&&e.nrm(0,"qr-code",19),2&ye){const ht=e.XpG();e.Y8G("value",ht.showQRField)("size",200)("errorCorrectionLevel","L")}}function q(ye,rt){1&ye&&e.eu8(0)}function pe(ye,rt){if(1&ye&&(e.qex(0),e.j41(1,"mat-card-content",20,1),e.DNE(3,q,1,0,"ng-container",21),e.k0s(),e.bVm()),2&ye){const ht=e.XpG(),ii=e.sdS(20);e.R7$(),e.Y8G("ngClass",e.eq3(2,b,ht.data.scrollable)),e.R7$(2),e.Y8G("ngTemplateOutlet",ii)}}function ze(ye,rt){1&ye&&e.eu8(0)}function Xe(ye,rt){if(1&ye&&(e.qex(0),e.j41(1,"mat-card-content",22),e.DNE(2,ze,1,0,"ng-container",21),e.k0s(),e.bVm()),2&ye){e.XpG();const ht=e.sdS(20);e.R7$(2),e.Y8G("ngTemplateOutlet",ht)}}function We(ye,rt){1&ye&&(e.j41(0,"mat-icon",27),e.EFF(1,"arrow_downward"),e.k0s())}function oe(ye,rt){1&ye&&(e.j41(0,"mat-icon",28),e.EFF(1,"arrow_upward"),e.k0s())}function X(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(ht);const di=e.XpG();return e.Njj(di.onScroll())}),e.DNE(2,We,2,0,"mat-icon",25)(3,oe,2,0,"mat-icon",26),e.k0s()()}if(2&ye){const ht=e.XpG();e.R7$(2),e.Y8G("ngIf","DOWN"===ht.scrollDirection),e.R7$(),e.Y8G("ngIf","UP"===ht.scrollDirection)}}function se(ye,rt){1&ye&&(e.j41(0,"button",29),e.EFF(1,"OK"),e.k0s()),2&ye&&e.Y8G("mat-dialog-close",!1)}function ae(ye,rt){1&ye&&(e.j41(0,"button",30),e.EFF(1,"Close"),e.k0s()),2&ye&&e.Y8G("mat-dialog-close",!1)}function he(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"button",31),e.bIt("copied",function(di){e.eBV(ht);const Gi=e.XpG();return e.Njj(Gi.onCopyField(di))}),e.EFF(1),e.k0s()}if(2&ye){const ht=e.XpG();e.Y8G("payload",ht.showCopyField),e.R7$(),e.SpI("Copy ",ht.showCopyName,"")}}function Ie(ye,rt){1&ye&&(e.j41(0,"button",30),e.EFF(1,"Close"),e.k0s()),2&ye&&e.Y8G("mat-dialog-close",!1)}function st(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"button",31),e.bIt("copied",function(di){e.eBV(ht);const Gi=e.XpG();return e.Njj(Gi.onCopyField(di))}),e.EFF(1),e.k0s()}if(2&ye){const ht=e.XpG();e.Y8G("payload",ht.showQRField),e.R7$(),e.SpI("Copy ",ht.showQRName,"")}}function me(ye,rt){if(1&ye&&e.nrm(0,"qr-code",19),2&ye){const ht=e.XpG(2);e.Y8G("value",ht.showQRField)("size",200)("errorCorrectionLevel","L")}}function Ee(ye,rt){if(1&ye&&(e.j41(0,"p",37),e.EFF(1),e.k0s()),2&ye){const ht=e.XpG(2);e.R7$(),e.JRh(ht.data.titleMessage)}}function ue(ye,rt){1&ye&&e.nrm(0,"span",51),2&ye&&e.Y8G("innerHTML",rt.$implicit,e.npT)}function Be(ye,rt){if(1&ye&&(e.qex(0),e.j41(1,"span",34),e.DNE(2,ue,1,1,"span",50),e.k0s(),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(2),e.Y8G("ngForOf",ht.value)}}function Ct(ye,rt){if(1&ye&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ht.value,"dd/MMM/y HH:mm"))}}function ct(ye,rt){if(1&ye&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ht.value,ht.digitsInfo?ht.digitsInfo:"1.0-3"))}}function dt(ye,rt){if(1&ye&&(e.qex(0),e.EFF(1),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.JRh(ht.value?"True":"False")}}function Yt(ye,rt){1&ye&&(e.j41(0,"mat-icon",55),e.EFF(1,"info"),e.k0s())}function ve(ye,rt){if(1&ye&&(e.j41(0,"p",53),e.EFF(1),e.DNE(2,Yt,2,0,"mat-icon",54),e.k0s()),2&ye){const ht=e.XpG(3).$implicit,ii=e.XpG(4);e.Y8G("ngClass",e.eq3(3,z,ht.value===ii.LoopStateEnum.FAILED)),e.R7$(),e.SpI(" ",ht.value," "),e.R7$(),e.Y8G("ngIf",ht.value===ii.LoopStateEnum.FAILED)}}function _e(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"p",57),e.bIt("click",function(){e.eBV(ht);const di=e.XpG(8);return e.Njj(di.onGoToLink())}),e.EFF(1),e.k0s()}if(2&ye){const ht=e.XpG(4).$implicit,ii=e.XpG(4);e.FS9("matTooltip","Go To "+ii.goToName),e.R7$(),e.SpI(" ",ht.value," ")}}function we(ye,rt){if(1&ye&&e.EFF(0),2&ye){const ht=e.XpG(4).$implicit;e.SpI(" ",ht.value," ")}}function Ue(ye,rt){if(1&ye&&e.DNE(0,_e,2,2,"p",56)(1,we,1,1,"ng-template",null,4,e.C5r),2&ye){const ht=e.sdS(2),ii=e.XpG(3).$implicit,di=e.XpG(4);e.Y8G("ngIf",ii.value===di.goToFieldValue)("ngIfElse",ht)}}function je(ye,rt){if(1&ye&&(e.qex(0),e.DNE(1,ve,3,5,"p",52)(2,Ue,3,2,"ng-template",null,3,e.C5r),e.bVm()),2&ye){const ht=e.sdS(3),ii=e.XpG(2).$implicit,di=e.XpG(4);e.R7$(),e.Y8G("ngIf","SWAP"===di.data.openedBy&&"state"===ii.key)("ngIfElse",ht)}}function vt(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"fa-icon",58),e.bIt("click",function(){e.eBV(ht);const di=e.XpG(2).$implicit,Gi=e.XpG(4);return e.Njj(Gi.onExplorerClicked(di))}),e.k0s()}if(2&ye){const ht=e.XpG(6);e.FS9("matTooltip","Link to "+ht.selNode.settings.blockExplorerUrl),e.Y8G("icon",ht.faUpRightFromSquare)}}function $e(ye,rt){if(1&ye&&(e.j41(0,"span")(1,"span",46),e.DNE(2,Be,3,1,"ng-container",47)(3,Ct,3,4,"ng-container",47)(4,ct,3,4,"ng-container",47)(5,dt,2,1,"ng-container",47)(6,je,4,2,"ng-container",48),e.j41(7,"span"),e.DNE(8,vt,1,2,"fa-icon",49),e.k0s()()()),2&ye){const ht=e.XpG().$implicit,ii=e.XpG(4);e.R7$(),e.Y8G("ngSwitch",ht.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN),e.R7$(3),e.Y8G("ngIf",ht.explorerLink&&""!==ht.explorerLink)}}function nt(ye,rt){1&ye&&(e.j41(0,"span",59),e.EFF(1,"\xa0"),e.k0s())}function qt(ye,rt){if(1&ye&&(e.j41(0,"div",42)(1,"h4",43),e.EFF(2),e.k0s(),e.DNE(3,$e,9,6,"span",44)(4,nt,2,0,"ng-template",null,2,e.C5r),e.nrm(6,"mat-divider",45),e.k0s()),2&ye){const ht=rt.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ht.width),e.R7$(2),e.JRh(ht.title),e.R7$(),e.Y8G("ngIf",ht&&(!!ht.value||0===ht.value))("ngIfElse",ii)}}function Nt(ye,rt){if(1&ye&&(e.j41(0,"div")(1,"div",40),e.DNE(2,qt,7,4,"div",41),e.k0s()()),2&ye){const ht=rt.$implicit;e.R7$(2),e.Y8G("ngForOf",ht)}}function yt(ye,rt){if(1&ye&&(e.j41(0,"div",38),e.DNE(1,Nt,3,1,"div",39),e.k0s()),2&ye){const ht=e.XpG(2);e.R7$(),e.Y8G("ngForOf",ht.messageObjs)}}function jt(ye,rt){if(1&ye&&(e.j41(0,"div",32)(1,"div",33),e.DNE(2,me,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",34),e.DNE(4,Ee,2,1,"p",35)(5,yt,2,1,"div",36),e.k0s()()),2&ye){const ht=e.XpG();e.R7$(),e.Y8G("ngClass",e.eq3(4,a,""===ht.showQRField||ht.screenSize!==ht.screenSizeEnum.XS&&ht.screenSize!==ht.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==ht.showQRField),e.R7$(2),e.Y8G("ngIf",ht.data.titleMessage),e.R7$(),e.Y8G("ngIf",(null==ht.messageObjs?null:ht.messageObjs.length)>0)}}let Je=(()=>{class ye{set container(ht){ht&&(this.scrollContainer=ht,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(ht,ii,di,Gi,Cn,Hn,Qn,Jn){this.dialogRef=ht,this.data=ii,this.logger=di,this.snackBar=Gi,this.commonService=Cn,this.renderer=Hn,this.router=Qn,this.store=Jn,this.faUpRightFromSquare=Y.k02,this.LoopStateEnum=y.Hx,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.screenSize="",this.screenSizeEnum=y.f7,this.scrollDirection="DOWN",this.shouldScroll=!0,this.unSubs=[new x.B,new x.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===y.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(W._c).pipe((0,S.Q)(this.unSubs[0])).subscribe(ht=>{this.selNode=ht,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(ht){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+ht)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}onExplorerClicked(ht){window.open(this.selNode.settings.blockExplorerUrl+"/"+ht.explorerLink+"/"+ht.value,"_blank")}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd(),this.unSubs.forEach(ht=>{ht.next(null),ht.complete()})}static{this.\u0275fac=function(ii){return new(ii||ye)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ie.h),e.rXU(e.sFG),e.rXU(ee.Ix),e.rXU(fe.il))}}static{this.\u0275cmp=e.VBU({type:ye,selectors:[["rtl-alert-message"]],viewQuery:function(ii,di){if(1&ii&&e.GBs(_,5),2&ii){let Gi;e.mGM(Gi=e.lsd())&&(di.container=Gi.first)}},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"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],[3,"fxFlex"],["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"],[3,"value","size","errorCorrectionLevel"],[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"],["tabindex","4","fxLayout","row","class","go-to-link",3,"matTooltip","click",4,"ngIf","ngIfElse"],["tabindex","4","fxLayout","row",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,di){if(1&ii){const Gi=e.RV6();e.j41(0,"div",5)(1,"div",6),e.DNE(2,N,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",8)(4,"mat-card-header",9)(5,"div",10)(6,"span",11),e.EFF(7),e.k0s()(),e.j41(8,"button",12),e.bIt("click",function(){return e.eBV(Gi),e.Njj(di.onClose())}),e.EFF(9,"X"),e.k0s()(),e.DNE(10,pe,4,4,"ng-container",13)(11,Xe,3,1,"ng-container",13)(12,X,4,2,"div",14),e.j41(13,"div",15),e.DNE(14,se,2,1,"button",16)(15,ae,2,1,"button",17)(16,he,2,2,"button",18)(17,Ie,2,1,"button",17)(18,st,2,2,"button",18),e.k0s()()(),e.DNE(19,jt,6,6,"ng-template",null,0,e.C5r)}2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(12,a,""===di.showQRField||di.screenSize===di.screenSizeEnum.XS||di.screenSize===di.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==di.showQRField),e.R7$(),e.Y8G("fxFlex",""===di.showQRField||di.screenSize===di.screenSizeEnum.XS||di.screenSize===di.screenSizeEnum.SM?"100":"70"),e.R7$(4),e.JRh(di.data.alertTitle||di.alertTypeEnum[di.data.type]),e.R7$(3),e.Y8G("ngIf",di.data.scrollable),e.R7$(),e.Y8G("ngIf",!di.data.scrollable),e.R7$(),e.Y8G("ngIf",di.data.scrollable&&di.shouldScroll),e.R7$(2),e.Y8G("ngIf",(!di.showQRField||""===di.showQRField)&&""===di.showCopyName),e.R7$(),e.Y8G("ngIf",""!==di.showCopyName),e.R7$(),e.Y8G("ngIf",""!==di.showCopyName),e.R7$(),e.Y8G("ngIf",""!==di.showQRField),e.R7$(),e.Y8G("ngIf",""!==di.showQRField))},dependencies:[ne.YU,ne.Sq,ne.bT,ne.T3,ne.ux,ne.e1,ne.fG,Me.aY,I.DJ,I.sA,I.UI,Ce.PW,O.tx,le.$z,le.$0,T.m2,T.MM,n.An,c.q,m.oV,d.Um,C.Ld,A.U,k.N,ne.QX,ne.vh],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}}return ye})();var et=g(1771),Ae=g(9417),It=g(9631),Qt=g(6467),Tt=g(6114);function xt(ye,rt){if(1&ye&&(e.j41(0,"div",20),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&ye){const ht=e.XpG();e.R7$(),e.Y8G("icon",ht.faExclamationTriangle),e.R7$(2),e.JRh(ht.warningMessage)}}function Se(ye,rt){if(1&ye&&(e.j41(0,"div",22),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&ye){const ht=e.XpG();e.R7$(),e.Y8G("icon",ht.faInfoCircle),e.R7$(2),e.JRh(ht.informationMessage)}}function Te(ye,rt){if(1&ye&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&ye){const ht=e.XpG();e.R7$(),e.JRh(ht.data.titleMessage)}}function ce(ye,rt){1&ye&&e.nrm(0,"div",37),2&ye&&e.Y8G("innerHTML",rt.$implicit,e.npT)}function Z(ye,rt){if(1&ye&&(e.qex(0,35),e.DNE(1,ce,1,1,"div",36),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.Y8G("ngForOf",ht.value)}}function Re(ye,rt){if(1&ye&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ht.value,"dd/MMM/y HH:mm"))}}function Pe(ye,rt){if(1&ye&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ht.value,"1.0-3"))}}function pt(ye,rt){if(1&ye&&(e.qex(0),e.EFF(1),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.JRh(!0===ht.value?"True":"False")}}function Ke(ye,rt){if(1&ye&&(e.qex(0),e.EFF(1),e.bVm()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.JRh(ht.value)}}function Fe(ye,rt){if(1&ye&&(e.j41(0,"span")(1,"span",31),e.DNE(2,Z,2,1,"ng-container",32)(3,Re,3,4,"ng-container",33)(4,Pe,3,4,"ng-container",33)(5,pt,2,1,"ng-container",33)(6,Ke,2,1,"ng-container",34),e.k0s()()),2&ye){const ht=e.XpG().$implicit,ii=e.XpG(3);e.R7$(),e.Y8G("ngSwitch",ht.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN)}}function Ge(ye,rt){1&ye&&(e.j41(0,"span",38),e.EFF(1,"\xa0"),e.k0s())}function qe(ye,rt){if(1&ye&&(e.j41(0,"div",27)(1,"h4",28),e.EFF(2),e.k0s(),e.DNE(3,Fe,7,5,"span",29)(4,Ge,2,0,"ng-template",null,0,e.C5r),e.nrm(6,"mat-divider",30),e.k0s()),2&ye){const ht=rt.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ht.width),e.R7$(2),e.JRh(ht.title),e.R7$(),e.Y8G("ngIf",ht&&(!!ht.value||0===ht.value))("ngIfElse",ii)}}function at(ye,rt){if(1&ye&&(e.j41(0,"div")(1,"div",25),e.DNE(2,qe,7,4,"div",26),e.k0s()()),2&ye){const ht=rt.$implicit;e.R7$(2),e.Y8G("ngForOf",ht)}}function Lt(ye,rt){if(1&ye&&(e.j41(0,"div"),e.DNE(1,at,3,1,"div",24),e.k0s()),2&ye){const ht=e.XpG();e.R7$(),e.Y8G("ngForOf",ht.messageObjs)}}function pi(ye,rt){if(1&ye&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&ye){const ht=e.XpG(2);e.R7$(),e.JRh(ht.data.titleMessage)}}function $t(ye,rt){if(1&ye&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&ye){const ht=e.XpG(2).$implicit;e.R7$(),e.SpI("",ht.placeholder," is required.")}}function Kt(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"mat-form-field",42)(1,"mat-label"),e.EFF(2),e.k0s(),e.j41(3,"input",43),e.nI1(4,"lowercase"),e.mxI("ngModelChange",function(di){e.eBV(ht);const Gi=e.XpG().$implicit;return e.DH7(Gi.inputValue,di)||(Gi.inputValue=di),e.Njj(di)}),e.k0s(),e.DNE(5,$t,2,1,"mat-error",13),e.j41(6,"mat-hint"),e.EFF(7),e.k0s()()}if(2&ye){const ht=e.XpG(),ii=ht.$implicit,di=ht.index;e.Y8G("fxFlex",ii.width),e.R7$(2),e.JRh(ii.placeholder),e.R7$(),e.Mz_("name","input",di,""),e.Y8G("autoFocus",0===di)("min",ii.min)("step",ii.step)("type",e.bMT(4,12,ii.inputType))("tabindex",di+1),e.R50("ngModel",ii.inputValue),e.R7$(2),e.Y8G("ngIf",!ii.inputValue),e.R7$(2),e.JRh(ii.hintFunction?ii.hintFunction(ii.inputValue):ii.hintText)}}function Ui(ye,rt){if(1&ye&&(e.qex(0),e.DNE(1,Kt,8,14,"mat-form-field",41),e.bVm()),2&ye){const ht=rt.$implicit,ii=e.XpG(2);e.R7$(),e.Y8G("ngIf",!ht.advancedField||ii.showAdvanced)}}function ti(ye,rt){if(1&ye&&(e.j41(0,"div",39),e.DNE(1,pi,2,1,"p",12),e.j41(2,"div",40),e.DNE(3,Ui,2,1,"ng-container",24),e.k0s()()),2&ye){const ht=e.XpG();e.R7$(),e.Y8G("ngIf",ht.data.titleMessage),e.R7$(2),e.Y8G("ngForOf",ht.getInputs)}}function fi(ye,rt){1&ye&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function xn(ye,rt){1&ye&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function tn(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"button",44),e.bIt("click",function(){e.eBV(ht);const di=e.XpG();return e.Njj(di.onShowAdvanced())}),e.DNE(1,fi,2,0,"p",29)(2,xn,2,0,"ng-template",null,1,e.C5r),e.k0s()}if(2&ye){const ht=e.sdS(3),ii=e.XpG();e.R7$(),e.Y8G("ngIf",!ii.showAdvanced)("ngIfElse",ht)}}function Vi(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"button",45),e.bIt("click",function(){e.eBV(ht);const di=e.XpG();return e.Njj(di.onClose(di.getInputs))}),e.EFF(1),e.k0s()}if(2&ye){const ht=e.XpG();e.R7$(),e.JRh(ht.yesBtnText)}}function Qi(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"button",46),e.bIt("click",function(){e.eBV(ht);const di=e.XpG();return e.Njj(di.onClose(!0))}),e.EFF(1),e.k0s()}if(2&ye){const ht=e.XpG();e.R7$(),e.JRh(ht.yesBtnText)}}let Xt=(()=>{class ye{constructor(ht,ii,di,Gi){this.dialogRef=ht,this.data=ii,this.logger=di,this.store=Gi,this.faInfoCircle=Y.iW_,this.faExclamationTriangle=Y.zpE,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.getInputs=[{placeholder:"",inputType:y.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===y.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(ht){if(ht&&this.getInputs&&this.getInputs.some(ii=>typeof ii.inputValue>"u"))return!0;!this.showAdvanced&&ht.length&&(ht=ht?.reduce((ii,di)=>(di.advancedField||ii.push(di),ii),[])),this.store.dispatch((0,et.uP)({payload:ht}))}static{this.\u0275fac=function(ii){return new(ii||ye)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(Q.gP),e.rXU(fe.il))}}static{this.\u0275cmp=e.VBU({type:ye,selectors:[["rtl-confirmation-message"]],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,"fxFlex",4,"ngIf"],[3,"fxFlex"],["matInput","","required","",3,"ngModelChange","autoFocus","name","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,di){1&ii&&(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 di.onClose(!1)}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9),e.DNE(10,xt,4,2,"div",10)(11,Se,4,2,"div",11)(12,Te,2,1,"p",12)(13,Lt,2,1,"div",13)(14,ti,4,2,"div",14),e.j41(15,"div",15)(16,"button",16),e.bIt("click",function(){return di.onClose(!1)}),e.EFF(17),e.k0s(),e.DNE(18,tn,4,2,"button",17)(19,Vi,2,1,"button",18)(20,Qi,2,1,"button",19),e.k0s()()()()()),2&ii&&(e.R7$(5),e.JRh(di.data.alertTitle||di.alertTypeEnum[di.data.type]),e.R7$(5),e.Y8G("ngIf",di.warningMessage&&""!==di.warningMessage),e.R7$(),e.Y8G("ngIf",di.informationMessage&&""!==di.informationMessage),e.R7$(),e.Y8G("ngIf",di.data.titleMessage&&!di.flgShowInput),e.R7$(),e.Y8G("ngIf",(null==di.messageObjs?null:di.messageObjs.length)>0),e.R7$(),e.Y8G("ngIf",di.flgShowInput),e.R7$(3),e.JRh(di.noBtnText),e.R7$(),e.Y8G("ngIf",di.hasAdvanced),e.R7$(),e.Y8G("ngIf",di.flgShowInput),e.R7$(),e.Y8G("ngIf",!di.flgShowInput))},dependencies:[ne.Sq,ne.bT,ne.ux,ne.e1,ne.fG,Ae.qT,Ae.me,Ae.BC,Ae.cb,Ae.YS,Ae.vS,Ae.cV,Me.aY,I.DJ,I.sA,I.UI,le.$z,T.m2,T.MM,It.fg,Qt.rl,Qt.nJ,Qt.MV,Qt.TL,c.q,k.N,Tt.V,ne.GH,ne.QX,ne.vh]})}}return ye})();var St=g(2462),tt=g(2798),ot=g(6600);const Mt=ye=>({"display-none":ye});function Bt(ye,rt){if(1&ye&&(e.j41(0,"mat-option",23),e.EFF(1),e.k0s()),2&ye){const ht=rt.$implicit;e.Y8G("value",ht),e.R7$(),e.SpI(" ",ht.infoName," ")}}function Ci(ye,rt){if(1&ye){const ht=e.RV6();e.j41(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),e.mxI("valueChange",function(di){e.eBV(ht);const Gi=e.XpG();return e.DH7(Gi.selInfoType,di)||(Gi.selInfoType=di),e.Njj(di)}),e.DNE(3,Bt,2,2,"mat-option",22),e.k0s()()()}if(2&ye){const ht=e.XpG();e.R7$(2),e.R50("value",ht.selInfoType),e.R7$(),e.Y8G("ngForOf",ht.infoTypes)}}let Ti=(()=>{class ye{constructor(ht,ii,di,Gi,Cn){this.dialogRef=ht,this.data=ii,this.logger=di,this.snackBar=Gi,this.commonService=Cn,this.faReceipt=Y.Mf0,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=y.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((ht,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(ht){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+ht)}static{this.\u0275fac=function(ii){return new(ii||ye)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ie.h))}}static{this.\u0275cmp=e.VBU({type:ye,selectors:[["rtl-show-pubkey"]],decls:26,vars:19,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"],[3,"value","size","errorCorrectionLevel"],["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(ii,di){1&ii&&(e.j41(0,"div",0)(1,"div",1),e.nrm(2,"qr-code",2),e.k0s(),e.j41(3,"div",3)(4,"mat-card-header",4)(5,"div",5),e.nrm(6,"fa-icon",6),e.j41(7,"span",7),e.EFF(8),e.k0s()(),e.j41(9,"button",8),e.bIt("click",function(){return di.onClose()}),e.EFF(10,"X"),e.k0s()(),e.j41(11,"mat-card-content",9)(12,"div",10)(13,"div",11),e.nrm(14,"qr-code",2),e.k0s(),e.DNE(15,Ci,4,2,"div",12),e.j41(16,"div",13)(17,"div",14)(18,"h4",15),e.EFF(19),e.k0s(),e.j41(20,"span",16),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",17),e.j41(23,"div",18)(24,"button",19),e.bIt("copied",function(Cn){return di.onCopyPubkey(Cn)}),e.EFF(25),e.k0s()()()()()()),2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(15,Mt,di.screenSize===di.screenSizeEnum.XS||di.screenSize===di.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===di.selInfoType.infoID?di.information.identity_pubkey:di.information.uris[di.selInfoType.infoID-1]),e.Y8G("size",di.qrWidth)("errorCorrectionLevel","L"),e.R7$(4),e.Y8G("icon",di.faReceipt),e.R7$(2),e.JRh(di.selInfoType.infoName),e.R7$(5),e.Y8G("ngClass",e.eq3(17,Mt,di.screenSize!==di.screenSizeEnum.XS&&di.screenSize!==di.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===di.selInfoType.infoID?di.information.identity_pubkey:di.information.uris[di.selInfoType.infoID-1]),e.Y8G("size",di.qrWidth)("errorCorrectionLevel","L"),e.R7$(),e.Y8G("ngIf",di.information.uris&&di.information.uris.length>0),e.R7$(4),e.JRh(di.selInfoType.infoName),e.R7$(2),e.JRh(0===di.selInfoType.infoID?di.information.identity_pubkey:di.information.uris[di.selInfoType.infoID-1]),e.R7$(3),e.FS9("payload",0===di.selInfoType.infoID?di.information.identity_pubkey:di.information.uris[di.selInfoType.infoID-1]),e.R7$(),e.SpI("Copy ",di.selInfoType.infoKey,""))},dependencies:[ne.YU,ne.Sq,ne.bT,Me.aY,I.DJ,I.sA,I.UI,Ce.PW,le.$z,T.m2,T.MM,Qt.rl,c.q,tt.VO,ot.wT,d.Um,A.U,k.N]})}}return ye})();var Hi=g(190),Zi=g(8430),ln=g(5428),mn=g(1626),Ut=g(7879),lt=g(3202),re=g(1534);let He=(()=>{class ye{constructor(ht,ii,di,Gi,Cn,Hn,Qn,Jn,nr,dr,wn){this.actions=ht,this.httpClient=ii,this.store=di,this.logger=Gi,this.wsService=Cn,this.sessionService=Hn,this.commonService=Qn,this.dataService=Jn,this.dialog=nr,this.snackBar=dr,this.router=wn,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new x.B,new x.B],this.closeAllDialogs=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALL_DIALOGS),(0,l.T)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SNACK_BAR),(0,l.T)(Ai=>{"string"==typeof Ai.payload?this.snackBar.open(Ai.payload):this.snackBar.open(Ai.payload.message,"","ERROR"===Ai.payload.type?{duration:Ai.payload.duration?Ai.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===Ai.payload.type?{duration:Ai.payload.duration?Ai.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:Ai.payload.duration?Ai.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SPINNER),(0,l.T)(Ai=>{Ai.payload!==y.MZ.NO_SPINNER&&(this.dialogRef=this.dialog.open(j,{panelClass:"spinner-dialog-panel",data:{titleMessage:Ai.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_SPINNER),(0,l.T)(Ai=>{if(Ai.payload!==y.MZ.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===Ai.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(Yi=>{Yi.componentInstance&&Yi.componentInstance.data&&Yi.componentInstance.data.titleMessage&&Yi.componentInstance.data.titleMessage===Ai.payload&&Yi.close()})}catch(Yi){this.logger.error(Yi)}})),{dispatch:!1}),this.openAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_ALERT),(0,l.T)(Ai=>{const Yi=JSON.parse(JSON.stringify(Ai.payload));Yi.width||(Yi.width=this.alertWidth),this.dialogRef=this.dialog.open(Ai.payload.data.component?Ai.payload.data.component:Je,Yi)})),{dispatch:!1}),this.closeAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALERT),(0,l.T)(Ai=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Ai.payload),Ai.payload))),{dispatch:!1}),this.openConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_CONFIRMATION),(0,l.T)(Ai=>{const Yi=JSON.parse(JSON.stringify(Ai.payload));Yi.width||(Yi.width=this.confirmWidth),this.dialogRef=this.dialog.open(Xt,Yi)})),{dispatch:!1}),this.closeConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_CONFIRMATION),(0,w.s)(1),(0,l.T)(Ai=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Ai.payload),Ai.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_PUBKEY),(0,f.E)(this.store.select(W.N)),(0,R.Z)(([Ai,Yi])=>(this.sessionService.getItem("token")&&Yi.identity_pubkey?this.store.dispatch((0,et.xO)({payload:{data:{information:Yi,component:Ti}}})):this.snackBar.open("Node Pubkey does not exist."),(0,D.of)({type:y.aU.VOID}))))),this.appConfigFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_APPLICATION_SETTINGS),(0,R.Z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===y.f7.XS||this.screenSize===y.f7.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===y.f7.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,et.mt)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,et.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API))),(0,l.T)(Ai=>{this.logger.info(Ai),this.store.dispatch((0,et.y0)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,et.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.COMPLETED}}));let Yi=null;return Ai.nodes.forEach(Ft=>{Ft.settings.currencyUnits=[...y.A0,Ft.settings?.currencyUnit?Ft.settings?.currencyUnit:""],+(Ft.index||-1)===Ai.selectedNodeIndex&&(Yi=Ft)}),Yi?(this.store.dispatch((0,et.Qi)({payload:{uiMessage:y.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:Yi,isInitialSetup:!0}})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:Ai}):{type:y.aU.VOID}}),(0,h.W)(Ai=>(this.handleErrorWithAlert("FetchRTLConfig",y.MZ.GET_RTL_CONFIG,"Fetch RTL Config Failed!",y.rl.CONF_API,Ai),(0,D.of)({type:y.aU.VOID}))))),this.updateNodeSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_NODE_SETTINGS),(0,R.Z)(Ai=>(this.store.dispatch((0,et.mt)({payload:y.MZ.UPDATE_NODE_SETTINGS})),this.store.dispatch((0,et.Gd)({payload:{action:"updateNodeSettings",status:y.wn.INITIATED}})),Ai.payload.settings.fiatConversion||delete Ai.payload.settings.currencyUnit,delete Ai.payload.settings.currencyUnits,this.httpClient.post(y.rl.CONF_API+"/node",Ai.payload).pipe((0,l.T)(Yi=>(this.store.dispatch((0,et.Gd)({payload:{action:"updateNodeSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,et.y0)({payload:y.MZ.UPDATE_NODE_SETTINGS})),Yi.settings.currencyUnits=[...y.A0,Yi.settings?.currencyUnit?Yi.settings?.currencyUnit:""],this.store.dispatch((0,et.Np)({payload:Yi})),{type:y.aU.OPEN_SNACK_BAR,payload:"Node settings updated successfully!"})),(0,h.W)(Yi=>(this.handleErrorWithAlert("updateNodeSettings",y.MZ.UPDATE_NODE_SETTINGS,"Update Node Settings Failed!",y.rl.CONF_API+"/node",Yi),(0,D.of)({type:y.aU.VOID})))))))),this.updateApplicationSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_APPLICATION_SETTINGS),(0,R.Z)(Ai=>(this.store.dispatch((0,et.mt)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),this.store.dispatch((0,et.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.INITIATED}})),Ai.payload.config.nodes.forEach(Yi=>{delete Yi.settings.currencyUnits}),this.httpClient.post(y.rl.CONF_API+"/application",Ai.payload.config).pipe((0,l.T)(Yi=>(this.store.dispatch((0,et.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,et.y0)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),Ai.payload.showSnackBar&&this.store.dispatch((0,et.UI)({payload:Ai.payload.message})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:Yi})),(0,h.W)(Yi=>(this.handleErrorWithAlert("updateApplicationSettings",y.MZ.UPDATE_APPLICATION_SETTINGS,"Update Application Settings Failed!",y.rl.CONF_API+"/application",Yi),(0,D.of)({type:y.aU.VOID})))))))),this.configFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_CONFIG),(0,R.Z)(Ai=>(this.store.dispatch((0,et.mt)({payload:y.MZ.OPEN_CONFIG_FILE})),this.store.dispatch((0,et.Gd)({payload:{action:"fetchConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/config/"+Ai.payload).pipe((0,l.T)(Yi=>(this.store.dispatch((0,et.Gd)({payload:{action:"fetchConfig",status:y.wn.COMPLETED}})),this.store.dispatch((0,et.y0)({payload:y.MZ.OPEN_CONFIG_FILE})),{type:y.aU.SHOW_CONFIG,payload:Yi})),(0,h.W)(Yi=>(this.handleErrorWithAlert("fetchConfig",y.MZ.OPEN_CONFIG_FILE,"Fetch Config Failed!",y.rl.CONF_API+"/config/"+Ai.payload,Yi),(0,D.of)({type:y.aU.VOID})))))))),this.showLnConfig=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_CONFIG),(0,l.T)(Ai=>Ai.payload)),{dispatch:!1}),this.isAuthorized=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED),(0,R.Z)(Ai=>(this.store.dispatch((0,et.Gd)({payload:{action:"IsAuthorized",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:Ai.payload&&""!==Ai.payload.trim()?y.U1.PASSWORD:y.U1.JWT,authenticationValue:Ai.payload&&""!==Ai.payload.trim()?Ai.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,l.T)(Yi=>(this.logger.info(Yi),this.store.dispatch((0,et.Gd)({payload:{action:"IsAuthorized",status:y.wn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:y.aU.IS_AUTHORIZED_RES,payload:Yi})),(0,h.W)(Yi=>(this.handleErrorWithAlert("IsAuthorized",y.MZ.NO_SPINNER,"Authorization Failed",y.rl.AUTHENTICATE_API,Yi),(0,D.of)({type:y.aU.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED_RES),(0,l.T)(Ai=>Ai.payload)),{dispatch:!1}),this.authLogin=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGIN),(0,f.E)(this.store.select(W.qv)),(0,R.Z)(([Ai,Yi])=>(this.store.dispatch((0,Hi.p1)()),this.store.dispatch((0,Zi.gf)()),this.store.dispatch((0,ln.Hh)()),this.store.dispatch((0,et.Gd)({payload:{action:"Login",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:Ai.payload.password?y.U1.PASSWORD:y.U1.JWT,authenticationValue:Ai.payload.password?Ai.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:Ai.payload.twoFAToken?Ai.payload.twoFAToken:""}).pipe((0,l.T)(Ft=>{this.logger.info(Ft),this.store.dispatch((0,et.Gd)({payload:{action:"Login",status:y.wn.COMPLETED}})),this.setLoggedInDetails(Ai.payload.defaultPassword,Ft)}),(0,h.W)(Ft=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",y.MZ.NO_SPINNER,Ft),+Yi.SSO.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:Ft.error&&Ft.error.error?Ft.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"],{state:{logoutReason:Ft.error&&Ft.error.error?Ft.error.error:"Single Sign On Failed!"}}),(0,D.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.VERIFY_TWO_FA),(0,R.Z)(Ai=>(this.store.dispatch((0,et.mt)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,et.Gd)({payload:{action:"VerifyToken",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/token",{authentication2FA:Ai.payload.token}).pipe((0,l.T)(Yi=>{this.logger.info(Yi),this.store.dispatch((0,et.y0)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,et.Gd)({payload:{action:"VerifyToken",status:y.wn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,Ai.payload.authResponse)}),(0,h.W)(Yi=>(this.handleErrorWithAlert("VerifyToken",y.MZ.VERIFY_TOKEN,"Authorization Failed!",y.rl.AUTHENTICATE_API+"/token",Yi),(0,D.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGOUT),(0,f.E)(this.store.select(W.qv)),(0,R.Z)(([Ai,Yi])=>(this.store.dispatch((0,et.mt)({payload:y.MZ.LOG_OUT})),Yi.SSO&&+Yi.SSO.rtlSSO?window.location.href=Yi.SSO.logoutRedirectLink:this.router.navigate(["./login"],{state:{logoutReason:Ai.payload}}),this.sessionService.clearAll(),this.store.dispatch((0,et.Fl)({payload:{}})),this.store.dispatch((0,et.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from browser"),this.httpClient.get(y.rl.AUTHENTICATE_API+"/logout").pipe((0,l.T)(Ft=>{this.logger.info(Ft),this.store.dispatch((0,et.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from server")}))))),{dispatch:!1}),this.resetPassword=(0,t.EH)(()=>this.actions.pipe((0,S.Q)(this.unSubs[1]),(0,t.gp)(y.aU.RESET_PASSWORD),(0,R.Z)(Ai=>(this.store.dispatch((0,et.Gd)({payload:{action:"ResetPassword",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/reset",{currPassword:Ai.payload.currPassword,newPassword:Ai.payload.newPassword}).pipe((0,S.Q)(this.unSubs[0]),(0,l.T)(Yi=>(this.logger.info(Yi),this.store.dispatch((0,et.Gd)({payload:{action:"ResetPassword",status:y.wn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,et.UI)({payload:"Password Reset Successful!"})),this.SetToken(Yi.token),{type:y.aU.RESET_PASSWORD_RES,payload:Yi.token})),(0,h.W)(Yi=>(this.handleErrorWithAlert("ResetPassword",y.MZ.NO_SPINNER,"Password Reset Failed!",y.rl.AUTHENTICATE_API+"/reset",Yi),(0,D.of)({type:y.aU.VOID})))))))),this.setSelectedNode=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SET_SELECTED_NODE),(0,R.Z)(Ai=>(this.store.dispatch((0,et.mt)({payload:Ai.payload.uiMessage})),this.store.dispatch((0,et.Gd)({payload:{action:"UpdateSelNode",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/updateSelNode/"+Ai.payload.currentLnNode?.index+"/"+Ai.payload.prevLnNodeIndex).pipe((0,l.T)(Yi=>(this.logger.info(Yi),this.store.dispatch((0,et.Gd)({payload:{action:"UpdateSelNode",status:y.wn.COMPLETED}})),this.store.dispatch((0,et.y0)({payload:Ai.payload.uiMessage})),this.initializeNode(Yi,Ai.payload.isInitialSetup),{type:y.aU.VOID})),(0,h.W)(Yi=>(this.handleErrorWithAlert("UpdateSelNode",Ai.payload.uiMessage,"Update Selected Node Failed!",y.rl.CONF_API+"/updateSelNode",Yi),(0,D.of)({type:y.aU.VOID})))))))),this.fetchFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_FILE),(0,R.Z)(Ai=>{this.store.dispatch((0,et.mt)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,et.Gd)({payload:{action:"FetchFile",status:y.wn.INITIATED}}));const Yi="?channel="+Ai.payload.channelPoint+(Ai.payload.path?"&path="+Ai.payload.path:"");return this.httpClient.get(y.rl.CONF_API+"/file"+Yi).pipe((0,l.T)(Ft=>(this.store.dispatch((0,et.Gd)({payload:{action:"FetchFile",status:y.wn.COMPLETED}})),this.store.dispatch((0,et.y0)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),{type:y.aU.SHOW_FILE,payload:Ft})),(0,h.W)(Ft=>(this.handleErrorWithAlert("fetchFile",y.MZ.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",y.rl.CONF_API+"/file"+Yi,{status:this.commonService.extractErrorNumber(Ft),error:{error:this.commonService.extractErrorCode(Ft)}}),(0,D.of)({type:y.aU.VOID}))))}))),this.showFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_FILE),(0,l.T)(Ai=>Ai.payload)),{dispatch:!1})}initializeNode(ht,ii){this.logger.info("Initializing node from RTL Effects.");const di=ii?"":"HOME";if(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),ht.settings.currencyUnits=[...y.A0,ht.settings?.currencyUnit?ht.settings?.currencyUnit:""],this.store.dispatch((0,et.Tn)({payload:ht})),this.store.dispatch((0,Hi.p1)()),this.store.dispatch((0,Zi.gf)()),this.store.dispatch((0,ln.Hh)()),this.sessionService.getItem("token")){const Gi=ht.lnImplementation?ht.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(Gi);const Cn=!(0,e.naY)()&&window.location.origin?window.location.origin+"/rtl/api":y.H$;switch(this.wsService.connectWebSocket(Cn?.replace(/^http/,"ws")+y.rl.Web_SOCKET_API,ht.index?ht.index.toString():"-1"),Gi){case"CLN":this.store.dispatch((0,Zi.lg)()),this.store.dispatch((0,Zi.Aw)({payload:{loadPage:di}}));break;case"ECL":this.store.dispatch((0,ln.lg)()),this.store.dispatch((0,ln.zR)({payload:{loadPage:di}}));break;default:this.store.dispatch((0,Hi.lg)()),this.store.dispatch((0,Hi.Br)({payload:{loadPage:di}}))}}}SetToken(ht){ht?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",ht)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(ht,ii){this.logger.info("Successfully Authorized!"),this.SetToken(ii.token),this.sessionService.setItem("defaultPassword",ht),ht?(this.store.dispatch((0,et.UI)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,et.NU)())}handleErrorWithoutAlert(ht,ii,di){this.logger.error("ERROR IN: "+ht+"\n"+JSON.stringify(di)),401===di.status&&"Login"!==ht?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,et.Jh)()),this.store.dispatch((0,et.ri)({payload:"Authentication Failed: "+JSON.stringify(di.error)}))):(this.store.dispatch((0,et.y0)({payload:ii})),this.store.dispatch((0,et.Gd)({payload:{action:ht,status:y.wn.ERROR,statusCode:di.status?di.status.toString():"",message:this.commonService.extractErrorMessage(di)}})))}handleErrorWithAlert(ht,ii,di,Gi,Cn){if(this.logger.error(Cn),0===Cn.status&&Cn.statusText&&"Unknown Error"===Cn.statusText&&(Cn={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===Cn.status&&"Login"!==ht)this.logger.info("Redirecting to Login"),this.store.dispatch((0,et.Jh)()),this.store.dispatch((0,et.ri)({payload:"Authentication Failed: "+JSON.stringify(Cn.error)}));else{this.store.dispatch((0,et.y0)({payload:ii}));const Hn=this.commonService.extractErrorMessage(Cn);this.store.dispatch((0,et.xO)({payload:{data:{type:"ERROR",alertTitle:di,message:{code:Cn.status?Cn.status:"Unknown Error",message:Hn,URL:Gi},component:St.f}}})),this.store.dispatch((0,et.Gd)({payload:{action:ht,status:y.wn.ERROR,statusCode:Cn.status?Cn.status.toString():"",message:Hn,URL:Gi}}))}}ngOnDestroy(){this.unSubs.forEach(ht=>{ht.next(null),ht.complete()})}static{this.\u0275fac=function(ii){return new(ii||ye)(e.KVO(t.En),e.KVO(mn.Qq),e.KVO(fe.il),e.KVO(Q.gP),e.KVO(Ut.I),e.KVO(lt.Q),e.KVO(ie.h),e.KVO(re.u),e.KVO(O.bZ),e.KVO(J.UG),e.KVO(ee.Ix))}}static{this.\u0275prov=e.jDH({token:ye,factory:ye.\u0275fac})}}return ye})()},9647:(Qe,te,g)=>{"use strict";g.d(te,{Az:()=>h,E2:()=>R,Kq:()=>f,N:()=>w,_c:()=>D,qv:()=>l});var e=g(9640);const t=(0,e.UX)("root"),D=((0,e.Mz)(t,S=>S.apiURL),(0,e.Mz)(t,S=>S.selNode)),l=(0,e.Mz)(t,S=>S.appConfig),w=(0,e.Mz)(t,S=>S.nodeData),f=(0,e.Mz)(t,S=>S.apisCallStatus.Login),R=(0,e.Mz)(t,S=>S.apisCallStatus.IsAuthorized),h=(0,e.Mz)(t,S=>({nodeDate:S.nodeData,selNode:S.selNode}))},3471:(Qe,te,g)=>{"use strict";var e=g(345),t=g(4438),x=g(9969);function l(F){return new t.wOt(3e3,!1)}function ze(F){switch(F.length){case 0:return new x.sf;case 1:return F[0];default:return new x.ui(F)}}function Xe(F,B,v=new Map,H=new Map){const G=[],Oe=[];let kt=-1,At=null;if(B.forEach(oi=>{const ui=oi.get("offset"),Wi=ui==kt,Li=Wi&&At||new Map;oi.forEach((fn,Mn)=>{let Ki=Mn,an=fn;if("offset"!==Mn)switch(Ki=F.normalizePropertyName(Ki,G),an){case x.FX:an=v.get(Mn);break;case x.kp:an=H.get(Mn);break;default:an=F.normalizeStyleValue(Mn,Ki,an,G)}Li.set(Ki,an)}),Wi||Oe.push(Li),At=Li,kt=ui}),G.length)throw function c(){return new t.wOt(3502,!1)}();return Oe}function We(F,B,v,H){switch(B){case"start":F.onStart(()=>H(v&&oe(v,"start",F)));break;case"done":F.onDone(()=>H(v&&oe(v,"done",F)));break;case"destroy":F.onDestroy(()=>H(v&&oe(v,"destroy",F)))}}function oe(F,B,v){const Oe=X(F.element,F.triggerName,F.fromState,F.toState,B||F.phaseName,v.totalTime??F.totalTime,!!v.disabled),kt=F._data;return null!=kt&&(Oe._data=kt),Oe}function X(F,B,v,H,G="",Oe=0,kt){return{element:F,triggerName:B,fromState:v,toState:H,phaseName:G,totalTime:Oe,disabled:!!kt}}function se(F,B,v){let H=F.get(B);return H||F.set(B,H=v),H}function ae(F){const B=F.indexOf(":");return[F.substring(1,B),F.slice(B+1)]}const he=typeof document>"u"?null:document.documentElement;function Ie(F){const B=F.parentNode||F.host||null;return B===he?null:B}let me=null,Ee=!1;function ct(F,B){for(;B;){if(B===F)return!0;B=Ie(B)}return!1}function dt(F,B,v){if(v)return Array.from(F.querySelectorAll(B));const H=F.querySelector(B);return H?[H]:[]}let ve=(()=>{class F{validateStyleProperty(v){return function ue(F){me||(me=function Ct(){return typeof document<"u"?document.body:null}()||{},Ee=!!me.style&&"WebkitAppearance"in me.style);let B=!0;return me.style&&!function st(F){return"ebkit"==F.substring(1,6)}(F)&&(B=F in me.style,!B&&Ee&&(B="Webkit"+F.charAt(0).toUpperCase()+F.slice(1)in me.style)),B}(v)}containsElement(v,H){return ct(v,H)}getParentElement(v){return Ie(v)}query(v,H,G){return dt(v,H,G)}computeStyle(v,H,G){return G||""}animate(v,H,G,Oe,kt,At=[],oi){return new x.sf(G,Oe)}static{this.\u0275fac=function(H){return new(H||F)}}static{this.\u0275prov=t.jDH({token:F,factory:F.\u0275fac})}}return F})();class _e{static{this.NOOP=new ve}}class we{}const je=1e3,nt="ng-enter",qt="ng-leave",Nt="ng-trigger",yt=".ng-trigger",jt="ng-animating",Je=".ng-animating";function et(F){if("number"==typeof F)return F;const B=F.match(/^(-?[\.\d]+)(m?s)/);return!B||B.length<2?0:Ae(parseFloat(B[1]),B[2])}function Ae(F,B){return"s"===B?F*je:F}function It(F,B,v){return F.hasOwnProperty("duration")?F:function Qt(F,B,v){let G,Oe=0,kt="";if("string"==typeof F){const At=F.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===At)return B.push(l()),{duration:0,delay:0,easing:""};G=Ae(parseFloat(At[1]),At[2]);const oi=At[3];null!=oi&&(Oe=Ae(parseFloat(oi),At[4]));const ui=At[5];ui&&(kt=ui)}else G=F;if(!v){let At=!1,oi=B.length;G<0&&(B.push(function w(){return new t.wOt(3100,!1)}()),At=!0),Oe<0&&(B.push(function f(){return new t.wOt(3101,!1)}()),At=!0),At&&B.splice(oi,0,l())}return{duration:G,delay:Oe,easing:kt}}(F,B,v)}function Se(F,B,v){B.forEach((H,G)=>{const Oe=Fe(G);v&&!v.has(G)&&v.set(G,F.style[Oe]),F.style[Oe]=H})}function Te(F,B){B.forEach((v,H)=>{const G=Fe(H);F.style[G]=""})}function ce(F){return Array.isArray(F)?1==F.length?F[0]:(0,x.K2)(F):F}const Re=new RegExp("{{\\s*(.+?)\\s*}}","g");function Pe(F){let B=[];if("string"==typeof F){let v;for(;v=Re.exec(F);)B.push(v[1]);Re.lastIndex=0}return B}function pt(F,B,v){const H=`${F}`,G=H.replace(Re,(Oe,kt)=>{let At=B[kt];return null==At&&(v.push(function h(){return new t.wOt(3003,!1)}()),At=""),At.toString()});return G==H?F:G}const Ke=/-+([a-z0-9])/g;function Fe(F){return F.replace(Ke,(...B)=>B[1].toUpperCase())}function Lt(F,B,v){switch(B.type){case x.If.Trigger:return F.visitTrigger(B,v);case x.If.State:return F.visitState(B,v);case x.If.Transition:return F.visitTransition(B,v);case x.If.Sequence:return F.visitSequence(B,v);case x.If.Group:return F.visitGroup(B,v);case x.If.Animate:return F.visitAnimate(B,v);case x.If.Keyframes:return F.visitKeyframes(B,v);case x.If.Style:return F.visitStyle(B,v);case x.If.Reference:return F.visitReference(B,v);case x.If.AnimateChild:return F.visitAnimateChild(B,v);case x.If.AnimateRef:return F.visitAnimateRef(B,v);case x.If.Query:return F.visitQuery(B,v);case x.If.Stagger:return F.visitStagger(B,v);default:throw function S(){return new t.wOt(3004,!1)}()}}function pi(F,B){return window.getComputedStyle(F)[B]}const $t=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 Kt extends we{normalizePropertyName(B,v){return Fe(B)}normalizeStyleValue(B,v,H,G){let Oe="";const kt=H.toString().trim();if($t.has(v)&&0!==H&&"0"!==H)if("number"==typeof H)Oe="px";else{const At=H.match(/^[+-]?[\d\.]+([a-z]*)$/);At&&0==At[1].length&&G.push(function y(){return new t.wOt(3005,!1)}())}return kt+Oe}}const Qi="*";const ot=new Set(["true","1"]),Mt=new Set(["false","0"]);function Bt(F,B){const v=ot.has(F)||Mt.has(F),H=ot.has(B)||Mt.has(B);return(G,Oe)=>{let kt=F==Qi||F==G,At=B==Qi||B==Oe;return!kt&&v&&"boolean"==typeof G&&(kt=G?ot.has(F):Mt.has(F)),!At&&H&&"boolean"==typeof Oe&&(At=Oe?ot.has(B):Mt.has(B)),kt&&At}}const Ti=new RegExp("s*:selfs*,?","g");function Hi(F,B,v,H){return new ln(F).build(B,v,H)}class ln{constructor(B){this._driver=B}build(B,v,H){const G=new lt(v);return this._resetContextStyleTimingState(G),Lt(this,ce(B),G)}_resetContextStyleTimingState(B){B.currentQuerySelector="",B.collectedStyles=new Map,B.collectedStyles.set("",new Map),B.currentTime=0}visitTrigger(B,v){let H=v.queryCount=0,G=v.depCount=0;const Oe=[],kt=[];return"@"==B.name.charAt(0)&&v.errors.push(function O(){return new t.wOt(3006,!1)}()),B.definitions.forEach(At=>{if(this._resetContextStyleTimingState(v),At.type==x.If.State){const oi=At,ui=oi.name;ui.toString().split(/\s*,\s*/).forEach(Wi=>{oi.name=Wi,Oe.push(this.visitState(oi,v))}),oi.name=ui}else if(At.type==x.If.Transition){const oi=this.visitTransition(At,v);H+=oi.queryCount,G+=oi.depCount,kt.push(oi)}else v.errors.push(function I(){return new t.wOt(3007,!1)}())}),{type:x.If.Trigger,name:B.name,states:Oe,transitions:kt,queryCount:H,depCount:G,options:null}}visitState(B,v){const H=this.visitStyle(B.styles,v),G=B.options&&B.options.params||null;if(H.containsDynamicStyles){const Oe=new Set,kt=G||{};H.styles.forEach(At=>{At instanceof Map&&At.forEach(oi=>{Pe(oi).forEach(ui=>{kt.hasOwnProperty(ui)||Oe.add(ui)})})}),Oe.size&&v.errors.push(function V(){return new t.wOt(3008,!1)}(0,Oe.values()))}return{type:x.If.State,name:B.name,style:H,options:G?{params:G}:null}}visitTransition(B,v){v.queryCount=0,v.depCount=0;const H=Lt(this,ce(B.animation),v),G=function Xt(F,B){const v=[];return"string"==typeof F?F.split(/\s*,\s*/).forEach(H=>function St(F,B,v){if(":"==F[0]){const oi=function tt(F,B){switch(F){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(v,H)=>parseFloat(H)>parseFloat(v);case":decrement":return(v,H)=>parseFloat(H) *"}}(F,v);if("function"==typeof oi)return void B.push(oi);F=oi}const H=F.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==H||H.length<4)return v.push(function Me(){return new t.wOt(3015,!1)}()),B;const G=H[1],Oe=H[2],kt=H[3];B.push(Bt(G,kt)),"<"==Oe[0]&&(G!=Qi||kt!=Qi)&&B.push(Bt(kt,G))}(H,v,B)):v.push(F),v}(B.expr,v.errors);return{type:x.If.Transition,matchers:G,animation:H,queryCount:v.queryCount,depCount:v.depCount,options:ye(B.options)}}visitSequence(B,v){return{type:x.If.Sequence,steps:B.steps.map(H=>Lt(this,H,v)),options:ye(B.options)}}visitGroup(B,v){const H=v.currentTime;let G=0;const Oe=B.steps.map(kt=>{v.currentTime=H;const At=Lt(this,kt,v);return G=Math.max(G,v.currentTime),At});return v.currentTime=G,{type:x.If.Group,steps:Oe,options:ye(B.options)}}visitAnimate(B,v){const H=function He(F,B){if(F.hasOwnProperty("duration"))return F;if("number"==typeof F)return rt(It(F,B).duration,0,"");const v=F;if(v.split(/\s+/).some(Oe=>"{"==Oe.charAt(0)&&"{"==Oe.charAt(1))){const Oe=rt(0,0,"");return Oe.dynamic=!0,Oe.strValue=v,Oe}const G=It(v,B);return rt(G.duration,G.delay,G.easing)}(B.timings,v.errors);v.currentAnimateTimings=H;let G,Oe=B.styles?B.styles:(0,x.iF)({});if(Oe.type==x.If.Keyframes)G=this.visitKeyframes(Oe,v);else{let kt=B.styles,At=!1;if(!kt){At=!0;const ui={};H.easing&&(ui.easing=H.easing),kt=(0,x.iF)(ui)}v.currentTime+=H.duration+H.delay;const oi=this.visitStyle(kt,v);oi.isEmptyStep=At,G=oi}return v.currentAnimateTimings=null,{type:x.If.Animate,timings:H,style:G,options:null}}visitStyle(B,v){const H=this._makeStyleAst(B,v);return this._validateStyleAst(H,v),H}_makeStyleAst(B,v){const H=[],G=Array.isArray(B.styles)?B.styles:[B.styles];for(let At of G)"string"==typeof At?At===x.kp?H.push(At):v.errors.push(new t.wOt(3002,!1)):H.push(new Map(Object.entries(At)));let Oe=!1,kt=null;return H.forEach(At=>{if(At instanceof Map&&(At.has("easing")&&(kt=At.get("easing"),At.delete("easing")),!Oe))for(let oi of At.values())if(oi.toString().indexOf("{{")>=0){Oe=!0;break}}),{type:x.If.Style,styles:H,easing:kt,offset:B.offset,containsDynamicStyles:Oe,options:null}}_validateStyleAst(B,v){const H=v.currentAnimateTimings;let G=v.currentTime,Oe=v.currentTime;H&&Oe>0&&(Oe-=H.duration+H.delay),B.styles.forEach(kt=>{"string"!=typeof kt&&kt.forEach((At,oi)=>{const ui=v.collectedStyles.get(v.currentQuerySelector),Wi=ui.get(oi);let Li=!0;Wi&&(Oe!=G&&Oe>=Wi.startTime&&G<=Wi.endTime&&(v.errors.push(function W(){return new t.wOt(3010,!1)}()),Li=!1),Oe=Wi.startTime),Li&&ui.set(oi,{startTime:Oe,endTime:G}),v.options&&function Z(F,B,v){const H=B.params||{},G=Pe(F);G.length&&G.forEach(Oe=>{H.hasOwnProperty(Oe)||v.push(function R(){return new t.wOt(3001,!1)}())})}(At,v.options,v.errors)})})}visitKeyframes(B,v){const H={type:x.If.Keyframes,styles:[],options:null};if(!v.currentAnimateTimings)return v.errors.push(function Q(){return new t.wOt(3011,!1)}()),H;let Oe=0;const kt=[];let At=!1,oi=!1,ui=0;const Wi=B.steps.map(gr=>{const jr=this._makeStyleAst(gr,v);let da=null!=jr.offset?jr.offset:function re(F){if("string"==typeof F)return null;let B=null;if(Array.isArray(F))F.forEach(v=>{if(v instanceof Map&&v.has("offset")){const H=v;B=parseFloat(H.get("offset")),H.delete("offset")}});else if(F instanceof Map&&F.has("offset")){const v=F;B=parseFloat(v.get("offset")),v.delete("offset")}return B}(jr.styles),rr=0;return null!=da&&(Oe++,rr=jr.offset=da),oi=oi||rr<0||rr>1,At=At||rr0&&Oe{const da=fn>0?jr==Mn?1:fn*jr:kt[jr],rr=da*Xn;v.currentTime=Ki+an.delay+rr,an.duration=rr,this._validateStyleAst(gr,v),gr.offset=da,H.styles.push(gr)}),H}visitReference(B,v){return{type:x.If.Reference,animation:Lt(this,ce(B.animation),v),options:ye(B.options)}}visitAnimateChild(B,v){return v.depCount++,{type:x.If.AnimateChild,options:ye(B.options)}}visitAnimateRef(B,v){return{type:x.If.AnimateRef,animation:this.visitReference(B.animation,v),options:ye(B.options)}}visitQuery(B,v){const H=v.currentQuerySelector,G=B.options||{};v.queryCount++,v.currentQuery=B;const[Oe,kt]=function mn(F){const B=!!F.split(/\s*,\s*/).find(v=>":self"==v);return B&&(F=F.replace(Ti,"")),F=F.replace(/@\*/g,yt).replace(/@\w+/g,v=>yt+"-"+v.slice(1)).replace(/:animating/g,Je),[F,B]}(B.selector);v.currentQuerySelector=H.length?H+" "+Oe:Oe,se(v.collectedStyles,v.currentQuerySelector,new Map);const At=Lt(this,ce(B.animation),v);return v.currentQuery=null,v.currentQuerySelector=H,{type:x.If.Query,selector:Oe,limit:G.limit||0,optional:!!G.optional,includeSelf:kt,animation:At,originalSelector:B.selector,options:ye(B.options)}}visitStagger(B,v){v.currentQuery||v.errors.push(function fe(){return new t.wOt(3013,!1)}());const H="full"===B.timings?{duration:0,delay:0,easing:"full"}:It(B.timings,v.errors,!0);return{type:x.If.Stagger,animation:Lt(this,ce(B.animation),v),timings:H,options:null}}}class lt{constructor(B){this.errors=B,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles=new Map,this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function ye(F){return F?(F={...F}).params&&(F.params=function Ut(F){return F?{...F}:null}(F.params)):F={},F}function rt(F,B,v){return{duration:F,delay:B,easing:v}}function ht(F,B,v,H,G,Oe,kt=null,At=!1){return{type:1,element:F,keyframes:B,preStyleProps:v,postStyleProps:H,duration:G,delay:Oe,totalTime:G+Oe,easing:kt,subTimeline:At}}class ii{constructor(){this._map=new Map}get(B){return this._map.get(B)||[]}append(B,v){let H=this._map.get(B);H||this._map.set(B,H=[]),H.push(...v)}has(B){return this._map.has(B)}clear(){this._map.clear()}}const Cn=new RegExp(":enter","g"),Qn=new RegExp(":leave","g");function Jn(F,B,v,H,G,Oe=new Map,kt=new Map,At,oi,ui=[]){return(new nr).buildKeyframes(F,B,v,H,G,Oe,kt,At,oi,ui)}class nr{buildKeyframes(B,v,H,G,Oe,kt,At,oi,ui,Wi=[]){ui=ui||new ii;const Li=new wn(B,v,ui,G,Oe,Wi,[]);Li.options=oi;const fn=oi.delay?et(oi.delay):0;Li.currentTimeline.delayNextStep(fn),Li.currentTimeline.setStyles([kt],null,Li.errors,oi),Lt(this,H,Li);const Mn=Li.timelines.filter(Ki=>Ki.containsAnimation());if(Mn.length&&At.size){let Ki;for(let an=Mn.length-1;an>=0;an--){const Xn=Mn[an];if(Xn.element===v){Ki=Xn;break}}Ki&&!Ki.allowOnlyTimelineStyles()&&Ki.setStyles([At],null,Li.errors,oi)}return Mn.length?Mn.map(Ki=>Ki.buildKeyframes()):[ht(v,[],[],[],0,fn,"",!1)]}visitTrigger(B,v){}visitState(B,v){}visitTransition(B,v){}visitAnimateChild(B,v){const H=v.subInstructions.get(v.element);if(H){const G=v.createSubContext(B.options),Oe=v.currentTimeline.currentTime,kt=this._visitSubInstructions(H,G,G.options);Oe!=kt&&v.transformIntoNewTimeline(kt)}v.previousNode=B}visitAnimateRef(B,v){const H=v.createSubContext(B.options);H.transformIntoNewTimeline(),this._applyAnimationRefDelays([B.options,B.animation.options],v,H),this.visitReference(B.animation,H),v.transformIntoNewTimeline(H.currentTimeline.currentTime),v.previousNode=B}_applyAnimationRefDelays(B,v,H){for(const G of B){const Oe=G?.delay;if(Oe){const kt="number"==typeof Oe?Oe:et(pt(Oe,G?.params??{},v.errors));H.delayNextStep(kt)}}}_visitSubInstructions(B,v,H){let Oe=v.currentTimeline.currentTime;const kt=null!=H.duration?et(H.duration):null,At=null!=H.delay?et(H.delay):null;return 0!==kt&&B.forEach(oi=>{const ui=v.appendInstructionToTimeline(oi,kt,At);Oe=Math.max(Oe,ui.duration+ui.delay)}),Oe}visitReference(B,v){v.updateOptions(B.options,!0),Lt(this,B.animation,v),v.previousNode=B}visitSequence(B,v){const H=v.subContextCount;let G=v;const Oe=B.options;if(Oe&&(Oe.params||Oe.delay)&&(G=v.createSubContext(Oe),G.transformIntoNewTimeline(),null!=Oe.delay)){G.previousNode.type==x.If.Style&&(G.currentTimeline.snapshotCurrentStyles(),G.previousNode=dr);const kt=et(Oe.delay);G.delayNextStep(kt)}B.steps.length&&(B.steps.forEach(kt=>Lt(this,kt,G)),G.currentTimeline.applyStylesToKeyframe(),G.subContextCount>H&&G.transformIntoNewTimeline()),v.previousNode=B}visitGroup(B,v){const H=[];let G=v.currentTimeline.currentTime;const Oe=B.options&&B.options.delay?et(B.options.delay):0;B.steps.forEach(kt=>{const At=v.createSubContext(B.options);Oe&&At.delayNextStep(Oe),Lt(this,kt,At),G=Math.max(G,At.currentTimeline.currentTime),H.push(At.currentTimeline)}),H.forEach(kt=>v.currentTimeline.mergeTimelineCollectedStyles(kt)),v.transformIntoNewTimeline(G),v.previousNode=B}_visitTiming(B,v){if(B.dynamic){const H=B.strValue;return It(v.params?pt(H,v.params,v.errors):H,v.errors)}return{duration:B.duration,delay:B.delay,easing:B.easing}}visitAnimate(B,v){const H=v.currentAnimateTimings=this._visitTiming(B.timings,v),G=v.currentTimeline;H.delay&&(v.incrementTime(H.delay),G.snapshotCurrentStyles());const Oe=B.style;Oe.type==x.If.Keyframes?this.visitKeyframes(Oe,v):(v.incrementTime(H.duration),this.visitStyle(Oe,v),G.applyStylesToKeyframe()),v.currentAnimateTimings=null,v.previousNode=B}visitStyle(B,v){const H=v.currentTimeline,G=v.currentAnimateTimings;!G&&H.hasCurrentStyleProperties()&&H.forwardFrame();const Oe=G&&G.easing||B.easing;B.isEmptyStep?H.applyEmptyStep(Oe):H.setStyles(B.styles,Oe,v.errors,v.options),v.previousNode=B}visitKeyframes(B,v){const H=v.currentAnimateTimings,G=v.currentTimeline.duration,Oe=H.duration,At=v.createSubContext().currentTimeline;At.easing=H.easing,B.styles.forEach(oi=>{At.forwardTime((oi.offset||0)*Oe),At.setStyles(oi.styles,oi.easing,v.errors,v.options),At.applyStylesToKeyframe()}),v.currentTimeline.mergeTimelineCollectedStyles(At),v.transformIntoNewTimeline(G+Oe),v.previousNode=B}visitQuery(B,v){const H=v.currentTimeline.currentTime,G=B.options||{},Oe=G.delay?et(G.delay):0;Oe&&(v.previousNode.type===x.If.Style||0==H&&v.currentTimeline.hasCurrentStyleProperties())&&(v.currentTimeline.snapshotCurrentStyles(),v.previousNode=dr);let kt=H;const At=v.invokeQuery(B.selector,B.originalSelector,B.limit,B.includeSelf,!!G.optional,v.errors);v.currentQueryTotal=At.length;let oi=null;At.forEach((ui,Wi)=>{v.currentQueryIndex=Wi;const Li=v.createSubContext(B.options,ui);Oe&&Li.delayNextStep(Oe),ui===v.element&&(oi=Li.currentTimeline),Lt(this,B.animation,Li),Li.currentTimeline.applyStylesToKeyframe(),kt=Math.max(kt,Li.currentTimeline.currentTime)}),v.currentQueryIndex=0,v.currentQueryTotal=0,v.transformIntoNewTimeline(kt),oi&&(v.currentTimeline.mergeTimelineCollectedStyles(oi),v.currentTimeline.snapshotCurrentStyles()),v.previousNode=B}visitStagger(B,v){const H=v.parentContext,G=v.currentTimeline,Oe=B.timings,kt=Math.abs(Oe.duration),At=kt*(v.currentQueryTotal-1);let oi=kt*v.currentQueryIndex;switch(Oe.duration<0?"reverse":Oe.easing){case"reverse":oi=At-oi;break;case"full":oi=H.currentStaggerTime}const Wi=v.currentTimeline;oi&&Wi.delayNextStep(oi);const Li=Wi.currentTime;Lt(this,B.animation,v),v.previousNode=B,H.currentStaggerTime=G.currentTime-Li+(G.startTime-H.currentTimeline.startTime)}}const dr={};class wn{constructor(B,v,H,G,Oe,kt,At,oi){this._driver=B,this.element=v,this.subInstructions=H,this._enterClassName=G,this._leaveClassName=Oe,this.errors=kt,this.timelines=At,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=dr,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=oi||new Ai(this._driver,v,0),At.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(B,v){if(!B)return;const H=B;let G=this.options;null!=H.duration&&(G.duration=et(H.duration)),null!=H.delay&&(G.delay=et(H.delay));const Oe=H.params;if(Oe){let kt=G.params;kt||(kt=this.options.params={}),Object.keys(Oe).forEach(At=>{(!v||!kt.hasOwnProperty(At))&&(kt[At]=pt(Oe[At],kt,this.errors))})}}_copyOptions(){const B={};if(this.options){const v=this.options.params;if(v){const H=B.params={};Object.keys(v).forEach(G=>{H[G]=v[G]})}}return B}createSubContext(B=null,v,H){const G=v||this.element,Oe=new wn(this._driver,G,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(G,H||0));return Oe.previousNode=this.previousNode,Oe.currentAnimateTimings=this.currentAnimateTimings,Oe.options=this._copyOptions(),Oe.updateOptions(B),Oe.currentQueryIndex=this.currentQueryIndex,Oe.currentQueryTotal=this.currentQueryTotal,Oe.parentContext=this,this.subContextCount++,Oe}transformIntoNewTimeline(B){return this.previousNode=dr,this.currentTimeline=this.currentTimeline.fork(this.element,B),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(B,v,H){const G={duration:v??B.duration,delay:this.currentTimeline.currentTime+(H??0)+B.delay,easing:""},Oe=new Yi(this._driver,B.element,B.keyframes,B.preStyleProps,B.postStyleProps,G,B.stretchStartingKeyframe);return this.timelines.push(Oe),G}incrementTime(B){this.currentTimeline.forwardTime(this.currentTimeline.duration+B)}delayNextStep(B){B>0&&this.currentTimeline.delayNextStep(B)}invokeQuery(B,v,H,G,Oe,kt){let At=[];if(G&&At.push(this.element),B.length>0){B=(B=B.replace(Cn,"."+this._enterClassName)).replace(Qn,"."+this._leaveClassName);let ui=this._driver.query(this.element,B,1!=H);0!==H&&(ui=H<0?ui.slice(ui.length+H,ui.length):ui.slice(0,H)),At.push(...ui)}return!Oe&&0==At.length&&kt.push(function ne(){return new t.wOt(3014,!1)}()),At}}class Ai{constructor(B,v,H,G){this._driver=B,this.element=v,this.startTime=H,this._elementTimelineStylesLookup=G,this.duration=0,this.easing=null,this._previousKeyframe=new Map,this._currentKeyframe=new Map,this._keyframes=new Map,this._styleSummary=new Map,this._localTimelineStyles=new Map,this._pendingStyles=new Map,this._backFill=new Map,this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(v),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(v,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(B){const v=1===this._keyframes.size&&this._pendingStyles.size;this.duration||v?(this.forwardTime(this.currentTime+B),v&&this.snapshotCurrentStyles()):this.startTime+=B}fork(B,v){return this.applyStylesToKeyframe(),new Ai(this._driver,B,v||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(B){this.applyStylesToKeyframe(),this.duration=B,this._loadKeyframe()}_updateStyle(B,v){this._localTimelineStyles.set(B,v),this._globalTimelineStyles.set(B,v),this._styleSummary.set(B,{time:this.currentTime,value:v})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(B){B&&this._previousKeyframe.set("easing",B);for(let[v,H]of this._globalTimelineStyles)this._backFill.set(v,H||x.kp),this._currentKeyframe.set(v,x.kp);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(B,v,H,G){v&&this._previousKeyframe.set("easing",v);const Oe=G&&G.params||{},kt=function mi(F,B){const v=new Map;let H;return F.forEach(G=>{if("*"===G){H??=B.keys();for(let Oe of H)v.set(Oe,x.kp)}else for(let[Oe,kt]of G)v.set(Oe,kt)}),v}(B,this._globalTimelineStyles);for(let[At,oi]of kt){const ui=pt(oi,Oe,H);this._pendingStyles.set(At,ui),this._localTimelineStyles.has(At)||this._backFill.set(At,this._globalTimelineStyles.get(At)??x.kp),this._updateStyle(At,ui)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((B,v)=>{this._currentKeyframe.set(v,B)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((B,v)=>{this._currentKeyframe.has(v)||this._currentKeyframe.set(v,B)}))}snapshotCurrentStyles(){for(let[B,v]of this._localTimelineStyles)this._pendingStyles.set(B,v),this._updateStyle(B,v)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const B=[];for(let v in this._currentKeyframe)B.push(v);return B}mergeTimelineCollectedStyles(B){B._styleSummary.forEach((v,H)=>{const G=this._styleSummary.get(H);(!G||v.time>G.time)&&this._updateStyle(H,v.value)})}buildKeyframes(){this.applyStylesToKeyframe();const B=new Set,v=new Set,H=1===this._keyframes.size&&0===this.duration;let G=[];this._keyframes.forEach((At,oi)=>{const ui=new Map([...this._backFill,...At]);ui.forEach((Wi,Li)=>{Wi===x.FX?B.add(Li):Wi===x.kp&&v.add(Li)}),H||ui.set("offset",oi/this.duration),G.push(ui)});const Oe=[...B.values()],kt=[...v.values()];if(H){const At=G[0],oi=new Map(At);At.set("offset",0),oi.set("offset",1),G=[At,oi]}return ht(this.element,G,Oe,kt,this.duration,this.startTime,this.easing,!1)}}class Yi extends Ai{constructor(B,v,H,G,Oe,kt,At=!1){super(B,v,kt.delay),this.keyframes=H,this.preStyleProps=G,this.postStyleProps=Oe,this._stretchStartingKeyframe=At,this.timings={duration:kt.duration,delay:kt.delay,easing:kt.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let B=this.keyframes,{delay:v,duration:H,easing:G}=this.timings;if(this._stretchStartingKeyframe&&v){const Oe=[],kt=H+v,At=v/kt,oi=new Map(B[0]);oi.set("offset",0),Oe.push(oi);const ui=new Map(B[0]);ui.set("offset",Ft(At)),Oe.push(ui);const Wi=B.length-1;for(let Li=1;Li<=Wi;Li++){let fn=new Map(B[Li]);const Mn=fn.get("offset");fn.set("offset",Ft((v+Mn*H)/kt)),Oe.push(fn)}H=kt,v=0,G="",B=Oe}return ht(this.element,B,this.preStyleProps,this.postStyleProps,H,v,G,!0)}}function Ft(F,B=3){const v=Math.pow(10,B-1);return Math.round(F*v)/v}function gi(F,B,v,H,G,Oe,kt,At,oi,ui,Wi,Li,fn){return{type:0,element:F,triggerName:B,isRemovalTransition:G,fromState:v,fromStyles:Oe,toState:H,toStyles:kt,timelines:At,queriedElements:oi,preStyleProps:ui,postStyleProps:Wi,totalTime:Li,errors:fn}}const xi={};class Ni{constructor(B,v,H){this._triggerName=B,this.ast=v,this._stateStyles=H}match(B,v,H,G){return function On(F,B,v,H,G){return F.some(Oe=>Oe(B,v,H,G))}(this.ast.matchers,B,v,H,G)}buildStyles(B,v,H){let G=this._stateStyles.get("*");return void 0!==B&&(G=this._stateStyles.get(B?.toString())||G),G?G.buildStyles(v,H):new Map}build(B,v,H,G,Oe,kt,At,oi,ui,Wi){const Li=[],fn=this.ast.options&&this.ast.options.params||xi,Ki=this.buildStyles(H,At&&At.params||xi,Li),an=oi&&oi.params||xi,Xn=this.buildStyles(G,an,Li),gr=new Set,jr=new Map,da=new Map,rr="void"===G,Kr={params:ir(an,fn),delay:this.ast.options?.delay},kr=Wi?[]:Jn(B,v,this.ast.animation,Oe,kt,Ki,Xn,Kr,ui,Li);let Aa=0;return kr.forEach(ha=>{Aa=Math.max(ha.duration+ha.delay,Aa)}),Li.length?gi(v,this._triggerName,H,G,rr,Ki,Xn,[],[],jr,da,Aa,Li):(kr.forEach(ha=>{const Zs=ha.element,rd=se(jr,Zs,new Set);ha.preStyleProps.forEach(Ud=>rd.add(Ud));const G1=se(da,Zs,new Set);ha.postStyleProps.forEach(Ud=>G1.add(Ud)),Zs!==v&&gr.add(Zs)}),gi(v,this._triggerName,H,G,rr,Ki,Xn,kr,[...gr.values()],jr,da,Aa))}}function ir(F,B){const v={...B};return Object.entries(F).forEach(([H,G])=>{null!=G&&(v[H]=G)}),v}class gn{constructor(B,v,H){this.styles=B,this.defaultParams=v,this.normalizer=H}buildStyles(B,v){const H=new Map,G=ir(B,this.defaultParams);return this.styles.styles.forEach(Oe=>{"string"!=typeof Oe&&Oe.forEach((kt,At)=>{kt&&(kt=pt(kt,G,v));const oi=this.normalizer.normalizePropertyName(At,v);kt=this.normalizer.normalizeStyleValue(At,oi,kt,v),H.set(At,kt)})}),H}}class fr{constructor(B,v,H){this.name=B,this.ast=v,this._normalizer=H,this.transitionFactories=[],this.states=new Map,v.states.forEach(G=>{this.states.set(G.name,new gn(G.style,G.options&&G.options.params||{},H))}),wa(this.states,"true","1"),wa(this.states,"false","0"),v.transitions.forEach(G=>{this.transitionFactories.push(new Ni(B,G,this.states))}),this.fallbackTransition=function mr(F,B){return new Ni(F,{type:x.If.Transition,animation:{type:x.If.Sequence,steps:[],options:null},matchers:[(kt,At)=>!0],options:null,queryCount:0,depCount:0},B)}(B,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(B,v,H,G){return this.transitionFactories.find(kt=>kt.match(B,v,H,G))||null}matchStyles(B,v,H){return this.fallbackTransition.buildStyles(B,v,H)}}function wa(F,B,v){F.has(B)?F.has(v)||F.set(v,F.get(B)):F.has(v)&&F.set(B,F.get(v))}const Xa=new ii;class ds{constructor(B,v,H){this.bodyNode=B,this._driver=v,this._normalizer=H,this._animations=new Map,this._playersById=new Map,this.players=[]}register(B,v){const H=[],Oe=Hi(this._driver,v,H,[]);if(H.length)throw function m(){return new t.wOt(3503,!1)}();this._animations.set(B,Oe)}_buildPlayer(B,v,H){const G=B.element,Oe=Xe(this._normalizer,B.keyframes,v,H);return this._driver.animate(G,Oe,B.duration,B.delay,B.easing,[],!0)}create(B,v,H={}){const G=[],Oe=this._animations.get(B);let kt;const At=new Map;if(Oe?(kt=Jn(this._driver,v,Oe,nt,qt,new Map,new Map,H,Xa,G),kt.forEach(Wi=>{const Li=se(At,Wi.element,new Map);Wi.postStyleProps.forEach(fn=>Li.set(fn,null))})):(G.push(function d(){return new t.wOt(3300,!1)}()),kt=[]),G.length)throw function C(){return new t.wOt(3504,!1)}();At.forEach((Wi,Li)=>{Wi.forEach((fn,Mn)=>{Wi.set(Mn,this._driver.computeStyle(Li,Mn,x.kp))})});const ui=ze(kt.map(Wi=>{const Li=At.get(Wi.element);return this._buildPlayer(Wi,new Map,Li)}));return this._playersById.set(B,ui),ui.onDestroy(()=>this.destroy(B)),this.players.push(ui),ui}destroy(B){const v=this._getPlayer(B);v.destroy(),this._playersById.delete(B);const H=this.players.indexOf(v);H>=0&&this.players.splice(H,1)}_getPlayer(B){const v=this._playersById.get(B);if(!v)throw function A(){return new t.wOt(3301,!1)}();return v}listen(B,v,H,G){const Oe=X(v,"","","");return We(this._getPlayer(B),H,Oe,G),()=>{}}command(B,v,H,G){if("register"==H)return void this.register(B,G[0]);if("create"==H)return void this.create(B,v,G[0]||{});const Oe=this._getPlayer(B);switch(H){case"play":Oe.play();break;case"pause":Oe.pause();break;case"reset":Oe.reset();break;case"restart":Oe.restart();break;case"finish":Oe.finish();break;case"init":Oe.init();break;case"setPosition":Oe.setPosition(parseFloat(G[0]));break;case"destroy":this.destroy(B)}}}const qr="ng-animate-queued",Ma="ng-animate-disabled",za=[],Fr={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Ur={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},yr="__ng_removed";class Ya{get params(){return this.options.params}constructor(B,v=""){this.namespaceId=v;const H=B&&B.hasOwnProperty("value");if(this.value=function ea(F){return F??null}(H?B.value:B),H){const{value:Oe,...kt}=B;this.options=kt}else this.options={};this.options.params||(this.options.params={})}absorbOptions(B){const v=B.params;if(v){const H=this.options.params;Object.keys(v).forEach(G=>{null==H[G]&&(H[G]=v[G])})}}}const xr="void",ua=new Ya(xr);class hn{constructor(B,v,H){this.id=B,this.hostElement=v,this._engine=H,this.players=[],this._triggers=new Map,this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+B,zr(v,this._hostClassName)}listen(B,v,H,G){if(!this._triggers.has(v))throw function k(){return new t.wOt(3302,!1)}();if(null==H||0==H.length)throw function _(){return new t.wOt(3303,!1)}();if(!function Va(F){return"start"==F||"done"==F}(H))throw function a(){return new t.wOt(3400,!1)}();const Oe=se(this._elementListeners,B,[]),kt={name:v,phase:H,callback:G};Oe.push(kt);const At=se(this._engine.statesByElement,B,new Map);return At.has(v)||(zr(B,Nt),zr(B,Nt+"-"+v),At.set(v,ua)),()=>{this._engine.afterFlush(()=>{const oi=Oe.indexOf(kt);oi>=0&&Oe.splice(oi,1),this._triggers.has(v)||At.delete(v)})}}register(B,v){return!this._triggers.has(B)&&(this._triggers.set(B,v),!0)}_getTrigger(B){const v=this._triggers.get(B);if(!v)throw function b(){return new t.wOt(3401,!1)}();return v}trigger(B,v,H,G=!0){const Oe=this._getTrigger(v),kt=new Ba(this.id,v,B);let At=this._engine.statesByElement.get(B);At||(zr(B,Nt),zr(B,Nt+"-"+v),this._engine.statesByElement.set(B,At=new Map));let oi=At.get(v);const ui=new Ya(H,this.id);if(!(H&&H.hasOwnProperty("value"))&&oi&&ui.absorbOptions(oi.options),At.set(v,ui),oi||(oi=ua),ui.value!==xr&&oi.value===ui.value){if(!function Io(F,B){const v=Object.keys(F),H=Object.keys(B);if(v.length!=H.length)return!1;for(let G=0;G{Te(B,Xn),Se(B,gr)})}return}const fn=se(this._engine.playersByElement,B,[]);fn.forEach(an=>{an.namespaceId==this.id&&an.triggerName==v&&an.queued&&an.destroy()});let Mn=Oe.matchTransition(oi.value,ui.value,B,ui.params),Ki=!1;if(!Mn){if(!G)return;Mn=Oe.fallbackTransition,Ki=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:B,triggerName:v,transition:Mn,fromState:oi,toState:ui,player:kt,isFallbackTransition:Ki}),Ki||(zr(B,qr),kt.onStart(()=>{Ea(B,qr)})),kt.onDone(()=>{let an=this.players.indexOf(kt);an>=0&&this.players.splice(an,1);const Xn=this._engine.playersByElement.get(B);if(Xn){let gr=Xn.indexOf(kt);gr>=0&&Xn.splice(gr,1)}}),this.players.push(kt),fn.push(kt),kt}deregister(B){this._triggers.delete(B),this._engine.statesByElement.forEach(v=>v.delete(B)),this._elementListeners.forEach((v,H)=>{this._elementListeners.set(H,v.filter(G=>G.name!=B))})}clearElementCache(B){this._engine.statesByElement.delete(B),this._elementListeners.delete(B);const v=this._engine.playersByElement.get(B);v&&(v.forEach(H=>H.destroy()),this._engine.playersByElement.delete(B))}_signalRemovalForInnerTriggers(B,v){const H=this._engine.driver.query(B,yt,!0);H.forEach(G=>{if(G[yr])return;const Oe=this._engine.fetchNamespacesByElement(G);Oe.size?Oe.forEach(kt=>kt.triggerLeaveAnimation(G,v,!1,!0)):this.clearElementCache(G)}),this._engine.afterFlushAnimationsDone(()=>H.forEach(G=>this.clearElementCache(G)))}triggerLeaveAnimation(B,v,H,G){const Oe=this._engine.statesByElement.get(B),kt=new Map;if(Oe){const At=[];if(Oe.forEach((oi,ui)=>{if(kt.set(ui,oi.value),this._triggers.has(ui)){const Wi=this.trigger(B,ui,xr,G);Wi&&At.push(Wi)}}),At.length)return this._engine.markElementAsRemoved(this.id,B,!0,v,kt),H&&ze(At).onDone(()=>this._engine.processLeaveNode(B)),!0}return!1}prepareLeaveAnimationListeners(B){const v=this._elementListeners.get(B),H=this._engine.statesByElement.get(B);if(v&&H){const G=new Set;v.forEach(Oe=>{const kt=Oe.name;if(G.has(kt))return;G.add(kt);const oi=this._triggers.get(kt).fallbackTransition,ui=H.get(kt)||ua,Wi=new Ya(xr),Li=new Ba(this.id,kt,B);this._engine.totalQueuedPlayers++,this._queue.push({element:B,triggerName:kt,transition:oi,fromState:ui,toState:Wi,player:Li,isFallbackTransition:!0})})}}removeNode(B,v){const H=this._engine;if(B.childElementCount&&this._signalRemovalForInnerTriggers(B,v),this.triggerLeaveAnimation(B,v,!0))return;let G=!1;if(H.totalAnimations){const Oe=H.players.length?H.playersByQueriedElement.get(B):[];if(Oe&&Oe.length)G=!0;else{let kt=B;for(;kt=kt.parentNode;)if(H.statesByElement.get(kt)){G=!0;break}}}if(this.prepareLeaveAnimationListeners(B),G)H.markElementAsRemoved(this.id,B,!1,v);else{const Oe=B[yr];(!Oe||Oe===Fr)&&(H.afterFlush(()=>this.clearElementCache(B)),H.destroyInnerAnimations(B),H._onRemovalComplete(B,v))}}insertNode(B,v){zr(B,this._hostClassName)}drainQueuedTransitions(B){const v=[];return this._queue.forEach(H=>{const G=H.player;if(G.destroyed)return;const Oe=H.element,kt=this._elementListeners.get(Oe);kt&&kt.forEach(At=>{if(At.name==H.triggerName){const oi=X(Oe,H.triggerName,H.fromState.value,H.toState.value);oi._data=B,We(H.player,At.phase,oi,At.callback)}}),G.markedForDestroy?this._engine.afterFlush(()=>{G.destroy()}):v.push(H)}),this._queue=[],v.sort((H,G)=>{const Oe=H.transition.ast.depCount,kt=G.transition.ast.depCount;return 0==Oe||0==kt?Oe-kt:this._engine.driver.containsElement(H.element,G.element)?1:-1})}destroy(B){this.players.forEach(v=>v.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,B)}}class Do{_onRemovalComplete(B,v){this.onRemovalComplete(B,v)}constructor(B,v,H){this.bodyNode=B,this.driver=v,this._normalizer=H,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(G,Oe)=>{}}get queuedPlayers(){const B=[];return this._namespaceList.forEach(v=>{v.players.forEach(H=>{H.queued&&B.push(H)})}),B}createNamespace(B,v){const H=new hn(B,v,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,v)?this._balanceNamespaceList(H,v):(this.newHostElements.set(v,H),this.collectEnterElement(v)),this._namespaceLookup[B]=H}_balanceNamespaceList(B,v){const H=this._namespaceList,G=this.namespacesByHostElement;if(H.length-1>=0){let kt=!1,At=this.driver.getParentElement(v);for(;At;){const oi=G.get(At);if(oi){const ui=H.indexOf(oi);H.splice(ui+1,0,B),kt=!0;break}At=this.driver.getParentElement(At)}kt||H.unshift(B)}else H.push(B);return G.set(v,B),B}register(B,v){let H=this._namespaceLookup[B];return H||(H=this.createNamespace(B,v)),H}registerTrigger(B,v,H){let G=this._namespaceLookup[B];G&&G.register(v,H)&&this.totalAnimations++}destroy(B,v){B&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const H=this._fetchNamespace(B);this.namespacesByHostElement.delete(H.hostElement);const G=this._namespaceList.indexOf(H);G>=0&&this._namespaceList.splice(G,1),H.destroy(v),delete this._namespaceLookup[B]}))}_fetchNamespace(B){return this._namespaceLookup[B]}fetchNamespacesByElement(B){const v=new Set,H=this.statesByElement.get(B);if(H)for(let G of H.values())if(G.namespaceId){const Oe=this._fetchNamespace(G.namespaceId);Oe&&v.add(Oe)}return v}trigger(B,v,H,G){if(_o(v)){const Oe=this._fetchNamespace(B);if(Oe)return Oe.trigger(v,H,G),!0}return!1}insertNode(B,v,H,G){if(!_o(v))return;const Oe=v[yr];if(Oe&&Oe.setForRemoval){Oe.setForRemoval=!1,Oe.setForMove=!0;const kt=this.collectedLeaveElements.indexOf(v);kt>=0&&this.collectedLeaveElements.splice(kt,1)}if(B){const kt=this._fetchNamespace(B);kt&&kt.insertNode(v,H)}G&&this.collectEnterElement(v)}collectEnterElement(B){this.collectedEnterElements.push(B)}markElementAsDisabled(B,v){v?this.disabledNodes.has(B)||(this.disabledNodes.add(B),zr(B,Ma)):this.disabledNodes.has(B)&&(this.disabledNodes.delete(B),Ea(B,Ma))}removeNode(B,v,H){if(_o(v)){const G=B?this._fetchNamespace(B):null;G?G.removeNode(v,H):this.markElementAsRemoved(B,v,!1,H);const Oe=this.namespacesByHostElement.get(v);Oe&&Oe.id!==B&&Oe.removeNode(v,H)}else this._onRemovalComplete(v,H)}markElementAsRemoved(B,v,H,G,Oe){this.collectedLeaveElements.push(v),v[yr]={namespaceId:B,setForRemoval:G,hasAnimation:H,removedBeforeQueried:!1,previousTriggersValues:Oe}}listen(B,v,H,G,Oe){return _o(v)?this._fetchNamespace(B).listen(v,H,G,Oe):()=>{}}_buildInstruction(B,v,H,G,Oe){return B.transition.build(this.driver,B.element,B.fromState.value,B.toState.value,H,G,B.fromState.options,B.toState.options,v,Oe)}destroyInnerAnimations(B){let v=this.driver.query(B,yt,!0);v.forEach(H=>this.destroyActiveAnimationsForElement(H)),0!=this.playersByQueriedElement.size&&(v=this.driver.query(B,Je,!0),v.forEach(H=>this.finishActiveQueriedAnimationOnElement(H)))}destroyActiveAnimationsForElement(B){const v=this.playersByElement.get(B);v&&v.forEach(H=>{H.queued?H.markedForDestroy=!0:H.destroy()})}finishActiveQueriedAnimationOnElement(B){const v=this.playersByQueriedElement.get(B);v&&v.forEach(H=>H.finish())}whenRenderingDone(){return new Promise(B=>{if(this.players.length)return ze(this.players).onDone(()=>B());B()})}processLeaveNode(B){const v=B[yr];if(v&&v.setForRemoval){if(B[yr]=Fr,v.namespaceId){this.destroyInnerAnimations(B);const H=this._fetchNamespace(v.namespaceId);H&&H.clearElementCache(B)}this._onRemovalComplete(B,v.setForRemoval)}B.classList?.contains(Ma)&&this.markElementAsDisabled(B,!1),this.driver.query(B,".ng-animate-disabled",!0).forEach(H=>{this.markElementAsDisabled(H,!1)})}flush(B=-1){let v=[];if(this.newHostElements.size&&(this.newHostElements.forEach((H,G)=>this._balanceNamespaceList(H,G)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let H=0;HH()),this._flushFns=[],this._whenQuietFns.length){const H=this._whenQuietFns;this._whenQuietFns=[],v.length?ze(v).onDone(()=>{H.forEach(G=>G())}):H.forEach(G=>G())}}reportError(B){throw function z(){return new t.wOt(3402,!1)}()}_flushAnimations(B,v){const H=new ii,G=[],Oe=new Map,kt=[],At=new Map,oi=new Map,ui=new Map,Wi=new Set;this.disabledNodes.forEach(An=>{Wi.add(An);const Gn=this.driver.query(An,".ng-animate-queued",!0);for(let qn=0;qn{const qn=nt+an++;Ki.set(Gn,qn),An.forEach(Pr=>zr(Pr,qn))});const Xn=[],gr=new Set,jr=new Set;for(let An=0;Angr.add(Pr)):jr.add(Gn))}const da=new Map,rr=vo(fn,Array.from(gr));rr.forEach((An,Gn)=>{const qn=qt+an++;da.set(Gn,qn),An.forEach(Pr=>zr(Pr,qn))}),B.push(()=>{Mn.forEach((An,Gn)=>{const qn=Ki.get(Gn);An.forEach(Pr=>Ea(Pr,qn))}),rr.forEach((An,Gn)=>{const qn=da.get(Gn);An.forEach(Pr=>Ea(Pr,qn))}),Xn.forEach(An=>{this.processLeaveNode(An)})});const Kr=[],kr=[];for(let An=this._namespaceList.length-1;An>=0;An--)this._namespaceList[An].drainQueuedTransitions(v).forEach(qn=>{const Pr=qn.player,Mo=qn.element;if(Kr.push(Pr),this.collectedEnterElements.length){const as=Mo[yr];if(as&&as.setForMove){if(as.previousTriggersValues&&as.previousTriggersValues.has(qn.triggerName)){const Qc=as.previousTriggersValues.get(qn.triggerName),Xo=this.statesByElement.get(qn.element);if(Xo&&Xo.has(qn.triggerName)){const Yo=Xo.get(qn.triggerName);Yo.value=Qc,Xo.set(qn.triggerName,Yo)}}return void Pr.destroy()}}const Ss=!Li||!this.driver.containsElement(Li,Mo),Wo=da.get(Mo),$c=Ki.get(Mo),Fa=this._buildInstruction(qn,H,$c,Wo,Ss);if(Fa.errors&&Fa.errors.length)return void kr.push(Fa);if(Ss)return Pr.onStart(()=>Te(Mo,Fa.fromStyles)),Pr.onDestroy(()=>Se(Mo,Fa.toStyles)),void G.push(Pr);if(qn.isFallbackTransition)return Pr.onStart(()=>Te(Mo,Fa.fromStyles)),Pr.onDestroy(()=>Se(Mo,Fa.toStyles)),void G.push(Pr);const Gh=[];Fa.timelines.forEach(as=>{as.stretchStartingKeyframe=!0,this.disabledNodes.has(as.element)||Gh.push(as)}),Fa.timelines=Gh,H.append(Mo,Fa.timelines),kt.push({instruction:Fa,player:Pr,element:Mo}),Fa.queriedElements.forEach(as=>se(At,as,[]).push(Pr)),Fa.preStyleProps.forEach((as,Qc)=>{if(as.size){let Xo=oi.get(Qc);Xo||oi.set(Qc,Xo=new Set),as.forEach((Yo,os)=>Xo.add(os))}}),Fa.postStyleProps.forEach((as,Qc)=>{let Xo=ui.get(Qc);Xo||ui.set(Qc,Xo=new Set),as.forEach((Yo,os)=>Xo.add(os))})});if(kr.length){const An=[];kr.forEach(Gn=>{An.push(function q(){return new t.wOt(3505,!1)}())}),Kr.forEach(Gn=>Gn.destroy()),this.reportError(An)}const Aa=new Map,ha=new Map;kt.forEach(An=>{const Gn=An.element;H.has(Gn)&&(ha.set(Gn,Gn),this._beforeAnimationBuild(An.player.namespaceId,An.instruction,Aa))}),G.forEach(An=>{const Gn=An.element;this._getPreviousPlayers(Gn,!1,An.namespaceId,An.triggerName,null).forEach(Pr=>{se(Aa,Gn,[]).push(Pr),Pr.destroy()})});const Zs=Xn.filter(An=>Ua(An,oi,ui)),rd=new Map;fo(rd,this.driver,jr,ui,x.kp).forEach(An=>{Ua(An,oi,ui)&&Zs.push(An)});const Ud=new Map;Mn.forEach((An,Gn)=>{fo(Ud,this.driver,new Set(An),oi,x.FX)}),Zs.forEach(An=>{const Gn=rd.get(An),qn=Ud.get(An);rd.set(An,new Map([...Gn?.entries()??[],...qn?.entries()??[]]))});const Zf=[],H1=[],Jf={};kt.forEach(An=>{const{element:Gn,player:qn,instruction:Pr}=An;if(H.has(Gn)){if(Wi.has(Gn))return qn.onDestroy(()=>Se(Gn,Pr.toStyles)),qn.disabled=!0,qn.overrideTotalTime(Pr.totalTime),void G.push(qn);let Mo=Jf;if(ha.size>1){let Wo=Gn;const $c=[];for(;Wo=Wo.parentNode;){const Fa=ha.get(Wo);if(Fa){Mo=Fa;break}$c.push(Wo)}$c.forEach(Fa=>ha.set(Fa,Mo))}const Ss=this._buildAnimation(qn.namespaceId,Pr,Aa,Oe,Ud,rd);if(qn.setRealPlayer(Ss),Mo===Jf)Zf.push(qn);else{const Wo=this.playersByElement.get(Mo);Wo&&Wo.length&&(qn.parentPlayer=ze(Wo)),G.push(qn)}}else Te(Gn,Pr.fromStyles),qn.onDestroy(()=>Se(Gn,Pr.toStyles)),H1.push(qn),Wi.has(Gn)&&G.push(qn)}),H1.forEach(An=>{const Gn=Oe.get(An.element);if(Gn&&Gn.length){const qn=ze(Gn);An.setRealPlayer(qn)}}),G.forEach(An=>{An.parentPlayer?An.syncPlayerEvents(An.parentPlayer):An.destroy()});for(let An=0;An!Ss.destroyed);Mo.length?fa(this,Gn,Mo):this.processLeaveNode(Gn)}return Xn.length=0,Zf.forEach(An=>{this.players.push(An),An.onDone(()=>{An.destroy();const Gn=this.players.indexOf(An);this.players.splice(Gn,1)}),An.play()}),Zf}afterFlush(B){this._flushFns.push(B)}afterFlushAnimationsDone(B){this._whenQuietFns.push(B)}_getPreviousPlayers(B,v,H,G,Oe){let kt=[];if(v){const At=this.playersByQueriedElement.get(B);At&&(kt=At)}else{const At=this.playersByElement.get(B);if(At){const oi=!Oe||Oe==xr;At.forEach(ui=>{ui.queued||!oi&&ui.triggerName!=G||kt.push(ui)})}}return(H||G)&&(kt=kt.filter(At=>!(H&&H!=At.namespaceId||G&&G!=At.triggerName))),kt}_beforeAnimationBuild(B,v,H){const Oe=v.element,kt=v.isRemovalTransition?void 0:B,At=v.isRemovalTransition?void 0:v.triggerName;for(const oi of v.timelines){const ui=oi.element,Wi=ui!==Oe,Li=se(H,ui,[]);this._getPreviousPlayers(ui,Wi,kt,At,v.toState).forEach(Mn=>{const Ki=Mn.getRealPlayer();Ki.beforeDestroy&&Ki.beforeDestroy(),Mn.destroy(),Li.push(Mn)})}Te(Oe,v.fromStyles)}_buildAnimation(B,v,H,G,Oe,kt){const At=v.triggerName,oi=v.element,ui=[],Wi=new Set,Li=new Set,fn=v.timelines.map(Ki=>{const an=Ki.element;Wi.add(an);const Xn=an[yr];if(Xn&&Xn.removedBeforeQueried)return new x.sf(Ki.duration,Ki.delay);const gr=an!==oi,jr=function Bs(F){const B=[];return Ar(F,B),B}((H.get(an)||za).map(Aa=>Aa.getRealPlayer())).filter(Aa=>!!Aa.element&&Aa.element===an),da=Oe.get(an),rr=kt.get(an),Kr=Xe(this._normalizer,Ki.keyframes,da,rr),kr=this._buildPlayer(Ki,Kr,jr);if(Ki.subTimeline&&G&&Li.add(an),gr){const Aa=new Ba(B,At,an);Aa.setRealPlayer(kr),ui.push(Aa)}return kr});ui.forEach(Ki=>{se(this.playersByQueriedElement,Ki.element,[]).push(Ki),Ki.onDone(()=>function Ao(F,B,v){let H=F.get(B);if(H){if(H.length){const G=H.indexOf(v);H.splice(G,1)}0==H.length&&F.delete(B)}return H}(this.playersByQueriedElement,Ki.element,Ki))}),Wi.forEach(Ki=>zr(Ki,jt));const Mn=ze(fn);return Mn.onDestroy(()=>{Wi.forEach(Ki=>Ea(Ki,jt)),Se(oi,v.toStyles)}),Li.forEach(Ki=>{se(G,Ki,[]).push(Mn)}),Mn}_buildPlayer(B,v,H){return v.length>0?this.driver.animate(B.element,v,B.duration,B.delay,B.easing,H):new x.sf(B.duration,B.delay)}}class Ba{constructor(B,v,H){this.namespaceId=B,this.triggerName=v,this.element=H,this._player=new x.sf,this._containsRealPlayer=!1,this._queuedCallbacks=new Map,this.destroyed=!1,this.parentPlayer=null,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(B){this._containsRealPlayer||(this._player=B,this._queuedCallbacks.forEach((v,H)=>{v.forEach(G=>We(B,H,void 0,G))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(B.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(B){this.totalTime=B}syncPlayerEvents(B){const v=this._player;v.triggerCallback&&B.onStart(()=>v.triggerCallback("start")),B.onDone(()=>this.finish()),B.onDestroy(()=>this.destroy())}_queueEvent(B,v){se(this._queuedCallbacks,B,[]).push(v)}onDone(B){this.queued&&this._queueEvent("done",B),this._player.onDone(B)}onStart(B){this.queued&&this._queueEvent("start",B),this._player.onStart(B)}onDestroy(B){this.queued&&this._queueEvent("destroy",B),this._player.onDestroy(B)}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(B){this.queued||this._player.setPosition(B)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(B){const v=this._player;v.triggerCallback&&v.triggerCallback(B)}}function _o(F){return F&&1===F.nodeType}function ko(F,B){const v=F.style.display;return F.style.display=B??"none",v}function fo(F,B,v,H,G){const Oe=[];v.forEach(oi=>Oe.push(ko(oi)));const kt=[];H.forEach((oi,ui)=>{const Wi=new Map;oi.forEach(Li=>{const fn=B.computeStyle(ui,Li,G);Wi.set(Li,fn),(!fn||0==fn.length)&&(ui[yr]=Ur,kt.push(ui))}),F.set(ui,Wi)});let At=0;return v.forEach(oi=>ko(oi,Oe[At++])),kt}function vo(F,B){const v=new Map;if(F.forEach(At=>v.set(At,[])),0==B.length)return v;const G=new Set(B),Oe=new Map;function kt(At){if(!At)return 1;let oi=Oe.get(At);if(oi)return oi;const ui=At.parentNode;return oi=v.has(ui)?ui:G.has(ui)?1:kt(ui),Oe.set(At,oi),oi}return B.forEach(At=>{const oi=kt(At);1!==oi&&v.get(oi).push(At)}),v}function zr(F,B){F.classList?.add(B)}function Ea(F,B){F.classList?.remove(B)}function fa(F,B,v){ze(v).onDone(()=>F.processLeaveNode(B))}function Ar(F,B){for(let v=0;vG.add(Oe)):B.set(F,H),v.delete(F),!0}class ma{constructor(B,v,H){this._driver=v,this._normalizer=H,this._triggerCache={},this.onRemovalComplete=(G,Oe)=>{},this._transitionEngine=new Do(B.body,v,H),this._timelineEngine=new ds(B.body,v,H),this._transitionEngine.onRemovalComplete=(G,Oe)=>this.onRemovalComplete(G,Oe)}registerTrigger(B,v,H,G,Oe){const kt=B+"-"+G;let At=this._triggerCache[kt];if(!At){const oi=[],Wi=Hi(this._driver,Oe,oi,[]);if(oi.length)throw function n(){return new t.wOt(3404,!1)}();At=function Xr(F,B,v){return new fr(F,B,v)}(G,Wi,this._normalizer),this._triggerCache[kt]=At}this._transitionEngine.registerTrigger(v,G,At)}register(B,v){this._transitionEngine.register(B,v)}destroy(B,v){this._transitionEngine.destroy(B,v)}onInsert(B,v,H,G){this._transitionEngine.insertNode(B,v,H,G)}onRemove(B,v,H){this._transitionEngine.removeNode(B,v,H)}disableAnimations(B,v){this._transitionEngine.markElementAsDisabled(B,v)}process(B,v,H,G){if("@"==H.charAt(0)){const[Oe,kt]=ae(H);this._timelineEngine.command(Oe,v,kt,G)}else this._transitionEngine.trigger(B,v,H,G)}listen(B,v,H,G,Oe){if("@"==H.charAt(0)){const[kt,At]=ae(H);return this._timelineEngine.listen(kt,v,At,Oe)}return this._transitionEngine.listen(B,v,H,G,Oe)}flush(B=-1){this._transitionEngine.flush(B)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(B){this._transitionEngine.afterFlushAnimationsDone(B)}}class ta{static{this.initialStylesByElement=new WeakMap}constructor(B,v,H){this._element=B,this._startStyles=v,this._endStyles=H,this._state=0;let G=ta.initialStylesByElement.get(B);G||ta.initialStylesByElement.set(B,G=new Map),this._initialStyles=G}start(){this._state<1&&(this._startStyles&&Se(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Se(this._element,this._initialStyles),this._endStyles&&(Se(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(ta.initialStylesByElement.delete(this._element),this._startStyles&&(Te(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Te(this._element,this._endStyles),this._endStyles=null),Se(this._element,this._initialStyles),this._state=3)}}function Ro(F){let B=null;return F.forEach((v,H)=>{(function As(F){return"display"===F||"position"===F})(H)&&(B=B||new Map,B.set(H,v))}),B}class bo{constructor(B,v,H,G){this.element=B,this.keyframes=v,this.options=H,this._specialStyles=G,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this._originalOnDoneFns=[],this._originalOnStartFns=[],this.time=0,this.parentPlayer=null,this.currentSnapshot=new Map,this._duration=H.duration,this._delay=H.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(B=>B()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const B=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,B,this.options),this._finalKeyframe=B.length?B[B.length-1]:new Map;const v=()=>this._onFinish();this.domPlayer.addEventListener("finish",v),this.onDestroy(()=>{this.domPlayer.removeEventListener("finish",v)})}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(B){const v=[];return B.forEach(H=>{v.push(Object.fromEntries(H))}),v}_triggerWebAnimation(B,v,H){return B.animate(this._convertKeyframesToObject(v),H)}onStart(B){this._originalOnStartFns.push(B),this._onStartFns.push(B)}onDone(B){this._originalOnDoneFns.push(B),this._onDoneFns.push(B)}onDestroy(B){this._onDestroyFns.push(B)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(B=>B()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),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&&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(B=>B()),this._onDestroyFns=[])}setPosition(B){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=B*this.time}getPosition(){return+(this.domPlayer.currentTime??0)/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const B=new Map;this.hasStarted()&&this._finalKeyframe.forEach((H,G)=>{"offset"!==G&&B.set(G,this._finished?H:pi(this.element,G))}),this.currentSnapshot=B}triggerCallback(B){const v="start"===B?this._onStartFns:this._onDoneFns;v.forEach(H=>H()),v.length=0}}class $r{validateStyleProperty(B){return!0}validateAnimatableStyleProperty(B){return!0}containsElement(B,v){return ct(B,v)}getParentElement(B){return Ie(B)}query(B,v,H){return dt(B,v,H)}computeStyle(B,v,H){return pi(B,v)}animate(B,v,H,G,Oe,kt=[]){const oi={duration:H,delay:G,fill:0==G?"both":"forwards"};Oe&&(oi.easing=Oe);const ui=new Map,Wi=kt.filter(Mn=>Mn instanceof bo);(function qe(F,B){return 0===F||0===B})(H,G)&&Wi.forEach(Mn=>{Mn.currentSnapshot.forEach((Ki,an)=>ui.set(an,Ki))});let Li=function Tt(F){return F.length?F[0]instanceof Map?F:F.map(B=>new Map(Object.entries(B))):[]}(v).map(Mn=>new Map(Mn));Li=function at(F,B,v){if(v.size&&B.length){let H=B[0],G=[];if(v.forEach((Oe,kt)=>{H.has(kt)||G.push(kt),H.set(kt,Oe)}),G.length)for(let Oe=1;Oekt.set(At,pi(F,At)))}}return B}(B,Li,ui);const fn=function no(F,B){let v=null,H=null;return Array.isArray(B)&&B.length?(v=Ro(B[0]),B.length>1&&(H=Ro(B[B.length-1]))):B instanceof Map&&(v=Ro(B)),v||H?new ta(F,v,H):null}(B,Li);return new bo(B,Li,oi,fn)}}const Ka="@.disabled";class Ga{constructor(B,v,H,G){this.namespaceId=B,this.delegate=v,this.engine=H,this._onDestroy=G,this.\u0275type=0}get data(){return this.delegate.data}destroyNode(B){this.delegate.destroyNode?.(B)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(B,v){return this.delegate.createElement(B,v)}createComment(B){return this.delegate.createComment(B)}createText(B){return this.delegate.createText(B)}appendChild(B,v){this.delegate.appendChild(B,v),this.engine.onInsert(this.namespaceId,v,B,!1)}insertBefore(B,v,H,G=!0){this.delegate.insertBefore(B,v,H),this.engine.onInsert(this.namespaceId,v,B,G)}removeChild(B,v,H){this.parentNode(v)&&this.engine.onRemove(this.namespaceId,v,this.delegate)}selectRootElement(B,v){return this.delegate.selectRootElement(B,v)}parentNode(B){return this.delegate.parentNode(B)}nextSibling(B){return this.delegate.nextSibling(B)}setAttribute(B,v,H,G){this.delegate.setAttribute(B,v,H,G)}removeAttribute(B,v,H){this.delegate.removeAttribute(B,v,H)}addClass(B,v){this.delegate.addClass(B,v)}removeClass(B,v){this.delegate.removeClass(B,v)}setStyle(B,v,H,G){this.delegate.setStyle(B,v,H,G)}removeStyle(B,v,H){this.delegate.removeStyle(B,v,H)}setProperty(B,v,H){"@"==v.charAt(0)&&v==Ka?this.disableAnimations(B,!!H):this.delegate.setProperty(B,v,H)}setValue(B,v){this.delegate.setValue(B,v)}listen(B,v,H){return this.delegate.listen(B,v,H)}disableAnimations(B,v){this.engine.disableAnimations(B,v)}}class sr extends Ga{constructor(B,v,H,G,Oe){super(v,H,G,Oe),this.factory=B,this.namespaceId=v}setProperty(B,v,H){"@"==v.charAt(0)?"."==v.charAt(1)&&v==Ka?this.disableAnimations(B,H=void 0===H||!!H):this.engine.process(this.namespaceId,B,v.slice(1),H):this.delegate.setProperty(B,v,H)}listen(B,v,H){if("@"==v.charAt(0)){const G=function ia(F){switch(F){case"body":return document.body;case"document":return document;case"window":return window;default:return F}}(B);let Oe=v.slice(1),kt="";return"@"!=Oe.charAt(0)&&([Oe,kt]=function Bo(F){const B=F.indexOf(".");return[F.substring(0,B),F.slice(B+1)]}(Oe)),this.engine.listen(this.namespaceId,G,Oe,kt,At=>{this.factory.scheduleListenerCallback(At._data||-1,H,At)})}return this.delegate.listen(B,v,H)}}class Ot{constructor(B,v,H){this.delegate=B,this.engine=v,this._zone=H,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,v.onRemovalComplete=(G,Oe)=>{Oe?.removeChild(null,G)}}createRenderer(B,v){const G=this.delegate.createRenderer(B,v);if(!B||!v?.data?.animation){const ui=this._rendererCache;let Wi=ui.get(G);return Wi||(Wi=new Ga("",G,this.engine,()=>ui.delete(G)),ui.set(G,Wi)),Wi}const Oe=v.id,kt=v.id+"-"+this._currentId;this._currentId++,this.engine.register(kt,B);const At=ui=>{Array.isArray(ui)?ui.forEach(At):this.engine.registerTrigger(Oe,kt,B,ui.name,ui)};return v.data.animation.forEach(At),new sr(this,kt,G,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(B,v,H){if(B>=0&&Bv(H));const G=this._animationCallbacksBuffer;0==G.length&&queueMicrotask(()=>{this._zone.run(()=>{G.forEach(Oe=>{const[kt,At]=Oe;kt(At)}),this._animationCallbacksBuffer=[]})}),G.push([v,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()}}var si=g(177);const Ji=[{provide:we,useFactory:function ni(){return new Kt}},{provide:ma,useClass:(()=>{class F extends ma{constructor(v,H,G){super(v,H,G)}ngOnDestroy(){this.flush()}static{this.\u0275fac=function(H){return new(H||F)(t.KVO(si.qQ),t.KVO(_e),t.KVO(we))}}static{this.\u0275prov=t.jDH({token:F,factory:F.\u0275fac})}}return F})()},{provide:t._9s,useFactory:function Ei(F,B,v){return new Ot(F,B,v)},deps:[e.B7,ma,t.SKi]}],cr=[{provide:_e,useFactory:()=>new $r},{provide:t.bc$,useValue:"BrowserAnimations"},...Ji],ga=[{provide:_e,useClass:ve},{provide:t.bc$,useValue:"NoopAnimations"},...Ji];let Ra=(()=>{class F{static withConfig(v){return{ngModule:F,providers:v.disableAnimations?ga:cr}}static{this.\u0275fac=function(H){return new(H||F)}}static{this.\u0275mod=t.$C({type:F})}static{this.\u0275inj=t.G2t({providers:cr,imports:[e.Bb]})}}return F})();var Vo=g(1626),Gr=g(9327),Pi=g(9640),it=g(4054),ut=g(983),Ve=g(1985),Dt=g(7673),ai=g(7786),vn=g(7242),er=g(2771),Oo=g(7647),Cr=g(5964),Qa=g(6354),_c=g(274),ks=g(3236),Uo=g(8211),Vs=g(9974),nc=g(8750),Jo=g(1853),us=g(4360),vs=g(5225);const Us=(0,Jo.L)(F=>function(v=null){F(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=v});function na(F){throw new Us(F)}var Nr=g(152),ca=g(9437),_a=g(6697),dn=g(6977),Is=g(5558),qo=g(5245),vc=g(941),rc=g(3993),xo=g(2816),md=g(9079);const bs="PERFORM_ACTION",el="ROLLBACK",Hs="TOGGLE_ACTION",Ws="JUMP_TO_STATE",es="JUMP_TO_ACTION",Pc="IMPORT_STATE",Xs="LOCK_CHANGES",oc="PAUSE_RECORDING";class ys{constructor(B,v){if(this.action=B,this.timestamp=v,this.type=bs,typeof B.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class sc{constructor(){this.type="REFRESH"}}class zc{constructor(B){this.timestamp=B,this.type="RESET"}}class Za{constructor(B){this.timestamp=B,this.type=el}}class Rs{constructor(B){this.timestamp=B,this.type="COMMIT"}}class bc{constructor(){this.type="SWEEP"}}class Ys{constructor(B){this.id=B,this.type=Hs}}class mt{constructor(B){this.index=B,this.type=Ws}}class Vt{constructor(B){this.actionId=B,this.type=es}}class Ht{constructor(B){this.nextLiftedState=B,this.type=Pc}}class ei{constructor(B){this.status=B,this.type=Xs}}class ci{constructor(B){this.status=B,this.type=oc}}const Oi=new t.nKC("@ngrx/store-devtools Options"),ji=new t.nKC("@ngrx/store-devtools Initial Config");function pn(){return null}const _n="NgRx Store DevTools";function Wn(F){const B={maxAge:!1,monitor:pn,actionSanitizer:void 0,stateSanitizer:void 0,name:_n,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},v="function"==typeof F?F():F,G=v.features||!!v.logOnly&&{pause:!0,export:!0,test:!0}||B.features;!0===G.import&&(G.import="custom");const Oe=Object.assign({},B,{features:G},v);if(Oe.maxAge&&Oe.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${Oe.maxAge}`);return Oe}function xe(F,B){return F.filter(v=>B.indexOf(v)<0)}function bt(F){const{computedStates:B,currentStateIndex:v}=F;if(v>=B.length){const{state:G}=B[B.length-1];return G}const{state:H}=B[v];return H}function gt(F){return new ys(F,+Date.now())}function Zt(F,B){return Object.keys(B).reduce((v,H)=>{const G=Number(H);return v[G]=Si(F,B[G],G),v},{})}function Si(F,B,v){return{...B,action:F(B.action,v)}}function Ii(F,B){return B.map((v,H)=>({state:on(F,v.state,H),error:v.error}))}function on(F,B,v){return F(B,v)}function Kn(F){return F.predicate||F.actionsSafelist||F.actionsBlocklist}function pr(F,B,v,H,G){const Oe=v&&!v(F,B.action),kt=H&&!B.action.type.match(H.map(oi=>Fn(oi)).join("|")),At=G&&B.action.type.match(G.map(oi=>Fn(oi)).join("|"));return Oe||kt||At}function Fn(F){return F.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Sr(F){return{ngZone:F?(0,t.WQX)(t.SKi):null,connectInZone:F}}let Dn=(()=>{class F extends Pi.SS{static{this.\u0275fac=(()=>{let v;return function(G){return(v||(v=t.xGo(F)))(G||F)}})()}static{this.\u0275prov=t.jDH({token:F,factory:F.\u0275fac})}}return F})();const bn=new t.nKC("@ngrx/store-devtools Redux Devtools Extension");let Tr=(()=>{class F{constructor(v,H,G){this.config=H,this.dispatcher=G,this.zoneConfig=Sr(this.config.connectInZone),this.devtoolsExtension=v,this.createActionStreams()}notify(v,H){if(this.devtoolsExtension)if(v.type===bs){if(H.isLocked||H.isPaused)return;const G=bt(H);if(Kn(this.config)&&pr(G,v,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const Oe=this.config.stateSanitizer?on(this.config.stateSanitizer,G,H.currentStateIndex):G,kt=this.config.actionSanitizer?Si(this.config.actionSanitizer,v,H.nextActionId):v;this.sendToReduxDevtools(()=>this.extensionConnection.send(kt,Oe))}else{const G={...H,stagedActionIds:H.stagedActionIds,actionsById:this.config.actionSanitizer?Zt(this.config.actionSanitizer,H.actionsById):H.actionsById,computedStates:this.config.stateSanitizer?Ii(this.config.stateSanitizer,H.computedStates):H.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,G,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new Ve.c(v=>{const H=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=H,H.init(),H.subscribe(G=>v.next(G)),H.unsubscribe}):ut.w}createActionStreams(){const v=this.createChangesObservable().pipe((0,Oo.u)()),H=v.pipe((0,Cr.p)(ui=>"START"===ui.type)),G=v.pipe((0,Cr.p)(ui=>"STOP"===ui.type)),Oe=v.pipe((0,Cr.p)(ui=>"DISPATCH"===ui.type),(0,Qa.T)(ui=>this.unwrapAction(ui.payload)),(0,_c.H)(ui=>ui.type===Pc?this.dispatcher.pipe((0,Cr.p)(Wi=>Wi.type===Pi.q6),function jn(F,B){const{first:v,each:H,with:G=na,scheduler:Oe=B??ks.E,meta:kt=null}=(0,Uo.v)(F)?{first:F}:"number"==typeof F?{each:F}:F;if(null==v&&null==H)throw new TypeError("No timeout provided.");return(0,Vs.N)((At,oi)=>{let ui,Wi,Li=null,fn=0;const Mn=Ki=>{Wi=(0,vs.N)(oi,Oe,()=>{try{ui.unsubscribe(),(0,nc.Tg)(G({meta:kt,lastValue:Li,seen:fn})).subscribe(oi)}catch(an){oi.error(an)}},Ki)};ui=At.subscribe((0,us._)(oi,Ki=>{Wi?.unsubscribe(),fn++,oi.next(Li=Ki),H>0&&Mn(H)},void 0,void 0,()=>{Wi?.closed||Wi?.unsubscribe(),Li=null})),!fn&&Mn(null!=v?"number"==typeof v?v:+v-Oe.now():H)})}(1e3),(0,Nr.B)(1e3),(0,Qa.T)(()=>ui),(0,ca.W)(()=>(0,Dt.of)(ui)),(0,_a.s)(1)):(0,Dt.of)(ui))),At=v.pipe((0,Cr.p)(ui=>"ACTION"===ui.type),(0,Qa.T)(ui=>this.unwrapAction(ui.payload))).pipe((0,dn.Q)(G)),oi=Oe.pipe((0,dn.Q)(G));this.start$=H.pipe((0,dn.Q)(G)),this.actions$=this.start$.pipe((0,Is.n)(()=>At)),this.liftedActions$=this.start$.pipe((0,Is.n)(()=>oi))}unwrapAction(v){return"string"==typeof v?(0,eval)(`(${v})`):v}getExtensionConfig(v){const H={name:v.name,features:v.features,serialize:v.serialize,autoPause:v.autoPause??!1,trace:v.trace??!1,traceLimit:v.traceLimit??75};return!1!==v.maxAge&&(H.maxAge=v.maxAge),H}sendToReduxDevtools(v){try{v()}catch(H){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",H)}}static{this.\u0275fac=function(H){return new(H||F)(t.KVO(bn),t.KVO(Oi),t.KVO(Dn))}}static{this.\u0275prov=t.jDH({token:F,factory:F.\u0275fac})}}return F})();const va={type:Pi.Zz},Ja={type:"@ngrx/store-devtools/recompute"};function oo(F,B,v,H,G){if(H)return{state:v,error:"Interrupted by an error up the chain"};let kt,Oe=v;try{Oe=F(v,B)}catch(At){kt=At.toString(),G.handleError(At)}return{state:Oe,error:kt}}function hr(F,B,v,H,G,Oe,kt,At,oi){if(B>=F.length&&F.length===Oe.length)return F;const ui=F.slice(0,B),Wi=Oe.length-(oi?1:0);for(let Li=B;Li-1?Ki:oo(v,Mn,an,Xn,At);ui.push(jr)}return oi&&ui.push(F[F.length-1]),ui}let Bn=(()=>{class F{constructor(v,H,G,Oe,kt,At,oi,ui){const Wi=function aa(F,B){return{monitorState:B(void 0,{}),nextActionId:1,actionsById:{0:gt(va)},stagedActionIds:[0],skippedActionIds:[],committedState:F,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}(oi,ui.monitor),Li=function ts(F,B,v,H,G={}){return Oe=>(kt,At)=>{let{monitorState:oi,actionsById:ui,nextActionId:Wi,stagedActionIds:Li,skippedActionIds:fn,committedState:Mn,currentStateIndex:Ki,computedStates:an,isLocked:Xn,isPaused:gr}=kt||B;function jr(Kr){let kr=Kr,Aa=Li.slice(1,kr+1);for(let ha=0;ha-1===Aa.indexOf(ha)),Li=[0,...Li.slice(kr+1)],Mn=an[kr].state,an=an.slice(kr),Ki=Ki>kr?Ki-kr:0}function da(){ui={0:gt(va)},Wi=1,Li=[0],fn=[],Mn=an[Ki].state,Ki=0,an=[]}kt||(ui=Object.create(ui));let rr=0;switch(At.type){case Xs:Xn=At.status,rr=1/0;break;case oc:gr=At.status,gr?(Li=[...Li,Wi],ui[Wi]=new ys({type:"@ngrx/devtools/pause"},+Date.now()),Wi++,rr=Li.length-1,an=an.concat(an[an.length-1]),Ki===Li.length-2&&Ki++,rr=1/0):da();break;case"RESET":ui={0:gt(va)},Wi=1,Li=[0],fn=[],Mn=F,Ki=0,an=[];break;case"COMMIT":da();break;case el:ui={0:gt(va)},Wi=1,Li=[0],fn=[],Ki=0,an=[];break;case Hs:{const{id:Kr}=At;fn=-1===fn.indexOf(Kr)?[Kr,...fn]:fn.filter(Aa=>Aa!==Kr),rr=Li.indexOf(Kr);break}case"SET_ACTIONS_ACTIVE":{const{start:Kr,end:kr,active:Aa}=At,ha=[];for(let Zs=Kr;ZsG.maxAge&&(an=hr(an,rr,Oe,Mn,ui,Li,fn,v,gr),jr(Li.length-G.maxAge),rr=1/0);break;case Pi.q6:if(an.filter(kr=>kr.error).length>0)rr=0,G.maxAge&&Li.length>G.maxAge&&(an=hr(an,rr,Oe,Mn,ui,Li,fn,v,gr),jr(Li.length-G.maxAge),rr=1/0);else{if(!gr&&!Xn){Ki===Li.length-1&&Ki++;const kr=Wi++;ui[kr]=new ys(At,+Date.now()),Li=[...Li,kr],rr=Li.length-1,an=hr(an,rr,Oe,Mn,ui,Li,fn,v,gr)}an=an.map(kr=>({...kr,state:Oe(kr.state,Ja)})),Ki=Li.length-1,G.maxAge&&Li.length>G.maxAge&&jr(Li.length-G.maxAge),rr=1/0}break;default:rr=1/0}return an=hr(an,rr,Oe,Mn,ui,Li,fn,v,gr),oi=H(oi,At),{monitorState:oi,actionsById:ui,nextActionId:Wi,stagedActionIds:Li,skippedActionIds:fn,committedState:Mn,currentStateIndex:Ki,computedStates:an,isLocked:Xn,isPaused:gr}}}(oi,Wi,At,ui.monitor,ui),fn=(0,ai.h)((0,ai.h)(H.asObservable().pipe((0,qo.i)(1)),Oe.actions$).pipe((0,Qa.T)(gt)),v,Oe.liftedActions$).pipe((0,vc.Q)(vn.T)),Mn=G.pipe((0,Qa.T)(Li)),Ki=Sr(ui.connectInZone),an=new er.m(1);this.liftedStateSubscription=fn.pipe((0,rc.E)(Mn),Co(Ki),(0,xo.S)(({state:jr},[da,rr])=>{let Kr=rr(jr,da);return da.type!==bs&&Kn(ui)&&(Kr=function wr(F,B,v,H){const G=[],Oe={},kt=[];return F.stagedActionIds.forEach((At,oi)=>{const ui=F.actionsById[At];ui&&(oi&&pr(F.computedStates[oi],ui,B,v,H)||(Oe[At]=ui,G.push(At),kt.push(F.computedStates[oi])))}),{...F,stagedActionIds:G,actionsById:Oe,computedStates:kt}}(Kr,ui.predicate,ui.actionsSafelist,ui.actionsBlocklist)),Oe.notify(da,Kr),{state:Kr,action:da}},{state:Wi,action:null})).subscribe(({state:jr,action:da})=>{an.next(jr),da.type===bs&&kt.next(da.action)}),this.extensionStartSubscription=Oe.start$.pipe(Co(Ki)).subscribe(()=>{this.refresh()});const Xn=an.asObservable(),gr=Xn.pipe((0,Qa.T)(bt));Object.defineProperty(gr,"state",{value:(0,md.ot)(gr,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=v,this.liftedState=Xn,this.state=gr}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}dispatch(v){this.dispatcher.next(v)}next(v){this.dispatcher.next(v)}error(v){}complete(){}performAction(v){this.dispatch(new ys(v,+Date.now()))}refresh(){this.dispatch(new sc)}reset(){this.dispatch(new zc(+Date.now()))}rollback(){this.dispatch(new Za(+Date.now()))}commit(){this.dispatch(new Rs(+Date.now()))}sweep(){this.dispatch(new bc)}toggleAction(v){this.dispatch(new Ys(v))}jumpToAction(v){this.dispatch(new Vt(v))}jumpToState(v){this.dispatch(new mt(v))}importState(v){this.dispatch(new Ht(v))}lockChanges(v){this.dispatch(new ei(v))}pauseRecording(v){this.dispatch(new ci(v))}static{this.\u0275fac=function(H){return new(H||F)(t.KVO(Dn),t.KVO(Pi.SS),t.KVO(Pi.QU),t.KVO(Tr),t.KVO(Pi.sA),t.KVO(t.zcH),t.KVO(Pi.N_),t.KVO(Oi))}}static{this.\u0275prov=t.jDH({token:F,factory:F.\u0275fac})}}return F})();function Co({ngZone:F,connectInZone:B}){return v=>B?new Ve.c(H=>v.subscribe({next:G=>F.run(()=>H.next(G)),error:G=>F.run(()=>H.error(G)),complete:()=>F.run(()=>H.complete())})):v}const pd=new t.nKC("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function il(F,B){return!!F||B.monitor!==pn}function Lr(){const F="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[F]<"u"?window[F]:null}function Bc(F={}){return(0,t.EmA)([Tr,Dn,Bn,{provide:ji,useValue:F},{provide:pd,deps:[bn,Oi],useFactory:il},{provide:bn,useFactory:Lr},{provide:Oi,deps:[ji],useFactory:Wn},{provide:Pi.h1,deps:[Bn],useFactory:cc},{provide:Pi.Bh,useExisting:Dn}])}function cc(F){return F.state}let so=(()=>{class F{static instrument(v={}){return{ngModule:F,providers:[Bc(v)]}}static{this.\u0275fac=function(H){return new(H||F)}}static{this.\u0275mod=t.$C({type:F})}static{this.\u0275inj=t.G2t({})}}return F})();var Xi=g(1413),gd=g(3726),lc=g(2806),El=g(1807);function Fo(F=0,B=ks.E){return F<0&&(F=0),(0,El.O)(F,F,B)}var En=g(8359),Sl=g(7908),Tl=g(9326),Ks=g(8141),yc=g(980),ba=g(3294);class xs{}function Yr(F){return(0,t.EmA)([{provide:xs,useValue:F}])}let mo=(()=>{class F{constructor(v,H){this._ngZone=H,this.timerStart$=new Xi.B,this.idleDetected$=new Xi.B,this.timeout$=new Xi.B,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,v&&this.setConfig(v)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,ai.h)((0,gd.R)(window,"mousemove"),(0,gd.R)(window,"resize"),(0,gd.R)(document,"keydown"))),this.idle$=(0,lc.H)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function Os(F,...B){var v,H;const G=null!==(v=(0,Tl.lI)(B))&&void 0!==v?v:ks.E,Oe=null!==(H=B[0])&&void 0!==H?H:null,kt=B[1]||1/0;return(0,Vs.N)((At,oi)=>{let ui=[],Wi=!1;const Li=Ki=>{const{buffer:an,subs:Xn}=Ki;Xn.unsubscribe(),(0,Sl.o)(ui,Ki),oi.next(an),Wi&&fn()},fn=()=>{if(ui){const Ki=new En.yU;oi.add(Ki);const Xn={buffer:[],subs:Ki};ui.push(Xn),(0,vs.N)(Ki,G,()=>Li(Xn),F)}};null!==Oe&&Oe>=0?(0,vs.N)(oi,G,fn,Oe,!0):Wi=!0,fn();const Mn=(0,us._)(oi,Ki=>{const an=ui.slice();for(const Xn of an){const{buffer:gr}=Xn;gr.push(Ki),kt<=gr.length&&Li(Xn)}},()=>{for(;ui?.length;)oi.next(ui.shift().buffer);Mn?.unsubscribe(),oi.complete(),oi.unsubscribe()},void 0,()=>ui=null);At.subscribe(Mn)})}(this.idleSensitivityMillisec),(0,Cr.p)(v=>!v.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,Ks.M)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,Is.n)(()=>this._ngZone.runOutsideAngular(()=>Fo(1e3).pipe((0,dn.Q)((0,ai.h)(this.activityEvents$,(0,El.O)(this.idleMillisec).pipe((0,Ks.M)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,yc.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,ba.F)(),(0,Is.n)(v=>v?this.timer$:(0,Dt.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,Cr.p)(v=>!!v),(0,Ks.M)(()=>this.isTimeout=!0),(0,Qa.T)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(v){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(v):console.error("Call stopWatching() before set config values")}setConfig(v){v.idle&&(this.idleMillisec=1e3*v.idle),v.ping&&(this.pingMillisec=1e3*v.ping),v.idleSensitivity&&(this.idleSensitivityMillisec=1e3*v.idleSensitivity),v.timeout&&(this.timeout=v.timeout)}setCustomActivityEvents(v){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=v:console.error("Call stopWatching() before set custom activity events")}setupTimer(v){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,Dt.of)(()=>new Date).pipe((0,Qa.T)(H=>H()),(0,Is.n)(H=>Fo(1e3).pipe((0,Qa.T)(()=>Math.round(((new Date).valueOf()-H.valueOf())/1e3)),(0,Ks.M)(G=>{G>=v&&this.timeout$.next(!0)}))))})}setupPing(v){this.ping$=Fo(v).pipe((0,Cr.p)(()=>!this.isTimeout))}}return F.\u0275fac=function(v){return new(v||F)(t.KVO(xs,8),t.KVO(t.SKi))},F.\u0275prov=t.jDH({token:F,factory:F.\u0275fac,providedIn:"root"}),F})();var Nn=g(1188),qi=g(5383),vr=g(9647),Qr=g(60),$i=g(2920),Mr=g(5596),la=g(6850);const Jd=()=>({initial:!1});function q1(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.activeLink=G.links[1].link)}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.FS9("routerLink",v.links[1].link),t.Y8G("active",v.activeLink===v.links[1].link)("state",t.lJ4(4,Jd)),t.R7$(),t.JRh(v.links[1].name)}}function qd(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.FS9("routerLink",v.links[2].link),t.Y8G("active",v.activeLink===v.links[2].link),t.R7$(),t.JRh(v.links[2].name)}}let T2=(()=>{class F{constructor(v,H){this.store=v,this.router=H,this.faUserCog=qi.McB,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){const v=this.links.find(H=>this.router.url.includes(H.link));this.activeLink=v?v.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,Cr.p)(H=>H instanceof Nn.gx)).subscribe({next:H=>{const G=this.links.find(Oe=>H.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(vr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(H=>{this.appConfig=H}),this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(H=>{this.showBitcoind=!1,this.selNode=H,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Pi.il),t.rXU(Nn.Ix))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-settings"]],decls:16,vars:7,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","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","tabindex","3","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","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","active","routerLink","state"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Settings"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.DNE(10,q1,2,5,"div",8)(11,qd,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()}if(2&H){const Oe=t.sdS(13);t.R7$(),t.Y8G("icon",G.faUserCog),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.Y8G("ngIf",!+G.appConfig.SSO.rtlSSO),t.R7$(),t.Y8G("ngIf",G.showBitcoind)}},dependencies:[si.bT,Qr.aY,$i.DJ,$i.sA,$i.UI,Mr.RN,Mr.m2,la.Bu,la.hQ,la.Ql,Nn.n3,Nn.Wk]})}}return F})();var Sn=g(1771),ge=g(8570),De=g(9417),be=g(8834),Ne=g(6467),ft=g(2798),Rt=g(6600),Jt=g(497),Mi=g(9587);function bi(F,B){if(1&F&&(t.j41(0,"mat-option",15),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.Y8G("value",v.index),t.R7$(),t.Lme(" ",v.lnNode," (",v.lnImplementation,") ")}}function cn(F,B){if(1&F){const v=t.RV6();t.j41(0,"form",3,0)(2,"div",4),t.nrm(3,"fa-icon",5),t.j41(4,"span",6),t.EFF(5,"Default Node"),t.k0s()(),t.j41(6,"div",7)(7,"div",8)(8,"mat-form-field",9)(9,"mat-select",10),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG();return t.DH7(Oe.appConfig.defaultNodeIndex,G)||(Oe.appConfig.defaultNodeIndex=G),t.Njj(G)}),t.DNE(10,bi,2,3,"mat-option",11),t.k0s()()(),t.j41(11,"div",12)(12,"div",8)(13,"button",13),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.onResetSettings())}),t.EFF(14,"Reset"),t.k0s(),t.j41(15,"button",14),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.onUpdateApplicationSettings())}),t.EFF(16,"Update"),t.k0s()()()()()}if(2&F){const v=t.XpG();t.R7$(3),t.Y8G("icon",v.faWindowRestore),t.R7$(6),t.R50("ngModel",v.appConfig.defaultNodeIndex),t.R7$(),t.Y8G("ngForOf",v.appConfig.nodes)}}let Pn=(()=>{class F{constructor(v,H){this.logger=v,this.store=H,this.faWindowRestore=qi.aFw,this.faPlus=qi.QLR,this.previousDefaultNode=0,this.unSubs=[new Xi.B,new Xi.B]}ngOnInit(){this.store.select(vr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{this.appConfig=v,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(v)})}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,Sn.rc)({payload:{showSnackBar:!0,message:"Default Node Updated.",config:this.appConfig}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(Pi.il))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-app-settings"]],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(H,G){1&H&&(t.j41(0,"div",1),t.DNE(1,cn,17,3,"form",2),t.k0s()),2&H&&(t.R7$(),t.Y8G("ngIf",G.appConfig.nodes&&G.appConfig.nodes.length&&G.appConfig.nodes.length>0))},dependencies:[si.Sq,si.bT,De.qT,De.BC,De.cb,De.vS,De.cV,Qr.aY,$i.DJ,$i.sA,$i.UI,be.$z,Ne.rl,ft.VO,Rt.wT,Jt.Ld,Mi.N]})}}return F})();var zn=g(2852),Er=g(5351),Cs=g(1264),Sa=g(7541),xc=g(5416),Ta=g(9631),wo=g(6013),Ll=g(8288),Cc=g(9157);const e0=["stepper"];function wc(F,B){if(1&F&&t.EFF(0),2&F){const v=t.XpG();t.JRh(v.passwordFormLabel)}}function ws(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function dc(F,B){if(1&F&&t.EFF(0),2&F){const v=t.XpG(2);t.JRh(v.secretFormLabel)}}function Mc(F,B){if(1&F&&t.nrm(0,"qr-code",33),2&F){const v=t.XpG(2);t.Y8G("value",v.otpauth)("size",180)("errorCorrectionLevel","L")}}function _d(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Secret Code is required."),t.k0s())}function vd(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-step",10)(1,"form",22),t.DNE(2,dc,1,1,"ng-template",23),t.j41(3,"div",24),t.DNE(4,Mc,1,3,"qr-code",25),t.k0s(),t.j41(5,"div",26),t.nrm(6,"fa-icon",27),t.j41(7,"span"),t.EFF(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),t.k0s()(),t.j41(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),t.EFF(12,"Secret Code"),t.k0s(),t.nrm(13,"input",29),t.j41(14,"fa-icon",30),t.bIt("copied",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onCopySecret(G))}),t.k0s(),t.DNE(15,_d,2,0,"mat-error",15),t.k0s()(),t.j41(16,"div",31)(17,"button",32),t.EFF(18,"Next"),t.k0s()()()()}if(2&F){const v=t.XpG();t.Y8G("stepControl",v.secretFormGroup)("editable",v.flgEditable),t.R7$(),t.Y8G("formGroup",v.secretFormGroup),t.R7$(3),t.Y8G("ngIf",v.otpauth),t.R7$(2),t.Y8G("icon",v.faInfoCircle),t.R7$(8),t.Y8G("icon",v.faCopy)("payload",null==v.secretFormGroup||null==v.secretFormGroup.controls||null==v.secretFormGroup.controls.secret?null:v.secretFormGroup.controls.secret.value),t.R7$(),t.Y8G("ngIf",null==v.secretFormGroup||null==v.secretFormGroup.controls||null==v.secretFormGroup.controls.secret||null==v.secretFormGroup.controls.secret.errors?null:v.secretFormGroup.controls.secret.errors.required)}}function Fs(F,B){if(1&F&&t.EFF(0),2&F){const v=t.XpG(2);t.JRh(v.tokenFormLabel)}}function e1(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}function t1(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Token is invalid."),t.k0s())}function Un(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",8)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),t.EFF(4,"Token"),t.k0s(),t.nrm(5,"input",37),t.DNE(6,e1,2,0,"mat-error",15)(7,t1,2,0,"mat-error",15),t.k0s()(),t.j41(8,"div",31)(9,"button",38),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(10),t.k0s()()()}if(2&F){const v=t.XpG(2);t.R7$(6),t.Y8G("ngIf",null==v.tokenFormGroup||null==v.tokenFormGroup.controls||null==v.tokenFormGroup.controls.token||null==v.tokenFormGroup.controls.token.errors?null:v.tokenFormGroup.controls.token.errors.required),t.R7$(),t.Y8G("ngIf",null==v.tokenFormGroup||null==v.tokenFormGroup.controls||null==v.tokenFormGroup.controls.token||null==v.tokenFormGroup.controls.token.errors?null:v.tokenFormGroup.controls.token.errors.notValid),t.R7$(3),t.JRh(null!=v.tokenFormGroup&&null!=v.tokenFormGroup.controls&&null!=v.tokenFormGroup.controls.token&&null!=v.tokenFormGroup.controls.token.errors&&v.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function Dl(F,B){1&F&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Success! You are all set."),t.k0s()())}function bd(F,B){if(1&F&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,Fs,1,1,"ng-template",12)(3,Un,11,3,"div",36)(4,Dl,3,0,"div",15),t.k0s()()),2&F){const v=t.XpG();t.Y8G("stepControl",v.tokenFormGroup),t.R7$(),t.Y8G("formGroup",v.tokenFormGroup),t.R7$(2),t.Y8G("ngIf",!v.flgValidated||!v.isTokenValid),t.R7$(),t.Y8G("ngIf",v.flgValidated&&v.isTokenValid)}}function co(F,B){if(1&F&&t.EFF(0),2&F){const v=t.XpG(2);t.JRh(v.disableFormLabel)}}function Pu(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",8)(1,"div",39),t.nrm(2,"fa-icon",27),t.j41(3,"span"),t.EFF(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),t.k0s()(),t.j41(5,"div",31)(6,"button",38),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(7,"Disable"),t.k0s()()()}if(2&F){const v=t.XpG(2);t.R7$(2),t.Y8G("icon",v.faExclamationTriangle)}}function nl(F,B){1&F&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Two factor authentication removed from RTL."),t.k0s()())}function Al(F,B){if(1&F&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,co,1,1,"ng-template",12)(3,Pu,8,1,"div",36)(4,nl,3,0,"div",15),t.k0s()()),2&F){const v=t.XpG();t.Y8G("stepControl",v.disableFormGroup),t.R7$(),t.Y8G("formGroup",v.disableFormGroup),t.R7$(2),t.Y8G("ngIf",!v.flgValidated||!v.isTokenValid),t.R7$(),t.Y8G("ngIf",v.flgValidated&&v.isTokenValid)}}let fs=(()=>{class F{constructor(v,H,G,Oe,kt,At){this.dialogRef=v,this.data=H,this.store=G,this.formBuilder=Oe,this.rtlEffects=kt,this.snackBar=At,this.faExclamationTriangle=qi.zpE,this.faCopy=qi.jPR,this.faInfoCircle=qi.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:["",[De.k0.required]],password:["",[De.k0.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},De.k0.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",De.k0.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new Xi.B,new Xi.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},De.k0.required]})}generateSecret(){const v=Cs.authenticator.generateSecret();return this.otpauth=Cs.authenticator.keyuri("","Ride The Lightning (RTL)",v),v}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Sn.oz)({payload:zn(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,_a.s)(1)).subscribe(v=>{"ERROR"!==v?(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(v){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,Sn.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=Cs.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,Sn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication enabled successfully.",config:this.appConfig}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0}stepSelectionChanged(v){switch(v.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}v.selectedIndex{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Er.CP),t.rXU(Er.Vh),t.rXU(Pi.il),t.rXU(De.ze),t.rXU(Sa.H),t.rXU(xc.UG))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-two-factor-auth"]],viewQuery:function(H,G){if(1&H&&t.GBs(e0,5),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},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"],[3,"value","size","errorCorrectionLevel",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",""],[3,"value","size","errorCorrectionLevel"],[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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Setup Two Factor Authentication"),t.k0s()(),t.j41(6,"button",6),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(At){return t.eBV(Oe),t.Njj(G.stepSelectionChanged(At))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,wc,1,1,"ng-template",12),t.j41(15,"div",1)(16,"mat-form-field",13)(17,"mat-label"),t.EFF(18,"Password"),t.k0s(),t.nrm(19,"input",14),t.DNE(20,ws,2,0,"mat-error",15),t.k0s()(),t.j41(21,"div",16)(22,"button",17),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onAuthenticate())}),t.EFF(23,"Confirm"),t.k0s()()()(),t.DNE(24,vd,19,8,"mat-step",18)(25,bd,5,4,"mat-step",19)(26,Al,5,4,"mat-step",19),t.k0s(),t.j41(27,"div",20)(28,"button",21),t.EFF(29),t.k0s()()()()()()}2&H&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(4),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",G.passwordFormGroup)("editable",G.flgEditable),t.R7$(),t.Y8G("formGroup",G.passwordFormGroup),t.R7$(7),t.Y8G("ngIf",null==G.passwordFormGroup||null==G.passwordFormGroup.controls||null==G.passwordFormGroup.controls.password||null==G.passwordFormGroup.controls.password.errors?null:G.passwordFormGroup.controls.password.errors.required),t.R7$(4),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",G.showDisableStepper),t.R7$(2),t.Y8G("mat-dialog-close",!1),t.R7$(),t.JRh(G.flgValidated&&G.isTokenValid?"Close":"Cancel"))},dependencies:[si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.j4,De.JD,Qr.aY,$i.DJ,$i.sA,$i.UI,Er.tx,be.$z,Mr.m2,Mr.MM,Ta.fg,Ne.rl,Ne.nJ,Ne.TL,Ne.yw,wo.V5,wo.Ti,wo.M6,wo.F7,Ll.Um,Cc.U,Mi.N]})}}return F})();var Wt=g(4416),$s=g(3202),rl=g(1997);const Ms=["authForm"];function zu(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Current password is required."),t.k0s())}function n1(F,B){if(1&F&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.JRh(v.errorMsg)}}function Bu(F,B){if(1&F&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.JRh(v.errorConfirmMsg)}}function t0(F,B){if(1&F){const v=t.RV6();t.j41(0,"form",12,0)(2,"div",13),t.nrm(3,"fa-icon",6),t.j41(4,"span",7),t.EFF(5,"Password"),t.k0s()(),t.j41(6,"mat-form-field")(7,"mat-label"),t.EFF(8,"Current Password"),t.k0s(),t.j41(9,"input",14),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG();return t.DH7(Oe.currPassword,G)||(Oe.currPassword=G),t.Njj(G)}),t.k0s(),t.DNE(10,zu,2,0,"mat-error",15),t.k0s(),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"New Password"),t.k0s(),t.j41(14,"input",16),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG();return t.DH7(Oe.newPassword,G)||(Oe.newPassword=G),t.Njj(G)}),t.k0s(),t.DNE(15,n1,2,1,"mat-error",15),t.k0s(),t.j41(16,"mat-form-field")(17,"mat-label"),t.EFF(18,"Confirm New Password"),t.k0s(),t.j41(19,"input",17),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG();return t.DH7(Oe.confirmPassword,G)||(Oe.confirmPassword=G),t.Njj(G)}),t.k0s(),t.DNE(20,Bu,2,1,"mat-error",15),t.k0s(),t.j41(21,"div",18)(22,"button",19),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.onResetPassword())}),t.EFF(23,"Reset"),t.k0s(),t.j41(24,"button",20),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.onChangePassword())}),t.EFF(25,"Change Password"),t.k0s()()()}if(2&F){const v=t.XpG();t.R7$(3),t.Y8G("icon",v.faLock),t.R7$(6),t.R50("ngModel",v.currPassword),t.R7$(),t.Y8G("ngIf",!v.currPassword),t.R7$(4),t.R50("ngModel",v.newPassword),t.R7$(),t.Y8G("ngIf",v.matchOldAndNewPasswords()),t.R7$(4),t.R50("ngModel",v.confirmPassword),t.R7$(),t.Y8G("ngIf",v.matchNewPasswords())}}let n0=(()=>{class F{constructor(v,H,G,Oe,kt){this.logger=v,this.store=H,this.actions=G,this.router=Oe,this.sessionService=kt,this.faInfoCircle=qi.iW_,this.faUserLock=qi.aAJ,this.faUserClock=qi.ld_,this.faLock=qi.DW4,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(vr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{this.appConfig=v,this.logger.info(this.appConfig)}),this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.selNode=v}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,Cr.p)(v=>v.type===Wt.aU.RESET_PASSWORD_RES)).subscribe(v=>{if(Wt.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||Wt.Ah.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Sn.xw)({payload:{currPassword:zn(this.currPassword).toString(),newPassword:zn(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let v=!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.",v=!0):Wt.Ah.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=Wt.Ah?.reduce((H,G,Oe)=>Oe{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(Pi.il),t.rXU(it.En),t.rXU(Nn.Ix),t.rXU($s.Q))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-auth-settings"]],viewQuery:function(H,G){if(1&H&&t.GBs(Ms,5),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},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(H,G){1&H&&(t.j41(0,"div",1),t.DNE(1,t0,26,7,"form",2),t.nrm(2,"mat-divider",3),t.j41(3,"div",4)(4,"div",5),t.nrm(5,"fa-icon",6),t.j41(6,"span",7),t.EFF(7,"Two Factor Authentication"),t.k0s()(),t.j41(8,"div",8),t.nrm(9,"fa-icon",9),t.j41(10,"span"),t.EFF(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),t.k0s()(),t.j41(12,"div",10)(13,"button",11),t.bIt("click",function(){return G.on2FAuth()}),t.EFF(14),t.k0s()()()()),2&H&&(t.R7$(),t.Y8G("ngIf",null==G.appConfig?null:G.appConfig.allowPasswordUpdate),t.R7$(4),t.Y8G("icon",G.faUserClock),t.R7$(4),t.Y8G("icon",G.faInfoCircle),t.R7$(5),t.JRh(G.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.vS,De.cV,Qr.aY,$i.DJ,$i.sA,$i.UI,be.$z,Ta.fg,Ne.rl,Ne.nJ,Ne.TL,rl.q,Mi.N]})}}return F})();var hc=g(3902);function r1(F,B){1&F&&t.nrm(0,"mat-divider",7)}function Ec(F,B){if(1&F&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,r1,1,0,"mat-divider",6),t.k0s()),2&F){const v=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,v.configData)),t.R7$(2),t.Y8G("ngIf",""!==v.configData)}}function Qs(F,B){if(1&F&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.JRh(v)}}function Zn(F,B){if(1&F&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.JRh(v)}}function a1(F,B){1&F&&t.nrm(0,"mat-divider",15),2&F&&t.Y8G("inset",!0)}function r0(F,B){if(1&F&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,Qs,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,Zn,2,1,"h4",12),t.k0s(),t.DNE(5,a1,1,1,"mat-divider",13),t.k0s()),2&F){const v=B.$implicit;t.R7$(2),t.Y8G("ngIf",v.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",v.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",v.indexOf("[")<0)}}function yd(F,B){if(1&F&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,r0,6,3,"mat-list-item",9),t.k0s()()),2&F){const v=t.XpG();t.R7$(2),t.Y8G("ngForOf",v.configData)}}let a4=(()=>{class F{constructor(v,H,G){this.store=v,this.rtlEffects=H,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=qi.dB,this.unSubs=[new Xi.B,new Xi.B]}ngOnInit(){this.store.dispatch((0,Sn.Dz)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{const H=v.data;this.fileFormat=v.format,this.configData=""===H||!H||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==H&&H&&"JSON"===this.fileFormat?H:"":H.split("\n")})}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Pi.il),t.rXU(Sa.H),t.rXU(Nn.Ix))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-bitcoin-config"]],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(H,G){1&H&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,Ec,5,4,"div",2)(3,yd,3,1,"div",3),t.k0s()()),2&H&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[si.Sq,si.bT,$i.DJ,$i.sA,$i.UI,Mr.Lc,hc.jt,hc.YE,rl.q,si.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}}return F})();function Vu(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}let o4=(()=>{class F{constructor(v,H,G){this.dialogRef=v,this.store=H,this.rtlEffects=G,this.password="",this.isAuthenticated=!1,this.unSubs=[new Xi.B,new Xi.B]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,_a.s)(1)).subscribe(v=>{"ERROR"!==v?(this.isAuthenticated=!0,this.store.dispatch((0,Sn.R$)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Sn.oz)({payload:zn(this.password)}))}onClose(){this.store.dispatch((0,Sn.R$)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Er.CP),t.rXU(Pi.il),t.rXU(Sa.H))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-is-authorized"]],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(H,G){1&H&&(t.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t.EFF(5,"Authenticate with your RTL Password"),t.k0s()(),t.j41(6,"button",5),t.bIt("click",function(){return G.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),t.EFF(12,"Password"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(kt){return t.DH7(G.password,kt)||(G.password=kt),kt}),t.k0s(),t.DNE(14,Vu,2,0,"mat-error",9),t.k0s(),t.j41(15,"div",10)(16,"button",11),t.bIt("click",function(){return G.onAuthenticate()}),t.EFF(17,"Confirm"),t.k0s()()()()()()),2&H&&(t.R7$(13),t.R50("ngModel",G.password),t.R7$(),t.Y8G("ngIf",!G.password))},dependencies:[si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.vS,De.cV,$i.DJ,$i.sA,$i.UI,be.$z,Mr.m2,Mr.MM,Ta.fg,Ne.rl,Ne.nJ,Ne.TL,Mi.N]})}}return F})();const Uu=()=>({initial:!1});function Gu(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.FS9("routerLink",v.links[2].link),t.Y8G("active",v.activeLink===v.links[2].link)("state",t.lJ4(4,Uu)),t.R7$(),t.JRh(v.links[2].name)}}function kl(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",14),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.activeLink=G.links[3].link)}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.FS9("routerLink",v.links[3].link),t.Y8G("active",v.activeLink===v.links[3].link),t.R7$(),t.JRh(v.links[3].name)}}function Hu(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",15),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.showLnConfigClicked())}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.Y8G("active",v.activeLink===v.links[4].link),t.R7$(),t.JRh(v.links[4].name)}}let s4=(()=>{class F{constructor(v,H,G,Oe){this.store=v,this.router=H,this.rtlEffects=G,this.activatedRoute=Oe,this.faTools=qi.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 Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){const v=this.links.find(H=>this.router.url.includes(H.link));this.activeLink=v?v.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,Cr.p)(H=>H instanceof Nn.gx)).subscribe({next:H=>{const G=this.links.find(Oe=>H.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(vr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(H=>{this.appConfig=H}),this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(H=>{switch(this.showLnConfig=!1,this.selNode=H,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,Sn.xO)({payload:{maxWidth:"50rem",data:{component:o4}}})),this.rtlEffects.closeAlert.pipe((0,dn.Q)(this.unSubs[3])).subscribe(v=>{v&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Pi.il),t.rXU(Nn.Ix),t.rXU(Sa.H),t.rXU(Nn.nX))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-node-config"]],decls:19,vars:11,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","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","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","active","routerLink","state"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active"]],template:function(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Node Config"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.j41(10,"div",8),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[1].link)}),t.EFF(11),t.k0s(),t.DNE(12,Gu,2,5,"div",9)(13,kl,2,3,"div",10)(14,Hu,2,2,"div",11),t.k0s(),t.nrm(15,"mat-tab-nav-panel",null,0),t.j41(17,"div",12),t.nrm(18,"router-outlet"),t.k0s()()()()}if(2&H){const Oe=t.sdS(16);t.R7$(),t.Y8G("icon",G.faTools),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.FS9("routerLink",G.links[1].link),t.Y8G("active",G.activeLink===G.links[1].link),t.R7$(),t.JRh(G.links[1].name),t.R7$(),t.Y8G("ngIf","ECL"!==(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf","CLN"===(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf",G.showLnConfig)}},dependencies:[si.bT,Qr.aY,$i.DJ,$i.sA,$i.UI,Mr.RN,Mr.m2,la.Bu,la.hQ,la.Ql,Nn.n3,Nn.Wk]})}}return F})();function c4(F,B){1&F&&t.nrm(0,"mat-divider",7)}function al(F,B){if(1&F&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,c4,1,0,"mat-divider",6),t.k0s()),2&F){const v=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,v.configData)),t.R7$(2),t.Y8G("ngIf",""!==v.configData)}}function L2(F,B){if(1&F&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.JRh(v)}}function Ri(F,B){if(1&F&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.JRh(v)}}function ur(F,B){1&F&&t.nrm(0,"mat-divider",15),2&F&&t.Y8G("inset",!0)}function D2(F,B){if(1&F&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,L2,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,Ri,2,1,"h4",12),t.k0s(),t.DNE(5,ur,1,1,"mat-divider",13),t.k0s()),2&F){const v=B.$implicit;t.R7$(2),t.Y8G("ngIf",v.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",v.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",v.indexOf("[")<0)}}function A2(F,B){if(1&F&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,D2,6,3,"mat-list-item",9),t.k0s()()),2&F){const v=t.XpG();t.R7$(2),t.Y8G("ngForOf",v.configData)}}let Hr=(()=>{class F{constructor(v,H,G){this.store=v,this.rtlEffects=H,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=qi.dB,this.unSubs=[new Xi.B,new Xi.B]}ngOnInit(){this.store.dispatch((0,Sn.Dz)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{const H=v.data;this.fileFormat=v.format,this.configData=""===H||!H||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==H&&H&&"JSON"===this.fileFormat?H:"":H.split("\n")})}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Pi.il),t.rXU(Sa.H),t.rXU(Nn.Ix))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-lnp-config"]],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(H,G){1&H&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,al,5,4,"div",2)(3,A2,3,1,"div",3),t.k0s()()),2&H&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[si.Sq,si.bT,$i.DJ,$i.sA,$i.UI,Mr.Lc,hc.jt,hc.YE,rl.q,si.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}}return F})();var is=g(2571),Go=g(6038),Br=g(9454),Il=g(5951),Rl=g(450);const ju=F=>({skin:!0,"selected-color":F});function Rp(F,B){if(1&F&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.Y8G("icon",v.symbol)}}function Op(F,B){if(1&F&&(t.j41(0,"span",41),t.nrm(1,"span",43),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.Y8G("innerHTML",v.symbol,t.npT)}}function o1(F,B){if(1&F&&(t.j41(0,"mat-option",39),t.DNE(1,Rp,2,1,"span",40)(2,Op,2,1,"span",40),t.EFF(3),t.k0s()),2&F){const v=B.$implicit;t.Y8G("value",v.id),t.R7$(),t.Y8G("ngIf",v&&"FA"===v.iconType),t.R7$(),t.Y8G("ngIf",v&&"SVG"===v.iconType),t.R7$(),t.Lme(" ",v.name," (",v.id,") ")}}function Wu(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Currency unit is required."),t.k0s())}function a0(F,B){if(1&F&&(t.j41(0,"mat-radio-button",44),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&F){const v=B.$implicit,H=t.XpG();t.Y8G("value",v)("checked",H.selNode.settings.userPersona===v),t.R7$(),t.SpI(" ",t.bMT(2,3,v)," ")}}function ms(F,B){if(1&F&&(t.j41(0,"mat-radio-button",45),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.Y8G("value",v),t.R7$(),t.SpI("",v.name," ")}}function Ns(F,B){if(1&F){const v=t.RV6();t.j41(0,"span",46)(1,"div",47),t.nI1(2,"lowercase"),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG();return t.Njj(Oe.changeThemeColor(G.id))}),t.k0s(),t.EFF(3),t.k0s()}if(2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.HbH(t.bMT(2,4,v.id)),t.Y8G("ngClass",t.eq3(6,ju,H.selectedThemeColor===v.id)),t.R7$(2),t.SpI(" ",v.name," ")}}let k2=(()=>{class F{constructor(v,H,G,Oe){this.logger=v,this.commonService=H,this.store=G,this.sanitizer=Oe,this.faBarsStaggered=qi.o97,this.faExclamationTriangle=qi.zpE,this.faMoneyBillAlt=qi.iy8,this.faPaintBrush=qi._eQ,this.faInfoCircle=qi.iW_,this.faEyeSlash=qi.k6j,this.userPersonas=[Wt.HW.OPERATOR,Wt.HW.MERCHANT],this.currencyUnits=Wt.Zi,this.themeModes=Wt.Bv.modes,this.themeColors=Wt.Bv.themes,this.selectedThemeMode=Wt.Bv.modes[0],this.selectedThemeColor=Wt.Bv.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Xi.B,new Xi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.currencyUnits.map(v=>("SVG"===v.iconType&&"string"==typeof v.symbol&&(v.symbol=v.symbol.replace('{this.selNode=JSON.parse(JSON.stringify(v)),this.selectedThemeMode=this.themeModes.find(H=>this.selNode.settings.themeMode===H.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(v)})}toggleSettings(v,H){this.selNode.settings[v]=!this.selNode.settings[v]}changeThemeColor(v){this.selectedThemeColor=v,this.selNode.settings.themeColor=v}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onFiatConversionChange(v){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,Sn.T$)({payload:this.selNode}))}onResetSettings(){const v=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(H=>H.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Sn.Qi)({payload:{uiMessage:Wt.MZ.NO_SPINNER,prevLnNodeIndex:+v,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(is.h),t.rXU(Pi.il),t.rXU(e.up))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-node-settings"]],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(H,G){if(1&H){const Oe=t.RV6();t.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"),t.nrm(7,"fa-icon",6),t.j41(8,"span",7),t.EFF(9,"Block Explorer"),t.k0s()()(),t.j41(10,"div",8)(11,"div",9),t.nrm(12,"fa-icon",10),t.j41(13,"span"),t.EFF(14,"Configure your own blockchain explorer url or "),t.j41(15,"strong")(16,"a",11),t.EFF(17,"mempool.space"),t.k0s()(),t.EFF(18," will be used."),t.k0s()(),t.j41(19,"div",12)(20,"mat-form-field",13)(21,"mat-label"),t.EFF(22,"Block Explorer URL"),t.k0s(),t.j41(23,"input",14),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selNode.settings.blockExplorerUrl,At)||(G.selNode.settings.blockExplorerUrl=At),t.Njj(At)}),t.k0s(),t.j41(24,"mat-hint"),t.EFF(25,"Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info"),t.k0s()()()()(),t.j41(26,"mat-expansion-panel",5)(27,"mat-expansion-panel-header")(28,"mat-panel-title"),t.nrm(29,"fa-icon",6),t.j41(30,"span",7),t.EFF(31,"Open Unannounced Channels"),t.k0s()()(),t.j41(32,"div",8)(33,"div",15),t.nrm(34,"fa-icon",10),t.j41(35,"span"),t.EFF(36,"Use this control to toggle setting which defaults to opening unannounced channels only."),t.k0s()(),t.j41(37,"div",12)(38,"mat-slide-toggle",16),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selNode.settings.unannouncedChannels,At)||(G.selNode.settings.unannouncedChannels=At),t.Njj(At)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(!G.selNode.settings.unannouncedChannels)}),t.EFF(39,"Open Unannounced Channels"),t.k0s()()()(),t.j41(40,"mat-expansion-panel",5)(41,"mat-expansion-panel-header")(42,"mat-panel-title"),t.nrm(43,"fa-icon",6),t.j41(44,"span",7),t.EFF(45,"Balance Display"),t.k0s()()(),t.j41(46,"div",8)(47,"div",9),t.nrm(48,"fa-icon",10),t.j41(49,"span"),t.EFF(50,"Fiat conversion calls "),t.j41(51,"strong")(52,"a",17),t.EFF(53,"Blockchain.com"),t.k0s()(),t.EFF(54," API to get conversion rates."),t.k0s()(),t.j41(55,"div",12)(56,"mat-slide-toggle",18),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selNode.settings.fiatConversion,At)||(G.selNode.settings.fiatConversion=At),t.Njj(At)}),t.bIt("change",function(At){return t.eBV(Oe),t.Njj(G.onFiatConversionChange(At))}),t.EFF(57,"Enable Fiat Conversion"),t.k0s(),t.j41(58,"mat-form-field",19)(59,"mat-label"),t.EFF(60,"Fiat Currency"),t.k0s(),t.j41(61,"mat-select",20,1),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selNode.settings.currencyUnit,At)||(G.selNode.settings.currencyUnit=At),t.Njj(At)}),t.DNE(63,o1,4,5,"mat-option",21),t.k0s(),t.DNE(64,Wu,2,0,"mat-error",22),t.k0s()()()(),t.j41(65,"mat-expansion-panel",5)(66,"mat-expansion-panel-header")(67,"mat-panel-title"),t.nrm(68,"fa-icon",6),t.j41(69,"span",7),t.EFF(70,"Customization"),t.k0s()()(),t.j41(71,"div",8)(72,"div",23),t.nrm(73,"fa-icon",10),t.j41(74,"span"),t.EFF(75,"Dashboard layout will be tailored based on the role selected to better serve its needs."),t.k0s()(),t.j41(76,"div",24)(77,"h4"),t.EFF(78,"Dashboard Layout"),t.k0s(),t.j41(79,"mat-radio-group",25),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selNode.settings.userPersona,At)||(G.selNode.settings.userPersona=At),t.Njj(At)}),t.DNE(80,a0,3,5,"mat-radio-button",26),t.k0s()(),t.nrm(81,"mat-divider",27),t.j41(82,"div",28)(83,"h4"),t.EFF(84,"Mode"),t.k0s(),t.j41(85,"mat-radio-group",29),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selectedThemeMode,At)||(G.selectedThemeMode=At),t.Njj(At)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(G.chooseThemeMode())}),t.DNE(86,ms,2,2,"mat-radio-button",30),t.k0s()(),t.nrm(87,"mat-divider",27),t.j41(88,"div",31)(89,"div",32)(90,"h4"),t.EFF(91,"Themes"),t.k0s(),t.j41(92,"div",33),t.DNE(93,Ns,4,8,"span",34),t.k0s()()()()()()(),t.j41(94,"div",35)(95,"div",36)(96,"button",37),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetSettings())}),t.EFF(97,"Reset"),t.k0s(),t.j41(98,"button",38),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateNodeSettings())}),t.EFF(99,"Update"),t.k0s()()()()}2&H&&(t.R7$(7),t.Y8G("icon",G.faBarsStaggered),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(11),t.R50("ngModel",G.selNode.settings.blockExplorerUrl),t.R7$(6),t.Y8G("icon",G.faEyeSlash),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(4),t.R50("ngModel",G.selNode.settings.unannouncedChannels),t.R7$(5),t.Y8G("icon",G.faMoneyBillAlt),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(8),t.R50("ngModel",G.selNode.settings.fiatConversion),t.R7$(5),t.Y8G("disabled",!G.selNode.settings.fiatConversion)("required",G.selNode.settings.fiatConversion),t.R50("ngModel",G.selNode.settings.currencyUnit),t.R7$(2),t.Y8G("ngForOf",G.currencyUnits),t.R7$(),t.Y8G("ngIf",G.selNode.settings.fiatConversion&&!G.selNode.settings.currencyUnit),t.R7$(4),t.Y8G("icon",G.faPaintBrush),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.R50("ngModel",G.selNode.settings.userPersona),t.R7$(),t.Y8G("ngForOf",G.userPersonas),t.R7$(5),t.R50("ngModel",G.selectedThemeMode),t.R7$(),t.Y8G("ngForOf",G.themeModes),t.R7$(7),t.Y8G("ngForOf",G.themeColors))},dependencies:[si.YU,si.Sq,si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.vS,De.cV,Qr.aY,$i.DJ,$i.sA,$i.UI,Go.PW,be.$z,Br.BS,Br.GK,Br.Z2,Br.WN,Ta.fg,Ne.rl,Ne.nJ,Ne.MV,Ne.TL,rl.q,Il.VT,Il._g,ft.VO,Rt.wT,Rl.sG,Jt.Ld,Mi.N,si.GH,si.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 F})();var ns=g(9584),uc=g(3536),La=g(8430),Oa=g(190),Xu=g(2730),Ha=g(5428),Vc=g(9213),Sc=g(4823),Uc=g(2929);const Es=F=>({error:F}),l4=F=>({"error-border":F}),s1=F=>({"ml-minus-1":F}),I2=F=>({"error-border p-2":F});function Ol(F,B){if(1&F&&t.eu8(0,14),2&F){const v=t.XpG(),H=t.sdS(18);t.Y8G("ngTemplateOutlet",H)("ngTemplateOutletContext",t.eq3(2,Es,v.errorMessage))}}function c1(F,B){if(1&F&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.Y8G("value",v),t.R7$(),t.SpI(" ",v," ")}}function Yu(F,B){if(1&F&&(t.j41(0,"mat-option",31),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&F){const v=B.$implicit,H=t.XpG(3);t.Y8G("value",v),t.R7$(),t.SpI(" ","ECL"===H.selNode.lnImplementation?t.bMT(2,2,v):t.i5U(3,4,v,"_")," ")}}function R2(F,B){if(1&F&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.Y8G("value",v),t.R7$(),t.SpI(" ","desc"===v?"Descending":"Ascending"," ")}}function Tc(F,B){if(1&F&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&F){const v=B.$implicit,H=t.XpG(2).$implicit,G=t.XpG(2);t.Y8G("value",v.column)("disabled",H.columnSelection.length<=2&&H.columnSelection.includes(v.column)),t.R7$(),t.SpI(" ",v.label?v.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,v.column):t.i5U(3,5,v.column,"_")," ")}}function O2(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-form-field",32)(1,"mat-label"),t.EFF(2,"Column selection (Desktop Resolution)"),t.k0s(),t.j41(3,"mat-select",33),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG().$implicit;return t.DH7(Oe.columnSelection,G)||(Oe.columnSelection=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(v);const G=t.XpG().$implicit,Oe=t.XpG(2);return t.Njj(Oe.oncolumnSelectionChange(G))}),t.DNE(4,Tc,4,8,"mat-option",28),t.k0s()()}if(2&F){const v=t.XpG().$implicit,H=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.FCK("name","",H.pageId,"",v.tableId,"-columns-selection"),t.R50("ngModel",v.columnSelection),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[H.pageId][v.tableId].allowedColumns)}}function qa(F,B){if(1&F&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&F){const v=B.$implicit,H=t.XpG().$implicit,G=t.XpG(2);t.Y8G("value",v.column)("disabled",H.columnSelectionSM.length<=1&&H.columnSelectionSM.includes(v.column)||H.columnSelectionSM.length>=3&&!H.columnSelectionSM.includes(v.column)),t.R7$(),t.SpI(" ",v.label?v.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,v.column):t.i5U(3,5,v.column,"_")," ")}}function ol(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s(),t.j41(5,"mat-form-field",20)(6,"mat-label"),t.EFF(7,"Records/Page"),t.k0s(),t.j41(8,"mat-select",21),t.mxI("ngModelChange",function(G){const Oe=t.eBV(v).$implicit;return t.DH7(Oe.recordsPerPage,G)||(Oe.recordsPerPage=G),t.Njj(G)}),t.DNE(9,c1,2,2,"mat-option",22),t.k0s()(),t.j41(10,"mat-form-field",20)(11,"mat-label"),t.EFF(12,"Sort By"),t.k0s(),t.j41(13,"mat-select",23),t.mxI("ngModelChange",function(G){const Oe=t.eBV(v).$implicit;return t.DH7(Oe.sortBy,G)||(Oe.sortBy=G),t.Njj(G)}),t.DNE(14,Yu,4,7,"mat-option",22),t.k0s()(),t.j41(15,"mat-form-field",20)(16,"mat-label"),t.EFF(17,"Sort Order"),t.k0s(),t.j41(18,"mat-select",24),t.mxI("ngModelChange",function(G){const Oe=t.eBV(v).$implicit;return t.DH7(Oe.sortOrder,G)||(Oe.sortOrder=G),t.Njj(G)}),t.DNE(19,R2,2,2,"mat-option",22),t.k0s()(),t.DNE(20,O2,5,5,"mat-form-field",25),t.j41(21,"mat-form-field",26)(22,"mat-label"),t.EFF(23,"Column Selection (Mobile Resolution)"),t.k0s(),t.j41(24,"mat-select",27),t.mxI("ngModelChange",function(G){const Oe=t.eBV(v).$implicit;return t.DH7(Oe.columnSelectionSM,G)||(Oe.columnSelectionSM=G),t.Njj(G)}),t.DNE(25,qa,4,8,"mat-option",28),t.k0s()(),t.j41(26,"button",29),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG().$implicit,kt=t.XpG();return t.Njj(kt.onTableReset(Oe.pageId,G))}),t.j41(27,"mat-icon",30),t.EFF(28,"restore"),t.k0s()()()()}if(2&F){const v=B.$implicit,H=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.SpI("",t.i5U(4,24,v.tableId,"_"),":"),t.R7$(5),t.FCK("name","",H.pageId,"",v.tableId,"-page-size-options"),t.Y8G("disabled",G.nodePageDefs[H.pageId][v.tableId].disablePageSize),t.R50("ngModel",v.recordsPerPage),t.R7$(),t.Y8G("ngForOf",G.pageSizeOptions),t.R7$(4),t.FCK("name","",H.pageId,"",v.tableId,"-sort-by"),t.R50("ngModel",v.sortBy),t.R7$(),t.Y8G("ngForOf",v.columnSelection),t.R7$(4),t.FCK("name","",H.pageId,"",v.tableId,"-sort-order"),t.R50("ngModel",v.sortOrder),t.R7$(),t.Y8G("ngForOf",G.sortOrders),t.R7$(),t.Y8G("ngIf",G.screenSize!==G.screenSizeEnum.XS),t.R7$(4),t.FCK("name","",H.pageId,"",v.tableId,"-columns-selection-sm"),t.R50("ngModel",v.columnSelectionSM),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[H.pageId][v.tableId].allowedColumns),t.R7$(2),t.Y8G("ngClass",t.eq3(27,s1,G.screenSize===G.screenSizeEnum.XS||G.screenSize===G.screenSizeEnum.SM))}}function oa(F,B){if(1&F&&t.eu8(0,14),2&F){const v=t.XpG(2),H=t.sdS(18);t.Y8G("ngTemplateOutlet",H)("ngTemplateOutletContext",t.eq3(2,Es,v.errorMessage))}}function sl(F,B){if(1&F&&(t.j41(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s()(),t.DNE(5,ol,29,29,"div",16)(6,oa,1,4,"ng-container",7),t.k0s()),2&F){const v=B.$implicit,H=t.XpG();t.Y8G("ngClass",t.eq3(7,l4,(null==H.errorMessage?null:H.errorMessage.page)===v.pageId)),t.R7$(3),t.JRh(t.i5U(4,4,v.pageId,"_")),t.R7$(2),t.Y8G("ngForOf",v.tables),t.R7$(),t.Y8G("ngIf",H.errorMessage&&(null==H.errorMessage?null:H.errorMessage.page)===v.pageId)}}function F2(F,B){if(1&F&&(t.j41(0,"mat-panel-title"),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&F){const v=t.XpG().error;t.R7$(),t.SpI("Page ",t.bMT(2,1,v.page),"")}}function N2(F,B){if(1&F&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.k0s()()),2&F){const v=t.XpG().error;t.R7$(4),t.JRh(v.message)}}function d4(F,B){if(1&F&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(4),t.Lme("Table ",t.bMT(5,2,v.table)," ",v.message,"")}}function Ku(F,B){if(1&F&&(t.j41(0,"div",35),t.DNE(1,F2,3,3,"mat-panel-title",36),t.j41(2,"mat-list",37),t.DNE(3,N2,5,1,"mat-list-item",36)(4,d4,6,4,"mat-list-item",38),t.k0s()()),2&F){const v=B.error,H=t.XpG();t.Y8G("ngClass",t.eq3(4,I2,"unknown"===H.errorMessage.page)),t.R7$(),t.Y8G("ngIf","unknown"===H.errorMessage.page),t.R7$(2),t.Y8G("ngIf",v.message),t.R7$(),t.Y8G("ngForOf",v.tables)}}let $u=(()=>{class F{constructor(v,H,G,Oe){this.logger=v,this.commonService=H,this.store=G,this.actions=Oe,this.faPenRuler=qi.$$g,this.faExclamationTriangle=qi.zpE,this.screenSize="",this.screenSizeEnum=Wt.f7,this.pageSizeOptions=Wt.xp,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=Wt.jG,this.apiCallStatus=null,this.apiCallStatusEnum=Wt.wn,this.errorMessage=null,this.unSubs=[new Xi.B,new Xi.B,new Xi.B,new Xi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{switch(this.selNode=v,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],Wt.mu),this.defaultSettings=Object.assign([],Wt.mu),this.nodePageDefs=Wt.Jd,this.store.select(ns.av).pipe((0,dn.Q)(this.unSubs[1]),(0,rc.E)(this.store.select(vr._c))).subscribe(([H,G])=>{const Oe=JSON.parse(JSON.stringify(H.pageSettings));if(this.errorMessage=null,this.apiCallStatus=H.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.enableOffers){const kt=Oe.find(ui=>"transactions"===ui.pageId),At=kt?.tables.findIndex(ui=>"offers"===ui.tableId),oi=kt?.tables.findIndex(ui=>"offer_bookmarks"===ui.tableId);At>-1&&kt?.tables.splice(At,1),oi>-1&&kt?.tables.splice(oi,1)}if(!G?.settings.enablePeerswap){const kt=Oe.findIndex(At=>"peerswap"===At.pageId);kt>-1&&Oe.splice(kt,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,Cr.p)(H=>H.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN||H.type===Wt.TC.SAVE_PAGE_SETTINGS_CLN)).subscribe(H=>{H.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN&&H.payload.status===Wt.wn.ERROR&&"SavePageSettings"===H.payload.action&&(this.errorMessage=JSON.parse(H.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],Wt.X8),this.defaultSettings=Object.assign([],Wt.X8),this.nodePageDefs=Wt.WW,this.store.select(Xu.jZ).pipe((0,dn.Q)(this.unSubs[1])).subscribe(H=>{const G=JSON.parse(JSON.stringify(H.pageSettings));this.errorMessage=null,this.apiCallStatus=H.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=G,this.initialPageSettings=G):(this.pageSettings=G,this.initialPageSettings=G),this.logger.info(G)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,Cr.p)(H=>H.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL||H.type===Wt.Uu.SAVE_PAGE_SETTINGS_ECL)).subscribe(H=>{H.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL&&H.payload.status===Wt.wn.ERROR&&"SavePageSettings"===H.payload.action&&(this.errorMessage=JSON.parse(H.payload.message))});break;default:this.initialPageSettings=Object.assign([],Wt.ZC),this.defaultSettings=Object.assign([],Wt.ZC),this.nodePageDefs=Wt._1,this.store.select(uc.$G).pipe((0,dn.Q)(this.unSubs[1]),(0,rc.E)(this.store.select(vr._c))).subscribe(([H,G])=>{const Oe=JSON.parse(JSON.stringify(H.pageSettings));if(this.errorMessage=null,this.apiCallStatus=H.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.swapServerUrl||""===G.settings.swapServerUrl.trim()){const kt=Oe.findIndex(At=>"loop"===At.pageId);kt>-1&&Oe.splice(kt,1)}if(!G?.settings.boltzServerUrl||""===G.settings.boltzServerUrl.trim()){const kt=Oe.findIndex(At=>"boltz"===At.pageId);kt>-1&&Oe.splice(kt,1)}if(!G?.settings.enablePeerswap){const kt=Oe.findIndex(At=>"peerswap"===At.pageId);kt>-1&&Oe.splice(kt,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,Cr.p)(H=>H.type===Wt.QP.UPDATE_API_CALL_STATUS_LND||H.type===Wt.QP.SAVE_PAGE_SETTINGS_LND)).subscribe(H=>{H.type===Wt.QP.UPDATE_API_CALL_STATUS_LND&&H.payload.status===Wt.wn.ERROR&&"SavePageSettings"===H.payload.action&&(this.errorMessage=JSON.parse(H.payload.message))})}})}oncolumnSelectionChange(v){v.columnSelection&&(!v.sortBy||!v.columnSelection.includes(v.sortBy))&&(v.sortBy=v.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((v,H)=>v||H.tables.reduce((G,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,La.Sn)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,Ha.Sn)({payload:this.pageSettings}));break;default:this.store.dispatch((0,Oa.Sn)({payload:this.pageSettings}))}}onTableReset(v,H){const G=this.pageSettings.findIndex(At=>At.pageId===v),Oe=this.pageSettings[G].tables.findIndex(At=>At.tableId===H.tableId),kt=this.defaultSettings.find(At=>At.pageId===v)?.tables.find(At=>At.tableId===H.tableId)||this.pageSettings.find(At=>At.pageId===v)?.tables.find(At=>At.tableId===H.tableId);this.pageSettings[G].tables.splice(Oe,1,kt)}onResetPageSettings(v){"current"===v?(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(v=>{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(is.h),t.rXU(Pi.il),t.rXU(it.En))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-page-settings"]],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","disabled","name","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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Grid Settings"),t.k0s()(),t.DNE(7,Ol,1,4,"ng-container",7),t.j41(8,"mat-accordion",8),t.DNE(9,sl,7,9,"mat-expansion-panel",9),t.k0s()(),t.j41(10,"div",10)(11,"button",11),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("current"))}),t.EFF(12,"Reset"),t.k0s(),t.j41(13,"button",12),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("default"))}),t.EFF(14,"Reset to Default"),t.k0s(),t.j41(15,"button",13),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdatePageSettings())}),t.EFF(16,"Save"),t.k0s()()(),t.DNE(17,Ku,5,6,"ng-template",null,1,t.C5r)}2&H&&(t.R7$(4),t.Y8G("icon",G.faPenRuler),t.R7$(3),t.Y8G("ngIf",G.errorMessage&&"unknown"===G.errorMessage.page),t.R7$(2),t.Y8G("ngForOf",G.pageSettings))},dependencies:[si.YU,si.Sq,si.bT,si.T3,De.qT,De.BC,De.cb,De.YS,De.vS,De.cV,Qr.aY,$i.DJ,$i.sA,$i.UI,Go.PW,be.$z,be.iY,Br.BS,Br.GK,Br.Z2,Br.WN,Vc.An,Ne.rl,Ne.nJ,hc.jt,hc.YE,ft.VO,Rt.wT,Sc.oV,Jt.Ld,si.PV,Uc.VD,Uc.Qu],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]})}}return F})();function l1(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[0].link))}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.FS9("routerLink",v.links[0].link),t.Y8G("active",v.activeLink===v.links[0].link),t.R7$(),t.JRh(v.links[0].name)}}function Lc(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[1].link))}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.FS9("routerLink",v.links[1].link),t.Y8G("active",v.activeLink===v.links[1].link),t.R7$(),t.JRh(v.links[1].name)}}function h4(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[2].link))}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG();t.FS9("routerLink",v.links[2].link),t.Y8G("active",v.activeLink===v.links[2].link),t.R7$(),t.JRh(v.links[2].name)}}let o0=(()=>{class F{constructor(v,H,G){this.store=v,this.router=H,this.activatedRoute=G,this.faLayerGroup=qi.qIE,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"noservice",name:"No Service"}],this.activeLink="",this.unSubs=[new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.setActiveLink(),this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.selNode=v,this.setActiveLink(),this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})})}setActiveLink(v){if(v&&""!==v)this.activeLink=v;else{const H=this.links.find(G=>this.router.url.includes(G.link));this.activeLink=H?this.selNode&&"CLN"===this.selNode.lnImplementation?this.links[1].link:H.link:this.links[this.links.length-1].link}}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Pi.il),t.rXU(Nn.Ix),t.rXU(Nn.nX))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-services-settings"]],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,"active","routerLink","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","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","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(H,G){if(1&H&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Services"),t.k0s()()(),t.j41(5,"div",5)(6,"mat-card")(7,"mat-card-content",5)(8,"nav",6),t.DNE(9,l1,2,3,"div",7)(10,Lc,2,3,"div",8)(11,h4,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()),2&H){const Oe=t.sdS(13);t.R7$(2),t.Y8G("icon",G.faLayerGroup),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngIf","LND"===G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"!==G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"===G.selNode.lnImplementation)}},dependencies:[si.bT,Qr.aY,$i.DJ,$i.sA,$i.UI,Mr.RN,Mr.m2,la.Bu,la.hQ,la.Ql,Nn.n3,Nn.Wk]})}}return F})();const xd=["form"];function Cd(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Loop server URL is required."),t.k0s())}function s0(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the loop server url with 'https://'."),t.k0s())}function Gc(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Loop macaroon path is required."),t.k0s())}let d1=(()=>{class F{constructor(v,H){this.logger=v,this.store=H,this.faInfoCircle=qi.iW_,this.enableLoop=!1,this.unSubs=[new Xi.B,new Xi.B]}ngOnInit(){this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{this.selNode=v,this.enableLoop=!(!v.settings.swapServerUrl||""===v.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(v)})}onEnableServiceChanged(v){this.enableLoop=v.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,Sn.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(v=>{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(Pi.il))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-loop-service-settings"]],viewQuery:function(H,G){if(1&H&&t.GBs(xd,7),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"loopd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.enableLoop,At)||(G.enableLoop=At),t.Njj(At)}),t.bIt("change",function(At){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(At))}),t.EFF(16,"Enable Loop Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Loop Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selNode.settings.swapServerUrl,At)||(G.selNode.settings.swapServerUrl=At),t.Njj(At)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),t.k0s(),t.DNE(24,Cd,2,0,"mat-error",11)(25,s0,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Loop Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.selNode.authentication.swapMacaroonPath,At)||(G.selNode.authentication.swapMacaroonPath=At),t.Njj(At)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),t.k0s(),t.DNE(32,Gc,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&H){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableLoop),t.R7$(5),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.settings.swapServerUrl),t.R7$(4),t.Y8G("ngIf",!G.selNode.settings.swapServerUrl&&G.enableLoop),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableLoop),t.R7$(4),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.authentication.swapMacaroonPath),t.R7$(3),t.Y8G("ngIf",!G.selNode.authentication.swapMacaroonPath&&G.enableLoop)}},dependencies:[si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.vS,De.cV,Qr.aY,$i.DJ,$i.sA,$i.UI,be.$z,Ta.fg,Ne.rl,Ne.nJ,Ne.MV,Ne.TL,Rl.sG,Jt.Ld,Mi.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}}return F})();const h1=["form"];function cl(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz server URL is required."),t.k0s())}function wd(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the boltz server url with 'https://'."),t.k0s())}function ll(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz macaroon path is required."),t.k0s())}let c0=(()=>{class F{constructor(v,H){this.logger=v,this.store=H,this.faInfoCircle=qi.iW_,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new Xi.B,new Xi.B]}ngOnInit(){this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{this.selNode=v,this.enableBoltz=!(!v.settings.boltzServerUrl||""===v.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(v)})}onEnableServiceChanged(v){this.enableBoltz=v.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,Sn.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(v=>{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(Pi.il))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(H,G){if(1&H&&t.GBs(h1,7),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"boltzd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.enableBoltz,At)||(G.enableBoltz=At),t.Njj(At)}),t.bIt("change",function(At){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(At))}),t.EFF(16,"Enable Boltz Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Boltz Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.serverUrl,At)||(G.serverUrl=At),t.Njj(At)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),t.k0s(),t.DNE(24,cl,2,0,"mat-error",11)(25,wd,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Boltz Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.macaroonPath,At)||(G.macaroonPath=At),t.Njj(At)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),t.k0s(),t.DNE(32,ll,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&H){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableBoltz),t.R7$(5),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.serverUrl),t.R7$(4),t.Y8G("ngIf",(!G.serverUrl||""===G.serverUrl.trim())&&G.enableBoltz),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableBoltz),t.R7$(4),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.macaroonPath),t.R7$(3),t.Y8G("ngIf",!G.macaroonPath&&G.enableBoltz)}},dependencies:[si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.vS,De.cV,Qr.aY,$i.DJ,$i.sA,$i.UI,be.$z,Ta.fg,Ne.rl,Ne.nJ,Ne.MV,Ne.TL,Rl.sG,Jt.Ld,Mi.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}}return F})(),P2=(()=>{class F{constructor(){}static{this.\u0275fac=function(H){return new(H||F)}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-ln-services"]],decls:1,vars:0,template:function(H,G){1&H&&t.nrm(0,"router-outlet")},dependencies:[Nn.n3]})}}return F})();var z2=g(8711),B2=g(4104),Md=g(6695),u1=g(2042),Vr=g(9159),Ed=g(7575);const Fl=()=>["all"],f1=F=>({"overflow-auto error-border":F,"overflow-auto":!0}),Nl=()=>["no_swap"],l0=F=>({width:F}),dl=F=>({"display-none":F});function Pl(F,B){if(1&F&&(t.j41(0,"mat-option",37),t.EFF(1),t.k0s()),2&F){const v=B.$implicit,H=t.XpG();t.Y8G("value",v),t.R7$(),t.JRh(H.getLabel(v))}}function V2(F,B){1&F&&t.nrm(0,"mat-progress-bar",38)}function hl(F,B){1&F&&(t.j41(0,"th",39),t.EFF(1,"State"),t.k0s())}function m1(F,B){if(1&F&&(t.j41(0,"td",40),t.EFF(1),t.k0s()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.JRh(H.LoopStateEnum[null==v?null:v.state])}}function Qu(F,B){1&F&&(t.j41(0,"th",39),t.EFF(1,"Initiation Time"),t.k0s())}function p1(F,B){if(1&F&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&F){const v=B.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==v?null:v.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function d0(F,B){1&F&&(t.j41(0,"th",39),t.EFF(1,"Last Update Time"),t.k0s())}function ps(F,B){if(1&F&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&F){const v=B.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==v?null:v.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function Zu(F,B){1&F&&(t.j41(0,"th",41),t.EFF(1,"Amount (Sats)"),t.k0s())}function Sd(F,B){if(1&F&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==v?null:v.amt))}}function eo(F,B){1&F&&(t.j41(0,"th",41),t.EFF(1,"Cost Server (Sats)"),t.k0s())}function U2(F,B){if(1&F&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==v?null:v.cost_server))}}function Td(F,B){1&F&&(t.j41(0,"th",41),t.EFF(1,"Cost Offchain (Sats)"),t.k0s())}function Dr(F,B){if(1&F&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==v?null:v.cost_offchain))}}function G2(F,B){1&F&&(t.j41(0,"th",41),t.EFF(1,"Cost Onchain (Sats)"),t.k0s())}function zl(F,B){if(1&F&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==v?null:v.cost_onchain)," ")}}function Bl(F,B){1&F&&(t.j41(0,"th",39),t.EFF(1,"HTLC Address"),t.k0s())}function h0(F,B){if(1&F&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,l0,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.htlc_address)}}function H2(F,B){1&F&&(t.j41(0,"th",39),t.EFF(1,"ID"),t.k0s())}function Ju(F,B){if(1&F&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,l0,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.id)}}function Ld(F,B){1&F&&(t.j41(0,"th",39),t.EFF(1,"ID (Bytes)"),t.k0s())}function ul(F,B){if(1&F&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,l0,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.id_bytes)}}function j2(F,B){if(1&F){const v=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(){t.eBV(v);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function g1(F,B){if(1&F){const v=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(G){const Oe=t.eBV(v).$implicit,kt=t.XpG();return t.Njj(kt.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function W2(F,B){if(1&F&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.JRh(v.emptyTableMessage)}}function Vl(F,B){if(1&F&&(t.j41(0,"td",51),t.DNE(1,W2,2,1,"p",52),t.k0s()),2&F){const v=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=v.listSwaps&&v.listSwaps.data)||(null==v.listSwaps||null==v.listSwaps.data?null:v.listSwaps.data.length)<1)}}function Ul(F,B){if(1&F&&t.nrm(0,"tr",53),2&F){const v=t.XpG();t.Y8G("ngClass",t.eq3(1,dl,(null==v.listSwaps?null:v.listSwaps.data)&&(null==v.listSwaps||null==v.listSwaps.data?null:v.listSwaps.data.length)>0))}}function to(F,B){1&F&&t.nrm(0,"tr",54)}function qu(F,B){1&F&&t.nrm(0,"tr",55)}let _1=(()=>{class F{constructor(v,H,G,Oe,kt,At){this.logger=v,this.commonService=H,this.store=G,this.loopService=Oe,this.datePipe=kt,this.camelCaseWithReplace=At,this.selectedSwapType=Wt.C7.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:Wt.md,sortBy:"initiation_time",sortOrder:Wt.oi.DESCENDING},this.LoopStateEnum=Wt.Hx,this.faHistory=qi.Int,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new Vr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Xi.B,new Xi.B,new Xi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(v){this.swapCaption=this.selectedSwapType===Wt.C7.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(uc.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{this.tableSetting=v.pageSettings.find(H=>H.pageId===this.PAGE_ID)?.tables.find(H=>H.tableId===this.tableSetting.tableId)||Wt.ZC.find(H=>H.pageId===this.PAGE_ID)?.tables.find(H=>H.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.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:Wt.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(v){const H=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(G=>G.column===v);return H?H.label?H.label:this.camelCaseWithReplace.transform(H.column,"_"):this.commonService.titleCase(v)}setFilterPredicate(){this.listSwaps.filterPredicate=(v,H)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(v).toLowerCase();break;case"state":G=v?.state?this.LoopStateEnum[v?.state]:"";break;case"initiation_time":case"last_update_time":G=this.datePipe.transform(new Date((v[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:G=typeof v[this.selFilterBy]>"u"?"":"string"==typeof v[this.selFilterBy]?v[this.selFilterBy].toLowerCase():"boolean"==typeof v[this.selFilterBy]?v[this.selFilterBy]?"yes":"no":v[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===G.indexOf(H):G.includes(H)}}onSwapClick(v,H){this.loopService.getSwap(v.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Sn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:Wt.Hx[G.state||""],title:"Status",width:50,type:Wt.UN.STRING},{key:"amt",value:G.amt,title:"Amount (Sats)",width:50,type:Wt.UN.NUMBER}],[{key:"initiation_time",value:(G.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:Wt.UN.DATE_TIME},{key:"last_update_time",value:(G.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:Wt.UN.DATE_TIME}],[{key:"cost_server",value:G.cost_server,title:"Server Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_offchain",value:G.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_onchain",value:G.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:Wt.UN.NUMBER}],[{key:"id_bytes",value:G.id_bytes,title:"ID",width:100,type:Wt.UN.STRING}],[{key:"htlc_address",value:G.htlc_address,title:"HTLC Address",width:100,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(v){this.listSwaps=new Vr.I6([...v]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(H,G)=>H[G]&&isNaN(H[G])?H[G].toLocaleLowerCase():H[G]?+H[G]: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===Wt.C7.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(is.h),t.rXU(Pi.il),t.rXU(B2.Q),t.rXU(si.vh),t.rXU(Uc.VD))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-swaps"]],viewQuery:function(H,G){if(1&H&&(t.GBs(u1.B4,5),t.GBs(Md.iy,5)),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:ft.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Md.xX,useValue:(0,Wt.on)("Swaps")}]),t.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(H,G){if(1&H){const Oe=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),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(At){return t.eBV(Oe),t.DH7(G.selFilterBy,At)||(G.selFilterBy=At),t.Njj(At)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Pl,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(At){return t.eBV(Oe),t.DH7(G.selFilter,At)||(G.selFilter=At),t.Njj(At)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,V2,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,hl,2,0,"th",16)(24,m1,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Qu,2,0,"th",16)(27,p1,3,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,d0,2,0,"th",16)(30,ps,3,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,Zu,2,0,"th",21)(33,Sd,4,3,"td",17),t.bVm(),t.qex(34,22),t.DNE(35,eo,2,0,"th",21)(36,U2,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,Td,2,0,"th",21)(39,Dr,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,G2,2,0,"th",21)(42,zl,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,Bl,2,0,"th",16)(45,h0,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,H2,2,0,"th",16)(48,Ju,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,Ld,2,0,"th",16)(51,ul,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,j2,6,0,"th",29)(54,g1,3,0,"td",30),t.bVm(),t.qex(55,31),t.DNE(56,Vl,2,1,"td",32),t.bVm(),t.DNE(57,Ul,1,3,"tr",33)(58,to,1,0,"tr",34)(59,qu,1,0,"tr",35),t.k0s(),t.nrm(60,"mat-paginator",36),t.k0s()()()}2&H&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,Fl).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.tableSetting.sortBy)("matSortDirection",G.tableSetting.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,f1,"error"===G.flgLoading[0])),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(19,Nl)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[si.YU,si.Sq,si.bT,si.B3,De.me,De.BC,De.vS,Qr.aY,$i.DJ,$i.sA,$i.UI,Go.PW,Go.eI,be.$z,Ta.fg,Ne.rl,Ne.nJ,Ed.HM,ft.VO,ft.$2,Rt.wT,u1.B4,u1.aE,Vr.Zl,Vr.tL,Vr.ji,Vr.cC,Vr.YV,Vr.iL,Vr.Zq,Vr.xW,Vr.KS,Vr.$R,Vr.Qo,Vr.YZ,Vr.NB,Vr.iF,Md.iy,Jt.ZF,Jt.Ld,si.QX,si.vh]})}}return F})();const u0=F=>["../",F];function X2(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&F){const v=B.$implicit,H=t.XpG();t.Y8G("active",H.activeTab.link===v.link)("routerLink",t.eq3(3,u0,v.link)),t.R7$(),t.JRh(v.name)}}let Y2=(()=>{class F{constructor(v,H,G){this.router=v,this.loopService=H,this.store=G,this.faInfinity=qi.C8j,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=Wt.C7,this.selectedSwapType=Wt.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 Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.store.dispatch((0,Sn.mt)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,dn.Q)(this.unSubs[4])).subscribe({next:H=>{this.store.dispatch((0,Sn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo=H,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:H=>{this.store.dispatch((0,Sn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const v=this.links.find(H=>this.router.url.includes(H.link));this.activeTab=v||this.links[0],this.selectedSwapType=v&&"loopin"===v.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,Cr.p)(H=>H instanceof Nn.gx)).subscribe({next:H=>{const G=this.links.find(Oe=>H.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"loopin"===G.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:H=>{this.flgLoading[0]=!1,this.storedSwaps=H,this.filteredSwaps=this.storedSwaps?.filter(G=>G.type===this.selectedSwapType)},error:H=>{this.flgLoading[0]="error",this.emptyTableMessage=H.message?H.message:"No loop "+(this.selectedSwapType===Wt.C7.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(v){this.selectedSwapType="loopin"===v.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(H=>H.type===this.selectedSwapType)}onLoop(v){v===Wt.C7.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:H=>{this.store.dispatch((0,Sn.xO)({payload:{data:{minQuote:H[0],maxQuote:H[1],direction:v,component:z2.D}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[3])).subscribe({next:H=>{this.store.dispatch((0,Sn.xO)({payload:{data:{minQuote:H[0],maxQuote:H[1],direction:v,component:z2.D}}}))}})}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Nn.Ix),t.rXU(B2.Q),t.rXU(Pi.il))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-loop"]],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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,X2,2,5,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8)(12,"button",9),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLoop(G.selectedSwapType))}),t.EFF(13),t.k0s()(),t.nrm(14,"rtl-swaps",10),t.k0s()()()}if(2&H){const Oe=t.sdS(10);t.R7$(),t.Y8G("icon",G.faInfinity),t.R7$(2),t.SpI("Loop (v",(null==G.loopInfo?null:G.loopInfo.version)||" Unknown",")"),t.R7$(4),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.filteredSwaps)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[si.Sq,Qr.aY,$i.DJ,$i.sA,$i.UI,be.$z,Mr.RN,Mr.m2,la.Bu,la.hQ,la.Ql,Nn.Wk,_1]})}}return F})();var v1=g(1001),K2=g(4412),$2=g(8810),Dd=g(2462);let Dc=(()=>{class F{constructor(v,H,G,Oe){this.httpClient=v,this.logger=H,this.store=G,this.commonService=Oe,this.swapUrl="",this.swaps={},this.boltzInfo=null,this.boltzInfoChanged=new K2.t(null),this.swapsChanged=new K2.t({}),this.unSubs=[new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Sn.mt)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:v=>{this.store.dispatch((0,Sn.y0)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swaps=v,this.swapsChanged.next(this.swaps)},error:v=>this.swapsChanged.error(this.handleErrorWithAlert(Wt.MZ.GET_BOLTZ_SWAPS,this.swapUrl,v))})}swapInfo(v){return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/swapInfo/"+v,this.httpClient.get(this.swapUrl).pipe((0,ca.W)(H=>(0,Dt.of)(this.handleErrorWithAlert(Wt.MZ.NO_SPINNER,this.swapUrl,H))))}getBoltzInfo(){this.store.dispatch((0,Sn.mt)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/info",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:v=>{this.store.dispatch((0,Sn.y0)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.boltzInfo=v,this.boltzInfoChanged.next(this.boltzInfo)},error:v=>(this.boltzInfo={version:"2.0.0"},this.boltzInfoChanged.next(this.boltzInfo),(0,Dt.of)(this.handleErrorWithoutAlert(Wt.MZ.GET_BOLTZ_INFO,this.swapUrl,v)))})}serviceInfo(){return this.store.dispatch((0,Sn.mt)({payload:Wt.MZ.GET_SERVICE_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[2]),(0,Qa.T)(v=>(this.store.dispatch((0,Sn.y0)({payload:Wt.MZ.GET_SERVICE_INFO})),v)),(0,ca.W)(v=>(0,Dt.of)(this.handleErrorWithAlert(Wt.MZ.GET_SERVICE_INFO,this.swapUrl,v))))}swapOut(v,H,G){const Oe={amount:v,address:H,acceptZeroConf:G};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,ca.W)(kt=>this.handleErrorWithoutAlert("Swap Out for Address: "+H,Wt.MZ.NO_SPINNER,kt)))}swapIn(v,H){const G={amount:v,sendFromInternal:H};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,G).pipe((0,ca.W)(Oe=>this.handleErrorWithoutAlert("Swap In for Amount: "+v,Wt.MZ.NO_SPINNER,Oe)))}handleErrorWithoutAlert(v,H,G){let Oe="";return this.logger.error("ERROR IN: "+v+"\n"+JSON.stringify(G)),this.store.dispatch((0,Sn.y0)({payload:H})),401===G.status?(Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Sn.ri)({payload:Oe}))):503===G.status?(Oe="Unable to Connect to Boltz Server.",this.store.dispatch((0,Sn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:v},component:Dd.f}}}))):Oe=this.commonService.extractErrorMessage(G),(0,$2.$)(()=>new Error(Oe))}handleErrorWithAlert(v,H,G){let Oe="";if(401===G.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Sn.ri)({payload:"Authentication Failed: "+JSON.stringify(G.error)}))),this.logger.error(G),this.store.dispatch((0,Sn.y0)({payload:v})),401===G.status)Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Sn.ri)({payload:Oe}));else if(503===G.status)Oe="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Sn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:H},component:Dd.f}}}))},100);else{Oe=this.commonService.extractErrorMessage(G);const kt=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;setTimeout(()=>{this.store.dispatch((0,Sn.xO)({payload:{data:{type:Wt.A$.ERROR,alertTitle:"ERROR",message:{code:kt,message:Oe,URL:H},component:Dd.f}}}))},100)}return{message:Oe}}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.KVO(Vo.Qq),t.KVO(ge.gP),t.KVO(Pi.il),t.KVO(is.h))}}static{this.\u0275prov=t.jDH({token:F,factory:F.\u0275fac})}}return F})();const f0=F=>({"display-none":F});function ef(F,B){1&F&&t.eu8(0)}function tf(F,B){if(1&F&&(t.j41(0,"div",4)(1,"span",5),t.EFF(2),t.k0s()()),2&F){const v=t.XpG();t.R7$(2),t.JRh(null!=v.swapStatus&&v.swapStatus.error?null==v.swapStatus?null:v.swapStatus.error:"Unknown Error.")}}function Q2(F,B){if(1&F&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Routing Fee (mSats)"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.nI1(5,"number"),t.k0s()()),2&F){const v=t.XpG(2);t.R7$(4),t.JRh(t.bMT(5,1,null==v.swapStatus?null:v.swapStatus.routingFeeMilliSat))}}function Z2(F,B){if(1&F&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Claim Transaction ID"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.k0s()()),2&F){const v=t.XpG(2);t.R7$(4),t.JRh(null==v.swapStatus?null:v.swapStatus.claimTransactionId)}}function nf(F,B){if(1&F&&(t.j41(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),t.EFF(4,"ID"),t.k0s(),t.j41(5,"span",5),t.EFF(6),t.k0s()(),t.DNE(7,Q2,6,3,"div",9)(8,Z2,5,1,"div",9),t.k0s(),t.nrm(9,"mat-divider",10),t.j41(10,"div",6)(11,"div",11)(12,"h4",8),t.EFF(13,"Lockup Address"),t.k0s(),t.j41(14,"span",5),t.EFF(15),t.k0s()()()()),2&F){const v=t.XpG();t.R7$(6),t.JRh(null==v.swapStatus?null:v.swapStatus.id),t.R7$(),t.Y8G("ngIf",v.acceptZeroConf),t.R7$(),t.Y8G("ngIf",v.acceptZeroConf),t.R7$(7),t.JRh(null==v.swapStatus?null:v.swapStatus.lockupAddress)}}function J2(F,B){1&F&&(t.j41(0,"span",22),t.EFF(1,"N/A"),t.k0s())}function rf(F,B){1&F&&(t.j41(0,"span",23),t.EFF(1,"QR Code Not Applicable"),t.k0s())}function q2(F,B){1&F&&t.nrm(0,"mat-divider",24),2&F&&t.Y8G("inset",!0)}function u4(F,B){if(1&F&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Transaction ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&F){const v=t.XpG(2);t.R7$(5),t.JRh(null==v.swapStatus?null:v.swapStatus.txId)}}function b1(F,B){if(1&F&&(t.j41(0,"div",6)(1,"div",25)(2,"h4",8),t.EFF(3,"ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",25)(7,"h4",8),t.EFF(8,"Expected Amount (Sats)"),t.k0s(),t.j41(9,"span",5),t.EFF(10),t.nI1(11,"number"),t.k0s()()()),2&F){const v=t.XpG(2);t.R7$(5),t.JRh(null==v.swapStatus?null:v.swapStatus.id),t.R7$(5),t.JRh(t.bMT(11,2,null==v.swapStatus?null:v.swapStatus.expectedAmount))}}function eh(F,B){1&F&&t.nrm(0,"mat-divider",10)}function Ho(F,B){if(1&F&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Address"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&F){const v=t.XpG(2);t.R7$(5),t.JRh(null==v.swapStatus?null:v.swapStatus.address)}}function f4(F,B){1&F&&t.nrm(0,"mat-divider",10)}function th(F,B){if(1&F&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"BIP 21"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&F){const v=t.XpG(2);t.R7$(5),t.JRh(null==v.swapStatus?null:v.swapStatus.bip21)}}function m4(F,B){if(1&F&&(t.j41(0,"div",12)(1,"div",13),t.nrm(2,"qr-code",14),t.DNE(3,J2,2,0,"span",15),t.k0s(),t.j41(4,"div",16)(5,"div",4)(6,"div",17),t.nrm(7,"qr-code",14),t.DNE(8,rf,2,0,"span",18),t.k0s(),t.DNE(9,q2,1,1,"mat-divider",19)(10,u4,6,1,"div",20)(11,b1,12,4,"div",20)(12,eh,1,0,"mat-divider",21)(13,Ho,6,1,"div",20)(14,f4,1,0,"mat-divider",21)(15,th,6,1,"div",20),t.k0s()()()),2&F){const v=t.XpG();t.R7$(),t.Y8G("fxLayoutAlign",""!==((null==v.swapStatus?null:v.swapStatus.txId)||(null==v.swapStatus?null:v.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(19,f0,v.screenSize===v.screenSizeEnum.XS||v.screenSize===v.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==v.swapStatus?null:v.swapStatus.txId)||(null==v.swapStatus?null:v.swapStatus.address))("size",v.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==v.swapStatus?null:v.swapStatus.txId)||(null==v.swapStatus?null:v.swapStatus.address))),t.R7$(3),t.Y8G("fxLayoutAlign",""!==((null==v.swapStatus?null:v.swapStatus.txId)||(null==v.swapStatus?null:v.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(21,f0,v.screenSize!==v.screenSizeEnum.XS&&v.screenSize!==v.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==v.swapStatus?null:v.swapStatus.txId)||(null==v.swapStatus?null:v.swapStatus.address))("size",v.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==v.swapStatus?null:v.swapStatus.txId)||(null==v.swapStatus?null:v.swapStatus.address))),t.R7$(),t.Y8G("ngIf",v.screenSize===v.screenSizeEnum.XS||v.screenSize===v.screenSizeEnum.SM),t.R7$(),t.Y8G("ngIf",v.sendFromInternal),t.R7$(),t.Y8G("ngIf",!v.sendFromInternal),t.R7$(),t.Y8G("ngIf",!v.sendFromInternal),t.R7$(),t.Y8G("ngIf",!v.sendFromInternal),t.R7$(),t.Y8G("ngIf",!v.sendFromInternal),t.R7$(),t.Y8G("ngIf",!v.sendFromInternal)}}let y1=(()=>{class F{constructor(v){this.commonService=v,this.swapStatus=null,this.direction=Wt.Bd.SWAP_OUT,this.acceptZeroConf=!1,this.sendFromInternal=!0,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=Wt.f7,this.swapTypeEnum=Wt.Bd}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===Wt.f7.XS&&(this.qrWidth=180)}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(is.h))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction",acceptZeroConf:"acceptZeroConf",sendFromInternal:"sendFromInternal"},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"],[3,"value","size","errorCorrectionLevel"],["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(H,G){if(1&H&&t.DNE(0,ef,1,0,"ng-container",3)(1,tf,3,1,"ng-template",null,0,t.C5r)(3,nf,16,4,"ng-template",null,1,t.C5r)(5,m4,16,23,"ng-template",null,2,t.C5r),2&H){const Oe=t.sdS(2),kt=t.sdS(4),At=t.sdS(6);t.Y8G("ngTemplateOutlet",null!=G.swapStatus&&G.swapStatus.error?Oe:G.direction===G.swapTypeEnum.SWAP_OUT?kt:At)}},dependencies:[si.YU,si.bT,si.T3,$i.DJ,$i.sA,$i.UI,Go.PW,rl.q,Ll.Um,si.QX]})}}return F})(),p4=(()=>{class F{constructor(){this.serviceInfo={},this.direction=Wt.Bd.SWAP_OUT,this.swapTypeEnum=Wt.Bd}static{this.\u0275fac=function(H){return new(H||F)}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},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(H,G){1&H&&(t.j41(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),t.EFF(4,"Service Information"),t.k0s()()(),t.j41(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),t.EFF(9,"Minimum Amount (Sats)"),t.k0s(),t.j41(10,"span",6),t.EFF(11),t.nI1(12,"number"),t.k0s()(),t.j41(13,"div",4)(14,"h4",5),t.EFF(15,"Maximum Amount (Sats)"),t.k0s(),t.j41(16,"span",6),t.EFF(17),t.nI1(18,"number"),t.k0s()()(),t.nrm(19,"mat-divider",7),t.j41(20,"div",3)(21,"div",4)(22,"h4",5),t.EFF(23,"Fee Percentage"),t.k0s(),t.j41(24,"span",6),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div",4)(28,"h4",5),t.EFF(29,"Miner Fee (Sats)"),t.k0s(),t.j41(30,"span",6),t.EFF(31),t.nI1(32,"number"),t.k0s()()()()()),2&H&&(t.Y8G("expanded",!0),t.R7$(11),t.JRh(t.bMT(12,5,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.minimal)),t.R7$(6),t.JRh(t.bMT(18,7,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.maximal)),t.R7$(8),t.JRh(t.bMT(26,9,null==G.serviceInfo||null==G.serviceInfo.fees?null:G.serviceInfo.fees.percentage)),t.R7$(6),t.JRh(t.bMT(32,11,G.direction===G.swapTypeEnum.SWAP_OUT?null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.reverse:null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.normal)))},dependencies:[$i.DJ,$i.sA,$i.UI,Br.GK,Br.Z2,Br.WN,rl.q,si.QX]})}}return F})();var x1=g(6949);const Hc=(F,B)=>({"small-svg":F,"large-svg":B});function Gl(F,B){1&F&&t.eu8(0)}function af(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.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),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Submarine Swaps explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Hc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function ih(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21),t.nrm(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.joV(),t.j41(9,"div",18)(10,"mat-card-title"),t.EFF(11,"Step 1: Deciding to Submarine Swap"),t.k0s()(),t.j41(12,"div",19)(13,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Hc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function jc(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",29),t.nrm(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),t.j41(9,"defs")(10,"pattern",37),t.nrm(11,"use",38),t.k0s(),t.nrm(12,"image",39),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Sending the on-chain funds"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Hc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function g4(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",40)(2,"g",41),t.nrm(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),t.k0s(),t.j41(8,"defs")(9,"clipPath",47),t.nrm(10,"rect",48),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on Lightning"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.EFF(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Hc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function sf(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",49),t.nrm(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Hc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}let fc=(()=>{class F{constructor(v){this.commonService=v,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(v){2===v.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===v.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(is.h))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(H,G){if(1&H&&t.DNE(0,Gl,1,0,"ng-container",5)(1,af,18,5,"ng-template",null,0,t.C5r)(3,ih,15,5,"ng-template",null,1,t.C5r)(5,jc,19,5,"ng-template",null,2,t.C5r)(7,g4,17,5,"ng-template",null,3,t.C5r)(9,sf,13,5,"ng-template",null,4,t.C5r),2&H){const Oe=t.sdS(2),kt=t.sdS(4),At=t.sdS(6),oi=t.sdS(8),ui=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?kt:3===G.stepNumber?At:4===G.stepNumber?oi:ui)}},dependencies:[si.YU,si.T3,$i.DJ,$i.sA,$i.UI,Go.PW,Mr.Lc,Mr.dh],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:[x1.k]}})}}return F})();const Wc=(F,B)=>({"small-svg":F,"large-svg":B});function nh(F,B){1&F&&t.eu8(0)}function rh(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.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),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Reverse Submarine Swap explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Wc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function cf(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21)(2,"g",22),t.nrm(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.nrm(9,"path",29),t.j41(10,"defs")(11,"clipPath",30),t.nrm(12,"rect",31),t.k0s()()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 1: Deciding to Reverse Submarine Swap"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Wc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function C1(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",32),t.nrm(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),t.j41(9,"defs")(10,"pattern",40),t.nrm(11,"use",41),t.k0s(),t.nrm(12,"image",42),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Paying the Lightning Invoice"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Wc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function w1(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",43)(2,"g",22),t.nrm(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),t.k0s(),t.j41(8,"defs")(9,"clipPath",30),t.nrm(10,"rect",49),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on-chain"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Wc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}function ah(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",50),t.nrm(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@sliderAnimation",v.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Wc,v.screenSize===v.screenSizeEnum.XS,v.screenSize!==v.screenSizeEnum.XS))}}let Da=(()=>{class F{constructor(v){this.commonService=v,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(v){2===v.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===v.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(is.h))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(H,G){if(1&H&&t.DNE(0,nh,1,0,"ng-container",5)(1,rh,18,5,"ng-template",null,0,t.C5r)(3,cf,19,5,"ng-template",null,1,t.C5r)(5,C1,19,5,"ng-template",null,2,t.C5r)(7,w1,17,5,"ng-template",null,3,t.C5r)(9,ah,13,5,"ng-template",null,4,t.C5r),2&H){const Oe=t.sdS(2),kt=t.sdS(4),At=t.sdS(6),oi=t.sdS(8),ui=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?kt:3===G.stepNumber?At:4===G.stepNumber?oi:ui)}},dependencies:[si.YU,si.T3,$i.DJ,$i.sA,$i.UI,Go.PW,Mr.Lc,Mr.dh],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:[x1.k]}})}}return F})();const lf=["stepper"],M1=()=>[1,2,3,4,5],df=(F,B)=>({"dot-primary":F,"dot-primary-lighter":B});function hf(F,B){if(1&F&&t.EFF(0),2&F){const v=t.XpG(2);t.JRh(v.inputFormLabel)}}function Ad(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function m0(F,B){if(1&F&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.SpI("Amount must be greater than or equal to ",t.bMT(2,1,null==v.serviceInfo||null==v.serviceInfo.limits?null:v.serviceInfo.limits.minimal),".")}}function p0(F,B){if(1&F&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",t.bMT(2,1,null==v.serviceInfo||null==v.serviceInfo.limits?null:v.serviceInfo.limits.maximal),".")}}function Xc(F,B){1&F&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",43),t.EFF(3,"Accept Zero Conf"),t.k0s(),t.j41(4,"mat-icon",44),t.EFF(5,"info_outline"),t.k0s()()())}function oh(F,B){1&F&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",45),t.EFF(3,"Send from Internal Wallet"),t.k0s(),t.j41(4,"mat-icon",46),t.EFF(5,"info_outline"),t.k0s()()())}function uf(F,B){1&F&&(t.j41(0,"button",47),t.EFF(1,"Next"),t.k0s())}function sh(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",48),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(1),t.k0s()}if(2&F){const v=t.XpG(2);t.R7$(),t.SpI("Initiate ",v.swapDirectionCaption,"")}}function ff(F,B){if(1&F&&t.EFF(0),2&F){const v=t.XpG(3);t.JRh(v.addressFormLabel)}}function Ac(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function g0(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-step",15)(1,"form",16),t.DNE(2,ff,1,1,"ng-template",17),t.j41(3,"div",49)(4,"mat-radio-group",50),t.bIt("change",function(G){t.eBV(v);const Oe=t.XpG(2);return t.Njj(Oe.onAddressTypeChange(G))}),t.j41(5,"mat-radio-button",51),t.EFF(6,"Node Local Address"),t.k0s(),t.j41(7,"mat-radio-button",52),t.EFF(8,"External Address"),t.k0s()(),t.j41(9,"mat-form-field",53)(10,"mat-label"),t.EFF(11,"Address"),t.k0s(),t.nrm(12,"input",54),t.DNE(13,Ac,2,0,"mat-error",24),t.k0s()(),t.j41(14,"div",26)(15,"button",55),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(16),t.k0s()()()()}if(2&F){const v=t.XpG(2);t.Y8G("stepControl",v.addressFormGroup)("editable",v.flgEditable),t.R7$(),t.Y8G("formGroup",v.addressFormGroup),t.R7$(11),t.Y8G("required","external"===v.addressFormGroup.controls.addressType.value),t.R7$(),t.Y8G("ngIf",null==v.addressFormGroup.controls.address.errors?null:v.addressFormGroup.controls.address.errors.required),t.R7$(3),t.SpI("Initiate ",v.swapDirectionCaption,"")}}function mf(F,B){if(1&F&&t.EFF(0),2&F){const v=t.XpG(2);t.SpI("",v.swapDirectionCaption," Status")}}function ch(F,B){if(1&F&&(t.j41(0,"mat-icon",56),t.EFF(1),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.JRh(v.swapStatus&&null!=v.swapStatus&&v.swapStatus.id?"check":"close")}}function _4(F,B){1&F&&t.nrm(0,"div")}function v4(F,B){1&F&&t.nrm(0,"mat-progress-bar",57)}function Fp(F,B){if(1&F&&(t.j41(0,"h4",58),t.EFF(1),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.JRh(v.swapStatus&&v.swapStatus.error?v.swapDirectionCaption+" failed.":v.swapStatus&&v.swapStatus.id?v.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":v.swapDirectionCaption+" request placed successfully.")}}function pf(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",59),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function _0(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5),t.k0s()(),t.j41(6,"div",9)(7,"button",10),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",11),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.onClose())}),t.EFF(10,"X"),t.k0s()()(),t.j41(11,"mat-card-content",12)(12,"div",13)(13,"mat-vertical-stepper",14,1),t.bIt("selectionChange",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.stepSelectionChanged(G))}),t.j41(15,"mat-step",15)(16,"form",16),t.DNE(17,hf,1,1,"ng-template",17),t.j41(18,"div",18),t.nrm(19,"rtl-boltz-service-info",19),t.k0s(),t.j41(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),t.EFF(23,"Amount"),t.k0s(),t.nrm(24,"input",22),t.j41(25,"mat-hint"),t.EFF(26),t.nI1(27,"number"),t.nI1(28,"number"),t.k0s(),t.j41(29,"span",23),t.EFF(30,"Sats"),t.k0s(),t.DNE(31,Ad,2,0,"mat-error",24)(32,m0,3,3,"mat-error",24)(33,p0,3,3,"mat-error",24),t.k0s(),t.DNE(34,Xc,6,0,"div",25)(35,oh,6,0,"div",25),t.k0s(),t.j41(36,"div",26),t.DNE(37,uf,2,0,"button",27)(38,sh,2,1,"button",28),t.k0s()()(),t.DNE(39,g0,17,6,"mat-step",29),t.j41(40,"mat-step",30)(41,"form",16),t.DNE(42,mf,1,1,"ng-template",17),t.j41(43,"div",31)(44,"mat-expansion-panel",32)(45,"mat-expansion-panel-header")(46,"mat-panel-title")(47,"span",33),t.EFF(48),t.DNE(49,ch,2,1,"mat-icon",34),t.k0s()()(),t.DNE(50,_4,1,0,"div",35),t.k0s(),t.DNE(51,v4,1,0,"mat-progress-bar",36),t.k0s(),t.DNE(52,Fp,2,1,"h4",37),t.j41(53,"div",26),t.DNE(54,pf,2,0,"button",38),t.k0s()()()(),t.j41(55,"div",39)(56,"button",40),t.EFF(57,"Close"),t.k0s()()()()()()}if(2&F){const v=t.XpG(),H=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(3),t.Y8G("fxFlex",v.screenSize===v.screenSizeEnum.XS||v.screenSize===v.screenSizeEnum.SM?"83":"91"),t.R7$(2),t.JRh(v.swapDirectionCaption),t.R7$(),t.Y8G("fxFlex",v.screenSize===v.screenSizeEnum.XS||v.screenSize===v.screenSizeEnum.SM?"17":"9"),t.R7$(7),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",v.inputFormGroup)("editable",v.flgEditable),t.R7$(),t.Y8G("formGroup",v.inputFormGroup),t.R7$(3),t.Y8G("serviceInfo",v.serviceInfo)("direction",v.direction),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.Lme("Range: ",t.bMT(27,32,null==v.serviceInfo||null==v.serviceInfo.limits?null:v.serviceInfo.limits.minimal),"-",t.bMT(28,34,null==v.serviceInfo||null==v.serviceInfo.limits?null:v.serviceInfo.limits.maximal),""),t.R7$(5),t.Y8G("ngIf",null==v.inputFormGroup||null==v.inputFormGroup.controls||null==v.inputFormGroup.controls.amount||null==v.inputFormGroup.controls.amount.errors?null:v.inputFormGroup.controls.amount.errors.required),t.R7$(),t.Y8G("ngIf",null==v.inputFormGroup||null==v.inputFormGroup.controls||null==v.inputFormGroup.controls.amount||null==v.inputFormGroup.controls.amount.errors?null:v.inputFormGroup.controls.amount.errors.min),t.R7$(),t.Y8G("ngIf",null==v.inputFormGroup||null==v.inputFormGroup.controls||null==v.inputFormGroup.controls.amount||null==v.inputFormGroup.controls.amount.errors?null:v.inputFormGroup.controls.amount.errors.max),t.R7$(),t.Y8G("ngIf",v.direction===v.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",v.direction===v.swapTypeEnum.SWAP_IN&&v.isSendFromInternalCompatible),t.R7$(2),t.Y8G("ngIf",v.direction===v.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",v.direction===v.swapTypeEnum.SWAP_IN),t.R7$(),t.Y8G("ngIf",v.direction===v.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("stepControl",v.statusFormGroup),t.R7$(),t.Y8G("formGroup",v.statusFormGroup),t.R7$(3),t.Y8G("expanded",!!v.swapStatus),t.R7$(4),t.JRh(v.swapStatus?v.swapStatus.id?v.swapDirectionCaption+" request details":v.swapDirectionCaption+" error details":"Waiting for "+v.swapDirectionCaption+" request..."),t.R7$(),t.Y8G("ngIf",v.swapStatus),t.R7$(),t.Y8G("ngIf",!v.swapStatus)("ngIfElse",H),t.R7$(),t.Y8G("ngIf",!v.swapStatus),t.R7$(),t.Y8G("ngIf",v.swapStatus),t.R7$(2),t.Y8G("ngIf",v.swapStatus&&(v.swapStatus.error||!v.swapStatus.id)),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function Hl(F,B){if(1&F&&t.nrm(0,"rtl-boltz-swap-status",60),2&F){const v=t.XpG();t.Y8G("swapStatus",v.swapStatus)("direction",v.direction)("acceptZeroConf",null==v.inputFormGroup||null==v.inputFormGroup.controls?null:v.inputFormGroup.controls.acceptZeroConf.value)("sendFromInternal",null==v.inputFormGroup||null==v.inputFormGroup.controls?null:v.inputFormGroup.controls.sendFromInternal.value)}}function jl(F,B){if(1&F){const v=t.RV6();t.j41(0,"rtl-boltz-swapout-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(v);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&F){const v=t.XpG(2);t.Y8G("animationDirection",v.animationDirection),t.R50("stepNumber",v.stepNumber)}}function v0(F,B){if(1&F){const v=t.RV6();t.j41(0,"rtl-boltz-swapin-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(v);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&F){const v=t.XpG(2);t.Y8G("animationDirection",v.animationDirection),t.R50("stepNumber",v.stepNumber)}}function Wl(F,B){if(1&F){const v=t.RV6();t.j41(0,"span",77),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onStepChanged(G))}),t.nrm(1,"p",78),t.k0s()}if(2&F){const v=B.$implicit,H=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,df,H.stepNumber===v,H.stepNumber!==v))}}function Xl(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onReadMore())}),t.EFF(1,"Read More"),t.k0s()}}function Yl(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function gf(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function b0(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function y0(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",83),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function Kl(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",84),t.bIt("click",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function fl(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",61)(1,"div",18)(2,"mat-card-header",62)(3,"div",63),t.nrm(4,"span",8),t.k0s(),t.j41(5,"div",64)(6,"button",11),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",65),t.DNE(9,jl,1,2,"rtl-boltz-swapout-info-graphics",66)(10,v0,1,2,"rtl-boltz-swapin-info-graphics",66),t.k0s(),t.j41(11,"div",67),t.DNE(12,Wl,2,4,"span",68),t.k0s(),t.j41(13,"div",69),t.DNE(14,Xl,2,0,"button",70)(15,Yl,2,0,"button",71)(16,gf,2,0,"button",72)(17,b0,2,0,"button",73)(18,y0,2,0,"button",74)(19,Kl,2,0,"button",75),t.k0s()()()}if(2&F){const v=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("ngIf",v.direction===v.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",v.direction===v.swapTypeEnum.SWAP_IN),t.R7$(2),t.Y8G("ngForOf",t.lJ4(10,M1)),t.R7$(2),t.Y8G("ngIf",5===v.stepNumber),t.R7$(),t.Y8G("ngIf",5===v.stepNumber),t.R7$(),t.Y8G("ngIf",5===v.stepNumber),t.R7$(),t.Y8G("ngIf",v.stepNumber<5),t.R7$(),t.Y8G("ngIf",v.stepNumber>1&&v.stepNumber<5),t.R7$(),t.Y8G("ngIf",v.stepNumber<5)}}let $l=(()=>{class F{constructor(v,H,G,Oe,kt,At,oi){this.dialogRef=v,this.data=H,this.boltzService=G,this.formBuilder=Oe,this.decimalPipe=kt,this.logger=At,this.commonService=oi,this.faInfoCircle=qi.iW_,this.boltzInfo=null,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=Wt.Bd,this.direction=Wt.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=Wt.f7,this.animationDirection="forward",this.flgEditable=!0,this.isSendFromInternalCompatible=!0,this.unSubs=[new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||Wt.Bd.SWAP_OUT,this.swapDirectionCaption=this.direction===Wt.Bd.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[De.k0.required,De.k0.min(this.serviceInfo.limits?.minimal||0),De.k0.max(this.serviceInfo.limits?.maximal||0)]],acceptZeroConf:[!1],sendFromInternal:[!0]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[De.k0.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.boltzService.boltzInfoChanged.pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:v=>{this.boltzInfo=v,this.isSendFromInternalCompatible=this.commonService.isVersionCompatible(this.boltzInfo.version,"2.0.0")},error:v=>{this.boltzInfo={version:"2.0.0"},this.logger.error(v)}})}ngAfterViewInit(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(v){"external"===v.value?(this.addressFormGroup.controls.address.setValidators([De.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===Wt.Bd.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===Wt.Bd.SWAP_IN?this.boltzService.swapIn(this.inputFormGroup.controls.amount.value,this.isSendFromInternalCompatible?this.inputFormGroup.controls.sendFromInternal.value:null).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:v=>{this.swapStatus=v,this.boltzService.listSwaps(),this.flgEditable=!0},error:v=>{this.swapStatus={error:v},this.flgEditable=!0,this.logger.error(v)}}):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,dn.Q)(this.unSubs[3])).subscribe({next:H=>{this.swapStatus=H,this.boltzService.listSwaps(),this.flgEditable=!0},error:H=>{this.swapStatus={error:H},this.flgEditable=!0,this.logger.error(H)}})}stepSelectionChanged(v){switch(v.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value?this.direction===Wt.Bd.SWAP_IN?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.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"):"Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address"}v.selectedIndex{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Er.CP),t.rXU(Er.Vh),t.rXU(Dc),t.rXU(De.ze),t.rXU(si.QX),t.rXU(ge.gP),t.rXU(is.h))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(H,G){if(1&H&&t.GBs(lf,5),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},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,"fxFlex"],[1,"page-title"],["fxLayoutAlign","end end",3,"fxFlex"],["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"],["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(H,G){1&H&&t.DNE(0,_0,58,36,"div",2)(1,Hl,1,4,"ng-template",null,0,t.C5r)(3,fl,20,11,"div",3),2&H&&(t.Y8G("ngIf",!G.flgShowInfo),t.R7$(3),t.Y8G("ngIf",G.flgShowInfo))},dependencies:[si.YU,si.Sq,si.bT,De.qT,De.me,De.Q0,De.BC,De.cb,De.YS,De.j4,De.JD,$i.DJ,$i.sA,$i.UI,Go.PW,Er.tx,be.$z,Mr.m2,Mr.MM,Br.GK,Br.Z2,Br.WN,Vc.An,Ta.fg,Ne.rl,Ne.nJ,Ne.MV,Ne.TL,Ne.yw,Ed.HM,Il.VT,Il._g,Rl.sG,Sc.oV,wo.V5,wo.Ti,wo.M6,wo.F7,Mi.N,y1,p4,fc,Da,si.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:[v1.C]}})}}return F})();const lh=()=>["all"],_f=F=>({"overflow-auto error-border":F,"overflow-auto":!0}),vf=()=>["no_swap"],ml=F=>({width:F}),x0=F=>({"display-none":F});function C0(F,B){if(1&F&&(t.j41(0,"mat-option",42),t.EFF(1),t.k0s()),2&F){const v=B.$implicit,H=t.XpG();t.Y8G("value",v),t.R7$(),t.JRh(H.getLabel(v))}}function bf(F,B){1&F&&t.nrm(0,"mat-progress-bar",43)}function No(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Status"),t.k0s())}function kd(F,B){if(1&F&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.JRh(H.swapStateEnum[null==v?null:v.status])}}function dh(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Swap ID"),t.k0s())}function pl(F,B){if(1&F&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.R7$(),t.JRh(null==v?null:v.id)}}function Id(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Claim Address"),t.k0s())}function yf(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ml,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.claimAddress)}}function jo(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Lockup Address"),t.k0s())}function kc(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ml,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.lockupAddress)}}function hh(F,B){1&F&&(t.j41(0,"th",48),t.EFF(1,"Onchain Amount (Sats)"),t.k0s())}function w0(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==v?null:v.onchainAmount))}}function xf(F,B){1&F&&(t.j41(0,"th",48),t.EFF(1,"Expected Amount (Sats)"),t.k0s())}function E1(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==v?null:v.expectedAmount))}}function uh(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Error"),t.k0s())}function M0(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ml,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.error)}}function fh(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Private Key"),t.k0s())}function E0(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ml,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.privateKey)}}function Cf(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Preimage"),t.k0s())}function Rd(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ml,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.preimage)}}function mh(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Redeem Script"),t.k0s())}function ph(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ml,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.redeemScript)}}function S0(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Invoice"),t.k0s())}function gh(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ml,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),t.R7$(2),t.JRh(null==v?null:v.invoice)}}function _h(F,B){1&F&&(t.j41(0,"th",48),t.EFF(1,"Timeout Block Height"),t.k0s())}function S1(F,B){if(1&F&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&F){const v=B.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==v?null:v.timeoutBlockHeight))}}function T0(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Lockup Tx ID"),t.k0s())}function Yc(F,B){if(1&F&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.R7$(),t.JRh(null==v?null:v.lockupTransactionId)}}function L0(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Claim Tx ID"),t.k0s())}function T1(F,B){if(1&F&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.R7$(),t.JRh(null==v?null:v.claimTransactionId)}}function b4(F,B){1&F&&(t.j41(0,"th",44),t.EFF(1,"Refund Tx ID"),t.k0s())}function D0(F,B){if(1&F&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.R7$(),t.JRh(null==v?null:v.refundTransactionId)}}function vh(F,B){if(1&F){const v=t.RV6();t.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",53),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Od(F,B){if(1&F){const v=t.RV6();t.j41(0,"td",54)(1,"button",55),t.bIt("click",function(G){const Oe=t.eBV(v).$implicit,kt=t.XpG();return t.Njj(kt.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function A0(F,B){if(1&F&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&F){const v=t.XpG(2);t.R7$(),t.JRh(v.emptyTableMessage)}}function wf(F,B){if(1&F&&(t.j41(0,"td",56),t.DNE(1,A0,2,1,"p",57),t.k0s()),2&F){const v=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=v.listSwaps&&v.listSwaps.data)||(null==v.listSwaps||null==v.listSwaps.data?null:v.listSwaps.data.length)<1)}}function L1(F,B){if(1&F&&t.nrm(0,"tr",58),2&F){const v=t.XpG();t.Y8G("ngClass",t.eq3(1,x0,(null==v.listSwaps?null:v.listSwaps.data)&&(null==v.listSwaps||null==v.listSwaps.data?null:v.listSwaps.data.length)>0))}}function gl(F,B){1&F&&t.nrm(0,"tr",59)}function bh(F,B){1&F&&t.nrm(0,"tr",60)}let Mf=(()=>{class F{constructor(v,H,G,Oe,kt){this.logger=v,this.commonService=H,this.store=G,this.boltzService=Oe,this.camelCaseWithReplace=kt,this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.swapStateEnum=Wt.q9,this.swapTypeEnum=Wt.Bd,this.faHistory=qi.Int,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new Vr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Xi.B,new Xi.B,new Xi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(v){v.selectedSwapType&&!v.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===Wt.Bd.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(uc.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{this.tableSettingSwapOut=v.pageSettings.find(H=>H.pageId===this.PAGE_ID)?.tables.find(H=>H.tableId===this.tableSettingSwapOut.tableId)||Wt.ZC.find(H=>H.pageId===this.PAGE_ID)?.tables.find(H=>H.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=v.pageSettings.find(H=>H.pageId===this.PAGE_ID)?.tables.find(H=>H.tableId===this.tableSettingSwapIn.tableId)||Wt.ZC.find(H=>H.pageId===this.PAGE_ID)?.tables.find(H=>H.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===Wt.Bd.SWAP_IN?(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.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:Wt.md):(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.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:Wt.md)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(v){const G=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===Wt.Bd.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(Oe=>Oe.column===v);return G?G.label?G.label:this.camelCaseWithReplace.transform(G.column,"_"):this.commonService.titleCase(v)}setFilterPredicate(){this.listSwaps.filterPredicate=(v,H)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(v).toLowerCase();break;case"status":G=v?.status?this.swapStateEnum[v?.status]:"";break;default:G=typeof v[this.selFilterBy]>"u"?"":"string"==typeof v[this.selFilterBy]?v[this.selFilterBy].toLowerCase():"boolean"==typeof v[this.selFilterBy]?v[this.selFilterBy]?"yes":"no":v[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===G.indexOf(H):G.includes(H)}}onSwapClick(v,H){this.boltzService.swapInfo(v.id||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Sn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:Wt.q9[(G=this.selectedSwapType===Wt.Bd.SWAP_IN?G.swap:G.reverseSwap).status],title:"Status",width:50,type:Wt.UN.STRING},{key:"id",value:G.id,title:"ID",width:50,type:Wt.UN.STRING}],[{key:"amount",value:G.onchainAmount?G.onchainAmount:G.expectedAmount?G.expectedAmount:0,title:G.onchainAmount?"Onchain Amount (Sats)":G.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:Wt.UN.NUMBER},{key:"timeoutBlockHeight",value:G.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:Wt.UN.NUMBER}],[{key:"address",value:G.claimAddress?G.claimAddress:G.lockupAddress?G.lockupAddress:"",title:G.claimAddress?"Claim Address":G.lockupAddress?"Lockup Address":"Address",width:100,type:Wt.UN.STRING}],[{key:"invoice",value:G.invoice,title:"Invoice",width:100,type:Wt.UN.STRING}],[{key:"privateKey",value:G.privateKey,title:"Private Key",width:100,type:Wt.UN.STRING}],[{key:"preimage",value:G.preimage,title:"Preimage",width:100,type:Wt.UN.STRING}],[{key:"redeemScript",value:G.redeemScript,title:"Redeem Script",width:100,type:Wt.UN.STRING}],[{key:"lockupTransactionId",value:G.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:Wt.UN.STRING},{key:"transactionId",value:G.claimTransactionId?G.claimTransactionId:G.refundTransactionId?G.refundTransactionId:"",title:G.claimTransactionId?"Claim Transaction ID":G.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(v){this.listSwaps=new Vr.I6(v?[...v]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(H,G)=>H[G]&&isNaN(H[G])?H[G].toLocaleLowerCase():H[G]?+H[G]: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===Wt.Bd.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(is.h),t.rXU(Pi.il),t.rXU(Dc),t.rXU(Uc.VD))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-swaps"]],viewQuery:function(H,G){if(1&H&&(t.GBs(u1.B4,5),t.GBs(Md.iy,5)),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:ft.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Md.xX,useValue:(0,Wt.on)("Swaps")}]),t.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(H,G){if(1&H){const Oe=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),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(At){return t.eBV(Oe),t.DH7(G.selFilterBy,At)||(G.selFilterBy=At),t.Njj(At)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,C0,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(At){return t.eBV(Oe),t.DH7(G.selFilter,At)||(G.selFilter=At),t.Njj(At)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,bf,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,No,2,0,"th",16)(24,kd,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,dh,2,0,"th",16)(27,pl,2,1,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Id,2,0,"th",16)(30,yf,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,jo,2,0,"th",16)(33,kc,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,hh,2,0,"th",22)(36,w0,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,xf,2,0,"th",22)(39,E1,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,uh,2,0,"th",16)(42,M0,4,4,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,fh,2,0,"th",16)(45,E0,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,Cf,2,0,"th",16)(48,Rd,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,mh,2,0,"th",16)(51,ph,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,S0,2,0,"th",16)(54,gh,4,4,"td",17),t.bVm(),t.qex(55,29),t.DNE(56,_h,2,0,"th",22)(57,S1,4,3,"td",17),t.bVm(),t.qex(58,30),t.DNE(59,T0,2,0,"th",16)(60,Yc,2,1,"td",17),t.bVm(),t.qex(61,31),t.DNE(62,L0,2,0,"th",16)(63,T1,2,1,"td",17),t.bVm(),t.qex(64,32),t.DNE(65,b4,2,0,"th",16)(66,D0,2,1,"td",17),t.bVm(),t.qex(67,33),t.DNE(68,vh,6,0,"th",34)(69,Od,3,0,"td",35),t.bVm(),t.qex(70,36),t.DNE(71,wf,2,1,"td",37),t.bVm(),t.DNE(72,L1,1,3,"tr",38)(73,gl,1,0,"tr",39)(74,bh,1,0,"tr",40),t.k0s(),t.nrm(75,"mat-paginator",41),t.k0s()()()}2&H&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,lh).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortBy:G.tableSettingSwapOut.sortBy)("matSortDirection",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortOrder:G.tableSettingSwapOut.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,_f,"error"===G.flgLoading[0])),t.R7$(52),t.Y8G("matFooterRowDef",t.lJ4(19,vf)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[si.YU,si.Sq,si.bT,si.B3,De.me,De.BC,De.vS,Qr.aY,$i.DJ,$i.sA,$i.UI,Go.PW,Go.eI,be.$z,Ta.fg,Ne.rl,Ne.nJ,Ed.HM,ft.VO,ft.$2,Rt.wT,u1.B4,u1.aE,Vr.Zl,Vr.tL,Vr.ji,Vr.cC,Vr.YV,Vr.iL,Vr.Zq,Vr.xW,Vr.KS,Vr.$R,Vr.Qo,Vr.YZ,Vr.NB,Vr.iF,Md.iy,Jt.ZF,Jt.Ld,si.QX]})}}return F})();const y4=F=>["../",F];function k0(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",16),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&F){const v=B.$implicit,H=t.XpG();t.Y8G("active",H.activeTab.link===v.link)("routerLink",t.eq3(3,y4,v.link)),t.R7$(),t.JRh(v.name)}}let yh=(()=>{class F{constructor(v,H,G){this.router=v,this.store=H,this.boltzService=G,this.swapTypeEnum=Wt.Bd,this.selectedSwapType=Wt.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 Xi.B,new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.boltzService.getBoltzInfo(),this.boltzService.listSwaps();const v=this.links.find(H=>this.router.url.includes(H.link));this.activeTab=v||this.links[0],this.selectedSwapType=v&&"swapin"===v.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,Cr.p)(H=>H instanceof Nn.gx)).subscribe({next:H=>{const G=this.links.find(Oe=>H.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"swapin"===G.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:H=>{this.swaps=H,this.swapsData=this.selectedSwapType===Wt.Bd.SWAP_IN&&H.swaps?H.swaps:this.selectedSwapType===Wt.Bd.SWAP_OUT&&H.reverseSwaps?H.reverseSwaps:[],this.flgLoading[0]=!1},error:H=>{this.flgLoading[0]="error",this.emptyTableMessage=H.message?H.message:"No swap "+(this.selectedSwapType===Wt.Bd.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(v){"swapin"===v.link?(this.selectedSwapType=Wt.Bd.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(v){this.boltzService.serviceInfo().pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:H=>{this.store.dispatch((0,Sn.xO)({payload:{data:{serviceInfo:H,direction:v,component:$l}}}))}})}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Nn.Ix),t.rXU(Pi.il),t.rXU(Dc))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-boltz-root"]],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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",1),t.qSk(),t.j41(1,"svg",2)(2,"g",3)(3,"g",4),t.nrm(4,"circle",5)(5,"path",6)(6,"path",7),t.k0s()()(),t.joV(),t.j41(7,"span",8),t.EFF(8,"Boltz"),t.k0s()(),t.j41(9,"div",9)(10,"mat-card")(11,"mat-card-content",10)(12,"nav",11),t.DNE(13,k0,2,5,"div",12),t.k0s(),t.nrm(14,"mat-tab-nav-panel",null,0),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onSwap(G.selectedSwapType))}),t.EFF(18),t.k0s()(),t.nrm(19,"rtl-boltz-swaps",15),t.k0s()()()}if(2&H){const Oe=t.sdS(15);t.R7$(12),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.swapsData)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[si.Sq,$i.DJ,$i.sA,$i.UI,be.$z,Mr.RN,Mr.m2,la.Bu,la.hQ,la.Ql,Nn.Wk,Mf]})}}return F})();class io{constructor(B){this.help=B}}function Tf(F,B){if(1&F&&(t.j41(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.k0s()(),t.j41(4,"mat-panel-description",9),t.nrm(5,"span",10),t.j41(6,"a",11),t.EFF(7),t.k0s()()()),2&F){const v=t.XpG().$implicit,H=t.XpG();t.R7$(3),t.JRh(v.help.question),t.R7$(2),t.Y8G("innerHTML",v.help.answer,t.npT),t.R7$(),t.Y8G("routerLink",H.flgLoggedIn?v.help.link:"/login"),t.R7$(),t.JRh(H.flgLoggedIn?v.help.linkCaption:"Login to go to the page")}}function Lf(F,B){if(1&F&&(t.j41(0,"div",6),t.DNE(1,Tf,8,4,"mat-expansion-panel",7),t.k0s()),2&F){const v=B.$implicit,H=t.XpG();t.R7$(),t.Y8G("ngIf","ALL"===v.help.lnImplementation||v.help.lnImplementation===H.selNode.lnImplementation)}}let Df=(()=>{class F{constructor(v,H){this.store=v,this.sessionService=H,this.helpTopics=[],this.faQuestion=qi.EvL,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new Xi.B,new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{this.selNode=v,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.flgLoggedIn=!!v.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Pi.il),t.rXU($s.Q))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-help"]],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(H,G){1&H&&(t.j41(0,"div",0)(1,"div",1),t.nrm(2,"fa-icon",2),t.j41(3,"span",3),t.EFF(4,"Help"),t.k0s()(),t.j41(5,"div",4)(6,"div",0),t.DNE(7,Lf,2,1,"div",5),t.k0s()()()),2&H&&(t.R7$(2),t.Y8G("icon",G.faQuestion),t.R7$(5),t.Y8G("ngForOf",G.helpTopics))},dependencies:[si.Sq,si.bT,Qr.aY,$i.DJ,$i.sA,$i.UI,Br.GK,Br.Z2,Br.WN,Br.Q6,Nn.Wk],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]})}}return F})();var xh=g(4572);function Ch(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}let C4=(()=>{class F{constructor(v,H){this.dialogRef=v,this.store=H,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Sn.R$)({payload:{twoFAToken:this.token}}))}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Er.CP),t.rXU(Pi.il))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-login-token"]],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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Two Factor Token"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0),t.bIt("ngSubmit",function(){return t.eBV(Oe),t.Njj(G.onVerifyToken())}),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"Token"),t.k0s(),t.j41(14,"input",9),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.token,At)||(G.token=At),t.Njj(At)}),t.k0s(),t.DNE(15,Ch,2,0,"mat-error",10),t.k0s(),t.j41(16,"div",11)(17,"button",12),t.EFF(18,"Verify Token"),t.k0s()()()()()()}2&H&&(t.R7$(14),t.R50("ngModel",G.token),t.R7$(),t.Y8G("ngIf",!G.token))},dependencies:[si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.vS,De.cV,$i.DJ,$i.sA,$i.UI,be.$z,Mr.m2,Mr.MM,Ta.fg,Ne.rl,Ne.nJ,Ne.TL,Mi.N]})}}return F})();const w4=F=>({"padding-gap-large":F}),Fd=(F,B)=>({"font-size-200":F,"font-size-300":B});function Af(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function Ql(F,B){if(1&F&&(t.j41(0,"p",21)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&F){const v=t.XpG();t.R7$(3),t.SpI(" ",v.loginErrorMessage," ")}}function R0(F,B){if(1&F&&(t.j41(0,"p",23)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&F){const v=t.XpG();t.R7$(3),t.SpI(" ",v.logoutReason," ")}}let Zl=(()=>{class F{constructor(v,H,G,Oe,kt){this.actions=v,this.logger=H,this.store=G,this.rtlEffects=Oe,this.commonService=kt,this.faUnlockAlt=qi.HEq,this.logoutReason="",this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=Wt.f7,this.loginErrorMessage="",this.apiCallStatusEnum=Wt.wn,this.unSubs=[new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,xh.z)([this.store.select(vr.Kq),this.store.select(vr.E2)]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(([v,H])=>{this.loginErrorMessage="",v.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof v.message?JSON.stringify(v.message):v.message),this.logger.error(v.message)),H.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof H.message?JSON.stringify(H.message):H.message),this.logger.error(H.message))}),this.store.select(vr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.appConfig=v,this.logger.info(v)}),this.actions.pipe((0,Cr.p)(v=>v.type===Wt.aU.LOGOUT),(0,_a.s)(1)).subscribe(v=>{this.logoutReason=v.payload})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.logoutReason="",this.appConfig.enable2FA?(this.store.dispatch((0,Sn.xO)({payload:{maxWidth:"35rem",data:{component:C4}}})),this.rtlEffects.closeAlert.pipe((0,_a.s)(1)).subscribe(v=>{v&&this.store.dispatch((0,Sn.iD)({payload:{password:zn(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase()),twoFAToken:v.twoFAToken}}))})):this.store.dispatch((0,Sn.iD)({payload:{password:zn(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.logoutReason="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(it.En),t.rXU(ge.gP),t.rXU(Pi.il),t.rXU(Sa.H),t.rXU(is.h))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-login"]],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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card",3)(3,"div",4)(4,"div",5),t.nrm(5,"img",6),t.k0s(),t.j41(6,"div",7)(7,"mat-card-header",8)(8,"mat-card-title",9)(9,"span",10),t.EFF(10,"Welcome"),t.k0s()()(),t.j41(11,"mat-card-content",11)(12,"form",12,0)(14,"mat-form-field")(15,"mat-label"),t.EFF(16,"Password"),t.k0s(),t.j41(17,"input",13),t.mxI("ngModelChange",function(At){return t.eBV(Oe),t.DH7(G.password,At)||(G.password=At),t.Njj(At)}),t.k0s(),t.j41(18,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.flgShow=!G.flgShow)}),t.j41(19,"mat-icon"),t.EFF(20),t.k0s()(),t.DNE(21,Af,2,0,"mat-error",15),t.k0s(),t.DNE(22,Ql,4,1,"p",16)(23,R0,4,1,"p",17),t.j41(24,"div",18)(25,"button",19),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.resetData())}),t.EFF(26,"Clear"),t.k0s(),t.j41(27,"button",20),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLogin())}),t.EFF(28,"Login"),t.k0s()()()()()()()()()}2&H&&(t.R7$(6),t.Y8G("ngClass",t.eq3(9,w4,G.screenSize===G.screenSizeEnum.XS)),t.R7$(2),t.Y8G("ngClass",t.l_i(11,Fd,G.screenSize===G.screenSizeEnum.XS,G.screenSize!==G.screenSizeEnum.XS)),t.R7$(9),t.Y8G("type",G.flgShow?"text":"password"),t.R50("ngModel",G.password),t.R7$(),t.BMQ("aria-label","Hide password"),t.R7$(2),t.JRh(G.flgShow?"visibility_off":"visibility"),t.R7$(),t.Y8G("ngIf",!G.password),t.R7$(),t.Y8G("ngIf",""!==G.loginErrorMessage),t.R7$(),t.Y8G("ngIf",""!==G.logoutReason))},dependencies:[si.YU,si.bT,De.qT,De.me,De.BC,De.cb,De.YS,De.vS,De.cV,$i.DJ,$i.sA,$i.UI,Go.PW,be.$z,be.iY,Mr.RN,Mr.m2,Mr.MM,Mr.dh,Vc.An,Ta.fg,Ne.rl,Ne.nJ,Ne.TL,Ne.yw,Mi.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 F})();var D1=g(13);let O0=(()=>{class F{constructor(v,H){this.activatedRoute=v,this.router=H,this.error={errorCode:"",errorMessage:""},this.faTimes=qi.GRI,this.unsubs=[new Xi.B,new Xi.B]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,dn.Q)(this.unsubs[0])).subscribe(v=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(Nn.nX),t.rXU(Nn.Ix))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-error"]],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(H,G){1&H&&(t.j41(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),t.nrm(4,"fa-icon",4),t.j41(5,"span",5),t.EFF(6),t.k0s()()(),t.j41(7,"mat-card-content",6)(8,"div",7),t.EFF(9),t.k0s(),t.j41(10,"span",8)(11,"button",9),t.bIt("click",function(){return G.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()),2&H&&(t.R7$(4),t.Y8G("icon",G.faTimes),t.R7$(2),t.SpI("Error ",G.error.errorCode,""),t.R7$(3),t.JRh(G.error.errorMessage))},dependencies:[Qr.aY,$i.DJ,$i.sA,$i.UI,be.$z,Mr.RN,Mr.m2,Mr.MM,Mr.dh],encapsulation:2})}}return F})();var lo=g(7186),Jl=g(1534),ql=g(92),F0=g(6114);const A1=(F,B)=>({"alert-danger":F,"alert-info":B});function ed(F,B){1&F&&t.nrm(0,"span",17)}function N0(F,B){1&F&&t.nrm(0,"span",18)}function M4(F,B){if(1&F){const v=t.RV6();t.j41(0,"form",19,0)(2,"div",20),t.nrm(3,"fa-icon",4),t.j41(4,"span"),t.EFF(5,"Please ensure that "),t.j41(6,"strong"),t.EFF(7,"experimental-offers"),t.k0s(),t.EFF(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(9,"strong")(10,"a",21),t.EFF(11,"here"),t.k0s()(),t.EFF(12," to learn more about Core Lightning offers."),t.k0s()(),t.j41(13,"h4",22),t.EFF(14,"Description"),t.k0s(),t.j41(15,"span"),t.EFF(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),t.k0s(),t.j41(17,"h4",22),t.EFF(18,"Links"),t.k0s(),t.j41(19,"span")(20,"a",23),t.EFF(21,"Core lightning Bolt12"),t.k0s()(),t.nrm(22,"mat-divider",24),t.j41(23,"div",25),t.nrm(24,"fa-icon",4),t.j41(25,"span"),t.EFF(26,"Do not get an Offer tattoo until spec is fully ratified!"),t.k0s()(),t.j41(27,"mat-slide-toggle",26),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG(2);return t.DH7(Oe.enableOffers,G)||(Oe.enableOffers=G),t.Njj(G)}),t.bIt("change",function(){t.eBV(v);const G=t.XpG(2);return t.Njj(G.onUpdateFeature())}),t.EFF(28),t.k0s()()}if(2&F){const v=t.XpG(2);t.R7$(3),t.Y8G("icon",v.faInfoCircle),t.R7$(19),t.Y8G("inset",!0),t.R7$(2),t.Y8G("icon",v.faExclamationTriangle),t.R7$(3),t.R50("ngModel",v.enableOffers),t.R7$(),t.SpI("Enable Offers ",v.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"","")}}function k1(F,B){if(1&F&&(t.j41(0,"div")(1,"div",29),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"experimental-dual-fund"),t.k0s(),t.EFF(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(8,"strong")(9,"a",30),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about Core Lightning Liquidity Ads."),t.k0s()()()),2&F){const v=t.XpG(3);t.R7$(2),t.Y8G("icon",v.faExclamationTriangle)}}function Nd(F,B){if(1&F&&(t.j41(0,"mat-option",47),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&F){const v=B.$implicit;t.Y8G("value",v),t.R7$(),t.SpI(" ",t.bMT(2,2,v.id)," ")}}function wh(F,B){if(1&F&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&F){const v=t.XpG(4);t.R7$(),t.SpI("",v.selPolicyType.placeholder," is required.")}}function Mh(F,B){if(1&F&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&F){const v=t.XpG(4);t.R7$(),t.Lme("",v.selPolicyType.placeholder," must be greater than or equal to ",v.selPolicyType.min,".")}}function kf(F,B){if(1&F&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&F){const v=t.XpG(4);t.R7$(),t.Lme("",v.selPolicyType.placeholder," must be less than or equal to ",v.selPolicyType.max,".")}}function Eh(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base fee is required."),t.k0s())}function P0(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base basis is required."),t.k0s())}function z0(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing base fee is required."),t.k0s())}function If(F,B){1&F&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing fee rate is required."),t.k0s())}function Sh(F,B){if(1&F&&(t.j41(0,"h4",48)(1,"span",49),t.EFF(2),t.k0s()()),2&F){const v=t.XpG(4);t.R7$(),t.Y8G("ngClass",t.l_i(2,A1,!!v.updateMsg.error,!!v.updateMsg.data)),t.R7$(),t.SpI(" ",v.updateMsg.error&&""!==v.updateMsg.error?"Error: "+v.updateMsg.error||0:v.updateMsg.data&&""!==v.updateMsg.data?v.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function Pd(F,B){if(1&F){const v=t.RV6();t.j41(0,"div",31)(1,"div",32),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.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."),t.k0s()(),t.j41(5,"div",33)(6,"mat-form-field",34)(7,"mat-label"),t.EFF(8,"Policy"),t.k0s(),t.j41(9,"mat-select",35),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG(3);return t.DH7(Oe.selPolicyType,G)||(Oe.selPolicyType=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(v);const G=t.XpG(3);return t.Njj(G.policyMod=null)}),t.DNE(10,Nd,3,4,"mat-option",36),t.k0s()(),t.j41(11,"mat-form-field",37)(12,"mat-label"),t.EFF(13),t.k0s(),t.j41(14,"input",38,1),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG(3);return t.DH7(Oe.policyMod,G)||(Oe.policyMod=G),t.Njj(G)}),t.k0s(),t.j41(16,"mat-hint"),t.EFF(17),t.k0s(),t.DNE(18,wh,2,1,"mat-error",27)(19,Mh,2,2,"mat-error",27)(20,kf,2,2,"mat-error",27),t.k0s()(),t.j41(21,"div",33)(22,"mat-form-field",37)(23,"mat-label"),t.EFF(24,"Lease Base Fee (Sats)"),t.k0s(),t.j41(25,"input",39),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_base_sat,G)||(Oe.lease_fee_base_sat=G),t.Njj(G)}),t.k0s(),t.DNE(26,Eh,2,0,"mat-error",27),t.k0s(),t.j41(27,"mat-form-field",37)(28,"mat-label"),t.EFF(29,"Lease Base Basis (bps)"),t.k0s(),t.j41(30,"input",40),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_basis,G)||(Oe.lease_fee_basis=G),t.Njj(G)}),t.k0s(),t.DNE(31,P0,2,0,"mat-error",27),t.k0s()(),t.j41(32,"div",33)(33,"mat-form-field",37)(34,"mat-label"),t.EFF(35,"Max Channel Routing Base Fee (Sats)"),t.k0s(),t.j41(36,"input",41),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxBaseSat,G)||(Oe.channelFeeMaxBaseSat=G),t.Njj(G)}),t.k0s(),t.DNE(37,z0,2,0,"mat-error",27),t.k0s(),t.j41(38,"mat-form-field",37)(39,"mat-label"),t.EFF(40,"Max Channel Routing Fee Rate (ppm)"),t.k0s(),t.j41(41,"input",42),t.mxI("ngModelChange",function(G){t.eBV(v);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxProportional,G)||(Oe.channelFeeMaxProportional=G),t.Njj(G)}),t.k0s(),t.DNE(42,If,2,0,"mat-error",27),t.k0s()(),t.DNE(43,Sh,3,5,"h4",43),t.j41(44,"div",44)(45,"button",45),t.bIt("click",function(){t.eBV(v);const G=t.XpG(3);return t.Njj(G.onResetPolicy())}),t.EFF(46,"Reset"),t.k0s(),t.j41(47,"button",46),t.bIt("click",function(){t.eBV(v);const G=t.XpG(3);return t.Njj(G.onUpdateFundingPolicy())}),t.EFF(48,"Update"),t.k0s()()()}if(2&F){const v=t.XpG(3);t.R7$(2),t.Y8G("icon",v.faExclamationTriangle),t.R7$(7),t.R50("ngModel",v.selPolicyType),t.R7$(),t.Y8G("ngForOf",v.policyTypes),t.R7$(3),t.JRh(v.selPolicyType.placeholder),t.R7$(),t.Y8G("step","fixed"===v.selPolicyType.id?1e3:10)("min",v.selPolicyType.min)("max",v.selPolicyType.max),t.R50("ngModel",v.policyMod),t.R7$(3),t.E5c("",v.selPolicyType.placeholder," should be between ",v.selPolicyType.min," and ",v.selPolicyType.max,""),t.R7$(),t.Y8G("ngIf",!v.policyMod),t.R7$(),t.Y8G("ngIf",v.policyModv.selPolicyType.max),t.R7$(5),t.R50("ngModel",v.lease_fee_base_sat),t.R7$(),t.Y8G("ngIf",!v.lease_fee_base_sat),t.R7$(4),t.R50("ngModel",v.lease_fee_basis),t.R7$(),t.Y8G("ngIf",!v.lease_fee_basis),t.R7$(5),t.R50("ngModel",v.channelFeeMaxBaseSat),t.R7$(),t.Y8G("ngIf",!v.channelFeeMaxBaseSat),t.R7$(4),t.R50("ngModel",v.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",!v.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",v.flgUpdateCalled)}}function Th(F,B){if(1&F&&(t.j41(0,"form",19,0),t.DNE(2,k1,12,1,"div",27)(3,Pd,49,23,"div",28),t.k0s()),2&F){const v=t.XpG(2);t.R7$(2),t.Y8G("ngIf",!v.features[1].enabled),t.R7$(),t.Y8G("ngIf",v.features[1].enabled)}}function B0(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-expansion-panel",10),t.bIt("opened",function(){const G=t.eBV(v).index,Oe=t.XpG();return t.Njj(Oe.onPanelExpanded(G))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title",11)(3,"h4",12),t.EFF(4),t.k0s(),t.j41(5,"h4",12),t.DNE(6,ed,1,0,"span",13)(7,N0,1,0,"span",14),t.EFF(8),t.k0s()()(),t.j41(9,"div",15),t.DNE(10,M4,29,5,"form",16)(11,Th,4,2,"form",16),t.k0s()()}if(2&F){const v=B.$implicit,H=B.index;t.Y8G("expanded",!1),t.R7$(4),t.JRh(v.name),t.R7$(2),t.Y8G("ngIf",v.enabled),t.R7$(),t.Y8G("ngIf",!v.enabled),t.R7$(),t.SpI(" ",v.enabled?"Enabled":"Disabled"," "),t.R7$(2),t.Y8G("ngIf",0===H),t.R7$(),t.Y8G("ngIf",1===H)}}let Rf=(()=>{class F{constructor(v,H,G,Oe){this.logger=v,this.store=H,this.dataService=G,this.commonService=Oe,this.faInfoCircle=qi.iW_,this.faExclamationTriangle=qi.zpE,this.faCode=qi.jTw,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=Wt.ul,this.selPolicyType=Wt.ul[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.dataService.listConfigs().pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:v=>{this.logger.info("Received List Configs: "+JSON.stringify(v)),this.features[1].enabled=!!v["experimental-dual-fund"]},error:v=>{this.logger.error("List Configs Error: "+JSON.stringify(v)),this.features[1].enabled=!1}}),this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.selNode=v,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(ns.Al).pipe((0,dn.Q)(this.unSubs[2])).subscribe(v=>{this.policyTypes[2].max=v.balance.totalBalance||1e3})}onPanelExpanded(v){1===v&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,dn.Q)(this.unSubs[3])).subscribe(H=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(H)),this.fundingPolicy=H,this.fundingPolicy.policy&&(this.selPolicyType=Wt.ul.find(G=>G.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,Sn.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,dn.Q)(this.unSubs[4])).subscribe({next:v=>{this.logger.info(v),this.fundingPolicy=v,this.updateMsg={data:"Compact Lease: "+v.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:v=>{this.logger.error(v),this.updateMsg={error:this.commonService.extractErrorMessage(v,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?Wt.ul.find(v=>v.id===this.fundingPolicy.policy)||this.policyTypes[0]:Wt.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(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(Pi.il),t.rXU(Jl.u),t.rXU(is.h))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-experimental-settings"]],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(H,G){1&H&&(t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.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."),t.k0s()(),t.j41(5,"form",5,0)(7,"div",6),t.nrm(8,"fa-icon",7),t.j41(9,"span",8),t.EFF(10,"Features"),t.k0s()(),t.j41(11,"mat-accordion"),t.DNE(12,B0,12,7,"mat-expansion-panel",9),t.k0s()()()),2&H&&(t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.Y8G("icon",G.faCode),t.R7$(4),t.Y8G("ngForOf",G.features))},dependencies:[si.YU,si.Sq,si.bT,De.qT,De.me,De.Q0,De.BC,De.cb,De.YS,De.VZ,De.zX,De.vS,De.cV,Qr.aY,$i.DJ,$i.sA,$i.UI,Go.PW,be.$z,Br.BS,Br.GK,Br.Z2,Br.WN,Ta.fg,Ne.rl,Ne.nJ,Ne.MV,Ne.TL,rl.q,ft.VO,Rt.wT,Rl.sG,Jt.Ld,Mi.N,ql.z,F0.V,si.PV],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}}return F})(),E4=(()=>{class F{constructor(){}static{this.\u0275fac=function(H){return new(H||F)}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-no-service-found"]],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(H,G){1&H&&(t.j41(0,"div",0)(1,"mat-card")(2,"mat-card-content",1)(3,"div",2)(4,"div",3),t.EFF(5,"No Service Found!"),t.k0s()()()()())},dependencies:[$i.DJ,$i.sA,Mr.RN,Mr.m2],encapsulation:2})}}return F})();const S4=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([g.e(193),g.e(190)]).then(g.bind(g,9190)).then(F=>F.LNDModule),canActivate:[(0,lo.q_)()]},{path:"cln",loadChildren:()=>Promise.all([g.e(193),g.e(853)]).then(g.bind(g,4853)).then(F=>F.CLNModule),canActivate:[(0,lo.q_)()]},{path:"ecl",loadChildren:()=>Promise.all([g.e(193),g.e(17)]).then(g.bind(g,9017)).then(F=>F.ECLModule),canActivate:[(0,lo.q_)()]},{path:"settings",component:T2,canActivate:[(0,lo.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:Pn,canActivate:[(0,lo.q_)()]},{path:"auth",component:n0,canActivate:[(0,lo.q_)()]},{path:"bconfig",component:a4,canActivate:[(0,lo.q_)()]}]},{path:"config",component:s4,canActivate:[(0,lo.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:k2,canActivate:[(0,lo.q_)()]},{path:"pglayout",component:$u,canActivate:[(0,lo.q_)()]},{path:"services",component:o0,canActivate:[(0,lo.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:d1,canActivate:[(0,lo.q_)()]},{path:"boltz",component:c0,canActivate:[(0,lo.q_)()]},{path:"noservice",component:E4}]},{path:"experimental",component:Rf,canActivate:[(0,lo.q_)()]},{path:"lnconfig",component:Hr,canActivate:[(0,lo.q_)()]}]},{path:"services",component:P2,canActivate:[(0,lo.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:Y2},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:yh}]},{path:"help",component:Df},{path:"login",component:Zl},{path:"error",component:O0},{path:"**",component:D1.X}],zd=Nn.iI.forRoot(S4,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var I1=g(9029),R1=g(9881),V0=g(9183),O1=g(882),Of=g(5911),F1=g(4109),gs=g(7358);const mc={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:qi.xiI,link:"/lnd/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:qi.CQO,link:"/lnd/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:qi.zm_,link:"/lnd/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:qi.gdJ,link:"/lnd/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:qi._qq,link:"/lnd/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:qi.knH,link:"/lnd/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:qi.$Fj,link:"/lnd/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:qi.MjD,link:"/lnd/graph",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:qi.pCJ,link:"/lnd/messages",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:qi.cbP,link:"/lnd/channelbackup",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Network",iconType:"FA",icon:qi.qFF,link:"/lnd/network",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:qi.D6w,link:"/lnd/network",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:qi.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:qi.C8j,link:"/services/loop",userPersona:Wt.HW.ALL},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:qi.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:qi.EvL,link:"/help",userPersona:Wt.HW.ALL}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:qi.xiI,link:"/cln/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:qi.CQO,link:"/cln/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:qi.zm_,link:"/cln/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:qi.gdJ,link:"/cln/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:qi.e4L,link:"/cln/liquidityads",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:qi._qq,link:"/cln/transactions",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:qi.knH,link:"/cln/routing",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:qi.$Fj,link:"/cln/reports",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:qi.MjD,link:"/cln/graph",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:qi.pCJ,link:"/cln/messages",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:qi.WKo,link:"/cln/rates",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:qi.D6w,link:"/cln/rates",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:qi.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:qi.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:qi.EvL,link:"/help",userPersona:Wt.HW.ALL}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:qi.xiI,link:"/ecl/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:qi.CQO,link:"/ecl/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:qi.zm_,link:"/ecl/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:qi.gdJ,link:"/ecl/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:qi._qq,link:"/ecl/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:qi.knH,link:"/ecl/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:qi.$Fj,link:"/ecl/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:qi.MjD,link:"/ecl/graph",userPersona:Wt.HW.ALL}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:qi.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:qi.EvL,link:"/help",userPersona:Wt.HW.ALL}]};function N1(F,B){if(1&F&&(t.j41(0,"mat-option",12),t.EFF(1),t.k0s()),2&F){const v=B.$implicit;t.Y8G("value",v.index),t.R7$(),t.Lme(" ",v.lnNode," (",v.lnImplementation,") ")}}function Lh(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-select",10),t.bIt("selectionChange",function(G){t.eBV(v);const Oe=t.XpG();return t.Njj(Oe.onNodeSelectionChange(G.value))}),t.j41(1,"perfect-scrollbar"),t.DNE(2,N1,2,3,"mat-option",11),t.k0s()()}if(2&F){const v=t.XpG();t.Y8G("value",v.selConfigNodeIndex),t.R7$(2),t.Y8G("ngForOf",v.appConfig.nodes)}}function U0(F,B){if(1&F&&(t.j41(0,"span",21),t.eu8(1,22),t.k0s()),2&F){const v=t.XpG().$implicit;t.XpG(2);const H=t.sdS(11);t.R7$(),t.Y8G("ngTemplateOutlet","boltzIconBlock"===v.icon?H:null)}}function Dh(F,B){if(1&F&&t.nrm(0,"fa-icon",23),2&F){const v=t.XpG().$implicit;t.Y8G("icon",v.icon)}}function P1(F,B){if(1&F&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.JRh(v.icon)}}function G0(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-tree-node",15)(1,"div",16),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onChildNavClicked(G))}),t.j41(2,"div",17),t.DNE(3,U0,2,1,"span",18)(4,Dh,1,1,"fa-icon",19)(5,P1,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()()()()}if(2&F){const v=B.$implicit;t.FS9("routerLink",v.link),t.R7$(3),t.Y8G("ngIf","SVG"===v.iconType),t.R7$(),t.Y8G("ngIf","FA"===v.iconType),t.R7$(),t.Y8G("ngIf",!v.iconType),t.R7$(2),t.JRh(v.name)}}function z1(F,B){if(1&F&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",v.icon)}}function B1(F,B){if(1&F&&t.nrm(0,"fa-icon",23),2&F){const v=t.XpG().$implicit;t.Y8G("icon",v.icon)}}function id(F,B){if(1&F&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.JRh(v.icon)}}function Nf(F,B){if(1&F&&(t.j41(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),t.DNE(3,z1,2,1,"span",28)(4,B1,1,1,"fa-icon",19)(5,id,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"button",29)(9,"mat-icon"),t.EFF(10),t.k0s()()(),t.j41(11,"div",30),t.eu8(12,31),t.k0s()()),2&F){const v=B.$implicit,H=t.XpG(2);t.R7$(3),t.Y8G("ngIf","SVG"===v.iconType),t.R7$(),t.Y8G("ngIf","FA"===v.iconType),t.R7$(),t.Y8G("ngIf",!v.iconType),t.R7$(2),t.JRh(v.name),t.R7$(),t.BMQ("aria-label","toggle "+v.name),t.R7$(2),t.JRh(H.treeControlNested.isExpanded(v)?"arrow_drop_up":"arrow_drop_down"),t.R7$(),t.AVh("tree-children-invisible",!H.treeControlNested.isExpanded(v))}}function Pf(F,B){if(1&F&&(t.j41(0,"mat-tree",7,1),t.DNE(2,G0,8,5,"mat-tree-node",13)(3,Nf,13,8,"mat-nested-tree-node",14),t.k0s()),2&F){const v=t.XpG();t.Y8G("dataSource",v.navMenus)("treeControl",v.treeControlNested),t.R7$(3),t.Y8G("matTreeNodeDefWhen",v.hasChild)}}function T4(F,B){if(1&F&&(t.j41(0,"span",37),t.eu8(1,22),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",v.icon)}}function nd(F,B){if(1&F&&t.nrm(0,"fa-icon",38),2&F){const v=t.XpG().$implicit;t.FS9("matTooltip",v.name),t.Y8G("icon",v.icon)}}function H0(F,B){if(1&F&&(t.j41(0,"mat-icon",39),t.EFF(1),t.k0s()),2&F){const v=t.XpG().$implicit;t.FS9("matTooltip",v.name),t.R7$(),t.JRh(v.icon)}}function Ah(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG();return t.Njj(Oe.onShowData(G))}),t.DNE(1,T4,2,1,"span",34)(2,nd,1,2,"fa-icon",35)(3,H0,2,2,"mat-icon",36),t.j41(4,"span"),t.EFF(5),t.k0s()()}if(2&F){const v=B.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===v.iconType),t.R7$(),t.Y8G("ngIf","FA"===v.iconType),t.R7$(),t.Y8G("ngIf",!v.iconType),t.R7$(2),t.JRh(v.name)}}function V1(F,B){if(1&F&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&F){const v=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",v.icon)}}function kh(F,B){if(1&F&&t.nrm(0,"fa-icon",38),2&F){const v=t.XpG().$implicit;t.FS9("matTooltip",v.name),t.Y8G("icon",v.icon)}}function vl(F,B){if(1&F){const v=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(v).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onClick(G))}),t.DNE(1,V1,2,1,"span",28)(2,kh,1,2,"fa-icon",35),t.j41(3,"span"),t.EFF(4),t.k0s()()}if(2&F){const v=B.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===v.iconType),t.R7$(),t.Y8G("ngIf","FA"===v.iconType),t.R7$(2),t.JRh(v.name)}}function zf(F,B){if(1&F&&(t.j41(0,"mat-tree",7),t.DNE(1,vl,5,3,"mat-tree-node",8),t.k0s()),2&F){const v=t.XpG();t.Y8G("dataSource",v.navMenusLogout)("treeControl",v.treeControlLogout)}}function Ih(F,B){1&F&&(t.qSk(),t.j41(0,"svg",40)(1,"g",41)(2,"g",42),t.nrm(3,"circle",43)(4,"path",44)(5,"path",45),t.k0s()()())}let L4=(()=>{class F{constructor(v,H,G,Oe,kt,At){this.logger=v,this.commonService=H,this.sessionService=G,this.store=Oe,this.actions=kt,this.rtlEffects=At,this.ChildNavClicked=new t.bkB,this.faEject=qi.njF,this.faEye=qi.pS3,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:qi.njF}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:qi.pS3}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=Wt.HW,this.unSubs=[new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B],this.treeControlNested=new F1.XO(oi=>oi.children),this.treeControlLogout=new F1.XO(oi=>oi.children),this.treeControlShowData=new F1.XO(oi=>oi.children),this.navMenus=new gs.Zh,this.navMenusLogout=new gs.Zh,this.navMenusShowData=new gs.Zh,this.hasChild=(oi,ui)=>!!ui.children&&ui.children.length>0,this.version=Wt.xv,mc.LNDChildren&&200===mc.LNDChildren[mc.LNDChildren.length-1].id&&mc.LNDChildren.pop(),this.navMenus.data=mc.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const v=this.sessionService.getItem("token");this.showLogout=!!v,this.flgLoading=!!v,this.store.select(vr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(H=>{this.appConfig=H}),this.store.select(vr.Az).pipe((0,dn.Q)(this.unSubs[1])).subscribe(H=>{if(this.information=H.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 G=this.information.chains[0];this.informationChain.chain=G.chain,this.informationChain.network=G.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=H.selNode,this.selConfigNodeIndex=+(H.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(H)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[2])).subscribe(H=>{this.showLogout=!!H.token,this.flgLoading=!!H.token}),this.actions.pipe((0,dn.Q)(this.unSubs[3]),(0,Cr.p)(H=>H.type===Wt.aU.LOGOUT)).subscribe(H=>{this.showLogout=!1})}onClick(v){"Logout"===v.name&&(this.store.dispatch((0,Sn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[4])).subscribe(H=>{H&&(this.showLogout=!1,this.store.dispatch((0,Sn.ri)({payload:""})))})),this.ChildNavClicked.emit(v)}onChildNavClicked(v){this.ChildNavClicked.emit(v)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){let v=[];v=JSON.parse(JSON.stringify(mc.LNDChildren)),this.navMenus.data=v?.filter(H=>H.children&&H.children.length?(H.children=H.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/loop"!==G.link&&"/services/boltz"!==G.link||"/services/loop"===G.link&&this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),H.children.length>0):H.userPersona===Wt.HW.ALL||H.userPersona===this.selNode.settings.userPersona)}loadCLNMenu(){let v=[];v=JSON.parse(JSON.stringify(mc.CLNChildren)),this.navMenus.data=v?.filter(H=>H.children&&H.children.length?(H.children=H.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/peerswap"!==G.link||"/services/peerswap"===G.link&&this.selNode.settings.enablePeerswap||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),H.children.length>0):H.userPersona===Wt.HW.ALL||H.userPersona===this.selNode.settings.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(mc.ECLChildren))}onShowData(v){this.store.dispatch((0,Sn.OP)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(v){const H=this.selConfigNodeIndex;this.selConfigNodeIndex=v;const G=this.appConfig.nodes.find(Oe=>+Oe.index===v);this.store.dispatch((0,Sn.Qi)({payload:{uiMessage:Wt.MZ.UPDATE_SELECTED_NODE,prevLnNodeIndex:+H,currentLnNode:G||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(is.h),t.rXU($s.Q),t.rXU(Pi.il),t.rXU(it.En),t.rXU(Sa.H))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-side-navigation"]],viewQuery:function(H,G){if(1&H&&t.GBs(gs.lQ,5),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.tree=Oe.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},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"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["matTreeNodeToggle","","routerLinkActive","active-link",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,"icon","matTooltip",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,"icon","matTooltip"],["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(H,G){1&H&&(t.j41(0,"div",2)(1,"div",3),t.DNE(2,Lh,3,2,"mat-select",4),t.nrm(3,"mat-divider",5),t.DNE(4,Pf,4,3,"mat-tree",6),t.nrm(5,"mat-divider",5),t.j41(6,"mat-tree",7),t.DNE(7,Ah,6,4,"mat-tree-node",8),t.k0s()(),t.j41(8,"div",9),t.DNE(9,zf,2,2,"mat-tree",6),t.k0s()(),t.DNE(10,Ih,6,0,"ng-template",null,0,t.C5r)),2&H&&(t.R7$(2),t.Y8G("ngIf",G.appConfig.nodes.length>1),t.R7$(2),t.Y8G("ngIf",null==G.selNode.settings?null:G.selNode.settings.lnServerUrl),t.R7$(2),t.Y8G("dataSource",G.navMenusShowData)("treeControl",G.treeControlShowData),t.R7$(3),t.Y8G("ngIf",G.showLogout))},dependencies:[si.Sq,si.bT,si.T3,Qr.aY,$i.DJ,$i.sA,$i.UI,be.iY,Vc.An,rl.q,gs.q1,gs.yI,gs.pO,gs.lQ,gs.d6,gs.wx,ft.VO,Rt.wT,Sc.oV,Nn.Wk,Nn.wQ,Jt.ZF,Jt.Ld],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]})}}return F})();var U1=g(9115);function D4(F,B){if(1&F&&(t.j41(0,"p",14),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&F){const v=t.XpG();t.R7$(),t.Y8G("icon",v.faCode),t.R7$(2),t.SpI("API Version: ",null==v.information?null:v.information.api_version,"")}}function rs(F,B){if(1&F&&(t.j41(0,"p",15),t.nrm(1,"fa-icon",3),t.j41(2,"span",16),t.EFF(3,"Settings"),t.k0s()()),2&F){const v=t.XpG();t.R7$(),t.Y8G("icon",v.faUserCog)}}function Bd(F,B){if(1&F&&(t.j41(0,"p",17),t.nrm(1,"fa-icon",3),t.j41(2,"span",18),t.EFF(3,"Help"),t.k0s()()),2&F){const v=t.XpG();t.R7$(),t.Y8G("icon",v.faQuestion)}}function Bf(F,B){if(1&F){const v=t.RV6();t.j41(0,"p",19),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.onClick())}),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3,"Logout"),t.k0s()()}if(2&F){const v=t.XpG();t.R7$(),t.Y8G("icon",v.faEject)}}let A4=(()=>{class F{constructor(v,H,G,Oe,kt){this.logger=v,this.sessionService=H,this.store=G,this.rtlEffects=Oe,this.actions=kt,this.faUserCog=qi.McB,this.faCodeBranch=qi.Xbc,this.faCode=qi.jTw,this.faCog=qi.dB,this.faQuestion=qi.EvL,this.faEject=qi.njF,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new Xi.B,new Xi.B,new Xi.B,new Xi.B],this.version=Wt.xv}ngOnInit(){this.store.select(vr.N).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{if(this.information=v,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 H=this.information.chains[0];this.informationChain.chain=H.chain,this.informationChain.network=H.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(v)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.showLogout=!!v.token,this.flgLoading=!!v.token}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,Cr.p)(v=>v.type===Wt.aU.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Sn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[3])).subscribe(v=>{v&&(this.showLogout=!1,this.store.dispatch((0,Sn.ri)({payload:""})))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(null),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU($s.Q),t.rXU(Pi.il),t.rXU(Sa.H),t.rXU(it.En))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-top-menu"]],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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"mat-menu",1,0)(2,"p",2),t.nrm(3,"fa-icon",3),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.DNE(6,D4,4,2,"p",4)(7,rs,4,1,"p",5)(8,Bd,4,1,"p",6),t.j41(9,"p",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onDonate())}),t.qSk(),t.j41(10,"svg",8)(11,"g"),t.nrm(12,"path",9),t.k0s()(),t.joV(),t.j41(13,"span"),t.EFF(14,"Donate"),t.k0s()(),t.DNE(15,Bf,4,1,"p",10),t.k0s(),t.j41(16,"button",11),t.nrm(17,"img",12),t.j41(18,"mat-icon",13),t.EFF(19,"arrow_drop_down"),t.k0s()()}if(2&H){const Oe=t.sdS(1);t.Y8G("overlapTrigger",!1),t.R7$(3),t.Y8G("icon",G.faCodeBranch),t.R7$(2),t.SpI("Version: ",G.version,""),t.R7$(),t.Y8G("ngIf",null==G.information?null:G.information.api_version),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(7),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("matMenuTriggerFor",Oe)}},dependencies:[si.bT,Qr.aY,$i.sA,be.iY,Vc.An,U1.kk,U1.fb,U1.Cp,Nn.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 F})();const Vf=["sideNavigation"],Uf=["sideNavContent"],Gf=(F,B)=>[F,B];function k4(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",15),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.sideNavToggle())}),t.j41(1,"mat-icon",16),t.EFF(2,"menu"),t.k0s()()}if(2&F){const v=t.XpG();t.Y8G("matTooltip",v.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",v.smallScreen)}}function Hf(F,B){1&F&&(t.qSk(),t.nrm(0,"path",21))}function I4(F,B){1&F&&(t.qSk(),t.nrm(0,"path",22))}function Rh(F,B){if(1&F){const v=t.RV6();t.j41(0,"button",17),t.bIt("click",function(){t.eBV(v);const G=t.XpG();return t.Njj(G.flgSidenavPinned=!G.flgSidenavPinned)}),t.qSk(),t.j41(1,"svg",18),t.DNE(2,Hf,1,0,"path",19)(3,I4,1,0,"path",20),t.k0s()()}if(2&F){const v=t.XpG();t.Y8G("matTooltip",v.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),t.R7$(2),t.Y8G("ngIf",!v.flgSidenavPinned),t.R7$(),t.Y8G("ngIf",v.flgSidenavPinned)}}function jf(F,B){if(1&F&&(t.j41(0,"span",23),t.EFF(1),t.k0s()),2&F){const v=t.XpG();t.R7$(),t.JRh(v.information.alias?"RTL - "+v.information.alias:"RTL")}}function R4(F,B){if(1&F&&(t.j41(0,"span",24),t.EFF(1),t.k0s()),2&F){const v=t.XpG();t.R7$(),t.JRh(v.information.alias?"Ride The Lightning - "+v.information.alias:"Ride The Lightning")}}function Vd(F,B){1&F&&(t.j41(0,"div",25),t.nrm(1,"mat-spinner",26),t.j41(2,"h4"),t.EFF(3,"Loading RTL..."),t.k0s()())}let Kc=(()=>{class F{constructor(v,H,G,Oe,kt,At,oi,ui,Wi){this.logger=v,this.commonService=H,this.store=G,this.actions=Oe,this.userIdle=kt,this.router=At,this.sessionService=oi,this.breakpointObserver=ui,this.renderer=Wi,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 Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B,new Xi.B]}ngOnInit(){this.router.events.subscribe(v=>{v instanceof Nn.wF&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([Gr.Rp.XSmall,Gr.Rp.TabletPortrait,Gr.Rp.Small,Gr.Rp.Medium,Gr.Rp.Large,Gr.Rp.XLarge]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(v=>{v.breakpoints[Gr.Rp.XSmall]?(this.commonService.setScreenSize(Wt.f7.XS),this.smallScreen=!0):v.breakpoints[Gr.Rp.TabletPortrait]?(this.commonService.setScreenSize(Wt.f7.SM),this.smallScreen=!0):v.breakpoints[Gr.Rp.Small]||v.breakpoints[Gr.Rp.Medium]?(this.commonService.setScreenSize(Wt.f7.MD),this.smallScreen=!1):v.breakpoints[Gr.Rp.Large]?(this.commonService.setScreenSize(Wt.f7.LG),this.smallScreen=!1):(this.commonService.setScreenSize(Wt.f7.XL),this.smallScreen=!1)}),this.store.dispatch((0,Sn.NU)()),this.accessKey=this.readAccessKey()||"",this.store.select(vr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(v=>{this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1),this.selNode=v}),this.store.select(vr.qv).pipe((0,dn.Q)(this.unSubs[2])).subscribe(v=>{this.appConfig=v}),this.store.select(vr.N).pipe((0,dn.Q)(this.unSubs[3])).subscribe(v=>{this.information=v,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,dn.Q)(this.unSubs[4]),(0,Cr.p)(v=>v.type===Wt.aU.FETCH_APPLICATION_SETTINGS||v.type===Wt.aU.LOGIN||v.type===Wt.aU.LOGOUT)).subscribe(v=>{v.type===Wt.aU.SET_APPLICATION_SETTINGS&&(this.sessionService.getItem("token")||(+v.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,Sn.iD)({payload:{password:zn(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"],{state:{logoutReason:"Access key too short. It should be at least 32 characters long."}}))),v.type===Wt.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)),v.type===Wt.aU.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,dn.Q)(this.unSubs[5])).subscribe(v=>{this.logger.info("Counting Down: "+(11-v))}),this.userIdle.onTimeout().pipe((0,dn.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,Sn.Jh)()),this.store.dispatch((0,Sn.xO)({payload:{data:{type:Wt.A$.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Sn.ri)({payload:"Logging Out. Time limit exceeded for session inactivity."})))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const v=window.location.href;return v.includes("access-key=")?v.substring(v.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(v){this.smallScreen&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}backdropClicked(){(!this.flgSidenavPinned||this.smallScreen)&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}copiedText(v){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+v)}ngOnDestroy(){this.unSubs.forEach(v=>{v.next(),v.complete()})}static{this.\u0275fac=function(H){return new(H||F)(t.rXU(ge.gP),t.rXU(is.h),t.rXU(Pi.il),t.rXU(it.En),t.rXU(mo),t.rXU(Nn.Ix),t.rXU($s.Q),t.rXU(Gr.QP),t.rXU(t.sFG))}}static{this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-app"]],viewQuery:function(H,G){if(1&H&&(t.GBs(Vf,5),t.GBs(Uf,5)),2&H){let Oe;t.mGM(Oe=t.lsd())&&(G.sideNavigation=Oe.first),t.mGM(Oe=t.lsd())&&(G.sideNavContent=Oe.first)}},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(H,G){if(1&H){const Oe=t.RV6();t.j41(0,"div",3),t.nI1(1,"lowercase"),t.nI1(2,"lowercase"),t.j41(3,"mat-toolbar",4)(4,"div"),t.DNE(5,k4,3,2,"button",5)(6,Rh,4,3,"button",6),t.k0s(),t.j41(7,"div"),t.DNE(8,jf,2,1,"span",7)(9,R4,2,1,"span",8),t.k0s(),t.j41(10,"div"),t.nrm(11,"rtl-top-menu"),t.k0s()(),t.j41(12,"mat-sidenav-container",9),t.bIt("backdropClick",function(){return t.eBV(Oe),t.Njj(G.backdropClicked())}),t.j41(13,"mat-sidenav",10,0)(15,"rtl-side-navigation",11),t.bIt("ChildNavClicked",function(At){return t.eBV(Oe),t.Njj(G.onNavigationClicked(At))}),t.k0s()(),t.j41(16,"mat-sidenav-content",12,1)(18,"div",13),t.nrm(19,"router-outlet",null,2),t.k0s()()(),t.DNE(21,Vd,4,0,"div",14),t.k0s()}2&H&&(t.Y8G("ngClass",t.l_i(12,Gf,t.bMT(1,8,G.selNode.settings.themeColor),t.bMT(2,10,G.selNode.settings.themeMode))),t.R7$(5),t.Y8G("ngIf",G.flgLoggedIn),t.R7$(),t.Y8G("ngIf",!G.smallScreen&&G.flgLoggedIn),t.R7$(2),t.Y8G("ngIf",G.smallScreen),t.R7$(),t.Y8G("ngIf",!G.smallScreen),t.R7$(4),t.Y8G("opened",G.flgSideNavOpened&&G.flgLoggedIn)("mode",G.flgSidenavPinned&&!G.smallScreen?"side":"over"),t.R7$(8),t.Y8G("ngIf",!G.selNode.settings.themeColor))},dependencies:[si.YU,si.bT,$i.DJ,$i.sA,$i.UI,Go.PW,be.iY,Vc.An,V0.LG,O1.LG,O1.US,O1.El,Of.KQ,Sc.oV,Jt.Ld,L4,A4,Nn.n3,si.GH],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[R1.E]}})}}return F})(),bl=(()=>{class F{constructor(v){this.sessionService=v}intercept(v,H){if(this.sessionService.getItem("token")){const G=v.clone({headers:v.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return H.handle(G)}return H.handle(v)}static{this.\u0275fac=function(H){return new(H||F)(t.KVO($s.Q))}}static{this.\u0275prov=t.jDH({token:F,factory:F.\u0275fac})}}return F})();var Wf=g(7879),Oh=g(9579),Xf=g(283),O4=g(3017);const F4={userPersona:Wt.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"},Fh={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},j0={apiURL:"",apisCallStatus:{Login:{status:Wt.wn.UN_INITIATED},IsAuthorized:{status:Wt.wn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:F4,authentication:Fh,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,SSO:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,secret2FA:"",allowPasswordUpdate:!0,nodes:[{settings:F4,authentication:Fh}]},nodeData:{}},W0=(0,Pi.vy)(j0,(0,Pi.on)(Sn.Gd,(F,{payload:B})=>{const v=JSON.parse(JSON.stringify(F.apisCallStatus));return B.action&&(v[B.action]={status:B.status,statusCode:B.statusCode,message:B.message,URL:B.URL,filePath:B.filePath}),{...F,apisCallStatus:v}}),(0,Pi.on)(Sn.Tn,(F,{payload:B})=>({...j0,apisCallStatus:F.apisCallStatus,appConfig:F.appConfig,selNode:B})),(0,Pi.on)(Sn.Np,(F,{payload:B})=>({...F,selNode:B})),(0,Pi.on)(Sn.Fl,(F,{payload:B})=>({...F,nodeData:B})),(0,Pi.on)(Sn.IK,(F,{payload:B})=>({...F,appConfig:B}))),X0={apisCallStatus:{FetchPageSettings:{status:Wt.wn.UN_INITIATED},FetchInfo:{status:Wt.wn.UN_INITIATED},FetchFees:{status:Wt.wn.UN_INITIATED},FetchPeers:{status:Wt.wn.UN_INITIATED},FetchClosedChannels:{status:Wt.wn.UN_INITIATED},FetchPendingChannels:{status:Wt.wn.UN_INITIATED},FetchAllChannels:{status:Wt.wn.UN_INITIATED},FetchBalanceBlockchain:{status:Wt.wn.UN_INITIATED},FetchInvoices:{status:Wt.wn.UN_INITIATED},FetchPayments:{status:Wt.wn.UN_INITIATED},FetchForwardingHistory:{status:Wt.wn.UN_INITIATED},FetchUTXOs:{status:Wt.wn.UN_INITIATED},FetchTransactions:{status:Wt.wn.UN_INITIATED},FetchLightningTransactions:{status:Wt.wn.UN_INITIATED},FetchNetwork:{status:Wt.wn.UN_INITIATED}},pageSettings:Wt.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 Yf=!1,Nh=!1;const N4=(0,Pi.vy)(X0,(0,Pi.on)(Oa.e8,(F,{payload:B})=>{const v=JSON.parse(JSON.stringify(F.apisCallStatus));return B.action&&(v[B.action]={status:B.status,statusCode:B.statusCode,message:B.message,URL:B.URL,filePath:B.filePath}),{...F,apisCallStatus:v}}),(0,Pi.on)(Oa.p1,F=>({...X0})),(0,Pi.on)(Oa.x1,(F,{payload:B})=>({...F,information:B})),(0,Pi.on)(Oa.Qj,(F,{payload:B})=>({...F,peers:B})),(0,Pi.on)(Oa.Zi,(F,{payload:B})=>{const v=[...F.peers],H=F.peers.findIndex(G=>G.pub_key===B.pubkey);return H>-1&&v.splice(H,1),{...F,peers:v}}),(0,Pi.on)(Oa.Jx,(F,{payload:B})=>{const v=F.listInvoices;return v.invoices?.unshift(B),{...F,listInvoices:v}}),(0,Pi.on)(Oa.Dq,(F,{payload:B})=>{const v=F.listInvoices;return v.invoices=v.invoices?.map(H=>H.payment_request===B.payment_request?B:H),{...F,listInvoices:v}}),(0,Pi.on)(Oa._$,(F,{payload:B})=>{const v=F.listPayments;return v.payments=v.payments?.map(H=>H.payment_hash===B.payment_hash?B:H),{...F,listPayments:v}}),(0,Pi.on)(Oa.Uo,(F,{payload:B})=>({...F,fees:B})),(0,Pi.on)(Oa.z2,(F,{payload:B})=>({...F,closedChannels:B})),(0,Pi.on)(Oa.cU,(F,{payload:B})=>({...F,pendingChannels:B.pendingChannels,pendingChannelsSummary:B.pendingChannelsSummary})),(0,Pi.on)(Oa.dv,(F,{payload:B})=>{let v=0,H=0,G=0,Oe=0,kt=0,At=0;return B&&B.forEach(oi=>{oi.local_balance||(oi.local_balance=0),!0===oi.active?(kt+=+oi.local_balance,G+=1,oi.local_balance?v=+v+ +oi.local_balance:oi.local_balance=0,oi.remote_balance?H=+H+ +oi.remote_balance:oi.remote_balance=0):(At+=+oi.local_balance,Oe+=1)}),{...F,channels:B,channelsSummary:{active:{num_channels:G,capacity:kt},inactive:{num_channels:Oe,capacity:At}},lightningBalance:{local:v,remote:H}}}),(0,Pi.on)(Oa.cR,(F,{payload:B})=>{const v=[...F.channels],H=F.channels.findIndex(G=>G.channel_point===B.channelPoint);return H>-1&&v.splice(H,1),{...F,channels:v}}),(0,Pi.on)(Oa.DI,(F,{payload:B})=>({...F,blockchainBalance:B})),(0,Pi.on)(Oa.J9,(F,{payload:B})=>({...F,networkInfo:B})),(0,Pi.on)(Oa.$6,(F,{payload:B})=>(B.total_invoices||(B.total_invoices=F.listInvoices.total_invoices),{...F,listInvoices:B})),(0,Pi.on)(Oa.As,(F,{payload:B})=>{if(Yf=!0,B.length&&Nh){const v=[...F.utxos];return v.forEach(H=>{const G=B.find(Oe=>Oe.tx_hash===H.outpoint?.txid_str);H.label=G&&G.label?G.label:""}),{...F,utxos:v,transactions:B}}return{...F,transactions:B}}),(0,Pi.on)(Oa.O8,(F,{payload:B})=>{if(Nh=!0,B.length&&Yf){const v=[...F.transactions];B.forEach(H=>{const G=v.find(Oe=>Oe.tx_hash===H.outpoint?.txid_str);H.label=G&&G.label?G.label:""})}return{...F,utxos:B}}),(0,Pi.on)(Oa.Uj,(F,{payload:B})=>{const v={listInvoicesAll:F.allLightningTransactions.listInvoicesAll,listPaymentsAll:B};return{...F,listPayments:B,allLightningTransactions:v}}),(0,Pi.on)(Oa.b1,(F,{payload:B})=>{const v={listInvoicesAll:B.listInvoicesAll,listPaymentsAll:F.listPayments};return{...F,allLightningTransactions:v}}),(0,Pi.on)(Oa.kv,(F,{payload:B})=>{const v=[...F.channels,...F.closedChannels];let H=B.forwarding_events?JSON.parse(JSON.stringify(B)):{};return H.forwarding_events&&(H=Ph(H,v)),{...F,forwardingHistory:H}}),(0,Pi.on)(Oa.NS,(F,{payload:B})=>{const v=[];return Wt.ZC.forEach(H=>{const G=B&&B.length&&B.length>0?B.find(Oe=>Oe.pageId===H.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],H.tables.forEach(kt=>{const At=Oe.find(oi=>oi.tableId===kt.tableId)||null;G.tables.push(At||JSON.parse(JSON.stringify(kt)))}),v.push(G)}else v.push(JSON.parse(JSON.stringify(H)))}),{...F,pageSettings:v}})),Ph=(F,B)=>(F.forwarding_events.forEach(v=>{if(B&&B.length>0)for(let H=0;H{const v=JSON.parse(JSON.stringify(F.apisCallStatus));return B.action&&(v[B.action]={status:B.status,statusCode:B.statusCode,message:B.message,URL:B.URL,filePath:B.filePath}),{...F,apisCallStatus:v}}),(0,Pi.on)(La.gf,F=>({...Kf})),(0,Pi.on)(La.x1,(F,{payload:B})=>({...F,information:B,fees:{feeCollected:B.fees_collected_msat}})),(0,Pi.on)(La.C2,(F,{payload:B})=>B.perkb?{...F,feeRatesPerKB:B}:B.perkw?{...F,feeRatesPerKW:B}:{...F}),(0,Pi.on)(La.EM,(F,{payload:B})=>({...F,utxos:B.utxos||[],balance:B.balance,localRemoteBalance:B.localRemoteBalance})),(0,Pi.on)(La.Qj,(F,{payload:B})=>({...F,peers:B})),(0,Pi.on)(La.We,(F,{payload:B})=>({...F,peers:[...F.peers,B]})),(0,Pi.on)(La.Zi,(F,{payload:B})=>{const v=[...F.peers],H=F.peers.findIndex(G=>G.id===B.id);return H>-1&&v.splice(H,1),{...F,peers:v}}),(0,Pi.on)(La.dv,(F,{payload:B})=>({...F,activeChannels:B.activeChannels,pendingChannels:B.pendingChannels,inactiveChannels:B.inactiveChannels})),(0,Pi.on)(La.cR,(F,{payload:B})=>{const v=[...F.peers];return v.forEach(H=>{H.id===B.id&&(H.connected=!1,delete H.netaddr)}),{...F,peers:v}}),(0,Pi.on)(La.Uj,(F,{payload:B})=>({...F,payments:B})),(0,Pi.on)(La.kv,(F,{payload:B})=>{const v=[...F.activeChannels,...F.pendingChannels,...F.inactiveChannels],H=P4(B.listForwards,v);switch(B.listForwards=H,B.status){case Wt.xk.SETTLED:const G=F.fees;return G.totalTxCount=B.totalForwards||0,{...F,fees:G,forwardingHistory:B};case Wt.xk.FAILED:return{...F,failedForwardingHistory:B};case Wt.xk.LOCAL_FAILED:return{...F,localFailedForwardingHistory:B};default:return{...F}}}),(0,Pi.on)(La.Jx,(F,{payload:B})=>{const v=F.invoices;return v.invoices?.unshift(B),{...F,invoices:v}}),(0,Pi.on)(La.$6,(F,{payload:B})=>({...F,invoices:B})),(0,Pi.on)(La.Dq,(F,{payload:B})=>{const v=F.invoices;return v.invoices=v.invoices?.map(H=>(H.label===B.label&&(H.amount_received_msat=B.msat,H.payment_preimage=B.preimage,H.status="paid"),H)),{...F,invoices:v}}),(0,Pi.on)(La.qw,(F,{payload:B})=>({...F,offers:B})),(0,Pi.on)(La.kQ,(F,{payload:B})=>{const v=F.offers;return v?.unshift(B),{...F,offers:v}}),(0,Pi.on)(La.Gz,(F,{payload:B})=>{const v=[...F.offers],H=F.offers.findIndex(G=>G.offer_id===B.offer.offer_id);return H>-1&&v.splice(H,1,B.offer),{...F,offers:v}}),(0,Pi.on)(La.Qv,(F,{payload:B})=>({...F,offersBookmarks:B})),(0,Pi.on)(La.Db,(F,{payload:B})=>{const v=[...F.offersBookmarks],H=v.findIndex(G=>G.bolt12===B.bolt12);if(H<0)v?.unshift(B);else{const G={...v[H]};G.title=B.title,G.amountMSat=B.amountMSat,G.lastUpdatedAt=B.lastUpdatedAt,G.description=B.description,G.issuer=B.issuer,v.splice(H,1,G)}return{...F,offersBookmarks:v}}),(0,Pi.on)(La.NU,(F,{payload:B})=>{const v=[...F.offersBookmarks],H=F.offersBookmarks.findIndex(G=>G.bolt12===B.bolt12);return H>-1&&v.splice(H,1),{...F,offersBookmarks:v}}),(0,Pi.on)(La.NS,(F,{payload:B})=>{const v=[];return Wt.mu.forEach(H=>{const G=B&&B.length&&B.length>0?B.find(Oe=>Oe.pageId===H.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],H.tables.forEach(kt=>{const At=Oe.find(oi=>oi.tableId===kt.tableId)||null;G.tables.push(At||JSON.parse(JSON.stringify(kt)))}),v.push(G)}else v.push(JSON.parse(JSON.stringify(H)))}),{...F,pageSettings:v}})),P4=(F,B)=>(F&&F.length>0?F.forEach((v,H)=>{if(B&&B.length>0)for(let G=0;G{const v=JSON.parse(JSON.stringify(F.apisCallStatus));return B.action&&(v[B.action]={status:B.status,statusCode:B.statusCode,message:B.message,URL:B.URL,filePath:B.filePath}),{...F,apisCallStatus:v}}),(0,Pi.on)(Ha.Hh,F=>({...zh})),(0,Pi.on)(Ha.x1,(F,{payload:B})=>({...F,information:B})),(0,Pi.on)(Ha.Uo,(F,{payload:B})=>({...F,fees:B})),(0,Pi.on)(Ha.Tp,(F,{payload:B})=>({...F,activeChannels:B})),(0,Pi.on)(Ha.cU,(F,{payload:B})=>({...F,pendingChannels:B})),(0,Pi.on)(Ha.I6,(F,{payload:B})=>({...F,inactiveChannels:B})),(0,Pi.on)(Ha.ZE,(F,{payload:B})=>({...F,channelsStatus:B})),(0,Pi.on)(Ha.Xx,(F,{payload:B})=>({...F,onchainBalance:B})),(0,Pi.on)(Ha.N8,(F,{payload:B})=>({...F,lightningBalance:B})),(0,Pi.on)(Ha.Qj,(F,{payload:B})=>({...F,peers:B})),(0,Pi.on)(Ha.Zi,(F,{payload:B})=>{const v=[...F.peers],H=F.peers.findIndex(G=>G.nodeId===B.nodeId);return H>-1&&v.splice(H,1),{...F,peers:v}}),(0,Pi.on)(Ha.cR,(F,{payload:B})=>{const v=[...F.activeChannels],H=F.activeChannels.findIndex(G=>G.channelId===B.channelId);return H>-1&&v.splice(H,1),{...F,activeChannels:v}}),(0,Pi.on)(Ha.Uj,(F,{payload:B})=>{if(B&&B.sent){const v=[...F.activeChannels,...F.pendingChannels,...F.inactiveChannels];B.sent?.map(H=>{const G=F.peers.find(Oe=>Oe.nodeId===H.recipientNodeId);return H.recipientNodeAlias=G?G.alias:H.recipientNodeId,H.parts&&H.parts?.map(Oe=>{const kt=v.find(At=>At.channelId===Oe.toChannelId);return Oe.toChannelAlias=kt?kt.alias:Oe.toChannelId,H.parts}),B.sent})}if(B&&B.relayed){const v=[...F.activeChannels,...F.pendingChannels,...F.inactiveChannels];B.relayed.forEach(H=>{H=Vh(H,v)})}return{...F,payments:B}}),(0,Pi.on)(Ha.As,(F,{payload:B})=>({...F,transactions:B})),(0,Pi.on)(Ha.Jx,(F,{payload:B})=>{const v=F.invoices;return v?.unshift(B),{...F,invoices:v}}),(0,Pi.on)(Ha.$6,(F,{payload:B})=>({...F,invoices:B})),(0,Pi.on)(Ha.Dq,(F,{payload:B})=>{let v=F.invoices;return v=v?.map(H=>{if(H.paymentHash===B.paymentHash){if(B.hasOwnProperty("type")){const G=JSON.parse(JSON.stringify(H));return G.amountSettled=B.parts&&B.parts.length&&B.parts.length>0&&B.parts[0].amount?(B.parts[0].amount||0)/1e3:0,G.receivedAt=B.parts&&B.parts.length&&B.parts.length>0&&B.parts[0].timestamp?Math.round((B.parts[0].timestamp||0)/1e3):0,G.status="received",G}return B}return H}),{...F,invoices:v}}),(0,Pi.on)(Ha.gZ,(F,{payload:B})=>{let v=F.pendingChannels;return v=v?.map(H=>(H.channelId===B.channelId&&H.nodeId===B.remoteNodeId&&(B.currentState=B.currentState?.replace(/_/g," "),H.state=B.currentState),H)),{...F,pendingChannels:v}}),(0,Pi.on)(Ha.yn,(F,{payload:B})=>{const v=F.payments,H=Vh(B,[...F.activeChannels,...F.pendingChannels,...F.inactiveChannels]);v.relayed?.unshift(H);const G=(B.amountIn||0)-(B.amountOut||0),Oe={localBalance:F.lightningBalance.localBalance+G,remoteBalance:F.lightningBalance.remoteBalance-G},kt=F.channelsStatus;kt.active&&(kt.active.capacity=(F.channelsStatus?.active?.capacity||0)+G);const At={daily_fee:(F.fees.daily_fee||0)+G,daily_txs:(F.fees.daily_txs||0)+1,weekly_fee:(F.fees.weekly_fee||0)+G,weekly_txs:(F.fees.weekly_txs||0)+1,monthly_fee:(F.fees.monthly_fee||0)+G,monthly_txs:(F.fees.monthly_txs||0)+1},oi=F.activeChannels;let ui=!1,Wi=!1;for(const Li of oi){if(Li.channelId===B.fromChannelId){ui=!0;const fn=(Li.toLocal||0)+(Li.toRemote||0);Li.toLocal=(Li.toLocal||0)+H.amountIn,Li.toRemote=(Li.toRemote||0)-H.amountIn,Li.balancedness=0===fn?1:+(1-Math.abs((Li.toLocal-Li.toRemote)/fn)).toFixed(3)}if(Li.channelId===B.toChannelId){Wi=!0;const fn=(Li.toLocal||0)+(Li.toRemote||0);Li.toLocal=(Li.toLocal||0)-H.amountOut,Li.toRemote=(Li.toRemote||0)+H.amountOut,Li.balancedness=0===fn?1:+(1-Math.abs((Li.toLocal-Li.toRemote)/fn)).toFixed(3)}if(Wi&&ui)break}return{...F,payments:v,lightningBalance:Oe,channelStatus:kt,fees:At,activeChannels:oi}}),(0,Pi.on)(Ha.NS,(F,{payload:B})=>{const v=[];return Wt.X8.forEach(H=>{const G=B&&B.length&&B.length>0?B.find(Oe=>Oe.pageId===H.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],H.tables.forEach(kt=>{const At=Oe.find(oi=>oi.tableId===kt.tableId)||null;G.tables.push(At||JSON.parse(JSON.stringify(kt)))}),v.push(G)}else v.push(JSON.parse(JSON.stringify(H)))}),{...F,pageSettings:v}})),Vh=(F,B)=>{if("payment-relayed"===F.type)if(B&&B.length>0)for(let v=0;v0)for(let G=0;G{B[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=B[G].alias?B[G].alias:Oe.channelId,Oe.shortChannelId=B[G].shortChannelId?B[G].shortChannelId:"")}),F.outgoing?.forEach(Oe=>{B[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=B[G].alias?B[G].alias:Oe.channelId,Oe.shortChannelId=B[G].shortChannelId?B[G].shortChannelId:"")}),G===B.length-1&&(F.incoming&&F.incoming.length&&F.incoming.length>0&&!F.incoming[0].channelAlias&&F.incoming?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}),F.outgoing&&F.outgoing.length&&F.outgoing.length>0&&!F.outgoing[0].channelAlias&&F.outgoing?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}));else F.incoming?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""}),F.outgoing?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""});const v=F.incoming?.reduce((G,Oe)=>G+Oe.amount,0)||0;F.amountIn=Math.round(v/1e3),F.fromChannelId=F.incoming&&F.incoming.length?F.incoming[0].channelId:"",F.fromChannelAlias=F.incoming&&F.incoming.length?F.incoming[0].channelAlias:"",F.fromShortChannelId=F.incoming&&F.incoming.length?F.incoming[0].shortChannelId:"";const H=F.outgoing?.reduce((G,Oe)=>G+Oe.amount,0)||0;F.amountOut=Math.round(H/1e3),F.toChannelId=F.outgoing&&F.outgoing.length?F.outgoing[0].channelId:"",F.toChannelAlias=F.outgoing&&F.outgoing.length?F.outgoing[0].channelAlias:"",F.toShortChannelId=F.outgoing&&F.outgoing.length?F.outgoing[0].shortChannelId:""}return F};let Qf=!1;(0,t.naY)()&&(Qf=!0);let Uh=(()=>{class F{static{this.\u0275fac=function(H){return new(H||F)}}static{this.\u0275mod=t.$C({type:F,bootstrap:[Kc]})}static{this.\u0275inj=t.G2t({providers:[Yr({idle:Wt.bz-10,timeout:10,ping:12e3}),{provide:Vo.a7,useClass:bl,multi:!0},$s.Q,Jl.u,Wf.I,B2.Q,is.h,Dc],imports:[Ra,I1.G,zd,Gr.RH,e.fM,Pi.md.forRoot({root:W0,lnd:N4,cln:$f,ecl:Bh},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),it.Vm.forRoot([Sa.H,Oh.L,Xf.i,O4.B]),Qf?so.instrument({connectInZone:!0}):[]]})}}return F})();e.sG().bootstrapModule(Uh).catch(F=>console.error(F))},426:(Qe,te)=>{"use strict";function g(X){return Object.keys(X).map(se=>X[se])}var X;Object.defineProperty(te,"__esModule",{value:!0}),(X=te.HashAlgorithms||(te.HashAlgorithms={})).SHA1="sha1",X.SHA256="sha256",X.SHA512="sha512";const e=g(te.HashAlgorithms);!function(X){X.ASCII="ascii",X.BASE64="base64",X.HEX="hex",X.LATIN1="latin1",X.UTF8="utf8"}(te.KeyEncodings||(te.KeyEncodings={}));const t=g(te.KeyEncodings);!function(X){X.HOTP="hotp",X.TOTP="totp"}(te.Strategy||(te.Strategy={}));const x=g(te.Strategy),D=()=>{throw new Error("Please provide an options.createDigest implementation.")};function l(X){return/^(\d+)$/.test(X)}function w(X,se,ae){return X.length>=se?X:`${Array(se+1).join(ae)}${X}`.slice(-1*se)}function f(X){const se=`otpauth://${X.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,ae=[];if(x.indexOf(X.type)<0)throw new Error(`Expecting options.type to be one of ${x.join(", ")}. Received ${X.type}.`);if("hotp"===X.type){if(null==X.counter||"number"!=typeof X.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');ae.push(`&counter=${X.counter}`)}return"totp"===X.type&&X.step&&ae.push(`&period=${X.step}`),X.digits&&ae.push(`&digits=${X.digits}`),X.algorithm&&ae.push(`&algorithm=${X.algorithm.toUpperCase()}`),X.issuer&&ae.push(`&issuer=${encodeURIComponent(X.issuer)}`),se.replace("{labelPrefix}",encodeURIComponent(X.issuer||X.accountName)).replace("{accountName}",encodeURIComponent(X.accountName)).replace("{secret}",X.secret).replace("{query}",ae.join(""))}class R{constructor(se={}){this._defaultOptions=Object.freeze({...se}),this._options=Object.freeze({})}create(se={}){return new R(se)}clone(se={}){const ae=this.create({...this._defaultOptions,...se});return ae.options=this._options,ae}get options(){return Object.freeze({...this._defaultOptions,...this._options})}set options(se){this._options=Object.freeze({...this._options,...se})}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function h(X){if("function"!=typeof X.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof X.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof X.digits)throw new Error("Expecting options.digits to be a number.");if(!X.algorithm||e.indexOf(X.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${e.join(", ")}. Received ${X.algorithm}.`);if(!X.encoding||t.indexOf(X.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${t.join(", ")}. Received ${X.encoding}.`)}const S=(X,se,ae)=>Buffer.from(se,ae).toString("hex");function y(){return{algorithm:te.HashAlgorithms.SHA1,createHmacKey:S,createDigest:D,digits:6,encoding:te.KeyEncodings.ASCII}}function O(X){const se={...y(),...X};return h(se),Object.freeze(se)}function I(X){return w(X.toString(16),16,"0")}function V(X,se){const ae=Buffer.from(X,"hex"),he=15&ae[ae.length-1],st=((127&ae[he])<<24|(255&ae[he+1])<<16|(255&ae[he+2])<<8|255&ae[he+3])%Math.pow(10,se);return w(String(st),se,"0")}function Y(X,se,ae){const he=ae.digest||function j(X,se,ae){const he=I(se),Ie=ae.createHmacKey(ae.algorithm,X,ae.encoding);return ae.createDigest(ae.algorithm,Ie,he)}(X,se,ae);return V(he,ae.digits)}function W(X,se,ae,he){return!!l(X)&&X===Y(se,ae,he)}function Q(X,se,ae,he,Ie){return f({algorithm:Ie.algorithm,digits:Ie.digits,type:te.Strategy.HOTP,accountName:X,counter:he,issuer:se,secret:ae})}class J extends R{create(se={}){return new J(se)}allOptions(){return O(this.options)}generate(se,ae){return Y(se,ae,this.allOptions())}check(se,ae,he){return W(se,ae,he,this.allOptions())}verify(se){if("object"!=typeof se)throw new Error("Expecting argument 0 of verify to be an object");return this.check(se.token,se.secret,se.counter)}keyuri(se,ae,he,Ie){return Q(se,ae,he,Ie,this.allOptions())}}function ie(X){if("number"==typeof X)return[Math.abs(X),Math.abs(X)];if(Array.isArray(X)){const[se,ae]=X;if("number"==typeof se&&"number"==typeof ae)return[Math.abs(se),Math.abs(ae)]}throw new Error("Expecting options.window to be an number or [number, number].")}function ee(X){if(h(X),ie(X.window),"number"!=typeof X.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof X.step)throw new Error("Expecting options.step to be a number.")}const fe=(X,se,ae)=>{const he=X.length,Ie=Buffer.from(X,se).toString("hex");if(he{switch(X){case te.HashAlgorithms.SHA1:return fe(se,ae,20);case te.HashAlgorithms.SHA256:return fe(se,ae,32);case te.HashAlgorithms.SHA512:return fe(se,ae,64);default:throw new Error(`Expecting algorithm to be one of ${e.join(", ")}. Received ${X}.`)}};function Me(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:D,createHmacKey:ne,digits:6,encoding:te.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function Ce(X){const se={...Me(),...X};return ee(se),Object.freeze(se)}function le(X,se){return Math.floor(X/se/1e3)}function T(X,se){return Y(X,le(se.epoch,se.step),se)}function n(X,se,ae,he){const Ie=[];if(0===he)return Ie;for(let st=1;st<=he;st++)Ie.push(X+se*st*ae);return Ie}function c(X,se,ae){const he=ie(ae),Ie=1e3*se;return{current:X,past:n(X,-1,Ie,he[0]),future:n(X,1,Ie,he[1])}}function m(X,se,ae){return!!l(X)&&X===T(se,ae)}function d(X,se,ae,he){let Ie=null;return X.some((st,me)=>!!m(se,ae,{...he,epoch:st})&&(Ie=me+1,!0)),Ie}function C(X,se,ae){if(m(X,se,ae))return 0;const he=c(ae.epoch,ae.step,ae.window),Ie=d(he.past,X,se,ae);return null!==Ie?-1*Ie:d(he.future,X,se,ae)}function A(X,se){return Math.floor(X/1e3)%se}function k(X,se){return se-A(X,se)}function _(X,se,ae,he){return f({algorithm:he.algorithm,digits:he.digits,step:he.step,type:te.Strategy.TOTP,accountName:X,issuer:se,secret:ae})}class a extends J{create(se={}){return new a(se)}allOptions(){return Ce(this.options)}generate(se){return T(se,this.allOptions())}checkDelta(se,ae){return C(se,ae,this.allOptions())}check(se,ae){return"number"==typeof this.checkDelta(se,ae)}verify(se){if("object"!=typeof se)throw new Error("Expecting argument 0 of verify to be an object");return this.check(se.token,se.secret)}timeRemaining(){const se=this.allOptions();return k(se.epoch,se.step)}timeUsed(){const se=this.allOptions();return A(se.epoch,se.step)}keyuri(se,ae,he){return _(se,ae,he,this.allOptions())}}function b(X){if(ee(X),"function"!=typeof X.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(X.keyEncoder&&"function"!=typeof X.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function z(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:D,createHmacKey:ne,digits:6,encoding:te.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function N(X){const se={...z(),...X};return b(se),Object.freeze(se)}function q(X,se){return se.keyEncoder(X,se.encoding)}function pe(X,se){return se.keyDecoder(X,se.encoding)}function ze(X,se){return q(se.createRandomBytes(X,se.encoding),se)}function Xe(X,se){return T(pe(X,se),se)}function We(X,se,ae){return C(X,pe(se,ae),ae)}class oe extends a{create(se={}){return new oe(se)}allOptions(){return N(this.options)}generate(se){return Xe(se,this.allOptions())}checkDelta(se,ae){return We(se,ae,this.allOptions())}encode(se){return q(se,this.allOptions())}decode(se){return pe(se,this.allOptions())}generateSecret(se=10){return ze(se,this.allOptions())}}te.Authenticator=oe,te.HASH_ALGORITHMS=e,te.HOTP=J,te.KEY_ENCODINGS=t,te.OTP=R,te.STRATEGY=x,te.TOTP=a,te.authenticatorCheckWithWindow=We,te.authenticatorDecoder=pe,te.authenticatorDefaultOptions=z,te.authenticatorEncoder=q,te.authenticatorGenerateSecret=ze,te.authenticatorOptionValidator=b,te.authenticatorOptions=N,te.authenticatorToken=Xe,te.createDigestPlaceholder=D,te.hotpCheck=W,te.hotpCounter=I,te.hotpCreateHmacKey=S,te.hotpDefaultOptions=y,te.hotpDigestToToken=V,te.hotpKeyuri=Q,te.hotpOptions=O,te.hotpOptionsValidator=h,te.hotpToken=Y,te.isTokenValid=l,te.keyuri=f,te.objectValues=g,te.padStart=w,te.totpCheck=m,te.totpCheckByEpoch=d,te.totpCheckWithWindow=C,te.totpCounter=le,te.totpCreateHmacKey=ne,te.totpDefaultOptions=Me,te.totpEpochAvailable=c,te.totpKeyuri=_,te.totpOptions=Ce,te.totpOptionsValidator=ee,te.totpPadSecret=fe,te.totpTimeRemaining=k,te.totpTimeUsed=A,te.totpToken=T},7840:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(1426));te.createDigest=(l,w,f)=>t.createHmac(l,Buffer.from(w,"hex")).update(Buffer.from(f,"hex")).digest().toString("hex"),te.createRandomBytes=(l,w)=>t.randomBytes(l).toString(w)},5526:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(7851));te.keyDecoder=(l,w)=>t.decode(l).toString(w),te.keyEncoder=(l,w)=>t.encode(Buffer.from(l,w).toString("ascii")).toString().replace(/=/g,"")},4478:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(7840),t=g(5526),x=g(426);const D=new x.HOTP({createDigest:e.createDigest}),l=new x.TOTP({createDigest:e.createDigest}),w=new x.Authenticator({createDigest:e.createDigest,createRandomBytes:e.createRandomBytes,keyDecoder:t.keyDecoder,keyEncoder:t.keyEncoder});te.authenticator=w,te.hotp=D,te.totp=l},1990:(Qe,te,g)=>{var e=te;e.bignum=g(6867),e.define=g(6626).define,e.base=g(5066),e.constants=g(7740),e.decoders=g(1558),e.encoders=g(2714)},6626:(Qe,te,g)=>{var e=g(1990),t=g(1993);function D(l,w){this.name=l,this.body=w,this.decoders={},this.encoders={}}te.define=function(w,f){return new D(w,f)},D.prototype._createNamed=function(w){var f;try{f=g(8326).runInThisContext("(function "+this.name+"(entity) {\n this._initNamed(entity);\n})")}catch{f=function(h){this._initNamed(h)}}return t(f,w),f.prototype._initNamed=function(h){w.call(this,h)},new f(this)},D.prototype._getDecoder=function(w){return this.decoders.hasOwnProperty(w=w||"der")||(this.decoders[w]=this._createNamed(e.decoders[w])),this.decoders[w]},D.prototype.decode=function(w,f,R){return this._getDecoder(f).decode(w,R)},D.prototype._getEncoder=function(w){return this.encoders.hasOwnProperty(w=w||"der")||(this.encoders[w]=this._createNamed(e.encoders[w])),this.encoders[w]},D.prototype.encode=function(w,f,R){return this._getEncoder(f).encode(w,R)}},7290:(Qe,te,g)=>{var e=g(1993),t=g(5066).Reporter,x=g(3838).Buffer;function D(w,f){t.call(this,f),x.isBuffer(w)?(this.base=w,this.offset=0,this.length=w.length):this.error("Input not Buffer")}function l(w,f){if(Array.isArray(w))this.length=0,this.value=w.map(function(R){return R instanceof l||(R=new l(R,f)),this.length+=R.length,R},this);else if("number"==typeof w){if(!(0<=w&&w<=255))return f.error("non-byte EncoderBuffer value");this.value=w,this.length=1}else if("string"==typeof w)this.value=w,this.length=x.byteLength(w);else{if(!x.isBuffer(w))return f.error("Unsupported type: "+typeof w);this.value=w,this.length=w.length}}e(D,t),te.t=D,D.prototype.save=function(){return{offset:this.offset,reporter:t.prototype.save.call(this)}},D.prototype.restore=function(f){var R=new D(this.base);return R.offset=f.offset,R.length=this.offset,this.offset=f.offset,t.prototype.restore.call(this,f.reporter),R},D.prototype.isEmpty=function(){return this.offset===this.length},D.prototype.readUInt8=function(f){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(f||"DecoderBuffer overrun")},D.prototype.skip=function(f,R){if(!(this.offset+f<=this.length))return this.error(R||"DecoderBuffer overrun");var h=new D(this.base);return h._reporterState=this._reporterState,h.offset=this.offset,h.length=this.offset+f,this.offset+=f,h},D.prototype.raw=function(f){return this.base.slice(f?f.offset:this.offset,this.length)},te.d=l,l.prototype.join=function(f,R){return f||(f=new x(this.length)),R||(R=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(h){h.join(f,R),R+=h.length}):("number"==typeof this.value?f[R]=this.value:"string"==typeof this.value?f.write(this.value,R):x.isBuffer(this.value)&&this.value.copy(f,R),R+=this.length)),f}},5066:(Qe,te,g)=>{var e=te;e.Reporter=g(5697).a,e.DecoderBuffer=g(7290).t,e.EncoderBuffer=g(7290).d,e.Node=g(4320)},4320:(Qe,te,g)=>{var e=g(5066).Reporter,t=g(5066).EncoderBuffer,x=g(5066).DecoderBuffer,D=g(9210),l=["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"],w=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(l);function R(S,y){var O={};this._baseState=O,O.enc=S,O.parent=y||null,O.children=null,O.tag=null,O.args=null,O.reverseArgs=null,O.choice=null,O.optional=!1,O.any=!1,O.obj=!1,O.use=null,O.useDecoder=null,O.key=null,O.default=null,O.explicit=null,O.implicit=null,O.contains=null,O.parent||(O.children=[],this._wrap())}Qe.exports=R;var h=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];R.prototype.clone=function(){var y=this._baseState,O={};h.forEach(function(V){O[V]=y[V]});var I=new this.constructor(O.parent);return I._baseState=O,I},R.prototype._wrap=function(){var y=this._baseState;w.forEach(function(O){this[O]=function(){var V=new this.constructor(this);return y.children.push(V),V[O].apply(V,arguments)}},this)},R.prototype._init=function(y){var O=this._baseState;D(null===O.parent),y.call(this),O.children=O.children.filter(function(I){return I._baseState.parent===this},this),D.equal(O.children.length,1,"Root node can have only one child")},R.prototype._useArgs=function(y){var O=this._baseState,I=y.filter(function(V){return V instanceof this.constructor},this);y=y.filter(function(V){return!(V instanceof this.constructor)},this),0!==I.length&&(D(null===O.children),O.children=I,I.forEach(function(V){V._baseState.parent=this},this)),0!==y.length&&(D(null===O.args),O.args=y,O.reverseArgs=y.map(function(V){if("object"!=typeof V||V.constructor!==Object)return V;var j={};return Object.keys(V).forEach(function(Y){Y==(0|Y)&&(Y|=0),j[V[Y]]=Y}),j}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(S){R.prototype[S]=function(){throw new Error(S+" not implemented for encoding: "+this._baseState.enc)}}),l.forEach(function(S){R.prototype[S]=function(){var O=this._baseState,I=Array.prototype.slice.call(arguments);return D(null===O.tag),O.tag=S,this._useArgs(I),this}}),R.prototype.use=function(y){D(y);var O=this._baseState;return D(null===O.use),O.use=y,this},R.prototype.optional=function(){return this._baseState.optional=!0,this},R.prototype.def=function(y){var O=this._baseState;return D(null===O.default),O.default=y,O.optional=!0,this},R.prototype.explicit=function(y){var O=this._baseState;return D(null===O.explicit&&null===O.implicit),O.explicit=y,this},R.prototype.implicit=function(y){var O=this._baseState;return D(null===O.explicit&&null===O.implicit),O.implicit=y,this},R.prototype.obj=function(){var y=this._baseState,O=Array.prototype.slice.call(arguments);return y.obj=!0,0!==O.length&&this._useArgs(O),this},R.prototype.key=function(y){var O=this._baseState;return D(null===O.key),O.key=y,this},R.prototype.any=function(){return this._baseState.any=!0,this},R.prototype.choice=function(y){var O=this._baseState;return D(null===O.choice),O.choice=y,this._useArgs(Object.keys(y).map(function(I){return y[I]})),this},R.prototype.contains=function(y){var O=this._baseState;return D(null===O.use),O.contains=y,this},R.prototype._decode=function(y,O){var I=this._baseState;if(null===I.parent)return y.wrapResult(I.children[0]._decode(y,O));var J,V=I.default,j=!0,Y=null;if(null!==I.key&&(Y=y.enterKey(I.key)),I.optional){var W=null;if(null!==I.explicit?W=I.explicit:null!==I.implicit?W=I.implicit:null!==I.tag&&(W=I.tag),null!==W||I.any){if(j=this._peekTag(y,W,I.any),y.isError(j))return j}else{var Q=y.save();try{null===I.choice?this._decodeGeneric(I.tag,y,O):this._decodeChoice(y,O),j=!0}catch{j=!1}y.restore(Q)}}if(I.obj&&j&&(J=y.enterObject()),j){if(null!==I.explicit){var ie=this._decodeTag(y,I.explicit);if(y.isError(ie))return ie;y=ie}var ee=y.offset;if(null===I.use&&null===I.choice){I.any&&(Q=y.save());var fe=this._decodeTag(y,null!==I.implicit?I.implicit:I.tag,I.any);if(y.isError(fe))return fe;I.any?V=y.raw(Q):y=fe}if(O&&O.track&&null!==I.tag&&O.track(y.path(),ee,y.length,"tagged"),O&&O.track&&null!==I.tag&&O.track(y.path(),y.offset,y.length,"content"),I.any||(V=null===I.choice?this._decodeGeneric(I.tag,y,O):this._decodeChoice(y,O)),y.isError(V))return V;if(!I.any&&null===I.choice&&null!==I.children&&I.children.forEach(function(Ce){Ce._decode(y,O)}),I.contains&&("octstr"===I.tag||"bitstr"===I.tag)){var ne=new x(V);V=this._getUse(I.contains,y._reporterState.obj)._decode(ne,O)}}return I.obj&&j&&(V=y.leaveObject(J)),null===I.key||null===V&&!0!==j?null!==Y&&y.exitKey(Y):y.leaveKey(Y,I.key,V),V},R.prototype._decodeGeneric=function(y,O,I){var V=this._baseState;return"seq"===y||"set"===y?null:"seqof"===y||"setof"===y?this._decodeList(O,y,V.args[0],I):/str$/.test(y)?this._decodeStr(O,y,I):"objid"===y&&V.args?this._decodeObjid(O,V.args[0],V.args[1],I):"objid"===y?this._decodeObjid(O,null,null,I):"gentime"===y||"utctime"===y?this._decodeTime(O,y,I):"null_"===y?this._decodeNull(O,I):"bool"===y?this._decodeBool(O,I):"objDesc"===y?this._decodeStr(O,y,I):"int"===y||"enum"===y?this._decodeInt(O,V.args&&V.args[0],I):null!==V.use?this._getUse(V.use,O._reporterState.obj)._decode(O,I):O.error("unknown tag: "+y)},R.prototype._getUse=function(y,O){var I=this._baseState;return I.useDecoder=this._use(y,O),D(null===I.useDecoder._baseState.parent),I.useDecoder=I.useDecoder._baseState.children[0],I.implicit!==I.useDecoder._baseState.implicit&&(I.useDecoder=I.useDecoder.clone(),I.useDecoder._baseState.implicit=I.implicit),I.useDecoder},R.prototype._decodeChoice=function(y,O){var I=this._baseState,V=null,j=!1;return Object.keys(I.choice).some(function(Y){var W=y.save(),Q=I.choice[Y];try{var J=Q._decode(y,O);if(y.isError(J))return!1;V={type:Y,value:J},j=!0}catch{return y.restore(W),!1}return!0},this),j?V:y.error("Choice not matched")},R.prototype._createEncoderBuffer=function(y){return new t(y,this.reporter)},R.prototype._encode=function(y,O,I){var V=this._baseState;if(null===V.default||V.default!==y){var j=this._encodeValue(y,O,I);if(void 0!==j&&!this._skipDefault(j,O,I))return j}},R.prototype._encodeValue=function(y,O,I){var V=this._baseState;if(null===V.parent)return V.children[0]._encode(y,O||new e);var Q=null;if(this.reporter=O,V.optional&&void 0===y){if(null===V.default)return;y=V.default}var j=null,Y=!1;if(V.any)Q=this._createEncoderBuffer(y);else if(V.choice)Q=this._encodeChoice(y,O);else if(V.contains)j=this._getUse(V.contains,I)._encode(y,O),Y=!0;else if(V.children)j=V.children.map(function(ee){if("null_"===ee._baseState.tag)return ee._encode(null,O,y);if(null===ee._baseState.key)return O.error("Child should have a key");var fe=O.enterKey(ee._baseState.key);if("object"!=typeof y)return O.error("Child expected, but input is not object");var ne=ee._encode(y[ee._baseState.key],O,y);return O.leaveKey(fe),ne},this).filter(function(ee){return ee}),j=this._createEncoderBuffer(j);else if("seqof"===V.tag||"setof"===V.tag){if(!V.args||1!==V.args.length)return O.error("Too many args for : "+V.tag);if(!Array.isArray(y))return O.error("seqof/setof, but data is not Array");var W=this.clone();W._baseState.implicit=null,j=this._createEncoderBuffer(y.map(function(ee){return this._getUse(this._baseState.args[0],y)._encode(ee,O)},W))}else null!==V.use?Q=this._getUse(V.use,I)._encode(y,O):(j=this._encodePrimitive(V.tag,y),Y=!0);if(!V.any&&null===V.choice){var J=null!==V.implicit?V.implicit:V.tag,ie=null===V.implicit?"universal":"context";null===J?null===V.use&&O.error("Tag could be omitted only for .use()"):null===V.use&&(Q=this._encodeComposite(J,Y,ie,j))}return null!==V.explicit&&(Q=this._encodeComposite(V.explicit,!1,"context",Q)),Q},R.prototype._encodeChoice=function(y,O){var I=this._baseState,V=I.choice[y.type];return V||D(!1,y.type+" not found in "+JSON.stringify(Object.keys(I.choice))),V._encode(y.value,O)},R.prototype._encodePrimitive=function(y,O){var I=this._baseState;if(/str$/.test(y))return this._encodeStr(O,y);if("objid"===y&&I.args)return this._encodeObjid(O,I.reverseArgs[0],I.args[1]);if("objid"===y)return this._encodeObjid(O,null,null);if("gentime"===y||"utctime"===y)return this._encodeTime(O,y);if("null_"===y)return this._encodeNull();if("int"===y||"enum"===y)return this._encodeInt(O,I.args&&I.reverseArgs[0]);if("bool"===y)return this._encodeBool(O);if("objDesc"===y)return this._encodeStr(O,y);throw new Error("Unsupported tag: "+y)},R.prototype._isNumstr=function(y){return/^[0-9 ]*$/.test(y)},R.prototype._isPrintstr=function(y){return/^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(y)}},5697:(Qe,te,g)=>{var e=g(1993);function t(D){this._reporterState={obj:null,path:[],options:D||{},errors:[]}}function x(D,l){this.path=D,this.rethrow(l)}te.a=t,t.prototype.isError=function(l){return l instanceof x},t.prototype.save=function(){var l=this._reporterState;return{obj:l.obj,pathLen:l.path.length}},t.prototype.restore=function(l){var w=this._reporterState;w.obj=l.obj,w.path=w.path.slice(0,l.pathLen)},t.prototype.enterKey=function(l){return this._reporterState.path.push(l)},t.prototype.exitKey=function(l){var w=this._reporterState;w.path=w.path.slice(0,l-1)},t.prototype.leaveKey=function(l,w,f){var R=this._reporterState;this.exitKey(l),null!==R.obj&&(R.obj[w]=f)},t.prototype.path=function(){return this._reporterState.path.join("/")},t.prototype.enterObject=function(){var l=this._reporterState,w=l.obj;return l.obj={},w},t.prototype.leaveObject=function(l){var w=this._reporterState,f=w.obj;return w.obj=l,f},t.prototype.error=function(l){var w,f=this._reporterState,R=l instanceof x;if(w=R?l:new x(f.path.map(function(h){return"["+JSON.stringify(h)+"]"}).join(""),l.message||l,l.stack),!f.options.partial)throw w;return R||f.errors.push(w),w},t.prototype.wrapResult=function(l){var w=this._reporterState;return w.options.partial?{result:this.isError(l)?null:l,errors:w.errors}:l},e(x,Error),x.prototype.rethrow=function(l){if(this.message=l+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,x),!this.stack)try{throw new Error(this.message)}catch(w){this.stack=w.stack}return this}},6283:(Qe,te,g)=>{var e=g(7740);te.tagClass={0:"universal",1:"application",2:"context",3:"private"},te.tagClassByName=e._reverse(te.tagClass),te.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"},te.tagByName=e._reverse(te.tag)},7740:(Qe,te,g)=>{var e=te;e._reverse=function(x){var D={};return Object.keys(x).forEach(function(l){(0|l)==l&&(l|=0),D[x[l]]=l}),D},e.der=g(6283)},5941:(Qe,te,g)=>{var e=g(1993),t=g(1990),x=t.base,D=t.bignum,l=t.constants.der;function w(S){this.enc="der",this.name=S.name,this.entity=S,this.tree=new f,this.tree._init(S.body)}function f(S){x.Node.call(this,"der",S)}function R(S,y){var O=S.readUInt8(y);if(S.isError(O))return O;var I=l.tagClass[O>>6],V=!(32&O);if(31&~O)O&=31;else{var j=O;for(O=0;!(128&~j);){if(j=S.readUInt8(y),S.isError(j))return j;O<<=7,O|=127&j}}return{cls:I,primitive:V,tag:O,tagStr:l.tag[O]}}function h(S,y,O){var I=S.readUInt8(O);if(S.isError(I))return I;if(!y&&128===I)return null;if(!(128&I))return I;var V=127&I;if(V>4)return S.error("length octect is too long");I=0;for(var j=0;j{var e=te;e.der=g(5941),e.pem=g(9316)},9316:(Qe,te,g)=>{var e=g(1993),t=g(3838).Buffer,x=g(5941);function D(l){x.call(this,l),this.enc="pem"}e(D,x),Qe.exports=D,D.prototype.decode=function(w,f){for(var R=w.toString().split(/[\r\n]+/g),h=f.label.toUpperCase(),S=/^-----(BEGIN|END) ([^-]+)-----$/,y=-1,O=-1,I=0;I{var e=g(1993),t=g(3838).Buffer,x=g(1990),D=x.base,l=x.constants.der;function w(S){this.enc="der",this.name=S.name,this.entity=S,this.tree=new f,this.tree._init(S.body)}function f(S){D.Node.call(this,"der",S)}function R(S){return S<10?"0"+S:S}Qe.exports=w,w.prototype.encode=function(y,O){return this.tree._encode(y,O).join()},e(f,D.Node),f.prototype._encodeComposite=function(y,O,I,V){var Q,j=function h(S,y,O,I){var V;if("seqof"===S?S="seq":"setof"===S&&(S="set"),l.tagByName.hasOwnProperty(S))V=l.tagByName[S];else{if("number"!=typeof S||(0|S)!==S)return I.error("Unknown tag: "+S);V=S}return V>=31?I.error("Multi-octet tag encoding unsupported"):(y||(V|=32),V|=l.tagClassByName[O||"universal"]<<6)}(y,O,I,this.reporter);if(V.length<128)return(Q=new t(2))[0]=j,Q[1]=V.length,this._createEncoderBuffer([Q,V]);for(var Y=1,W=V.length;W>=256;W>>=8)Y++;(Q=new t(2+Y))[0]=j,Q[1]=128|Y,W=1+Y;for(var J=V.length;J>0;W--,J>>=8)Q[W]=255&J;return this._createEncoderBuffer([Q,V])},f.prototype._encodeStr=function(y,O){if("bitstr"===O)return this._createEncoderBuffer([0|y.unused,y.data]);if("bmpstr"===O){for(var I=new t(2*y.length),V=0;V=40)return this.reporter.error("Second objid identifier OOB");y.splice(0,2,40*y[0]+y[1])}var j=0;for(V=0;V=128;Y>>=7)j++}var W=new t(j),Q=W.length-1;for(V=y.length-1;V>=0;V--)for(W[Q--]=127&(Y=y[V]);(Y>>=7)>0;)W[Q--]=128|127&Y;return this._createEncoderBuffer(W)},f.prototype._encodeTime=function(y,O){var I,V=new Date(y);return"gentime"===O?I=[R(V.getFullYear()),R(V.getUTCMonth()+1),R(V.getUTCDate()),R(V.getUTCHours()),R(V.getUTCMinutes()),R(V.getUTCSeconds()),"Z"].join(""):"utctime"===O?I=[R(V.getFullYear()%100),R(V.getUTCMonth()+1),R(V.getUTCDate()),R(V.getUTCHours()),R(V.getUTCMinutes()),R(V.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+O+" time is not supported yet"),this._encodeStr(I,"octstr")},f.prototype._encodeNull=function(){return this._createEncoderBuffer("")},f.prototype._encodeInt=function(y,O){if("string"==typeof y){if(!O)return this.reporter.error("String int or enum given, but no values map");if(!O.hasOwnProperty(y))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(y));y=O[y]}if("number"!=typeof y&&!t.isBuffer(y)){var I=y.toArray();!y.sign&&128&I[0]&&I.unshift(0),y=new t(I)}if(t.isBuffer(y)){var V=y.length;0===y.length&&V++;var Y=new t(V);return y.copy(Y),0===y.length&&(Y[0]=0),this._createEncoderBuffer(Y)}if(y<128)return this._createEncoderBuffer(y);if(y<256)return this._createEncoderBuffer([0,y]);V=1;for(var j=y;j>=256;j>>=8)V++;for(j=(Y=new Array(V)).length-1;j>=0;j--)Y[j]=255&y,y>>=8;return 128&Y[0]&&Y.unshift(0),this._createEncoderBuffer(new t(Y))},f.prototype._encodeBool=function(y){return this._createEncoderBuffer(y?255:0)},f.prototype._use=function(y,O){return"function"==typeof y&&(y=y(O)),y._getEncoder("der").tree},f.prototype._skipDefault=function(y,O,I){var j,V=this._baseState;if(null===V.default)return!1;var Y=y.join();if(void 0===V.defaultBuffer&&(V.defaultBuffer=this._encodeValue(V.default,O,I).join()),Y.length!==V.defaultBuffer.length)return!1;for(j=0;j{var e=te;e.der=g(2193),e.pem=g(4816)},4816:(Qe,te,g)=>{var e=g(1993),t=g(2193);function x(D){t.call(this,D),this.enc="pem"}e(x,t),Qe.exports=x,x.prototype.encode=function(l,w){for(var R=t.prototype.encode.call(this,l).toString("base64"),h=["-----BEGIN "+w.label+"-----"],S=0;S=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function R(T,n,c){var m=f(T,c);return c-1>=n&&(m|=f(T,c-1)<<4),m}function h(T,n,c,m){for(var d=0,C=Math.min(T.length,c),A=n;A=49?k-49+10:k>=17?k-17+10:k}return d}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),x(c===(0|c)&&c>=2&&c<=36);var d=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(d++,this.negative=1),d=0;d-=3)this.words[C]|=(A=n[d]|n[d-1]<<8|n[d-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);else if("le"===m)for(d=0,C=0;d>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var d=0;d=c;d-=2)k=R(n,c,d)<=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;else for(d=(n.length-c)%2==0?c+1:c;d=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var d=0,C=1;C<=67108863;C*=c)d++;d--,C=C/c|0;for(var A=n.length-m,k=A%d,_=Math.min(A,A-k)+m,a=0,b=m;b<_;b+=d)a=h(n,b,b+d,c),this.imuln(C),this.words[0]+a<67108864?this.words[0]+=a:this._iaddn(a);if(0!==k){var z=1;for(a=h(n,b,n.length,c),b=0;b1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var S=["","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"],y=[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],O=[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 V(T,n,c){c.negative=n.negative^T.negative;var m=T.length+n.length|0;c.length=m,m=m-1|0;var d=0|T.words[0],C=0|n.words[0],A=d*C,_=A/67108864|0;c.words[0]=67108863&A;for(var a=1;a>>26,z=67108863&_,N=Math.min(a,n.length-1),q=Math.max(0,a-T.length+1);q<=N;q++)b+=(A=(d=0|T.words[a-q|0])*(C=0|n.words[q])+z)/67108864|0,z=67108863&A;c.words[a]=0|z,_=0|b}return 0!==_?c.words[a]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var d=0,C=0,A=0;A>>24-d&16777215)||A!==this.length-1?S[6-_.length]+_+m:_+m,(d+=2)>=26&&(d-=26,A--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var a=y[n],b=O[n];m="";var z=this.clone();for(z.negative=0;!z.isZero();){var N=z.modn(b).toString(n);m=(z=z.idivn(b)).isZero()?N+m:S[a-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}x(!1,"Base should be between 2 and 36")},l.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&&x(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return x(typeof w<"u"),this.toArrayLike(w,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var d=this.byteLength(),C=m||Math.max(1,d);x(d<=C,"byte array longer than desired length"),x(C>0,"Requested array length <= 0"),this.strip();var _,a,A="le"===c,k=new n(C),b=this.clone();if(A){for(a=0;!b.isZero();a++)_=b.andln(255),b.iushrn(8),k[a]=_;for(;a=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var d=0;dn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){x("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var d=0;d0&&(this.words[d]=~this.words[d]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){x("number"==typeof n&&n>=0);var m=n/26|0,d=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,d=n):(m=n,d=this);for(var C=0,A=0;A>>26;for(;0!==C&&A>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var d,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(d=this,C=n):(d=n,C=this);for(var A=0,k=0;k>26,this.words[k]=67108863&c;for(;0!==A&&k>26,this.words[k]=67108863&c;if(0===A&&k>>13,pe=0|d[1],ze=8191&pe,Xe=pe>>>13,We=0|d[2],oe=8191&We,X=We>>>13,se=0|d[3],ae=8191&se,he=se>>>13,Ie=0|d[4],st=8191&Ie,me=Ie>>>13,Ee=0|d[5],ue=8191&Ee,Be=Ee>>>13,Ct=0|d[6],ct=8191&Ct,dt=Ct>>>13,Yt=0|d[7],ve=8191&Yt,_e=Yt>>>13,we=0|d[8],Ue=8191&we,je=we>>>13,vt=0|d[9],$e=8191&vt,nt=vt>>>13,qt=0|C[0],Nt=8191&qt,yt=qt>>>13,jt=0|C[1],Je=8191&jt,et=jt>>>13,Ae=0|C[2],It=8191&Ae,Qt=Ae>>>13,Tt=0|C[3],xt=8191&Tt,Se=Tt>>>13,Te=0|C[4],ce=8191&Te,Z=Te>>>13,Re=0|C[5],Pe=8191&Re,pt=Re>>>13,Ke=0|C[6],Fe=8191&Ke,Ge=Ke>>>13,qe=0|C[7],at=8191&qe,Lt=qe>>>13,pi=0|C[8],$t=8191&pi,Kt=pi>>>13,Ui=0|C[9],ti=8191&Ui,fi=Ui>>>13;m.negative=n.negative^c.negative,m.length=19;var xn=(k+(_=Math.imul(N,Nt))|0)+((8191&(a=(a=Math.imul(N,yt))+Math.imul(q,Nt)|0))<<13)|0;k=((b=Math.imul(q,yt))+(a>>>13)|0)+(xn>>>26)|0,xn&=67108863,_=Math.imul(ze,Nt),a=(a=Math.imul(ze,yt))+Math.imul(Xe,Nt)|0,b=Math.imul(Xe,yt);var tn=(k+(_=_+Math.imul(N,Je)|0)|0)+((8191&(a=(a=a+Math.imul(N,et)|0)+Math.imul(q,Je)|0))<<13)|0;k=((b=b+Math.imul(q,et)|0)+(a>>>13)|0)+(tn>>>26)|0,tn&=67108863,_=Math.imul(oe,Nt),a=(a=Math.imul(oe,yt))+Math.imul(X,Nt)|0,b=Math.imul(X,yt),_=_+Math.imul(ze,Je)|0,a=(a=a+Math.imul(ze,et)|0)+Math.imul(Xe,Je)|0,b=b+Math.imul(Xe,et)|0;var Vi=(k+(_=_+Math.imul(N,It)|0)|0)+((8191&(a=(a=a+Math.imul(N,Qt)|0)+Math.imul(q,It)|0))<<13)|0;k=((b=b+Math.imul(q,Qt)|0)+(a>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,_=Math.imul(ae,Nt),a=(a=Math.imul(ae,yt))+Math.imul(he,Nt)|0,b=Math.imul(he,yt),_=_+Math.imul(oe,Je)|0,a=(a=a+Math.imul(oe,et)|0)+Math.imul(X,Je)|0,b=b+Math.imul(X,et)|0,_=_+Math.imul(ze,It)|0,a=(a=a+Math.imul(ze,Qt)|0)+Math.imul(Xe,It)|0,b=b+Math.imul(Xe,Qt)|0;var Qi=(k+(_=_+Math.imul(N,xt)|0)|0)+((8191&(a=(a=a+Math.imul(N,Se)|0)+Math.imul(q,xt)|0))<<13)|0;k=((b=b+Math.imul(q,Se)|0)+(a>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(st,Nt),a=(a=Math.imul(st,yt))+Math.imul(me,Nt)|0,b=Math.imul(me,yt),_=_+Math.imul(ae,Je)|0,a=(a=a+Math.imul(ae,et)|0)+Math.imul(he,Je)|0,b=b+Math.imul(he,et)|0,_=_+Math.imul(oe,It)|0,a=(a=a+Math.imul(oe,Qt)|0)+Math.imul(X,It)|0,b=b+Math.imul(X,Qt)|0,_=_+Math.imul(ze,xt)|0,a=(a=a+Math.imul(ze,Se)|0)+Math.imul(Xe,xt)|0,b=b+Math.imul(Xe,Se)|0;var Xt=(k+(_=_+Math.imul(N,ce)|0)|0)+((8191&(a=(a=a+Math.imul(N,Z)|0)+Math.imul(q,ce)|0))<<13)|0;k=((b=b+Math.imul(q,Z)|0)+(a>>>13)|0)+(Xt>>>26)|0,Xt&=67108863,_=Math.imul(ue,Nt),a=(a=Math.imul(ue,yt))+Math.imul(Be,Nt)|0,b=Math.imul(Be,yt),_=_+Math.imul(st,Je)|0,a=(a=a+Math.imul(st,et)|0)+Math.imul(me,Je)|0,b=b+Math.imul(me,et)|0,_=_+Math.imul(ae,It)|0,a=(a=a+Math.imul(ae,Qt)|0)+Math.imul(he,It)|0,b=b+Math.imul(he,Qt)|0,_=_+Math.imul(oe,xt)|0,a=(a=a+Math.imul(oe,Se)|0)+Math.imul(X,xt)|0,b=b+Math.imul(X,Se)|0,_=_+Math.imul(ze,ce)|0,a=(a=a+Math.imul(ze,Z)|0)+Math.imul(Xe,ce)|0,b=b+Math.imul(Xe,Z)|0;var St=(k+(_=_+Math.imul(N,Pe)|0)|0)+((8191&(a=(a=a+Math.imul(N,pt)|0)+Math.imul(q,Pe)|0))<<13)|0;k=((b=b+Math.imul(q,pt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,_=Math.imul(ct,Nt),a=(a=Math.imul(ct,yt))+Math.imul(dt,Nt)|0,b=Math.imul(dt,yt),_=_+Math.imul(ue,Je)|0,a=(a=a+Math.imul(ue,et)|0)+Math.imul(Be,Je)|0,b=b+Math.imul(Be,et)|0,_=_+Math.imul(st,It)|0,a=(a=a+Math.imul(st,Qt)|0)+Math.imul(me,It)|0,b=b+Math.imul(me,Qt)|0,_=_+Math.imul(ae,xt)|0,a=(a=a+Math.imul(ae,Se)|0)+Math.imul(he,xt)|0,b=b+Math.imul(he,Se)|0,_=_+Math.imul(oe,ce)|0,a=(a=a+Math.imul(oe,Z)|0)+Math.imul(X,ce)|0,b=b+Math.imul(X,Z)|0,_=_+Math.imul(ze,Pe)|0,a=(a=a+Math.imul(ze,pt)|0)+Math.imul(Xe,Pe)|0,b=b+Math.imul(Xe,pt)|0;var tt=(k+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(a=(a=a+Math.imul(N,Ge)|0)+Math.imul(q,Fe)|0))<<13)|0;k=((b=b+Math.imul(q,Ge)|0)+(a>>>13)|0)+(tt>>>26)|0,tt&=67108863,_=Math.imul(ve,Nt),a=(a=Math.imul(ve,yt))+Math.imul(_e,Nt)|0,b=Math.imul(_e,yt),_=_+Math.imul(ct,Je)|0,a=(a=a+Math.imul(ct,et)|0)+Math.imul(dt,Je)|0,b=b+Math.imul(dt,et)|0,_=_+Math.imul(ue,It)|0,a=(a=a+Math.imul(ue,Qt)|0)+Math.imul(Be,It)|0,b=b+Math.imul(Be,Qt)|0,_=_+Math.imul(st,xt)|0,a=(a=a+Math.imul(st,Se)|0)+Math.imul(me,xt)|0,b=b+Math.imul(me,Se)|0,_=_+Math.imul(ae,ce)|0,a=(a=a+Math.imul(ae,Z)|0)+Math.imul(he,ce)|0,b=b+Math.imul(he,Z)|0,_=_+Math.imul(oe,Pe)|0,a=(a=a+Math.imul(oe,pt)|0)+Math.imul(X,Pe)|0,b=b+Math.imul(X,pt)|0,_=_+Math.imul(ze,Fe)|0,a=(a=a+Math.imul(ze,Ge)|0)+Math.imul(Xe,Fe)|0,b=b+Math.imul(Xe,Ge)|0;var ot=(k+(_=_+Math.imul(N,at)|0)|0)+((8191&(a=(a=a+Math.imul(N,Lt)|0)+Math.imul(q,at)|0))<<13)|0;k=((b=b+Math.imul(q,Lt)|0)+(a>>>13)|0)+(ot>>>26)|0,ot&=67108863,_=Math.imul(Ue,Nt),a=(a=Math.imul(Ue,yt))+Math.imul(je,Nt)|0,b=Math.imul(je,yt),_=_+Math.imul(ve,Je)|0,a=(a=a+Math.imul(ve,et)|0)+Math.imul(_e,Je)|0,b=b+Math.imul(_e,et)|0,_=_+Math.imul(ct,It)|0,a=(a=a+Math.imul(ct,Qt)|0)+Math.imul(dt,It)|0,b=b+Math.imul(dt,Qt)|0,_=_+Math.imul(ue,xt)|0,a=(a=a+Math.imul(ue,Se)|0)+Math.imul(Be,xt)|0,b=b+Math.imul(Be,Se)|0,_=_+Math.imul(st,ce)|0,a=(a=a+Math.imul(st,Z)|0)+Math.imul(me,ce)|0,b=b+Math.imul(me,Z)|0,_=_+Math.imul(ae,Pe)|0,a=(a=a+Math.imul(ae,pt)|0)+Math.imul(he,Pe)|0,b=b+Math.imul(he,pt)|0,_=_+Math.imul(oe,Fe)|0,a=(a=a+Math.imul(oe,Ge)|0)+Math.imul(X,Fe)|0,b=b+Math.imul(X,Ge)|0,_=_+Math.imul(ze,at)|0,a=(a=a+Math.imul(ze,Lt)|0)+Math.imul(Xe,at)|0,b=b+Math.imul(Xe,Lt)|0;var Mt=(k+(_=_+Math.imul(N,$t)|0)|0)+((8191&(a=(a=a+Math.imul(N,Kt)|0)+Math.imul(q,$t)|0))<<13)|0;k=((b=b+Math.imul(q,Kt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul($e,Nt),a=(a=Math.imul($e,yt))+Math.imul(nt,Nt)|0,b=Math.imul(nt,yt),_=_+Math.imul(Ue,Je)|0,a=(a=a+Math.imul(Ue,et)|0)+Math.imul(je,Je)|0,b=b+Math.imul(je,et)|0,_=_+Math.imul(ve,It)|0,a=(a=a+Math.imul(ve,Qt)|0)+Math.imul(_e,It)|0,b=b+Math.imul(_e,Qt)|0,_=_+Math.imul(ct,xt)|0,a=(a=a+Math.imul(ct,Se)|0)+Math.imul(dt,xt)|0,b=b+Math.imul(dt,Se)|0,_=_+Math.imul(ue,ce)|0,a=(a=a+Math.imul(ue,Z)|0)+Math.imul(Be,ce)|0,b=b+Math.imul(Be,Z)|0,_=_+Math.imul(st,Pe)|0,a=(a=a+Math.imul(st,pt)|0)+Math.imul(me,Pe)|0,b=b+Math.imul(me,pt)|0,_=_+Math.imul(ae,Fe)|0,a=(a=a+Math.imul(ae,Ge)|0)+Math.imul(he,Fe)|0,b=b+Math.imul(he,Ge)|0,_=_+Math.imul(oe,at)|0,a=(a=a+Math.imul(oe,Lt)|0)+Math.imul(X,at)|0,b=b+Math.imul(X,Lt)|0,_=_+Math.imul(ze,$t)|0,a=(a=a+Math.imul(ze,Kt)|0)+Math.imul(Xe,$t)|0,b=b+Math.imul(Xe,Kt)|0;var Bt=(k+(_=_+Math.imul(N,ti)|0)|0)+((8191&(a=(a=a+Math.imul(N,fi)|0)+Math.imul(q,ti)|0))<<13)|0;k=((b=b+Math.imul(q,fi)|0)+(a>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,_=Math.imul($e,Je),a=(a=Math.imul($e,et))+Math.imul(nt,Je)|0,b=Math.imul(nt,et),_=_+Math.imul(Ue,It)|0,a=(a=a+Math.imul(Ue,Qt)|0)+Math.imul(je,It)|0,b=b+Math.imul(je,Qt)|0,_=_+Math.imul(ve,xt)|0,a=(a=a+Math.imul(ve,Se)|0)+Math.imul(_e,xt)|0,b=b+Math.imul(_e,Se)|0,_=_+Math.imul(ct,ce)|0,a=(a=a+Math.imul(ct,Z)|0)+Math.imul(dt,ce)|0,b=b+Math.imul(dt,Z)|0,_=_+Math.imul(ue,Pe)|0,a=(a=a+Math.imul(ue,pt)|0)+Math.imul(Be,Pe)|0,b=b+Math.imul(Be,pt)|0,_=_+Math.imul(st,Fe)|0,a=(a=a+Math.imul(st,Ge)|0)+Math.imul(me,Fe)|0,b=b+Math.imul(me,Ge)|0,_=_+Math.imul(ae,at)|0,a=(a=a+Math.imul(ae,Lt)|0)+Math.imul(he,at)|0,b=b+Math.imul(he,Lt)|0,_=_+Math.imul(oe,$t)|0,a=(a=a+Math.imul(oe,Kt)|0)+Math.imul(X,$t)|0,b=b+Math.imul(X,Kt)|0;var Ci=(k+(_=_+Math.imul(ze,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ze,fi)|0)+Math.imul(Xe,ti)|0))<<13)|0;k=((b=b+Math.imul(Xe,fi)|0)+(a>>>13)|0)+(Ci>>>26)|0,Ci&=67108863,_=Math.imul($e,It),a=(a=Math.imul($e,Qt))+Math.imul(nt,It)|0,b=Math.imul(nt,Qt),_=_+Math.imul(Ue,xt)|0,a=(a=a+Math.imul(Ue,Se)|0)+Math.imul(je,xt)|0,b=b+Math.imul(je,Se)|0,_=_+Math.imul(ve,ce)|0,a=(a=a+Math.imul(ve,Z)|0)+Math.imul(_e,ce)|0,b=b+Math.imul(_e,Z)|0,_=_+Math.imul(ct,Pe)|0,a=(a=a+Math.imul(ct,pt)|0)+Math.imul(dt,Pe)|0,b=b+Math.imul(dt,pt)|0,_=_+Math.imul(ue,Fe)|0,a=(a=a+Math.imul(ue,Ge)|0)+Math.imul(Be,Fe)|0,b=b+Math.imul(Be,Ge)|0,_=_+Math.imul(st,at)|0,a=(a=a+Math.imul(st,Lt)|0)+Math.imul(me,at)|0,b=b+Math.imul(me,Lt)|0,_=_+Math.imul(ae,$t)|0,a=(a=a+Math.imul(ae,Kt)|0)+Math.imul(he,$t)|0,b=b+Math.imul(he,Kt)|0;var Ti=(k+(_=_+Math.imul(oe,ti)|0)|0)+((8191&(a=(a=a+Math.imul(oe,fi)|0)+Math.imul(X,ti)|0))<<13)|0;k=((b=b+Math.imul(X,fi)|0)+(a>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,_=Math.imul($e,xt),a=(a=Math.imul($e,Se))+Math.imul(nt,xt)|0,b=Math.imul(nt,Se),_=_+Math.imul(Ue,ce)|0,a=(a=a+Math.imul(Ue,Z)|0)+Math.imul(je,ce)|0,b=b+Math.imul(je,Z)|0,_=_+Math.imul(ve,Pe)|0,a=(a=a+Math.imul(ve,pt)|0)+Math.imul(_e,Pe)|0,b=b+Math.imul(_e,pt)|0,_=_+Math.imul(ct,Fe)|0,a=(a=a+Math.imul(ct,Ge)|0)+Math.imul(dt,Fe)|0,b=b+Math.imul(dt,Ge)|0,_=_+Math.imul(ue,at)|0,a=(a=a+Math.imul(ue,Lt)|0)+Math.imul(Be,at)|0,b=b+Math.imul(Be,Lt)|0,_=_+Math.imul(st,$t)|0,a=(a=a+Math.imul(st,Kt)|0)+Math.imul(me,$t)|0,b=b+Math.imul(me,Kt)|0;var Hi=(k+(_=_+Math.imul(ae,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ae,fi)|0)+Math.imul(he,ti)|0))<<13)|0;k=((b=b+Math.imul(he,fi)|0)+(a>>>13)|0)+(Hi>>>26)|0,Hi&=67108863,_=Math.imul($e,ce),a=(a=Math.imul($e,Z))+Math.imul(nt,ce)|0,b=Math.imul(nt,Z),_=_+Math.imul(Ue,Pe)|0,a=(a=a+Math.imul(Ue,pt)|0)+Math.imul(je,Pe)|0,b=b+Math.imul(je,pt)|0,_=_+Math.imul(ve,Fe)|0,a=(a=a+Math.imul(ve,Ge)|0)+Math.imul(_e,Fe)|0,b=b+Math.imul(_e,Ge)|0,_=_+Math.imul(ct,at)|0,a=(a=a+Math.imul(ct,Lt)|0)+Math.imul(dt,at)|0,b=b+Math.imul(dt,Lt)|0,_=_+Math.imul(ue,$t)|0,a=(a=a+Math.imul(ue,Kt)|0)+Math.imul(Be,$t)|0,b=b+Math.imul(Be,Kt)|0;var Zi=(k+(_=_+Math.imul(st,ti)|0)|0)+((8191&(a=(a=a+Math.imul(st,fi)|0)+Math.imul(me,ti)|0))<<13)|0;k=((b=b+Math.imul(me,fi)|0)+(a>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul($e,Pe),a=(a=Math.imul($e,pt))+Math.imul(nt,Pe)|0,b=Math.imul(nt,pt),_=_+Math.imul(Ue,Fe)|0,a=(a=a+Math.imul(Ue,Ge)|0)+Math.imul(je,Fe)|0,b=b+Math.imul(je,Ge)|0,_=_+Math.imul(ve,at)|0,a=(a=a+Math.imul(ve,Lt)|0)+Math.imul(_e,at)|0,b=b+Math.imul(_e,Lt)|0,_=_+Math.imul(ct,$t)|0,a=(a=a+Math.imul(ct,Kt)|0)+Math.imul(dt,$t)|0,b=b+Math.imul(dt,Kt)|0;var ln=(k+(_=_+Math.imul(ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ue,fi)|0)+Math.imul(Be,ti)|0))<<13)|0;k=((b=b+Math.imul(Be,fi)|0)+(a>>>13)|0)+(ln>>>26)|0,ln&=67108863,_=Math.imul($e,Fe),a=(a=Math.imul($e,Ge))+Math.imul(nt,Fe)|0,b=Math.imul(nt,Ge),_=_+Math.imul(Ue,at)|0,a=(a=a+Math.imul(Ue,Lt)|0)+Math.imul(je,at)|0,b=b+Math.imul(je,Lt)|0,_=_+Math.imul(ve,$t)|0,a=(a=a+Math.imul(ve,Kt)|0)+Math.imul(_e,$t)|0,b=b+Math.imul(_e,Kt)|0;var mn=(k+(_=_+Math.imul(ct,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ct,fi)|0)+Math.imul(dt,ti)|0))<<13)|0;k=((b=b+Math.imul(dt,fi)|0)+(a>>>13)|0)+(mn>>>26)|0,mn&=67108863,_=Math.imul($e,at),a=(a=Math.imul($e,Lt))+Math.imul(nt,at)|0,b=Math.imul(nt,Lt),_=_+Math.imul(Ue,$t)|0,a=(a=a+Math.imul(Ue,Kt)|0)+Math.imul(je,$t)|0,b=b+Math.imul(je,Kt)|0;var Ut=(k+(_=_+Math.imul(ve,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ve,fi)|0)+Math.imul(_e,ti)|0))<<13)|0;k=((b=b+Math.imul(_e,fi)|0)+(a>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul($e,$t),a=(a=Math.imul($e,Kt))+Math.imul(nt,$t)|0,b=Math.imul(nt,Kt);var lt=(k+(_=_+Math.imul(Ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(Ue,fi)|0)+Math.imul(je,ti)|0))<<13)|0;k=((b=b+Math.imul(je,fi)|0)+(a>>>13)|0)+(lt>>>26)|0,lt&=67108863;var re=(k+(_=Math.imul($e,ti))|0)+((8191&(a=(a=Math.imul($e,fi))+Math.imul(nt,ti)|0))<<13)|0;return k=((b=Math.imul(nt,fi))+(a>>>13)|0)+(re>>>26)|0,re&=67108863,A[0]=xn,A[1]=tn,A[2]=Vi,A[3]=Qi,A[4]=Xt,A[5]=St,A[6]=tt,A[7]=ot,A[8]=Mt,A[9]=Bt,A[10]=Ci,A[11]=Ti,A[12]=Hi,A[13]=Zi,A[14]=ln,A[15]=mn,A[16]=Ut,A[17]=lt,A[18]=re,0!==k&&(A[19]=k,m.length++),m};function W(T,n,c){return(new Q).mulp(T,n,c)}function Q(T,n){this.x=T,this.y=n}Math.imul||(j=V),l.prototype.mulTo=function(n,c){var m,d=this.length+n.length;return m=10===this.length&&10===n.length?j(this,n,c):d<63?V(this,n,c):d<1024?function Y(T,n,c){c.negative=n.negative^T.negative,c.length=T.length+n.length;for(var m=0,d=0,C=0;C>>26)|0)>>>26,A&=67108863}c.words[C]=k,m=A,A=d}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):W(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,d=0;d>=1;return d},Q.prototype.permute=function(n,c,m,d,C,A){for(var k=0;k>>=1)C++;return 1<>>=13),C>>>=13;for(A=2*c;A>=26,c+=d/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function I(T){for(var n=new Array(T.bitLength()),c=0;c>>d}return n}(n);if(0===c.length)return new l(1);for(var m=this,d=0;d=0);var C,c=n%26,m=(n-c)/26,d=67108863>>>26-c<<26-c;if(0!==c){var A=0;for(C=0;C>>26-c}A&&(this.words[C]=A,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),d=c?(c-c%26)/26:0;var C=n%26,A=Math.min((n-C)/26,this.length),k=67108863^67108863>>>C<A)for(this.length-=A,a=0;a=0&&(0!==b||a>=d);a--){var z=0|this.words[a];this.words[a]=b<<26-C|z>>>C,b=z&k}return _&&0!==b&&(_.words[_.length++]=b),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return x(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){x("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return x(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(x("number"==typeof n),x(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&A}for(;C>26,this.words[C+m]=67108863&A;if(0===k)return this.strip();for(x(-1===k),k=0,C=0;C>26,this.words[C]=67108863&A;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,d=this.clone(),C=n,A=0|C.words[C.length-1];0!=(m=26-this._countBits(A))&&(C=C.ushln(m),d.iushln(m),A=0|C.words[C.length-1]);var a,_=d.length-C.length;if("mod"!==c){(a=new l(null)).length=_+1,a.words=new Array(a.length);for(var b=0;b=0;N--){var q=67108864*(0|d.words[C.length+N])+(0|d.words[C.length+N-1]);for(q=Math.min(q/A|0,67108863),d._ishlnsubmul(C,q,N);0!==d.negative;)q--,d.negative=0,d._ishlnsubmul(C,1,N),d.isZero()||(d.negative^=1);a&&(a.words[N]=q)}return a&&a.strip(),d.strip(),"div"!==c&&0!==m&&d.iushrn(m),{div:a||null,mod:d}},l.prototype.divmod=function(n,c,m){return x(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,c),"mod"!==c&&(d=A.div.neg()),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:d,mod:C}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),c),"mod"!==c&&(d=A.div.neg()),{div:d,mod:A.mod}):this.negative&n.negative?(A=this.neg().divmod(n.neg(),c),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:A.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var d,C,A},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,d=n.ushrn(1),C=n.andln(1),A=m.cmp(d);return A<0||1===C&&0===A?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){x(n<=67108863);for(var c=(1<<26)%n,m=0,d=this.length-1;d>=0;d--)m=(c*m+(0|this.words[d]))%n;return m},l.prototype.idivn=function(n){x(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var d=(0|this.words[m])+67108864*c;this.words[m]=d/n|0,c=d%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){x(0===n.negative),x(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=new l(0),k=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var a=m.clone(),b=c.clone();!c.isZero();){for(var z=0,N=1;!(c.words[0]&N)&&z<26;++z,N<<=1);if(z>0)for(c.iushrn(z);z-- >0;)(d.isOdd()||C.isOdd())&&(d.iadd(a),C.isub(b)),d.iushrn(1),C.iushrn(1);for(var q=0,pe=1;!(m.words[0]&pe)&&q<26;++q,pe<<=1);if(q>0)for(m.iushrn(q);q-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(a),k.isub(b)),A.iushrn(1),k.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(A),C.isub(k)):(m.isub(c),A.isub(d),k.isub(C))}return{a:A,b:k,gcd:m.iushln(_)}},l.prototype._invmp=function(n){x(0===n.negative),x(!n.isZero());var z,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var k=0,_=1;!(c.words[0]&_)&&k<26;++k,_<<=1);if(k>0)for(c.iushrn(k);k-- >0;)d.isOdd()&&d.iadd(A),d.iushrn(1);for(var a=0,b=1;!(m.words[0]&b)&&a<26;++a,b<<=1);if(a>0)for(m.iushrn(a);a-- >0;)C.isOdd()&&C.iadd(A),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(C)):(m.isub(c),C.isub(d))}return(z=0===c.cmpn(1)?d:C).cmpn(0)<0&&z.iadd(n),z},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var d=0;c.isEven()&&m.isEven();d++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var A=c;c=m,m=A}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(d)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){x("number"==typeof n);var c=n%26,m=(n-c)/26,d=1<>>26,this.words[A]=k&=67108863}return 0!==C&&(this.words[A]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),x(n<=67108863,"Number is too big");var d=0|this.words[0];m=d===n?0:dn.length)return 1;if(this.length=0;m--){var d=0|this.words[m],C=0|n.words[m];if(d!==C){dC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Ce(n)},l.prototype.toRed=function(n){return x(!this.red,"Already a number in reduction context"),x(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return x(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return x(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return x(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return x(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return x(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return x(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return x(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return x(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return x(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return x(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return x(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return x(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return x(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ie(T,n){this.name=T,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ee(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function fe(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ne(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Ce(T){if("string"==typeof T){var n=l._prime(T);this.m=n.p,this.prime=n}else x(T.gtn(1),"modulus must be greater than 1"),this.m=T,this.prime=null}function le(T){Ce.call(this,T),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ie.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var d=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ie.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ie.prototype.imulK=function(n){return n.imul(this.k)},D(ee,ie),ee.prototype.split=function(n,c){for(var m=4194303,d=Math.min(n.length,9),C=0;C>>22,A=k}n.words[C-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ee.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=d}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ee;else if("p224"===n)c=new fe;else if("p192"===n)c=new ne;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Ce.prototype._verify1=function(n){x(0===n.negative,"red works only with positives"),x(n.red,"red works only with red numbers")},Ce.prototype._verify2=function(n,c){x(!(n.negative|c.negative),"red works only with positives"),x(n.red&&n.red===c.red,"red works only with red numbers")},Ce.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Ce.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Ce.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Ce.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Ce.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Ce.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Ce.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Ce.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Ce.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Ce.prototype.isqr=function(n){return this.imul(n,n.clone())},Ce.prototype.sqr=function(n){return this.mul(n,n)},Ce.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(x(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var d=this.m.subn(1),C=0;!d.isZero()&&0===d.andln(1);)C++,d.iushrn(1);x(!d.isZero());var A=new l(1).toRed(this),k=A.redNeg(),_=this.m.subn(1).iushrn(1),a=this.m.bitLength();for(a=new l(2*a*a).toRed(this);0!==this.pow(a,_).cmp(k);)a.redIAdd(k);for(var b=this.pow(a,d),z=this.pow(n,d.addn(1).iushrn(1)),N=this.pow(n,d),q=C;0!==N.cmp(A);){for(var pe=N,ze=0;0!==pe.cmp(A);ze++)pe=pe.redSqr();x(ze=0;C--){for(var b=c.words[C],z=a-1;z>=0;z--){var N=b>>z&1;A!==d[0]&&(A=this.sqr(A)),0!==N||0!==k?(k<<=1,k|=N,(4==++_||0===C&&0===z)&&(A=this.mul(A,d[k]),_=0,k=0)):_=0}a=26}return A},Ce.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Ce.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new le(n)},D(le,Ce),le.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},le.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},le.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},3981:(Qe,te)=>{"use strict";te.byteLength=function f(I){var V=w(I),Y=V[1];return 3*(V[0]+Y)/4-Y},te.toByteArray=function h(I){var V,ee,j=w(I),Y=j[0],W=j[1],Q=new t(function R(I,V,j){return 3*(V+j)/4-j}(0,Y,W)),J=0,ie=W>0?Y-4:Y;for(ee=0;ee>16&255,Q[J++]=V>>8&255,Q[J++]=255&V;return 2===W&&(V=e[I.charCodeAt(ee)]<<2|e[I.charCodeAt(ee+1)]>>4,Q[J++]=255&V),1===W&&(V=e[I.charCodeAt(ee)]<<10|e[I.charCodeAt(ee+1)]<<4|e[I.charCodeAt(ee+2)]>>2,Q[J++]=V>>8&255,Q[J++]=255&V),Q},te.fromByteArray=function O(I){for(var V,j=I.length,Y=j%3,W=[],Q=16383,J=0,ie=j-Y;Jie?ie:J+Q));return 1===Y?W.push(g[(V=I[j-1])>>2]+g[V<<4&63]+"=="):2===Y&&W.push(g[(V=(I[j-2]<<8)+I[j-1])>>10]+g[V>>4&63]+g[V<<2&63]+"="),W.join("")};for(var g=[],e=[],t=typeof Uint8Array<"u"?Uint8Array:Array,x="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",D=0;D<64;++D)g[D]=x[D],e[x.charCodeAt(D)]=D;function w(I){var V=I.length;if(V%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var j=I.indexOf("=");return-1===j&&(j=V),[j,j===V?0:4-j%4]}function S(I){return g[I>>18&63]+g[I>>12&63]+g[I>>6&63]+g[63&I]}function y(I,V,j){for(var W=[],Q=V;Q=48&&C<=57?C-48:C>=65&&C<=70?C-55:C>=97&&C<=102?C-87:void x(!1,"Invalid character in "+m)}function R(m,d,C){var A=f(m,C);return C-1>=d&&(A|=f(m,C-1)<<4),A}function h(m,d,C,A){for(var k=0,_=0,a=Math.min(m.length,C),b=d;b=49?z-49+10:z>=17?z-17+10:z,x(z>=0&&_0?d:C},l.min=function(d,C){return d.cmp(C)<0?d:C},l.prototype._init=function(d,C,A){if("number"==typeof d)return this._initNumber(d,C,A);if("object"==typeof d)return this._initArray(d,C,A);"hex"===C&&(C=16),x(C===(0|C)&&C>=2&&C<=36);var k=0;"-"===(d=d.toString().replace(/\s+/g,""))[0]&&(k++,this.negative=1),k=0;k-=3)this.words[_]|=(a=d[k]|d[k-1]<<8|d[k-2]<<16)<>>26-b&67108863,(b+=24)>=26&&(b-=26,_++);else if("le"===A)for(k=0,_=0;k>>26-b&67108863,(b+=24)>=26&&(b-=26,_++);return this._strip()},l.prototype._parseHex=function(d,C,A){this.length=Math.ceil((d.length-C)/6),this.words=new Array(this.length);for(var k=0;k=C;k-=2)b=R(d,C,k)<<_,this.words[a]|=67108863&b,_>=18?(_-=18,this.words[a+=1]|=b>>>26):_+=8;else for(k=(d.length-C)%2==0?C+1:C;k=18?(_-=18,this.words[a+=1]|=b>>>26):_+=8;this._strip()},l.prototype._parseBase=function(d,C,A){this.words=[0],this.length=1;for(var k=0,_=1;_<=67108863;_*=C)k++;k--,_=_/C|0;for(var a=d.length-A,b=a%k,z=Math.min(a,a-b)+A,N=0,q=A;q1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},typeof Symbol<"u"&&"function"==typeof Symbol.for)try{l.prototype[Symbol.for("nodejs.util.inspect.custom")]=y}catch{l.prototype.inspect=y}else l.prototype.inspect=y;function y(){return(this.red?""}var O=["","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"],I=[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],V=[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 W(m,d,C){C.negative=d.negative^m.negative;var A=m.length+d.length|0;C.length=A,A=A-1|0;var k=0|m.words[0],_=0|d.words[0],a=k*_,z=a/67108864|0;C.words[0]=67108863&a;for(var N=1;N>>26,pe=67108863&z,ze=Math.min(N,d.length-1),Xe=Math.max(0,N-m.length+1);Xe<=ze;Xe++)q+=(a=(k=0|m.words[N-Xe|0])*(_=0|d.words[Xe])+pe)/67108864|0,pe=67108863&a;C.words[N]=0|pe,z=0|q}return 0!==z?C.words[N]=0|z:C.length--,C._strip()}l.prototype.toString=function(d,C){var A;if(C=0|C||1,16===(d=d||10)||"hex"===d){A="";for(var k=0,_=0,a=0;a>>24-k&16777215,(k+=2)>=26&&(k-=26,a--),A=0!==_||a!==this.length-1?O[6-z.length]+z+A:z+A}for(0!==_&&(A=_.toString(16)+A);A.length%C!=0;)A="0"+A;return 0!==this.negative&&(A="-"+A),A}if(d===(0|d)&&d>=2&&d<=36){var N=I[d],q=V[d];A="";var pe=this.clone();for(pe.negative=0;!pe.isZero();){var ze=pe.modrn(q).toString(d);A=(pe=pe.idivn(q)).isZero()?ze+A:O[N-ze.length]+ze+A}for(this.isZero()&&(A="0"+A);A.length%C!=0;)A="0"+A;return 0!==this.negative&&(A="-"+A),A}x(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var d=this.words[0];return 2===this.length?d+=67108864*this.words[1]:3===this.length&&1===this.words[2]?d+=4503599627370496+67108864*this.words[1]:this.length>2&&x(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-d:d},l.prototype.toJSON=function(){return this.toString(16,2)},w&&(l.prototype.toBuffer=function(d,C){return this.toArrayLike(w,d,C)}),l.prototype.toArray=function(d,C){return this.toArrayLike(Array,d,C)},l.prototype.toArrayLike=function(d,C,A){this._strip();var k=this.byteLength(),_=A||Math.max(1,k);x(k<=_,"byte array longer than desired length"),x(_>0,"Requested array length <= 0");var a=function(d,C){return d.allocUnsafe?d.allocUnsafe(C):new d(C)}(d,_);return this["_toArrayLike"+("le"===C?"LE":"BE")](a,k),a},l.prototype._toArrayLikeLE=function(d,C){for(var A=0,k=0,_=0,a=0;_>8&255),A>16&255),6===a?(A>24&255),k=0,a=0):(k=b>>>24,a+=2)}if(A=0&&(d[A--]=b>>8&255),A>=0&&(d[A--]=b>>16&255),6===a?(A>=0&&(d[A--]=b>>24&255),k=0,a=0):(k=b>>>24,a+=2)}if(A>=0)for(d[A--]=k;A>=0;)d[A--]=0},l.prototype._countBits=Math.clz32?function(d){return 32-Math.clz32(d)}:function(d){var C=d,A=0;return C>=4096&&(A+=13,C>>>=13),C>=64&&(A+=7,C>>>=7),C>=8&&(A+=4,C>>>=4),C>=2&&(A+=2,C>>>=2),A+C},l.prototype._zeroBits=function(d){if(0===d)return 26;var C=d,A=0;return 8191&C||(A+=13,C>>>=13),127&C||(A+=7,C>>>=7),15&C||(A+=4,C>>>=4),3&C||(A+=2,C>>>=2),1&C||A++,A},l.prototype.bitLength=function(){var C=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+C},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var d=0,C=0;Cd.length?this.clone().ior(d):d.clone().ior(this)},l.prototype.uor=function(d){return this.length>d.length?this.clone().iuor(d):d.clone().iuor(this)},l.prototype.iuand=function(d){var C;C=this.length>d.length?d:this;for(var A=0;Ad.length?this.clone().iand(d):d.clone().iand(this)},l.prototype.uand=function(d){return this.length>d.length?this.clone().iuand(d):d.clone().iuand(this)},l.prototype.iuxor=function(d){var C,A;this.length>d.length?(C=this,A=d):(C=d,A=this);for(var k=0;kd.length?this.clone().ixor(d):d.clone().ixor(this)},l.prototype.uxor=function(d){return this.length>d.length?this.clone().iuxor(d):d.clone().iuxor(this)},l.prototype.inotn=function(d){x("number"==typeof d&&d>=0);var C=0|Math.ceil(d/26),A=d%26;this._expand(C),A>0&&C--;for(var k=0;k0&&(this.words[k]=~this.words[k]&67108863>>26-A),this._strip()},l.prototype.notn=function(d){return this.clone().inotn(d)},l.prototype.setn=function(d,C){x("number"==typeof d&&d>=0);var A=d/26|0,k=d%26;return this._expand(A+1),this.words[A]=C?this.words[A]|1<d.length?(A=this,k=d):(A=d,k=this);for(var _=0,a=0;a>>26;for(;0!==_&&a>>26;if(this.length=A.length,0!==_)this.words[this.length]=_,this.length++;else if(A!==this)for(;ad.length?this.clone().iadd(d):d.clone().iadd(this)},l.prototype.isub=function(d){if(0!==d.negative){d.negative=0;var C=this.iadd(d);return d.negative=1,C._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(d),this.negative=1,this._normSign();var k,_,A=this.cmp(d);if(0===A)return this.negative=0,this.length=1,this.words[0]=0,this;A>0?(k=this,_=d):(k=d,_=this);for(var a=0,b=0;b<_.length;b++)a=(C=(0|k.words[b])-(0|_.words[b])+a)>>26,this.words[b]=67108863&C;for(;0!==a&&b>26,this.words[b]=67108863&C;if(0===a&&b>>13,We=0|k[1],oe=8191&We,X=We>>>13,se=0|k[2],ae=8191&se,he=se>>>13,Ie=0|k[3],st=8191&Ie,me=Ie>>>13,Ee=0|k[4],ue=8191&Ee,Be=Ee>>>13,Ct=0|k[5],ct=8191&Ct,dt=Ct>>>13,Yt=0|k[6],ve=8191&Yt,_e=Yt>>>13,we=0|k[7],Ue=8191&we,je=we>>>13,vt=0|k[8],$e=8191&vt,nt=vt>>>13,qt=0|k[9],Nt=8191&qt,yt=qt>>>13,jt=0|_[0],Je=8191&jt,et=jt>>>13,Ae=0|_[1],It=8191&Ae,Qt=Ae>>>13,Tt=0|_[2],xt=8191&Tt,Se=Tt>>>13,Te=0|_[3],ce=8191&Te,Z=Te>>>13,Re=0|_[4],Pe=8191&Re,pt=Re>>>13,Ke=0|_[5],Fe=8191&Ke,Ge=Ke>>>13,qe=0|_[6],at=8191&qe,Lt=qe>>>13,pi=0|_[7],$t=8191&pi,Kt=pi>>>13,Ui=0|_[8],ti=8191&Ui,fi=Ui>>>13,xn=0|_[9],tn=8191&xn,Vi=xn>>>13;A.negative=d.negative^C.negative,A.length=19;var Qi=(b+(z=Math.imul(ze,Je))|0)+((8191&(N=(N=Math.imul(ze,et))+Math.imul(Xe,Je)|0))<<13)|0;b=((q=Math.imul(Xe,et))+(N>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,z=Math.imul(oe,Je),N=(N=Math.imul(oe,et))+Math.imul(X,Je)|0,q=Math.imul(X,et);var Xt=(b+(z=z+Math.imul(ze,It)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Qt)|0)+Math.imul(Xe,It)|0))<<13)|0;b=((q=q+Math.imul(Xe,Qt)|0)+(N>>>13)|0)+(Xt>>>26)|0,Xt&=67108863,z=Math.imul(ae,Je),N=(N=Math.imul(ae,et))+Math.imul(he,Je)|0,q=Math.imul(he,et),z=z+Math.imul(oe,It)|0,N=(N=N+Math.imul(oe,Qt)|0)+Math.imul(X,It)|0,q=q+Math.imul(X,Qt)|0;var St=(b+(z=z+Math.imul(ze,xt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Se)|0)+Math.imul(Xe,xt)|0))<<13)|0;b=((q=q+Math.imul(Xe,Se)|0)+(N>>>13)|0)+(St>>>26)|0,St&=67108863,z=Math.imul(st,Je),N=(N=Math.imul(st,et))+Math.imul(me,Je)|0,q=Math.imul(me,et),z=z+Math.imul(ae,It)|0,N=(N=N+Math.imul(ae,Qt)|0)+Math.imul(he,It)|0,q=q+Math.imul(he,Qt)|0,z=z+Math.imul(oe,xt)|0,N=(N=N+Math.imul(oe,Se)|0)+Math.imul(X,xt)|0,q=q+Math.imul(X,Se)|0;var tt=(b+(z=z+Math.imul(ze,ce)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Z)|0)+Math.imul(Xe,ce)|0))<<13)|0;b=((q=q+Math.imul(Xe,Z)|0)+(N>>>13)|0)+(tt>>>26)|0,tt&=67108863,z=Math.imul(ue,Je),N=(N=Math.imul(ue,et))+Math.imul(Be,Je)|0,q=Math.imul(Be,et),z=z+Math.imul(st,It)|0,N=(N=N+Math.imul(st,Qt)|0)+Math.imul(me,It)|0,q=q+Math.imul(me,Qt)|0,z=z+Math.imul(ae,xt)|0,N=(N=N+Math.imul(ae,Se)|0)+Math.imul(he,xt)|0,q=q+Math.imul(he,Se)|0,z=z+Math.imul(oe,ce)|0,N=(N=N+Math.imul(oe,Z)|0)+Math.imul(X,ce)|0,q=q+Math.imul(X,Z)|0;var ot=(b+(z=z+Math.imul(ze,Pe)|0)|0)+((8191&(N=(N=N+Math.imul(ze,pt)|0)+Math.imul(Xe,Pe)|0))<<13)|0;b=((q=q+Math.imul(Xe,pt)|0)+(N>>>13)|0)+(ot>>>26)|0,ot&=67108863,z=Math.imul(ct,Je),N=(N=Math.imul(ct,et))+Math.imul(dt,Je)|0,q=Math.imul(dt,et),z=z+Math.imul(ue,It)|0,N=(N=N+Math.imul(ue,Qt)|0)+Math.imul(Be,It)|0,q=q+Math.imul(Be,Qt)|0,z=z+Math.imul(st,xt)|0,N=(N=N+Math.imul(st,Se)|0)+Math.imul(me,xt)|0,q=q+Math.imul(me,Se)|0,z=z+Math.imul(ae,ce)|0,N=(N=N+Math.imul(ae,Z)|0)+Math.imul(he,ce)|0,q=q+Math.imul(he,Z)|0,z=z+Math.imul(oe,Pe)|0,N=(N=N+Math.imul(oe,pt)|0)+Math.imul(X,Pe)|0,q=q+Math.imul(X,pt)|0;var Mt=(b+(z=z+Math.imul(ze,Fe)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Ge)|0)+Math.imul(Xe,Fe)|0))<<13)|0;b=((q=q+Math.imul(Xe,Ge)|0)+(N>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,z=Math.imul(ve,Je),N=(N=Math.imul(ve,et))+Math.imul(_e,Je)|0,q=Math.imul(_e,et),z=z+Math.imul(ct,It)|0,N=(N=N+Math.imul(ct,Qt)|0)+Math.imul(dt,It)|0,q=q+Math.imul(dt,Qt)|0,z=z+Math.imul(ue,xt)|0,N=(N=N+Math.imul(ue,Se)|0)+Math.imul(Be,xt)|0,q=q+Math.imul(Be,Se)|0,z=z+Math.imul(st,ce)|0,N=(N=N+Math.imul(st,Z)|0)+Math.imul(me,ce)|0,q=q+Math.imul(me,Z)|0,z=z+Math.imul(ae,Pe)|0,N=(N=N+Math.imul(ae,pt)|0)+Math.imul(he,Pe)|0,q=q+Math.imul(he,pt)|0,z=z+Math.imul(oe,Fe)|0,N=(N=N+Math.imul(oe,Ge)|0)+Math.imul(X,Fe)|0,q=q+Math.imul(X,Ge)|0;var Bt=(b+(z=z+Math.imul(ze,at)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Lt)|0)+Math.imul(Xe,at)|0))<<13)|0;b=((q=q+Math.imul(Xe,Lt)|0)+(N>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,z=Math.imul(Ue,Je),N=(N=Math.imul(Ue,et))+Math.imul(je,Je)|0,q=Math.imul(je,et),z=z+Math.imul(ve,It)|0,N=(N=N+Math.imul(ve,Qt)|0)+Math.imul(_e,It)|0,q=q+Math.imul(_e,Qt)|0,z=z+Math.imul(ct,xt)|0,N=(N=N+Math.imul(ct,Se)|0)+Math.imul(dt,xt)|0,q=q+Math.imul(dt,Se)|0,z=z+Math.imul(ue,ce)|0,N=(N=N+Math.imul(ue,Z)|0)+Math.imul(Be,ce)|0,q=q+Math.imul(Be,Z)|0,z=z+Math.imul(st,Pe)|0,N=(N=N+Math.imul(st,pt)|0)+Math.imul(me,Pe)|0,q=q+Math.imul(me,pt)|0,z=z+Math.imul(ae,Fe)|0,N=(N=N+Math.imul(ae,Ge)|0)+Math.imul(he,Fe)|0,q=q+Math.imul(he,Ge)|0,z=z+Math.imul(oe,at)|0,N=(N=N+Math.imul(oe,Lt)|0)+Math.imul(X,at)|0,q=q+Math.imul(X,Lt)|0;var Ci=(b+(z=z+Math.imul(ze,$t)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Kt)|0)+Math.imul(Xe,$t)|0))<<13)|0;b=((q=q+Math.imul(Xe,Kt)|0)+(N>>>13)|0)+(Ci>>>26)|0,Ci&=67108863,z=Math.imul($e,Je),N=(N=Math.imul($e,et))+Math.imul(nt,Je)|0,q=Math.imul(nt,et),z=z+Math.imul(Ue,It)|0,N=(N=N+Math.imul(Ue,Qt)|0)+Math.imul(je,It)|0,q=q+Math.imul(je,Qt)|0,z=z+Math.imul(ve,xt)|0,N=(N=N+Math.imul(ve,Se)|0)+Math.imul(_e,xt)|0,q=q+Math.imul(_e,Se)|0,z=z+Math.imul(ct,ce)|0,N=(N=N+Math.imul(ct,Z)|0)+Math.imul(dt,ce)|0,q=q+Math.imul(dt,Z)|0,z=z+Math.imul(ue,Pe)|0,N=(N=N+Math.imul(ue,pt)|0)+Math.imul(Be,Pe)|0,q=q+Math.imul(Be,pt)|0,z=z+Math.imul(st,Fe)|0,N=(N=N+Math.imul(st,Ge)|0)+Math.imul(me,Fe)|0,q=q+Math.imul(me,Ge)|0,z=z+Math.imul(ae,at)|0,N=(N=N+Math.imul(ae,Lt)|0)+Math.imul(he,at)|0,q=q+Math.imul(he,Lt)|0,z=z+Math.imul(oe,$t)|0,N=(N=N+Math.imul(oe,Kt)|0)+Math.imul(X,$t)|0,q=q+Math.imul(X,Kt)|0;var Ti=(b+(z=z+Math.imul(ze,ti)|0)|0)+((8191&(N=(N=N+Math.imul(ze,fi)|0)+Math.imul(Xe,ti)|0))<<13)|0;b=((q=q+Math.imul(Xe,fi)|0)+(N>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,z=Math.imul(Nt,Je),N=(N=Math.imul(Nt,et))+Math.imul(yt,Je)|0,q=Math.imul(yt,et),z=z+Math.imul($e,It)|0,N=(N=N+Math.imul($e,Qt)|0)+Math.imul(nt,It)|0,q=q+Math.imul(nt,Qt)|0,z=z+Math.imul(Ue,xt)|0,N=(N=N+Math.imul(Ue,Se)|0)+Math.imul(je,xt)|0,q=q+Math.imul(je,Se)|0,z=z+Math.imul(ve,ce)|0,N=(N=N+Math.imul(ve,Z)|0)+Math.imul(_e,ce)|0,q=q+Math.imul(_e,Z)|0,z=z+Math.imul(ct,Pe)|0,N=(N=N+Math.imul(ct,pt)|0)+Math.imul(dt,Pe)|0,q=q+Math.imul(dt,pt)|0,z=z+Math.imul(ue,Fe)|0,N=(N=N+Math.imul(ue,Ge)|0)+Math.imul(Be,Fe)|0,q=q+Math.imul(Be,Ge)|0,z=z+Math.imul(st,at)|0,N=(N=N+Math.imul(st,Lt)|0)+Math.imul(me,at)|0,q=q+Math.imul(me,Lt)|0,z=z+Math.imul(ae,$t)|0,N=(N=N+Math.imul(ae,Kt)|0)+Math.imul(he,$t)|0,q=q+Math.imul(he,Kt)|0,z=z+Math.imul(oe,ti)|0,N=(N=N+Math.imul(oe,fi)|0)+Math.imul(X,ti)|0,q=q+Math.imul(X,fi)|0;var Hi=(b+(z=z+Math.imul(ze,tn)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Vi)|0)+Math.imul(Xe,tn)|0))<<13)|0;b=((q=q+Math.imul(Xe,Vi)|0)+(N>>>13)|0)+(Hi>>>26)|0,Hi&=67108863,z=Math.imul(Nt,It),N=(N=Math.imul(Nt,Qt))+Math.imul(yt,It)|0,q=Math.imul(yt,Qt),z=z+Math.imul($e,xt)|0,N=(N=N+Math.imul($e,Se)|0)+Math.imul(nt,xt)|0,q=q+Math.imul(nt,Se)|0,z=z+Math.imul(Ue,ce)|0,N=(N=N+Math.imul(Ue,Z)|0)+Math.imul(je,ce)|0,q=q+Math.imul(je,Z)|0,z=z+Math.imul(ve,Pe)|0,N=(N=N+Math.imul(ve,pt)|0)+Math.imul(_e,Pe)|0,q=q+Math.imul(_e,pt)|0,z=z+Math.imul(ct,Fe)|0,N=(N=N+Math.imul(ct,Ge)|0)+Math.imul(dt,Fe)|0,q=q+Math.imul(dt,Ge)|0,z=z+Math.imul(ue,at)|0,N=(N=N+Math.imul(ue,Lt)|0)+Math.imul(Be,at)|0,q=q+Math.imul(Be,Lt)|0,z=z+Math.imul(st,$t)|0,N=(N=N+Math.imul(st,Kt)|0)+Math.imul(me,$t)|0,q=q+Math.imul(me,Kt)|0,z=z+Math.imul(ae,ti)|0,N=(N=N+Math.imul(ae,fi)|0)+Math.imul(he,ti)|0,q=q+Math.imul(he,fi)|0;var Zi=(b+(z=z+Math.imul(oe,tn)|0)|0)+((8191&(N=(N=N+Math.imul(oe,Vi)|0)+Math.imul(X,tn)|0))<<13)|0;b=((q=q+Math.imul(X,Vi)|0)+(N>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,z=Math.imul(Nt,xt),N=(N=Math.imul(Nt,Se))+Math.imul(yt,xt)|0,q=Math.imul(yt,Se),z=z+Math.imul($e,ce)|0,N=(N=N+Math.imul($e,Z)|0)+Math.imul(nt,ce)|0,q=q+Math.imul(nt,Z)|0,z=z+Math.imul(Ue,Pe)|0,N=(N=N+Math.imul(Ue,pt)|0)+Math.imul(je,Pe)|0,q=q+Math.imul(je,pt)|0,z=z+Math.imul(ve,Fe)|0,N=(N=N+Math.imul(ve,Ge)|0)+Math.imul(_e,Fe)|0,q=q+Math.imul(_e,Ge)|0,z=z+Math.imul(ct,at)|0,N=(N=N+Math.imul(ct,Lt)|0)+Math.imul(dt,at)|0,q=q+Math.imul(dt,Lt)|0,z=z+Math.imul(ue,$t)|0,N=(N=N+Math.imul(ue,Kt)|0)+Math.imul(Be,$t)|0,q=q+Math.imul(Be,Kt)|0,z=z+Math.imul(st,ti)|0,N=(N=N+Math.imul(st,fi)|0)+Math.imul(me,ti)|0,q=q+Math.imul(me,fi)|0;var ln=(b+(z=z+Math.imul(ae,tn)|0)|0)+((8191&(N=(N=N+Math.imul(ae,Vi)|0)+Math.imul(he,tn)|0))<<13)|0;b=((q=q+Math.imul(he,Vi)|0)+(N>>>13)|0)+(ln>>>26)|0,ln&=67108863,z=Math.imul(Nt,ce),N=(N=Math.imul(Nt,Z))+Math.imul(yt,ce)|0,q=Math.imul(yt,Z),z=z+Math.imul($e,Pe)|0,N=(N=N+Math.imul($e,pt)|0)+Math.imul(nt,Pe)|0,q=q+Math.imul(nt,pt)|0,z=z+Math.imul(Ue,Fe)|0,N=(N=N+Math.imul(Ue,Ge)|0)+Math.imul(je,Fe)|0,q=q+Math.imul(je,Ge)|0,z=z+Math.imul(ve,at)|0,N=(N=N+Math.imul(ve,Lt)|0)+Math.imul(_e,at)|0,q=q+Math.imul(_e,Lt)|0,z=z+Math.imul(ct,$t)|0,N=(N=N+Math.imul(ct,Kt)|0)+Math.imul(dt,$t)|0,q=q+Math.imul(dt,Kt)|0,z=z+Math.imul(ue,ti)|0,N=(N=N+Math.imul(ue,fi)|0)+Math.imul(Be,ti)|0,q=q+Math.imul(Be,fi)|0;var mn=(b+(z=z+Math.imul(st,tn)|0)|0)+((8191&(N=(N=N+Math.imul(st,Vi)|0)+Math.imul(me,tn)|0))<<13)|0;b=((q=q+Math.imul(me,Vi)|0)+(N>>>13)|0)+(mn>>>26)|0,mn&=67108863,z=Math.imul(Nt,Pe),N=(N=Math.imul(Nt,pt))+Math.imul(yt,Pe)|0,q=Math.imul(yt,pt),z=z+Math.imul($e,Fe)|0,N=(N=N+Math.imul($e,Ge)|0)+Math.imul(nt,Fe)|0,q=q+Math.imul(nt,Ge)|0,z=z+Math.imul(Ue,at)|0,N=(N=N+Math.imul(Ue,Lt)|0)+Math.imul(je,at)|0,q=q+Math.imul(je,Lt)|0,z=z+Math.imul(ve,$t)|0,N=(N=N+Math.imul(ve,Kt)|0)+Math.imul(_e,$t)|0,q=q+Math.imul(_e,Kt)|0,z=z+Math.imul(ct,ti)|0,N=(N=N+Math.imul(ct,fi)|0)+Math.imul(dt,ti)|0,q=q+Math.imul(dt,fi)|0;var Ut=(b+(z=z+Math.imul(ue,tn)|0)|0)+((8191&(N=(N=N+Math.imul(ue,Vi)|0)+Math.imul(Be,tn)|0))<<13)|0;b=((q=q+Math.imul(Be,Vi)|0)+(N>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,z=Math.imul(Nt,Fe),N=(N=Math.imul(Nt,Ge))+Math.imul(yt,Fe)|0,q=Math.imul(yt,Ge),z=z+Math.imul($e,at)|0,N=(N=N+Math.imul($e,Lt)|0)+Math.imul(nt,at)|0,q=q+Math.imul(nt,Lt)|0,z=z+Math.imul(Ue,$t)|0,N=(N=N+Math.imul(Ue,Kt)|0)+Math.imul(je,$t)|0,q=q+Math.imul(je,Kt)|0,z=z+Math.imul(ve,ti)|0,N=(N=N+Math.imul(ve,fi)|0)+Math.imul(_e,ti)|0,q=q+Math.imul(_e,fi)|0;var lt=(b+(z=z+Math.imul(ct,tn)|0)|0)+((8191&(N=(N=N+Math.imul(ct,Vi)|0)+Math.imul(dt,tn)|0))<<13)|0;b=((q=q+Math.imul(dt,Vi)|0)+(N>>>13)|0)+(lt>>>26)|0,lt&=67108863,z=Math.imul(Nt,at),N=(N=Math.imul(Nt,Lt))+Math.imul(yt,at)|0,q=Math.imul(yt,Lt),z=z+Math.imul($e,$t)|0,N=(N=N+Math.imul($e,Kt)|0)+Math.imul(nt,$t)|0,q=q+Math.imul(nt,Kt)|0,z=z+Math.imul(Ue,ti)|0,N=(N=N+Math.imul(Ue,fi)|0)+Math.imul(je,ti)|0,q=q+Math.imul(je,fi)|0;var re=(b+(z=z+Math.imul(ve,tn)|0)|0)+((8191&(N=(N=N+Math.imul(ve,Vi)|0)+Math.imul(_e,tn)|0))<<13)|0;b=((q=q+Math.imul(_e,Vi)|0)+(N>>>13)|0)+(re>>>26)|0,re&=67108863,z=Math.imul(Nt,$t),N=(N=Math.imul(Nt,Kt))+Math.imul(yt,$t)|0,q=Math.imul(yt,Kt),z=z+Math.imul($e,ti)|0,N=(N=N+Math.imul($e,fi)|0)+Math.imul(nt,ti)|0,q=q+Math.imul(nt,fi)|0;var He=(b+(z=z+Math.imul(Ue,tn)|0)|0)+((8191&(N=(N=N+Math.imul(Ue,Vi)|0)+Math.imul(je,tn)|0))<<13)|0;b=((q=q+Math.imul(je,Vi)|0)+(N>>>13)|0)+(He>>>26)|0,He&=67108863,z=Math.imul(Nt,ti),N=(N=Math.imul(Nt,fi))+Math.imul(yt,ti)|0,q=Math.imul(yt,fi);var ye=(b+(z=z+Math.imul($e,tn)|0)|0)+((8191&(N=(N=N+Math.imul($e,Vi)|0)+Math.imul(nt,tn)|0))<<13)|0;b=((q=q+Math.imul(nt,Vi)|0)+(N>>>13)|0)+(ye>>>26)|0,ye&=67108863;var rt=(b+(z=Math.imul(Nt,tn))|0)+((8191&(N=(N=Math.imul(Nt,Vi))+Math.imul(yt,tn)|0))<<13)|0;return b=((q=Math.imul(yt,Vi))+(N>>>13)|0)+(rt>>>26)|0,rt&=67108863,a[0]=Qi,a[1]=Xt,a[2]=St,a[3]=tt,a[4]=ot,a[5]=Mt,a[6]=Bt,a[7]=Ci,a[8]=Ti,a[9]=Hi,a[10]=Zi,a[11]=ln,a[12]=mn,a[13]=Ut,a[14]=lt,a[15]=re,a[16]=He,a[17]=ye,a[18]=rt,0!==b&&(a[19]=b,A.length++),A};function J(m,d,C){C.negative=d.negative^m.negative,C.length=m.length+d.length;for(var A=0,k=0,_=0;_>>26)|0)>>>26,a&=67108863}C.words[_]=b,A=a,a=k}return 0!==A?C.words[_]=A:C.length--,C._strip()}function ie(m,d,C){return J(m,d,C)}function ee(m,d){this.x=m,this.y=d}Math.imul||(Q=W),l.prototype.mulTo=function(d,C){var k=this.length+d.length;return 10===this.length&&10===d.length?Q(this,d,C):k<63?W(this,d,C):k<1024?J(this,d,C):ie(this,d,C)},ee.prototype.makeRBT=function(d){for(var C=new Array(d),A=l.prototype._countBits(d)-1,k=0;k>=1;return k},ee.prototype.permute=function(d,C,A,k,_,a){for(var b=0;b>>=1)_++;return 1<<_+1+k},ee.prototype.conjugate=function(d,C,A){if(!(A<=1))for(var k=0;k>>=13),_>>>=13;for(a=2*C;a>=26,A+=_/67108864|0,A+=a>>>26,this.words[k]=67108863&a}return 0!==A&&(this.words[k]=A,this.length++),C?this.ineg():this},l.prototype.muln=function(d){return this.clone().imuln(d)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(d){var C=function Y(m){for(var d=new Array(m.bitLength()),C=0;C>>C%26&1;return d}(d);if(0===C.length)return new l(1);for(var A=this,k=0;k=0);var _,C=d%26,A=(d-C)/26,k=67108863>>>26-C<<26-C;if(0!==C){var a=0;for(_=0;_>>26-C}a&&(this.words[_]=a,this.length++)}if(0!==A){for(_=this.length-1;_>=0;_--)this.words[_+A]=this.words[_];for(_=0;_=0),k=C?(C-C%26)/26:0;var _=d%26,a=Math.min((d-_)/26,this.length),b=67108863^67108863>>>_<<_,z=A;if(k-=a,k=Math.max(0,k),z){for(var N=0;Na)for(this.length-=a,N=0;N=0&&(0!==q||N>=k);N--){var pe=0|this.words[N];this.words[N]=q<<26-_|pe>>>_,q=pe&b}return z&&0!==q&&(z.words[z.length++]=q),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},l.prototype.ishrn=function(d,C,A){return x(0===this.negative),this.iushrn(d,C,A)},l.prototype.shln=function(d){return this.clone().ishln(d)},l.prototype.ushln=function(d){return this.clone().iushln(d)},l.prototype.shrn=function(d){return this.clone().ishrn(d)},l.prototype.ushrn=function(d){return this.clone().iushrn(d)},l.prototype.testn=function(d){x("number"==typeof d&&d>=0);var C=d%26,A=(d-C)/26;return!(this.length<=A||!(this.words[A]&1<=0);var C=d%26,A=(d-C)/26;return x(0===this.negative,"imaskn works only with positive numbers"),this.length<=A?this:(0!==C&&A++,this.length=Math.min(A,this.length),0!==C&&(this.words[this.length-1]&=67108863^67108863>>>C<=67108864;C++)this.words[C]-=67108864,C===this.length-1?this.words[C+1]=1:this.words[C+1]++;return this.length=Math.max(this.length,C+1),this},l.prototype.isubn=function(d){if(x("number"==typeof d),x(d<67108864),d<0)return this.iaddn(-d);if(0!==this.negative)return this.negative=0,this.iaddn(d),this.negative=1,this;if(this.words[0]-=d,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var C=0;C>26)-(z/67108864|0),this.words[_+A]=67108863&a}for(;_>26,this.words[_+A]=67108863&a;if(0===b)return this._strip();for(x(-1===b),b=0,_=0;_>26,this.words[_]=67108863&a;return this.negative=1,this._strip()},l.prototype._wordDiv=function(d,C){var A,k=this.clone(),_=d,a=0|_.words[_.length-1];0!=(A=26-this._countBits(a))&&(_=_.ushln(A),k.iushln(A),a=0|_.words[_.length-1]);var N,z=k.length-_.length;if("mod"!==C){(N=new l(null)).length=z+1,N.words=new Array(N.length);for(var q=0;q=0;ze--){var Xe=67108864*(0|k.words[_.length+ze])+(0|k.words[_.length+ze-1]);for(Xe=Math.min(Xe/a|0,67108863),k._ishlnsubmul(_,Xe,ze);0!==k.negative;)Xe--,k.negative=0,k._ishlnsubmul(_,1,ze),k.isZero()||(k.negative^=1);N&&(N.words[ze]=Xe)}return N&&N._strip(),k._strip(),"div"!==C&&0!==A&&k.iushrn(A),{div:N||null,mod:k}},l.prototype.divmod=function(d,C,A){return x(!d.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===d.negative?(a=this.neg().divmod(d,C),"mod"!==C&&(k=a.div.neg()),"div"!==C&&(_=a.mod.neg(),A&&0!==_.negative&&_.iadd(d)),{div:k,mod:_}):0===this.negative&&0!==d.negative?(a=this.divmod(d.neg(),C),"mod"!==C&&(k=a.div.neg()),{div:k,mod:a.mod}):this.negative&d.negative?(a=this.neg().divmod(d.neg(),C),"div"!==C&&(_=a.mod.neg(),A&&0!==_.negative&&_.isub(d)),{div:a.div,mod:_}):d.length>this.length||this.cmp(d)<0?{div:new l(0),mod:this}:1===d.length?"div"===C?{div:this.divn(d.words[0]),mod:null}:"mod"===C?{div:null,mod:new l(this.modrn(d.words[0]))}:{div:this.divn(d.words[0]),mod:new l(this.modrn(d.words[0]))}:this._wordDiv(d,C);var k,_,a},l.prototype.div=function(d){return this.divmod(d,"div",!1).div},l.prototype.mod=function(d){return this.divmod(d,"mod",!1).mod},l.prototype.umod=function(d){return this.divmod(d,"mod",!0).mod},l.prototype.divRound=function(d){var C=this.divmod(d);if(C.mod.isZero())return C.div;var A=0!==C.div.negative?C.mod.isub(d):C.mod,k=d.ushrn(1),_=d.andln(1),a=A.cmp(k);return a<0||1===_&&0===a?C.div:0!==C.div.negative?C.div.isubn(1):C.div.iaddn(1)},l.prototype.modrn=function(d){var C=d<0;C&&(d=-d),x(d<=67108863);for(var A=(1<<26)%d,k=0,_=this.length-1;_>=0;_--)k=(A*k+(0|this.words[_]))%d;return C?-k:k},l.prototype.modn=function(d){return this.modrn(d)},l.prototype.idivn=function(d){var C=d<0;C&&(d=-d),x(d<=67108863);for(var A=0,k=this.length-1;k>=0;k--){var _=(0|this.words[k])+67108864*A;this.words[k]=_/d|0,A=_%d}return this._strip(),C?this.ineg():this},l.prototype.divn=function(d){return this.clone().idivn(d)},l.prototype.egcd=function(d){x(0===d.negative),x(!d.isZero());var C=this,A=d.clone();C=0!==C.negative?C.umod(d):C.clone();for(var k=new l(1),_=new l(0),a=new l(0),b=new l(1),z=0;C.isEven()&&A.isEven();)C.iushrn(1),A.iushrn(1),++z;for(var N=A.clone(),q=C.clone();!C.isZero();){for(var pe=0,ze=1;!(C.words[0]&ze)&&pe<26;++pe,ze<<=1);if(pe>0)for(C.iushrn(pe);pe-- >0;)(k.isOdd()||_.isOdd())&&(k.iadd(N),_.isub(q)),k.iushrn(1),_.iushrn(1);for(var Xe=0,We=1;!(A.words[0]&We)&&Xe<26;++Xe,We<<=1);if(Xe>0)for(A.iushrn(Xe);Xe-- >0;)(a.isOdd()||b.isOdd())&&(a.iadd(N),b.isub(q)),a.iushrn(1),b.iushrn(1);C.cmp(A)>=0?(C.isub(A),k.isub(a),_.isub(b)):(A.isub(C),a.isub(k),b.isub(_))}return{a,b,gcd:A.iushln(z)}},l.prototype._invmp=function(d){x(0===d.negative),x(!d.isZero());var pe,C=this,A=d.clone();C=0!==C.negative?C.umod(d):C.clone();for(var k=new l(1),_=new l(0),a=A.clone();C.cmpn(1)>0&&A.cmpn(1)>0;){for(var b=0,z=1;!(C.words[0]&z)&&b<26;++b,z<<=1);if(b>0)for(C.iushrn(b);b-- >0;)k.isOdd()&&k.iadd(a),k.iushrn(1);for(var N=0,q=1;!(A.words[0]&q)&&N<26;++N,q<<=1);if(N>0)for(A.iushrn(N);N-- >0;)_.isOdd()&&_.iadd(a),_.iushrn(1);C.cmp(A)>=0?(C.isub(A),k.isub(_)):(A.isub(C),_.isub(k))}return(pe=0===C.cmpn(1)?k:_).cmpn(0)<0&&pe.iadd(d),pe},l.prototype.gcd=function(d){if(this.isZero())return d.abs();if(d.isZero())return this.abs();var C=this.clone(),A=d.clone();C.negative=0,A.negative=0;for(var k=0;C.isEven()&&A.isEven();k++)C.iushrn(1),A.iushrn(1);for(;;){for(;C.isEven();)C.iushrn(1);for(;A.isEven();)A.iushrn(1);var _=C.cmp(A);if(_<0){var a=C;C=A,A=a}else if(0===_||0===A.cmpn(1))break;C.isub(A)}return A.iushln(k)},l.prototype.invm=function(d){return this.egcd(d).a.umod(d)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(d){return this.words[0]&d},l.prototype.bincn=function(d){x("number"==typeof d);var C=d%26,A=(d-C)/26,k=1<>>26,this.words[a]=b&=67108863}return 0!==_&&(this.words[a]=_,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(d){var A,C=d<0;if(0!==this.negative&&!C)return-1;if(0===this.negative&&C)return 1;if(this._strip(),this.length>1)A=1;else{C&&(d=-d),x(d<=67108863,"Number is too big");var k=0|this.words[0];A=k===d?0:kd.length)return 1;if(this.length=0;A--){var k=0|this.words[A],_=0|d.words[A];if(k!==_){k<_?C=-1:k>_&&(C=1);break}}return C},l.prototype.gtn=function(d){return 1===this.cmpn(d)},l.prototype.gt=function(d){return 1===this.cmp(d)},l.prototype.gten=function(d){return this.cmpn(d)>=0},l.prototype.gte=function(d){return this.cmp(d)>=0},l.prototype.ltn=function(d){return-1===this.cmpn(d)},l.prototype.lt=function(d){return-1===this.cmp(d)},l.prototype.lten=function(d){return this.cmpn(d)<=0},l.prototype.lte=function(d){return this.cmp(d)<=0},l.prototype.eqn=function(d){return 0===this.cmpn(d)},l.prototype.eq=function(d){return 0===this.cmp(d)},l.red=function(d){return new n(d)},l.prototype.toRed=function(d){return x(!this.red,"Already a number in reduction context"),x(0===this.negative,"red works only with positives"),d.convertTo(this)._forceRed(d)},l.prototype.fromRed=function(){return x(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(d){return this.red=d,this},l.prototype.forceRed=function(d){return x(!this.red,"Already a number in reduction context"),this._forceRed(d)},l.prototype.redAdd=function(d){return x(this.red,"redAdd works only with red numbers"),this.red.add(this,d)},l.prototype.redIAdd=function(d){return x(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,d)},l.prototype.redSub=function(d){return x(this.red,"redSub works only with red numbers"),this.red.sub(this,d)},l.prototype.redISub=function(d){return x(this.red,"redISub works only with red numbers"),this.red.isub(this,d)},l.prototype.redShl=function(d){return x(this.red,"redShl works only with red numbers"),this.red.shl(this,d)},l.prototype.redMul=function(d){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,d),this.red.mul(this,d)},l.prototype.redIMul=function(d){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,d),this.red.imul(this,d)},l.prototype.redSqr=function(){return x(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return x(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return x(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return x(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return x(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(d){return x(this.red&&!d.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,d)};var fe={k256:null,p224:null,p192:null,p25519:null};function ne(m,d){this.name=m,this.p=new l(d,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function Me(){ne.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function Ce(){ne.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function le(){ne.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function T(){ne.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function n(m){if("string"==typeof m){var d=l._prime(m);this.m=d.p,this.prime=d}else x(m.gtn(1),"modulus must be greater than 1"),this.m=m,this.prime=null}function c(m){n.call(this,m),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ne.prototype._tmp=function(){var d=new l(null);return d.words=new Array(Math.ceil(this.n/13)),d},ne.prototype.ireduce=function(d){var A,C=d;do{this.split(C,this.tmp),A=(C=(C=this.imulK(C)).iadd(this.tmp)).bitLength()}while(A>this.n);var k=A0?C.isub(this.p):void 0!==C.strip?C.strip():C._strip(),C},ne.prototype.split=function(d,C){d.iushrn(this.n,0,C)},ne.prototype.imulK=function(d){return d.imul(this.k)},D(Me,ne),Me.prototype.split=function(d,C){for(var A=4194303,k=Math.min(d.length,9),_=0;_>>22,a=b}d.words[_-10]=a>>>=22,d.length-=0===a&&d.length>10?10:9},Me.prototype.imulK=function(d){d.words[d.length]=0,d.words[d.length+1]=0,d.length+=2;for(var C=0,A=0;A>>=26,d.words[A]=_,C=k}return 0!==C&&(d.words[d.length++]=C),d},l._prime=function(d){if(fe[d])return fe[d];var C;if("k256"===d)C=new Me;else if("p224"===d)C=new Ce;else if("p192"===d)C=new le;else{if("p25519"!==d)throw new Error("Unknown prime "+d);C=new T}return fe[d]=C,C},n.prototype._verify1=function(d){x(0===d.negative,"red works only with positives"),x(d.red,"red works only with red numbers")},n.prototype._verify2=function(d,C){x(!(d.negative|C.negative),"red works only with positives"),x(d.red&&d.red===C.red,"red works only with red numbers")},n.prototype.imod=function(d){return this.prime?this.prime.ireduce(d)._forceRed(this):(S(d,d.umod(this.m)._forceRed(this)),d)},n.prototype.neg=function(d){return d.isZero()?d.clone():this.m.sub(d)._forceRed(this)},n.prototype.add=function(d,C){this._verify2(d,C);var A=d.add(C);return A.cmp(this.m)>=0&&A.isub(this.m),A._forceRed(this)},n.prototype.iadd=function(d,C){this._verify2(d,C);var A=d.iadd(C);return A.cmp(this.m)>=0&&A.isub(this.m),A},n.prototype.sub=function(d,C){this._verify2(d,C);var A=d.sub(C);return A.cmpn(0)<0&&A.iadd(this.m),A._forceRed(this)},n.prototype.isub=function(d,C){this._verify2(d,C);var A=d.isub(C);return A.cmpn(0)<0&&A.iadd(this.m),A},n.prototype.shl=function(d,C){return this._verify1(d),this.imod(d.ushln(C))},n.prototype.imul=function(d,C){return this._verify2(d,C),this.imod(d.imul(C))},n.prototype.mul=function(d,C){return this._verify2(d,C),this.imod(d.mul(C))},n.prototype.isqr=function(d){return this.imul(d,d.clone())},n.prototype.sqr=function(d){return this.mul(d,d)},n.prototype.sqrt=function(d){if(d.isZero())return d.clone();var C=this.m.andln(3);if(x(C%2==1),3===C){var A=this.m.add(new l(1)).iushrn(2);return this.pow(d,A)}for(var k=this.m.subn(1),_=0;!k.isZero()&&0===k.andln(1);)_++,k.iushrn(1);x(!k.isZero());var a=new l(1).toRed(this),b=a.redNeg(),z=this.m.subn(1).iushrn(1),N=this.m.bitLength();for(N=new l(2*N*N).toRed(this);0!==this.pow(N,z).cmp(b);)N.redIAdd(b);for(var q=this.pow(N,k),pe=this.pow(d,k.addn(1).iushrn(1)),ze=this.pow(d,k),Xe=_;0!==ze.cmp(a);){for(var We=ze,oe=0;0!==We.cmp(a);oe++)We=We.redSqr();x(oe=0;_--){for(var q=C.words[_],pe=N-1;pe>=0;pe--){var ze=q>>pe&1;a!==k[0]&&(a=this.sqr(a)),0!==ze||0!==b?(b<<=1,b|=ze,(4==++z||0===_&&0===pe)&&(a=this.mul(a,k[b]),z=0,b=0)):z=0}N=26}return a},n.prototype.convertTo=function(d){var C=d.umod(this.m);return C===d?C.clone():C},n.prototype.convertFrom=function(d){var C=d.clone();return C.red=null,C},l.mont=function(d){return new c(d)},D(c,n),c.prototype.convertTo=function(d){return this.imod(d.ushln(this.shift))},c.prototype.convertFrom=function(d){var C=this.imod(d.mul(this.rinv));return C.red=null,C},c.prototype.imul=function(d,C){if(d.isZero()||C.isZero())return d.words[0]=0,d.length=1,d;var A=d.imul(C),k=A.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=A.isub(k).iushrn(this.shift),a=_;return _.cmp(this.m)>=0?a=_.isub(this.m):_.cmpn(0)<0&&(a=_.iadd(this.m)),a._forceRed(this)},c.prototype.mul=function(d,C){if(d.isZero()||C.isZero())return new l(0)._forceRed(this);var A=d.mul(C),k=A.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=A.isub(k).iushrn(this.shift),a=_;return _.cmp(this.m)>=0?a=_.isub(this.m):_.cmpn(0)<0&&(a=_.iadd(this.m)),a._forceRed(this)},c.prototype.invm=function(d){return this.imod(d._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},5294:(Qe,te,g)=>{var e;function t(D){this.rand=D}if(Qe.exports=function(l){return e||(e=new t(null)),e.generate(l)},Qe.exports.Rand=t,t.prototype.generate=function(l){return this._rand(l)},t.prototype._rand=function(l){if(this.rand.getBytes)return this.rand.getBytes(l);for(var w=new Uint8Array(l),f=0;f{var e=g(7054).Buffer;function t(R){e.isBuffer(R)||(R=e.from(R));for(var h=R.length/4|0,S=new Array(h),y=0;y>>24]^V[Q>>>16&255]^j[J>>>8&255]^Y[255&ie]^h[Ce++],fe=I[Q>>>24]^V[J>>>16&255]^j[ie>>>8&255]^Y[255&W]^h[Ce++],ne=I[J>>>24]^V[ie>>>16&255]^j[W>>>8&255]^Y[255&Q]^h[Ce++],Me=I[ie>>>24]^V[W>>>16&255]^j[Q>>>8&255]^Y[255&J]^h[Ce++],W=ee,Q=fe,J=ne,ie=Me;return ee=(y[W>>>24]<<24|y[Q>>>16&255]<<16|y[J>>>8&255]<<8|y[255&ie])^h[Ce++],fe=(y[Q>>>24]<<24|y[J>>>16&255]<<16|y[ie>>>8&255]<<8|y[255&W])^h[Ce++],ne=(y[J>>>24]<<24|y[ie>>>16&255]<<16|y[W>>>8&255]<<8|y[255&Q])^h[Ce++],Me=(y[ie>>>24]<<24|y[W>>>16&255]<<16|y[Q>>>8&255]<<8|y[255&J])^h[Ce++],[ee>>>=0,fe>>>=0,ne>>>=0,Me>>>=0]}var l=[0,1,2,4,8,16,32,64,128,27,54],w=function(){for(var R=new Array(256),h=0;h<256;h++)R[h]=h<128?h<<1:h<<1^283;for(var S=[],y=[],O=[[],[],[],[]],I=[[],[],[],[]],V=0,j=0,Y=0;Y<256;++Y){var W=j^j<<1^j<<2^j<<3^j<<4;S[V]=W=W>>>8^255&W^99,y[W]=V;var Q=R[V],J=R[Q],ie=R[J],ee=257*R[W]^16843008*W;O[0][V]=ee<<24|ee>>>8,O[1][V]=ee<<16|ee>>>16,O[2][V]=ee<<8|ee>>>24,O[3][V]=ee,I[0][W]=(ee=16843009*ie^65537*J^257*Q^16843008*V)<<24|ee>>>8,I[1][W]=ee<<16|ee>>>16,I[2][W]=ee<<8|ee>>>24,I[3][W]=ee,0===V?V=j=1:(V=Q^R[R[R[ie^Q]]],j^=R[R[j]])}return{SBOX:S,INV_SBOX:y,SUB_MIX:O,INV_SUB_MIX:I}}();function f(R){this._key=t(R),this._reset()}f.blockSize=16,f.keySize=32,f.prototype.blockSize=f.blockSize,f.prototype.keySize=f.keySize,f.prototype._reset=function(){for(var R=this._key,h=R.length,S=h+6,y=4*(S+1),O=[],I=0;I>>24)>>>24]<<24|w.SBOX[V>>>16&255]<<16|w.SBOX[V>>>8&255]<<8|w.SBOX[255&V],V^=l[I/h|0]<<24):h>6&&I%h==4&&(V=w.SBOX[V>>>24]<<24|w.SBOX[V>>>16&255]<<16|w.SBOX[V>>>8&255]<<8|w.SBOX[255&V]),O[I]=O[I-h]^V}for(var j=[],Y=0;Y>>24]]^w.INV_SUB_MIX[1][w.SBOX[Q>>>16&255]]^w.INV_SUB_MIX[2][w.SBOX[Q>>>8&255]]^w.INV_SUB_MIX[3][w.SBOX[255&Q]]}this._nRounds=S,this._keySchedule=O,this._invKeySchedule=j},f.prototype.encryptBlockRaw=function(R){return D(R=t(R),this._keySchedule,w.SUB_MIX,w.SBOX,this._nRounds)},f.prototype.encryptBlock=function(R){var h=this.encryptBlockRaw(R),S=e.allocUnsafe(16);return S.writeUInt32BE(h[0],0),S.writeUInt32BE(h[1],4),S.writeUInt32BE(h[2],8),S.writeUInt32BE(h[3],12),S},f.prototype.decryptBlock=function(R){var h=(R=t(R))[1];R[1]=R[3],R[3]=h;var S=D(R,this._invKeySchedule,w.INV_SUB_MIX,w.INV_SBOX,this._nRounds),y=e.allocUnsafe(16);return y.writeUInt32BE(S[0],0),y.writeUInt32BE(S[3],4),y.writeUInt32BE(S[2],8),y.writeUInt32BE(S[1],12),y},f.prototype.scrub=function(){x(this._keySchedule),x(this._invKeySchedule),x(this._key)},Qe.exports.AES=f},9307:(Qe,te,g)=>{var e=g(2375),t=g(7054).Buffer,x=g(3247),D=g(1993),l=g(5917),w=g(3546),f=g(5725);function S(y,O,I,V){x.call(this);var j=t.alloc(4,0);this._cipher=new e.AES(O);var Y=this._cipher.encryptBlock(j);this._ghash=new l(Y),I=function h(y,O,I){if(12===O.length)return y._finID=t.concat([O,t.from([0,0,0,1])]),t.concat([O,t.from([0,0,0,2])]);var V=new l(I),j=O.length,Y=j%16;V.update(O),Y&&V.update(t.alloc(Y=16-Y,0)),V.update(t.alloc(8,0));var W=8*j,Q=t.alloc(8);Q.writeUIntBE(W,0,8),V.update(Q),y._finID=V.state;var J=t.from(y._finID);return f(J),J}(this,I,Y),this._prev=t.from(I),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=V,this._alen=0,this._len=0,this._mode=y,this._authTag=null,this._called=!1}D(S,x),S.prototype._update=function(y){if(!this._called&&this._alen){var O=16-this._alen%16;O<16&&(O=t.alloc(O,0),this._ghash.update(O))}this._called=!0;var I=this._mode.encrypt(this,y);return this._ghash.update(this._decrypt?y:I),this._len+=y.length,I},S.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var y=w(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function R(y,O){var I=0;y.length!==O.length&&I++;for(var V=Math.min(y.length,O.length),j=0;j{var e=g(350),t=g(102),x=g(3219);te.createCipher=te.Cipher=e.createCipher,te.createCipheriv=te.Cipheriv=e.createCipheriv,te.createDecipher=te.Decipher=t.createDecipher,te.createDecipheriv=te.Decipheriv=t.createDecipheriv,te.listCiphers=te.getCiphers=function D(){return Object.keys(x)}},102:(Qe,te,g)=>{var e=g(9307),t=g(7054).Buffer,x=g(503),D=g(1821),l=g(3247),w=g(2375),f=g(592);function h(V,j,Y){l.call(this),this._cache=new S,this._last=void 0,this._cipher=new w.AES(j),this._prev=t.from(Y),this._mode=V,this._autopadding=!0}function S(){this.cache=t.allocUnsafe(0)}function O(V,j,Y){var W=x[V.toLowerCase()];if(!W)throw new TypeError("invalid suite type");if("string"==typeof Y&&(Y=t.from(Y)),"GCM"!==W.mode&&Y.length!==W.iv)throw new TypeError("invalid iv length "+Y.length);if("string"==typeof j&&(j=t.from(j)),j.length!==W.key/8)throw new TypeError("invalid key length "+j.length);return"stream"===W.type?new D(W.module,j,Y,!0):"auth"===W.type?new e(W.module,j,Y,!0):new h(W.module,j,Y)}g(1993)(h,l),h.prototype._update=function(V){this._cache.add(V);for(var j,Y,W=[];j=this._cache.get(this._autopadding);)Y=this._mode.decrypt(this,j),W.push(Y);return t.concat(W)},h.prototype._final=function(){var V=this._cache.flush();if(this._autopadding)return function y(V){var j=V[15];if(j<1||j>16)throw new Error("unable to decrypt data");for(var Y=-1;++Y16)return j=this.cache.slice(0,16),this.cache=this.cache.slice(16),j}else if(this.cache.length>=16)return j=this.cache.slice(0,16),this.cache=this.cache.slice(16),j;return null},S.prototype.flush=function(){if(this.cache.length)return this.cache},te.createDecipher=function I(V,j){var Y=x[V.toLowerCase()];if(!Y)throw new TypeError("invalid suite type");var W=f(j,!1,Y.key,Y.iv);return O(V,W.key,W.iv)},te.createDecipheriv=O},350:(Qe,te,g)=>{var e=g(503),t=g(9307),x=g(7054).Buffer,D=g(1821),l=g(3247),w=g(2375),f=g(592);function h(V,j,Y){l.call(this),this._cache=new y,this._cipher=new w.AES(j),this._prev=x.from(Y),this._mode=V,this._autopadding=!0}g(1993)(h,l),h.prototype._update=function(V){this._cache.add(V);for(var j,Y,W=[];j=this._cache.get();)Y=this._mode.encrypt(this,j),W.push(Y);return x.concat(W)};var S=x.alloc(16,16);function y(){this.cache=x.allocUnsafe(0)}function O(V,j,Y){var W=e[V.toLowerCase()];if(!W)throw new TypeError("invalid suite type");if("string"==typeof j&&(j=x.from(j)),j.length!==W.key/8)throw new TypeError("invalid key length "+j.length);if("string"==typeof Y&&(Y=x.from(Y)),"GCM"!==W.mode&&Y.length!==W.iv)throw new TypeError("invalid iv length "+Y.length);return"stream"===W.type?new D(W.module,j,Y):"auth"===W.type?new t(W.module,j,Y):new h(W.module,j,Y)}h.prototype._final=function(){var V=this._cache.flush();if(this._autopadding)return V=this._mode.encrypt(this,V),this._cipher.scrub(),V;if(!V.equals(S))throw this._cipher.scrub(),new Error("data not multiple of block length")},h.prototype.setAutoPadding=function(V){return this._autopadding=!!V,this},y.prototype.add=function(V){this.cache=x.concat([this.cache,V])},y.prototype.get=function(){if(this.cache.length>15){var V=this.cache.slice(0,16);return this.cache=this.cache.slice(16),V}return null},y.prototype.flush=function(){for(var V=16-this.cache.length,j=x.allocUnsafe(V),Y=-1;++Y{var e=g(7054).Buffer,t=e.alloc(16,0);function D(w){var f=e.allocUnsafe(16);return f.writeUInt32BE(w[0]>>>0,0),f.writeUInt32BE(w[1]>>>0,4),f.writeUInt32BE(w[2]>>>0,8),f.writeUInt32BE(w[3]>>>0,12),f}function l(w){this.h=w,this.state=e.alloc(16,0),this.cache=e.allocUnsafe(0)}l.prototype.ghash=function(w){for(var f=-1;++f0;R--)w[R]=w[R]>>>1|(1&w[R-1])<<31;w[0]=w[0]>>>1,S&&(w[0]=w[0]^225<<24)}this.state=D(f)},l.prototype.update=function(w){this.cache=e.concat([this.cache,w]);for(var f;this.cache.length>=16;)f=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(f)},l.prototype.final=function(w,f){return this.cache.length&&this.ghash(e.concat([this.cache,t],16)),this.ghash(D([0,w,0,f])),this.state},Qe.exports=l},5725:Qe=>{Qe.exports=function te(g){for(var t,e=g.length;e--;){if(255!==(t=g.readUInt8(e))){t++,g.writeUInt8(t,e);break}g.writeUInt8(0,e)}}},4133:(Qe,te,g)=>{var e=g(3546);te.encrypt=function(t,x){var D=e(x,t._prev);return t._prev=t._cipher.encryptBlock(D),t._prev},te.decrypt=function(t,x){var D=t._prev;t._prev=x;var l=t._cipher.decryptBlock(x);return e(l,D)}},7090:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(3546);function x(D,l,w){var f=l.length,R=t(l,D._cache);return D._cache=D._cache.slice(f),D._prev=e.concat([D._prev,w?l:R]),R}te.encrypt=function(D,l,w){for(var R,f=e.allocUnsafe(0);l.length;){if(0===D._cache.length&&(D._cache=D._cipher.encryptBlock(D._prev),D._prev=e.allocUnsafe(0)),!(D._cache.length<=l.length)){f=e.concat([f,x(D,l,w)]);break}f=e.concat([f,x(D,l.slice(0,R=D._cache.length),w)]),l=l.slice(R)}return f}},1039:(Qe,te,g)=>{var e=g(7054).Buffer;function t(D,l,w){for(var y,O,R=-1,S=0;++R<8;)S+=(128&(O=D._cipher.encryptBlock(D._prev)[0]^(y=l&1<<7-R?128:0)))>>R%8,D._prev=x(D._prev,w?y:O);return S}function x(D,l){var w=D.length,f=-1,R=e.allocUnsafe(D.length);for(D=e.concat([D,e.from([l])]);++f>7;return R}te.encrypt=function(D,l,w){for(var f=l.length,R=e.allocUnsafe(f),h=-1;++h{var e=g(7054).Buffer;function t(x,D,l){var f=x._cipher.encryptBlock(x._prev)[0]^D;return x._prev=e.concat([x._prev.slice(1),e.from([l?D:f])]),f}te.encrypt=function(x,D,l){for(var w=D.length,f=e.allocUnsafe(w),R=-1;++R{var e=g(3546),t=g(7054).Buffer,x=g(5725);function D(w){var f=w._cipher.encryptBlockRaw(w._prev);return x(w._prev),f}te.encrypt=function(w,f){var R=Math.ceil(f.length/16),h=w._cache.length;w._cache=t.concat([w._cache,t.allocUnsafe(16*R)]);for(var S=0;S{te.encrypt=function(g,e){return g._cipher.encryptBlock(e)},te.decrypt=function(g,e){return g._cipher.decryptBlock(e)}},503:(Qe,te,g)=>{var e={ECB:g(7513),CBC:g(4133),CFB:g(7090),CFB8:g(2576),CFB1:g(1039),OFB:g(6854),CTR:g(336),GCM:g(336)},t=g(3219);for(var x in t)t[x].module=e[t[x].mode];Qe.exports=t},6854:(Qe,te,g)=>{var e=g(3546);function t(x){return x._prev=x._cipher.encryptBlock(x._prev),x._prev}te.encrypt=function(x,D){for(;x._cache.length{var e=g(2375),t=g(7054).Buffer,x=g(3247);function l(w,f,R,h){x.call(this),this._cipher=new e.AES(f),this._prev=t.from(R),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=h,this._mode=w}g(1993)(l,x),l.prototype._update=function(w){return this._mode.encrypt(this,w,this._decrypt)},l.prototype._final=function(){this._cipher.scrub()},Qe.exports=l},8862:(Qe,te,g)=>{var e=g(9799),t=g(3388),x=g(503),D=g(9571),l=g(592);function R(y,O,I){if(y=y.toLowerCase(),x[y])return t.createCipheriv(y,O,I);if(D[y])return new e({key:O,iv:I,mode:y});throw new TypeError("invalid suite type")}function h(y,O,I){if(y=y.toLowerCase(),x[y])return t.createDecipheriv(y,O,I);if(D[y])return new e({key:O,iv:I,mode:y,decrypt:!0});throw new TypeError("invalid suite type")}te.createCipher=te.Cipher=function w(y,O){var I,V;if(y=y.toLowerCase(),x[y])I=x[y].key,V=x[y].iv;else{if(!D[y])throw new TypeError("invalid suite type");I=8*D[y].key,V=D[y].iv}var j=l(O,!1,I,V);return R(y,j.key,j.iv)},te.createCipheriv=te.Cipheriv=R,te.createDecipher=te.Decipher=function f(y,O){var I,V;if(y=y.toLowerCase(),x[y])I=x[y].key,V=x[y].iv;else{if(!D[y])throw new TypeError("invalid suite type");I=8*D[y].key,V=D[y].iv}var j=l(O,!1,I,V);return h(y,j.key,j.iv)},te.createDecipheriv=te.Decipheriv=h,te.listCiphers=te.getCiphers=function S(){return Object.keys(D).concat(t.getCiphers())}},9799:(Qe,te,g)=>{var e=g(3247),t=g(1549),x=g(1993),D=g(7054).Buffer,l={"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 w(f){e.call(this);var S,R=f.mode.toLowerCase(),h=l[R];S=f.decrypt?"decrypt":"encrypt";var y=f.key;D.isBuffer(y)||(y=D.from(y)),("des-ede"===R||"des-ede-cbc"===R)&&(y=D.concat([y,y.slice(0,8)]));var O=f.iv;D.isBuffer(O)||(O=D.from(O)),this._des=h.create({key:y,iv:O,type:S})}l.des=l["des-cbc"],l.des3=l["des-ede3-cbc"],Qe.exports=w,x(w,e),w.prototype._update=function(f){return D.from(this._des.update(f))},w.prototype._final=function(){return D.from(this._des.final())}},9571:(Qe,te)=>{te["des-ecb"]={key:8,iv:0},te["des-cbc"]=te.des={key:8,iv:8},te["des-ede3-cbc"]=te.des3={key:24,iv:8},te["des-ede3"]={key:24,iv:0},te["des-ede-cbc"]={key:16,iv:8},te["des-ede"]={key:16,iv:0}},4105:(Qe,te,g)=>{"use strict";var e=g(917),t=g(3342),x=g(7054).Buffer;function D(f){var h,R=f.modulus.byteLength();do{h=new e(t(R))}while(h.cmp(f.modulus)>=0||!h.umod(f.prime1)||!h.umod(f.prime2));return h}function w(f,R){var h=function l(f){var R=D(f);return{blinder:R.toRed(e.mont(f.modulus)).redPow(new e(f.publicExponent)).fromRed(),unblinder:R.invm(f.modulus)}}(R),S=R.modulus.byteLength(),y=new e(f).mul(h.blinder).umod(R.modulus),O=y.toRed(e.mont(R.prime1)),I=y.toRed(e.mont(R.prime2)),V=R.coefficient,j=R.prime1,Y=R.prime2,W=O.redPow(R.exponent1).fromRed(),Q=I.redPow(R.exponent2).fromRed(),J=W.isub(Q).imul(V).umod(j).imul(Y);return Q.iadd(J).imul(h.unblinder).umod(R.modulus).toArrayLike(x,"be",S)}w.getr=D,Qe.exports=w},9560:(Qe,te,g)=>{"use strict";Qe.exports=g(2951)},9143:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7211),x=g(5942),D=g(1993),l=g(3150),w=g(4754),f=g(2951);function R(O){x.Writable.call(this);var I=f[O];if(!I)throw new Error("Unknown message digest");this._hashType=I.hash,this._hash=t(I.hash),this._tag=I.id,this._signType=I.sign}function h(O){x.Writable.call(this);var I=f[O];if(!I)throw new Error("Unknown message digest");this._hash=t(I.hash),this._tag=I.id,this._signType=I.sign}function S(O){return new R(O)}function y(O){return new h(O)}Object.keys(f).forEach(function(O){f[O].id=e.from(f[O].id,"hex"),f[O.toLowerCase()]=f[O]}),D(R,x.Writable),R.prototype._write=function(I,V,j){this._hash.update(I),j()},R.prototype.update=function(I,V){return this._hash.update("string"==typeof I?e.from(I,V):I),this},R.prototype.sign=function(I,V){this.end();var j=this._hash.digest(),Y=l(j,I,this._hashType,this._signType,this._tag);return V?Y.toString(V):Y},D(h,x.Writable),h.prototype._write=function(I,V,j){this._hash.update(I),j()},h.prototype.update=function(I,V){return this._hash.update("string"==typeof I?e.from(I,V):I),this},h.prototype.verify=function(I,V,j){var Y="string"==typeof V?e.from(V,j):V;this.end();var W=this._hash.digest();return w(Y,W,I,this._signType,this._tag)},Qe.exports={Sign:S,Verify:y,createSign:S,createVerify:y}},3150:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(6432),x=g(4105),D=g(518).ec,l=g(917),w=g(5667),f=g(4589);function I(Q,J,ie,ee){if((Q=e.from(Q.toArray())).length0&&ie.ishrn(ee),ie}function Y(Q,J,ie){var ee,fe;do{for(ee=e.alloc(0);8*ee.length{"use strict";var e=g(7054).Buffer,t=g(917),x=g(518).ec,D=g(5667),l=g(4589);function h(S,y){if(S.cmpn(0)<=0)throw new Error("invalid sig");if(S.cmp(y)>=0)throw new Error("invalid sig")}Qe.exports=function w(S,y,O,I,V){var j=D(O);if("ec"===j.type){if("ecdsa"!==I&&"ecdsa/rsa"!==I)throw new Error("wrong public key type");return function f(S,y,O){var I=l[O.data.algorithm.curve.join(".")];if(!I)throw new Error("unknown curve "+O.data.algorithm.curve.join("."));return new x(I).verify(y,S,O.data.subjectPrivateKey.data)}(S,y,j)}if("dsa"===j.type){if("dsa"!==I)throw new Error("wrong public key type");return function R(S,y,O){var I=O.data.p,V=O.data.q,j=O.data.g,Y=O.data.pub_key,W=D.signature.decode(S,"der"),Q=W.s,J=W.r;h(Q,V),h(J,V);var ie=t.mont(I),ee=Q.invm(V);return 0===j.toRed(ie).redPow(new t(y).mul(ee).mod(V)).fromRed().mul(Y.toRed(ie).redPow(J.mul(ee).mod(V)).fromRed()).mod(I).mod(V).cmp(J)}(S,y,j)}if("rsa"!==I&&"ecdsa/rsa"!==I)throw new Error("wrong public key type");y=e.concat([V,y]);for(var Y=j.modulus.byteLength(),W=[1],Q=0;y.length+W.length+2{Qe.exports=function(g,e){for(var t=Math.min(g.length,e.length),x=new Buffer(t),D=0;D{"use strict";var e=g(3981),t=g(2020),x="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;te.Buffer=f,te.SlowBuffer=function Q(me){return+me!=me&&(me=0),f.alloc(+me)},te.INSPECT_MAX_BYTES=50;var D=2147483647;function w(me){if(me>D)throw new RangeError('The value "'+me+'" is invalid for option "size"');var Ee=new Uint8Array(me);return Object.setPrototypeOf(Ee,f.prototype),Ee}function f(me,Ee,ue){if("number"==typeof me){if("string"==typeof Ee)throw new TypeError('The "string" argument must be of type string. Received type number');return y(me)}return R(me,Ee,ue)}function R(me,Ee,ue){if("string"==typeof me)return function O(me,Ee){if(("string"!=typeof Ee||""===Ee)&&(Ee="utf8"),!f.isEncoding(Ee))throw new TypeError("Unknown encoding: "+Ee);var ue=0|J(me,Ee),Be=w(ue),Ct=Be.write(me,Ee);return Ct!==ue&&(Be=Be.slice(0,Ct)),Be}(me,Ee);if(ArrayBuffer.isView(me))return function V(me){if(he(me,Uint8Array)){var Ee=new Uint8Array(me);return j(Ee.buffer,Ee.byteOffset,Ee.byteLength)}return I(me)}(me);if(null==me)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof me);if(he(me,ArrayBuffer)||me&&he(me.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(he(me,SharedArrayBuffer)||me&&he(me.buffer,SharedArrayBuffer)))return j(me,Ee,ue);if("number"==typeof me)throw new TypeError('The "value" argument must not be of type number. Received type number');var Be=me.valueOf&&me.valueOf();if(null!=Be&&Be!==me)return f.from(Be,Ee,ue);var Ct=function Y(me){if(f.isBuffer(me)){var Ee=0|W(me.length),ue=w(Ee);return 0===ue.length||me.copy(ue,0,0,Ee),ue}return void 0!==me.length?"number"!=typeof me.length||Ie(me.length)?w(0):I(me):"Buffer"===me.type&&Array.isArray(me.data)?I(me.data):void 0}(me);if(Ct)return Ct;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof me[Symbol.toPrimitive])return f.from(me[Symbol.toPrimitive]("string"),Ee,ue);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof me)}function h(me){if("number"!=typeof me)throw new TypeError('"size" argument must be of type number');if(me<0)throw new RangeError('The value "'+me+'" is invalid for option "size"')}function y(me){return h(me),w(me<0?0:0|W(me))}function I(me){for(var Ee=me.length<0?0:0|W(me.length),ue=w(Ee),Be=0;Be=D)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+D.toString(16)+" bytes");return 0|me}function J(me,Ee){if(f.isBuffer(me))return me.length;if(ArrayBuffer.isView(me)||he(me,ArrayBuffer))return me.byteLength;if("string"!=typeof me)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof me);var ue=me.length,Be=arguments.length>2&&!0===arguments[2];if(!Be&&0===ue)return 0;for(var Ct=!1;;)switch(Ee){case"ascii":case"latin1":case"binary":return ue;case"utf8":case"utf-8":return We(me).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*ue;case"hex":return ue>>>1;case"base64":return se(me).length;default:if(Ct)return Be?-1:We(me).length;Ee=(""+Ee).toLowerCase(),Ct=!0}}function ie(me,Ee,ue){var Be=!1;if((void 0===Ee||Ee<0)&&(Ee=0),Ee>this.length||((void 0===ue||ue>this.length)&&(ue=this.length),ue<=0)||(ue>>>=0)<=(Ee>>>=0))return"";for(me||(me="utf8");;)switch(me){case"hex":return _(this,Ee,ue);case"utf8":case"utf-8":return m(this,Ee,ue);case"ascii":return A(this,Ee,ue);case"latin1":case"binary":return k(this,Ee,ue);case"base64":return c(this,Ee,ue);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return a(this,Ee,ue);default:if(Be)throw new TypeError("Unknown encoding: "+me);me=(me+"").toLowerCase(),Be=!0}}function ee(me,Ee,ue){var Be=me[Ee];me[Ee]=me[ue],me[ue]=Be}function fe(me,Ee,ue,Be,Ct){if(0===me.length)return-1;if("string"==typeof ue?(Be=ue,ue=0):ue>2147483647?ue=2147483647:ue<-2147483648&&(ue=-2147483648),Ie(ue=+ue)&&(ue=Ct?0:me.length-1),ue<0&&(ue=me.length+ue),ue>=me.length){if(Ct)return-1;ue=me.length-1}else if(ue<0){if(!Ct)return-1;ue=0}if("string"==typeof Ee&&(Ee=f.from(Ee,Be)),f.isBuffer(Ee))return 0===Ee.length?-1:ne(me,Ee,ue,Be,Ct);if("number"==typeof Ee)return Ee&=255,"function"==typeof Uint8Array.prototype.indexOf?Ct?Uint8Array.prototype.indexOf.call(me,Ee,ue):Uint8Array.prototype.lastIndexOf.call(me,Ee,ue):ne(me,[Ee],ue,Be,Ct);throw new TypeError("val must be string, number or Buffer")}function ne(me,Ee,ue,Be,Ct){var _e,ct=1,dt=me.length,Yt=Ee.length;if(void 0!==Be&&("ucs2"===(Be=String(Be).toLowerCase())||"ucs-2"===Be||"utf16le"===Be||"utf-16le"===Be)){if(me.length<2||Ee.length<2)return-1;ct=2,dt/=2,Yt/=2,ue/=2}function ve(vt,$e){return 1===ct?vt[$e]:vt.readUInt16BE($e*ct)}if(Ct){var we=-1;for(_e=ue;_edt&&(ue=dt-Yt),_e=ue;_e>=0;_e--){for(var Ue=!0,je=0;jeCt&&(Be=Ct):Be=Ct;var ct=Ee.length;Be>ct/2&&(Be=ct/2);for(var dt=0;dt>8,ct.push(ue%256),ct.push(Be);return ct}(Ee,me.length-ue),me,ue,Be)}function c(me,Ee,ue){return e.fromByteArray(0===Ee&&ue===me.length?me:me.slice(Ee,ue))}function m(me,Ee,ue){ue=Math.min(me.length,ue);for(var Be=[],Ct=Ee;Ct239?4:ct>223?3:ct>191?2:1;if(Ct+Yt<=ue)switch(Yt){case 1:ct<128&&(dt=ct);break;case 2:128==(192&(ve=me[Ct+1]))&&(Ue=(31&ct)<<6|63&ve)>127&&(dt=Ue);break;case 3:_e=me[Ct+2],128==(192&(ve=me[Ct+1]))&&128==(192&_e)&&(Ue=(15&ct)<<12|(63&ve)<<6|63&_e)>2047&&(Ue<55296||Ue>57343)&&(dt=Ue);break;case 4:_e=me[Ct+2],we=me[Ct+3],128==(192&(ve=me[Ct+1]))&&128==(192&_e)&&128==(192&we)&&(Ue=(15&ct)<<18|(63&ve)<<12|(63&_e)<<6|63&we)>65535&&Ue<1114112&&(dt=Ue)}null===dt?(dt=65533,Yt=1):dt>65535&&(Be.push((dt-=65536)>>>10&1023|55296),dt=56320|1023&dt),Be.push(dt),Ct+=Yt}return function C(me){var Ee=me.length;if(Ee<=d)return String.fromCharCode.apply(String,me);for(var ue="",Be=0;BeCt.length?f.from(dt).copy(Ct,ct):Uint8Array.prototype.set.call(Ct,dt,ct);else{if(!f.isBuffer(dt))throw new TypeError('"list" argument must be an Array of Buffers');dt.copy(Ct,ct)}ct+=dt.length}return Ct},f.byteLength=J,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var Ee=this.length;if(Ee%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var ue=0;ueue&&(Ee+=" ... "),""},x&&(f.prototype[x]=f.prototype.inspect),f.prototype.compare=function(Ee,ue,Be,Ct,ct){if(he(Ee,Uint8Array)&&(Ee=f.from(Ee,Ee.offset,Ee.byteLength)),!f.isBuffer(Ee))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof Ee);if(void 0===ue&&(ue=0),void 0===Be&&(Be=Ee?Ee.length:0),void 0===Ct&&(Ct=0),void 0===ct&&(ct=this.length),ue<0||Be>Ee.length||Ct<0||ct>this.length)throw new RangeError("out of range index");if(Ct>=ct&&ue>=Be)return 0;if(Ct>=ct)return-1;if(ue>=Be)return 1;if(this===Ee)return 0;for(var dt=(ct>>>=0)-(Ct>>>=0),Yt=(Be>>>=0)-(ue>>>=0),ve=Math.min(dt,Yt),_e=this.slice(Ct,ct),we=Ee.slice(ue,Be),Ue=0;Ue>>=0,isFinite(Be)?(Be>>>=0,void 0===Ct&&(Ct="utf8")):(Ct=Be,Be=void 0)}var ct=this.length-ue;if((void 0===Be||Be>ct)&&(Be=ct),Ee.length>0&&(Be<0||ue<0)||ue>this.length)throw new RangeError("Attempt to write outside buffer bounds");Ct||(Ct="utf8");for(var dt=!1;;)switch(Ct){case"hex":return Me(this,Ee,ue,Be);case"utf8":case"utf-8":return Ce(this,Ee,ue,Be);case"ascii":case"latin1":case"binary":return le(this,Ee,ue,Be);case"base64":return T(this,Ee,ue,Be);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,Ee,ue,Be);default:if(dt)throw new TypeError("Unknown encoding: "+Ct);Ct=(""+Ct).toLowerCase(),dt=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var d=4096;function A(me,Ee,ue){var Be="";ue=Math.min(me.length,ue);for(var Ct=Ee;CtBe)&&(ue=Be);for(var Ct="",ct=Ee;ctue)throw new RangeError("Trying to access beyond buffer length")}function z(me,Ee,ue,Be,Ct,ct){if(!f.isBuffer(me))throw new TypeError('"buffer" argument must be a Buffer instance');if(Ee>Ct||Eeme.length)throw new RangeError("Index out of range")}function N(me,Ee,ue,Be,Ct,ct){if(ue+Be>me.length)throw new RangeError("Index out of range");if(ue<0)throw new RangeError("Index out of range")}function q(me,Ee,ue,Be,Ct){return Ee=+Ee,ue>>>=0,Ct||N(me,0,ue,4),t.write(me,Ee,ue,Be,23,4),ue+4}function pe(me,Ee,ue,Be,Ct){return Ee=+Ee,ue>>>=0,Ct||N(me,0,ue,8),t.write(me,Ee,ue,Be,52,8),ue+8}f.prototype.slice=function(Ee,ue){var Be=this.length;(Ee=~~Ee)<0?(Ee+=Be)<0&&(Ee=0):Ee>Be&&(Ee=Be),(ue=void 0===ue?Be:~~ue)<0?(ue+=Be)<0&&(ue=0):ue>Be&&(ue=Be),ue>>=0,ue>>>=0,Be||b(Ee,ue,this.length);for(var Ct=this[Ee],ct=1,dt=0;++dt>>=0,ue>>>=0,Be||b(Ee,ue,this.length);for(var Ct=this[Ee+--ue],ct=1;ue>0&&(ct*=256);)Ct+=this[Ee+--ue]*ct;return Ct},f.prototype.readUint8=f.prototype.readUInt8=function(Ee,ue){return Ee>>>=0,ue||b(Ee,1,this.length),this[Ee]},f.prototype.readUint16LE=f.prototype.readUInt16LE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,2,this.length),this[Ee]|this[Ee+1]<<8},f.prototype.readUint16BE=f.prototype.readUInt16BE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,2,this.length),this[Ee]<<8|this[Ee+1]},f.prototype.readUint32LE=f.prototype.readUInt32LE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,4,this.length),(this[Ee]|this[Ee+1]<<8|this[Ee+2]<<16)+16777216*this[Ee+3]},f.prototype.readUint32BE=f.prototype.readUInt32BE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,4,this.length),16777216*this[Ee]+(this[Ee+1]<<16|this[Ee+2]<<8|this[Ee+3])},f.prototype.readIntLE=function(Ee,ue,Be){Ee>>>=0,ue>>>=0,Be||b(Ee,ue,this.length);for(var Ct=this[Ee],ct=1,dt=0;++dt=(ct*=128)&&(Ct-=Math.pow(2,8*ue)),Ct},f.prototype.readIntBE=function(Ee,ue,Be){Ee>>>=0,ue>>>=0,Be||b(Ee,ue,this.length);for(var Ct=ue,ct=1,dt=this[Ee+--Ct];Ct>0&&(ct*=256);)dt+=this[Ee+--Ct]*ct;return dt>=(ct*=128)&&(dt-=Math.pow(2,8*ue)),dt},f.prototype.readInt8=function(Ee,ue){return Ee>>>=0,ue||b(Ee,1,this.length),128&this[Ee]?-1*(255-this[Ee]+1):this[Ee]},f.prototype.readInt16LE=function(Ee,ue){Ee>>>=0,ue||b(Ee,2,this.length);var Be=this[Ee]|this[Ee+1]<<8;return 32768&Be?4294901760|Be:Be},f.prototype.readInt16BE=function(Ee,ue){Ee>>>=0,ue||b(Ee,2,this.length);var Be=this[Ee+1]|this[Ee]<<8;return 32768&Be?4294901760|Be:Be},f.prototype.readInt32LE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,4,this.length),this[Ee]|this[Ee+1]<<8|this[Ee+2]<<16|this[Ee+3]<<24},f.prototype.readInt32BE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,4,this.length),this[Ee]<<24|this[Ee+1]<<16|this[Ee+2]<<8|this[Ee+3]},f.prototype.readFloatLE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,4,this.length),t.read(this,Ee,!0,23,4)},f.prototype.readFloatBE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,4,this.length),t.read(this,Ee,!1,23,4)},f.prototype.readDoubleLE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,8,this.length),t.read(this,Ee,!0,52,8)},f.prototype.readDoubleBE=function(Ee,ue){return Ee>>>=0,ue||b(Ee,8,this.length),t.read(this,Ee,!1,52,8)},f.prototype.writeUintLE=f.prototype.writeUIntLE=function(Ee,ue,Be,Ct){Ee=+Ee,ue>>>=0,Be>>>=0,Ct||z(this,Ee,ue,Be,Math.pow(2,8*Be)-1,0);var dt=1,Yt=0;for(this[ue]=255&Ee;++Yt>>=0,Be>>>=0,Ct||z(this,Ee,ue,Be,Math.pow(2,8*Be)-1,0);var dt=Be-1,Yt=1;for(this[ue+dt]=255&Ee;--dt>=0&&(Yt*=256);)this[ue+dt]=Ee/Yt&255;return ue+Be},f.prototype.writeUint8=f.prototype.writeUInt8=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,1,255,0),this[ue]=255&Ee,ue+1},f.prototype.writeUint16LE=f.prototype.writeUInt16LE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,2,65535,0),this[ue]=255&Ee,this[ue+1]=Ee>>>8,ue+2},f.prototype.writeUint16BE=f.prototype.writeUInt16BE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,2,65535,0),this[ue]=Ee>>>8,this[ue+1]=255&Ee,ue+2},f.prototype.writeUint32LE=f.prototype.writeUInt32LE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,4,4294967295,0),this[ue+3]=Ee>>>24,this[ue+2]=Ee>>>16,this[ue+1]=Ee>>>8,this[ue]=255&Ee,ue+4},f.prototype.writeUint32BE=f.prototype.writeUInt32BE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,4,4294967295,0),this[ue]=Ee>>>24,this[ue+1]=Ee>>>16,this[ue+2]=Ee>>>8,this[ue+3]=255&Ee,ue+4},f.prototype.writeIntLE=function(Ee,ue,Be,Ct){if(Ee=+Ee,ue>>>=0,!Ct){var ct=Math.pow(2,8*Be-1);z(this,Ee,ue,Be,ct-1,-ct)}var dt=0,Yt=1,ve=0;for(this[ue]=255&Ee;++dt>>=0,!Ct){var ct=Math.pow(2,8*Be-1);z(this,Ee,ue,Be,ct-1,-ct)}var dt=Be-1,Yt=1,ve=0;for(this[ue+dt]=255&Ee;--dt>=0&&(Yt*=256);)Ee<0&&0===ve&&0!==this[ue+dt+1]&&(ve=1),this[ue+dt]=(Ee/Yt|0)-ve&255;return ue+Be},f.prototype.writeInt8=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,1,127,-128),Ee<0&&(Ee=255+Ee+1),this[ue]=255&Ee,ue+1},f.prototype.writeInt16LE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,2,32767,-32768),this[ue]=255&Ee,this[ue+1]=Ee>>>8,ue+2},f.prototype.writeInt16BE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,2,32767,-32768),this[ue]=Ee>>>8,this[ue+1]=255&Ee,ue+2},f.prototype.writeInt32LE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,4,2147483647,-2147483648),this[ue]=255&Ee,this[ue+1]=Ee>>>8,this[ue+2]=Ee>>>16,this[ue+3]=Ee>>>24,ue+4},f.prototype.writeInt32BE=function(Ee,ue,Be){return Ee=+Ee,ue>>>=0,Be||z(this,Ee,ue,4,2147483647,-2147483648),Ee<0&&(Ee=4294967295+Ee+1),this[ue]=Ee>>>24,this[ue+1]=Ee>>>16,this[ue+2]=Ee>>>8,this[ue+3]=255&Ee,ue+4},f.prototype.writeFloatLE=function(Ee,ue,Be){return q(this,Ee,ue,!0,Be)},f.prototype.writeFloatBE=function(Ee,ue,Be){return q(this,Ee,ue,!1,Be)},f.prototype.writeDoubleLE=function(Ee,ue,Be){return pe(this,Ee,ue,!0,Be)},f.prototype.writeDoubleBE=function(Ee,ue,Be){return pe(this,Ee,ue,!1,Be)},f.prototype.copy=function(Ee,ue,Be,Ct){if(!f.isBuffer(Ee))throw new TypeError("argument should be a Buffer");if(Be||(Be=0),!Ct&&0!==Ct&&(Ct=this.length),ue>=Ee.length&&(ue=Ee.length),ue||(ue=0),Ct>0&&Ct=this.length)throw new RangeError("Index out of range");if(Ct<0)throw new RangeError("sourceEnd out of bounds");Ct>this.length&&(Ct=this.length),Ee.length-ue>>=0,Be=void 0===Be?this.length:Be>>>0,Ee||(Ee=0),"number"==typeof Ee)for(dt=ue;dt55295&&ue<57344){if(!Ct){if(ue>56319){(Ee-=3)>-1&&ct.push(239,191,189);continue}if(dt+1===Be){(Ee-=3)>-1&&ct.push(239,191,189);continue}Ct=ue;continue}if(ue<56320){(Ee-=3)>-1&&ct.push(239,191,189),Ct=ue;continue}ue=65536+(Ct-55296<<10|ue-56320)}else Ct&&(Ee-=3)>-1&&ct.push(239,191,189);if(Ct=null,ue<128){if((Ee-=1)<0)break;ct.push(ue)}else if(ue<2048){if((Ee-=2)<0)break;ct.push(ue>>6|192,63&ue|128)}else if(ue<65536){if((Ee-=3)<0)break;ct.push(ue>>12|224,ue>>6&63|128,63&ue|128)}else{if(!(ue<1114112))throw new Error("Invalid code point");if((Ee-=4)<0)break;ct.push(ue>>18|240,ue>>12&63|128,ue>>6&63|128,63&ue|128)}}return ct}function se(me){return e.toByteArray(function Xe(me){if((me=(me=me.split("=")[0]).trim().replace(ze,"")).length<2)return"";for(;me.length%4!=0;)me+="=";return me}(me))}function ae(me,Ee,ue,Be){for(var Ct=0;Ct=Ee.length||Ct>=me.length);++Ct)Ee[Ct+ue]=me[Ct];return Ct}function he(me,Ee){return me instanceof Ee||null!=me&&null!=me.constructor&&null!=me.constructor.name&&me.constructor.name===Ee.name}function Ie(me){return me!=me}var st=function(){for(var me="0123456789abcdef",Ee=new Array(256),ue=0;ue<16;++ue)for(var Be=16*ue,Ct=0;Ct<16;++Ct)Ee[Be+Ct]=me[ue]+me[Ct];return Ee}()},3247:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(7045).Transform,x=g(8454).I;function l(w){t.call(this),this.hashMode="string"==typeof w,this.hashMode?this[w]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}g(1993)(l,t),l.prototype.update=function(w,f,R){"string"==typeof w&&(w=e.from(w,f));var h=this._update(w);return this.hashMode?this:(R&&(h=this._toString(h,R)),h)},l.prototype.setAutoPadding=function(){},l.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},l.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},l.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},l.prototype._transform=function(w,f,R){var h;try{this.hashMode?this._update(w):this.push(this._update(w))}catch(S){h=S}finally{R(h)}},l.prototype._flush=function(w){var f;try{this.push(this.__final())}catch(R){f=R}w(f)},l.prototype._finalOrDigest=function(w){var f=this.__final()||e.alloc(0);return w&&(f=this._toString(f,w,!0)),f},l.prototype._toString=function(w,f,R){if(this._decoder||(this._decoder=new x(f),this._encoding=f),this._encoding!==f)throw new Error("can't switch encodings");var h=this._decoder.write(w);return R&&(h+=this._decoder.end()),h},Qe.exports=l},4740:function(Qe){!function(te){"use strict";var g={bytesToHex:function(x){return function e(x){return x.map(function(D){return function t(x,D){return x.length>D?x:Array(D-x.length+1).join("0")+x}(D.toString(16),2)}).join("")}(x)},hexToBytes:function(x){if(x.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===x.indexOf("0x")&&(x=x.slice(2)),x.match(/../g).map(function(D){return parseInt(D,16)})}};Qe.exports?Qe.exports=g:te.convertHex=g}(this)},820:function(Qe){!function(te){"use strict";var g={bytesToString:function(e){return e.map(function(t){return String.fromCharCode(t)}).join("")},stringToBytes:function(e){return e.split("").map(function(t){return t.charCodeAt(0)})}};g.UTF8={bytesToString:function(e){return decodeURIComponent(escape(g.bytesToString(e)))},stringToBytes:function(e){return g.stringToBytes(unescape(encodeURIComponent(e)))}},Qe.exports?Qe.exports=g:te.convertString=g}(this)},7637:(Qe,te,g)=>{function j(Y){return Object.prototype.toString.call(Y)}te.isArray=function e(Y){return Array.isArray?Array.isArray(Y):"[object Array]"===j(Y)},te.isBoolean=function t(Y){return"boolean"==typeof Y},te.isNull=function x(Y){return null===Y},te.isNullOrUndefined=function D(Y){return null==Y},te.isNumber=function l(Y){return"number"==typeof Y},te.isString=function w(Y){return"string"==typeof Y},te.isSymbol=function f(Y){return"symbol"==typeof Y},te.isUndefined=function R(Y){return void 0===Y},te.isRegExp=function h(Y){return"[object RegExp]"===j(Y)},te.isObject=function S(Y){return"object"==typeof Y&&null!==Y},te.isDate=function y(Y){return"[object Date]"===j(Y)},te.isError=function O(Y){return"[object Error]"===j(Y)||Y instanceof Error},te.isFunction=function I(Y){return"function"==typeof Y},te.isPrimitive=function V(Y){return null===Y||"boolean"==typeof Y||"number"==typeof Y||"string"==typeof Y||"symbol"==typeof Y||typeof Y>"u"},te.isBuffer=g(3838).Buffer.isBuffer},7303:(Qe,te,g)=>{var e=g(518),t=g(9606);Qe.exports=function(f){return new D(f)};var x={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 D(w){this.curveType=x[w],this.curveType||(this.curveType={name:w}),this.curve=new e.ec(this.curveType.name),this.keys=void 0}function l(w,f,R){Array.isArray(w)||(w=w.toArray());var h=new Buffer(w);if(R&&h.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function R(T,n,c){var m=f(T,c);return c-1>=n&&(m|=f(T,c-1)<<4),m}function h(T,n,c,m){for(var d=0,C=Math.min(T.length,c),A=n;A=49?k-49+10:k>=17?k-17+10:k}return d}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),x(c===(0|c)&&c>=2&&c<=36);var d=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(d++,this.negative=1),d=0;d-=3)this.words[C]|=(A=n[d]|n[d-1]<<8|n[d-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);else if("le"===m)for(d=0,C=0;d>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var d=0;d=c;d-=2)k=R(n,c,d)<=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;else for(d=(n.length-c)%2==0?c+1:c;d=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var d=0,C=1;C<=67108863;C*=c)d++;d--,C=C/c|0;for(var A=n.length-m,k=A%d,_=Math.min(A,A-k)+m,a=0,b=m;b<_;b+=d)a=h(n,b,b+d,c),this.imuln(C),this.words[0]+a<67108864?this.words[0]+=a:this._iaddn(a);if(0!==k){var z=1;for(a=h(n,b,n.length,c),b=0;b1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var S=["","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"],y=[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],O=[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 V(T,n,c){c.negative=n.negative^T.negative;var m=T.length+n.length|0;c.length=m,m=m-1|0;var d=0|T.words[0],C=0|n.words[0],A=d*C,_=A/67108864|0;c.words[0]=67108863&A;for(var a=1;a>>26,z=67108863&_,N=Math.min(a,n.length-1),q=Math.max(0,a-T.length+1);q<=N;q++)b+=(A=(d=0|T.words[a-q|0])*(C=0|n.words[q])+z)/67108864|0,z=67108863&A;c.words[a]=0|z,_=0|b}return 0!==_?c.words[a]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var d=0,C=0,A=0;A>>24-d&16777215)||A!==this.length-1?S[6-_.length]+_+m:_+m,(d+=2)>=26&&(d-=26,A--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var a=y[n],b=O[n];m="";var z=this.clone();for(z.negative=0;!z.isZero();){var N=z.modn(b).toString(n);m=(z=z.idivn(b)).isZero()?N+m:S[a-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}x(!1,"Base should be between 2 and 36")},l.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&&x(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return x(typeof w<"u"),this.toArrayLike(w,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var d=this.byteLength(),C=m||Math.max(1,d);x(d<=C,"byte array longer than desired length"),x(C>0,"Requested array length <= 0"),this.strip();var _,a,A="le"===c,k=new n(C),b=this.clone();if(A){for(a=0;!b.isZero();a++)_=b.andln(255),b.iushrn(8),k[a]=_;for(;a=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var d=0;dn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){x("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var d=0;d0&&(this.words[d]=~this.words[d]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){x("number"==typeof n&&n>=0);var m=n/26|0,d=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,d=n):(m=n,d=this);for(var C=0,A=0;A>>26;for(;0!==C&&A>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var d,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(d=this,C=n):(d=n,C=this);for(var A=0,k=0;k>26,this.words[k]=67108863&c;for(;0!==A&&k>26,this.words[k]=67108863&c;if(0===A&&k>>13,pe=0|d[1],ze=8191&pe,Xe=pe>>>13,We=0|d[2],oe=8191&We,X=We>>>13,se=0|d[3],ae=8191&se,he=se>>>13,Ie=0|d[4],st=8191&Ie,me=Ie>>>13,Ee=0|d[5],ue=8191&Ee,Be=Ee>>>13,Ct=0|d[6],ct=8191&Ct,dt=Ct>>>13,Yt=0|d[7],ve=8191&Yt,_e=Yt>>>13,we=0|d[8],Ue=8191&we,je=we>>>13,vt=0|d[9],$e=8191&vt,nt=vt>>>13,qt=0|C[0],Nt=8191&qt,yt=qt>>>13,jt=0|C[1],Je=8191&jt,et=jt>>>13,Ae=0|C[2],It=8191&Ae,Qt=Ae>>>13,Tt=0|C[3],xt=8191&Tt,Se=Tt>>>13,Te=0|C[4],ce=8191&Te,Z=Te>>>13,Re=0|C[5],Pe=8191&Re,pt=Re>>>13,Ke=0|C[6],Fe=8191&Ke,Ge=Ke>>>13,qe=0|C[7],at=8191&qe,Lt=qe>>>13,pi=0|C[8],$t=8191&pi,Kt=pi>>>13,Ui=0|C[9],ti=8191&Ui,fi=Ui>>>13;m.negative=n.negative^c.negative,m.length=19;var xn=(k+(_=Math.imul(N,Nt))|0)+((8191&(a=(a=Math.imul(N,yt))+Math.imul(q,Nt)|0))<<13)|0;k=((b=Math.imul(q,yt))+(a>>>13)|0)+(xn>>>26)|0,xn&=67108863,_=Math.imul(ze,Nt),a=(a=Math.imul(ze,yt))+Math.imul(Xe,Nt)|0,b=Math.imul(Xe,yt);var tn=(k+(_=_+Math.imul(N,Je)|0)|0)+((8191&(a=(a=a+Math.imul(N,et)|0)+Math.imul(q,Je)|0))<<13)|0;k=((b=b+Math.imul(q,et)|0)+(a>>>13)|0)+(tn>>>26)|0,tn&=67108863,_=Math.imul(oe,Nt),a=(a=Math.imul(oe,yt))+Math.imul(X,Nt)|0,b=Math.imul(X,yt),_=_+Math.imul(ze,Je)|0,a=(a=a+Math.imul(ze,et)|0)+Math.imul(Xe,Je)|0,b=b+Math.imul(Xe,et)|0;var Vi=(k+(_=_+Math.imul(N,It)|0)|0)+((8191&(a=(a=a+Math.imul(N,Qt)|0)+Math.imul(q,It)|0))<<13)|0;k=((b=b+Math.imul(q,Qt)|0)+(a>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,_=Math.imul(ae,Nt),a=(a=Math.imul(ae,yt))+Math.imul(he,Nt)|0,b=Math.imul(he,yt),_=_+Math.imul(oe,Je)|0,a=(a=a+Math.imul(oe,et)|0)+Math.imul(X,Je)|0,b=b+Math.imul(X,et)|0,_=_+Math.imul(ze,It)|0,a=(a=a+Math.imul(ze,Qt)|0)+Math.imul(Xe,It)|0,b=b+Math.imul(Xe,Qt)|0;var Qi=(k+(_=_+Math.imul(N,xt)|0)|0)+((8191&(a=(a=a+Math.imul(N,Se)|0)+Math.imul(q,xt)|0))<<13)|0;k=((b=b+Math.imul(q,Se)|0)+(a>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(st,Nt),a=(a=Math.imul(st,yt))+Math.imul(me,Nt)|0,b=Math.imul(me,yt),_=_+Math.imul(ae,Je)|0,a=(a=a+Math.imul(ae,et)|0)+Math.imul(he,Je)|0,b=b+Math.imul(he,et)|0,_=_+Math.imul(oe,It)|0,a=(a=a+Math.imul(oe,Qt)|0)+Math.imul(X,It)|0,b=b+Math.imul(X,Qt)|0,_=_+Math.imul(ze,xt)|0,a=(a=a+Math.imul(ze,Se)|0)+Math.imul(Xe,xt)|0,b=b+Math.imul(Xe,Se)|0;var Xt=(k+(_=_+Math.imul(N,ce)|0)|0)+((8191&(a=(a=a+Math.imul(N,Z)|0)+Math.imul(q,ce)|0))<<13)|0;k=((b=b+Math.imul(q,Z)|0)+(a>>>13)|0)+(Xt>>>26)|0,Xt&=67108863,_=Math.imul(ue,Nt),a=(a=Math.imul(ue,yt))+Math.imul(Be,Nt)|0,b=Math.imul(Be,yt),_=_+Math.imul(st,Je)|0,a=(a=a+Math.imul(st,et)|0)+Math.imul(me,Je)|0,b=b+Math.imul(me,et)|0,_=_+Math.imul(ae,It)|0,a=(a=a+Math.imul(ae,Qt)|0)+Math.imul(he,It)|0,b=b+Math.imul(he,Qt)|0,_=_+Math.imul(oe,xt)|0,a=(a=a+Math.imul(oe,Se)|0)+Math.imul(X,xt)|0,b=b+Math.imul(X,Se)|0,_=_+Math.imul(ze,ce)|0,a=(a=a+Math.imul(ze,Z)|0)+Math.imul(Xe,ce)|0,b=b+Math.imul(Xe,Z)|0;var St=(k+(_=_+Math.imul(N,Pe)|0)|0)+((8191&(a=(a=a+Math.imul(N,pt)|0)+Math.imul(q,Pe)|0))<<13)|0;k=((b=b+Math.imul(q,pt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,_=Math.imul(ct,Nt),a=(a=Math.imul(ct,yt))+Math.imul(dt,Nt)|0,b=Math.imul(dt,yt),_=_+Math.imul(ue,Je)|0,a=(a=a+Math.imul(ue,et)|0)+Math.imul(Be,Je)|0,b=b+Math.imul(Be,et)|0,_=_+Math.imul(st,It)|0,a=(a=a+Math.imul(st,Qt)|0)+Math.imul(me,It)|0,b=b+Math.imul(me,Qt)|0,_=_+Math.imul(ae,xt)|0,a=(a=a+Math.imul(ae,Se)|0)+Math.imul(he,xt)|0,b=b+Math.imul(he,Se)|0,_=_+Math.imul(oe,ce)|0,a=(a=a+Math.imul(oe,Z)|0)+Math.imul(X,ce)|0,b=b+Math.imul(X,Z)|0,_=_+Math.imul(ze,Pe)|0,a=(a=a+Math.imul(ze,pt)|0)+Math.imul(Xe,Pe)|0,b=b+Math.imul(Xe,pt)|0;var tt=(k+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(a=(a=a+Math.imul(N,Ge)|0)+Math.imul(q,Fe)|0))<<13)|0;k=((b=b+Math.imul(q,Ge)|0)+(a>>>13)|0)+(tt>>>26)|0,tt&=67108863,_=Math.imul(ve,Nt),a=(a=Math.imul(ve,yt))+Math.imul(_e,Nt)|0,b=Math.imul(_e,yt),_=_+Math.imul(ct,Je)|0,a=(a=a+Math.imul(ct,et)|0)+Math.imul(dt,Je)|0,b=b+Math.imul(dt,et)|0,_=_+Math.imul(ue,It)|0,a=(a=a+Math.imul(ue,Qt)|0)+Math.imul(Be,It)|0,b=b+Math.imul(Be,Qt)|0,_=_+Math.imul(st,xt)|0,a=(a=a+Math.imul(st,Se)|0)+Math.imul(me,xt)|0,b=b+Math.imul(me,Se)|0,_=_+Math.imul(ae,ce)|0,a=(a=a+Math.imul(ae,Z)|0)+Math.imul(he,ce)|0,b=b+Math.imul(he,Z)|0,_=_+Math.imul(oe,Pe)|0,a=(a=a+Math.imul(oe,pt)|0)+Math.imul(X,Pe)|0,b=b+Math.imul(X,pt)|0,_=_+Math.imul(ze,Fe)|0,a=(a=a+Math.imul(ze,Ge)|0)+Math.imul(Xe,Fe)|0,b=b+Math.imul(Xe,Ge)|0;var ot=(k+(_=_+Math.imul(N,at)|0)|0)+((8191&(a=(a=a+Math.imul(N,Lt)|0)+Math.imul(q,at)|0))<<13)|0;k=((b=b+Math.imul(q,Lt)|0)+(a>>>13)|0)+(ot>>>26)|0,ot&=67108863,_=Math.imul(Ue,Nt),a=(a=Math.imul(Ue,yt))+Math.imul(je,Nt)|0,b=Math.imul(je,yt),_=_+Math.imul(ve,Je)|0,a=(a=a+Math.imul(ve,et)|0)+Math.imul(_e,Je)|0,b=b+Math.imul(_e,et)|0,_=_+Math.imul(ct,It)|0,a=(a=a+Math.imul(ct,Qt)|0)+Math.imul(dt,It)|0,b=b+Math.imul(dt,Qt)|0,_=_+Math.imul(ue,xt)|0,a=(a=a+Math.imul(ue,Se)|0)+Math.imul(Be,xt)|0,b=b+Math.imul(Be,Se)|0,_=_+Math.imul(st,ce)|0,a=(a=a+Math.imul(st,Z)|0)+Math.imul(me,ce)|0,b=b+Math.imul(me,Z)|0,_=_+Math.imul(ae,Pe)|0,a=(a=a+Math.imul(ae,pt)|0)+Math.imul(he,Pe)|0,b=b+Math.imul(he,pt)|0,_=_+Math.imul(oe,Fe)|0,a=(a=a+Math.imul(oe,Ge)|0)+Math.imul(X,Fe)|0,b=b+Math.imul(X,Ge)|0,_=_+Math.imul(ze,at)|0,a=(a=a+Math.imul(ze,Lt)|0)+Math.imul(Xe,at)|0,b=b+Math.imul(Xe,Lt)|0;var Mt=(k+(_=_+Math.imul(N,$t)|0)|0)+((8191&(a=(a=a+Math.imul(N,Kt)|0)+Math.imul(q,$t)|0))<<13)|0;k=((b=b+Math.imul(q,Kt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul($e,Nt),a=(a=Math.imul($e,yt))+Math.imul(nt,Nt)|0,b=Math.imul(nt,yt),_=_+Math.imul(Ue,Je)|0,a=(a=a+Math.imul(Ue,et)|0)+Math.imul(je,Je)|0,b=b+Math.imul(je,et)|0,_=_+Math.imul(ve,It)|0,a=(a=a+Math.imul(ve,Qt)|0)+Math.imul(_e,It)|0,b=b+Math.imul(_e,Qt)|0,_=_+Math.imul(ct,xt)|0,a=(a=a+Math.imul(ct,Se)|0)+Math.imul(dt,xt)|0,b=b+Math.imul(dt,Se)|0,_=_+Math.imul(ue,ce)|0,a=(a=a+Math.imul(ue,Z)|0)+Math.imul(Be,ce)|0,b=b+Math.imul(Be,Z)|0,_=_+Math.imul(st,Pe)|0,a=(a=a+Math.imul(st,pt)|0)+Math.imul(me,Pe)|0,b=b+Math.imul(me,pt)|0,_=_+Math.imul(ae,Fe)|0,a=(a=a+Math.imul(ae,Ge)|0)+Math.imul(he,Fe)|0,b=b+Math.imul(he,Ge)|0,_=_+Math.imul(oe,at)|0,a=(a=a+Math.imul(oe,Lt)|0)+Math.imul(X,at)|0,b=b+Math.imul(X,Lt)|0,_=_+Math.imul(ze,$t)|0,a=(a=a+Math.imul(ze,Kt)|0)+Math.imul(Xe,$t)|0,b=b+Math.imul(Xe,Kt)|0;var Bt=(k+(_=_+Math.imul(N,ti)|0)|0)+((8191&(a=(a=a+Math.imul(N,fi)|0)+Math.imul(q,ti)|0))<<13)|0;k=((b=b+Math.imul(q,fi)|0)+(a>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,_=Math.imul($e,Je),a=(a=Math.imul($e,et))+Math.imul(nt,Je)|0,b=Math.imul(nt,et),_=_+Math.imul(Ue,It)|0,a=(a=a+Math.imul(Ue,Qt)|0)+Math.imul(je,It)|0,b=b+Math.imul(je,Qt)|0,_=_+Math.imul(ve,xt)|0,a=(a=a+Math.imul(ve,Se)|0)+Math.imul(_e,xt)|0,b=b+Math.imul(_e,Se)|0,_=_+Math.imul(ct,ce)|0,a=(a=a+Math.imul(ct,Z)|0)+Math.imul(dt,ce)|0,b=b+Math.imul(dt,Z)|0,_=_+Math.imul(ue,Pe)|0,a=(a=a+Math.imul(ue,pt)|0)+Math.imul(Be,Pe)|0,b=b+Math.imul(Be,pt)|0,_=_+Math.imul(st,Fe)|0,a=(a=a+Math.imul(st,Ge)|0)+Math.imul(me,Fe)|0,b=b+Math.imul(me,Ge)|0,_=_+Math.imul(ae,at)|0,a=(a=a+Math.imul(ae,Lt)|0)+Math.imul(he,at)|0,b=b+Math.imul(he,Lt)|0,_=_+Math.imul(oe,$t)|0,a=(a=a+Math.imul(oe,Kt)|0)+Math.imul(X,$t)|0,b=b+Math.imul(X,Kt)|0;var Ci=(k+(_=_+Math.imul(ze,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ze,fi)|0)+Math.imul(Xe,ti)|0))<<13)|0;k=((b=b+Math.imul(Xe,fi)|0)+(a>>>13)|0)+(Ci>>>26)|0,Ci&=67108863,_=Math.imul($e,It),a=(a=Math.imul($e,Qt))+Math.imul(nt,It)|0,b=Math.imul(nt,Qt),_=_+Math.imul(Ue,xt)|0,a=(a=a+Math.imul(Ue,Se)|0)+Math.imul(je,xt)|0,b=b+Math.imul(je,Se)|0,_=_+Math.imul(ve,ce)|0,a=(a=a+Math.imul(ve,Z)|0)+Math.imul(_e,ce)|0,b=b+Math.imul(_e,Z)|0,_=_+Math.imul(ct,Pe)|0,a=(a=a+Math.imul(ct,pt)|0)+Math.imul(dt,Pe)|0,b=b+Math.imul(dt,pt)|0,_=_+Math.imul(ue,Fe)|0,a=(a=a+Math.imul(ue,Ge)|0)+Math.imul(Be,Fe)|0,b=b+Math.imul(Be,Ge)|0,_=_+Math.imul(st,at)|0,a=(a=a+Math.imul(st,Lt)|0)+Math.imul(me,at)|0,b=b+Math.imul(me,Lt)|0,_=_+Math.imul(ae,$t)|0,a=(a=a+Math.imul(ae,Kt)|0)+Math.imul(he,$t)|0,b=b+Math.imul(he,Kt)|0;var Ti=(k+(_=_+Math.imul(oe,ti)|0)|0)+((8191&(a=(a=a+Math.imul(oe,fi)|0)+Math.imul(X,ti)|0))<<13)|0;k=((b=b+Math.imul(X,fi)|0)+(a>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,_=Math.imul($e,xt),a=(a=Math.imul($e,Se))+Math.imul(nt,xt)|0,b=Math.imul(nt,Se),_=_+Math.imul(Ue,ce)|0,a=(a=a+Math.imul(Ue,Z)|0)+Math.imul(je,ce)|0,b=b+Math.imul(je,Z)|0,_=_+Math.imul(ve,Pe)|0,a=(a=a+Math.imul(ve,pt)|0)+Math.imul(_e,Pe)|0,b=b+Math.imul(_e,pt)|0,_=_+Math.imul(ct,Fe)|0,a=(a=a+Math.imul(ct,Ge)|0)+Math.imul(dt,Fe)|0,b=b+Math.imul(dt,Ge)|0,_=_+Math.imul(ue,at)|0,a=(a=a+Math.imul(ue,Lt)|0)+Math.imul(Be,at)|0,b=b+Math.imul(Be,Lt)|0,_=_+Math.imul(st,$t)|0,a=(a=a+Math.imul(st,Kt)|0)+Math.imul(me,$t)|0,b=b+Math.imul(me,Kt)|0;var Hi=(k+(_=_+Math.imul(ae,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ae,fi)|0)+Math.imul(he,ti)|0))<<13)|0;k=((b=b+Math.imul(he,fi)|0)+(a>>>13)|0)+(Hi>>>26)|0,Hi&=67108863,_=Math.imul($e,ce),a=(a=Math.imul($e,Z))+Math.imul(nt,ce)|0,b=Math.imul(nt,Z),_=_+Math.imul(Ue,Pe)|0,a=(a=a+Math.imul(Ue,pt)|0)+Math.imul(je,Pe)|0,b=b+Math.imul(je,pt)|0,_=_+Math.imul(ve,Fe)|0,a=(a=a+Math.imul(ve,Ge)|0)+Math.imul(_e,Fe)|0,b=b+Math.imul(_e,Ge)|0,_=_+Math.imul(ct,at)|0,a=(a=a+Math.imul(ct,Lt)|0)+Math.imul(dt,at)|0,b=b+Math.imul(dt,Lt)|0,_=_+Math.imul(ue,$t)|0,a=(a=a+Math.imul(ue,Kt)|0)+Math.imul(Be,$t)|0,b=b+Math.imul(Be,Kt)|0;var Zi=(k+(_=_+Math.imul(st,ti)|0)|0)+((8191&(a=(a=a+Math.imul(st,fi)|0)+Math.imul(me,ti)|0))<<13)|0;k=((b=b+Math.imul(me,fi)|0)+(a>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul($e,Pe),a=(a=Math.imul($e,pt))+Math.imul(nt,Pe)|0,b=Math.imul(nt,pt),_=_+Math.imul(Ue,Fe)|0,a=(a=a+Math.imul(Ue,Ge)|0)+Math.imul(je,Fe)|0,b=b+Math.imul(je,Ge)|0,_=_+Math.imul(ve,at)|0,a=(a=a+Math.imul(ve,Lt)|0)+Math.imul(_e,at)|0,b=b+Math.imul(_e,Lt)|0,_=_+Math.imul(ct,$t)|0,a=(a=a+Math.imul(ct,Kt)|0)+Math.imul(dt,$t)|0,b=b+Math.imul(dt,Kt)|0;var ln=(k+(_=_+Math.imul(ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ue,fi)|0)+Math.imul(Be,ti)|0))<<13)|0;k=((b=b+Math.imul(Be,fi)|0)+(a>>>13)|0)+(ln>>>26)|0,ln&=67108863,_=Math.imul($e,Fe),a=(a=Math.imul($e,Ge))+Math.imul(nt,Fe)|0,b=Math.imul(nt,Ge),_=_+Math.imul(Ue,at)|0,a=(a=a+Math.imul(Ue,Lt)|0)+Math.imul(je,at)|0,b=b+Math.imul(je,Lt)|0,_=_+Math.imul(ve,$t)|0,a=(a=a+Math.imul(ve,Kt)|0)+Math.imul(_e,$t)|0,b=b+Math.imul(_e,Kt)|0;var mn=(k+(_=_+Math.imul(ct,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ct,fi)|0)+Math.imul(dt,ti)|0))<<13)|0;k=((b=b+Math.imul(dt,fi)|0)+(a>>>13)|0)+(mn>>>26)|0,mn&=67108863,_=Math.imul($e,at),a=(a=Math.imul($e,Lt))+Math.imul(nt,at)|0,b=Math.imul(nt,Lt),_=_+Math.imul(Ue,$t)|0,a=(a=a+Math.imul(Ue,Kt)|0)+Math.imul(je,$t)|0,b=b+Math.imul(je,Kt)|0;var Ut=(k+(_=_+Math.imul(ve,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ve,fi)|0)+Math.imul(_e,ti)|0))<<13)|0;k=((b=b+Math.imul(_e,fi)|0)+(a>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul($e,$t),a=(a=Math.imul($e,Kt))+Math.imul(nt,$t)|0,b=Math.imul(nt,Kt);var lt=(k+(_=_+Math.imul(Ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(Ue,fi)|0)+Math.imul(je,ti)|0))<<13)|0;k=((b=b+Math.imul(je,fi)|0)+(a>>>13)|0)+(lt>>>26)|0,lt&=67108863;var re=(k+(_=Math.imul($e,ti))|0)+((8191&(a=(a=Math.imul($e,fi))+Math.imul(nt,ti)|0))<<13)|0;return k=((b=Math.imul(nt,fi))+(a>>>13)|0)+(re>>>26)|0,re&=67108863,A[0]=xn,A[1]=tn,A[2]=Vi,A[3]=Qi,A[4]=Xt,A[5]=St,A[6]=tt,A[7]=ot,A[8]=Mt,A[9]=Bt,A[10]=Ci,A[11]=Ti,A[12]=Hi,A[13]=Zi,A[14]=ln,A[15]=mn,A[16]=Ut,A[17]=lt,A[18]=re,0!==k&&(A[19]=k,m.length++),m};function W(T,n,c){return(new Q).mulp(T,n,c)}function Q(T,n){this.x=T,this.y=n}Math.imul||(j=V),l.prototype.mulTo=function(n,c){var m,d=this.length+n.length;return m=10===this.length&&10===n.length?j(this,n,c):d<63?V(this,n,c):d<1024?function Y(T,n,c){c.negative=n.negative^T.negative,c.length=T.length+n.length;for(var m=0,d=0,C=0;C>>26)|0)>>>26,A&=67108863}c.words[C]=k,m=A,A=d}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):W(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,d=0;d>=1;return d},Q.prototype.permute=function(n,c,m,d,C,A){for(var k=0;k>>=1)C++;return 1<>>=13),C>>>=13;for(A=2*c;A>=26,c+=d/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function I(T){for(var n=new Array(T.bitLength()),c=0;c>>d}return n}(n);if(0===c.length)return new l(1);for(var m=this,d=0;d=0);var C,c=n%26,m=(n-c)/26,d=67108863>>>26-c<<26-c;if(0!==c){var A=0;for(C=0;C>>26-c}A&&(this.words[C]=A,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),d=c?(c-c%26)/26:0;var C=n%26,A=Math.min((n-C)/26,this.length),k=67108863^67108863>>>C<A)for(this.length-=A,a=0;a=0&&(0!==b||a>=d);a--){var z=0|this.words[a];this.words[a]=b<<26-C|z>>>C,b=z&k}return _&&0!==b&&(_.words[_.length++]=b),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return x(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){x("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return x(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(x("number"==typeof n),x(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&A}for(;C>26,this.words[C+m]=67108863&A;if(0===k)return this.strip();for(x(-1===k),k=0,C=0;C>26,this.words[C]=67108863&A;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,d=this.clone(),C=n,A=0|C.words[C.length-1];0!=(m=26-this._countBits(A))&&(C=C.ushln(m),d.iushln(m),A=0|C.words[C.length-1]);var a,_=d.length-C.length;if("mod"!==c){(a=new l(null)).length=_+1,a.words=new Array(a.length);for(var b=0;b=0;N--){var q=67108864*(0|d.words[C.length+N])+(0|d.words[C.length+N-1]);for(q=Math.min(q/A|0,67108863),d._ishlnsubmul(C,q,N);0!==d.negative;)q--,d.negative=0,d._ishlnsubmul(C,1,N),d.isZero()||(d.negative^=1);a&&(a.words[N]=q)}return a&&a.strip(),d.strip(),"div"!==c&&0!==m&&d.iushrn(m),{div:a||null,mod:d}},l.prototype.divmod=function(n,c,m){return x(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,c),"mod"!==c&&(d=A.div.neg()),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:d,mod:C}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),c),"mod"!==c&&(d=A.div.neg()),{div:d,mod:A.mod}):this.negative&n.negative?(A=this.neg().divmod(n.neg(),c),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:A.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var d,C,A},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,d=n.ushrn(1),C=n.andln(1),A=m.cmp(d);return A<0||1===C&&0===A?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){x(n<=67108863);for(var c=(1<<26)%n,m=0,d=this.length-1;d>=0;d--)m=(c*m+(0|this.words[d]))%n;return m},l.prototype.idivn=function(n){x(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var d=(0|this.words[m])+67108864*c;this.words[m]=d/n|0,c=d%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){x(0===n.negative),x(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=new l(0),k=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var a=m.clone(),b=c.clone();!c.isZero();){for(var z=0,N=1;!(c.words[0]&N)&&z<26;++z,N<<=1);if(z>0)for(c.iushrn(z);z-- >0;)(d.isOdd()||C.isOdd())&&(d.iadd(a),C.isub(b)),d.iushrn(1),C.iushrn(1);for(var q=0,pe=1;!(m.words[0]&pe)&&q<26;++q,pe<<=1);if(q>0)for(m.iushrn(q);q-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(a),k.isub(b)),A.iushrn(1),k.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(A),C.isub(k)):(m.isub(c),A.isub(d),k.isub(C))}return{a:A,b:k,gcd:m.iushln(_)}},l.prototype._invmp=function(n){x(0===n.negative),x(!n.isZero());var z,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var k=0,_=1;!(c.words[0]&_)&&k<26;++k,_<<=1);if(k>0)for(c.iushrn(k);k-- >0;)d.isOdd()&&d.iadd(A),d.iushrn(1);for(var a=0,b=1;!(m.words[0]&b)&&a<26;++a,b<<=1);if(a>0)for(m.iushrn(a);a-- >0;)C.isOdd()&&C.iadd(A),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(C)):(m.isub(c),C.isub(d))}return(z=0===c.cmpn(1)?d:C).cmpn(0)<0&&z.iadd(n),z},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var d=0;c.isEven()&&m.isEven();d++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var A=c;c=m,m=A}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(d)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){x("number"==typeof n);var c=n%26,m=(n-c)/26,d=1<>>26,this.words[A]=k&=67108863}return 0!==C&&(this.words[A]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),x(n<=67108863,"Number is too big");var d=0|this.words[0];m=d===n?0:dn.length)return 1;if(this.length=0;m--){var d=0|this.words[m],C=0|n.words[m];if(d!==C){dC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Ce(n)},l.prototype.toRed=function(n){return x(!this.red,"Already a number in reduction context"),x(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return x(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return x(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return x(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return x(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return x(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return x(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return x(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return x(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return x(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return x(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return x(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return x(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return x(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ie(T,n){this.name=T,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ee(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function fe(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ne(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Ce(T){if("string"==typeof T){var n=l._prime(T);this.m=n.p,this.prime=n}else x(T.gtn(1),"modulus must be greater than 1"),this.m=T,this.prime=null}function le(T){Ce.call(this,T),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ie.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var d=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ie.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ie.prototype.imulK=function(n){return n.imul(this.k)},D(ee,ie),ee.prototype.split=function(n,c){for(var m=4194303,d=Math.min(n.length,9),C=0;C>>22,A=k}n.words[C-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ee.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=d}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ee;else if("p224"===n)c=new fe;else if("p192"===n)c=new ne;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Ce.prototype._verify1=function(n){x(0===n.negative,"red works only with positives"),x(n.red,"red works only with red numbers")},Ce.prototype._verify2=function(n,c){x(!(n.negative|c.negative),"red works only with positives"),x(n.red&&n.red===c.red,"red works only with red numbers")},Ce.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Ce.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Ce.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Ce.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Ce.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Ce.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Ce.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Ce.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Ce.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Ce.prototype.isqr=function(n){return this.imul(n,n.clone())},Ce.prototype.sqr=function(n){return this.mul(n,n)},Ce.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(x(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var d=this.m.subn(1),C=0;!d.isZero()&&0===d.andln(1);)C++,d.iushrn(1);x(!d.isZero());var A=new l(1).toRed(this),k=A.redNeg(),_=this.m.subn(1).iushrn(1),a=this.m.bitLength();for(a=new l(2*a*a).toRed(this);0!==this.pow(a,_).cmp(k);)a.redIAdd(k);for(var b=this.pow(a,d),z=this.pow(n,d.addn(1).iushrn(1)),N=this.pow(n,d),q=C;0!==N.cmp(A);){for(var pe=N,ze=0;0!==pe.cmp(A);ze++)pe=pe.redSqr();x(ze=0;C--){for(var b=c.words[C],z=a-1;z>=0;z--){var N=b>>z&1;A!==d[0]&&(A=this.sqr(A)),0!==N||0!==k?(k<<=1,k|=N,(4==++_||0===C&&0===z)&&(A=this.mul(A,d[k]),_=0,k=0)):_=0}a=26}return A},Ce.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Ce.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new le(n)},D(le,Ce),le.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},le.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},le.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},7211:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(4725),x=g(6636),D=g(5443),l=g(3247);function w(f){l.call(this,"digest"),this._hash=f}e(w,l),w.prototype._update=function(f){this._hash.update(f)},w.prototype._final=function(){return this._hash.digest()},Qe.exports=function(R){return"md5"===(R=R.toLowerCase())?new t:"rmd160"===R||"ripemd160"===R?new x:new w(D(R))}},3407:(Qe,te,g)=>{var e=g(4725);Qe.exports=function(t){return(new e).update(t).digest()}},6432:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(509),x=g(3247),D=g(7054).Buffer,l=g(3407),w=g(6636),f=g(5443),R=D.alloc(128);function h(S,y){x.call(this,"digest"),"string"==typeof y&&(y=D.from(y));var O="sha512"===S||"sha384"===S?128:64;this._alg=S,this._key=y,y.length>O?y=("rmd160"===S?new w:f(S)).update(y).digest():y.length{"use strict";var e=g(1993),t=g(7054).Buffer,x=g(3247),D=t.alloc(128),l=64;function w(f,R){x.call(this,"digest"),"string"==typeof R&&(R=t.from(R)),this._alg=f,this._key=R,R.length>l?R=f(R):R.length{"use strict";te.randomBytes=te.rng=te.pseudoRandomBytes=te.prng=g(3342),te.createHash=te.Hash=g(7211),te.createHmac=te.Hmac=g(6432);var e=g(9560),t=Object.keys(e),x=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(t);te.getHashes=function(){return x};var D=g(3397);te.pbkdf2=D.pbkdf2,te.pbkdf2Sync=D.pbkdf2Sync;var l=g(8862);te.Cipher=l.Cipher,te.createCipher=l.createCipher,te.Cipheriv=l.Cipheriv,te.createCipheriv=l.createCipheriv,te.Decipher=l.Decipher,te.createDecipher=l.createDecipher,te.Decipheriv=l.Decipheriv,te.createDecipheriv=l.createDecipheriv,te.getCiphers=l.getCiphers,te.listCiphers=l.listCiphers;var w=g(4377);te.DiffieHellmanGroup=w.DiffieHellmanGroup,te.createDiffieHellmanGroup=w.createDiffieHellmanGroup,te.getDiffieHellman=w.getDiffieHellman,te.createDiffieHellman=w.createDiffieHellman,te.DiffieHellman=w.DiffieHellman;var f=g(9143);te.createSign=f.createSign,te.Sign=f.Sign,te.createVerify=f.createVerify,te.Verify=f.Verify,te.createECDH=g(7303);var R=g(2965);te.publicEncrypt=R.publicEncrypt,te.privateEncrypt=R.privateEncrypt,te.publicDecrypt=R.publicDecrypt,te.privateDecrypt=R.privateDecrypt;var h=g(9682);te.randomFill=h.randomFill,te.randomFillSync=h.randomFillSync,te.createCredentials=function(){throw new Error("sorry, createCredentials is not implemented yet\nwe accept pull requests\nhttps://github.com/browserify/crypto-browserify")},te.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}},1549:(Qe,te,g)=>{"use strict";te.utils=g(5671),te.Cipher=g(219),te.DES=g(4166),te.CBC=g(8800),te.EDE=g(2122)},8800:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),x={};function D(w){e.equal(w.length,8,"Invalid IV length"),this.iv=new Array(8);for(var f=0;f{"use strict";var e=g(9210);function t(x){this.options=x,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0,this.padding=!1!==x.padding}Qe.exports=t,t.prototype._init=function(){},t.prototype.update=function(D){return 0===D.length?[]:"decrypt"===this.type?this._updateDecrypt(D):this._updateEncrypt(D)},t.prototype._buffer=function(D,l){for(var w=Math.min(this.buffer.length-this.bufferOff,D.length-l),f=0;f0;f--)l+=this._buffer(D,l),w+=this._flushBuffer(R,w);return l+=this._buffer(D,l),R},t.prototype.final=function(D){var l,w;return D&&(l=this.update(D)),w="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),l?l.concat(w):w},t.prototype._pad=function(D,l){if(0===l)return!1;for(;l{"use strict";var e=g(9210),t=g(1993),x=g(5671),D=g(219);function l(){this.tmp=new Array(2),this.keys=null}function w(R){D.call(this,R);var h=new l;this._desState=h,this.deriveKeys(h,R.key)}t(w,D),Qe.exports=w,w.create=function(h){return new w(h)};var f=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];w.prototype.deriveKeys=function(h,S){h.keys=new Array(32),e.equal(S.length,this.blockSize,"Invalid key length");var y=x.readUInt32BE(S,0),O=x.readUInt32BE(S,4);x.pc1(y,O,h.tmp,0),y=h.tmp[0],O=h.tmp[1];for(var I=0;I>>1];y=x.r28shl(y,V),O=x.r28shl(O,V),x.pc2(y,O,h.keys,I)}},w.prototype._update=function(h,S,y,O){var I=this._desState,V=x.readUInt32BE(h,S),j=x.readUInt32BE(h,S+4);x.ip(V,j,I.tmp,0),V=I.tmp[0],j=I.tmp[1],"encrypt"===this.type?this._encrypt(I,V,j,I.tmp,0):this._decrypt(I,V,j,I.tmp,0),j=I.tmp[1],x.writeUInt32BE(y,V=I.tmp[0],O),x.writeUInt32BE(y,j,O+4)},w.prototype._pad=function(h,S){if(!1===this.padding)return!1;for(var y=h.length-S,O=S;O>>0,V=ee}x.rip(j,V,O,I)},w.prototype._decrypt=function(h,S,y,O,I){for(var V=y,j=S,Y=h.keys.length-2;Y>=0;Y-=2){var W=h.keys[Y],Q=h.keys[Y+1];x.expand(V,h.tmp,0);var J=x.substitute(W^=h.tmp[0],Q^=h.tmp[1]),ee=V;V=(j^x.permute(J))>>>0,j=ee}x.rip(V,j,O,I)}},2122:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),x=g(219),D=g(4166);function l(f,R){e.equal(R.length,24,"Invalid key length");var h=R.slice(0,8),S=R.slice(8,16),y=R.slice(16,24);this.ciphers="encrypt"===f?[D.create({type:"encrypt",key:h}),D.create({type:"decrypt",key:S}),D.create({type:"encrypt",key:y})]:[D.create({type:"decrypt",key:y}),D.create({type:"encrypt",key:S}),D.create({type:"decrypt",key:h})]}function w(f){x.call(this,f);var R=new l(this.type,this.options.key);this._edeState=R}t(w,x),Qe.exports=w,w.create=function(R){return new w(R)},w.prototype._update=function(R,h,S,y){var O=this._edeState;O.ciphers[0]._update(R,h,S,y),O.ciphers[1]._update(S,y,S,y),O.ciphers[2]._update(S,y,S,y)},w.prototype._pad=D.prototype._pad,w.prototype._unpad=D.prototype._unpad},5671:(Qe,te)=>{"use strict";te.readUInt32BE=function(D,l){return(D[0+l]<<24|D[1+l]<<16|D[2+l]<<8|D[3+l])>>>0},te.writeUInt32BE=function(D,l,w){D[0+w]=l>>>24,D[1+w]=l>>>16&255,D[2+w]=l>>>8&255,D[3+w]=255&l},te.ip=function(D,l,w,f){for(var R=0,h=0,S=6;S>=0;S-=2){for(var y=0;y<=24;y+=8)R<<=1,R|=l>>>y+S&1;for(y=0;y<=24;y+=8)R<<=1,R|=D>>>y+S&1}for(S=6;S>=0;S-=2){for(y=1;y<=25;y+=8)h<<=1,h|=l>>>y+S&1;for(y=1;y<=25;y+=8)h<<=1,h|=D>>>y+S&1}w[f+0]=R>>>0,w[f+1]=h>>>0},te.rip=function(D,l,w,f){for(var R=0,h=0,S=0;S<4;S++)for(var y=24;y>=0;y-=8)R<<=1,R|=l>>>y+S&1,R<<=1,R|=D>>>y+S&1;for(S=4;S<8;S++)for(y=24;y>=0;y-=8)h<<=1,h|=l>>>y+S&1,h<<=1,h|=D>>>y+S&1;w[f+0]=R>>>0,w[f+1]=h>>>0},te.pc1=function(D,l,w,f){for(var R=0,h=0,S=7;S>=5;S--){for(var y=0;y<=24;y+=8)R<<=1,R|=l>>y+S&1;for(y=0;y<=24;y+=8)R<<=1,R|=D>>y+S&1}for(y=0;y<=24;y+=8)R<<=1,R|=l>>y+S&1;for(S=1;S<=3;S++){for(y=0;y<=24;y+=8)h<<=1,h|=l>>y+S&1;for(y=0;y<=24;y+=8)h<<=1,h|=D>>y+S&1}for(y=0;y<=24;y+=8)h<<=1,h|=D>>y+S&1;w[f+0]=R>>>0,w[f+1]=h>>>0},te.r28shl=function(D,l){return D<>>28-l};var g=[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];te.pc2=function(D,l,w,f){for(var R=0,h=0,S=g.length>>>1,y=0;y>>g[y]&1;for(y=S;y>>g[y]&1;w[f+0]=R>>>0,w[f+1]=h>>>0},te.expand=function(D,l,w){var f=0,R=0;f=(1&D)<<5|D>>>27;for(var h=23;h>=15;h-=4)f<<=6,f|=D>>>h&63;for(h=11;h>=3;h-=4)R|=D>>>h&63,R<<=6;R|=(31&D)<<1|D>>>31,l[w+0]=f>>>0,l[w+1]=R>>>0};var e=[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];te.substitute=function(D,l){for(var w=0,f=0;f<4;f++)w<<=4,w|=e[64*f+(D>>>18-6*f&63)];for(f=0;f<4;f++)w<<=4,w|=e[256+64*f+(l>>>18-6*f&63)];return w>>>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];te.permute=function(D){for(var l=0,w=0;w>>t[w]&1;return l>>>0},te.padSplit=function(D,l,w){for(var f=D.toString(2);f.length{var e=g(2727),t=g(3241),x=g(4593),l={binary:!0,hex:!0,base64:!0};te.DiffieHellmanGroup=te.createDiffieHellmanGroup=te.getDiffieHellman=function D(f){var R=new Buffer(t[f].prime,"hex"),h=new Buffer(t[f].gen,"hex");return new x(R,h)},te.createDiffieHellman=te.DiffieHellman=function w(f,R,h,S){return Buffer.isBuffer(R)||void 0===l[R]?w(f,"binary",R,h):(R=R||"binary",S=S||"binary",h=h||new Buffer([2]),Buffer.isBuffer(h)||(h=new Buffer(h,S)),"number"==typeof f?new x(e(f,h),h,!0):(Buffer.isBuffer(f)||(f=new Buffer(f,R)),new x(f,h,!0)))}},4593:(Qe,te,g)=>{var e=g(8280),x=new(g(3459)),D=new e(24),l=new e(11),w=new e(10),f=new e(3),R=new e(7),h=g(2727),S=g(3342);function y(W,Q){return Q=Q||"utf8",Buffer.isBuffer(W)||(W=new Buffer(W,Q)),this._pub=new e(W),this}function O(W,Q){return Q=Q||"utf8",Buffer.isBuffer(W)||(W=new Buffer(W,Q)),this._priv=new e(W),this}Qe.exports=j;var I={};function j(W,Q,J){this.setGenerator(Q),this.__prime=new e(W),this._prime=e.mont(this.__prime),this._primeLen=W.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,J?(this.setPublicKey=y,this.setPrivateKey=O):this._primeCode=8}function Y(W,Q){var J=new Buffer(W.toArray());return Q?J.toString(Q):J}Object.defineProperty(j.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function V(W,Q){var J=Q.toString("hex"),ie=[J,W.toString(16)].join("_");if(ie in I)return I[ie];var fe,ee=0;if(W.isEven()||!h.simpleSieve||!h.fermatTest(W)||!x.test(W))return ee+=1,I[ie]=ee+="02"===J||"05"===J?8:4,ee;switch(x.test(W.shrn(1))||(ee+=2),J){case"02":W.mod(D).cmp(l)&&(ee+=8);break;case"05":(fe=W.mod(w)).cmp(f)&&fe.cmp(R)&&(ee+=8);break;default:ee+=4}return I[ie]=ee,ee}(this.__prime,this.__gen)),this._primeCode}}),j.prototype.generateKeys=function(){return this._priv||(this._priv=new e(S(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},j.prototype.computeSecret=function(W){var Q=(W=(W=new e(W)).toRed(this._prime)).redPow(this._priv).fromRed(),J=new Buffer(Q.toArray()),ie=this.getPrime();if(J.length{var e=g(3342);Qe.exports=ee,ee.simpleSieve=J,ee.fermatTest=ie;var t=g(8280),x=new t(24),l=new(g(3459)),w=new t(1),f=new t(2),R=new t(5),y=(new t(16),new t(8),new t(10)),O=new t(3),V=(new t(7),new t(11)),j=new t(4),W=(new t(12),null);function J(fe){for(var ne=function Q(){if(null!==W)return W;var ne=[];ne[0]=2;for(var Me=1,Ce=3;Ce<1048576;Ce+=2){for(var le=Math.ceil(Math.sqrt(Ce)),T=0;Tfe;)Me.ishrn(1);if(Me.isEven()&&Me.iadd(w),Me.testn(1)||Me.iadd(f),ne.cmp(f)){if(!ne.cmp(R))for(;Me.mod(y).cmp(O);)Me.iadd(j)}else for(;Me.mod(x).cmp(V);)Me.iadd(j);if(J(Ce=Me.shrn(1))&&J(Me)&&ie(Ce)&&ie(Me)&&l.test(Ce)&&l.test(Me))return Me}}},8280:function(Qe,te,g){!function(e,t){"use strict";function x(T,n){if(!T)throw new Error(n||"Assertion failed")}function D(T,n){T.super_=n;var c=function(){};c.prototype=n.prototype,T.prototype=new c,T.prototype.constructor=T}function l(T,n,c){if(l.isBN(T))return T;this.negative=0,this.words=null,this.length=0,this.red=null,null!==T&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(T||0,n||10,c||"be"))}var w;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{w=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(6089).Buffer}catch{}function f(T,n){var c=T.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function R(T,n,c){var m=f(T,c);return c-1>=n&&(m|=f(T,c-1)<<4),m}function h(T,n,c,m){for(var d=0,C=Math.min(T.length,c),A=n;A=49?k-49+10:k>=17?k-17+10:k}return d}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),x(c===(0|c)&&c>=2&&c<=36);var d=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(d++,this.negative=1),d=0;d-=3)this.words[C]|=(A=n[d]|n[d-1]<<8|n[d-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);else if("le"===m)for(d=0,C=0;d>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var d=0;d=c;d-=2)k=R(n,c,d)<=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;else for(d=(n.length-c)%2==0?c+1:c;d=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var d=0,C=1;C<=67108863;C*=c)d++;d--,C=C/c|0;for(var A=n.length-m,k=A%d,_=Math.min(A,A-k)+m,a=0,b=m;b<_;b+=d)a=h(n,b,b+d,c),this.imuln(C),this.words[0]+a<67108864?this.words[0]+=a:this._iaddn(a);if(0!==k){var z=1;for(a=h(n,b,n.length,c),b=0;b1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var S=["","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"],y=[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],O=[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 V(T,n,c){c.negative=n.negative^T.negative;var m=T.length+n.length|0;c.length=m,m=m-1|0;var d=0|T.words[0],C=0|n.words[0],A=d*C,_=A/67108864|0;c.words[0]=67108863&A;for(var a=1;a>>26,z=67108863&_,N=Math.min(a,n.length-1),q=Math.max(0,a-T.length+1);q<=N;q++)b+=(A=(d=0|T.words[a-q|0])*(C=0|n.words[q])+z)/67108864|0,z=67108863&A;c.words[a]=0|z,_=0|b}return 0!==_?c.words[a]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var d=0,C=0,A=0;A>>24-d&16777215)||A!==this.length-1?S[6-_.length]+_+m:_+m,(d+=2)>=26&&(d-=26,A--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var a=y[n],b=O[n];m="";var z=this.clone();for(z.negative=0;!z.isZero();){var N=z.modn(b).toString(n);m=(z=z.idivn(b)).isZero()?N+m:S[a-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}x(!1,"Base should be between 2 and 36")},l.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&&x(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return x(typeof w<"u"),this.toArrayLike(w,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var d=this.byteLength(),C=m||Math.max(1,d);x(d<=C,"byte array longer than desired length"),x(C>0,"Requested array length <= 0"),this.strip();var _,a,A="le"===c,k=new n(C),b=this.clone();if(A){for(a=0;!b.isZero();a++)_=b.andln(255),b.iushrn(8),k[a]=_;for(;a=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var d=0;dn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){x("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var d=0;d0&&(this.words[d]=~this.words[d]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){x("number"==typeof n&&n>=0);var m=n/26|0,d=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,d=n):(m=n,d=this);for(var C=0,A=0;A>>26;for(;0!==C&&A>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var d,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(d=this,C=n):(d=n,C=this);for(var A=0,k=0;k>26,this.words[k]=67108863&c;for(;0!==A&&k>26,this.words[k]=67108863&c;if(0===A&&k>>13,pe=0|d[1],ze=8191&pe,Xe=pe>>>13,We=0|d[2],oe=8191&We,X=We>>>13,se=0|d[3],ae=8191&se,he=se>>>13,Ie=0|d[4],st=8191&Ie,me=Ie>>>13,Ee=0|d[5],ue=8191&Ee,Be=Ee>>>13,Ct=0|d[6],ct=8191&Ct,dt=Ct>>>13,Yt=0|d[7],ve=8191&Yt,_e=Yt>>>13,we=0|d[8],Ue=8191&we,je=we>>>13,vt=0|d[9],$e=8191&vt,nt=vt>>>13,qt=0|C[0],Nt=8191&qt,yt=qt>>>13,jt=0|C[1],Je=8191&jt,et=jt>>>13,Ae=0|C[2],It=8191&Ae,Qt=Ae>>>13,Tt=0|C[3],xt=8191&Tt,Se=Tt>>>13,Te=0|C[4],ce=8191&Te,Z=Te>>>13,Re=0|C[5],Pe=8191&Re,pt=Re>>>13,Ke=0|C[6],Fe=8191&Ke,Ge=Ke>>>13,qe=0|C[7],at=8191&qe,Lt=qe>>>13,pi=0|C[8],$t=8191&pi,Kt=pi>>>13,Ui=0|C[9],ti=8191&Ui,fi=Ui>>>13;m.negative=n.negative^c.negative,m.length=19;var xn=(k+(_=Math.imul(N,Nt))|0)+((8191&(a=(a=Math.imul(N,yt))+Math.imul(q,Nt)|0))<<13)|0;k=((b=Math.imul(q,yt))+(a>>>13)|0)+(xn>>>26)|0,xn&=67108863,_=Math.imul(ze,Nt),a=(a=Math.imul(ze,yt))+Math.imul(Xe,Nt)|0,b=Math.imul(Xe,yt);var tn=(k+(_=_+Math.imul(N,Je)|0)|0)+((8191&(a=(a=a+Math.imul(N,et)|0)+Math.imul(q,Je)|0))<<13)|0;k=((b=b+Math.imul(q,et)|0)+(a>>>13)|0)+(tn>>>26)|0,tn&=67108863,_=Math.imul(oe,Nt),a=(a=Math.imul(oe,yt))+Math.imul(X,Nt)|0,b=Math.imul(X,yt),_=_+Math.imul(ze,Je)|0,a=(a=a+Math.imul(ze,et)|0)+Math.imul(Xe,Je)|0,b=b+Math.imul(Xe,et)|0;var Vi=(k+(_=_+Math.imul(N,It)|0)|0)+((8191&(a=(a=a+Math.imul(N,Qt)|0)+Math.imul(q,It)|0))<<13)|0;k=((b=b+Math.imul(q,Qt)|0)+(a>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,_=Math.imul(ae,Nt),a=(a=Math.imul(ae,yt))+Math.imul(he,Nt)|0,b=Math.imul(he,yt),_=_+Math.imul(oe,Je)|0,a=(a=a+Math.imul(oe,et)|0)+Math.imul(X,Je)|0,b=b+Math.imul(X,et)|0,_=_+Math.imul(ze,It)|0,a=(a=a+Math.imul(ze,Qt)|0)+Math.imul(Xe,It)|0,b=b+Math.imul(Xe,Qt)|0;var Qi=(k+(_=_+Math.imul(N,xt)|0)|0)+((8191&(a=(a=a+Math.imul(N,Se)|0)+Math.imul(q,xt)|0))<<13)|0;k=((b=b+Math.imul(q,Se)|0)+(a>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(st,Nt),a=(a=Math.imul(st,yt))+Math.imul(me,Nt)|0,b=Math.imul(me,yt),_=_+Math.imul(ae,Je)|0,a=(a=a+Math.imul(ae,et)|0)+Math.imul(he,Je)|0,b=b+Math.imul(he,et)|0,_=_+Math.imul(oe,It)|0,a=(a=a+Math.imul(oe,Qt)|0)+Math.imul(X,It)|0,b=b+Math.imul(X,Qt)|0,_=_+Math.imul(ze,xt)|0,a=(a=a+Math.imul(ze,Se)|0)+Math.imul(Xe,xt)|0,b=b+Math.imul(Xe,Se)|0;var Xt=(k+(_=_+Math.imul(N,ce)|0)|0)+((8191&(a=(a=a+Math.imul(N,Z)|0)+Math.imul(q,ce)|0))<<13)|0;k=((b=b+Math.imul(q,Z)|0)+(a>>>13)|0)+(Xt>>>26)|0,Xt&=67108863,_=Math.imul(ue,Nt),a=(a=Math.imul(ue,yt))+Math.imul(Be,Nt)|0,b=Math.imul(Be,yt),_=_+Math.imul(st,Je)|0,a=(a=a+Math.imul(st,et)|0)+Math.imul(me,Je)|0,b=b+Math.imul(me,et)|0,_=_+Math.imul(ae,It)|0,a=(a=a+Math.imul(ae,Qt)|0)+Math.imul(he,It)|0,b=b+Math.imul(he,Qt)|0,_=_+Math.imul(oe,xt)|0,a=(a=a+Math.imul(oe,Se)|0)+Math.imul(X,xt)|0,b=b+Math.imul(X,Se)|0,_=_+Math.imul(ze,ce)|0,a=(a=a+Math.imul(ze,Z)|0)+Math.imul(Xe,ce)|0,b=b+Math.imul(Xe,Z)|0;var St=(k+(_=_+Math.imul(N,Pe)|0)|0)+((8191&(a=(a=a+Math.imul(N,pt)|0)+Math.imul(q,Pe)|0))<<13)|0;k=((b=b+Math.imul(q,pt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,_=Math.imul(ct,Nt),a=(a=Math.imul(ct,yt))+Math.imul(dt,Nt)|0,b=Math.imul(dt,yt),_=_+Math.imul(ue,Je)|0,a=(a=a+Math.imul(ue,et)|0)+Math.imul(Be,Je)|0,b=b+Math.imul(Be,et)|0,_=_+Math.imul(st,It)|0,a=(a=a+Math.imul(st,Qt)|0)+Math.imul(me,It)|0,b=b+Math.imul(me,Qt)|0,_=_+Math.imul(ae,xt)|0,a=(a=a+Math.imul(ae,Se)|0)+Math.imul(he,xt)|0,b=b+Math.imul(he,Se)|0,_=_+Math.imul(oe,ce)|0,a=(a=a+Math.imul(oe,Z)|0)+Math.imul(X,ce)|0,b=b+Math.imul(X,Z)|0,_=_+Math.imul(ze,Pe)|0,a=(a=a+Math.imul(ze,pt)|0)+Math.imul(Xe,Pe)|0,b=b+Math.imul(Xe,pt)|0;var tt=(k+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(a=(a=a+Math.imul(N,Ge)|0)+Math.imul(q,Fe)|0))<<13)|0;k=((b=b+Math.imul(q,Ge)|0)+(a>>>13)|0)+(tt>>>26)|0,tt&=67108863,_=Math.imul(ve,Nt),a=(a=Math.imul(ve,yt))+Math.imul(_e,Nt)|0,b=Math.imul(_e,yt),_=_+Math.imul(ct,Je)|0,a=(a=a+Math.imul(ct,et)|0)+Math.imul(dt,Je)|0,b=b+Math.imul(dt,et)|0,_=_+Math.imul(ue,It)|0,a=(a=a+Math.imul(ue,Qt)|0)+Math.imul(Be,It)|0,b=b+Math.imul(Be,Qt)|0,_=_+Math.imul(st,xt)|0,a=(a=a+Math.imul(st,Se)|0)+Math.imul(me,xt)|0,b=b+Math.imul(me,Se)|0,_=_+Math.imul(ae,ce)|0,a=(a=a+Math.imul(ae,Z)|0)+Math.imul(he,ce)|0,b=b+Math.imul(he,Z)|0,_=_+Math.imul(oe,Pe)|0,a=(a=a+Math.imul(oe,pt)|0)+Math.imul(X,Pe)|0,b=b+Math.imul(X,pt)|0,_=_+Math.imul(ze,Fe)|0,a=(a=a+Math.imul(ze,Ge)|0)+Math.imul(Xe,Fe)|0,b=b+Math.imul(Xe,Ge)|0;var ot=(k+(_=_+Math.imul(N,at)|0)|0)+((8191&(a=(a=a+Math.imul(N,Lt)|0)+Math.imul(q,at)|0))<<13)|0;k=((b=b+Math.imul(q,Lt)|0)+(a>>>13)|0)+(ot>>>26)|0,ot&=67108863,_=Math.imul(Ue,Nt),a=(a=Math.imul(Ue,yt))+Math.imul(je,Nt)|0,b=Math.imul(je,yt),_=_+Math.imul(ve,Je)|0,a=(a=a+Math.imul(ve,et)|0)+Math.imul(_e,Je)|0,b=b+Math.imul(_e,et)|0,_=_+Math.imul(ct,It)|0,a=(a=a+Math.imul(ct,Qt)|0)+Math.imul(dt,It)|0,b=b+Math.imul(dt,Qt)|0,_=_+Math.imul(ue,xt)|0,a=(a=a+Math.imul(ue,Se)|0)+Math.imul(Be,xt)|0,b=b+Math.imul(Be,Se)|0,_=_+Math.imul(st,ce)|0,a=(a=a+Math.imul(st,Z)|0)+Math.imul(me,ce)|0,b=b+Math.imul(me,Z)|0,_=_+Math.imul(ae,Pe)|0,a=(a=a+Math.imul(ae,pt)|0)+Math.imul(he,Pe)|0,b=b+Math.imul(he,pt)|0,_=_+Math.imul(oe,Fe)|0,a=(a=a+Math.imul(oe,Ge)|0)+Math.imul(X,Fe)|0,b=b+Math.imul(X,Ge)|0,_=_+Math.imul(ze,at)|0,a=(a=a+Math.imul(ze,Lt)|0)+Math.imul(Xe,at)|0,b=b+Math.imul(Xe,Lt)|0;var Mt=(k+(_=_+Math.imul(N,$t)|0)|0)+((8191&(a=(a=a+Math.imul(N,Kt)|0)+Math.imul(q,$t)|0))<<13)|0;k=((b=b+Math.imul(q,Kt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul($e,Nt),a=(a=Math.imul($e,yt))+Math.imul(nt,Nt)|0,b=Math.imul(nt,yt),_=_+Math.imul(Ue,Je)|0,a=(a=a+Math.imul(Ue,et)|0)+Math.imul(je,Je)|0,b=b+Math.imul(je,et)|0,_=_+Math.imul(ve,It)|0,a=(a=a+Math.imul(ve,Qt)|0)+Math.imul(_e,It)|0,b=b+Math.imul(_e,Qt)|0,_=_+Math.imul(ct,xt)|0,a=(a=a+Math.imul(ct,Se)|0)+Math.imul(dt,xt)|0,b=b+Math.imul(dt,Se)|0,_=_+Math.imul(ue,ce)|0,a=(a=a+Math.imul(ue,Z)|0)+Math.imul(Be,ce)|0,b=b+Math.imul(Be,Z)|0,_=_+Math.imul(st,Pe)|0,a=(a=a+Math.imul(st,pt)|0)+Math.imul(me,Pe)|0,b=b+Math.imul(me,pt)|0,_=_+Math.imul(ae,Fe)|0,a=(a=a+Math.imul(ae,Ge)|0)+Math.imul(he,Fe)|0,b=b+Math.imul(he,Ge)|0,_=_+Math.imul(oe,at)|0,a=(a=a+Math.imul(oe,Lt)|0)+Math.imul(X,at)|0,b=b+Math.imul(X,Lt)|0,_=_+Math.imul(ze,$t)|0,a=(a=a+Math.imul(ze,Kt)|0)+Math.imul(Xe,$t)|0,b=b+Math.imul(Xe,Kt)|0;var Bt=(k+(_=_+Math.imul(N,ti)|0)|0)+((8191&(a=(a=a+Math.imul(N,fi)|0)+Math.imul(q,ti)|0))<<13)|0;k=((b=b+Math.imul(q,fi)|0)+(a>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,_=Math.imul($e,Je),a=(a=Math.imul($e,et))+Math.imul(nt,Je)|0,b=Math.imul(nt,et),_=_+Math.imul(Ue,It)|0,a=(a=a+Math.imul(Ue,Qt)|0)+Math.imul(je,It)|0,b=b+Math.imul(je,Qt)|0,_=_+Math.imul(ve,xt)|0,a=(a=a+Math.imul(ve,Se)|0)+Math.imul(_e,xt)|0,b=b+Math.imul(_e,Se)|0,_=_+Math.imul(ct,ce)|0,a=(a=a+Math.imul(ct,Z)|0)+Math.imul(dt,ce)|0,b=b+Math.imul(dt,Z)|0,_=_+Math.imul(ue,Pe)|0,a=(a=a+Math.imul(ue,pt)|0)+Math.imul(Be,Pe)|0,b=b+Math.imul(Be,pt)|0,_=_+Math.imul(st,Fe)|0,a=(a=a+Math.imul(st,Ge)|0)+Math.imul(me,Fe)|0,b=b+Math.imul(me,Ge)|0,_=_+Math.imul(ae,at)|0,a=(a=a+Math.imul(ae,Lt)|0)+Math.imul(he,at)|0,b=b+Math.imul(he,Lt)|0,_=_+Math.imul(oe,$t)|0,a=(a=a+Math.imul(oe,Kt)|0)+Math.imul(X,$t)|0,b=b+Math.imul(X,Kt)|0;var Ci=(k+(_=_+Math.imul(ze,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ze,fi)|0)+Math.imul(Xe,ti)|0))<<13)|0;k=((b=b+Math.imul(Xe,fi)|0)+(a>>>13)|0)+(Ci>>>26)|0,Ci&=67108863,_=Math.imul($e,It),a=(a=Math.imul($e,Qt))+Math.imul(nt,It)|0,b=Math.imul(nt,Qt),_=_+Math.imul(Ue,xt)|0,a=(a=a+Math.imul(Ue,Se)|0)+Math.imul(je,xt)|0,b=b+Math.imul(je,Se)|0,_=_+Math.imul(ve,ce)|0,a=(a=a+Math.imul(ve,Z)|0)+Math.imul(_e,ce)|0,b=b+Math.imul(_e,Z)|0,_=_+Math.imul(ct,Pe)|0,a=(a=a+Math.imul(ct,pt)|0)+Math.imul(dt,Pe)|0,b=b+Math.imul(dt,pt)|0,_=_+Math.imul(ue,Fe)|0,a=(a=a+Math.imul(ue,Ge)|0)+Math.imul(Be,Fe)|0,b=b+Math.imul(Be,Ge)|0,_=_+Math.imul(st,at)|0,a=(a=a+Math.imul(st,Lt)|0)+Math.imul(me,at)|0,b=b+Math.imul(me,Lt)|0,_=_+Math.imul(ae,$t)|0,a=(a=a+Math.imul(ae,Kt)|0)+Math.imul(he,$t)|0,b=b+Math.imul(he,Kt)|0;var Ti=(k+(_=_+Math.imul(oe,ti)|0)|0)+((8191&(a=(a=a+Math.imul(oe,fi)|0)+Math.imul(X,ti)|0))<<13)|0;k=((b=b+Math.imul(X,fi)|0)+(a>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,_=Math.imul($e,xt),a=(a=Math.imul($e,Se))+Math.imul(nt,xt)|0,b=Math.imul(nt,Se),_=_+Math.imul(Ue,ce)|0,a=(a=a+Math.imul(Ue,Z)|0)+Math.imul(je,ce)|0,b=b+Math.imul(je,Z)|0,_=_+Math.imul(ve,Pe)|0,a=(a=a+Math.imul(ve,pt)|0)+Math.imul(_e,Pe)|0,b=b+Math.imul(_e,pt)|0,_=_+Math.imul(ct,Fe)|0,a=(a=a+Math.imul(ct,Ge)|0)+Math.imul(dt,Fe)|0,b=b+Math.imul(dt,Ge)|0,_=_+Math.imul(ue,at)|0,a=(a=a+Math.imul(ue,Lt)|0)+Math.imul(Be,at)|0,b=b+Math.imul(Be,Lt)|0,_=_+Math.imul(st,$t)|0,a=(a=a+Math.imul(st,Kt)|0)+Math.imul(me,$t)|0,b=b+Math.imul(me,Kt)|0;var Hi=(k+(_=_+Math.imul(ae,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ae,fi)|0)+Math.imul(he,ti)|0))<<13)|0;k=((b=b+Math.imul(he,fi)|0)+(a>>>13)|0)+(Hi>>>26)|0,Hi&=67108863,_=Math.imul($e,ce),a=(a=Math.imul($e,Z))+Math.imul(nt,ce)|0,b=Math.imul(nt,Z),_=_+Math.imul(Ue,Pe)|0,a=(a=a+Math.imul(Ue,pt)|0)+Math.imul(je,Pe)|0,b=b+Math.imul(je,pt)|0,_=_+Math.imul(ve,Fe)|0,a=(a=a+Math.imul(ve,Ge)|0)+Math.imul(_e,Fe)|0,b=b+Math.imul(_e,Ge)|0,_=_+Math.imul(ct,at)|0,a=(a=a+Math.imul(ct,Lt)|0)+Math.imul(dt,at)|0,b=b+Math.imul(dt,Lt)|0,_=_+Math.imul(ue,$t)|0,a=(a=a+Math.imul(ue,Kt)|0)+Math.imul(Be,$t)|0,b=b+Math.imul(Be,Kt)|0;var Zi=(k+(_=_+Math.imul(st,ti)|0)|0)+((8191&(a=(a=a+Math.imul(st,fi)|0)+Math.imul(me,ti)|0))<<13)|0;k=((b=b+Math.imul(me,fi)|0)+(a>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul($e,Pe),a=(a=Math.imul($e,pt))+Math.imul(nt,Pe)|0,b=Math.imul(nt,pt),_=_+Math.imul(Ue,Fe)|0,a=(a=a+Math.imul(Ue,Ge)|0)+Math.imul(je,Fe)|0,b=b+Math.imul(je,Ge)|0,_=_+Math.imul(ve,at)|0,a=(a=a+Math.imul(ve,Lt)|0)+Math.imul(_e,at)|0,b=b+Math.imul(_e,Lt)|0,_=_+Math.imul(ct,$t)|0,a=(a=a+Math.imul(ct,Kt)|0)+Math.imul(dt,$t)|0,b=b+Math.imul(dt,Kt)|0;var ln=(k+(_=_+Math.imul(ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ue,fi)|0)+Math.imul(Be,ti)|0))<<13)|0;k=((b=b+Math.imul(Be,fi)|0)+(a>>>13)|0)+(ln>>>26)|0,ln&=67108863,_=Math.imul($e,Fe),a=(a=Math.imul($e,Ge))+Math.imul(nt,Fe)|0,b=Math.imul(nt,Ge),_=_+Math.imul(Ue,at)|0,a=(a=a+Math.imul(Ue,Lt)|0)+Math.imul(je,at)|0,b=b+Math.imul(je,Lt)|0,_=_+Math.imul(ve,$t)|0,a=(a=a+Math.imul(ve,Kt)|0)+Math.imul(_e,$t)|0,b=b+Math.imul(_e,Kt)|0;var mn=(k+(_=_+Math.imul(ct,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ct,fi)|0)+Math.imul(dt,ti)|0))<<13)|0;k=((b=b+Math.imul(dt,fi)|0)+(a>>>13)|0)+(mn>>>26)|0,mn&=67108863,_=Math.imul($e,at),a=(a=Math.imul($e,Lt))+Math.imul(nt,at)|0,b=Math.imul(nt,Lt),_=_+Math.imul(Ue,$t)|0,a=(a=a+Math.imul(Ue,Kt)|0)+Math.imul(je,$t)|0,b=b+Math.imul(je,Kt)|0;var Ut=(k+(_=_+Math.imul(ve,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ve,fi)|0)+Math.imul(_e,ti)|0))<<13)|0;k=((b=b+Math.imul(_e,fi)|0)+(a>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul($e,$t),a=(a=Math.imul($e,Kt))+Math.imul(nt,$t)|0,b=Math.imul(nt,Kt);var lt=(k+(_=_+Math.imul(Ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(Ue,fi)|0)+Math.imul(je,ti)|0))<<13)|0;k=((b=b+Math.imul(je,fi)|0)+(a>>>13)|0)+(lt>>>26)|0,lt&=67108863;var re=(k+(_=Math.imul($e,ti))|0)+((8191&(a=(a=Math.imul($e,fi))+Math.imul(nt,ti)|0))<<13)|0;return k=((b=Math.imul(nt,fi))+(a>>>13)|0)+(re>>>26)|0,re&=67108863,A[0]=xn,A[1]=tn,A[2]=Vi,A[3]=Qi,A[4]=Xt,A[5]=St,A[6]=tt,A[7]=ot,A[8]=Mt,A[9]=Bt,A[10]=Ci,A[11]=Ti,A[12]=Hi,A[13]=Zi,A[14]=ln,A[15]=mn,A[16]=Ut,A[17]=lt,A[18]=re,0!==k&&(A[19]=k,m.length++),m};function W(T,n,c){return(new Q).mulp(T,n,c)}function Q(T,n){this.x=T,this.y=n}Math.imul||(j=V),l.prototype.mulTo=function(n,c){var m,d=this.length+n.length;return m=10===this.length&&10===n.length?j(this,n,c):d<63?V(this,n,c):d<1024?function Y(T,n,c){c.negative=n.negative^T.negative,c.length=T.length+n.length;for(var m=0,d=0,C=0;C>>26)|0)>>>26,A&=67108863}c.words[C]=k,m=A,A=d}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):W(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,d=0;d>=1;return d},Q.prototype.permute=function(n,c,m,d,C,A){for(var k=0;k>>=1)C++;return 1<>>=13),C>>>=13;for(A=2*c;A>=26,c+=d/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function I(T){for(var n=new Array(T.bitLength()),c=0;c>>d}return n}(n);if(0===c.length)return new l(1);for(var m=this,d=0;d=0);var C,c=n%26,m=(n-c)/26,d=67108863>>>26-c<<26-c;if(0!==c){var A=0;for(C=0;C>>26-c}A&&(this.words[C]=A,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),d=c?(c-c%26)/26:0;var C=n%26,A=Math.min((n-C)/26,this.length),k=67108863^67108863>>>C<A)for(this.length-=A,a=0;a=0&&(0!==b||a>=d);a--){var z=0|this.words[a];this.words[a]=b<<26-C|z>>>C,b=z&k}return _&&0!==b&&(_.words[_.length++]=b),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return x(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){x("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return x(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(x("number"==typeof n),x(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&A}for(;C>26,this.words[C+m]=67108863&A;if(0===k)return this.strip();for(x(-1===k),k=0,C=0;C>26,this.words[C]=67108863&A;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,d=this.clone(),C=n,A=0|C.words[C.length-1];0!=(m=26-this._countBits(A))&&(C=C.ushln(m),d.iushln(m),A=0|C.words[C.length-1]);var a,_=d.length-C.length;if("mod"!==c){(a=new l(null)).length=_+1,a.words=new Array(a.length);for(var b=0;b=0;N--){var q=67108864*(0|d.words[C.length+N])+(0|d.words[C.length+N-1]);for(q=Math.min(q/A|0,67108863),d._ishlnsubmul(C,q,N);0!==d.negative;)q--,d.negative=0,d._ishlnsubmul(C,1,N),d.isZero()||(d.negative^=1);a&&(a.words[N]=q)}return a&&a.strip(),d.strip(),"div"!==c&&0!==m&&d.iushrn(m),{div:a||null,mod:d}},l.prototype.divmod=function(n,c,m){return x(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,c),"mod"!==c&&(d=A.div.neg()),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:d,mod:C}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),c),"mod"!==c&&(d=A.div.neg()),{div:d,mod:A.mod}):this.negative&n.negative?(A=this.neg().divmod(n.neg(),c),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:A.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var d,C,A},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,d=n.ushrn(1),C=n.andln(1),A=m.cmp(d);return A<0||1===C&&0===A?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){x(n<=67108863);for(var c=(1<<26)%n,m=0,d=this.length-1;d>=0;d--)m=(c*m+(0|this.words[d]))%n;return m},l.prototype.idivn=function(n){x(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var d=(0|this.words[m])+67108864*c;this.words[m]=d/n|0,c=d%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){x(0===n.negative),x(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=new l(0),k=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var a=m.clone(),b=c.clone();!c.isZero();){for(var z=0,N=1;!(c.words[0]&N)&&z<26;++z,N<<=1);if(z>0)for(c.iushrn(z);z-- >0;)(d.isOdd()||C.isOdd())&&(d.iadd(a),C.isub(b)),d.iushrn(1),C.iushrn(1);for(var q=0,pe=1;!(m.words[0]&pe)&&q<26;++q,pe<<=1);if(q>0)for(m.iushrn(q);q-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(a),k.isub(b)),A.iushrn(1),k.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(A),C.isub(k)):(m.isub(c),A.isub(d),k.isub(C))}return{a:A,b:k,gcd:m.iushln(_)}},l.prototype._invmp=function(n){x(0===n.negative),x(!n.isZero());var z,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var k=0,_=1;!(c.words[0]&_)&&k<26;++k,_<<=1);if(k>0)for(c.iushrn(k);k-- >0;)d.isOdd()&&d.iadd(A),d.iushrn(1);for(var a=0,b=1;!(m.words[0]&b)&&a<26;++a,b<<=1);if(a>0)for(m.iushrn(a);a-- >0;)C.isOdd()&&C.iadd(A),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(C)):(m.isub(c),C.isub(d))}return(z=0===c.cmpn(1)?d:C).cmpn(0)<0&&z.iadd(n),z},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var d=0;c.isEven()&&m.isEven();d++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var A=c;c=m,m=A}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(d)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){x("number"==typeof n);var c=n%26,m=(n-c)/26,d=1<>>26,this.words[A]=k&=67108863}return 0!==C&&(this.words[A]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),x(n<=67108863,"Number is too big");var d=0|this.words[0];m=d===n?0:dn.length)return 1;if(this.length=0;m--){var d=0|this.words[m],C=0|n.words[m];if(d!==C){dC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Ce(n)},l.prototype.toRed=function(n){return x(!this.red,"Already a number in reduction context"),x(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return x(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return x(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return x(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return x(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return x(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return x(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return x(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return x(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return x(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return x(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return x(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return x(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return x(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ie(T,n){this.name=T,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ee(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function fe(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ne(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Ce(T){if("string"==typeof T){var n=l._prime(T);this.m=n.p,this.prime=n}else x(T.gtn(1),"modulus must be greater than 1"),this.m=T,this.prime=null}function le(T){Ce.call(this,T),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ie.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var d=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ie.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ie.prototype.imulK=function(n){return n.imul(this.k)},D(ee,ie),ee.prototype.split=function(n,c){for(var m=4194303,d=Math.min(n.length,9),C=0;C>>22,A=k}n.words[C-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ee.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=d}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ee;else if("p224"===n)c=new fe;else if("p192"===n)c=new ne;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Ce.prototype._verify1=function(n){x(0===n.negative,"red works only with positives"),x(n.red,"red works only with red numbers")},Ce.prototype._verify2=function(n,c){x(!(n.negative|c.negative),"red works only with positives"),x(n.red&&n.red===c.red,"red works only with red numbers")},Ce.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Ce.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Ce.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Ce.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Ce.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Ce.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Ce.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Ce.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Ce.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Ce.prototype.isqr=function(n){return this.imul(n,n.clone())},Ce.prototype.sqr=function(n){return this.mul(n,n)},Ce.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(x(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var d=this.m.subn(1),C=0;!d.isZero()&&0===d.andln(1);)C++,d.iushrn(1);x(!d.isZero());var A=new l(1).toRed(this),k=A.redNeg(),_=this.m.subn(1).iushrn(1),a=this.m.bitLength();for(a=new l(2*a*a).toRed(this);0!==this.pow(a,_).cmp(k);)a.redIAdd(k);for(var b=this.pow(a,d),z=this.pow(n,d.addn(1).iushrn(1)),N=this.pow(n,d),q=C;0!==N.cmp(A);){for(var pe=N,ze=0;0!==pe.cmp(A);ze++)pe=pe.redSqr();x(ze=0;C--){for(var b=c.words[C],z=a-1;z>=0;z--){var N=b>>z&1;A!==d[0]&&(A=this.sqr(A)),0!==N||0!==k?(k<<=1,k|=N,(4==++_||0===C&&0===z)&&(A=this.mul(A,d[k]),_=0,k=0)):_=0}a=26}return A},Ce.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Ce.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new le(n)},D(le,Ce),le.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},le.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},le.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},243:Qe=>{"use strict";var te={single_source_shortest_paths:function(g,e,t){var x={},D={};D[e]=0;var w,f,R,h,S,O,l=te.PriorityQueue.make();for(l.push(e,0);!l.empty();)for(R in h=(w=l.pop()).cost,S=g[f=w.value]||{})S.hasOwnProperty(R)&&(O=h+S[R],(typeof D[R]>"u"||D[R]>O)&&(D[R]=O,l.push(R,O),x[R]=f));if(typeof t<"u"&&typeof D[t]>"u"){var j=["Could not find a path from ",e," to ",t,"."].join("");throw new Error(j)}return x},extract_shortest_path_from_predecessor_list:function(g,e){for(var t=[],x=e;x;)t.push(x),x=g[x];return t.reverse(),t},find_path:function(g,e,t){var x=te.single_source_shortest_paths(g,e,t);return te.extract_shortest_path_from_predecessor_list(x,t)},PriorityQueue:{make:function(g){var x,e=te.PriorityQueue,t={};for(x in g=g||{},e)e.hasOwnProperty(x)&&(t[x]=e[x]);return t.queue=[],t.sorter=g.sorter||e.default_sorter,t},default_sorter:function(g,e){return g.cost-e.cost},push:function(g,e){this.queue.push({value:g,cost:e}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Qe.exports=te},518:(Qe,te,g)=>{"use strict";var e=te;e.version=g(1636).rE,e.utils=g(3136),e.rand=g(5294),e.curve=g(8729),e.curves=g(3401),e.ec=g(9042),e.eddsa=g(3045)},8828:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),x=t.getNAF,D=t.getJSF,l=t.assert;function w(R,h){this.type=R,this.p=new e(h.p,16),this.red=h.prime?e.red(h.prime):e.mont(this.p),this.zero=new e(0).toRed(this.red),this.one=new e(1).toRed(this.red),this.two=new e(2).toRed(this.red),this.n=h.n&&new e(h.n,16),this.g=h.g&&this.pointFromJSON(h.g,h.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 S=this.n&&this.p.div(this.n);!S||S.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function f(R,h){this.curve=R,this.type=h,this.precomputed=null}Qe.exports=w,w.prototype.point=function(){throw new Error("Not implemented")},w.prototype.validate=function(){throw new Error("Not implemented")},w.prototype._fixedNafMul=function(h,S){l(h.precomputed);var y=h._getDoubles(),O=x(S,1,this._bitLength),I=(1<=j;W--)Y=(Y<<1)+O[W];V.push(Y)}for(var Q=this.jpoint(null,null,null),J=this.jpoint(null,null,null),ie=I;ie>0;ie--){for(j=0;j=0;Y--){for(var W=0;Y>=0&&0===V[Y];Y--)W++;if(Y>=0&&W++,j=j.dblp(W),Y<0)break;var Q=V[Y];l(0!==Q),j="affine"===h.type?j.mixedAdd(Q>0?I[Q-1>>1]:I[-Q-1>>1].neg()):j.add(Q>0?I[Q-1>>1]:I[-Q-1>>1].neg())}return"affine"===h.type?j.toP():j},w.prototype._wnafMulAdd=function(h,S,y,O,I){var Q,J,ie,V=this._wnafT1,j=this._wnafT2,Y=this._wnafT3,W=0;for(Q=0;Q=1;Q-=2){var fe=Q-1,ne=Q;if(1===V[fe]&&1===V[ne]){var Me=[S[fe],null,null,S[ne]];0===S[fe].y.cmp(S[ne].y)?(Me[1]=S[fe].add(S[ne]),Me[2]=S[fe].toJ().mixedAdd(S[ne].neg())):0===S[fe].y.cmp(S[ne].y.redNeg())?(Me[1]=S[fe].toJ().mixedAdd(S[ne]),Me[2]=S[fe].add(S[ne].neg())):(Me[1]=S[fe].toJ().mixedAdd(S[ne]),Me[2]=S[fe].toJ().mixedAdd(S[ne].neg()));var Ce=[-3,-1,-5,-7,0,7,5,1,3],le=D(y[fe],y[ne]);for(W=Math.max(le[0].length,W),Y[fe]=new Array(W),Y[ne]=new Array(W),J=0;J=0;Q--){for(var d=0;Q>=0;){var C=!0;for(J=0;J=0&&d++,c=c.dblp(d),Q<0)break;for(J=0;J0?ie=j[J][A-1>>1]:A<0&&(ie=j[J][-A-1>>1].neg()),c="affine"===ie.type?c.mixedAdd(ie):c.add(ie))}}for(Q=0;Q=Math.ceil((h.bitLength()+1)/S.step)},f.prototype._getDoubles=function(h,S){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var y=[this],O=this,I=0;I{"use strict";var e=g(3136),t=g(8723),x=g(1993),D=g(8828),l=e.assert;function w(R){this.twisted=1!=(0|R.a),this.mOneA=this.twisted&&-1==(0|R.a),this.extended=this.mOneA,D.call(this,"edwards",R),this.a=new t(R.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new t(R.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new t(R.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),l(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|R.c)}function f(R,h,S,y,O){D.BasePoint.call(this,R,"projective"),null===h&&null===S&&null===y?(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(h,16),this.y=new t(S,16),this.z=y?new t(y,16):this.curve.one,this.t=O&&new t(O,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()))))}x(w,D),Qe.exports=w,w.prototype._mulA=function(h){return this.mOneA?h.redNeg():this.a.redMul(h)},w.prototype._mulC=function(h){return this.oneC?h:this.c.redMul(h)},w.prototype.jpoint=function(h,S,y,O){return this.point(h,S,y,O)},w.prototype.pointFromX=function(h,S){(h=new t(h,16)).red||(h=h.toRed(this.red));var y=h.redSqr(),O=this.c2.redSub(this.a.redMul(y)),I=this.one.redSub(this.c2.redMul(this.d).redMul(y)),V=O.redMul(I.redInvm()),j=V.redSqrt();if(0!==j.redSqr().redSub(V).cmp(this.zero))throw new Error("invalid point");var Y=j.fromRed().isOdd();return(S&&!Y||!S&&Y)&&(j=j.redNeg()),this.point(h,j)},w.prototype.pointFromY=function(h,S){(h=new t(h,16)).red||(h=h.toRed(this.red));var y=h.redSqr(),O=y.redSub(this.c2),I=y.redMul(this.d).redMul(this.c2).redSub(this.a),V=O.redMul(I.redInvm());if(0===V.cmp(this.zero)){if(S)throw new Error("invalid point");return this.point(this.zero,h)}var j=V.redSqrt();if(0!==j.redSqr().redSub(V).cmp(this.zero))throw new Error("invalid point");return j.fromRed().isOdd()!==S&&(j=j.redNeg()),this.point(j,h)},w.prototype.validate=function(h){if(h.isInfinity())return!0;h.normalize();var S=h.x.redSqr(),y=h.y.redSqr(),O=S.redMul(this.a).redAdd(y),I=this.c2.redMul(this.one.redAdd(this.d.redMul(S).redMul(y)));return 0===O.cmp(I)},x(f,D.BasePoint),w.prototype.pointFromJSON=function(h){return f.fromJSON(this,h)},w.prototype.point=function(h,S,y,O){return new f(this,h,S,y,O)},f.fromJSON=function(h,S){return new f(h,S[0],S[1],S[2])},f.prototype.inspect=function(){return this.isInfinity()?"":""},f.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},f.prototype._extDbl=function(){var h=this.x.redSqr(),S=this.y.redSqr(),y=this.z.redSqr();y=y.redIAdd(y);var O=this.curve._mulA(h),I=this.x.redAdd(this.y).redSqr().redISub(h).redISub(S),V=O.redAdd(S),j=V.redSub(y),Y=O.redSub(S),W=I.redMul(j),Q=V.redMul(Y),J=I.redMul(Y),ie=j.redMul(V);return this.curve.point(W,Q,ie,J)},f.prototype._projDbl=function(){var O,I,V,j,Y,W,h=this.x.redAdd(this.y).redSqr(),S=this.x.redSqr(),y=this.y.redSqr();if(this.curve.twisted){var Q=(j=this.curve._mulA(S)).redAdd(y);this.zOne?(O=h.redSub(S).redSub(y).redMul(Q.redSub(this.curve.two)),I=Q.redMul(j.redSub(y)),V=Q.redSqr().redSub(Q).redSub(Q)):(Y=this.z.redSqr(),W=Q.redSub(Y).redISub(Y),O=h.redSub(S).redISub(y).redMul(W),I=Q.redMul(j.redSub(y)),V=Q.redMul(W))}else j=S.redAdd(y),Y=this.curve._mulC(this.z).redSqr(),W=j.redSub(Y).redSub(Y),O=this.curve._mulC(h.redISub(j)).redMul(W),I=this.curve._mulC(j).redMul(S.redISub(y)),V=j.redMul(W);return this.curve.point(O,I,V)},f.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},f.prototype._extAdd=function(h){var S=this.y.redSub(this.x).redMul(h.y.redSub(h.x)),y=this.y.redAdd(this.x).redMul(h.y.redAdd(h.x)),O=this.t.redMul(this.curve.dd).redMul(h.t),I=this.z.redMul(h.z.redAdd(h.z)),V=y.redSub(S),j=I.redSub(O),Y=I.redAdd(O),W=y.redAdd(S),Q=V.redMul(j),J=Y.redMul(W),ie=V.redMul(W),ee=j.redMul(Y);return this.curve.point(Q,J,ee,ie)},f.prototype._projAdd=function(h){var J,ie,S=this.z.redMul(h.z),y=S.redSqr(),O=this.x.redMul(h.x),I=this.y.redMul(h.y),V=this.curve.d.redMul(O).redMul(I),j=y.redSub(V),Y=y.redAdd(V),W=this.x.redAdd(this.y).redMul(h.x.redAdd(h.y)).redISub(O).redISub(I),Q=S.redMul(j).redMul(W);return this.curve.twisted?(J=S.redMul(Y).redMul(I.redSub(this.curve._mulA(O))),ie=j.redMul(Y)):(J=S.redMul(Y).redMul(I.redSub(O)),ie=this.curve._mulC(j).redMul(Y)),this.curve.point(Q,J,ie)},f.prototype.add=function(h){return this.isInfinity()?h:h.isInfinity()?this:this.curve.extended?this._extAdd(h):this._projAdd(h)},f.prototype.mul=function(h){return this._hasDoubles(h)?this.curve._fixedNafMul(this,h):this.curve._wnafMul(this,h)},f.prototype.mulAdd=function(h,S,y){return this.curve._wnafMulAdd(1,[this,S],[h,y],2,!1)},f.prototype.jmulAdd=function(h,S,y){return this.curve._wnafMulAdd(1,[this,S],[h,y],2,!0)},f.prototype.normalize=function(){if(this.zOne)return this;var h=this.z.redInvm();return this.x=this.x.redMul(h),this.y=this.y.redMul(h),this.t&&(this.t=this.t.redMul(h)),this.z=this.curve.one,this.zOne=!0,this},f.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},f.prototype.getX=function(){return this.normalize(),this.x.fromRed()},f.prototype.getY=function(){return this.normalize(),this.y.fromRed()},f.prototype.eq=function(h){return this===h||0===this.getX().cmp(h.getX())&&0===this.getY().cmp(h.getY())},f.prototype.eqXToP=function(h){var S=h.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(S))return!0;for(var y=h.clone(),O=this.curve.redN.redMul(this.z);;){if(y.iadd(this.curve.n),y.cmp(this.curve.p)>=0)return!1;if(S.redIAdd(O),0===this.x.cmp(S))return!0}},f.prototype.toP=f.prototype.normalize,f.prototype.mixedAdd=f.prototype.add},8729:(Qe,te,g)=>{"use strict";var e=te;e.base=g(8828),e.short=g(8075),e.mont=g(4947),e.edwards=g(5537)},4947:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(1993),x=g(8828),D=g(3136);function l(f){x.call(this,"mont",f),this.a=new e(f.a,16).toRed(this.red),this.b=new e(f.b,16).toRed(this.red),this.i4=new e(4).toRed(this.red).redInvm(),this.two=new e(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function w(f,R,h){x.BasePoint.call(this,f,"projective"),null===R&&null===h?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new e(R,16),this.z=new e(h,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}t(l,x),Qe.exports=l,l.prototype.validate=function(R){var h=R.normalize().x,S=h.redSqr(),y=S.redMul(h).redAdd(S.redMul(this.a)).redAdd(h);return 0===y.redSqrt().redSqr().cmp(y)},t(w,x.BasePoint),l.prototype.decodePoint=function(R,h){return this.point(D.toArray(R,h),1)},l.prototype.point=function(R,h){return new w(this,R,h)},l.prototype.pointFromJSON=function(R){return w.fromJSON(this,R)},w.prototype.precompute=function(){},w.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},w.fromJSON=function(R,h){return new w(R,h[0],h[1]||R.one)},w.prototype.inspect=function(){return this.isInfinity()?"":""},w.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},w.prototype.dbl=function(){var h=this.x.redAdd(this.z).redSqr(),y=this.x.redSub(this.z).redSqr(),O=h.redSub(y),I=h.redMul(y),V=O.redMul(y.redAdd(this.curve.a24.redMul(O)));return this.curve.point(I,V)},w.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},w.prototype.diffAdd=function(R,h){var S=this.x.redAdd(this.z),y=this.x.redSub(this.z),O=R.x.redAdd(R.z),V=R.x.redSub(R.z).redMul(S),j=O.redMul(y),Y=h.z.redMul(V.redAdd(j).redSqr()),W=h.x.redMul(V.redISub(j).redSqr());return this.curve.point(Y,W)},w.prototype.mul=function(R){for(var h=R.clone(),S=this,y=this.curve.point(null,null),I=[];0!==h.cmpn(0);h.iushrn(1))I.push(h.andln(1));for(var V=I.length-1;V>=0;V--)0===I[V]?(S=S.diffAdd(y,this),y=y.dbl()):(y=S.diffAdd(y,this),S=S.dbl());return y},w.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},w.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},w.prototype.eq=function(R){return 0===this.getX().cmp(R.getX())},w.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},w.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},8075:(Qe,te,g)=>{"use strict";var e=g(3136),t=g(8723),x=g(1993),D=g(8828),l=e.assert;function w(h){D.call(this,"short",h),this.a=new t(h.a,16).toRed(this.red),this.b=new t(h.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(h),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function f(h,S,y,O){D.BasePoint.call(this,h,"affine"),null===S&&null===y?(this.x=null,this.y=null,this.inf=!0):(this.x=new t(S,16),this.y=new t(y,16),O&&(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 R(h,S,y,O){D.BasePoint.call(this,h,"jacobian"),null===S&&null===y&&null===O?(this.x=this.curve.one,this.y=this.curve.one,this.z=new t(0)):(this.x=new t(S,16),this.y=new t(y,16),this.z=new t(O,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}x(w,D),Qe.exports=w,w.prototype._getEndomorphism=function(S){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var y,O;if(S.beta)y=new t(S.beta,16).toRed(this.red);else{var I=this._getEndoRoots(this.p);y=(y=I[0].cmp(I[1])<0?I[0]:I[1]).toRed(this.red)}if(S.lambda)O=new t(S.lambda,16);else{var V=this._getEndoRoots(this.n);0===this.g.mul(V[0]).x.cmp(this.g.x.redMul(y))?O=V[0]:l(0===this.g.mul(O=V[1]).x.cmp(this.g.x.redMul(y)))}return{beta:y,lambda:O,basis:S.basis?S.basis.map(function(Y){return{a:new t(Y.a,16),b:new t(Y.b,16)}}):this._getEndoBasis(O)}}},w.prototype._getEndoRoots=function(S){var y=S===this.p?this.red:t.mont(S),O=new t(2).toRed(y).redInvm(),I=O.redNeg(),V=new t(3).toRed(y).redNeg().redSqrt().redMul(O);return[I.redAdd(V).fromRed(),I.redSub(V).fromRed()]},w.prototype._getEndoBasis=function(S){for(var Q,J,ie,ee,fe,ne,Me,le,T,y=this.n.ushrn(Math.floor(this.n.bitLength()/2)),O=S,I=this.n.clone(),V=new t(1),j=new t(0),Y=new t(0),W=new t(1),Ce=0;0!==O.cmpn(0);){var n=I.div(O);le=I.sub(n.mul(O)),T=Y.sub(n.mul(V));var c=W.sub(n.mul(j));if(!ie&&le.cmp(y)<0)Q=Me.neg(),J=V,ie=le.neg(),ee=T;else if(ie&&2==++Ce)break;Me=le,I=O,O=le,Y=V,V=T,W=j,j=c}fe=le.neg(),ne=T;var m=ie.sqr().add(ee.sqr());return fe.sqr().add(ne.sqr()).cmp(m)>=0&&(fe=Q,ne=J),ie.negative&&(ie=ie.neg(),ee=ee.neg()),fe.negative&&(fe=fe.neg(),ne=ne.neg()),[{a:ie,b:ee},{a:fe,b:ne}]},w.prototype._endoSplit=function(S){var y=this.endo.basis,O=y[0],I=y[1],V=I.b.mul(S).divRound(this.n),j=O.b.neg().mul(S).divRound(this.n),Y=V.mul(O.a),W=j.mul(I.a),Q=V.mul(O.b),J=j.mul(I.b);return{k1:S.sub(Y).sub(W),k2:Q.add(J).neg()}},w.prototype.pointFromX=function(S,y){(S=new t(S,16)).red||(S=S.toRed(this.red));var O=S.redSqr().redMul(S).redIAdd(S.redMul(this.a)).redIAdd(this.b),I=O.redSqrt();if(0!==I.redSqr().redSub(O).cmp(this.zero))throw new Error("invalid point");var V=I.fromRed().isOdd();return(y&&!V||!y&&V)&&(I=I.redNeg()),this.point(S,I)},w.prototype.validate=function(S){if(S.inf)return!0;var y=S.x,O=S.y,I=this.a.redMul(y),V=y.redSqr().redMul(y).redIAdd(I).redIAdd(this.b);return 0===O.redSqr().redISub(V).cmpn(0)},w.prototype._endoWnafMulAdd=function(S,y,O){for(var I=this._endoWnafT1,V=this._endoWnafT2,j=0;j":""},f.prototype.isInfinity=function(){return this.inf},f.prototype.add=function(S){if(this.inf)return S;if(S.inf)return this;if(this.eq(S))return this.dbl();if(this.neg().eq(S))return this.curve.point(null,null);if(0===this.x.cmp(S.x))return this.curve.point(null,null);var y=this.y.redSub(S.y);0!==y.cmpn(0)&&(y=y.redMul(this.x.redSub(S.x).redInvm()));var O=y.redSqr().redISub(this.x).redISub(S.x),I=y.redMul(this.x.redSub(O)).redISub(this.y);return this.curve.point(O,I)},f.prototype.dbl=function(){if(this.inf)return this;var S=this.y.redAdd(this.y);if(0===S.cmpn(0))return this.curve.point(null,null);var y=this.curve.a,O=this.x.redSqr(),I=S.redInvm(),V=O.redAdd(O).redIAdd(O).redIAdd(y).redMul(I),j=V.redSqr().redISub(this.x.redAdd(this.x)),Y=V.redMul(this.x.redSub(j)).redISub(this.y);return this.curve.point(j,Y)},f.prototype.getX=function(){return this.x.fromRed()},f.prototype.getY=function(){return this.y.fromRed()},f.prototype.mul=function(S){return S=new t(S,16),this.isInfinity()?this:this._hasDoubles(S)?this.curve._fixedNafMul(this,S):this.curve.endo?this.curve._endoWnafMulAdd([this],[S]):this.curve._wnafMul(this,S)},f.prototype.mulAdd=function(S,y,O){var I=[this,y],V=[S,O];return this.curve.endo?this.curve._endoWnafMulAdd(I,V):this.curve._wnafMulAdd(1,I,V,2)},f.prototype.jmulAdd=function(S,y,O){var I=[this,y],V=[S,O];return this.curve.endo?this.curve._endoWnafMulAdd(I,V,!0):this.curve._wnafMulAdd(1,I,V,2,!0)},f.prototype.eq=function(S){return this===S||this.inf===S.inf&&(this.inf||0===this.x.cmp(S.x)&&0===this.y.cmp(S.y))},f.prototype.neg=function(S){if(this.inf)return this;var y=this.curve.point(this.x,this.y.redNeg());if(S&&this.precomputed){var O=this.precomputed,I=function(V){return V.neg()};y.precomputed={naf:O.naf&&{wnd:O.naf.wnd,points:O.naf.points.map(I)},doubles:O.doubles&&{step:O.doubles.step,points:O.doubles.points.map(I)}}}return y},f.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},x(R,D.BasePoint),w.prototype.jpoint=function(S,y,O){return new R(this,S,y,O)},R.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var S=this.z.redInvm(),y=S.redSqr(),O=this.x.redMul(y),I=this.y.redMul(y).redMul(S);return this.curve.point(O,I)},R.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},R.prototype.add=function(S){if(this.isInfinity())return S;if(S.isInfinity())return this;var y=S.z.redSqr(),O=this.z.redSqr(),I=this.x.redMul(y),V=S.x.redMul(O),j=this.y.redMul(y.redMul(S.z)),Y=S.y.redMul(O.redMul(this.z)),W=I.redSub(V),Q=j.redSub(Y);if(0===W.cmpn(0))return 0!==Q.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var J=W.redSqr(),ie=J.redMul(W),ee=I.redMul(J),fe=Q.redSqr().redIAdd(ie).redISub(ee).redISub(ee),ne=Q.redMul(ee.redISub(fe)).redISub(j.redMul(ie)),Me=this.z.redMul(S.z).redMul(W);return this.curve.jpoint(fe,ne,Me)},R.prototype.mixedAdd=function(S){if(this.isInfinity())return S.toJ();if(S.isInfinity())return this;var y=this.z.redSqr(),O=this.x,I=S.x.redMul(y),V=this.y,j=S.y.redMul(y).redMul(this.z),Y=O.redSub(I),W=V.redSub(j);if(0===Y.cmpn(0))return 0!==W.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var Q=Y.redSqr(),J=Q.redMul(Y),ie=O.redMul(Q),ee=W.redSqr().redIAdd(J).redISub(ie).redISub(ie),fe=W.redMul(ie.redISub(ee)).redISub(V.redMul(J)),ne=this.z.redMul(Y);return this.curve.jpoint(ee,fe,ne)},R.prototype.dblp=function(S){if(0===S)return this;if(this.isInfinity())return this;if(!S)return this.dbl();var y;if(this.curve.zeroA||this.curve.threeA){var O=this;for(y=0;y=0)return!1;if(O.redIAdd(V),0===this.x.cmp(O))return!0}},R.prototype.inspect=function(){return this.isInfinity()?"":""},R.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},3401:(Qe,te,g)=>{"use strict";var R,e=te,t=g(2529),x=g(8729),l=g(3136).assert;function w(h){this.curve="short"===h.type?new x.short(h):"edwards"===h.type?new x.edwards(h):new x.mont(h),this.g=this.curve.g,this.n=this.curve.n,this.hash=h.hash,l(this.g.validate(),"Invalid curve"),l(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function f(h,S){Object.defineProperty(e,h,{configurable:!0,enumerable:!0,get:function(){var y=new w(S);return Object.defineProperty(e,h,{configurable:!0,enumerable:!0,value:y}),y}})}e.PresetCurve=w,f("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"]}),f("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"]}),f("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"]}),f("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"]}),f("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"]}),f("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"]}),f("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{R=g(1416)}catch{R=void 0}f("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",R]})},9042:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3556),x=g(3136),D=g(3401),l=g(5294),w=x.assert,f=g(541),R=g(484);function h(S){if(!(this instanceof h))return new h(S);"string"==typeof S&&(w(Object.prototype.hasOwnProperty.call(D,S),"Unknown curve "+S),S=D[S]),S instanceof D.PresetCurve&&(S={curve:S}),this.curve=S.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=S.curve.g,this.g.precompute(S.curve.n.bitLength()+1),this.hash=S.hash||S.curve.hash}Qe.exports=h,h.prototype.keyPair=function(y){return new f(this,y)},h.prototype.keyFromPrivate=function(y,O){return f.fromPrivate(this,y,O)},h.prototype.keyFromPublic=function(y,O){return f.fromPublic(this,y,O)},h.prototype.genKeyPair=function(y){y||(y={});for(var O=new t({hash:this.hash,pers:y.pers,persEnc:y.persEnc||"utf8",entropy:y.entropy||l(this.hash.hmacStrength),entropyEnc:y.entropy&&y.entropyEnc||"utf8",nonce:this.n.toArray()}),I=this.n.byteLength(),V=this.n.sub(new e(2));;){var j=new e(O.generate(I));if(!(j.cmp(V)>0))return j.iaddn(1),this.keyFromPrivate(j)}},h.prototype._truncateToN=function(y,O,I){var V;if(e.isBN(y)||"number"==typeof y)V=(y=new e(y,16)).byteLength();else if("object"==typeof y)V=y.length,y=new e(y,16);else{var j=y.toString();V=j.length+1>>>1,y=new e(j,16)}"number"!=typeof I&&(I=8*V);var Y=I-this.n.bitLength();return Y>0&&(y=y.ushrn(Y)),!O&&y.cmp(this.n)>=0?y.sub(this.n):y},h.prototype.sign=function(y,O,I,V){"object"==typeof I&&(V=I,I=null),V||(V={}),O=this.keyFromPrivate(O,I),y=this._truncateToN(y,!1,V.msgBitLength);for(var j=this.n.byteLength(),Y=O.getPrivate().toArray("be",j),W=y.toArray("be",j),Q=new t({hash:this.hash,entropy:Y,nonce:W,pers:V.pers,persEnc:V.persEnc||"utf8"}),J=this.n.sub(new e(1)),ie=0;;ie++){var ee=V.k?V.k(ie):new e(Q.generate(this.n.byteLength()));if(!((ee=this._truncateToN(ee,!0)).cmpn(1)<=0||ee.cmp(J)>=0)){var fe=this.g.mul(ee);if(!fe.isInfinity()){var ne=fe.getX(),Me=ne.umod(this.n);if(0!==Me.cmpn(0)){var Ce=ee.invm(this.n).mul(Me.mul(O.getPrivate()).iadd(y));if(0!==(Ce=Ce.umod(this.n)).cmpn(0)){var le=(fe.getY().isOdd()?1:0)|(0!==ne.cmp(Me)?2:0);return V.canonical&&Ce.cmp(this.nh)>0&&(Ce=this.n.sub(Ce),le^=1),new R({r:Me,s:Ce,recoveryParam:le})}}}}}},h.prototype.verify=function(y,O,I,V,j){j||(j={}),y=this._truncateToN(y,!1,j.msgBitLength),I=this.keyFromPublic(I,V);var Y=(O=new R(O,"hex")).r,W=O.s;if(Y.cmpn(1)<0||Y.cmp(this.n)>=0||W.cmpn(1)<0||W.cmp(this.n)>=0)return!1;var ee,Q=W.invm(this.n),J=Q.mul(y).umod(this.n),ie=Q.mul(Y).umod(this.n);return this.curve._maxwellTrick?!(ee=this.g.jmulAdd(J,I.getPublic(),ie)).isInfinity()&&ee.eqXToP(Y):!(ee=this.g.mulAdd(J,I.getPublic(),ie)).isInfinity()&&0===ee.getX().umod(this.n).cmp(Y)},h.prototype.recoverPubKey=function(S,y,O,I){w((3&O)===O,"The recovery param is more than two bits"),y=new R(y,I);var V=this.n,j=new e(S),Y=y.r,W=y.s,Q=1&O,J=O>>1;if(Y.cmp(this.curve.p.umod(this.curve.n))>=0&&J)throw new Error("Unable to find sencond key candinate");Y=this.curve.pointFromX(J?Y.add(this.curve.n):Y,Q);var ie=y.r.invm(V),ee=V.sub(j).mul(ie).umod(V),fe=W.mul(ie).umod(V);return this.g.mulAdd(ee,Y,fe)},h.prototype.getKeyRecoveryParam=function(S,y,O,I){if(null!==(y=new R(y,I)).recoveryParam)return y.recoveryParam;for(var V=0;V<4;V++){var j;try{j=this.recoverPubKey(S,y,V)}catch{continue}if(j.eq(O))return V}throw new Error("Unable to find valid recovery factor")}},541:(Qe,te,g)=>{"use strict";var e=g(8723),x=g(3136).assert;function D(l,w){this.ec=l,this.priv=null,this.pub=null,w.priv&&this._importPrivate(w.priv,w.privEnc),w.pub&&this._importPublic(w.pub,w.pubEnc)}Qe.exports=D,D.fromPublic=function(w,f,R){return f instanceof D?f:new D(w,{pub:f,pubEnc:R})},D.fromPrivate=function(w,f,R){return f instanceof D?f:new D(w,{priv:f,privEnc:R})},D.prototype.validate=function(){var w=this.getPublic();return w.isInfinity()?{result:!1,reason:"Invalid public key"}:w.validate()?w.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"}},D.prototype.getPublic=function(w,f){return"string"==typeof w&&(f=w,w=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),f?this.pub.encode(f,w):this.pub},D.prototype.getPrivate=function(w){return"hex"===w?this.priv.toString(16,2):this.priv},D.prototype._importPrivate=function(w,f){this.priv=new e(w,f||16),this.priv=this.priv.umod(this.ec.curve.n)},D.prototype._importPublic=function(w,f){if(w.x||w.y)return"mont"===this.ec.curve.type?x(w.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&x(w.x&&w.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(w.x,w.y));this.pub=this.ec.curve.decodePoint(w,f)},D.prototype.derive=function(w){return w.validate()||x(w.validate(),"public point not validated"),w.mul(this.priv).getX()},D.prototype.sign=function(w,f,R){return this.ec.sign(w,this,f,R)},D.prototype.verify=function(w,f,R){return this.ec.verify(w,f,this,void 0,R)},D.prototype.inspect=function(){return""}},484:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),x=t.assert;function D(h,S){if(h instanceof D)return h;this._importDER(h,S)||(x(h.r&&h.s,"Signature without r or s"),this.r=new e(h.r,16),this.s=new e(h.s,16),this.recoveryParam=void 0===h.recoveryParam?null:h.recoveryParam)}function l(){this.place=0}function w(h,S){var y=h[S.place++];if(!(128&y))return y;var O=15&y;if(0===O||O>4||0===h[S.place])return!1;for(var I=0,V=0,j=S.place;V>>=0;return!(I<=127)&&(S.place=j,I)}function f(h){for(var S=0,y=h.length-1;!h[S]&&!(128&h[S+1])&&S>>3);for(h.push(128|y);--y;)h.push(S>>>(y<<3)&255);h.push(S)}}Qe.exports=D,D.prototype._importDER=function(S,y){S=t.toArray(S,y);var O=new l;if(48!==S[O.place++])return!1;var I=w(S,O);if(!1===I||I+O.place!==S.length||2!==S[O.place++])return!1;var V=w(S,O);if(!1===V||128&S[O.place])return!1;var j=S.slice(O.place,V+O.place);if(O.place+=V,2!==S[O.place++])return!1;var Y=w(S,O);if(!1===Y||S.length!==Y+O.place||128&S[O.place])return!1;var W=S.slice(O.place,Y+O.place);if(0===j[0]){if(!(128&j[1]))return!1;j=j.slice(1)}if(0===W[0]){if(!(128&W[1]))return!1;W=W.slice(1)}return this.r=new e(j),this.s=new e(W),this.recoveryParam=null,!0},D.prototype.toDER=function(S){var y=this.r.toArray(),O=this.s.toArray();for(128&y[0]&&(y=[0].concat(y)),128&O[0]&&(O=[0].concat(O)),y=f(y),O=f(O);!(O[0]||128&O[1]);)O=O.slice(1);var I=[2];R(I,y.length),(I=I.concat(y)).push(2),R(I,O.length);var V=I.concat(O),j=[48];return R(j,V.length),j=j.concat(V),t.encode(j,S)}},3045:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(3401),x=g(3136),D=x.assert,l=x.parseBytes,w=g(7222),f=g(5451);function R(h){if(D("ed25519"===h,"only tested with ed25519 so far"),!(this instanceof R))return new R(h);this.curve=h=t[h].curve,this.g=h.g,this.g.precompute(h.n.bitLength()+1),this.pointClass=h.point().constructor,this.encodingLength=Math.ceil(h.n.bitLength()/8),this.hash=e.sha512}Qe.exports=R,R.prototype.sign=function(S,y){S=l(S);var O=this.keyFromSecret(y),I=this.hashInt(O.messagePrefix(),S),V=this.g.mul(I),j=this.encodePoint(V),Y=this.hashInt(j,O.pubBytes(),S).mul(O.priv()),W=I.add(Y).umod(this.curve.n);return this.makeSignature({R:V,S:W,Rencoded:j})},R.prototype.verify=function(S,y,O){if(S=l(S),(y=this.makeSignature(y)).S().gte(y.eddsa.curve.n)||y.S().isNeg())return!1;var I=this.keyFromPublic(O),V=this.hashInt(y.Rencoded(),I.pubBytes(),S),j=this.g.mul(y.S());return y.R().add(I.pub().mul(V)).eq(j)},R.prototype.hashInt=function(){for(var S=this.hash(),y=0;y{"use strict";var e=g(3136),t=e.assert,x=e.parseBytes,D=e.cachedProperty;function l(w,f){this.eddsa=w,this._secret=x(f.secret),w.isPoint(f.pub)?this._pub=f.pub:this._pubBytes=x(f.pub)}l.fromPublic=function(f,R){return R instanceof l?R:new l(f,{pub:R})},l.fromSecret=function(f,R){return R instanceof l?R:new l(f,{secret:R})},l.prototype.secret=function(){return this._secret},D(l,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),D(l,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),D(l,"privBytes",function(){var f=this.eddsa,R=this.hash(),h=f.encodingLength-1,S=R.slice(0,f.encodingLength);return S[0]&=248,S[h]&=127,S[h]|=64,S}),D(l,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),D(l,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),D(l,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),l.prototype.sign=function(f){return t(this._secret,"KeyPair can only verify"),this.eddsa.sign(f,this)},l.prototype.verify=function(f,R){return this.eddsa.verify(f,R,this)},l.prototype.getSecret=function(f){return t(this._secret,"KeyPair is public only"),e.encode(this.secret(),f)},l.prototype.getPublic=function(f){return e.encode(this.pubBytes(),f)},Qe.exports=l},5451:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),x=t.assert,D=t.cachedProperty,l=t.parseBytes;function w(f,R){this.eddsa=f,"object"!=typeof R&&(R=l(R)),Array.isArray(R)&&(x(R.length===2*f.encodingLength,"Signature has invalid size"),R={R:R.slice(0,f.encodingLength),S:R.slice(f.encodingLength)}),x(R.R&&R.S,"Signature without R or S"),f.isPoint(R.R)&&(this._R=R.R),R.S instanceof e&&(this._S=R.S),this._Rencoded=Array.isArray(R.R)?R.R:R.Rencoded,this._Sencoded=Array.isArray(R.S)?R.S:R.Sencoded}D(w,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),D(w,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),D(w,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),D(w,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),w.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},w.prototype.toHex=function(){return t.encode(this.toBytes(),"hex").toUpperCase()},Qe.exports=w},1416:Qe=>{Qe.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"]]}}},3136:(Qe,te,g)=>{"use strict";var e=te,t=g(8723),x=g(9210),D=g(1832);e.assert=x,e.toArray=D.toArray,e.zero2=D.zero2,e.toHex=D.toHex,e.encode=D.encode,e.getNAF=function l(S,y,O){var V,I=new Array(Math.max(S.bitLength(),O)+1);for(V=0;V(j>>1)-1?(j>>1)-Q:Q):W=0,I[V]=W,Y.iushrn(1)}return I},e.getJSF=function w(S,y){var O=[[],[]];S=S.clone(),y=y.clone();for(var j,I=0,V=0;S.cmpn(-I)>0||y.cmpn(-V)>0;){var Q,J,Y=S.andln(3)+I&3,W=y.andln(3)+V&3;3===Y&&(Y=-1),3===W&&(W=-1),Q=1&Y?3!=(j=S.andln(7)+I&7)&&5!==j||2!==W?Y:-Y:0,O[0].push(Q),J=1&W?3!=(j=y.andln(7)+V&7)&&5!==j||2!==Y?W:-W:0,O[1].push(J),2*I===Q+1&&(I=1-I),2*V===J+1&&(V=1-V),S.iushrn(1),y.iushrn(1)}return O},e.cachedProperty=function f(S,y,O){var I="_"+y;S.prototype[y]=function(){return void 0!==this[I]?this[I]:this[I]=O.call(this)}},e.parseBytes=function R(S){return"string"==typeof S?e.toArray(S,"hex"):S},e.intFromLE=function h(S){return new t(S,"hex","le")}},8723:function(Qe,te,g){!function(e,t){"use strict";function x(T,n){if(!T)throw new Error(n||"Assertion failed")}function D(T,n){T.super_=n;var c=function(){};c.prototype=n.prototype,T.prototype=new c,T.prototype.constructor=T}function l(T,n,c){if(l.isBN(T))return T;this.negative=0,this.words=null,this.length=0,this.red=null,null!==T&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(T||0,n||10,c||"be"))}var w;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{w=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(9368).Buffer}catch{}function f(T,n){var c=T.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function R(T,n,c){var m=f(T,c);return c-1>=n&&(m|=f(T,c-1)<<4),m}function h(T,n,c,m){for(var d=0,C=Math.min(T.length,c),A=n;A=49?k-49+10:k>=17?k-17+10:k}return d}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),x(c===(0|c)&&c>=2&&c<=36);var d=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(d++,this.negative=1),d=0;d-=3)this.words[C]|=(A=n[d]|n[d-1]<<8|n[d-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);else if("le"===m)for(d=0,C=0;d>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var d=0;d=c;d-=2)k=R(n,c,d)<=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;else for(d=(n.length-c)%2==0?c+1:c;d=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var d=0,C=1;C<=67108863;C*=c)d++;d--,C=C/c|0;for(var A=n.length-m,k=A%d,_=Math.min(A,A-k)+m,a=0,b=m;b<_;b+=d)a=h(n,b,b+d,c),this.imuln(C),this.words[0]+a<67108864?this.words[0]+=a:this._iaddn(a);if(0!==k){var z=1;for(a=h(n,b,n.length,c),b=0;b1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var S=["","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"],y=[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],O=[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 V(T,n,c){c.negative=n.negative^T.negative;var m=T.length+n.length|0;c.length=m,m=m-1|0;var d=0|T.words[0],C=0|n.words[0],A=d*C,_=A/67108864|0;c.words[0]=67108863&A;for(var a=1;a>>26,z=67108863&_,N=Math.min(a,n.length-1),q=Math.max(0,a-T.length+1);q<=N;q++)b+=(A=(d=0|T.words[a-q|0])*(C=0|n.words[q])+z)/67108864|0,z=67108863&A;c.words[a]=0|z,_=0|b}return 0!==_?c.words[a]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var d=0,C=0,A=0;A>>24-d&16777215)||A!==this.length-1?S[6-_.length]+_+m:_+m,(d+=2)>=26&&(d-=26,A--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var a=y[n],b=O[n];m="";var z=this.clone();for(z.negative=0;!z.isZero();){var N=z.modn(b).toString(n);m=(z=z.idivn(b)).isZero()?N+m:S[a-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}x(!1,"Base should be between 2 and 36")},l.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&&x(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return x(typeof w<"u"),this.toArrayLike(w,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var d=this.byteLength(),C=m||Math.max(1,d);x(d<=C,"byte array longer than desired length"),x(C>0,"Requested array length <= 0"),this.strip();var _,a,A="le"===c,k=new n(C),b=this.clone();if(A){for(a=0;!b.isZero();a++)_=b.andln(255),b.iushrn(8),k[a]=_;for(;a=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var d=0;dn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){x("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var d=0;d0&&(this.words[d]=~this.words[d]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){x("number"==typeof n&&n>=0);var m=n/26|0,d=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,d=n):(m=n,d=this);for(var C=0,A=0;A>>26;for(;0!==C&&A>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var d,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(d=this,C=n):(d=n,C=this);for(var A=0,k=0;k>26,this.words[k]=67108863&c;for(;0!==A&&k>26,this.words[k]=67108863&c;if(0===A&&k>>13,pe=0|d[1],ze=8191&pe,Xe=pe>>>13,We=0|d[2],oe=8191&We,X=We>>>13,se=0|d[3],ae=8191&se,he=se>>>13,Ie=0|d[4],st=8191&Ie,me=Ie>>>13,Ee=0|d[5],ue=8191&Ee,Be=Ee>>>13,Ct=0|d[6],ct=8191&Ct,dt=Ct>>>13,Yt=0|d[7],ve=8191&Yt,_e=Yt>>>13,we=0|d[8],Ue=8191&we,je=we>>>13,vt=0|d[9],$e=8191&vt,nt=vt>>>13,qt=0|C[0],Nt=8191&qt,yt=qt>>>13,jt=0|C[1],Je=8191&jt,et=jt>>>13,Ae=0|C[2],It=8191&Ae,Qt=Ae>>>13,Tt=0|C[3],xt=8191&Tt,Se=Tt>>>13,Te=0|C[4],ce=8191&Te,Z=Te>>>13,Re=0|C[5],Pe=8191&Re,pt=Re>>>13,Ke=0|C[6],Fe=8191&Ke,Ge=Ke>>>13,qe=0|C[7],at=8191&qe,Lt=qe>>>13,pi=0|C[8],$t=8191&pi,Kt=pi>>>13,Ui=0|C[9],ti=8191&Ui,fi=Ui>>>13;m.negative=n.negative^c.negative,m.length=19;var xn=(k+(_=Math.imul(N,Nt))|0)+((8191&(a=(a=Math.imul(N,yt))+Math.imul(q,Nt)|0))<<13)|0;k=((b=Math.imul(q,yt))+(a>>>13)|0)+(xn>>>26)|0,xn&=67108863,_=Math.imul(ze,Nt),a=(a=Math.imul(ze,yt))+Math.imul(Xe,Nt)|0,b=Math.imul(Xe,yt);var tn=(k+(_=_+Math.imul(N,Je)|0)|0)+((8191&(a=(a=a+Math.imul(N,et)|0)+Math.imul(q,Je)|0))<<13)|0;k=((b=b+Math.imul(q,et)|0)+(a>>>13)|0)+(tn>>>26)|0,tn&=67108863,_=Math.imul(oe,Nt),a=(a=Math.imul(oe,yt))+Math.imul(X,Nt)|0,b=Math.imul(X,yt),_=_+Math.imul(ze,Je)|0,a=(a=a+Math.imul(ze,et)|0)+Math.imul(Xe,Je)|0,b=b+Math.imul(Xe,et)|0;var Vi=(k+(_=_+Math.imul(N,It)|0)|0)+((8191&(a=(a=a+Math.imul(N,Qt)|0)+Math.imul(q,It)|0))<<13)|0;k=((b=b+Math.imul(q,Qt)|0)+(a>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,_=Math.imul(ae,Nt),a=(a=Math.imul(ae,yt))+Math.imul(he,Nt)|0,b=Math.imul(he,yt),_=_+Math.imul(oe,Je)|0,a=(a=a+Math.imul(oe,et)|0)+Math.imul(X,Je)|0,b=b+Math.imul(X,et)|0,_=_+Math.imul(ze,It)|0,a=(a=a+Math.imul(ze,Qt)|0)+Math.imul(Xe,It)|0,b=b+Math.imul(Xe,Qt)|0;var Qi=(k+(_=_+Math.imul(N,xt)|0)|0)+((8191&(a=(a=a+Math.imul(N,Se)|0)+Math.imul(q,xt)|0))<<13)|0;k=((b=b+Math.imul(q,Se)|0)+(a>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(st,Nt),a=(a=Math.imul(st,yt))+Math.imul(me,Nt)|0,b=Math.imul(me,yt),_=_+Math.imul(ae,Je)|0,a=(a=a+Math.imul(ae,et)|0)+Math.imul(he,Je)|0,b=b+Math.imul(he,et)|0,_=_+Math.imul(oe,It)|0,a=(a=a+Math.imul(oe,Qt)|0)+Math.imul(X,It)|0,b=b+Math.imul(X,Qt)|0,_=_+Math.imul(ze,xt)|0,a=(a=a+Math.imul(ze,Se)|0)+Math.imul(Xe,xt)|0,b=b+Math.imul(Xe,Se)|0;var Xt=(k+(_=_+Math.imul(N,ce)|0)|0)+((8191&(a=(a=a+Math.imul(N,Z)|0)+Math.imul(q,ce)|0))<<13)|0;k=((b=b+Math.imul(q,Z)|0)+(a>>>13)|0)+(Xt>>>26)|0,Xt&=67108863,_=Math.imul(ue,Nt),a=(a=Math.imul(ue,yt))+Math.imul(Be,Nt)|0,b=Math.imul(Be,yt),_=_+Math.imul(st,Je)|0,a=(a=a+Math.imul(st,et)|0)+Math.imul(me,Je)|0,b=b+Math.imul(me,et)|0,_=_+Math.imul(ae,It)|0,a=(a=a+Math.imul(ae,Qt)|0)+Math.imul(he,It)|0,b=b+Math.imul(he,Qt)|0,_=_+Math.imul(oe,xt)|0,a=(a=a+Math.imul(oe,Se)|0)+Math.imul(X,xt)|0,b=b+Math.imul(X,Se)|0,_=_+Math.imul(ze,ce)|0,a=(a=a+Math.imul(ze,Z)|0)+Math.imul(Xe,ce)|0,b=b+Math.imul(Xe,Z)|0;var St=(k+(_=_+Math.imul(N,Pe)|0)|0)+((8191&(a=(a=a+Math.imul(N,pt)|0)+Math.imul(q,Pe)|0))<<13)|0;k=((b=b+Math.imul(q,pt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,_=Math.imul(ct,Nt),a=(a=Math.imul(ct,yt))+Math.imul(dt,Nt)|0,b=Math.imul(dt,yt),_=_+Math.imul(ue,Je)|0,a=(a=a+Math.imul(ue,et)|0)+Math.imul(Be,Je)|0,b=b+Math.imul(Be,et)|0,_=_+Math.imul(st,It)|0,a=(a=a+Math.imul(st,Qt)|0)+Math.imul(me,It)|0,b=b+Math.imul(me,Qt)|0,_=_+Math.imul(ae,xt)|0,a=(a=a+Math.imul(ae,Se)|0)+Math.imul(he,xt)|0,b=b+Math.imul(he,Se)|0,_=_+Math.imul(oe,ce)|0,a=(a=a+Math.imul(oe,Z)|0)+Math.imul(X,ce)|0,b=b+Math.imul(X,Z)|0,_=_+Math.imul(ze,Pe)|0,a=(a=a+Math.imul(ze,pt)|0)+Math.imul(Xe,Pe)|0,b=b+Math.imul(Xe,pt)|0;var tt=(k+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(a=(a=a+Math.imul(N,Ge)|0)+Math.imul(q,Fe)|0))<<13)|0;k=((b=b+Math.imul(q,Ge)|0)+(a>>>13)|0)+(tt>>>26)|0,tt&=67108863,_=Math.imul(ve,Nt),a=(a=Math.imul(ve,yt))+Math.imul(_e,Nt)|0,b=Math.imul(_e,yt),_=_+Math.imul(ct,Je)|0,a=(a=a+Math.imul(ct,et)|0)+Math.imul(dt,Je)|0,b=b+Math.imul(dt,et)|0,_=_+Math.imul(ue,It)|0,a=(a=a+Math.imul(ue,Qt)|0)+Math.imul(Be,It)|0,b=b+Math.imul(Be,Qt)|0,_=_+Math.imul(st,xt)|0,a=(a=a+Math.imul(st,Se)|0)+Math.imul(me,xt)|0,b=b+Math.imul(me,Se)|0,_=_+Math.imul(ae,ce)|0,a=(a=a+Math.imul(ae,Z)|0)+Math.imul(he,ce)|0,b=b+Math.imul(he,Z)|0,_=_+Math.imul(oe,Pe)|0,a=(a=a+Math.imul(oe,pt)|0)+Math.imul(X,Pe)|0,b=b+Math.imul(X,pt)|0,_=_+Math.imul(ze,Fe)|0,a=(a=a+Math.imul(ze,Ge)|0)+Math.imul(Xe,Fe)|0,b=b+Math.imul(Xe,Ge)|0;var ot=(k+(_=_+Math.imul(N,at)|0)|0)+((8191&(a=(a=a+Math.imul(N,Lt)|0)+Math.imul(q,at)|0))<<13)|0;k=((b=b+Math.imul(q,Lt)|0)+(a>>>13)|0)+(ot>>>26)|0,ot&=67108863,_=Math.imul(Ue,Nt),a=(a=Math.imul(Ue,yt))+Math.imul(je,Nt)|0,b=Math.imul(je,yt),_=_+Math.imul(ve,Je)|0,a=(a=a+Math.imul(ve,et)|0)+Math.imul(_e,Je)|0,b=b+Math.imul(_e,et)|0,_=_+Math.imul(ct,It)|0,a=(a=a+Math.imul(ct,Qt)|0)+Math.imul(dt,It)|0,b=b+Math.imul(dt,Qt)|0,_=_+Math.imul(ue,xt)|0,a=(a=a+Math.imul(ue,Se)|0)+Math.imul(Be,xt)|0,b=b+Math.imul(Be,Se)|0,_=_+Math.imul(st,ce)|0,a=(a=a+Math.imul(st,Z)|0)+Math.imul(me,ce)|0,b=b+Math.imul(me,Z)|0,_=_+Math.imul(ae,Pe)|0,a=(a=a+Math.imul(ae,pt)|0)+Math.imul(he,Pe)|0,b=b+Math.imul(he,pt)|0,_=_+Math.imul(oe,Fe)|0,a=(a=a+Math.imul(oe,Ge)|0)+Math.imul(X,Fe)|0,b=b+Math.imul(X,Ge)|0,_=_+Math.imul(ze,at)|0,a=(a=a+Math.imul(ze,Lt)|0)+Math.imul(Xe,at)|0,b=b+Math.imul(Xe,Lt)|0;var Mt=(k+(_=_+Math.imul(N,$t)|0)|0)+((8191&(a=(a=a+Math.imul(N,Kt)|0)+Math.imul(q,$t)|0))<<13)|0;k=((b=b+Math.imul(q,Kt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul($e,Nt),a=(a=Math.imul($e,yt))+Math.imul(nt,Nt)|0,b=Math.imul(nt,yt),_=_+Math.imul(Ue,Je)|0,a=(a=a+Math.imul(Ue,et)|0)+Math.imul(je,Je)|0,b=b+Math.imul(je,et)|0,_=_+Math.imul(ve,It)|0,a=(a=a+Math.imul(ve,Qt)|0)+Math.imul(_e,It)|0,b=b+Math.imul(_e,Qt)|0,_=_+Math.imul(ct,xt)|0,a=(a=a+Math.imul(ct,Se)|0)+Math.imul(dt,xt)|0,b=b+Math.imul(dt,Se)|0,_=_+Math.imul(ue,ce)|0,a=(a=a+Math.imul(ue,Z)|0)+Math.imul(Be,ce)|0,b=b+Math.imul(Be,Z)|0,_=_+Math.imul(st,Pe)|0,a=(a=a+Math.imul(st,pt)|0)+Math.imul(me,Pe)|0,b=b+Math.imul(me,pt)|0,_=_+Math.imul(ae,Fe)|0,a=(a=a+Math.imul(ae,Ge)|0)+Math.imul(he,Fe)|0,b=b+Math.imul(he,Ge)|0,_=_+Math.imul(oe,at)|0,a=(a=a+Math.imul(oe,Lt)|0)+Math.imul(X,at)|0,b=b+Math.imul(X,Lt)|0,_=_+Math.imul(ze,$t)|0,a=(a=a+Math.imul(ze,Kt)|0)+Math.imul(Xe,$t)|0,b=b+Math.imul(Xe,Kt)|0;var Bt=(k+(_=_+Math.imul(N,ti)|0)|0)+((8191&(a=(a=a+Math.imul(N,fi)|0)+Math.imul(q,ti)|0))<<13)|0;k=((b=b+Math.imul(q,fi)|0)+(a>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,_=Math.imul($e,Je),a=(a=Math.imul($e,et))+Math.imul(nt,Je)|0,b=Math.imul(nt,et),_=_+Math.imul(Ue,It)|0,a=(a=a+Math.imul(Ue,Qt)|0)+Math.imul(je,It)|0,b=b+Math.imul(je,Qt)|0,_=_+Math.imul(ve,xt)|0,a=(a=a+Math.imul(ve,Se)|0)+Math.imul(_e,xt)|0,b=b+Math.imul(_e,Se)|0,_=_+Math.imul(ct,ce)|0,a=(a=a+Math.imul(ct,Z)|0)+Math.imul(dt,ce)|0,b=b+Math.imul(dt,Z)|0,_=_+Math.imul(ue,Pe)|0,a=(a=a+Math.imul(ue,pt)|0)+Math.imul(Be,Pe)|0,b=b+Math.imul(Be,pt)|0,_=_+Math.imul(st,Fe)|0,a=(a=a+Math.imul(st,Ge)|0)+Math.imul(me,Fe)|0,b=b+Math.imul(me,Ge)|0,_=_+Math.imul(ae,at)|0,a=(a=a+Math.imul(ae,Lt)|0)+Math.imul(he,at)|0,b=b+Math.imul(he,Lt)|0,_=_+Math.imul(oe,$t)|0,a=(a=a+Math.imul(oe,Kt)|0)+Math.imul(X,$t)|0,b=b+Math.imul(X,Kt)|0;var Ci=(k+(_=_+Math.imul(ze,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ze,fi)|0)+Math.imul(Xe,ti)|0))<<13)|0;k=((b=b+Math.imul(Xe,fi)|0)+(a>>>13)|0)+(Ci>>>26)|0,Ci&=67108863,_=Math.imul($e,It),a=(a=Math.imul($e,Qt))+Math.imul(nt,It)|0,b=Math.imul(nt,Qt),_=_+Math.imul(Ue,xt)|0,a=(a=a+Math.imul(Ue,Se)|0)+Math.imul(je,xt)|0,b=b+Math.imul(je,Se)|0,_=_+Math.imul(ve,ce)|0,a=(a=a+Math.imul(ve,Z)|0)+Math.imul(_e,ce)|0,b=b+Math.imul(_e,Z)|0,_=_+Math.imul(ct,Pe)|0,a=(a=a+Math.imul(ct,pt)|0)+Math.imul(dt,Pe)|0,b=b+Math.imul(dt,pt)|0,_=_+Math.imul(ue,Fe)|0,a=(a=a+Math.imul(ue,Ge)|0)+Math.imul(Be,Fe)|0,b=b+Math.imul(Be,Ge)|0,_=_+Math.imul(st,at)|0,a=(a=a+Math.imul(st,Lt)|0)+Math.imul(me,at)|0,b=b+Math.imul(me,Lt)|0,_=_+Math.imul(ae,$t)|0,a=(a=a+Math.imul(ae,Kt)|0)+Math.imul(he,$t)|0,b=b+Math.imul(he,Kt)|0;var Ti=(k+(_=_+Math.imul(oe,ti)|0)|0)+((8191&(a=(a=a+Math.imul(oe,fi)|0)+Math.imul(X,ti)|0))<<13)|0;k=((b=b+Math.imul(X,fi)|0)+(a>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,_=Math.imul($e,xt),a=(a=Math.imul($e,Se))+Math.imul(nt,xt)|0,b=Math.imul(nt,Se),_=_+Math.imul(Ue,ce)|0,a=(a=a+Math.imul(Ue,Z)|0)+Math.imul(je,ce)|0,b=b+Math.imul(je,Z)|0,_=_+Math.imul(ve,Pe)|0,a=(a=a+Math.imul(ve,pt)|0)+Math.imul(_e,Pe)|0,b=b+Math.imul(_e,pt)|0,_=_+Math.imul(ct,Fe)|0,a=(a=a+Math.imul(ct,Ge)|0)+Math.imul(dt,Fe)|0,b=b+Math.imul(dt,Ge)|0,_=_+Math.imul(ue,at)|0,a=(a=a+Math.imul(ue,Lt)|0)+Math.imul(Be,at)|0,b=b+Math.imul(Be,Lt)|0,_=_+Math.imul(st,$t)|0,a=(a=a+Math.imul(st,Kt)|0)+Math.imul(me,$t)|0,b=b+Math.imul(me,Kt)|0;var Hi=(k+(_=_+Math.imul(ae,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ae,fi)|0)+Math.imul(he,ti)|0))<<13)|0;k=((b=b+Math.imul(he,fi)|0)+(a>>>13)|0)+(Hi>>>26)|0,Hi&=67108863,_=Math.imul($e,ce),a=(a=Math.imul($e,Z))+Math.imul(nt,ce)|0,b=Math.imul(nt,Z),_=_+Math.imul(Ue,Pe)|0,a=(a=a+Math.imul(Ue,pt)|0)+Math.imul(je,Pe)|0,b=b+Math.imul(je,pt)|0,_=_+Math.imul(ve,Fe)|0,a=(a=a+Math.imul(ve,Ge)|0)+Math.imul(_e,Fe)|0,b=b+Math.imul(_e,Ge)|0,_=_+Math.imul(ct,at)|0,a=(a=a+Math.imul(ct,Lt)|0)+Math.imul(dt,at)|0,b=b+Math.imul(dt,Lt)|0,_=_+Math.imul(ue,$t)|0,a=(a=a+Math.imul(ue,Kt)|0)+Math.imul(Be,$t)|0,b=b+Math.imul(Be,Kt)|0;var Zi=(k+(_=_+Math.imul(st,ti)|0)|0)+((8191&(a=(a=a+Math.imul(st,fi)|0)+Math.imul(me,ti)|0))<<13)|0;k=((b=b+Math.imul(me,fi)|0)+(a>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul($e,Pe),a=(a=Math.imul($e,pt))+Math.imul(nt,Pe)|0,b=Math.imul(nt,pt),_=_+Math.imul(Ue,Fe)|0,a=(a=a+Math.imul(Ue,Ge)|0)+Math.imul(je,Fe)|0,b=b+Math.imul(je,Ge)|0,_=_+Math.imul(ve,at)|0,a=(a=a+Math.imul(ve,Lt)|0)+Math.imul(_e,at)|0,b=b+Math.imul(_e,Lt)|0,_=_+Math.imul(ct,$t)|0,a=(a=a+Math.imul(ct,Kt)|0)+Math.imul(dt,$t)|0,b=b+Math.imul(dt,Kt)|0;var ln=(k+(_=_+Math.imul(ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ue,fi)|0)+Math.imul(Be,ti)|0))<<13)|0;k=((b=b+Math.imul(Be,fi)|0)+(a>>>13)|0)+(ln>>>26)|0,ln&=67108863,_=Math.imul($e,Fe),a=(a=Math.imul($e,Ge))+Math.imul(nt,Fe)|0,b=Math.imul(nt,Ge),_=_+Math.imul(Ue,at)|0,a=(a=a+Math.imul(Ue,Lt)|0)+Math.imul(je,at)|0,b=b+Math.imul(je,Lt)|0,_=_+Math.imul(ve,$t)|0,a=(a=a+Math.imul(ve,Kt)|0)+Math.imul(_e,$t)|0,b=b+Math.imul(_e,Kt)|0;var mn=(k+(_=_+Math.imul(ct,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ct,fi)|0)+Math.imul(dt,ti)|0))<<13)|0;k=((b=b+Math.imul(dt,fi)|0)+(a>>>13)|0)+(mn>>>26)|0,mn&=67108863,_=Math.imul($e,at),a=(a=Math.imul($e,Lt))+Math.imul(nt,at)|0,b=Math.imul(nt,Lt),_=_+Math.imul(Ue,$t)|0,a=(a=a+Math.imul(Ue,Kt)|0)+Math.imul(je,$t)|0,b=b+Math.imul(je,Kt)|0;var Ut=(k+(_=_+Math.imul(ve,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ve,fi)|0)+Math.imul(_e,ti)|0))<<13)|0;k=((b=b+Math.imul(_e,fi)|0)+(a>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul($e,$t),a=(a=Math.imul($e,Kt))+Math.imul(nt,$t)|0,b=Math.imul(nt,Kt);var lt=(k+(_=_+Math.imul(Ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(Ue,fi)|0)+Math.imul(je,ti)|0))<<13)|0;k=((b=b+Math.imul(je,fi)|0)+(a>>>13)|0)+(lt>>>26)|0,lt&=67108863;var re=(k+(_=Math.imul($e,ti))|0)+((8191&(a=(a=Math.imul($e,fi))+Math.imul(nt,ti)|0))<<13)|0;return k=((b=Math.imul(nt,fi))+(a>>>13)|0)+(re>>>26)|0,re&=67108863,A[0]=xn,A[1]=tn,A[2]=Vi,A[3]=Qi,A[4]=Xt,A[5]=St,A[6]=tt,A[7]=ot,A[8]=Mt,A[9]=Bt,A[10]=Ci,A[11]=Ti,A[12]=Hi,A[13]=Zi,A[14]=ln,A[15]=mn,A[16]=Ut,A[17]=lt,A[18]=re,0!==k&&(A[19]=k,m.length++),m};function W(T,n,c){return(new Q).mulp(T,n,c)}function Q(T,n){this.x=T,this.y=n}Math.imul||(j=V),l.prototype.mulTo=function(n,c){var m,d=this.length+n.length;return m=10===this.length&&10===n.length?j(this,n,c):d<63?V(this,n,c):d<1024?function Y(T,n,c){c.negative=n.negative^T.negative,c.length=T.length+n.length;for(var m=0,d=0,C=0;C>>26)|0)>>>26,A&=67108863}c.words[C]=k,m=A,A=d}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):W(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,d=0;d>=1;return d},Q.prototype.permute=function(n,c,m,d,C,A){for(var k=0;k>>=1)C++;return 1<>>=13),C>>>=13;for(A=2*c;A>=26,c+=d/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function I(T){for(var n=new Array(T.bitLength()),c=0;c>>d}return n}(n);if(0===c.length)return new l(1);for(var m=this,d=0;d=0);var C,c=n%26,m=(n-c)/26,d=67108863>>>26-c<<26-c;if(0!==c){var A=0;for(C=0;C>>26-c}A&&(this.words[C]=A,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),d=c?(c-c%26)/26:0;var C=n%26,A=Math.min((n-C)/26,this.length),k=67108863^67108863>>>C<A)for(this.length-=A,a=0;a=0&&(0!==b||a>=d);a--){var z=0|this.words[a];this.words[a]=b<<26-C|z>>>C,b=z&k}return _&&0!==b&&(_.words[_.length++]=b),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return x(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){x("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return x(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(x("number"==typeof n),x(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&A}for(;C>26,this.words[C+m]=67108863&A;if(0===k)return this.strip();for(x(-1===k),k=0,C=0;C>26,this.words[C]=67108863&A;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,d=this.clone(),C=n,A=0|C.words[C.length-1];0!=(m=26-this._countBits(A))&&(C=C.ushln(m),d.iushln(m),A=0|C.words[C.length-1]);var a,_=d.length-C.length;if("mod"!==c){(a=new l(null)).length=_+1,a.words=new Array(a.length);for(var b=0;b=0;N--){var q=67108864*(0|d.words[C.length+N])+(0|d.words[C.length+N-1]);for(q=Math.min(q/A|0,67108863),d._ishlnsubmul(C,q,N);0!==d.negative;)q--,d.negative=0,d._ishlnsubmul(C,1,N),d.isZero()||(d.negative^=1);a&&(a.words[N]=q)}return a&&a.strip(),d.strip(),"div"!==c&&0!==m&&d.iushrn(m),{div:a||null,mod:d}},l.prototype.divmod=function(n,c,m){return x(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,c),"mod"!==c&&(d=A.div.neg()),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:d,mod:C}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),c),"mod"!==c&&(d=A.div.neg()),{div:d,mod:A.mod}):this.negative&n.negative?(A=this.neg().divmod(n.neg(),c),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:A.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var d,C,A},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,d=n.ushrn(1),C=n.andln(1),A=m.cmp(d);return A<0||1===C&&0===A?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){x(n<=67108863);for(var c=(1<<26)%n,m=0,d=this.length-1;d>=0;d--)m=(c*m+(0|this.words[d]))%n;return m},l.prototype.idivn=function(n){x(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var d=(0|this.words[m])+67108864*c;this.words[m]=d/n|0,c=d%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){x(0===n.negative),x(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=new l(0),k=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var a=m.clone(),b=c.clone();!c.isZero();){for(var z=0,N=1;!(c.words[0]&N)&&z<26;++z,N<<=1);if(z>0)for(c.iushrn(z);z-- >0;)(d.isOdd()||C.isOdd())&&(d.iadd(a),C.isub(b)),d.iushrn(1),C.iushrn(1);for(var q=0,pe=1;!(m.words[0]&pe)&&q<26;++q,pe<<=1);if(q>0)for(m.iushrn(q);q-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(a),k.isub(b)),A.iushrn(1),k.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(A),C.isub(k)):(m.isub(c),A.isub(d),k.isub(C))}return{a:A,b:k,gcd:m.iushln(_)}},l.prototype._invmp=function(n){x(0===n.negative),x(!n.isZero());var z,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var k=0,_=1;!(c.words[0]&_)&&k<26;++k,_<<=1);if(k>0)for(c.iushrn(k);k-- >0;)d.isOdd()&&d.iadd(A),d.iushrn(1);for(var a=0,b=1;!(m.words[0]&b)&&a<26;++a,b<<=1);if(a>0)for(m.iushrn(a);a-- >0;)C.isOdd()&&C.iadd(A),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(C)):(m.isub(c),C.isub(d))}return(z=0===c.cmpn(1)?d:C).cmpn(0)<0&&z.iadd(n),z},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var d=0;c.isEven()&&m.isEven();d++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var A=c;c=m,m=A}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(d)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){x("number"==typeof n);var c=n%26,m=(n-c)/26,d=1<>>26,this.words[A]=k&=67108863}return 0!==C&&(this.words[A]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),x(n<=67108863,"Number is too big");var d=0|this.words[0];m=d===n?0:dn.length)return 1;if(this.length=0;m--){var d=0|this.words[m],C=0|n.words[m];if(d!==C){dC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Ce(n)},l.prototype.toRed=function(n){return x(!this.red,"Already a number in reduction context"),x(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return x(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return x(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return x(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return x(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return x(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return x(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return x(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return x(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return x(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return x(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return x(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return x(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return x(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ie(T,n){this.name=T,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ee(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function fe(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ne(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Ce(T){if("string"==typeof T){var n=l._prime(T);this.m=n.p,this.prime=n}else x(T.gtn(1),"modulus must be greater than 1"),this.m=T,this.prime=null}function le(T){Ce.call(this,T),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ie.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var d=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ie.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ie.prototype.imulK=function(n){return n.imul(this.k)},D(ee,ie),ee.prototype.split=function(n,c){for(var m=4194303,d=Math.min(n.length,9),C=0;C>>22,A=k}n.words[C-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ee.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=d}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ee;else if("p224"===n)c=new fe;else if("p192"===n)c=new ne;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Ce.prototype._verify1=function(n){x(0===n.negative,"red works only with positives"),x(n.red,"red works only with red numbers")},Ce.prototype._verify2=function(n,c){x(!(n.negative|c.negative),"red works only with positives"),x(n.red&&n.red===c.red,"red works only with red numbers")},Ce.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Ce.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Ce.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Ce.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Ce.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Ce.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Ce.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Ce.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Ce.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Ce.prototype.isqr=function(n){return this.imul(n,n.clone())},Ce.prototype.sqr=function(n){return this.mul(n,n)},Ce.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(x(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var d=this.m.subn(1),C=0;!d.isZero()&&0===d.andln(1);)C++,d.iushrn(1);x(!d.isZero());var A=new l(1).toRed(this),k=A.redNeg(),_=this.m.subn(1).iushrn(1),a=this.m.bitLength();for(a=new l(2*a*a).toRed(this);0!==this.pow(a,_).cmp(k);)a.redIAdd(k);for(var b=this.pow(a,d),z=this.pow(n,d.addn(1).iushrn(1)),N=this.pow(n,d),q=C;0!==N.cmp(A);){for(var pe=N,ze=0;0!==pe.cmp(A);ze++)pe=pe.redSqr();x(ze=0;C--){for(var b=c.words[C],z=a-1;z>=0;z--){var N=b>>z&1;A!==d[0]&&(A=this.sqr(A)),0!==N||0!==k?(k<<=1,k|=N,(4==++_||0===C&&0===z)&&(A=this.mul(A,d[k]),_=0,k=0)):_=0}a=26}return A},Ce.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Ce.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new le(n)},D(le,Ce),le.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},le.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},le.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},4356:Qe=>{"use strict";var e,te="object"==typeof Reflect?Reflect:null,g=te&&"function"==typeof te.apply?te.apply:function(ie,ee,fe){return Function.prototype.apply.call(ie,ee,fe)};e=te&&"function"==typeof te.ownKeys?te.ownKeys:Object.getOwnPropertySymbols?function(ie){return Object.getOwnPropertyNames(ie).concat(Object.getOwnPropertySymbols(ie))}:function(ie){return Object.getOwnPropertyNames(ie)};var x=Number.isNaN||function(ie){return ie!=ie};function D(){D.init.call(this)}Qe.exports=D,Qe.exports.once=function Y(J,ie){return new Promise(function(ee,fe){function ne(Ce){J.removeListener(ie,Me),fe(Ce)}function Me(){"function"==typeof J.removeListener&&J.removeListener("error",ne),ee([].slice.call(arguments))}Q(J,ie,Me,{once:!0}),"error"!==ie&&function W(J,ie,ee){"function"==typeof J.on&&Q(J,"error",ie,ee)}(J,ne,{once:!0})})},D.EventEmitter=D,D.prototype._events=void 0,D.prototype._eventsCount=0,D.prototype._maxListeners=void 0;var l=10;function w(J){if("function"!=typeof J)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof J)}function f(J){return void 0===J._maxListeners?D.defaultMaxListeners:J._maxListeners}function R(J,ie,ee,fe){var ne,Me,Ce;if(w(ee),void 0===(Me=J._events)?(Me=J._events=Object.create(null),J._eventsCount=0):(void 0!==Me.newListener&&(J.emit("newListener",ie,ee.listener?ee.listener:ee),Me=J._events),Ce=Me[ie]),void 0===Ce)Ce=Me[ie]=ee,++J._eventsCount;else if("function"==typeof Ce?Ce=Me[ie]=fe?[ee,Ce]:[Ce,ee]:fe?Ce.unshift(ee):Ce.push(ee),(ne=f(J))>0&&Ce.length>ne&&!Ce.warned){Ce.warned=!0;var le=new Error("Possible EventEmitter memory leak detected. "+Ce.length+" "+String(ie)+" listeners added. Use emitter.setMaxListeners() to increase limit");le.name="MaxListenersExceededWarning",le.emitter=J,le.type=ie,le.count=Ce.length,function t(J){console&&console.warn&&console.warn(J)}(le)}return J}function h(){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 S(J,ie,ee){var fe={fired:!1,wrapFn:void 0,target:J,type:ie,listener:ee},ne=h.bind(fe);return ne.listener=ee,fe.wrapFn=ne,ne}function y(J,ie,ee){var fe=J._events;if(void 0===fe)return[];var ne=fe[ie];return void 0===ne?[]:"function"==typeof ne?ee?[ne.listener||ne]:[ne]:ee?function j(J){for(var ie=new Array(J.length),ee=0;ee0&&(Ce=ee[0]),Ce instanceof Error)throw Ce;var le=new Error("Unhandled error."+(Ce?" ("+Ce.message+")":""));throw le.context=Ce,le}var T=Me[ie];if(void 0===T)return!1;if("function"==typeof T)g(T,this,ee);else{var n=T.length,c=I(T,n);for(fe=0;fe=0;Ce--)if(fe[Ce]===ee||fe[Ce].listener===ee){le=fe[Ce].listener,Me=Ce;break}if(Me<0)return this;0===Me?fe.shift():function V(J,ie){for(;ie+1=0;ne--)this.removeListener(ie,ee[ne]);return this},D.prototype.listeners=function(ie){return y(this,ie,!0)},D.prototype.rawListeners=function(ie){return y(this,ie,!1)},D.listenerCount=function(J,ie){return"function"==typeof J.listenerCount?J.listenerCount(ie):O.call(J,ie)},D.prototype.listenerCount=O,D.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},592:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(4725);Qe.exports=function x(D,l,w,f){if(e.isBuffer(D)||(D=e.from(D,"binary")),l&&(e.isBuffer(l)||(l=e.from(l,"binary")),8!==l.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var R=w/8,h=e.alloc(R),S=e.alloc(f||0),y=e.alloc(0);R>0||f>0;){var O=new t;O.update(y),O.update(D),l&&O.update(l),y=O.digest();var I=0;if(R>0){var V=h.length-R;I=Math.min(R,y.length),y.copy(h,V,0,I),R-=I}if(I0){var j=S.length-f,Y=Math.min(f,y.length-I);y.copy(S,j,I,I+Y),f-=Y}}return y.fill(0),{key:h,iv:S}}},3686:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7045).Transform;function l(w){t.call(this),this._block=e.allocUnsafe(w),this._blockSize=w,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}g(1993)(l,t),l.prototype._transform=function(w,f,R){var h=null;try{this.update(w,f)}catch(S){h=S}R(h)},l.prototype._flush=function(w){var f=null;try{this.push(this.digest())}catch(R){f=R}w(f)},l.prototype.update=function(w,f){if(function D(w,f){if(!e.isBuffer(w)&&"string"!=typeof w)throw new TypeError(f+" must be a string or a buffer")}(w,"Data"),this._finalized)throw new Error("Digest already called");e.isBuffer(w)||(w=e.from(w,f));for(var R=this._block,h=0;this._blockOffset+w.length-h>=this._blockSize;){for(var S=this._blockOffset;S0;++y)this._length[y]+=O,(O=this._length[y]/4294967296|0)>0&&(this._length[y]-=4294967296*O);return this},l.prototype._update=function(){throw new Error("_update is not implemented")},l.prototype.digest=function(w){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var f=this._digest();void 0!==w&&(f=f.toString(w)),this._block.fill(0),this._blockOffset=0;for(var R=0;R<4;++R)this._length[R]=0;return f},l.prototype._digest=function(){throw new Error("_digest is not implemented")},Qe.exports=l},2529:(Qe,te,g)=>{var e=te;e.utils=g(8283),e.common=g(2901),e.sha=g(8528),e.ripemd=g(5283),e.hmac=g(7163),e.sha1=e.sha.sha1,e.sha256=e.sha.sha256,e.sha224=e.sha.sha224,e.sha384=e.sha.sha384,e.sha512=e.sha.sha512,e.ripemd160=e.ripemd.ripemd160},2901:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(9210);function x(){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}te.BlockHash=x,x.prototype.update=function(l,w){if(l=e.toArray(l,w),this.pending=this.pending?this.pending.concat(l):l,this.pendingTotal+=l.length,this.pending.length>=this._delta8){var f=(l=this.pending).length%this._delta8;this.pending=l.slice(l.length-f,l.length),0===this.pending.length&&(this.pending=null),l=e.join32(l,0,l.length-f,this.endian);for(var R=0;R>>24&255,R[h++]=l>>>16&255,R[h++]=l>>>8&255,R[h++]=255&l}else for(R[h++]=255&l,R[h++]=l>>>8&255,R[h++]=l>>>16&255,R[h++]=l>>>24&255,R[h++]=0,R[h++]=0,R[h++]=0,R[h++]=0,S=8;S{"use strict";var e=g(8283),t=g(9210);function x(D,l,w){if(!(this instanceof x))return new x(D,l,w);this.Hash=D,this.blockSize=D.blockSize/8,this.outSize=D.outSize/8,this.inner=null,this.outer=null,this._init(e.toArray(l,w))}Qe.exports=x,x.prototype._init=function(l){l.length>this.blockSize&&(l=(new this.Hash).update(l).digest()),t(l.length<=this.blockSize);for(var w=l.length;w{"use strict";var e=g(8283),t=g(2901),x=e.rotl32,D=e.sum32,l=e.sum32_3,w=e.sum32_4,f=t.BlockHash;function R(){if(!(this instanceof R))return new R;f.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function h(Y,W,Q,J){return Y<=15?W^Q^J:Y<=31?W&Q|~W&J:Y<=47?(W|~Q)^J:Y<=63?W&J|Q&~J:W^(Q|~J)}function y(Y){return Y<=15?1352829926:Y<=31?1548603684:Y<=47?1836072691:Y<=63?2053994217:0}e.inherits(R,f),te.ripemd160=R,R.blockSize=512,R.outSize=160,R.hmacStrength=192,R.padLength=64,R.prototype._update=function(W,Q){for(var J=this.h[0],ie=this.h[1],ee=this.h[2],fe=this.h[3],ne=this.h[4],Me=J,Ce=ie,le=ee,T=fe,n=ne,c=0;c<80;c++){var m=D(x(w(J,h(c,ie,ee,fe),W[O[c]+Q],(Y=c)<=15?0:Y<=31?1518500249:Y<=47?1859775393:Y<=63?2400959708:2840853838),V[c]),ne);J=ne,ne=fe,fe=x(ee,10),ee=ie,ie=m,m=D(x(w(Me,h(79-c,Ce,le,T),W[I[c]+Q],y(c)),j[c]),n),Me=n,n=T,T=x(le,10),le=Ce,Ce=m}var Y;m=l(this.h[1],ee,T),this.h[1]=l(this.h[2],fe,n),this.h[2]=l(this.h[3],ne,Me),this.h[3]=l(this.h[4],J,Ce),this.h[4]=l(this.h[0],ie,le),this.h[0]=m},R.prototype._digest=function(W){return"hex"===W?e.toHex32(this.h,"little"):e.split32(this.h,"little")};var O=[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],I=[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],V=[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],j=[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]},8528:(Qe,te,g)=>{"use strict";te.sha1=g(3468),te.sha224=g(5563),te.sha256=g(7138),te.sha384=g(3898),te.sha512=g(827)},3468:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),x=g(3161),D=e.rotl32,l=e.sum32,w=e.sum32_5,f=x.ft_1,R=t.BlockHash,h=[1518500249,1859775393,2400959708,3395469782];function S(){if(!(this instanceof S))return new S;R.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}e.inherits(S,R),Qe.exports=S,S.blockSize=512,S.outSize=160,S.hmacStrength=80,S.padLength=64,S.prototype._update=function(O,I){for(var V=this.W,j=0;j<16;j++)V[j]=O[I+j];for(;j{"use strict";var e=g(8283),t=g(7138);function x(){if(!(this instanceof x))return new x;t.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}e.inherits(x,t),Qe.exports=x,x.blockSize=512,x.outSize=224,x.hmacStrength=192,x.padLength=64,x.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,7),"big"):e.split32(this.h.slice(0,7),"big")}},7138:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),x=g(3161),D=g(9210),l=e.sum32,w=e.sum32_4,f=e.sum32_5,R=x.ch32,h=x.maj32,S=x.s0_256,y=x.s1_256,O=x.g0_256,I=x.g1_256,V=t.BlockHash,j=[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 Y(){if(!(this instanceof Y))return new Y;V.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=j,this.W=new Array(64)}e.inherits(Y,V),Qe.exports=Y,Y.blockSize=512,Y.outSize=256,Y.hmacStrength=192,Y.padLength=64,Y.prototype._update=function(Q,J){for(var ie=this.W,ee=0;ee<16;ee++)ie[ee]=Q[J+ee];for(;ee{"use strict";var e=g(8283),t=g(827);function x(){if(!(this instanceof x))return new x;t.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}e.inherits(x,t),Qe.exports=x,x.blockSize=1024,x.outSize=384,x.hmacStrength=192,x.padLength=128,x.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,12),"big"):e.split32(this.h.slice(0,12),"big")}},827:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),x=g(9210),D=e.rotr64_hi,l=e.rotr64_lo,w=e.shr64_hi,f=e.shr64_lo,R=e.sum64,h=e.sum64_hi,S=e.sum64_lo,y=e.sum64_4_hi,O=e.sum64_4_lo,I=e.sum64_5_hi,V=e.sum64_5_lo,j=t.BlockHash,Y=[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 W(){if(!(this instanceof W))return new W;j.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=Y,this.W=new Array(160)}function Q(m,d,C,A,k){var _=m&C^~m&k;return _<0&&(_+=4294967296),_}function J(m,d,C,A,k,_){var a=d&A^~d&_;return a<0&&(a+=4294967296),a}function ie(m,d,C,A,k){var _=m&C^m&k^C&k;return _<0&&(_+=4294967296),_}function ee(m,d,C,A,k,_){var a=d&A^d&_^A&_;return a<0&&(a+=4294967296),a}function fe(m,d){var _=D(m,d,28)^D(d,m,2)^D(d,m,7);return _<0&&(_+=4294967296),_}function ne(m,d){var _=l(m,d,28)^l(d,m,2)^l(d,m,7);return _<0&&(_+=4294967296),_}function Me(m,d){var _=D(m,d,14)^D(m,d,18)^D(d,m,9);return _<0&&(_+=4294967296),_}function Ce(m,d){var _=l(m,d,14)^l(m,d,18)^l(d,m,9);return _<0&&(_+=4294967296),_}function le(m,d){var _=D(m,d,1)^D(m,d,8)^w(m,d,7);return _<0&&(_+=4294967296),_}function T(m,d){var _=l(m,d,1)^l(m,d,8)^f(m,d,7);return _<0&&(_+=4294967296),_}function n(m,d){var _=D(m,d,19)^D(d,m,29)^w(m,d,6);return _<0&&(_+=4294967296),_}function c(m,d){var _=l(m,d,19)^l(d,m,29)^f(m,d,6);return _<0&&(_+=4294967296),_}e.inherits(W,j),Qe.exports=W,W.blockSize=1024,W.outSize=512,W.hmacStrength=192,W.padLength=128,W.prototype._prepareBlock=function(d,C){for(var A=this.W,k=0;k<32;k++)A[k]=d[C+k];for(;k{"use strict";var t=g(8283).rotr32;function D(y,O,I){return y&O^~y&I}function l(y,O,I){return y&O^y&I^O&I}function w(y,O,I){return y^O^I}te.ft_1=function x(y,O,I,V){return 0===y?D(O,I,V):1===y||3===y?w(O,I,V):2===y?l(O,I,V):void 0},te.ch32=D,te.maj32=l,te.p32=w,te.s0_256=function f(y){return t(y,2)^t(y,13)^t(y,22)},te.s1_256=function R(y){return t(y,6)^t(y,11)^t(y,25)},te.g0_256=function h(y){return t(y,7)^t(y,18)^y>>>3},te.g1_256=function S(y){return t(y,17)^t(y,19)^y>>>10}},8283:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993);function x(c,m){return!(55296!=(64512&c.charCodeAt(m))||m<0||m+1>=c.length)&&56320==(64512&c.charCodeAt(m+1))}function w(c){return(c>>>24|c>>>8&65280|c<<8&16711680|(255&c)<<24)>>>0}function R(c){return 1===c.length?"0"+c:c}function h(c){return 7===c.length?"0"+c:6===c.length?"00"+c:5===c.length?"000"+c:4===c.length?"0000"+c:3===c.length?"00000"+c:2===c.length?"000000"+c:1===c.length?"0000000"+c:c}te.inherits=t,te.toArray=function D(c,m){if(Array.isArray(c))return c.slice();if(!c)return[];var d=[];if("string"==typeof c)if(m){if("hex"===m)for((c=c.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(c="0"+c),A=0;A>6|192,d[C++]=63&k|128):x(c,A)?(k=65536+((1023&k)<<10)+(1023&c.charCodeAt(++A)),d[C++]=k>>18|240,d[C++]=k>>12&63|128,d[C++]=k>>6&63|128,d[C++]=63&k|128):(d[C++]=k>>12|224,d[C++]=k>>6&63|128,d[C++]=63&k|128)}else for(A=0;A>>0;return k},te.split32=function y(c,m){for(var d=new Array(4*c.length),C=0,A=0;C>>24,d[A+1]=k>>>16&255,d[A+2]=k>>>8&255,d[A+3]=255&k):(d[A+3]=k>>>24,d[A+2]=k>>>16&255,d[A+1]=k>>>8&255,d[A]=255&k)}return d},te.rotr32=function O(c,m){return c>>>m|c<<32-m},te.rotl32=function I(c,m){return c<>>32-m},te.sum32=function V(c,m){return c+m>>>0},te.sum32_3=function j(c,m,d){return c+m+d>>>0},te.sum32_4=function Y(c,m,d,C){return c+m+d+C>>>0},te.sum32_5=function W(c,m,d,C,A){return c+m+d+C+A>>>0},te.sum64=function Q(c,m,d,C){var _=C+c[m+1]>>>0;c[m]=(_>>0,c[m+1]=_},te.sum64_hi=function J(c,m,d,C){return(m+C>>>0>>0},te.sum64_lo=function ie(c,m,d,C){return m+C>>>0},te.sum64_4_hi=function ee(c,m,d,C,A,k,_,a){var b=0,z=m;return b+=(z=z+C>>>0)>>0)>>0)>>0},te.sum64_4_lo=function fe(c,m,d,C,A,k,_,a){return m+C+k+a>>>0},te.sum64_5_hi=function ne(c,m,d,C,A,k,_,a,b,z){var N=0,q=m;return N+=(q=q+C>>>0)>>0)>>0)>>0)>>0},te.sum64_5_lo=function Me(c,m,d,C,A,k,_,a,b,z){return m+C+k+a+z>>>0},te.rotr64_hi=function Ce(c,m,d){return(m<<32-d|c>>>d)>>>0},te.rotr64_lo=function le(c,m,d){return(c<<32-d|m>>>d)>>>0},te.shr64_hi=function T(c,m,d){return c>>>d},te.shr64_lo=function n(c,m,d){return(c<<32-d|m>>>d)>>>0}},3556:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(1832),x=g(9210);function D(l){if(!(this instanceof D))return new D(l);this.hash=l.hash,this.predResist=!!l.predResist,this.outLen=this.hash.outSize,this.minEntropy=l.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var w=t.toArray(l.entropy,l.entropyEnc||"hex"),f=t.toArray(l.nonce,l.nonceEnc||"hex"),R=t.toArray(l.pers,l.persEnc||"hex");x(w.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(w,f,R)}Qe.exports=D,D.prototype._init=function(w,f,R){var h=w.concat(f).concat(R);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var S=0;S=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(w.concat(R||[])),this._reseed=1},D.prototype.generate=function(w,f,R,h){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof f&&(h=R,R=f,f=null),R&&(R=t.toArray(R,h||"hex"),this._update(R));for(var S=[];S.length{te.read=function(g,e,t,x,D){var l,w,f=8*D-x-1,R=(1<>1,S=-7,y=t?D-1:0,O=t?-1:1,I=g[e+y];for(y+=O,l=I&(1<<-S)-1,I>>=-S,S+=f;S>0;l=256*l+g[e+y],y+=O,S-=8);for(w=l&(1<<-S)-1,l>>=-S,S+=x;S>0;w=256*w+g[e+y],y+=O,S-=8);if(0===l)l=1-h;else{if(l===R)return w?NaN:1/0*(I?-1:1);w+=Math.pow(2,x),l-=h}return(I?-1:1)*w*Math.pow(2,l-x)},te.write=function(g,e,t,x,D,l){var w,f,R,h=8*l-D-1,S=(1<>1,O=23===D?Math.pow(2,-24)-Math.pow(2,-77):0,I=x?0:l-1,V=x?1:-1,j=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(f=isNaN(e)?1:0,w=S):(w=Math.floor(Math.log(e)/Math.LN2),e*(R=Math.pow(2,-w))<1&&(w--,R*=2),(e+=w+y>=1?O/R:O*Math.pow(2,1-y))*R>=2&&(w++,R/=2),w+y>=S?(f=0,w=S):w+y>=1?(f=(e*R-1)*Math.pow(2,D),w+=y):(f=e*Math.pow(2,y-1)*Math.pow(2,D),w=0));D>=8;g[t+I]=255&f,I+=V,f/=256,D-=8);for(w=w<0;g[t+I]=255&w,I+=V,w/=256,h-=8);g[t+I-V]|=128*j}},1993:Qe=>{Qe.exports="function"==typeof Object.create?function(g,e){e&&(g.super_=e,g.prototype=Object.create(e.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}))}:function(g,e){if(e){g.super_=e;var t=function(){};t.prototype=e.prototype,g.prototype=new t,g.prototype.constructor=g}}},53:Qe=>{var te={}.toString;Qe.exports=Array.isArray||function(g){return"[object Array]"==te.call(g)}},4725:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(3686),x=g(7054).Buffer,D=new Array(16);function l(){t.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function w(y,O){return y<>>32-O}function f(y,O,I,V,j,Y,W){return w(y+(O&I|~O&V)+j+Y|0,W)+O|0}function R(y,O,I,V,j,Y,W){return w(y+(O&V|I&~V)+j+Y|0,W)+O|0}function h(y,O,I,V,j,Y,W){return w(y+(O^I^V)+j+Y|0,W)+O|0}function S(y,O,I,V,j,Y,W){return w(y+(I^(O|~V))+j+Y|0,W)+O|0}e(l,t),l.prototype._update=function(){for(var y=D,O=0;O<16;++O)y[O]=this._block.readInt32LE(4*O);var I=this._a,V=this._b,j=this._c,Y=this._d;I=f(I,V,j,Y,y[0],3614090360,7),Y=f(Y,I,V,j,y[1],3905402710,12),j=f(j,Y,I,V,y[2],606105819,17),V=f(V,j,Y,I,y[3],3250441966,22),I=f(I,V,j,Y,y[4],4118548399,7),Y=f(Y,I,V,j,y[5],1200080426,12),j=f(j,Y,I,V,y[6],2821735955,17),V=f(V,j,Y,I,y[7],4249261313,22),I=f(I,V,j,Y,y[8],1770035416,7),Y=f(Y,I,V,j,y[9],2336552879,12),j=f(j,Y,I,V,y[10],4294925233,17),V=f(V,j,Y,I,y[11],2304563134,22),I=f(I,V,j,Y,y[12],1804603682,7),Y=f(Y,I,V,j,y[13],4254626195,12),j=f(j,Y,I,V,y[14],2792965006,17),I=R(I,V=f(V,j,Y,I,y[15],1236535329,22),j,Y,y[1],4129170786,5),Y=R(Y,I,V,j,y[6],3225465664,9),j=R(j,Y,I,V,y[11],643717713,14),V=R(V,j,Y,I,y[0],3921069994,20),I=R(I,V,j,Y,y[5],3593408605,5),Y=R(Y,I,V,j,y[10],38016083,9),j=R(j,Y,I,V,y[15],3634488961,14),V=R(V,j,Y,I,y[4],3889429448,20),I=R(I,V,j,Y,y[9],568446438,5),Y=R(Y,I,V,j,y[14],3275163606,9),j=R(j,Y,I,V,y[3],4107603335,14),V=R(V,j,Y,I,y[8],1163531501,20),I=R(I,V,j,Y,y[13],2850285829,5),Y=R(Y,I,V,j,y[2],4243563512,9),j=R(j,Y,I,V,y[7],1735328473,14),I=h(I,V=R(V,j,Y,I,y[12],2368359562,20),j,Y,y[5],4294588738,4),Y=h(Y,I,V,j,y[8],2272392833,11),j=h(j,Y,I,V,y[11],1839030562,16),V=h(V,j,Y,I,y[14],4259657740,23),I=h(I,V,j,Y,y[1],2763975236,4),Y=h(Y,I,V,j,y[4],1272893353,11),j=h(j,Y,I,V,y[7],4139469664,16),V=h(V,j,Y,I,y[10],3200236656,23),I=h(I,V,j,Y,y[13],681279174,4),Y=h(Y,I,V,j,y[0],3936430074,11),j=h(j,Y,I,V,y[3],3572445317,16),V=h(V,j,Y,I,y[6],76029189,23),I=h(I,V,j,Y,y[9],3654602809,4),Y=h(Y,I,V,j,y[12],3873151461,11),j=h(j,Y,I,V,y[15],530742520,16),I=S(I,V=h(V,j,Y,I,y[2],3299628645,23),j,Y,y[0],4096336452,6),Y=S(Y,I,V,j,y[7],1126891415,10),j=S(j,Y,I,V,y[14],2878612391,15),V=S(V,j,Y,I,y[5],4237533241,21),I=S(I,V,j,Y,y[12],1700485571,6),Y=S(Y,I,V,j,y[3],2399980690,10),j=S(j,Y,I,V,y[10],4293915773,15),V=S(V,j,Y,I,y[1],2240044497,21),I=S(I,V,j,Y,y[8],1873313359,6),Y=S(Y,I,V,j,y[15],4264355552,10),j=S(j,Y,I,V,y[6],2734768916,15),V=S(V,j,Y,I,y[13],1309151649,21),I=S(I,V,j,Y,y[4],4149444226,6),Y=S(Y,I,V,j,y[11],3174756917,10),j=S(j,Y,I,V,y[2],718787259,15),V=S(V,j,Y,I,y[9],3951481745,21),this._a=this._a+I|0,this._b=this._b+V|0,this._c=this._c+j|0,this._d=this._d+Y|0},l.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 y=x.allocUnsafe(16);return y.writeInt32LE(this._a,0),y.writeInt32LE(this._b,4),y.writeInt32LE(this._c,8),y.writeInt32LE(this._d,12),y},Qe.exports=l},3459:(Qe,te,g)=>{var e=g(7223),t=g(5294);function x(D){this.rand=D||new t.Rand}Qe.exports=x,x.create=function(l){return new x(l)},x.prototype._randbelow=function(l){var w=l.bitLength(),f=Math.ceil(w/8);do{var R=new e(this.rand.generate(f))}while(R.cmp(l)>=0);return R},x.prototype._randrange=function(l,w){var f=w.sub(l);return l.add(this._randbelow(f))},x.prototype.test=function(l,w,f){var R=l.bitLength(),h=e.mont(l),S=new e(1).toRed(h);w||(w=Math.max(1,R/48|0));for(var y=l.subn(1),O=0;!y.testn(O);O++);for(var I=l.shrn(O),V=y.toRed(h);w>0;w--){var Y=this._randrange(new e(2),y);f&&f(Y);var W=Y.toRed(h).redPow(I);if(0!==W.cmp(S)&&0!==W.cmp(V)){for(var Q=1;Q0;w--){var V=this._randrange(new e(2),S),j=l.gcd(V);if(0!==j.cmpn(1))return j;var Y=V.toRed(R).redPow(O);if(0!==Y.cmp(h)&&0!==Y.cmp(I)){for(var W=1;W=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function R(T,n,c){var m=f(T,c);return c-1>=n&&(m|=f(T,c-1)<<4),m}function h(T,n,c,m){for(var d=0,C=Math.min(T.length,c),A=n;A=49?k-49+10:k>=17?k-17+10:k}return d}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),x(c===(0|c)&&c>=2&&c<=36);var d=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(d++,this.negative=1),d=0;d-=3)this.words[C]|=(A=n[d]|n[d-1]<<8|n[d-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);else if("le"===m)for(d=0,C=0;d>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var d=0;d=c;d-=2)k=R(n,c,d)<=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;else for(d=(n.length-c)%2==0?c+1:c;d=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var d=0,C=1;C<=67108863;C*=c)d++;d--,C=C/c|0;for(var A=n.length-m,k=A%d,_=Math.min(A,A-k)+m,a=0,b=m;b<_;b+=d)a=h(n,b,b+d,c),this.imuln(C),this.words[0]+a<67108864?this.words[0]+=a:this._iaddn(a);if(0!==k){var z=1;for(a=h(n,b,n.length,c),b=0;b1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var S=["","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"],y=[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],O=[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 V(T,n,c){c.negative=n.negative^T.negative;var m=T.length+n.length|0;c.length=m,m=m-1|0;var d=0|T.words[0],C=0|n.words[0],A=d*C,_=A/67108864|0;c.words[0]=67108863&A;for(var a=1;a>>26,z=67108863&_,N=Math.min(a,n.length-1),q=Math.max(0,a-T.length+1);q<=N;q++)b+=(A=(d=0|T.words[a-q|0])*(C=0|n.words[q])+z)/67108864|0,z=67108863&A;c.words[a]=0|z,_=0|b}return 0!==_?c.words[a]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var d=0,C=0,A=0;A>>24-d&16777215)||A!==this.length-1?S[6-_.length]+_+m:_+m,(d+=2)>=26&&(d-=26,A--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var a=y[n],b=O[n];m="";var z=this.clone();for(z.negative=0;!z.isZero();){var N=z.modn(b).toString(n);m=(z=z.idivn(b)).isZero()?N+m:S[a-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}x(!1,"Base should be between 2 and 36")},l.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&&x(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return x(typeof w<"u"),this.toArrayLike(w,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var d=this.byteLength(),C=m||Math.max(1,d);x(d<=C,"byte array longer than desired length"),x(C>0,"Requested array length <= 0"),this.strip();var _,a,A="le"===c,k=new n(C),b=this.clone();if(A){for(a=0;!b.isZero();a++)_=b.andln(255),b.iushrn(8),k[a]=_;for(;a=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var d=0;dn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){x("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var d=0;d0&&(this.words[d]=~this.words[d]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){x("number"==typeof n&&n>=0);var m=n/26|0,d=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,d=n):(m=n,d=this);for(var C=0,A=0;A>>26;for(;0!==C&&A>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var d,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(d=this,C=n):(d=n,C=this);for(var A=0,k=0;k>26,this.words[k]=67108863&c;for(;0!==A&&k>26,this.words[k]=67108863&c;if(0===A&&k>>13,pe=0|d[1],ze=8191&pe,Xe=pe>>>13,We=0|d[2],oe=8191&We,X=We>>>13,se=0|d[3],ae=8191&se,he=se>>>13,Ie=0|d[4],st=8191&Ie,me=Ie>>>13,Ee=0|d[5],ue=8191&Ee,Be=Ee>>>13,Ct=0|d[6],ct=8191&Ct,dt=Ct>>>13,Yt=0|d[7],ve=8191&Yt,_e=Yt>>>13,we=0|d[8],Ue=8191&we,je=we>>>13,vt=0|d[9],$e=8191&vt,nt=vt>>>13,qt=0|C[0],Nt=8191&qt,yt=qt>>>13,jt=0|C[1],Je=8191&jt,et=jt>>>13,Ae=0|C[2],It=8191&Ae,Qt=Ae>>>13,Tt=0|C[3],xt=8191&Tt,Se=Tt>>>13,Te=0|C[4],ce=8191&Te,Z=Te>>>13,Re=0|C[5],Pe=8191&Re,pt=Re>>>13,Ke=0|C[6],Fe=8191&Ke,Ge=Ke>>>13,qe=0|C[7],at=8191&qe,Lt=qe>>>13,pi=0|C[8],$t=8191&pi,Kt=pi>>>13,Ui=0|C[9],ti=8191&Ui,fi=Ui>>>13;m.negative=n.negative^c.negative,m.length=19;var xn=(k+(_=Math.imul(N,Nt))|0)+((8191&(a=(a=Math.imul(N,yt))+Math.imul(q,Nt)|0))<<13)|0;k=((b=Math.imul(q,yt))+(a>>>13)|0)+(xn>>>26)|0,xn&=67108863,_=Math.imul(ze,Nt),a=(a=Math.imul(ze,yt))+Math.imul(Xe,Nt)|0,b=Math.imul(Xe,yt);var tn=(k+(_=_+Math.imul(N,Je)|0)|0)+((8191&(a=(a=a+Math.imul(N,et)|0)+Math.imul(q,Je)|0))<<13)|0;k=((b=b+Math.imul(q,et)|0)+(a>>>13)|0)+(tn>>>26)|0,tn&=67108863,_=Math.imul(oe,Nt),a=(a=Math.imul(oe,yt))+Math.imul(X,Nt)|0,b=Math.imul(X,yt),_=_+Math.imul(ze,Je)|0,a=(a=a+Math.imul(ze,et)|0)+Math.imul(Xe,Je)|0,b=b+Math.imul(Xe,et)|0;var Vi=(k+(_=_+Math.imul(N,It)|0)|0)+((8191&(a=(a=a+Math.imul(N,Qt)|0)+Math.imul(q,It)|0))<<13)|0;k=((b=b+Math.imul(q,Qt)|0)+(a>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,_=Math.imul(ae,Nt),a=(a=Math.imul(ae,yt))+Math.imul(he,Nt)|0,b=Math.imul(he,yt),_=_+Math.imul(oe,Je)|0,a=(a=a+Math.imul(oe,et)|0)+Math.imul(X,Je)|0,b=b+Math.imul(X,et)|0,_=_+Math.imul(ze,It)|0,a=(a=a+Math.imul(ze,Qt)|0)+Math.imul(Xe,It)|0,b=b+Math.imul(Xe,Qt)|0;var Qi=(k+(_=_+Math.imul(N,xt)|0)|0)+((8191&(a=(a=a+Math.imul(N,Se)|0)+Math.imul(q,xt)|0))<<13)|0;k=((b=b+Math.imul(q,Se)|0)+(a>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(st,Nt),a=(a=Math.imul(st,yt))+Math.imul(me,Nt)|0,b=Math.imul(me,yt),_=_+Math.imul(ae,Je)|0,a=(a=a+Math.imul(ae,et)|0)+Math.imul(he,Je)|0,b=b+Math.imul(he,et)|0,_=_+Math.imul(oe,It)|0,a=(a=a+Math.imul(oe,Qt)|0)+Math.imul(X,It)|0,b=b+Math.imul(X,Qt)|0,_=_+Math.imul(ze,xt)|0,a=(a=a+Math.imul(ze,Se)|0)+Math.imul(Xe,xt)|0,b=b+Math.imul(Xe,Se)|0;var Xt=(k+(_=_+Math.imul(N,ce)|0)|0)+((8191&(a=(a=a+Math.imul(N,Z)|0)+Math.imul(q,ce)|0))<<13)|0;k=((b=b+Math.imul(q,Z)|0)+(a>>>13)|0)+(Xt>>>26)|0,Xt&=67108863,_=Math.imul(ue,Nt),a=(a=Math.imul(ue,yt))+Math.imul(Be,Nt)|0,b=Math.imul(Be,yt),_=_+Math.imul(st,Je)|0,a=(a=a+Math.imul(st,et)|0)+Math.imul(me,Je)|0,b=b+Math.imul(me,et)|0,_=_+Math.imul(ae,It)|0,a=(a=a+Math.imul(ae,Qt)|0)+Math.imul(he,It)|0,b=b+Math.imul(he,Qt)|0,_=_+Math.imul(oe,xt)|0,a=(a=a+Math.imul(oe,Se)|0)+Math.imul(X,xt)|0,b=b+Math.imul(X,Se)|0,_=_+Math.imul(ze,ce)|0,a=(a=a+Math.imul(ze,Z)|0)+Math.imul(Xe,ce)|0,b=b+Math.imul(Xe,Z)|0;var St=(k+(_=_+Math.imul(N,Pe)|0)|0)+((8191&(a=(a=a+Math.imul(N,pt)|0)+Math.imul(q,Pe)|0))<<13)|0;k=((b=b+Math.imul(q,pt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,_=Math.imul(ct,Nt),a=(a=Math.imul(ct,yt))+Math.imul(dt,Nt)|0,b=Math.imul(dt,yt),_=_+Math.imul(ue,Je)|0,a=(a=a+Math.imul(ue,et)|0)+Math.imul(Be,Je)|0,b=b+Math.imul(Be,et)|0,_=_+Math.imul(st,It)|0,a=(a=a+Math.imul(st,Qt)|0)+Math.imul(me,It)|0,b=b+Math.imul(me,Qt)|0,_=_+Math.imul(ae,xt)|0,a=(a=a+Math.imul(ae,Se)|0)+Math.imul(he,xt)|0,b=b+Math.imul(he,Se)|0,_=_+Math.imul(oe,ce)|0,a=(a=a+Math.imul(oe,Z)|0)+Math.imul(X,ce)|0,b=b+Math.imul(X,Z)|0,_=_+Math.imul(ze,Pe)|0,a=(a=a+Math.imul(ze,pt)|0)+Math.imul(Xe,Pe)|0,b=b+Math.imul(Xe,pt)|0;var tt=(k+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(a=(a=a+Math.imul(N,Ge)|0)+Math.imul(q,Fe)|0))<<13)|0;k=((b=b+Math.imul(q,Ge)|0)+(a>>>13)|0)+(tt>>>26)|0,tt&=67108863,_=Math.imul(ve,Nt),a=(a=Math.imul(ve,yt))+Math.imul(_e,Nt)|0,b=Math.imul(_e,yt),_=_+Math.imul(ct,Je)|0,a=(a=a+Math.imul(ct,et)|0)+Math.imul(dt,Je)|0,b=b+Math.imul(dt,et)|0,_=_+Math.imul(ue,It)|0,a=(a=a+Math.imul(ue,Qt)|0)+Math.imul(Be,It)|0,b=b+Math.imul(Be,Qt)|0,_=_+Math.imul(st,xt)|0,a=(a=a+Math.imul(st,Se)|0)+Math.imul(me,xt)|0,b=b+Math.imul(me,Se)|0,_=_+Math.imul(ae,ce)|0,a=(a=a+Math.imul(ae,Z)|0)+Math.imul(he,ce)|0,b=b+Math.imul(he,Z)|0,_=_+Math.imul(oe,Pe)|0,a=(a=a+Math.imul(oe,pt)|0)+Math.imul(X,Pe)|0,b=b+Math.imul(X,pt)|0,_=_+Math.imul(ze,Fe)|0,a=(a=a+Math.imul(ze,Ge)|0)+Math.imul(Xe,Fe)|0,b=b+Math.imul(Xe,Ge)|0;var ot=(k+(_=_+Math.imul(N,at)|0)|0)+((8191&(a=(a=a+Math.imul(N,Lt)|0)+Math.imul(q,at)|0))<<13)|0;k=((b=b+Math.imul(q,Lt)|0)+(a>>>13)|0)+(ot>>>26)|0,ot&=67108863,_=Math.imul(Ue,Nt),a=(a=Math.imul(Ue,yt))+Math.imul(je,Nt)|0,b=Math.imul(je,yt),_=_+Math.imul(ve,Je)|0,a=(a=a+Math.imul(ve,et)|0)+Math.imul(_e,Je)|0,b=b+Math.imul(_e,et)|0,_=_+Math.imul(ct,It)|0,a=(a=a+Math.imul(ct,Qt)|0)+Math.imul(dt,It)|0,b=b+Math.imul(dt,Qt)|0,_=_+Math.imul(ue,xt)|0,a=(a=a+Math.imul(ue,Se)|0)+Math.imul(Be,xt)|0,b=b+Math.imul(Be,Se)|0,_=_+Math.imul(st,ce)|0,a=(a=a+Math.imul(st,Z)|0)+Math.imul(me,ce)|0,b=b+Math.imul(me,Z)|0,_=_+Math.imul(ae,Pe)|0,a=(a=a+Math.imul(ae,pt)|0)+Math.imul(he,Pe)|0,b=b+Math.imul(he,pt)|0,_=_+Math.imul(oe,Fe)|0,a=(a=a+Math.imul(oe,Ge)|0)+Math.imul(X,Fe)|0,b=b+Math.imul(X,Ge)|0,_=_+Math.imul(ze,at)|0,a=(a=a+Math.imul(ze,Lt)|0)+Math.imul(Xe,at)|0,b=b+Math.imul(Xe,Lt)|0;var Mt=(k+(_=_+Math.imul(N,$t)|0)|0)+((8191&(a=(a=a+Math.imul(N,Kt)|0)+Math.imul(q,$t)|0))<<13)|0;k=((b=b+Math.imul(q,Kt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul($e,Nt),a=(a=Math.imul($e,yt))+Math.imul(nt,Nt)|0,b=Math.imul(nt,yt),_=_+Math.imul(Ue,Je)|0,a=(a=a+Math.imul(Ue,et)|0)+Math.imul(je,Je)|0,b=b+Math.imul(je,et)|0,_=_+Math.imul(ve,It)|0,a=(a=a+Math.imul(ve,Qt)|0)+Math.imul(_e,It)|0,b=b+Math.imul(_e,Qt)|0,_=_+Math.imul(ct,xt)|0,a=(a=a+Math.imul(ct,Se)|0)+Math.imul(dt,xt)|0,b=b+Math.imul(dt,Se)|0,_=_+Math.imul(ue,ce)|0,a=(a=a+Math.imul(ue,Z)|0)+Math.imul(Be,ce)|0,b=b+Math.imul(Be,Z)|0,_=_+Math.imul(st,Pe)|0,a=(a=a+Math.imul(st,pt)|0)+Math.imul(me,Pe)|0,b=b+Math.imul(me,pt)|0,_=_+Math.imul(ae,Fe)|0,a=(a=a+Math.imul(ae,Ge)|0)+Math.imul(he,Fe)|0,b=b+Math.imul(he,Ge)|0,_=_+Math.imul(oe,at)|0,a=(a=a+Math.imul(oe,Lt)|0)+Math.imul(X,at)|0,b=b+Math.imul(X,Lt)|0,_=_+Math.imul(ze,$t)|0,a=(a=a+Math.imul(ze,Kt)|0)+Math.imul(Xe,$t)|0,b=b+Math.imul(Xe,Kt)|0;var Bt=(k+(_=_+Math.imul(N,ti)|0)|0)+((8191&(a=(a=a+Math.imul(N,fi)|0)+Math.imul(q,ti)|0))<<13)|0;k=((b=b+Math.imul(q,fi)|0)+(a>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,_=Math.imul($e,Je),a=(a=Math.imul($e,et))+Math.imul(nt,Je)|0,b=Math.imul(nt,et),_=_+Math.imul(Ue,It)|0,a=(a=a+Math.imul(Ue,Qt)|0)+Math.imul(je,It)|0,b=b+Math.imul(je,Qt)|0,_=_+Math.imul(ve,xt)|0,a=(a=a+Math.imul(ve,Se)|0)+Math.imul(_e,xt)|0,b=b+Math.imul(_e,Se)|0,_=_+Math.imul(ct,ce)|0,a=(a=a+Math.imul(ct,Z)|0)+Math.imul(dt,ce)|0,b=b+Math.imul(dt,Z)|0,_=_+Math.imul(ue,Pe)|0,a=(a=a+Math.imul(ue,pt)|0)+Math.imul(Be,Pe)|0,b=b+Math.imul(Be,pt)|0,_=_+Math.imul(st,Fe)|0,a=(a=a+Math.imul(st,Ge)|0)+Math.imul(me,Fe)|0,b=b+Math.imul(me,Ge)|0,_=_+Math.imul(ae,at)|0,a=(a=a+Math.imul(ae,Lt)|0)+Math.imul(he,at)|0,b=b+Math.imul(he,Lt)|0,_=_+Math.imul(oe,$t)|0,a=(a=a+Math.imul(oe,Kt)|0)+Math.imul(X,$t)|0,b=b+Math.imul(X,Kt)|0;var Ci=(k+(_=_+Math.imul(ze,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ze,fi)|0)+Math.imul(Xe,ti)|0))<<13)|0;k=((b=b+Math.imul(Xe,fi)|0)+(a>>>13)|0)+(Ci>>>26)|0,Ci&=67108863,_=Math.imul($e,It),a=(a=Math.imul($e,Qt))+Math.imul(nt,It)|0,b=Math.imul(nt,Qt),_=_+Math.imul(Ue,xt)|0,a=(a=a+Math.imul(Ue,Se)|0)+Math.imul(je,xt)|0,b=b+Math.imul(je,Se)|0,_=_+Math.imul(ve,ce)|0,a=(a=a+Math.imul(ve,Z)|0)+Math.imul(_e,ce)|0,b=b+Math.imul(_e,Z)|0,_=_+Math.imul(ct,Pe)|0,a=(a=a+Math.imul(ct,pt)|0)+Math.imul(dt,Pe)|0,b=b+Math.imul(dt,pt)|0,_=_+Math.imul(ue,Fe)|0,a=(a=a+Math.imul(ue,Ge)|0)+Math.imul(Be,Fe)|0,b=b+Math.imul(Be,Ge)|0,_=_+Math.imul(st,at)|0,a=(a=a+Math.imul(st,Lt)|0)+Math.imul(me,at)|0,b=b+Math.imul(me,Lt)|0,_=_+Math.imul(ae,$t)|0,a=(a=a+Math.imul(ae,Kt)|0)+Math.imul(he,$t)|0,b=b+Math.imul(he,Kt)|0;var Ti=(k+(_=_+Math.imul(oe,ti)|0)|0)+((8191&(a=(a=a+Math.imul(oe,fi)|0)+Math.imul(X,ti)|0))<<13)|0;k=((b=b+Math.imul(X,fi)|0)+(a>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,_=Math.imul($e,xt),a=(a=Math.imul($e,Se))+Math.imul(nt,xt)|0,b=Math.imul(nt,Se),_=_+Math.imul(Ue,ce)|0,a=(a=a+Math.imul(Ue,Z)|0)+Math.imul(je,ce)|0,b=b+Math.imul(je,Z)|0,_=_+Math.imul(ve,Pe)|0,a=(a=a+Math.imul(ve,pt)|0)+Math.imul(_e,Pe)|0,b=b+Math.imul(_e,pt)|0,_=_+Math.imul(ct,Fe)|0,a=(a=a+Math.imul(ct,Ge)|0)+Math.imul(dt,Fe)|0,b=b+Math.imul(dt,Ge)|0,_=_+Math.imul(ue,at)|0,a=(a=a+Math.imul(ue,Lt)|0)+Math.imul(Be,at)|0,b=b+Math.imul(Be,Lt)|0,_=_+Math.imul(st,$t)|0,a=(a=a+Math.imul(st,Kt)|0)+Math.imul(me,$t)|0,b=b+Math.imul(me,Kt)|0;var Hi=(k+(_=_+Math.imul(ae,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ae,fi)|0)+Math.imul(he,ti)|0))<<13)|0;k=((b=b+Math.imul(he,fi)|0)+(a>>>13)|0)+(Hi>>>26)|0,Hi&=67108863,_=Math.imul($e,ce),a=(a=Math.imul($e,Z))+Math.imul(nt,ce)|0,b=Math.imul(nt,Z),_=_+Math.imul(Ue,Pe)|0,a=(a=a+Math.imul(Ue,pt)|0)+Math.imul(je,Pe)|0,b=b+Math.imul(je,pt)|0,_=_+Math.imul(ve,Fe)|0,a=(a=a+Math.imul(ve,Ge)|0)+Math.imul(_e,Fe)|0,b=b+Math.imul(_e,Ge)|0,_=_+Math.imul(ct,at)|0,a=(a=a+Math.imul(ct,Lt)|0)+Math.imul(dt,at)|0,b=b+Math.imul(dt,Lt)|0,_=_+Math.imul(ue,$t)|0,a=(a=a+Math.imul(ue,Kt)|0)+Math.imul(Be,$t)|0,b=b+Math.imul(Be,Kt)|0;var Zi=(k+(_=_+Math.imul(st,ti)|0)|0)+((8191&(a=(a=a+Math.imul(st,fi)|0)+Math.imul(me,ti)|0))<<13)|0;k=((b=b+Math.imul(me,fi)|0)+(a>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul($e,Pe),a=(a=Math.imul($e,pt))+Math.imul(nt,Pe)|0,b=Math.imul(nt,pt),_=_+Math.imul(Ue,Fe)|0,a=(a=a+Math.imul(Ue,Ge)|0)+Math.imul(je,Fe)|0,b=b+Math.imul(je,Ge)|0,_=_+Math.imul(ve,at)|0,a=(a=a+Math.imul(ve,Lt)|0)+Math.imul(_e,at)|0,b=b+Math.imul(_e,Lt)|0,_=_+Math.imul(ct,$t)|0,a=(a=a+Math.imul(ct,Kt)|0)+Math.imul(dt,$t)|0,b=b+Math.imul(dt,Kt)|0;var ln=(k+(_=_+Math.imul(ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ue,fi)|0)+Math.imul(Be,ti)|0))<<13)|0;k=((b=b+Math.imul(Be,fi)|0)+(a>>>13)|0)+(ln>>>26)|0,ln&=67108863,_=Math.imul($e,Fe),a=(a=Math.imul($e,Ge))+Math.imul(nt,Fe)|0,b=Math.imul(nt,Ge),_=_+Math.imul(Ue,at)|0,a=(a=a+Math.imul(Ue,Lt)|0)+Math.imul(je,at)|0,b=b+Math.imul(je,Lt)|0,_=_+Math.imul(ve,$t)|0,a=(a=a+Math.imul(ve,Kt)|0)+Math.imul(_e,$t)|0,b=b+Math.imul(_e,Kt)|0;var mn=(k+(_=_+Math.imul(ct,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ct,fi)|0)+Math.imul(dt,ti)|0))<<13)|0;k=((b=b+Math.imul(dt,fi)|0)+(a>>>13)|0)+(mn>>>26)|0,mn&=67108863,_=Math.imul($e,at),a=(a=Math.imul($e,Lt))+Math.imul(nt,at)|0,b=Math.imul(nt,Lt),_=_+Math.imul(Ue,$t)|0,a=(a=a+Math.imul(Ue,Kt)|0)+Math.imul(je,$t)|0,b=b+Math.imul(je,Kt)|0;var Ut=(k+(_=_+Math.imul(ve,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ve,fi)|0)+Math.imul(_e,ti)|0))<<13)|0;k=((b=b+Math.imul(_e,fi)|0)+(a>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul($e,$t),a=(a=Math.imul($e,Kt))+Math.imul(nt,$t)|0,b=Math.imul(nt,Kt);var lt=(k+(_=_+Math.imul(Ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(Ue,fi)|0)+Math.imul(je,ti)|0))<<13)|0;k=((b=b+Math.imul(je,fi)|0)+(a>>>13)|0)+(lt>>>26)|0,lt&=67108863;var re=(k+(_=Math.imul($e,ti))|0)+((8191&(a=(a=Math.imul($e,fi))+Math.imul(nt,ti)|0))<<13)|0;return k=((b=Math.imul(nt,fi))+(a>>>13)|0)+(re>>>26)|0,re&=67108863,A[0]=xn,A[1]=tn,A[2]=Vi,A[3]=Qi,A[4]=Xt,A[5]=St,A[6]=tt,A[7]=ot,A[8]=Mt,A[9]=Bt,A[10]=Ci,A[11]=Ti,A[12]=Hi,A[13]=Zi,A[14]=ln,A[15]=mn,A[16]=Ut,A[17]=lt,A[18]=re,0!==k&&(A[19]=k,m.length++),m};function W(T,n,c){return(new Q).mulp(T,n,c)}function Q(T,n){this.x=T,this.y=n}Math.imul||(j=V),l.prototype.mulTo=function(n,c){var m,d=this.length+n.length;return m=10===this.length&&10===n.length?j(this,n,c):d<63?V(this,n,c):d<1024?function Y(T,n,c){c.negative=n.negative^T.negative,c.length=T.length+n.length;for(var m=0,d=0,C=0;C>>26)|0)>>>26,A&=67108863}c.words[C]=k,m=A,A=d}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):W(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,d=0;d>=1;return d},Q.prototype.permute=function(n,c,m,d,C,A){for(var k=0;k>>=1)C++;return 1<>>=13),C>>>=13;for(A=2*c;A>=26,c+=d/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function I(T){for(var n=new Array(T.bitLength()),c=0;c>>d}return n}(n);if(0===c.length)return new l(1);for(var m=this,d=0;d=0);var C,c=n%26,m=(n-c)/26,d=67108863>>>26-c<<26-c;if(0!==c){var A=0;for(C=0;C>>26-c}A&&(this.words[C]=A,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),d=c?(c-c%26)/26:0;var C=n%26,A=Math.min((n-C)/26,this.length),k=67108863^67108863>>>C<A)for(this.length-=A,a=0;a=0&&(0!==b||a>=d);a--){var z=0|this.words[a];this.words[a]=b<<26-C|z>>>C,b=z&k}return _&&0!==b&&(_.words[_.length++]=b),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return x(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){x("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return x(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(x("number"==typeof n),x(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&A}for(;C>26,this.words[C+m]=67108863&A;if(0===k)return this.strip();for(x(-1===k),k=0,C=0;C>26,this.words[C]=67108863&A;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,d=this.clone(),C=n,A=0|C.words[C.length-1];0!=(m=26-this._countBits(A))&&(C=C.ushln(m),d.iushln(m),A=0|C.words[C.length-1]);var a,_=d.length-C.length;if("mod"!==c){(a=new l(null)).length=_+1,a.words=new Array(a.length);for(var b=0;b=0;N--){var q=67108864*(0|d.words[C.length+N])+(0|d.words[C.length+N-1]);for(q=Math.min(q/A|0,67108863),d._ishlnsubmul(C,q,N);0!==d.negative;)q--,d.negative=0,d._ishlnsubmul(C,1,N),d.isZero()||(d.negative^=1);a&&(a.words[N]=q)}return a&&a.strip(),d.strip(),"div"!==c&&0!==m&&d.iushrn(m),{div:a||null,mod:d}},l.prototype.divmod=function(n,c,m){return x(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,c),"mod"!==c&&(d=A.div.neg()),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:d,mod:C}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),c),"mod"!==c&&(d=A.div.neg()),{div:d,mod:A.mod}):this.negative&n.negative?(A=this.neg().divmod(n.neg(),c),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:A.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var d,C,A},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,d=n.ushrn(1),C=n.andln(1),A=m.cmp(d);return A<0||1===C&&0===A?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){x(n<=67108863);for(var c=(1<<26)%n,m=0,d=this.length-1;d>=0;d--)m=(c*m+(0|this.words[d]))%n;return m},l.prototype.idivn=function(n){x(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var d=(0|this.words[m])+67108864*c;this.words[m]=d/n|0,c=d%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){x(0===n.negative),x(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=new l(0),k=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var a=m.clone(),b=c.clone();!c.isZero();){for(var z=0,N=1;!(c.words[0]&N)&&z<26;++z,N<<=1);if(z>0)for(c.iushrn(z);z-- >0;)(d.isOdd()||C.isOdd())&&(d.iadd(a),C.isub(b)),d.iushrn(1),C.iushrn(1);for(var q=0,pe=1;!(m.words[0]&pe)&&q<26;++q,pe<<=1);if(q>0)for(m.iushrn(q);q-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(a),k.isub(b)),A.iushrn(1),k.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(A),C.isub(k)):(m.isub(c),A.isub(d),k.isub(C))}return{a:A,b:k,gcd:m.iushln(_)}},l.prototype._invmp=function(n){x(0===n.negative),x(!n.isZero());var z,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var k=0,_=1;!(c.words[0]&_)&&k<26;++k,_<<=1);if(k>0)for(c.iushrn(k);k-- >0;)d.isOdd()&&d.iadd(A),d.iushrn(1);for(var a=0,b=1;!(m.words[0]&b)&&a<26;++a,b<<=1);if(a>0)for(m.iushrn(a);a-- >0;)C.isOdd()&&C.iadd(A),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(C)):(m.isub(c),C.isub(d))}return(z=0===c.cmpn(1)?d:C).cmpn(0)<0&&z.iadd(n),z},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var d=0;c.isEven()&&m.isEven();d++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var A=c;c=m,m=A}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(d)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){x("number"==typeof n);var c=n%26,m=(n-c)/26,d=1<>>26,this.words[A]=k&=67108863}return 0!==C&&(this.words[A]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),x(n<=67108863,"Number is too big");var d=0|this.words[0];m=d===n?0:dn.length)return 1;if(this.length=0;m--){var d=0|this.words[m],C=0|n.words[m];if(d!==C){dC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Ce(n)},l.prototype.toRed=function(n){return x(!this.red,"Already a number in reduction context"),x(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return x(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return x(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return x(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return x(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return x(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return x(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return x(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return x(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return x(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return x(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return x(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return x(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return x(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ie(T,n){this.name=T,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ee(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function fe(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ne(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Ce(T){if("string"==typeof T){var n=l._prime(T);this.m=n.p,this.prime=n}else x(T.gtn(1),"modulus must be greater than 1"),this.m=T,this.prime=null}function le(T){Ce.call(this,T),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ie.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var d=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ie.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ie.prototype.imulK=function(n){return n.imul(this.k)},D(ee,ie),ee.prototype.split=function(n,c){for(var m=4194303,d=Math.min(n.length,9),C=0;C>>22,A=k}n.words[C-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ee.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=d}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ee;else if("p224"===n)c=new fe;else if("p192"===n)c=new ne;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Ce.prototype._verify1=function(n){x(0===n.negative,"red works only with positives"),x(n.red,"red works only with red numbers")},Ce.prototype._verify2=function(n,c){x(!(n.negative|c.negative),"red works only with positives"),x(n.red&&n.red===c.red,"red works only with red numbers")},Ce.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Ce.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Ce.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Ce.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Ce.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Ce.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Ce.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Ce.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Ce.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Ce.prototype.isqr=function(n){return this.imul(n,n.clone())},Ce.prototype.sqr=function(n){return this.mul(n,n)},Ce.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(x(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var d=this.m.subn(1),C=0;!d.isZero()&&0===d.andln(1);)C++,d.iushrn(1);x(!d.isZero());var A=new l(1).toRed(this),k=A.redNeg(),_=this.m.subn(1).iushrn(1),a=this.m.bitLength();for(a=new l(2*a*a).toRed(this);0!==this.pow(a,_).cmp(k);)a.redIAdd(k);for(var b=this.pow(a,d),z=this.pow(n,d.addn(1).iushrn(1)),N=this.pow(n,d),q=C;0!==N.cmp(A);){for(var pe=N,ze=0;0!==pe.cmp(A);ze++)pe=pe.redSqr();x(ze=0;C--){for(var b=c.words[C],z=a-1;z>=0;z--){var N=b>>z&1;A!==d[0]&&(A=this.sqr(A)),0!==N||0!==k?(k<<=1,k|=N,(4==++_||0===C&&0===z)&&(A=this.mul(A,d[k]),_=0,k=0)):_=0}a=26}return A},Ce.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Ce.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new le(n)},D(le,Ce),le.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},le.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},le.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},9210:Qe=>{function te(g,e){if(!g)throw new Error(e||"Assertion failed")}Qe.exports=te,te.equal=function(e,t,x){if(e!=t)throw new Error(x||"Assertion failed: "+e+" != "+t)}},1832:(Qe,te)=>{"use strict";var g=te;function t(D){return 1===D.length?"0"+D:D}function x(D){for(var l="",w=0;w>8,S=255&R;h?w.push(h,S):w.push(S)}return w},g.zero2=t,g.toHex=x,g.encode=function(l,w){return"hex"===w?x(l):l}},1264:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(4478);Object.keys(e).forEach(function(t){"default"!==t&&Object.defineProperty(te,t,{enumerable:!0,get:function(){return e[t]}})})},3138:(Qe,te,g)=>{"use strict";var e=g(1990);te.certificate=g(4772);var t=e.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())});te.RSAPrivateKey=t;var x=e.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});te.RSAPublicKey=x;var D=e.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())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(D),this.key("subjectPublicKey").bitstr())});te.PublicKey=l;var w=e.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(D),this.key("subjectPrivateKey").octstr())});te.PrivateKey=w;var f=e.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())});te.EncryptedPrivateKey=f;var R=e.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())});te.DSAPrivateKey=R,te.DSAparam=e.define("DSAparam",function(){this.int()});var h=e.define("ECParameters",function(){this.choice({namedCurve:this.objid()})}),S=e.define("ECPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(h),this.key("publicKey").optional().explicit(1).bitstr())});te.ECPrivateKey=S,te.signature=e.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},4772:(Qe,te,g)=>{"use strict";var e=g(1990),t=e.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),x=e.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),D=e.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(D),this.key("subjectPublicKey").bitstr())}),w=e.define("RelativeDistinguishedName",function(){this.setof(x)}),f=e.define("RDNSequence",function(){this.seqof(w)}),R=e.define("Name",function(){this.choice({rdnSequence:this.use(f)})}),h=e.define("Validity",function(){this.seq().obj(this.key("notBefore").use(t),this.key("notAfter").use(t))}),S=e.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),y=e.define("TBSCertificate",function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(D),this.key("issuer").use(R),this.key("validity").use(h),this.key("subject").use(R),this.key("subjectPublicKeyInfo").use(l),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(S).optional())}),O=e.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(y),this.key("signatureAlgorithm").use(D),this.key("signatureValue").bitstr())});Qe.exports=O},9472:(Qe,te,g)=>{"use strict";var e=/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,x=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,D=g(592),l=g(3388),w=g(7054).Buffer;Qe.exports=function(f,R){var y,h=f.toString(),S=h.match(e);if(S){var I="aes"+S[1],V=w.from(S[2],"hex"),j=w.from(S[3].replace(/[\r\n]/g,""),"base64"),Y=D(R,V.slice(0,8),parseInt(S[1],10)).key,W=[],Q=l.createDecipheriv(I,Y,V);W.push(Q.update(j)),W.push(Q.final()),y=w.concat(W)}else{var O=h.match(x);y=w.from(O[2].replace(/[\r\n]/g,""),"base64")}return{tag:h.match(t)[1],data:y}}},5667:(Qe,te,g)=>{"use strict";var e=g(3138),t=g(5579),x=g(9472),D=g(3388),l=g(3397),w=g(7054).Buffer;function R(h){var S;"object"==typeof h&&!w.isBuffer(h)&&(S=h.passphrase,h=h.key),"string"==typeof h&&(h=w.from(h));var V,j,y=x(h,S),O=y.tag,I=y.data;switch(O){case"CERTIFICATE":j=e.certificate.decode(I,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(j||(j=e.PublicKey.decode(I,"der")),V=j.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPublicKey.decode(j.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return j.subjectPrivateKey=j.subjectPublicKey,{type:"ec",data:j};case"1.2.840.10040.4.1":return j.algorithm.params.pub_key=e.DSAparam.decode(j.subjectPublicKey.data,"der"),{type:"dsa",data:j.algorithm.params};default:throw new Error("unknown key id "+V)}case"ENCRYPTED PRIVATE KEY":I=function f(h,S){var y=h.algorithm.decrypt.kde.kdeparams.salt,O=parseInt(h.algorithm.decrypt.kde.kdeparams.iters.toString(),10),I=t[h.algorithm.decrypt.cipher.algo.join(".")],V=h.algorithm.decrypt.cipher.iv,j=h.subjectPrivateKey,Y=parseInt(I.split("-")[1],10)/8,W=l.pbkdf2Sync(S,y,O,Y,"sha1"),Q=D.createDecipheriv(I,W,V),J=[];return J.push(Q.update(j)),J.push(Q.final()),w.concat(J)}(I=e.EncryptedPrivateKey.decode(I,"der"),S);case"PRIVATE KEY":switch(V=(j=e.PrivateKey.decode(I,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPrivateKey.decode(j.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:j.algorithm.curve,privateKey:e.ECPrivateKey.decode(j.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return j.algorithm.params.priv_key=e.DSAparam.decode(j.subjectPrivateKey,"der"),{type:"dsa",params:j.algorithm.params};default:throw new Error("unknown key id "+V)}case"RSA PUBLIC KEY":return e.RSAPublicKey.decode(I,"der");case"RSA PRIVATE KEY":return e.RSAPrivateKey.decode(I,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:e.DSAPrivateKey.decode(I,"der")};case"EC PRIVATE KEY":return{curve:(I=e.ECPrivateKey.decode(I,"der")).parameters.value,privateKey:I.privateKey};default:throw new Error("unknown key type "+O)}}R.signature=e.signature,Qe.exports=R},3397:(Qe,te,g)=>{te.pbkdf2=g(2685),te.pbkdf2Sync=g(9111)},2685:(Qe,te,g)=>{var w,y,e=g(7054).Buffer,t=g(6111),x=g(5392),D=g(9111),l=g(6643),f=global.crypto&&global.crypto.subtle,R={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"},h=[];function O(){return y||(y=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function I(j,Y,W,Q,J){return f.importKey("raw",j,{name:"PBKDF2"},!1,["deriveBits"]).then(function(ie){return f.deriveBits({name:"PBKDF2",salt:Y,iterations:W,hash:{name:J}},ie,Q<<3)}).then(function(ie){return e.from(ie)})}Qe.exports=function(j,Y,W,Q,J,ie){"function"==typeof J&&(ie=J,J=void 0);var ee=R[(J=J||"sha1").toLowerCase()];if(ee&&"function"==typeof global.Promise){if(t(W,Q),j=l(j,x,"Password"),Y=l(Y,x,"Salt"),"function"!=typeof ie)throw new Error("No callback provided to pbkdf2");!function V(j,Y){j.then(function(W){O()(function(){Y(null,W)})},function(W){O()(function(){Y(W)})})}(function S(j){if(global.process&&!global.process.browser||!f||!f.importKey||!f.deriveBits)return Promise.resolve(!1);if(void 0!==h[j])return h[j];var Y=I(w=w||e.alloc(8),w,10,128,j).then(function(){return!0}).catch(function(){return!1});return h[j]=Y,Y}(ee).then(function(fe){return fe?I(j,Y,W,Q,ee):D(j,Y,W,Q,J)}),ie)}else O()(function(){var fe;try{fe=D(j,Y,W,Q,J)}catch(ne){return ie(ne)}ie(null,fe)})}},5392:Qe=>{var te;te=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",Qe.exports=te},6111:Qe=>{var te=Math.pow(2,30)-1;Qe.exports=function(g,e){if("number"!=typeof g)throw new TypeError("Iterations not a number");if(g<0)throw new TypeError("Bad iterations");if("number"!=typeof e)throw new TypeError("Key length not a number");if(e<0||e>te||e!=e)throw new TypeError("Bad key length")}},9111:(Qe,te,g)=>{var e=g(3407),t=g(6636),x=g(5443),D=g(7054).Buffer,l=g(6111),w=g(5392),f=g(6643),R=D.alloc(128),h={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function S(I,V,j){var Y=function y(I){return"rmd160"===I||"ripemd160"===I?function j(Y){return(new t).update(Y).digest()}:"md5"===I?e:function V(Y){return x(I).update(Y).digest()}}(I),W="sha512"===I||"sha384"===I?128:64;V.length>W?V=Y(V):V.length{var e=g(7054).Buffer;Qe.exports=function(t,x,D){if(e.isBuffer(t))return t;if("string"==typeof t)return e.from(t,x);if(ArrayBuffer.isView(t))return e.from(t.buffer);throw new TypeError(D+" must be a string, a Buffer, a typed array or a DataView")}},9656:Qe=>{"use strict";Qe.exports=typeof process>"u"||!process.version||0===process.version.indexOf("v0.")||0===process.version.indexOf("v1.")&&0!==process.version.indexOf("v1.8.")?{nextTick:function te(g,e,t,x){if("function"!=typeof g)throw new TypeError('"callback" argument must be a function');var l,w,D=arguments.length;switch(D){case 0:case 1:return process.nextTick(g);case 2:return process.nextTick(function(){g.call(null,e)});case 3:return process.nextTick(function(){g.call(null,e,t)});case 4:return process.nextTick(function(){g.call(null,e,t,x)});default:for(l=new Array(D-1),w=0;w{te.publicEncrypt=g(7267),te.privateDecrypt=g(8613),te.privateEncrypt=function(t,x){return te.publicEncrypt(t,x,!0)},te.publicDecrypt=function(t,x){return te.privateDecrypt(t,x,!0)}},715:(Qe,te,g)=>{var e=g(7211),t=g(7054).Buffer;function x(D){var l=t.allocUnsafe(4);return l.writeUInt32BE(D,0),l}Qe.exports=function(D,l){for(var R,w=t.alloc(0),f=0;w.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function R(T,n,c){var m=f(T,c);return c-1>=n&&(m|=f(T,c-1)<<4),m}function h(T,n,c,m){for(var d=0,C=Math.min(T.length,c),A=n;A=49?k-49+10:k>=17?k-17+10:k}return d}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),x(c===(0|c)&&c>=2&&c<=36);var d=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(d++,this.negative=1),d=0;d-=3)this.words[C]|=(A=n[d]|n[d-1]<<8|n[d-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);else if("le"===m)for(d=0,C=0;d>>26-k&67108863,(k+=24)>=26&&(k-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var d=0;d=c;d-=2)k=R(n,c,d)<=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;else for(d=(n.length-c)%2==0?c+1:c;d=18?(C-=18,this.words[A+=1]|=k>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var d=0,C=1;C<=67108863;C*=c)d++;d--,C=C/c|0;for(var A=n.length-m,k=A%d,_=Math.min(A,A-k)+m,a=0,b=m;b<_;b+=d)a=h(n,b,b+d,c),this.imuln(C),this.words[0]+a<67108864?this.words[0]+=a:this._iaddn(a);if(0!==k){var z=1;for(a=h(n,b,n.length,c),b=0;b1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var S=["","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"],y=[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],O=[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 V(T,n,c){c.negative=n.negative^T.negative;var m=T.length+n.length|0;c.length=m,m=m-1|0;var d=0|T.words[0],C=0|n.words[0],A=d*C,_=A/67108864|0;c.words[0]=67108863&A;for(var a=1;a>>26,z=67108863&_,N=Math.min(a,n.length-1),q=Math.max(0,a-T.length+1);q<=N;q++)b+=(A=(d=0|T.words[a-q|0])*(C=0|n.words[q])+z)/67108864|0,z=67108863&A;c.words[a]=0|z,_=0|b}return 0!==_?c.words[a]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var d=0,C=0,A=0;A>>24-d&16777215)||A!==this.length-1?S[6-_.length]+_+m:_+m,(d+=2)>=26&&(d-=26,A--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var a=y[n],b=O[n];m="";var z=this.clone();for(z.negative=0;!z.isZero();){var N=z.modn(b).toString(n);m=(z=z.idivn(b)).isZero()?N+m:S[a-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}x(!1,"Base should be between 2 and 36")},l.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&&x(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return x(typeof w<"u"),this.toArrayLike(w,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var d=this.byteLength(),C=m||Math.max(1,d);x(d<=C,"byte array longer than desired length"),x(C>0,"Requested array length <= 0"),this.strip();var _,a,A="le"===c,k=new n(C),b=this.clone();if(A){for(a=0;!b.isZero();a++)_=b.andln(255),b.iushrn(8),k[a]=_;for(;a=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var d=0;dn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){x("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var d=0;d0&&(this.words[d]=~this.words[d]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){x("number"==typeof n&&n>=0);var m=n/26|0,d=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,d=n):(m=n,d=this);for(var C=0,A=0;A>>26;for(;0!==C&&A>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var d,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(d=this,C=n):(d=n,C=this);for(var A=0,k=0;k>26,this.words[k]=67108863&c;for(;0!==A&&k>26,this.words[k]=67108863&c;if(0===A&&k>>13,pe=0|d[1],ze=8191&pe,Xe=pe>>>13,We=0|d[2],oe=8191&We,X=We>>>13,se=0|d[3],ae=8191&se,he=se>>>13,Ie=0|d[4],st=8191&Ie,me=Ie>>>13,Ee=0|d[5],ue=8191&Ee,Be=Ee>>>13,Ct=0|d[6],ct=8191&Ct,dt=Ct>>>13,Yt=0|d[7],ve=8191&Yt,_e=Yt>>>13,we=0|d[8],Ue=8191&we,je=we>>>13,vt=0|d[9],$e=8191&vt,nt=vt>>>13,qt=0|C[0],Nt=8191&qt,yt=qt>>>13,jt=0|C[1],Je=8191&jt,et=jt>>>13,Ae=0|C[2],It=8191&Ae,Qt=Ae>>>13,Tt=0|C[3],xt=8191&Tt,Se=Tt>>>13,Te=0|C[4],ce=8191&Te,Z=Te>>>13,Re=0|C[5],Pe=8191&Re,pt=Re>>>13,Ke=0|C[6],Fe=8191&Ke,Ge=Ke>>>13,qe=0|C[7],at=8191&qe,Lt=qe>>>13,pi=0|C[8],$t=8191&pi,Kt=pi>>>13,Ui=0|C[9],ti=8191&Ui,fi=Ui>>>13;m.negative=n.negative^c.negative,m.length=19;var xn=(k+(_=Math.imul(N,Nt))|0)+((8191&(a=(a=Math.imul(N,yt))+Math.imul(q,Nt)|0))<<13)|0;k=((b=Math.imul(q,yt))+(a>>>13)|0)+(xn>>>26)|0,xn&=67108863,_=Math.imul(ze,Nt),a=(a=Math.imul(ze,yt))+Math.imul(Xe,Nt)|0,b=Math.imul(Xe,yt);var tn=(k+(_=_+Math.imul(N,Je)|0)|0)+((8191&(a=(a=a+Math.imul(N,et)|0)+Math.imul(q,Je)|0))<<13)|0;k=((b=b+Math.imul(q,et)|0)+(a>>>13)|0)+(tn>>>26)|0,tn&=67108863,_=Math.imul(oe,Nt),a=(a=Math.imul(oe,yt))+Math.imul(X,Nt)|0,b=Math.imul(X,yt),_=_+Math.imul(ze,Je)|0,a=(a=a+Math.imul(ze,et)|0)+Math.imul(Xe,Je)|0,b=b+Math.imul(Xe,et)|0;var Vi=(k+(_=_+Math.imul(N,It)|0)|0)+((8191&(a=(a=a+Math.imul(N,Qt)|0)+Math.imul(q,It)|0))<<13)|0;k=((b=b+Math.imul(q,Qt)|0)+(a>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,_=Math.imul(ae,Nt),a=(a=Math.imul(ae,yt))+Math.imul(he,Nt)|0,b=Math.imul(he,yt),_=_+Math.imul(oe,Je)|0,a=(a=a+Math.imul(oe,et)|0)+Math.imul(X,Je)|0,b=b+Math.imul(X,et)|0,_=_+Math.imul(ze,It)|0,a=(a=a+Math.imul(ze,Qt)|0)+Math.imul(Xe,It)|0,b=b+Math.imul(Xe,Qt)|0;var Qi=(k+(_=_+Math.imul(N,xt)|0)|0)+((8191&(a=(a=a+Math.imul(N,Se)|0)+Math.imul(q,xt)|0))<<13)|0;k=((b=b+Math.imul(q,Se)|0)+(a>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(st,Nt),a=(a=Math.imul(st,yt))+Math.imul(me,Nt)|0,b=Math.imul(me,yt),_=_+Math.imul(ae,Je)|0,a=(a=a+Math.imul(ae,et)|0)+Math.imul(he,Je)|0,b=b+Math.imul(he,et)|0,_=_+Math.imul(oe,It)|0,a=(a=a+Math.imul(oe,Qt)|0)+Math.imul(X,It)|0,b=b+Math.imul(X,Qt)|0,_=_+Math.imul(ze,xt)|0,a=(a=a+Math.imul(ze,Se)|0)+Math.imul(Xe,xt)|0,b=b+Math.imul(Xe,Se)|0;var Xt=(k+(_=_+Math.imul(N,ce)|0)|0)+((8191&(a=(a=a+Math.imul(N,Z)|0)+Math.imul(q,ce)|0))<<13)|0;k=((b=b+Math.imul(q,Z)|0)+(a>>>13)|0)+(Xt>>>26)|0,Xt&=67108863,_=Math.imul(ue,Nt),a=(a=Math.imul(ue,yt))+Math.imul(Be,Nt)|0,b=Math.imul(Be,yt),_=_+Math.imul(st,Je)|0,a=(a=a+Math.imul(st,et)|0)+Math.imul(me,Je)|0,b=b+Math.imul(me,et)|0,_=_+Math.imul(ae,It)|0,a=(a=a+Math.imul(ae,Qt)|0)+Math.imul(he,It)|0,b=b+Math.imul(he,Qt)|0,_=_+Math.imul(oe,xt)|0,a=(a=a+Math.imul(oe,Se)|0)+Math.imul(X,xt)|0,b=b+Math.imul(X,Se)|0,_=_+Math.imul(ze,ce)|0,a=(a=a+Math.imul(ze,Z)|0)+Math.imul(Xe,ce)|0,b=b+Math.imul(Xe,Z)|0;var St=(k+(_=_+Math.imul(N,Pe)|0)|0)+((8191&(a=(a=a+Math.imul(N,pt)|0)+Math.imul(q,Pe)|0))<<13)|0;k=((b=b+Math.imul(q,pt)|0)+(a>>>13)|0)+(St>>>26)|0,St&=67108863,_=Math.imul(ct,Nt),a=(a=Math.imul(ct,yt))+Math.imul(dt,Nt)|0,b=Math.imul(dt,yt),_=_+Math.imul(ue,Je)|0,a=(a=a+Math.imul(ue,et)|0)+Math.imul(Be,Je)|0,b=b+Math.imul(Be,et)|0,_=_+Math.imul(st,It)|0,a=(a=a+Math.imul(st,Qt)|0)+Math.imul(me,It)|0,b=b+Math.imul(me,Qt)|0,_=_+Math.imul(ae,xt)|0,a=(a=a+Math.imul(ae,Se)|0)+Math.imul(he,xt)|0,b=b+Math.imul(he,Se)|0,_=_+Math.imul(oe,ce)|0,a=(a=a+Math.imul(oe,Z)|0)+Math.imul(X,ce)|0,b=b+Math.imul(X,Z)|0,_=_+Math.imul(ze,Pe)|0,a=(a=a+Math.imul(ze,pt)|0)+Math.imul(Xe,Pe)|0,b=b+Math.imul(Xe,pt)|0;var tt=(k+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(a=(a=a+Math.imul(N,Ge)|0)+Math.imul(q,Fe)|0))<<13)|0;k=((b=b+Math.imul(q,Ge)|0)+(a>>>13)|0)+(tt>>>26)|0,tt&=67108863,_=Math.imul(ve,Nt),a=(a=Math.imul(ve,yt))+Math.imul(_e,Nt)|0,b=Math.imul(_e,yt),_=_+Math.imul(ct,Je)|0,a=(a=a+Math.imul(ct,et)|0)+Math.imul(dt,Je)|0,b=b+Math.imul(dt,et)|0,_=_+Math.imul(ue,It)|0,a=(a=a+Math.imul(ue,Qt)|0)+Math.imul(Be,It)|0,b=b+Math.imul(Be,Qt)|0,_=_+Math.imul(st,xt)|0,a=(a=a+Math.imul(st,Se)|0)+Math.imul(me,xt)|0,b=b+Math.imul(me,Se)|0,_=_+Math.imul(ae,ce)|0,a=(a=a+Math.imul(ae,Z)|0)+Math.imul(he,ce)|0,b=b+Math.imul(he,Z)|0,_=_+Math.imul(oe,Pe)|0,a=(a=a+Math.imul(oe,pt)|0)+Math.imul(X,Pe)|0,b=b+Math.imul(X,pt)|0,_=_+Math.imul(ze,Fe)|0,a=(a=a+Math.imul(ze,Ge)|0)+Math.imul(Xe,Fe)|0,b=b+Math.imul(Xe,Ge)|0;var ot=(k+(_=_+Math.imul(N,at)|0)|0)+((8191&(a=(a=a+Math.imul(N,Lt)|0)+Math.imul(q,at)|0))<<13)|0;k=((b=b+Math.imul(q,Lt)|0)+(a>>>13)|0)+(ot>>>26)|0,ot&=67108863,_=Math.imul(Ue,Nt),a=(a=Math.imul(Ue,yt))+Math.imul(je,Nt)|0,b=Math.imul(je,yt),_=_+Math.imul(ve,Je)|0,a=(a=a+Math.imul(ve,et)|0)+Math.imul(_e,Je)|0,b=b+Math.imul(_e,et)|0,_=_+Math.imul(ct,It)|0,a=(a=a+Math.imul(ct,Qt)|0)+Math.imul(dt,It)|0,b=b+Math.imul(dt,Qt)|0,_=_+Math.imul(ue,xt)|0,a=(a=a+Math.imul(ue,Se)|0)+Math.imul(Be,xt)|0,b=b+Math.imul(Be,Se)|0,_=_+Math.imul(st,ce)|0,a=(a=a+Math.imul(st,Z)|0)+Math.imul(me,ce)|0,b=b+Math.imul(me,Z)|0,_=_+Math.imul(ae,Pe)|0,a=(a=a+Math.imul(ae,pt)|0)+Math.imul(he,Pe)|0,b=b+Math.imul(he,pt)|0,_=_+Math.imul(oe,Fe)|0,a=(a=a+Math.imul(oe,Ge)|0)+Math.imul(X,Fe)|0,b=b+Math.imul(X,Ge)|0,_=_+Math.imul(ze,at)|0,a=(a=a+Math.imul(ze,Lt)|0)+Math.imul(Xe,at)|0,b=b+Math.imul(Xe,Lt)|0;var Mt=(k+(_=_+Math.imul(N,$t)|0)|0)+((8191&(a=(a=a+Math.imul(N,Kt)|0)+Math.imul(q,$t)|0))<<13)|0;k=((b=b+Math.imul(q,Kt)|0)+(a>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul($e,Nt),a=(a=Math.imul($e,yt))+Math.imul(nt,Nt)|0,b=Math.imul(nt,yt),_=_+Math.imul(Ue,Je)|0,a=(a=a+Math.imul(Ue,et)|0)+Math.imul(je,Je)|0,b=b+Math.imul(je,et)|0,_=_+Math.imul(ve,It)|0,a=(a=a+Math.imul(ve,Qt)|0)+Math.imul(_e,It)|0,b=b+Math.imul(_e,Qt)|0,_=_+Math.imul(ct,xt)|0,a=(a=a+Math.imul(ct,Se)|0)+Math.imul(dt,xt)|0,b=b+Math.imul(dt,Se)|0,_=_+Math.imul(ue,ce)|0,a=(a=a+Math.imul(ue,Z)|0)+Math.imul(Be,ce)|0,b=b+Math.imul(Be,Z)|0,_=_+Math.imul(st,Pe)|0,a=(a=a+Math.imul(st,pt)|0)+Math.imul(me,Pe)|0,b=b+Math.imul(me,pt)|0,_=_+Math.imul(ae,Fe)|0,a=(a=a+Math.imul(ae,Ge)|0)+Math.imul(he,Fe)|0,b=b+Math.imul(he,Ge)|0,_=_+Math.imul(oe,at)|0,a=(a=a+Math.imul(oe,Lt)|0)+Math.imul(X,at)|0,b=b+Math.imul(X,Lt)|0,_=_+Math.imul(ze,$t)|0,a=(a=a+Math.imul(ze,Kt)|0)+Math.imul(Xe,$t)|0,b=b+Math.imul(Xe,Kt)|0;var Bt=(k+(_=_+Math.imul(N,ti)|0)|0)+((8191&(a=(a=a+Math.imul(N,fi)|0)+Math.imul(q,ti)|0))<<13)|0;k=((b=b+Math.imul(q,fi)|0)+(a>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,_=Math.imul($e,Je),a=(a=Math.imul($e,et))+Math.imul(nt,Je)|0,b=Math.imul(nt,et),_=_+Math.imul(Ue,It)|0,a=(a=a+Math.imul(Ue,Qt)|0)+Math.imul(je,It)|0,b=b+Math.imul(je,Qt)|0,_=_+Math.imul(ve,xt)|0,a=(a=a+Math.imul(ve,Se)|0)+Math.imul(_e,xt)|0,b=b+Math.imul(_e,Se)|0,_=_+Math.imul(ct,ce)|0,a=(a=a+Math.imul(ct,Z)|0)+Math.imul(dt,ce)|0,b=b+Math.imul(dt,Z)|0,_=_+Math.imul(ue,Pe)|0,a=(a=a+Math.imul(ue,pt)|0)+Math.imul(Be,Pe)|0,b=b+Math.imul(Be,pt)|0,_=_+Math.imul(st,Fe)|0,a=(a=a+Math.imul(st,Ge)|0)+Math.imul(me,Fe)|0,b=b+Math.imul(me,Ge)|0,_=_+Math.imul(ae,at)|0,a=(a=a+Math.imul(ae,Lt)|0)+Math.imul(he,at)|0,b=b+Math.imul(he,Lt)|0,_=_+Math.imul(oe,$t)|0,a=(a=a+Math.imul(oe,Kt)|0)+Math.imul(X,$t)|0,b=b+Math.imul(X,Kt)|0;var Ci=(k+(_=_+Math.imul(ze,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ze,fi)|0)+Math.imul(Xe,ti)|0))<<13)|0;k=((b=b+Math.imul(Xe,fi)|0)+(a>>>13)|0)+(Ci>>>26)|0,Ci&=67108863,_=Math.imul($e,It),a=(a=Math.imul($e,Qt))+Math.imul(nt,It)|0,b=Math.imul(nt,Qt),_=_+Math.imul(Ue,xt)|0,a=(a=a+Math.imul(Ue,Se)|0)+Math.imul(je,xt)|0,b=b+Math.imul(je,Se)|0,_=_+Math.imul(ve,ce)|0,a=(a=a+Math.imul(ve,Z)|0)+Math.imul(_e,ce)|0,b=b+Math.imul(_e,Z)|0,_=_+Math.imul(ct,Pe)|0,a=(a=a+Math.imul(ct,pt)|0)+Math.imul(dt,Pe)|0,b=b+Math.imul(dt,pt)|0,_=_+Math.imul(ue,Fe)|0,a=(a=a+Math.imul(ue,Ge)|0)+Math.imul(Be,Fe)|0,b=b+Math.imul(Be,Ge)|0,_=_+Math.imul(st,at)|0,a=(a=a+Math.imul(st,Lt)|0)+Math.imul(me,at)|0,b=b+Math.imul(me,Lt)|0,_=_+Math.imul(ae,$t)|0,a=(a=a+Math.imul(ae,Kt)|0)+Math.imul(he,$t)|0,b=b+Math.imul(he,Kt)|0;var Ti=(k+(_=_+Math.imul(oe,ti)|0)|0)+((8191&(a=(a=a+Math.imul(oe,fi)|0)+Math.imul(X,ti)|0))<<13)|0;k=((b=b+Math.imul(X,fi)|0)+(a>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,_=Math.imul($e,xt),a=(a=Math.imul($e,Se))+Math.imul(nt,xt)|0,b=Math.imul(nt,Se),_=_+Math.imul(Ue,ce)|0,a=(a=a+Math.imul(Ue,Z)|0)+Math.imul(je,ce)|0,b=b+Math.imul(je,Z)|0,_=_+Math.imul(ve,Pe)|0,a=(a=a+Math.imul(ve,pt)|0)+Math.imul(_e,Pe)|0,b=b+Math.imul(_e,pt)|0,_=_+Math.imul(ct,Fe)|0,a=(a=a+Math.imul(ct,Ge)|0)+Math.imul(dt,Fe)|0,b=b+Math.imul(dt,Ge)|0,_=_+Math.imul(ue,at)|0,a=(a=a+Math.imul(ue,Lt)|0)+Math.imul(Be,at)|0,b=b+Math.imul(Be,Lt)|0,_=_+Math.imul(st,$t)|0,a=(a=a+Math.imul(st,Kt)|0)+Math.imul(me,$t)|0,b=b+Math.imul(me,Kt)|0;var Hi=(k+(_=_+Math.imul(ae,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ae,fi)|0)+Math.imul(he,ti)|0))<<13)|0;k=((b=b+Math.imul(he,fi)|0)+(a>>>13)|0)+(Hi>>>26)|0,Hi&=67108863,_=Math.imul($e,ce),a=(a=Math.imul($e,Z))+Math.imul(nt,ce)|0,b=Math.imul(nt,Z),_=_+Math.imul(Ue,Pe)|0,a=(a=a+Math.imul(Ue,pt)|0)+Math.imul(je,Pe)|0,b=b+Math.imul(je,pt)|0,_=_+Math.imul(ve,Fe)|0,a=(a=a+Math.imul(ve,Ge)|0)+Math.imul(_e,Fe)|0,b=b+Math.imul(_e,Ge)|0,_=_+Math.imul(ct,at)|0,a=(a=a+Math.imul(ct,Lt)|0)+Math.imul(dt,at)|0,b=b+Math.imul(dt,Lt)|0,_=_+Math.imul(ue,$t)|0,a=(a=a+Math.imul(ue,Kt)|0)+Math.imul(Be,$t)|0,b=b+Math.imul(Be,Kt)|0;var Zi=(k+(_=_+Math.imul(st,ti)|0)|0)+((8191&(a=(a=a+Math.imul(st,fi)|0)+Math.imul(me,ti)|0))<<13)|0;k=((b=b+Math.imul(me,fi)|0)+(a>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul($e,Pe),a=(a=Math.imul($e,pt))+Math.imul(nt,Pe)|0,b=Math.imul(nt,pt),_=_+Math.imul(Ue,Fe)|0,a=(a=a+Math.imul(Ue,Ge)|0)+Math.imul(je,Fe)|0,b=b+Math.imul(je,Ge)|0,_=_+Math.imul(ve,at)|0,a=(a=a+Math.imul(ve,Lt)|0)+Math.imul(_e,at)|0,b=b+Math.imul(_e,Lt)|0,_=_+Math.imul(ct,$t)|0,a=(a=a+Math.imul(ct,Kt)|0)+Math.imul(dt,$t)|0,b=b+Math.imul(dt,Kt)|0;var ln=(k+(_=_+Math.imul(ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ue,fi)|0)+Math.imul(Be,ti)|0))<<13)|0;k=((b=b+Math.imul(Be,fi)|0)+(a>>>13)|0)+(ln>>>26)|0,ln&=67108863,_=Math.imul($e,Fe),a=(a=Math.imul($e,Ge))+Math.imul(nt,Fe)|0,b=Math.imul(nt,Ge),_=_+Math.imul(Ue,at)|0,a=(a=a+Math.imul(Ue,Lt)|0)+Math.imul(je,at)|0,b=b+Math.imul(je,Lt)|0,_=_+Math.imul(ve,$t)|0,a=(a=a+Math.imul(ve,Kt)|0)+Math.imul(_e,$t)|0,b=b+Math.imul(_e,Kt)|0;var mn=(k+(_=_+Math.imul(ct,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ct,fi)|0)+Math.imul(dt,ti)|0))<<13)|0;k=((b=b+Math.imul(dt,fi)|0)+(a>>>13)|0)+(mn>>>26)|0,mn&=67108863,_=Math.imul($e,at),a=(a=Math.imul($e,Lt))+Math.imul(nt,at)|0,b=Math.imul(nt,Lt),_=_+Math.imul(Ue,$t)|0,a=(a=a+Math.imul(Ue,Kt)|0)+Math.imul(je,$t)|0,b=b+Math.imul(je,Kt)|0;var Ut=(k+(_=_+Math.imul(ve,ti)|0)|0)+((8191&(a=(a=a+Math.imul(ve,fi)|0)+Math.imul(_e,ti)|0))<<13)|0;k=((b=b+Math.imul(_e,fi)|0)+(a>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul($e,$t),a=(a=Math.imul($e,Kt))+Math.imul(nt,$t)|0,b=Math.imul(nt,Kt);var lt=(k+(_=_+Math.imul(Ue,ti)|0)|0)+((8191&(a=(a=a+Math.imul(Ue,fi)|0)+Math.imul(je,ti)|0))<<13)|0;k=((b=b+Math.imul(je,fi)|0)+(a>>>13)|0)+(lt>>>26)|0,lt&=67108863;var re=(k+(_=Math.imul($e,ti))|0)+((8191&(a=(a=Math.imul($e,fi))+Math.imul(nt,ti)|0))<<13)|0;return k=((b=Math.imul(nt,fi))+(a>>>13)|0)+(re>>>26)|0,re&=67108863,A[0]=xn,A[1]=tn,A[2]=Vi,A[3]=Qi,A[4]=Xt,A[5]=St,A[6]=tt,A[7]=ot,A[8]=Mt,A[9]=Bt,A[10]=Ci,A[11]=Ti,A[12]=Hi,A[13]=Zi,A[14]=ln,A[15]=mn,A[16]=Ut,A[17]=lt,A[18]=re,0!==k&&(A[19]=k,m.length++),m};function W(T,n,c){return(new Q).mulp(T,n,c)}function Q(T,n){this.x=T,this.y=n}Math.imul||(j=V),l.prototype.mulTo=function(n,c){var m,d=this.length+n.length;return m=10===this.length&&10===n.length?j(this,n,c):d<63?V(this,n,c):d<1024?function Y(T,n,c){c.negative=n.negative^T.negative,c.length=T.length+n.length;for(var m=0,d=0,C=0;C>>26)|0)>>>26,A&=67108863}c.words[C]=k,m=A,A=d}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):W(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,d=0;d>=1;return d},Q.prototype.permute=function(n,c,m,d,C,A){for(var k=0;k>>=1)C++;return 1<>>=13),C>>>=13;for(A=2*c;A>=26,c+=d/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function I(T){for(var n=new Array(T.bitLength()),c=0;c>>d}return n}(n);if(0===c.length)return new l(1);for(var m=this,d=0;d=0);var C,c=n%26,m=(n-c)/26,d=67108863>>>26-c<<26-c;if(0!==c){var A=0;for(C=0;C>>26-c}A&&(this.words[C]=A,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),d=c?(c-c%26)/26:0;var C=n%26,A=Math.min((n-C)/26,this.length),k=67108863^67108863>>>C<A)for(this.length-=A,a=0;a=0&&(0!==b||a>=d);a--){var z=0|this.words[a];this.words[a]=b<<26-C|z>>>C,b=z&k}return _&&0!==b&&(_.words[_.length++]=b),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return x(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){x("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return x(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(x("number"==typeof n),x(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&A}for(;C>26,this.words[C+m]=67108863&A;if(0===k)return this.strip();for(x(-1===k),k=0,C=0;C>26,this.words[C]=67108863&A;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,d=this.clone(),C=n,A=0|C.words[C.length-1];0!=(m=26-this._countBits(A))&&(C=C.ushln(m),d.iushln(m),A=0|C.words[C.length-1]);var a,_=d.length-C.length;if("mod"!==c){(a=new l(null)).length=_+1,a.words=new Array(a.length);for(var b=0;b=0;N--){var q=67108864*(0|d.words[C.length+N])+(0|d.words[C.length+N-1]);for(q=Math.min(q/A|0,67108863),d._ishlnsubmul(C,q,N);0!==d.negative;)q--,d.negative=0,d._ishlnsubmul(C,1,N),d.isZero()||(d.negative^=1);a&&(a.words[N]=q)}return a&&a.strip(),d.strip(),"div"!==c&&0!==m&&d.iushrn(m),{div:a||null,mod:d}},l.prototype.divmod=function(n,c,m){return x(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,c),"mod"!==c&&(d=A.div.neg()),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:d,mod:C}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),c),"mod"!==c&&(d=A.div.neg()),{div:d,mod:A.mod}):this.negative&n.negative?(A=this.neg().divmod(n.neg(),c),"div"!==c&&(C=A.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:A.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var d,C,A},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,d=n.ushrn(1),C=n.andln(1),A=m.cmp(d);return A<0||1===C&&0===A?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){x(n<=67108863);for(var c=(1<<26)%n,m=0,d=this.length-1;d>=0;d--)m=(c*m+(0|this.words[d]))%n;return m},l.prototype.idivn=function(n){x(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var d=(0|this.words[m])+67108864*c;this.words[m]=d/n|0,c=d%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){x(0===n.negative),x(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=new l(0),k=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var a=m.clone(),b=c.clone();!c.isZero();){for(var z=0,N=1;!(c.words[0]&N)&&z<26;++z,N<<=1);if(z>0)for(c.iushrn(z);z-- >0;)(d.isOdd()||C.isOdd())&&(d.iadd(a),C.isub(b)),d.iushrn(1),C.iushrn(1);for(var q=0,pe=1;!(m.words[0]&pe)&&q<26;++q,pe<<=1);if(q>0)for(m.iushrn(q);q-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(a),k.isub(b)),A.iushrn(1),k.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(A),C.isub(k)):(m.isub(c),A.isub(d),k.isub(C))}return{a:A,b:k,gcd:m.iushln(_)}},l.prototype._invmp=function(n){x(0===n.negative),x(!n.isZero());var z,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var d=new l(1),C=new l(0),A=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var k=0,_=1;!(c.words[0]&_)&&k<26;++k,_<<=1);if(k>0)for(c.iushrn(k);k-- >0;)d.isOdd()&&d.iadd(A),d.iushrn(1);for(var a=0,b=1;!(m.words[0]&b)&&a<26;++a,b<<=1);if(a>0)for(m.iushrn(a);a-- >0;)C.isOdd()&&C.iadd(A),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),d.isub(C)):(m.isub(c),C.isub(d))}return(z=0===c.cmpn(1)?d:C).cmpn(0)<0&&z.iadd(n),z},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var d=0;c.isEven()&&m.isEven();d++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var A=c;c=m,m=A}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(d)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){x("number"==typeof n);var c=n%26,m=(n-c)/26,d=1<>>26,this.words[A]=k&=67108863}return 0!==C&&(this.words[A]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),x(n<=67108863,"Number is too big");var d=0|this.words[0];m=d===n?0:dn.length)return 1;if(this.length=0;m--){var d=0|this.words[m],C=0|n.words[m];if(d!==C){dC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Ce(n)},l.prototype.toRed=function(n){return x(!this.red,"Already a number in reduction context"),x(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return x(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return x(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return x(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return x(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return x(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return x(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return x(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return x(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return x(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return x(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return x(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return x(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return x(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return x(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ie(T,n){this.name=T,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ee(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function fe(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ne(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Ce(T){if("string"==typeof T){var n=l._prime(T);this.m=n.p,this.prime=n}else x(T.gtn(1),"modulus must be greater than 1"),this.m=T,this.prime=null}function le(T){Ce.call(this,T),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ie.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var d=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ie.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ie.prototype.imulK=function(n){return n.imul(this.k)},D(ee,ie),ee.prototype.split=function(n,c){for(var m=4194303,d=Math.min(n.length,9),C=0;C>>22,A=k}n.words[C-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ee.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=d}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ee;else if("p224"===n)c=new fe;else if("p192"===n)c=new ne;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Ce.prototype._verify1=function(n){x(0===n.negative,"red works only with positives"),x(n.red,"red works only with red numbers")},Ce.prototype._verify2=function(n,c){x(!(n.negative|c.negative),"red works only with positives"),x(n.red&&n.red===c.red,"red works only with red numbers")},Ce.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Ce.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Ce.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Ce.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Ce.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Ce.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Ce.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Ce.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Ce.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Ce.prototype.isqr=function(n){return this.imul(n,n.clone())},Ce.prototype.sqr=function(n){return this.mul(n,n)},Ce.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(x(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var d=this.m.subn(1),C=0;!d.isZero()&&0===d.andln(1);)C++,d.iushrn(1);x(!d.isZero());var A=new l(1).toRed(this),k=A.redNeg(),_=this.m.subn(1).iushrn(1),a=this.m.bitLength();for(a=new l(2*a*a).toRed(this);0!==this.pow(a,_).cmp(k);)a.redIAdd(k);for(var b=this.pow(a,d),z=this.pow(n,d.addn(1).iushrn(1)),N=this.pow(n,d),q=C;0!==N.cmp(A);){for(var pe=N,ze=0;0!==pe.cmp(A);ze++)pe=pe.redSqr();x(ze=0;C--){for(var b=c.words[C],z=a-1;z>=0;z--){var N=b>>z&1;A!==d[0]&&(A=this.sqr(A)),0!==N||0!==k?(k<<=1,k|=N,(4==++_||0===C&&0===z)&&(A=this.mul(A,d[k]),_=0,k=0)):_=0}a=26}return A},Ce.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Ce.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new le(n)},D(le,Ce),le.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},le.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},le.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),d=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(d).iushrn(this.shift),A=C;return C.cmp(this.m)>=0?A=C.isub(this.m):C.cmpn(0)<0&&(A=C.iadd(this.m)),A._forceRed(this)},le.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},8613:(Qe,te,g)=>{var e=g(5667),t=g(715),x=g(7196),D=g(6508),l=g(4105),w=g(7211),f=g(568),R=g(7054).Buffer;Qe.exports=function(I,V,j){var Y;Y=I.padding?I.padding:j?1:4;var J,W=e(I),Q=W.modulus.byteLength();if(V.length>Q||new D(V).cmp(W.modulus)>=0)throw new Error("decryption error");J=j?f(new D(V),W):l(V,W);var ie=R.alloc(Q-J.length);if(J=R.concat([ie,J],Q),4===Y)return function h(O,I){var V=O.modulus.byteLength(),j=w("sha1").update(R.alloc(0)).digest(),Y=j.length;if(0!==I[0])throw new Error("decryption error");var W=I.slice(1,Y+1),Q=I.slice(Y+1),J=x(W,t(Q,Y)),ie=x(Q,t(J,V-Y-1));if(function y(O,I){O=R.from(O),I=R.from(I);var V=0,j=O.length;O.length!==I.length&&(V++,j=Math.min(O.length,I.length));for(var Y=-1;++Y=I.length){W++;break}var Q=I.slice(2,Y-1);if(("0002"!==j.toString("hex")&&!V||"0001"!==j.toString("hex")&&V)&&W++,Q.length<8&&W++,W)throw new Error("decryption error");return I.slice(Y)}(0,J,j);if(3===Y)return J;throw new Error("unknown padding")}},7267:(Qe,te,g)=>{var e=g(5667),t=g(3342),x=g(7211),D=g(715),l=g(7196),w=g(6508),f=g(568),R=g(4105),h=g(7054).Buffer;Qe.exports=function(V,j,Y){var W;W=V.padding?V.padding:Y?1:4;var J,Q=e(V);if(4===W)J=function S(I,V){var j=I.modulus.byteLength(),Y=V.length,W=x("sha1").update(h.alloc(0)).digest(),Q=W.length,J=2*Q;if(Y>j-J-2)throw new Error("message too long");var ie=h.alloc(j-Y-J-2),ee=j-Q-1,fe=t(Q),ne=l(h.concat([W,ie,h.alloc(1,1),V],ee),D(fe,ee)),Me=l(fe,D(ne,Q));return new w(h.concat([h.alloc(1),Me,ne],j))}(Q,j);else if(1===W)J=function y(I,V,j){var Q,Y=V.length,W=I.modulus.byteLength();if(Y>W-11)throw new Error("message too long");return Q=j?h.alloc(W-Y-3,255):function O(I){for(var Q,V=h.allocUnsafe(I),j=0,Y=t(2*I),W=0;j=0)throw new Error("data too long for modulus")}return Y?R(J,Q):f(J,Q)}},568:(Qe,te,g)=>{var e=g(6508),t=g(7054).Buffer;Qe.exports=function x(D,l){return t.from(D.toRed(e.mont(l.modulus)).redPow(new e(l.publicExponent)).fromRed().toArray())}},7196:Qe=>{Qe.exports=function(g,e){for(var t=g.length,x=-1;++x{const e=g(2836),t=g(9460),x=g(7030),D=g(6511);function l(w,f,R,h,S){const y=[].slice.call(arguments,1),O=y.length,I="function"==typeof y[O-1];if(!I&&!e())throw new Error("Callback required as last argument");if(!I){if(O<1)throw new Error("Too few arguments provided");return 1===O?(R=f,f=h=void 0):2===O&&!f.getContext&&(h=R,R=f,f=void 0),new Promise(function(V,j){try{const Y=t.create(R,h);V(w(Y,f,h))}catch(Y){j(Y)}})}if(O<2)throw new Error("Too few arguments provided");2===O?(S=R,R=f,f=h=void 0):3===O&&(f.getContext&&typeof S>"u"?(S=h,h=void 0):(S=h,h=R,R=f,f=void 0));try{const V=t.create(R,h);S(null,w(V,f,h))}catch(V){S(V)}}te.create=t.create,te.toCanvas=l.bind(null,x.render),te.toDataURL=l.bind(null,x.renderToDataURL),te.toString=l.bind(null,function(w,f,R){return D.render(w,R)})},2836:Qe=>{Qe.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6214:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getRowColCoords=function(x){if(1===x)return[];const D=Math.floor(x/7)+2,l=e(x),w=145===l?26:2*Math.ceil((l-13)/(2*D-2)),f=[l-7];for(let R=1;R{const e=g(1677),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 x(D){this.mode=e.ALPHANUMERIC,this.data=D}x.getBitsLength=function(l){return 11*Math.floor(l/2)+l%2*6},x.prototype.getLength=function(){return this.data.length},x.prototype.getBitsLength=function(){return x.getBitsLength(this.data.length)},x.prototype.write=function(l){let w;for(w=0;w+2<=this.data.length;w+=2){let f=45*t.indexOf(this.data[w]);f+=t.indexOf(this.data[w+1]),l.put(f,11)}this.data.length%2&&l.put(t.indexOf(this.data[w]),6)},Qe.exports=x},4662:Qe=>{function te(){this.buffer=[],this.length=0}te.prototype={get:function(g){const e=Math.floor(g/8);return 1==(this.buffer[e]>>>7-g%8&1)},put:function(g,e){for(let t=0;t>>e-t-1&1))},getLengthInBits:function(){return this.length},putBit:function(g){const e=Math.floor(this.length/8);this.buffer.length<=e&&this.buffer.push(0),g&&(this.buffer[e]|=128>>>this.length%8),this.length++}},Qe.exports=te},8322:Qe=>{function te(g){if(!g||g<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=g,this.data=new Uint8Array(g*g),this.reservedBit=new Uint8Array(g*g)}te.prototype.set=function(g,e,t,x){const D=g*this.size+e;this.data[D]=t,x&&(this.reservedBit[D]=!0)},te.prototype.get=function(g,e){return this.data[g*this.size+e]},te.prototype.xor=function(g,e,t){this.data[g*this.size+e]^=t},te.prototype.isReserved=function(g,e){return this.reservedBit[g*this.size+e]},Qe.exports=te},4969:(Qe,te,g)=>{const e=g(1677);function t(x){this.mode=e.BYTE,this.data="string"==typeof x?(new TextEncoder).encode(x):new Uint8Array(x)}t.getBitsLength=function(D){return 8*D},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(x){for(let D=0,l=this.data.length;D{const e=g(7424),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],x=[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];te.getBlocksCount=function(l,w){switch(w){case e.L:return t[4*(l-1)+0];case e.M:return t[4*(l-1)+1];case e.Q:return t[4*(l-1)+2];case e.H:return t[4*(l-1)+3];default:return}},te.getTotalCodewordsCount=function(l,w){switch(w){case e.L:return x[4*(l-1)+0];case e.M:return x[4*(l-1)+1];case e.Q:return x[4*(l-1)+2];case e.H:return x[4*(l-1)+3];default:return}}},7424:(Qe,te)=>{te.L={bit:1},te.M={bit:0},te.Q={bit:3},te.H={bit:2},te.isValid=function(t){return t&&typeof t.bit<"u"&&t.bit>=0&&t.bit<4},te.from=function(t,x){if(te.isValid(t))return t;try{return function g(e){if("string"!=typeof e)throw new Error("Param is not a string");switch(e.toLowerCase()){case"l":case"low":return te.L;case"m":case"medium":return te.M;case"q":case"quartile":return te.Q;case"h":case"high":return te.H;default:throw new Error("Unknown EC Level: "+e)}}(t)}catch{return x}}},6269:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getPositions=function(D){const l=e(D);return[[0,0],[l-7,0],[0,l-7]]}},6254:(Qe,te,g)=>{const e=g(9089),D=e.getBCHDigit(1335);te.getEncodedBits=function(w,f){const R=w.bit<<3|f;let h=R<<10;for(;e.getBCHDigit(h)-D>=0;)h^=1335<{const g=new Uint8Array(512),e=new Uint8Array(256);(function(){let x=1;for(let D=0;D<255;D++)g[D]=x,e[x]=D,x<<=1,256&x&&(x^=285);for(let D=255;D<512;D++)g[D]=g[D-255]})(),te.log=function(x){if(x<1)throw new Error("log("+x+")");return e[x]},te.exp=function(x){return g[x]},te.mul=function(x,D){return 0===x||0===D?0:g[e[x]+e[D]]}},3264:(Qe,te,g)=>{const e=g(1677),t=g(9089);function x(D){this.mode=e.KANJI,this.data=D}x.getBitsLength=function(l){return 13*l},x.prototype.getLength=function(){return this.data.length},x.prototype.getBitsLength=function(){return x.getBitsLength(this.data.length)},x.prototype.write=function(D){let l;for(l=0;l=33088&&w<=40956)w-=33088;else{if(!(w>=57408&&w<=60351))throw new Error("Invalid SJIS character: "+this.data[l]+"\nMake sure your charset is UTF-8");w-=49472}w=192*(w>>>8&255)+(255&w),D.put(w,13)}},Qe.exports=x},3361:(Qe,te)=>{te.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function e(t,x,D){switch(t){case te.Patterns.PATTERN000:return(x+D)%2==0;case te.Patterns.PATTERN001:return x%2==0;case te.Patterns.PATTERN010:return D%3==0;case te.Patterns.PATTERN011:return(x+D)%3==0;case te.Patterns.PATTERN100:return(Math.floor(x/2)+Math.floor(D/3))%2==0;case te.Patterns.PATTERN101:return x*D%2+x*D%3==0;case te.Patterns.PATTERN110:return(x*D%2+x*D%3)%2==0;case te.Patterns.PATTERN111:return(x*D%3+(x+D)%2)%2==0;default:throw new Error("bad maskPattern:"+t)}}te.isValid=function(x){return null!=x&&""!==x&&!isNaN(x)&&x>=0&&x<=7},te.from=function(x){return te.isValid(x)?parseInt(x,10):void 0},te.getPenaltyN1=function(x){const D=x.size;let l=0,w=0,f=0,R=null,h=null;for(let S=0;S=5&&(l+=w-5+3),R=O,w=1),O=x.get(y,S),O===h?f++:(f>=5&&(l+=f-5+3),h=O,f=1)}w>=5&&(l+=w-5+3),f>=5&&(l+=f-5+3)}return l},te.getPenaltyN2=function(x){const D=x.size;let l=0;for(let w=0;w=10&&(1488===w||93===w)&&l++,f=f<<1&2047|x.get(h,R),h>=10&&(1488===f||93===f)&&l++}return 40*l},te.getPenaltyN4=function(x){let D=0;const l=x.data.length;for(let f=0;f{const e=g(377),t=g(9359);te.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},te.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},te.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},te.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},te.MIXED={bit:-1},te.getCharCountIndicator=function(l,w){if(!l.ccBits)throw new Error("Invalid mode: "+l);if(!e.isValid(w))throw new Error("Invalid version: "+w);return w>=1&&w<10?l.ccBits[0]:w<27?l.ccBits[1]:l.ccBits[2]},te.getBestModeForData=function(l){return t.testNumeric(l)?te.NUMERIC:t.testAlphanumeric(l)?te.ALPHANUMERIC:t.testKanji(l)?te.KANJI:te.BYTE},te.toString=function(l){if(l&&l.id)return l.id;throw new Error("Invalid mode")},te.isValid=function(l){return l&&l.bit&&l.ccBits},te.from=function(l,w){if(te.isValid(l))return l;try{return function x(D){if("string"!=typeof D)throw new Error("Param is not a string");switch(D.toLowerCase()){case"numeric":return te.NUMERIC;case"alphanumeric":return te.ALPHANUMERIC;case"kanji":return te.KANJI;case"byte":return te.BYTE;default:throw new Error("Unknown mode: "+D)}}(l)}catch{return w}}},6628:(Qe,te,g)=>{const e=g(1677);function t(x){this.mode=e.NUMERIC,this.data=x.toString()}t.getBitsLength=function(D){return 10*Math.floor(D/3)+(D%3?D%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(D){let l,w,f;for(l=0;l+3<=this.data.length;l+=3)w=this.data.substr(l,3),f=parseInt(w,10),D.put(f,10);const R=this.data.length-l;R>0&&(w=this.data.substr(l),f=parseInt(w,10),D.put(f,3*R+1))},Qe.exports=t},1744:(Qe,te,g)=>{const e=g(6686);te.mul=function(x,D){const l=new Uint8Array(x.length+D.length-1);for(let w=0;w=0;){const w=l[0];for(let R=0;R{const e=g(9089),t=g(7424),x=g(4662),D=g(8322),l=g(6214),w=g(6269),f=g(3361),R=g(3677),h=g(6289),S=g(1252),y=g(6254),O=g(1677),I=g(2868);function Q(ne,Me,Ce){const le=ne.size,T=y.getEncodedBits(Me,Ce);let n,c;for(n=0;n<15;n++)c=1==(T>>n&1),ne.set(n<6?n:n<8?n+1:le-15+n,8,c,!0),ne.set(8,n<8?le-n-1:n<9?15-n-1+1:15-n-1,c,!0);ne.set(le-8,8,1,!0)}function fe(ne,Me,Ce,le){let T;if(Array.isArray(ne))T=I.fromArray(ne);else{if("string"!=typeof ne)throw new Error("Invalid data");{let C=Me;if(!C){const A=I.rawSplit(ne);C=S.getBestVersionForData(A,Ce)}T=I.fromString(ne,C||40)}}const n=S.getBestVersionForData(T,Ce);if(!n)throw new Error("The amount of data is too big to be stored in a QR Code");if(Me){if(Me=0&&m<=6&&(0===d||6===d)||d>=0&&d<=6&&(0===m||6===m)||m>=2&&m<=4&&d>=2&&d<=4,!0)}}(d,Me),function j(ne){const Me=ne.size;for(let Ce=8;Ce=7&&function W(ne,Me){const Ce=ne.size,le=S.getEncodedBits(Me);let T,n,c;for(let m=0;m<18;m++)T=Math.floor(m/3),n=m%3+Ce-8-3,c=1==(le>>m&1),ne.set(T,n,c,!0),ne.set(n,T,c,!0)}(d,Me),function J(ne,Me){const Ce=ne.size;let le=-1,T=Ce-1,n=7,c=0;for(let m=Ce-1;m>0;m-=2)for(6===m&&m--;;){for(let d=0;d<2;d++)if(!ne.isReserved(T,m-d)){let C=!1;c>>n&1)),ne.set(T,m-d,C),n--,-1===n&&(c++,n=7)}if(T+=le,T<0||Ce<=T){T-=le,le=-le;break}}}(d,c),isNaN(le)&&(le=f.getBestMask(d,Q.bind(null,d,Ce))),f.applyMask(le,d),Q(d,Ce,le),{modules:d,version:Me,errorCorrectionLevel:Ce,maskPattern:le,segments:T}}te.create=function(Me,Ce){if(typeof Me>"u"||""===Me)throw new Error("No input text");let T,n,le=t.M;return typeof Ce<"u"&&(le=t.from(Ce.errorCorrectionLevel,t.M),T=S.from(Ce.version),n=f.from(Ce.maskPattern),Ce.toSJISFunc&&e.setToSJISFunction(Ce.toSJISFunc)),fe(Me,T,le,n)}},6289:(Qe,te,g)=>{const e=g(1744);function t(x){this.genPoly=void 0,this.degree=x,this.degree&&this.initialize(this.degree)}t.prototype.initialize=function(D){this.degree=D,this.genPoly=e.generateECPolynomial(this.degree)},t.prototype.encode=function(D){if(!this.genPoly)throw new Error("Encoder not initialized");const l=new Uint8Array(D.length+this.degree);l.set(D);const w=e.mod(l,this.genPoly),f=this.degree-w.length;if(f>0){const R=new Uint8Array(this.degree);return R.set(w,f),R}return w},Qe.exports=t},9359:(Qe,te)=>{const g="[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 x="(?:(?![A-Z0-9 $%*+\\-./:]|"+t+")(?:.|[\r\n]))+";te.KANJI=new RegExp(t,"g"),te.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),te.BYTE=new RegExp(x,"g"),te.NUMERIC=new RegExp(g,"g"),te.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const D=new RegExp("^"+t+"$"),l=new RegExp("^"+g+"$"),w=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");te.testKanji=function(R){return D.test(R)},te.testNumeric=function(R){return l.test(R)},te.testAlphanumeric=function(R){return w.test(R)}},2868:(Qe,te,g)=>{const e=g(1677),t=g(6628),x=g(1018),D=g(4969),l=g(3264),w=g(9359),f=g(9089),R=g(243);function h(W){return unescape(encodeURIComponent(W)).length}function S(W,Q,J){const ie=[];let ee;for(;null!==(ee=W.exec(J));)ie.push({data:ee[0],index:ee.index,mode:Q,length:ee[0].length});return ie}function y(W){const Q=S(w.NUMERIC,e.NUMERIC,W),J=S(w.ALPHANUMERIC,e.ALPHANUMERIC,W);let ie,ee;return f.isKanjiModeEnabled()?(ie=S(w.BYTE,e.BYTE,W),ee=S(w.KANJI,e.KANJI,W)):(ie=S(w.BYTE_KANJI,e.BYTE,W),ee=[]),Q.concat(J,ie,ee).sort(function(ne,Me){return ne.index-Me.index}).map(function(ne){return{data:ne.data,mode:ne.mode,length:ne.length}})}function O(W,Q){switch(Q){case e.NUMERIC:return t.getBitsLength(W);case e.ALPHANUMERIC:return x.getBitsLength(W);case e.KANJI:return l.getBitsLength(W);case e.BYTE:return D.getBitsLength(W)}}function Y(W,Q){let J;const ie=e.getBestModeForData(W);if(J=e.from(Q,ie),J!==e.BYTE&&J.bit=0?Q[Q.length-1]:null;return ie&&ie.mode===J.mode?(Q[Q.length-1].data+=J.data,Q):(Q.push(J),Q)},[])}(Me))},te.rawSplit=function(Q){return te.fromArray(y(Q,f.isKanjiModeEnabled()))}},9089:(Qe,te)=>{let g;const e=[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];te.getSymbolSize=function(x){if(!x)throw new Error('"version" cannot be null or undefined');if(x<1||x>40)throw new Error('"version" should be in range from 1 to 40');return 4*x+17},te.getSymbolTotalCodewords=function(x){return e[x]},te.getBCHDigit=function(t){let x=0;for(;0!==t;)x++,t>>>=1;return x},te.setToSJISFunction=function(x){if("function"!=typeof x)throw new Error('"toSJISFunc" is not a valid function.');g=x},te.isKanjiModeEnabled=function(){return typeof g<"u"},te.toSJIS=function(x){return g(x)}},377:(Qe,te)=>{te.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}},1252:(Qe,te,g)=>{const e=g(9089),t=g(3677),x=g(7424),D=g(1677),l=g(377),f=e.getBCHDigit(7973);function h(O,I){return D.getCharCountIndicator(O,I)+4}function S(O,I){let V=0;return O.forEach(function(j){const Y=h(j.mode,I);V+=Y+j.getBitsLength()}),V}te.from=function(I,V){return l.isValid(I)?parseInt(I,10):V},te.getCapacity=function(I,V,j){if(!l.isValid(I))throw new Error("Invalid QR Code version");typeof j>"u"&&(j=D.BYTE);const Q=8*(e.getSymbolTotalCodewords(I)-t.getTotalCodewordsCount(I,V));if(j===D.MIXED)return Q;const J=Q-h(j,I);switch(j){case D.NUMERIC:return Math.floor(J/10*3);case D.ALPHANUMERIC:return Math.floor(J/11*2);case D.KANJI:return Math.floor(J/13);default:return Math.floor(J/8)}},te.getBestVersionForData=function(I,V){let j;const Y=x.from(V,x.M);if(Array.isArray(I)){if(I.length>1)return function y(O,I){for(let V=1;V<=40;V++)if(S(O,V)<=te.getCapacity(V,I,D.MIXED))return V}(I,Y);if(0===I.length)return 1;j=I[0]}else j=I;return function R(O,I,V){for(let j=1;j<=40;j++)if(I<=te.getCapacity(j,V,O))return j}(j.mode,j.getLength(),Y)},te.getEncodedBits=function(I){if(!l.isValid(I)||I<7)throw new Error("Invalid QR Code version");let V=I<<12;for(;e.getBCHDigit(V)-f>=0;)V^=7973<{const e=g(7077);te.render=function(l,w,f){let R=f,h=w;typeof R>"u"&&(!w||!w.getContext)&&(R=w,w=void 0),w||(h=function x(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),R=e.getOptions(R);const S=e.getImageWidth(l.modules.size,R),y=h.getContext("2d"),O=y.createImageData(S,S);return e.qrToImageData(O.data,l,R),function t(D,l,w){D.clearRect(0,0,l.width,l.height),l.style||(l.style={}),l.height=w,l.width=w,l.style.height=w+"px",l.style.width=w+"px"}(y,h,S),y.putImageData(O,0,0),h},te.renderToDataURL=function(l,w,f){let R=f;return typeof R>"u"&&(!w||!w.getContext)&&(R=w,w=void 0),R||(R={}),te.render(l,w,R).toDataURL(R.type||"image/png",(R.rendererOpts||{}).quality)}},6511:(Qe,te,g)=>{const e=g(7077);function t(l,w){const f=l.a/255,R=w+'="'+l.hex+'"';return f<1?R+" "+w+'-opacity="'+f.toFixed(2).slice(1)+'"':R}function x(l,w,f){let R=l+w;return typeof f<"u"&&(R+=" "+f),R}te.render=function(w,f,R){const h=e.getOptions(f),S=w.modules.size,y=w.modules.data,O=S+2*h.margin,I=h.color.light.a?"':"",V="0&&I>0&&l[O-1]||(R+=S?x("M",I+f,.5+V+f):x("m",h,0),h=0,S=!1),I+1',W=''+I+V+"\n";return"function"==typeof R&&R(null,W),W}},7077:(Qe,te)=>{function g(e){if("number"==typeof e&&(e=e.toString()),"string"!=typeof e)throw new Error("Color should be defined as hex string");let t=e.slice().replace("#","").split("");if(t.length<3||5===t.length||t.length>8)throw new Error("Invalid hex color: "+e);(3===t.length||4===t.length)&&(t=Array.prototype.concat.apply([],t.map(function(D){return[D,D]}))),6===t.length&&t.push("F","F");const x=parseInt(t.join(""),16);return{r:x>>24&255,g:x>>16&255,b:x>>8&255,a:255&x,hex:"#"+t.slice(0,6).join("")}}te.getOptions=function(t){t||(t={}),t.color||(t.color={});const D=t.width&&t.width>=21?t.width:void 0;return{width:D,scale:D?4:t.scale||4,margin:typeof t.margin>"u"||null===t.margin||t.margin<0?4:t.margin,color:{dark:g(t.color.dark||"#000000ff"),light:g(t.color.light||"#ffffffff")},type:t.type,rendererOpts:t.rendererOpts||{}}},te.getScale=function(t,x){return x.width&&x.width>=t+2*x.margin?x.width/(t+2*x.margin):x.scale},te.getImageWidth=function(t,x){const D=te.getScale(t,x);return Math.floor((t+2*x.margin)*D)},te.qrToImageData=function(t,x,D){const l=x.modules.size,w=x.modules.data,f=te.getScale(l,D),R=Math.floor((l+2*D.margin)*f),h=D.margin*f,S=[D.color.light,D.color.dark];for(let y=0;y=h&&O>=h&&y{"use strict";var e=65536,D=g(7054).Buffer,l=global.crypto||global.msCrypto;Qe.exports=l&&l.getRandomValues?function w(f,R){if(f>4294967295)throw new RangeError("requested too many random bytes");var h=D.allocUnsafe(f);if(f>0)if(f>e)for(var S=0;S{"use strict";function e(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var t=g(7054),x=g(3342),D=t.Buffer,l=t.kMaxLength,w=global.crypto||global.msCrypto,f=Math.pow(2,32)-1;function R(I,V){if("number"!=typeof I||I!=I)throw new TypeError("offset must be a number");if(I>f||I<0)throw new TypeError("offset must be a uint32");if(I>l||I>V)throw new RangeError("offset out of range")}function h(I,V,j){if("number"!=typeof I||I!=I)throw new TypeError("size must be a number");if(I>f||I<0)throw new TypeError("size must be a uint32");if(I+V>j||I>l)throw new RangeError("buffer too small")}function y(I,V,j,Y){if(process.browser){var Q=new Uint8Array(I.buffer,V,j);return w.getRandomValues(Q),Y?void process.nextTick(function(){Y(null,I)}):I}if(!Y)return x(j).copy(I,V),I;x(j,function(ie,ee){if(ie)return Y(ie);ee.copy(I,V),Y(null,I)})}w&&w.getRandomValues||!process.browser?(te.randomFill=function S(I,V,j,Y){if(!(D.isBuffer(I)||I instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof V)Y=V,V=0,j=I.length;else if("function"==typeof j)Y=j,j=I.length-V;else if("function"!=typeof Y)throw new TypeError('"cb" argument must be a function');return R(V,I.length),h(j,V,I.length),y(I,V,j,Y)},te.randomFillSync=function O(I,V,j){if(typeof V>"u"&&(V=0),!(D.isBuffer(I)||I instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return R(V,I.length),void 0===j&&(j=I.length-V),h(j,V,I.length),y(I,V,j)}):(te.randomFill=e,te.randomFillSync=e)},4075:(Qe,te,g)=>{"use strict";var e=g(9656),t=Object.keys||function(O){var I=[];for(var V in O)I.push(V);return I};Qe.exports=h;var x=Object.create(g(7637));x.inherits=g(1993);var D=g(9609),l=g(7849);x.inherits(h,D);for(var w=t(l.prototype),f=0;f{"use strict";Qe.exports=x;var e=g(2909),t=Object.create(g(7637));function x(D){if(!(this instanceof x))return new x(D);e.call(this,D)}t.inherits=g(1993),t.inherits(x,e),x.prototype._transform=function(D,l,w){w(null,D)}},9609:(Qe,te,g)=>{"use strict";var e=g(9656);Qe.exports=ie;var x,t=g(53);ie.ReadableState=J,g(4356);var l=function(oe,X){return oe.listeners(X).length},w=g(8342),f=g(2655).Buffer,R=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},y=Object.create(g(7637));y.inherits=g(1993);var O=g(9838),I=void 0;I=O&&O.debuglog?O.debuglog("stream"):function(){};var Y,V=g(7809),j=g(1509);y.inherits(ie,w);var W=["error","close","destroy","pause","resume"];function J(oe,X){var se=X instanceof(x=x||g(4075));this.objectMode=!!(oe=oe||{}).objectMode,se&&(this.objectMode=this.objectMode||!!oe.readableObjectMode);var ae=oe.highWaterMark,he=oe.readableHighWaterMark;this.highWaterMark=ae||0===ae?ae:se&&(he||0===he)?he:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new V,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=oe.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,oe.encoding&&(Y||(Y=g(8454).I),this.decoder=new Y(oe.encoding),this.encoding=oe.encoding)}function ie(oe){if(x=x||g(4075),!(this instanceof ie))return new ie(oe);this._readableState=new J(oe,this),this.readable=!0,oe&&("function"==typeof oe.read&&(this._read=oe.read),"function"==typeof oe.destroy&&(this._destroy=oe.destroy)),w.call(this)}function ee(oe,X,se,ae,he){var st,Ie=oe._readableState;return null===X?(Ie.reading=!1,function n(oe,X){if(!X.ended){if(X.decoder){var se=X.decoder.end();se&&se.length&&(X.buffer.push(se),X.length+=X.objectMode?1:se.length)}X.ended=!0,c(oe)}}(oe,Ie)):(he||(st=function ne(oe,X){var se;return!function S(oe){return f.isBuffer(oe)||oe instanceof R}(X)&&"string"!=typeof X&&void 0!==X&&!oe.objectMode&&(se=new TypeError("Invalid non-string/buffer chunk")),se}(Ie,X)),st?oe.emit("error",st):Ie.objectMode||X&&X.length>0?("string"!=typeof X&&!Ie.objectMode&&Object.getPrototypeOf(X)!==f.prototype&&(X=function h(oe){return f.from(oe)}(X)),ae?Ie.endEmitted?oe.emit("error",new Error("stream.unshift() after end event")):fe(oe,Ie,X,!0):Ie.ended?oe.emit("error",new Error("stream.push() after EOF")):(Ie.reading=!1,Ie.decoder&&!se?(X=Ie.decoder.write(X),Ie.objectMode||0!==X.length?fe(oe,Ie,X,!1):d(oe,Ie)):fe(oe,Ie,X,!1))):ae||(Ie.reading=!1)),function Me(oe){return!oe.ended&&(oe.needReadable||oe.lengthX.highWaterMark&&(X.highWaterMark=function le(oe){return oe>=8388608?oe=8388608:(oe--,oe|=oe>>>1,oe|=oe>>>2,oe|=oe>>>4,oe|=oe>>>8,oe|=oe>>>16,oe++),oe}(oe)),oe<=X.length?oe:X.ended?X.length:(X.needReadable=!0,0))}function c(oe){var X=oe._readableState;X.needReadable=!1,X.emittedReadable||(I("emitReadable",X.flowing),X.emittedReadable=!0,X.sync?e.nextTick(m,oe):m(oe))}function m(oe){I("emit readable"),oe.emit("readable"),b(oe)}function d(oe,X){X.readingMore||(X.readingMore=!0,e.nextTick(C,oe,X))}function C(oe,X){for(var se=X.length;!X.reading&&!X.flowing&&!X.ended&&X.length=X.length?(se=X.decoder?X.buffer.join(""):1===X.buffer.length?X.buffer.head.data:X.buffer.concat(X.length),X.buffer.clear()):se=function N(oe,X,se){var ae;return oeIe.length?Ie.length:oe;if(he+=st===Ie.length?Ie:Ie.slice(0,oe),0==(oe-=st)){st===Ie.length?(++ae,X.head=se.next?se.next:X.tail=null):(X.head=se,se.data=Ie.slice(st));break}++ae}return X.length-=ae,he}(oe,X):function pe(oe,X){var se=f.allocUnsafe(oe),ae=X.head,he=1;for(ae.data.copy(se),oe-=ae.data.length;ae=ae.next;){var Ie=ae.data,st=oe>Ie.length?Ie.length:oe;if(Ie.copy(se,se.length-oe,0,st),0==(oe-=st)){st===Ie.length?(++he,X.head=ae.next?ae.next:X.tail=null):(X.head=ae,ae.data=Ie.slice(st));break}++he}return X.length-=he,se}(oe,X),ae}(oe,X.buffer,X.decoder),se);var se}function ze(oe){var X=oe._readableState;if(X.length>0)throw new Error('"endReadable()" called on non-empty stream');X.endEmitted||(X.ended=!0,e.nextTick(Xe,X,oe))}function Xe(oe,X){!oe.endEmitted&&0===oe.length&&(oe.endEmitted=!0,X.readable=!1,X.emit("end"))}function We(oe,X){for(var se=0,ae=oe.length;se=X.highWaterMark||X.ended))return I("read: emitReadable",X.length,X.ended),0===X.length&&X.ended?ze(this):c(this),null;if(0===(oe=T(oe,X))&&X.ended)return 0===X.length&&ze(this),null;var he,ae=X.needReadable;return I("need readable",ae),(0===X.length||X.length-oe0?z(oe,X):null)?(X.needReadable=!0,oe=0):X.length-=oe,0===X.length&&(X.ended||(X.needReadable=!0),se!==oe&&X.ended&&ze(this)),null!==he&&this.emit("data",he),he},ie.prototype._read=function(oe){this.emit("error",new Error("_read() is not implemented"))},ie.prototype.pipe=function(oe,X){var se=this,ae=this._readableState;switch(ae.pipesCount){case 0:ae.pipes=oe;break;case 1:ae.pipes=[ae.pipes,oe];break;default:ae.pipes.push(oe)}ae.pipesCount+=1,I("pipe count=%d opts=%j",ae.pipesCount,X);var Ie=X&&!1===X.end||oe===process.stdout||oe===process.stderr?_e:me;function me(){I("onend"),oe.end()}ae.endEmitted?e.nextTick(Ie):se.once("end",Ie),oe.on("unpipe",function st(we,Ue){I("onunpipe"),we===se&&Ue&&!1===Ue.hasUnpiped&&(Ue.hasUnpiped=!0,function Be(){I("cleanup"),oe.removeListener("close",Yt),oe.removeListener("finish",ve),oe.removeListener("drain",Ee),oe.removeListener("error",dt),oe.removeListener("unpipe",st),se.removeListener("end",me),se.removeListener("end",_e),se.removeListener("data",ct),ue=!0,ae.awaitDrain&&(!oe._writableState||oe._writableState.needDrain)&&Ee()}())});var Ee=function A(oe){return function(){var X=oe._readableState;I("pipeOnDrain",X.awaitDrain),X.awaitDrain&&X.awaitDrain--,0===X.awaitDrain&&l(oe,"data")&&(X.flowing=!0,b(oe))}}(se);oe.on("drain",Ee);var ue=!1,Ct=!1;function ct(we){I("ondata"),Ct=!1,!1===oe.write(we)&&!Ct&&((1===ae.pipesCount&&ae.pipes===oe||ae.pipesCount>1&&-1!==We(ae.pipes,oe))&&!ue&&(I("false write response, pause",ae.awaitDrain),ae.awaitDrain++,Ct=!0),se.pause())}function dt(we){I("onerror",we),_e(),oe.removeListener("error",dt),0===l(oe,"error")&&oe.emit("error",we)}function Yt(){oe.removeListener("finish",ve),_e()}function ve(){I("onfinish"),oe.removeListener("close",Yt),_e()}function _e(){I("unpipe"),se.unpipe(oe)}return se.on("data",ct),function Q(oe,X,se){if("function"==typeof oe.prependListener)return oe.prependListener(X,se);oe._events&&oe._events[X]?t(oe._events[X])?oe._events[X].unshift(se):oe._events[X]=[se,oe._events[X]]:oe.on(X,se)}(oe,"error",dt),oe.once("close",Yt),oe.once("finish",ve),oe.emit("pipe",se),ae.flowing||(I("pipe resume"),se.resume()),oe},ie.prototype.unpipe=function(oe){var X=this._readableState,se={hasUnpiped:!1};if(0===X.pipesCount)return this;if(1===X.pipesCount)return oe&&oe!==X.pipes||(oe||(oe=X.pipes),X.pipes=null,X.pipesCount=0,X.flowing=!1,oe&&oe.emit("unpipe",this,se)),this;if(!oe){var ae=X.pipes,he=X.pipesCount;X.pipes=null,X.pipesCount=0,X.flowing=!1;for(var Ie=0;Ie{"use strict";Qe.exports=D;var e=g(4075),t=Object.create(g(7637));function x(f,R){var h=this._transformState;h.transforming=!1;var S=h.writecb;if(!S)return this.emit("error",new Error("write callback called multiple times"));h.writechunk=null,h.writecb=null,null!=R&&this.push(R),S(f);var y=this._readableState;y.reading=!1,(y.needReadable||y.length{"use strict";var e=g(9656);function x(_){var a=this;this.next=null,this.entry=null,this.finish=function(){!function k(_,a,b){var z=_.entry;for(_.entry=null;z;){var N=z.callback;a.pendingcb--,N(b),z=z.next}a.corkedRequestsFree.next=_}(a,_)}}Qe.exports=W;var l,D=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:e.nextTick;W.WritableState=j;var w=Object.create(g(7637));w.inherits=g(1993);var Y,f={deprecate:g(3398)},R=g(8342),h=g(2655).Buffer,S=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},I=g(1509);function V(){}function j(_,a){l=l||g(4075);var b=a instanceof l;this.objectMode=!!(_=_||{}).objectMode,b&&(this.objectMode=this.objectMode||!!_.writableObjectMode);var z=_.highWaterMark,N=_.writableHighWaterMark;this.highWaterMark=z||0===z?z:b&&(N||0===N)?N: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===_.decodeStrings),this.defaultEncoding=_.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ze){!function Ce(_,a){var b=_._writableState,z=b.sync,N=b.writecb;if(function Me(_){_.writing=!1,_.writecb=null,_.length-=_.writelen,_.writelen=0}(b),a)!function ne(_,a,b,z,N){--a.pendingcb,b?(e.nextTick(N,z),e.nextTick(C,_,a),_._writableState.errorEmitted=!0,_.emit("error",z)):(N(z),_._writableState.errorEmitted=!0,_.emit("error",z),C(_,a))}(_,b,z,a,N);else{var q=c(b);!q&&!b.corked&&!b.bufferProcessing&&b.bufferedRequest&&n(_,b),z?D(le,_,b,q,N):le(_,b,q,N)}}(a,ze)},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 x(this)}function W(_){if(l=l||g(4075),!(Y.call(W,this)||this instanceof l))return new W(_);this._writableState=new j(_,this),this.writable=!0,_&&("function"==typeof _.write&&(this._write=_.write),"function"==typeof _.writev&&(this._writev=_.writev),"function"==typeof _.destroy&&(this._destroy=_.destroy),"function"==typeof _.final&&(this._final=_.final)),R.call(this)}function fe(_,a,b,z,N,q,pe){a.writelen=z,a.writecb=pe,a.writing=!0,a.sync=!0,b?_._writev(N,a.onwrite):_._write(N,q,a.onwrite),a.sync=!1}function le(_,a,b,z){b||function T(_,a){0===a.length&&a.needDrain&&(a.needDrain=!1,_.emit("drain"))}(_,a),a.pendingcb--,z(),C(_,a)}function n(_,a){a.bufferProcessing=!0;var b=a.bufferedRequest;if(_._writev&&b&&b.next){var N=new Array(a.bufferedRequestCount),q=a.corkedRequestsFree;q.entry=b;for(var pe=0,ze=!0;b;)N[pe]=b,b.isBuf||(ze=!1),b=b.next,pe+=1;N.allBuffers=ze,fe(_,a,!0,a.length,N,"",q.finish),a.pendingcb++,a.lastBufferedRequest=null,q.next?(a.corkedRequestsFree=q.next,q.next=null):a.corkedRequestsFree=new x(a),a.bufferedRequestCount=0}else{for(;b;){var Xe=b.chunk;if(fe(_,a,!1,a.objectMode?1:Xe.length,Xe,b.encoding,b.callback),b=b.next,a.bufferedRequestCount--,a.writing)break}null===b&&(a.lastBufferedRequest=null)}a.bufferedRequest=b,a.bufferProcessing=!1}function c(_){return _.ending&&0===_.length&&null===_.bufferedRequest&&!_.finished&&!_.writing}function m(_,a){_._final(function(b){a.pendingcb--,b&&_.emit("error",b),a.prefinished=!0,_.emit("prefinish"),C(_,a)})}function C(_,a){var b=c(a);return b&&(function d(_,a){!a.prefinished&&!a.finalCalled&&("function"==typeof _._final?(a.pendingcb++,a.finalCalled=!0,e.nextTick(m,_,a)):(a.prefinished=!0,_.emit("prefinish")))}(_,a),0===a.pendingcb&&(a.finished=!0,_.emit("finish"))),b}w.inherits(W,R),j.prototype.getBuffer=function(){for(var a=this.bufferedRequest,b=[];a;)b.push(a),a=a.next;return b},function(){try{Object.defineProperty(j.prototype,"buffer",{get:f.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]?(Y=Function.prototype[Symbol.hasInstance],Object.defineProperty(W,Symbol.hasInstance,{value:function(_){return!!Y.call(this,_)||this===W&&_&&_._writableState instanceof j}})):Y=function(_){return _ instanceof this},W.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},W.prototype.write=function(_,a,b){var z=this._writableState,N=!1,q=!z.objectMode&&function O(_){return h.isBuffer(_)||_ instanceof S}(_);return q&&!h.isBuffer(_)&&(_=function y(_){return h.from(_)}(_)),"function"==typeof a&&(b=a,a=null),q?a="buffer":a||(a=z.defaultEncoding),"function"!=typeof b&&(b=V),z.ended?function Q(_,a){var b=new Error("write after end");_.emit("error",b),e.nextTick(a,b)}(this,b):(q||function J(_,a,b,z){var N=!0,q=!1;return null===b?q=new TypeError("May not write null values to stream"):"string"!=typeof b&&void 0!==b&&!a.objectMode&&(q=new TypeError("Invalid non-string/buffer chunk")),q&&(_.emit("error",q),e.nextTick(z,q),N=!1),N}(this,z,_,b))&&(z.pendingcb++,N=function ee(_,a,b,z,N,q){if(!b){var pe=function ie(_,a,b){return!_.objectMode&&!1!==_.decodeStrings&&"string"==typeof a&&(a=h.from(a,b)),a}(a,z,N);z!==pe&&(b=!0,N="buffer",z=pe)}var ze=a.objectMode?1:z.length;a.length+=ze;var Xe=a.length-1))throw new TypeError("Unknown encoding: "+a);return this._writableState.defaultEncoding=a,this},Object.defineProperty(W.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),W.prototype._write=function(_,a,b){b(new Error("_write() is not implemented"))},W.prototype._writev=null,W.prototype.end=function(_,a,b){var z=this._writableState;"function"==typeof _?(b=_,_=null,a=null):"function"==typeof a&&(b=a,a=null),null!=_&&this.write(_,a),z.corked&&(z.corked=1,this.uncork()),z.ending||function A(_,a,b){a.ending=!0,C(_,a),b&&(a.finished?e.nextTick(b):_.once("finish",b)),a.ended=!0,_.writable=!1}(this,z,b)},Object.defineProperty(W.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(_){this._writableState&&(this._writableState.destroyed=_)}}),W.prototype.destroy=I.destroy,W.prototype._undestroy=I.undestroy,W.prototype._destroy=function(_,a){this.end(),a(_)}},7809:(Qe,te,g)=>{"use strict";var t=g(2655).Buffer,x=g(5340);function D(l,w,f){l.copy(w,f)}Qe.exports=function(){function l(){(function e(l,w){if(!(l instanceof w))throw new TypeError("Cannot call a class as a function")})(this,l),this.head=null,this.tail=null,this.length=0}return l.prototype.push=function(f){var R={data:f,next:null};this.length>0?this.tail.next=R:this.head=R,this.tail=R,++this.length},l.prototype.unshift=function(f){var R={data:f,next:this.head};0===this.length&&(this.tail=R),this.head=R,++this.length},l.prototype.shift=function(){if(0!==this.length){var f=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,f}},l.prototype.clear=function(){this.head=this.tail=null,this.length=0},l.prototype.join=function(f){if(0===this.length)return"";for(var R=this.head,h=""+R.data;R=R.next;)h+=f+R.data;return h},l.prototype.concat=function(f){if(0===this.length)return t.alloc(0);for(var R=t.allocUnsafe(f>>>0),h=this.head,S=0;h;)D(h.data,R,S),S+=h.data.length,h=h.next;return R},l}(),x&&x.inspect&&x.inspect.custom&&(Qe.exports.prototype[x.inspect.custom]=function(){var l=x.inspect({length:this.length});return this.constructor.name+" "+l})},1509:(Qe,te,g)=>{"use strict";var e=g(9656);function D(l,w){l.emit("error",w)}Qe.exports={destroy:function t(l,w){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(w?w(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,e.nextTick(D,this,l)):e.nextTick(D,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(S){!w&&S?f._writableState?f._writableState.errorEmitted||(f._writableState.errorEmitted=!0,e.nextTick(D,f,S)):e.nextTick(D,f,S):w&&w(S)}),this)},undestroy:function x(){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)}}},8342:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},2655:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function x(l,w){for(var f in l)w[f]=l[f]}function D(l,w,f){return t(l,w,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(x(e,te),te.Buffer=D),x(t,D),D.from=function(l,w,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,w,f)},D.alloc=function(l,w,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var R=t(l);return void 0!==w?"string"==typeof f?R.fill(w,f):R.fill(w):R.fill(0),R},D.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},D.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},5942:(Qe,te,g)=>{(te=Qe.exports=g(9609)).Stream=te,te.Readable=te,te.Writable=g(7849),te.Duplex=g(4075),te.Transform=g(2909),te.PassThrough=g(8823)},6021:Qe=>{"use strict";function te(t){return t instanceof Buffer?Buffer.from(t):new t.constructor(t.buffer.slice(),t.byteOffset,t.length)}Qe.exports=function g(t){if((t=t||{}).circles)return function e(t){const x=[],D=[],l=new Map;if(l.set(Date,S=>new Date(S)),l.set(Map,(S,y)=>new Map(f(Array.from(S),y))),l.set(Set,(S,y)=>new Set(f(Array.from(S),y))),t.constructorHandlers)for(const S of t.constructorHandlers)l.set(S[0],S[1]);let w=null;return t.proto?function h(S){if("object"!=typeof S||null===S)return S;if(Array.isArray(S))return f(S,h);if(S.constructor!==Object&&(w=l.get(S.constructor)))return w(S,h);const y={};x.push(S),D.push(y);for(const O in S){const I=S[O];if("object"!=typeof I||null===I)y[O]=I;else if(I.constructor!==Object&&(w=l.get(I.constructor)))y[O]=w(I,h);else if(ArrayBuffer.isView(I))y[O]=te(I);else{const V=x.indexOf(I);y[O]=-1!==V?D[V]:h(I)}}return x.pop(),D.pop(),y}:function R(S){if("object"!=typeof S||null===S)return S;if(Array.isArray(S))return f(S,R);if(S.constructor!==Object&&(w=l.get(S.constructor)))return w(S,R);const y={};x.push(S),D.push(y);for(const O in S){if(!1===Object.hasOwnProperty.call(S,O))continue;const I=S[O];if("object"!=typeof I||null===I)y[O]=I;else if(I.constructor!==Object&&(w=l.get(I.constructor)))y[O]=w(I,R);else if(ArrayBuffer.isView(I))y[O]=te(I);else{const V=x.indexOf(I);y[O]=-1!==V?D[V]:R(I)}}return x.pop(),D.pop(),y};function f(S,y){const O=Object.keys(S),I=new Array(O.length);for(let V=0;Vnew Date(R)),x.set(Map,(R,h)=>new Map(l(Array.from(R),h))),x.set(Set,(R,h)=>new Set(l(Array.from(R),h))),t.constructorHandlers)for(const R of t.constructorHandlers)x.set(R[0],R[1]);let D=null;return t.proto?function f(R){if("object"!=typeof R||null===R)return R;if(Array.isArray(R))return l(R,f);if(R.constructor!==Object&&(D=x.get(R.constructor)))return D(R,f);const h={};for(const S in R){const y=R[S];h[S]="object"!=typeof y||null===y?y:y.constructor!==Object&&(D=x.get(y.constructor))?D(y,f):ArrayBuffer.isView(y)?te(y):f(y)}return h}:function w(R){if("object"!=typeof R||null===R)return R;if(Array.isArray(R))return l(R,w);if(R.constructor!==Object&&(D=x.get(R.constructor)))return D(R,w);const h={};for(const S in R){if(!1===Object.hasOwnProperty.call(R,S))continue;const y=R[S];h[S]="object"!=typeof y||null===y?y:y.constructor!==Object&&(D=x.get(y.constructor))?D(y,w):ArrayBuffer.isView(y)?te(y):w(y)}return h};function l(R,h){const S=Object.keys(R),y=new Array(S.length);for(let O=0;O{"use strict";var e=g(3838).Buffer,t=g(1993),x=g(3686),D=new Array(16),l=[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],w=[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],f=[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],R=[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],h=[0,1518500249,1859775393,2400959708,2840853838],S=[1352829926,1548603684,1836072691,2053994217,0];function y(){x.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function O(Q,J){return Q<>>32-J}function I(Q,J,ie,ee,fe,ne,Me,Ce){return O(Q+(J^ie^ee)+ne+Me|0,Ce)+fe|0}function V(Q,J,ie,ee,fe,ne,Me,Ce){return O(Q+(J&ie|~J&ee)+ne+Me|0,Ce)+fe|0}function j(Q,J,ie,ee,fe,ne,Me,Ce){return O(Q+((J|~ie)^ee)+ne+Me|0,Ce)+fe|0}function Y(Q,J,ie,ee,fe,ne,Me,Ce){return O(Q+(J&ee|ie&~ee)+ne+Me|0,Ce)+fe|0}function W(Q,J,ie,ee,fe,ne,Me,Ce){return O(Q+(J^(ie|~ee))+ne+Me|0,Ce)+fe|0}t(y,x),y.prototype._update=function(){for(var Q=D,J=0;J<16;++J)Q[J]=this._block.readInt32LE(4*J);for(var ie=0|this._a,ee=0|this._b,fe=0|this._c,ne=0|this._d,Me=0|this._e,Ce=0|this._a,le=0|this._b,T=0|this._c,n=0|this._d,c=0|this._e,m=0;m<80;m+=1){var d,C;m<16?(d=I(ie,ee,fe,ne,Me,Q[l[m]],h[0],f[m]),C=W(Ce,le,T,n,c,Q[w[m]],S[0],R[m])):m<32?(d=V(ie,ee,fe,ne,Me,Q[l[m]],h[1],f[m]),C=Y(Ce,le,T,n,c,Q[w[m]],S[1],R[m])):m<48?(d=j(ie,ee,fe,ne,Me,Q[l[m]],h[2],f[m]),C=j(Ce,le,T,n,c,Q[w[m]],S[2],R[m])):m<64?(d=Y(ie,ee,fe,ne,Me,Q[l[m]],h[3],f[m]),C=V(Ce,le,T,n,c,Q[w[m]],S[3],R[m])):(d=W(ie,ee,fe,ne,Me,Q[l[m]],h[4],f[m]),C=I(Ce,le,T,n,c,Q[w[m]],S[4],R[m])),ie=Me,Me=ne,ne=O(fe,10),fe=ee,ee=d,Ce=c,c=n,n=O(T,10),T=le,le=C}var A=this._b+fe+n|0;this._b=this._c+ne+c|0,this._c=this._d+Me+Ce|0,this._d=this._e+ie+le|0,this._e=this._a+ee+T|0,this._a=A},y.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 Q=e.alloc?e.alloc(20):new e(20);return Q.writeInt32LE(this._a,0),Q.writeInt32LE(this._b,4),Q.writeInt32LE(this._c,8),Q.writeInt32LE(this._d,12),Q.writeInt32LE(this._e,16),Q},Qe.exports=y},4412:(Qe,te,g)=>{"use strict";g.d(te,{t:()=>t});var e=g(1413);class t extends e.B{constructor(D){super(),this._value=D}get value(){return this.getValue()}_subscribe(D){const l=super._subscribe(D);return!l.closed&&D.next(this._value),l}getValue(){const{hasError:D,thrownError:l,_value:w}=this;if(D)throw l;return this._throwIfClosed(),w}next(D){super.next(this._value=D)}}},1985:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>R});var e=g(7707),t=g(8359),x=g(3494),D=g(1203),l=g(1026),w=g(8071),f=g(9786);let R=(()=>{class O{constructor(V){V&&(this._subscribe=V)}lift(V){const j=new O;return j.source=this,j.operator=V,j}subscribe(V,j,Y){const W=function y(O){return O&&O instanceof e.vU||function S(O){return O&&(0,w.T)(O.next)&&(0,w.T)(O.error)&&(0,w.T)(O.complete)}(O)&&(0,t.Uv)(O)}(V)?V:new e.Ms(V,j,Y);return(0,f.Y)(()=>{const{operator:Q,source:J}=this;W.add(Q?Q.call(W,J):J?this._subscribe(W):this._trySubscribe(W))}),W}_trySubscribe(V){try{return this._subscribe(V)}catch(j){V.error(j)}}forEach(V,j){return new(j=h(j))((Y,W)=>{const Q=new e.Ms({next:J=>{try{V(J)}catch(ie){W(ie),Q.unsubscribe()}},error:W,complete:Y});this.subscribe(Q)})}_subscribe(V){var j;return null===(j=this.source)||void 0===j?void 0:j.subscribe(V)}[x.s](){return this}pipe(...V){return(0,D.m)(V)(this)}toPromise(V){return new(V=h(V))((j,Y)=>{let W;this.subscribe(Q=>W=Q,Q=>Y(Q),()=>j(W))})}}return O.create=I=>new O(I),O})();function h(O){var I;return null!==(I=O??l.$.Promise)&&void 0!==I?I:Promise}},2771:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>x});var e=g(1413),t=g(6129);class x extends e.B{constructor(l=1/0,w=1/0,f=t.U){super(),this._bufferSize=l,this._windowTime=w,this._timestampProvider=f,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=w===1/0,this._bufferSize=Math.max(1,l),this._windowTime=Math.max(1,w)}next(l){const{isStopped:w,_buffer:f,_infiniteTimeWindow:R,_timestampProvider:h,_windowTime:S}=this;w||(f.push(l),!R&&f.push(h.now()+S)),this._trimBuffer(),super.next(l)}_subscribe(l){this._throwIfClosed(),this._trimBuffer();const w=this._innerSubscribe(l),{_infiniteTimeWindow:f,_buffer:R}=this,h=R.slice();for(let S=0;S{"use strict";g.d(te,{k:()=>R,B:()=>f});var e=g(1985),t=g(8359);const D=(0,g(1853).L)(h=>function(){h(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var l=g(7908),w=g(9786);let f=(()=>{class h extends e.c{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(y){const O=new R(this,this);return O.operator=y,O}_throwIfClosed(){if(this.closed)throw new D}next(y){(0,w.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const O of this.currentObservers)O.next(y)}})}error(y){(0,w.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=y;const{observers:O}=this;for(;O.length;)O.shift().error(y)}})}complete(){(0,w.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:y}=this;for(;y.length;)y.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var y;return(null===(y=this.observers)||void 0===y?void 0:y.length)>0}_trySubscribe(y){return this._throwIfClosed(),super._trySubscribe(y)}_subscribe(y){return this._throwIfClosed(),this._checkFinalizedStatuses(y),this._innerSubscribe(y)}_innerSubscribe(y){const{hasError:O,isStopped:I,observers:V}=this;return O||I?t.Kn:(this.currentObservers=null,V.push(y),new t.yU(()=>{this.currentObservers=null,(0,l.o)(V,y)}))}_checkFinalizedStatuses(y){const{hasError:O,thrownError:I,isStopped:V}=this;O?y.error(I):V&&y.complete()}asObservable(){const y=new e.c;return y.source=this,y}}return h.create=(S,y)=>new R(S,y),h})();class R extends f{constructor(S,y){super(),this.destination=S,this.source=y}next(S){var y,O;null===(O=null===(y=this.destination)||void 0===y?void 0:y.next)||void 0===O||O.call(y,S)}error(S){var y,O;null===(O=null===(y=this.destination)||void 0===y?void 0:y.error)||void 0===O||O.call(y,S)}complete(){var S,y;null===(y=null===(S=this.destination)||void 0===S?void 0:S.complete)||void 0===y||y.call(S)}_subscribe(S){var y,O;return null!==(O=null===(y=this.source)||void 0===y?void 0:y.subscribe(S))&&void 0!==O?O:t.Kn}}},7707:(Qe,te,g)=>{"use strict";g.d(te,{Ms:()=>Y,vU:()=>O});var e=g(8071),t=g(8359),x=g(1026),D=g(5334),l=g(5343);const w=h("C",void 0,void 0);function h(ee,fe,ne){return{kind:ee,value:fe,error:ne}}var S=g(9270),y=g(9786);class O extends t.yU{constructor(fe){super(),this.isStopped=!1,fe?(this.destination=fe,(0,t.Uv)(fe)&&fe.add(this)):this.destination=ie}static create(fe,ne,Me){return new Y(fe,ne,Me)}next(fe){this.isStopped?J(function R(ee){return h("N",ee,void 0)}(fe),this):this._next(fe)}error(fe){this.isStopped?J(function f(ee){return h("E",void 0,ee)}(fe),this):(this.isStopped=!0,this._error(fe))}complete(){this.isStopped?J(w,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(fe){this.destination.next(fe)}_error(fe){try{this.destination.error(fe)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const I=Function.prototype.bind;function V(ee,fe){return I.call(ee,fe)}class j{constructor(fe){this.partialObserver=fe}next(fe){const{partialObserver:ne}=this;if(ne.next)try{ne.next(fe)}catch(Me){W(Me)}}error(fe){const{partialObserver:ne}=this;if(ne.error)try{ne.error(fe)}catch(Me){W(Me)}else W(fe)}complete(){const{partialObserver:fe}=this;if(fe.complete)try{fe.complete()}catch(ne){W(ne)}}}class Y extends O{constructor(fe,ne,Me){let Ce;if(super(),(0,e.T)(fe)||!fe)Ce={next:fe??void 0,error:ne??void 0,complete:Me??void 0};else{let le;this&&x.$.useDeprecatedNextContext?(le=Object.create(fe),le.unsubscribe=()=>this.unsubscribe(),Ce={next:fe.next&&V(fe.next,le),error:fe.error&&V(fe.error,le),complete:fe.complete&&V(fe.complete,le)}):Ce=fe}this.destination=new j(Ce)}}function W(ee){x.$.useDeprecatedSynchronousErrorHandling?(0,y.l)(ee):(0,D.m)(ee)}function J(ee,fe){const{onStoppedNotification:ne}=x.$;ne&&S.f.setTimeout(()=>ne(ee,fe))}const ie={closed:!0,next:l.l,error:function Q(ee){throw ee},complete:l.l}},8359:(Qe,te,g)=>{"use strict";g.d(te,{Kn:()=>w,yU:()=>l,Uv:()=>f});var e=g(8071);const x=(0,g(1853).L)(h=>function(y){h(this),this.message=y?`${y.length} errors occurred during unsubscription:\n${y.map((O,I)=>`${I+1}) ${O.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=y});var D=g(7908);class l{constructor(S){this.initialTeardown=S,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let S;if(!this.closed){this.closed=!0;const{_parentage:y}=this;if(y)if(this._parentage=null,Array.isArray(y))for(const V of y)V.remove(this);else y.remove(this);const{initialTeardown:O}=this;if((0,e.T)(O))try{O()}catch(V){S=V instanceof x?V.errors:[V]}const{_finalizers:I}=this;if(I){this._finalizers=null;for(const V of I)try{R(V)}catch(j){S=S??[],j instanceof x?S=[...S,...j.errors]:S.push(j)}}if(S)throw new x(S)}}add(S){var y;if(S&&S!==this)if(this.closed)R(S);else{if(S instanceof l){if(S.closed||S._hasParent(this))return;S._addParent(this)}(this._finalizers=null!==(y=this._finalizers)&&void 0!==y?y:[]).push(S)}}_hasParent(S){const{_parentage:y}=this;return y===S||Array.isArray(y)&&y.includes(S)}_addParent(S){const{_parentage:y}=this;this._parentage=Array.isArray(y)?(y.push(S),y):y?[y,S]:S}_removeParent(S){const{_parentage:y}=this;y===S?this._parentage=null:Array.isArray(y)&&(0,D.o)(y,S)}remove(S){const{_finalizers:y}=this;y&&(0,D.o)(y,S),S instanceof l&&S._removeParent(this)}}l.EMPTY=(()=>{const h=new l;return h.closed=!0,h})();const w=l.EMPTY;function f(h){return h instanceof l||h&&"closed"in h&&(0,e.T)(h.remove)&&(0,e.T)(h.add)&&(0,e.T)(h.unsubscribe)}function R(h){(0,e.T)(h)?h():h.unsubscribe()}},1026:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>e});const e={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},17:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>w});var e=g(1985),t=g(8359),x=g(9898),D=g(4360),l=g(9974);class w extends e.c{constructor(R,h){super(),this.source=R,this.subjectFactory=h,this._subject=null,this._refCount=0,this._connection=null,(0,l.S)(R)&&(this.lift=R.lift)}_subscribe(R){return this.getSubject().subscribe(R)}getSubject(){const R=this._subject;return(!R||R.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:R}=this;this._subject=this._connection=null,R?.unsubscribe()}connect(){let R=this._connection;if(!R){R=this._connection=new t.yU;const h=this.getSubject();R.add(this.source.subscribe((0,D._)(h,void 0,()=>{this._teardown(),h.complete()},S=>{this._teardown(),h.error(S)},()=>this._teardown()))),R.closed&&(this._connection=null,R=t.yU.EMPTY)}return R}refCount(){return(0,x.B)()(this)}}},4572:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>S});var e=g(1985),t=g(3073),x=g(2806),D=g(3669),l=g(6450),w=g(9326),f=g(8496),R=g(4360),h=g(5225);function S(...I){const V=(0,w.lI)(I),j=(0,w.ms)(I),{args:Y,keys:W}=(0,t.D)(I);if(0===Y.length)return(0,x.H)([],V);const Q=new e.c(function y(I,V,j=D.D){return Y=>{O(V,()=>{const{length:W}=I,Q=new Array(W);let J=W,ie=W;for(let ee=0;ee{const fe=(0,x.H)(I[ee],V);let ne=!1;fe.subscribe((0,R._)(Y,Me=>{Q[ee]=Me,ne||(ne=!0,ie--),ie||Y.next(j(Q.slice()))},()=>{--J||Y.complete()}))},Y)},Y)}}(Y,V,W?J=>(0,f.e)(W,J):D.D));return j?Q.pipe((0,l.I)(j)):Q}function O(I,V,j){I?(0,h.N)(j,I,V):V()}},8793:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>l});var e=g(6365),x=g(9326),D=g(2806);function l(...w){return function t(){return(0,e.U)(1)}()((0,D.H)(w,(0,x.lI)(w)))}},9030:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>x});var e=g(1985),t=g(8750);function x(D){return new e.c(l=>{(0,t.Tg)(D()).subscribe(l)})}},983:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>t});const t=new(g(1985).c)(l=>l.complete())},7468:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>R});var e=g(1985),t=g(3073),x=g(8750),D=g(9326),l=g(4360),w=g(6450),f=g(8496);function R(...h){const S=(0,D.ms)(h),{args:y,keys:O}=(0,t.D)(h),I=new e.c(V=>{const{length:j}=y;if(!j)return void V.complete();const Y=new Array(j);let W=j,Q=j;for(let J=0;J{ie||(ie=!0,Q--),Y[J]=ee},()=>W--,void 0,()=>{(!W||!ie)&&(Q||V.next(O?(0,f.e)(O,Y):Y),V.complete())}))}});return S?I.pipe((0,w.I)(S)):I}},2806:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>ne});var e=g(8750),t=g(941),x=g(9974);function D(Me,Ce=0){return(0,x.N)((le,T)=>{T.add(Me.schedule(()=>le.subscribe(T),Ce))})}var f=g(1985),h=g(4761),S=g(8071),y=g(5225);function I(Me,Ce){if(!Me)throw new Error("Iterable cannot be null");return new f.c(le=>{(0,y.N)(le,Ce,()=>{const T=Me[Symbol.asyncIterator]();(0,y.N)(le,Ce,()=>{T.next().then(n=>{n.done?le.complete():le.next(n.value)})},0,!0)})})}var V=g(5055),j=g(9858),Y=g(7441),W=g(5397),Q=g(7953),J=g(591),ie=g(5196);function ne(Me,Ce){return Ce?function fe(Me,Ce){if(null!=Me){if((0,V.l)(Me))return function l(Me,Ce){return(0,e.Tg)(Me).pipe(D(Ce),(0,t.Q)(Ce))}(Me,Ce);if((0,Y.X)(Me))return function R(Me,Ce){return new f.c(le=>{let T=0;return Ce.schedule(function(){T===Me.length?le.complete():(le.next(Me[T++]),le.closed||this.schedule())})})}(Me,Ce);if((0,j.y)(Me))return function w(Me,Ce){return(0,e.Tg)(Me).pipe(D(Ce),(0,t.Q)(Ce))}(Me,Ce);if((0,Q.T)(Me))return I(Me,Ce);if((0,W.x)(Me))return function O(Me,Ce){return new f.c(le=>{let T;return(0,y.N)(le,Ce,()=>{T=Me[h.l](),(0,y.N)(le,Ce,()=>{let n,c;try{({value:n,done:c}=T.next())}catch(m){return void le.error(m)}c?le.complete():le.next(n)},0,!0)}),()=>(0,S.T)(T?.return)&&T.return()})}(Me,Ce);if((0,ie.U)(Me))return function ee(Me,Ce){return I((0,ie.C)(Me),Ce)}(Me,Ce)}throw(0,J.L)(Me)}(Me,Ce):(0,e.Tg)(Me)}},3726:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>S});var e=g(8750),t=g(1985),x=g(1397),D=g(7441),l=g(8071),w=g(6450);const f=["addListener","removeListener"],R=["addEventListener","removeEventListener"],h=["on","off"];function S(j,Y,W,Q){if((0,l.T)(W)&&(Q=W,W=void 0),Q)return S(j,Y,W).pipe((0,w.I)(Q));const[J,ie]=function V(j){return(0,l.T)(j.addEventListener)&&(0,l.T)(j.removeEventListener)}(j)?R.map(ee=>fe=>j[ee](Y,fe,W)):function O(j){return(0,l.T)(j.addListener)&&(0,l.T)(j.removeListener)}(j)?f.map(y(j,Y)):function I(j){return(0,l.T)(j.on)&&(0,l.T)(j.off)}(j)?h.map(y(j,Y)):[];if(!J&&(0,D.X)(j))return(0,x.Z)(ee=>S(ee,Y,W))((0,e.Tg)(j));if(!J)throw new TypeError("Invalid event target");return new t.c(ee=>{const fe=(...ne)=>ee.next(1ie(fe)})}function y(j,Y){return W=>Q=>j[W](Y,Q)}},8750:(Qe,te,g)=>{"use strict";g.d(te,{Tg:()=>I});var e=g(1635),t=g(7441),x=g(9858),D=g(1985),l=g(5055),w=g(7953),f=g(591),R=g(5397),h=g(5196),S=g(8071),y=g(5334),O=g(3494);function I(ee){if(ee instanceof D.c)return ee;if(null!=ee){if((0,l.l)(ee))return function V(ee){return new D.c(fe=>{const ne=ee[O.s]();if((0,S.T)(ne.subscribe))return ne.subscribe(fe);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(ee);if((0,t.X)(ee))return function j(ee){return new D.c(fe=>{for(let ne=0;ne{ee.then(ne=>{fe.closed||(fe.next(ne),fe.complete())},ne=>fe.error(ne)).then(null,y.m)})}(ee);if((0,w.T)(ee))return Q(ee);if((0,R.x)(ee))return function W(ee){return new D.c(fe=>{for(const ne of ee)if(fe.next(ne),fe.closed)return;fe.complete()})}(ee);if((0,h.U)(ee))return function J(ee){return Q((0,h.C)(ee))}(ee)}throw(0,f.L)(ee)}function Q(ee){return new D.c(fe=>{(function ie(ee,fe){var ne,Me,Ce,le;return(0,e.sH)(this,void 0,void 0,function*(){try{for(ne=(0,e.xN)(ee);!(Me=yield ne.next()).done;)if(fe.next(Me.value),fe.closed)return}catch(T){Ce={error:T}}finally{try{Me&&!Me.done&&(le=ne.return)&&(yield le.call(ne))}finally{if(Ce)throw Ce.error}}fe.complete()})})(ee,fe).catch(ne=>fe.error(ne))})}},7786:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>w});var e=g(6365),t=g(8750),x=g(983),D=g(9326),l=g(2806);function w(...f){const R=(0,D.lI)(f),h=(0,D.R0)(f,1/0),S=f;return S.length?1===S.length?(0,t.Tg)(S[0]):(0,e.U)(h)((0,l.H)(S,R)):x.w}},7673:(Qe,te,g)=>{"use strict";g.d(te,{of:()=>x});var e=g(9326),t=g(2806);function x(...D){const l=(0,e.lI)(D);return(0,t.H)(D,l)}},8810:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>x});var e=g(1985),t=g(8071);function x(D,l){const w=(0,t.T)(D)?D:()=>D,f=R=>R.error(w());return new e.c(l?R=>l.schedule(f,0,R):f)}},1807:(Qe,te,g)=>{"use strict";g.d(te,{O:()=>l});var e=g(1985),t=g(3236),x=g(9470),D=g(8211);function l(w=0,f,R=t.b){let h=-1;return null!=f&&((0,x.m)(f)?R=f:h=f),new e.c(S=>{let y=(0,D.v)(w)?+w-R.now():w;y<0&&(y=0);let O=0;return R.schedule(function(){S.closed||(S.next(O++),0<=h?this.schedule(void 0,h):S.complete())},y)})}},4360:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>x,_:()=>t});var e=g(7707);function t(D,l,w,f,R){return new x(D,l,w,f,R)}class x extends e.vU{constructor(l,w,f,R,h,S){super(l),this.onFinalize=h,this.shouldUnsubscribe=S,this._next=w?function(y){try{w(y)}catch(O){l.error(O)}}:super._next,this._error=R?function(y){try{R(y)}catch(O){l.error(O)}finally{this.unsubscribe()}}:super._error,this._complete=f?function(){try{f()}catch(y){l.error(y)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var l;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:w}=this;super.unsubscribe(),!w&&(null===(l=this.onFinalize)||void 0===l||l.call(this))}}}},3798:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>f});var e=g(3236),t=g(9974),x=g(8750),D=g(4360),w=g(1807);function f(R,h=e.E){return function l(R){return(0,t.N)((h,S)=>{let y=!1,O=null,I=null,V=!1;const j=()=>{if(I?.unsubscribe(),I=null,y){y=!1;const W=O;O=null,S.next(W)}V&&S.complete()},Y=()=>{I=null,V&&S.complete()};h.subscribe((0,D._)(S,W=>{y=!0,O=W,I||(0,x.Tg)(R(W)).subscribe(I=(0,D._)(S,j,Y))},()=>{V=!0,(!y||!I||I.closed)&&S.complete()}))})}(()=>(0,w.O)(R,h))}},9437:(Qe,te,g)=>{"use strict";g.d(te,{W:()=>D});var e=g(8750),t=g(4360),x=g(9974);function D(l){return(0,x.N)((w,f)=>{let S,R=null,h=!1;R=w.subscribe((0,t._)(f,void 0,void 0,y=>{S=(0,e.Tg)(l(y,D(l)(w))),R?(R.unsubscribe(),R=null,S.subscribe(f)):h=!0})),h&&(R.unsubscribe(),R=null,S.subscribe(f))})}},274:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>x});var e=g(1397),t=g(8071);function x(D,l){return(0,t.T)(l)?(0,e.Z)(D,l,1):(0,e.Z)(D,1)}},152:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>D});var e=g(3236),t=g(9974),x=g(4360);function D(l,w=e.E){return(0,t.N)((f,R)=>{let h=null,S=null,y=null;const O=()=>{if(h){h.unsubscribe(),h=null;const V=S;S=null,R.next(V)}};function I(){const V=y+l,j=w.now();if(j{S=V,y=w.now(),h||(h=w.schedule(I,l),R.add(h))},()=>{O(),R.complete()},void 0,()=>{S=h=null}))})}},9901:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>x});var e=g(9974),t=g(4360);function x(D){return(0,e.N)((l,w)=>{let f=!1;l.subscribe((0,t._)(w,R=>{f=!0,w.next(R)},()=>{f||w.next(D),w.complete()}))})}},5335:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>S});var e=g(3236),t=g(8793),x=g(6697),D=g(3557),l=g(3703),w=g(1397),f=g(8750);function R(y,O){return O?I=>(0,t.x)(O.pipe((0,x.s)(1),(0,D.w)()),I.pipe(R(y))):(0,w.Z)((I,V)=>(0,f.Tg)(y(I,V)).pipe((0,x.s)(1),(0,l.u)(I)))}var h=g(1807);function S(y,O=e.E){const I=(0,h.O)(y,O);return R(()=>I)}},3294:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>D});var e=g(3669),t=g(9974),x=g(4360);function D(w,f=e.D){return w=w??l,(0,t.N)((R,h)=>{let S,y=!0;R.subscribe((0,x._)(h,O=>{const I=f(O);(y||!w(S,I))&&(y=!1,S=I,h.next(O))}))})}function l(w,f){return w===f}},5964:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>x});var e=g(9974),t=g(4360);function x(D,l){return(0,e.N)((w,f)=>{let R=0;w.subscribe((0,t._)(f,h=>D.call(l,h,R++)&&f.next(h)))})}},980:(Qe,te,g)=>{"use strict";g.d(te,{j:()=>t});var e=g(9974);function t(x){return(0,e.N)((D,l)=>{try{D.subscribe(l)}finally{l.add(x)}})}},1594:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>f});var e=g(9350),t=g(5964),x=g(6697),D=g(9901),l=g(3774),w=g(3669);function f(R,h){const S=arguments.length>=2;return y=>y.pipe(R?(0,t.p)((O,I)=>R(O,I,y)):w.D,(0,x.s)(1),S?(0,D.U)(h):(0,l.v)(()=>new e.G))}},3557:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>D});var e=g(9974),t=g(4360),x=g(5343);function D(){return(0,e.N)((l,w)=>{l.subscribe((0,t._)(w,x.l))})}},6354:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>x});var e=g(9974),t=g(4360);function x(D,l){return(0,e.N)((w,f)=>{let R=0;w.subscribe((0,t._)(f,h=>{f.next(D.call(l,h,R++))}))})}},3703:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>t});var e=g(6354);function t(x){return(0,e.T)(()=>x)}},6365:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>x});var e=g(1397),t=g(3669);function x(D=1/0){return(0,e.Z)(t.D,D)}},1397:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>R});var e=g(6354),t=g(8750),x=g(9974),D=g(5225),l=g(4360),f=g(8071);function R(h,S,y=1/0){return(0,f.T)(S)?R((O,I)=>(0,e.T)((V,j)=>S(O,V,I,j))((0,t.Tg)(h(O,I))),y):("number"==typeof S&&(y=S),(0,x.N)((O,I)=>function w(h,S,y,O,I,V,j,Y){const W=[];let Q=0,J=0,ie=!1;const ee=()=>{ie&&!W.length&&!Q&&S.complete()},fe=Me=>Q{V&&S.next(Me),Q++;let Ce=!1;(0,t.Tg)(y(Me,J++)).subscribe((0,l._)(S,le=>{I?.(le),V?fe(le):S.next(le)},()=>{Ce=!0},void 0,()=>{if(Ce)try{for(Q--;W.length&&Qne(le)):ne(le)}ee()}catch(le){S.error(le)}}))};return h.subscribe((0,l._)(S,fe,()=>{ie=!0,ee()})),()=>{Y?.()}}(O,I,h,y)))}},941:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>D});var e=g(5225),t=g(9974),x=g(4360);function D(l,w=0){return(0,t.N)((f,R)=>{f.subscribe((0,x._)(R,h=>(0,e.N)(R,l,()=>R.next(h),w),()=>(0,e.N)(R,l,()=>R.complete(),w),h=>(0,e.N)(R,l,()=>R.error(h),w)))})}},9898:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>x});var e=g(9974),t=g(4360);function x(){return(0,e.N)((D,l)=>{let w=null;D._refCount++;const f=(0,t._)(l,void 0,void 0,void 0,()=>{if(!D||D._refCount<=0||0<--D._refCount)return void(w=null);const R=D._connection,h=w;w=null,R&&(!h||R===h)&&R.unsubscribe(),l.unsubscribe()});D.subscribe(f),f.closed||(w=D.connect())})}},2816:(Qe,te,g)=>{"use strict";g.d(te,{S:()=>D});var e=g(9974),t=g(4360);function D(l,w){return(0,e.N)(function x(l,w,f,R,h){return(S,y)=>{let O=f,I=w,V=0;S.subscribe((0,t._)(y,j=>{const Y=V++;I=O?l(I,j,Y):(O=!0,j),R&&y.next(I)},h&&(()=>{O&&y.next(I),y.complete()})))}}(l,w,arguments.length>=2,!0))}},7647:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>l});var e=g(8750),t=g(1413),x=g(7707),D=g(9974);function l(f={}){const{connector:R=()=>new t.B,resetOnError:h=!0,resetOnComplete:S=!0,resetOnRefCountZero:y=!0}=f;return O=>{let I,V,j,Y=0,W=!1,Q=!1;const J=()=>{V?.unsubscribe(),V=void 0},ie=()=>{J(),I=j=void 0,W=Q=!1},ee=()=>{const fe=I;ie(),fe?.unsubscribe()};return(0,D.N)((fe,ne)=>{Y++,!Q&&!W&&J();const Me=j=j??R();ne.add(()=>{Y--,0===Y&&!Q&&!W&&(V=w(ee,y))}),Me.subscribe(ne),!I&&Y>0&&(I=new x.Ms({next:Ce=>Me.next(Ce),error:Ce=>{Q=!0,J(),V=w(ie,h,Ce),Me.error(Ce)},complete:()=>{W=!0,J(),V=w(ie,S),Me.complete()}}),(0,e.Tg)(fe).subscribe(I))})(O)}}function w(f,R,...h){if(!0===R)return void f();if(!1===R)return;const S=new x.Ms({next:()=>{S.unsubscribe(),f()}});return(0,e.Tg)(R(...h)).subscribe(S)}},5245:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>t});var e=g(5964);function t(x){return(0,e.p)((D,l)=>x<=l)}},9172:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>D});var e=g(8793),t=g(9326),x=g(9974);function D(...l){const w=(0,t.lI)(l);return(0,x.N)((f,R)=>{(w?(0,e.x)(l,f,w):(0,e.x)(l,f)).subscribe(R)})}},5558:(Qe,te,g)=>{"use strict";g.d(te,{n:()=>D});var e=g(8750),t=g(9974),x=g(4360);function D(l,w){return(0,t.N)((f,R)=>{let h=null,S=0,y=!1;const O=()=>y&&!h&&R.complete();f.subscribe((0,x._)(R,I=>{h?.unsubscribe();let V=0;const j=S++;(0,e.Tg)(l(I,j)).subscribe(h=(0,x._)(R,Y=>R.next(w?w(I,Y,j,V++):Y),()=>{h=null,O()}))},()=>{y=!0,O()}))})}},6697:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>D});var e=g(983),t=g(9974),x=g(4360);function D(l){return l<=0?()=>e.w:(0,t.N)((w,f)=>{let R=0;w.subscribe((0,x._)(f,h=>{++R<=l&&(f.next(h),l<=R&&f.complete())}))})}},6977:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>l});var e=g(9974),t=g(4360),x=g(8750),D=g(5343);function l(w){return(0,e.N)((f,R)=>{(0,x.Tg)(w).subscribe((0,t._)(R,()=>R.complete(),D.l)),!R.closed&&f.subscribe(R)})}},8141:(Qe,te,g)=>{"use strict";g.d(te,{M:()=>l});var e=g(8071),t=g(9974),x=g(4360),D=g(3669);function l(w,f,R){const h=(0,e.T)(w)||f||R?{next:w,error:f,complete:R}:w;return h?(0,t.N)((S,y)=>{var O;null===(O=h.subscribe)||void 0===O||O.call(h);let I=!0;S.subscribe((0,x._)(y,V=>{var j;null===(j=h.next)||void 0===j||j.call(h,V),y.next(V)},()=>{var V;I=!1,null===(V=h.complete)||void 0===V||V.call(h),y.complete()},V=>{var j;I=!1,null===(j=h.error)||void 0===j||j.call(h,V),y.error(V)},()=>{var V,j;I&&(null===(V=h.unsubscribe)||void 0===V||V.call(h)),null===(j=h.finalize)||void 0===j||j.call(h)}))}):D.D}},3774:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>D});var e=g(9350),t=g(9974),x=g(4360);function D(w=l){return(0,t.N)((f,R)=>{let h=!1;f.subscribe((0,x._)(R,S=>{h=!0,R.next(S)},()=>h?R.complete():R.error(w())))})}function l(){return new e.G}},3993:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>f});var e=g(9974),t=g(4360),x=g(8750),D=g(3669),l=g(5343),w=g(9326);function f(...R){const h=(0,w.ms)(R);return(0,e.N)((S,y)=>{const O=R.length,I=new Array(O);let V=R.map(()=>!1),j=!1;for(let Y=0;Y{I[Y]=W,!j&&!V[Y]&&(V[Y]=!0,(j=V.every(D.D))&&(V=null))},l.l));S.subscribe((0,t._)(y,Y=>{if(j){const W=[Y,...I];y.next(h?h(...W):W)}}))})}},6780:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>l});var e=g(8359);class t extends e.yU{constructor(f,R){super()}schedule(f,R=0){return this}}const x={setInterval(w,f,...R){const{delegate:h}=x;return h?.setInterval?h.setInterval(w,f,...R):setInterval(w,f,...R)},clearInterval(w){const{delegate:f}=x;return(f?.clearInterval||clearInterval)(w)},delegate:void 0};var D=g(7908);class l extends t{constructor(f,R){super(f,R),this.scheduler=f,this.work=R,this.pending=!1}schedule(f,R=0){var h;if(this.closed)return this;this.state=f;const S=this.id,y=this.scheduler;return null!=S&&(this.id=this.recycleAsyncId(y,S,R)),this.pending=!0,this.delay=R,this.id=null!==(h=this.id)&&void 0!==h?h:this.requestAsyncId(y,this.id,R),this}requestAsyncId(f,R,h=0){return x.setInterval(f.flush.bind(f,this),h)}recycleAsyncId(f,R,h=0){if(null!=h&&this.delay===h&&!1===this.pending)return R;null!=R&&x.clearInterval(R)}execute(f,R){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const h=this._execute(f,R);if(h)return h;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(f,R){let S,h=!1;try{this.work(f)}catch(y){h=!0,S=y||new Error("Scheduled action threw falsy error")}if(h)return this.unsubscribe(),S}unsubscribe(){if(!this.closed){const{id:f,scheduler:R}=this,{actions:h}=R;this.work=this.state=this.scheduler=null,this.pending=!1,(0,D.o)(h,this),null!=f&&(this.id=this.recycleAsyncId(R,f,null)),this.delay=null,super.unsubscribe()}}}},9687:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>x});var e=g(6129);class t{constructor(l,w=t.now){this.schedulerActionCtor=l,this.now=w}schedule(l,w=0,f){return new this.schedulerActionCtor(this,l).schedule(f,w)}}t.now=e.U.now;class x extends t{constructor(l,w=t.now){super(l,w),this.actions=[],this._active=!1}flush(l){const{actions:w}=this;if(this._active)return void w.push(l);let f;this._active=!0;do{if(f=l.execute(l.state,l.delay))break}while(l=w.shift());if(this._active=!1,f){for(;l=w.shift();)l.unsubscribe();throw f}}}},5007:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>V});var e=g(6780);let x,t=1;const D={};function l(Y){return Y in D&&(delete D[Y],!0)}const w={setImmediate(Y){const W=t++;return D[W]=!0,x||(x=Promise.resolve()),x.then(()=>l(W)&&Y()),W},clearImmediate(Y){l(Y)}},{setImmediate:R,clearImmediate:h}=w,S={setImmediate(...Y){const{delegate:W}=S;return(W?.setImmediate||R)(...Y)},clearImmediate(Y){const{delegate:W}=S;return(W?.clearImmediate||h)(Y)},delegate:void 0};var O=g(9687);const V=new class I extends O.q{flush(W){this._active=!0;const Q=this._scheduled;this._scheduled=void 0;const{actions:J}=this;let ie;W=W||J.shift();do{if(ie=W.execute(W.state,W.delay))break}while((W=J[0])&&W.id===Q&&J.shift());if(this._active=!1,ie){for(;(W=J[0])&&W.id===Q&&J.shift();)W.unsubscribe();throw ie}}}(class y extends e.R{constructor(W,Q){super(W,Q),this.scheduler=W,this.work=Q}requestAsyncId(W,Q,J=0){return null!==J&&J>0?super.requestAsyncId(W,Q,J):(W.actions.push(this),W._scheduled||(W._scheduled=S.setImmediate(W.flush.bind(W,void 0))))}recycleAsyncId(W,Q,J=0){var ie;if(null!=J?J>0:this.delay>0)return super.recycleAsyncId(W,Q,J);const{actions:ee}=W;null!=Q&&(null===(ie=ee[ee.length-1])||void 0===ie?void 0:ie.id)!==Q&&(S.clearImmediate(Q),W._scheduled===Q&&(W._scheduled=void 0))}})},3236:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>x,b:()=>D});var e=g(6780);const x=new(g(9687).q)(e.R),D=x},6129:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>e});const e={now:()=>(e.delegate||Date).now(),delegate:void 0}},7242:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>l});var e=g(6780),x=g(9687);const l=new class D extends x.q{}(class t extends e.R{constructor(R,h){super(R,h),this.scheduler=R,this.work=h}schedule(R,h=0){return h>0?super.schedule(R,h):(this.delay=h,this.state=R,this.scheduler.flush(this),this)}execute(R,h){return h>0||this.closed?super.execute(R,h):this._execute(R,h)}requestAsyncId(R,h,S=0){return null!=S&&S>0||null==S&&this.delay>0?super.requestAsyncId(R,h,S):(R.flush(this),0)}})},9270:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>e});const e={setTimeout(t,x,...D){const{delegate:l}=e;return l?.setTimeout?l.setTimeout(t,x,...D):setTimeout(t,x,...D)},clearTimeout(t){const{delegate:x}=e;return(x?.clearTimeout||clearTimeout)(t)},delegate:void 0}},4761:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>t});const t=function e(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},3494:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>e});const e="function"==typeof Symbol&&Symbol.observable||"@@observable"},9350:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>t});const t=(0,g(1853).L)(x=>function(){x(this),this.name="EmptyError",this.message="no elements in sequence"})},9326:(Qe,te,g)=>{"use strict";g.d(te,{R0:()=>w,lI:()=>l,ms:()=>D});var e=g(8071),t=g(9470);function x(f){return f[f.length-1]}function D(f){return(0,e.T)(x(f))?f.pop():void 0}function l(f){return(0,t.m)(x(f))?f.pop():void 0}function w(f,R){return"number"==typeof x(f)?f.pop():R}},3073:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>l});const{isArray:e}=Array,{getPrototypeOf:t,prototype:x,keys:D}=Object;function l(f){if(1===f.length){const R=f[0];if(e(R))return{args:R,keys:null};if(function w(f){return f&&"object"==typeof f&&t(f)===x}(R)){const h=D(R);return{args:h.map(S=>R[S]),keys:h}}}return{args:f,keys:null}}},7908:(Qe,te,g)=>{"use strict";function e(t,x){if(t){const D=t.indexOf(x);0<=D&&t.splice(D,1)}}g.d(te,{o:()=>e})},1853:(Qe,te,g)=>{"use strict";function e(t){const D=t(l=>{Error.call(l),l.stack=(new Error).stack});return D.prototype=Object.create(Error.prototype),D.prototype.constructor=D,D}g.d(te,{L:()=>e})},8496:(Qe,te,g)=>{"use strict";function e(t,x){return t.reduce((D,l,w)=>(D[l]=x[w],D),{})}g.d(te,{e:()=>e})},9786:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>x,l:()=>D});var e=g(1026);let t=null;function x(l){if(e.$.useDeprecatedSynchronousErrorHandling){const w=!t;if(w&&(t={errorThrown:!1,error:null}),l(),w){const{errorThrown:f,error:R}=t;if(t=null,f)throw R}}else l()}function D(l){e.$.useDeprecatedSynchronousErrorHandling&&t&&(t.errorThrown=!0,t.error=l)}},5225:(Qe,te,g)=>{"use strict";function e(t,x,D,l=0,w=!1){const f=x.schedule(function(){D(),w?t.add(this.schedule(null,l)):this.unsubscribe()},l);if(t.add(f),!w)return f}g.d(te,{N:()=>e})},3669:(Qe,te,g)=>{"use strict";function e(t){return t}g.d(te,{D:()=>e})},7441:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>e});const e=t=>t&&"number"==typeof t.length&&"function"!=typeof t},7953:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>t});var e=g(8071);function t(x){return Symbol.asyncIterator&&(0,e.T)(x?.[Symbol.asyncIterator])}},8211:(Qe,te,g)=>{"use strict";function e(t){return t instanceof Date&&!isNaN(t)}g.d(te,{v:()=>e})},8071:(Qe,te,g)=>{"use strict";function e(t){return"function"==typeof t}g.d(te,{T:()=>e})},5055:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>x});var e=g(3494),t=g(8071);function x(D){return(0,t.T)(D[e.s])}},5397:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>x});var e=g(4761),t=g(8071);function x(D){return(0,t.T)(D?.[e.l])}},4402:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>x});var e=g(1985),t=g(8071);function x(D){return!!D&&(D instanceof e.c||(0,t.T)(D.lift)&&(0,t.T)(D.subscribe))}},9858:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>t});var e=g(8071);function t(x){return(0,e.T)(x?.then)}},5196:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>x,U:()=>D});var e=g(1635),t=g(8071);function x(l){return(0,e.AQ)(this,arguments,function*(){const f=l.getReader();try{for(;;){const{value:R,done:h}=yield(0,e.N3)(f.read());if(h)return yield(0,e.N3)(void 0);yield yield(0,e.N3)(R)}}finally{f.releaseLock()}})}function D(l){return(0,t.T)(l?.getReader)}},9470:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>t});var e=g(8071);function t(x){return x&&(0,e.T)(x.schedule)}},9974:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>x,S:()=>t});var e=g(8071);function t(D){return(0,e.T)(D?.lift)}function x(D){return l=>{if(t(l))return l.lift(function(w){try{return D(w,this)}catch(f){this.error(f)}});throw new TypeError("Unable to lift unknown Observable type")}}},6450:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>D});var e=g(6354);const{isArray:t}=Array;function D(l){return(0,e.T)(w=>function x(l,w){return t(w)?l(...w):l(w)}(l,w))}},5343:(Qe,te,g)=>{"use strict";function e(){}g.d(te,{l:()=>e})},1203:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>t,m:()=>x});var e=g(3669);function t(...D){return x(D)}function x(D){return 0===D.length?e.D:1===D.length?D[0]:function(w){return D.reduce((f,R)=>R(f),w)}}},5334:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>x});var e=g(1026),t=g(9270);function x(D){t.f.setTimeout(()=>{const{onUnhandledError:l}=e.$;if(!l)throw D;l(D)})}},591:(Qe,te,g)=>{"use strict";function e(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.`)}g.d(te,{L:()=>e})},7054:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function x(l,w){for(var f in l)w[f]=l[f]}function D(l,w,f){return t(l,w,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(x(e,te),te.Buffer=D),D.prototype=Object.create(t.prototype),x(t,D),D.from=function(l,w,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,w,f)},D.alloc=function(l,w,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var R=t(l);return void 0!==w?"string"==typeof f?R.fill(w,f):R.fill(w):R.fill(0),R},D.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},D.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},463:(Qe,te,g)=>{var e=g(7054).Buffer;function t(x,D){this._block=e.alloc(x),this._finalSize=D,this._blockSize=x,this._len=0}t.prototype.update=function(x,D){"string"==typeof x&&(x=e.from(x,D=D||"utf8"));for(var l=this._block,w=this._blockSize,f=x.length,R=this._len,h=0;h=this._finalSize&&(this._update(this._block),this._block.fill(0));var l=8*this._len;if(l<=4294967295)this._block.writeUInt32BE(l,this._blockSize-4);else{var w=(4294967295&l)>>>0;this._block.writeUInt32BE((l-w)/4294967296,this._blockSize-8),this._block.writeUInt32BE(w,this._blockSize-4)}this._update(this._block);var R=this._hash();return x?R.toString(x):R},t.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Qe.exports=t},5443:(Qe,te,g)=>{var e=Qe.exports=function(x){x=x.toLowerCase();var D=e[x];if(!D)throw new Error(x+" is not supported (we accept pull requests)");return new D};e.sha=g(8585),e.sha1=g(1270),e.sha224=g(2709),e.sha256=g(2148),e.sha384=g(1856),e.sha512=g(3121)},8585:(Qe,te,g)=>{var e=g(1993),t=g(463),x=g(7054).Buffer,D=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function w(){this.init(),this._w=l,t.call(this,64,56)}function f(S){return S<<5|S>>>27}function R(S){return S<<30|S>>>2}function h(S,y,O,I){return 0===S?y&O|~y&I:2===S?y&O|y&I|O&I:y^O^I}e(w,t),w.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},w.prototype._update=function(S){for(var y=this._w,O=0|this._a,I=0|this._b,V=0|this._c,j=0|this._d,Y=0|this._e,W=0;W<16;++W)y[W]=S.readInt32BE(4*W);for(;W<80;++W)y[W]=y[W-3]^y[W-8]^y[W-14]^y[W-16];for(var Q=0;Q<80;++Q){var J=~~(Q/20),ie=f(O)+h(J,I,V,j)+Y+y[Q]+D[J]|0;Y=j,j=V,V=R(I),I=O,O=ie}this._a=O+this._a|0,this._b=I+this._b|0,this._c=V+this._c|0,this._d=j+this._d|0,this._e=Y+this._e|0},w.prototype._hash=function(){var S=x.allocUnsafe(20);return S.writeInt32BE(0|this._a,0),S.writeInt32BE(0|this._b,4),S.writeInt32BE(0|this._c,8),S.writeInt32BE(0|this._d,12),S.writeInt32BE(0|this._e,16),S},Qe.exports=w},1270:(Qe,te,g)=>{var e=g(1993),t=g(463),x=g(7054).Buffer,D=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function w(){this.init(),this._w=l,t.call(this,64,56)}function f(y){return y<<1|y>>>31}function R(y){return y<<5|y>>>27}function h(y){return y<<30|y>>>2}function S(y,O,I,V){return 0===y?O&I|~O&V:2===y?O&I|O&V|I&V:O^I^V}e(w,t),w.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},w.prototype._update=function(y){for(var O=this._w,I=0|this._a,V=0|this._b,j=0|this._c,Y=0|this._d,W=0|this._e,Q=0;Q<16;++Q)O[Q]=y.readInt32BE(4*Q);for(;Q<80;++Q)O[Q]=f(O[Q-3]^O[Q-8]^O[Q-14]^O[Q-16]);for(var J=0;J<80;++J){var ie=~~(J/20),ee=R(I)+S(ie,V,j,Y)+W+O[J]+D[ie]|0;W=Y,Y=j,j=h(V),V=I,I=ee}this._a=I+this._a|0,this._b=V+this._b|0,this._c=j+this._c|0,this._d=Y+this._d|0,this._e=W+this._e|0},w.prototype._hash=function(){var y=x.allocUnsafe(20);return y.writeInt32BE(0|this._a,0),y.writeInt32BE(0|this._b,4),y.writeInt32BE(0|this._c,8),y.writeInt32BE(0|this._d,12),y.writeInt32BE(0|this._e,16),y},Qe.exports=w},2709:(Qe,te,g)=>{var e=g(1993),t=g(2148),x=g(463),D=g(7054).Buffer,l=new Array(64);function w(){this.init(),this._w=l,x.call(this,64,56)}e(w,t),w.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},w.prototype._hash=function(){var f=D.allocUnsafe(28);return f.writeInt32BE(this._a,0),f.writeInt32BE(this._b,4),f.writeInt32BE(this._c,8),f.writeInt32BE(this._d,12),f.writeInt32BE(this._e,16),f.writeInt32BE(this._f,20),f.writeInt32BE(this._g,24),f},Qe.exports=w},2148:(Qe,te,g)=>{var e=g(1993),t=g(463),x=g(7054).Buffer,D=[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],l=new Array(64);function w(){this.init(),this._w=l,t.call(this,64,56)}function f(I,V,j){return j^I&(V^j)}function R(I,V,j){return I&V|j&(I|V)}function h(I){return(I>>>2|I<<30)^(I>>>13|I<<19)^(I>>>22|I<<10)}function S(I){return(I>>>6|I<<26)^(I>>>11|I<<21)^(I>>>25|I<<7)}function y(I){return(I>>>7|I<<25)^(I>>>18|I<<14)^I>>>3}function O(I){return(I>>>17|I<<15)^(I>>>19|I<<13)^I>>>10}e(w,t),w.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},w.prototype._update=function(I){for(var V=this._w,j=0|this._a,Y=0|this._b,W=0|this._c,Q=0|this._d,J=0|this._e,ie=0|this._f,ee=0|this._g,fe=0|this._h,ne=0;ne<16;++ne)V[ne]=I.readInt32BE(4*ne);for(;ne<64;++ne)V[ne]=O(V[ne-2])+V[ne-7]+y(V[ne-15])+V[ne-16]|0;for(var Me=0;Me<64;++Me){var Ce=fe+S(J)+f(J,ie,ee)+D[Me]+V[Me]|0,le=h(j)+R(j,Y,W)|0;fe=ee,ee=ie,ie=J,J=Q+Ce|0,Q=W,W=Y,Y=j,j=Ce+le|0}this._a=j+this._a|0,this._b=Y+this._b|0,this._c=W+this._c|0,this._d=Q+this._d|0,this._e=J+this._e|0,this._f=ie+this._f|0,this._g=ee+this._g|0,this._h=fe+this._h|0},w.prototype._hash=function(){var I=x.allocUnsafe(32);return I.writeInt32BE(this._a,0),I.writeInt32BE(this._b,4),I.writeInt32BE(this._c,8),I.writeInt32BE(this._d,12),I.writeInt32BE(this._e,16),I.writeInt32BE(this._f,20),I.writeInt32BE(this._g,24),I.writeInt32BE(this._h,28),I},Qe.exports=w},1856:(Qe,te,g)=>{var e=g(1993),t=g(3121),x=g(463),D=g(7054).Buffer,l=new Array(160);function w(){this.init(),this._w=l,x.call(this,128,112)}e(w,t),w.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},w.prototype._hash=function(){var f=D.allocUnsafe(48);function R(h,S,y){f.writeInt32BE(h,y),f.writeInt32BE(S,y+4)}return R(this._ah,this._al,0),R(this._bh,this._bl,8),R(this._ch,this._cl,16),R(this._dh,this._dl,24),R(this._eh,this._el,32),R(this._fh,this._fl,40),f},Qe.exports=w},3121:(Qe,te,g)=>{var e=g(1993),t=g(463),x=g(7054).Buffer,D=[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],l=new Array(160);function w(){this.init(),this._w=l,t.call(this,128,112)}function f(Y,W,Q){return Q^Y&(W^Q)}function R(Y,W,Q){return Y&W|Q&(Y|W)}function h(Y,W){return(Y>>>28|W<<4)^(W>>>2|Y<<30)^(W>>>7|Y<<25)}function S(Y,W){return(Y>>>14|W<<18)^(Y>>>18|W<<14)^(W>>>9|Y<<23)}function y(Y,W){return(Y>>>1|W<<31)^(Y>>>8|W<<24)^Y>>>7}function O(Y,W){return(Y>>>1|W<<31)^(Y>>>8|W<<24)^(Y>>>7|W<<25)}function I(Y,W){return(Y>>>19|W<<13)^(W>>>29|Y<<3)^Y>>>6}function V(Y,W){return(Y>>>19|W<<13)^(W>>>29|Y<<3)^(Y>>>6|W<<26)}function j(Y,W){return Y>>>0>>0?1:0}e(w,t),w.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},w.prototype._update=function(Y){for(var W=this._w,Q=0|this._ah,J=0|this._bh,ie=0|this._ch,ee=0|this._dh,fe=0|this._eh,ne=0|this._fh,Me=0|this._gh,Ce=0|this._hh,le=0|this._al,T=0|this._bl,n=0|this._cl,c=0|this._dl,m=0|this._el,d=0|this._fl,C=0|this._gl,A=0|this._hl,k=0;k<32;k+=2)W[k]=Y.readInt32BE(4*k),W[k+1]=Y.readInt32BE(4*k+4);for(;k<160;k+=2){var _=W[k-30],a=W[k-30+1],b=y(_,a),z=O(a,_),N=I(_=W[k-4],a=W[k-4+1]),q=V(a,_),Xe=W[k-32],We=W[k-32+1],oe=z+W[k-14+1]|0,X=b+W[k-14]+j(oe,z)|0;X=(X=X+N+j(oe=oe+q|0,q)|0)+Xe+j(oe=oe+We|0,We)|0,W[k]=X,W[k+1]=oe}for(var se=0;se<160;se+=2){X=W[se],oe=W[se+1];var ae=R(Q,J,ie),he=R(le,T,n),Ie=h(Q,le),st=h(le,Q),me=S(fe,m),Ee=S(m,fe),ue=D[se],Be=D[se+1],Ct=f(fe,ne,Me),ct=f(m,d,C),dt=A+Ee|0,Yt=Ce+me+j(dt,A)|0;Yt=(Yt=(Yt=Yt+Ct+j(dt=dt+ct|0,ct)|0)+ue+j(dt=dt+Be|0,Be)|0)+X+j(dt=dt+oe|0,oe)|0;var ve=st+he|0,_e=Ie+ae+j(ve,st)|0;Ce=Me,A=C,Me=ne,C=d,ne=fe,d=m,fe=ee+Yt+j(m=c+dt|0,c)|0,ee=ie,c=n,ie=J,n=T,J=Q,T=le,Q=Yt+_e+j(le=dt+ve|0,dt)|0}this._al=this._al+le|0,this._bl=this._bl+T|0,this._cl=this._cl+n|0,this._dl=this._dl+c|0,this._el=this._el+m|0,this._fl=this._fl+d|0,this._gl=this._gl+C|0,this._hl=this._hl+A|0,this._ah=this._ah+Q+j(this._al,le)|0,this._bh=this._bh+J+j(this._bl,T)|0,this._ch=this._ch+ie+j(this._cl,n)|0,this._dh=this._dh+ee+j(this._dl,c)|0,this._eh=this._eh+fe+j(this._el,m)|0,this._fh=this._fh+ne+j(this._fl,d)|0,this._gh=this._gh+Me+j(this._gl,C)|0,this._hh=this._hh+Ce+j(this._hl,A)|0},w.prototype._hash=function(){var Y=x.allocUnsafe(64);function W(Q,J,ie){Y.writeInt32BE(Q,ie),Y.writeInt32BE(J,ie+4)}return W(this._ah,this._al,0),W(this._bh,this._bl,8),W(this._ch,this._cl,16),W(this._dh,this._dl,24),W(this._eh,this._el,32),W(this._fh,this._fl,40),W(this._gh,this._gl,48),W(this._hh,this._hl,56),Y},Qe.exports=w},2852:function(Qe,te,g){!function(e){"use strict";var t={};Qe.exports?(t.bytesToHex=g(4740).bytesToHex,t.convertString=g(820),Qe.exports=R):(t.bytesToHex=e.convertHex.bytesToHex,t.convertString=e.convertString,e.sha256=R);var x=[];!function(){function h(I){for(var V=Math.sqrt(I),j=2;j<=V;j++)if(!(I%j))return!1;return!0}for(var y=2,O=0;O<64;)h(y)&&(x[O]=4294967296*((I=Math.pow(y,1/3))-(0|I))|0,O++),y++;var I}();var D=function(h){for(var S=[],y=0,O=0;y>>5]|=h[y]<<24-O%32;return S},l=function(h){for(var S=[],y=0;y<32*h.length;y+=8)S.push(h[y>>>5]>>>24-y%32&255);return S},w=[],f=function(h,S,y){for(var O=h[0],I=h[1],V=h[2],j=h[3],Y=h[4],W=h[5],Q=h[6],J=h[7],ie=0;ie<64;ie++){if(ie<16)w[ie]=0|S[y+ie];else{var ee=w[ie-15],ne=w[ie-2];w[ie]=((ee<<25|ee>>>7)^(ee<<14|ee>>>18)^ee>>>3)+w[ie-7]+((ne<<15|ne>>>17)^(ne<<13|ne>>>19)^ne>>>10)+w[ie-16]}var le=O&I^O&V^I&V,c=J+((Y<<26|Y>>>6)^(Y<<21|Y>>>11)^(Y<<7|Y>>>25))+(Y&W^~Y&Q)+x[ie]+w[ie];J=Q,Q=W,W=Y,Y=j+c|0,j=V,V=I,I=O,O=c+(((O<<30|O>>>2)^(O<<19|O>>>13)^(O<<10|O>>>22))+le)|0}h[0]=h[0]+O|0,h[1]=h[1]+I|0,h[2]=h[2]+V|0,h[3]=h[3]+j|0,h[4]=h[4]+Y|0,h[5]=h[5]+W|0,h[6]=h[6]+Q|0,h[7]=h[7]+J|0};function R(h,S){h.constructor===String&&(h=t.convertString.UTF8.stringToBytes(h));var y=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],O=D(h),I=8*h.length;O[I>>5]|=128<<24-I%32,O[15+(I+64>>9<<4)]=I;for(var V=0;V{Qe.exports=x;var e=g(4356).EventEmitter;function x(){e.call(this)}g(1993)(x,e),x.Readable=g(1092),x.Writable=g(5492),x.Duplex=g(1030),x.Transform=g(3410),x.PassThrough=g(3824),x.finished=g(7854),x.pipeline=g(6846),x.Stream=x,x.prototype.pipe=function(D,l){var w=this;function f(V){D.writable&&!1===D.write(V)&&w.pause&&w.pause()}function R(){w.readable&&w.resume&&w.resume()}w.on("data",f),D.on("drain",R),!D._isStdio&&(!l||!1!==l.end)&&(w.on("end",S),w.on("close",y));var h=!1;function S(){h||(h=!0,D.end())}function y(){h||(h=!0,"function"==typeof D.destroy&&D.destroy())}function O(V){if(I(),0===e.listenerCount(this,"error"))throw V}function I(){w.removeListener("data",f),D.removeListener("drain",R),w.removeListener("end",S),w.removeListener("close",y),w.removeListener("error",O),D.removeListener("error",O),w.removeListener("end",I),w.removeListener("close",I),D.removeListener("close",I)}return w.on("error",O),D.on("error",O),w.on("end",I),w.on("close",I),D.on("close",I),D.emit("pipe",w),D}},464:Qe=>{"use strict";var g={};function e(w,f,R){R||(R=Error);var S=function(y){function O(I,V,j){return y.call(this,function h(y,O,I){return"string"==typeof f?f:f(y,O,I)}(I,V,j))||this}return function te(w,f){w.prototype=Object.create(f.prototype),w.prototype.constructor=w,w.__proto__=f}(O,y),O}(R);S.prototype.name=R.name,S.prototype.code=w,g[w]=S}function t(w,f){if(Array.isArray(w)){var R=w.length;return w=w.map(function(h){return String(h)}),R>2?"one of ".concat(f," ").concat(w.slice(0,R-1).join(", "),", or ")+w[R-1]:2===R?"one of ".concat(f," ").concat(w[0]," or ").concat(w[1]):"of ".concat(f," ").concat(w[0])}return"of ".concat(f," ").concat(String(w))}e("ERR_INVALID_OPT_VALUE",function(w,f){return'The value "'+f+'" is invalid for option "'+w+'"'},TypeError),e("ERR_INVALID_ARG_TYPE",function(w,f,R){var h,S;if("string"==typeof f&&function x(w,f,R){return w.substr(!R||R<0?0:+R,f.length)===f}(f,"not ")?(h="must not be",f=f.replace(/^not /,"")):h="must be",function D(w,f,R){return(void 0===R||R>w.length)&&(R=w.length),w.substring(R-f.length,R)===f}(w," argument"))S="The ".concat(w," ").concat(h," ").concat(t(f,"type"));else{var y=function l(w,f,R){return"number"!=typeof R&&(R=0),!(R+f.length>w.length)&&-1!==w.indexOf(f,R)}(w,".")?"property":"argument";S='The "'.concat(w,'" ').concat(y," ").concat(h," ").concat(t(f,"type"))}return S+". Received type ".concat(typeof R)},TypeError),e("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),e("ERR_METHOD_NOT_IMPLEMENTED",function(w){return"The "+w+" method is not implemented"}),e("ERR_STREAM_PREMATURE_CLOSE","Premature close"),e("ERR_STREAM_DESTROYED",function(w){return"Cannot call "+w+" after a stream was destroyed"}),e("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),e("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),e("ERR_STREAM_WRITE_AFTER_END","write after end"),e("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),e("ERR_UNKNOWN_ENCODING",function(w){return"Unknown encoding: "+w},TypeError),e("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Qe.exports.F=g},1030:(Qe,te,g)=>{"use strict";var e=Object.keys||function(S){var y=[];for(var O in S)y.push(O);return y};Qe.exports=f;var t=g(1092),x=g(5492);g(1993)(f,t);for(var D=e(x.prototype),l=0;l{"use strict";Qe.exports=t;var e=g(3410);function t(x){if(!(this instanceof t))return new t(x);e.call(this,x)}g(1993)(t,e),t.prototype._transform=function(x,D,l){l(null,x)}},1092:(Qe,te,g)=>{"use strict";var e;Qe.exports=T,T.ReadableState=le,g(4356);var S,x=function(Ie,st){return Ie.listeners(st).length},D=g(2601),l=g(3838).Buffer,w=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},h=g(7199);S=h&&h.debuglog?h.debuglog("stream"):function(){};var ie,ee,fe,y=g(7606),O=g(8152),V=g(2827).getHighWaterMark,j=g(464).F,Y=j.ERR_INVALID_ARG_TYPE,W=j.ERR_STREAM_PUSH_AFTER_EOF,Q=j.ERR_METHOD_NOT_IMPLEMENTED,J=j.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;g(1993)(T,D);var ne=O.errorOrDestroy,Me=["error","close","destroy","pause","resume"];function le(he,Ie,st){e=e||g(1030),"boolean"!=typeof st&&(st=Ie instanceof e),this.objectMode=!!(he=he||{}).objectMode,st&&(this.objectMode=this.objectMode||!!he.readableObjectMode),this.highWaterMark=V(this,he,"readableHighWaterMark",st),this.buffer=new y,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!==he.emitClose,this.autoDestroy=!!he.autoDestroy,this.destroyed=!1,this.defaultEncoding=he.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,he.encoding&&(ie||(ie=g(8454).I),this.decoder=new ie(he.encoding),this.encoding=he.encoding)}function T(he){if(e=e||g(1030),!(this instanceof T))return new T(he);this._readableState=new le(he,this,this instanceof e),this.readable=!0,he&&("function"==typeof he.read&&(this._read=he.read),"function"==typeof he.destroy&&(this._destroy=he.destroy)),D.call(this)}function n(he,Ie,st,me,Ee){S("readableAddChunk",Ie);var Be,ue=he._readableState;if(null===Ie)ue.reading=!1,function k(he,Ie){if(S("onEofChunk"),!Ie.ended){if(Ie.decoder){var st=Ie.decoder.end();st&&st.length&&(Ie.buffer.push(st),Ie.length+=Ie.objectMode?1:st.length)}Ie.ended=!0,Ie.sync?_(he):(Ie.needReadable=!1,Ie.emittedReadable||(Ie.emittedReadable=!0,a(he)))}}(he,ue);else if(Ee||(Be=function m(he,Ie){var st;return!function R(he){return l.isBuffer(he)||he instanceof w}(Ie)&&"string"!=typeof Ie&&void 0!==Ie&&!he.objectMode&&(st=new Y("chunk",["string","Buffer","Uint8Array"],Ie)),st}(ue,Ie)),Be)ne(he,Be);else if(ue.objectMode||Ie&&Ie.length>0)if("string"!=typeof Ie&&!ue.objectMode&&Object.getPrototypeOf(Ie)!==l.prototype&&(Ie=function f(he){return l.from(he)}(Ie)),me)ue.endEmitted?ne(he,new J):c(he,ue,Ie,!0);else if(ue.ended)ne(he,new W);else{if(ue.destroyed)return!1;ue.reading=!1,ue.decoder&&!st?(Ie=ue.decoder.write(Ie),ue.objectMode||0!==Ie.length?c(he,ue,Ie,!1):b(he,ue)):c(he,ue,Ie,!1)}else me||(ue.reading=!1,b(he,ue));return!ue.ended&&(ue.lengthIe.highWaterMark&&(Ie.highWaterMark=function C(he){return he>=d?he=d:(he--,he|=he>>>1,he|=he>>>2,he|=he>>>4,he|=he>>>8,he|=he>>>16,he++),he}(he)),he<=Ie.length?he:Ie.ended?Ie.length:(Ie.needReadable=!0,0))}function _(he){var Ie=he._readableState;S("emitReadable",Ie.needReadable,Ie.emittedReadable),Ie.needReadable=!1,Ie.emittedReadable||(S("emitReadable",Ie.flowing),Ie.emittedReadable=!0,process.nextTick(a,he))}function a(he){var Ie=he._readableState;S("emitReadable_",Ie.destroyed,Ie.length,Ie.ended),!Ie.destroyed&&(Ie.length||Ie.ended)&&(he.emit("readable"),Ie.emittedReadable=!1),Ie.needReadable=!Ie.flowing&&!Ie.ended&&Ie.length<=Ie.highWaterMark,We(he)}function b(he,Ie){Ie.readingMore||(Ie.readingMore=!0,process.nextTick(z,he,Ie))}function z(he,Ie){for(;!Ie.reading&&!Ie.ended&&(Ie.length0,Ie.resumeScheduled&&!Ie.paused?Ie.flowing=!0:he.listenerCount("data")>0&&he.resume()}function pe(he){S("readable nexttick read 0"),he.read(0)}function Xe(he,Ie){S("resume",Ie.reading),Ie.reading||he.read(0),Ie.resumeScheduled=!1,he.emit("resume"),We(he),Ie.flowing&&!Ie.reading&&he.read(0)}function We(he){var Ie=he._readableState;for(S("flow",Ie.flowing);Ie.flowing&&null!==he.read(););}function oe(he,Ie){return 0===Ie.length?null:(Ie.objectMode?st=Ie.buffer.shift():!he||he>=Ie.length?(st=Ie.decoder?Ie.buffer.join(""):1===Ie.buffer.length?Ie.buffer.first():Ie.buffer.concat(Ie.length),Ie.buffer.clear()):st=Ie.buffer.consume(he,Ie.decoder),st);var st}function X(he){var Ie=he._readableState;S("endReadable",Ie.endEmitted),Ie.endEmitted||(Ie.ended=!0,process.nextTick(se,Ie,he))}function se(he,Ie){if(S("endReadableNT",he.endEmitted,he.length),!he.endEmitted&&0===he.length&&(he.endEmitted=!0,Ie.readable=!1,Ie.emit("end"),he.autoDestroy)){var st=Ie._writableState;(!st||st.autoDestroy&&st.finished)&&Ie.destroy()}}function ae(he,Ie){for(var st=0,me=he.length;st=Ie.highWaterMark:Ie.length>0)||Ie.ended))return S("read: emitReadable",Ie.length,Ie.ended),0===Ie.length&&Ie.ended?X(this):_(this),null;if(0===(he=A(he,Ie))&&Ie.ended)return 0===Ie.length&&X(this),null;var Ee,me=Ie.needReadable;return S("need readable",me),(0===Ie.length||Ie.length-he0?oe(he,Ie):null)?(Ie.needReadable=Ie.length<=Ie.highWaterMark,he=0):(Ie.length-=he,Ie.awaitDrain=0),0===Ie.length&&(Ie.ended||(Ie.needReadable=!0),st!==he&&Ie.ended&&X(this)),null!==Ee&&this.emit("data",Ee),Ee},T.prototype._read=function(he){ne(this,new Q("_read()"))},T.prototype.pipe=function(he,Ie){var st=this,me=this._readableState;switch(me.pipesCount){case 0:me.pipes=he;break;case 1:me.pipes=[me.pipes,he];break;default:me.pipes.push(he)}me.pipesCount+=1,S("pipe count=%d opts=%j",me.pipesCount,Ie);var ue=Ie&&!1===Ie.end||he===process.stdout||he===process.stderr?je:Ct;function Ct(){S("onend"),he.end()}me.endEmitted?process.nextTick(ue):st.once("end",ue),he.on("unpipe",function Be(vt,$e){S("onunpipe"),vt===st&&$e&&!1===$e.hasUnpiped&&($e.hasUnpiped=!0,function Yt(){S("cleanup"),he.removeListener("close",we),he.removeListener("finish",Ue),he.removeListener("drain",ct),he.removeListener("error",_e),he.removeListener("unpipe",Be),st.removeListener("end",Ct),st.removeListener("end",je),st.removeListener("data",ve),dt=!0,me.awaitDrain&&(!he._writableState||he._writableState.needDrain)&&ct()}())});var ct=function N(he){return function(){var st=he._readableState;S("pipeOnDrain",st.awaitDrain),st.awaitDrain&&st.awaitDrain--,0===st.awaitDrain&&x(he,"data")&&(st.flowing=!0,We(he))}}(st);he.on("drain",ct);var dt=!1;function ve(vt){S("ondata");var $e=he.write(vt);S("dest.write",$e),!1===$e&&((1===me.pipesCount&&me.pipes===he||me.pipesCount>1&&-1!==ae(me.pipes,he))&&!dt&&(S("false write response, pause",me.awaitDrain),me.awaitDrain++),st.pause())}function _e(vt){S("onerror",vt),je(),he.removeListener("error",_e),0===x(he,"error")&&ne(he,vt)}function we(){he.removeListener("finish",Ue),je()}function Ue(){S("onfinish"),he.removeListener("close",we),je()}function je(){S("unpipe"),st.unpipe(he)}return st.on("data",ve),function Ce(he,Ie,st){if("function"==typeof he.prependListener)return he.prependListener(Ie,st);he._events&&he._events[Ie]?Array.isArray(he._events[Ie])?he._events[Ie].unshift(st):he._events[Ie]=[st,he._events[Ie]]:he.on(Ie,st)}(he,"error",_e),he.once("close",we),he.once("finish",Ue),he.emit("pipe",st),me.flowing||(S("pipe resume"),st.resume()),he},T.prototype.unpipe=function(he){var Ie=this._readableState,st={hasUnpiped:!1};if(0===Ie.pipesCount)return this;if(1===Ie.pipesCount)return he&&he!==Ie.pipes||(he||(he=Ie.pipes),Ie.pipes=null,Ie.pipesCount=0,Ie.flowing=!1,he&&he.emit("unpipe",this,st)),this;if(!he){var me=Ie.pipes,Ee=Ie.pipesCount;Ie.pipes=null,Ie.pipesCount=0,Ie.flowing=!1;for(var ue=0;ue0,!1!==me.flowing&&this.resume()):"readable"===he&&!me.endEmitted&&!me.readableListening&&(me.readableListening=me.needReadable=!0,me.flowing=!1,me.emittedReadable=!1,S("on readable",me.length,me.reading),me.length?_(this):me.reading||process.nextTick(pe,this)),st},T.prototype.removeListener=function(he,Ie){var st=D.prototype.removeListener.call(this,he,Ie);return"readable"===he&&process.nextTick(q,this),st},T.prototype.removeAllListeners=function(he){var Ie=D.prototype.removeAllListeners.apply(this,arguments);return("readable"===he||void 0===he)&&process.nextTick(q,this),Ie},T.prototype.resume=function(){var he=this._readableState;return he.flowing||(S("resume"),he.flowing=!he.readableListening,function ze(he,Ie){Ie.resumeScheduled||(Ie.resumeScheduled=!0,process.nextTick(Xe,he,Ie))}(this,he)),he.paused=!1,this},T.prototype.pause=function(){return S("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(S("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},T.prototype.wrap=function(he){var Ie=this,st=this._readableState,me=!1;for(var Ee in he.on("end",function(){if(S("wrapped end"),st.decoder&&!st.ended){var Be=st.decoder.end();Be&&Be.length&&Ie.push(Be)}Ie.push(null)}),he.on("data",function(Be){S("wrapped data"),st.decoder&&(Be=st.decoder.write(Be)),st.objectMode&&null==Be||!(st.objectMode||Be&&Be.length)||Ie.push(Be)||(me=!0,he.pause())}),he)void 0===this[Ee]&&"function"==typeof he[Ee]&&(this[Ee]=function(Ct){return function(){return he[Ct].apply(he,arguments)}}(Ee));for(var ue=0;ue{"use strict";Qe.exports=R;var e=g(464).F,t=e.ERR_METHOD_NOT_IMPLEMENTED,x=e.ERR_MULTIPLE_CALLBACK,D=e.ERR_TRANSFORM_ALREADY_TRANSFORMING,l=e.ERR_TRANSFORM_WITH_LENGTH_0,w=g(1030);function f(y,O){var I=this._transformState;I.transforming=!1;var V=I.writecb;if(null===V)return this.emit("error",new x);I.writechunk=null,I.writecb=null,null!=O&&this.push(O),V(y);var j=this._readableState;j.reading=!1,(j.needReadable||j.length{"use strict";function t(We){var oe=this;this.next=null,this.entry=null,this.finish=function(){!function Xe(We,oe,X){var se=We.entry;for(We.entry=null;se;){var ae=se.callback;oe.pendingcb--,ae(X),se=se.next}oe.corkedRequestsFree.next=We}(oe,We)}}var x;Qe.exports=le,le.WritableState=Me;var Ce,D={deprecate:g(3398)},l=g(2601),w=g(3838).Buffer,f=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},S=g(8152),O=g(2827).getHighWaterMark,I=g(464).F,V=I.ERR_INVALID_ARG_TYPE,j=I.ERR_METHOD_NOT_IMPLEMENTED,Y=I.ERR_MULTIPLE_CALLBACK,W=I.ERR_STREAM_CANNOT_PIPE,Q=I.ERR_STREAM_DESTROYED,J=I.ERR_STREAM_NULL_VALUES,ie=I.ERR_STREAM_WRITE_AFTER_END,ee=I.ERR_UNKNOWN_ENCODING,fe=S.errorOrDestroy;function ne(){}function Me(We,oe,X){x=x||g(1030),"boolean"!=typeof X&&(X=oe instanceof x),this.objectMode=!!(We=We||{}).objectMode,X&&(this.objectMode=this.objectMode||!!We.writableObjectMode),this.highWaterMark=O(this,We,"writableHighWaterMark",X),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===We.decodeStrings),this.defaultEncoding=We.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ae){!function k(We,oe){var X=We._writableState,se=X.sync,ae=X.writecb;if("function"!=typeof ae)throw new Y;if(function A(We){We.writing=!1,We.writecb=null,We.length-=We.writelen,We.writelen=0}(X),oe)!function C(We,oe,X,se,ae){--oe.pendingcb,X?(process.nextTick(ae,se),process.nextTick(pe,We,oe),We._writableState.errorEmitted=!0,fe(We,se)):(ae(se),We._writableState.errorEmitted=!0,fe(We,se),pe(We,oe))}(We,X,se,oe,ae);else{var he=z(X)||We.destroyed;!he&&!X.corked&&!X.bufferProcessing&&X.bufferedRequest&&b(We,X),se?process.nextTick(_,We,X,he,ae):_(We,X,he,ae)}}(oe,ae)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==We.emitClose,this.autoDestroy=!!We.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new t(this)}function le(We){var oe=this instanceof(x=x||g(1030));if(!oe&&!Ce.call(le,this))return new le(We);this._writableState=new Me(We,this,oe),this.writable=!0,We&&("function"==typeof We.write&&(this._write=We.write),"function"==typeof We.writev&&(this._writev=We.writev),"function"==typeof We.destroy&&(this._destroy=We.destroy),"function"==typeof We.final&&(this._final=We.final)),l.call(this)}function d(We,oe,X,se,ae,he,Ie){oe.writelen=se,oe.writecb=Ie,oe.writing=!0,oe.sync=!0,oe.destroyed?oe.onwrite(new Q("write")):X?We._writev(ae,oe.onwrite):We._write(ae,he,oe.onwrite),oe.sync=!1}function _(We,oe,X,se){X||function a(We,oe){0===oe.length&&oe.needDrain&&(oe.needDrain=!1,We.emit("drain"))}(We,oe),oe.pendingcb--,se(),pe(We,oe)}function b(We,oe){oe.bufferProcessing=!0;var X=oe.bufferedRequest;if(We._writev&&X&&X.next){var ae=new Array(oe.bufferedRequestCount),he=oe.corkedRequestsFree;he.entry=X;for(var Ie=0,st=!0;X;)ae[Ie]=X,X.isBuf||(st=!1),X=X.next,Ie+=1;ae.allBuffers=st,d(We,oe,!0,oe.length,ae,"",he.finish),oe.pendingcb++,oe.lastBufferedRequest=null,he.next?(oe.corkedRequestsFree=he.next,he.next=null):oe.corkedRequestsFree=new t(oe),oe.bufferedRequestCount=0}else{for(;X;){var me=X.chunk;if(d(We,oe,!1,oe.objectMode?1:me.length,me,X.encoding,X.callback),X=X.next,oe.bufferedRequestCount--,oe.writing)break}null===X&&(oe.lastBufferedRequest=null)}oe.bufferedRequest=X,oe.bufferProcessing=!1}function z(We){return We.ending&&0===We.length&&null===We.bufferedRequest&&!We.finished&&!We.writing}function N(We,oe){We._final(function(X){oe.pendingcb--,X&&fe(We,X),oe.prefinished=!0,We.emit("prefinish"),pe(We,oe)})}function pe(We,oe){var X=z(oe);if(X&&(function q(We,oe){!oe.prefinished&&!oe.finalCalled&&("function"!=typeof We._final||oe.destroyed?(oe.prefinished=!0,We.emit("prefinish")):(oe.pendingcb++,oe.finalCalled=!0,process.nextTick(N,We,oe)))}(We,oe),0===oe.pendingcb&&(oe.finished=!0,We.emit("finish"),oe.autoDestroy))){var se=We._readableState;(!se||se.autoDestroy&&se.endEmitted)&&We.destroy()}return X}g(1993)(le,l),Me.prototype.getBuffer=function(){for(var oe=this.bufferedRequest,X=[];oe;)X.push(oe),oe=oe.next;return X},function(){try{Object.defineProperty(Me.prototype,"buffer",{get:D.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]?(Ce=Function.prototype[Symbol.hasInstance],Object.defineProperty(le,Symbol.hasInstance,{value:function(oe){return!!Ce.call(this,oe)||this===le&&oe&&oe._writableState instanceof Me}})):Ce=function(oe){return oe instanceof this},le.prototype.pipe=function(){fe(this,new W)},le.prototype.write=function(We,oe,X){var se=this._writableState,ae=!1,he=!se.objectMode&&function h(We){return w.isBuffer(We)||We instanceof f}(We);return he&&!w.isBuffer(We)&&(We=function R(We){return w.from(We)}(We)),"function"==typeof oe&&(X=oe,oe=null),he?oe="buffer":oe||(oe=se.defaultEncoding),"function"!=typeof X&&(X=ne),se.ending?function T(We,oe){var X=new ie;fe(We,X),process.nextTick(oe,X)}(this,X):(he||function n(We,oe,X,se){var ae;return null===X?ae=new J:"string"!=typeof X&&!oe.objectMode&&(ae=new V("chunk",["string","Buffer"],X)),!ae||(fe(We,ae),process.nextTick(se,ae),!1)}(this,se,We,X))&&(se.pendingcb++,ae=function m(We,oe,X,se,ae,he){if(!X){var Ie=function c(We,oe,X){return!We.objectMode&&!1!==We.decodeStrings&&"string"==typeof oe&&(oe=w.from(oe,X)),oe}(oe,se,ae);se!==Ie&&(X=!0,ae="buffer",se=Ie)}var st=oe.objectMode?1:se.length;oe.length+=st;var me=oe.length-1))throw new ee(oe);return this._writableState.defaultEncoding=oe,this},Object.defineProperty(le.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(le.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),le.prototype._write=function(We,oe,X){X(new j("_write()"))},le.prototype._writev=null,le.prototype.end=function(We,oe,X){var se=this._writableState;return"function"==typeof We?(X=We,We=null,oe=null):"function"==typeof oe&&(X=oe,oe=null),null!=We&&this.write(We,oe),se.corked&&(se.corked=1,this.uncork()),se.ending||function ze(We,oe,X){oe.ending=!0,pe(We,oe),X&&(oe.finished?process.nextTick(X):We.once("finish",X)),oe.ended=!0,We.writable=!1}(this,se,X),this},Object.defineProperty(le.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(le.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(oe){this._writableState&&(this._writableState.destroyed=oe)}}),le.prototype.destroy=S.destroy,le.prototype._undestroy=S.undestroy,le.prototype._destroy=function(We,oe){oe(We)}},2683:(Qe,te,g)=>{"use strict";var e;function t(ie,ee,fe){return ee=function x(ie){var ee=function D(ie,ee){if("object"!=typeof ie||null===ie)return ie;var fe=ie[Symbol.toPrimitive];if(void 0!==fe){var ne=fe.call(ie,ee||"default");if("object"!=typeof ne)return ne;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===ee?String:Number)(ie)}(ie,"string");return"symbol"==typeof ee?ee:String(ee)}(ee),ee in ie?Object.defineProperty(ie,ee,{value:fe,enumerable:!0,configurable:!0,writable:!0}):ie[ee]=fe,ie}var l=g(7854),w=Symbol("lastResolve"),f=Symbol("lastReject"),R=Symbol("error"),h=Symbol("ended"),S=Symbol("lastPromise"),y=Symbol("handlePromise"),O=Symbol("stream");function I(ie,ee){return{value:ie,done:ee}}function V(ie){var ee=ie[w];if(null!==ee){var fe=ie[O].read();null!==fe&&(ie[S]=null,ie[w]=null,ie[f]=null,ee(I(fe,!1)))}}function j(ie){process.nextTick(V,ie)}var W=Object.getPrototypeOf(function(){}),Q=Object.setPrototypeOf((t(e={get stream(){return this[O]},next:function(){var ee=this,fe=this[R];if(null!==fe)return Promise.reject(fe);if(this[h])return Promise.resolve(I(void 0,!0));if(this[O].destroyed)return new Promise(function(le,T){process.nextTick(function(){ee[R]?T(ee[R]):le(I(void 0,!0))})});var Me,ne=this[S];if(ne)Me=new Promise(function Y(ie,ee){return function(fe,ne){ie.then(function(){ee[h]?fe(I(void 0,!0)):ee[y](fe,ne)},ne)}}(ne,this));else{var Ce=this[O].read();if(null!==Ce)return Promise.resolve(I(Ce,!1));Me=new Promise(this[y])}return this[S]=Me,Me}},Symbol.asyncIterator,function(){return this}),t(e,"return",function(){var ee=this;return new Promise(function(fe,ne){ee[O].destroy(null,function(Me){Me?ne(Me):fe(I(void 0,!0))})})}),e),W);Qe.exports=function(ee){var fe,ne=Object.create(Q,(t(fe={},O,{value:ee,writable:!0}),t(fe,w,{value:null,writable:!0}),t(fe,f,{value:null,writable:!0}),t(fe,R,{value:null,writable:!0}),t(fe,h,{value:ee._readableState.endEmitted,writable:!0}),t(fe,y,{value:function(Ce,le){var T=ne[O].read();T?(ne[S]=null,ne[w]=null,ne[f]=null,Ce(I(T,!1))):(ne[w]=Ce,ne[f]=le)},writable:!0}),fe));return ne[S]=null,l(ee,function(Me){if(Me&&"ERR_STREAM_PREMATURE_CLOSE"!==Me.code){var Ce=ne[f];return null!==Ce&&(ne[S]=null,ne[w]=null,ne[f]=null,Ce(Me)),void(ne[R]=Me)}var le=ne[w];null!==le&&(ne[S]=null,ne[w]=null,ne[f]=null,le(I(void 0,!0))),ne[h]=!0}),ee.on("readable",j.bind(null,ne)),ne}},7606:(Qe,te,g)=>{"use strict";function e(j,Y){var W=Object.keys(j);if(Object.getOwnPropertySymbols){var Q=Object.getOwnPropertySymbols(j);Y&&(Q=Q.filter(function(J){return Object.getOwnPropertyDescriptor(j,J).enumerable})),W.push.apply(W,Q)}return W}function t(j){for(var Y=1;Y0?this.tail.next=Q:this.head=Q,this.tail=Q,++this.length}},{key:"unshift",value:function(W){var Q={data:W,next:this.head};0===this.length&&(this.tail=Q),this.head=Q,++this.length}},{key:"shift",value:function(){if(0!==this.length){var W=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,W}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(W){if(0===this.length)return"";for(var Q=this.head,J=""+Q.data;Q=Q.next;)J+=W+Q.data;return J}},{key:"concat",value:function(W){if(0===this.length)return S.alloc(0);for(var Q=S.allocUnsafe(W>>>0),J=this.head,ie=0;J;)V(J.data,Q,ie),ie+=J.data.length,J=J.next;return Q}},{key:"consume",value:function(W,Q){var J;return Wee.length?ee.length:W;if(ie+=fe===ee.length?ee:ee.slice(0,W),0==(W-=fe)){fe===ee.length?(++J,this.head=Q.next?Q.next:this.tail=null):(this.head=Q,Q.data=ee.slice(fe));break}++J}return this.length-=J,ie}},{key:"_getBuffer",value:function(W){var Q=S.allocUnsafe(W),J=this.head,ie=1;for(J.data.copy(Q),W-=J.data.length;J=J.next;){var ee=J.data,fe=W>ee.length?ee.length:W;if(ee.copy(Q,Q.length-W,0,fe),0==(W-=fe)){fe===ee.length?(++ie,this.head=J.next?J.next:this.tail=null):(this.head=J,J.data=ee.slice(fe));break}++ie}return this.length-=ie,Q}},{key:I,value:function(W,Q){return O(this,t(t({},Q),{},{depth:0,customInspect:!1}))}}]),j}()},8152:Qe=>{"use strict";function g(l,w){x(l,w),e(l)}function e(l){l._writableState&&!l._writableState.emitClose||l._readableState&&!l._readableState.emitClose||l.emit("close")}function x(l,w){l.emit("error",w)}Qe.exports={destroy:function te(l,w){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(w?w(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(x,this,l)):process.nextTick(x,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(S){!w&&S?f._writableState?f._writableState.errorEmitted?process.nextTick(e,f):(f._writableState.errorEmitted=!0,process.nextTick(g,f,S)):process.nextTick(g,f,S):w?(process.nextTick(e,f),w(S)):process.nextTick(e,f)}),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 D(l,w){var f=l._readableState,R=l._writableState;f&&f.autoDestroy||R&&R.autoDestroy?l.destroy(w):l.emit("error",w)}}},7854:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_STREAM_PREMATURE_CLOSE;function x(){}Qe.exports=function l(w,f,R){if("function"==typeof f)return l(w,null,f);f||(f={}),R=function t(w){var f=!1;return function(){if(!f){f=!0;for(var R=arguments.length,h=new Array(R),S=0;S{Qe.exports=function(){throw new Error("Readable.from is not available in the browser")}},6846:(Qe,te,g)=>{"use strict";var e,x=g(464).F,D=x.ERR_MISSING_ARGS,l=x.ERR_STREAM_DESTROYED;function w(I){if(I)throw I}function h(I){I()}function S(I,V){return I.pipe(V)}Qe.exports=function O(){for(var I=arguments.length,V=new Array(I),j=0;j0,function(ne){W||(W=ne),ne&&Q.forEach(h),!ee&&(Q.forEach(h),Y(W))})});return V.reduce(S)}},2827:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_INVALID_OPT_VALUE;Qe.exports={getHighWaterMark:function x(D,l,w,f){var R=function t(D,l,w){return null!=D.highWaterMark?D.highWaterMark:l?D[w]:null}(l,f,w);if(null!=R){if(!isFinite(R)||Math.floor(R)!==R||R<0)throw new e(f?w:"highWaterMark",R);return Math.floor(R)}return D.objectMode?16:16384}}},2601:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},8454:(Qe,te,g)=>{"use strict";var e=g(4272).Buffer,t=e.isEncoding||function(Q){switch((Q=""+Q)&&Q.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 l(Q){var J;switch(this.encoding=function D(Q){var J=function x(Q){if(!Q)return"utf8";for(var J;;)switch(Q){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 Q;default:if(J)return;Q=(""+Q).toLowerCase(),J=!0}}(Q);if("string"!=typeof J&&(e.isEncoding===t||!t(Q)))throw new Error("Unknown encoding: "+Q);return J||Q}(Q),this.encoding){case"utf16le":this.text=O,this.end=I,J=4;break;case"utf8":this.fillLast=h,J=4;break;case"base64":this.text=V,this.end=j,J=3;break;default:return this.write=Y,void(this.end=W)}this.lastNeed=0,this.lastTotal=0,this.lastChar=e.allocUnsafe(J)}function w(Q){return Q<=127?0:Q>>5==6?2:Q>>4==14?3:Q>>3==30?4:Q>>6==2?-1:-2}function h(Q){var J=this.lastTotal-this.lastNeed,ie=function R(Q,J){if(128!=(192&J[0]))return Q.lastNeed=0,"\ufffd";if(Q.lastNeed>1&&J.length>1){if(128!=(192&J[1]))return Q.lastNeed=1,"\ufffd";if(Q.lastNeed>2&&J.length>2&&128!=(192&J[2]))return Q.lastNeed=2,"\ufffd"}}(this,Q);return void 0!==ie?ie:this.lastNeed<=Q.length?(Q.copy(this.lastChar,J,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(Q.copy(this.lastChar,J,0,Q.length),void(this.lastNeed-=Q.length))}function O(Q,J){if((Q.length-J)%2==0){var ie=Q.toString("utf16le",J);if(ie){var ee=ie.charCodeAt(ie.length-1);if(ee>=55296&&ee<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1],ie.slice(0,-1)}return ie}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=Q[Q.length-1],Q.toString("utf16le",J,Q.length-1)}function I(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):J}function V(Q,J){var ie=(Q.length-J)%3;return 0===ie?Q.toString("base64",J):(this.lastNeed=3-ie,this.lastTotal=3,1===ie?this.lastChar[0]=Q[Q.length-1]:(this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1]),Q.toString("base64",J,Q.length-ie))}function j(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("base64",0,3-this.lastNeed):J}function Y(Q){return Q.toString(this.encoding)}function W(Q){return Q&&Q.length?this.write(Q):""}te.I=l,l.prototype.write=function(Q){if(0===Q.length)return"";var J,ie;if(this.lastNeed){if(void 0===(J=this.fillLast(Q)))return"";ie=this.lastNeed,this.lastNeed=0}else ie=0;return ie=0?(fe>0&&(Q.lastNeed=fe-1),fe):--ee=0?(fe>0&&(Q.lastNeed=fe-2),fe):--ee=0?(fe>0&&(2===fe?fe=0:Q.lastNeed=fe-3),fe):0}(this,Q,J);if(!this.lastNeed)return Q.toString("utf8",J);this.lastTotal=ie;var ee=Q.length-(ie-this.lastNeed);return Q.copy(this.lastChar,0,ee),Q.toString("utf8",J,ee)},l.prototype.fillLast=function(Q){if(this.lastNeed<=Q.length)return Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,Q.length),this.lastNeed-=Q.length}},4272:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function x(l,w){for(var f in l)w[f]=l[f]}function D(l,w,f){return t(l,w,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(x(e,te),te.Buffer=D),x(t,D),D.from=function(l,w,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,w,f)},D.alloc=function(l,w,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var R=t(l);return void 0!==w?"string"==typeof f?R.fill(w,f):R.fill(w):R.fill(0),R},D.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},D.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},7851:(Qe,te,g)=>{var e=g(1876);te.encode=e.encode,te.decode=e.decode},1876:(Qe,te)=>{"use strict";var e=[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];te.encode=function(x){Buffer.isBuffer(x)||(x=new Buffer(x));for(var D=0,l=0,w=0,f=0,R=new Buffer(8*function t(x){var D=Math.floor(x.length/5);return x.length%5==0?D:D+1}(x));D3?(f=(f=h&255>>w)<<(w=(w+5)%8)|(D+1>8-w,D++):(f=h>>8-(w+5)&31,0==(w=(w+5)%8)&&D++),R[l]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(f),l++}for(D=l;D>>(D=(D+5)%8),f++,w=255&l<<8-D)}return R.slice(0,f)}},3398:Qe=>{function g(e){try{if(!global.localStorage)return!1}catch{return!1}var t=global.localStorage[e];return null!=t&&"true"===String(t).toLowerCase()}Qe.exports=function te(e,t){if(g("noDeprecation"))return e;var x=!1;return function D(){if(!x){if(g("throwDeprecation"))throw new Error(t);g("traceDeprecation")?console.trace(t):console.warn(t),x=!0}return e.apply(this,arguments)}}},8326:(__unused_webpack_module,exports)=>{var indexOf=function(Qe,te){if(Qe.indexOf)return Qe.indexOf(te);for(var g=0;g{},7790:()=>{},7965:()=>{},6089:()=>{},9368:()=>{},4688:()=>{},1069:()=>{},5340:()=>{},9838:()=>{},3779:()=>{},7199:()=>{},9969:(Qe,te,g)=>{"use strict";g.d(te,{FX:()=>le,If:()=>e,K2:()=>w,MA:()=>O,Os:()=>l,P:()=>V,hZ:()=>x,i0:()=>D,i7:()=>h,iF:()=>f,kY:()=>S,kp:()=>t,sf:()=>Me,ui:()=>Ce,wk:()=>R});var e=function(T){return T[T.State=0]="State",T[T.Transition=1]="Transition",T[T.Sequence=2]="Sequence",T[T.Group=3]="Group",T[T.Animate=4]="Animate",T[T.Keyframes=5]="Keyframes",T[T.Style=6]="Style",T[T.Trigger=7]="Trigger",T[T.Reference=8]="Reference",T[T.AnimateChild=9]="AnimateChild",T[T.AnimateRef=10]="AnimateRef",T[T.Query=11]="Query",T[T.Stagger=12]="Stagger",T}(e||{});const t="*";function x(T,n){return{type:e.Trigger,name:T,definitions:n,options:{}}}function D(T,n=null){return{type:e.Animate,styles:n,timings:T}}function l(T,n=null){return{type:e.Group,steps:T,options:n}}function w(T,n=null){return{type:e.Sequence,steps:T,options:n}}function f(T){return{type:e.Style,styles:T,offset:null}}function R(T,n,c){return{type:e.State,name:T,styles:n,options:c}}function h(T){return{type:e.Keyframes,steps:T}}function S(T,n,c=null){return{type:e.Transition,expr:T,animation:n,options:c}}function O(T=null){return{type:e.AnimateChild,options:T}}function V(T,n,c=null){return{type:e.Query,selector:T,animation:n,options:c}}class Me{constructor(n=0,c=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._originalOnDoneFns=[],this._originalOnStartFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=n+c}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}onStart(n){this._originalOnStartFns.push(n),this._onStartFns.push(n)}onDone(n){this._originalOnDoneFns.push(n),this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(n=>n()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(n){this._position=this.totalTime?n*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}class Ce{constructor(n){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=n;let c=0,m=0,d=0;const C=this.players.length;0==C?queueMicrotask(()=>this._onFinish()):this.players.forEach(A=>{A.onDone(()=>{++c==C&&this._onFinish()}),A.onDestroy(()=>{++m==C&&this._onDestroy()}),A.onStart(()=>{++d==C&&this._onStart()})}),this.totalTime=this.players.reduce((A,k)=>Math.max(A,k.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}init(){this.players.forEach(n=>n.init())}onStart(n){this._onStartFns.push(n)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(n=>n()),this._onStartFns=[])}onDone(n){this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(n=>n.play())}pause(){this.players.forEach(n=>n.pause())}restart(){this.players.forEach(n=>n.restart())}finish(){this._onFinish(),this.players.forEach(n=>n.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(n=>n.destroy()),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this.players.forEach(n=>n.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(n){const c=n*this.totalTime;this.players.forEach(m=>{const d=m.totalTime?Math.min(1,c/m.totalTime):1;m.setPosition(d)})}getPosition(){const n=this.players.reduce((c,m)=>null===c||m.totalTime>c.totalTime?m:c,null);return null!=n?n.getPosition():0}beforeDestroy(){this.players.forEach(n=>{n.beforeDestroy&&n.beforeDestroy()})}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}const le="!"},8617:(Qe,te,g)=>{"use strict";g.d(te,{Ae:()=>fe,Ai:()=>nt,Au:()=>C,Bu:()=>A,FN:()=>Je,GX:()=>he,Pd:()=>Se,Q_:()=>xt,Z7:()=>_,_G:()=>Ct,kB:()=>Ie,px:()=>ee,vR:()=>et,vr:()=>n,w6:()=>ct});var e=g(177),t=g(4438),x=g(6860),D=g(1413),l=g(8359),w=g(4412),f=g(7673),R=g(7336),h=g(8141),S=g(152),y=g(5964),O=g(6354),I=g(6697),V=g(5245),j=g(3294),Y=g(6977),W=g(2318),Q=g(4085),J=g(9327);const ie=" ";function ee(Te,ce,Z){const Re=ne(Te,ce);Z=Z.trim(),!Re.some(Pe=>Pe.trim()===Z)&&(Re.push(Z),Te.setAttribute(ce,Re.join(ie)))}function fe(Te,ce,Z){const Re=ne(Te,ce);Z=Z.trim();const Pe=Re.filter(pt=>pt!==Z);Pe.length?Te.setAttribute(ce,Pe.join(ie)):Te.removeAttribute(ce)}function ne(Te,ce){return Te.getAttribute(ce)?.match(/\S+/g)??[]}const Ce="cdk-describedby-message",le="cdk-describedby-host";let T=0,n=(()=>{class Te{constructor(Z,Re){this._platform=Re,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+T++,this._document=Z,this._id=(0,t.WQX)(t.sZ2)+"-"+T++}describe(Z,Re,Pe){if(!this._canBeDescribed(Z,Re))return;const pt=c(Re,Pe);"string"!=typeof Re?(m(Re,this._id),this._messageRegistry.set(pt,{messageElement:Re,referenceCount:0})):this._messageRegistry.has(pt)||this._createMessageElement(Re,Pe),this._isElementDescribedByMessage(Z,pt)||this._addMessageReference(Z,pt)}removeDescription(Z,Re,Pe){if(!Re||!this._isElementNode(Z))return;const pt=c(Re,Pe);if(this._isElementDescribedByMessage(Z,pt)&&this._removeMessageReference(Z,pt),"string"==typeof Re){const Ke=this._messageRegistry.get(pt);Ke&&0===Ke.referenceCount&&this._deleteMessageElement(pt)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const Z=this._document.querySelectorAll(`[${le}="${this._id}"]`);for(let Re=0;Re0!=Pe.indexOf(Ce));Z.setAttribute("aria-describedby",Re.join(" "))}_addMessageReference(Z,Re){const Pe=this._messageRegistry.get(Re);ee(Z,"aria-describedby",Pe.messageElement.id),Z.setAttribute(le,this._id),Pe.referenceCount++}_removeMessageReference(Z,Re){const Pe=this._messageRegistry.get(Re);Pe.referenceCount--,fe(Z,"aria-describedby",Pe.messageElement.id),Z.removeAttribute(le)}_isElementDescribedByMessage(Z,Re){const Pe=ne(Z,"aria-describedby"),pt=this._messageRegistry.get(Re),Ke=pt&&pt.messageElement.id;return!!Ke&&-1!=Pe.indexOf(Ke)}_canBeDescribed(Z,Re){if(!this._isElementNode(Z))return!1;if(Re&&"object"==typeof Re)return!0;const Pe=null==Re?"":`${Re}`.trim(),pt=Z.getAttribute("aria-label");return!(!Pe||pt&&pt.trim()===Pe)}_isElementNode(Z){return Z.nodeType===this._document.ELEMENT_NODE}static{this.\u0275fac=function(Re){return new(Re||Te)(t.KVO(e.qQ),t.KVO(x.OD))}}static{this.\u0275prov=t.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}}return Te})();function c(Te,ce){return"string"==typeof Te?`${ce||""}/${Te}`:Te}function m(Te,ce){Te.id||(Te.id=`${Ce}-${ce}-${T++}`)}class d{constructor(ce,Z){this._items=ce,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new D.B,this._typeaheadSubscription=l.yU.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._pageUpAndDown={enabled:!1,delta:10},this._skipPredicateFn=Re=>Re.disabled,this._pressedLetters=[],this.tabOut=new D.B,this.change=new D.B,ce instanceof t.rOR?this._itemChangesSubscription=ce.changes.subscribe(Re=>this._itemsChanged(Re.toArray())):(0,t.Hps)(ce)&&(this._effectRef=(0,t.QZP)(()=>this._itemsChanged(ce()),{injector:Z}))}skipPredicate(ce){return this._skipPredicateFn=ce,this}withWrap(ce=!0){return this._wrap=ce,this}withVerticalOrientation(ce=!0){return this._vertical=ce,this}withHorizontalOrientation(ce){return this._horizontal=ce,this}withAllowedModifierKeys(ce){return this._allowedModifierKeys=ce,this}withTypeAhead(ce=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,h.M)(Z=>this._pressedLetters.push(Z)),(0,S.B)(ce),(0,y.p)(()=>this._pressedLetters.length>0),(0,O.T)(()=>this._pressedLetters.join(""))).subscribe(Z=>{const Re=this._getItemsArray();for(let Pe=1;Pe!ce[pt]||this._allowedModifierKeys.indexOf(pt)>-1);switch(Z){case R.wn:return void this.tabOut.next();case R.n6:if(this._vertical&&Pe){this.setNextItemActive();break}return;case R.i7:if(this._vertical&&Pe){this.setPreviousItemActive();break}return;case R.LE:if(this._horizontal&&Pe){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case R.UQ:if(this._horizontal&&Pe){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case R.yZ:if(this._homeAndEnd&&Pe){this.setFirstItemActive();break}return;case R.Kp:if(this._homeAndEnd&&Pe){this.setLastItemActive();break}return;case R.w_:if(this._pageUpAndDown.enabled&&Pe){const pt=this._activeItemIndex-this._pageUpAndDown.delta;this._setActiveItemByIndex(pt>0?pt:0,1);break}return;case R.dB:if(this._pageUpAndDown.enabled&&Pe){const pt=this._activeItemIndex+this._pageUpAndDown.delta,Ke=this._getItemsArray().length;this._setActiveItemByIndex(pt=R.A&&Z<=R.Z||Z>=R.f2&&Z<=R.bn)&&this._letterKeyStream.next(String.fromCharCode(Z))))}this._pressedLetters=[],ce.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._getItemsArray().length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(ce){const Z=this._getItemsArray(),Re="number"==typeof ce?ce:Z.indexOf(ce);this._activeItem=Z[Re]??null,this._activeItemIndex=Re}destroy(){this._typeaheadSubscription.unsubscribe(),this._itemChangesSubscription?.unsubscribe(),this._effectRef?.destroy(),this._letterKeyStream.complete(),this.tabOut.complete(),this.change.complete(),this._pressedLetters=[]}_setActiveItemByDelta(ce){this._wrap?this._setActiveInWrapMode(ce):this._setActiveInDefaultMode(ce)}_setActiveInWrapMode(ce){const Z=this._getItemsArray();for(let Re=1;Re<=Z.length;Re++){const Pe=(this._activeItemIndex+ce*Re+Z.length)%Z.length;if(!this._skipPredicateFn(Z[Pe]))return void this.setActiveItem(Pe)}}_setActiveInDefaultMode(ce){this._setActiveItemByIndex(this._activeItemIndex+ce,ce)}_setActiveItemByIndex(ce,Z){const Re=this._getItemsArray();if(Re[ce]){for(;this._skipPredicateFn(Re[ce]);)if(!Re[ce+=Z])return;this.setActiveItem(ce)}}_getItemsArray(){return(0,t.Hps)(this._items)?this._items():this._items instanceof t.rOR?this._items.toArray():this._items}_itemsChanged(ce){if(this._activeItem){const Z=ce.indexOf(this._activeItem);Z>-1&&Z!==this._activeItemIndex&&(this._activeItemIndex=Z)}}}class C extends d{setActiveItem(ce){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(ce),this.activeItem&&this.activeItem.setActiveStyles()}}class A extends d{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(ce){return this._origin=ce,this}setActiveItem(ce){super.setActiveItem(ce),this.activeItem&&this.activeItem.focus(this._origin)}}let _=(()=>{class Te{constructor(Z){this._platform=Z}isDisabled(Z){return Z.hasAttribute("disabled")}isVisible(Z){return function b(Te){return!!(Te.offsetWidth||Te.offsetHeight||"function"==typeof Te.getClientRects&&Te.getClientRects().length)}(Z)&&"visible"===getComputedStyle(Z).visibility}isTabbable(Z){if(!this._platform.isBrowser)return!1;const Re=function a(Te){try{return Te.frameElement}catch{return null}}(function se(Te){return Te.ownerDocument&&Te.ownerDocument.defaultView||window}(Z));if(Re&&(-1===We(Re)||!this.isVisible(Re)))return!1;let Pe=Z.nodeName.toLowerCase(),pt=We(Z);return Z.hasAttribute("contenteditable")?-1!==pt:!("iframe"===Pe||"object"===Pe||this._platform.WEBKIT&&this._platform.IOS&&!function oe(Te){let ce=Te.nodeName.toLowerCase(),Z="input"===ce&&Te.type;return"text"===Z||"password"===Z||"select"===ce||"textarea"===ce}(Z))&&("audio"===Pe?!!Z.hasAttribute("controls")&&-1!==pt:"video"===Pe?-1!==pt&&(null!==pt||this._platform.FIREFOX||Z.hasAttribute("controls")):Z.tabIndex>=0)}isFocusable(Z,Re){return function X(Te){return!function N(Te){return function pe(Te){return"input"==Te.nodeName.toLowerCase()}(Te)&&"hidden"==Te.type}(Te)&&(function z(Te){let ce=Te.nodeName.toLowerCase();return"input"===ce||"select"===ce||"button"===ce||"textarea"===ce}(Te)||function q(Te){return function ze(Te){return"a"==Te.nodeName.toLowerCase()}(Te)&&Te.hasAttribute("href")}(Te)||Te.hasAttribute("contenteditable")||Xe(Te))}(Z)&&!this.isDisabled(Z)&&(Re?.ignoreVisibility||this.isVisible(Z))}static{this.\u0275fac=function(Re){return new(Re||Te)(t.KVO(x.OD))}}static{this.\u0275prov=t.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}}return Te})();function Xe(Te){if(!Te.hasAttribute("tabindex")||void 0===Te.tabIndex)return!1;let ce=Te.getAttribute("tabindex");return!(!ce||isNaN(parseInt(ce,10)))}function We(Te){if(!Xe(Te))return null;const ce=parseInt(Te.getAttribute("tabindex")||"",10);return isNaN(ce)?-1:ce}class ae{get enabled(){return this._enabled}set enabled(ce){this._enabled=ce,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ce,this._startAnchor),this._toggleAnchorTabIndex(ce,this._endAnchor))}constructor(ce,Z,Re,Pe,pt=!1){this._element=ce,this._checker=Z,this._ngZone=Re,this._document=Pe,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,pt||this.attachAnchors()}destroy(){const ce=this._startAnchor,Z=this._endAnchor;ce&&(ce.removeEventListener("focus",this.startAnchorListener),ce.remove()),Z&&(Z.removeEventListener("focus",this.endAnchorListener),Z.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(ce){return new Promise(Z=>{this._executeOnStable(()=>Z(this.focusInitialElement(ce)))})}focusFirstTabbableElementWhenReady(ce){return new Promise(Z=>{this._executeOnStable(()=>Z(this.focusFirstTabbableElement(ce)))})}focusLastTabbableElementWhenReady(ce){return new Promise(Z=>{this._executeOnStable(()=>Z(this.focusLastTabbableElement(ce)))})}_getRegionBoundary(ce){const Z=this._element.querySelectorAll(`[cdk-focus-region-${ce}], [cdkFocusRegion${ce}], [cdk-focus-${ce}]`);return"start"==ce?Z.length?Z[0]:this._getFirstTabbableElement(this._element):Z.length?Z[Z.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(ce){const Z=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(Z){if(!this._checker.isFocusable(Z)){const Re=this._getFirstTabbableElement(Z);return Re?.focus(ce),!!Re}return Z.focus(ce),!0}return this.focusFirstTabbableElement(ce)}focusFirstTabbableElement(ce){const Z=this._getRegionBoundary("start");return Z&&Z.focus(ce),!!Z}focusLastTabbableElement(ce){const Z=this._getRegionBoundary("end");return Z&&Z.focus(ce),!!Z}hasAttached(){return this._hasAttached}_getFirstTabbableElement(ce){if(this._checker.isFocusable(ce)&&this._checker.isTabbable(ce))return ce;const Z=ce.children;for(let Re=0;Re=0;Re--){const Pe=Z[Re].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(Z[Re]):null;if(Pe)return Pe}return null}_createAnchor(){const ce=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,ce),ce.classList.add("cdk-visually-hidden"),ce.classList.add("cdk-focus-trap-anchor"),ce.setAttribute("aria-hidden","true"),ce}_toggleAnchorTabIndex(ce,Z){ce?Z.setAttribute("tabindex","0"):Z.removeAttribute("tabindex")}toggleAnchors(ce){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ce,this._startAnchor),this._toggleAnchorTabIndex(ce,this._endAnchor))}_executeOnStable(ce){this._ngZone.isStable?ce():this._ngZone.onStable.pipe((0,I.s)(1)).subscribe(ce)}}let he=(()=>{class Te{constructor(Z,Re,Pe){this._checker=Z,this._ngZone=Re,this._document=Pe}create(Z,Re=!1){return new ae(Z,this._checker,this._ngZone,this._document,Re)}static{this.\u0275fac=function(Re){return new(Re||Te)(t.KVO(_),t.KVO(t.SKi),t.KVO(e.qQ))}}static{this.\u0275prov=t.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}}return Te})(),Ie=(()=>{class Te{get enabled(){return this.focusTrap?.enabled||!1}set enabled(Z){this.focusTrap&&(this.focusTrap.enabled=Z)}constructor(Z,Re,Pe){this._elementRef=Z,this._focusTrapFactory=Re,this._previouslyFocusedElement=null,(0,t.WQX)(x.OD).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(Z){const Re=Z.autoCapture;Re&&!Re.firstChange&&this.autoCapture&&this.focusTrap?.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,x.vc)(),this.focusTrap?.focusInitialElementWhenReady()}static{this.\u0275fac=function(Re){return new(Re||Te)(t.rXU(t.aKT),t.rXU(he),t.rXU(e.qQ))}}static{this.\u0275dir=t.FsC({type:Te,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[2,"cdkTrapFocus","enabled",t.L39],autoCapture:[2,"cdkTrapFocusAutoCapture","autoCapture",t.L39]},exportAs:["cdkTrapFocus"],standalone:!0,features:[t.GFd,t.OA$]})}}return Te})();function Ct(Te){return 0===Te.buttons||0===Te.detail}function ct(Te){const ce=Te.touches&&Te.touches[0]||Te.changedTouches&&Te.changedTouches[0];return!(!ce||-1!==ce.identifier||null!=ce.radiusX&&1!==ce.radiusX||null!=ce.radiusY&&1!==ce.radiusY)}const dt=new t.nKC("cdk-input-modality-detector-options"),Yt={ignoreKeys:[R.A$,R.W3,R.eg,R.Ge,R.FX]},_e=(0,x.BQ)({passive:!0,capture:!0});let we=(()=>{class Te{get mostRecentModality(){return this._modality.value}constructor(Z,Re,Pe,pt){this._platform=Z,this._mostRecentTarget=null,this._modality=new w.t(null),this._lastTouchMs=0,this._onKeydown=Ke=>{this._options?.ignoreKeys?.some(Fe=>Fe===Ke.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,x.Fb)(Ke))},this._onMousedown=Ke=>{Date.now()-this._lastTouchMs<650||(this._modality.next(Ct(Ke)?"keyboard":"mouse"),this._mostRecentTarget=(0,x.Fb)(Ke))},this._onTouchstart=Ke=>{ct(Ke)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,x.Fb)(Ke))},this._options={...Yt,...pt},this.modalityDetected=this._modality.pipe((0,V.i)(1)),this.modalityChanged=this.modalityDetected.pipe((0,j.F)()),Z.isBrowser&&Re.runOutsideAngular(()=>{Pe.addEventListener("keydown",this._onKeydown,_e),Pe.addEventListener("mousedown",this._onMousedown,_e),Pe.addEventListener("touchstart",this._onTouchstart,_e)})}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,_e),document.removeEventListener("mousedown",this._onMousedown,_e),document.removeEventListener("touchstart",this._onTouchstart,_e))}static{this.\u0275fac=function(Re){return new(Re||Te)(t.KVO(x.OD),t.KVO(t.SKi),t.KVO(e.qQ),t.KVO(dt,8))}}static{this.\u0275prov=t.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}}return Te})();const Ue=new t.nKC("liveAnnouncerElement",{providedIn:"root",factory:function je(){return null}}),vt=new t.nKC("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let $e=0,nt=(()=>{class Te{constructor(Z,Re,Pe,pt){this._ngZone=Re,this._defaultOptions=pt,this._document=Pe,this._liveElement=Z||this._createLiveElement()}announce(Z,...Re){const Pe=this._defaultOptions;let pt,Ke;return 1===Re.length&&"number"==typeof Re[0]?Ke=Re[0]:[pt,Ke]=Re,this.clear(),clearTimeout(this._previousTimeout),pt||(pt=Pe&&Pe.politeness?Pe.politeness:"polite"),null==Ke&&Pe&&(Ke=Pe.duration),this._liveElement.setAttribute("aria-live",pt),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(Fe=>this._currentResolve=Fe)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=Z,"number"==typeof Ke&&(this._previousTimeout=setTimeout(()=>this.clear(),Ke)),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 Z="cdk-live-announcer-element",Re=this._document.getElementsByClassName(Z),Pe=this._document.createElement("div");for(let pt=0;pt .cdk-overlay-container [aria-modal="true"]');for(let Pe=0;Pe{class Te{constructor(Z,Re,Pe,pt,Ke){this._ngZone=Z,this._platform=Re,this._inputModalityDetector=Pe,this._origin=null,this._windowFocused=!1,this._originFromTouchInteraction=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._rootNodeFocusListenerCount=new Map,this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=window.setTimeout(()=>this._windowFocused=!1)},this._stopInputModalityDetector=new D.B,this._rootNodeFocusAndBlurListener=Fe=>{for(let qe=(0,x.Fb)(Fe);qe;qe=qe.parentElement)"focus"===Fe.type?this._onFocus(Fe,qe):this._onBlur(Fe,qe)},this._document=pt,this._detectionMode=Ke?.detectionMode||Nt.IMMEDIATE}monitor(Z,Re=!1){const Pe=(0,Q.i8)(Z);if(!this._platform.isBrowser||1!==Pe.nodeType)return(0,f.of)();const pt=(0,x.KT)(Pe)||this._getDocument(),Ke=this._elementInfo.get(Pe);if(Ke)return Re&&(Ke.checkChildren=!0),Ke.subject;const Fe={checkChildren:Re,subject:new D.B,rootNode:pt};return this._elementInfo.set(Pe,Fe),this._registerGlobalListeners(Fe),Fe.subject}stopMonitoring(Z){const Re=(0,Q.i8)(Z),Pe=this._elementInfo.get(Re);Pe&&(Pe.subject.complete(),this._setClasses(Re),this._elementInfo.delete(Re),this._removeGlobalListeners(Pe))}focusVia(Z,Re,Pe){const pt=(0,Q.i8)(Z);pt===this._getDocument().activeElement?this._getClosestElementsInfo(pt).forEach(([Fe,Ge])=>this._originChanged(Fe,Re,Ge)):(this._setOrigin(Re),"function"==typeof pt.focus&&pt.focus(Pe))}ngOnDestroy(){this._elementInfo.forEach((Z,Re)=>this.stopMonitoring(Re))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(Z){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(Z)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:Z&&this._isLastInteractionFromInputLabel(Z)?"mouse":"program"}_shouldBeAttributedToTouch(Z){return this._detectionMode===Nt.EVENTUAL||!!Z?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(Z,Re){Z.classList.toggle("cdk-focused",!!Re),Z.classList.toggle("cdk-touch-focused","touch"===Re),Z.classList.toggle("cdk-keyboard-focused","keyboard"===Re),Z.classList.toggle("cdk-mouse-focused","mouse"===Re),Z.classList.toggle("cdk-program-focused","program"===Re)}_setOrigin(Z,Re=!1){this._ngZone.runOutsideAngular(()=>{this._origin=Z,this._originFromTouchInteraction="touch"===Z&&Re,this._detectionMode===Nt.IMMEDIATE&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(Z,Re){const Pe=this._elementInfo.get(Re),pt=(0,x.Fb)(Z);!Pe||!Pe.checkChildren&&Re!==pt||this._originChanged(Re,this._getFocusOrigin(pt),Pe)}_onBlur(Z,Re){const Pe=this._elementInfo.get(Re);!Pe||Pe.checkChildren&&Z.relatedTarget instanceof Node&&Re.contains(Z.relatedTarget)||(this._setClasses(Re),this._emitOrigin(Pe,null))}_emitOrigin(Z,Re){Z.subject.observers.length&&this._ngZone.run(()=>Z.subject.next(Re))}_registerGlobalListeners(Z){if(!this._platform.isBrowser)return;const Re=Z.rootNode,Pe=this._rootNodeFocusListenerCount.get(Re)||0;Pe||this._ngZone.runOutsideAngular(()=>{Re.addEventListener("focus",this._rootNodeFocusAndBlurListener,jt),Re.addEventListener("blur",this._rootNodeFocusAndBlurListener,jt)}),this._rootNodeFocusListenerCount.set(Re,Pe+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,Y.Q)(this._stopInputModalityDetector)).subscribe(pt=>{this._setOrigin(pt,!0)}))}_removeGlobalListeners(Z){const Re=Z.rootNode;if(this._rootNodeFocusListenerCount.has(Re)){const Pe=this._rootNodeFocusListenerCount.get(Re);Pe>1?this._rootNodeFocusListenerCount.set(Re,Pe-1):(Re.removeEventListener("focus",this._rootNodeFocusAndBlurListener,jt),Re.removeEventListener("blur",this._rootNodeFocusAndBlurListener,jt),this._rootNodeFocusListenerCount.delete(Re))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(Z,Re,Pe){this._setClasses(Z,Re),this._emitOrigin(Pe,Re),this._lastFocusOrigin=Re}_getClosestElementsInfo(Z){const Re=[];return this._elementInfo.forEach((Pe,pt)=>{(pt===Z||Pe.checkChildren&&pt.contains(Z))&&Re.push([pt,Pe])}),Re}_isLastInteractionFromInputLabel(Z){const{_mostRecentTarget:Re,mostRecentModality:Pe}=this._inputModalityDetector;if("mouse"!==Pe||!Re||Re===Z||"INPUT"!==Z.nodeName&&"TEXTAREA"!==Z.nodeName||Z.disabled)return!1;const pt=Z.labels;if(pt)for(let Ke=0;Ke{class Te{constructor(Z,Re){this._elementRef=Z,this._focusMonitor=Re,this._focusOrigin=null,this.cdkFocusChange=new t.bkB}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const Z=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(Z,1===Z.nodeType&&Z.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(Re=>{this._focusOrigin=Re,this.cdkFocusChange.emit(Re)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static{this.\u0275fac=function(Re){return new(Re||Te)(t.rXU(t.aKT),t.rXU(Je))}}static{this.\u0275dir=t.FsC({type:Te,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"],standalone:!0})}}return Te})();var Ae=function(Te){return Te[Te.NONE=0]="NONE",Te[Te.BLACK_ON_WHITE=1]="BLACK_ON_WHITE",Te[Te.WHITE_ON_BLACK=2]="WHITE_ON_BLACK",Te}(Ae||{});const It="cdk-high-contrast-black-on-white",Qt="cdk-high-contrast-white-on-black",Tt="cdk-high-contrast-active";let xt=(()=>{class Te{constructor(Z,Re){this._platform=Z,this._document=Re,this._breakpointSubscription=(0,t.WQX)(J.QP).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return Ae.NONE;const Z=this._document.createElement("div");Z.style.backgroundColor="rgb(1,2,3)",Z.style.position="absolute",this._document.body.appendChild(Z);const Re=this._document.defaultView||window,Pe=Re&&Re.getComputedStyle?Re.getComputedStyle(Z):null,pt=(Pe&&Pe.backgroundColor||"").replace(/ /g,"");switch(Z.remove(),pt){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return Ae.WHITE_ON_BLACK;case"rgb(255,255,255)":case"rgb(255,250,239)":return Ae.BLACK_ON_WHITE}return Ae.NONE}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const Z=this._document.body.classList;Z.remove(Tt,It,Qt),this._hasCheckedHighContrastMode=!0;const Re=this.getHighContrastMode();Re===Ae.BLACK_ON_WHITE?Z.add(Tt,It):Re===Ae.WHITE_ON_BLACK&&Z.add(Tt,Qt)}}static{this.\u0275fac=function(Re){return new(Re||Te)(t.KVO(x.OD),t.KVO(e.qQ))}}static{this.\u0275prov=t.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}}return Te})(),Se=(()=>{class Te{constructor(Z){Z._applyBodyHighContrastModeCssClasses()}static{this.\u0275fac=function(Re){return new(Re||Te)(t.KVO(xt))}}static{this.\u0275mod=t.$C({type:Te})}static{this.\u0275inj=t.G2t({imports:[W.w5]})}}return Te})()},8203:(Qe,te,g)=>{"use strict";g.d(te,{dS:()=>f,jI:()=>h});var e=g(4438),t=g(177);const x=new e.nKC("cdk-dir-doc",{providedIn:"root",factory:function D(){return(0,e.WQX)(t.qQ)}}),l=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let f=(()=>{class S{constructor(O){this.value="ltr",this.change=new e.bkB,O&&(this.value=function w(S){const y=S?.toLowerCase()||"";return"auto"===y&&typeof navigator<"u"&&navigator?.language?l.test(navigator.language)?"rtl":"ltr":"rtl"===y?"rtl":"ltr"}((O.body?O.body.dir:null)||(O.documentElement?O.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static{this.\u0275fac=function(I){return new(I||S)(e.KVO(x,8))}}static{this.\u0275prov=e.jDH({token:S,factory:S.\u0275fac,providedIn:"root"})}}return S})(),h=(()=>{class S{static{this.\u0275fac=function(I){return new(I||S)}}static{this.\u0275mod=e.$C({type:S})}static{this.\u0275inj=e.G2t({})}}return S})()},4085:(Qe,te,g)=>{"use strict";g.d(te,{FG:()=>l,OE:()=>x,a1:()=>w,cc:()=>R,he:()=>t,i8:()=>f,o1:()=>D});var e=g(4438);function t(h){return null!=h&&"false"!=`${h}`}function x(h,S=0){return D(h)?Number(h):S}function D(h){return!isNaN(parseFloat(h))&&!isNaN(Number(h))}function l(h){return Array.isArray(h)?h:[h]}function w(h){return null==h?"":"string"==typeof h?h:`${h}px`}function f(h){return h instanceof e.aKT?h.nativeElement:h}function R(h,S=/\s+/){const y=[];if(null!=h){const O=Array.isArray(h)?h:`${h}`.split(S);for(const I of O){const V=`${I}`.trim();V&&y.push(V)}}return y}},5024:(Qe,te,g)=>{"use strict";g.d(te,{CB:()=>I,DQ:()=>O,Q3:()=>h,qS:()=>w,sL:()=>S,xn:()=>y,y4:()=>f,zP:()=>j});var e=g(17),D=(g(4402),g(7673),g(1413)),l=g(4438);class w{}function f(Y){return Y&&"function"==typeof Y.connect&&!(Y instanceof e.G)}var h=function(Y){return Y[Y.REPLACED=0]="REPLACED",Y[Y.INSERTED=1]="INSERTED",Y[Y.MOVED=2]="MOVED",Y[Y.REMOVED=3]="REMOVED",Y}(h||{});const S=new l.nKC("_ViewRepeater");class y{applyChanges(W,Q,J,ie,ee){W.forEachOperation((fe,ne,Me)=>{let Ce,le;if(null==fe.previousIndex){const T=J(fe,ne,Me);Ce=Q.createEmbeddedView(T.templateRef,T.context,T.index),le=h.INSERTED}else null==Me?(Q.remove(ne),le=h.REMOVED):(Ce=Q.get(ne),Q.move(Ce,Me),le=h.MOVED);ee&&ee({context:Ce?.context,operation:le,record:fe})})}detach(){}}class O{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(W,Q,J,ie,ee){W.forEachOperation((fe,ne,Me)=>{let Ce,le;null==fe.previousIndex?(Ce=this._insertView(()=>J(fe,ne,Me),Me,Q,ie(fe)),le=Ce?h.INSERTED:h.REPLACED):null==Me?(this._detachAndCacheView(ne,Q),le=h.REMOVED):(Ce=this._moveView(ne,Me,Q,ie(fe)),le=h.MOVED),ee&&ee({context:Ce?.context,operation:le,record:fe})})}detach(){for(const W of this._viewCache)W.destroy();this._viewCache=[]}_insertView(W,Q,J,ie){const ee=this._insertViewFromCache(Q,J);if(ee)return void(ee.context.$implicit=ie);const fe=W();return J.createEmbeddedView(fe.templateRef,fe.context,fe.index)}_detachAndCacheView(W,Q){const J=Q.detach(W);this._maybeCacheView(J,Q)}_moveView(W,Q,J,ie){const ee=J.get(W);return J.move(ee,Q),ee.context.$implicit=ie,ee}_maybeCacheView(W,Q){if(this._viewCache.lengththis._markSelected(ee)):this._markSelected(Q[0]),this._selectedToEmit.length=0)}select(...W){this._verifyValueAssignment(W),W.forEach(J=>this._markSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}deselect(...W){this._verifyValueAssignment(W),W.forEach(J=>this._unmarkSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}setSelection(...W){this._verifyValueAssignment(W);const Q=this.selected,J=new Set(W);W.forEach(ee=>this._markSelected(ee)),Q.filter(ee=>!J.has(this._getConcreteValue(ee,J))).forEach(ee=>this._unmarkSelected(ee));const ie=this._hasQueuedChanges();return this._emitChangeEvent(),ie}toggle(W){return this.isSelected(W)?this.deselect(W):this.select(W)}clear(W=!0){this._unmarkAll();const Q=this._hasQueuedChanges();return W&&this._emitChangeEvent(),Q}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,Q){if(this.compareWith){Q=Q??this._selection;for(let J of Q)if(this.compareWith(W,J))return J;return W}return W}}let j=(()=>{class Y{constructor(){this._listeners=[]}notify(Q,J){for(let ie of this._listeners)ie(Q,J)}listen(Q){return this._listeners.push(Q),()=>{this._listeners=this._listeners.filter(J=>Q!==J)}}ngOnDestroy(){this._listeners=[]}static{this.\u0275fac=function(J){return new(J||Y)}}static{this.\u0275prov=l.jDH({token:Y,factory:Y.\u0275fac,providedIn:"root"})}}return Y})()},7336:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>N,A$:()=>R,FX:()=>w,Fm:()=>l,G_:()=>t,Ge:()=>vt,Kp:()=>j,LE:()=>J,SJ:()=>Me,UQ:()=>W,W3:()=>f,Z:()=>je,_f:()=>y,bn:()=>k,dB:()=>V,eg:()=>rt,f2:()=>Ce,i7:()=>Q,n6:()=>ie,rp:()=>ht,t6:()=>O,w_:()=>I,wn:()=>x,yZ:()=>Y});const t=8,x=9,l=13,w=16,f=17,R=18,y=27,O=32,I=33,V=34,j=35,Y=36,W=37,Q=38,J=39,ie=40,Me=46,Ce=48,k=57,N=65,je=90,vt=91,rt=224;function ht(ii,...di){return di.length?di.some(Gi=>ii[Gi]):ii.altKey||ii.shiftKey||ii.ctrlKey||ii.metaKey}},9327:(Qe,te,g)=>{"use strict";g.d(te,{QP:()=>ie,RH:()=>V,Rp:()=>fe});var e=g(4438),t=g(4085),x=g(1413),D=g(4572),l=g(8793),w=g(1985),f=g(6697),R=g(5245),h=g(152),S=g(6354),y=g(9172),O=g(6977),I=g(6860);let V=(()=>{class ne{static{this.\u0275fac=function(le){return new(le||ne)}}static{this.\u0275mod=e.$C({type:ne})}static{this.\u0275inj=e.G2t({})}}return ne})();const j=new Set;let Y,W=(()=>{class ne{constructor(Ce,le){this._platform=Ce,this._nonce=le,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):J}matchMedia(Ce){return(this._platform.WEBKIT||this._platform.BLINK)&&function Q(ne,Me){if(!j.has(ne))try{Y||(Y=document.createElement("style"),Me&&Y.setAttribute("nonce",Me),Y.setAttribute("type","text/css"),document.head.appendChild(Y)),Y.sheet&&(Y.sheet.insertRule(`@media ${ne} {body{ }}`,0),j.add(ne))}catch(Ce){console.error(Ce)}}(Ce,this._nonce),this._matchMedia(Ce)}static{this.\u0275fac=function(le){return new(le||ne)(e.KVO(I.OD),e.KVO(e.BIS,8))}}static{this.\u0275prov=e.jDH({token:ne,factory:ne.\u0275fac,providedIn:"root"})}}return ne})();function J(ne){return{matches:"all"===ne||""===ne,media:ne,addListener:()=>{},removeListener:()=>{}}}let ie=(()=>{class ne{constructor(Ce,le){this._mediaMatcher=Ce,this._zone=le,this._queries=new Map,this._destroySubject=new x.B}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(Ce){return ee((0,t.FG)(Ce)).some(T=>this._registerQuery(T).mql.matches)}observe(Ce){const T=ee((0,t.FG)(Ce)).map(c=>this._registerQuery(c).observable);let n=(0,D.z)(T);return n=(0,l.x)(n.pipe((0,f.s)(1)),n.pipe((0,R.i)(1),(0,h.B)(0))),n.pipe((0,S.T)(c=>{const m={matches:!1,breakpoints:{}};return c.forEach(({matches:d,query:C})=>{m.matches=m.matches||d,m.breakpoints[C]=d}),m}))}_registerQuery(Ce){if(this._queries.has(Ce))return this._queries.get(Ce);const le=this._mediaMatcher.matchMedia(Ce),n={observable:new w.c(c=>{const m=d=>this._zone.run(()=>c.next(d));return le.addListener(m),()=>{le.removeListener(m)}}).pipe((0,y.Z)(le),(0,S.T)(({matches:c})=>({query:Ce,matches:c})),(0,O.Q)(this._destroySubject)),mql:le};return this._queries.set(Ce,n),n}static{this.\u0275fac=function(le){return new(le||ne)(e.KVO(W),e.KVO(e.SKi))}}static{this.\u0275prov=e.jDH({token:ne,factory:ne.\u0275fac,providedIn:"root"})}}return ne})();function ee(ne){return ne.map(Me=>Me.split(",")).reduce((Me,Ce)=>Me.concat(Ce)).map(Me=>Me.trim())}const fe={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)"}},2318:(Qe,te,g)=>{"use strict";g.d(te,{Wv:()=>y,w5:()=>O});var e=g(4085),t=g(4438),x=g(1985),D=g(1413),l=g(6354),w=g(5964),f=g(152);let h=(()=>{class I{create(j){return typeof MutationObserver>"u"?null:new MutationObserver(j)}static{this.\u0275fac=function(Y){return new(Y||I)}}static{this.\u0275prov=t.jDH({token:I,factory:I.\u0275fac,providedIn:"root"})}}return I})(),S=(()=>{class I{constructor(j){this._mutationObserverFactory=j,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((j,Y)=>this._cleanupObserver(Y))}observe(j){const Y=(0,e.i8)(j);return new x.c(W=>{const J=this._observeElement(Y).pipe((0,l.T)(ie=>ie.filter(ee=>!function R(I){if("characterData"===I.type&&I.target instanceof Comment)return!0;if("childList"===I.type){for(let V=0;V!!ie.length)).subscribe(W);return()=>{J.unsubscribe(),this._unobserveElement(Y)}})}_observeElement(j){if(this._observedElements.has(j))this._observedElements.get(j).count++;else{const Y=new D.B,W=this._mutationObserverFactory.create(Q=>Y.next(Q));W&&W.observe(j,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(j,{observer:W,stream:Y,count:1})}return this._observedElements.get(j).stream}_unobserveElement(j){this._observedElements.has(j)&&(this._observedElements.get(j).count--,this._observedElements.get(j).count||this._cleanupObserver(j))}_cleanupObserver(j){if(this._observedElements.has(j)){const{observer:Y,stream:W}=this._observedElements.get(j);Y&&Y.disconnect(),W.complete(),this._observedElements.delete(j)}}static{this.\u0275fac=function(Y){return new(Y||I)(t.KVO(h))}}static{this.\u0275prov=t.jDH({token:I,factory:I.\u0275fac,providedIn:"root"})}}return I})(),y=(()=>{class I{get disabled(){return this._disabled}set disabled(j){this._disabled=j,this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(j){this._debounce=(0,e.OE)(j),this._subscribe()}constructor(j,Y,W){this._contentObserver=j,this._elementRef=Y,this._ngZone=W,this.event=new t.bkB,this._disabled=!1,this._currentSubscription=null}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const j=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?j.pipe((0,f.B)(this.debounce)):j).subscribe(this.event)})}_unsubscribe(){this._currentSubscription?.unsubscribe()}static{this.\u0275fac=function(Y){return new(Y||I)(t.rXU(S),t.rXU(t.aKT),t.rXU(t.SKi))}}static{this.\u0275dir=t.FsC({type:I,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[2,"cdkObserveContentDisabled","disabled",t.L39],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"],standalone:!0,features:[t.GFd]})}}return I})(),O=(()=>{class I{static{this.\u0275fac=function(Y){return new(Y||I)}}static{this.\u0275mod=t.$C({type:I})}static{this.\u0275inj=t.G2t({providers:[h]})}}return I})()},6969:(Qe,te,g)=>{"use strict";g.d(te,{WB:()=>Be,$Q:()=>ue,rW:()=>q,hJ:()=>st,rR:()=>T,Sf:()=>a,z_:()=>dt,yY:()=>b});var e=g(5542),t=g(177),x=g(4438),D=g(4085),l=g(6860),w=g(5964),f=g(6697),R=g(6977),h=g(9974),S=g(4360),O=g(8203),I=g(6939),V=g(1413),j=g(8359),Y=g(7786),W=g(7336);const Q=(0,l.CZ)();class J{constructor(_e,we){this._viewportRuler=_e,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=we}attach(){}enable(){if(this._canBeEnabled()){const _e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=_e.style.left||"",this._previousHTMLStyles.top=_e.style.top||"",_e.style.left=(0,D.a1)(-this._previousScrollPosition.left),_e.style.top=(0,D.a1)(-this._previousScrollPosition.top),_e.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const _e=this._document.documentElement,Ue=_e.style,je=this._document.body.style,vt=Ue.scrollBehavior||"",$e=je.scrollBehavior||"";this._isEnabled=!1,Ue.left=this._previousHTMLStyles.left,Ue.top=this._previousHTMLStyles.top,_e.classList.remove("cdk-global-scrollblock"),Q&&(Ue.scrollBehavior=je.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),Q&&(Ue.scrollBehavior=vt,je.scrollBehavior=$e)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const we=this._document.body,Ue=this._viewportRuler.getViewportSize();return we.scrollHeight>Ue.height||we.scrollWidth>Ue.width}}class ee{constructor(_e,we,Ue,je){this._scrollDispatcher=_e,this._ngZone=we,this._viewportRuler=Ue,this._config=je,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(_e){this._overlayRef=_e}enable(){if(this._scrollSubscription)return;const _e=this._scrollDispatcher.scrolled(0).pipe((0,w.p)(we=>!we||!this._overlayRef.overlayElement.contains(we.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=_e.subscribe(()=>{const we=this._viewportRuler.getViewportScrollPosition().top;Math.abs(we-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=_e.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class fe{enable(){}disable(){}attach(){}}function ne(ve,_e){return _e.some(we=>ve.bottomwe.bottom||ve.rightwe.right)}function Me(ve,_e){return _e.some(we=>ve.topwe.bottom||ve.leftwe.right)}class Ce{constructor(_e,we,Ue,je){this._scrollDispatcher=_e,this._viewportRuler=we,this._ngZone=Ue,this._config=je,this._scrollSubscription=null}attach(_e){this._overlayRef=_e}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 we=this._overlayRef.overlayElement.getBoundingClientRect(),{width:Ue,height:je}=this._viewportRuler.getViewportSize();ne(we,[{width:Ue,height:je,bottom:je,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 le=(()=>{class ve{constructor(we,Ue,je,vt){this._scrollDispatcher=we,this._viewportRuler=Ue,this._ngZone=je,this.noop=()=>new fe,this.close=$e=>new ee(this._scrollDispatcher,this._ngZone,this._viewportRuler,$e),this.block=()=>new J(this._viewportRuler,this._document),this.reposition=$e=>new Ce(this._scrollDispatcher,this._viewportRuler,this._ngZone,$e),this._document=vt}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.KVO(e.R),x.KVO(e.Xj),x.KVO(x.SKi),x.KVO(t.qQ))}}static{this.\u0275prov=x.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}}return ve})();class T{constructor(_e){if(this.scrollStrategy=new fe,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,_e){const we=Object.keys(_e);for(const Ue of we)void 0!==_e[Ue]&&(this[Ue]=_e[Ue])}}}class m{constructor(_e,we){this.connectionPair=_e,this.scrollableViewProperties=we}}let A=(()=>{class ve{constructor(we){this._attachedOverlays=[],this._document=we}ngOnDestroy(){this.detach()}add(we){this.remove(we),this._attachedOverlays.push(we)}remove(we){const Ue=this._attachedOverlays.indexOf(we);Ue>-1&&this._attachedOverlays.splice(Ue,1),0===this._attachedOverlays.length&&this.detach()}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.KVO(t.qQ))}}static{this.\u0275prov=x.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}}return ve})(),k=(()=>{class ve extends A{constructor(we,Ue){super(we),this._ngZone=Ue,this._keydownListener=je=>{const vt=this._attachedOverlays;for(let $e=vt.length-1;$e>-1;$e--)if(vt[$e]._keydownEvents.observers.length>0){const nt=vt[$e]._keydownEvents;this._ngZone?this._ngZone.run(()=>nt.next(je)):nt.next(je);break}}}add(we){super.add(we),this._isAttached||(this._ngZone?this._ngZone.runOutsideAngular(()=>this._document.body.addEventListener("keydown",this._keydownListener)):this._document.body.addEventListener("keydown",this._keydownListener),this._isAttached=!0)}detach(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener),this._isAttached=!1)}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.KVO(t.qQ),x.KVO(x.SKi,8))}}static{this.\u0275prov=x.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}}return ve})(),_=(()=>{class ve extends A{constructor(we,Ue,je){super(we),this._platform=Ue,this._ngZone=je,this._cursorStyleIsSet=!1,this._pointerDownListener=vt=>{this._pointerDownEventTarget=(0,l.Fb)(vt)},this._clickListener=vt=>{const $e=(0,l.Fb)(vt),nt="click"===vt.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:$e;this._pointerDownEventTarget=null;const qt=this._attachedOverlays.slice();for(let Nt=qt.length-1;Nt>-1;Nt--){const yt=qt[Nt];if(yt._outsidePointerEvents.observers.length<1||!yt.hasAttached())continue;if(yt.overlayElement.contains($e)||yt.overlayElement.contains(nt))break;const jt=yt._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>jt.next(vt)):jt.next(vt)}}}add(we){if(super.add(we),!this._isAttached){const Ue=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(Ue)):this._addEventListeners(Ue),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=Ue.style.cursor,Ue.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const we=this._document.body;we.removeEventListener("pointerdown",this._pointerDownListener,!0),we.removeEventListener("click",this._clickListener,!0),we.removeEventListener("auxclick",this._clickListener,!0),we.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(we.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(we){we.addEventListener("pointerdown",this._pointerDownListener,!0),we.addEventListener("click",this._clickListener,!0),we.addEventListener("auxclick",this._clickListener,!0),we.addEventListener("contextmenu",this._clickListener,!0)}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.KVO(t.qQ),x.KVO(l.OD),x.KVO(x.SKi,8))}}static{this.\u0275prov=x.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}}return ve})(),a=(()=>{class ve{constructor(we,Ue){this._platform=Ue,this._document=we}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const we="cdk-overlay-container";if(this._platform.isBrowser||(0,l.v8)()){const je=this._document.querySelectorAll(`.${we}[platform="server"], .${we}[platform="test"]`);for(let vt=0;vtthis._backdropClick.next(jt),this._backdropTransitionendHandler=jt=>{this._disposeBackdrop(jt.target)},this._keydownEvents=new V.B,this._outsidePointerEvents=new V.B,je.scrollStrategy&&(this._scrollStrategy=je.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=je.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(_e){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const we=this._portalOutlet.attach(_e);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,f.s)(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof we?.onDestroy&&we.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),we}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const _e=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),_e}dispose(){const _e=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._disposeBackdrop(this._backdropElement),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._previousHostParent=this._pane=this._host=null,_e&&this._detachments.next(),this._detachments.complete()}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(_e){_e!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=_e,this.hasAttached()&&(_e.attach(this),this.updatePosition()))}updateSize(_e){this._config={...this._config,..._e},this._updateElementSize()}setDirection(_e){this._config={...this._config,direction:_e},this._updateElementDirection()}addPanelClass(_e){this._pane&&this._toggleClasses(this._pane,_e,!0)}removePanelClass(_e){this._pane&&this._toggleClasses(this._pane,_e,!1)}getDirection(){const _e=this._config.direction;return _e?"string"==typeof _e?_e:_e.value:"ltr"}updateScrollStrategy(_e){_e!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=_e,this.hasAttached()&&(_e.attach(this),_e.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const _e=this._pane.style;_e.width=(0,D.a1)(this._config.width),_e.height=(0,D.a1)(this._config.height),_e.minWidth=(0,D.a1)(this._config.minWidth),_e.minHeight=(0,D.a1)(this._config.minHeight),_e.maxWidth=(0,D.a1)(this._config.maxWidth),_e.maxHeight=(0,D.a1)(this._config.maxHeight)}_togglePointerEvents(_e){this._pane.style.pointerEvents=_e?"":"none"}_attachBackdrop(){const _e="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._animationsDisabled&&this._backdropElement.classList.add("cdk-overlay-backdrop-noop-animation"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",this._backdropClickHandler),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(_e)})}):this._backdropElement.classList.add(_e)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const _e=this._backdropElement;if(_e){if(this._animationsDisabled)return void this._disposeBackdrop(_e);_e.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{_e.addEventListener("transitionend",this._backdropTransitionendHandler)}),_e.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(_e)},500))}}_toggleClasses(_e,we,Ue){const je=(0,D.FG)(we||[]).filter(vt=>!!vt);je.length&&(Ue?_e.classList.add(...je):_e.classList.remove(...je))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const _e=this._ngZone.onStable.pipe((0,R.Q)((0,Y.h)(this._attachments,this._detachments))).subscribe(()=>{(!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()),_e.unsubscribe())})})}_disposeScrollStrategy(){const _e=this._scrollStrategy;_e&&(_e.disable(),_e.detach&&_e.detach())}_disposeBackdrop(_e){_e&&(_e.removeEventListener("click",this._backdropClickHandler),_e.removeEventListener("transitionend",this._backdropTransitionendHandler),_e.remove(),this._backdropElement===_e&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}const z="cdk-overlay-connected-position-bounding-box",N=/([A-Za-z%]+)$/;class q{get positions(){return this._preferredPositions}constructor(_e,we,Ue,je,vt){this._viewportRuler=we,this._document=Ue,this._platform=je,this._overlayContainer=vt,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new V.B,this._resizeSubscription=j.yU.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges,this.setOrigin(_e)}attach(_e){this._validatePositions(),_e.hostElement.classList.add(z),this._overlayRef=_e,this._boundingBox=_e.hostElement,this._pane=_e.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 _e=this._originRect,we=this._overlayRect,Ue=this._viewportRect,je=this._containerRect,vt=[];let $e;for(let nt of this._preferredPositions){let qt=this._getOriginPoint(_e,je,nt),Nt=this._getOverlayPoint(qt,we,nt),yt=this._getOverlayFit(Nt,we,Ue,nt);if(yt.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(nt,qt);this._canFitWithFlexibleDimensions(yt,Nt,Ue)?vt.push({position:nt,origin:qt,overlayRect:we,boundingBoxRect:this._calculateBoundingBoxRect(qt,nt)}):(!$e||$e.overlayFit.visibleAreaqt&&(qt=yt,nt=Nt)}return this._isPushed=!1,void this._applyPosition(nt.position,nt.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition($e.position,$e.originPoint);this._applyPosition($e.position,$e.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&pe(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(z),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const _e=this._lastPosition;if(_e){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const we=this._getOriginPoint(this._originRect,this._containerRect,_e);this._applyPosition(_e,we)}else this.apply()}withScrollableContainers(_e){return this._scrollables=_e,this}withPositions(_e){return this._preferredPositions=_e,-1===_e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(_e){return this._viewportMargin=_e,this}withFlexibleDimensions(_e=!0){return this._hasFlexibleDimensions=_e,this}withGrowAfterOpen(_e=!0){return this._growAfterOpen=_e,this}withPush(_e=!0){return this._canPush=_e,this}withLockedPosition(_e=!0){return this._positionLocked=_e,this}setOrigin(_e){return this._origin=_e,this}withDefaultOffsetX(_e){return this._offsetX=_e,this}withDefaultOffsetY(_e){return this._offsetY=_e,this}withTransformOriginOn(_e){return this._transformOriginSelector=_e,this}_getOriginPoint(_e,we,Ue){let je,vt;if("center"==Ue.originX)je=_e.left+_e.width/2;else{const $e=this._isRtl()?_e.right:_e.left,nt=this._isRtl()?_e.left:_e.right;je="start"==Ue.originX?$e:nt}return we.left<0&&(je-=we.left),vt="center"==Ue.originY?_e.top+_e.height/2:"top"==Ue.originY?_e.top:_e.bottom,we.top<0&&(vt-=we.top),{x:je,y:vt}}_getOverlayPoint(_e,we,Ue){let je,vt;return je="center"==Ue.overlayX?-we.width/2:"start"===Ue.overlayX?this._isRtl()?-we.width:0:this._isRtl()?0:-we.width,vt="center"==Ue.overlayY?-we.height/2:"top"==Ue.overlayY?0:-we.height,{x:_e.x+je,y:_e.y+vt}}_getOverlayFit(_e,we,Ue,je){const vt=Xe(we);let{x:$e,y:nt}=_e,qt=this._getOffset(je,"x"),Nt=this._getOffset(je,"y");qt&&($e+=qt),Nt&&(nt+=Nt);let Je=0-nt,et=nt+vt.height-Ue.height,Ae=this._subtractOverflows(vt.width,0-$e,$e+vt.width-Ue.width),It=this._subtractOverflows(vt.height,Je,et),Qt=Ae*It;return{visibleArea:Qt,isCompletelyWithinViewport:vt.width*vt.height===Qt,fitsInViewportVertically:It===vt.height,fitsInViewportHorizontally:Ae==vt.width}}_canFitWithFlexibleDimensions(_e,we,Ue){if(this._hasFlexibleDimensions){const je=Ue.bottom-we.y,vt=Ue.right-we.x,$e=ze(this._overlayRef.getConfig().minHeight),nt=ze(this._overlayRef.getConfig().minWidth);return(_e.fitsInViewportVertically||null!=$e&&$e<=je)&&(_e.fitsInViewportHorizontally||null!=nt&&nt<=vt)}return!1}_pushOverlayOnScreen(_e,we,Ue){if(this._previousPushAmount&&this._positionLocked)return{x:_e.x+this._previousPushAmount.x,y:_e.y+this._previousPushAmount.y};const je=Xe(we),vt=this._viewportRect,$e=Math.max(_e.x+je.width-vt.width,0),nt=Math.max(_e.y+je.height-vt.height,0),qt=Math.max(vt.top-Ue.top-_e.y,0),Nt=Math.max(vt.left-Ue.left-_e.x,0);let yt=0,jt=0;return yt=je.width<=vt.width?Nt||-$e:_e.xAe&&!this._isInitialRender&&!this._growAfterOpen&&($e=_e.y-Ae/2)}if("end"===we.overlayX&&!je||"start"===we.overlayX&&je)Je=Ue.width-_e.x+2*this._viewportMargin,yt=_e.x-this._viewportMargin;else if("start"===we.overlayX&&!je||"end"===we.overlayX&&je)jt=_e.x,yt=Ue.right-_e.x;else{const et=Math.min(Ue.right-_e.x+Ue.left,_e.x),Ae=this._lastBoundingBoxSize.width;yt=2*et,jt=_e.x-et,yt>Ae&&!this._isInitialRender&&!this._growAfterOpen&&(jt=_e.x-Ae/2)}return{top:$e,left:jt,bottom:nt,right:Je,width:yt,height:vt}}_setBoundingBoxStyles(_e,we){const Ue=this._calculateBoundingBoxRect(_e,we);!this._isInitialRender&&!this._growAfterOpen&&(Ue.height=Math.min(Ue.height,this._lastBoundingBoxSize.height),Ue.width=Math.min(Ue.width,this._lastBoundingBoxSize.width));const je={};if(this._hasExactPosition())je.top=je.left="0",je.bottom=je.right=je.maxHeight=je.maxWidth="",je.width=je.height="100%";else{const vt=this._overlayRef.getConfig().maxHeight,$e=this._overlayRef.getConfig().maxWidth;je.height=(0,D.a1)(Ue.height),je.top=(0,D.a1)(Ue.top),je.bottom=(0,D.a1)(Ue.bottom),je.width=(0,D.a1)(Ue.width),je.left=(0,D.a1)(Ue.left),je.right=(0,D.a1)(Ue.right),je.alignItems="center"===we.overlayX?"center":"end"===we.overlayX?"flex-end":"flex-start",je.justifyContent="center"===we.overlayY?"center":"bottom"===we.overlayY?"flex-end":"flex-start",vt&&(je.maxHeight=(0,D.a1)(vt)),$e&&(je.maxWidth=(0,D.a1)($e))}this._lastBoundingBoxSize=Ue,pe(this._boundingBox.style,je)}_resetBoundingBoxStyles(){pe(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){pe(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(_e,we){const Ue={},je=this._hasExactPosition(),vt=this._hasFlexibleDimensions,$e=this._overlayRef.getConfig();if(je){const yt=this._viewportRuler.getViewportScrollPosition();pe(Ue,this._getExactOverlayY(we,_e,yt)),pe(Ue,this._getExactOverlayX(we,_e,yt))}else Ue.position="static";let nt="",qt=this._getOffset(we,"x"),Nt=this._getOffset(we,"y");qt&&(nt+=`translateX(${qt}px) `),Nt&&(nt+=`translateY(${Nt}px)`),Ue.transform=nt.trim(),$e.maxHeight&&(je?Ue.maxHeight=(0,D.a1)($e.maxHeight):vt&&(Ue.maxHeight="")),$e.maxWidth&&(je?Ue.maxWidth=(0,D.a1)($e.maxWidth):vt&&(Ue.maxWidth="")),pe(this._pane.style,Ue)}_getExactOverlayY(_e,we,Ue){let je={top:"",bottom:""},vt=this._getOverlayPoint(we,this._overlayRect,_e);return this._isPushed&&(vt=this._pushOverlayOnScreen(vt,this._overlayRect,Ue)),"bottom"===_e.overlayY?je.bottom=this._document.documentElement.clientHeight-(vt.y+this._overlayRect.height)+"px":je.top=(0,D.a1)(vt.y),je}_getExactOverlayX(_e,we,Ue){let $e,je={left:"",right:""},vt=this._getOverlayPoint(we,this._overlayRect,_e);return this._isPushed&&(vt=this._pushOverlayOnScreen(vt,this._overlayRect,Ue)),$e=this._isRtl()?"end"===_e.overlayX?"left":"right":"end"===_e.overlayX?"right":"left","right"===$e?je.right=this._document.documentElement.clientWidth-(vt.x+this._overlayRect.width)+"px":je.left=(0,D.a1)(vt.x),je}_getScrollVisibility(){const _e=this._getOriginRect(),we=this._pane.getBoundingClientRect(),Ue=this._scrollables.map(je=>je.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Me(_e,Ue),isOriginOutsideView:ne(_e,Ue),isOverlayClipped:Me(we,Ue),isOverlayOutsideView:ne(we,Ue)}}_subtractOverflows(_e,...we){return we.reduce((Ue,je)=>Ue-Math.max(je,0),_e)}_getNarrowedViewportRect(){const _e=this._document.documentElement.clientWidth,we=this._document.documentElement.clientHeight,Ue=this._viewportRuler.getViewportScrollPosition();return{top:Ue.top+this._viewportMargin,left:Ue.left+this._viewportMargin,right:Ue.left+_e-this._viewportMargin,bottom:Ue.top+we-this._viewportMargin,width:_e-2*this._viewportMargin,height:we-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(_e,we){return"x"===we?null==_e.offsetX?this._offsetX:_e.offsetX:null==_e.offsetY?this._offsetY:_e.offsetY}_validatePositions(){}_addPanelClasses(_e){this._pane&&(0,D.FG)(_e).forEach(we=>{""!==we&&-1===this._appliedPanelClasses.indexOf(we)&&(this._appliedPanelClasses.push(we),this._pane.classList.add(we))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(_e=>{this._pane.classList.remove(_e)}),this._appliedPanelClasses=[])}_getOriginRect(){const _e=this._origin;if(_e instanceof x.aKT)return _e.nativeElement.getBoundingClientRect();if(_e instanceof Element)return _e.getBoundingClientRect();const we=_e.width||0,Ue=_e.height||0;return{top:_e.y,bottom:_e.y+Ue,left:_e.x,right:_e.x+we,height:Ue,width:we}}}function pe(ve,_e){for(let we in _e)_e.hasOwnProperty(we)&&(ve[we]=_e[we]);return ve}function ze(ve){if("number"!=typeof ve&&null!=ve){const[_e,we]=ve.split(N);return we&&"px"!==we?null:parseFloat(_e)}return ve||null}function Xe(ve){return{top:Math.floor(ve.top),right:Math.floor(ve.right),bottom:Math.floor(ve.bottom),left:Math.floor(ve.left),width:Math.floor(ve.width),height:Math.floor(ve.height)}}const se="cdk-global-overlay-wrapper";class ae{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._alignItems="",this._xPosition="",this._xOffset="",this._width="",this._height="",this._isDisposed=!1}attach(_e){const we=_e.getConfig();this._overlayRef=_e,this._width&&!we.width&&_e.updateSize({width:this._width}),this._height&&!we.height&&_e.updateSize({height:this._height}),_e.hostElement.classList.add(se),this._isDisposed=!1}top(_e=""){return this._bottomOffset="",this._topOffset=_e,this._alignItems="flex-start",this}left(_e=""){return this._xOffset=_e,this._xPosition="left",this}bottom(_e=""){return this._topOffset="",this._bottomOffset=_e,this._alignItems="flex-end",this}right(_e=""){return this._xOffset=_e,this._xPosition="right",this}start(_e=""){return this._xOffset=_e,this._xPosition="start",this}end(_e=""){return this._xOffset=_e,this._xPosition="end",this}width(_e=""){return this._overlayRef?this._overlayRef.updateSize({width:_e}):this._width=_e,this}height(_e=""){return this._overlayRef?this._overlayRef.updateSize({height:_e}):this._height=_e,this}centerHorizontally(_e=""){return this.left(_e),this._xPosition="center",this}centerVertically(_e=""){return this.top(_e),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const _e=this._overlayRef.overlayElement.style,we=this._overlayRef.hostElement.style,Ue=this._overlayRef.getConfig(),{width:je,height:vt,maxWidth:$e,maxHeight:nt}=Ue,qt=!("100%"!==je&&"100vw"!==je||$e&&"100%"!==$e&&"100vw"!==$e),Nt=!("100%"!==vt&&"100vh"!==vt||nt&&"100%"!==nt&&"100vh"!==nt),yt=this._xPosition,jt=this._xOffset,Je="rtl"===this._overlayRef.getConfig().direction;let et="",Ae="",It="";qt?It="flex-start":"center"===yt?(It="center",Je?Ae=jt:et=jt):Je?"left"===yt||"end"===yt?(It="flex-end",et=jt):("right"===yt||"start"===yt)&&(It="flex-start",Ae=jt):"left"===yt||"start"===yt?(It="flex-start",et=jt):("right"===yt||"end"===yt)&&(It="flex-end",Ae=jt),_e.position=this._cssPosition,_e.marginLeft=qt?"0":et,_e.marginTop=Nt?"0":this._topOffset,_e.marginBottom=this._bottomOffset,_e.marginRight=qt?"0":Ae,we.justifyContent=It,we.alignItems=Nt?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const _e=this._overlayRef.overlayElement.style,we=this._overlayRef.hostElement,Ue=we.style;we.classList.remove(se),Ue.justifyContent=Ue.alignItems=_e.marginTop=_e.marginBottom=_e.marginLeft=_e.marginRight=_e.position="",this._overlayRef=null,this._isDisposed=!0}}let he=(()=>{class ve{constructor(we,Ue,je,vt){this._viewportRuler=we,this._document=Ue,this._platform=je,this._overlayContainer=vt}global(){return new ae}flexibleConnectedTo(we){return new q(we,this._viewportRuler,this._document,this._platform,this._overlayContainer)}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.KVO(e.Xj),x.KVO(t.qQ),x.KVO(l.OD),x.KVO(a))}}static{this.\u0275prov=x.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}}return ve})(),Ie=0,st=(()=>{class ve{constructor(we,Ue,je,vt,$e,nt,qt,Nt,yt,jt,Je,et){this.scrollStrategies=we,this._overlayContainer=Ue,this._componentFactoryResolver=je,this._positionBuilder=vt,this._keyboardDispatcher=$e,this._injector=nt,this._ngZone=qt,this._document=Nt,this._directionality=yt,this._location=jt,this._outsideClickDispatcher=Je,this._animationsModuleType=et}create(we){const Ue=this._createHostElement(),je=this._createPaneElement(Ue),vt=this._createPortalOutlet(je),$e=new T(we);return $e.direction=$e.direction||this._directionality.value,new b(vt,Ue,je,$e,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher,"NoopAnimations"===this._animationsModuleType)}position(){return this._positionBuilder}_createPaneElement(we){const Ue=this._document.createElement("div");return Ue.id="cdk-overlay-"+Ie++,Ue.classList.add("cdk-overlay-pane"),we.appendChild(Ue),Ue}_createHostElement(){const we=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(we),we}_createPortalOutlet(we){return this._appRef||(this._appRef=this._injector.get(x.o8S)),new I.aI(we,this._componentFactoryResolver,this._appRef,this._injector,this._document)}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.KVO(le),x.KVO(a),x.KVO(x.OM3),x.KVO(he),x.KVO(k),x.KVO(x.zZn),x.KVO(x.SKi),x.KVO(t.qQ),x.KVO(O.dS),x.KVO(t.aZ),x.KVO(_),x.KVO(x.bc$,8))}}static{this.\u0275prov=x.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}}return ve})();const me=[{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"}],Ee=new x.nKC("cdk-connected-overlay-scroll-strategy",{providedIn:"root",factory:()=>{const ve=(0,x.WQX)(st);return()=>ve.scrollStrategies.reposition()}});let ue=(()=>{class ve{constructor(we){this.elementRef=we}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.rXU(x.aKT))}}static{this.\u0275dir=x.FsC({type:ve,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"],standalone:!0})}}return ve})(),Be=(()=>{class ve{get offsetX(){return this._offsetX}set offsetX(we){this._offsetX=we,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(we){this._offsetY=we,this._position&&this._updatePositionStrategy(this._position)}get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(we){this._disposeOnNavigation=we}constructor(we,Ue,je,vt,$e){this._overlay=we,this._dir=$e,this._backdropSubscription=j.yU.EMPTY,this._attachSubscription=j.yU.EMPTY,this._detachSubscription=j.yU.EMPTY,this._positionSubscription=j.yU.EMPTY,this._disposeOnNavigation=!1,this._ngZone=(0,x.WQX)(x.SKi),this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.hasBackdrop=!1,this.lockPosition=!1,this.flexibleDimensions=!1,this.growAfterOpen=!1,this.push=!1,this.backdropClick=new x.bkB,this.positionChange=new x.bkB,this.attach=new x.bkB,this.detach=new x.bkB,this.overlayKeydown=new x.bkB,this.overlayOutsideClick=new x.bkB,this._templatePortal=new I.VA(Ue,je),this._scrollStrategyFactory=vt,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&&this._overlayRef.dispose()}ngOnChanges(we){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),we.origin&&this.open&&this._position.apply()),we.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=me);const we=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=we.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=we.detachments().subscribe(()=>this.detach.emit()),we.keydownEvents().subscribe(Ue=>{this.overlayKeydown.next(Ue),Ue.keyCode===W._f&&!this.disableClose&&!(0,W.rp)(Ue)&&(Ue.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(Ue=>{const je=this._getOriginElement(),vt=(0,l.Fb)(Ue);(!je||je!==vt&&!je.contains(vt))&&this.overlayOutsideClick.next(Ue)})}_buildConfig(){const we=this._position=this.positionStrategy||this._createPositionStrategy(),Ue=new T({direction:this._dir,positionStrategy:we,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(we){const Ue=this.positions.map(je=>({originX:je.originX,originY:je.originY,overlayX:je.overlayX,overlayY:je.overlayY,offsetX:je.offsetX||this.offsetX,offsetY:je.offsetY||this.offsetY,panelClass:je.panelClass||void 0}));return we.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 we=this._overlay.position().flexibleConnectedTo(this._getOrigin());return this._updatePositionStrategy(we),we}_getOrigin(){return this.origin instanceof ue?this.origin.elementRef:this.origin}_getOriginElement(){return this.origin instanceof ue?this.origin.elementRef.nativeElement:this.origin instanceof x.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(we=>{this.backdropClick.emit(we)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function y(ve,_e=!1){return(0,h.N)((we,Ue)=>{let je=0;we.subscribe((0,S._)(Ue,vt=>{const $e=ve(vt,je++);($e||_e)&&Ue.next(vt),!$e&&Ue.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(we=>{this._ngZone.run(()=>this.positionChange.emit(we)),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}static{this.\u0275fac=function(Ue){return new(Ue||ve)(x.rXU(st),x.rXU(x.C4Q),x.rXU(x.c1b),x.rXU(Ee),x.rXU(O.dS,8))}}static{this.\u0275dir=x.FsC({type:ve,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",x.L39],lockPosition:[2,"cdkConnectedOverlayLockPosition","lockPosition",x.L39],flexibleDimensions:[2,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",x.L39],growAfterOpen:[2,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen",x.L39],push:[2,"cdkConnectedOverlayPush","push",x.L39],disposeOnNavigation:[2,"cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",x.L39]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],standalone:!0,features:[x.GFd,x.OA$]})}}return ve})();const ct={provide:Ee,deps:[st],useFactory:function Ct(ve){return()=>ve.scrollStrategies.reposition()}};let dt=(()=>{class ve{static{this.\u0275fac=function(Ue){return new(Ue||ve)}}static{this.\u0275mod=x.$C({type:ve})}static{this.\u0275inj=x.G2t({providers:[st,ct],imports:[O.jI,I.jc,e.E9,e.E9]})}}return ve})()},6860:(Qe,te,g)=>{"use strict";g.d(te,{BD:()=>Y,BQ:()=>y,CZ:()=>j,Fb:()=>ee,KT:()=>J,MU:()=>R,OD:()=>D,r5:()=>O,v8:()=>fe,vc:()=>ie});var e=g(4438),t=g(177);let x;try{x=typeof Intl<"u"&&Intl.v8BreakIterator}catch{x=!1}let w,D=(()=>{class ne{constructor(Ce){this._platformId=Ce,this.isBrowser=this._platformId?(0,t.UE)(this._platformId):"object"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!x)&&typeof CSS<"u"&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}static{this.\u0275fac=function(le){return new(le||ne)(e.KVO(e.Agw))}}static{this.\u0275prov=e.jDH({token:ne,factory:ne.\u0275fac,providedIn:"root"})}}return ne})();const f=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function R(){if(w)return w;if("object"!=typeof document||!document)return w=new Set(f),w;let ne=document.createElement("input");return w=new Set(f.filter(Me=>(ne.setAttribute("type",Me),ne.type===Me))),w}let h;function y(ne){return function S(){if(null==h&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>h=!0}))}finally{h=h||!1}return h}()?ne:!!ne.capture}var O=function(ne){return ne[ne.NORMAL=0]="NORMAL",ne[ne.NEGATED=1]="NEGATED",ne[ne.INVERTED=2]="INVERTED",ne}(O||{});let I,V,W;function j(){if(null==V){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return V=!1,V;if("scrollBehavior"in document.documentElement.style)V=!0;else{const ne=Element.prototype.scrollTo;V=!!ne&&!/\{\s*\[native code\]\s*\}/.test(ne.toString())}}return V}function Y(){if("object"!=typeof document||!document)return O.NORMAL;if(null==I){const ne=document.createElement("div"),Me=ne.style;ne.dir="rtl",Me.width="1px",Me.overflow="auto",Me.visibility="hidden",Me.pointerEvents="none",Me.position="absolute";const Ce=document.createElement("div"),le=Ce.style;le.width="2px",le.height="1px",ne.appendChild(Ce),document.body.appendChild(ne),I=O.NORMAL,0===ne.scrollLeft&&(ne.scrollLeft=1,I=0===ne.scrollLeft?O.NEGATED:O.INVERTED),ne.remove()}return I}function J(ne){if(function Q(){if(null==W){const ne=typeof document<"u"?document.head:null;W=!(!ne||!ne.createShadowRoot&&!ne.attachShadow)}return W}()){const Me=ne.getRootNode?ne.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&Me instanceof ShadowRoot)return Me}return null}function ie(){let ne=typeof document<"u"&&document?document.activeElement:null;for(;ne&&ne.shadowRoot;){const Me=ne.shadowRoot.activeElement;if(Me===ne)break;ne=Me}return ne}function ee(ne){return ne.composedPath?ne.composedPath()[0]:ne.target}function fe(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}},6939:(Qe,te,g)=>{"use strict";g.d(te,{A8:()=>S,I3:()=>J,VA:()=>y,aI:()=>j,bV:()=>W,jc:()=>ee,lb:()=>I});var e=g(4438),t=g(177);class h{attach(Me){return this._attachedHost=Me,Me.attach(this)}detach(){let Me=this._attachedHost;null!=Me&&(this._attachedHost=null,Me.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(Me){this._attachedHost=Me}}class S extends h{constructor(Me,Ce,le,T,n){super(),this.component=Me,this.viewContainerRef=Ce,this.injector=le,this.componentFactoryResolver=T,this.projectableNodes=n}}class y extends h{constructor(Me,Ce,le,T){super(),this.templateRef=Me,this.viewContainerRef=Ce,this.context=le,this.injector=T}get origin(){return this.templateRef.elementRef}attach(Me,Ce=this.context){return this.context=Ce,super.attach(Me)}detach(){return this.context=void 0,super.detach()}}class O extends h{constructor(Me){super(),this.element=Me instanceof e.aKT?Me.nativeElement:Me}}class I{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(Me){return Me instanceof S?(this._attachedPortal=Me,this.attachComponentPortal(Me)):Me instanceof y?(this._attachedPortal=Me,this.attachTemplatePortal(Me)):this.attachDomPortal&&Me instanceof O?(this._attachedPortal=Me,this.attachDomPortal(Me)):void 0}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(Me){this._disposeFn=Me}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class j extends I{constructor(Me,Ce,le,T,n){super(),this.outletElement=Me,this._componentFactoryResolver=Ce,this._appRef=le,this._defaultInjector=T,this.attachDomPortal=c=>{const m=c.element,d=this._document.createComment("dom-portal");m.parentNode.insertBefore(d,m),this.outletElement.appendChild(m),this._attachedPortal=c,super.setDisposeFn(()=>{d.parentNode&&d.parentNode.replaceChild(m,d)})},this._document=n}attachComponentPortal(Me){const le=(Me.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Me.component);let T;return Me.viewContainerRef?(T=Me.viewContainerRef.createComponent(le,Me.viewContainerRef.length,Me.injector||Me.viewContainerRef.injector,Me.projectableNodes||void 0),this.setDisposeFn(()=>T.destroy())):(T=le.create(Me.injector||this._defaultInjector||e.zZn.NULL),this._appRef.attachView(T.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(T.hostView),T.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(T)),this._attachedPortal=Me,T}attachTemplatePortal(Me){let Ce=Me.viewContainerRef,le=Ce.createEmbeddedView(Me.templateRef,Me.context,{injector:Me.injector});return le.rootNodes.forEach(T=>this.outletElement.appendChild(T)),le.detectChanges(),this.setDisposeFn(()=>{let T=Ce.indexOf(le);-1!==T&&Ce.remove(T)}),this._attachedPortal=Me,le}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(Me){return Me.hostView.rootNodes[0]}}let W=(()=>{class ne extends y{constructor(Ce,le){super(Ce,le)}static{this.\u0275fac=function(le){return new(le||ne)(e.rXU(e.C4Q),e.rXU(e.c1b))}}static{this.\u0275dir=e.FsC({type:ne,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],standalone:!0,features:[e.Vt3]})}}return ne})(),J=(()=>{class ne extends I{constructor(Ce,le,T){super(),this._componentFactoryResolver=Ce,this._viewContainerRef=le,this._isInitialized=!1,this.attached=new e.bkB,this.attachDomPortal=n=>{const c=n.element,m=this._document.createComment("dom-portal");n.setAttachedHost(this),c.parentNode.insertBefore(m,c),this._getRootNode().appendChild(c),this._attachedPortal=n,super.setDisposeFn(()=>{m.parentNode&&m.parentNode.replaceChild(c,m)})},this._document=T}get portal(){return this._attachedPortal}set portal(Ce){this.hasAttached()&&!Ce&&!this._isInitialized||(this.hasAttached()&&super.detach(),Ce&&super.attach(Ce),this._attachedPortal=Ce||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(Ce){Ce.setAttachedHost(this);const le=null!=Ce.viewContainerRef?Ce.viewContainerRef:this._viewContainerRef,n=(Ce.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Ce.component),c=le.createComponent(n,le.length,Ce.injector||le.injector,Ce.projectableNodes||void 0);return le!==this._viewContainerRef&&this._getRootNode().appendChild(c.hostView.rootNodes[0]),super.setDisposeFn(()=>c.destroy()),this._attachedPortal=Ce,this._attachedRef=c,this.attached.emit(c),c}attachTemplatePortal(Ce){Ce.setAttachedHost(this);const le=this._viewContainerRef.createEmbeddedView(Ce.templateRef,Ce.context,{injector:Ce.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=Ce,this._attachedRef=le,this.attached.emit(le),le}_getRootNode(){const Ce=this._viewContainerRef.element.nativeElement;return Ce.nodeType===Ce.ELEMENT_NODE?Ce:Ce.parentNode}static{this.\u0275fac=function(le){return new(le||ne)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU(t.qQ))}}static{this.\u0275dir=e.FsC({type:ne,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[0,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],standalone:!0,features:[e.Vt3]})}}return ne})(),ee=(()=>{class ne{static{this.\u0275fac=function(le){return new(le||ne)}}static{this.\u0275mod=e.$C({type:ne})}static{this.\u0275inj=e.G2t({})}}return ne})()},5542:(Qe,te,g)=>{"use strict";g.d(te,{uv:()=>m,Gj:()=>ze,R:()=>c,E9:()=>Xe,Xj:()=>C});var e=g(4085),t=g(4438),x=g(1413),D=g(7673),l=g(1985),w=g(3726),f=g(6780),R=g(8359);const h={schedule(We){let oe=requestAnimationFrame,X=cancelAnimationFrame;const{delegate:se}=h;se&&(oe=se.requestAnimationFrame,X=se.cancelAnimationFrame);const ae=oe(he=>{X=void 0,We(he)});return new R.yU(()=>X?.(ae))},requestAnimationFrame(...We){const{delegate:oe}=h;return(oe?.requestAnimationFrame||requestAnimationFrame)(...We)},cancelAnimationFrame(...We){const{delegate:oe}=h;return(oe?.cancelAnimationFrame||cancelAnimationFrame)(...We)},delegate:void 0};var y=g(9687);new class O extends y.q{flush(oe){this._active=!0;const X=this._scheduled;this._scheduled=void 0;const{actions:se}=this;let ae;oe=oe||se.shift();do{if(ae=oe.execute(oe.state,oe.delay))break}while((oe=se[0])&&oe.id===X&&se.shift());if(this._active=!1,ae){for(;(oe=se[0])&&oe.id===X&&se.shift();)oe.unsubscribe();throw ae}}}(class S extends f.R{constructor(oe,X){super(oe,X),this.scheduler=oe,this.work=X}requestAsyncId(oe,X,se=0){return null!==se&&se>0?super.requestAsyncId(oe,X,se):(oe.actions.push(this),oe._scheduled||(oe._scheduled=h.requestAnimationFrame(()=>oe.flush(void 0))))}recycleAsyncId(oe,X,se=0){var ae;if(null!=se?se>0:this.delay>0)return super.recycleAsyncId(oe,X,se);const{actions:he}=oe;null!=X&&(null===(ae=he[he.length-1])||void 0===ae?void 0:ae.id)!==X&&(h.cancelAnimationFrame(X),oe._scheduled=void 0)}});g(5007);var Y=g(3798),W=g(5964),Q=g(6977),J=g(6860),ie=g(177),ee=g(8203);let c=(()=>{class We{constructor(X,se,ae){this._ngZone=X,this._platform=se,this._scrolled=new x.B,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=ae}register(X){this.scrollContainers.has(X)||this.scrollContainers.set(X,X.elementScrolled().subscribe(()=>this._scrolled.next(X)))}deregister(X){const se=this.scrollContainers.get(X);se&&(se.unsubscribe(),this.scrollContainers.delete(X))}scrolled(X=20){return this._platform.isBrowser?new l.c(se=>{this._globalSubscription||this._addGlobalListener();const ae=X>0?this._scrolled.pipe((0,Y.Z)(X)).subscribe(se):this._scrolled.subscribe(se);return this._scrolledCount++,()=>{ae.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,D.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((X,se)=>this.deregister(se)),this._scrolled.complete()}ancestorScrolled(X,se){const ae=this.getAncestorScrollContainers(X);return this.scrolled(se).pipe((0,W.p)(he=>!he||ae.indexOf(he)>-1))}getAncestorScrollContainers(X){const se=[];return this.scrollContainers.forEach((ae,he)=>{this._scrollableContainsElement(he,X)&&se.push(he)}),se}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(X,se){let ae=(0,e.i8)(se),he=X.getElementRef().nativeElement;do{if(ae==he)return!0}while(ae=ae.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const X=this._getWindow();return(0,w.R)(X.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}static{this.\u0275fac=function(se){return new(se||We)(t.KVO(t.SKi),t.KVO(J.OD),t.KVO(ie.qQ,8))}}static{this.\u0275prov=t.jDH({token:We,factory:We.\u0275fac,providedIn:"root"})}}return We})(),m=(()=>{class We{constructor(X,se,ae,he){this.elementRef=X,this.scrollDispatcher=se,this.ngZone=ae,this.dir=he,this._destroyed=new x.B,this._elementScrolled=new l.c(Ie=>this.ngZone.runOutsideAngular(()=>(0,w.R)(this.elementRef.nativeElement,"scroll").pipe((0,Q.Q)(this._destroyed)).subscribe(Ie)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(X){const se=this.elementRef.nativeElement,ae=this.dir&&"rtl"==this.dir.value;null==X.left&&(X.left=ae?X.end:X.start),null==X.right&&(X.right=ae?X.start:X.end),null!=X.bottom&&(X.top=se.scrollHeight-se.clientHeight-X.bottom),ae&&(0,J.BD)()!=J.r5.NORMAL?(null!=X.left&&(X.right=se.scrollWidth-se.clientWidth-X.left),(0,J.BD)()==J.r5.INVERTED?X.left=X.right:(0,J.BD)()==J.r5.NEGATED&&(X.left=X.right?-X.right:X.right)):null!=X.right&&(X.left=se.scrollWidth-se.clientWidth-X.right),this._applyScrollToOptions(X)}_applyScrollToOptions(X){const se=this.elementRef.nativeElement;(0,J.CZ)()?se.scrollTo(X):(null!=X.top&&(se.scrollTop=X.top),null!=X.left&&(se.scrollLeft=X.left))}measureScrollOffset(X){const se="left",he=this.elementRef.nativeElement;if("top"==X)return he.scrollTop;if("bottom"==X)return he.scrollHeight-he.clientHeight-he.scrollTop;const Ie=this.dir&&"rtl"==this.dir.value;return"start"==X?X=Ie?"right":se:"end"==X&&(X=Ie?se:"right"),Ie&&(0,J.BD)()==J.r5.INVERTED?X==se?he.scrollWidth-he.clientWidth-he.scrollLeft:he.scrollLeft:Ie&&(0,J.BD)()==J.r5.NEGATED?X==se?he.scrollLeft+he.scrollWidth-he.clientWidth:-he.scrollLeft:X==se?he.scrollLeft:he.scrollWidth-he.clientWidth-he.scrollLeft}static{this.\u0275fac=function(se){return new(se||We)(t.rXU(t.aKT),t.rXU(c),t.rXU(t.SKi),t.rXU(ee.dS,8))}}static{this.\u0275dir=t.FsC({type:We,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]],standalone:!0})}}return We})(),C=(()=>{class We{constructor(X,se,ae){this._platform=X,this._change=new x.B,this._changeListener=he=>{this._change.next(he)},this._document=ae,se.runOutsideAngular(()=>{if(X.isBrowser){const he=this._getWindow();he.addEventListener("resize",this._changeListener),he.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const X=this._getWindow();X.removeEventListener("resize",this._changeListener),X.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const X={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),X}getViewportRect(){const X=this.getViewportScrollPosition(),{width:se,height:ae}=this.getViewportSize();return{top:X.top,left:X.left,bottom:X.top+ae,right:X.left+se,height:ae,width:se}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const X=this._document,se=this._getWindow(),ae=X.documentElement,he=ae.getBoundingClientRect();return{top:-he.top||X.body.scrollTop||se.scrollY||ae.scrollTop||0,left:-he.left||X.body.scrollLeft||se.scrollX||ae.scrollLeft||0}}change(X=20){return X>0?this._change.pipe((0,Y.Z)(X)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const X=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:X.innerWidth,height:X.innerHeight}:{width:0,height:0}}static{this.\u0275fac=function(se){return new(se||We)(t.KVO(J.OD),t.KVO(t.SKi),t.KVO(ie.qQ,8))}}static{this.\u0275prov=t.jDH({token:We,factory:We.\u0275fac,providedIn:"root"})}}return We})(),ze=(()=>{class We{static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275mod=t.$C({type:We})}static{this.\u0275inj=t.G2t({})}}return We})(),Xe=(()=>{class We{static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275mod=t.$C({type:We})}static{this.\u0275inj=t.G2t({imports:[ee.jI,ze,ee.jI,ze]})}}return We})()},7768:(Qe,te,g)=>{"use strict";g.d(te,{FK:()=>ee,Up:()=>J,VI:()=>Q,nb:()=>I,oX:()=>O,uY:()=>fe,v5:()=>ie,x8:()=>W});var e=g(8617),t=g(8203),x=g(7336),D=g(4438),l=g(6860),w=g(1413),f=g(7673),R=g(9172),h=g(6977);const S=["*"];function y(ne,Me){1&ne&&D.SdG(0)}let O=(()=>{class ne{constructor(Ce){this._elementRef=Ce}focus(){this._elementRef.nativeElement.focus()}static{this.\u0275fac=function(le){return new(le||ne)(D.rXU(D.aKT))}}static{this.\u0275dir=D.FsC({type:ne,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"],standalone:!0})}}return ne})(),I=(()=>{class ne{constructor(Ce){this.template=Ce}static{this.\u0275fac=function(le){return new(le||ne)(D.rXU(D.C4Q))}}static{this.\u0275dir=D.FsC({type:ne,selectors:[["","cdkStepLabel",""]],standalone:!0})}}return ne})(),V=0;const W=new D.nKC("STEPPER_GLOBAL_OPTIONS");let Q=(()=>{class ne{get completed(){return null==this._completedOverride?this._getDefaultCompleted():this._completedOverride}set completed(Ce){this._completedOverride=Ce}_getDefaultCompleted(){return this.stepControl?this.stepControl.valid&&this.interacted:this.interacted}get hasError(){return null==this._customError?this._getDefaultError():this._customError}set hasError(Ce){this._customError=Ce}_getDefaultError(){return this.stepControl&&this.stepControl.invalid&&this.interacted}constructor(Ce,le){this._stepper=Ce,this.interacted=!1,this.interactedStream=new D.bkB,this.editable=!0,this.optional=!1,this._completedOverride=null,this._customError=null,this._stepperOptions=le||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}select(){this._stepper.selected=this}reset(){this.interacted=!1,null!=this._completedOverride&&(this._completedOverride=!1),null!=this._customError&&(this._customError=!1),this.stepControl&&this.stepControl.reset()}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this.interacted||(this.interacted=!0,this.interactedStream.emit(this))}_showError(){return this._stepperOptions.showError??null!=this._customError}static{this.\u0275fac=function(le){return new(le||ne)(D.rXU((0,D.Rfq)(()=>J)),D.rXU(W,8))}}static{this.\u0275cmp=D.VBU({type:ne,selectors:[["cdk-step"]],contentQueries:function(le,T,n){if(1&le&&D.wni(n,I,5),2&le){let c;D.mGM(c=D.lsd())&&(T.stepLabel=c.first)}},viewQuery:function(le,T){if(1&le&&D.GBs(D.C4Q,7),2&le){let n;D.mGM(n=D.lsd())&&(T.content=n.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],state:"state",editable:[2,"editable","editable",D.L39],optional:[2,"optional","optional",D.L39],completed:[2,"completed","completed",D.L39],hasError:[2,"hasError","hasError",D.L39]},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],standalone:!0,features:[D.GFd,D.OA$,D.aNF],ngContentSelectors:S,decls:1,vars:0,template:function(le,T){1&le&&(D.NAR(),D.DNE(0,y,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}}return ne})(),J=(()=>{class ne{get selectedIndex(){return this._selectedIndex}set selectedIndex(Ce){this.steps&&this._steps?(this._isValidIndex(Ce),this.selected?._markAsInteracted(),this._selectedIndex!==Ce&&!this._anyControlsInvalidOrPending(Ce)&&(Ce>=this._selectedIndex||this.steps.toArray()[Ce].editable)&&this._updateSelectedItemIndex(Ce)):this._selectedIndex=Ce}get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(Ce){this.selectedIndex=Ce&&this.steps?this.steps.toArray().indexOf(Ce):-1}get orientation(){return this._orientation}set orientation(Ce){this._orientation=Ce,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===Ce)}constructor(Ce,le,T){this._dir=Ce,this._changeDetectorRef=le,this._elementRef=T,this._destroyed=new w.B,this.steps=new D.rOR,this._sortedHeaders=new D.rOR,this.linear=!1,this._selectedIndex=0,this.selectionChange=new D.bkB,this.selectedIndexChange=new D.bkB,this._orientation="horizontal",this._groupId=V++}ngAfterContentInit(){this._steps.changes.pipe((0,R.Z)(this._steps),(0,h.Q)(this._destroyed)).subscribe(Ce=>{this.steps.reset(Ce.filter(le=>le._stepper===this)),this.steps.notifyOnChanges()})}ngAfterViewInit(){this._stepHeader.changes.pipe((0,R.Z)(this._stepHeader),(0,h.Q)(this._destroyed)).subscribe(Ce=>{this._sortedHeaders.reset(Ce.toArray().sort((le,T)=>le._elementRef.nativeElement.compareDocumentPosition(T._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new e.Bu(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),(this._dir?this._dir.change:(0,f.of)()).pipe((0,R.Z)(this._layoutDirection()),(0,h.Q)(this._destroyed)).subscribe(Ce=>this._keyManager.withHorizontalOrientation(Ce)),this._keyManager.updateActiveItem(this._selectedIndex),this.steps.changes.subscribe(()=>{this.selected||(this._selectedIndex=Math.max(this._selectedIndex-1,0))}),this._isValidIndex(this._selectedIndex)||(this._selectedIndex=0)}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(Ce=>Ce.reset()),this._stateChanged()}_getStepLabelId(Ce){return`cdk-step-label-${this._groupId}-${Ce}`}_getStepContentId(Ce){return`cdk-step-content-${this._groupId}-${Ce}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(Ce){const le=Ce-this._selectedIndex;return le<0?"rtl"===this._layoutDirection()?"next":"previous":le>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getIndicatorType(Ce,le="number"){const T=this.steps.toArray()[Ce],n=this._isCurrentStep(Ce);return T._displayDefaultIndicatorType?this._getDefaultIndicatorLogic(T,n):this._getGuidelineLogic(T,n,le)}_getDefaultIndicatorLogic(Ce,le){return Ce._showError()&&Ce.hasError&&!le?"error":!Ce.completed||le?"number":Ce.editable?"edit":"done"}_getGuidelineLogic(Ce,le,T="number"){return Ce._showError()&&Ce.hasError&&!le?"error":Ce.completed&&!le?"done":Ce.completed&&le?T:Ce.editable&&le?"edit":T}_isCurrentStep(Ce){return this._selectedIndex===Ce}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex}_updateSelectedItemIndex(Ce){const le=this.steps.toArray();this.selectionChange.emit({selectedIndex:Ce,previouslySelectedIndex:this._selectedIndex,selectedStep:le[Ce],previouslySelectedStep:le[this._selectedIndex]}),this._containsFocus()?this._keyManager.setActiveItem(Ce):this._keyManager.updateActiveItem(Ce),this._selectedIndex=Ce,this.selectedIndexChange.emit(this._selectedIndex),this._stateChanged()}_onKeydown(Ce){const le=(0,x.rp)(Ce),T=Ce.keyCode,n=this._keyManager;null==n.activeItemIndex||le||T!==x.t6&&T!==x.Fm?n.setFocusOrigin("keyboard").onKeydown(Ce):(this.selectedIndex=n.activeItemIndex,Ce.preventDefault())}_anyControlsInvalidOrPending(Ce){return!!(this.linear&&Ce>=0)&&this.steps.toArray().slice(0,Ce).some(le=>{const T=le.stepControl;return(T?T.invalid||T.pending||!le.interacted:!le.completed)&&!le.optional&&!le._completedOverride})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const Ce=this._elementRef.nativeElement,le=(0,l.vc)();return Ce===le||Ce.contains(le)}_isValidIndex(Ce){return Ce>-1&&(!this.steps||Ce{class ne{constructor(Ce){this._stepper=Ce,this.type="submit"}static{this.\u0275fac=function(le){return new(le||ne)(D.rXU(J))}}static{this.\u0275dir=D.FsC({type:ne,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(le,T){1&le&&D.bIt("click",function(){return T._stepper.next()}),2&le&&D.Mr5("type",T.type)},inputs:{type:"type"},standalone:!0})}}return ne})(),ee=(()=>{class ne{constructor(Ce){this._stepper=Ce,this.type="button"}static{this.\u0275fac=function(le){return new(le||ne)(D.rXU(J))}}static{this.\u0275dir=D.FsC({type:ne,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(le,T){1&le&&D.bIt("click",function(){return T._stepper.previous()}),2&le&&D.Mr5("type",T.type)},inputs:{type:"type"},standalone:!0})}}return ne})(),fe=(()=>{class ne{static{this.\u0275fac=function(le){return new(le||ne)}}static{this.\u0275mod=D.$C({type:ne})}static{this.\u0275inj=D.G2t({imports:[t.jI]})}}return ne})()},4109:(Qe,te,g)=>{"use strict";g.d(te,{Dc:()=>C,Hy:()=>m,NL:()=>ne,Sz:()=>W,XO:()=>I,a$:()=>j,aI:()=>c,kZ:()=>V,s3:()=>T,xn:()=>Me});var e=g(5024),t=g(4402),x=g(1413),D=g(4412),l=g(7673),w=g(6697),f=g(5964),R=g(6977),h=g(4438),S=g(8203);class y{constructor(){this.expansionModel=new e.CB(!0)}toggle(k){this.expansionModel.toggle(this._trackByValue(k))}expand(k){this.expansionModel.select(this._trackByValue(k))}collapse(k){this.expansionModel.deselect(this._trackByValue(k))}isExpanded(k){return this.expansionModel.isSelected(this._trackByValue(k))}toggleDescendants(k){this.expansionModel.isSelected(this._trackByValue(k))?this.collapseDescendants(k):this.expandDescendants(k)}collapseAll(){this.expansionModel.clear()}expandDescendants(k){let _=[k];_.push(...this.getDescendants(k)),this.expansionModel.select(..._.map(a=>this._trackByValue(a)))}collapseDescendants(k){let _=[k];_.push(...this.getDescendants(k)),this.expansionModel.deselect(..._.map(a=>this._trackByValue(a)))}_trackByValue(k){return this.trackBy?this.trackBy(k):k}}class I extends y{constructor(k,_){super(),this.getChildren=k,this.options=_,this.options&&(this.trackBy=this.options.trackBy)}expandAll(){this.expansionModel.clear();const k=this.dataNodes.reduce((_,a)=>[..._,...this.getDescendants(a),a],[]);this.expansionModel.select(...k.map(_=>this._trackByValue(_)))}getDescendants(k){const _=[];return this._getDescendants(_,k),_.splice(1)}_getDescendants(k,_){k.push(_);const a=this.getChildren(_);Array.isArray(a)?a.forEach(b=>this._getDescendants(k,b)):(0,t.A)(a)&&a.pipe((0,w.s)(1),(0,f.p)(Boolean)).subscribe(b=>{for(const z of b)this._getDescendants(k,z)})}}const V=new h.nKC("CDK_TREE_NODE_OUTLET_NODE");let j=(()=>{class A{constructor(_,a){this.viewContainer=_,this._node=a}static{this.\u0275fac=function(a){return new(a||A)(h.rXU(h.c1b),h.rXU(V,8))}}static{this.\u0275dir=h.FsC({type:A,selectors:[["","cdkTreeNodeOutlet",""]],standalone:!0})}}return A})();class Y{constructor(k){this.$implicit=k}}let W=(()=>{class A{constructor(_){this.template=_}static{this.\u0275fac=function(a){return new(a||A)(h.rXU(h.C4Q))}}static{this.\u0275dir=h.FsC({type:A,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:[0,"cdkTreeNodeDefWhen","when"]},standalone:!0})}}return A})(),ne=(()=>{class A{get dataSource(){return this._dataSource}set dataSource(_){this._dataSource!==_&&this._switchDataSource(_)}constructor(_,a){this._differs=_,this._changeDetectorRef=a,this._onDestroy=new x.B,this._levels=new Map,this.viewChange=new D.t({start:0,end:Number.MAX_VALUE})}ngOnInit(){this._dataDiffer=this._differs.find([]).create(this.trackBy)}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),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)}ngAfterContentChecked(){const _=this._nodeDefs.filter(a=>!a.when);this._defaultNodeDef=_[0],this.dataSource&&this._nodeDefs&&!this._dataSubscription&&this._observeRenderChanges()}_switchDataSource(_){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),_||this._nodeOutlet.viewContainer.clear(),this._dataSource=_,this._nodeDefs&&this._observeRenderChanges()}_observeRenderChanges(){let _;(0,e.y4)(this._dataSource)?_=this._dataSource.connect(this):(0,t.A)(this._dataSource)?_=this._dataSource:Array.isArray(this._dataSource)&&(_=(0,l.of)(this._dataSource)),_&&(this._dataSubscription=_.pipe((0,R.Q)(this._onDestroy)).subscribe(a=>this.renderNodeChanges(a)))}renderNodeChanges(_,a=this._dataDiffer,b=this._nodeOutlet.viewContainer,z){const N=a.diff(_);N&&(N.forEachOperation((q,pe,ze)=>{if(null==q.previousIndex)this.insertNode(_[ze],ze,b,z);else if(null==ze)b.remove(pe),this._levels.delete(q.item);else{const Xe=b.get(pe);b.move(Xe,ze)}}),this._changeDetectorRef.detectChanges())}_getNodeDef(_,a){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(z=>z.when&&z.when(a,_))||this._defaultNodeDef}insertNode(_,a,b,z){const N=this._getNodeDef(_,a),q=new Y(_);q.level=this.treeControl.getLevel?this.treeControl.getLevel(_):typeof z<"u"&&this._levels.has(z)?this._levels.get(z)+1:0,this._levels.set(_,q.level),(b||this._nodeOutlet.viewContainer).createEmbeddedView(N.template,q,a),Me.mostRecentTreeNode&&(Me.mostRecentTreeNode.data=_)}static{this.\u0275fac=function(a){return new(a||A)(h.rXU(h._q3),h.rXU(h.gRc))}}static{this.\u0275cmp=h.VBU({type:A,selectors:[["cdk-tree"]],contentQueries:function(a,b,z){if(1&a&&h.wni(z,W,5),2&a){let N;h.mGM(N=h.lsd())&&(b._nodeDefs=N)}},viewQuery:function(a,b){if(1&a&&h.GBs(j,7),2&a){let z;h.mGM(z=h.lsd())&&(b._nodeOutlet=z.first)}},hostAttrs:["role","tree",1,"cdk-tree"],inputs:{dataSource:"dataSource",treeControl:"treeControl",trackBy:"trackBy"},exportAs:["cdkTree"],standalone:!0,features:[h.aNF],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(a,b){1&a&&h.eu8(0,0)},dependencies:[j],encapsulation:2})}}return A})(),Me=(()=>{class A{get role(){return"treeitem"}set role(_){this._elementRef.nativeElement.setAttribute("role",_)}static{this.mostRecentTreeNode=null}get data(){return this._data}set data(_){_!==this._data&&(this._data=_,this._setRoleFromData(),this._dataChanges.next())}get isExpanded(){return this._tree.treeControl.isExpanded(this._data)}get level(){return this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._data):this._parentNodeAriaLevel}constructor(_,a){this._elementRef=_,this._tree=a,this._destroyed=new x.B,this._dataChanges=new x.B,A.mostRecentTreeNode=this,this.role="treeitem"}ngOnInit(){this._parentNodeAriaLevel=function Ce(A){let k=A.parentElement;for(;k&&!le(k);)k=k.parentElement;return k?k.classList.contains("cdk-nested-tree-node")?(0,h.Udg)(k.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._elementRef.nativeElement.setAttribute("aria-level",`${this.level+1}`)}ngOnDestroy(){A.mostRecentTreeNode===this&&(A.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}focus(){this._elementRef.nativeElement.focus()}_setRoleFromData(){this.role="treeitem"}static{this.\u0275fac=function(a){return new(a||A)(h.rXU(h.aKT),h.rXU(ne))}}static{this.\u0275dir=h.FsC({type:A,selectors:[["cdk-tree-node"]],hostAttrs:[1,"cdk-tree-node"],hostVars:1,hostBindings:function(a,b){2&a&&h.BMQ("aria-expanded",b.isExpanded)},inputs:{role:"role"},exportAs:["cdkTreeNode"],standalone:!0})}}return A})();function le(A){const k=A.classList;return!(!k?.contains("cdk-nested-tree-node")&&!k?.contains("cdk-tree"))}let T=(()=>{class A extends Me{constructor(_,a,b){super(_,a),this._differs=b}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy);const _=this._tree.treeControl.getChildren(this.data);Array.isArray(_)?this.updateChildrenNodes(_):(0,t.A)(_)&&_.pipe((0,R.Q)(this._destroyed)).subscribe(a=>this.updateChildrenNodes(a)),this.nodeOutlet.changes.pipe((0,R.Q)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnInit(){super.ngOnInit()}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(_){const a=this._getNodeOutlet();_&&(this._children=_),a&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,a.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const _=this._getNodeOutlet();_&&(_.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const _=this.nodeOutlet;return _&&_.find(a=>!a._node||a._node===this)}static{this.\u0275fac=function(a){return new(a||A)(h.rXU(h.aKT),h.rXU(ne),h.rXU(h._q3))}}static{this.\u0275dir=h.FsC({type:A,selectors:[["cdk-nested-tree-node"]],contentQueries:function(a,b,z){if(1&a&&h.wni(z,j,5),2&a){let N;h.mGM(N=h.lsd())&&(b.nodeOutlet=N)}},hostAttrs:[1,"cdk-nested-tree-node"],exportAs:["cdkNestedTreeNode"],standalone:!0,features:[h.Jv_([{provide:Me,useExisting:A},{provide:V,useExisting:A}]),h.Vt3]})}}return A})();const n=/([A-Za-z%]+)$/;let c=(()=>{class A{get level(){return this._level}set level(_){this._setLevelInput(_)}get indent(){return this._indent}set indent(_){this._setIndentInput(_)}constructor(_,a,b,z){this._treeNode=_,this._tree=a,this._element=b,this._dir=z,this._destroyed=new x.B,this.indentUnits="px",this._indent=40,this._setPadding(),z&&z.change.pipe((0,R.Q)(this._destroyed)).subscribe(()=>this._setPadding(!0)),_._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const _=this._treeNode.data&&this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._treeNode.data):null,a=null==this._level?_:this._level;return"number"==typeof a?`${a*this._indent}${this.indentUnits}`:null}_setPadding(_=!1){const a=this._paddingIndent();if(a!==this._currentPadding||_){const b=this._element.nativeElement,z=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",N="paddingLeft"===z?"paddingRight":"paddingLeft";b.style[z]=a||"",b.style[N]="",this._currentPadding=a}}_setLevelInput(_){this._level=isNaN(_)?null:_,this._setPadding()}_setIndentInput(_){let a=_,b="px";if("string"==typeof _){const z=_.split(n);a=z[0],b=z[1]||b}this.indentUnits=b,this._indent=(0,h.Udg)(a),this._setPadding()}static{this.\u0275fac=function(a){return new(a||A)(h.rXU(Me),h.rXU(ne),h.rXU(h.aKT),h.rXU(S.dS,8))}}static{this.\u0275dir=h.FsC({type:A,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:[2,"cdkTreeNodePadding","level",h.Udg],indent:[0,"cdkTreeNodePaddingIndent","indent"]},standalone:!0,features:[h.GFd]})}}return A})(),m=(()=>{class A{constructor(_,a){this._tree=_,this._treeNode=a,this.recursive=!1}_toggle(_){this.recursive?this._tree.treeControl.toggleDescendants(this._treeNode.data):this._tree.treeControl.toggle(this._treeNode.data),_.stopPropagation()}static{this.\u0275fac=function(a){return new(a||A)(h.rXU(ne),h.rXU(Me))}}static{this.\u0275dir=h.FsC({type:A,selectors:[["","cdkTreeNodeToggle",""]],hostBindings:function(a,b){1&a&&h.bIt("click",function(N){return b._toggle(N)})},inputs:{recursive:[2,"cdkTreeNodeToggleRecursive","recursive",h.L39]},standalone:!0,features:[h.GFd]})}}return A})(),C=(()=>{class A{static{this.\u0275fac=function(a){return new(a||A)}}static{this.\u0275mod=h.$C({type:A})}static{this.\u0275inj=h.G2t({})}}return A})()},177:(Qe,te,g)=>{"use strict";g.d(te,{AJ:()=>Ba,B3:()=>Ai,GH:()=>ir,Jj:()=>On,MD:()=>Do,N0:()=>Ea,P9:()=>ua,PV:()=>Xr,Pc:()=>fr,QT:()=>x,QX:()=>Fr,Sm:()=>Y,Sq:()=>He,T3:()=>Yi,TG:()=>Ds,UE:()=>ea,VF:()=>l,Vy:()=>_o,Xr:()=>ko,YU:()=>mn,ZD:()=>D,_b:()=>Hi,aZ:()=>Q,bT:()=>ht,e1:()=>Hn,fG:()=>Qn,fw:()=>W,hb:()=>V,hj:()=>h,lG:()=>hs,qQ:()=>f,ux:()=>Cn,vh:()=>ds});var e=g(4438);let t=null;function x(){return t}function D(xe){t??=xe}class l{}const f=new e.nKC("");let R=(()=>{class xe{historyGo(Ye){throw new Error("")}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275prov=e.jDH({token:xe,factory:()=>(0,e.WQX)(S),providedIn:"platform"})}}return xe})();const h=new e.nKC("");let S=(()=>{class xe extends R{constructor(){super(),this._doc=(0,e.WQX)(f),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return x().getBaseHref(this._doc)}onPopState(Ye){const gt=x().getGlobalEventTarget(this._doc,"window");return gt.addEventListener("popstate",Ye,!1),()=>gt.removeEventListener("popstate",Ye)}onHashChange(Ye){const gt=x().getGlobalEventTarget(this._doc,"window");return gt.addEventListener("hashchange",Ye,!1),()=>gt.removeEventListener("hashchange",Ye)}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(Ye){this._location.pathname=Ye}pushState(Ye,gt,Zt){this._history.pushState(Ye,gt,Zt)}replaceState(Ye,gt,Zt){this._history.replaceState(Ye,gt,Zt)}forward(){this._history.forward()}back(){this._history.back()}historyGo(Ye=0){this._history.go(Ye)}getState(){return this._history.state}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275prov=e.jDH({token:xe,factory:()=>new xe,providedIn:"platform"})}}return xe})();function y(xe,bt){if(0==xe.length)return bt;if(0==bt.length)return xe;let Ye=0;return xe.endsWith("/")&&Ye++,bt.startsWith("/")&&Ye++,2==Ye?xe+bt.substring(1):1==Ye?xe+bt:xe+"/"+bt}function O(xe){const bt=xe.match(/#|\?|$/),Ye=bt&&bt.index||xe.length;return xe.slice(0,Ye-("/"===xe[Ye-1]?1:0))+xe.slice(Ye)}function I(xe){return xe&&"?"!==xe[0]?"?"+xe:xe}let V=(()=>{class xe{historyGo(Ye){throw new Error("")}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275prov=e.jDH({token:xe,factory:()=>(0,e.WQX)(Y),providedIn:"root"})}}return xe})();const j=new e.nKC("");let Y=(()=>{class xe extends V{constructor(Ye,gt){super(),this._platformLocation=Ye,this._removeListenerFns=[],this._baseHref=gt??this._platformLocation.getBaseHrefFromDOM()??(0,e.WQX)(f).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Ye){this._removeListenerFns.push(this._platformLocation.onPopState(Ye),this._platformLocation.onHashChange(Ye))}getBaseHref(){return this._baseHref}prepareExternalUrl(Ye){return y(this._baseHref,Ye)}path(Ye=!1){const gt=this._platformLocation.pathname+I(this._platformLocation.search),Zt=this._platformLocation.hash;return Zt&&Ye?`${gt}${Zt}`:gt}pushState(Ye,gt,Zt,Si){const Ii=this.prepareExternalUrl(Zt+I(Si));this._platformLocation.pushState(Ye,gt,Ii)}replaceState(Ye,gt,Zt,Si){const Ii=this.prepareExternalUrl(Zt+I(Si));this._platformLocation.replaceState(Ye,gt,Ii)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Ye=0){this._platformLocation.historyGo?.(Ye)}static{this.\u0275fac=function(gt){return new(gt||xe)(e.KVO(R),e.KVO(j,8))}}static{this.\u0275prov=e.jDH({token:xe,factory:xe.\u0275fac,providedIn:"root"})}}return xe})(),W=(()=>{class xe extends V{constructor(Ye,gt){super(),this._platformLocation=Ye,this._baseHref="",this._removeListenerFns=[],null!=gt&&(this._baseHref=gt)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Ye){this._removeListenerFns.push(this._platformLocation.onPopState(Ye),this._platformLocation.onHashChange(Ye))}getBaseHref(){return this._baseHref}path(Ye=!1){const gt=this._platformLocation.hash??"#";return gt.length>0?gt.substring(1):gt}prepareExternalUrl(Ye){const gt=y(this._baseHref,Ye);return gt.length>0?"#"+gt:gt}pushState(Ye,gt,Zt,Si){let Ii=this.prepareExternalUrl(Zt+I(Si));0==Ii.length&&(Ii=this._platformLocation.pathname),this._platformLocation.pushState(Ye,gt,Ii)}replaceState(Ye,gt,Zt,Si){let Ii=this.prepareExternalUrl(Zt+I(Si));0==Ii.length&&(Ii=this._platformLocation.pathname),this._platformLocation.replaceState(Ye,gt,Ii)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Ye=0){this._platformLocation.historyGo?.(Ye)}static{this.\u0275fac=function(gt){return new(gt||xe)(e.KVO(R),e.KVO(j,8))}}static{this.\u0275prov=e.jDH({token:xe,factory:xe.\u0275fac})}}return xe})(),Q=(()=>{class xe{constructor(Ye){this._subject=new e.bkB,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=Ye;const gt=this._locationStrategy.getBaseHref();this._basePath=function fe(xe){if(new RegExp("^(https?:)?//").test(xe)){const[,Ye]=xe.split(/\/\/[^\/]+/);return Ye}return xe}(O(ee(gt))),this._locationStrategy.onPopState(Zt=>{this._subject.emit({url:this.path(!0),pop:!0,state:Zt.state,type:Zt.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(Ye=!1){return this.normalize(this._locationStrategy.path(Ye))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(Ye,gt=""){return this.path()==this.normalize(Ye+I(gt))}normalize(Ye){return xe.stripTrailingSlash(function ie(xe,bt){if(!xe||!bt.startsWith(xe))return bt;const Ye=bt.substring(xe.length);return""===Ye||["/",";","?","#"].includes(Ye[0])?Ye:bt}(this._basePath,ee(Ye)))}prepareExternalUrl(Ye){return Ye&&"/"!==Ye[0]&&(Ye="/"+Ye),this._locationStrategy.prepareExternalUrl(Ye)}go(Ye,gt="",Zt=null){this._locationStrategy.pushState(Zt,"",Ye,gt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Ye+I(gt)),Zt)}replaceState(Ye,gt="",Zt=null){this._locationStrategy.replaceState(Zt,"",Ye,gt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Ye+I(gt)),Zt)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(Ye=0){this._locationStrategy.historyGo?.(Ye)}onUrlChange(Ye){return this._urlChangeListeners.push(Ye),this._urlChangeSubscription??=this.subscribe(gt=>{this._notifyUrlChangeListeners(gt.url,gt.state)}),()=>{const gt=this._urlChangeListeners.indexOf(Ye);this._urlChangeListeners.splice(gt,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(Ye="",gt){this._urlChangeListeners.forEach(Zt=>Zt(Ye,gt))}subscribe(Ye,gt,Zt){return this._subject.subscribe({next:Ye,error:gt,complete:Zt})}static{this.normalizeQueryParams=I}static{this.joinWithSlash=y}static{this.stripTrailingSlash=O}static{this.\u0275fac=function(gt){return new(gt||xe)(e.KVO(V))}}static{this.\u0275prov=e.jDH({token:xe,factory:()=>function J(){return new Q((0,e.KVO)(V))}(),providedIn:"root"})}}return xe})();function ee(xe){return xe.replace(/\/index.html$/,"")}var Me=function(xe){return xe[xe.Decimal=0]="Decimal",xe[xe.Percent=1]="Percent",xe[xe.Currency=2]="Currency",xe[xe.Scientific=3]="Scientific",xe}(Me||{}),le=function(xe){return xe[xe.Format=0]="Format",xe[xe.Standalone=1]="Standalone",xe}(le||{}),T=function(xe){return xe[xe.Narrow=0]="Narrow",xe[xe.Abbreviated=1]="Abbreviated",xe[xe.Wide=2]="Wide",xe[xe.Short=3]="Short",xe}(T||{}),n=function(xe){return xe[xe.Short=0]="Short",xe[xe.Medium=1]="Medium",xe[xe.Long=2]="Long",xe[xe.Full=3]="Full",xe}(n||{});const c={Decimal:0,Group:1,List:2,PercentSign:3,PlusSign:4,MinusSign:5,Exponential:6,SuperscriptingExponent:7,PerMille:8,Infinity:9,NaN:10,TimeSeparator:11,CurrencyDecimal:12,CurrencyGroup:13};function z(xe,bt){return me((0,e.H5H)(xe)[e.KH2.DateFormat],bt)}function N(xe,bt){return me((0,e.H5H)(xe)[e.KH2.TimeFormat],bt)}function q(xe,bt){return me((0,e.H5H)(xe)[e.KH2.DateTimeFormat],bt)}function pe(xe,bt){const Ye=(0,e.H5H)(xe),gt=Ye[e.KH2.NumberSymbols][bt];if(typeof gt>"u"){if(bt===c.CurrencyDecimal)return Ye[e.KH2.NumberSymbols][c.Decimal];if(bt===c.CurrencyGroup)return Ye[e.KH2.NumberSymbols][c.Group]}return gt}function ae(xe){if(!xe[e.KH2.ExtraData])throw new Error(`Missing extra locale data for the locale "${xe[e.KH2.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function me(xe,bt){for(let Ye=bt;Ye>-1;Ye--)if(typeof xe[Ye]<"u")return xe[Ye];throw new Error("Locale data API: locale data undefined")}function Ee(xe){const[bt,Ye]=xe.split(":");return{hours:+bt,minutes:+Ye}}const ct=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,dt={},Yt=/((?:[^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]*)/;var ve=function(xe){return xe[xe.Short=0]="Short",xe[xe.ShortGMT=1]="ShortGMT",xe[xe.Long=2]="Long",xe[xe.Extended=3]="Extended",xe}(ve||{}),_e=function(xe){return xe[xe.FullYear=0]="FullYear",xe[xe.Month=1]="Month",xe[xe.Date=2]="Date",xe[xe.Hours=3]="Hours",xe[xe.Minutes=4]="Minutes",xe[xe.Seconds=5]="Seconds",xe[xe.FractionalSeconds=6]="FractionalSeconds",xe[xe.Day=7]="Day",xe}(_e||{}),we=function(xe){return xe[xe.DayPeriods=0]="DayPeriods",xe[xe.Days=1]="Days",xe[xe.Months=2]="Months",xe[xe.Eras=3]="Eras",xe}(we||{});function Ue(xe,bt,Ye,gt){let Zt=function pt(xe){if(Fe(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[Zt,Si=1,Ii=1]=xe.split("-").map(on=>+on);return je(Zt,Si-1,Ii)}const Ye=parseFloat(xe);if(!isNaN(xe-Ye))return new Date(Ye);let gt;if(gt=xe.match(ct))return function Ke(xe){const bt=new Date(0);let Ye=0,gt=0;const Zt=xe[8]?bt.setUTCFullYear:bt.setFullYear,Si=xe[8]?bt.setUTCHours:bt.setHours;xe[9]&&(Ye=Number(xe[9]+xe[10]),gt=Number(xe[9]+xe[11])),Zt.call(bt,Number(xe[1]),Number(xe[2])-1,Number(xe[3]));const Ii=Number(xe[4]||0)-Ye,on=Number(xe[5]||0)-gt,Kn=Number(xe[6]||0),wr=Math.floor(1e3*parseFloat("0."+(xe[7]||0)));return Si.call(bt,Ii,on,Kn,wr),bt}(gt)}const bt=new Date(xe);if(!Fe(bt))throw new Error(`Unable to convert "${xe}" into a date`);return bt}(xe);bt=vt(Ye,bt)||bt;let on,Ii=[];for(;bt;){if(on=Yt.exec(bt),!on){Ii.push(bt);break}{Ii=Ii.concat(on.slice(1));const pr=Ii.pop();if(!pr)break;bt=pr}}let Kn=Zt.getTimezoneOffset();gt&&(Kn=Z(gt,Kn),Zt=function Pe(xe,bt,Ye){const gt=Ye?-1:1,Zt=xe.getTimezoneOffset();return function Re(xe,bt){return(xe=new Date(xe.getTime())).setMinutes(xe.getMinutes()+bt),xe}(xe,gt*(Z(bt,Zt)-Zt))}(Zt,gt,!0));let wr="";return Ii.forEach(pr=>{const Fn=function ce(xe){if(Te[xe])return Te[xe];let bt;switch(xe){case"G":case"GG":case"GGG":bt=jt(we.Eras,T.Abbreviated);break;case"GGGG":bt=jt(we.Eras,T.Wide);break;case"GGGGG":bt=jt(we.Eras,T.Narrow);break;case"y":bt=Nt(_e.FullYear,1,0,!1,!0);break;case"yy":bt=Nt(_e.FullYear,2,0,!0,!0);break;case"yyy":bt=Nt(_e.FullYear,3,0,!1,!0);break;case"yyyy":bt=Nt(_e.FullYear,4,0,!1,!0);break;case"Y":bt=Se(1);break;case"YY":bt=Se(2,!0);break;case"YYY":bt=Se(3);break;case"YYYY":bt=Se(4);break;case"M":case"L":bt=Nt(_e.Month,1,1);break;case"MM":case"LL":bt=Nt(_e.Month,2,1);break;case"MMM":bt=jt(we.Months,T.Abbreviated);break;case"MMMM":bt=jt(we.Months,T.Wide);break;case"MMMMM":bt=jt(we.Months,T.Narrow);break;case"LLL":bt=jt(we.Months,T.Abbreviated,le.Standalone);break;case"LLLL":bt=jt(we.Months,T.Wide,le.Standalone);break;case"LLLLL":bt=jt(we.Months,T.Narrow,le.Standalone);break;case"w":bt=xt(1);break;case"ww":bt=xt(2);break;case"W":bt=xt(1,!0);break;case"d":bt=Nt(_e.Date,1);break;case"dd":bt=Nt(_e.Date,2);break;case"c":case"cc":bt=Nt(_e.Day,1);break;case"ccc":bt=jt(we.Days,T.Abbreviated,le.Standalone);break;case"cccc":bt=jt(we.Days,T.Wide,le.Standalone);break;case"ccccc":bt=jt(we.Days,T.Narrow,le.Standalone);break;case"cccccc":bt=jt(we.Days,T.Short,le.Standalone);break;case"E":case"EE":case"EEE":bt=jt(we.Days,T.Abbreviated);break;case"EEEE":bt=jt(we.Days,T.Wide);break;case"EEEEE":bt=jt(we.Days,T.Narrow);break;case"EEEEEE":bt=jt(we.Days,T.Short);break;case"a":case"aa":case"aaa":bt=jt(we.DayPeriods,T.Abbreviated);break;case"aaaa":bt=jt(we.DayPeriods,T.Wide);break;case"aaaaa":bt=jt(we.DayPeriods,T.Narrow);break;case"b":case"bb":case"bbb":bt=jt(we.DayPeriods,T.Abbreviated,le.Standalone,!0);break;case"bbbb":bt=jt(we.DayPeriods,T.Wide,le.Standalone,!0);break;case"bbbbb":bt=jt(we.DayPeriods,T.Narrow,le.Standalone,!0);break;case"B":case"BB":case"BBB":bt=jt(we.DayPeriods,T.Abbreviated,le.Format,!0);break;case"BBBB":bt=jt(we.DayPeriods,T.Wide,le.Format,!0);break;case"BBBBB":bt=jt(we.DayPeriods,T.Narrow,le.Format,!0);break;case"h":bt=Nt(_e.Hours,1,-12);break;case"hh":bt=Nt(_e.Hours,2,-12);break;case"H":bt=Nt(_e.Hours,1);break;case"HH":bt=Nt(_e.Hours,2);break;case"m":bt=Nt(_e.Minutes,1);break;case"mm":bt=Nt(_e.Minutes,2);break;case"s":bt=Nt(_e.Seconds,1);break;case"ss":bt=Nt(_e.Seconds,2);break;case"S":bt=Nt(_e.FractionalSeconds,1);break;case"SS":bt=Nt(_e.FractionalSeconds,2);break;case"SSS":bt=Nt(_e.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":bt=et(ve.Short);break;case"ZZZZZ":bt=et(ve.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":bt=et(ve.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":bt=et(ve.Long);break;default:return null}return Te[xe]=bt,bt}(pr);wr+=Fn?Fn(Zt,Ye,Kn):"''"===pr?"'":pr.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),wr}function je(xe,bt,Ye){const gt=new Date(0);return gt.setFullYear(xe,bt,Ye),gt.setHours(0,0,0),gt}function vt(xe,bt){const Ye=function d(xe){return(0,e.H5H)(xe)[e.KH2.LocaleId]}(xe);if(dt[Ye]??={},dt[Ye][bt])return dt[Ye][bt];let gt="";switch(bt){case"shortDate":gt=z(xe,n.Short);break;case"mediumDate":gt=z(xe,n.Medium);break;case"longDate":gt=z(xe,n.Long);break;case"fullDate":gt=z(xe,n.Full);break;case"shortTime":gt=N(xe,n.Short);break;case"mediumTime":gt=N(xe,n.Medium);break;case"longTime":gt=N(xe,n.Long);break;case"fullTime":gt=N(xe,n.Full);break;case"short":const Zt=vt(xe,"shortTime"),Si=vt(xe,"shortDate");gt=$e(q(xe,n.Short),[Zt,Si]);break;case"medium":const Ii=vt(xe,"mediumTime"),on=vt(xe,"mediumDate");gt=$e(q(xe,n.Medium),[Ii,on]);break;case"long":const Kn=vt(xe,"longTime"),wr=vt(xe,"longDate");gt=$e(q(xe,n.Long),[Kn,wr]);break;case"full":const pr=vt(xe,"fullTime"),Fn=vt(xe,"fullDate");gt=$e(q(xe,n.Full),[pr,Fn])}return gt&&(dt[Ye][bt]=gt),gt}function $e(xe,bt){return bt&&(xe=xe.replace(/\{([^}]+)}/g,function(Ye,gt){return null!=bt&> in bt?bt[gt]:Ye})),xe}function nt(xe,bt,Ye="-",gt,Zt){let Si="";(xe<0||Zt&&xe<=0)&&(Zt?xe=1-xe:(xe=-xe,Si=Ye));let Ii=String(xe);for(;Ii.length0||on>-Ye)&&(on+=Ye),xe===_e.Hours)0===on&&-12===Ye&&(on=12);else if(xe===_e.FractionalSeconds)return function qt(xe,bt){return nt(xe,3).substring(0,bt)}(on,bt);const Kn=pe(Ii,c.MinusSign);return nt(on,bt,Kn,gt,Zt)}}function jt(xe,bt,Ye=le.Format,gt=!1){return function(Zt,Si){return function Je(xe,bt,Ye,gt,Zt,Si){switch(Ye){case we.Months:return function k(xe,bt,Ye){const gt=(0,e.H5H)(xe),Si=me([gt[e.KH2.MonthsFormat],gt[e.KH2.MonthsStandalone]],bt);return me(Si,Ye)}(bt,Zt,gt)[xe.getMonth()];case we.Days:return function A(xe,bt,Ye){const gt=(0,e.H5H)(xe),Si=me([gt[e.KH2.DaysFormat],gt[e.KH2.DaysStandalone]],bt);return me(Si,Ye)}(bt,Zt,gt)[xe.getDay()];case we.DayPeriods:const Ii=xe.getHours(),on=xe.getMinutes();if(Si){const wr=function he(xe){const bt=(0,e.H5H)(xe);return ae(bt),(bt[e.KH2.ExtraData][2]||[]).map(gt=>"string"==typeof gt?Ee(gt):[Ee(gt[0]),Ee(gt[1])])}(bt),pr=function Ie(xe,bt,Ye){const gt=(0,e.H5H)(xe);ae(gt);const Si=me([gt[e.KH2.ExtraData][0],gt[e.KH2.ExtraData][1]],bt)||[];return me(Si,Ye)||[]}(bt,Zt,gt),Fn=wr.findIndex(Sr=>{if(Array.isArray(Sr)){const[Dn,Fi]=Sr,bn=Ii>=Dn.hours&&on>=Dn.minutes,Tr=Ii0?Math.floor(Zt/60):Math.ceil(Zt/60);switch(xe){case ve.Short:return(Zt>=0?"+":"")+nt(Ii,2,Si)+nt(Math.abs(Zt%60),2,Si);case ve.ShortGMT:return"GMT"+(Zt>=0?"+":"")+nt(Ii,1,Si);case ve.Long:return"GMT"+(Zt>=0?"+":"")+nt(Ii,2,Si)+":"+nt(Math.abs(Zt%60),2,Si);case ve.Extended:return 0===gt?"Z":(Zt>=0?"+":"")+nt(Ii,2,Si)+":"+nt(Math.abs(Zt%60),2,Si);default:throw new Error(`Unknown zone width "${xe}"`)}}}const Ae=0,It=4;function Tt(xe){const bt=xe.getDay(),Ye=0===bt?-3:It-bt;return je(xe.getFullYear(),xe.getMonth(),xe.getDate()+Ye)}function xt(xe,bt=!1){return function(Ye,gt){let Zt;if(bt){const Si=new Date(Ye.getFullYear(),Ye.getMonth(),1).getDay()-1,Ii=Ye.getDate();Zt=1+Math.floor((Ii+Si)/7)}else{const Si=Tt(Ye),Ii=function Qt(xe){const bt=je(xe,Ae,1).getDay();return je(xe,0,1+(bt<=It?It:It+7)-bt)}(Si.getFullYear()),on=Si.getTime()-Ii.getTime();Zt=1+Math.round(on/6048e5)}return nt(Zt,xe,pe(gt,c.MinusSign))}}function Se(xe,bt=!1){return function(Ye,gt){return nt(Tt(Ye).getFullYear(),xe,pe(gt,c.MinusSign),bt)}}const Te={};function Z(xe,bt){xe=xe.replace(/:/g,"");const Ye=Date.parse("Jan 01, 1970 00:00:00 "+xe)/6e4;return isNaN(Ye)?bt:Ye}function Fe(xe){return xe instanceof Date&&!isNaN(xe.valueOf())}const Ge=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function ot(xe){const bt=parseInt(xe);if(isNaN(bt))throw new Error("Invalid integer literal when parsing "+xe);return bt}function Hi(xe,bt){bt=encodeURIComponent(bt);for(const Ye of xe.split(";")){const gt=Ye.indexOf("="),[Zt,Si]=-1==gt?[Ye,""]:[Ye.slice(0,gt),Ye.slice(gt+1)];if(Zt.trim()===bt)return decodeURIComponent(Si)}return null}const Zi=/\s+/,ln=[];let mn=(()=>{class xe{constructor(Ye,gt){this._ngEl=Ye,this._renderer=gt,this.initialClasses=ln,this.stateMap=new Map}set klass(Ye){this.initialClasses=null!=Ye?Ye.trim().split(Zi):ln}set ngClass(Ye){this.rawClass="string"==typeof Ye?Ye.trim().split(Zi):Ye}ngDoCheck(){for(const gt of this.initialClasses)this._updateState(gt,!0);const Ye=this.rawClass;if(Array.isArray(Ye)||Ye instanceof Set)for(const gt of Ye)this._updateState(gt,!0);else if(null!=Ye)for(const gt of Object.keys(Ye))this._updateState(gt,!!Ye[gt]);this._applyStateDiff()}_updateState(Ye,gt){const Zt=this.stateMap.get(Ye);void 0!==Zt?(Zt.enabled!==gt&&(Zt.changed=!0,Zt.enabled=gt),Zt.touched=!0):this.stateMap.set(Ye,{enabled:gt,changed:!0,touched:!0})}_applyStateDiff(){for(const Ye of this.stateMap){const gt=Ye[0],Zt=Ye[1];Zt.changed?(this._toggleClass(gt,Zt.enabled),Zt.changed=!1):Zt.touched||(Zt.enabled&&this._toggleClass(gt,!1),this.stateMap.delete(gt)),Zt.touched=!1}}_toggleClass(Ye,gt){(Ye=Ye.trim()).length>0&&Ye.split(Zi).forEach(Zt=>{gt?this._renderer.addClass(this._ngEl.nativeElement,Zt):this._renderer.removeClass(this._ngEl.nativeElement,Zt)})}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.aKT),e.rXU(e.sFG))}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"},standalone:!0})}}return xe})();class re{constructor(bt,Ye,gt,Zt){this.$implicit=bt,this.ngForOf=Ye,this.index=gt,this.count=Zt}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 He=(()=>{class xe{set ngForOf(Ye){this._ngForOf=Ye,this._ngForOfDirty=!0}set ngForTrackBy(Ye){this._trackByFn=Ye}get ngForTrackBy(){return this._trackByFn}constructor(Ye,gt,Zt){this._viewContainer=Ye,this._template=gt,this._differs=Zt,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForTemplate(Ye){Ye&&(this._template=Ye)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const Ye=this._ngForOf;!this._differ&&Ye&&(this._differ=this._differs.find(Ye).create(this.ngForTrackBy))}if(this._differ){const Ye=this._differ.diff(this._ngForOf);Ye&&this._applyChanges(Ye)}}_applyChanges(Ye){const gt=this._viewContainer;Ye.forEachOperation((Zt,Si,Ii)=>{if(null==Zt.previousIndex)gt.createEmbeddedView(this._template,new re(Zt.item,this._ngForOf,-1,-1),null===Ii?void 0:Ii);else if(null==Ii)gt.remove(null===Si?void 0:Si);else if(null!==Si){const on=gt.get(Si);gt.move(on,Ii),ye(on,Zt)}});for(let Zt=0,Si=gt.length;Zt{ye(gt.get(Zt.currentIndex),Zt)})}static ngTemplateContextGuard(Ye,gt){return!0}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(e._q3))}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0})}}return xe})();function ye(xe,bt){xe.context.$implicit=bt.item}let ht=(()=>{class xe{constructor(Ye,gt){this._viewContainer=Ye,this._context=new ii,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=gt}set ngIf(Ye){this._context.$implicit=this._context.ngIf=Ye,this._updateView()}set ngIfThen(Ye){di("ngIfThen",Ye),this._thenTemplateRef=Ye,this._thenViewRef=null,this._updateView()}set ngIfElse(Ye){di("ngIfElse",Ye),this._elseTemplateRef=Ye,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 ngTemplateContextGuard(Ye,gt){return!0}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.c1b),e.rXU(e.C4Q))}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0})}}return xe})();class ii{constructor(){this.$implicit=null,this.ngIf=null}}function di(xe,bt){if(bt&&!bt.createEmbeddedView)throw new Error(`${xe} must be a TemplateRef, but received '${(0,e.Tbb)(bt)}'.`)}class Gi{constructor(bt,Ye){this._viewContainerRef=bt,this._templateRef=Ye,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(bt){bt&&!this._created?this.create():!bt&&this._created&&this.destroy()}}let Cn=(()=>{class xe{constructor(){this._defaultViews=[],this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(Ye){this._ngSwitch=Ye,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(Ye){this._defaultViews.push(Ye)}_matchCase(Ye){const gt=Ye===this._ngSwitch;return this._lastCasesMatched||=gt,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),gt}_updateDefaultCases(Ye){if(this._defaultViews.length>0&&Ye!==this._defaultUsed){this._defaultUsed=Ye;for(const gt of this._defaultViews)gt.enforceState(Ye)}}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"},standalone:!0})}}return xe})(),Hn=(()=>{class xe{constructor(Ye,gt,Zt){this.ngSwitch=Zt,Zt._addCase(),this._view=new Gi(Ye,gt)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Cn,9))}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"},standalone:!0})}}return xe})(),Qn=(()=>{class xe{constructor(Ye,gt,Zt){Zt._addDefault(new Gi(Ye,gt))}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Cn,9))}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngSwitchDefault",""]],standalone:!0})}}return xe})(),Ai=(()=>{class xe{constructor(Ye,gt,Zt){this._ngEl=Ye,this._differs=gt,this._renderer=Zt,this._ngStyle=null,this._differ=null}set ngStyle(Ye){this._ngStyle=Ye,!this._differ&&Ye&&(this._differ=this._differs.find(Ye).create())}ngDoCheck(){if(this._differ){const Ye=this._differ.diff(this._ngStyle);Ye&&this._applyChanges(Ye)}}_setStyle(Ye,gt){const[Zt,Si]=Ye.split("."),Ii=-1===Zt.indexOf("-")?void 0:e.czy.DashCase;null!=gt?this._renderer.setStyle(this._ngEl.nativeElement,Zt,Si?`${gt}${Si}`:gt,Ii):this._renderer.removeStyle(this._ngEl.nativeElement,Zt,Ii)}_applyChanges(Ye){Ye.forEachRemovedItem(gt=>this._setStyle(gt.key,null)),Ye.forEachAddedItem(gt=>this._setStyle(gt.key,gt.currentValue)),Ye.forEachChangedItem(gt=>this._setStyle(gt.key,gt.currentValue))}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.aKT),e.rXU(e.MKu),e.rXU(e.sFG))}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0})}}return xe})(),Yi=(()=>{class xe{constructor(Ye){this._viewContainerRef=Ye,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(Ye){if(this._shouldRecreateView(Ye)){const gt=this._viewContainerRef;if(this._viewRef&>.remove(gt.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const Zt=this._createContextForwardProxy();this._viewRef=gt.createEmbeddedView(this.ngTemplateOutlet,Zt,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(Ye){return!!Ye.ngTemplateOutlet||!!Ye.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(Ye,gt,Zt)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,gt,Zt),get:(Ye,gt,Zt)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,gt,Zt)}})}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.c1b))}}static{this.\u0275dir=e.FsC({type:xe,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[e.OA$]})}}return xe})();function mi(xe,bt){return new e.wOt(2100,!1)}class gi{createSubscription(bt,Ye){return(0,e.O8t)(()=>bt.subscribe({next:Ye,error:gt=>{throw gt}}))}dispose(bt){(0,e.O8t)(()=>bt.unsubscribe())}}class xi{createSubscription(bt,Ye){return bt.then(Ye,gt=>{throw gt})}dispose(bt){}}const Ni=new xi,nn=new gi;let On=(()=>{class xe{constructor(Ye){this._latestValue=null,this.markForCheckOnValueUpdate=!0,this._subscription=null,this._obj=null,this._strategy=null,this._ref=Ye}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(Ye){if(!this._obj){if(Ye)try{this.markForCheckOnValueUpdate=!1,this._subscribe(Ye)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return Ye!==this._obj?(this._dispose(),this.transform(Ye)):this._latestValue}_subscribe(Ye){this._obj=Ye,this._strategy=this._selectStrategy(Ye),this._subscription=this._strategy.createSubscription(Ye,gt=>this._updateLatestValue(Ye,gt))}_selectStrategy(Ye){if((0,e.jNT)(Ye))return Ni;if((0,e.zjR)(Ye))return nn;throw mi()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(Ye,gt){Ye===this._obj&&(this._latestValue=gt,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.gRc,16))}}static{this.\u0275pipe=e.EJ8({name:"async",type:xe,pure:!1,standalone:!0})}}return xe})(),ir=(()=>{class xe{transform(Ye){if(null==Ye)return null;if("string"!=typeof Ye)throw mi();return Ye.toLowerCase()}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275pipe=e.EJ8({name:"lowercase",type:xe,pure:!0,standalone:!0})}}return xe})();const gn=/(?:[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 Xr=(()=>{class xe{transform(Ye){if(null==Ye)return null;if("string"!=typeof Ye)throw mi();return Ye.replace(gn,gt=>gt[0].toUpperCase()+gt.slice(1).toLowerCase())}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275pipe=e.EJ8({name:"titlecase",type:xe,pure:!0,standalone:!0})}}return xe})(),fr=(()=>{class xe{transform(Ye){if(null==Ye)return null;if("string"!=typeof Ye)throw mi();return Ye.toUpperCase()}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275pipe=e.EJ8({name:"uppercase",type:xe,pure:!0,standalone:!0})}}return xe})();const wa=new e.nKC(""),Xa=new e.nKC("");let ds=(()=>{class xe{constructor(Ye,gt,Zt){this.locale=Ye,this.defaultTimezone=gt,this.defaultOptions=Zt}transform(Ye,gt,Zt,Si){if(null==Ye||""===Ye||Ye!=Ye)return null;try{return Ue(Ye,gt??this.defaultOptions?.dateFormat??"mediumDate",Si||this.locale,Zt??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(Ii){throw mi()}}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.xe9,16),e.rXU(wa,24),e.rXU(Xa,24))}}static{this.\u0275pipe=e.EJ8({name:"date",type:xe,pure:!0,standalone:!0})}}return xe})(),Ds=(()=>{class xe{transform(Ye){return JSON.stringify(Ye,null,2)}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275pipe=e.EJ8({name:"json",type:xe,pure:!1,standalone:!0})}}return xe})(),hs=(()=>{class xe{constructor(Ye){this.differs=Ye,this.keyValues=[],this.compareFn=za}transform(Ye,gt=za){if(!Ye||!(Ye instanceof Map)&&"object"!=typeof Ye)return null;this.differ??=this.differs.find(Ye).create();const Zt=this.differ.diff(Ye),Si=gt!==this.compareFn;return Zt&&(this.keyValues=[],Zt.forEachItem(Ii=>{this.keyValues.push(function Or(xe,bt){return{key:xe,value:bt}}(Ii.key,Ii.currentValue))})),(Zt||Si)&&(this.keyValues.sort(gt),this.compareFn=gt),this.keyValues}static{this.\u0275fac=function(gt){return new(gt||xe)(e.rXU(e.MKu,16))}}static{this.\u0275pipe=e.EJ8({name:"keyvalue",type:xe,pure:!1,standalone:!0})}}return xe})();function za(xe,bt){const Ye=xe.key,gt=bt.key;if(Ye===gt)return 0;if(void 0===Ye)return 1;if(void 0===gt)return-1;if(null===Ye)return 1;if(null===gt)return-1;if("string"==typeof Ye&&"string"==typeof gt)return Ye{class xe{constructor(Ye){this._locale=Ye}transform(Ye,gt,Zt){if(!function Ya(xe){return!(null==xe||""===xe||xe!=xe)}(Ye))return null;Zt||=this._locale;try{return function Vi(xe,bt,Ye){return function fi(xe,bt,Ye,gt,Zt,Si,Ii=!1){let on="",Kn=!1;if(isFinite(xe)){let wr=function St(xe){let gt,Zt,Si,Ii,on,bt=Math.abs(xe)+"",Ye=0;for((Zt=bt.indexOf("."))>-1&&(bt=bt.replace(".","")),(Si=bt.search(/e/i))>0?(Zt<0&&(Zt=Si),Zt+=+bt.slice(Si+1),bt=bt.substring(0,Si)):Zt<0&&(Zt=bt.length),Si=0;"0"===bt.charAt(Si);Si++);if(Si===(on=bt.length))gt=[0],Zt=1;else{for(on--;"0"===bt.charAt(on);)on--;for(Zt-=Si,gt=[],Ii=0;Si<=on;Si++,Ii++)gt[Ii]=Number(bt.charAt(Si))}return Zt>22&&(gt=gt.splice(0,21),Ye=Zt-1,Zt=1),{digits:gt,exponent:Ye,integerLen:Zt}}(xe);Ii&&(wr=function Xt(xe){if(0===xe.digits[0])return xe;const bt=xe.digits.length-xe.integerLen;return xe.exponent?xe.exponent+=2:(0===bt?xe.digits.push(0,0):1===bt&&xe.digits.push(0),xe.integerLen+=2),xe}(wr));let pr=bt.minInt,Fn=bt.minFrac,Sr=bt.maxFrac;if(Si){const ra=Si.match(Ge);if(null===ra)throw new Error(`${Si} is not a valid digit info`);const Ja=ra[1],oo=ra[3],hr=ra[5];null!=Ja&&(pr=ot(Ja)),null!=oo&&(Fn=ot(oo)),null!=hr?Sr=ot(hr):null!=oo&&Fn>Sr&&(Sr=Fn)}!function tt(xe,bt,Ye){if(bt>Ye)throw new Error(`The minimum number of digits after fraction (${bt}) is higher than the maximum (${Ye}).`);let gt=xe.digits,Zt=gt.length-xe.integerLen;const Si=Math.min(Math.max(bt,Zt),Ye);let Ii=Si+xe.integerLen,on=gt[Ii];if(Ii>0){gt.splice(Math.max(xe.integerLen,Ii));for(let Fn=Ii;Fn=5)if(Ii-1<0){for(let Fn=0;Fn>Ii;Fn--)gt.unshift(0),xe.integerLen++;gt.unshift(1),xe.integerLen++}else gt[Ii-1]++;for(;Zt=wr?Fi.pop():Kn=!1),Sr>=10?1:0},0);pr&&(gt.unshift(pr),xe.integerLen++)}(wr,Fn,Sr);let Dn=wr.digits,Fi=wr.integerLen;const bn=wr.exponent;let Tr=[];for(Kn=Dn.every(ra=>!ra);Fi0?Tr=Dn.splice(Fi,Dn.length):(Tr=Dn,Dn=[0]);const va=[];for(Dn.length>=bt.lgSize&&va.unshift(Dn.splice(-bt.lgSize,Dn.length).join(""));Dn.length>bt.gSize;)va.unshift(Dn.splice(-bt.gSize,Dn.length).join(""));Dn.length&&va.unshift(Dn.join("")),on=va.join(pe(Ye,gt)),Tr.length&&(on+=pe(Ye,Zt)+Tr.join("")),bn&&(on+=pe(Ye,c.Exponential)+"+"+bn)}else on=pe(Ye,c.Infinity);return on=xe<0&&!Kn?bt.negPre+on+bt.negSuf:bt.posPre+on+bt.posSuf,on}(xe,function Qi(xe,bt="-"){const Ye={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},gt=xe.split(";"),Zt=gt[0],Si=gt[1],Ii=-1!==Zt.indexOf(".")?Zt.split("."):[Zt.substring(0,Zt.lastIndexOf("0")+1),Zt.substring(Zt.lastIndexOf("0")+1)],on=Ii[0],Kn=Ii[1]||"";Ye.posPre=on.substring(0,on.indexOf("#"));for(let pr=0;pr{class xe{transform(Ye,gt,Zt){if(null==Ye)return null;if(!this.supports(Ye))throw mi();return Ye.slice(gt,Zt)}supports(Ye){return"string"==typeof Ye||Array.isArray(Ye)}static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275pipe=e.EJ8({name:"slice",type:xe,pure:!1,standalone:!0})}}return xe})(),Do=(()=>{class xe{static{this.\u0275fac=function(gt){return new(gt||xe)}}static{this.\u0275mod=e.$C({type:xe})}static{this.\u0275inj=e.G2t({})}}return xe})();const Ba="browser",Ao="server";function ea(xe){return xe===Ba}function _o(xe){return xe===Ao}let ko=(()=>{class xe{static{this.\u0275prov=(0,e.jDH)({token:xe,providedIn:"root",factory:()=>ea((0,e.WQX)(e.Agw))?new fo((0,e.WQX)(f),window):new zr})}}return xe})();class fo{constructor(bt,Ye){this.document=bt,this.window=Ye,this.offset=()=>[0,0]}setOffset(bt){this.offset=Array.isArray(bt)?()=>bt:bt}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(bt){this.window.scrollTo(bt[0],bt[1])}scrollToAnchor(bt){const Ye=function vo(xe,bt){const Ye=xe.getElementById(bt)||xe.getElementsByName(bt)[0];if(Ye)return Ye;if("function"==typeof xe.createTreeWalker&&xe.body&&"function"==typeof xe.body.attachShadow){const gt=xe.createTreeWalker(xe.body,NodeFilter.SHOW_ELEMENT);let Zt=gt.currentNode;for(;Zt;){const Si=Zt.shadowRoot;if(Si){const Ii=Si.getElementById(bt)||Si.querySelector(`[name="${bt}"]`);if(Ii)return Ii}Zt=gt.nextNode()}}return null}(this.document,bt);Ye&&(this.scrollToElement(Ye),Ye.focus())}setHistoryScrollRestoration(bt){this.window.history.scrollRestoration=bt}scrollToElement(bt){const Ye=bt.getBoundingClientRect(),gt=Ye.left+this.window.pageXOffset,Zt=Ye.top+this.window.pageYOffset,Si=this.offset();this.window.scrollTo(gt-Si[0],Zt-Si[1])}}class zr{setOffset(bt){}getScrollPosition(){return[0,0]}scrollToPosition(bt){}scrollToAnchor(bt){}setHistoryScrollRestoration(bt){}}class Ea{}},1626:(Qe,te,g)=>{"use strict";g.d(te,{Nl:()=>fe,Qq:()=>q,a7:()=>st,q1:()=>Kt});var e=g(467),t=g(4438),x=g(7673),D=g(1985),l=g(2806),w=g(274),f=g(5964),R=g(6354),h=g(980),S=g(5558),y=g(177);class O{}class I{}class V{constructor(re){this.normalizedNames=new Map,this.lazyUpdate=null,re?"string"==typeof re?this.lazyInit=()=>{this.headers=new Map,re.split("\n").forEach(He=>{const ye=He.indexOf(":");if(ye>0){const rt=He.slice(0,ye),ht=rt.toLowerCase(),ii=He.slice(ye+1).trim();this.maybeSetNormalizedName(rt,ht),this.headers.has(ht)?this.headers.get(ht).push(ii):this.headers.set(ht,[ii])}})}:typeof Headers<"u"&&re instanceof Headers?(this.headers=new Map,re.forEach((He,ye)=>{this.setHeaderEntries(ye,He)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(re).forEach(([He,ye])=>{this.setHeaderEntries(He,ye)})}:this.headers=new Map}has(re){return this.init(),this.headers.has(re.toLowerCase())}get(re){this.init();const He=this.headers.get(re.toLowerCase());return He&&He.length>0?He[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(re){return this.init(),this.headers.get(re.toLowerCase())||null}append(re,He){return this.clone({name:re,value:He,op:"a"})}set(re,He){return this.clone({name:re,value:He,op:"s"})}delete(re,He){return this.clone({name:re,value:He,op:"d"})}maybeSetNormalizedName(re,He){this.normalizedNames.has(He)||this.normalizedNames.set(He,re)}init(){this.lazyInit&&(this.lazyInit instanceof V?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(re=>this.applyUpdate(re)),this.lazyUpdate=null))}copyFrom(re){re.init(),Array.from(re.headers.keys()).forEach(He=>{this.headers.set(He,re.headers.get(He)),this.normalizedNames.set(He,re.normalizedNames.get(He))})}clone(re){const He=new V;return He.lazyInit=this.lazyInit&&this.lazyInit instanceof V?this.lazyInit:this,He.lazyUpdate=(this.lazyUpdate||[]).concat([re]),He}applyUpdate(re){const He=re.name.toLowerCase();switch(re.op){case"a":case"s":let ye=re.value;if("string"==typeof ye&&(ye=[ye]),0===ye.length)return;this.maybeSetNormalizedName(re.name,He);const rt=("a"===re.op?this.headers.get(He):void 0)||[];rt.push(...ye),this.headers.set(He,rt);break;case"d":const ht=re.value;if(ht){let ii=this.headers.get(He);if(!ii)return;ii=ii.filter(di=>-1===ht.indexOf(di)),0===ii.length?(this.headers.delete(He),this.normalizedNames.delete(He)):this.headers.set(He,ii)}else this.headers.delete(He),this.normalizedNames.delete(He)}}setHeaderEntries(re,He){const ye=(Array.isArray(He)?He:[He]).map(ht=>ht.toString()),rt=re.toLowerCase();this.headers.set(rt,ye),this.maybeSetNormalizedName(re,rt)}forEach(re){this.init(),Array.from(this.normalizedNames.keys()).forEach(He=>re(this.normalizedNames.get(He),this.headers.get(He)))}}class Y{encodeKey(re){return ie(re)}encodeValue(re){return ie(re)}decodeKey(re){return decodeURIComponent(re)}decodeValue(re){return decodeURIComponent(re)}}const Q=/%(\d[a-f0-9])/gi,J={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ie(lt){return encodeURIComponent(lt).replace(Q,(re,He)=>J[He]??re)}function ee(lt){return`${lt}`}class fe{constructor(re={}){if(this.updates=null,this.cloneFrom=null,this.encoder=re.encoder||new Y,re.fromString){if(re.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function W(lt,re){const He=new Map;return lt.length>0&<.replace(/^\?/,"").split("&").forEach(rt=>{const ht=rt.indexOf("="),[ii,di]=-1==ht?[re.decodeKey(rt),""]:[re.decodeKey(rt.slice(0,ht)),re.decodeValue(rt.slice(ht+1))],Gi=He.get(ii)||[];Gi.push(di),He.set(ii,Gi)}),He}(re.fromString,this.encoder)}else re.fromObject?(this.map=new Map,Object.keys(re.fromObject).forEach(He=>{const ye=re.fromObject[He],rt=Array.isArray(ye)?ye.map(ee):[ee(ye)];this.map.set(He,rt)})):this.map=null}has(re){return this.init(),this.map.has(re)}get(re){this.init();const He=this.map.get(re);return He?He[0]:null}getAll(re){return this.init(),this.map.get(re)||null}keys(){return this.init(),Array.from(this.map.keys())}append(re,He){return this.clone({param:re,value:He,op:"a"})}appendAll(re){const He=[];return Object.keys(re).forEach(ye=>{const rt=re[ye];Array.isArray(rt)?rt.forEach(ht=>{He.push({param:ye,value:ht,op:"a"})}):He.push({param:ye,value:rt,op:"a"})}),this.clone(He)}set(re,He){return this.clone({param:re,value:He,op:"s"})}delete(re,He){return this.clone({param:re,value:He,op:"d"})}toString(){return this.init(),this.keys().map(re=>{const He=this.encoder.encodeKey(re);return this.map.get(re).map(ye=>He+"="+this.encoder.encodeValue(ye)).join("&")}).filter(re=>""!==re).join("&")}clone(re){const He=new fe({encoder:this.encoder});return He.cloneFrom=this.cloneFrom||this,He.updates=(this.updates||[]).concat(re),He}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(re=>this.map.set(re,this.cloneFrom.map.get(re))),this.updates.forEach(re=>{switch(re.op){case"a":case"s":const He=("a"===re.op?this.map.get(re.param):void 0)||[];He.push(ee(re.value)),this.map.set(re.param,He);break;case"d":if(void 0===re.value){this.map.delete(re.param);break}{let ye=this.map.get(re.param)||[];const rt=ye.indexOf(ee(re.value));-1!==rt&&ye.splice(rt,1),ye.length>0?this.map.set(re.param,ye):this.map.delete(re.param)}}}),this.cloneFrom=this.updates=null)}}class Me{constructor(){this.map=new Map}set(re,He){return this.map.set(re,He),this}get(re){return this.map.has(re)||this.map.set(re,re.defaultValue()),this.map.get(re)}delete(re){return this.map.delete(re),this}has(re){return this.map.has(re)}keys(){return this.map.keys()}}function le(lt){return typeof ArrayBuffer<"u"&< instanceof ArrayBuffer}function T(lt){return typeof Blob<"u"&< instanceof Blob}function n(lt){return typeof FormData<"u"&< instanceof FormData}class m{constructor(re,He,ye,rt){let ht;if(this.url=He,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=re.toUpperCase(),function Ce(lt){switch(lt){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||rt?(this.body=void 0!==ye?ye:null,ht=rt):ht=ye,ht&&(this.reportProgress=!!ht.reportProgress,this.withCredentials=!!ht.withCredentials,ht.responseType&&(this.responseType=ht.responseType),ht.headers&&(this.headers=ht.headers),ht.context&&(this.context=ht.context),ht.params&&(this.params=ht.params),this.transferCache=ht.transferCache),this.headers??=new V,this.context??=new Me,this.params){const ii=this.params.toString();if(0===ii.length)this.urlWithParams=He;else{const di=He.indexOf("?");this.urlWithParams=He+(-1===di?"?":diJn.set(nr,re.setHeaders[nr]),Cn)),re.setParams&&(Hn=Object.keys(re.setParams).reduce((Jn,nr)=>Jn.set(nr,re.setParams[nr]),Hn)),new m(He,ye,ii,{params:Hn,headers:Cn,context:Qn,reportProgress:Gi,responseType:rt,withCredentials:di,transferCache:ht})}}var d=function(lt){return lt[lt.Sent=0]="Sent",lt[lt.UploadProgress=1]="UploadProgress",lt[lt.ResponseHeader=2]="ResponseHeader",lt[lt.DownloadProgress=3]="DownloadProgress",lt[lt.Response=4]="Response",lt[lt.User=5]="User",lt}(d||{});class C{constructor(re,He=200,ye="OK"){this.headers=re.headers||new V,this.status=void 0!==re.status?re.status:He,this.statusText=re.statusText||ye,this.url=re.url||null,this.ok=this.status>=200&&this.status<300}}class A extends C{constructor(re={}){super(re),this.type=d.ResponseHeader}clone(re={}){return new A({headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class k extends C{constructor(re={}){super(re),this.type=d.Response,this.body=void 0!==re.body?re.body:null}clone(re={}){return new k({body:void 0!==re.body?re.body:this.body,headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class _ extends C{constructor(re){super(re,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${re.url||"(unknown url)"}`:`Http failure response for ${re.url||"(unknown url)"}: ${re.status} ${re.statusText}`,this.error=re.error||null}}function N(lt,re){return{body:re,headers:lt.headers,context:lt.context,observe:lt.observe,params:lt.params,reportProgress:lt.reportProgress,responseType:lt.responseType,withCredentials:lt.withCredentials,transferCache:lt.transferCache}}let q=(()=>{class lt{constructor(He){this.handler=He}request(He,ye,rt={}){let ht;if(He instanceof m)ht=He;else{let Gi,Cn;Gi=rt.headers instanceof V?rt.headers:new V(rt.headers),rt.params&&(Cn=rt.params instanceof fe?rt.params:new fe({fromObject:rt.params})),ht=new m(He,ye,void 0!==rt.body?rt.body:null,{headers:Gi,context:rt.context,params:Cn,reportProgress:rt.reportProgress,responseType:rt.responseType||"json",withCredentials:rt.withCredentials,transferCache:rt.transferCache})}const ii=(0,x.of)(ht).pipe((0,w.H)(Gi=>this.handler.handle(Gi)));if(He instanceof m||"events"===rt.observe)return ii;const di=ii.pipe((0,f.p)(Gi=>Gi instanceof k));switch(rt.observe||"body"){case"body":switch(ht.responseType){case"arraybuffer":return di.pipe((0,R.T)(Gi=>{if(null!==Gi.body&&!(Gi.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return Gi.body}));case"blob":return di.pipe((0,R.T)(Gi=>{if(null!==Gi.body&&!(Gi.body instanceof Blob))throw new Error("Response is not a Blob.");return Gi.body}));case"text":return di.pipe((0,R.T)(Gi=>{if(null!==Gi.body&&"string"!=typeof Gi.body)throw new Error("Response is not a string.");return Gi.body}));default:return di.pipe((0,R.T)(Gi=>Gi.body))}case"response":return di;default:throw new Error(`Unreachable: unhandled observe type ${rt.observe}}`)}}delete(He,ye={}){return this.request("DELETE",He,ye)}get(He,ye={}){return this.request("GET",He,ye)}head(He,ye={}){return this.request("HEAD",He,ye)}jsonp(He,ye){return this.request("JSONP",He,{params:(new fe).append(ye,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(He,ye={}){return this.request("OPTIONS",He,ye)}patch(He,ye,rt={}){return this.request("PATCH",He,N(rt,ye))}post(He,ye,rt={}){return this.request("POST",He,N(rt,ye))}put(He,ye,rt={}){return this.request("PUT",He,N(rt,ye))}static{this.\u0275fac=function(ye){return new(ye||lt)(t.KVO(O))}}static{this.\u0275prov=t.jDH({token:lt,factory:lt.\u0275fac})}}return lt})();const pe=/^\)\]\}',?\n/;function Xe(lt){if(lt.url)return lt.url;const re="X-Request-URL".toLocaleLowerCase();return lt.headers.get(re)}let We=(()=>{class lt{constructor(){this.fetchImpl=(0,t.WQX)(oe,{optional:!0})?.fetch??((...He)=>globalThis.fetch(...He)),this.ngZone=(0,t.WQX)(t.SKi)}handle(He){return new D.c(ye=>{const rt=new AbortController;return this.doRequest(He,rt.signal,ye).then(X,ht=>ye.error(new _({error:ht}))),()=>rt.abort()})}doRequest(He,ye,rt){var ht=this;return(0,e.A)(function*(){const ii=ht.createRequestInit(He);let di;try{const dr=ht.ngZone.runOutsideAngular(()=>ht.fetchImpl(He.urlWithParams,{signal:ye,...ii}));(function se(lt){lt.then(X,X)})(dr),rt.next({type:d.Sent}),di=yield dr}catch(dr){return void rt.error(new _({error:dr,status:dr.status??0,statusText:dr.statusText,url:He.urlWithParams,headers:dr.headers}))}const Gi=new V(di.headers),Cn=di.statusText,Hn=Xe(di)??He.urlWithParams;let Qn=di.status,Jn=null;if(He.reportProgress&&rt.next(new A({headers:Gi,status:Qn,statusText:Cn,url:Hn})),di.body){const dr=di.headers.get("content-length"),wn=[],Ai=di.body.getReader();let Ft,mi,Yi=0;const gi=typeof Zone<"u"&&Zone.current;yield ht.ngZone.runOutsideAngular((0,e.A)(function*(){for(;;){const{done:Ni,value:nn}=yield Ai.read();if(Ni)break;if(wn.push(nn),Yi+=nn.length,He.reportProgress){mi="text"===He.responseType?(mi??"")+(Ft??=new TextDecoder).decode(nn,{stream:!0}):void 0;const On=()=>rt.next({type:d.DownloadProgress,total:dr?+dr:void 0,loaded:Yi,partialText:mi});gi?gi.run(On):On()}}}));const xi=ht.concatChunks(wn,Yi);try{const Ni=di.headers.get("Content-Type")??"";Jn=ht.parseBody(He,xi,Ni)}catch(Ni){return void rt.error(new _({error:Ni,headers:new V(di.headers),status:di.status,statusText:di.statusText,url:Xe(di)??He.urlWithParams}))}}0===Qn&&(Qn=Jn?200:0),Qn>=200&&Qn<300?(rt.next(new k({body:Jn,headers:Gi,status:Qn,statusText:Cn,url:Hn})),rt.complete()):rt.error(new _({error:Jn,headers:Gi,status:Qn,statusText:Cn,url:Hn}))})()}parseBody(He,ye,rt){switch(He.responseType){case"json":const ht=(new TextDecoder).decode(ye).replace(pe,"");return""===ht?null:JSON.parse(ht);case"text":return(new TextDecoder).decode(ye);case"blob":return new Blob([ye],{type:rt});case"arraybuffer":return ye.buffer}}createRequestInit(He){const ye={},rt=He.withCredentials?"include":void 0;if(He.headers.forEach((ht,ii)=>ye[ht]=ii.join(",")),He.headers.has("Accept")||(ye.Accept="application/json, text/plain, */*"),!He.headers.has("Content-Type")){const ht=He.detectContentTypeHeader();null!==ht&&(ye["Content-Type"]=ht)}return{body:He.serializeBody(),method:He.method,headers:ye,credentials:rt}}concatChunks(He,ye){const rt=new Uint8Array(ye);let ht=0;for(const ii of He)rt.set(ii,ht),ht+=ii.length;return rt}static{this.\u0275fac=function(ye){return new(ye||lt)}}static{this.\u0275prov=t.jDH({token:lt,factory:lt.\u0275fac})}}return lt})();class oe{}function X(){}function ae(lt,re){return re(lt)}function he(lt,re){return(He,ye)=>re.intercept(He,{handle:rt=>lt(rt,ye)})}const st=new t.nKC(""),me=new t.nKC(""),Ee=new t.nKC(""),ue=new t.nKC("",{providedIn:"root",factory:()=>!0});function Be(){let lt=null;return(re,He)=>{null===lt&&(lt=((0,t.WQX)(st,{optional:!0})??[]).reduceRight(he,ae));const ye=(0,t.WQX)(t.TgB);if((0,t.WQX)(ue)){const ht=ye.add();return lt(re,He).pipe((0,h.j)(()=>ye.remove(ht)))}return lt(re,He)}}let dt=(()=>{class lt extends O{constructor(He,ye){super(),this.backend=He,this.injector=ye,this.chain=null,this.pendingTasks=(0,t.WQX)(t.TgB),this.contributeToStability=(0,t.WQX)(ue)}handle(He){if(null===this.chain){const ye=Array.from(new Set([...this.injector.get(me),...this.injector.get(Ee,[])]));this.chain=ye.reduceRight((rt,ht)=>function Ie(lt,re,He){return(ye,rt)=>(0,t.N4e)(He,()=>re(ye,ht=>lt(ht,rt)))}(rt,ht,this.injector),ae)}if(this.contributeToStability){const ye=this.pendingTasks.add();return this.chain(He,rt=>this.backend.handle(rt)).pipe((0,h.j)(()=>this.pendingTasks.remove(ye)))}return this.chain(He,ye=>this.backend.handle(ye))}static{this.\u0275fac=function(ye){return new(ye||lt)(t.KVO(I),t.KVO(t.uvJ))}}static{this.\u0275prov=t.jDH({token:lt,factory:lt.\u0275fac})}}return lt})();const yt=/^\)\]\}',?\n/;let Je=(()=>{class lt{constructor(He){this.xhrFactory=He}handle(He){if("JSONP"===He.method)throw new t.wOt(-2800,!1);const ye=this.xhrFactory;return(ye.\u0275loadImpl?(0,l.H)(ye.\u0275loadImpl()):(0,x.of)(null)).pipe((0,S.n)(()=>new D.c(ht=>{const ii=ye.build();if(ii.open(He.method,He.urlWithParams),He.withCredentials&&(ii.withCredentials=!0),He.headers.forEach((wn,Ai)=>ii.setRequestHeader(wn,Ai.join(","))),He.headers.has("Accept")||ii.setRequestHeader("Accept","application/json, text/plain, */*"),!He.headers.has("Content-Type")){const wn=He.detectContentTypeHeader();null!==wn&&ii.setRequestHeader("Content-Type",wn)}if(He.responseType){const wn=He.responseType.toLowerCase();ii.responseType="json"!==wn?wn:"text"}const di=He.serializeBody();let Gi=null;const Cn=()=>{if(null!==Gi)return Gi;const wn=ii.statusText||"OK",Ai=new V(ii.getAllResponseHeaders()),Yi=function jt(lt){return"responseURL"in lt&<.responseURL?lt.responseURL:/^X-Request-URL:/m.test(lt.getAllResponseHeaders())?lt.getResponseHeader("X-Request-URL"):null}(ii)||He.url;return Gi=new A({headers:Ai,status:ii.status,statusText:wn,url:Yi}),Gi},Hn=()=>{let{headers:wn,status:Ai,statusText:Yi,url:Ft}=Cn(),mi=null;204!==Ai&&(mi=typeof ii.response>"u"?ii.responseText:ii.response),0===Ai&&(Ai=mi?200:0);let gi=Ai>=200&&Ai<300;if("json"===He.responseType&&"string"==typeof mi){const xi=mi;mi=mi.replace(yt,"");try{mi=""!==mi?JSON.parse(mi):null}catch(Ni){mi=xi,gi&&(gi=!1,mi={error:Ni,text:mi})}}gi?(ht.next(new k({body:mi,headers:wn,status:Ai,statusText:Yi,url:Ft||void 0})),ht.complete()):ht.error(new _({error:mi,headers:wn,status:Ai,statusText:Yi,url:Ft||void 0}))},Qn=wn=>{const{url:Ai}=Cn(),Yi=new _({error:wn,status:ii.status||0,statusText:ii.statusText||"Unknown Error",url:Ai||void 0});ht.error(Yi)};let Jn=!1;const nr=wn=>{Jn||(ht.next(Cn()),Jn=!0);let Ai={type:d.DownloadProgress,loaded:wn.loaded};wn.lengthComputable&&(Ai.total=wn.total),"text"===He.responseType&&ii.responseText&&(Ai.partialText=ii.responseText),ht.next(Ai)},dr=wn=>{let Ai={type:d.UploadProgress,loaded:wn.loaded};wn.lengthComputable&&(Ai.total=wn.total),ht.next(Ai)};return ii.addEventListener("load",Hn),ii.addEventListener("error",Qn),ii.addEventListener("timeout",Qn),ii.addEventListener("abort",Qn),He.reportProgress&&(ii.addEventListener("progress",nr),null!==di&&ii.upload&&ii.upload.addEventListener("progress",dr)),ii.send(di),ht.next({type:d.Sent}),()=>{ii.removeEventListener("error",Qn),ii.removeEventListener("abort",Qn),ii.removeEventListener("load",Hn),ii.removeEventListener("timeout",Qn),He.reportProgress&&(ii.removeEventListener("progress",nr),null!==di&&ii.upload&&ii.upload.removeEventListener("progress",dr)),ii.readyState!==ii.DONE&&ii.abort()}})))}static{this.\u0275fac=function(ye){return new(ye||lt)(t.KVO(y.N0))}}static{this.\u0275prov=t.jDH({token:lt,factory:lt.\u0275fac})}}return lt})();const et=new t.nKC(""),It=new t.nKC("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),Tt=new t.nKC("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class xt{}let Se=(()=>{class lt{constructor(He,ye,rt){this.doc=He,this.platform=ye,this.cookieName=rt,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const He=this.doc.cookie||"";return He!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,y._b)(He,this.cookieName),this.lastCookieString=He),this.lastToken}static{this.\u0275fac=function(ye){return new(ye||lt)(t.KVO(y.qQ),t.KVO(t.Agw),t.KVO(It))}}static{this.\u0275prov=t.jDH({token:lt,factory:lt.\u0275fac})}}return lt})();function Te(lt,re){const He=lt.url.toLowerCase();if(!(0,t.WQX)(et)||"GET"===lt.method||"HEAD"===lt.method||He.startsWith("http://")||He.startsWith("https://"))return re(lt);const ye=(0,t.WQX)(xt).getToken(),rt=(0,t.WQX)(Tt);return null!=ye&&!lt.headers.has(rt)&&(lt=lt.clone({headers:lt.headers.set(rt,ye)})),re(lt)}var Z=function(lt){return lt[lt.Interceptors=0]="Interceptors",lt[lt.LegacyInterceptors=1]="LegacyInterceptors",lt[lt.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",lt[lt.NoXsrfProtection=3]="NoXsrfProtection",lt[lt.JsonpSupport=4]="JsonpSupport",lt[lt.RequestsMadeViaParent=5]="RequestsMadeViaParent",lt[lt.Fetch=6]="Fetch",lt}(Z||{});function Re(lt,re){return{\u0275kind:lt,\u0275providers:re}}function Pe(...lt){const re=[q,Je,dt,{provide:O,useExisting:dt},{provide:I,useFactory:()=>(0,t.WQX)(We,{optional:!0})??(0,t.WQX)(Je)},{provide:me,useValue:Te,multi:!0},{provide:et,useValue:!0},{provide:xt,useClass:Se}];for(const He of lt)re.push(...He.\u0275providers);return(0,t.EmA)(re)}const Ke=new t.nKC("");let Kt=(()=>{class lt{static{this.\u0275fac=function(ye){return new(ye||lt)}}static{this.\u0275mod=t.$C({type:lt})}static{this.\u0275inj=t.G2t({providers:[Pe(Re(Z.LegacyInterceptors,[{provide:Ke,useFactory:Be},{provide:me,useExisting:Ke,multi:!0}]))]})}}return lt})()},4438:(Qe,te,g)=>{"use strict";function e(i,r){return Object.is(i,r)}g.d(te,{bc$:()=>Lf,iLQ:()=>bp,sZ2:()=>I0,hnV:()=>pv,Hbi:()=>Fw,o8S:()=>fd,BIS:()=>Df,gRc:()=>Av,Ql9:()=>bv,OM3:()=>Rn,Ocv:()=>uw,abz:()=>Gl,Z63:()=>ia,aKT:()=>jl,uvJ:()=>Za,zcH:()=>Ac,bkB:()=>fc,y_5:()=>ko,$GK:()=>gn,nKC:()=>Ut,zZn:()=>Ho,_q3:()=>B8,MKu:()=>V8,xe9:()=>D8,Co$:()=>W6,Vns:()=>f2,SKi:()=>Da,Xx1:()=>fo,Agw:()=>io,PLl:()=>Sf,rOR:()=>Xl,sFG:()=>ya,_9s:()=>Zr,czy:()=>qf,WPN:()=>G,kdw:()=>zr,C4Q:()=>su,NYb:()=>ew,giA:()=>fv,RxE:()=>rv,c1b:()=>$o,gXe:()=>ni,mal:()=>Um,Af3:()=>pn,tdH:()=>C7,L39:()=>aM,EWP:()=>dM,a0P:()=>ZE,Ol2:()=>K6,w6W:()=>Wb,oH4:()=>k8,QZP:()=>mM,Rfq:()=>Se,WQX:()=>hn,naY:()=>xw,Hps:()=>Pm,QuC:()=>ca,EmA:()=>xo,Udg:()=>oM,fpN:()=>G8,HJs:()=>qE,N4e:()=>Oi,vPA:()=>K5,O8t:()=>hb,H3F:()=>b8,H8p:()=>Xs,KH2:()=>Du,TgB:()=>jc,wOt:()=>Be,WHO:()=>w8,e01:()=>uv,lNU:()=>ue,h9k:()=>B,$MX:()=>Vd,ZF7:()=>Bd,Kcf:()=>A4,e5t:()=>k4,UyX:()=>Uf,cWb:()=>Vf,osQ:()=>Gf,H5H:()=>Ag,Zy3:()=>Ct,mq5:()=>T_,JZv:()=>yt,LfX:()=>Mt,plB:()=>Na,jNT:()=>vp,zjR:()=>mv,TL$:()=>Ef,Tbb:()=>It,rcV:()=>rs,Vt3:()=>G6,GFd:()=>j6,OA$:()=>Ll,Jv_:()=>L9,aNF:()=>D9,R7$:()=>tm,BMQ:()=>Ym,HbH:()=>a_,ZvI:()=>Jm,AVh:()=>vg,vxM:()=>v_,wni:()=>o9,VBU:()=>Uo,FsC:()=>vs,jDH:()=>Xt,G2t:()=>tt,$C:()=>Jo,EJ8:()=>Us,rXU:()=>Gd,nrm:()=>Sg,eu8:()=>Tg,bVm:()=>C2,qex:()=>tp,k0s:()=>P3,j41:()=>ep,RV6:()=>E_,xGo:()=>_1,Mr5:()=>Lg,KVO:()=>xr,kS0:()=>v1,QTQ:()=>$p,bIt:()=>Ug,lsd:()=>c9,joV:()=>N2,qSk:()=>sl,XpG:()=>Hg,nI1:()=>U9,bMT:()=>G9,i5U:()=>H9,brH:()=>j9,SdG:()=>cp,NAR:()=>e9,Y8G:()=>pg,FS9:()=>jg,Mz_:()=>lp,FCK:()=>dp,lJ4:()=>s8,eq3:()=>I9,l_i:()=>R9,sMw:()=>O9,mGM:()=>Yg,sdS:()=>$g,Dyx:()=>Mg,Z7z:()=>x_,fX1:()=>b_,Njj:()=>A2,tSv:()=>Hh,eBV:()=>D2,npT:()=>Oe,n$t:()=>Mn,xc7:()=>_g,Kam:()=>sp,zvX:()=>Dg,DNE:()=>Z6,C5r:()=>c8,EFF:()=>qg,JRh:()=>e8,SpI:()=>ku,Lme:()=>t8,E5c:()=>i8,LHq:()=>n8,DH7:()=>M9,mxI:()=>fp,R50:()=>up,GBs:()=>s9});let t=null,x=!1,D=1;const l=Symbol("SIGNAL");function w(i){const r=t;return t=i,r}function f(){return t}const S={version:0,lastCleanEpoch:0,dirty:!1,producerNode:void 0,producerLastReadVersion:void 0,producerIndexOfThis:void 0,nextProducerIndex:0,liveConsumerNode:void 0,liveConsumerIndexOfThis:void 0,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function y(i){if(x)throw new Error("");if(null===t)return;t.consumerOnSignalRead(i);const r=t.nextProducerIndex++;Me(t),ri.nextProducerIndex;)i.producerNode.pop(),i.producerLastReadVersion.pop(),i.producerIndexOfThis.pop()}}function J(i){Me(i);for(let r=0;r0}function Me(i){i.producerNode??=[],i.producerIndexOfThis??=[],i.producerLastReadVersion??=[]}function Ce(i){i.liveConsumerNode??=[],i.liveConsumerIndexOfThis??=[]}function le(i){return void 0!==i.producerNode}const n=Symbol("UNSET"),c=Symbol("COMPUTING"),m=Symbol("ERRORED"),d={...S,value:n,dirty:!0,error:null,equal:e,producerMustRecompute:i=>i.value===n||i.value===c,producerRecomputeValue(i){if(i.value===c)throw new Error("Detected cycle in computations.");const r=i.value;i.value=c;const o=W(i);let p;try{p=i.computation()}catch(E){p=m,i.error=E}finally{Q(i,o)}r!==n&&r!==m&&p!==m&&i.equal(r,p)?i.value=r:(i.value=p,i.version++)}};let A=function C(){throw new Error};function k(){A()}let a=null;function q(i,r){j()||k(),i.equal(i.value,r)||(i.value=r,function We(i){i.version++,function O(){D++}(),V(i),a?.()}(i))}const Xe={...S,equal:e,value:void 0};const X=()=>{},se={...S,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!1,consumerMarkedDirty:i=>{null!==i.schedule&&i.schedule(i.ref)},hasRun:!1,cleanupFn:X};var he=g(4412),Ie=g(1413),st=g(8359),me=g(6354);const ue="https://g.co/ng/security#xss";class Be extends Error{constructor(r,o){super(Ct(r,o)),this.code=r}}function Ct(i,r){return`NG0${Math.abs(i)}${r?": "+r:""}`}function we(i){return{toString:i}.toString()}const je="__parameters__";function qt(i,r,o){return we(()=>{const p=function nt(i){return function(...o){if(i){const p=i(...o);for(const E in p)this[E]=p[E]}}}(r);function E(...P){if(this instanceof E)return p.apply(this,P),this;const $=new E(...P);return de.annotation=$,de;function de(Le,Ze,_t){const zt=Le.hasOwnProperty(je)?Le[je]:Object.defineProperty(Le,je,{value:[]})[je];for(;zt.length<=_t;)zt.push(null);return(zt[_t]=zt[_t]||[]).push($),Le}}return o&&(E.prototype=Object.create(o.prototype)),E.prototype.ngMetadataName=i,E.annotationCls=E,E})}const yt=globalThis;function et(i){for(let r in i)if(i[r]===et)return r;throw Error("Could not find renamed property on target object.")}function Ae(i,r){for(const o in r)r.hasOwnProperty(o)&&!i.hasOwnProperty(o)&&(i[o]=r[o])}function It(i){if("string"==typeof i)return i;if(Array.isArray(i))return"["+i.map(It).join(", ")+"]";if(null==i)return""+i;if(i.overriddenName)return`${i.overriddenName}`;if(i.name)return`${i.name}`;const r=i.toString();if(null==r)return""+r;const o=r.indexOf("\n");return-1===o?r:r.substring(0,o)}function Qt(i,r){return null==i||""===i?null===r?"":r:null==r||""===r?i:i+" "+r}const xt=et({__forward_ref__:et});function Se(i){return i.__forward_ref__=Se,i.toString=function(){return It(this())},i}function Te(i){return ce(i)?i():i}function ce(i){return"function"==typeof i&&i.hasOwnProperty(xt)&&i.__forward_ref__===Se}function Xt(i){return{token:i.token,providedIn:i.providedIn||null,factory:i.factory,value:void 0}}function tt(i){return{providers:i.providers||[],imports:i.imports||[]}}function ot(i){return Bt(i,Hi)||Bt(i,ln)}function Mt(i){return null!==ot(i)}function Bt(i,r){return i.hasOwnProperty(r)?i[r]:null}function Ti(i){return i&&(i.hasOwnProperty(Zi)||i.hasOwnProperty(mn))?i[Zi]:null}const Hi=et({\u0275prov:et}),Zi=et({\u0275inj:et}),ln=et({ngInjectableDef:et}),mn=et({ngInjectorDef:et});class Ut{constructor(r,o){this._desc=r,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof o?this.__NG_ELEMENT_ID__=o:void 0!==o&&(this.\u0275prov=Xt({token:this,providedIn:o.providedIn||"root",factory:o.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}function Hn(i){return i&&!!i.\u0275providers}const Qn=et({\u0275cmp:et}),Jn=et({\u0275dir:et}),nr=et({\u0275pipe:et}),dr=et({\u0275mod:et}),wn=et({\u0275fac:et}),Ai=et({__NG_ELEMENT_ID__:et}),Yi=et({__NG_ENV_ID__:et});function Ft(i){return"string"==typeof i?i:null==i?"":String(i)}function ir(i,r){throw new Be(-201,!1)}var gn=function(i){return i[i.Default=0]="Default",i[i.Host=1]="Host",i[i.Self=2]="Self",i[i.SkipSelf=4]="SkipSelf",i[i.Optional=8]="Optional",i}(gn||{});let Xr;function fr(){return Xr}function mr(i){const r=Xr;return Xr=i,r}function wa(i,r,o){const p=ot(i);return p&&"root"==p.providedIn?void 0===p.value?p.value=p.factory():p.value:o&gn.Optional?null:void 0!==r?r:void ir()}const qr={},_s="__NG_DI_FLAG__",Ma="ngTempTokenPath",Or=/\n/gm,za="__source";let Fr;function yr(i){const r=Fr;return Fr=i,r}function Ya(i,r=gn.Default){if(void 0===Fr)throw new Be(-203,!1);return null===Fr?wa(i,void 0,r):Fr.get(i,r&gn.Optional?null:void 0,r)}function xr(i,r=gn.Default){return(fr()||Ya)(Te(i),r)}function hn(i,r=gn.Default){return xr(i,Do(r))}function Do(i){return typeof i>"u"||"number"==typeof i?i:(i.optional&&8)|(i.host&&1)|(i.self&&2)|(i.skipSelf&&4)}function Ba(i){const r=[];for(let o=0;o({token:i})),-1),fo=Ao(qt("Optional"),8),zr=Ao(qt("SkipSelf"),4);function fa(i,r){return i.hasOwnProperty(wn)?i[wn]:null}function Io(i,r){i.forEach(o=>Array.isArray(o)?Io(o,r):r(o))}function Ua(i,r,o){r>=i.length?i.push(o):i.splice(r,0,o)}function ma(i,r){return r>=i.length-1?i.pop():i.splice(r,1)[0]}function $r(i,r,o){let p=yo(i,r);return p>=0?i[1|p]=o:(p=~p,function As(i,r,o,p){let E=i.length;if(E==r)i.push(o,p);else if(1===E)i.push(p,i[0]),i[0]=o;else{for(E--,i.push(i[E-1],i[E]);E>r;)i[E]=i[E-2],E--;i[r]=o,i[r+1]=p}}(i,p,r,o)),p}function pa(i,r){const o=yo(i,r);if(o>=0)return i[1|o]}function yo(i,r){return function Ka(i,r,o){let p=0,E=i.length>>o;for(;E!==p;){const P=p+(E-p>>1),$=i[P<r?E=P:p=P+1}return~(E<r){$=P-1;break}}}for(;P-1){let P;for(;++EP?"":E[_t+1].toLowerCase(),2&p&&Ze!==zt){if(ut(p))return!1;$=!0}}}}else{if(!$&&!ut(p)&&!ut(Le))return!1;if($&&ut(Le))continue;$=!1,p=Le|1&p}}return ut(p)||$}function ut(i){return!(1&i)}function Ve(i,r,o,p){if(null===r)return-1;let E=0;if(p||!o){let P=!1;for(;E-1)for(o++;o0?'="'+de+'"':"")+"]"}else 8&p?E+="."+$:4&p&&(E+=" "+$);else""!==E&&!ut($)&&(r+=Cr(P,E),E=""),p=$,P=P||!ut(p);o++}return""!==E&&(r+=Cr(P,E)),r}function Uo(i){return we(()=>{const r=dn(i),o={...r,decls:i.decls,vars:i.vars,template:i.template,consts:i.consts||null,ngContentSelectors:i.ngContentSelectors,onPush:i.changeDetection===wt.OnPush,directiveDefs:null,pipeDefs:null,dependencies:r.standalone&&i.dependencies||null,getStandaloneInjector:null,signals:i.signals??!1,data:i.data||{},encapsulation:i.encapsulation||ni.Emulated,styles:i.styles||sr,_:null,schemas:i.schemas||null,tView:null,id:""};Is(o);const p=i.dependencies;return o.directiveDefs=qo(p,!1),o.pipeDefs=qo(p,!0),o.id=function rc(i){let r=0;const o=[i.selectors,i.ngContentSelectors,i.hostVars,i.hostAttrs,i.consts,i.vars,i.decls,i.encapsulation,i.standalone,i.signals,i.exportAs,JSON.stringify(i.inputs),JSON.stringify(i.outputs),Object.getOwnPropertyNames(i.type.prototype),!!i.contentQueries,!!i.viewQuery].join("|");for(const E of o)r=Math.imul(31,r)+E.charCodeAt(0)|0;return r+=2147483648,"c"+r}(o),o})}function Vs(i){return jn(i)||na(i)}function nc(i){return null!==i}function Jo(i){return we(()=>({type:i.type,bootstrap:i.bootstrap||sr,declarations:i.declarations||sr,imports:i.imports||sr,exports:i.exports||sr,transitiveCompileScopes:null,schemas:i.schemas||null,id:i.id||null}))}function us(i,r){if(null==i)return Ga;const o={};for(const p in i)if(i.hasOwnProperty(p)){const E=i[p];let P,$,de=Ei.None;Array.isArray(E)?(de=E[0],P=E[1],$=E[2]??P):(P=E,$=E),r?(o[P]=de!==Ei.None?[p,de]:p,r[P]=$):o[P]=p}return o}function vs(i){return we(()=>{const r=dn(i);return Is(r),r})}function Us(i){return{type:i.type,name:i.name,factory:null,pure:!1!==i.pure,standalone:!0===i.standalone,onDestroy:i.type.prototype.ngOnDestroy||null}}function jn(i){return i[Qn]||null}function na(i){return i[Jn]||null}function Nr(i){return i[nr]||null}function ca(i){const r=jn(i)||na(i)||Nr(i);return null!==r&&r.standalone}function _a(i,r){const o=i[dr]||null;if(!o&&!0===r)throw new Error(`Type ${It(i)} does not have '\u0275mod' property.`);return o}function dn(i){const r={};return{type:i.type,providersResolver:null,factory:null,hostBindings:i.hostBindings||null,hostVars:i.hostVars||0,hostAttrs:i.hostAttrs||null,contentQueries:i.contentQueries||null,declaredInputs:r,inputTransforms:null,inputConfig:i.inputs||Ga,exportAs:i.exportAs||null,standalone:!0===i.standalone,signals:!0===i.signals,selectors:i.selectors||sr,viewQuery:i.viewQuery||null,features:i.features||null,setInput:null,findHostDirectiveDefs:null,hostDirectives:null,inputs:us(i.inputs,r),outputs:us(i.outputs),debugInfo:null}}function Is(i){i.features?.forEach(r=>r(i))}function qo(i,r){if(!i)return null;const o=r?Nr:Vs;return()=>("function"==typeof i?i():i).map(p=>o(p)).filter(nc)}function xo(i){return{\u0275providers:i}}function md(...i){return{\u0275providers:bs(0,i),\u0275fromNgModule:!0}}function bs(i,...r){const o=[],p=new Set;let E;const P=$=>{o.push($)};return Io(r,$=>{const de=$;ac(de,P,[],p)&&(E||=[],E.push(de))}),void 0!==E&&Fc(E,P),o}function Fc(i,r){for(let o=0;o{r(P,p)})}}function ac(i,r,o,p){if(!(i=Te(i)))return!1;let E=null,P=Ti(i);const $=!P&&jn(i);if(P||$){if($&&!$.standalone)return!1;E=i}else{const Le=i.ngModule;if(P=Ti(Le),!P)return!1;E=Le}const de=p.has(E);if($){if(de)return!1;if(p.add(E),$.dependencies){const Le="function"==typeof $.dependencies?$.dependencies():$.dependencies;for(const Ze of Le)ac(Ze,r,o,p)}}else{if(!P)return!1;{if(null!=P.imports&&!de){let Ze;p.add(E);try{Io(P.imports,_t=>{ac(_t,r,o,p)&&(Ze||=[],Ze.push(_t))})}finally{}void 0!==Ze&&Fc(Ze,r)}if(!de){const Ze=fa(E)||(()=>new E);r({provide:E,useFactory:Ze,deps:sr},E),r({provide:Ot,useValue:E,multi:!0},E),r({provide:ia,useValue:()=>xr(E),multi:!0},E)}const Le=P.providers;if(null!=Le&&!de){const Ze=i;Nc(Le,_t=>{r(_t,Ze)})}}}return E!==i&&void 0!==i.providers}function Nc(i,r){for(let o of i)Hn(o)&&(o=o.\u0275providers),Array.isArray(o)?Nc(o,r):r(o)}const Gs=et({provide:String,useValue:et});function Hs(i){return null!==i&&"object"==typeof i&&Gs in i}function es(i){return"function"==typeof i}const Xs=new Ut(""),oc={},ys={};let sc;function zc(){return void 0===sc&&(sc=new si),sc}class Za{}class Rs extends Za{get destroyed(){return this._destroyed}constructor(r,o,p,E){super(),this.parent=o,this.source=p,this.scopes=E,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,yi(r,$=>this.processProvider($)),this.records.set(Bo,Vt(void 0,this)),E.has("environment")&&this.records.set(Za,Vt(void 0,this));const P=this.records.get(Xs);null!=P&&"string"==typeof P.value&&this.scopes.add(P.value),this.injectorDefTypes=new Set(this.get(Ot,sr,gn.Self))}destroy(){this.assertNotDestroyed(),this._destroyed=!0;const r=w(null);try{for(const p of this._ngOnDestroyHooks)p.ngOnDestroy();const o=this._onDestroyHooks;this._onDestroyHooks=[];for(const p of o)p()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),w(r)}}onDestroy(r){return this.assertNotDestroyed(),this._onDestroyHooks.push(r),()=>this.removeOnDestroy(r)}runInContext(r){this.assertNotDestroyed();const o=yr(this),p=mr(void 0);try{return r()}finally{yr(o),mr(p)}}get(r,o=qr,p=gn.Default){if(this.assertNotDestroyed(),r.hasOwnProperty(Yi))return r[Yi](this);p=Do(p);const P=yr(this),$=mr(void 0);try{if(!(p&gn.SkipSelf)){let Le=this.records.get(r);if(void 0===Le){const Ze=function ci(i){return"function"==typeof i||"object"==typeof i&&i instanceof Ut}(r)&&ot(r);Le=Ze&&this.injectableDefInScope(Ze)?Vt(bc(r),oc):null,this.records.set(r,Le)}if(null!=Le)return this.hydrate(r,Le)}return(p&gn.Self?zc():this.parent).get(r,o=p&gn.Optional&&o===qr?null:o)}catch(de){if("NullInjectorError"===de.name){if((de[Ma]=de[Ma]||[]).unshift(It(r)),P)throw de;return function _o(i,r,o,p){const E=i[Ma];throw r[za]&&E.unshift(r[za]),i.message=function Va(i,r,o,p=null){i=i&&"\n"===i.charAt(0)&&"\u0275"==i.charAt(1)?i.slice(2):i;let E=It(r);if(Array.isArray(r))E=r.map(It).join(" -> ");else if("object"==typeof r){let P=[];for(let $ in r)if(r.hasOwnProperty($)){let de=r[$];P.push($+":"+("string"==typeof de?JSON.stringify(de):It(de)))}E=`{${P.join(", ")}}`}return`${o}${p?"("+p+")":""}[${E}]: ${i.replace(Or,"\n ")}`}("\n"+i.message,E,o,p),i.ngTokenPath=E,i[Ma]=null,i}(de,r,"R3InjectorError",this.source)}throw de}finally{mr($),yr(P)}}resolveInjectorInitializers(){const r=w(null),o=yr(this),p=mr(void 0);try{const P=this.get(ia,sr,gn.Self);for(const $ of P)$()}finally{yr(o),mr(p),w(r)}}toString(){const r=[],o=this.records;for(const p of o.keys())r.push(It(p));return`R3Injector[${r.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new Be(205,!1)}processProvider(r){let o=es(r=Te(r))?r:Te(r&&r.provide);const p=function tl(i){return Hs(i)?Vt(void 0,i.useValue):Vt(mt(i),oc)}(r);if(!es(r)&&!0===r.multi){let E=this.records.get(o);E||(E=Vt(void 0,oc,!0),E.factory=()=>Ba(E.multi),this.records.set(o,E)),o=r,E.multi.push(r)}this.records.set(o,p)}hydrate(r,o){const p=w(null);try{return o.value===oc&&(o.value=ys,o.value=o.factory()),"object"==typeof o.value&&o.value&&function ei(i){return null!==i&&"object"==typeof i&&"function"==typeof i.ngOnDestroy}(o.value)&&this._ngOnDestroyHooks.add(o.value),o.value}finally{w(p)}}injectableDefInScope(r){if(!r.providedIn)return!1;const o=Te(r.providedIn);return"string"==typeof o?"any"===o||this.scopes.has(o):this.injectorDefTypes.has(o)}removeOnDestroy(r){const o=this._onDestroyHooks.indexOf(r);-1!==o&&this._onDestroyHooks.splice(o,1)}}function bc(i){const r=ot(i),o=null!==r?r.factory:fa(i);if(null!==o)return o;if(i instanceof Ut)throw new Be(204,!1);if(i instanceof Function)return function Ys(i){if(i.length>0)throw new Be(204,!1);const o=function Ci(i){return i&&(i[Hi]||i[ln])||null}(i);return null!==o?()=>o.factory(i):()=>new i}(i);throw new Be(204,!1)}function mt(i,r,o){let p;if(es(i)){const E=Te(i);return fa(E)||bc(E)}if(Hs(i))p=()=>Te(i.useValue);else if(function Ws(i){return!(!i||!i.useFactory)}(i))p=()=>i.useFactory(...Ba(i.deps||[]));else if(function js(i){return!(!i||!i.useExisting)}(i))p=()=>xr(Te(i.useExisting));else{const E=Te(i&&(i.useClass||i.provide));if(!function Ht(i){return!!i.deps}(i))return fa(E)||bc(E);p=()=>new E(...Ba(i.deps))}return p}function Vt(i,r,o=!1){return{factory:i,value:r,multi:o?[]:void 0}}function yi(i,r){for(const o of i)Array.isArray(o)?yi(o,r):o&&Hn(o)?yi(o.\u0275providers,r):r(o)}function Oi(i,r){i instanceof Rs&&i.assertNotDestroyed();const p=yr(i),E=mr(void 0);try{return r()}finally{yr(p),mr(E)}}function ji(){return void 0!==fr()||null!=function Ur(){return Fr}()}function pn(i){if(!ji())throw new Be(-203,!1)}const Dn=0,Fi=1,bn=2,Tr=3,va=4,ra=5,Ja=6,oo=7,hr=8,aa=9,ts=10,Bn=11,Co=12,pd=13,il=14,Lr=15,Bc=16,cc=17,so=18,Xi=19,gd=20,lc=21,El=22,Fo=23,En=25,Sl=1,Os=7,yc=9,ba=10;var xs=function(i){return i[i.None=0]="None",i[i.HasTransplantedViews=2]="HasTransplantedViews",i}(xs||{});function Yr(i){return Array.isArray(i)&&"object"==typeof i[Sl]}function mo(i){return Array.isArray(i)&&!0===i[Sl]}function po(i){return!!(4&i.flags)}function Nn(i){return i.componentOffset>-1}function qi(i){return!(1&~i.flags)}function vr(i){return!!i.template}function Qr(i){return!!(512&i[bn])}class Ta{constructor(r,o,p){this.previousValue=r,this.currentValue=o,this.firstChange=p}isFirstChange(){return this.firstChange}}function wo(i,r,o,p){null!==r?r.applyValueToInputSignal(r,p):i[o]=p}function Ll(){return Cc}function Cc(i){return i.type.prototype.ngOnChanges&&(i.setInput=wc),e0}function e0(){const i=dc(this),r=i?.current;if(r){const o=i.previous;if(o===Ga)i.previous=r;else for(let p in r)o[p]=r[p];i.current=null,this.ngOnChanges(r)}}function wc(i,r,o,p,E){const P=this.declaredInputs[p],$=dc(i)||function Mc(i,r){return i[ws]=r}(i,{previous:Ga,current:null}),de=$.current||($.current={}),Le=$.previous,Ze=Le[P];de[P]=new Ta(Ze&&Ze.currentValue,o,Le===Ga),wo(i,r,E,o)}Ll.ngInherit=!0;const ws="__ngSimpleChanges__";function dc(i){return i[ws]||null}const Fs=function(i,r,o){},e1="svg";function Un(i){for(;Array.isArray(i);)i=i[Dn];return i}function bd(i,r){return Un(r[i])}function co(i,r){return Un(r[i.index])}function nl(i,r){return i.data[r]}function Al(i,r){return i[r]}function fs(i,r){const o=r[i];return Yr(o)?o:o[Dn]}function $s(i){return!(128&~i[bn])}function Ms(i,r){return null==r?null:i[r]}function zu(i){i[cc]=0}function n1(i){1024&i[bn]||(i[bn]|=1024,$s(i)&&hc(i))}function t0(i){return!!(9216&i[bn]||i[Fo]?.dirty)}function n0(i){i[ts].changeDetectionScheduler?.notify(8),64&i[bn]&&(i[bn]|=1024),t0(i)&&hc(i)}function hc(i){i[ts].changeDetectionScheduler?.notify(0);let r=Qs(i);for(;null!==r&&!(8192&r[bn])&&(r[bn]|=8192,$s(r));)r=Qs(r)}function r1(i,r){if(!(256&~i[bn]))throw new Be(911,!1);null===i[lc]&&(i[lc]=[]),i[lc].push(r)}function Qs(i){const r=i[Tr];return mo(r)?r[Tr]:r}const Zn={lFrame:c1(null),bindingsEnabled:!0,skipHydrationRootTNode:null};let yd=!1;function Gu(){return Zn.bindingsEnabled}function kl(){return null!==Zn.skipHydrationRootTNode}function Ri(){return Zn.lFrame.lView}function ur(){return Zn.lFrame.tView}function D2(i){return Zn.lFrame.contextLView=i,i[hr]}function A2(i){return Zn.lFrame.contextLView=null,i}function Hr(){let i=is();for(;null!==i&&64===i.type;)i=i.parent;return i}function is(){return Zn.lFrame.currentTNode}function Br(i,r){const o=Zn.lFrame;o.currentTNode=i,o.isParent=r}function Il(){return Zn.lFrame.isParent}function Rl(){Zn.lFrame.isParent=!1}function Wu(){return yd}function a0(i){yd=i}function ms(){const i=Zn.lFrame;let r=i.bindingRootIndex;return-1===r&&(r=i.bindingRootIndex=i.tView.bindingStartIndex),r}function Ns(){return Zn.lFrame.bindingIndex}function ns(){return Zn.lFrame.bindingIndex++}function uc(i){const r=Zn.lFrame,o=r.bindingIndex;return r.bindingIndex=r.bindingIndex+i,o}function Xu(i,r){const o=Zn.lFrame;o.bindingIndex=o.bindingRootIndex=i,Vc(r)}function Vc(i){Zn.lFrame.currentDirectiveIndex=i}function Sc(i){const r=Zn.lFrame.currentDirectiveIndex;return-1===r?null:i[r]}function Uc(){return Zn.lFrame.currentQueryIndex}function Es(i){Zn.lFrame.currentQueryIndex=i}function l4(i){const r=i[Fi];return 2===r.type?r.declTNode:1===r.type?i[ra]:null}function s1(i,r,o){if(o&gn.SkipSelf){let E=r,P=i;for(;!(E=E.parent,null!==E||o&gn.Host||(E=l4(P),null===E||(P=P[il],10&E.type))););if(null===E)return!1;r=E,i=P}const p=Zn.lFrame=Ol();return p.currentTNode=r,p.lView=i,!0}function I2(i){const r=Ol(),o=i[Fi];Zn.lFrame=r,r.currentTNode=o.firstChild,r.lView=i,r.tView=o,r.contextLView=i,r.bindingIndex=o.bindingStartIndex,r.inI18n=!1}function Ol(){const i=Zn.lFrame,r=null===i?null:i.child;return null===r?c1(i):r}function c1(i){const r={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:i,child:null,inI18n:!1};return null!==i&&(i.child=r),r}function Yu(){const i=Zn.lFrame;return Zn.lFrame=i.parent,i.currentTNode=null,i.lView=null,i}const R2=Yu;function Tc(){const i=Yu();i.isParent=!0,i.tView=null,i.selectedIndex=-1,i.contextLView=null,i.elementDepthCount=0,i.currentDirectiveIndex=-1,i.currentNamespace=null,i.bindingRootIndex=-1,i.bindingIndex=-1,i.currentQueryIndex=0}function qa(){return Zn.lFrame.selectedIndex}function ol(i){Zn.lFrame.selectedIndex=i}function oa(){const i=Zn.lFrame;return nl(i.tView,i.selectedIndex)}function sl(){Zn.lFrame.currentNamespace=e1}function N2(){!function d4(){Zn.lFrame.currentNamespace=null}()}let $u=!0;function l1(){return $u}function Lc(i){$u=i}function o0(i,r){for(let o=r.directiveStart,p=r.directiveEnd;o=p)break}else r[Le]<0&&(i[cc]+=65536),(de>14>16&&(3&i[bn])===r&&(i[bn]+=16384,d1(de,P)):d1(de,P)}const cl=-1;class wd{constructor(r,o,p){this.factory=r,this.resolving=!1,this.canSeeViewProviders=o,this.injectImpl=p}}const Ed={};class Fl{constructor(r,o){this.injector=r,this.parentInjector=o}get(r,o,p){p=Do(p);const E=this.injector.get(r,Ed,p);return E!==Ed||o===Ed?E:this.parentInjector.get(r,o,p)}}function f1(i){return i!==cl}function Nl(i){return 32767&i}function dl(i,r){let o=function l0(i){return i>>16}(i),p=r;for(;o>0;)p=p[il],o--;return p}let V2=!0;function hl(i){const r=V2;return V2=i,r}const Qu=255,p1=5;let d0=0;const ps={};function Sd(i,r){const o=U2(i,r);if(-1!==o)return o;const p=r[Fi];p.firstCreatePass&&(i.injectorIndex=r.length,eo(p.data,i),eo(r,null),eo(p.blueprint,null));const E=Td(i,r),P=i.injectorIndex;if(f1(E)){const $=Nl(E),de=dl(E,r),Le=de[Fi].data;for(let Ze=0;Ze<8;Ze++)r[P+Ze]=de[$+Ze]|Le[$+Ze]}return r[P+8]=E,P}function eo(i,r){i.push(0,0,0,0,0,0,0,0,r)}function U2(i,r){return-1===i.injectorIndex||i.parent&&i.parent.injectorIndex===i.injectorIndex||null===r[i.injectorIndex+8]?-1:i.injectorIndex}function Td(i,r){if(i.parent&&-1!==i.parent.injectorIndex)return i.parent.injectorIndex;let o=0,p=null,E=r;for(;null!==E;){if(p=Y2(E),null===p)return cl;if(o++,E=E[il],-1!==p.injectorIndex)return p.injectorIndex|o<<16}return cl}function Dr(i,r,o){!function Zu(i,r,o){let p;"string"==typeof o?p=o.charCodeAt(0)||0:o.hasOwnProperty(Ai)&&(p=o[Ai]),null==p&&(p=o[Ai]=d0++);const E=p&Qu;r.data[i+(E>>p1)]|=1<=0?r&Qu:qu:r}(o);if("function"==typeof P){if(!s1(r,i,p))return p&gn.Host?zl(E,0,p):Bl(r,o,p,E);try{let $;if($=P(p),null!=$||p&gn.Optional)return $;ir()}finally{R2()}}else if("number"==typeof P){let $=null,de=U2(i,r),Le=cl,Ze=p&gn.Host?r[Lr][ra]:null;for((-1===de||p&gn.SkipSelf)&&(Le=-1===de?Td(i,r):r[de+8],Le!==cl&&W2(p,!1)?($=r[Fi],de=Nl(Le),r=dl(Le,r)):de=-1);-1!==de;){const _t=r[Fi];if(g1(P,de,_t.data)){const zt=Ju(de,r,o,$,p,Ze);if(zt!==ps)return zt}Le=r[de+8],Le!==cl&&W2(p,r[Fi].data[de+8]===Ze)&&g1(P,de,r)?($=_t,de=Nl(Le),r=dl(Le,r)):de=-1}}return E}function Ju(i,r,o,p,E,P){const $=r[Fi],de=$.data[i+8],_t=Ld(de,$,o,null==p?Nn(de)&&V2:p!=$&&!!(3&de.type),E&gn.Host&&P===de);return null!==_t?ul(r,$,_t,de):ps}function Ld(i,r,o,p,E){const P=i.providerIndexes,$=r.data,de=1048575&P,Le=i.directiveStart,_t=P>>20,ri=E?de+_t:i.directiveEnd;for(let hi=p?de:de+_t;hi=Le&&vi.type===o)return hi}if(E){const hi=$[Le];if(hi&&vr(hi)&&hi.type===o)return Le}return null}function ul(i,r,o,p){let E=i[o];const P=r.data;if(function ll(i){return i instanceof wd}(E)){const $=E;$.resolving&&function Ni(i,r){throw r&&r.join(" > "),new Be(-200,i)}(function mi(i){return"function"==typeof i?i.name||i.toString():"object"==typeof i&&null!=i&&"function"==typeof i.type?i.type.name||i.type.toString():Ft(i)}(P[o]));const de=hl($.canSeeViewProviders);$.resolving=!0;const Ze=$.injectImpl?mr($.injectImpl):null;s1(i,p,gn.Default);try{E=i[o]=$.factory(void 0,P,i,p),r.firstCreatePass&&o>=p.directiveStart&&function h4(i,r,o){const{ngOnChanges:p,ngOnInit:E,ngDoCheck:P}=r.type.prototype;if(p){const $=Cc(r);(o.preOrderHooks??=[]).push(i,$),(o.preOrderCheckHooks??=[]).push(i,$)}E&&(o.preOrderHooks??=[]).push(0-i,E),P&&((o.preOrderHooks??=[]).push(i,P),(o.preOrderCheckHooks??=[]).push(i,P))}(o,P[o],r)}finally{null!==Ze&&mr(Ze),hl(de),$.resolving=!1,R2()}}return E}function g1(i,r,o){return!!(o[r+(i>>p1)]&1<{const r=i.prototype.constructor,o=r[wn]||u0(r),p=Object.prototype;let E=Object.getPrototypeOf(i.prototype).constructor;for(;E&&E!==p;){const P=E[wn]||u0(E);if(P&&P!==o)return P;E=Object.getPrototypeOf(E)}return P=>new P})}function u0(i){return ce(i)?()=>{const r=u0(Te(i));return r&&r()}:fa(i)}function Y2(i){const r=i[Fi],o=r.type;return 2===o?r.declTNode:1===o?i[ra]:null}function v1(i){return function G2(i,r){if("class"===r)return i.classes;if("style"===r)return i.styles;const o=i.attrs;if(o){const p=o.length;let E=0;for(;Exr(Bo)})}static{this.__NG_ELEMENT_ID__=-1}}new Ut("").__NG_ELEMENT_ID__=i=>{const r=Hr();if(null===r)throw new Be(204,!1);if(2&r.type)return r.value;if(i&gn.Optional)return null;throw new Be(204,!1)};function x1(i){return i.ngOriginalError}const Hc=!0;let Gl=(()=>{class i{static{this.__NG_ELEMENT_ID__=ih}static{this.__NG_ENV_ID__=o=>o}}return i})();class af extends Gl{constructor(r){super(),this._lView=r}onDestroy(r){return r1(this._lView,r),()=>function Ec(i,r){if(null===i[lc])return;const o=i[lc].indexOf(r);-1!==o&&i[lc].splice(o,1)}(this._lView,r)}}function ih(){return new af(Ri())}let jc=(()=>{class i{constructor(){this.taskId=0,this.pendingTasks=new Set,this.hasPendingTasks=new he.t(!1)}get _hasPendingTasks(){return this.hasPendingTasks.value}add(){this._hasPendingTasks||this.hasPendingTasks.next(!0);const o=this.taskId++;return this.pendingTasks.add(o),o}remove(o){this.pendingTasks.delete(o),0===this.pendingTasks.size&&this._hasPendingTasks&&this.hasPendingTasks.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this._hasPendingTasks&&this.hasPendingTasks.next(!1)}static{this.\u0275prov=Xt({token:i,providedIn:"root",factory:()=>new i})}}return i})();const fc=class sf extends Ie.B{constructor(r=!1){super(),this.destroyRef=void 0,this.pendingTasks=void 0,this.__isAsync=r,ji()&&(this.destroyRef=hn(Gl,{optional:!0})??void 0,this.pendingTasks=hn(jc,{optional:!0})??void 0)}emit(r){const o=w(null);try{super.next(r)}finally{w(o)}}subscribe(r,o,p){let E=r,P=o||(()=>null),$=p;if(r&&"object"==typeof r){const Le=r;E=Le.next?.bind(Le),P=Le.error?.bind(Le),$=Le.complete?.bind(Le)}this.__isAsync&&(P=this.wrapInTimeout(P),E&&(E=this.wrapInTimeout(E)),$&&($=this.wrapInTimeout($)));const de=super.subscribe({next:E,error:P,complete:$});return r instanceof st.yU&&r.add(de),de}wrapInTimeout(r){return o=>{const p=this.pendingTasks?.add();setTimeout(()=>{r(o),void 0!==p&&this.pendingTasks?.remove(p)})}}};function Wc(...i){}function nh(i){let r,o;function p(){i=Wc;try{void 0!==o&&"function"==typeof cancelAnimationFrame&&cancelAnimationFrame(o),void 0!==r&&clearTimeout(r)}catch{}}return r=setTimeout(()=>{i(),p()}),"function"==typeof requestAnimationFrame&&(o=requestAnimationFrame(()=>{i(),p()})),()=>p()}function rh(i){return queueMicrotask(()=>i()),()=>{i=Wc}}const C1="isAngularZone",w1=C1+"_ID";let ah=0;class Da{constructor(r){this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new fc(!1),this.onMicrotaskEmpty=new fc(!1),this.onStable=new fc(!1),this.onError=new fc(!1);const{enableLongStackTrace:o=!1,shouldCoalesceEventChangeDetection:p=!1,shouldCoalesceRunChangeDetection:E=!1,scheduleInRootZone:P=Hc}=r;if(typeof Zone>"u")throw new Be(908,!1);Zone.assertZonePatched();const $=this;$._nesting=0,$._outer=$._inner=Zone.current,Zone.TaskTrackingZoneSpec&&($._inner=$._inner.fork(new Zone.TaskTrackingZoneSpec)),o&&Zone.longStackTraceZoneSpec&&($._inner=$._inner.fork(Zone.longStackTraceZoneSpec)),$.shouldCoalesceEventChangeDetection=!E&&p,$.shouldCoalesceRunChangeDetection=E,$.callbackScheduled=!1,$.scheduleInRootZone=P,function hf(i){const r=()=>{!function df(i){function r(){nh(()=>{i.callbackScheduled=!1,Ad(i),i.isCheckStableRunning=!0,M1(i),i.isCheckStableRunning=!1})}i.isCheckStableRunning||i.callbackScheduled||(i.callbackScheduled=!0,i.scheduleInRootZone?Zone.root.run(()=>{r()}):i._outer.run(()=>{r()}),Ad(i))}(i)},o=ah++;i._inner=i._inner.fork({name:"angular",properties:{[C1]:!0,[w1]:o,[w1+o]:!0},onInvokeTask:(p,E,P,$,de,Le)=>{if(function oh(i){return sh(i,"__ignore_ng_zone__")}(Le))return p.invokeTask(P,$,de,Le);try{return m0(i),p.invokeTask(P,$,de,Le)}finally{(i.shouldCoalesceEventChangeDetection&&"eventTask"===$.type||i.shouldCoalesceRunChangeDetection)&&r(),p0(i)}},onInvoke:(p,E,P,$,de,Le,Ze)=>{try{return m0(i),p.invoke(P,$,de,Le,Ze)}finally{i.shouldCoalesceRunChangeDetection&&!i.callbackScheduled&&!function uf(i){return sh(i,"__scheduler_tick__")}(Le)&&r(),p0(i)}},onHasTask:(p,E,P,$)=>{p.hasTask(P,$),E===P&&("microTask"==$.change?(i._hasPendingMicrotasks=$.microTask,Ad(i),M1(i)):"macroTask"==$.change&&(i.hasPendingMacrotasks=$.macroTask))},onHandleError:(p,E,P,$)=>(p.handleError(P,$),i.runOutsideAngular(()=>i.onError.emit($)),!1)})}($)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get(C1)}static assertInAngularZone(){if(!Da.isInAngularZone())throw new Be(909,!1)}static assertNotInAngularZone(){if(Da.isInAngularZone())throw new Be(909,!1)}run(r,o,p){return this._inner.run(r,o,p)}runTask(r,o,p,E){const P=this._inner,$=P.scheduleEventTask("NgZoneEvent: "+E,r,lf,Wc,Wc);try{return P.runTask($,o,p)}finally{P.cancelTask($)}}runGuarded(r,o,p){return this._inner.runGuarded(r,o,p)}runOutsideAngular(r){return this._outer.run(r)}}const lf={};function M1(i){if(0==i._nesting&&!i.hasPendingMicrotasks&&!i.isStable)try{i._nesting++,i.onMicrotaskEmpty.emit(null)}finally{if(i._nesting--,!i.hasPendingMicrotasks)try{i.runOutsideAngular(()=>i.onStable.emit(null))}finally{i.isStable=!0}}}function Ad(i){i.hasPendingMicrotasks=!!(i._hasPendingMicrotasks||(i.shouldCoalesceEventChangeDetection||i.shouldCoalesceRunChangeDetection)&&!0===i.callbackScheduled)}function m0(i){i._nesting++,i.isStable&&(i.isStable=!1,i.onUnstable.emit(null))}function p0(i){i._nesting--,M1(i)}class Xc{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new fc,this.onMicrotaskEmpty=new fc,this.onStable=new fc,this.onError=new fc}run(r,o,p){return r.apply(o,p)}runGuarded(r,o,p){return r.apply(o,p)}runOutsideAngular(r){return r()}runTask(r,o,p,E){return r.apply(o,p)}}function sh(i,r){return!(!Array.isArray(i)||1!==i.length)&&!0===i[0]?.data?.[r]}class Ac{constructor(){this._console=console}handleError(r){const o=this._findOriginalError(r);this._console.error("ERROR",r),o&&this._console.error("ORIGINAL ERROR",o)}_findOriginalError(r){let o=r&&x1(r);for(;o&&x1(o);)o=x1(o);return o||null}}const g0=new Ut("",{providedIn:"root",factory:()=>{const i=hn(Da),r=hn(Ac);return o=>i.runOutsideAngular(()=>r.handleError(o))}});function _0(){return Hl(Hr(),Ri())}function Hl(i,r){return new jl(co(i,r))}let jl=(()=>{class i{constructor(o){this.nativeElement=o}static{this.__NG_ELEMENT_ID__=_0}}return i})();function v0(i){return i instanceof jl?i.nativeElement:i}function Wl(){return this._results[Symbol.iterator]()}class Xl{get changes(){return this._changes??=new fc}constructor(r=!1){this._emitDistinctChangesOnly=r,this.dirty=!0,this._onDirty=void 0,this._results=[],this._changesDetected=!1,this._changes=void 0,this.length=0,this.first=void 0,this.last=void 0;const o=Xl.prototype;o[Symbol.iterator]||(o[Symbol.iterator]=Wl)}get(r){return this._results[r]}map(r){return this._results.map(r)}filter(r){return this._results.filter(r)}find(r){return this._results.find(r)}reduce(r,o){return this._results.reduce(r,o)}forEach(r){this._results.forEach(r)}some(r){return this._results.some(r)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(r,o){this.dirty=!1;const p=function Ar(i){return i.flat(Number.POSITIVE_INFINITY)}(r);(this._changesDetected=!function Bs(i,r,o){if(i.length!==r.length)return!1;for(let p=0;px4}),x4="ng",Sf=new Ut(""),io=new Ut("",{providedIn:"platform",factory:()=>"unknown"}),Lf=new Ut(""),Df=new Ut("",{providedIn:"root",factory:()=>_l().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null});let Mh=()=>null;function P0(i,r,o=!1){return Mh(i,r,o)}const U0=new Ut("",{providedIn:"root",factory:()=>!1});let z1,nd;function id(i){return function B1(){if(void 0===z1&&(z1=null,yt.trustedTypes))try{z1=yt.trustedTypes.createPolicy("angular",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return z1}()?.createHTML(i)||i}function H0(){if(void 0===nd&&(nd=null,yt.trustedTypes))try{nd=yt.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return nd}function Ah(i){return H0()?.createHTML(i)||i}function kh(i){return H0()?.createScriptURL(i)||i}class vl{constructor(r){this.changingThisBreaksApplicationSecurity=r}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${ue})`}}class zf extends vl{getTypeName(){return"HTML"}}class Ih extends vl{getTypeName(){return"Style"}}class L4 extends vl{getTypeName(){return"Script"}}class U1 extends vl{getTypeName(){return"URL"}}class D4 extends vl{getTypeName(){return"ResourceURL"}}function rs(i){return i instanceof vl?i.changingThisBreaksApplicationSecurity:i}function Bd(i,r){const o=function Bf(i){return i instanceof vl&&i.getTypeName()||null}(i);if(null!=o&&o!==r){if("ResourceURL"===o&&"URL"===r)return!0;throw new Error(`Required a safe ${r}, got a ${o} (see ${ue})`)}return o===r}function A4(i){return new zf(i)}function Vf(i){return new Ih(i)}function Uf(i){return new L4(i)}function Gf(i){return new U1(i)}function k4(i){return new D4(i)}class I4{constructor(r){this.inertDocumentHelper=r}getInertBodyElement(r){r=""+r;try{const o=(new window.DOMParser).parseFromString(id(r),"text/html").body;return null===o?this.inertDocumentHelper.getInertBodyElement(r):(o.firstChild?.remove(),o)}catch{return null}}}class Rh{constructor(r){this.defaultDoc=r,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(r){const o=this.inertDocument.createElement("template");return o.innerHTML=id(r),o}}const R4=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function Vd(i){return(i=String(i)).match(R4)?i:"unsafe:"+i}function Kc(i){const r={};for(const o of i.split(","))r[o]=!0;return r}function bl(...i){const r={};for(const o of i)for(const p in o)o.hasOwnProperty(p)&&(r[p]=!0);return r}const Wf=Kc("area,br,col,hr,img,wbr"),Oh=Kc("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Xf=Kc("rp,rt"),j0=bl(Wf,bl(Oh,Kc("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")),bl(Xf,Kc("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")),bl(Xf,Oh)),W0=Kc("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Nh=bl(W0,Kc("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"),Kc("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")),N4=Kc("script,style,template");class Ph{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(r){let o=r.firstChild,p=!0,E=[];for(;o;)if(o.nodeType===Node.ELEMENT_NODE?p=this.startElement(o):o.nodeType===Node.TEXT_NODE?this.chars(o.nodeValue):this.sanitizedSomething=!0,p&&o.firstChild)E.push(o),o=P4(o);else for(;o;){o.nodeType===Node.ELEMENT_NODE&&this.endElement(o);let P=$f(o);if(P){o=P;break}o=E.pop()}return this.buf.join("")}startElement(r){const o=zh(r).toLowerCase();if(!j0.hasOwnProperty(o))return this.sanitizedSomething=!0,!N4.hasOwnProperty(o);this.buf.push("<"),this.buf.push(o);const p=r.attributes;for(let E=0;E"),!0}endElement(r){const o=zh(r).toLowerCase();j0.hasOwnProperty(o)&&!Wf.hasOwnProperty(o)&&(this.buf.push(""))}chars(r){this.buf.push(Uh(r))}}function $f(i){const r=i.nextSibling;if(r&&i!==r.previousSibling)throw Bh(r);return r}function P4(i){const r=i.firstChild;if(r&&function Kf(i,r){return(i.compareDocumentPosition(r)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}(i,r))throw Bh(r);return r}function zh(i){const r=i.nodeName;return"string"==typeof r?r:"FORM"}function Bh(i){return new Error(`Failed to sanitize html because the element is clobbered: ${i.outerHTML}`)}const Vh=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Qf=/([^\#-~ |!])/g;function Uh(i){return i.replace(/&/g,"&").replace(Vh,function(r){return"&#"+(1024*(r.charCodeAt(0)-55296)+(r.charCodeAt(1)-56320)+65536)+";"}).replace(Qf,function(r){return"&#"+r.charCodeAt(0)+";"}).replace(//g,">")}let F;function B(i,r){let o=null;try{F=F||function Hf(i){const r=new Rh(i);return function jf(){try{return!!(new window.DOMParser).parseFromString(id(""),"text/html")}catch{return!1}}()?new I4(r):r}(i);let p=r?String(r):"";o=F.getInertBodyElement(p);let E=5,P=p;do{if(0===E)throw new Error("Failed to sanitize html because the input is unstable");E--,p=P,P=o.innerHTML,o=F.getInertBodyElement(p)}while(p!==P);return id((new Ph).sanitizeChildren(v(o)||o))}finally{if(o){const p=v(o)||o;for(;p.firstChild;)p.firstChild.remove()}}}function v(i){return"content"in i&&function H(i){return i.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===i.nodeName}(i)?i.content:null}var G=function(i){return i[i.NONE=0]="NONE",i[i.HTML=1]="HTML",i[i.STYLE=2]="STYLE",i[i.SCRIPT=3]="SCRIPT",i[i.URL=4]="URL",i[i.RESOURCE_URL=5]="RESOURCE_URL",i}(G||{});function Oe(i){const r=Xn();return r?Ah(r.sanitize(G.HTML,i)||""):Bd(i,"HTML")?Ah(rs(i)):B(_l(),Ft(i))}function At(i){const r=Xn();return r?r.sanitize(G.URL,i)||"":Bd(i,"URL")?rs(i):Vd(Ft(i))}function oi(i){const r=Xn();if(r)return kh(r.sanitize(G.RESOURCE_URL,i)||"");if(Bd(i,"ResourceURL"))return kh(rs(i));throw new Be(904,!1)}function Mn(i,r,o){return function fn(i,r){return"src"===r&&("embed"===i||"frame"===i||"iframe"===i||"media"===i||"script"===i)||"href"===r&&("base"===i||"link"===i)?oi:At}(r,o)(i)}function Xn(){const i=Ri();return i&&i[ts].sanitizer}const gr=/^>|^->||--!>|)/g,da="\u200b$1\u200b";function Hh(i){return i.ownerDocument.defaultView}function Yo(i){return i instanceof Function?i():i}var qf=function(i){return i[i.Important=1]="Important",i[i.DashCase=2]="DashCase",i}(qf||{});let G4;function e3(i,r){return G4(i,r)}function Y0(i,r,o,p,E){if(null!=p){let P,$=!1;mo(p)?P=p:Yr(p)&&($=!0,p=p[Dn]);const de=Un(p);0===i&&null!==o?null==E?Xh(r,o,de):j1(r,o,de,E||null,!0):1===i&&null!==o?j1(r,o,de,E||null,!0):2===i?function $h(i,r,o){i.removeChild(null,r,o)}(r,de,$):3===i&&r.destroyNode(de),null!=P&&function Xp(i,r,o,p,E){const P=o[Os];P!==Un(o)&&Y0(r,i,p,P,E);for(let de=ba;der.replace(jr,da))}(r))}function jh(i,r,o){return i.createElement(r,o)}function Pp(i,r){r[ts].changeDetectionScheduler?.notify(9),Qh(i,r,r[Bn],2,null,null)}function X4(i,r){const o=i[yc],p=r[Tr];(Yr(p)||r[Lr]!==p[Tr][Lr])&&(i[bn]|=xs.HasTransplantedViews),null===o?i[yc]=[r]:o.push(r)}function t3(i,r){const o=i[yc],p=o.indexOf(r);o.splice(p,1)}function K0(i,r){if(i.length<=ba)return;const o=ba+r,p=i[o];if(p){const E=p[Bc];null!==E&&E!==i&&t3(E,p),r>0&&(i[o-1][va]=p[va]);const P=ma(i,ba+r);!function K8(i,r){Pp(i,r),r[Dn]=null,r[ra]=null}(p[Fi],p);const $=P[so];null!==$&&$.detachView(P[Fi]),p[Tr]=null,p[va]=null,p[bn]&=-129}return p}function $0(i,r){if(!(256&r[bn])){const o=r[Bn];o.destroyNode&&Qh(i,r,o,3,null,null),function Q8(i){let r=i[Co];if(!r)return Y4(i[Fi],i);for(;r;){let o=null;if(Yr(r))o=r[Co];else{const p=r[ba];p&&(o=p)}if(!o){for(;r&&!r[va]&&r!==i;)Yr(r)&&Y4(r[Fi],r),r=r[Tr];null===r&&(r=i),Yr(r)&&Y4(r[Fi],r),o=r&&r[va]}r=o}}(r)}}function Y4(i,r){if(256&r[bn])return;const o=w(null);try{r[bn]&=-129,r[bn]|=256,r[Fo]&&ie(r[Fo]),function J8(i,r){let o;if(null!=i&&null!=(o=i.destroyHooks))for(let p=0;p=0?p[$]():p[-$].unsubscribe(),P+=2}else o[P].call(p[o[P+1]]);null!==p&&(r[oo]=null);const E=r[lc];if(null!==E){r[lc]=null;for(let P=0;P-1){const{encapsulation:P}=i.data[p.directiveStart+E];if(P===ni.None||P===ni.Emulated)return null}return co(p,o)}}(i,r.parent,o)}function j1(i,r,o,p,E){i.insertBefore(r,o,p,E)}function Xh(i,r,o){i.appendChild(r,o)}function Vp(i,r,o,p,E){null!==p?j1(i,r,o,p,E):Xh(i,r,o)}function K4(i,r){return i.parentNode(r)}function Gp(i,r,o){return Hp(i,r,o)}let Q4,Hp=function $4(i,r,o){return 40&i.type?co(i,o):null};function Yh(i,r,o,p){const E=Wh(i,p,r),P=r[Bn],de=Gp(p.parent||r[ra],p,r);if(null!=E)if(Array.isArray(o))for(let Le=0;LeEn&&Kp(i,r,En,!1),Fs($?2:0,E),o(p,E)}finally{ol(P),Fs($?3:1,E)}}function n3(i,r,o){if(po(r)){const p=w(null);try{const P=r.directiveEnd;for(let $=r.directiveStart;$null;function r6(i,r,o,p,E){for(let P in r){if(!r.hasOwnProperty(P))continue;const $=r[P];if(void 0===$)continue;p??={};let de,Le=Ei.None;Array.isArray($)?(de=$[0],Le=$[1]):de=$;let Ze=P;if(null!==E){if(!E.hasOwnProperty(P))continue;Ze=E[P]}0===i?a6(p,o,Ze,de,Le):a6(p,o,Ze,de)}return p}function a6(i,r,o,p,E){let P;i.hasOwnProperty(o)?(P=i[o]).push(r,p):P=i[o]=[r,p],void 0!==E&&P.push(E)}function Ps(i,r,o,p,E,P,$,de){const Le=co(r,o);let _t,Ze=r.inputs;!de&&null!=Ze&&(_t=Ze[p])?(e2(i,o,_t,p,E),Nn(r)&&function o5(i,r){const o=fs(r,i);16&o[bn]||(o[bn]|=64)}(o,r.index)):3&r.type&&(p=function a5(i){return"class"===i?"className":"for"===i?"htmlFor":"formaction"===i?"formAction":"innerHtml"===i?"innerHTML":"readonly"===i?"readOnly":"tabindex"===i?"tabIndex":i}(p),E=null!=$?$(E,r.value||"",p):E,P.setProperty(Le,p,E))}function Jh(i,r,o,p){if(Gu()){const E=null===p?null:{"":-1},P=function s6(i,r){const o=i.directiveRegistry;let p=null,E=null;if(o)for(let P=0;P0;){const o=i[--r];if("number"==typeof o&&o<0)return o}return 0})($)!=de&&$.push(de),$.push(o,p,P)}}(i,r,p,Q0(i,o,E.hostVars,ar),E)}function In(i,r,o,p,E,P){const $=co(i,r);!function tu(i,r,o,p,E,P,$){if(null==P)i.removeAttribute(r,E,o);else{const de=null==$?Ft(P):$(P,p||"",E);i.setAttribute(r,E,de,o)}}(r[Bn],$,P,i.value,o,p,E)}function J0(i,r,o,p,E,P){const $=P[r];if(null!==$)for(let de=0;de<$.length;)Qp(p,o,$[de++],$[de++],$[de++],$[de++])}function o3(i,r,o){let p=null,E=0;for(;E0&&(o[E-1][va]=r),p{hc(i.lView)},consumerOnSignalRead(){this.lView[Fo]=this}},au={...S,consumerIsAlwaysLive:!0,consumerMarkedDirty:i=>{let r=Qs(i.lView);for(;r&&!u3(r[Fi]);)r=Qs(r);r&&n1(r)},consumerOnSignalRead(){this.lView[Fo]=this}};function u3(i){return 2!==i.type}const um=100;function jd(i,r=!0,o=0){const p=i[ts],E=p.rendererFactory;E.begin?.();try{!function fm(i,r){const o=Wu();try{a0(!0),a2(i,r);let p=0;for(;t0(i);){if(p===um)throw new Be(103,!1);p++,a2(i,1)}}finally{a0(o)}}(i,o)}catch($){throw r&&q0(i,$),$}finally{E.end?.(),p.inlineEffectRunner?.flush()}}function h6(i,r,o,p){const E=r[bn];if(!(256&~E))return;r[ts].inlineEffectRunner?.flush(),I2(r);let de=!0,Le=null,Ze=null;u3(i)?(Ze=function h3(i){return i[Fo]??function n2(i){const r=d3.pop()??Object.create(r2);return r.lView=i,r}(i)}(r),Le=W(Ze)):null===f()?(de=!1,Ze=function hm(i){const r=i[Fo]??Object.create(au);return r.lView=i,r}(r),Le=W(Ze)):r[Fo]&&(ie(r[Fo]),r[Fo]=null);try{zu(r),function k2(i){return Zn.lFrame.bindingIndex=i}(i.bindingStartIndex),null!==o&&nm(i,r,o,2,p);const _t=!(3&~E);if(_t){const hi=i.preOrderCheckHooks;null!==hi&&xd(r,hi,null)}else{const hi=i.preOrderHooks;null!==hi&&Cd(r,hi,0,null),s0(r,0)}if(function mm(i){for(let r=S0(i);null!==r;r=gh(r)){if(!(r[bn]&xs.HasTransplantedViews))continue;const o=r[yc];for(let p=0;p-1&&(K0(r,p),ma(o,p))}this._attachedToViewContainer=!1}$0(this._lView[Fi],this._lView)}onDestroy(r){r1(this._lView,r)}markForCheck(){cd(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[bn]&=-129}reattach(){n0(this._lView),this._lView[bn]|=128}detectChanges(){this._lView[bn]|=1024,jd(this._lView,this.notifyErrorHandler)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new Be(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;const r=Qr(this._lView),o=this._lView[Bc];null!==o&&!r&&t3(o,this._lView),Pp(this._lView[Fi],this._lView)}attachToAppRef(r){if(this._attachedToViewContainer)throw new Be(902,!1);this._appRef=r;const o=Qr(this._lView),p=this._lView[Bc];null!==p&&!o&&X4(p,this._lView),n0(this._lView)}}let su=(()=>{class i{static{this.__NG_ELEMENT_ID__=ec}}return i})();const f6=su,s5=class extends f6{constructor(r,o,p){super(),this._declarationLView=r,this._declarationTContainer=o,this.elementRef=p}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(r,o){return this.createEmbeddedViewImpl(r,o)}createEmbeddedViewImpl(r,o,p){const E=qs(this._declarationLView,this._declarationTContainer,r,{embeddedViewInjector:o,dehydratedView:p});return new ou(E)}};function ec(){return o2(Hr(),Ri())}function o2(i,r){return 4&i.type?new s5(r,i,Hl(i,r)):null}let Et=()=>null;function li(i,r){return Et(i,r)}class _i{}const wi=new Ut("",{providedIn:"root",factory:()=>!1}),sn=new Ut(""),kn=new Ut("");class ki{}class Tn{}class tr{resolveComponentFactory(r){throw function Yn(i){const r=Error(`No component factory found for ${It(i)}.`);return r.ngComponent=i,r}(r)}}class Rn{static{this.NULL=new tr}}class Zr{}let ya=(()=>{class i{constructor(){this.destroyNode=null}static{this.__NG_ELEMENT_ID__=()=>function Ts(){const i=Ri(),o=fs(Hr().index,i);return(Yr(o)?o:i)[Bn]}()}}return i})(),xa=(()=>{class i{static{this.\u0275prov=Xt({token:i,providedIn:"root",factory:()=>null})}}return i})();function Na(i){return!!_a(i)}function dd(i,r,o){let p=o?i.styles:null,E=o?i.classes:null,P=0;if(null!==r)for(let $=0;$0&&em(i,o,P.join(" "))}}(ri,ls,vi,p),void 0!==o&&function sa(i,r,o){const p=i.projection=[];for(let E=0;E{class i{static{this.__NG_ELEMENT_ID__=$n}}return i})();function $n(){return k6(Hr(),Ri())}const uo=$o,Kd=class extends uo{constructor(r,o,p){super(),this._lContainer=r,this._hostTNode=o,this._hostLView=p}get element(){return Hl(this._hostTNode,this._hostLView)}get injector(){return new to(this._hostTNode,this._hostLView)}get parentInjector(){const r=Td(this._hostTNode,this._hostLView);if(f1(r)){const o=dl(r,this._hostLView),p=Nl(r);return new to(o[Fi].data[p+8],o)}return new to(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(r){const o=Cl(this._lContainer);return null!==o&&o[r]||null}get length(){return this._lContainer.length-ba}createEmbeddedView(r,o,p){let E,P;"number"==typeof p?E=p:null!=p&&(E=p.index,P=p.injector);const $=li(this._lContainer,r.ssrId),de=r.createEmbeddedViewImpl(o||{},P,$);return this.insertImpl(de,E,od(this._hostTNode,$)),de}createComponent(r,o,p,E,P){const $=r&&!function Zt(i){return"function"==typeof i}(r);let de;if($)de=o;else{const vi=o||{};de=vi.index,p=vi.injector,E=vi.projectableNodes,P=vi.environmentInjector||vi.ngModuleRef}const Le=$?r:new So(jn(r)),Ze=p||this.parentInjector;if(!P&&null==Le.ngModule){const Bi=($?Ze:this.parentInjector).get(Za,null);Bi&&(P=Bi)}const _t=jn(Le.componentType??{}),zt=li(this._lContainer,_t?.id??null),hi=Le.create(Ze,E,zt?.firstChild??null,P);return this.insertImpl(hi.hostView,de,od(this._hostTNode,zt)),hi}insert(r,o){return this.insertImpl(r,o,!0)}insertImpl(r,o,p){const E=r._lView;if(function rl(i){return mo(i[Tr])}(E)){const de=this.indexOf(r);if(-1!==de)this.detach(de);else{const Le=E[Tr],Ze=new Kd(Le,Le[ra],Le[Tr]);Ze.detach(Ze.indexOf(r))}}const P=this._adjustIndex(o),$=this._lContainer;return Hd($,E,P,p),r.attachToViewContainerRef(),Ua(A6($),P,r),r}move(r,o){return this.insert(r,o)}indexOf(r){const o=Cl(this._lContainer);return null!==o?o.indexOf(r):-1}remove(r){const o=this._adjustIndex(r,-1),p=K0(this._lContainer,o);p&&(ma(A6(this._lContainer),o),$0(p[Fi],p))}detach(r){const o=this._adjustIndex(r,-1),p=K0(this._lContainer,o);return p&&null!=ma(A6(this._lContainer),o)?new ou(p):null}_adjustIndex(r,o=0){return r??this.length+o}};function Cl(i){return i[8]}function A6(i){return i[8]||(i[8]=[])}function k6(i,r){let o;const p=r[i.index];return mo(p)?o=p:(o=s3(p,r,null,i),r[i.index]=o,Y1(r,o)),O5(o,r,i,p),new Kd(o,i,r)}let O5=function N5(i,r,o,p){if(i[Os])return;let E;E=8&o.type?Un(p):function bb(i,r){const o=i[Bn],p=o.createComment(""),E=co(r,i);return j1(o,K4(o,E),p,function Up(i,r){return i.nextSibling(r)}(o,E),!1),p}(r,o),i[Os]=E},Om=()=>!1;class I6{constructor(r){this.queryList=r,this.matches=null}clone(){return new I6(this.queryList)}setDirty(){this.queryList.setDirty()}}class Fm{constructor(r=[]){this.queries=r}createEmbeddedView(r){const o=r.queries;if(null!==o){const p=null!==r.contentQueries?r.contentQueries[0]:o.length,E=[];for(let P=0;Pr.trim())}(r):r}}class Nm{constructor(r=[]){this.queries=r}elementStart(r,o){for(let p=0;p0)p.push($[de/2]);else{const Ze=P[de+1],_t=r[-Le];for(let zt=ba;zt<_t.length;zt++){const ri=_t[zt];ri[Bc]===ri[Tr]&&O6(ri[Fi],ri,Ze,p)}if(null!==_t[yc]){const zt=_t[yc];for(let ri=0;ri(y(r),r.value);return o[l]=r,o}(i),p=o[l];return r?.equal&&(p.equal=r.equal),o.set=E=>q(p,E),o.update=E=>function pe(i,r){j()||k(),q(i,r(i.value))}(p,E),o.asReadonly=$5.bind(o),o}function $5(){const i=this[l];if(void 0===i.readonlyFn){const r=()=>this();r[l]=i,i.readonlyFn=r}return i.readonlyFn}function z6(i){return Pm(i)&&"function"==typeof i.set}function G6(i){let r=function o7(i){return Object.getPrototypeOf(i.prototype).constructor}(i.type),o=!0;const p=[i];for(;r;){let E;if(vr(i))E=r.\u0275cmp||r.\u0275dir;else{if(r.\u0275cmp)throw new Be(903,!1);E=r.\u0275dir}if(E){if(o){p.push(E);const $=i;$.inputs=E3(i.inputs),$.inputTransforms=E3(i.inputTransforms),$.declaredInputs=E3(i.declaredInputs),$.outputs=E3(i.outputs);const de=E.hostBindings;de&&Ub(i,de);const Le=E.viewQuery,Ze=E.contentQueries;if(Le&&Vb(i,Le),Ze&&s7(i,Ze),zb(i,E),Ae(i.outputs,E.outputs),vr(E)&&E.data.animation){const _t=i.data;_t.animation=(_t.animation||[]).concat(E.data.animation)}}const P=E.features;if(P)for(let $=0;$=0;p--){const E=i[p];E.hostVars=r+=E.hostVars,E.hostAttrs=ao(E.hostAttrs,o=ao(o,E.hostAttrs))}}(p)}function zb(i,r){for(const o in r.inputs){if(!r.inputs.hasOwnProperty(o)||i.inputs.hasOwnProperty(o))continue;const p=r.inputs[o];if(void 0!==p&&(i.inputs[o]=p,i.declaredInputs[o]=r.declaredInputs[o],null!==r.inputTransforms)){const E=Array.isArray(p)?p[0]:p;if(!r.inputTransforms.hasOwnProperty(E))continue;i.inputTransforms??={},i.inputTransforms[E]=r.inputTransforms[E]}}}function E3(i){return i===Ga?{}:i===sr?[]:i}function Vb(i,r){const o=i.viewQuery;i.viewQuery=o?(p,E)=>{r(p,E),o(p,E)}:r}function s7(i,r){const o=i.contentQueries;i.contentQueries=o?(p,E,P)=>{r(p,E,P),o(p,E,P)}:r}function Ub(i,r){const o=i.hostBindings;i.hostBindings=o?(p,E)=>{r(p,E),o(p,E)}:r}function j6(i){const r=i.inputConfig,o={};for(const p in r)if(r.hasOwnProperty(p)){const E=r[p];Array.isArray(E)&&E[3]&&(o[p]=E[3])}i.inputTransforms=o}class f2{}class W6{}function Wb(i,r){return new pu(i,r??null,[])}class pu extends f2{constructor(r,o,p,E=!0){super(),this.ngModuleType=r,this._parent=o,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new Wd(this);const P=_a(r);this._bootstrapComponents=Yo(P.bootstrap),this._r3Injector=eh(r,o,[{provide:f2,useValue:this},{provide:Rn,useValue:this.componentFactoryResolver},...p],It(r),new Set(["environment"])),E&&this.resolveInjectorInitializers()}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType)}get injector(){return this._r3Injector}destroy(){const r=this._r3Injector;!r.destroyed&&r.destroy(),this.destroyCbs.forEach(o=>o()),this.destroyCbs=null}onDestroy(r){this.destroyCbs.push(r)}}class X6 extends W6{constructor(r){super(),this.moduleType=r}create(r){return new pu(this.moduleType,r,[])}}class Y6 extends f2{constructor(r){super(),this.componentFactoryResolver=new Wd(this),this.instance=null;const o=new Rs([...r.providers,{provide:f2,useValue:this},{provide:Rn,useValue:this.componentFactoryResolver}],r.parent||zc(),r.debugName,new Set(["environment"]));this.injector=o,r.runEnvironmentInitializers&&o.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(r){this.injector.onDestroy(r)}}function K6(i,r,o=null){return new Y6({providers:i,parent:r,debugName:o,runEnvironmentInitializers:!0}).injector}function S3(i){return!!Q6(i)&&(Array.isArray(i)||!(i instanceof Map)&&Symbol.iterator in i)}function Q6(i){return null!==i&&("function"==typeof i||"object"==typeof i)}function hd(i,r,o){return i[r]=o}function To(i,r,o){return!Object.is(i[r],o)&&(i[r]=o,!0)}function m2(i,r,o,p){const E=To(i,r,o);return To(i,r+1,p)||E}function Bm(i,r,o,p,E){const P=m2(i,r,o,p);return To(i,r+2,E)||P}function Q1(i,r,o,p,E,P,$,de,Le,Ze){const _t=o+En,zt=r.firstCreatePass?function Qb(i,r,o,p,E,P,$,de,Le){const Ze=r.consts,_t=X1(r,i,4,$||null,de||null);Jh(r,o,_t,Ms(Ze,Le)),o0(r,_t);const zt=_t.tView=am(2,_t,p,E,P,r.directiveRegistry,r.pipeRegistry,null,r.schemas,Ze,null);return null!==r.queries&&(r.queries.template(r,_t),zt.queries=r.queries.embeddedTView(_t)),_t}(_t,r,i,p,E,P,$,de,Le):r.data[_t];Br(zt,!1);const ri=f7(r,i,zt,o);l1()&&Yh(r,i,ri,zt),jo(ri,i);const hi=s3(ri,i,ri,zt);return i[_t]=hi,Y1(i,hi),function F5(i,r,o){return Om(i,r,o)}(hi,zt,i),qi(zt)&&r3(r,i,zt),null!=Le&&rm(i,zt,Ze),zt}function Z6(i,r,o,p,E,P,$,de){const Le=Ri(),Ze=ur();return Q1(Le,Ze,i,r,o,p,E,Ms(Ze.consts,P),$,de),Z6}let f7=function m7(i,r,o,p){return Lc(!0),r[Bn].createComment("")};function C7(i,r){if(null!==f())throw new Be(-602,!1)}var _u=function(i){return i[i.EarlyRead=0]="EarlyRead",i[i.Write=1]="Write",i[i.MixedReadWrite=2]="MixedReadWrite",i[i.Read=3]="Read",i}(_u||{});let q6=(()=>{class i{constructor(){this.impl=null}execute(){this.impl?.execute()}static{this.\u0275prov=Xt({token:i,providedIn:"root",factory:()=>new i})}}return i})();class I3{constructor(){this.ngZone=hn(Da),this.scheduler=hn(_i),this.errorHandler=hn(Ac,{optional:!0}),this.sequences=new Set,this.deferredRegistrations=new Set,this.executing=!1}static{this.PHASES=[_u.EarlyRead,_u.Write,_u.MixedReadWrite,_u.Read]}execute(){this.executing=!0;for(const r of I3.PHASES)for(const o of this.sequences)if(!o.erroredOrDestroyed&&o.hooks[r])try{o.pipelinedValue=this.ngZone.runOutsideAngular(()=>o.hooks[r](o.pipelinedValue))}catch(p){o.erroredOrDestroyed=!0,this.errorHandler?.handleError(p)}this.executing=!1;for(const r of this.sequences)r.afterRun(),r.once&&(this.sequences.delete(r),r.destroy());for(const r of this.deferredRegistrations)this.sequences.add(r);this.deferredRegistrations.size>0&&this.scheduler.notify(7),this.deferredRegistrations.clear()}register(r){this.executing?this.deferredRegistrations.add(r):(this.sequences.add(r),this.scheduler.notify(6))}unregister(r){this.executing&&this.sequences.has(r)?(r.erroredOrDestroyed=!0,r.pipelinedValue=void 0,r.once=!0):(this.sequences.delete(r),this.deferredRegistrations.delete(r))}static{this.\u0275prov=Xt({token:I3,providedIn:"root",factory:()=>new I3})}}class w7{constructor(r,o,p,E){this.impl=r,this.hooks=o,this.once=p,this.erroredOrDestroyed=!1,this.pipelinedValue=void 0,this.unregisterOnDestroy=E?.onDestroy(()=>this.destroy())}afterRun(){this.erroredOrDestroyed=!1,this.pipelinedValue=void 0}destroy(){this.impl.unregister(this),this.unregisterOnDestroy?.()}}function Um(i,r){!r?.injector&&pn();const o=r?.injector??hn(Ho);return function os(i){return"browser"===(i??hn(Ho)).get(io)}(o)?(zs("NgAfterNextRender"),function M7(i,r,o,p){const E=r.get(q6);E.impl??=r.get(I3);const P=o?.phase??_u.MixedReadWrite,$=!0!==o?.manualCleanup?r.get(Gl):null,de=new w7(E.impl,function qb(i,r){if(i instanceof Function){const o=[void 0,void 0,void 0,void 0];return o[r]=i,o}return[i.earlyRead,i.write,i.mixedReadWrite,i.read]}(i,P),p,$);return E.impl.register(de),de}(i,o,r,!0)):E7}const E7={destroy(){}};function Ym(i,r,o,p){const E=Ri();return To(E,ns(),r)&&(ur(),In(oa(),E,i,r,o,p)),Ym}function Cu(i,r,o,p){return To(i,ns(),o)?r+Ft(o)+p:ar}function v2(i,r,o,p,E,P){const de=m2(i,Ns(),o,E);return uc(2),de?r+Ft(o)+p+Ft(E)+P:ar}function b2(i,r,o,p,E,P,$,de,Le,Ze){const zt=function Jc(i,r,o,p,E,P){const $=m2(i,r,o,p);return m2(i,r+2,E,P)||$}(i,Ns(),o,E,$,Le);return uc(4),zt?r+Ft(o)+p+Ft(E)+P+Ft($)+de+Ft(Le)+Ze:ar}function Km(i,r){return i<<17|r<<2}function Qd(i){return i>>17&32767}function ug(i){return 2|i}function x2(i){return(131068&i)>>2}function $m(i,r){return-131069&i|r<<2}function Qm(i){return 1|i}function fg(i,r,o,p){const E=i[o+1],P=null===r;let $=p?Qd(E):x2(E),de=!1;for(;0!==$&&(!1===de||P);){const Ze=i[$+1];Ty(i[$],r)&&(de=!0,i[$+1]=p?Qm(Ze):ug(Ze)),$=p?Qd(Ze):x2(Ze)}de&&(i[o+1]=p?ug(E):Qm(E))}function Ty(i,r){return null===i||null==r||(Array.isArray(i)?i[1]:i)===r||!(!Array.isArray(i)||"string"!=typeof r)&&yo(i,r)>=0}const cs={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function mg(i){return i.substring(cs.key,cs.keyEnd)}function J7(i,r){const o=cs.textEnd;return o===r?-1:(r=cs.keyEnd=function ky(i,r,o){for(;r32;)r++;return r}(i,cs.key=r,o),Tu(i,r,o))}function Tu(i,r,o){for(;r=0;o=J7(r,o))$r(i,mg(r),!0)}function wl(i,r,o,p){const E=Ri(),P=ur(),$=uc(2);P.firstUpdatePass&&s_(P,i,$,p),r!==ar&&To(E,$,r)&&d_(P,P.data[qa()],E,E[Bn],i,E[$+1]=function h_(i,r){return null==i||""===i||("string"==typeof r?i+=r:"object"==typeof i&&(i=It(rs(i)))),i}(r,o),p,$)}function Ml(i,r,o,p){const E=ur(),P=uc(2);E.firstUpdatePass&&s_(E,null,P,p);const $=Ri();if(o!==ar&&To($,P,o)){const de=E.data[qa()];if(u_(de,p)&&!o_(E,P)){let Le=p?de.classesWithoutHost:de.stylesWithoutHost;null!==Le&&(o=Qt(Le,o||"")),gg(E,de,$,o,p)}else!function zy(i,r,o,p,E,P,$,de){E===ar&&(E=sr);let Le=0,Ze=0,_t=0=i.expandoStartIndex}function s_(i,r,o,p){const E=i.data;if(null===E[o+1]){const P=E[qa()],$=o_(i,o);u_(P,p)&&null===r&&!$&&(r=!1),r=function F3(i,r,o,p){const E=Sc(i);let P=p?r.residualClasses:r.residualStyles;if(null===E)0===(p?r.classBindings:r.styleBindings)&&(o=N3(o=bg(null,i,r,o,p),r.attrs,p),P=null);else{const $=r.directiveStylingLast;if(-1===$||i[$]!==E)if(o=bg(E,i,r,o,p),null===P){let Le=function Oy(i,r,o){const p=o?r.classBindings:r.styleBindings;if(0!==x2(p))return i[Qd(p)]}(i,r,p);void 0!==Le&&Array.isArray(Le)&&(Le=bg(null,i,r,Le[1],p),Le=N3(Le,r.attrs,p),function Fy(i,r,o,p){i[Qd(o?r.classBindings:r.styleBindings)]=p}(i,r,p,Le))}else P=function Ny(i,r,o){let p;const E=r.directiveEnd;for(let P=1+r.directiveStylingLast;P0)&&(Ze=!0)):_t=o,E)if(0!==Le){const ri=Qd(i[de+1]);i[p+1]=Km(ri,de),0!==ri&&(i[ri+1]=$m(i[ri+1],p)),i[de+1]=function hg(i,r){return 131071&i|r<<17}(i[de+1],p)}else i[p+1]=Km(de,0),0!==de&&(i[de+1]=$m(i[de+1],p)),de=p;else i[p+1]=Km(Le,0),0===de?de=p:i[Le+1]=$m(i[Le+1],p),Le=p;Ze&&(i[p+1]=ug(i[p+1])),fg(i,_t,p,!0),fg(i,_t,p,!1),function Sy(i,r,o,p,E){const P=E?i.residualClasses:i.residualStyles;null!=P&&"string"==typeof r&&yo(P,r)>=0&&(o[p+1]=Qm(o[p+1]))}(r,_t,i,p,P),$=Km(de,Le),P?r.classBindings=$:r.styleBindings=$}(E,P,r,o,$,p)}}function bg(i,r,o,p,E){let P=null;const $=o.directiveEnd;let de=o.directiveStylingLast;for(-1===de?de=o.directiveStart:de++;de<$&&(P=r[de],p=N3(p,P.hostAttrs,E),P!==i);)de++;return null!==i&&(o.directiveStylingLast=de),p}function N3(i,r,o){const p=o?1:2;let E=-1;if(null!==r)for(let P=0;P0;){const Le=i[E],Ze=Array.isArray(Le),_t=Ze?Le[1]:Le,zt=null===_t;let ri=o[E+1];ri===ar&&(ri=zt?sr:void 0);let hi=zt?pa(ri,p):_t===p?ri:void 0;if(Ze&&!Zm(hi)&&(hi=pa(Le,p)),Zm(hi)&&(de=hi,$))return de;const vi=i[E+1];E=$?Qd(vi):x2(vi)}if(null!==r){let Le=P?r.residualClasses:r.residualStyles;null!=Le&&(de=pa(Le,p))}return de}function Zm(i){return void 0!==i}function u_(i,r){return!!(i.flags&(r?8:16))}function Jm(i,r,o){Ml($r,tc,Cu(Ri(),i,r,o),!0)}class m_{destroy(r){}updateValue(r,o){}swap(r,o){const p=Math.min(r,o),E=Math.max(r,o),P=this.detach(E);if(E-p>1){const $=this.detach(p);this.attach(p,P),this.attach(E,$)}else this.attach(p,P)}move(r,o){this.attach(o,this.detach(r))}}function xg(i,r,o,p,E){return i===o&&Object.is(r,p)?1:Object.is(E(i,r),E(o,p))?-1:0}function Cg(i,r,o,p){return!(void 0===r||!r.has(p)||(i.attach(o,r.get(p)),r.delete(p),0))}function g_(i,r,o,p,E){if(Cg(i,r,p,o(p,E)))i.updateValue(p,E);else{const P=i.create(p,E);i.attach(p,P)}}function wg(i,r,o,p){const E=new Set;for(let P=r;P<=o;P++)E.add(p(P,i.at(P)));return E}class __{constructor(){this.kvMap=new Map,this._vMap=void 0}has(r){return this.kvMap.has(r)}delete(r){if(!this.has(r))return!1;const o=this.kvMap.get(r);return void 0!==this._vMap&&this._vMap.has(o)?(this.kvMap.set(r,this._vMap.get(o)),this._vMap.delete(o)):this.kvMap.delete(r),!0}get(r){return this.kvMap.get(r)}set(r,o){if(this.kvMap.has(r)){let p=this.kvMap.get(r);void 0===this._vMap&&(this._vMap=new Map);const E=this._vMap;for(;E.has(p);)p=E.get(p);E.set(p,o)}else this.kvMap.set(r,o)}forEach(r){for(let[o,p]of this.kvMap)if(r(p,o),void 0!==this._vMap){const E=this._vMap;for(;E.has(p);)p=E.get(p),r(p,o)}}}function v_(i,r){zs("NgControlFlow");const o=Ri(),p=ns(),E=o[p]!==ar?o[p]:-1,P=-1!==E?qm(o,En+E):void 0;if(To(o,p,i)){const de=w(null);try{if(void 0!==P&&sd(P,0),-1!==i){const Le=En+i,Ze=qm(o,Le),_t=Eg(o[Fi],Le),zt=li(Ze,_t.tView.ssrId);Hd(Ze,qs(o,_t,r,{dehydratedView:zt}),0,od(_t,zt))}}finally{w(de)}}else if(void 0!==P){const de=ru(P,0);void 0!==de&&(de[hr]=r)}}class Yy{constructor(r,o,p){this.lContainer=r,this.$implicit=o,this.$index=p}get $count(){return this.lContainer.length-ba}}function b_(i,r){return r}class y_{constructor(r,o,p){this.hasEmptyBlock=r,this.trackByFn=o,this.liveCollection=p}}function x_(i,r,o,p,E,P,$,de,Le,Ze,_t,zt,ri){zs("NgControlFlow");const hi=Ri(),vi=ur(),Bi=void 0!==Le,rn=Ri(),un=de?$.bind(rn[Lr][hr]):$,zi=new y_(Bi,un);rn[En+i]=zi,Q1(hi,vi,i+1,r,o,p,E,Ms(vi.consts,P)),Bi&&Q1(hi,vi,i+2,Le,Ze,_t,zt,Ms(vi.consts,ri))}class Qy extends m_{constructor(r,o,p){super(),this.lContainer=r,this.hostLView=o,this.templateTNode=p,this.operationsCounter=void 0,this.needsIndexUpdate=!1}get length(){return this.lContainer.length-ba}at(r){return this.getLView(r)[hr].$implicit}attach(r,o){const p=o[Ja];this.needsIndexUpdate||=r!==this.length,Hd(this.lContainer,o,r,od(this.templateTNode,p))}detach(r){return this.needsIndexUpdate||=r!==this.length-1,function Zy(i,r){return K0(i,r)}(this.lContainer,r)}create(r,o){const p=li(this.lContainer,this.templateTNode.tView.ssrId),E=qs(this.hostLView,this.templateTNode,new Yy(this.lContainer,o,r),{dehydratedView:p});return this.operationsCounter?.recordCreate(),E}destroy(r){$0(r[Fi],r),this.operationsCounter?.recordDestroy()}updateValue(r,o){this.getLView(r)[hr].$implicit=o}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let r=0;r{i.destroy(Le)})}(Le,i,P.trackByFn),Le.updateIndexes(),P.hasEmptyBlock){const Ze=ns(),_t=0===Le.length;if(To(p,Ze,_t)){const zt=o+2,ri=qm(p,zt);if(_t){const hi=Eg(E,zt),vi=li(ri,hi.tView.ssrId);Hd(ri,qs(p,hi,void 0,{dehydratedView:vi}),0,od(hi,vi))}else sd(ri,0)}}}finally{w(r)}}function qm(i,r){return i[r]}function Eg(i,r){return nl(i,r)}function ep(i,r,o,p){const E=Ri(),P=ur(),$=En+i,de=E[Bn],Le=P.firstCreatePass?function qy(i,r,o,p,E,P){const $=r.consts,Le=X1(r,i,2,p,Ms($,E));return Jh(r,o,Le,Ms($,P)),null!==Le.attrs&&dd(Le,Le.attrs,!1),null!==Le.mergedAttrs&&dd(Le,Le.mergedAttrs,!0),null!==r.queries&&r.queries.elementStart(r,Le),Le}($,P,E,r,o,p):P.data[$],Ze=C_(P,E,Le,de,r,i);E[$]=Ze;const _t=qi(Le);return Br(Le,!0),i3(de,Ze,Le),!function p2(i){return!(32&~i.flags)}(Le)&&l1()&&Yh(P,E,Ze,Le),0===function Vu(){return Zn.lFrame.elementDepthCount}()&&jo(Ze,E),function o4(){Zn.lFrame.elementDepthCount++}(),_t&&(r3(P,E,Le),n3(P,Le,E)),null!==p&&rm(E,Le),ep}function P3(){let i=Hr();Il()?Rl():(i=i.parent,Br(i,!1));const r=i;(function Hu(i){return Zn.skipHydrationRootTNode===i})(r)&&function L2(){Zn.skipHydrationRootTNode=null}(),function Uu(){Zn.lFrame.elementDepthCount--}();const o=ur();return o.firstCreatePass&&(o0(o,i),po(i)&&o.queries.elementEnd(i)),null!=r.classesWithoutHost&&function B2(i){return!!(8&i.flags)}(r)&&gg(o,r,Ri(),r.classesWithoutHost,!0),null!=r.stylesWithoutHost&&function Md(i){return!!(16&i.flags)}(r)&&gg(o,r,Ri(),r.stylesWithoutHost,!1),P3}function Sg(i,r,o,p){return ep(i,r,o,p),P3(),Sg}let C_=(i,r,o,p,E,P)=>(Lc(!0),jh(p,E,function Ku(){return Zn.lFrame.currentNamespace}()));function tp(i,r,o){const p=Ri(),E=ur(),P=i+En,$=E.firstCreatePass?function tx(i,r,o,p,E){const P=r.consts,$=Ms(P,p),de=X1(r,i,8,"ng-container",$);return null!==$&&dd(de,$,!0),Jh(r,o,de,Ms(P,E)),null!==r.queries&&r.queries.elementStart(r,de),de}(P,E,p,r,o):E.data[P];Br($,!0);const de=M_(E,p,$,i);return p[P]=de,l1()&&Yh(E,p,de,$),jo(de,p),qi($)&&(r3(E,p,$),n3(E,$,p)),null!=o&&rm(p,$),tp}function C2(){let i=Hr();const r=ur();return Il()?Rl():(i=i.parent,Br(i,!1)),r.firstCreatePass&&(o0(r,i),po(i)&&r.queries.elementEnd(i)),C2}function Tg(i,r,o){return tp(i,r,o),C2(),Tg}let M_=(i,r,o,p)=>(Lc(!0),W4(r[Bn],""));function E_(){return Ri()}function Lg(i,r,o){const p=Ri();return To(p,ns(),r)&&Ps(ur(),oa(),p,i,r,p[Bn],o,!0),Lg}function Dg(i,r,o){const p=Ri();if(To(p,ns(),r)){const P=ur(),$=oa();Ps(P,$,p,i,r,Po(Sc(P.data),$,p),o,!0)}return Dg}const w2=void 0;var S_=["en",[["a","p"],["AM","PM"],w2],[["AM","PM"],w2,w2],[["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"]],w2,[["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"]],w2,[["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}",w2,"{1} 'at' {0}",w2],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function rx(i){const o=Math.floor(Math.abs(i)),p=i.toString().replace(/^[^.]*\.?/,"").length;return 1===o&&0===p?1:5}];let Lu={};function Ag(i){const r=function L_(i){return i.toLowerCase().replace(/_/g,"-")}(i);let o=kg(r);if(o)return o;const p=r.split("-")[0];if(o=kg(p),o)return o;if("en"===p)return S_;throw new Be(701,!1)}function T_(i){return Ag(i)[Du.PluralCase]}function kg(i){return i in Lu||(Lu[i]=yt.ng&&yt.ng.common&&yt.ng.common.locales&&yt.ng.common.locales[i]),Lu[i]}var Du=function(i){return i[i.LocaleId=0]="LocaleId",i[i.DayPeriodsFormat=1]="DayPeriodsFormat",i[i.DayPeriodsStandalone=2]="DayPeriodsStandalone",i[i.DaysFormat=3]="DaysFormat",i[i.DaysStandalone=4]="DaysStandalone",i[i.MonthsFormat=5]="MonthsFormat",i[i.MonthsStandalone=6]="MonthsStandalone",i[i.Eras=7]="Eras",i[i.FirstDayOfWeek=8]="FirstDayOfWeek",i[i.WeekendRange=9]="WeekendRange",i[i.DateFormat=10]="DateFormat",i[i.TimeFormat=11]="TimeFormat",i[i.DateTimeFormat=12]="DateTimeFormat",i[i.NumberSymbols=13]="NumberSymbols",i[i.NumberFormats=14]="NumberFormats",i[i.CurrencyCode=15]="CurrencyCode",i[i.CurrencySymbol=16]="CurrencySymbol",i[i.CurrencyName=17]="CurrencyName",i[i.Currencies=18]="Currencies",i[i.Directionality=19]="Directionality",i[i.PluralCase=20]="PluralCase",i[i.ExtraData=21]="ExtraData",i}(Du||{});const M2="en-US";let D_=M2,Q_=(i,r,o)=>{};function Ug(i,r,o,p){const E=Ri(),P=ur(),$=Hr();return Gg(P,E,E[Bn],$,i,r,p),Ug}function sp(i,r){const o=Hr(),p=Ri(),E=ur();return Gg(E,p,Po(Sc(E.data),o,p),o,i,r),sp}function Gg(i,r,o,p,E,P,$){const de=qi(p),Ze=i.firstCreatePass&&iu(i),_t=r[hr],zt=d6(r);let ri=!0;if(3&p.type||$){const Bi=co(p,r),rn=$?$(Bi):Bi,un=zt.length,zi=$?Wr=>$(Un(Wr[p.index])):p.index;let lr=null;if(!$&&de&&(lr=function Fx(i,r,o,p){const E=i.cleanup;if(null!=E)for(let P=0;PLe?de[Le]:null}"string"==typeof $&&(P+=2)}return null}(i,r,E,p.index)),null!==lr)(lr.__ngLastListenerFn__||lr).__ngNextListenerFn__=P,lr.__ngLastListenerFn__=P,ri=!1;else{P=q_(p,r,_t,P),Q_(Bi,E,P);const Wr=o.listen(rn,E,P);zt.push(P,Wr),Ze&&Ze.push(E,zi,un,un+1)}}else P=q_(p,r,_t,P);const hi=p.outputs;let vi;if(ri&&null!==hi&&(vi=hi[E])){const Bi=vi.length;if(Bi)for(let rn=0;rn-1?fs(i.index,r):r,5);let de=J_(r,o,p,P),Le=E.__ngNextListenerFn__;for(;Le;)de=J_(r,o,Le,P)&&de,Le=Le.__ngNextListenerFn__;return de}}function Hg(i=1){return function O2(i){return(Zn.lFrame.contextLView=function Bu(i,r){for(;i>0;)r=r[il],i--;return r}(i,Zn.lFrame.contextLView))[hr]}(i)}function Px(i,r){let o=null;const p=function ai(i){const r=i.attrs;if(null!=r){const o=r.indexOf(5);if(!(1&o))return r[o+1]}return null}(i);for(let E=0;E(Lc(!0),function H4(i,r){return i.createText(r)}(r[Bn],p));function e8(i){return ku("",i,""),e8}function ku(i,r,o){const p=Ri(),E=Cu(p,i,r,o);return E!==ar&&Rc(p,qa(),E),ku}function t8(i,r,o,p,E){const P=Ri(),$=v2(P,i,r,o,p,E);return $!==ar&&Rc(P,qa(),$),t8}function i8(i,r,o,p,E,P,$){const de=Ri(),Le=function wu(i,r,o,p,E,P,$,de){const Ze=Bm(i,Ns(),o,E,$);return uc(3),Ze?r+Ft(o)+p+Ft(E)+P+Ft($)+de:ar}(de,i,r,o,p,E,P,$);return Le!==ar&&Rc(de,qa(),Le),i8}function n8(i,r,o,p,E,P,$,de,Le){const Ze=Ri(),_t=b2(Ze,i,r,o,p,E,P,$,de,Le);return _t!==ar&&Rc(Ze,qa(),_t),n8}function up(i,r,o){z6(r)&&(r=r());const p=Ri();return To(p,ns(),r)&&Ps(ur(),oa(),p,i,r,p[Bn],o,!1),up}function M9(i,r){const o=z6(i);return o&&i.set(r),o}function fp(i,r){const o=Ri(),p=ur(),E=Hr();return Gg(p,o,o[Bn],E,i,r),fp}function mp(i,r,o,p,E){if(i=Te(i),Array.isArray(i))for(let P=0;P>20;if(es(i)||!i.multi){const hi=new wd(Ze,E,Gd),vi=pp(Le,r,E?_t:_t+ri,zt);-1===vi?(Dr(Sd(de,$),P,Le),a8(P,i,r.length),r.push(Le),de.directiveStart++,de.directiveEnd++,E&&(de.providerIndexes+=1048576),o.push(hi),$.push(hi)):(o[vi]=hi,$[vi]=hi)}else{const hi=pp(Le,r,_t+ri,zt),vi=pp(Le,r,_t,_t+ri),rn=vi>=0&&o[vi];if(E&&!rn||!E&&!(hi>=0&&o[hi])){Dr(Sd(de,$),P,Le);const un=function Jx(i,r,o,p,E){const P=new wd(i,o,Gd);return P.multi=[],P.index=r,P.componentProviders=0,T9(P,E,p&&!o),P}(E?Zx:Qx,o.length,E,p,Ze);!E&&rn&&(o[vi].providerFactory=un),a8(P,i,r.length,0),r.push(Le),de.directiveStart++,de.directiveEnd++,E&&(de.providerIndexes+=1048576),o.push(un),$.push(un)}else a8(P,i,hi>-1?hi:vi,T9(o[E?vi:hi],Ze,!E&&p));!E&&p&&rn&&o[vi].componentProviders++}}}function a8(i,r,o,p){const E=es(r),P=function Pc(i){return!!i.useClass}(r);if(E||P){const Le=(P?Te(r.useClass):r).prototype.ngOnDestroy;if(Le){const Ze=i.destroyHooks||(i.destroyHooks=[]);if(!E&&r.multi){const _t=Ze.indexOf(o);-1===_t?Ze.push(o,[p,Le]):Ze[_t+1].push(p,Le)}else Ze.push(o,Le)}}}function T9(i,r,o){return o&&i.componentProviders++,i.multi.push(r)-1}function pp(i,r,o,p){for(let E=o;E{o.providersResolver=(p,E)=>function $x(i,r,o){const p=ur();if(p.firstCreatePass){const E=vr(i);mp(o,p.data,p.blueprint,E,!0),mp(r,p.data,p.blueprint,E,!1)}}(p,E?E(i):i,r)}}let qx=(()=>{class i{constructor(o){this._injector=o,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(o){if(!o.standalone)return null;if(!this.cachedInjectors.has(o)){const p=bs(0,o.type),E=p.length>0?K6([p],this._injector,`Standalone[${o.type.name}]`):null;this.cachedInjectors.set(o,E)}return this.cachedInjectors.get(o)}ngOnDestroy(){try{for(const o of this.cachedInjectors.values())null!==o&&o.destroy()}finally{this.cachedInjectors.clear()}}static{this.\u0275prov=Xt({token:i,providedIn:"environment",factory:()=>new i(xr(Za))})}}return i})();function D9(i){zs("NgStandalone"),i.getStandaloneInjector=r=>r.get(qx).getOrCreateStandaloneInjector(i)}function s8(i,r,o){const p=ms()+i,E=Ri();return E[p]===ar?hd(E,p,o?r.call(o):r()):function T3(i,r){return i[r]}(E,p)}function I9(i,r,o,p){return N9(Ri(),ms(),i,r,o,p)}function R9(i,r,o,p,E){return P9(Ri(),ms(),i,r,o,p,E)}function O9(i,r,o,p,E,P){return z9(Ri(),ms(),i,r,o,p,E,P)}function Ru(i,r){const o=i[r];return o===ar?void 0:o}function N9(i,r,o,p,E,P){const $=r+o;return To(i,$,E)?hd(i,$+1,P?p.call(P,E):p(E)):Ru(i,$+1)}function P9(i,r,o,p,E,P,$){const de=r+o;return m2(i,de,E,P)?hd(i,de+2,$?p.call($,E,P):p(E,P)):Ru(i,de+2)}function z9(i,r,o,p,E,P,$,de){const Le=r+o;return Bm(i,Le,E,P,$)?hd(i,Le+3,de?p.call(de,E,P,$):p(E,P,$)):Ru(i,Le+3)}function U9(i,r){const o=ur();let p;const E=i+En;o.firstCreatePass?(p=function sC(i,r){if(r)for(let o=r.length-1;o>=0;o--){const p=r[o];if(i===p.name)return p}}(r,o.pipeRegistry),o.data[E]=p,p.onDestroy&&(o.destroyHooks??=[]).push(E,p.onDestroy)):p=o.data[E];const P=p.factory||(p.factory=fa(p.type)),de=mr(Gd);try{const Le=hl(!1),Ze=P();return hl(Le),function Kg(i,r,o,p){o>=i.data.length&&(i.data[o]=null,i.blueprint[o]=null),r[o]=p}(o,Ri(),E,Ze),Ze}finally{mr(de)}}function G9(i,r,o){const p=i+En,E=Ri(),P=Al(E,p);return j3(E,p)?N9(E,ms(),r,P.transform,o,P):P.transform(o)}function H9(i,r,o,p){const E=i+En,P=Ri(),$=Al(P,E);return j3(P,E)?P9(P,ms(),r,$.transform,o,p,$):$.transform(o,p)}function j9(i,r,o,p,E){const P=i+En,$=Ri(),de=Al($,P);return j3($,P)?z9($,ms(),r,de.transform,o,p,E,de):de.transform(o,p,E)}function j3(i,r){return i[Fi].data[r].pure}function c8(i,r){return o2(i,r)}class rv{constructor(r){this.full=r;const o=r.split(".");this.major=o[0],this.minor=o[1],this.patch=o.slice(2).join(".")}}let b8=(()=>{class i{log(o){console.log(o)}warn(o){console.warn(o)}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"platform"})}}return i})();const w8=new Ut(""),uv=new Ut("");let M8,ew=(()=>{class i{constructor(o,p,E){this._ngZone=o,this.registry=p,this._isZoneStable=!0,this._callbacks=[],this.taskTrackingZone=null,M8||(function tw(i){M8=i}(E),E.addToWindow(p)),this._watchAngularEvents(),o.run(()=>{this.taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{Da.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}isStable(){return this._isZoneStable&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let o=this._callbacks.pop();clearTimeout(o.timeoutId),o.doneCb()}});else{let o=this.getPendingTasks();this._callbacks=this._callbacks.filter(p=>!p.updateCb||!p.updateCb(o)||(clearTimeout(p.timeoutId),!1))}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(o=>({source:o.source,creationLocation:o.creationLocation,data:o.data})):[]}addCallback(o,p,E){let P=-1;p&&p>0&&(P=setTimeout(()=>{this._callbacks=this._callbacks.filter($=>$.timeoutId!==P),o()},p)),this._callbacks.push({doneCb:o,timeoutId:P,updateCb:E})}whenStable(o,p,E){if(E&&!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(o,p,E),this._runCallbacksIfReady()}registerApplication(o){this.registry.registerApplication(o,this)}unregisterApplication(o){this.registry.unregisterApplication(o)}findProviders(o,p,E){return[]}static{this.\u0275fac=function(p){return new(p||i)(xr(Da),xr(fv),xr(uv))}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac})}}return i})(),fv=(()=>{class i{constructor(){this._applications=new Map}registerApplication(o,p){this._applications.set(o,p)}unregisterApplication(o){this._applications.delete(o)}unregisterAllApplications(){this._applications.clear()}getTestability(o){return this._applications.get(o)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(o,p=!0){return M8?.findTestabilityInTree(this,o,p)??null}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"platform"})}}return i})();function vp(i){return!!i&&"function"==typeof i.then}function mv(i){return!!i&&"function"==typeof i.subscribe}const pv=new Ut("");let gv=(()=>{class i{constructor(){this.initialized=!1,this.done=!1,this.donePromise=new Promise((o,p)=>{this.resolve=o,this.reject=p}),this.appInits=hn(pv,{optional:!0})??[]}runInitializers(){if(this.initialized)return;const o=[];for(const E of this.appInits){const P=E();if(vp(P))o.push(P);else if(mv(P)){const $=new Promise((de,Le)=>{P.subscribe({complete:de,error:Le})});o.push($)}}const p=()=>{this.done=!0,this.resolve()};Promise.all(o).then(()=>{p()}).catch(E=>{this.reject(E)}),0===o.length&&p(),this.initialized=!0}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"root"})}}return i})();const bp=new Ut("");function S8(i,r){return Array.isArray(r)?r.reduce(S8,i):{...i,...r}}let fd=(()=>{class i{constructor(){this._bootstrapListeners=[],this._runningTick=!1,this._destroyed=!1,this._destroyListeners=[],this._views=[],this.internalErrorHandler=hn(g0),this.afterRenderManager=hn(q6),this.zonelessEnabled=hn(wi),this.dirtyFlags=0,this.deferredDirtyFlags=0,this.externalTestViews=new Set,this.beforeRender=new Ie.B,this.afterTick=new Ie.B,this.componentTypes=[],this.components=[],this.isStable=hn(jc).hasPendingTasks.pipe((0,me.T)(o=>!o)),this._injector=hn(Za)}get allViews(){return[...this.externalTestViews.keys(),...this._views]}get destroyed(){return this._destroyed}whenStable(){let o;return new Promise(p=>{o=this.isStable.subscribe({next:E=>{E&&p()}})}).finally(()=>{o.unsubscribe()})}get injector(){return this._injector}bootstrap(o,p){const E=o instanceof Tn;if(!this._injector.get(gv).done)throw!E&&ca(o),new Be(405,!1);let $;$=E?o:this._injector.get(Rn).resolveComponentFactory(o),this.componentTypes.push($.componentType);const de=function iw(i){return i.isBoundToModule}($)?void 0:this._injector.get(f2),Ze=$.create(Ho.NULL,[],p||$.selector,de),_t=Ze.location.nativeElement,zt=Ze.injector.get(w8,null);return zt?.registerApplication(_t),Ze.onDestroy(()=>{this.detachView(Ze.hostView),yp(this.components,Ze),zt?.unregisterApplication(_t)}),this._loadComponent(Ze),Ze}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick()}_tick(){if(this._runningTick)throw new Be(101,!1);const o=w(null);try{this._runningTick=!0,this.synchronize()}catch(p){this.internalErrorHandler(p)}finally{this._runningTick=!1,w(o),this.afterTick.next()}}synchronize(){let o=null;this._injector.destroyed||(o=this._injector.get(Zr,null,{optional:!0})),this.dirtyFlags|=this.deferredDirtyFlags,this.deferredDirtyFlags=0;let p=0;for(;0!==this.dirtyFlags&&p++<10;)this.synchronizeOnce(o)}synchronizeOnce(o){if(this.dirtyFlags|=this.deferredDirtyFlags,this.deferredDirtyFlags=0,7&this.dirtyFlags){const p=!!(1&this.dirtyFlags);this.dirtyFlags&=-8,this.dirtyFlags|=8,this.beforeRender.next(p);for(let{_lView:E,notifyErrorHandler:P}of this._views)vv(E,P,p,this.zonelessEnabled);if(this.dirtyFlags&=-5,this.syncDirtyFlagsWithViews(),7&this.dirtyFlags)return}else o?.begin?.(),o?.end?.();8&this.dirtyFlags&&(this.dirtyFlags&=-9,this.afterRenderManager.execute()),this.syncDirtyFlagsWithViews()}syncDirtyFlagsWithViews(){this.allViews.some(({_lView:o})=>t0(o))?this.dirtyFlags|=2:this.dirtyFlags&=-8}attachView(o){const p=o;this._views.push(p),p.attachToAppRef(this)}detachView(o){const p=o;yp(this._views,p),p.detachFromAppRef()}_loadComponent(o){this.attachView(o.hostView),this.tick(),this.components.push(o);const p=this._injector.get(bp,[]);[...this._bootstrapListeners,...p].forEach(E=>E(o))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(o=>o()),this._views.slice().forEach(o=>o.destroy())}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(o){return this._destroyListeners.push(o),()=>yp(this._destroyListeners,o)}destroy(){if(this._destroyed)throw new Be(406,!1);const o=this._injector;o.destroy&&!o.destroyed&&o.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"root"})}}return i})();function yp(i,r){const o=i.indexOf(r);o>-1&&i.splice(o,1)}function vv(i,r,o,p){(o||t0(i))&&jd(i,r,o&&!p?0:1)}class aw{constructor(r,o){this.ngModuleFactory=r,this.componentFactories=o}}let bv=(()=>{class i{compileModuleSync(o){return new X6(o)}compileModuleAsync(o){return Promise.resolve(this.compileModuleSync(o))}compileModuleAndAllComponentsSync(o){const p=this.compileModuleSync(o),P=Yo(_a(o).declarations).reduce(($,de)=>{const Le=jn(de);return Le&&$.push(new So(Le)),$},[]);return new aw(p,P)}compileModuleAndAllComponentsAsync(o){return Promise.resolve(this.compileModuleAndAllComponentsSync(o))}clearCache(){}clearCacheFor(o){}getModuleId(o){}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"root"})}}return i})(),cw=(()=>{class i{constructor(){this.zone=hn(Da),this.changeDetectionScheduler=hn(_i),this.applicationRef=hn(fd)}initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{this.applicationRef.tick()})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"root"})}}return i})();function T8({ngZoneFactory:i,ignoreChangesOutsideZone:r,scheduleInRootZone:o}){return i??=()=>new Da({...L8(),scheduleInRootZone:o}),[{provide:Da,useFactory:i},{provide:ia,multi:!0,useFactory:()=>{const p=hn(cw,{optional:!0});return()=>p.initialize()}},{provide:ia,multi:!0,useFactory:()=>{const p=hn(yv);return()=>{p.initialize()}}},!0===r?{provide:sn,useValue:!0}:[],{provide:kn,useValue:o??Hc}]}function L8(i){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:i?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:i?.runCoalescing??!1}}let yv=(()=>{class i{constructor(){this.subscription=new st.yU,this.initialized=!1,this.zone=hn(Da),this.pendingTasks=hn(jc)}initialize(){if(this.initialized)return;this.initialized=!0;let o=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(o=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{Da.assertNotInAngularZone(),queueMicrotask(()=>{null!==o&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(o),o=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{Da.assertInAngularZone(),o??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"root"})}}return i})(),Q3=(()=>{class i{constructor(){this.appRef=hn(fd),this.taskService=hn(jc),this.ngZone=hn(Da),this.zonelessEnabled=hn(wi),this.disableScheduling=hn(sn,{optional:!0})??!1,this.zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run,this.schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}],this.subscriptions=new st.yU,this.angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(w1):null,this.scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&(hn(kn,{optional:!0})??!1),this.cancelScheduledCallback=null,this.useMicrotaskScheduler=!1,this.runningTick=!1,this.pendingRenderTaskId=null,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 Xc||!this.zoneIsDefined)}notify(o){if(!this.zonelessEnabled&&5===o)return;switch(o){case 0:this.appRef.dirtyFlags|=2;break;case 3:case 2:case 4:case 5:case 1:this.appRef.dirtyFlags|=4;break;case 7:this.appRef.deferredDirtyFlags|=8;break;default:this.appRef.dirtyFlags|=8}if(!this.shouldScheduleTick())return;const p=this.useMicrotaskScheduler?rh:nh;this.pendingRenderTaskId=this.taskService.add(),this.cancelScheduledCallback=this.scheduleInRootZone?Zone.root.run(()=>p(()=>this.tick())):this.ngZone.runOutsideAngular(()=>p(()=>this.tick()))}shouldScheduleTick(){return!(this.disableScheduling||null!==this.pendingRenderTaskId||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(w1+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;!this.zonelessEnabled&&7&this.appRef.dirtyFlags&&(this.appRef.dirtyFlags|=1);const o=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick()},void 0,this.schedulerTickApplyArgs)}catch(p){throw this.taskService.remove(o),p}finally{this.cleanup()}this.useMicrotaskScheduler=!0,rh(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(o)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,null!==this.pendingRenderTaskId){const o=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(o)}}static{this.\u0275fac=function(p){return new(p||i)}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"root"})}}return i})();const D8=new Ut("",{providedIn:"root",factory:()=>hn(D8,gn.Optional|gn.SkipSelf)||function hw(){return typeof $localize<"u"&&$localize.locale||M2}()}),uw=new Ut("",{providedIn:"root",factory:()=>"USD"}),Z3=new Ut("");function Fu(i){return!i.moduleRef}let Ev=(()=>{class i{constructor(o){this._injector=o,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(o,p){const E=p?.scheduleInRootZone,$=p?.ignoreChangesOutsideZone,de=[T8({ngZoneFactory:()=>function ff(i="zone.js",r){return"noop"===i?new Xc:"zone.js"===i?new Da(r):i}(p?.ngZone,{...L8({eventCoalescing:p?.ngZoneEventCoalescing,runCoalescing:p?.ngZoneRunCoalescing}),scheduleInRootZone:E}),ignoreChangesOutsideZone:$}),{provide:_i,useExisting:Q3}],Le=function Xb(i,r,o){return new pu(i,r,o,!1)}(o.moduleType,this.injector,de);return function Mv(i){const r=Fu(i)?i.r3Injector:i.moduleRef.injector,o=r.get(Da);return o.run(()=>{Fu(i)?i.r3Injector.resolveInjectorInitializers():i.moduleRef.resolveInjectorInitializers();const p=r.get(Ac,null);let E;if(o.runOutsideAngular(()=>{E=o.onError.subscribe({next:P=>{p.handleError(P)}})}),Fu(i)){const P=()=>r.destroy(),$=i.platformInjector.get(Z3);$.add(P),r.onDestroy(()=>{E.unsubscribe(),$.delete(P)})}else{const P=()=>i.moduleRef.destroy(),$=i.platformInjector.get(Z3);$.add(P),i.moduleRef.onDestroy(()=>{yp(i.allPlatformModules,i.moduleRef),E.unsubscribe(),$.delete(P)})}return function rw(i,r,o){try{const p=o();return vp(p)?p.catch(E=>{throw r.runOutsideAngular(()=>i.handleError(E)),E}):p}catch(p){throw r.runOutsideAngular(()=>i.handleError(p)),p}}(p,o,()=>{const P=r.get(gv);return P.runInitializers(),P.donePromise.then(()=>{if(function A_(i){"string"==typeof i&&(D_=i.toLowerCase().replace(/_/g,"-"))}(r.get(D8,M2)||M2),Fu(i)){const de=r.get(fd);return void 0!==i.rootComponent&&de.bootstrap(i.rootComponent),de}return function _w(i,r){const o=i.injector.get(fd);if(i._bootstrapComponents.length>0)i._bootstrapComponents.forEach(p=>o.bootstrap(p));else{if(!i.instance.ngDoBootstrap)throw new Be(-403,!1);i.instance.ngDoBootstrap(o)}r.push(i)}(i.moduleRef,i.allPlatformModules),i.moduleRef})})})}({moduleRef:Le,allPlatformModules:this._modules,platformInjector:this.injector})}bootstrapModule(o,p=[]){const E=S8({},p);return function sw(i,r,o){const p=new X6(o);return Promise.resolve(p)}(0,0,o).then(P=>this.bootstrapModuleFactory(P,E))}onDestroy(o){this._destroyListeners.push(o)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Be(404,!1);this._modules.slice().forEach(p=>p.destroy()),this._destroyListeners.forEach(p=>p());const o=this._injector.get(Z3,null);o&&(o.forEach(p=>p()),o.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static{this.\u0275fac=function(p){return new(p||i)(xr(Ho))}}static{this.\u0275prov=Xt({token:i,factory:i.\u0275fac,providedIn:"platform"})}}return i})(),Zd=null;const Sv=new Ut("");function k8(i,r,o=[]){const p=`Platform: ${r}`,E=new Ut(p);return(P=[])=>{let $=I8();if(!$||$.injector.get(Sv,!1)){const de=[...o,...P,{provide:E,useValue:!0}];i?i(de):function vw(i){if(Zd&&!Zd.get(Sv,!1))throw new Be(400,!1);(function E8(){!function _(i){A=i}(()=>{throw new Be(600,!1)})})(),Zd=i;const r=i.get(Ev);(function Dv(i){i.get(Sf,null)?.forEach(o=>o())})(i)}(function Tv(i=[],r){return Ho.create({name:r,providers:[{provide:Xs,useValue:"platform"},{provide:Z3,useValue:new Set([()=>Zd=null])},...i]})}(de,p))}return function Lv(){const r=I8();if(!r)throw new Be(401,!1);return r}()}}function I8(){return Zd?.get(Ev)??null}function xw(){return!1}let Av=(()=>{class i{static{this.__NG_ELEMENT_ID__=Cw}}return i})();function Cw(i){return function ww(i,r,o){if(Nn(i)&&!o){const p=fs(i.index,r);return new ou(p,p)}return 175&i.type?new ou(r[Lr],r):null}(Hr(),Ri(),!(16&~i))}class Ov{constructor(){}supports(r){return S3(r)}create(r){return new Lw(r)}}const Fv=(i,r)=>r;class Lw{constructor(r){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=r||Fv}forEachItem(r){let o;for(o=this._itHead;null!==o;o=o._next)r(o)}forEachOperation(r){let o=this._itHead,p=this._removalsHead,E=0,P=null;for(;o||p;){const $=!p||o&&o.currentIndex{$=this._trackByFn(E,de),null!==o&&Object.is(o.trackById,$)?(p&&(o=this._verifyReinsertion(o,de,$,E)),Object.is(o.item,de)||this._addIdentityChange(o,de)):(o=this._mismatch(o,de,$,E),p=!0),o=o._next,E++}),this.length=E;return this._truncate(o),this.collection=r,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let r;for(r=this._previousItHead=this._itHead;null!==r;r=r._next)r._nextPrevious=r._next;for(r=this._additionsHead;null!==r;r=r._nextAdded)r.previousIndex=r.currentIndex;for(this._additionsHead=this._additionsTail=null,r=this._movesHead;null!==r;r=r._nextMoved)r.previousIndex=r.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(r,o,p,E){let P;return null===r?P=this._itTail:(P=r._prev,this._remove(r)),null!==(r=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null))?(Object.is(r.item,o)||this._addIdentityChange(r,o),this._reinsertAfter(r,P,E)):null!==(r=null===this._linkedRecords?null:this._linkedRecords.get(p,E))?(Object.is(r.item,o)||this._addIdentityChange(r,o),this._moveAfter(r,P,E)):r=this._addAfter(new Dw(o,p),P,E),r}_verifyReinsertion(r,o,p,E){let P=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null);return null!==P?r=this._reinsertAfter(P,r._prev,E):r.currentIndex!=E&&(r.currentIndex=E,this._addToMoves(r,E)),r}_truncate(r){for(;null!==r;){const o=r._next;this._addToRemovals(this._unlink(r)),r=o}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(r,o,p){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(r);const E=r._prevRemoved,P=r._nextRemoved;return null===E?this._removalsHead=P:E._nextRemoved=P,null===P?this._removalsTail=E:P._prevRemoved=E,this._insertAfter(r,o,p),this._addToMoves(r,p),r}_moveAfter(r,o,p){return this._unlink(r),this._insertAfter(r,o,p),this._addToMoves(r,p),r}_addAfter(r,o,p){return this._insertAfter(r,o,p),this._additionsTail=null===this._additionsTail?this._additionsHead=r:this._additionsTail._nextAdded=r,r}_insertAfter(r,o,p){const E=null===o?this._itHead:o._next;return r._next=E,r._prev=o,null===E?this._itTail=r:E._prev=r,null===o?this._itHead=r:o._next=r,null===this._linkedRecords&&(this._linkedRecords=new Nv),this._linkedRecords.put(r),r.currentIndex=p,r}_remove(r){return this._addToRemovals(this._unlink(r))}_unlink(r){null!==this._linkedRecords&&this._linkedRecords.remove(r);const o=r._prev,p=r._next;return null===o?this._itHead=p:o._next=p,null===p?this._itTail=o:p._prev=o,r}_addToMoves(r,o){return r.previousIndex===o||(this._movesTail=null===this._movesTail?this._movesHead=r:this._movesTail._nextMoved=r),r}_addToRemovals(r){return null===this._unlinkedRecords&&(this._unlinkedRecords=new Nv),this._unlinkedRecords.put(r),r.currentIndex=null,r._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=r,r._prevRemoved=null):(r._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=r),r}_addIdentityChange(r,o){return r.item=o,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=r:this._identityChangesTail._nextIdentityChange=r,r}}class Dw{constructor(r,o){this.item=r,this.trackById=o,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class Aw{constructor(){this._head=null,this._tail=null}add(r){null===this._head?(this._head=this._tail=r,r._nextDup=null,r._prevDup=null):(this._tail._nextDup=r,r._prevDup=this._tail,r._nextDup=null,this._tail=r)}get(r,o){let p;for(p=this._head;null!==p;p=p._nextDup)if((null===o||o<=p.currentIndex)&&Object.is(p.trackById,r))return p;return null}remove(r){const o=r._prevDup,p=r._nextDup;return null===o?this._head=p:o._nextDup=p,null===p?this._tail=o:p._prevDup=o,null===this._head}}class Nv{constructor(){this.map=new Map}put(r){const o=r.trackById;let p=this.map.get(o);p||(p=new Aw,this.map.set(o,p)),p.add(r)}get(r,o){const E=this.map.get(r);return E?E.get(r,o):null}remove(r){const o=r.trackById;return this.map.get(o).remove(r)&&this.map.delete(o),r}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function P8(i,r,o){const p=i.previousIndex;if(null===p)return p;let E=0;return o&&p{if(o&&o.key===E)this._maybeAddToChanges(o,p),this._appendAfter=o,o=o._next;else{const P=this._getOrCreateRecordForKey(E,p);o=this._insertBeforeOrAppend(o,P)}}),o){o._prev&&(o._prev._next=null),this._removalsHead=o;for(let p=o;null!==p;p=p._nextRemoved)p===this._mapHead&&(this._mapHead=null),this._records.delete(p.key),p._nextRemoved=p._next,p.previousValue=p.currentValue,p.currentValue=null,p._prev=null,p._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(r,o){if(r){const p=r._prev;return o._next=r,o._prev=p,r._prev=o,p&&(p._next=o),r===this._mapHead&&(this._mapHead=o),this._appendAfter=r,r}return this._appendAfter?(this._appendAfter._next=o,o._prev=this._appendAfter):this._mapHead=o,this._appendAfter=o,null}_getOrCreateRecordForKey(r,o){if(this._records.has(r)){const E=this._records.get(r);this._maybeAddToChanges(E,o);const P=E._prev,$=E._next;return P&&(P._next=$),$&&($._prev=P),E._next=null,E._prev=null,E}const p=new Iw(r);return this._records.set(r,p),p.currentValue=o,this._addToAdditions(p),p}_reset(){if(this.isDirty){let r;for(this._previousMapHead=this._mapHead,r=this._previousMapHead;null!==r;r=r._next)r._nextPrevious=r._next;for(r=this._changesHead;null!==r;r=r._nextChanged)r.previousValue=r.currentValue;for(r=this._additionsHead;null!=r;r=r._nextAdded)r.previousValue=r.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(r,o){Object.is(o,r.currentValue)||(r.previousValue=r.currentValue,r.currentValue=o,this._addToChanges(r))}_addToAdditions(r){null===this._additionsHead?this._additionsHead=this._additionsTail=r:(this._additionsTail._nextAdded=r,this._additionsTail=r)}_addToChanges(r){null===this._changesHead?this._changesHead=this._changesTail=r:(this._changesTail._nextChanged=r,this._changesTail=r)}_forEach(r,o){r instanceof Map?r.forEach(o):Object.keys(r).forEach(p=>o(r[p],p))}}class Iw{constructor(r){this.key=r,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}function Pv(){return new B8([new Ov])}let B8=(()=>{class i{static{this.\u0275prov=Xt({token:i,providedIn:"root",factory:Pv})}constructor(o){this.factories=o}static create(o,p){if(null!=p){const E=p.factories.slice();o=o.concat(E)}return new i(o)}static extend(o){return{provide:i,useFactory:p=>i.create(o,p||Pv()),deps:[[i,new zr,new fo]]}}find(o){const p=this.factories.find(E=>E.supports(o));if(null!=p)return p;throw new Be(901,!1)}}return i})();function zv(){return new V8([new z8])}let V8=(()=>{class i{static{this.\u0275prov=Xt({token:i,providedIn:"root",factory:zv})}constructor(o){this.factories=o}static create(o,p){if(p){const E=p.factories.slice();o=o.concat(E)}return new i(o)}static extend(o){return{provide:i,useFactory:p=>i.create(o,p||zv()),deps:[[i,new zr,new fo]]}}find(o){const p=this.factories.find(E=>E.supports(o));if(p)return p;throw new Be(901,!1)}}return i})();const G8=k8(null,"core",[]);let Fw=(()=>{class i{constructor(o){}static{this.\u0275fac=function(p){return new(p||i)(xr(fd))}}static{this.\u0275mod=Jo({type:i})}static{this.\u0275inj=tt({})}}return i})();function aM(i){return"boolean"==typeof i?i:null!=i&&"false"!==i}function oM(i,r=NaN){return isNaN(parseFloat(i))||isNaN(Number(i))?r:Number(i)}function dM(i,r){zs("NgSignals");const o=function T(i){const r=Object.create(d);r.computation=i;const o=()=>{if(I(r),y(r),r.value===m)throw r.error;return r.value};return o[l]=r,o}(i);return r?.equal&&(o[l].equal=r.equal),o}function hb(i){const r=w(null);try{return i()}finally{w(r)}}const hM=new Ut("",{providedIn:"root",factory:()=>hn(uM)});let uM=(()=>{class i{static{this.\u0275prov=Xt({token:i,providedIn:"root",factory:()=>new fM})}}return i})();class fM{constructor(){this.queuedEffectCount=0,this.queues=new Map,this.pendingTasks=hn(jc),this.taskId=null}scheduleEffect(r){if(this.enqueue(r),null===this.taskId){const o=this.taskId=this.pendingTasks.add();queueMicrotask(()=>{this.flush(),this.pendingTasks.remove(o),this.taskId=null})}}enqueue(r){const o=r.creationZone;this.queues.has(o)||this.queues.set(o,new Set);const p=this.queues.get(o);p.has(r)||(this.queuedEffectCount++,p.add(r))}flush(){for(;this.queuedEffectCount>0;)for(const[r,o]of this.queues)null===r?this.flushQueue(o):r.run(()=>this.flushQueue(o))}flushQueue(r){for(const o of r)r.delete(o),this.queuedEffectCount--,o.run()}}class ub{constructor(r,o,p,E,P,$){this.scheduler=r,this.effectFn=o,this.creationZone=p,this.injector=P,this.watcher=function oe(i,r,o){const p=Object.create(se);o&&(p.consumerAllowSignalWrites=!0),p.fn=i,p.schedule=r;const E=Le=>{p.cleanupFn=Le};return p.ref={notify:()=>Y(p),run:()=>{if(null===p.fn)return;if(function R(){return x}())throw new Error("Schedulers cannot synchronously execute watches while scheduling.");if(p.dirty=!1,p.hasRun&&!J(p))return;p.hasRun=!0;const Le=W(p);try{p.cleanupFn(),p.cleanupFn=X,p.fn(E)}finally{Q(p,Le)}},cleanup:()=>p.cleanupFn(),destroy:()=>function $(Le){(function P(Le){return null===Le.fn&&null===Le.schedule})(Le)||(ie(Le),Le.cleanupFn(),Le.fn=null,Le.schedule=null,Le.cleanupFn=X)}(p),[l]:p},p.ref}(de=>this.runEffect(de),()=>this.schedule(),$),this.unregisterOnDestroy=E?.onDestroy(()=>this.destroy())}runEffect(r){try{this.effectFn(r)}catch(o){this.injector.get(Ac,null,{optional:!0})?.handleError(o)}}run(){this.watcher.run()}schedule(){this.scheduler.scheduleEffect(this)}destroy(){this.watcher.destroy(),this.unregisterOnDestroy?.()}}function mM(i,r){zs("NgSignals"),!r?.injector&&pn();const o=r?.injector??hn(Ho),p=!0!==r?.manualCleanup?o.get(Gl):null,E=new ub(o.get(hM),i,typeof Zone>"u"?null:Zone.current,p,o,r?.allowSignalWrites??!1),P=o.get(Av,null,{optional:!0});return P&&8&P._lView[bn]?(P._lView[El]??=[]).push(E.watcher.notify):E.watcher.notify(),E}function ZE(i,r){const o=jn(i),p=r.elementInjector||zc();return new So(o).create(p,r.projectableNodes,r.hostElement,r.environmentInjector)}function qE(i){const r=jn(i);if(!r)return null;const o=new So(r);return{get selector(){return o.selector},get type(){return o.componentType},get inputs(){return o.inputs},get outputs(){return o.outputs},get ngContentSelectors(){return o.ngContentSelectors},get isStandalone(){return r.standalone},get isSignal(){return r.signals}}}},9079:(Qe,te,g)=>{"use strict";g.d(te,{ot:()=>f});var e=g(4438);function f(h,S){const y=!S?.manualCleanup;y&&!S?.injector&&(0,e.Af3)(f);const O=y?S?.injector?.get(e.abz)??(0,e.WQX)(e.abz):null,I=function R(h=Object.is){return(S,y)=>1===S.kind&&1===y.kind&&h(S.value,y.value)}(S?.equal);let V;V=(0,e.vPA)(S?.requireSync?{kind:0}:{kind:1,value:S?.initialValue},{equal:I});const j=h.subscribe({next:Y=>V.set({kind:1,value:Y}),error:Y=>{if(S?.rejectErrors)throw Y;V.set({kind:2,error:Y})}});if(S?.requireSync&&0===V().kind)throw new e.wOt(601,!1);return O?.onDestroy(j.unsubscribe.bind(j)),(0,e.EWP)(()=>{const Y=V();switch(Y.kind){case 1:return Y.value;case 2:throw Y.error;case 0:throw new e.wOt(601,!1)}},{equal:S?.equal})}},4545:(Qe,te,g)=>{"use strict";function e(S){for(let y in S){let O=S[y]??"";switch(y){case"display":S.display="flex"===O?["-webkit-flex","flex"]:"inline-flex"===O?["-webkit-inline-flex","inline-flex"]:O;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":S["-webkit-"+y]=O;break;case"flex-direction":S["-webkit-flex-direction"]=O,S["flex-direction"]=O;break;case"order":S.order=S["-webkit-"+y]=isNaN(+O)?"0":O}}return S}g.d(te,{C5:()=>h,O5:()=>e,Uo:()=>x,Vc:()=>w,uG:()=>D});const t="inline",x=["row","column","row-reverse","column-reverse"];function D(S){let[y,O,I]=l(S);return function R(S,y=null,O=!1){return{display:O?"inline-flex":"flex","box-sizing":"border-box","flex-direction":S,"flex-wrap":y||null}}(y,O,I)}function l(S){S=S?.toLowerCase()??"";let[y,O,I]=S.split(" ");return x.find(V=>V===y)||(y=x[0]),O===t&&(O=I!==t?I:"",I=t),[y,f(O),!!I]}function w(S){let[y]=l(S);return y.indexOf("row")>-1}function f(S){if(S)switch(S.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":S="wrap-reverse";break;case"no":case"none":case"nowrap":S="nowrap";break;default:S="wrap"}return S}function h(S,...y){if(null==S)throw TypeError("Cannot convert undefined or null to object");for(let O of y)if(null!=O)for(let I in O)O.hasOwnProperty(I)&&(S[I]=O[I]);return S}},9340:(Qe,te,g)=>{"use strict";g.d(te,{Ce:()=>Q,DJ:()=>ct,EA:()=>W,PV:()=>Y,SL:()=>J,Ui:()=>I,ZH:()=>fe,cL:()=>Nt,hN:()=>$e,qH:()=>Be,r3:()=>ee});var e=g(4438),t=g(177),x=g(4412),D=g(1985),l=g(7786),w=g(1413),f=g(4545),R=g(5964),h=g(8141);const y={provide:e.iLQ,useFactory:function S(yt,jt){return()=>{if((0,t.UE)(jt)){const Je=Array.from(yt.querySelectorAll(`[class*=${O}]`)),et=/\bflex-layout-.+?\b/g;Je.forEach(Ae=>{Ae.classList.contains(`${O}ssr`)&&Ae.parentNode?Ae.parentNode.removeChild(Ae):Ae.className.replace(et,"")})}}},deps:[t.qQ,e.Agw],multi:!0},O="flex-layout-";let I=(()=>{class yt{}return yt.\u0275fac=function(Je){return new(Je||yt)},yt.\u0275mod=e.$C({type:yt}),yt.\u0275inj=e.G2t({providers:[y]}),yt})();class V{constructor(jt=!1,Je="all",et="",Ae="",It=0){this.matches=jt,this.mediaQuery=Je,this.mqAlias=et,this.suffix=Ae,this.priority=It,this.property=""}clone(){return new V(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let j=(()=>{class yt{constructor(){this.stylesheet=new Map}addStyleToElement(Je,et,Ae){const It=this.stylesheet.get(Je);It?It.set(et,Ae):this.stylesheet.set(Je,new Map([[et,Ae]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(Je,et){const Ae=this.stylesheet.get(Je);let It="";if(Ae){const Qt=Ae.get(et);("number"==typeof Qt||"string"==typeof Qt)&&(It=Qt+"")}return It}}return yt.\u0275fac=function(Je){return new(Je||yt)},yt.\u0275prov=e.jDH({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();const Y={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},W=new e.nKC("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>Y}),Q=new e.nKC("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),J=new e.nKC("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function ie(yt,jt){return yt=yt?.clone()??new V,jt&&(yt.mqAlias=jt.alias,yt.mediaQuery=jt.mediaQuery,yt.suffix=jt.suffix,yt.priority=jt.priority),yt}class ee{constructor(){this.shouldCache=!0}sideEffect(jt,Je,et){}}let fe=(()=>{class yt{constructor(Je,et,Ae,It){this._serverStylesheet=Je,this._serverModuleLoaded=et,this._platformId=Ae,this.layoutConfig=It}applyStyleToElement(Je,et,Ae=null){let It={};"string"==typeof et&&(It[et]=Ae,et=It),It=this.layoutConfig.disableVendorPrefixes?et:(0,f.O5)(et),this._applyMultiValueStyleToElement(It,Je)}applyStyleToElements(Je,et=[]){const Ae=this.layoutConfig.disableVendorPrefixes?Je:(0,f.O5)(Je);et.forEach(It=>{this._applyMultiValueStyleToElement(Ae,It)})}getFlowDirection(Je){const et="flex-direction";let Ae=this.lookupStyle(Je,et);return[Ae||"row",this.lookupInlineStyle(Je,et)||(0,t.Vy)(this._platformId)&&this._serverModuleLoaded?Ae:""]}hasWrap(Je){return"wrap"===this.lookupStyle(Je,"flex-wrap")}lookupAttributeValue(Je,et){return Je.getAttribute(et)??""}lookupInlineStyle(Je,et){return(0,t.UE)(this._platformId)?Je.style.getPropertyValue(et):function ne(yt,jt){return le(yt)[jt]??""}(Je,et)}lookupStyle(Je,et,Ae=!1){let It="";return Je&&((It=this.lookupInlineStyle(Je,et))||((0,t.UE)(this._platformId)?Ae||(It=getComputedStyle(Je).getPropertyValue(et)):this._serverModuleLoaded&&(It=this._serverStylesheet.getStyleForElement(Je,et)))),It?It.trim():""}_applyMultiValueStyleToElement(Je,et){Object.keys(Je).sort().forEach(Ae=>{const It=Je[Ae],Qt=Array.isArray(It)?It:[It];Qt.sort();for(let Tt of Qt)Tt=Tt?Tt+"":"",(0,t.UE)(this._platformId)||!this._serverModuleLoaded?(0,t.UE)(this._platformId)?et.style.setProperty(Ae,Tt):Me(et,Ae,Tt):this._serverStylesheet.addStyleToElement(et,Ae,Tt)})}}return yt.\u0275fac=function(Je){return new(Je||yt)(e.KVO(j),e.KVO(Q),e.KVO(e.Agw),e.KVO(W))},yt.\u0275prov=e.jDH({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();function Me(yt,jt,Je){jt=jt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const et=le(yt);et[jt]=Je??"",function Ce(yt,jt){let Je="";for(const et in jt)jt[et]&&(Je+=`${et}:${jt[et]};`);yt.setAttribute("style",Je)}(yt,et)}function le(yt){const jt={},Je=yt.getAttribute("style");if(Je){const et=Je.split(/;+/g);for(let Ae=0;Ae0){const Qt=It.indexOf(":");if(-1===Qt)throw new Error(`Invalid CSS style: ${It}`);jt[It.substr(0,Qt).trim()]=It.substr(Qt+1).trim()}}}return jt}function T(yt,jt){return(jt&&jt.priority||0)-(yt&&yt.priority||0)}function n(yt,jt){return(yt.priority||0)-(jt.priority||0)}let c=(()=>{class yt{constructor(Je,et,Ae){this._zone=Je,this._platformId=et,this._document=Ae,this.source=new x.t(new V(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const Je=[];return this.registry.forEach((et,Ae)=>{et.matches&&Je.push(Ae)}),Je}isActive(Je){return this.registry.get(Je)?.matches??this.registerQuery(Je).some(Ae=>Ae.matches)}observe(Je,et=!1){if(Je&&Je.length){const Ae=this._observable$.pipe((0,R.p)(Qt=>!et||Je.indexOf(Qt.mediaQuery)>-1)),It=new D.c(Qt=>{const Tt=this.registerQuery(Je);if(Tt.length){const xt=Tt.pop();Tt.forEach(Se=>{Qt.next(Se)}),this.source.next(xt)}Qt.complete()});return(0,l.h)(It,Ae)}return this._observable$}registerQuery(Je){const et=Array.isArray(Je)?Je:[Je],Ae=[];return function d(yt,jt){const Je=yt.filter(et=>!m[et]);if(Je.length>0){const et=Je.join(", ");try{const Ae=jt.createElement("style");Ae.setAttribute("type","text/css"),Ae.styleSheet||Ae.appendChild(jt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${et} {.fx-query-test{ }}\n`)),jt.head.appendChild(Ae),Je.forEach(It=>m[It]=Ae)}catch(Ae){console.error(Ae)}}}(et,this._document),et.forEach(It=>{const Qt=xt=>{this._zone.run(()=>this.source.next(new V(xt.matches,It)))};let Tt=this.registry.get(It);Tt||(Tt=this.buildMQL(It),Tt.addListener(Qt),this.pendingRemoveListenerFns.push(()=>Tt.removeListener(Qt)),this.registry.set(It,Tt)),Tt.matches&&Ae.push(new V(!0,It))}),Ae}ngOnDestroy(){let Je;for(;Je=this.pendingRemoveListenerFns.pop();)Je()}buildMQL(Je){return function A(yt,jt){return jt&&window.matchMedia("all").addListener?window.matchMedia(yt):function C(yt){const jt=new EventTarget;return jt.matches="all"===yt||""===yt,jt.media=yt,jt.addListener=()=>{},jt.removeListener=()=>{},jt.addEventListener=()=>{},jt.dispatchEvent=()=>!1,jt.onchange=null,jt}(yt)}(Je,(0,t.UE)(this._platformId))}}return yt.\u0275fac=function(Je){return new(Je||yt)(e.KVO(e.SKi),e.KVO(e.Agw),e.KVO(t.qQ))},yt.\u0275prov=e.jDH({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();const m={},k=[{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}],_="(orientation: portrait) and (max-width: 599.98px)",a="(orientation: landscape) and (max-width: 959.98px)",b="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",z="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",N="(orientation: portrait) and (min-width: 840px)",q="(orientation: landscape) and (min-width: 1280px)",pe={HANDSET:`${_}, ${a}`,TABLET:`${b} , ${z}`,WEB:`${N}, ${q} `,HANDSET_PORTRAIT:`${_}`,TABLET_PORTRAIT:`${b} `,WEB_PORTRAIT:`${N}`,HANDSET_LANDSCAPE:`${a}`,TABLET_LANDSCAPE:`${z}`,WEB_LANDSCAPE:`${q}`},ze=[{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}],Xe=/(\.|-|_)/g;function We(yt){let jt=yt.length>0?yt.charAt(0):"",Je=yt.length>1?yt.slice(1):"";return jt.toUpperCase()+Je}const ae=new e.nKC("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const yt=(0,e.WQX)(J),jt=(0,e.WQX)(W),Je=[].concat.apply([],(yt||[]).map(Ae=>Array.isArray(Ae)?Ae:[Ae]));return function se(yt,jt=[]){const Je={};return yt.forEach(et=>{Je[et.alias]=et}),jt.forEach(et=>{Je[et.alias]?(0,f.C5)(Je[et.alias],et):Je[et.alias]=et}),function X(yt){return yt.forEach(jt=>{jt.suffix||(jt.suffix=function oe(yt){return yt.replace(Xe,"|").split("|").map(We).join("")}(jt.alias),jt.overlapping=!!jt.overlapping)}),yt}(Object.keys(Je).map(et=>Je[et]))}((jt.disableDefaultBps?[]:k).concat(jt.addOrientationBps?ze:[]),Je)}});let he=(()=>{class yt{constructor(Je){this.findByMap=new Map,this.items=[...Je].sort(n)}findByAlias(Je){return Je?this.findWithPredicate(Je,et=>et.alias===Je):null}findByQuery(Je){return this.findWithPredicate(Je,et=>et.mediaQuery===Je)}get overlappings(){return this.items.filter(Je=>Je.overlapping)}get aliases(){return this.items.map(Je=>Je.alias)}get suffixes(){return this.items.map(Je=>Je?.suffix??"")}findWithPredicate(Je,et){let Ae=this.findByMap.get(Je);return Ae||(Ae=this.items.find(et)??null,this.findByMap.set(Je,Ae)),Ae??null}}return yt.\u0275fac=function(Je){return new(Je||yt)(e.KVO(ae))},yt.\u0275prov=e.jDH({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();const Ie="print",st={alias:Ie,mediaQuery:Ie,priority:1e3};let me=(()=>{class yt{constructor(Je,et,Ae){this.breakpoints=Je,this.layoutConfig=et,this._document=Ae,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new Ee,this.deactivations=[]}withPrintQuery(Je){return[...Je,Ie]}isPrintEvent(Je){return Je.mediaQuery.startsWith(Ie)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(Je=>this.breakpoints.findByAlias(Je)).filter(Je=>null!==Je)}getEventBreakpoints({mediaQuery:Je}){const et=this.breakpoints.findByQuery(Je);return(et?[...this.printBreakPoints,et]:this.printBreakPoints).sort(T)}updateEvent(Je){let et=this.breakpoints.findByQuery(Je.mediaQuery);return this.isPrintEvent(Je)&&(et=this.getEventBreakpoints(Je)[0],Je.mediaQuery=et?.mediaQuery??""),ie(Je,et)}registerBeforeAfterPrintHooks(Je){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const et=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(Je,this.getEventBreakpoints(new V(!0,Ie))),Je.updateStyles())},Ae=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(Je),Je.updateStyles())};this._document.defaultView.addEventListener("beforeprint",et),this._document.defaultView.addEventListener("afterprint",Ae),this.beforePrintEventListeners.push(et),this.afterPrintEventListeners.push(Ae)}interceptEvents(Je){return et=>{this.isPrintEvent(et)?et.matches&&!this.isPrinting?(this.startPrinting(Je,this.getEventBreakpoints(et)),Je.updateStyles()):!et.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(Je),Je.updateStyles()):this.collectActivations(Je,et)}}blockPropagation(){return Je=>!(this.isPrinting||this.isPrintEvent(Je))}startPrinting(Je,et){this.isPrinting=!0,this.formerActivations=Je.activatedBreakpoints,Je.activatedBreakpoints=this.queue.addPrintBreakpoints(et)}stopPrinting(Je){Je.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(Je,et){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!et.matches){const Ae=this.breakpoints.findByQuery(et.mediaQuery);if(Ae){const It=this.formerActivations&&this.formerActivations.includes(Ae),Qt=!this.formerActivations&&Je.activatedBreakpoints.includes(Ae);(It||Qt)&&(this.deactivations.push(Ae),this.deactivations.sort(T))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(Je=>this._document.defaultView.removeEventListener("beforeprint",Je)),this.afterPrintEventListeners.forEach(Je=>this._document.defaultView.removeEventListener("afterprint",Je)))}}return yt.\u0275fac=function(Je){return new(Je||yt)(e.KVO(he),e.KVO(W),e.KVO(t.qQ))},yt.\u0275prov=e.jDH({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();class Ee{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(jt){return jt.push(st),jt.sort(T),jt.forEach(Je=>this.addBreakpoint(Je)),this.printBreakpoints}addBreakpoint(jt){jt&&void 0===this.printBreakpoints.find(et=>et.mediaQuery===jt.mediaQuery)&&(this.printBreakpoints=function ue(yt){return yt?.mediaQuery.startsWith(Ie)??!1}(jt)?[jt,...this.printBreakpoints]:[...this.printBreakpoints,jt])}clear(){this.printBreakpoints=[]}}let Be=(()=>{class yt{constructor(Je,et,Ae){this.matchMedia=Je,this.breakpoints=et,this.hook=Ae,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 w.B,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(Je){this._activatedBreakpoints=[...Je]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(Je){this._useFallbacks=Je}onMediaChange(Je){const et=this.findByQuery(Je.mediaQuery);if(et){Je=ie(Je,et);const Ae=this.activatedBreakpoints.indexOf(et);Je.matches&&-1===Ae?(this._activatedBreakpoints.push(et),this._activatedBreakpoints.sort(T),this.updateStyles()):!Je.matches&&-1!==Ae&&(this._activatedBreakpoints.splice(Ae,1),this._activatedBreakpoints.sort(T),this.updateStyles())}}init(Je,et,Ae,It,Qt=[]){Ct(this.updateMap,Je,et,Ae),Ct(this.clearMap,Je,et,It),this.buildElementKeyMap(Je,et),this.watchExtraTriggers(Je,et,Qt)}getValue(Je,et,Ae){const It=this.elementMap.get(Je);if(It){const Qt=void 0!==Ae?It.get(Ae):this.getActivatedValues(It,et);if(Qt)return Qt.get(et)}}hasValue(Je,et){const Ae=this.elementMap.get(Je);if(Ae){const It=this.getActivatedValues(Ae,et);if(It)return void 0!==It.get(et)||!1}return!1}setValue(Je,et,Ae,It){let Qt=this.elementMap.get(Je);if(Qt){const xt=(Qt.get(It)??new Map).set(et,Ae);Qt.set(It,xt),this.elementMap.set(Je,Qt)}else Qt=(new Map).set(It,(new Map).set(et,Ae)),this.elementMap.set(Je,Qt);const Tt=this.getValue(Je,et);void 0!==Tt&&this.updateElement(Je,et,Tt)}trackValue(Je,et){return this.subject.asObservable().pipe((0,R.p)(Ae=>Ae.element===Je&&Ae.key===et))}updateStyles(){this.elementMap.forEach((Je,et)=>{const Ae=new Set(this.elementKeyMap.get(et));let It=this.getActivatedValues(Je);It&&It.forEach((Qt,Tt)=>{this.updateElement(et,Tt,Qt),Ae.delete(Tt)}),Ae.forEach(Qt=>{if(It=this.getActivatedValues(Je,Qt),It){const Tt=It.get(Qt);this.updateElement(et,Qt,Tt)}else this.clearElement(et,Qt)})})}clearElement(Je,et){const Ae=this.clearMap.get(Je);if(Ae){const It=Ae.get(et);It&&(It(),this.subject.next({element:Je,key:et,value:""}))}}updateElement(Je,et,Ae){const It=this.updateMap.get(Je);if(It){const Qt=It.get(et);Qt&&(Qt(Ae),this.subject.next({element:Je,key:et,value:Ae}))}}releaseElement(Je){const et=this.watcherMap.get(Je);et&&(et.forEach(It=>It.unsubscribe()),this.watcherMap.delete(Je));const Ae=this.elementMap.get(Je);Ae&&(Ae.forEach((It,Qt)=>Ae.delete(Qt)),this.elementMap.delete(Je))}triggerUpdate(Je,et){const Ae=this.elementMap.get(Je);if(Ae){const It=this.getActivatedValues(Ae,et);It&&(et?this.updateElement(Je,et,It.get(et)):It.forEach((Qt,Tt)=>this.updateElement(Je,Tt,Qt)))}}buildElementKeyMap(Je,et){let Ae=this.elementKeyMap.get(Je);Ae||(Ae=new Set,this.elementKeyMap.set(Je,Ae)),Ae.add(et)}watchExtraTriggers(Je,et,Ae){if(Ae&&Ae.length){let It=this.watcherMap.get(Je);if(It||(It=new Map,this.watcherMap.set(Je,It)),!It.get(et)){const Tt=(0,l.h)(...Ae).subscribe(()=>{const xt=this.getValue(Je,et);this.updateElement(Je,et,xt)});It.set(et,Tt)}}}findByQuery(Je){return this.breakpoints.findByQuery(Je)}getActivatedValues(Je,et){for(let It=0;Itet.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(Je)).pipe((0,h.M)(this.hook.interceptEvents(this)),(0,R.p)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return yt.\u0275fac=function(Je){return new(Je||yt)(e.KVO(c),e.KVO(he),e.KVO(me))},yt.\u0275prov=e.jDH({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();function Ct(yt,jt,Je,et){if(void 0!==et){const Ae=yt.get(jt)??new Map;Ae.set(Je,et),yt.set(jt,Ae)}}let ct=(()=>{class yt{constructor(Je,et,Ae,It){this.elementRef=Je,this.styleBuilder=et,this.styler=Ae,this.marshal=It,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new w.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(Je){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Je,this.marshal.activatedAlias)}ngOnChanges(Je){Object.keys(Je).forEach(et=>{if(-1!==this.inputs.indexOf(et)){const Ae=et.split(".").slice(1).join(".");this.setValue(Je[et].currentValue,Ae)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(Je=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),Je)}addStyles(Je,et){const Ae=this.styleBuilder,It=Ae.shouldCache;let Qt=this.styleCache.get(Je);(!Qt||!It)&&(Qt=Ae.buildStyles(Je,et),It&&this.styleCache.set(Je,Qt)),this.mru={...Qt},this.applyStyleToElement(Qt),Ae.sideEffect(Je,Qt,et)}clearStyles(){Object.keys(this.mru).forEach(Je=>{this.mru[Je]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(Je,et=!1){if(Je){const[Ae,It]=this.styler.getFlowDirection(Je);if(!It&&et){const Qt=(0,f.uG)(Ae);this.styler.applyStyleToElements(Qt,[Je])}return Ae.trim()}return"row"}hasWrap(Je){return this.styler.hasWrap(Je)}applyStyleToElement(Je,et,Ae=this.nativeElement){this.styler.applyStyleToElement(Ae,Je,et)}setValue(Je,et){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Je,et)}updateWithValue(Je){this.currentValue!==Je&&(this.addStyles(Je),this.currentValue=Je)}}return yt.\u0275fac=function(Je){return new(Je||yt)(e.rXU(e.aKT),e.rXU(ee),e.rXU(fe),e.rXU(Be))},yt.\u0275dir=e.FsC({type:yt,features:[e.OA$]}),yt})();function $e(yt,jt="1",Je="1"){let et=[jt,Je,yt],Ae=yt.indexOf("calc");if(Ae>0){et[2]=nt(yt.substring(Ae).trim());let It=yt.substr(0,Ae).trim().split(" ");2==It.length&&(et[0]=It[0],et[1]=It[1])}else if(0==Ae)et[2]=nt(yt.trim());else{let It=yt.split(" ");et=3===It.length?It:[jt,Je,yt]}return et}function nt(yt){return yt.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}EventTarget;const qt="x";function Nt(yt,jt){if(void 0===jt)return yt;const Je=et=>{const Ae=+et.slice(0,-qt.length);return yt.endsWith(qt)&&!isNaN(Ae)?`${Ae*jt.value}${jt.unit}`:yt};return yt.includes(" ")?yt.split(" ").map(Je).join(" "):Je(yt)}},6038:(Qe,te,g)=>{"use strict";g.d(te,{Cc:()=>a,PW:()=>Y,eI:()=>A});var e=g(4438),t=g(9340),x=g(177),w=(g(4085),g(6977),g(345));let I=(()=>{class b extends t.DJ{constructor(N,q,pe,ze,Xe,We,oe){super(N,null,q,pe),this.ngClassInstance=oe,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new x.YU(ze,Xe,N,We)),this.init(),this.setValue("","")}set klass(N){this.ngClassInstance.klass=N,this.setValue(N,"")}updateWithValue(N){this.ngClassInstance.ngClass=N,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return b.\u0275fac=function(N){return new(N||b)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(e._q3),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(x.YU,10))},b.\u0275dir=e.FsC({type:b,inputs:{klass:[0,"class","klass"]},features:[e.Vt3]}),b})();const V=["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 Y=(()=>{class b extends I{constructor(){super(...arguments),this.inputs=V}}return b.\u0275fac=(()=>{let z;return function(q){return(z||(z=e.xGo(b)))(q||b)}})(),b.\u0275dir=e.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"},features:[e.Vt3]}),b})();class ne{constructor(z,N,q=!0){this.key=z,this.value=N,this.key=q?z.replace(/['"]/g,"").trim():z.trim(),this.value=q?N.replace(/['"]/g,"").trim():N.trim(),this.value=this.value.replace(/;/,"")}}function Me(b){let z=typeof b;return"object"===z?b.constructor===Array?"array":b.constructor===Set?"set":"object":z}function n(b){const[z,...N]=b.split(":");return new ne(z,N.join(":"))}function c(b,z){return z.key&&(b[z.key]=z.value),b}let m=(()=>{class b extends t.DJ{constructor(N,q,pe,ze,Xe,We,oe,X,se){super(N,null,q,pe),this.sanitizer=ze,this.ngStyleInstance=oe,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new x.B3(N,Xe,We)),this.init();const ae=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(ae),this.isServer=X&&(0,x.Vy)(se)}updateWithValue(N){const q=this.buildStyleMap(N);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...q},this.isServer&&this.applyStyleToElement(q),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(N){const q=pe=>this.sanitizer.sanitize(e.WPN.STYLE,pe)??"";if(N)switch(Me(N)){case"string":return k(function Ce(b,z=";"){return String(b).trim().split(z).map(N=>N.trim()).filter(N=>""!==N)}(N),q);case"array":return k(N,q);default:return function T(b,z){let N=[];return"set"===Me(b)?b.forEach(q=>N.push(q)):Object.keys(b).forEach(q=>{N.push(`${q}:${b[q]}`)}),function le(b,z){return b.map(n).filter(q=>!!q).map(q=>(z&&(q.value=z(q.value)),q)).reduce(c,{})}(N,z)}(N,q)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return b.\u0275fac=function(N){return new(N||b)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(w.up),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(x.B3,10),e.rXU(t.Ce),e.rXU(e.Agw))},b.\u0275dir=e.FsC({type:b,features:[e.Vt3]}),b})();const d=["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 A=(()=>{class b extends m{constructor(){super(...arguments),this.inputs=d}}return b.\u0275fac=(()=>{let z;return function(q){return(z||(z=e.xGo(b)))(q||b)}})(),b.\u0275dir=e.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"},features:[e.Vt3]}),b})();function k(b,z){return b.map(n).filter(q=>!!q).map(q=>(z&&(q.value=z(q.value)),q)).reduce(c,{})}let a=(()=>{class b{}return b.\u0275fac=function(N){return new(N||b)},b.\u0275mod=e.$C({type:b}),b.\u0275inj=e.G2t({imports:[t.Ui]}),b})()},2920:(Qe,te,g)=>{"use strict";g.d(te,{DJ:()=>y,UI:()=>C,sA:()=>$e,w2:()=>Qt});var e=g(4438),t=g(8203),x=g(9340),D=g(4545),w=(g(1413),g(6977));let f=(()=>{class Tt extends x.r3{buildStyles(Se,{display:Te}){const ce=(0,D.uG)(Se);return{...ce,display:"none"===Te?Te:ce.display}}}return Tt.\u0275fac=(()=>{let xt;return function(Te){return(xt||(xt=e.xGo(Tt)))(Te||Tt)}})(),Tt.\u0275prov=e.jDH({token:Tt,factory:Tt.\u0275fac,providedIn:"root"}),Tt})();const R=["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 S=(()=>{class Tt extends x.DJ{constructor(Se,Te,ce,Z,Re){super(Se,ce,Te,Z),this._config=Re,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(Se){const ce=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=O.get(ce)??new Map,O.set(ce,this.styleCache),this.currentValue!==Se&&(this.addStyles(Se,{display:ce}),this.currentValue=Se)}}return Tt.\u0275fac=function(Se){return new(Se||Tt)(e.rXU(e.aKT),e.rXU(x.ZH),e.rXU(f),e.rXU(x.qH),e.rXU(x.EA))},Tt.\u0275dir=e.FsC({type:Tt,features:[e.Vt3]}),Tt})(),y=(()=>{class Tt extends S{constructor(){super(...arguments),this.inputs=R}}return Tt.\u0275fac=(()=>{let xt;return function(Te){return(xt||(xt=e.xGo(Tt)))(Te||Tt)}})(),Tt.\u0275dir=e.FsC({type:Tt,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"},features:[e.Vt3]}),Tt})();const O=new Map;let n=(()=>{class Tt extends x.r3{constructor(Se){super(),this.layoutConfig=Se}buildStyles(Se,Te){let[ce,Z,...Re]=Se.split(" "),Pe=Re.join(" ");const pt=Te.direction.indexOf("column")>-1?"column":"row",Ke=(0,D.Vc)(pt)?"max-width":"max-height",Fe=(0,D.Vc)(pt)?"min-width":"min-height",Ge=String(Pe).indexOf("calc")>-1,qe=Ge||"auto"===Pe,at=String(Pe).indexOf("%")>-1&&!Ge,Lt=String(Pe).indexOf("px")>-1||String(Pe).indexOf("rem")>-1||String(Pe).indexOf("em")>-1||String(Pe).indexOf("vw")>-1||String(Pe).indexOf("vh")>-1;let pi=Ge||Lt;ce="0"==ce?0:ce,Z="0"==Z?0:Z;const $t=!ce&&!Z;let Kt={};const Ui={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Pe||""){case"":Pe="row"===pt?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":ce=0,Pe="auto";break;case"grow":Pe="100%";break;case"noshrink":Z=0,Pe="auto";break;case"auto":break;case"none":ce=0,Z=0,Pe="auto";break;default:!pi&&!at&&!isNaN(Pe)&&(Pe+="%"),"0%"===Pe&&(pi=!0),"0px"===Pe&&(Pe="0%"),Kt=(0,D.C5)(Ui,Ge?{"flex-grow":ce,"flex-shrink":Z,"flex-basis":pi?Pe:"100%"}:{flex:`${ce} ${Z} ${pi?Pe:"100%"}`})}return Kt.flex||Kt["flex-grow"]||(Kt=(0,D.C5)(Ui,Ge?{"flex-grow":ce,"flex-shrink":Z,"flex-basis":Pe}:{flex:`${ce} ${Z} ${Pe}`})),"0%"!==Pe&&"0px"!==Pe&&"0.000000001px"!==Pe&&"auto"!==Pe&&(Kt[Fe]=$t||pi&&ce?Pe:null,Kt[Ke]=$t||!qe&&Z?Pe:null),Kt[Fe]||Kt[Ke]?Te.hasWrap&&(Kt[Ge?"flex-basis":"flex"]=Kt[Ke]?Ge?Kt[Ke]:`${ce} ${Z} ${Kt[Ke]}`:Ge?Kt[Fe]:`${ce} ${Z} ${Kt[Fe]}`):Kt=(0,D.C5)(Ui,Ge?{"flex-grow":ce,"flex-shrink":Z,"flex-basis":Pe}:{flex:`${ce} ${Z} ${Pe}`}),(0,D.C5)(Kt,{"box-sizing":"border-box"})}}return Tt.\u0275fac=function(Se){return new(Se||Tt)(e.KVO(x.EA))},Tt.\u0275prov=e.jDH({token:Tt,factory:Tt.\u0275fac,providedIn:"root"}),Tt})();const c=["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 d=(()=>{class Tt extends x.DJ{constructor(Se,Te,ce,Z,Re){super(Se,Z,Te,Re),this.layoutConfig=ce,this.marshal=Re,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(Se){this.flexShrink=Se||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(Se){this.flexGrow=Se||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,w.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,w.Q)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(Se){const ce=Se.value.split(" ");this.direction=ce[0],this.wrap=void 0!==ce[1]&&"wrap"===ce[1],this.triggerUpdate()}updateWithValue(Se){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 ce=this.direction,Z=ce.startsWith("row"),Re=this.wrap;Z&&Re?this.styleCache=_:Z&&!Re?this.styleCache=A:!Z&&Re?this.styleCache=a:!Z&&!Re&&(this.styleCache=k);const Pe=String(Se).replace(";",""),pt=(0,x.hN)(Pe,this.flexGrow,this.flexShrink);this.addStyles(pt.join(" "),{direction:ce,hasWrap:Re})}triggerReflow(){const Se=this.activatedValue;if(void 0!==Se){const Te=(0,x.hN)(Se+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,Te.join(" "))}}}return Tt.\u0275fac=function(Se){return new(Se||Tt)(e.rXU(e.aKT),e.rXU(x.ZH),e.rXU(x.EA),e.rXU(n),e.rXU(x.qH))},Tt.\u0275dir=e.FsC({type:Tt,inputs:{shrink:[0,"fxShrink","shrink"],grow:[0,"fxGrow","grow"]},features:[e.Vt3]}),Tt})(),C=(()=>{class Tt extends d{constructor(){super(...arguments),this.inputs=c}}return Tt.\u0275fac=(()=>{let xt;return function(Te){return(xt||(xt=e.xGo(Tt)))(Te||Tt)}})(),Tt.\u0275dir=e.FsC({type:Tt,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"},features:[e.Vt3]}),Tt})();const A=new Map,k=new Map,_=new Map,a=new Map;let we=(()=>{class Tt extends x.r3{buildStyles(Se,Te){const ce={},[Z,Re]=Se.split(" ");switch(Z){case"center":ce["justify-content"]="center";break;case"space-around":ce["justify-content"]="space-around";break;case"space-between":ce["justify-content"]="space-between";break;case"space-evenly":ce["justify-content"]="space-evenly";break;case"end":case"flex-end":ce["justify-content"]="flex-end";break;default:ce["justify-content"]="flex-start"}switch(Re){case"start":case"flex-start":ce["align-items"]=ce["align-content"]="flex-start";break;case"center":ce["align-items"]=ce["align-content"]="center";break;case"end":case"flex-end":ce["align-items"]=ce["align-content"]="flex-end";break;case"space-between":ce["align-content"]="space-between",ce["align-items"]="stretch";break;case"space-around":ce["align-content"]="space-around",ce["align-items"]="stretch";break;case"baseline":ce["align-content"]="stretch",ce["align-items"]="baseline";break;default:ce["align-items"]=ce["align-content"]="stretch"}return(0,D.C5)(ce,{display:Te.inline?"inline-flex":"flex","flex-direction":Te.layout,"box-sizing":"border-box","max-width":"stretch"===Re?(0,D.Vc)(Te.layout)?null:"100%":null,"max-height":"stretch"===Re&&(0,D.Vc)(Te.layout)?"100%":null})}}return Tt.\u0275fac=(()=>{let xt;return function(Te){return(xt||(xt=e.xGo(Tt)))(Te||Tt)}})(),Tt.\u0275prov=e.jDH({token:Tt,factory:Tt.\u0275fac,providedIn:"root"}),Tt})();const Ue=["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 vt=(()=>{class Tt extends x.DJ{constructor(Se,Te,ce,Z){super(Se,ce,Te,Z),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,w.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(Se){const Te=this.layout||"row",ce=this.inline;"row"===Te&&ce?this.styleCache=jt:"row"!==Te||ce?"row-reverse"===Te&&ce?this.styleCache=et:"row-reverse"!==Te||ce?"column"===Te&&ce?this.styleCache=Je:"column"!==Te||ce?"column-reverse"===Te&&ce?this.styleCache=Ae:"column-reverse"===Te&&!ce&&(this.styleCache=yt):this.styleCache=qt:this.styleCache=Nt:this.styleCache=nt,this.addStyles(Se,{layout:Te,inline:ce})}onLayoutChange(Se){const Te=Se.value.split(" ");this.layout=Te[0],this.inline=Se.value.includes("inline"),D.Uo.find(ce=>ce===this.layout)||(this.layout="row"),this.triggerUpdate()}}return Tt.\u0275fac=function(Se){return new(Se||Tt)(e.rXU(e.aKT),e.rXU(x.ZH),e.rXU(we),e.rXU(x.qH))},Tt.\u0275dir=e.FsC({type:Tt,features:[e.Vt3]}),Tt})(),$e=(()=>{class Tt extends vt{constructor(){super(...arguments),this.inputs=Ue}}return Tt.\u0275fac=(()=>{let xt;return function(Te){return(xt||(xt=e.xGo(Tt)))(Te||Tt)}})(),Tt.\u0275dir=e.FsC({type:Tt,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"},features:[e.Vt3]}),Tt})();const nt=new Map,qt=new Map,Nt=new Map,yt=new Map,jt=new Map,Je=new Map,et=new Map,Ae=new Map;let Qt=(()=>{class Tt{}return Tt.\u0275fac=function(Se){return new(Se||Tt)},Tt.\u0275mod=e.$C({type:Tt}),Tt.\u0275inj=e.G2t({imports:[x.Ui,t.jI]}),Tt})()},9417:(Qe,te,g)=>{"use strict";g.d(te,{BC:()=>ue,JD:()=>Ba,Q0:()=>wa,VZ:()=>Ro,X1:()=>Pi,YN:()=>Gr,YS:()=>$r,cV:()=>Jn,cb:()=>Be,cz:()=>Q,hs:()=>Ai,j4:()=>Ur,k0:()=>ee,kq:()=>h,l_:()=>za,me:()=>j,ok:()=>ao,qT:()=>fr,vO:()=>Ie,vS:()=>Xr,xq:()=>pa,zX:()=>no,ze:()=>$a});var e=g(4438),t=g(177),x=g(2806),D=g(7468),l=g(1413),w=g(6354);let f=(()=>{class it{constructor(Ve,Dt){this._renderer=Ve,this._elementRef=Dt,this.onChange=ai=>{},this.onTouched=()=>{}}setProperty(Ve,Dt){this._renderer.setProperty(this._elementRef.nativeElement,Ve,Dt)}registerOnTouched(Ve){this.onTouched=Ve}registerOnChange(Ve){this.onChange=Ve}setDisabledState(Ve){this.setProperty("disabled",Ve)}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(e.sFG),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:it})}}return it})(),R=(()=>{class it extends f{static{this.\u0275fac=(()=>{let Ve;return function(ai){return(Ve||(Ve=e.xGo(it)))(ai||it)}})()}static{this.\u0275dir=e.FsC({type:it,features:[e.Vt3]})}}return it})();const h=new e.nKC(""),O={provide:h,useExisting:(0,e.Rfq)(()=>j),multi:!0},V=new e.nKC("");let j=(()=>{class it extends f{constructor(Ve,Dt,ai){super(Ve,Dt),this._compositionMode=ai,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function I(){const it=(0,t.QT)()?(0,t.QT)().getUserAgent():"";return/android (\d+)/.test(it.toLowerCase())}())}writeValue(Ve){this.setProperty("value",Ve??"")}_handleInput(Ve){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(Ve)}_compositionStart(){this._composing=!0}_compositionEnd(Ve){this._composing=!1,this._compositionMode&&this.onChange(Ve)}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(e.sFG),e.rXU(e.aKT),e.rXU(V,8))}}static{this.\u0275dir=e.FsC({type:it,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(Dt,ai){1&Dt&&e.bIt("input",function(er){return ai._handleInput(er.target.value)})("blur",function(){return ai.onTouched()})("compositionstart",function(){return ai._compositionStart()})("compositionend",function(er){return ai._compositionEnd(er.target.value)})},features:[e.Jv_([O]),e.Vt3]})}}return it})();function Y(it){return null==it||("string"==typeof it||Array.isArray(it))&&0===it.length}function W(it){return null!=it&&"number"==typeof it.length}const Q=new e.nKC(""),J=new e.nKC(""),ie=/^(?=.{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 ee{static min(ut){return fe(ut)}static max(ut){return ne(ut)}static required(ut){return Me(ut)}static requiredTrue(ut){return Ce(ut)}static email(ut){return function le(it){return Y(it.value)||ie.test(it.value)?null:{email:!0}}(ut)}static minLength(ut){return function T(it){return ut=>Y(ut.value)||!W(ut.value)?null:ut.value.lengthW(ut.value)&&ut.value.length>it?{maxlength:{requiredLength:it,actualLength:ut.value.length}}:null}(ut)}static pattern(ut){return function c(it){if(!it)return m;let ut,Ve;return"string"==typeof it?(Ve="","^"!==it.charAt(0)&&(Ve+="^"),Ve+=it,"$"!==it.charAt(it.length-1)&&(Ve+="$"),ut=new RegExp(Ve)):(Ve=it.toString(),ut=it),Dt=>{if(Y(Dt.value))return null;const ai=Dt.value;return ut.test(ai)?null:{pattern:{requiredPattern:Ve,actualValue:ai}}}}(ut)}static nullValidator(ut){return null}static compose(ut){return b(ut)}static composeAsync(ut){return N(ut)}}function fe(it){return ut=>{if(Y(ut.value)||Y(it))return null;const Ve=parseFloat(ut.value);return!isNaN(Ve)&&Ve{if(Y(ut.value)||Y(it))return null;const Ve=parseFloat(ut.value);return!isNaN(Ve)&&Ve>it?{max:{max:it,actual:ut.value}}:null}}function Me(it){return Y(it.value)?{required:!0}:null}function Ce(it){return!0===it.value?null:{required:!0}}function m(it){return null}function d(it){return null!=it}function C(it){return(0,e.jNT)(it)?(0,x.H)(it):it}function A(it){let ut={};return it.forEach(Ve=>{ut=null!=Ve?{...ut,...Ve}:ut}),0===Object.keys(ut).length?null:ut}function k(it,ut){return ut.map(Ve=>Ve(it))}function a(it){return it.map(ut=>function _(it){return!it.validate}(ut)?ut:Ve=>ut.validate(Ve))}function b(it){if(!it)return null;const ut=it.filter(d);return 0==ut.length?null:function(Ve){return A(k(Ve,ut))}}function z(it){return null!=it?b(a(it)):null}function N(it){if(!it)return null;const ut=it.filter(d);return 0==ut.length?null:function(Ve){const Dt=k(Ve,ut).map(C);return(0,D.p)(Dt).pipe((0,w.T)(A))}}function q(it){return null!=it?N(a(it)):null}function pe(it,ut){return null===it?[ut]:Array.isArray(it)?[...it,ut]:[it,ut]}function ze(it){return it._rawValidators}function Xe(it){return it._rawAsyncValidators}function We(it){return it?Array.isArray(it)?it:[it]:[]}function oe(it,ut){return Array.isArray(it)?it.includes(ut):it===ut}function X(it,ut){const Ve=We(ut);return We(it).forEach(ai=>{oe(Ve,ai)||Ve.push(ai)}),Ve}function se(it,ut){return We(ut).filter(Ve=>!oe(it,Ve))}class ae{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}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}_setValidators(ut){this._rawValidators=ut||[],this._composedValidatorFn=z(this._rawValidators)}_setAsyncValidators(ut){this._rawAsyncValidators=ut||[],this._composedAsyncValidatorFn=q(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(ut){this._onDestroyCallbacks.push(ut)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(ut=>ut()),this._onDestroyCallbacks=[]}reset(ut=void 0){this.control&&this.control.reset(ut)}hasError(ut,Ve){return!!this.control&&this.control.hasError(ut,Ve)}getError(ut,Ve){return this.control?this.control.getError(ut,Ve):null}}class he extends ae{get formDirective(){return null}get path(){return null}}class Ie extends ae{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class st{constructor(ut){this._cd=ut}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 ue=(()=>{class it extends st{constructor(Ve){super(Ve)}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(Ie,2))}}static{this.\u0275dir=e.FsC({type:it,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(Dt,ai){2&Dt&&e.AVh("ng-untouched",ai.isUntouched)("ng-touched",ai.isTouched)("ng-pristine",ai.isPristine)("ng-dirty",ai.isDirty)("ng-valid",ai.isValid)("ng-invalid",ai.isInvalid)("ng-pending",ai.isPending)},features:[e.Vt3]})}}return it})(),Be=(()=>{class it extends st{constructor(Ve){super(Ve)}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(he,10))}}static{this.\u0275dir=e.FsC({type:it,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(Dt,ai){2&Dt&&e.AVh("ng-untouched",ai.isUntouched)("ng-touched",ai.isTouched)("ng-pristine",ai.isPristine)("ng-dirty",ai.isDirty)("ng-valid",ai.isValid)("ng-invalid",ai.isInvalid)("ng-pending",ai.isPending)("ng-submitted",ai.isSubmitted)},features:[e.Vt3]})}}return it})();const Ae="VALID",It="INVALID",Qt="PENDING",Tt="DISABLED";class xt{}class Se extends xt{constructor(ut,Ve){super(),this.value=ut,this.source=Ve}}class Te extends xt{constructor(ut,Ve){super(),this.pristine=ut,this.source=Ve}}class ce extends xt{constructor(ut,Ve){super(),this.touched=ut,this.source=Ve}}class Z extends xt{constructor(ut,Ve){super(),this.status=ut,this.source=Ve}}class Re extends xt{constructor(ut){super(),this.source=ut}}class Pe extends xt{constructor(ut){super(),this.source=ut}}function pt(it){return(qe(it)?it.validators:it)||null}function Fe(it,ut){return(qe(ut)?ut.asyncValidators:it)||null}function qe(it){return null!=it&&!Array.isArray(it)&&"object"==typeof it}function at(it,ut,Ve){const Dt=it.controls;if(!(ut?Object.keys(Dt):Dt).length)throw new e.wOt(1e3,"");if(!Dt[Ve])throw new e.wOt(1001,"")}function Lt(it,ut,Ve){it._forEachChild((Dt,ai)=>{if(void 0===Ve[ai])throw new e.wOt(1002,"")})}class pi{constructor(ut,Ve){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=null,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this._status=(0,e.EWP)(()=>this.statusReactive()),this.statusReactive=(0,e.vPA)(void 0),this._pristine=(0,e.EWP)(()=>this.pristineReactive()),this.pristineReactive=(0,e.vPA)(!0),this._touched=(0,e.EWP)(()=>this.touchedReactive()),this.touchedReactive=(0,e.vPA)(!1),this._events=new l.B,this.events=this._events.asObservable(),this._onDisabledChange=[],this._assignValidators(ut),this._assignAsyncValidators(Ve)}get validator(){return this._composedValidatorFn}set validator(ut){this._rawValidators=this._composedValidatorFn=ut}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(ut){this._rawAsyncValidators=this._composedAsyncValidatorFn=ut}get parent(){return this._parent}get status(){return(0,e.O8t)(this.statusReactive)}set status(ut){(0,e.O8t)(()=>this.statusReactive.set(ut))}get valid(){return this.status===Ae}get invalid(){return this.status===It}get pending(){return this.status==Qt}get disabled(){return this.status===Tt}get enabled(){return this.status!==Tt}get pristine(){return(0,e.O8t)(this.pristineReactive)}set pristine(ut){(0,e.O8t)(()=>this.pristineReactive.set(ut))}get dirty(){return!this.pristine}get touched(){return(0,e.O8t)(this.touchedReactive)}set touched(ut){(0,e.O8t)(()=>this.touchedReactive.set(ut))}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(ut){this._assignValidators(ut)}setAsyncValidators(ut){this._assignAsyncValidators(ut)}addValidators(ut){this.setValidators(X(ut,this._rawValidators))}addAsyncValidators(ut){this.setAsyncValidators(X(ut,this._rawAsyncValidators))}removeValidators(ut){this.setValidators(se(ut,this._rawValidators))}removeAsyncValidators(ut){this.setAsyncValidators(se(ut,this._rawAsyncValidators))}hasValidator(ut){return oe(this._rawValidators,ut)}hasAsyncValidator(ut){return oe(this._rawAsyncValidators,ut)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(ut={}){const Ve=!1===this.touched;this.touched=!0;const Dt=ut.sourceControl??this;this._parent&&!ut.onlySelf&&this._parent.markAsTouched({...ut,sourceControl:Dt}),Ve&&!1!==ut.emitEvent&&this._events.next(new ce(!0,Dt))}markAllAsTouched(ut={}){this.markAsTouched({onlySelf:!0,emitEvent:ut.emitEvent,sourceControl:this}),this._forEachChild(Ve=>Ve.markAllAsTouched(ut))}markAsUntouched(ut={}){const Ve=!0===this.touched;this.touched=!1,this._pendingTouched=!1;const Dt=ut.sourceControl??this;this._forEachChild(ai=>{ai.markAsUntouched({onlySelf:!0,emitEvent:ut.emitEvent,sourceControl:Dt})}),this._parent&&!ut.onlySelf&&this._parent._updateTouched(ut,Dt),Ve&&!1!==ut.emitEvent&&this._events.next(new ce(!1,Dt))}markAsDirty(ut={}){const Ve=!0===this.pristine;this.pristine=!1;const Dt=ut.sourceControl??this;this._parent&&!ut.onlySelf&&this._parent.markAsDirty({...ut,sourceControl:Dt}),Ve&&!1!==ut.emitEvent&&this._events.next(new Te(!1,Dt))}markAsPristine(ut={}){const Ve=!1===this.pristine;this.pristine=!0,this._pendingDirty=!1;const Dt=ut.sourceControl??this;this._forEachChild(ai=>{ai.markAsPristine({onlySelf:!0,emitEvent:ut.emitEvent})}),this._parent&&!ut.onlySelf&&this._parent._updatePristine(ut,Dt),Ve&&!1!==ut.emitEvent&&this._events.next(new Te(!0,Dt))}markAsPending(ut={}){this.status=Qt;const Ve=ut.sourceControl??this;!1!==ut.emitEvent&&(this._events.next(new Z(this.status,Ve)),this.statusChanges.emit(this.status)),this._parent&&!ut.onlySelf&&this._parent.markAsPending({...ut,sourceControl:Ve})}disable(ut={}){const Ve=this._parentMarkedDirty(ut.onlySelf);this.status=Tt,this.errors=null,this._forEachChild(ai=>{ai.disable({...ut,onlySelf:!0})}),this._updateValue();const Dt=ut.sourceControl??this;!1!==ut.emitEvent&&(this._events.next(new Se(this.value,Dt)),this._events.next(new Z(this.status,Dt)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...ut,skipPristineCheck:Ve},this),this._onDisabledChange.forEach(ai=>ai(!0))}enable(ut={}){const Ve=this._parentMarkedDirty(ut.onlySelf);this.status=Ae,this._forEachChild(Dt=>{Dt.enable({...ut,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:ut.emitEvent}),this._updateAncestors({...ut,skipPristineCheck:Ve},this),this._onDisabledChange.forEach(Dt=>Dt(!1))}_updateAncestors(ut,Ve){this._parent&&!ut.onlySelf&&(this._parent.updateValueAndValidity(ut),ut.skipPristineCheck||this._parent._updatePristine({},Ve),this._parent._updateTouched({},Ve))}setParent(ut){this._parent=ut}getRawValue(){return this.value}updateValueAndValidity(ut={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){const Dt=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===Ae||this.status===Qt)&&this._runAsyncValidator(Dt,ut.emitEvent)}const Ve=ut.sourceControl??this;!1!==ut.emitEvent&&(this._events.next(new Se(this.value,Ve)),this._events.next(new Z(this.status,Ve)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!ut.onlySelf&&this._parent.updateValueAndValidity({...ut,sourceControl:Ve})}_updateTreeValidity(ut={emitEvent:!0}){this._forEachChild(Ve=>Ve._updateTreeValidity(ut)),this.updateValueAndValidity({onlySelf:!0,emitEvent:ut.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?Tt:Ae}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(ut,Ve){if(this.asyncValidator){this.status=Qt,this._hasOwnPendingAsyncValidator={emitEvent:!1!==Ve};const Dt=C(this.asyncValidator(this));this._asyncValidationSubscription=Dt.subscribe(ai=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(ai,{emitEvent:Ve,shouldHaveEmitted:ut})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();const ut=this._hasOwnPendingAsyncValidator?.emitEvent??!1;return this._hasOwnPendingAsyncValidator=null,ut}return!1}setErrors(ut,Ve={}){this.errors=ut,this._updateControlsErrors(!1!==Ve.emitEvent,this,Ve.shouldHaveEmitted)}get(ut){let Ve=ut;return null==Ve||(Array.isArray(Ve)||(Ve=Ve.split(".")),0===Ve.length)?null:Ve.reduce((Dt,ai)=>Dt&&Dt._find(ai),this)}getError(ut,Ve){const Dt=Ve?this.get(Ve):this;return Dt&&Dt.errors?Dt.errors[ut]:null}hasError(ut,Ve){return!!this.getError(ut,Ve)}get root(){let ut=this;for(;ut._parent;)ut=ut._parent;return ut}_updateControlsErrors(ut,Ve,Dt){this.status=this._calculateStatus(),ut&&this.statusChanges.emit(this.status),(ut||Dt)&&this._events.next(new Z(this.status,Ve)),this._parent&&this._parent._updateControlsErrors(ut,Ve,Dt)}_initObservables(){this.valueChanges=new e.bkB,this.statusChanges=new e.bkB}_calculateStatus(){return this._allControlsDisabled()?Tt:this.errors?It:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Qt)?Qt:this._anyControlsHaveStatus(It)?It:Ae}_anyControlsHaveStatus(ut){return this._anyControls(Ve=>Ve.status===ut)}_anyControlsDirty(){return this._anyControls(ut=>ut.dirty)}_anyControlsTouched(){return this._anyControls(ut=>ut.touched)}_updatePristine(ut,Ve){const Dt=!this._anyControlsDirty(),ai=this.pristine!==Dt;this.pristine=Dt,this._parent&&!ut.onlySelf&&this._parent._updatePristine(ut,Ve),ai&&this._events.next(new Te(this.pristine,Ve))}_updateTouched(ut={},Ve){this.touched=this._anyControlsTouched(),this._events.next(new ce(this.touched,Ve)),this._parent&&!ut.onlySelf&&this._parent._updateTouched(ut,Ve)}_registerOnCollectionChange(ut){this._onCollectionChange=ut}_setUpdateStrategy(ut){qe(ut)&&null!=ut.updateOn&&(this._updateOn=ut.updateOn)}_parentMarkedDirty(ut){return!ut&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(ut){return null}_assignValidators(ut){this._rawValidators=Array.isArray(ut)?ut.slice():ut,this._composedValidatorFn=function Ke(it){return Array.isArray(it)?z(it):it||null}(this._rawValidators)}_assignAsyncValidators(ut){this._rawAsyncValidators=Array.isArray(ut)?ut.slice():ut,this._composedAsyncValidatorFn=function Ge(it){return Array.isArray(it)?q(it):it||null}(this._rawAsyncValidators)}}class $t extends pi{constructor(ut,Ve,Dt){super(pt(Ve),Fe(Dt,Ve)),this.controls=ut,this._initObservables(),this._setUpdateStrategy(Ve),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(ut,Ve){return this.controls[ut]?this.controls[ut]:(this.controls[ut]=Ve,Ve.setParent(this),Ve._registerOnCollectionChange(this._onCollectionChange),Ve)}addControl(ut,Ve,Dt={}){this.registerControl(ut,Ve),this.updateValueAndValidity({emitEvent:Dt.emitEvent}),this._onCollectionChange()}removeControl(ut,Ve={}){this.controls[ut]&&this.controls[ut]._registerOnCollectionChange(()=>{}),delete this.controls[ut],this.updateValueAndValidity({emitEvent:Ve.emitEvent}),this._onCollectionChange()}setControl(ut,Ve,Dt={}){this.controls[ut]&&this.controls[ut]._registerOnCollectionChange(()=>{}),delete this.controls[ut],Ve&&this.registerControl(ut,Ve),this.updateValueAndValidity({emitEvent:Dt.emitEvent}),this._onCollectionChange()}contains(ut){return this.controls.hasOwnProperty(ut)&&this.controls[ut].enabled}setValue(ut,Ve={}){Lt(this,0,ut),Object.keys(ut).forEach(Dt=>{at(this,!0,Dt),this.controls[Dt].setValue(ut[Dt],{onlySelf:!0,emitEvent:Ve.emitEvent})}),this.updateValueAndValidity(Ve)}patchValue(ut,Ve={}){null!=ut&&(Object.keys(ut).forEach(Dt=>{const ai=this.controls[Dt];ai&&ai.patchValue(ut[Dt],{onlySelf:!0,emitEvent:Ve.emitEvent})}),this.updateValueAndValidity(Ve))}reset(ut={},Ve={}){this._forEachChild((Dt,ai)=>{Dt.reset(ut?ut[ai]:null,{onlySelf:!0,emitEvent:Ve.emitEvent})}),this._updatePristine(Ve,this),this._updateTouched(Ve,this),this.updateValueAndValidity(Ve)}getRawValue(){return this._reduceChildren({},(ut,Ve,Dt)=>(ut[Dt]=Ve.getRawValue(),ut))}_syncPendingControls(){let ut=this._reduceChildren(!1,(Ve,Dt)=>!!Dt._syncPendingControls()||Ve);return ut&&this.updateValueAndValidity({onlySelf:!0}),ut}_forEachChild(ut){Object.keys(this.controls).forEach(Ve=>{const Dt=this.controls[Ve];Dt&&ut(Dt,Ve)})}_setUpControls(){this._forEachChild(ut=>{ut.setParent(this),ut._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(ut){for(const[Ve,Dt]of Object.entries(this.controls))if(this.contains(Ve)&&ut(Dt))return!0;return!1}_reduceValue(){return this._reduceChildren({},(Ve,Dt,ai)=>((Dt.enabled||this.disabled)&&(Ve[ai]=Dt.value),Ve))}_reduceChildren(ut,Ve){let Dt=ut;return this._forEachChild((ai,vn)=>{Dt=Ve(Dt,ai,vn)}),Dt}_allControlsDisabled(){for(const ut of Object.keys(this.controls))if(this.controls[ut].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(ut){return this.controls.hasOwnProperty(ut)?this.controls[ut]:null}}class fi extends $t{}const tn=new e.nKC("CallSetDisabledState",{providedIn:"root",factory:()=>Vi}),Vi="always";function Qi(it,ut){return[...ut.path,it]}function Xt(it,ut,Ve=Vi){Mt(it,ut),ut.valueAccessor.writeValue(it.value),(it.disabled||"always"===Ve)&&ut.valueAccessor.setDisabledState?.(it.disabled),function Ci(it,ut){ut.valueAccessor.registerOnChange(Ve=>{it._pendingValue=Ve,it._pendingChange=!0,it._pendingDirty=!0,"change"===it.updateOn&&Hi(it,ut)})}(it,ut),function Zi(it,ut){const Ve=(Dt,ai)=>{ut.valueAccessor.writeValue(Dt),ai&&ut.viewToModelUpdate(Dt)};it.registerOnChange(Ve),ut._registerOnDestroy(()=>{it._unregisterOnChange(Ve)})}(it,ut),function Ti(it,ut){ut.valueAccessor.registerOnTouched(()=>{it._pendingTouched=!0,"blur"===it.updateOn&&it._pendingChange&&Hi(it,ut),"submit"!==it.updateOn&&it.markAsTouched()})}(it,ut),function ot(it,ut){if(ut.valueAccessor.setDisabledState){const Ve=Dt=>{ut.valueAccessor.setDisabledState(Dt)};it.registerOnDisabledChange(Ve),ut._registerOnDestroy(()=>{it._unregisterOnDisabledChange(Ve)})}}(it,ut)}function St(it,ut,Ve=!0){const Dt=()=>{};ut.valueAccessor&&(ut.valueAccessor.registerOnChange(Dt),ut.valueAccessor.registerOnTouched(Dt)),Bt(it,ut),it&&(ut._invokeOnDestroyCallbacks(),it._registerOnCollectionChange(()=>{}))}function tt(it,ut){it.forEach(Ve=>{Ve.registerOnValidatorChange&&Ve.registerOnValidatorChange(ut)})}function Mt(it,ut){const Ve=ze(it);null!==ut.validator?it.setValidators(pe(Ve,ut.validator)):"function"==typeof Ve&&it.setValidators([Ve]);const Dt=Xe(it);null!==ut.asyncValidator?it.setAsyncValidators(pe(Dt,ut.asyncValidator)):"function"==typeof Dt&&it.setAsyncValidators([Dt]);const ai=()=>it.updateValueAndValidity();tt(ut._rawValidators,ai),tt(ut._rawAsyncValidators,ai)}function Bt(it,ut){let Ve=!1;if(null!==it){if(null!==ut.validator){const ai=ze(it);if(Array.isArray(ai)&&ai.length>0){const vn=ai.filter(er=>er!==ut.validator);vn.length!==ai.length&&(Ve=!0,it.setValidators(vn))}}if(null!==ut.asyncValidator){const ai=Xe(it);if(Array.isArray(ai)&&ai.length>0){const vn=ai.filter(er=>er!==ut.asyncValidator);vn.length!==ai.length&&(Ve=!0,it.setAsyncValidators(vn))}}}const Dt=()=>{};return tt(ut._rawValidators,Dt),tt(ut._rawAsyncValidators,Dt),Ve}function Hi(it,ut){it._pendingDirty&&it.markAsDirty(),it.setValue(it._pendingValue,{emitModelToViewChange:!1}),ut.viewToModelUpdate(it._pendingValue),it._pendingChange=!1}function ln(it,ut){Mt(it,ut)}function rt(it,ut){if(!it.hasOwnProperty("model"))return!1;const Ve=it.model;return!!Ve.isFirstChange()||!Object.is(ut,Ve.currentValue)}function ii(it,ut){it._syncPendingControls(),ut.forEach(Ve=>{const Dt=Ve.control;"submit"===Dt.updateOn&&Dt._pendingChange&&(Ve.viewToModelUpdate(Dt._pendingValue),Dt._pendingChange=!1)})}function di(it,ut){if(!ut)return null;let Ve,Dt,ai;return Array.isArray(ut),ut.forEach(vn=>{vn.constructor===j?Ve=vn:function ht(it){return Object.getPrototypeOf(it.constructor)===R}(vn)?Dt=vn:ai=vn}),ai||Dt||Ve||null}const Hn={provide:he,useExisting:(0,e.Rfq)(()=>Jn)},Qn=Promise.resolve();let Jn=(()=>{class it extends he{get submitted(){return(0,e.O8t)(this.submittedReactive)}constructor(Ve,Dt,ai){super(),this.callSetDisabledState=ai,this._submitted=(0,e.EWP)(()=>this.submittedReactive()),this.submittedReactive=(0,e.vPA)(!1),this._directives=new Set,this.ngSubmit=new e.bkB,this.form=new $t({},z(Ve),q(Dt))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(Ve){Qn.then(()=>{const Dt=this._findContainer(Ve.path);Ve.control=Dt.registerControl(Ve.name,Ve.control),Xt(Ve.control,Ve,this.callSetDisabledState),Ve.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(Ve)})}getControl(Ve){return this.form.get(Ve.path)}removeControl(Ve){Qn.then(()=>{const Dt=this._findContainer(Ve.path);Dt&&Dt.removeControl(Ve.name),this._directives.delete(Ve)})}addFormGroup(Ve){Qn.then(()=>{const Dt=this._findContainer(Ve.path),ai=new $t({});ln(ai,Ve),Dt.registerControl(Ve.name,ai),ai.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(Ve){Qn.then(()=>{const Dt=this._findContainer(Ve.path);Dt&&Dt.removeControl(Ve.name)})}getFormGroup(Ve){return this.form.get(Ve.path)}updateModel(Ve,Dt){Qn.then(()=>{this.form.get(Ve.path).setValue(Dt)})}setValue(Ve){this.control.setValue(Ve)}onSubmit(Ve){return this.submittedReactive.set(!0),ii(this.form,this._directives),this.ngSubmit.emit(Ve),"dialog"===Ve?.target?.method}onReset(){this.resetForm()}resetForm(Ve=void 0){this.form.reset(Ve),this.submittedReactive.set(!1)}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(Ve){return Ve.pop(),Ve.length?this.form.get(Ve):this.form}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(Q,10),e.rXU(J,10),e.rXU(tn,8))}}static{this.\u0275dir=e.FsC({type:it,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(Dt,ai){1&Dt&&e.bIt("submit",function(er){return ai.onSubmit(er)})("reset",function(){return ai.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([Hn]),e.Vt3]})}}return it})();function nr(it,ut){const Ve=it.indexOf(ut);Ve>-1&&it.splice(Ve,1)}function dr(it){return"object"==typeof it&&null!==it&&2===Object.keys(it).length&&"value"in it&&"disabled"in it}const wn=class extends pi{constructor(ut=null,Ve,Dt){super(pt(Ve),Fe(Dt,Ve)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(ut),this._setUpdateStrategy(Ve),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),qe(Ve)&&(Ve.nonNullable||Ve.initialValueIsDefault)&&(this.defaultValue=dr(ut)?ut.value:ut)}setValue(ut,Ve={}){this.value=this._pendingValue=ut,this._onChange.length&&!1!==Ve.emitModelToViewChange&&this._onChange.forEach(Dt=>Dt(this.value,!1!==Ve.emitViewToModelChange)),this.updateValueAndValidity(Ve)}patchValue(ut,Ve={}){this.setValue(ut,Ve)}reset(ut=this.defaultValue,Ve={}){this._applyFormState(ut),this.markAsPristine(Ve),this.markAsUntouched(Ve),this.setValue(this.value,Ve),this._pendingChange=!1}_updateValue(){}_anyControls(ut){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(ut){this._onChange.push(ut)}_unregisterOnChange(ut){nr(this._onChange,ut)}registerOnDisabledChange(ut){this._onDisabledChange.push(ut)}_unregisterOnDisabledChange(ut){nr(this._onDisabledChange,ut)}_forEachChild(ut){}_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(ut){dr(ut)?(this.value=this._pendingValue=ut.value,ut.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=ut}},Ai=wn,ir={provide:Ie,useExisting:(0,e.Rfq)(()=>Xr)},gn=Promise.resolve();let Xr=(()=>{class it extends Ie{constructor(Ve,Dt,ai,vn,er,Oo){super(),this._changeDetectorRef=er,this.callSetDisabledState=Oo,this.control=new wn,this._registered=!1,this.name="",this.update=new e.bkB,this._parent=Ve,this._setValidators(Dt),this._setAsyncValidators(ai),this.valueAccessor=di(0,vn)}ngOnChanges(Ve){if(this._checkForErrors(),!this._registered||"name"in Ve){if(this._registered&&(this._checkName(),this.formDirective)){const Dt=Ve.name.previousValue;this.formDirective.removeControl({name:Dt,path:this._getPath(Dt)})}this._setUpControl()}"isDisabled"in Ve&&this._updateDisabled(Ve),rt(Ve,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(Ve){this.viewModel=Ve,this.update.emit(Ve)}_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(){Xt(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(Ve){gn.then(()=>{this.control.setValue(Ve,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(Ve){const Dt=Ve.isDisabled.currentValue,ai=0!==Dt&&(0,e.L39)(Dt);gn.then(()=>{ai&&!this.control.disabled?this.control.disable():!ai&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(Ve){return this._parent?Qi(Ve,this._parent):[Ve]}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(he,9),e.rXU(Q,10),e.rXU(J,10),e.rXU(h,10),e.rXU(e.gRc,8),e.rXU(tn,8))}}static{this.\u0275dir=e.FsC({type:it,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"],features:[e.Jv_([ir]),e.Vt3,e.OA$]})}}return it})(),fr=(()=>{class it{static{this.\u0275fac=function(Dt){return new(Dt||it)}}static{this.\u0275dir=e.FsC({type:it,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]})}}return it})();const mr={provide:h,useExisting:(0,e.Rfq)(()=>wa),multi:!0};let wa=(()=>{class it extends R{writeValue(Ve){this.setProperty("value",Ve??"")}registerOnChange(Ve){this.onChange=Dt=>{Ve(""==Dt?null:parseFloat(Dt))}}static{this.\u0275fac=(()=>{let Ve;return function(ai){return(Ve||(Ve=e.xGo(it)))(ai||it)}})()}static{this.\u0275dir=e.FsC({type:it,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(Dt,ai){1&Dt&&e.bIt("input",function(er){return ai.onChange(er.target.value)})("blur",function(){return ai.onTouched()})},features:[e.Jv_([mr]),e.Vt3]})}}return it})();const Or=new e.nKC(""),hs={provide:Ie,useExisting:(0,e.Rfq)(()=>za)};let za=(()=>{class it extends Ie{set isDisabled(Ve){}static{this._ngModelWarningSentOnce=!1}constructor(Ve,Dt,ai,vn,er){super(),this._ngModelWarningConfig=vn,this.callSetDisabledState=er,this.update=new e.bkB,this._ngModelWarningSent=!1,this._setValidators(Ve),this._setAsyncValidators(Dt),this.valueAccessor=di(0,ai)}ngOnChanges(Ve){if(this._isControlChanged(Ve)){const Dt=Ve.form.previousValue;Dt&&St(Dt,this,!1),Xt(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}rt(Ve,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&St(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(Ve){this.viewModel=Ve,this.update.emit(Ve)}_isControlChanged(Ve){return Ve.hasOwnProperty("form")}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(Q,10),e.rXU(J,10),e.rXU(h,10),e.rXU(Or,8),e.rXU(tn,8))}}static{this.\u0275dir=e.FsC({type:it,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[e.Jv_([hs]),e.Vt3,e.OA$]})}}return it})();const Fr={provide:he,useExisting:(0,e.Rfq)(()=>Ur)};let Ur=(()=>{class it extends he{get submitted(){return(0,e.O8t)(this._submittedReactive)}set submitted(Ve){this._submittedReactive.set(Ve)}constructor(Ve,Dt,ai){super(),this.callSetDisabledState=ai,this._submitted=(0,e.EWP)(()=>this._submittedReactive()),this._submittedReactive=(0,e.vPA)(!1),this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new e.bkB,this._setValidators(Ve),this._setAsyncValidators(Dt)}ngOnChanges(Ve){this._checkFormPresent(),Ve.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(Bt(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(Ve){const Dt=this.form.get(Ve.path);return Xt(Dt,Ve,this.callSetDisabledState),Dt.updateValueAndValidity({emitEvent:!1}),this.directives.push(Ve),Dt}getControl(Ve){return this.form.get(Ve.path)}removeControl(Ve){St(Ve.control||null,Ve,!1),function Gi(it,ut){const Ve=it.indexOf(ut);Ve>-1&&it.splice(Ve,1)}(this.directives,Ve)}addFormGroup(Ve){this._setUpFormContainer(Ve)}removeFormGroup(Ve){this._cleanUpFormContainer(Ve)}getFormGroup(Ve){return this.form.get(Ve.path)}addFormArray(Ve){this._setUpFormContainer(Ve)}removeFormArray(Ve){this._cleanUpFormContainer(Ve)}getFormArray(Ve){return this.form.get(Ve.path)}updateModel(Ve,Dt){this.form.get(Ve.path).setValue(Dt)}onSubmit(Ve){return this._submittedReactive.set(!0),ii(this.form,this.directives),this.ngSubmit.emit(Ve),this.form._events.next(new Re(this.control)),"dialog"===Ve?.target?.method}onReset(){this.resetForm()}resetForm(Ve=void 0){this.form.reset(Ve),this._submittedReactive.set(!1),this.form._events.next(new Pe(this.form))}_updateDomValue(){this.directives.forEach(Ve=>{const Dt=Ve.control,ai=this.form.get(Ve.path);Dt!==ai&&(St(Dt||null,Ve),(it=>it instanceof wn)(ai)&&(Xt(ai,Ve,this.callSetDisabledState),Ve.control=ai))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(Ve){const Dt=this.form.get(Ve.path);ln(Dt,Ve),Dt.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(Ve){if(this.form){const Dt=this.form.get(Ve.path);Dt&&function mn(it,ut){return Bt(it,ut)}(Dt,Ve)&&Dt.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){Mt(this.form,this),this._oldForm&&Bt(this._oldForm,this)}_checkFormPresent(){}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(Q,10),e.rXU(J,10),e.rXU(tn,8))}}static{this.\u0275dir=e.FsC({type:it,selectors:[["","formGroup",""]],hostBindings:function(Dt,ai){1&Dt&&e.bIt("submit",function(er){return ai.onSubmit(er)})("reset",function(){return ai.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([Fr]),e.Vt3,e.OA$]})}}return it})();const Do={provide:Ie,useExisting:(0,e.Rfq)(()=>Ba)};let Ba=(()=>{class it extends Ie{set isDisabled(Ve){}static{this._ngModelWarningSentOnce=!1}constructor(Ve,Dt,ai,vn,er){super(),this._ngModelWarningConfig=er,this._added=!1,this.name=null,this.update=new e.bkB,this._ngModelWarningSent=!1,this._parent=Ve,this._setValidators(Dt),this._setAsyncValidators(ai),this.valueAccessor=di(0,vn)}ngOnChanges(Ve){this._added||this._setUpControl(),rt(Ve,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(Ve){this.viewModel=Ve,this.update.emit(Ve)}get path(){return Qi(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this._added=!0}static{this.\u0275fac=function(Dt){return new(Dt||it)(e.rXU(he,13),e.rXU(Q,10),e.rXU(J,10),e.rXU(h,10),e.rXU(Or,8))}}static{this.\u0275dir=e.FsC({type:it,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},features:[e.Jv_([Do]),e.Vt3,e.OA$]})}}return it})();function Io(it){return"number"==typeof it?it:parseFloat(it)}let Ua=(()=>{class it{constructor(){this._validator=m}ngOnChanges(Ve){if(this.inputName in Ve){const Dt=this.normalizeInput(Ve[this.inputName].currentValue);this._enabled=this.enabled(Dt),this._validator=this._enabled?this.createValidator(Dt):m,this._onChange&&this._onChange()}}validate(Ve){return this._validator(Ve)}registerOnValidatorChange(Ve){this._onChange=Ve}enabled(Ve){return null!=Ve}static{this.\u0275fac=function(Dt){return new(Dt||it)}}static{this.\u0275dir=e.FsC({type:it,features:[e.OA$]})}}return it})();const ma={provide:Q,useExisting:(0,e.Rfq)(()=>no),multi:!0};let no=(()=>{class it extends Ua{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=Ve=>Io(Ve),this.createValidator=Ve=>ne(Ve)}static{this.\u0275fac=(()=>{let Ve;return function(ai){return(Ve||(Ve=e.xGo(it)))(ai||it)}})()}static{this.\u0275dir=e.FsC({type:it,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(Dt,ai){2&Dt&&e.BMQ("max",ai._enabled?ai.max:null)},inputs:{max:"max"},features:[e.Jv_([ma]),e.Vt3]})}}return it})();const ta={provide:Q,useExisting:(0,e.Rfq)(()=>Ro),multi:!0};let Ro=(()=>{class it extends Ua{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=Ve=>Io(Ve),this.createValidator=Ve=>fe(Ve)}static{this.\u0275fac=(()=>{let Ve;return function(ai){return(Ve||(Ve=e.xGo(it)))(ai||it)}})()}static{this.\u0275dir=e.FsC({type:it,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(Dt,ai){2&Dt&&e.BMQ("min",ai._enabled?ai.min:null)},inputs:{min:"min"},features:[e.Jv_([ta]),e.Vt3]})}}return it})();const As={provide:Q,useExisting:(0,e.Rfq)(()=>$r),multi:!0},bo={provide:Q,useExisting:(0,e.Rfq)(()=>pa),multi:!0};let $r=(()=>{class it extends Ua{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=e.L39,this.createValidator=Ve=>Me}enabled(Ve){return Ve}static{this.\u0275fac=(()=>{let Ve;return function(ai){return(Ve||(Ve=e.xGo(it)))(ai||it)}})()}static{this.\u0275dir=e.FsC({type:it,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(Dt,ai){2&Dt&&e.BMQ("required",ai._enabled?"":null)},inputs:{required:"required"},features:[e.Jv_([As]),e.Vt3]})}}return it})(),pa=(()=>{class it extends $r{constructor(){super(...arguments),this.createValidator=Ve=>Ce}static{this.\u0275fac=(()=>{let Ve;return function(ai){return(Ve||(Ve=e.xGo(it)))(ai||it)}})()}static{this.\u0275dir=e.FsC({type:it,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(Dt,ai){2&Dt&&e.BMQ("required",ai._enabled?"":null)},features:[e.Jv_([bo]),e.Vt3]})}}return it})(),Ei=(()=>{class it{static{this.\u0275fac=function(Dt){return new(Dt||it)}}static{this.\u0275mod=e.$C({type:it})}static{this.\u0275inj=e.G2t({})}}return it})();class Ji extends pi{constructor(ut,Ve,Dt){super(pt(Ve),Fe(Dt,Ve)),this.controls=ut,this._initObservables(),this._setUpdateStrategy(Ve),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(ut){return this.controls[this._adjustIndex(ut)]}push(ut,Ve={}){this.controls.push(ut),this._registerControl(ut),this.updateValueAndValidity({emitEvent:Ve.emitEvent}),this._onCollectionChange()}insert(ut,Ve,Dt={}){this.controls.splice(ut,0,Ve),this._registerControl(Ve),this.updateValueAndValidity({emitEvent:Dt.emitEvent})}removeAt(ut,Ve={}){let Dt=this._adjustIndex(ut);Dt<0&&(Dt=0),this.controls[Dt]&&this.controls[Dt]._registerOnCollectionChange(()=>{}),this.controls.splice(Dt,1),this.updateValueAndValidity({emitEvent:Ve.emitEvent})}setControl(ut,Ve,Dt={}){let ai=this._adjustIndex(ut);ai<0&&(ai=0),this.controls[ai]&&this.controls[ai]._registerOnCollectionChange(()=>{}),this.controls.splice(ai,1),Ve&&(this.controls.splice(ai,0,Ve),this._registerControl(Ve)),this.updateValueAndValidity({emitEvent:Dt.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(ut,Ve={}){Lt(this,0,ut),ut.forEach((Dt,ai)=>{at(this,!1,ai),this.at(ai).setValue(Dt,{onlySelf:!0,emitEvent:Ve.emitEvent})}),this.updateValueAndValidity(Ve)}patchValue(ut,Ve={}){null!=ut&&(ut.forEach((Dt,ai)=>{this.at(ai)&&this.at(ai).patchValue(Dt,{onlySelf:!0,emitEvent:Ve.emitEvent})}),this.updateValueAndValidity(Ve))}reset(ut=[],Ve={}){this._forEachChild((Dt,ai)=>{Dt.reset(ut[ai],{onlySelf:!0,emitEvent:Ve.emitEvent})}),this._updatePristine(Ve,this),this._updateTouched(Ve,this),this.updateValueAndValidity(Ve)}getRawValue(){return this.controls.map(ut=>ut.getRawValue())}clear(ut={}){this.controls.length<1||(this._forEachChild(Ve=>Ve._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:ut.emitEvent}))}_adjustIndex(ut){return ut<0?ut+this.length:ut}_syncPendingControls(){let ut=this.controls.reduce((Ve,Dt)=>!!Dt._syncPendingControls()||Ve,!1);return ut&&this.updateValueAndValidity({onlySelf:!0}),ut}_forEachChild(ut){this.controls.forEach((Ve,Dt)=>{ut(Ve,Dt)})}_updateValue(){this.value=this.controls.filter(ut=>ut.enabled||this.disabled).map(ut=>ut.value)}_anyControls(ut){return this.controls.some(Ve=>Ve.enabled&&ut(Ve))}_setUpControls(){this._forEachChild(ut=>this._registerControl(ut))}_allControlsDisabled(){for(const ut of this.controls)if(ut.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(ut){ut.setParent(this),ut._registerOnCollectionChange(this._onCollectionChange)}_find(ut){return this.at(ut)??null}}function Ra(it){return!!it&&(void 0!==it.asyncValidators||void 0!==it.validators||void 0!==it.updateOn)}let ao=(()=>{class it{constructor(){this.useNonNullable=!1}get nonNullable(){const Ve=new it;return Ve.useNonNullable=!0,Ve}group(Ve,Dt=null){const ai=this._reduceControls(Ve);let vn={};return Ra(Dt)?vn=Dt:null!==Dt&&(vn.validators=Dt.validator,vn.asyncValidators=Dt.asyncValidator),new $t(ai,vn)}record(Ve,Dt=null){const ai=this._reduceControls(Ve);return new fi(ai,Dt)}control(Ve,Dt,ai){let vn={};return this.useNonNullable?(Ra(Dt)?vn=Dt:(vn.validators=Dt,vn.asyncValidators=ai),new wn(Ve,{...vn,nonNullable:!0})):new wn(Ve,Dt,ai)}array(Ve,Dt,ai){const vn=Ve.map(er=>this._createControl(er));return new Ji(vn,Dt,ai)}_reduceControls(Ve){const Dt={};return Object.keys(Ve).forEach(ai=>{Dt[ai]=this._createControl(Ve[ai])}),Dt}_createControl(Ve){return Ve instanceof wn||Ve instanceof pi?Ve:Array.isArray(Ve)?this.control(Ve[0],Ve.length>1?Ve[1]:null,Ve.length>2?Ve[2]:null):this.control(Ve)}static{this.\u0275fac=function(Dt){return new(Dt||it)}}static{this.\u0275prov=e.jDH({token:it,factory:it.\u0275fac,providedIn:"root"})}}return it})(),$a=(()=>{class it extends ao{group(Ve,Dt=null){return super.group(Ve,Dt)}control(Ve,Dt,ai){return super.control(Ve,Dt,ai)}array(Ve,Dt,ai){return super.array(Ve,Dt,ai)}static{this.\u0275fac=(()=>{let Ve;return function(ai){return(Ve||(Ve=e.xGo(it)))(ai||it)}})()}static{this.\u0275prov=e.jDH({token:it,factory:it.\u0275fac,providedIn:"root"})}}return it})(),Gr=(()=>{class it{static withConfig(Ve){return{ngModule:it,providers:[{provide:tn,useValue:Ve.callSetDisabledState??Vi}]}}static{this.\u0275fac=function(Dt){return new(Dt||it)}}static{this.\u0275mod=e.$C({type:it})}static{this.\u0275inj=e.G2t({imports:[Ei]})}}return it})(),Pi=(()=>{class it{static withConfig(Ve){return{ngModule:it,providers:[{provide:Or,useValue:Ve.warnOnNgModelWithFormControl??"always"},{provide:tn,useValue:Ve.callSetDisabledState??Vi}]}}static{this.\u0275fac=function(Dt){return new(Dt||it)}}static{this.\u0275mod=e.$C({type:it})}static{this.\u0275inj=e.G2t({imports:[Ei]})}}return it})()},850:(Qe,te,g)=>{"use strict";g.d(te,{$3:()=>_,jL:()=>Xe,pN:()=>ze});var e=g(4438),t=g(6600),x=g(177),D=g(5542),l=g(6969),w=g(8617),f=g(6860),R=g(9969),h=g(8359),S=g(1413),y=g(9030),O=g(7786),I=g(7673),V=g(3726),j=g(7336),Y=g(6939),W=g(9417),Q=g(6467),J=g(9172),ie=g(5558),ee=g(6697),fe=g(5964),ne=g(6354),Me=g(8141),Ce=g(5335),le=g(8203);const T=["panel"],n=["*"];function c(We,oe){if(1&We){const X=e.RV6();e.j41(0,"div",1,0),e.bIt("@panelAnimation.done",function(ae){e.eBV(X);const he=e.XpG();return e.Njj(he._animationDone.next(ae))}),e.SdG(2),e.k0s()}if(2&We){const X=oe.id,se=e.XpG();e.HbH(se._classList),e.AVh("mat-mdc-autocomplete-visible",se.showPanel)("mat-mdc-autocomplete-hidden",!se.showPanel)("mat-primary","primary"===se._color)("mat-accent","accent"===se._color)("mat-warn","warn"===se._color),e.Y8G("id",se.id)("@panelAnimation",se.isOpen?"visible":"hidden"),e.BMQ("aria-label",se.ariaLabel||null)("aria-labelledby",se._getPanelAriaLabelledby(X))}}const m=(0,R.hZ)("panelAnimation",[(0,R.wk)("void, hidden",(0,R.iF)({opacity:0,transform:"scaleY(0.8)"})),(0,R.kY)(":enter, hidden => visible",[(0,R.Os)([(0,R.i0)("0.03s linear",(0,R.iF)({opacity:1})),(0,R.i0)("0.12s cubic-bezier(0, 0, 0.2, 1)",(0,R.iF)({transform:"scaleY(1)"}))])]),(0,R.kY)(":leave, visible => hidden",[(0,R.i0)("0.075s linear",(0,R.iF)({opacity:0}))])]);let d=0;class C{constructor(oe,X){this.source=oe,this.option=X}}const A=new e.nKC("mat-autocomplete-default-options",{providedIn:"root",factory:function k(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1}}});let _=(()=>{class We{get isOpen(){return this._isOpen&&this.showPanel}_setColor(X){this._color=X,this._changeDetectorRef.markForCheck()}set classList(X){this._classList=X,this._elementRef.nativeElement.className=""}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(X){this._hideSingleSelectionIndicator=X,this._syncParentProperties()}_syncParentProperties(){if(this.options)for(const X of this.options)X._changeDetectorRef.markForCheck()}constructor(X,se,ae,he){this._changeDetectorRef=X,this._elementRef=se,this._defaults=ae,this._activeOptionChanges=h.yU.EMPTY,this._animationDone=new e.bkB,this.showPanel=!1,this._isOpen=!1,this.displayWith=null,this.optionSelected=new e.bkB,this.opened=new e.bkB,this.closed=new e.bkB,this.optionActivated=new e.bkB,this.id="mat-autocomplete-"+d++,this.inertGroups=he?.SAFARI||!1,this.autoActiveFirstOption=!!ae.autoActiveFirstOption,this.autoSelectActiveOption=!!ae.autoSelectActiveOption,this.requireSelection=!!ae.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new w.Au(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(X=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[X]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe(),this._animationDone.complete()}_setScrollTop(X){this.panel&&(this.panel.nativeElement.scrollTop=X)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options.length,this._changeDetectorRef.markForCheck()}_emitSelectEvent(X){const se=new C(this,X);this.optionSelected.emit(se)}_getPanelAriaLabelledby(X){return this.ariaLabel?null:this.ariaLabelledby?(X?X+" ":"")+this.ariaLabelledby:X}_skipPredicate(){return!1}static{this.\u0275fac=function(se){return new(se||We)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(A),e.rXU(f.OD))}}static{this.\u0275cmp=e.VBU({type:We,selectors:[["mat-autocomplete"]],contentQueries:function(se,ae,he){if(1&se&&(e.wni(he,t.wT,5),e.wni(he,t.QC,5)),2&se){let Ie;e.mGM(Ie=e.lsd())&&(ae.options=Ie),e.mGM(Ie=e.lsd())&&(ae.optionGroups=Ie)}},viewQuery:function(se,ae){if(1&se&&(e.GBs(e.C4Q,7),e.GBs(T,5)),2&se){let he;e.mGM(he=e.lsd())&&(ae.template=he.first),e.mGM(he=e.lsd())&&(ae.panel=he.first)}},hostAttrs:[1,"mat-mdc-autocomplete"],inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:[2,"autoActiveFirstOption","autoActiveFirstOption",e.L39],autoSelectActiveOption:[2,"autoSelectActiveOption","autoSelectActiveOption",e.L39],requireSelection:[2,"requireSelection","requireSelection",e.L39],panelWidth:"panelWidth",disableRipple:[2,"disableRipple","disableRipple",e.L39],classList:[0,"class","classList"],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",e.L39]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],standalone:!0,features:[e.Jv_([{provide:t.is,useExisting:We}]),e.GFd,e.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[["panel",""],["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id"]],template:function(se,ae){1&se&&(e.NAR(),e.DNE(0,c,3,16,"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:static;border-radius:var(--mat-autocomplete-container-shape);box-shadow:var(--mat-autocomplete-container-elevation-shadow);background-color:var(--mat-autocomplete-background-color)}.cdk-high-contrast-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}mat-autocomplete{display:none}"],encapsulation:2,data:{animation:[m]},changeDetection:0})}}return We})();const b={provide:W.kq,useExisting:(0,e.Rfq)(()=>ze),multi:!0},N=new e.nKC("mat-autocomplete-scroll-strategy",{providedIn:"root",factory:()=>{const We=(0,e.WQX)(l.hJ);return()=>We.scrollStrategies.reposition()}}),pe={provide:N,deps:[l.hJ],useFactory:function q(We){return()=>We.scrollStrategies.reposition()}};let ze=(()=>{class We{constructor(X,se,ae,he,Ie,st,me,Ee,ue,Be,Ct){this._element=X,this._overlay=se,this._viewContainerRef=ae,this._zone=he,this._changeDetectorRef=Ie,this._dir=me,this._formField=Ee,this._document=ue,this._viewportRuler=Be,this._defaults=Ct,this._componentDestroyed=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=h.yU.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new S.B,this._windowBlurHandler=()=>{this._canOpenOnNextFocus=this._document.activeElement!==this._element.nativeElement||this.panelOpen},this._onChange=()=>{},this._onTouched=()=>{},this.position="auto",this.autocompleteAttribute="off",this._aboveClass="mat-mdc-autocomplete-panel-above",this._overlayAttached=!1,this.optionSelections=(0,y.v)(()=>{const ct=this.autocomplete?this.autocomplete.options:null;return ct?ct.changes.pipe((0,J.Z)(ct),(0,ie.n)(()=>(0,O.h)(...ct.map(dt=>dt.onSelectionChange)))):this._zone.onStable.pipe((0,ee.s)(1),(0,ie.n)(()=>this.optionSelections))}),this._handlePanelKeydown=ct=>{(ct.keyCode===j._f&&!(0,j.rp)(ct)||ct.keyCode===j.i7&&(0,j.rp)(ct,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),ct.stopPropagation(),ct.preventDefault())},this._trackedModal=null,this._scrollStrategy=st}ngAfterViewInit(){const X=this._getWindow();typeof X<"u"&&this._zone.runOutsideAngular(()=>X.addEventListener("blur",this._windowBlurHandler))}ngOnChanges(X){X.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){const X=this._getWindow();typeof X<"u"&&X.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}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,w.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id))}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,O.h)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,fe.p)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,fe.p)(()=>this._overlayAttached)):(0,I.of)()).pipe((0,ne.T)(X=>X instanceof t.MI?X:null))}get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return(0,O.h)((0,V.R)(this._document,"click"),(0,V.R)(this._document,"auxclick"),(0,V.R)(this._document,"touchend")).pipe((0,fe.p)(X=>{const se=(0,f.Fb)(X),ae=this._formField?this._formField.getConnectedOverlayOrigin().nativeElement:null,he=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;return this._overlayAttached&&se!==this._element.nativeElement&&this._document.activeElement!==this._element.nativeElement&&(!ae||!ae.contains(se))&&(!he||!he.contains(se))&&!!this._overlayRef&&!this._overlayRef.overlayElement.contains(se)}))}writeValue(X){Promise.resolve(null).then(()=>this._assignOptionValue(X))}registerOnChange(X){this._onChange=X}registerOnTouched(X){this._onTouched=X}setDisabledState(X){this._element.nativeElement.disabled=X}_handleKeydown(X){const se=X.keyCode,ae=(0,j.rp)(X);if(se===j._f&&!ae&&X.preventDefault(),this._valueOnLastKeydown=this._element.nativeElement.value,this.activeOption&&se===j.Fm&&this.panelOpen&&!ae)this.activeOption._selectViaInteraction(),this._resetActiveItem(),X.preventDefault();else if(this.autocomplete){const he=this.autocomplete._keyManager.activeItem,Ie=se===j.i7||se===j.n6;se===j.wn||Ie&&!ae&&this.panelOpen?this.autocomplete._keyManager.onKeydown(X):Ie&&this._canOpen()&&this._openPanelInternal(this._valueOnLastKeydown),(Ie||this.autocomplete._keyManager.activeItem!==he)&&(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(X){let se=X.target,ae=se.value;if("number"===se.type&&(ae=""==ae?null:parseFloat(ae)),this._previousValue!==ae){if(this._previousValue=ae,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(ae),ae){if(this.panelOpen&&!this.autocomplete.requireSelection){const he=this.autocomplete.options?.find(Ie=>Ie.selected);he&&ae!==this._getDisplayValue(he.value)&&he.deselect(!1)}}else this._clearPreviousSelectedOption(null,!1);if(this._canOpen()&&this._document.activeElement===X.target){const he=this._valueOnLastKeydown??this._element.nativeElement.value;this._valueOnLastKeydown=null,this._openPanelInternal(he)}}}_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()}_floatLabel(X=!1){this._formField&&"auto"===this._formField.floatLabel&&(X?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const X=this._zone.onStable.pipe((0,ee.s)(1)),se=this.autocomplete.options.changes.pipe((0,Me.M)(()=>this._positionStrategy.reapplyLastPosition()),(0,Ce.c)(0));return(0,O.h)(X,se).pipe((0,ie.n)(()=>(this._zone.run(()=>{const ae=this.panelOpen;this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),ae!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit())}),this.panelClosingActions)),(0,ee.s)(1)).subscribe(ae=>this._setValueAndClose(ae))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_getDisplayValue(X){const se=this.autocomplete;return se&&se.displayWith?se.displayWith(X):X}_assignOptionValue(X){const se=this._getDisplayValue(X);null==X&&this._clearPreviousSelectedOption(null,!1),this._updateNativeInputValue(se??"")}_updateNativeInputValue(X){this._formField?this._formField._control.value=X:this._element.nativeElement.value=X,this._previousValue=X}_setValueAndClose(X){const se=this.autocomplete,ae=X?X.source:this._pendingAutoselectedOption;ae?(this._clearPreviousSelectedOption(ae),this._assignOptionValue(ae.value),this._onChange(ae.value),se._emitSelectEvent(ae),this._element.nativeElement.focus()):se.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),se._animationDone?se._animationDone.pipe((0,ee.s)(1)).subscribe(()=>this._onChange(null)):this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(X,se){this.autocomplete?.options?.forEach(ae=>{ae!==X&&ae.selected&&ae.deselect(se)})}_openPanelInternal(X=this._element.nativeElement.value){this._attachOverlay(X),this._floatLabel(),this._trackedModal&&(0,w.px)(this._trackedModal,"aria-owns",this.autocomplete.id)}_attachOverlay(X){let se=this._overlayRef;se?(this._positionStrategy.setOrigin(this._getConnectedElement()),se.updateSize({width:this._getPanelWidth()})):(this._portal=new Y.VA(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),se=this._overlay.create(this._getOverlayConfig()),this._overlayRef=se,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&se&&se.updateSize({width:this._getPanelWidth()})})),se&&!se.hasAttached()&&(se.attach(this._portal),this._valueOnAttach=X,this._valueOnLastKeydown=null,this._closingActionsSubscription=this._subscribeToClosingActions());const ae=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._latestOpeningTrigger=this,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&ae!==this.panelOpen&&this._emitOpened()}_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const X=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=X.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=X.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new l.rR({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,panelClass:this._defaults?.overlayPanelClass})}_getOverlayPosition(){const X=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(X),this._positionStrategy=X,X}_setStrategyPositions(X){const se=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],ae=this._aboveClass,he=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:ae},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:ae}];let Ie;Ie="above"===this.position?he:"below"===this.position?se:[...se,...he],X.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 X=this.autocomplete;if(X.autoActiveFirstOption){let se=-1;for(let ae=0;ae .cdk-overlay-container [aria-modal="true"]');if(!X)return;const se=this.autocomplete.id;this._trackedModal&&(0,w.Ae)(this._trackedModal,"aria-owns",se),(0,w.px)(X,"aria-owns",se),this._trackedModal=X}_clearFromModal(){this._trackedModal&&((0,w.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static{this.\u0275fac=function(se){return new(se||We)(e.rXU(e.aKT),e.rXU(l.hJ),e.rXU(e.c1b),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(N),e.rXU(le.dS,8),e.rXU(Q.xb,9),e.rXU(x.qQ,8),e.rXU(D.Xj),e.rXU(A,8))}}static{this.\u0275dir=e.FsC({type:We,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(se,ae){1&se&&e.bIt("focusin",function(){return ae._handleFocus()})("blur",function(){return ae._onTouched()})("input",function(Ie){return ae._handleInput(Ie)})("keydown",function(Ie){return ae._handleKeydown(Ie)})("click",function(){return ae._handleClick()}),2&se&&e.BMQ("autocomplete",ae.autocompleteAttribute)("role",ae.autocompleteDisabled?null:"combobox")("aria-autocomplete",ae.autocompleteDisabled?null:"list")("aria-activedescendant",ae.panelOpen&&ae.activeOption?ae.activeOption.id:null)("aria-expanded",ae.autocompleteDisabled?null:ae.panelOpen.toString())("aria-controls",ae.autocompleteDisabled||!ae.panelOpen||null==ae.autocomplete?null:ae.autocomplete.id)("aria-haspopup",ae.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:[0,"matAutocomplete","autocomplete"],position:[0,"matAutocompletePosition","position"],connectedTo:[0,"matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:[0,"autocomplete","autocompleteAttribute"],autocompleteDisabled:[2,"matAutocompleteDisabled","autocompleteDisabled",e.L39]},exportAs:["matAutocompleteTrigger"],standalone:!0,features:[e.Jv_([b]),e.GFd,e.OA$]})}}return We})(),Xe=(()=>{class We{static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275mod=e.$C({type:We})}static{this.\u0275inj=e.G2t({providers:[pe],imports:[l.z_,t.Sy,t.yE,x.MD,D.Gj,t.Sy,t.yE]})}}return We})()},1975:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>S,k:()=>h});var e=g(4438),t=g(6600),x=g(8617),D=g(177);let l=0;const w="mat-badge-content",f=new Set;let R=(()=>{class y{static{this.\u0275fac=function(V){return new(V||y)}}static{this.\u0275cmp=e.VBU({type:y,selectors:[["ng-component"]],standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(V,j){},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);color:var(--mat-badge-text-color);font-family:var(--mat-badge-text-font);font-weight:var(--mat-badge-text-weight);border-radius:var(--mat-badge-container-shape)}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.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%}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color);color:var(--mat-badge-disabled-state-text-color)}.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, unset);min-height:var(--mat-badge-small-size-container-size, unset);line-height:var(--mat-badge-legacy-small-size-container-size, var(--mat-badge-small-size-container-size));padding:var(--mat-badge-small-size-container-padding);font-size:var(--mat-badge-small-size-text-size);margin:var(--mat-badge-small-size-container-offset)}.mat-badge-small.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-small-size-container-overlap-offset)}.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, unset);min-height:var(--mat-badge-container-size, unset);line-height:var(--mat-badge-legacy-container-size, var(--mat-badge-container-size));padding:var(--mat-badge-container-padding);font-size:var(--mat-badge-text-size);margin:var(--mat-badge-container-offset)}.mat-badge-medium.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-container-overlap-offset)}.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, unset);min-height:var(--mat-badge-large-size-container-size, unset);line-height:var(--mat-badge-legacy-large-size-container-size, var(--mat-badge-large-size-container-size));padding:var(--mat-badge-large-size-container-padding);font-size:var(--mat-badge-large-size-text-size);margin:var(--mat-badge-large-size-container-offset)}.mat-badge-large.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-large-size-container-overlap-offset)}"],encapsulation:2,changeDetection:0})}}return y})(),h=(()=>{class y{get color(){return this._color}set color(I){this._setColor(I),this._color=I}get content(){return this._content}set content(I){this._updateRenderedContent(I)}get description(){return this._description}set description(I){this._updateDescription(I)}constructor(I,V,j,Y,W){this._ngZone=I,this._elementRef=V,this._ariaDescriber=j,this._renderer=Y,this._animationMode=W,this._color="primary",this.overlap=!0,this.position="above after",this.size="medium",this._id=l++,this._isInitialized=!1,this._interactivityChecker=(0,e.WQX)(x.Z7),this._document=(0,e.WQX)(D.qQ);const Q=(0,e.WQX)(e.o8S);if(!f.has(Q)){f.add(Q);const J=(0,e.a0P)(R,{environmentInjector:(0,e.WQX)(e.uvJ)});Q.onDestroy(()=>{f.delete(Q),0===f.size&&J.destroy()})}}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 I=this._renderer.createElement("span"),V="mat-badge-active";return I.setAttribute("id",`mat-badge-content-${this._id}`),I.setAttribute("aria-hidden","true"),I.classList.add(w),"NoopAnimations"===this._animationMode&&I.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(I),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{I.classList.add(V)})}):I.classList.add(V),I}_updateRenderedContent(I){const V=`${I??""}`.trim();this._isInitialized&&V&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=V),this._content=V}_updateDescription(I){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!I||this._isHostInteractive())&&this._removeInlineDescription(),this._description=I,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,I):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(I){const V=this._elementRef.nativeElement.classList;V.remove(`mat-badge-${this._color}`),I&&V.add(`mat-badge-${I}`)}_clearExistingBadges(){const I=this._elementRef.nativeElement.querySelectorAll(`:scope > .${w}`);for(const V of Array.from(I))V!==this._badgeElement&&V.remove()}static{this.\u0275fac=function(V){return new(V||y)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(x.vr),e.rXU(e.sFG),e.rXU(e.bc$,8))}}static{this.\u0275dir=e.FsC({type:y,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(V,j){2&V&&e.AVh("mat-badge-overlap",j.overlap)("mat-badge-above",j.isAbove())("mat-badge-below",!j.isAbove())("mat-badge-before",!j.isAfter())("mat-badge-after",j.isAfter())("mat-badge-small","small"===j.size)("mat-badge-medium","medium"===j.size)("mat-badge-large","large"===j.size)("mat-badge-hidden",j.hidden||!j.content)("mat-badge-disabled",j.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]},standalone:!0,features:[e.GFd]})}}return y})(),S=(()=>{class y{static{this.\u0275fac=function(V){return new(V||y)}}static{this.\u0275mod=e.$C({type:y})}static{this.\u0275inj=e.G2t({imports:[x.Pd,t.yE,t.yE]})}}return y})()},8834:(Qe,te,g)=>{"use strict";g.d(te,{$0:()=>n,$z:()=>fe,Hl:()=>A,iY:()=>d});var e=g(6860),t=g(4438),x=g(8617),D=g(6600);const l=["mat-button",""],w=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],f=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],y=["mat-mini-fab",""],I=["mat-icon-button",""],V=["*"],Y=new t.nKC("MAT_BUTTON_CONFIG"),Q=[{attribute:"mat-button",mdcClasses:["mdc-button","mat-mdc-button"]},{attribute:"mat-flat-button",mdcClasses:["mdc-button","mdc-button--unelevated","mat-mdc-unelevated-button"]},{attribute:"mat-raised-button",mdcClasses:["mdc-button","mdc-button--raised","mat-mdc-raised-button"]},{attribute:"mat-stroked-button",mdcClasses:["mdc-button","mdc-button--outlined","mat-mdc-outlined-button"]},{attribute:"mat-fab",mdcClasses:["mdc-fab","mat-mdc-fab"]},{attribute:"mat-mini-fab",mdcClasses:["mdc-fab","mdc-fab--mini","mat-mdc-mini-fab"]},{attribute:"mat-icon-button",mdcClasses:["mdc-icon-button","mat-mdc-icon-button"]}];let J=(()=>{class k{get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(a){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,a)}get disableRipple(){return this._disableRipple}set disableRipple(a){this._disableRipple=a,this._updateRippleDisabled()}get disabled(){return this._disabled}set disabled(a){this._disabled=a,this._updateRippleDisabled()}constructor(a,b,z,N){this._elementRef=a,this._platform=b,this._ngZone=z,this._animationMode=N,this._focusMonitor=(0,t.WQX)(x.FN),this._rippleLoader=(0,t.WQX)(D.Ej),this._isFab=!1,this._disableRipple=!1,this._disabled=!1;const q=(0,t.WQX)(Y,{optional:!0}),pe=a.nativeElement,ze=pe.classList;this.disabledInteractive=q?.disabledInteractive??!1,this._rippleLoader?.configureRipple(pe,{className:"mat-mdc-button-ripple"});for(const{attribute:Xe,mdcClasses:We}of Q)pe.hasAttribute(Xe)&&ze.add(...We)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(a="program",b){a?this._focusMonitor.focusVia(this._elementRef.nativeElement,a,b):this._elementRef.nativeElement.focus(b)}_getAriaDisabled(){return null!=this.ariaDisabled?this.ariaDisabled:!(!this.disabled||!this.disabledInteractive)||null}_getDisabledAttribute(){return!(this.disabledInteractive||!this.disabled)||null}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}static{this.\u0275fac=function(b){t.QTQ()}}static{this.\u0275dir=t.FsC({type:k,inputs:{color:"color",disableRipple:[2,"disableRipple","disableRipple",t.L39],disabled:[2,"disabled","disabled",t.L39],ariaDisabled:[2,"aria-disabled","ariaDisabled",t.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",t.L39]},features:[t.GFd]})}}return k})(),fe=(()=>{class k extends J{constructor(a,b,z,N){super(a,b,z,N)}static{this.\u0275fac=function(b){return new(b||k)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))}}static{this.\u0275cmp=t.VBU({type:k,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""]],hostVars:14,hostBindings:function(b,z){2&b&&(t.BMQ("disabled",z._getDisabledAttribute())("aria-disabled",z._getAriaDisabled()),t.HbH(z.color?"mat-"+z.color:""),t.AVh("mat-mdc-button-disabled",z.disabled)("mat-mdc-button-disabled-interactive",z.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===z._animationMode)("mat-unthemed",!z.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:l,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(b,z){1&b&&(t.NAR(w),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&b&&t.AVh("mdc-button__ripple",!z._isFab)("mdc-fab__ripple",z._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button{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;user-select:none;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0)}.mdc-button .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.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__icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top}[dir=rtl] .mdc-button .mdc-button__icon,.mdc-button .mdc-button__icon[dir=rtl]{margin-left:8px;margin-right:0}.mdc-button .mdc-button__progress-indicator{font-size:0;position:absolute;transform:translate(-50%, -50%);top:50%;left:50%;line-height:initial}.mdc-button .mdc-button__label{position:relative}.mdc-button .mdc-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px);display:none}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring{border-color:CanvasText}}.mdc-button .mdc-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring::after{border-color:CanvasText}}@media screen and (forced-colors: active){.mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__focus-ring,.mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__focus-ring{display:block}}.mdc-button .mdc-button__touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-button__label+.mdc-button__icon{margin-left:8px;margin-right:0}[dir=rtl] .mdc-button__label+.mdc-button__icon,.mdc-button__label+.mdc-button__icon[dir=rtl]{margin-left:0;margin-right:8px}svg.mdc-button__icon{fill:currentColor}.mdc-button--touch{margin-top:6px;margin-bottom:6px}.mdc-button{padding:0 8px 0 8px}.mdc-button--unelevated{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--unelevated.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--unelevated.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--raised{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--raised.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--raised.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--outlined{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button--outlined .mdc-button__ripple{border-style:solid;border-color:rgba(0,0,0,0)}.mat-mdc-button{font-family:var(--mdc-text-button-label-text-font);font-size:var(--mdc-text-button-label-text-size);letter-spacing:var(--mdc-text-button-label-text-tracking);font-weight:var(--mdc-text-button-label-text-weight);text-transform:var(--mdc-text-button-label-text-transform);height:var(--mdc-text-button-container-height);border-radius:var(--mdc-text-button-container-shape);padding:0 var(--mat-text-button-horizontal-padding, 8px)}.mat-mdc-button:not(:disabled){color:var(--mdc-text-button-label-text-color)}.mat-mdc-button:disabled{color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button .mdc-button__ripple{border-radius:var(--mdc-text-button-container-shape)}.mat-mdc-button:has(.material-icons,mat-icon,[matButtonIcon]){padding:0 var(--mat-text-button-with-icon-horizontal-padding, 8px)}.mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}[dir=rtl] .mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}.mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-text-button-ripple-color)}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-state-layer-color)}.mat-mdc-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-disabled-state-layer-color)}.mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-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-text-button-focus-state-layer-opacity)}.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-pressed-state-layer-opacity)}.mat-mdc-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-text-button-touch-target-display)}.mat-mdc-button[disabled],.mat-mdc-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-unelevated-button{font-family:var(--mdc-filled-button-label-text-font);font-size:var(--mdc-filled-button-label-text-size);letter-spacing:var(--mdc-filled-button-label-text-tracking);font-weight:var(--mdc-filled-button-label-text-weight);text-transform:var(--mdc-filled-button-label-text-transform);height:var(--mdc-filled-button-container-height);border-radius:var(--mdc-filled-button-container-shape);padding:0 var(--mat-filled-button-horizontal-padding, 16px)}.mat-mdc-unelevated-button:not(:disabled){background-color:var(--mdc-filled-button-container-color)}.mat-mdc-unelevated-button:disabled{background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mdc-filled-button-label-text-color)}.mat-mdc-unelevated-button:disabled{color:var(--mdc-filled-button-disabled-label-text-color)}.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mdc-filled-button-container-shape)}.mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-filled-button-ripple-color)}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-state-layer-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-disabled-state-layer-color)}.mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-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-filled-button-focus-state-layer-opacity)}.mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-pressed-state-layer-opacity)}.mat-mdc-unelevated-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-filled-button-touch-target-display)}.mat-mdc-unelevated-button[disabled],.mat-mdc-unelevated-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-filled-button-disabled-label-text-color);background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-raised-button{font-family:var(--mdc-protected-button-label-text-font);font-size:var(--mdc-protected-button-label-text-size);letter-spacing:var(--mdc-protected-button-label-text-tracking);font-weight:var(--mdc-protected-button-label-text-weight);text-transform:var(--mdc-protected-button-label-text-transform);height:var(--mdc-protected-button-container-height);border-radius:var(--mdc-protected-button-container-shape);padding:0 var(--mat-protected-button-horizontal-padding, 16px);box-shadow:var(--mdc-protected-button-container-elevation-shadow)}.mat-mdc-raised-button:not(:disabled){background-color:var(--mdc-protected-button-container-color)}.mat-mdc-raised-button:disabled{background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button:not(:disabled){color:var(--mdc-protected-button-label-text-color)}.mat-mdc-raised-button:disabled{color:var(--mdc-protected-button-disabled-label-text-color)}.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mdc-protected-button-container-shape)}.mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}.mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-protected-button-ripple-color)}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-state-layer-color)}.mat-mdc-raised-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-disabled-state-layer-color)}.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-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-protected-button-focus-state-layer-opacity)}.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-pressed-state-layer-opacity)}.mat-mdc-raised-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-protected-button-touch-target-display)}.mat-mdc-raised-button:hover{box-shadow:var(--mdc-protected-button-hover-container-elevation-shadow)}.mat-mdc-raised-button:focus{box-shadow:var(--mdc-protected-button-focus-container-elevation-shadow)}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:var(--mdc-protected-button-pressed-container-elevation-shadow)}.mat-mdc-raised-button[disabled],.mat-mdc-raised-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-protected-button-disabled-label-text-color);background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button[disabled].mat-mdc-button-disabled,.mat-mdc-raised-button.mat-mdc-button-disabled.mat-mdc-button-disabled{box-shadow:var(--mdc-protected-button-disabled-container-elevation-shadow)}.mat-mdc-raised-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-outlined-button{font-family:var(--mdc-outlined-button-label-text-font);font-size:var(--mdc-outlined-button-label-text-size);letter-spacing:var(--mdc-outlined-button-label-text-tracking);font-weight:var(--mdc-outlined-button-label-text-weight);text-transform:var(--mdc-outlined-button-label-text-transform);height:var(--mdc-outlined-button-container-height);border-radius:var(--mdc-outlined-button-container-shape);padding:0 15px 0 15px;border-width:var(--mdc-outlined-button-outline-width);padding:0 var(--mat-outlined-button-horizontal-padding, 15px)}.mat-mdc-outlined-button:not(:disabled){color:var(--mdc-outlined-button-label-text-color)}.mat-mdc-outlined-button:disabled{color:var(--mdc-outlined-button-disabled-label-text-color)}.mat-mdc-outlined-button .mdc-button__ripple{border-radius:var(--mdc-outlined-button-container-shape)}.mat-mdc-outlined-button:not(:disabled){border-color:var(--mdc-outlined-button-outline-color)}.mat-mdc-outlined-button:disabled{border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mdc-button--icon-trailing{padding:0 11px 0 15px}.mat-mdc-outlined-button.mdc-button--icon-leading{padding:0 15px 0 11px}.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:var(--mdc-outlined-button-outline-width)}.mat-mdc-outlined-button .mdc-button__touch{left:calc(-1 * var(--mdc-outlined-button-outline-width));width:calc(100% + 2 * var(--mdc-outlined-button-outline-width))}.mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-outlined-button-ripple-color)}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-state-layer-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-disabled-state-layer-color)}.mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-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-outlined-button-focus-state-layer-opacity)}.mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-pressed-state-layer-opacity)}.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-outlined-button-touch-target-display)}.mat-mdc-outlined-button[disabled],.mat-mdc-outlined-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-outlined-button-disabled-label-text-color);border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-button-base{text-decoration:none}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-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{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{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{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-outlined-button .mdc-button__label{z-index:1}.mat-mdc-button .mat-mdc-focus-indicator,.mat-mdc-unelevated-button .mat-mdc-focus-indicator,.mat-mdc-raised-button .mat-mdc-focus-indicator,.mat-mdc-outlined-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-unelevated-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-raised-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-outlined-button:focus .mat-mdc-focus-indicator::before{content:""}.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{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{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;border-width:-1px}.mat-mdc-unelevated-button .mat-mdc-focus-indicator::before,.mat-mdc-raised-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 3px)*-1)}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}}return k})();const Me=new t.nKC("mat-mdc-fab-default-options",{providedIn:"root",factory:Ce});function Ce(){return{color:"accent"}}const le=Ce();let n=(()=>{class k extends J{constructor(a,b,z,N,q){super(a,b,z,N),this._options=q,this._isFab=!0,this._options=this._options||le,this.color=this._options.color||le.color}static{this.\u0275fac=function(b){return new(b||k)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8),t.rXU(Me,8))}}static{this.\u0275cmp=t.VBU({type:k,selectors:[["button","mat-mini-fab",""]],hostVars:14,hostBindings:function(b,z){2&b&&(t.BMQ("disabled",z._getDisabledAttribute())("aria-disabled",z._getAriaDisabled()),t.HbH(z.color?"mat-"+z.color:""),t.AVh("mat-mdc-button-disabled",z.disabled)("mat-mdc-button-disabled-interactive",z.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===z._animationMode)("mat-unthemed",!z.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:y,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(b,z){1&b&&(t.NAR(w),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&b&&t.AVh("mdc-button__ripple",!z._isFab)("mdc-fab__ripple",z._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-fab{position:relative;display:inline-flex;position:relative;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;user-select:none;-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)}.mdc-fab .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-fab[hidden]{display:none}.mdc-fab::-moz-focus-inner{padding:0;border:0}.mdc-fab .mdc-fab__focus-ring{position:absolute}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{border-color:CanvasText}}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{border-color:CanvasText}}.mdc-fab:active,.mdc-fab:focus{outline:none}.mdc-fab:hover{cursor:pointer}.mdc-fab>svg{width:100%}.mdc-fab--mini{width:40px;height:40px}.mdc-fab--extended{border-radius:24px;padding-left:20px;padding-right:20px;width:auto;max-width:100%;height:48px;line-height:normal}.mdc-fab--extended .mdc-fab__ripple{border-radius:24px}.mdc-fab--extended .mdc-fab__icon{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mdc-fab--extended .mdc-fab__icon,.mdc-fab--extended .mdc-fab__icon[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mdc-fab--extended .mdc-fab__label+.mdc-fab__icon,.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}.mdc-fab--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-fab--touch .mdc-fab__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mdc-fab::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}@media screen and (forced-colors: active){.mdc-fab::before{border-color:CanvasText}}.mdc-fab__label{justify-content:flex-start;text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden;overflow-y:visible}.mdc-fab__icon{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mdc-fab .mdc-fab__icon{display:inline-flex;align-items:center;justify-content:center}.mdc-fab--exited{transform:scale(0);opacity:0;transition:opacity 15ms linear 150ms,transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-fab--exited .mdc-fab__icon{transform:scale(0);transition:transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-fab{background-color:var(--mdc-fab-container-color)}.mat-mdc-fab .mdc-fab__icon{width:var(--mdc-fab-icon-size);height:var(--mdc-fab-icon-size);font-size:var(--mdc-fab-icon-size)}.mat-mdc-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-container-shape)}.mat-mdc-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-container-shape)}.mat-mdc-mini-fab{background-color:var(--mdc-fab-small-container-color)}.mat-mdc-mini-fab .mdc-fab__icon{width:var(--mdc-fab-small-icon-size);height:var(--mdc-fab-small-icon-size);font-size:var(--mdc-fab-small-icon-size)}.mat-mdc-mini-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-mini-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-extended-fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mdc-extended-fab-container-height);border-radius:var(--mdc-extended-fab-container-shape);font-family:var(--mdc-extended-fab-label-text-font);font-size:var(--mdc-extended-fab-label-text-size);font-weight:var(--mdc-extended-fab-label-text-weight);letter-spacing:var(--mdc-extended-fab-label-text-tracking)}.mat-mdc-extended-fab .mdc-fab__ripple{border-radius:var(--mdc-extended-fab-container-shape)}.mat-mdc-fab,.mat-mdc-mini-fab{-webkit-tap-highlight-color:rgba(0,0,0,0);flex-shrink:0}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple,.mat-mdc-mini-fab .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 .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab .mdc-button__label,.mat-mdc-mini-fab .mdc-button__label{z-index:1}.mat-mdc-fab .mat-mdc-focus-indicator,.mat-mdc-mini-fab .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab:focus .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-fab._mat-animation-noopable,.mat-mdc-mini-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-mini-fab:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}.mat-mdc-fab .mat-icon,.mat-mdc-fab .material-icons,.mat-mdc-mini-fab .mat-icon,.mat-mdc-mini-fab .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-fab[disabled],.mat-mdc-fab[disabled]:focus,.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-fab.mat-mdc-button-disabled:focus,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab[disabled]:focus,.mat-mdc-mini-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-fab.mat-mdc-button-disabled-interactive,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab{color:var(--mat-fab-foreground-color, inherit);box-shadow:var(--mdc-fab-container-elevation-shadow)}.mat-mdc-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-touch-target-display)}.mat-mdc-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color)}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color)}.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)}.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)}.mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity)}.mat-mdc-fab:hover{box-shadow:var(--mdc-fab-hover-container-elevation-shadow)}.mat-mdc-fab:focus{box-shadow:var(--mdc-fab-focus-container-elevation-shadow)}.mat-mdc-fab:active,.mat-mdc-fab:focus:active{box-shadow:var(--mdc-fab-pressed-container-elevation-shadow)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-disabled-state-foreground-color);background-color:var(--mat-fab-disabled-state-container-color)}.mat-mdc-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-mini-fab{color:var(--mat-fab-small-foreground-color, inherit);box-shadow:var(--mdc-fab-small-container-elevation-shadow)}.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-small-touch-target-display)}.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-small-ripple-color)}.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-state-layer-color)}.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)}.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)}.mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-pressed-state-layer-opacity)}.mat-mdc-mini-fab:hover{box-shadow:var(--mdc-fab-small-hover-container-elevation-shadow)}.mat-mdc-mini-fab:focus{box-shadow:var(--mdc-fab-small-focus-container-elevation-shadow)}.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:var(--mdc-fab-small-pressed-container-elevation-shadow)}.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);background-color:var(--mat-fab-small-disabled-state-container-color)}.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-extended-fab{box-shadow:var(--mdc-extended-fab-container-elevation-shadow)}.mat-mdc-extended-fab:hover{box-shadow:var(--mdc-extended-fab-hover-container-elevation-shadow)}.mat-mdc-extended-fab:focus{box-shadow:var(--mdc-extended-fab-focus-container-elevation-shadow)}.mat-mdc-extended-fab:active,.mat-mdc-extended-fab:focus:active{box-shadow:var(--mdc-extended-fab-pressed-container-elevation-shadow)}.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}.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons,.mat-mdc-extended-fab>.mat-icon[dir=rtl],.mat-mdc-extended-fab>.material-icons[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons{margin-left:12px;margin-right:calc(12px - 20px)}[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 .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-extended-fab .mdc-button__label+.material-icons[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}'],encapsulation:2,changeDetection:0})}}return k})(),d=(()=>{class k extends J{constructor(a,b,z,N){super(a,b,z,N),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static{this.\u0275fac=function(b){return new(b||k)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))}}static{this.\u0275cmp=t.VBU({type:k,selectors:[["button","mat-icon-button",""]],hostVars:14,hostBindings:function(b,z){2&b&&(t.BMQ("disabled",z._getDisabledAttribute())("aria-disabled",z._getAriaDisabled()),t.HbH(z.color?"mat-"+z.color:""),t.AVh("mat-mdc-button-disabled",z.disabled)("mat-mdc-button-disabled-interactive",z.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===z._animationMode)("mat-unthemed",!z.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:I,ngContentSelectors:V,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(b,z){1&b&&(t.NAR(),t.nrm(0,"span",0),t.SdG(1),t.nrm(2,"span",1)(3,"span",2))},styles:['.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}@media screen and (forced-colors: active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{display:block}}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button[hidden]{display:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;display:none}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring{border-color:CanvasText}}.mdc-icon-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring::after{border-color:CanvasText}}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.mat-mdc-icon-button{color:var(--mdc-icon-button-icon-color)}.mat-mdc-icon-button .mdc-button__icon{font-size:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button svg,.mat-mdc-icon-button img{width:var(--mdc-icon-button-icon-size);height:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button:disabled{color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button{border-radius:50%;flex-shrink:0;text-align:center;width:var(--mdc-icon-button-state-layer-size, 48px);height:var(--mdc-icon-button-state-layer-size, 48px);padding:calc(calc(var(--mdc-icon-button-state-layer-size, 48px) - var(--mdc-icon-button-icon-size, 24px)) / 2);font-size:var(--mdc-icon-button-icon-size);-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button svg{vertical-align:baseline}.mat-mdc-icon-button[disabled],.mat-mdc-icon-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.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{z-index:1}.mat-mdc-icon-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-icon-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color)}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color)}.mat-mdc-icon-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-disabled-state-layer-color)}.mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-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)}.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity)}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-icon-button-touch-target-display)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:50%}.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}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}}return k})(),A=(()=>{class k{static{this.\u0275fac=function(b){return new(b||k)}}static{this.\u0275mod=t.$C({type:k})}static{this.\u0275inj=t.G2t({imports:[D.yE,D.pZ,D.yE]})}}return k})()},5596:(Qe,te,g)=>{"use strict";g.d(te,{Hu:()=>Ce,Lc:()=>V,MM:()=>Y,RN:()=>S,dh:()=>y,m2:()=>I});var e=g(4438),t=g(177),x=g(6600);const D=["*"],f=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],R=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],h=new e.nKC("MAT_CARD_CONFIG");let S=(()=>{class le{constructor(n){this.appearance=n?.appearance||"raised"}static{this.\u0275fac=function(c){return new(c||le)(e.rXU(h,8))}}static{this.\u0275cmp=e.VBU({type:le,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:4,hostBindings:function(c,m){2&c&&e.AVh("mat-mdc-card-outlined","outlined"===m.appearance)("mdc-card--outlined","outlined"===m.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],standalone:!0,features:[e.aNF],ngContentSelectors:D,decls:1,vars:0,template:function(c,m){1&c&&(e.NAR(),e.SdG(0))},styles:['.mdc-card{display:flex;flex-direction:column;box-sizing:border-box}.mdc-card::after{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;pointer-events:none}@media screen and (forced-colors: active){.mdc-card::after{border-color:CanvasText}}.mdc-card--outlined::after{border:none}.mdc-card__content{border-radius:inherit;height:100%}.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}.mdc-card__media--square::before{margin-top:100%}.mdc-card__media--16-9::before{margin-top:56.25%}.mdc-card__media-content{position:absolute;top:0;right:0;bottom:0;left:0;box-sizing:border-box}.mdc-card__primary-action{display:flex;flex-direction:column;box-sizing:border-box;position:relative;outline:none;color:inherit;text-decoration:none;cursor:pointer;overflow:hidden}.mdc-card__primary-action:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__primary-action:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mdc-card__actions--full-bleed{padding:0}.mdc-card__action-buttons,.mdc-card__action-icons{display:flex;flex-direction:row;align-items:center;box-sizing:border-box}.mdc-card__action-icons{color:rgba(0, 0, 0, 0.6);flex-grow:1;justify-content:flex-end}.mdc-card__action-buttons+.mdc-card__action-icons{margin-left:16px;margin-right:0}[dir=rtl] .mdc-card__action-buttons+.mdc-card__action-icons,.mdc-card__action-buttons+.mdc-card__action-icons[dir=rtl]{margin-left:0;margin-right:16px}.mdc-card__action{display:inline-flex;flex-direction:row;align-items:center;box-sizing:border-box;justify-content:center;cursor:pointer;user-select:none}.mdc-card__action:focus{outline:none}.mdc-card__action--button{margin-left:0;margin-right:8px;padding:0 8px}[dir=rtl] .mdc-card__action--button,.mdc-card__action--button[dir=rtl]{margin-left:8px;margin-right:0}.mdc-card__action--button:last-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-card__action--button:last-child,.mdc-card__action--button:last-child[dir=rtl]{margin-left:0;margin-right:0}.mdc-card__actions--full-bleed .mdc-card__action--button{justify-content:space-between;width:100%;height:auto;max-height:none;margin:0;padding:8px 16px;text-align:left}[dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button,.mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl]{text-align:right}.mdc-card__action--icon{margin:-6px 0;padding:12px}.mdc-card__action--icon:not(:disabled){color:rgba(0, 0, 0, 0.6)}.mat-mdc-card{border-radius:var(--mdc-elevated-card-container-shape);background-color:var(--mdc-elevated-card-container-color);border-width:0;border-style:solid;border-color:var(--mdc-elevated-card-container-color);box-shadow:var(--mdc-elevated-card-container-elevation)}.mat-mdc-card .mdc-card::after{border-radius:var(--mdc-elevated-card-container-shape)}.mat-mdc-card-outlined{border-width:var(--mdc-outlined-card-outline-width);border-style:solid;border-color:var(--mdc-outlined-card-outline-color);border-radius:var(--mdc-outlined-card-container-shape);background-color:var(--mdc-outlined-card-container-color);box-shadow:var(--mdc-outlined-card-container-elevation)}.mat-mdc-card-outlined .mdc-card::after{border-radius:var(--mdc-outlined-card-container-shape)}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font);line-height:var(--mat-card-title-text-line-height);font-size:var(--mat-card-title-text-size);letter-spacing:var(--mat-card-title-text-tracking);font-weight:var(--mat-card-title-text-weight)}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color);font-family:var(--mat-card-subtitle-text-font);line-height:var(--mat-card-subtitle-text-line-height);font-size:var(--mat-card-subtitle-text-size);letter-spacing:var(--mat-card-subtitle-text-tracking);font-weight:var(--mat-card-subtitle-text-weight)}.mat-mdc-card{position:relative}.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}'],encapsulation:2,changeDetection:0})}}return le})(),y=(()=>{class le{static{this.\u0275fac=function(c){return new(c||le)}}static{this.\u0275dir=e.FsC({type:le,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"],standalone:!0})}}return le})(),I=(()=>{class le{static{this.\u0275fac=function(c){return new(c||le)}}static{this.\u0275dir=e.FsC({type:le,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"],standalone:!0})}}return le})(),V=(()=>{class le{static{this.\u0275fac=function(c){return new(c||le)}}static{this.\u0275dir=e.FsC({type:le,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"],standalone:!0})}}return le})(),Y=(()=>{class le{static{this.\u0275fac=function(c){return new(c||le)}}static{this.\u0275cmp=e.VBU({type:le,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],standalone:!0,features:[e.aNF],ngContentSelectors:R,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(c,m){1&c&&(e.NAR(f),e.SdG(0),e.j41(1,"div",0),e.SdG(2,1),e.k0s(),e.SdG(3,2))},encapsulation:2,changeDetection:0})}}return le})(),Ce=(()=>{class le{static{this.\u0275fac=function(c){return new(c||le)}}static{this.\u0275mod=e.$C({type:le})}static{this.\u0275inj=e.G2t({imports:[x.yE,t.MD,x.yE]})}}return le})()},2765:(Qe,te,g)=>{"use strict";g.d(te,{So:()=>V,g7:()=>Q});var e=g(4438),t=g(9417),x=g(6600);const D=["input"],l=["label"],w=["*"],f=new e.nKC("mat-checkbox-default-options",{providedIn:"root",factory:R});function R(){return{color:"accent",clickAction:"check-indeterminate"}}var h=function(J){return J[J.Init=0]="Init",J[J.Checked=1]="Checked",J[J.Unchecked=2]="Unchecked",J[J.Indeterminate=3]="Indeterminate",J}(h||{});const S={provide:t.kq,useExisting:(0,e.Rfq)(()=>V),multi:!0};class y{}let O=0;const I=R();let V=(()=>{class J{focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(ee){const fe=new y;return fe.source=this,fe.checked=ee,fe}_getAnimationTargetElement(){return this._inputElement?.nativeElement}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ee,fe,ne,Me,Ce,le){this._elementRef=ee,this._changeDetectorRef=fe,this._ngZone=ne,this._animationMode=Ce,this._options=le,this._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"},this.ariaLabel="",this.ariaLabelledby=null,this.labelPosition="after",this.name=null,this.change=new e.bkB,this.indeterminateChange=new e.bkB,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=h.Init,this._controlValueAccessorChangeFn=()=>{},this._validatorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||I,this.color=this._options.color||I.color,this.tabIndex=parseInt(Me)||0,this.id=this._uniqueId="mat-mdc-checkbox-"+ ++O}ngOnChanges(ee){ee.required&&this._validatorChangeFn()}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}get checked(){return this._checked}set checked(ee){ee!=this.checked&&(this._checked=ee,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(ee){ee!==this.disabled&&(this._disabled=ee,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(ee){const fe=ee!=this._indeterminate;this._indeterminate=ee,fe&&(this._transitionCheckState(this._indeterminate?h.Indeterminate:this.checked?h.Checked:h.Unchecked),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(ee){this.checked=!!ee}registerOnChange(ee){this._controlValueAccessorChangeFn=ee}registerOnTouched(ee){this._onTouched=ee}setDisabledState(ee){this.disabled=ee}validate(ee){return this.required&&!0!==ee.value?{required:!0}:null}registerOnValidatorChange(ee){this._validatorChangeFn=ee}_transitionCheckState(ee){let fe=this._currentCheckState,ne=this._getAnimationTargetElement();if(fe!==ee&&ne&&(this._currentAnimationClass&&ne.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(fe,ee),this._currentCheckState=ee,this._currentAnimationClass.length>0)){ne.classList.add(this._currentAnimationClass);const Me=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{ne.classList.remove(Me)},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 ee=this._options?.clickAction;this.disabled||"noop"===ee?!this.disabled&&"noop"===ee&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==ee&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?h.Checked:h.Unchecked),this._emitChangeEvent())}_onInteractionEvent(ee){ee.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(ee,fe){if("NoopAnimations"===this._animationMode)return"";switch(ee){case h.Init:if(fe===h.Checked)return this._animationClasses.uncheckedToChecked;if(fe==h.Indeterminate)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case h.Unchecked:return fe===h.Checked?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case h.Checked:return fe===h.Unchecked?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case h.Indeterminate:return fe===h.Checked?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(ee){const fe=this._inputElement;fe&&(fe.nativeElement.indeterminate=ee)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(ee){ee.target&&this._labelElement.nativeElement.contains(ee.target)&&ee.stopPropagation()}static{this.\u0275fac=function(fe){return new(fe||J)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.kS0("tabindex"),e.rXU(e.bc$,8),e.rXU(f,8))}}static{this.\u0275cmp=e.VBU({type:J,selectors:[["mat-checkbox"]],viewQuery:function(fe,ne){if(1&fe&&(e.GBs(D,5),e.GBs(l,5),e.GBs(x.r6,5)),2&fe){let Me;e.mGM(Me=e.lsd())&&(ne._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ne._labelElement=Me.first),e.mGM(Me=e.lsd())&&(ne.ripple=Me.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:14,hostBindings:function(fe,ne){2&fe&&(e.Mr5("id",ne.id),e.BMQ("tabindex",null)("aria-label",null)("aria-labelledby",null),e.HbH(ne.color?"mat-"+ne.color:"mat-accent"),e.AVh("_mat-animation-noopable","NoopAnimations"===ne._animationMode)("mdc-checkbox--disabled",ne.disabled)("mat-mdc-checkbox-disabled",ne.disabled)("mat-mdc-checkbox-checked",ne.checked))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],id:"id",required:[2,"required","required",e.L39],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",ee=>null==ee?void 0:(0,e.Udg)(ee)],color:"color",checked:[2,"checked","checked",e.L39],disabled:[2,"disabled","disabled",e.L39],indeterminate:[2,"indeterminate","indeterminate",e.L39]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],standalone:!0,features:[e.Jv_([S,{provide:t.cz,useExisting:J,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:w,decls:15,vars:19,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-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"]],template:function(fe,ne){if(1&fe){const Me=e.RV6();e.NAR(),e.j41(0,"div",3),e.bIt("click",function(le){return e.eBV(Me),e.Njj(ne._preventBubblingFromLabel(le))}),e.j41(1,"div",4,0)(3,"div",5),e.bIt("click",function(){return e.eBV(Me),e.Njj(ne._onTouchTargetClick())}),e.k0s(),e.j41(4,"input",6,1),e.bIt("blur",function(){return e.eBV(Me),e.Njj(ne._onBlur())})("click",function(){return e.eBV(Me),e.Njj(ne._onInputClick())})("change",function(le){return e.eBV(Me),e.Njj(ne._onInteractionEvent(le))}),e.k0s(),e.nrm(6,"div",7),e.j41(7,"div",8),e.qSk(),e.j41(8,"svg",9),e.nrm(9,"path",10),e.k0s(),e.joV(),e.nrm(10,"div",11),e.k0s(),e.nrm(11,"div",12),e.k0s(),e.j41(12,"label",13,2),e.SdG(14),e.k0s()()}if(2&fe){const Me=e.sdS(2);e.Y8G("labelPosition",ne.labelPosition),e.R7$(4),e.AVh("mdc-checkbox--selected",ne.checked),e.Y8G("checked",ne.checked)("indeterminate",ne.indeterminate)("disabled",ne.disabled)("id",ne.inputId)("required",ne.required)("tabIndex",ne.disabled?-1:ne.tabIndex),e.BMQ("aria-label",ne.ariaLabel||null)("aria-labelledby",ne.ariaLabelledby)("aria-describedby",ne.ariaDescribedby)("aria-checked",ne.indeterminate?"mixed":null)("name",ne.name)("value",ne.value),e.R7$(7),e.Y8G("matRippleTrigger",Me)("matRippleDisabled",ne.disableRipple||ne.disabled)("matRippleCentered",!0),e.R7$(),e.Y8G("for",ne.inputId)}},dependencies:[x.r6,x.tO],styles:['.mdc-touch-target-wrapper{display:inline}@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:mdc-animation-deceleration-curve-timing-function;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}}.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}.mdc-checkbox[hidden]{display:none}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{border-color:CanvasText}}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{border-color:CanvasText}}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-checkbox__mixedmark{margin:0 1px}}.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 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--upgraded .mdc-checkbox__checkmark{opacity:1}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms 0ms 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 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.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 0s;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background{transition:border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit}.mdc-checkbox__native-control:disabled{cursor:default;pointer-events:none}.mdc-checkbox--touch{margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox--touch .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark{transition:opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 180ms 0ms 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,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__mixedmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark{transition:none}.mdc-checkbox{padding:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-disabled-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled]~.mdc-checkbox__background{border-color:transparent;background-color:var(--mdc-checkbox-disabled-selected-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}}.mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}@keyframes mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}}@keyframes mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}}.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:hover.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2)}.mdc-checkbox .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:focus:not(:checked):not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-focus-icon-color);background-color:var(--mdc-checkbox-selected-focus-icon-color)}.mdc-checkbox:hover .mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox:hover .mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox .mdc-checkbox__background{-webkit-print-color-adjust:exact;color-adjust:exact}.mat-mdc-checkbox._mat-animation-noopable *,.mat-mdc-checkbox._mat-animation-noopable *::before{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default;color:var(--mat-checkbox-disabled-label-color)}.mat-mdc-checkbox label:empty{display:none}.cdk-high-contrast-active .mat-mdc-checkbox.mat-mdc-checkbox-disabled{opacity:.5}.cdk-high-contrast-active .mat-mdc-checkbox .mdc-checkbox__checkmark{--mdc-checkbox-selected-checkmark-color: CanvasText;--mdc-checkbox-disabled-selected-checkmark-color: CanvasText}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.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-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%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-checkbox-touch-target-display)}.mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}}return J})(),Q=(()=>{class J{static{this.\u0275fac=function(fe){return new(fe||J)}}static{this.\u0275mod=e.$C({type:J})}static{this.\u0275inj=e.G2t({imports:[V,x.yE,x.yE]})}}return J})()},6471:(Qe,te,g)=>{"use strict";g.d(te,{Jl:()=>Xe,YN:()=>ct});var e=g(4438),t=g(177),x=g(6600),D=g(8617),l=g(1413),w=g(7786),f=g(6697),y=(g(6977),g(9172),g(5558),g(7336));g(8203),g(9417),g(6467);const j=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],Y=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"];function W(dt,Yt){1&dt&&(e.j41(0,"span",3),e.SdG(1,1),e.k0s())}function Q(dt,Yt){1&dt&&(e.j41(0,"span",6),e.SdG(1,2),e.k0s())}const A=new e.nKC("mat-chips-default-options",{providedIn:"root",factory:()=>({separatorKeyCodes:[y.Fm]})}),k=new e.nKC("MatChipAvatar"),_=new e.nKC("MatChipTrailingIcon"),a=new e.nKC("MatChipRemove"),b=new e.nKC("MatChip");let z=(()=>{class dt{get disabled(){return this._disabled||this._parentChip.disabled}set disabled(ve){this._disabled=ve}_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(ve,_e){this._elementRef=ve,this._parentChip=_e,this.isInteractive=!0,this._isPrimary=!0,this._disabled=!1,this.tabIndex=-1,this._allowFocusWhenDisabled=!1,"BUTTON"===ve.nativeElement.nodeName&&ve.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(ve){!this.disabled&&this.isInteractive&&this._isPrimary&&(ve.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(ve){(ve.keyCode===y.Fm||ve.keyCode===y.t6)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(ve.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static{this.\u0275fac=function(_e){return new(_e||dt)(e.rXU(e.aKT),e.rXU(b))}}static{this.\u0275dir=e.FsC({type:dt,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:9,hostBindings:function(_e,we){1&_e&&e.bIt("click",function(je){return we._handleClick(je)})("keydown",function(je){return we._handleKeydown(je)}),2&_e&&(e.BMQ("tabindex",we._getTabindex())("disabled",we._getDisabledAttribute())("aria-disabled",we.disabled),e.AVh("mdc-evolution-chip__action--primary",we._isPrimary)("mdc-evolution-chip__action--presentational",!we.isInteractive)("mdc-evolution-chip__action--trailing",!we._isPrimary))},inputs:{isInteractive:"isInteractive",disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ve=>null==ve?-1:(0,e.Udg)(ve)],_allowFocusWhenDisabled:"_allowFocusWhenDisabled"},standalone:!0,features:[e.GFd]})}}return dt})(),ze=0,Xe=(()=>{class dt{_hasFocus(){return this._hasFocusInternal}get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(ve){this._value=ve}get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(ve){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,ve)}constructor(ve,_e,we,Ue,je,vt,$e,nt){this._changeDetectorRef=ve,this._elementRef=_e,this._ngZone=we,this._focusMonitor=Ue,this._globalRippleOptions=$e,this._onFocus=new l.B,this._onBlur=new l.B,this.role=null,this._hasFocusInternal=!1,this.id="mat-mdc-chip-"+ze++,this.ariaLabel=null,this.ariaDescription=null,this._ariaDescriptionId=`${this.id}-aria-description`,this.removable=!0,this.highlighted=!1,this.disableRipple=!1,this.disabled=!1,this.tabIndex=-1,this.removed=new e.bkB,this.destroyed=new e.bkB,this.basicChipAttrName="mat-basic-chip",this._rippleLoader=(0,e.WQX)(x.Ej),this._document=je,this._animationsDisabled="NoopAnimations"===vt,null!=nt&&(this.tabIndex=parseInt(nt)??-1),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){const ve=this._elementRef.nativeElement;this._isBasicChip=ve.hasAttribute(this.basicChipAttrName)||ve.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,w.h)(this._allLeadingIcons.changes,this._allTrailingIcons.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.removed.emit({chip:this})}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(ve){(ve.keyCode===y.G_&&!ve.repeat||ve.keyCode===y.SJ)&&(ve.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(ve){return this._getActions().find(_e=>{const we=_e._elementRef.nativeElement;return we===ve||we.contains(ve)})}_getActions(){const ve=[];return this.primaryAction&&ve.push(this.primaryAction),this.removeIcon&&ve.push(this.removeIcon),this.trailingIcon&&ve.push(this.trailingIcon),ve}_handlePrimaryActionInteraction(){}_getTabIndex(){return this.role?this.disabled?-1:this.tabIndex:null}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(ve=>{const _e=null!==ve;_e!==this._hasFocusInternal&&(this._hasFocusInternal=_e,_e?this._onFocus.next({chip:this}):this._ngZone.onStable.pipe((0,f.s)(1)).subscribe(()=>this._ngZone.run(()=>this._onBlur.next({chip:this}))))})}static{this.\u0275fac=function(_e){return new(_e||dt)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(D.FN),e.rXU(t.qQ),e.rXU(e.bc$,8),e.rXU(x.$E,8),e.kS0("tabindex"))}}static{this.\u0275cmp=e.VBU({type:dt,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(_e,we,Ue){if(1&_e&&(e.wni(Ue,k,5),e.wni(Ue,_,5),e.wni(Ue,a,5),e.wni(Ue,k,5),e.wni(Ue,_,5),e.wni(Ue,a,5)),2&_e){let je;e.mGM(je=e.lsd())&&(we.leadingIcon=je.first),e.mGM(je=e.lsd())&&(we.trailingIcon=je.first),e.mGM(je=e.lsd())&&(we.removeIcon=je.first),e.mGM(je=e.lsd())&&(we._allLeadingIcons=je),e.mGM(je=e.lsd())&&(we._allTrailingIcons=je),e.mGM(je=e.lsd())&&(we._allRemoveIcons=je)}},viewQuery:function(_e,we){if(1&_e&&e.GBs(z,5),2&_e){let Ue;e.mGM(Ue=e.lsd())&&(we.primaryAction=Ue.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:32,hostBindings:function(_e,we){1&_e&&e.bIt("keydown",function(je){return we._handleKeydown(je)}),2&_e&&(e.Mr5("id",we.id),e.BMQ("role",we.role)("tabindex",we._getTabIndex())("aria-label",we.ariaLabel),e.HbH("mat-"+(we.color||"primary")),e.AVh("mdc-evolution-chip",!we._isBasicChip)("mdc-evolution-chip--disabled",we.disabled)("mdc-evolution-chip--with-trailing-action",we._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",we.leadingIcon)("mdc-evolution-chip--with-primary-icon",we.leadingIcon)("mdc-evolution-chip--with-avatar",we.leadingIcon)("mat-mdc-chip-with-avatar",we.leadingIcon)("mat-mdc-chip-highlighted",we.highlighted)("mat-mdc-chip-disabled",we.disabled)("mat-mdc-basic-chip",we._isBasicChip)("mat-mdc-standard-chip",!we._isBasicChip)("mat-mdc-chip-with-trailing-icon",we._hasTrailingIcon())("_mat-animation-noopable",we._animationsDisabled))},inputs:{role:"role",id:"id",ariaLabel:[0,"aria-label","ariaLabel"],ariaDescription:[0,"aria-description","ariaDescription"],value:"value",color:"color",removable:[2,"removable","removable",e.L39],highlighted:[2,"highlighted","highlighted",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ve=>null==ve?void 0:(0,e.Udg)(ve)]},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],standalone:!0,features:[e.Jv_([{provide:b,useExisting:dt}]),e.GFd,e.aNF],ngContentSelectors:Y,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-mdc-focus-indicator"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(_e,we){1&_e&&(e.NAR(j),e.nrm(0,"span",0),e.j41(1,"span",1)(2,"span",2),e.DNE(3,W,2,0,"span",3),e.j41(4,"span",4),e.SdG(5),e.nrm(6,"span",5),e.k0s()()(),e.DNE(7,Q,2,0,"span",6)),2&_e&&(e.R7$(2),e.Y8G("isInteractive",!1),e.R7$(),e.vxM(we.leadingIcon?3:-1),e.R7$(4),e.vxM(we._hasTrailingIcon()?7:-1))},dependencies:[z],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 .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{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}.mdc-evolution-chip__action--primary{overflow-x:hidden}.mdc-evolution-chip__action--trailing{position:relative;overflow:visible}.mdc-evolution-chip__action--primary:before{box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1}.mdc-evolution-chip--touch{margin-top:8px;margin-bottom:8px}.mdc-evolution-chip__action-touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-evolution-chip__text-label{white-space:nowrap;user-select:none;text-overflow:ellipsis;overflow:hidden}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mdc-evolution-chip__checkmark-background{opacity:0}.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__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.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--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__graphic{transition:width 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark{transition:opacity 50ms 0ms linear,transform 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-50%, -50%)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@keyframes mdc-evolution-chip-enter{from{transform:scale(0.8);opacity:.4}to{transform:scale(1);opacity:1}}.mdc-evolution-chip--enter{animation:mdc-evolution-chip-enter 100ms 0ms cubic-bezier(0, 0, 0.2, 1)}@keyframes mdc-evolution-chip-exit{from{opacity:1}to{opacity:0}}.mdc-evolution-chip--exit{animation:mdc-evolution-chip-exit 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-evolution-chip--hidden{opacity:0;pointer-events:none;transition:width 150ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-standard-chip{border-radius:var(--mdc-chip-container-shape-radius);height:var(--mdc-chip-container-height)}.mat-mdc-standard-chip .mdc-evolution-chip__ripple{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mdc-chip-with-avatar-avatar-shape-radius)}.mat-mdc-standard-chip.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--with-primary-icon){--mdc-chip-graphic-selected-width:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{height:var(--mdc-chip-with-avatar-avatar-size);width:var(--mdc-chip-with-avatar-avatar-size);font-size:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational).mdc-ripple-upgraded--background-focused:before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational):not(.mdc-ripple-upgraded):focus:before{border-color:var(--mdc-chip-focus-outline-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-disabled-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-outline-width)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-selected-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-flat-disabled-selected-container-color)}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mdc-chip-label-text-font);line-height:var(--mdc-chip-label-text-line-height);font-size:var(--mdc-chip-label-text-size);font-weight:var(--mdc-chip-label-text-weight);letter-spacing:var(--mdc-chip-label-text-tracking)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-selected-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{height:var(--mdc-chip-with-icon-icon-size);width:var(--mdc-chip-with-icon-icon-size);font-size:var(--mdc-chip-with-icon-icon-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-selected-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-hover-state-layer-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-hover-state-layer-opacity)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-selected-hover-state-layer-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mat-mdc-chip-highlighted{--mdc-chip-with-icon-icon-color:var(--mdc-chip-with-icon-selected-icon-color);--mdc-chip-elevated-container-color:var(--mdc-chip-elevated-selected-container-color);--mdc-chip-label-text-color:var(--mdc-chip-selected-label-text-color);--mdc-chip-outline-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color)}.mat-mdc-chip-selected .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-focus-state-layer-color)}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-hover-state-layer-color);opacity:var(--mdc-chip-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(--mdc-chip-selected-hover-state-layer-color);opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color);opacity:var(--mdc-chip-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(--mdc-chip-selected-focus-state-layer-color);opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mdc-evolution-chip--disabled:not(.mdc-evolution-chip--selected) .mat-mdc-chip-avatar{opacity:var(--mdc-chip-with-avatar-disabled-avatar-opacity)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{opacity:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity)}.mdc-evolution-chip--disabled.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{opacity:var(--mdc-chip-with-icon-disabled-icon-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:var(--mat-chip-disabled-container-opacity)}.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)}.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)}.mat-mdc-chip-remove{opacity:var(--mat-chip-trailing-action-opacity)}.mat-mdc-chip-remove:focus{opacity:var(--mat-chip-trailing-action-focus-opacity)}.mat-mdc-chip-remove::after{background:var(--mat-chip-trailing-action-state-layer-color)}.mat-mdc-chip-remove:hover::after{opacity:var(--mat-chip-trailing-action-hover-state-layer-opacity)}.mat-mdc-chip-remove:focus::after{opacity:var(--mat-chip-trailing-action-focus-state-layer-opacity)}.mat-mdc-chip-selected .mat-mdc-chip-remove::after,.mat-mdc-chip-highlighted .mat-mdc-chip-remove::after{background:var(--mat-chip-selected-trailing-action-state-layer-color)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove{opacity:calc(var(--mat-chip-trailing-action-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove:focus{opacity:calc(var(--mat-chip-trailing-action-focus-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-style:solid}.mat-mdc-standard-chip .mdc-evolution-chip__checkmark{height:20px;width:20px}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.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,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.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,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:12px}.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}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{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__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.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,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{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__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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{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--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{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__ripple--trailing{left:8px;right:initial}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.cdk-high-contrast-active .mat-mdc-standard-chip{outline:solid 1px}.cdk-high-contrast-active .mat-mdc-standard-chip .mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}.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 .mdc-evolution-chip__cell--primary{flex-basis:100%}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit}.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-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.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(--mdc-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-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-remove::before{margin:calc(var(--mat-mdc-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-remove::after{content:"";display:block;opacity:0;position:absolute;top:-2px;bottom:-2px;left:6px;right:6px;border-radius:50%}.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}.cdk-high-contrast-active .mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}.mat-mdc-chip-action:focus .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}}return dt})(),ct=(()=>{class dt{static{this.\u0275fac=function(_e){return new(_e||dt)}}static{this.\u0275mod=e.$C({type:dt})}static{this.\u0275inj=e.G2t({providers:[x.es,{provide:A,useValue:{separatorKeyCodes:[y.Fm]}}],imports:[x.yE,x.pZ,x.yE]})}}return dt})()},6600:(Qe,te,g)=>{"use strict";g.d(te,{r5:()=>ee,ed:()=>fe,MJ:()=>z,es:()=>ae,de:()=>N,Ju:()=>a,QC:()=>jt,is:()=>Nt,$E:()=>je,yE:()=>Ce,Np:()=>me,WX:()=>oe,wT:()=>It,Sy:()=>xt,MI:()=>Ae,wg:()=>nt,O5:()=>qt,r6:()=>vt,Ej:()=>pt,pZ:()=>$e,xW:()=>ze,ug:()=>we,X0:()=>A,tO:()=>Ke,jb:()=>Qt,TL:()=>Tt});var e=g(4438),t=g(8617),x=g(8203),l=g(177),w=g(6860),f=g(4085),R=g(1413),h=g(7336);const O=["text"],I=[[["mat-icon"]],"*"],V=["mat-icon","*"];function j(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",1),2&Fe){const qe=e.XpG();e.Y8G("disabled",qe.disabled)("state",qe.selected?"checked":"unchecked")}}function Y(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",3),2&Fe){const qe=e.XpG();e.Y8G("disabled",qe.disabled)}}function W(Fe,Ge){if(1&Fe&&(e.j41(0,"span",4),e.EFF(1),e.k0s()),2&Fe){const qe=e.XpG();e.R7$(),e.SpI("(",qe.group.label,")")}}const Q=["mat-internal-form-field",""],J=["*"];let ee=(()=>{class Fe{static{this.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)"}static{this.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)"}static{this.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)"}static{this.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)"}}return Fe})(),fe=(()=>{class Fe{static{this.COMPLEX="375ms"}static{this.ENTERING="225ms"}static{this.EXITING="195ms"}}return Fe})();const Me=new e.nKC("mat-sanity-checks",{providedIn:"root",factory:function ne(){return!0}});let Ce=(()=>{class Fe{constructor(qe,at,Lt){this._sanityChecks=at,this._document=Lt,this._hasDoneGlobalChecks=!1,qe._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(qe){return!(0,w.v8)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[qe])}static{this.\u0275fac=function(at){return new(at||Fe)(e.KVO(t.Q_),e.KVO(Me,8),e.KVO(l.qQ))}}static{this.\u0275mod=e.$C({type:Fe})}static{this.\u0275inj=e.G2t({imports:[x.jI,x.jI]})}}return Fe})();class A{constructor(Ge,qe,at,Lt,pi){this._defaultMatcher=Ge,this.ngControl=qe,this._parentFormGroup=at,this._parentForm=Lt,this._stateChanges=pi,this.errorState=!1}updateErrorState(){const Ge=this.errorState,qe=this._parentFormGroup||this._parentForm,at=this.matcher||this._defaultMatcher,Lt=this.ngControl?this.ngControl.control:null,pi=at?.isErrorState(Lt,qe)??!1;pi!==Ge&&(this.errorState=pi,this._stateChanges.next())}}const a=new e.nKC("MAT_DATE_LOCALE",{providedIn:"root",factory:function b(){return(0,e.WQX)(e.xe9)}});class z{constructor(){this._localeChanges=new R.B,this.localeChanges=this._localeChanges}getValidDateOrNull(Ge){return this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:null}deserialize(Ge){return null==Ge||this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:this.invalid()}setLocale(Ge){this.locale=Ge,this._localeChanges.next()}compareDate(Ge,qe){return this.getYear(Ge)-this.getYear(qe)||this.getMonth(Ge)-this.getMonth(qe)||this.getDate(Ge)-this.getDate(qe)}sameDate(Ge,qe){if(Ge&&qe){let at=this.isValid(Ge),Lt=this.isValid(qe);return at&&Lt?!this.compareDate(Ge,qe):at==Lt}return Ge==qe}clampDate(Ge,qe,at){return qe&&this.compareDate(Ge,qe)<0?qe:at&&this.compareDate(Ge,at)>0?at:Ge}}const N=new e.nKC("mat-date-formats"),q=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/;function pe(Fe,Ge){const qe=Array(Fe);for(let at=0;at{class Fe extends z{constructor(qe){super(),this.useUtcForDisplay=!1,this._matDateLocale=(0,e.WQX)(a,{optional:!0}),void 0!==qe&&(this._matDateLocale=qe),super.setLocale(this._matDateLocale)}getYear(qe){return qe.getFullYear()}getMonth(qe){return qe.getMonth()}getDate(qe){return qe.getDate()}getDayOfWeek(qe){return qe.getDay()}getMonthNames(qe){const at=new Intl.DateTimeFormat(this.locale,{month:qe,timeZone:"utc"});return pe(12,Lt=>this._format(at,new Date(2017,Lt,1)))}getDateNames(){const qe=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return pe(31,at=>this._format(qe,new Date(2017,0,at+1)))}getDayOfWeekNames(qe){const at=new Intl.DateTimeFormat(this.locale,{weekday:qe,timeZone:"utc"});return pe(7,Lt=>this._format(at,new Date(2017,0,Lt+1)))}getYearName(qe){const at=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(at,qe)}getFirstDayOfWeek(){return 0}getNumDaysInMonth(qe){return this.getDate(this._createDateWithOverflow(this.getYear(qe),this.getMonth(qe)+1,0))}clone(qe){return new Date(qe.getTime())}createDate(qe,at,Lt){let pi=this._createDateWithOverflow(qe,at,Lt);return pi.getMonth(),pi}today(){return new Date}parse(qe,at){return"number"==typeof qe?new Date(qe):qe?new Date(Date.parse(qe)):null}format(qe,at){if(!this.isValid(qe))throw Error("NativeDateAdapter: Cannot format invalid date.");const Lt=new Intl.DateTimeFormat(this.locale,{...at,timeZone:"utc"});return this._format(Lt,qe)}addCalendarYears(qe,at){return this.addCalendarMonths(qe,12*at)}addCalendarMonths(qe,at){let Lt=this._createDateWithOverflow(this.getYear(qe),this.getMonth(qe)+at,this.getDate(qe));return this.getMonth(Lt)!=((this.getMonth(qe)+at)%12+12)%12&&(Lt=this._createDateWithOverflow(this.getYear(Lt),this.getMonth(Lt),0)),Lt}addCalendarDays(qe,at){return this._createDateWithOverflow(this.getYear(qe),this.getMonth(qe),this.getDate(qe)+at)}toIso8601(qe){return[qe.getUTCFullYear(),this._2digit(qe.getUTCMonth()+1),this._2digit(qe.getUTCDate())].join("-")}deserialize(qe){if("string"==typeof qe){if(!qe)return null;if(q.test(qe)){let at=new Date(qe);if(this.isValid(at))return at}}return super.deserialize(qe)}isDateInstance(qe){return qe instanceof Date}isValid(qe){return!isNaN(qe.getTime())}invalid(){return new Date(NaN)}_createDateWithOverflow(qe,at,Lt){const pi=new Date;return pi.setFullYear(qe,at,Lt),pi.setHours(0,0,0,0),pi}_2digit(qe){return("00"+qe).slice(-2)}_format(qe,at){const Lt=new Date;return Lt.setUTCFullYear(at.getFullYear(),at.getMonth(),at.getDate()),Lt.setUTCHours(at.getHours(),at.getMinutes(),at.getSeconds(),at.getMilliseconds()),qe.format(Lt)}static{this.\u0275fac=function(at){return new(at||Fe)(e.KVO(a,8))}}static{this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac})}}return Fe})();const Xe={parse:{dateInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"}}};let oe=(()=>{class Fe{static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275mod=e.$C({type:Fe})}static{this.\u0275inj=e.G2t({providers:[X()]})}}return Fe})();function X(Fe=Xe){return[{provide:z,useClass:ze},{provide:N,useValue:Fe}]}let ae=(()=>{class Fe{isErrorState(qe,at){return!!(qe&&qe.invalid&&(qe.touched||at&&at.submitted))}static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}}return Fe})(),me=(()=>{class Fe{static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275mod=e.$C({type:Fe})}static{this.\u0275inj=e.G2t({imports:[Ce,Ce]})}}return Fe})();var Ee=function(Fe){return Fe[Fe.FADING_IN=0]="FADING_IN",Fe[Fe.VISIBLE=1]="VISIBLE",Fe[Fe.FADING_OUT=2]="FADING_OUT",Fe[Fe.HIDDEN=3]="HIDDEN",Fe}(Ee||{});class ue{constructor(Ge,qe,at,Lt=!1){this._renderer=Ge,this.element=qe,this.config=at,this._animationForciblyDisabledThroughCss=Lt,this.state=Ee.HIDDEN}fadeOut(){this._renderer.fadeOutRipple(this)}}const Be=(0,w.BQ)({passive:!0,capture:!0});class Ct{constructor(){this._events=new Map,this._delegateEventHandler=Ge=>{const qe=(0,w.Fb)(Ge);qe&&this._events.get(Ge.type)?.forEach((at,Lt)=>{(Lt===qe||Lt.contains(qe))&&at.forEach(pi=>pi.handleEvent(Ge))})}}addHandler(Ge,qe,at,Lt){const pi=this._events.get(qe);if(pi){const $t=pi.get(at);$t?$t.add(Lt):pi.set(at,new Set([Lt]))}else this._events.set(qe,new Map([[at,new Set([Lt])]])),Ge.runOutsideAngular(()=>{document.addEventListener(qe,this._delegateEventHandler,Be)})}removeHandler(Ge,qe,at){const Lt=this._events.get(Ge);if(!Lt)return;const pi=Lt.get(qe);pi&&(pi.delete(at),0===pi.size&&Lt.delete(qe),0===Lt.size&&(this._events.delete(Ge),document.removeEventListener(Ge,this._delegateEventHandler,Be)))}}const ct={enterDuration:225,exitDuration:150},Yt=(0,w.BQ)({passive:!0,capture:!0}),ve=["mousedown","touchstart"],_e=["mouseup","mouseleave","touchend","touchcancel"];class we{static{this._eventManager=new Ct}constructor(Ge,qe,at,Lt){this._target=Ge,this._ngZone=qe,this._platform=Lt,this._isPointerDown=!1,this._activeRipples=new Map,this._pointerUpEventsRegistered=!1,Lt.isBrowser&&(this._containerElement=(0,f.i8)(at))}fadeInRipple(Ge,qe,at={}){const Lt=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),pi={...ct,...at.animation};at.centered&&(Ge=Lt.left+Lt.width/2,qe=Lt.top+Lt.height/2);const $t=at.radius||function Ue(Fe,Ge,qe){const at=Math.max(Math.abs(Fe-qe.left),Math.abs(Fe-qe.right)),Lt=Math.max(Math.abs(Ge-qe.top),Math.abs(Ge-qe.bottom));return Math.sqrt(at*at+Lt*Lt)}(Ge,qe,Lt),Kt=Ge-Lt.left,Ui=qe-Lt.top,ti=pi.enterDuration,fi=document.createElement("div");fi.classList.add("mat-ripple-element"),fi.style.left=Kt-$t+"px",fi.style.top=Ui-$t+"px",fi.style.height=2*$t+"px",fi.style.width=2*$t+"px",null!=at.color&&(fi.style.backgroundColor=at.color),fi.style.transitionDuration=`${ti}ms`,this._containerElement.appendChild(fi);const xn=window.getComputedStyle(fi),Vi=xn.transitionDuration,Qi="none"===xn.transitionProperty||"0s"===Vi||"0s, 0s"===Vi||0===Lt.width&&0===Lt.height,Xt=new ue(this,fi,at,Qi);fi.style.transform="scale3d(1, 1, 1)",Xt.state=Ee.FADING_IN,at.persistent||(this._mostRecentTransientRipple=Xt);let St=null;return!Qi&&(ti||pi.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const tt=()=>this._finishRippleTransition(Xt),ot=()=>this._destroyRipple(Xt);fi.addEventListener("transitionend",tt),fi.addEventListener("transitioncancel",ot),St={onTransitionEnd:tt,onTransitionCancel:ot}}),this._activeRipples.set(Xt,St),(Qi||!ti)&&this._finishRippleTransition(Xt),Xt}fadeOutRipple(Ge){if(Ge.state===Ee.FADING_OUT||Ge.state===Ee.HIDDEN)return;const qe=Ge.element,at={...ct,...Ge.config.animation};qe.style.transitionDuration=`${at.exitDuration}ms`,qe.style.opacity="0",Ge.state=Ee.FADING_OUT,(Ge._animationForciblyDisabledThroughCss||!at.exitDuration)&&this._finishRippleTransition(Ge)}fadeOutAll(){this._getActiveRipples().forEach(Ge=>Ge.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(Ge=>{Ge.config.persistent||Ge.fadeOut()})}setupTriggerEvents(Ge){const qe=(0,f.i8)(Ge);!this._platform.isBrowser||!qe||qe===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=qe,ve.forEach(at=>{we._eventManager.addHandler(this._ngZone,at,qe,this)}))}handleEvent(Ge){"mousedown"===Ge.type?this._onMousedown(Ge):"touchstart"===Ge.type?this._onTouchStart(Ge):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{_e.forEach(qe=>{this._triggerElement.addEventListener(qe,this,Yt)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(Ge){Ge.state===Ee.FADING_IN?this._startFadeOutTransition(Ge):Ge.state===Ee.FADING_OUT&&this._destroyRipple(Ge)}_startFadeOutTransition(Ge){const qe=Ge===this._mostRecentTransientRipple,{persistent:at}=Ge.config;Ge.state=Ee.VISIBLE,!at&&(!qe||!this._isPointerDown)&&Ge.fadeOut()}_destroyRipple(Ge){const qe=this._activeRipples.get(Ge)??null;this._activeRipples.delete(Ge),this._activeRipples.size||(this._containerRect=null),Ge===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),Ge.state=Ee.HIDDEN,null!==qe&&(Ge.element.removeEventListener("transitionend",qe.onTransitionEnd),Ge.element.removeEventListener("transitioncancel",qe.onTransitionCancel)),Ge.element.remove()}_onMousedown(Ge){const qe=(0,t._G)(Ge),at=this._lastTouchStartEvent&&Date.now(){!Ge.config.persistent&&(Ge.state===Ee.VISIBLE||Ge.config.terminateOnPointerUp&&Ge.state===Ee.FADING_IN)&&Ge.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const Ge=this._triggerElement;Ge&&(ve.forEach(qe=>we._eventManager.removeHandler(qe,Ge,this)),this._pointerUpEventsRegistered&&(_e.forEach(qe=>Ge.removeEventListener(qe,this,Yt)),this._pointerUpEventsRegistered=!1))}}const je=new e.nKC("mat-ripple-global-options");let vt=(()=>{class Fe{get disabled(){return this._disabled}set disabled(qe){qe&&this.fadeOutAllNonPersistent(),this._disabled=qe,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(qe){this._trigger=qe,this._setupTriggerEventsIfEnabled()}constructor(qe,at,Lt,pi,$t){this._elementRef=qe,this._animationMode=$t,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=pi||{},this._rippleRenderer=new we(this,at,qe,Lt)}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,..."NoopAnimations"===this._animationMode?{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(qe,at=0,Lt){return"number"==typeof qe?this._rippleRenderer.fadeInRipple(qe,at,{...this.rippleConfig,...Lt}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...qe})}static{this.\u0275fac=function(at){return new(at||Fe)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(w.OD),e.rXU(je,8),e.rXU(e.bc$,8))}}static{this.\u0275dir=e.FsC({type:Fe,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(at,Lt){2&at&&e.AVh("mat-ripple-unbounded",Lt.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"],standalone:!0})}}return Fe})(),$e=(()=>{class Fe{static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275mod=e.$C({type:Fe})}static{this.\u0275inj=e.G2t({imports:[Ce,Ce]})}}return Fe})(),nt=(()=>{class Fe{constructor(qe){this._animationMode=qe,this.state="unchecked",this.disabled=!1,this.appearance="full"}static{this.\u0275fac=function(at){return new(at||Fe)(e.rXU(e.bc$,8))}}static{this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(at,Lt){2&at&&e.AVh("mat-pseudo-checkbox-indeterminate","indeterminate"===Lt.state)("mat-pseudo-checkbox-checked","checked"===Lt.state)("mat-pseudo-checkbox-disabled",Lt.disabled)("mat-pseudo-checkbox-minimal","minimal"===Lt.appearance)("mat-pseudo-checkbox-full","full"===Lt.appearance)("_mat-animation-noopable","NoopAnimations"===Lt._animationMode)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(at,Lt){},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-minimal-pseudo-checkbox-selected-checkmark-color)}.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-minimal-pseudo-checkbox-disabled-selected-checkmark-color)}.mat-pseudo-checkbox-full{border-color:var(--mat-full-pseudo-checkbox-unselected-icon-color);border-width:2px;border-style:solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{border-color:var(--mat-full-pseudo-checkbox-disabled-unselected-icon-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{background-color:var(--mat-full-pseudo-checkbox-selected-icon-color);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-full-pseudo-checkbox-selected-checkmark-color)}.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-full-pseudo-checkbox-disabled-selected-icon-color)}.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-full-pseudo-checkbox-disabled-selected-checkmark-color)}.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}'],encapsulation:2,changeDetection:0})}}return Fe})(),qt=(()=>{class Fe{static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275mod=e.$C({type:Fe})}static{this.\u0275inj=e.G2t({imports:[Ce]})}}return Fe})();const Nt=new e.nKC("MAT_OPTION_PARENT_COMPONENT"),jt=new e.nKC("MatOptgroup");let et=0;class Ae{constructor(Ge,qe=!1){this.source=Ge,this.isUserInput=qe}}let It=(()=>{class Fe{get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(qe){this._disabled=qe}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}constructor(qe,at,Lt,pi){this._element=qe,this._changeDetectorRef=at,this._parent=Lt,this.group=pi,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+et++,this.onSelectionChange=new e.bkB,this._stateChanges=new R.B}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(qe=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),qe&&this._emitSelectionChangeEvent())}deselect(qe=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),qe&&this._emitSelectionChangeEvent())}focus(qe,at){const Lt=this._getHostElement();"function"==typeof Lt.focus&&Lt.focus(at)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(qe){(qe.keyCode===h.Fm||qe.keyCode===h.t6)&&!(0,h.rp)(qe)&&(this._selectViaInteraction(),qe.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 qe=this.viewValue;qe!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=qe)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(qe=!1){this.onSelectionChange.emit(new Ae(this,qe))}static{this.\u0275fac=function(at){return new(at||Fe)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(Nt,8),e.rXU(jt,8))}}static{this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-option"]],viewQuery:function(at,Lt){if(1&at&&e.GBs(O,7),2&at){let pi;e.mGM(pi=e.lsd())&&(Lt._text=pi.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(at,Lt){1&at&&e.bIt("click",function(){return Lt._selectViaInteraction()})("keydown",function($t){return Lt._handleKeydown($t)}),2&at&&(e.Mr5("id",Lt.id),e.BMQ("aria-selected",Lt.selected)("aria-disabled",Lt.disabled.toString()),e.AVh("mdc-list-item--selected",Lt.selected)("mat-mdc-option-multiple",Lt.multiple)("mat-mdc-option-active",Lt.active)("mdc-list-item--disabled",Lt.disabled))},inputs:{value:"value",id:"id",disabled:[2,"disabled","disabled",e.L39]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:V,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-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled"]],template:function(at,Lt){1&at&&(e.NAR(I),e.DNE(0,j,1,2,"mat-pseudo-checkbox",1),e.SdG(1),e.j41(2,"span",2,0),e.SdG(4,1),e.k0s(),e.DNE(5,Y,1,1,"mat-pseudo-checkbox",3)(6,W,2,1,"span",4),e.nrm(7,"div",5)),2&at&&(e.vxM(Lt.multiple?0:-1),e.R7$(5),e.vxM(Lt.multiple||!Lt.selected||Lt.hideSingleSelectionIndicator?-1:5),e.R7$(),e.vxM(Lt.group&&Lt.group._inert?6:-1),e.R7$(),e.Y8G("matRippleTrigger",Lt._getHostElement())("matRippleDisabled",Lt.disabled||Lt.disableRipple))},dependencies:[nt,vt],styles:['.mat-mdc-option{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color);font-family:var(--mat-option-label-text-font);line-height:var(--mat-option-label-text-line-height);font-size:var(--mat-option-label-text-size);letter-spacing:var(--mat-option-label-text-tracking);font-weight:var(--mat-option-label-text-weight);min-height:48px}.mat-mdc-option:focus{outline:none}[dir=rtl] .mat-mdc-option,.mat-mdc-option[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color)}.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)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color)}.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)}.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}.cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{right:auto;left:16px}.mat-mdc-option-multiple{--mdc-list-list-item-selected-container-color:var(--mdc-list-list-item-container-color, transparent)}.mat-mdc-option-active .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}}return Fe})();function Qt(Fe,Ge,qe){if(qe.length){let at=Ge.toArray(),Lt=qe.toArray(),pi=0;for(let $t=0;$tqe+at?Math.max(0,Fe-at+Ge):qe}let xt=(()=>{class Fe{static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275mod=e.$C({type:Fe})}static{this.\u0275inj=e.G2t({imports:[$e,Ce,qt]})}}return Fe})();const Se={capture:!0},Te=["focus","click","mouseenter","touchstart"],ce="mat-ripple-loader-uninitialized",Z="mat-ripple-loader-class-name",Re="mat-ripple-loader-centered",Pe="mat-ripple-loader-disabled";let pt=(()=>{class Fe{constructor(){this._document=(0,e.WQX)(l.qQ,{optional:!0}),this._animationMode=(0,e.WQX)(e.bc$,{optional:!0}),this._globalRippleOptions=(0,e.WQX)(je,{optional:!0}),this._platform=(0,e.WQX)(w.OD),this._ngZone=(0,e.WQX)(e.SKi),this._hosts=new Map,this._onInteraction=qe=>{if(!(qe.target instanceof HTMLElement))return;const Lt=qe.target.closest(`[${ce}]`);Lt&&this._createRipple(Lt)},this._ngZone.runOutsideAngular(()=>{for(const qe of Te)this._document?.addEventListener(qe,this._onInteraction,Se)})}ngOnDestroy(){const qe=this._hosts.keys();for(const at of qe)this.destroyRipple(at);for(const at of Te)this._document?.removeEventListener(at,this._onInteraction,Se)}configureRipple(qe,at){qe.setAttribute(ce,""),(at.className||!qe.hasAttribute(Z))&&qe.setAttribute(Z,at.className||""),at.centered&&qe.setAttribute(Re,""),at.disabled&&qe.setAttribute(Pe,"")}getRipple(qe){return this._hosts.get(qe)||this._createRipple(qe)}setDisabled(qe,at){const Lt=this._hosts.get(qe);Lt?Lt.disabled=at:at?qe.setAttribute(Pe,""):qe.removeAttribute(Pe)}_createRipple(qe){if(!this._document)return;const at=this._hosts.get(qe);if(at)return at;qe.querySelector(".mat-ripple")?.remove();const Lt=this._document.createElement("span");Lt.classList.add("mat-ripple",qe.getAttribute(Z)),qe.append(Lt);const pi=new vt(new e.aKT(Lt),this._ngZone,this._platform,this._globalRippleOptions?this._globalRippleOptions:void 0,this._animationMode?this._animationMode:void 0);return pi._isInitialized=!0,pi.trigger=qe,pi.centered=qe.hasAttribute(Re),pi.disabled=qe.hasAttribute(Pe),this.attachRipple(qe,pi),pi}attachRipple(qe,at){qe.removeAttribute(ce),this._hosts.set(qe,at)}destroyRipple(qe){const at=this._hosts.get(qe);at&&(at.ngOnDestroy(),this._hosts.delete(qe))}static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}}return Fe})(),Ke=(()=>{class Fe{static{this.\u0275fac=function(at){return new(at||Fe)}}static{this.\u0275cmp=e.VBU({type:Fe,selectors:[["div","mat-internal-form-field",""]],hostAttrs:[1,"mdc-form-field","mat-internal-form-field"],hostVars:2,hostBindings:function(at,Lt){2&at&&e.AVh("mdc-form-field--align-end","before"===Lt.labelPosition)},inputs:{labelPosition:"labelPosition"},standalone:!0,features:[e.aNF],attrs:Q,ngContentSelectors:J,decls:1,vars:0,template:function(at,Lt){1&at&&(e.NAR(),e.SdG(0))},styles:[".mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.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>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-form-field{font-family:var(--mdc-form-field-label-text-font);line-height:var(--mdc-form-field-label-text-line-height);font-size:var(--mdc-form-field-label-text-size);font-weight:var(--mdc-form-field-label-text-weight);letter-spacing:var(--mdc-form-field-label-text-tracking);color:var(--mdc-form-field-label-text-color)}.mat-internal-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}"],encapsulation:2,changeDetection:0})}}return Fe})()},5084:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>qe,X6:()=>mn,bU:()=>fi,bZ:()=>Ui});var e=g(8617),t=g(6969),x=g(6939),D=g(177),l=g(4438),w=g(8834),f=g(5542),R=g(6600),h=g(1413),S=g(8359),y=g(7786),O=g(7673),I=g(7336),V=g(8203),j=g(6860),Y=g(6697),W=g(9172),Q=g(5964),J=g(4085),ie=g(9969),ee=g(9417),fe=g(6467),ne=g(9631);const Me=["mat-calendar-body",""];function Ce(Ut,lt){if(1&Ut&&(l.j41(0,"tr",0)(1,"td",3),l.EFF(2),l.k0s()()),2&Ut){const re=l.XpG();l.R7$(),l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re.numCols),l.R7$(),l.SpI(" ",re.label," ")}}function le(Ut,lt){if(1&Ut&&(l.j41(0,"td",3),l.EFF(1),l.k0s()),2&Ut){const re=l.XpG(2);l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re._firstRowOffset),l.R7$(),l.SpI(" ",re._firstRowOffset>=re.labelMinRequiredCells?re.label:""," ")}}function T(Ut,lt){if(1&Ut){const re=l.RV6();l.j41(0,"td",6)(1,"button",7),l.bIt("click",function(ye){const rt=l.eBV(re).$implicit,ht=l.XpG(2);return l.Njj(ht._cellClicked(rt,ye))})("focus",function(ye){const rt=l.eBV(re).$implicit,ht=l.XpG(2);return l.Njj(ht._emitActiveDateChange(rt,ye))}),l.j41(2,"span",8),l.EFF(3),l.k0s(),l.nrm(4,"span",9),l.k0s()()}if(2&Ut){const re=lt.$implicit,He=lt.$index,ye=l.XpG().$index,rt=l.XpG();l.xc7("width",rt._cellWidth)("padding-top",rt._cellPadding)("padding-bottom",rt._cellPadding),l.BMQ("data-mat-row",ye)("data-mat-col",He),l.R7$(),l.AVh("mat-calendar-body-disabled",!re.enabled)("mat-calendar-body-active",rt._isActiveCell(ye,He))("mat-calendar-body-range-start",rt._isRangeStart(re.compareValue))("mat-calendar-body-range-end",rt._isRangeEnd(re.compareValue))("mat-calendar-body-in-range",rt._isInRange(re.compareValue))("mat-calendar-body-comparison-bridge-start",rt._isComparisonBridgeStart(re.compareValue,ye,He))("mat-calendar-body-comparison-bridge-end",rt._isComparisonBridgeEnd(re.compareValue,ye,He))("mat-calendar-body-comparison-start",rt._isComparisonStart(re.compareValue))("mat-calendar-body-comparison-end",rt._isComparisonEnd(re.compareValue))("mat-calendar-body-in-comparison-range",rt._isInComparisonRange(re.compareValue))("mat-calendar-body-preview-start",rt._isPreviewStart(re.compareValue))("mat-calendar-body-preview-end",rt._isPreviewEnd(re.compareValue))("mat-calendar-body-in-preview",rt._isInPreview(re.compareValue)),l.Y8G("ngClass",re.cssClasses)("tabindex",rt._isActiveCell(ye,He)?0:-1),l.BMQ("aria-label",re.ariaLabel)("aria-disabled",!re.enabled||null)("aria-pressed",rt._isSelected(re.compareValue))("aria-current",rt.todayValue===re.compareValue?"date":null)("aria-describedby",rt._getDescribedby(re.compareValue)),l.R7$(),l.AVh("mat-calendar-body-selected",rt._isSelected(re.compareValue))("mat-calendar-body-comparison-identical",rt._isComparisonIdentical(re.compareValue))("mat-calendar-body-today",rt.todayValue===re.compareValue),l.R7$(),l.SpI(" ",re.displayValue," ")}}function n(Ut,lt){if(1&Ut&&(l.j41(0,"tr",1),l.DNE(1,le,2,6,"td",4),l.Z7z(2,T,5,48,"td",5,l.fX1),l.k0s()),2&Ut){const re=lt.$implicit,He=lt.$index,ye=l.XpG();l.R7$(),l.vxM(0===He&&ye._firstRowOffset?1:-1),l.R7$(),l.Dyx(re)}}function c(Ut,lt){if(1&Ut&&(l.j41(0,"th",2)(1,"span",6),l.EFF(2),l.k0s(),l.j41(3,"span",3),l.EFF(4),l.k0s()()),2&Ut){const re=lt.$implicit;l.R7$(2),l.JRh(re.long),l.R7$(2),l.JRh(re.narrow)}}const m=["*"];function d(Ut,lt){}function C(Ut,lt){if(1&Ut){const re=l.RV6();l.j41(0,"mat-month-view",4),l.mxI("activeDateChange",function(ye){l.eBV(re);const rt=l.XpG();return l.DH7(rt.activeDate,ye)||(rt.activeDate=ye),l.Njj(ye)}),l.bIt("_userSelection",function(ye){l.eBV(re);const rt=l.XpG();return l.Njj(rt._dateSelected(ye))})("dragStarted",function(ye){l.eBV(re);const rt=l.XpG();return l.Njj(rt._dragStarted(ye))})("dragEnded",function(ye){l.eBV(re);const rt=l.XpG();return l.Njj(rt._dragEnded(ye))}),l.k0s()}if(2&Ut){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)("comparisonStart",re.comparisonStart)("comparisonEnd",re.comparisonEnd)("startDateAccessibleName",re.startDateAccessibleName)("endDateAccessibleName",re.endDateAccessibleName)("activeDrag",re._activeDrag)}}function A(Ut,lt){if(1&Ut){const re=l.RV6();l.j41(0,"mat-year-view",5),l.mxI("activeDateChange",function(ye){l.eBV(re);const rt=l.XpG();return l.DH7(rt.activeDate,ye)||(rt.activeDate=ye),l.Njj(ye)}),l.bIt("monthSelected",function(ye){l.eBV(re);const rt=l.XpG();return l.Njj(rt._monthSelectedInYearView(ye))})("selectedChange",function(ye){l.eBV(re);const rt=l.XpG();return l.Njj(rt._goToDateInView(ye,"month"))}),l.k0s()}if(2&Ut){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function k(Ut,lt){if(1&Ut){const re=l.RV6();l.j41(0,"mat-multi-year-view",6),l.mxI("activeDateChange",function(ye){l.eBV(re);const rt=l.XpG();return l.DH7(rt.activeDate,ye)||(rt.activeDate=ye),l.Njj(ye)}),l.bIt("yearSelected",function(ye){l.eBV(re);const rt=l.XpG();return l.Njj(rt._yearSelectedInMultiYearView(ye))})("selectedChange",function(ye){l.eBV(re);const rt=l.XpG();return l.Njj(rt._goToDateInView(ye,"year"))}),l.k0s()}if(2&Ut){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function _(Ut,lt){}const a=["button"],b=[[["","matDatepickerToggleIcon",""]]],z=["[matDatepickerToggleIcon]"];function N(Ut,lt){1&Ut&&(l.qSk(),l.j41(0,"svg",2),l.nrm(1,"path",3),l.k0s())}let We=(()=>{class Ut{constructor(){this.changes=new h.B,this.calendarLabel="Calendar",this.openCalendarLabel="Open calendar",this.closeCalendarLabel="Close calendar",this.prevMonthLabel="Previous month",this.nextMonthLabel="Next month",this.prevYearLabel="Previous year",this.nextYearLabel="Next year",this.prevMultiYearLabel="Previous 24 years",this.nextMultiYearLabel="Next 24 years",this.switchToMonthViewLabel="Choose date",this.switchToMultiYearViewLabel="Choose month and year",this.startDateLabel="Start date",this.endDateLabel="End date"}formatYearRange(re,He){return`${re} \u2013 ${He}`}formatYearRangeLabel(re,He){return`${re} to ${He}`}static{this.\u0275fac=function(He){return new(He||Ut)}}static{this.\u0275prov=l.jDH({token:Ut,factory:Ut.\u0275fac,providedIn:"root"})}}return Ut})();class oe{constructor(lt,re,He,ye,rt={},ht=lt,ii){this.value=lt,this.displayValue=re,this.ariaLabel=He,this.enabled=ye,this.cssClasses=rt,this.compareValue=ht,this.rawValue=ii}}let X=1;const se=(0,j.BQ)({passive:!1,capture:!0}),ae=(0,j.BQ)({passive:!0,capture:!0}),he=(0,j.BQ)({passive:!0});let Ie=(()=>{class Ut{ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}constructor(re,He){this._elementRef=re,this._ngZone=He,this._platform=(0,l.WQX)(j.OD),this._focusActiveCellAfterViewChecked=!1,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new l.bkB,this.previewChange=new l.bkB,this.activeDateChange=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this._didDragSinceMouseDown=!1,this._enterHandler=ye=>{if(this._skipNextFocus&&"focus"===ye.type)this._skipNextFocus=!1;else if(ye.target&&this.isRange){const rt=this._getCellFromElement(ye.target);rt&&this._ngZone.run(()=>this.previewChange.emit({value:rt.enabled?rt:null,event:ye}))}},this._touchmoveHandler=ye=>{if(!this.isRange)return;const rt=Ct(ye),ht=rt?this._getCellFromElement(rt):null;rt!==ye.target&&(this._didDragSinceMouseDown=!0),me(ye.target)&&ye.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:ht?.enabled?ht:null,event:ye}))},this._leaveHandler=ye=>{null!==this.previewEnd&&this.isRange&&("blur"!==ye.type&&(this._didDragSinceMouseDown=!0),ye.target&&this._getCellFromElement(ye.target)&&(!ye.relatedTarget||!this._getCellFromElement(ye.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:ye})))},this._mousedownHandler=ye=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const rt=ye.target&&this._getCellFromElement(ye.target);!rt||!this._isInRange(rt.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:rt.rawValue,event:ye})})},this._mouseupHandler=ye=>{if(!this.isRange)return;const rt=me(ye.target);rt?rt.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const ht=this._getCellFromElement(rt);this.dragEnded.emit({value:ht?.rawValue??null,event:ye})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:ye})})},this._touchendHandler=ye=>{const rt=Ct(ye);rt&&this._mouseupHandler({target:rt})},this._id="mat-calendar-body-"+X++,this._startDateLabelId=`${this._id}-start-date`,this._endDateLabelId=`${this._id}-end-date`,He.runOutsideAngular(()=>{const ye=re.nativeElement;ye.addEventListener("touchmove",this._touchmoveHandler,se),ye.addEventListener("mouseenter",this._enterHandler,ae),ye.addEventListener("focus",this._enterHandler,ae),ye.addEventListener("mouseleave",this._leaveHandler,ae),ye.addEventListener("blur",this._leaveHandler,ae),ye.addEventListener("mousedown",this._mousedownHandler,he),ye.addEventListener("touchstart",this._mousedownHandler,he),this._platform.isBrowser&&(window.addEventListener("mouseup",this._mouseupHandler),window.addEventListener("touchend",this._touchendHandler))})}_cellClicked(re,He){this._didDragSinceMouseDown||re.enabled&&this.selectedValueChange.emit({value:re.value,event:He})}_emitActiveDateChange(re,He){re.enabled&&this.activeDateChange.emit({value:re.value,event:He})}_isSelected(re){return this.startValue===re||this.endValue===re}ngOnChanges(re){const He=re.numCols,{rows:ye,numCols:rt}=this;(re.rows||He)&&(this._firstRowOffset=ye&&ye.length&&ye[0].length?rt-ye[0].length:0),(re.cellAspectRatio||He||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/rt+"%"),(He||!this._cellWidth)&&(this._cellWidth=100/rt+"%")}ngOnDestroy(){const re=this._elementRef.nativeElement;re.removeEventListener("touchmove",this._touchmoveHandler,se),re.removeEventListener("mouseenter",this._enterHandler,ae),re.removeEventListener("focus",this._enterHandler,ae),re.removeEventListener("mouseleave",this._leaveHandler,ae),re.removeEventListener("blur",this._leaveHandler,ae),re.removeEventListener("mousedown",this._mousedownHandler,he),re.removeEventListener("touchstart",this._mousedownHandler,he),this._platform.isBrowser&&(window.removeEventListener("mouseup",this._mouseupHandler),window.removeEventListener("touchend",this._touchendHandler))}_isActiveCell(re,He){let ye=re*this.numCols+He;return re&&(ye-=this._firstRowOffset),ye==this.activeCell}_focusActiveCell(re=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,Y.s)(1)).subscribe(()=>{setTimeout(()=>{const He=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");He&&(re||(this._skipNextFocus=!0),He.focus())})})})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(re){return Ee(re,this.startValue,this.endValue)}_isRangeEnd(re){return ue(re,this.startValue,this.endValue)}_isInRange(re){return Be(re,this.startValue,this.endValue,this.isRange)}_isComparisonStart(re){return Ee(re,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(re,He,ye){if(!this._isComparisonStart(re)||this._isRangeStart(re)||!this._isInRange(re))return!1;let rt=this.rows[He][ye-1];if(!rt){const ht=this.rows[He-1];rt=ht&&ht[ht.length-1]}return rt&&!this._isRangeEnd(rt.compareValue)}_isComparisonBridgeEnd(re,He,ye){if(!this._isComparisonEnd(re)||this._isRangeEnd(re)||!this._isInRange(re))return!1;let rt=this.rows[He][ye+1];if(!rt){const ht=this.rows[He+1];rt=ht&&ht[0]}return rt&&!this._isRangeStart(rt.compareValue)}_isComparisonEnd(re){return ue(re,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(re){return Be(re,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(re){return this.comparisonStart===this.comparisonEnd&&re===this.comparisonStart}_isPreviewStart(re){return Ee(re,this.previewStart,this.previewEnd)}_isPreviewEnd(re){return ue(re,this.previewStart,this.previewEnd)}_isInPreview(re){return Be(re,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(re){return this.isRange?this.startValue===re&&this.endValue===re?`${this._startDateLabelId} ${this._endDateLabelId}`:this.startValue===re?this._startDateLabelId:this.endValue===re?this._endDateLabelId:null:null}_getCellFromElement(re){const He=me(re);if(He){const ye=He.getAttribute("data-mat-row"),rt=He.getAttribute("data-mat-col");if(ye&&rt)return this.rows[parseInt(ye)][parseInt(rt)]}return null}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(l.aKT),l.rXU(l.SKi))}}static{this.\u0275cmp=l.VBU({type:Ut,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"],standalone:!0,features:[l.OA$,l.aNF],attrs:Me,decls:7,vars:5,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(He,ye){1&He&&(l.DNE(0,Ce,3,6,"tr",0),l.Z7z(1,n,4,1,"tr",1,l.fX1),l.j41(3,"label",2),l.EFF(4),l.k0s(),l.j41(5,"label",2),l.EFF(6),l.k0s()),2&He&&(l.vxM(ye._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)}.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)}.cdk-high-contrast-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);border-color:var(--mat-datepicker-calendar-date-outline-color)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}.cdk-high-contrast-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)}@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)}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color);color:var(--mat-datepicker-calendar-date-selected-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color)}.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)}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.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) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 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) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 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)}.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)}.cdk-high-contrast-active .mat-datepicker-popup:not(:empty),.cdk-high-contrast-active .mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.cdk-high-contrast-active .mat-calendar-body-today{outline:dotted 1px}.cdk-high-contrast-active .mat-calendar-body-cell::before,.cdk-high-contrast-active .mat-calendar-body-cell::after,.cdk-high-contrast-active .mat-calendar-body-selected{background:none}.cdk-high-contrast-active .mat-calendar-body-in-range::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-start::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.cdk-high-contrast-active .mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}'],encapsulation:2,changeDetection:0})}}return Ut})();function st(Ut){return"TD"===Ut?.nodeName}function me(Ut){let lt;return st(Ut)?lt=Ut:st(Ut.parentNode)?lt=Ut.parentNode:st(Ut.parentNode?.parentNode)&&(lt=Ut.parentNode.parentNode),null!=lt?.getAttribute("data-mat-row")?lt:null}function Ee(Ut,lt,re){return null!==re&<!==re&&Ut=lt&&Ut===re}function Be(Ut,lt,re,He){return He&&null!==lt&&null!==re&<!==re&&Ut>=lt&&Ut<=re}function Ct(Ut){const lt=Ut.changedTouches[0];return document.elementFromPoint(lt.clientX,lt.clientY)}class ct{constructor(lt,re){this.start=lt,this.end=re}}let dt=(()=>{class Ut{constructor(re,He){this.selection=re,this._adapter=He,this._selectionChanged=new h.B,this.selectionChanged=this._selectionChanged,this.selection=re}updateSelection(re,He){const ye=this.selection;this.selection=re,this._selectionChanged.next({selection:re,source:He,oldValue:ye})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(re){return this._adapter.isDateInstance(re)&&this._adapter.isValid(re)}static{this.\u0275fac=function(He){l.QTQ()}}static{this.\u0275prov=l.jDH({token:Ut,factory:Ut.\u0275fac})}}return Ut})(),Yt=(()=>{class Ut extends dt{constructor(re){super(null,re)}add(re){super.updateSelection(re,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const re=new Ut(this._adapter);return re.updateSelection(this.selection,this),re}static{this.\u0275fac=function(He){return new(He||Ut)(l.KVO(R.MJ))}}static{this.\u0275prov=l.jDH({token:Ut,factory:Ut.\u0275fac})}}return Ut})();const we={provide:dt,deps:[[new l.Xx1,new l.kdw,dt],R.MJ],useFactory:function _e(Ut,lt){return Ut||new Yt(lt)}},vt=new l.nKC("MAT_DATE_RANGE_SELECTION_STRATEGY");let yt=(()=>{class Ut{get activeDate(){return this._activeDate}set activeDate(re){const He=this._activeDate,ye=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(ye,this.minDate,this.maxDate),this._hasSameMonthAndYear(He,this._activeDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof ct?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setRanges(this._selected)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,He,ye,rt,ht){this._changeDetectorRef=re,this._dateFormats=He,this._dateAdapter=ye,this._dir=rt,this._rangeStrategy=ht,this._rerenderSubscription=S.yU.EMPTY,this.activeDrag=null,this.selectedChange=new l.bkB,this._userSelection=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,W.Z)(null)).subscribe(()=>this._init())}ngOnChanges(re){const He=re.comparisonStart||re.comparisonEnd;He&&!He.firstChange&&this._setRanges(this.selected),re.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(re){const He=re.value,ye=this._getDateFromDayOfMonth(He);let rt,ht;this._selected instanceof ct?(rt=this._getDateInCurrentMonth(this._selected.start),ht=this._getDateInCurrentMonth(this._selected.end)):rt=ht=this._getDateInCurrentMonth(this._selected),(rt!==He||ht!==He)&&this.selectedChange.emit(ye),this._userSelection.emit({value:ye,event:re.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(re){const ye=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(re.value),this._dateAdapter.compareDate(ye,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(re){const He=this._activeDate,ye=this._isRtl();switch(re.keyCode){case I.UQ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,ye?1:-1);break;case I.LE:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,ye?-1:1);break;case I.i7:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case I.n6:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case I.yZ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case I.Kp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case I.w_:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case I.dB:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case I.Fm:case I.t6:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&re.preventDefault());case I._f:return void(null!=this._previewEnd&&!(0,I.rp)(re)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:re}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:re})),re.preventDefault(),re.stopPropagation()));default:return}this._dateAdapter.compareDate(He,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===I.t6||re.keyCode===I.Fm)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate=this._getCellCompareValue(this._dateAdapter.today()),this._monthLabel=this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase();let re=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset=(7+this._dateAdapter.getDayOfWeek(re)-this._dateAdapter.getFirstDayOfWeek())%7,this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(re){this._matCalendarBody._focusActiveCell(re)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:re,value:He}){if(this._rangeStrategy){const ye=He?He.rawValue:null,rt=this._rangeStrategy.createPreview(ye,this.selected,re);if(this._previewStart=this._getCellCompareValue(rt.start),this._previewEnd=this._getCellCompareValue(rt.end),this.activeDrag&&ye){const ht=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,ye,re);ht&&(this._previewStart=this._getCellCompareValue(ht.start),this._previewEnd=this._getCellCompareValue(ht.end))}this._changeDetectorRef.detectChanges()}}_dragEnded(re){if(this.activeDrag)if(re.value){const He=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,re.value,re.event);this.dragEnded.emit({value:He??null,event:re.event})}else this.dragEnded.emit({value:null,event:re.event})}_getDateFromDayOfMonth(re){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),re)}_initWeekdays(){const re=this._dateAdapter.getFirstDayOfWeek(),He=this._dateAdapter.getDayOfWeekNames("narrow");let rt=this._dateAdapter.getDayOfWeekNames("long").map((ht,ii)=>({long:ht,narrow:He[ii]}));this._weekdays=rt.slice(re).concat(rt.slice(0,re))}_createWeekCells(){const re=this._dateAdapter.getNumDaysInMonth(this.activeDate),He=this._dateAdapter.getDateNames();this._weeks=[[]];for(let ye=0,rt=this._firstWeekOffset;ye=0)&&(!this.maxDate||this._dateAdapter.compareDate(re,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(re))}_getDateInCurrentMonth(re){return re&&this._hasSameMonthAndYear(re,this.activeDate)?this._dateAdapter.getDate(re):null}_hasSameMonthAndYear(re,He){return!(!re||!He||this._dateAdapter.getMonth(re)!=this._dateAdapter.getMonth(He)||this._dateAdapter.getYear(re)!=this._dateAdapter.getYear(He))}_getCellCompareValue(re){if(re){const He=this._dateAdapter.getYear(re),ye=this._dateAdapter.getMonth(re),rt=this._dateAdapter.getDate(re);return new Date(He,ye,rt).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(re){re instanceof ct?(this._rangeStart=this._getCellCompareValue(re.start),this._rangeEnd=this._getCellCompareValue(re.end),this._isRange=!0):(this._rangeStart=this._rangeEnd=this._getCellCompareValue(re),this._isRange=!1),this._comparisonRangeStart=this._getCellCompareValue(this.comparisonStart),this._comparisonRangeEnd=this._getCellCompareValue(this.comparisonEnd)}_canSelect(re){return!this.dateFilter||this.dateFilter(re)}_clearPreview(){this._previewStart=this._previewEnd=null}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(l.gRc),l.rXU(R.de,8),l.rXU(R.MJ,8),l.rXU(V.dS,8),l.rXU(vt,8))}}static{this.\u0275cmp=l.VBU({type:Ut,selectors:[["mat-month-view"]],viewQuery:function(He,ye){if(1&He&&l.GBs(Ie,5),2&He){let rt;l.mGM(rt=l.lsd())&&(ye._matCalendarBody=rt.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"],standalone:!0,features:[l.OA$,l.aNF],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(He,ye){1&He&&(l.j41(0,"table",0)(1,"thead",1)(2,"tr"),l.Z7z(3,c,5,2,"th",2,l.fX1),l.k0s(),l.j41(5,"tr",3),l.nrm(6,"th",4),l.k0s()(),l.j41(7,"tbody",5),l.bIt("selectedValueChange",function(ht){return ye._dateSelected(ht)})("activeDateChange",function(ht){return ye._updateActiveDate(ht)})("previewChange",function(ht){return ye._previewChanged(ht)})("dragStarted",function(ht){return ye.dragStarted.emit(ht)})("dragEnded",function(ht){return ye._dragEnded(ht)})("keyup",function(ht){return ye._handleCalendarBodyKeyup(ht)})("keydown",function(ht){return ye._handleCalendarBodyKeydown(ht)}),l.k0s()()),2&He&&(l.R7$(3),l.Dyx(ye._weekdays),l.R7$(4),l.Y8G("label",ye._monthLabel)("rows",ye._weeks)("todayValue",ye._todayDate)("startValue",ye._rangeStart)("endValue",ye._rangeEnd)("comparisonStart",ye._comparisonRangeStart)("comparisonEnd",ye._comparisonRangeEnd)("previewStart",ye._previewStart)("previewEnd",ye._previewEnd)("isRange",ye._isRange)("labelMinRequiredCells",3)("activeCell",ye._dateAdapter.getDate(ye.activeDate)-1)("startDateAccessibleName",ye.startDateAccessibleName)("endDateAccessibleName",ye.endDateAccessibleName))},dependencies:[Ie],encapsulation:2,changeDetection:0})}}return Ut})();const jt=24;let et=(()=>{class Ut{get activeDate(){return this._activeDate}set activeDate(re){let He=this._activeDate;const ye=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(ye,this.minDate,this.maxDate),Ae(this._dateAdapter,He,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof ct?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedYear(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,He,ye){this._changeDetectorRef=re,this._dateAdapter=He,this._dir=ye,this._rerenderSubscription=S.yU.EMPTY,this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,W.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const He=this._dateAdapter.getYear(this._activeDate)-It(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let ye=0,rt=[];yethis._createCellForYear(ht))),rt=[]);this._changeDetectorRef.markForCheck()}_yearSelected(re){const He=re.value,ye=this._dateAdapter.createDate(He,0,1),rt=this._getDateFromYear(He);this.yearSelected.emit(ye),this.selectedChange.emit(rt)}_updateActiveDate(re){const ye=this._activeDate;this.activeDate=this._getDateFromYear(re.value),this._dateAdapter.compareDate(ye,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const He=this._activeDate,ye=this._isRtl();switch(re.keyCode){case I.UQ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,ye?1:-1);break;case I.LE:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,ye?-1:1);break;case I.i7:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case I.n6:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case I.yZ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-It(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case I.Kp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,jt-It(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case I.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*-jt:-jt);break;case I.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*jt:jt);break;case I.Fm:case I.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(He,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===I.t6||re.keyCode===I.Fm)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_getActiveCell(){return It(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(re){const He=this._dateAdapter.getMonth(this.activeDate),ye=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(re,He,1));return this._dateAdapter.createDate(re,He,Math.min(this._dateAdapter.getDate(this.activeDate),ye))}_createCellForYear(re){const He=this._dateAdapter.createDate(re,0,1),ye=this._dateAdapter.getYearName(He),rt=this.dateClass?this.dateClass(He,"multi-year"):void 0;return new oe(re,ye,ye,this._shouldEnableYear(re),rt)}_shouldEnableYear(re){if(null==re||this.maxDate&&re>this._dateAdapter.getYear(this.maxDate)||this.minDate&&re{class Ut{get activeDate(){return this._activeDate}set activeDate(re){let He=this._activeDate;const ye=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(ye,this.minDate,this.maxDate),this._dateAdapter.getYear(He)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof ct?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedMonth(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,He,ye,rt){this._changeDetectorRef=re,this._dateFormats=He,this._dateAdapter=ye,this._dir=rt,this._rerenderSubscription=S.yU.EMPTY,this.selectedChange=new l.bkB,this.monthSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,W.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(re){const He=re.value,ye=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),He,1);this.monthSelected.emit(ye);const rt=this._getDateFromMonth(He);this.selectedChange.emit(rt)}_updateActiveDate(re){const ye=this._activeDate;this.activeDate=this._getDateFromMonth(re.value),this._dateAdapter.compareDate(ye,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const He=this._activeDate,ye=this._isRtl();switch(re.keyCode){case I.UQ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,ye?1:-1);break;case I.LE:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,ye?-1:1);break;case I.i7:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case I.n6:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case I.yZ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case I.Kp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case I.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?-10:-1);break;case I.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10:1);break;case I.Fm:case I.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(He,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===I.t6||re.keyCode===I.Fm)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth=this._getMonthInCurrentYear(this._dateAdapter.today()),this._yearLabel=this._dateAdapter.getYearName(this.activeDate);let re=this._dateAdapter.getMonthNames("short");this._months=[[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(He=>He.map(ye=>this._createCellForMonth(ye,re[ye]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(re){return re&&this._dateAdapter.getYear(re)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(re):null}_getDateFromMonth(re){const He=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),ye=this._dateAdapter.getNumDaysInMonth(He);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,Math.min(this._dateAdapter.getDate(this.activeDate),ye))}_createCellForMonth(re,He){const ye=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),rt=this._dateAdapter.format(ye,this._dateFormats.display.monthYearA11yLabel),ht=this.dateClass?this.dateClass(ye,"year"):void 0;return new oe(re,He.toLocaleUpperCase(),rt,this._shouldEnableMonth(re),ht)}_shouldEnableMonth(re){const He=this._dateAdapter.getYear(this.activeDate);if(null==re||this._isYearAndMonthAfterMaxDate(He,re)||this._isYearAndMonthBeforeMinDate(He,re))return!1;if(!this.dateFilter)return!0;for(let rt=this._dateAdapter.createDate(He,re,1);this._dateAdapter.getMonth(rt)==re;rt=this._dateAdapter.addCalendarDays(rt,1))if(this.dateFilter(rt))return!0;return!1}_isYearAndMonthAfterMaxDate(re,He){if(this.maxDate){const ye=this._dateAdapter.getYear(this.maxDate),rt=this._dateAdapter.getMonth(this.maxDate);return re>ye||re===ye&&He>rt}return!1}_isYearAndMonthBeforeMinDate(re,He){if(this.minDate){const ye=this._dateAdapter.getYear(this.minDate),rt=this._dateAdapter.getMonth(this.minDate);return re{class Ut{constructor(re,He,ye,rt,ht){this._intl=re,this.calendar=He,this._dateAdapter=ye,this._dateFormats=rt,this._id="mat-calendar-header-"+Se++,this._periodButtonLabelId=`${this._id}-period-label`,this.calendar.stateChanges.subscribe(()=>ht.markForCheck())}get periodButtonText(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRange(...this._formatMinAndMaxYearLabels())}get periodButtonDescription(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRangeLabel(...this._formatMinAndMaxYearLabels())}get periodButtonLabel(){return"month"==this.calendar.currentView?this._intl.switchToMultiYearViewLabel:this._intl.switchToMonthViewLabel}get prevButtonLabel(){return{month:this._intl.prevMonthLabel,year:this._intl.prevYearLabel,"multi-year":this._intl.prevMultiYearLabel}[this.calendar.currentView]}get nextButtonLabel(){return{month:this._intl.nextMonthLabel,year:this._intl.nextYearLabel,"multi-year":this._intl.nextMultiYearLabel}[this.calendar.currentView]}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){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:-jt)}nextClicked(){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:jt)}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)}_isSameView(re,He){return"month"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(He)&&this._dateAdapter.getMonth(re)==this._dateAdapter.getMonth(He):"year"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(He):Ae(this._dateAdapter,re,He,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const He=this._dateAdapter.getYear(this.calendar.activeDate)-It(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),ye=He+jt-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(He,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(ye,0,1))]}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(We),l.rXU((0,l.Rfq)(()=>ce)),l.rXU(R.MJ,8),l.rXU(R.de,8),l.rXU(l.gRc))}}static{this.\u0275cmp=l.VBU({type:Ut,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],standalone:!0,features:[l.aNF],ngContentSelectors:m,decls:13,vars:11,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],[1,"cdk-visually-hidden",3,"id"],["mat-button","","type","button","aria-live","polite",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"],["mat-icon-button","","type","button",1,"mat-calendar-previous-button",3,"click","disabled"],["mat-icon-button","","type","button",1,"mat-calendar-next-button",3,"click","disabled"]],template:function(He,ye){1&He&&(l.NAR(),l.j41(0,"div",0)(1,"div",1)(2,"label",2),l.EFF(3),l.k0s(),l.j41(4,"button",3),l.bIt("click",function(){return ye.currentPeriodClicked()}),l.j41(5,"span",4),l.EFF(6),l.k0s(),l.qSk(),l.j41(7,"svg",5),l.nrm(8,"polygon",6),l.k0s()(),l.joV(),l.nrm(9,"div",7),l.SdG(10),l.j41(11,"button",8),l.bIt("click",function(){return ye.previousClicked()}),l.k0s(),l.j41(12,"button",9),l.bIt("click",function(){return ye.nextClicked()}),l.k0s()()()),2&He&&(l.R7$(2),l.Y8G("id",ye._periodButtonLabelId),l.R7$(),l.JRh(ye.periodButtonDescription),l.R7$(),l.BMQ("aria-label",ye.periodButtonLabel)("aria-describedby",ye._periodButtonLabelId),l.R7$(2),l.JRh(ye.periodButtonText),l.R7$(),l.AVh("mat-calendar-invert","month"!==ye.calendar.currentView),l.R7$(4),l.Y8G("disabled",!ye.previousEnabled()),l.BMQ("aria-label",ye.prevButtonLabel),l.R7$(),l.Y8G("disabled",!ye.nextEnabled()),l.BMQ("aria-label",ye.nextButtonLabel))},dependencies:[w.$z,w.iY],encapsulation:2,changeDetection:0})}}return Ut})(),ce=(()=>{class Ut{get startAt(){return this._startAt}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get selected(){return this._selected}set selected(re){this._selected=re instanceof ct?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get activeDate(){return this._clampedActiveDate}set activeDate(re){this._clampedActiveDate=this._dateAdapter.clampDate(re,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}get currentView(){return this._currentView}set currentView(re){const He=this._currentView!==re?re:null;this._currentView=re,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),He&&this.viewChanged.emit(He)}constructor(re,He,ye,rt){this._dateAdapter=He,this._dateFormats=ye,this._changeDetectorRef=rt,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this._userSelection=new l.bkB,this._userDragDrop=new l.bkB,this._activeDrag=null,this.stateChanges=new h.B,this._intlChanges=re.changes.subscribe(()=>{rt.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new x.A8(this.headerComponent||Te),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(re){const He=re.minDate&&!this._dateAdapter.sameDate(re.minDate.previousValue,re.minDate.currentValue)?re.minDate:void 0,ye=re.maxDate&&!this._dateAdapter.sameDate(re.maxDate.previousValue,re.maxDate.currentValue)?re.maxDate:void 0,rt=He||ye||re.dateFilter;if(rt&&!rt.firstChange){const ht=this._getCurrentViewComponent();ht&&(this._changeDetectorRef.detectChanges(),ht._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(re){const He=re.value;(this.selected instanceof ct||He&&!this._dateAdapter.sameDate(He,this.selected))&&this.selectedChange.emit(He),this._userSelection.emit(re)}_yearSelectedInMultiYearView(re){this.yearSelected.emit(re)}_monthSelectedInYearView(re){this.monthSelected.emit(re)}_goToDateInView(re,He){this.activeDate=re,this.currentView=He}_dragStarted(re){this._activeDrag=re}_dragEnded(re){this._activeDrag&&(re.value&&this._userDragDrop.emit(re),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(We),l.rXU(R.MJ,8),l.rXU(R.de,8),l.rXU(l.gRc))}}static{this.\u0275cmp=l.VBU({type:Ut,selectors:[["mat-calendar"]],viewQuery:function(He,ye){if(1&He&&(l.GBs(yt,5),l.GBs(xt,5),l.GBs(et,5)),2&He){let rt;l.mGM(rt=l.lsd())&&(ye.monthView=rt.first),l.mGM(rt=l.lsd())&&(ye.yearView=rt.first),l.mGM(rt=l.lsd())&&(ye.multiYearView=rt.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"],standalone:!0,features:[l.Jv_([we]),l.OA$,l.aNF],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(He,ye){if(1&He&&(l.DNE(0,d,0,0,"ng-template",0),l.j41(1,"div",1),l.DNE(2,C,1,11,"mat-month-view",2)(3,A,1,6,"mat-year-view",3)(4,k,1,6,"mat-multi-year-view",3),l.k0s()),2&He){let rt;l.Y8G("cdkPortalOutlet",ye._calendarHeaderPortal),l.R7$(2),l.vxM("month"===(rt=ye.currentView)?2:"year"===rt?3:"multi-year"===rt?4:-1)}},dependencies:[x.I3,e.vR,yt,xt,et],styles:['.mat-calendar{display:block;font-family:var(--mat-datepicker-calendar-text-font);font-size:var(--mat-datepicker-calendar-text-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);font-weight:var(--mat-datepicker-calendar-period-button-text-weight);--mdc-text-button-label-text-color:var(--mat-datepicker-calendar-period-button-text-color)}.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)}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.cdk-high-contrast-active .mat-calendar-arrow{fill:CanvasText}.mat-calendar-previous-button,.mat-calendar-next-button{position:relative}.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)}.mat-calendar-previous-button::after,.mat-calendar-next-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:"";margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.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);font-size:var(--mat-datepicker-calendar-header-text-size);font-weight:var(--mat-datepicker-calendar-header-text-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)}.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:""}'],encapsulation:2,changeDetection:0})}}return Ut})();const Z={transformPanel:(0,ie.hZ)("transformPanel",[(0,ie.kY)("void => enter-dropdown",(0,ie.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ie.i7)([(0,ie.iF)({opacity:0,transform:"scale(1, 0.8)"}),(0,ie.iF)({opacity:1,transform:"scale(1, 1)"})]))),(0,ie.kY)("void => enter-dialog",(0,ie.i0)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,ie.i7)([(0,ie.iF)({opacity:0,transform:"scale(0.7)"}),(0,ie.iF)({transform:"none",opacity:1})]))),(0,ie.kY)("* => void",(0,ie.i0)("100ms linear",(0,ie.iF)({opacity:0})))]),fadeInCalendar:(0,ie.hZ)("fadeInCalendar",[(0,ie.wk)("void",(0,ie.iF)({opacity:0})),(0,ie.wk)("enter",(0,ie.iF)({opacity:1})),(0,ie.kY)("void => *",(0,ie.i0)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let Re=0;const Pe=new l.nKC("mat-datepicker-scroll-strategy",{providedIn:"root",factory:()=>{const Ut=(0,l.WQX)(t.hJ);return()=>Ut.scrollStrategies.reposition()}}),Ke={provide:Pe,deps:[t.hJ],useFactory:function pt(Ut){return()=>Ut.scrollStrategies.reposition()}};let Fe=(()=>{class Ut{constructor(re,He,ye,rt,ht,ii){this._elementRef=re,this._changeDetectorRef=He,this._globalModel=ye,this._dateAdapter=rt,this._rangeSelectionStrategy=ht,this._subscriptions=new S.yU,this._animationDone=new h.B,this._isAnimating=!1,this._actionsPortal=null,this._closeButtonText=ii.closeCalendarLabel}ngOnInit(){this._animationState=this.datepicker.touchUi?"enter-dialog":"enter-dropdown"}ngAfterViewInit(){this._subscriptions.add(this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})),this._calendar.focusActiveCell()}ngOnDestroy(){this._subscriptions.unsubscribe(),this._animationDone.complete()}_handleUserSelection(re){const He=this._model.selection,ye=re.value,rt=He instanceof ct;if(rt&&this._rangeSelectionStrategy){const ht=this._rangeSelectionStrategy.selectionFinished(ye,He,re.event);this._model.updateSelection(ht,this)}else ye&&(rt||!this._dateAdapter.sameDate(ye,He))&&this._model.add(ye);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(re){this._model.updateSelection(re.value,this)}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_handleAnimationEvent(re){this._isAnimating="start"===re.phaseName,this._isAnimating||this._animationDone.next()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(re,He){this._model=re?this._globalModel.clone():this._globalModel,this._actionsPortal=re,He&&this._changeDetectorRef.detectChanges()}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(l.aKT),l.rXU(l.gRc),l.rXU(dt),l.rXU(R.MJ),l.rXU(vt,8),l.rXU(We))}}static{this.\u0275cmp=l.VBU({type:Ut,selectors:[["mat-datepicker-content"]],viewQuery:function(He,ye){if(1&He&&l.GBs(ce,5),2&He){let rt;l.mGM(rt=l.lsd())&&(ye._calendar=rt.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:5,hostBindings:function(He,ye){1&He&&l.Kam("@transformPanel.start",function(ht){return ye._handleAnimationEvent(ht)})("@transformPanel.done",function(ht){return ye._handleAnimationEvent(ht)}),2&He&&(l.zvX("@transformPanel",ye._animationState),l.HbH(ye.color?"mat-"+ye.color:""),l.AVh("mat-datepicker-content-touch",ye.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],standalone:!0,features:[l.aNF],decls:5,vars:27,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","mat-raised-button","",1,"mat-datepicker-close-button",3,"focus","blur","click","color"]],template:function(He,ye){if(1&He&&(l.j41(0,"div",0)(1,"mat-calendar",1),l.bIt("yearSelected",function(ht){return ye.datepicker._selectYear(ht)})("monthSelected",function(ht){return ye.datepicker._selectMonth(ht)})("viewChanged",function(ht){return ye.datepicker._viewChanged(ht)})("_userSelection",function(ht){return ye._handleUserSelection(ht)})("_userDragDrop",function(ht){return ye._handleUserDragDrop(ht)}),l.k0s(),l.DNE(2,_,0,0,"ng-template",2),l.j41(3,"button",3),l.bIt("focus",function(){return ye._closeButtonFocused=!0})("blur",function(){return ye._closeButtonFocused=!1})("click",function(){return ye.datepicker.close()}),l.EFF(4),l.k0s()()),2&He){let rt;l.AVh("mat-datepicker-content-container-with-custom-header",ye.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",ye._actionsPortal),l.BMQ("aria-modal",!0)("aria-labelledby",null!==(rt=ye._dialogLabelId)&&void 0!==rt?rt:void 0),l.R7$(),l.HbH(ye.datepicker.panelClass),l.Y8G("id",ye.datepicker.id)("startAt",ye.datepicker.startAt)("startView",ye.datepicker.startView)("minDate",ye.datepicker._getMinDate())("maxDate",ye.datepicker._getMaxDate())("dateFilter",ye.datepicker._getDateFilter())("headerComponent",ye.datepicker.calendarHeaderComponent)("selected",ye._getSelected())("dateClass",ye.datepicker.dateClass)("comparisonStart",ye.comparisonStart)("comparisonEnd",ye.comparisonEnd)("@fadeInCalendar","enter")("startDateAccessibleName",ye.startDateAccessibleName)("endDateAccessibleName",ye.endDateAccessibleName),l.R7$(),l.Y8G("cdkPortalOutlet",ye._actionsPortal),l.R7$(),l.AVh("cdk-visually-hidden",!ye._closeButtonFocused),l.Y8G("color",ye.color||"primary"),l.R7$(),l.JRh(ye._closeButtonText)}},dependencies:[e.kB,ce,x.I3,w.$z],styles:[".mat-datepicker-content{display:block;border-radius:4px;background-color:var(--mat-datepicker-calendar-container-background-color);color:var(--mat-datepicker-calendar-container-text-color);box-shadow:var(--mat-datepicker-calendar-container-elevation-shadow);border-radius:var(--mat-datepicker-calendar-container-shape)}.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}.ng-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);border-radius:var(--mat-datepicker-calendar-container-touch-shape);position:relative;overflow:visible}.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}@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}}"],encapsulation:2,data:{animation:[Z.transformPanel,Z.fadeInCalendar]},changeDetection:0})}}return Ut})(),Ge=(()=>{class Ut{get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(re){this._color=re}get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(re){re!==this._disabled&&(this._disabled=re,this.stateChanges.next(void 0))}get panelClass(){return this._panelClass}set panelClass(re){this._panelClass=(0,J.cc)(re)}get opened(){return this._opened}set opened(re){re?this.open():this.close()}_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}constructor(re,He,ye,rt,ht,ii,di){this._overlay=re,this._ngZone=He,this._viewContainerRef=ye,this._dateAdapter=ht,this._dir=ii,this._model=di,this._inputStateChanges=S.yU.EMPTY,this._document=(0,l.WQX)(D.qQ),this.startView="month",this.touchUi=!1,this.xPosition="start",this.yPosition="below",this.restoreFocus=!0,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this.openedStream=new l.bkB,this.closedStream=new l.bkB,this._opened=!1,this.id="mat-datepicker-"+Re++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new h.B,this._scrollStrategy=rt}ngOnChanges(re){const He=re.xPosition||re.yPosition;if(He&&!He.firstChange&&this._overlayRef){const ye=this._overlayRef.getConfig().positionStrategy;ye instanceof t.rW&&(this._setConnectedPositions(ye),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(re){this._model.add(re)}_selectYear(re){this.yearSelected.emit(re)}_selectMonth(re){this.monthSelected.emit(re)}_viewChanged(re){this.viewChanged.emit(re)}registerInput(re){return this._inputStateChanges.unsubscribe(),this.datepickerInput=re,this._inputStateChanges=re.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(re){this._actionsPortal=re,this._componentRef?.instance._assignActions(re,!0)}removeActions(re){re===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,j.vc)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const re=this.restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,He=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:ye,location:rt}=this._componentRef;ye._startExitAnimation(),ye._animationDone.pipe((0,Y.s)(1)).subscribe(()=>{const ht=this._document.activeElement;re&&(!ht||ht===this._document.activeElement||rt.nativeElement.contains(ht))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()})}re?setTimeout(He):He()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(re){re.datepicker=this,re.color=this.color,re._dialogLabelId=this.datepickerInput.getOverlayLabelId(),re._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const re=this.touchUi,He=new x.A8(Fe,this._viewContainerRef),ye=this._overlayRef=this._overlay.create(new t.rR({positionStrategy:re?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[re?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir,scrollStrategy:re?this._overlay.scrollStrategies.block():this._scrollStrategy(),panelClass:"mat-datepicker-"+(re?"dialog":"popup")}));this._getCloseStream(ye).subscribe(rt=>{rt&&rt.preventDefault(),this.close()}),ye.keydownEvents().subscribe(rt=>{const ht=rt.keyCode;(ht===I.i7||ht===I.n6||ht===I.UQ||ht===I.LE||ht===I.w_||ht===I.dB)&&rt.preventDefault()}),this._componentRef=ye.attach(He),this._forwardContentValues(this._componentRef.instance),re||this._ngZone.onStable.pipe((0,Y.s)(1)).subscribe(()=>ye.updatePosition())}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return this._overlay.position().global().centerHorizontally().centerVertically()}_getDropdownStrategy(){const re=this._overlay.position().flexibleConnectedTo(this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(re)}_setConnectedPositions(re){const He="end"===this.xPosition?"end":"start",ye="start"===He?"end":"start",rt="above"===this.yPosition?"bottom":"top",ht="top"===rt?"bottom":"top";return re.withPositions([{originX:He,originY:ht,overlayX:He,overlayY:rt},{originX:He,originY:rt,overlayX:He,overlayY:ht},{originX:ye,originY:ht,overlayX:ye,overlayY:rt},{originX:ye,originY:rt,overlayX:ye,overlayY:ht}])}_getCloseStream(re){const He=["ctrlKey","shiftKey","metaKey"];return(0,y.h)(re.backdropClick(),re.detachments(),re.keydownEvents().pipe((0,Q.p)(ye=>ye.keyCode===I._f&&!(0,I.rp)(ye)||this.datepickerInput&&(0,I.rp)(ye,"altKey")&&ye.keyCode===I.i7&&He.every(rt=>!(0,I.rp)(ye,rt)))))}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(t.hJ),l.rXU(l.SKi),l.rXU(l.c1b),l.rXU(Pe),l.rXU(R.MJ,8),l.rXU(V.dS,8),l.rXU(dt))}}static{this.\u0275dir=l.FsC({type:Ut,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:[2,"touchUi","touchUi",l.L39],disabled:[2,"disabled","disabled",l.L39],xPosition:"xPosition",yPosition:"yPosition",restoreFocus:[2,"restoreFocus","restoreFocus",l.L39],dateClass:"dateClass",panelClass:"panelClass",opened:[2,"opened","opened",l.L39]},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[l.GFd,l.OA$]})}}return Ut})(),qe=(()=>{class Ut extends Ge{static{this.\u0275fac=(()=>{let re;return function(ye){return(re||(re=l.xGo(Ut)))(ye||Ut)}})()}static{this.\u0275cmp=l.VBU({type:Ut,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],standalone:!0,features:[l.Jv_([we,{provide:Ge,useExisting:Ut}]),l.Vt3,l.aNF],decls:0,vars:0,template:function(He,ye){},encapsulation:2,changeDetection:0})}}return Ut})();class at{constructor(lt,re){this.target=lt,this.targetElement=re,this.value=this.target.value}}let Lt=(()=>{class Ut{get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(re){this._assignValueProgrammatically(re)}get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(re){const He=re,ye=this._elementRef.nativeElement;this._disabled!==He&&(this._disabled=He,this.stateChanges.next(void 0)),He&&this._isInitialized&&ye.blur&&ye.blur()}_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(re){this._model=re,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(He=>{if(this._shouldHandleChangeEvent(He)){const ye=this._getValueFromModel(He.selection);this._lastValueValid=this._isValidValue(ye),this._cvaOnChange(ye),this._onTouched(),this._formatValue(ye),this.dateInput.emit(new at(this,this._elementRef.nativeElement)),this.dateChange.emit(new at(this,this._elementRef.nativeElement))}})}constructor(re,He,ye){this._elementRef=re,this._dateAdapter=He,this._dateFormats=ye,this.dateChange=new l.bkB,this.dateInput=new l.bkB,this.stateChanges=new h.B,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=S.yU.EMPTY,this._localeSubscription=S.yU.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=rt=>{const ht=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(rt.value));return!ht||this._matchesFilter(ht)?null:{matDatepickerFilter:!0}},this._minValidator=rt=>{const ht=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(rt.value)),ii=this._getMinDate();return!ii||!ht||this._dateAdapter.compareDate(ii,ht)<=0?null:{matDatepickerMin:{min:ii,actual:ht}}},this._maxValidator=rt=>{const ht=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(rt.value)),ii=this._getMaxDate();return!ii||!ht||this._dateAdapter.compareDate(ii,ht)>=0?null:{matDatepickerMax:{max:ii,actual:ht}}},this._lastValueValid=!1,this._localeSubscription=He.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(re){(function pi(Ut,lt){const re=Object.keys(Ut);for(let He of re){const{previousValue:ye,currentValue:rt}=Ut[He];if(!lt.isDateInstance(ye)||!lt.isDateInstance(rt))return!0;if(!lt.sameDate(ye,rt))return!0}return!1})(re,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(re){this._validatorOnChange=re}validate(re){return this._validator?this._validator(re):null}writeValue(re){this._assignValueProgrammatically(re)}registerOnChange(re){this._cvaOnChange=re}registerOnTouched(re){this._onTouched=re}setDisabledState(re){this.disabled=re}_onKeydown(re){(0,I.rp)(re,"altKey")&&re.keyCode===I.n6&&["ctrlKey","shiftKey","metaKey"].every(rt=>!(0,I.rp)(re,rt))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),re.preventDefault())}_onInput(re){const He=this._lastValueValid;let ye=this._dateAdapter.parse(re,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(ye),ye=this._dateAdapter.getValidDateOrNull(ye);const rt=!this._dateAdapter.sameDate(ye,this.value);!ye||rt?this._cvaOnChange(ye):(re&&!this.value&&this._cvaOnChange(ye),He!==this._lastValueValid&&this._validatorOnChange()),rt&&(this._assignValue(ye),this.dateInput.emit(new at(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new at(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(re){this._elementRef.nativeElement.value=null!=re?this._dateAdapter.format(re,this._dateFormats.display.dateInput):""}_assignValue(re){this._model?(this._assignValueToModel(re),this._pendingValue=null):this._pendingValue=re}_isValidValue(re){return!re||this._dateAdapter.isValid(re)}_parentDisabled(){return!1}_assignValueProgrammatically(re){re=this._dateAdapter.deserialize(re),this._lastValueValid=this._isValidValue(re),re=this._dateAdapter.getValidDateOrNull(re),this._assignValue(re),this._formatValue(re)}_matchesFilter(re){const He=this._getDateFilter();return!He||He(re)}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(l.aKT),l.rXU(R.MJ,8),l.rXU(R.de,8))}}static{this.\u0275dir=l.FsC({type:Ut,inputs:{value:"value",disabled:[2,"disabled","disabled",l.L39]},outputs:{dateChange:"dateChange",dateInput:"dateInput"},standalone:!0,features:[l.GFd,l.OA$]})}}return Ut})();const $t={provide:ee.kq,useExisting:(0,l.Rfq)(()=>Ui),multi:!0},Kt={provide:ee.cz,useExisting:(0,l.Rfq)(()=>Ui),multi:!0};let Ui=(()=>{class Ut extends Lt{set matDatepicker(re){re&&(this._datepicker=re,this._closedSubscription=re.closedStream.subscribe(()=>this._onTouched()),this._registerModel(re.registerInput(this)))}get min(){return this._min}set min(re){const He=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(He,this._min)||(this._min=He,this._validatorOnChange())}get max(){return this._max}set max(re){const He=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(He,this._max)||(this._max=He,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(re){const He=this._matchesFilter(this.value);this._dateFilter=re,this._matchesFilter(this.value)!==He&&this._validatorOnChange()}constructor(re,He,ye,rt){super(re,He,ye),this._formField=rt,this._closedSubscription=S.yU.EMPTY,this._validator=ee.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()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(re){return re}_assignValueToModel(re){this._model&&this._model.updateSelection(re,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(re){return re.source!==this}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(l.aKT),l.rXU(R.MJ,8),l.rXU(R.de,8),l.rXU(fe.xb,8))}}static{this.\u0275dir=l.FsC({type:Ut,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(He,ye){1&He&&l.bIt("input",function(ht){return ye._onInput(ht.target.value)})("change",function(){return ye._onChange()})("blur",function(){return ye._onBlur()})("keydown",function(ht){return ye._onKeydown(ht)}),2&He&&(l.Mr5("disabled",ye.disabled),l.BMQ("aria-haspopup",ye._datepicker?"dialog":null)("aria-owns",(null==ye._datepicker?null:ye._datepicker.opened)&&ye._datepicker.id||null)("min",ye.min?ye._dateAdapter.toIso8601(ye.min):null)("max",ye.max?ye._dateAdapter.toIso8601(ye.max):null)("data-mat-calendar",ye._datepicker?ye._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[0,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],standalone:!0,features:[l.Jv_([$t,Kt,{provide:ne.Oh,useExisting:Ut}]),l.Vt3]})}}return Ut})(),ti=(()=>{class Ut{static{this.\u0275fac=function(He){return new(He||Ut)}}static{this.\u0275dir=l.FsC({type:Ut,selectors:[["","matDatepickerToggleIcon",""]],standalone:!0})}}return Ut})(),fi=(()=>{class Ut{get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(re){this._disabled=re}constructor(re,He,ye){this._intl=re,this._changeDetectorRef=He,this._stateChanges=S.yU.EMPTY;const rt=Number(ye);this.tabIndex=rt||0===rt?rt:null}ngOnChanges(re){re.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(re){this.datepicker&&!this.disabled&&(this.datepicker.open(),re.stopPropagation())}_watchStateChanges(){const re=this.datepicker?this.datepicker.stateChanges:(0,O.of)(),He=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,O.of)(),ye=this.datepicker?(0,y.h)(this.datepicker.openedStream,this.datepicker.closedStream):(0,O.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,y.h)(this._intl.changes,re,He,ye).subscribe(()=>this._changeDetectorRef.markForCheck())}static{this.\u0275fac=function(He){return new(He||Ut)(l.rXU(We),l.rXU(l.gRc),l.kS0("tabindex"))}}static{this.\u0275cmp=l.VBU({type:Ut,selectors:[["mat-datepicker-toggle"]],contentQueries:function(He,ye,rt){if(1&He&&l.wni(rt,ti,5),2&He){let ht;l.mGM(ht=l.lsd())&&(ye._customIcon=ht.first)}},viewQuery:function(He,ye){if(1&He&&l.GBs(a,5),2&He){let rt;l.mGM(rt=l.lsd())&&(ye._button=rt.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(He,ye){1&He&&l.bIt("click",function(ht){return ye._open(ht)}),2&He&&(l.BMQ("tabindex",null)("data-mat-calendar",ye.datepicker?ye.datepicker.id:null),l.AVh("mat-datepicker-toggle-active",ye.datepicker&&ye.datepicker.opened)("mat-accent",ye.datepicker&&"accent"===ye.datepicker.color)("mat-warn",ye.datepicker&&"warn"===ye.datepicker.color))},inputs:{datepicker:[0,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[0,"aria-label","ariaLabel"],disabled:[2,"disabled","disabled",l.L39],disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],standalone:!0,features:[l.GFd,l.OA$,l.aNF],ngContentSelectors:z,decls:4,vars:6,consts:[["button",""],["mat-icon-button","","type","button",3,"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(He,ye){1&He&&(l.NAR(b),l.j41(0,"button",1,0),l.DNE(2,N,2,0,":svg:svg",2),l.SdG(3),l.k0s()),2&He&&(l.Y8G("disabled",ye.disabled)("disableRipple",ye.disableRipple),l.BMQ("aria-haspopup",ye.datepicker?"dialog":null)("aria-label",ye.ariaLabel||ye._intl.openCalendarLabel)("tabindex",ye.disabled?-1:ye.tabIndex),l.R7$(2),l.vxM(ye._customIcon?-1:2))},dependencies:[w.iY],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color)}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color)}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}"],encapsulation:2,changeDetection:0})}}return Ut})(),mn=(()=>{class Ut{static{this.\u0275fac=function(He){return new(He||Ut)}}static{this.\u0275mod=l.$C({type:Ut})}static{this.\u0275inj=l.G2t({providers:[We,Ke],imports:[D.MD,w.Hl,t.z_,e.Pd,x.jc,R.yE,Fe,fi,Te,f.Gj]})}}return Ut})()},5351:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>X,di:()=>se,bZ:()=>me,tx:()=>ue,hM:()=>_e,CP:()=>We});var e=g(6969),t=g(177),x=g(4438),D=g(8617),l=g(6860),w=g(6939),f=g(7336),R=g(1413),h=g(9030),S=g(7673),y=g(8203),O=g(9172);function I(je,vt){}class V{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.closeOnNavigation=!0,this.closeOnDestroy=!0,this.closeOnOverlayDetachments=!0}}let Y=(()=>{class je extends w.lb{constructor($e,nt,qt,Nt,yt,jt,Je,et){super(),this._elementRef=$e,this._focusTrapFactory=nt,this._config=Nt,this._interactivityChecker=yt,this._ngZone=jt,this._overlayRef=Je,this._focusMonitor=et,this._platform=(0,x.WQX)(l.OD),this._focusTrap=null,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this._ariaLabelledByQueue=[],this._changeDetectorRef=(0,x.WQX)(x.gRc),this.attachDomPortal=Ae=>{this._portalOutlet.hasAttached();const It=this._portalOutlet.attachDomPortal(Ae);return this._contentAttached(),It},this._document=qt,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_addAriaLabelledBy($e){this._ariaLabelledByQueue.push($e),this._changeDetectorRef.markForCheck()}_removeAriaLabelledBy($e){const nt=this._ariaLabelledByQueue.indexOf($e);nt>-1&&(this._ariaLabelledByQueue.splice(nt,1),this._changeDetectorRef.markForCheck())}_contentAttached(){this._initializeFocusTrap(),this._handleBackdropClicks(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._restoreFocus()}attachComponentPortal($e){this._portalOutlet.hasAttached();const nt=this._portalOutlet.attachComponentPortal($e);return this._contentAttached(),nt}attachTemplatePortal($e){this._portalOutlet.hasAttached();const nt=this._portalOutlet.attachTemplatePortal($e);return this._contentAttached(),nt}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus($e,nt){this._interactivityChecker.isFocusable($e)||($e.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const qt=()=>{$e.removeEventListener("blur",qt),$e.removeEventListener("mousedown",qt),$e.removeAttribute("tabindex")};$e.addEventListener("blur",qt),$e.addEventListener("mousedown",qt)})),$e.focus(nt)}_focusByCssSelector($e,nt){let qt=this._elementRef.nativeElement.querySelector($e);qt&&this._forceFocus(qt,nt)}_trapFocus(){const $e=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||$e.focus();break;case!0:case"first-tabbable":this._focusTrap?.focusInitialElementWhenReady().then(nt=>{nt||this._focusDialogContainer()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this._config.autoFocus)}}_restoreFocus(){const $e=this._config.restoreFocus;let nt=null;if("string"==typeof $e?nt=this._document.querySelector($e):"boolean"==typeof $e?nt=$e?this._elementFocusedBeforeDialogWasOpened:null:$e&&(nt=$e),this._config.restoreFocus&&nt&&"function"==typeof nt.focus){const qt=(0,l.vc)(),Nt=this._elementRef.nativeElement;(!qt||qt===this._document.body||qt===Nt||Nt.contains(qt))&&(this._focusMonitor?(this._focusMonitor.focusVia(nt,this._closeInteractionType),this._closeInteractionType=null):nt.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const $e=this._elementRef.nativeElement,nt=(0,l.vc)();return $e===nt||$e.contains(nt)}_initializeFocusTrap(){this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,l.vc)()))}_handleBackdropClicks(){this._overlayRef.backdropClick().subscribe(()=>{this._config.disableClose&&this._recaptureFocus()})}static{this.\u0275fac=function(nt){return new(nt||je)(x.rXU(x.aKT),x.rXU(D.GX),x.rXU(t.qQ,8),x.rXU(V),x.rXU(D.Z7),x.rXU(x.SKi),x.rXU(e.yY),x.rXU(D.FN))}}static{this.\u0275cmp=x.VBU({type:je,selectors:[["cdk-dialog-container"]],viewQuery:function(nt,qt){if(1&nt&&x.GBs(w.I3,7),2&nt){let Nt;x.mGM(Nt=x.lsd())&&(qt._portalOutlet=Nt.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(nt,qt){2&nt&&x.BMQ("id",qt._config.id||null)("role",qt._config.role)("aria-modal",qt._config.ariaModal)("aria-labelledby",qt._config.ariaLabel?null:qt._ariaLabelledByQueue[0])("aria-label",qt._config.ariaLabel)("aria-describedby",qt._config.ariaDescribedBy||null)},standalone:!0,features:[x.Vt3,x.aNF],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(nt,qt){1&nt&&x.DNE(0,I,0,0,"ng-template",0)},dependencies:[w.I3],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}"],encapsulation:2})}}return je})();class W{constructor(vt,$e){this.overlayRef=vt,this.config=$e,this.closed=new R.B,this.disableClose=$e.disableClose,this.backdropClick=vt.backdropClick(),this.keydownEvents=vt.keydownEvents(),this.outsidePointerEvents=vt.outsidePointerEvents(),this.id=$e.id,this.keydownEvents.subscribe(nt=>{nt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(nt)&&(nt.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{this.disableClose||this.close(void 0,{focusOrigin:"mouse"})}),this._detachSubscription=vt.detachments().subscribe(()=>{!1!==$e.closeOnOverlayDetachments&&this.close()})}close(vt,$e){if(this.containerInstance){const nt=this.closed;this.containerInstance._closeInteractionType=$e?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),nt.next(vt),nt.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(vt="",$e=""){return this.overlayRef.updateSize({width:vt,height:$e}),this}addPanelClass(vt){return this.overlayRef.addPanelClass(vt),this}removePanelClass(vt){return this.overlayRef.removePanelClass(vt),this}}const Q=new x.nKC("DialogScrollStrategy",{providedIn:"root",factory:()=>{const je=(0,x.WQX)(e.hJ);return()=>je.scrollStrategies.block()}}),J=new x.nKC("DialogData"),ie=new x.nKC("DefaultDialogConfig");let ne=0,Me=(()=>{class je{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}constructor($e,nt,qt,Nt,yt,jt){this._overlay=$e,this._injector=nt,this._defaultOptions=qt,this._parentDialog=Nt,this._overlayContainer=yt,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new R.B,this._afterOpenedAtThisLevel=new R.B,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,h.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,O.Z)(void 0))),this._scrollStrategy=jt}open($e,nt){(nt={...this._defaultOptions||new V,...nt}).id=nt.id||"cdk-dialog-"+ne++,nt.id&&this.getDialogById(nt.id);const Nt=this._getOverlayConfig(nt),yt=this._overlay.create(Nt),jt=new W(yt,nt),Je=this._attachContainer(yt,jt,nt);return jt.containerInstance=Je,this._attachDialogContent($e,jt,Je,nt),this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(jt),jt.closed.subscribe(()=>this._removeOpenDialog(jt,!0)),this.afterOpened.next(jt),jt}closeAll(){Ce(this.openDialogs,$e=>$e.close())}getDialogById($e){return this.openDialogs.find(nt=>nt.id===$e)}ngOnDestroy(){Ce(this._openDialogsAtThisLevel,$e=>{!1===$e.config.closeOnDestroy&&this._removeOpenDialog($e,!1)}),Ce(this._openDialogsAtThisLevel,$e=>$e.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig($e){const nt=new e.rR({positionStrategy:$e.positionStrategy||this._overlay.position().global().centerHorizontally().centerVertically(),scrollStrategy:$e.scrollStrategy||this._scrollStrategy(),panelClass:$e.panelClass,hasBackdrop:$e.hasBackdrop,direction:$e.direction,minWidth:$e.minWidth,minHeight:$e.minHeight,maxWidth:$e.maxWidth,maxHeight:$e.maxHeight,width:$e.width,height:$e.height,disposeOnNavigation:$e.closeOnNavigation});return $e.backdropClass&&(nt.backdropClass=$e.backdropClass),nt}_attachContainer($e,nt,qt){const Nt=qt.injector||qt.viewContainerRef?.injector,yt=[{provide:V,useValue:qt},{provide:W,useValue:nt},{provide:e.yY,useValue:$e}];let jt;qt.container?"function"==typeof qt.container?jt=qt.container:(jt=qt.container.type,yt.push(...qt.container.providers(qt))):jt=Y;const Je=new w.A8(jt,qt.viewContainerRef,x.zZn.create({parent:Nt||this._injector,providers:yt}),qt.componentFactoryResolver);return $e.attach(Je).instance}_attachDialogContent($e,nt,qt,Nt){if($e instanceof x.C4Q){const yt=this._createInjector(Nt,nt,qt,void 0);let jt={$implicit:Nt.data,dialogRef:nt};Nt.templateContext&&(jt={...jt,..."function"==typeof Nt.templateContext?Nt.templateContext():Nt.templateContext}),qt.attachTemplatePortal(new w.VA($e,null,jt,yt))}else{const yt=this._createInjector(Nt,nt,qt,this._injector),jt=qt.attachComponentPortal(new w.A8($e,Nt.viewContainerRef,yt,Nt.componentFactoryResolver));nt.componentRef=jt,nt.componentInstance=jt.instance}}_createInjector($e,nt,qt,Nt){const yt=$e.injector||$e.viewContainerRef?.injector,jt=[{provide:J,useValue:$e.data},{provide:W,useValue:nt}];return $e.providers&&("function"==typeof $e.providers?jt.push(...$e.providers(nt,$e,qt)):jt.push(...$e.providers)),$e.direction&&(!yt||!yt.get(y.dS,null,{optional:!0}))&&jt.push({provide:y.dS,useValue:{value:$e.direction,change:(0,S.of)()}}),x.zZn.create({parent:yt||Nt,providers:jt})}_removeOpenDialog($e,nt){const qt=this.openDialogs.indexOf($e);qt>-1&&(this.openDialogs.splice(qt,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Nt,yt)=>{Nt?yt.setAttribute("aria-hidden",Nt):yt.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),nt&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const $e=this._overlayContainer.getContainerElement();if($e.parentElement){const nt=$e.parentElement.children;for(let qt=nt.length-1;qt>-1;qt--){const Nt=nt[qt];Nt!==$e&&"SCRIPT"!==Nt.nodeName&&"STYLE"!==Nt.nodeName&&!Nt.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Nt,Nt.getAttribute("aria-hidden")),Nt.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const $e=this._parentDialog;return $e?$e._getAfterAllClosed():this._afterAllClosedAtThisLevel}static{this.\u0275fac=function(nt){return new(nt||je)(x.KVO(e.hJ),x.KVO(x.zZn),x.KVO(ie,8),x.KVO(je,12),x.KVO(e.Sf),x.KVO(Q))}}static{this.\u0275prov=x.jDH({token:je,factory:je.\u0275fac,providedIn:"root"})}}return je})();function Ce(je,vt){let $e=je.length;for(;$e--;)vt(je[$e])}let le=(()=>{class je{static{this.\u0275fac=function(nt){return new(nt||je)}}static{this.\u0275mod=x.$C({type:je})}static{this.\u0275inj=x.G2t({providers:[Me],imports:[e.z_,w.jc,D.Pd,w.jc]})}}return je})();var T=g(4085),n=g(7786),c=g(5964),m=g(6697),d=g(6600);function A(je,vt){}g(9969);class k{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const _="mdc-dialog--open",a="mdc-dialog--opening",b="mdc-dialog--closing";let q=(()=>{class je extends Y{constructor($e,nt,qt,Nt,yt,jt,Je,et,Ae){super($e,nt,qt,Nt,yt,jt,Je,Ae),this._animationMode=et,this._animationStateChanged=new x.bkB,this._animationsEnabled="NoopAnimations"!==this._animationMode,this._actionSectionCount=0,this._hostElement=this._elementRef.nativeElement,this._enterAnimationDuration=this._animationsEnabled?ze(this._config.enterAnimationDuration)??150:0,this._exitAnimationDuration=this._animationsEnabled?ze(this._config.exitAnimationDuration)??75:0,this._animationTimer=null,this._finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)},this._finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})}}_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(pe,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(a,_)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(_),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(_),this._animationsEnabled?(this._hostElement.style.setProperty(pe,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(b)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_updateActionSectionCount($e){this._actionSectionCount+=$e,this._changeDetectorRef.markForCheck()}_clearAnimationClasses(){this._hostElement.classList.remove(a,b)}_waitForAnimationToComplete($e,nt){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(nt,$e)}_requestAnimationFrame($e){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame($e):$e()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone($e){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:$e})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal($e){const nt=super.attachComponentPortal($e);return nt.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),nt}static{this.\u0275fac=function(nt){return new(nt||je)(x.rXU(x.aKT),x.rXU(D.GX),x.rXU(t.qQ,8),x.rXU(k),x.rXU(D.Z7),x.rXU(x.SKi),x.rXU(e.yY),x.rXU(x.bc$,8),x.rXU(D.FN))}}static{this.\u0275cmp=x.VBU({type:je,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:10,hostBindings:function(nt,qt){2&nt&&(x.Mr5("id",qt._config.id),x.BMQ("aria-modal",qt._config.ariaModal)("role",qt._config.role)("aria-labelledby",qt._config.ariaLabel?null:qt._ariaLabelledByQueue[0])("aria-label",qt._config.ariaLabel)("aria-describedby",qt._config.ariaDescribedBy||null),x.AVh("_mat-animation-noopable",!qt._animationsEnabled)("mat-mdc-dialog-container-with-actions",qt._actionSectionCount>0))},standalone:!0,features:[x.Vt3,x.aNF],decls:3,vars:0,consts:[[1,"mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(nt,qt){1&nt&&(x.j41(0,"div",0)(1,"div",1),x.DNE(2,A,0,0,"ng-template",2),x.k0s()())},dependencies:[w.I3],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-dialog,.mdc-dialog__scrim{position:fixed;top:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.mdc-dialog{display:none;z-index:var(--mdc-dialog-z-index, 7)}.mdc-dialog .mdc-dialog__content{padding:20px 24px 20px 24px}.mdc-dialog .mdc-dialog__surface{min-width:280px}@media(max-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:calc(100vw - 32px)}}@media(min-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:560px}}.mdc-dialog .mdc-dialog__surface{max-height:calc(100% - 32px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-width:none}@media(max-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px;width:560px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 112px)}}@media(max-width: 720px)and (min-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:560px}}@media(max-width: 720px)and (max-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:calc(100vh - 160px)}}@media(max-width: 720px)and (min-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px}}@media(max-width: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-height: 400px),(max-width: 600px),(min-width: 720px)and (max-height: 400px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{height:100%;max-height:100vh;max-width:100vw;width:100vw;border-radius:0}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{order:-1;left:-12px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__header{padding:0 16px 9px;justify-content:flex-start}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__title{margin-left:calc(16px - 2 * 12px)}}@media(min-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 400px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}.mdc-dialog.mdc-dialog__scrim--hidden .mdc-dialog__scrim{opacity:0}.mdc-dialog__scrim{opacity:0;z-index:-1}.mdc-dialog__container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;pointer-events:none}.mdc-dialog__surface{position:relative;display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;max-width:100%;max-height:100%;pointer-events:auto;overflow-y:auto;outline:0;transform:scale(0.8)}.mdc-dialog__surface .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}[dir=rtl] .mdc-dialog__surface,.mdc-dialog__surface[dir=rtl]{text-align:right}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-dialog__surface{outline:2px solid windowText}}.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}@media screen and (forced-colors: active){.mdc-dialog__surface::before{border-color:CanvasText}}@media screen and (-ms-high-contrast: active),screen and (-ms-high-contrast: none){.mdc-dialog__surface::before{content:none}}.mdc-dialog__title{display:block;margin-top:0;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:0 24px 9px}.mdc-dialog__title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mdc-dialog__title,.mdc-dialog__title[dir=rtl]{text-align:right}.mdc-dialog--scrollable .mdc-dialog__title{margin-bottom:1px;padding-bottom:15px}.mdc-dialog--fullscreen .mdc-dialog__header{align-items:baseline;border-bottom:1px solid rgba(0,0,0,0);display:inline-flex;justify-content:space-between;padding:0 24px 9px;z-index:1}@media screen and (forced-colors: active){.mdc-dialog--fullscreen .mdc-dialog__header{border-bottom-color:CanvasText}}.mdc-dialog--fullscreen .mdc-dialog__header .mdc-dialog__close{right:-12px}.mdc-dialog--fullscreen .mdc-dialog__title{margin-bottom:0;padding:0;border-bottom:0}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__title{border-bottom:0;margin-bottom:0}.mdc-dialog--fullscreen .mdc-dialog__close{top:5px}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--fullscreen--titleless .mdc-dialog__close{margin-top:4px}.mdc-dialog--fullscreen--titleless.mdc-dialog--scrollable .mdc-dialog__close{margin-top:0}.mdc-dialog__content{flex-grow:1;box-sizing:border-box;margin:0;overflow:auto}.mdc-dialog__content>:first-child{margin-top:0}.mdc-dialog__content>:last-child{margin-bottom:0}.mdc-dialog__title+.mdc-dialog__content,.mdc-dialog__header+.mdc-dialog__content{padding-top:0}.mdc-dialog--scrollable .mdc-dialog__title+.mdc-dialog__content{padding-top:8px;padding-bottom:8px}.mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:6px 0 0}.mdc-dialog--scrollable .mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:0}.mdc-dialog__actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;box-sizing:border-box;min-height:52px;margin:0;padding:8px;border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--stacked .mdc-dialog__actions{flex-direction:column;align-items:flex-end}.mdc-dialog__button{margin-left:8px;margin-right:0;max-width:100%;text-align:right}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{margin-left:0;margin-right:8px}.mdc-dialog__button:first-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button:first-child,.mdc-dialog__button:first-child[dir=rtl]{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{text-align:left}.mdc-dialog--stacked .mdc-dialog__button:not(:first-child){margin-top:12px}.mdc-dialog--open,.mdc-dialog--opening,.mdc-dialog--closing{display:flex}.mdc-dialog--opening .mdc-dialog__scrim{transition:opacity 150ms linear}.mdc-dialog--opening .mdc-dialog__container{transition:opacity 75ms linear,transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-dialog--closing .mdc-dialog__scrim,.mdc-dialog--closing .mdc-dialog__container{transition:opacity 75ms linear}.mdc-dialog--closing .mdc-dialog__container{transform:none}.mdc-dialog--closing .mdc-dialog__surface{transform:none}.mdc-dialog--open .mdc-dialog__scrim{opacity:1}.mdc-dialog--open .mdc-dialog__container{opacity:1}.mdc-dialog--open .mdc-dialog__surface{transform:none}.mdc-dialog--open.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim{opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{transition:opacity 75ms linear}.mdc-dialog--open.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim{transition:opacity 150ms linear}.mdc-dialog__surface-scrim{display:none;opacity:0;position:absolute;width:100%;height:100%;z-index:1}.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{display:block}.mdc-dialog-scroll-lock{overflow:hidden}.mdc-dialog--no-content-padding .mdc-dialog__content{padding:0}.mdc-dialog--sheet .mdc-dialog__container .mdc-dialog__close{right:12px;top:9px;position:absolute;z-index:1}.mdc-dialog__scrim--removed{pointer-events:none}.mdc-dialog__scrim--removed .mdc-dialog__scrim,.mdc-dialog__scrim--removed .mdc-dialog__surface-scrim{display:none}.mat-mdc-dialog-content{max-height:65vh}.mat-mdc-dialog-container{position:static;display:block}.mat-mdc-dialog-container,.mat-mdc-dialog-container .mdc-dialog__container,.mat-mdc-dialog-container .mdc-dialog__surface{max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mat-mdc-dialog-container .mdc-dialog__surface{width:100%;height:100%}.mat-mdc-dialog-component-host{display:contents}.mat-mdc-dialog-container{--mdc-dialog-container-elevation: var(--mdc-dialog-container-elevation-shadow);outline:0}.mat-mdc-dialog-container .mdc-dialog__surface{background-color:var(--mdc-dialog-container-color, white)}.mat-mdc-dialog-container .mdc-dialog__surface{box-shadow:var(--mdc-dialog-container-elevation, 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12))}.mat-mdc-dialog-container .mdc-dialog__surface{border-radius:var(--mdc-dialog-container-shape, 4px)}.mat-mdc-dialog-container .mdc-dialog__title{font-family:var(--mdc-dialog-subhead-font, Roboto, sans-serif);line-height:var(--mdc-dialog-subhead-line-height, 1.5rem);font-size:var(--mdc-dialog-subhead-size, 1rem);font-weight:var(--mdc-dialog-subhead-weight, 400);letter-spacing:var(--mdc-dialog-subhead-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__title{color:var(--mdc-dialog-subhead-color, rgba(0, 0, 0, 0.87))}.mat-mdc-dialog-container .mdc-dialog__content{font-family:var(--mdc-dialog-supporting-text-font, Roboto, sans-serif);line-height:var(--mdc-dialog-supporting-text-line-height, 1.5rem);font-size:var(--mdc-dialog-supporting-text-size, 1rem);font-weight:var(--mdc-dialog-supporting-text-weight, 400);letter-spacing:var(--mdc-dialog-supporting-text-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__content{color:var(--mdc-dialog-supporting-text-color, rgba(0, 0, 0, 0.6))}.mat-mdc-dialog-container .mdc-dialog__container{transition:opacity linear var(--mat-dialog-transition-duration, 0ms)}.mat-mdc-dialog-container .mdc-dialog__surface{transition:transform var(--mat-dialog-transition-duration, 0ms) 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__container,.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__surface{transition:none}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 80vw);min-width:var(--mat-dialog-container-min-width, 0)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, 80vw)}}.mat-mdc-dialog-title{padding:var(--mat-dialog-headline-padding, 0 24px 9px)}.mat-mdc-dialog-content{display:block}.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)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{padding:var(--mat-dialog-actions-padding, 8px);justify-content:var(--mat-dialog-actions-alignment, start)}.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}'],encapsulation:2})}}return je})();const pe="--mat-dialog-transition-duration";function ze(je){return null==je?null:"number"==typeof je?je:je.endsWith("ms")?(0,T.OE)(je.substring(0,je.length-2)):je.endsWith("s")?1e3*(0,T.OE)(je.substring(0,je.length-1)):"0"===je?0:null}var Xe=function(je){return je[je.OPEN=0]="OPEN",je[je.CLOSING=1]="CLOSING",je[je.CLOSED=2]="CLOSED",je}(Xe||{});class We{constructor(vt,$e,nt){this._ref=vt,this._containerInstance=nt,this._afterOpened=new R.B,this._beforeClosed=new R.B,this._state=Xe.OPEN,this.disableClose=$e.disableClose,this.id=vt.id,vt.addPanelClass("mat-mdc-dialog-panel"),nt._animationStateChanged.pipe((0,c.p)(qt=>"opened"===qt.state),(0,m.s)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),nt._animationStateChanged.pipe((0,c.p)(qt=>"closed"===qt.state),(0,m.s)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),vt.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,n.h)(this.backdropClick(),this.keydownEvents().pipe((0,c.p)(qt=>qt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(qt)))).subscribe(qt=>{this.disableClose||(qt.preventDefault(),oe(this,"keydown"===qt.type?"keyboard":"mouse"))})}close(vt){this._result=vt,this._containerInstance._animationStateChanged.pipe((0,c.p)($e=>"closing"===$e.state),(0,m.s)(1)).subscribe($e=>{this._beforeClosed.next(vt),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),$e.totalTime+100)}),this._state=Xe.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(vt){let $e=this._ref.config.positionStrategy;return vt&&(vt.left||vt.right)?vt.left?$e.left(vt.left):$e.right(vt.right):$e.centerHorizontally(),vt&&(vt.top||vt.bottom)?vt.top?$e.top(vt.top):$e.bottom(vt.bottom):$e.centerVertically(),this._ref.updatePosition(),this}updateSize(vt="",$e=""){return this._ref.updateSize(vt,$e),this}addPanelClass(vt){return this._ref.addPanelClass(vt),this}removePanelClass(vt){return this._ref.removePanelClass(vt),this}getState(){return this._state}_finishDialogClose(){this._state=Xe.CLOSED,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function oe(je,vt,$e){return je._closeInteractionType=vt,je.close($e)}const X=new x.nKC("MatMdcDialogData"),se=new x.nKC("mat-mdc-dialog-default-options"),ae=new x.nKC("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const je=(0,x.WQX)(e.hJ);return()=>je.scrollStrategies.block()}});let st=0,me=(()=>{class je{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const $e=this._parentDialog;return $e?$e._getAfterAllClosed():this._afterAllClosedAtThisLevel}constructor($e,nt,qt,Nt,yt,jt,Je,et){this._overlay=$e,this._defaultOptions=Nt,this._scrollStrategy=yt,this._parentDialog=jt,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new R.B,this._afterOpenedAtThisLevel=new R.B,this.dialogConfigClass=k,this.afterAllClosed=(0,h.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,O.Z)(void 0))),this._dialog=nt.get(Me),this._dialogRefConstructor=We,this._dialogContainerType=q,this._dialogDataToken=X}open($e,nt){let qt;(nt={...this._defaultOptions||new k,...nt}).id=nt.id||"mat-mdc-dialog-"+st++,nt.scrollStrategy=nt.scrollStrategy||this._scrollStrategy();const Nt=this._dialog.open($e,{...nt,positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically(),disableClose:!0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:nt},{provide:V,useValue:nt}]},templateContext:()=>({dialogRef:qt}),providers:(yt,jt,Je)=>(qt=new this._dialogRefConstructor(yt,nt,Je),qt.updatePosition(nt?.position),[{provide:this._dialogContainerType,useValue:Je},{provide:this._dialogDataToken,useValue:jt.data},{provide:this._dialogRefConstructor,useValue:qt}])});return qt.componentRef=Nt.componentRef,qt.componentInstance=Nt.componentInstance,this.openDialogs.push(qt),this.afterOpened.next(qt),qt.afterClosed().subscribe(()=>{const yt=this.openDialogs.indexOf(qt);yt>-1&&(this.openDialogs.splice(yt,1),this.openDialogs.length||this._getAfterAllClosed().next())}),qt}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById($e){return this.openDialogs.find(nt=>nt.id===$e)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs($e){let nt=$e.length;for(;nt--;)$e[nt].close()}static{this.\u0275fac=function(nt){return new(nt||je)(x.KVO(e.hJ),x.KVO(x.zZn),x.KVO(t.aZ,8),x.KVO(se,8),x.KVO(ae),x.KVO(je,12),x.KVO(e.Sf),x.KVO(x.bc$,8))}}static{this.\u0275prov=x.jDH({token:je,factory:je.\u0275fac,providedIn:"root"})}}return je})(),ue=(()=>{class je{constructor($e,nt,qt){this.dialogRef=$e,this._elementRef=nt,this._dialog=qt,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=function Yt(je,vt){let $e=je.nativeElement.parentElement;for(;$e&&!$e.classList.contains("mat-mdc-dialog-container");)$e=$e.parentElement;return $e?vt.find(nt=>nt.id===$e.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges($e){const nt=$e._matDialogClose||$e._matDialogCloseResult;nt&&(this.dialogResult=nt.currentValue)}_onButtonClick($e){oe(this.dialogRef,0===$e.screenX&&0===$e.screenY?"keyboard":"mouse",this.dialogResult)}static{this.\u0275fac=function(nt){return new(nt||je)(x.rXU(We,8),x.rXU(x.aKT),x.rXU(me))}}static{this.\u0275dir=x.FsC({type:je,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(nt,qt){1&nt&&x.bIt("click",function(yt){return qt._onButtonClick(yt)}),2&nt&&x.BMQ("aria-label",qt.ariaLabel||null)("type",qt.type)},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],type:"type",dialogResult:[0,"mat-dialog-close","dialogResult"],_matDialogClose:[0,"matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],standalone:!0,features:[x.OA$]})}}return je})();let _e=(()=>{class je{static{this.\u0275fac=function(nt){return new(nt||je)}}static{this.\u0275mod=x.$C({type:je})}static{this.\u0275inj=x.G2t({providers:[me],imports:[le,e.z_,w.jc,d.yE,d.yE]})}}return je})()},1997:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>D,w:()=>l});var e=g(4438),t=g(4085),x=g(6600);let D=(()=>{class w{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(R){this._vertical=(0,t.he)(R)}get inset(){return this._inset}set inset(R){this._inset=(0,t.he)(R)}static{this.\u0275fac=function(h){return new(h||w)}}static{this.\u0275cmp=e.VBU({type:w,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(h,S){2&h&&(e.BMQ("aria-orientation",S.vertical?"vertical":"horizontal"),e.AVh("mat-divider-vertical",S.vertical)("mat-divider-horizontal",!S.vertical)("mat-divider-inset",S.inset))},inputs:{vertical:"vertical",inset:"inset"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(h,S){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color);border-top-width:var(--mat-divider-width)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color);border-right-width:var(--mat-divider-width)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],encapsulation:2,changeDetection:0})}}return w})(),l=(()=>{class w{static{this.\u0275fac=function(h){return new(h||w)}}static{this.\u0275mod=e.$C({type:w})}static{this.\u0275inj=e.G2t({imports:[x.yE,x.yE]})}}return w})()},9454:(Qe,te,g)=>{"use strict";g.d(te,{BS:()=>ze,MY:()=>Xe,GK:()=>a,Q6:()=>q,Z2:()=>N,WN:()=>pe});var e=g(4438),t=g(5024),x=g(1413),D=g(8359);let l=0;const w=new e.nKC("CdkAccordion");let f=(()=>{class We{constructor(){this._stateChanges=new x.B,this._openCloseAllActions=new x.B,this.id="cdk-accordion-"+l++,this.multi=!1}openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(X){this._stateChanges.next(X)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275dir=e.FsC({type:We,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:[2,"multi","multi",e.L39]},exportAs:["cdkAccordion"],standalone:!0,features:[e.Jv_([{provide:w,useExisting:We}]),e.GFd,e.OA$]})}}return We})(),R=0,h=(()=>{class We{get expanded(){return this._expanded}set expanded(X){this._expanded!==X&&(this._expanded=X,this.expandedChange.emit(X),X?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}constructor(X,se,ae){this.accordion=X,this._changeDetectorRef=se,this._expansionDispatcher=ae,this._openCloseAllSubscription=D.yU.EMPTY,this.closed=new e.bkB,this.opened=new e.bkB,this.destroyed=new e.bkB,this.expandedChange=new e.bkB,this.id="cdk-accordion-child-"+R++,this._expanded=!1,this.disabled=!1,this._removeUniqueSelectionListener=()=>{},this._removeUniqueSelectionListener=ae.listen((he,Ie)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===Ie&&this.id!==he&&(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(X=>{this.disabled||(this.expanded=X)})}static{this.\u0275fac=function(se){return new(se||We)(e.rXU(w,12),e.rXU(e.gRc),e.rXU(t.zP))}}static{this.\u0275dir=e.FsC({type:We,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:[2,"expanded","expanded",e.L39],disabled:[2,"disabled","disabled",e.L39]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],standalone:!0,features:[e.Jv_([{provide:w,useValue:void 0}]),e.GFd]})}}return We})(),S=(()=>{class We{static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275mod=e.$C({type:We})}static{this.\u0275inj=e.G2t({})}}return We})();var y=g(6939),O=g(6600),I=g(8617),V=g(9172),j=g(5964),Y=g(6697),W=g(7336),Q=g(983),J=g(7786),ie=g(9969),ee=g(177);const fe=["body"],ne=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],Me=["mat-expansion-panel-header","*","mat-action-row"];function Ce(We,oe){}const le=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],T=["mat-panel-title","mat-panel-description","*"];function n(We,oe){if(1&We&&(e.j41(0,"span",1),e.qSk(),e.j41(1,"svg",2),e.nrm(2,"path",3),e.k0s()()),2&We){const X=e.XpG();e.Y8G("@indicatorRotate",X._getExpandedState())}}const c=new e.nKC("MAT_ACCORDION"),m="225ms cubic-bezier(0.4,0.0,0.2,1)",d={indicatorRotate:(0,ie.hZ)("indicatorRotate",[(0,ie.wk)("collapsed, void",(0,ie.iF)({transform:"rotate(0deg)"})),(0,ie.wk)("expanded",(0,ie.iF)({transform:"rotate(180deg)"})),(0,ie.kY)("expanded <=> collapsed, void => collapsed",(0,ie.i0)(m))]),bodyExpansion:(0,ie.hZ)("bodyExpansion",[(0,ie.wk)("collapsed, void",(0,ie.iF)({height:"0px",visibility:"hidden"})),(0,ie.wk)("expanded",(0,ie.iF)({height:"*",visibility:""})),(0,ie.kY)("expanded <=> collapsed, void => collapsed",(0,ie.i0)(m))])},C=new e.nKC("MAT_EXPANSION_PANEL");let A=(()=>{class We{constructor(X,se){this._template=X,this._expansionPanel=se}static{this.\u0275fac=function(se){return new(se||We)(e.rXU(e.C4Q),e.rXU(C,8))}}static{this.\u0275dir=e.FsC({type:We,selectors:[["ng-template","matExpansionPanelContent",""]],standalone:!0})}}return We})(),k=0;const _=new e.nKC("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let a=(()=>{class We extends h{get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(X){this._hideToggle=X}get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(X){this._togglePosition=X}constructor(X,se,ae,he,Ie,st,me){super(X,se,ae),this._viewContainerRef=he,this._animationMode=st,this._hideToggle=!1,this.afterExpand=new e.bkB,this.afterCollapse=new e.bkB,this._inputChanges=new x.B,this._headerId="mat-expansion-panel-header-"+k++,this.accordion=X,this._document=Ie,this._animationsDisabled="NoopAnimations"===st,me&&(this.hideToggle=me.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,V.Z)(null),(0,j.p)(()=>this.expanded&&!this._portal),(0,Y.s)(1)).subscribe(()=>{this._portal=new y.VA(this._lazyContent._template,this._viewContainerRef)})}ngOnChanges(X){this._inputChanges.next(X)}ngOnDestroy(){super.ngOnDestroy(),this._inputChanges.complete()}_containsFocus(){if(this._body){const X=this._document.activeElement,se=this._body.nativeElement;return X===se||se.contains(X)}return!1}_animationStarted(X){!b(X)&&!this._animationsDisabled&&this._body&&this._body?.nativeElement.setAttribute("inert","")}_animationDone(X){b(X)||("expanded"===X.toState?this.afterExpand.emit():"collapsed"===X.toState&&this.afterCollapse.emit(),!this._animationsDisabled&&this._body&&this._body.nativeElement.removeAttribute("inert"))}static{this.\u0275fac=function(se){return new(se||We)(e.rXU(c,12),e.rXU(e.gRc),e.rXU(t.zP),e.rXU(e.c1b),e.rXU(ee.qQ),e.rXU(e.bc$,8),e.rXU(_,8))}}static{this.\u0275cmp=e.VBU({type:We,selectors:[["mat-expansion-panel"]],contentQueries:function(se,ae,he){if(1&se&&e.wni(he,A,5),2&se){let Ie;e.mGM(Ie=e.lsd())&&(ae._lazyContent=Ie.first)}},viewQuery:function(se,ae){if(1&se&&e.GBs(fe,5),2&se){let he;e.mGM(he=e.lsd())&&(ae._body=he.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:6,hostBindings:function(se,ae){2&se&&e.AVh("mat-expanded",ae.expanded)("_mat-animation-noopable",ae._animationsDisabled)("mat-expansion-panel-spacing",ae._hasSpacing())},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],togglePosition:"togglePosition"},outputs:{afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],standalone:!0,features:[e.Jv_([{provide:c,useValue:void 0},{provide:C,useExisting:We}]),e.GFd,e.Vt3,e.OA$,e.aNF],ngContentSelectors:Me,decls:7,vars:4,consts:[["body",""],["role","region",1,"mat-expansion-panel-content",3,"id"],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(se,ae){if(1&se){const he=e.RV6();e.NAR(ne),e.SdG(0),e.j41(1,"div",1,0),e.bIt("@bodyExpansion.start",function(st){return e.eBV(he),e.Njj(ae._animationStarted(st))})("@bodyExpansion.done",function(st){return e.eBV(he),e.Njj(ae._animationDone(st))}),e.j41(3,"div",2),e.SdG(4,1),e.DNE(5,Ce,0,0,"ng-template",3),e.k0s(),e.SdG(6,2),e.k0s()}2&se&&(e.R7$(),e.Y8G("@bodyExpansion",ae._getExpandedState())("id",ae.id),e.BMQ("aria-labelledby",ae._headerId),e.R7$(4),e.Y8G("cdkPortalOutlet",ae._portal))},dependencies:[y.I3],styles:['.mat-expansion-panel{box-sizing:content-box;display:block;margin:0;overflow:hidden;transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);position:relative;background:var(--mat-expansion-container-background-color);color:var(--mat-expansion-container-text-color);border-radius:var(--mat-expansion-container-shape)}.mat-expansion-panel: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)}.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);border-top-left-radius:var(--mat-expansion-container-shape)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape);border-bottom-left-radius:var(--mat-expansion-container-shape)}.cdk-high-contrast-active .mat-expansion-panel{outline:solid 1px}.mat-expansion-panel.ng-animate-disabled,.ng-animate-disabled .mat-expansion-panel,.mat-expansion-panel._mat-animation-noopable{transition:none}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible;font-family:var(--mat-expansion-container-text-font);font-size:var(--mat-expansion-container-text-size);font-weight:var(--mat-expansion-container-text-weight);line-height:var(--mat-expansion-container-text-line-height);letter-spacing:var(--mat-expansion-container-text-tracking)}.mat-expansion-panel-content[style*="visibility: hidden"] *{visibility:hidden !important}.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)}.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}'],encapsulation:2,data:{animation:[d.bodyExpansion]},changeDetection:0})}}return We})();function b(We){return"void"===We.fromState}let N=(()=>{class We{constructor(X,se,ae,he,Ie,st,me){this.panel=X,this._element=se,this._focusMonitor=ae,this._changeDetectorRef=he,this._animationMode=st,this._parentChangeSubscription=D.yU.EMPTY,this.tabIndex=0;const Ee=X.accordion?X.accordion._stateChanges.pipe((0,j.p)(ue=>!(!ue.hideToggle&&!ue.togglePosition))):Q.w;this.tabIndex=parseInt(me||"")||0,this._parentChangeSubscription=(0,J.h)(X.opened,X.closed,Ee,X._inputChanges.pipe((0,j.p)(ue=>!!(ue.hideToggle||ue.disabled||ue.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),X.closed.pipe((0,j.p)(()=>X._containsFocus())).subscribe(()=>ae.focusVia(se,"program")),Ie&&(this.expandedHeight=Ie.expandedHeight,this.collapsedHeight=Ie.collapsedHeight)}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 X=this._isExpanded();return X&&this.expandedHeight?this.expandedHeight:!X&&this.collapsedHeight?this.collapsedHeight:null}_keydown(X){switch(X.keyCode){case W.t6:case W.Fm:(0,W.rp)(X)||(X.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(X))}}focus(X,se){X?this._focusMonitor.focusVia(this._element,X,se):this._element.nativeElement.focus(se)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(X=>{X&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static{this.\u0275fac=function(se){return new(se||We)(e.rXU(a,1),e.rXU(e.aKT),e.rXU(I.FN),e.rXU(e.gRc),e.rXU(_,8),e.rXU(e.bc$,8),e.kS0("tabindex"))}}static{this.\u0275cmp=e.VBU({type:We,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:15,hostBindings:function(se,ae){1&se&&e.bIt("click",function(){return ae._toggle()})("keydown",function(Ie){return ae._keydown(Ie)}),2&se&&(e.BMQ("id",ae.panel._headerId)("tabindex",ae.disabled?-1:ae.tabIndex)("aria-controls",ae._getPanelId())("aria-expanded",ae._isExpanded())("aria-disabled",ae.panel.disabled),e.xc7("height",ae._getHeaderHeight()),e.AVh("mat-expanded",ae._isExpanded())("mat-expansion-toggle-indicator-after","after"===ae._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===ae._getTogglePosition())("_mat-animation-noopable","NoopAnimations"===ae._animationMode))},inputs:{expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight",tabIndex:[2,"tabIndex","tabIndex",X=>null==X?0:(0,e.Udg)(X)]},standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:T,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(se,ae){1&se&&(e.NAR(le),e.j41(0,"span",0),e.SdG(1),e.SdG(2,1),e.SdG(3,2),e.k0s(),e.DNE(4,n,3,1,"span",1)),2&se&&(e.AVh("mat-content-hide-toggle",!ae._showToggle()),e.R7$(4),e.vxM(ae._showToggle()?4:-1))},styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-expansion-header-collapsed-state-height);font-family:var(--mat-expansion-header-text-font);font-size:var(--mat-expansion-header-text-size);font-weight:var(--mat-expansion-header-text-weight);line-height:var(--mat-expansion-header-text-line-height);letter-spacing:var(--mat-expansion-header-text-tracking)}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color)}.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)}@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)}}.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)}.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)}.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)}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";display:inline-block;padding:3px;transform:rotate(45deg);vertical-align:middle;color:var(--mat-expansion-header-indicator-color);display:inline-block;display:var(--mat-expansion-legacy-header-indicator-display, inline-block)}.mat-expansion-indicator svg{width:24px;height:24px;margin:0 -8px;vertical-align:middle;fill:var(--mat-expansion-header-indicator-color);display:none;display:var(--mat-expansion-header-indicator-display, none)}.cdk-high-contrast-active .mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}'],encapsulation:2,data:{animation:[d.indicatorRotate]},changeDetection:0})}}return We})(),q=(()=>{class We{static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275dir=e.FsC({type:We,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"],standalone:!0})}}return We})(),pe=(()=>{class We{static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275dir=e.FsC({type:We,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"],standalone:!0})}}return We})(),ze=(()=>{class We extends f{constructor(){super(...arguments),this._ownHeaders=new e.rOR,this.hideToggle=!1,this.displayMode="default",this.togglePosition="after"}ngAfterContentInit(){this._headers.changes.pipe((0,V.Z)(this._headers)).subscribe(X=>{this._ownHeaders.reset(X.filter(se=>se.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new I.Bu(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(X){this._keyManager.onKeydown(X)}_handleHeaderFocus(X){this._keyManager.updateActiveItem(X)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static{this.\u0275fac=(()=>{let X;return function(ae){return(X||(X=e.xGo(We)))(ae||We)}})()}static{this.\u0275dir=e.FsC({type:We,selectors:[["mat-accordion"]],contentQueries:function(se,ae,he){if(1&se&&e.wni(he,N,5),2&se){let Ie;e.mGM(Ie=e.lsd())&&(ae._headers=Ie)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(se,ae){2&se&&e.AVh("mat-accordion-multi",ae.multi)},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:We}]),e.GFd,e.Vt3]})}}return We})(),Xe=(()=>{class We{static{this.\u0275fac=function(se){return new(se||We)}}static{this.\u0275mod=e.$C({type:We})}static{this.\u0275inj=e.G2t({imports:[O.yE,S,y.jc]})}}return We})()},6467:(Qe,te,g)=>{"use strict";g.d(te,{xb:()=>qt,TL:()=>he,rl:()=>It,qT:()=>je,RG:()=>Qt,MV:()=>st,nJ:()=>X,yw:()=>Be});var e=g(4438),t=g(8203),x=g(6860),D=g(8359),l=g(1413),w=g(7786),f=g(6977),R=g(1985),h=g(5964),S=g(2771),y=g(7647);class V{constructor(xt){this._box=xt,this._destroyed=new l.B,this._resizeSubject=new l.B,this._elementObservables=new Map,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(Se=>this._resizeSubject.next(Se)))}observe(xt){return this._elementObservables.has(xt)||this._elementObservables.set(xt,new R.c(Se=>{const Te=this._resizeSubject.subscribe(Se);return this._resizeObserver?.observe(xt,{box:this._box}),()=>{this._resizeObserver?.unobserve(xt),Te.unsubscribe(),this._elementObservables.delete(xt)}}).pipe((0,h.p)(Se=>Se.some(Te=>Te.target===xt)),function O(Tt,xt,Se){let Te,ce=!1;return Tt&&"object"==typeof Tt?({bufferSize:Te=1/0,windowTime:xt=1/0,refCount:ce=!1,scheduler:Se}=Tt):Te=Tt??1/0,(0,y.u)({connector:()=>new S.m(Te,xt,Se),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:ce})}({bufferSize:1,refCount:!0}),(0,f.Q)(this._destroyed))),this._elementObservables.get(xt)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let j=(()=>{class Tt{constructor(){this._observers=new Map,this._ngZone=(0,e.WQX)(e.SKi)}ngOnDestroy(){for(const[,Se]of this._observers)Se.destroy();this._observers.clear()}observe(Se,Te){const ce=Te?.box||"content-box";return this._observers.has(ce)||this._observers.set(ce,new V(ce)),this._observers.get(ce).observe(Se)}static{this.\u0275fac=function(Te){return new(Te||Tt)}}static{this.\u0275prov=e.jDH({token:Tt,factory:Tt.\u0275fac,providedIn:"root"})}}return Tt})();var Y=g(4085),W=g(9969),Q=g(177),J=g(2318),ie=g(6600);const ee=["notch"],fe=["matFormFieldNotchedOutline",""],ne=["*"],Me=["textField"],Ce=["iconPrefixContainer"],le=["textPrefixContainer"],T=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],n=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];function c(Tt,xt){1&Tt&&e.nrm(0,"span",19)}function m(Tt,xt){if(1&Tt&&(e.j41(0,"label",18),e.SdG(1,1),e.DNE(2,c,1,0,"span",19),e.k0s()),2&Tt){const Se=e.XpG(2);e.Y8G("floating",Se._shouldLabelFloat())("monitorResize",Se._hasOutline())("id",Se._labelId),e.BMQ("for",Se._control.disableAutomaticLabeling?null:Se._control.id),e.R7$(2),e.vxM(!Se.hideRequiredMarker&&Se._control.required?2:-1)}}function d(Tt,xt){if(1&Tt&&e.DNE(0,m,3,5,"label",18),2&Tt){const Se=e.XpG();e.vxM(Se._hasFloatingLabel()?0:-1)}}function C(Tt,xt){1&Tt&&e.nrm(0,"div",5)}function A(Tt,xt){}function k(Tt,xt){if(1&Tt&&e.DNE(0,A,0,0,"ng-template",11),2&Tt){e.XpG(2);const Se=e.sdS(1);e.Y8G("ngTemplateOutlet",Se)}}function _(Tt,xt){if(1&Tt&&(e.j41(0,"div",7),e.DNE(1,k,1,1,null,11),e.k0s()),2&Tt){const Se=e.XpG();e.Y8G("matFormFieldNotchedOutlineOpen",Se._shouldLabelFloat()),e.R7$(),e.vxM(Se._forceDisplayInfixLabel()?-1:1)}}function a(Tt,xt){1&Tt&&(e.j41(0,"div",8,2),e.SdG(2,2),e.k0s())}function b(Tt,xt){1&Tt&&(e.j41(0,"div",9,3),e.SdG(2,3),e.k0s())}function z(Tt,xt){}function N(Tt,xt){if(1&Tt&&e.DNE(0,z,0,0,"ng-template",11),2&Tt){e.XpG();const Se=e.sdS(1);e.Y8G("ngTemplateOutlet",Se)}}function q(Tt,xt){1&Tt&&(e.j41(0,"div",12),e.SdG(1,4),e.k0s())}function pe(Tt,xt){1&Tt&&(e.j41(0,"div",13),e.SdG(1,5),e.k0s())}function ze(Tt,xt){1&Tt&&e.nrm(0,"div",14)}function Xe(Tt,xt){if(1&Tt&&(e.j41(0,"div",16),e.SdG(1,6),e.k0s()),2&Tt){const Se=e.XpG();e.Y8G("@transitionMessages",Se._subscriptAnimationState)}}function We(Tt,xt){if(1&Tt&&(e.j41(0,"mat-hint",20),e.EFF(1),e.k0s()),2&Tt){const Se=e.XpG(2);e.Y8G("id",Se._hintLabelId),e.R7$(),e.JRh(Se.hintLabel)}}function oe(Tt,xt){if(1&Tt&&(e.j41(0,"div",17),e.DNE(1,We,2,2,"mat-hint",20),e.SdG(2,7),e.nrm(3,"div",21),e.SdG(4,8),e.k0s()),2&Tt){const Se=e.XpG();e.Y8G("@transitionMessages",Se._subscriptAnimationState),e.R7$(),e.vxM(Se.hintLabel?1:-1)}}let X=(()=>{class Tt{static{this.\u0275fac=function(Te){return new(Te||Tt)}}static{this.\u0275dir=e.FsC({type:Tt,selectors:[["mat-label"]],standalone:!0})}}return Tt})(),se=0;const ae=new e.nKC("MatError");let he=(()=>{class Tt{constructor(Se,Te){this.id="mat-mdc-error-"+se++,Se||Te.nativeElement.setAttribute("aria-live","polite")}static{this.\u0275fac=function(Te){return new(Te||Tt)(e.kS0("aria-live"),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:Tt,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(Te,ce){2&Te&&e.Mr5("id",ce.id)},inputs:{id:"id"},standalone:!0,features:[e.Jv_([{provide:ae,useExisting:Tt}])]})}}return Tt})(),Ie=0,st=(()=>{class Tt{constructor(){this.align="start",this.id="mat-mdc-hint-"+Ie++}static{this.\u0275fac=function(Te){return new(Te||Tt)}}static{this.\u0275dir=e.FsC({type:Tt,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(Te,ce){2&Te&&(e.Mr5("id",ce.id),e.BMQ("align",null),e.AVh("mat-mdc-form-field-hint-end","end"===ce.align))},inputs:{align:"align",id:"id"},standalone:!0})}}return Tt})();const me=new e.nKC("MatPrefix"),ue=new e.nKC("MatSuffix");let Be=(()=>{class Tt{constructor(){this._isText=!1}set _isTextSelector(Se){this._isText=!0}static{this.\u0275fac=function(Te){return new(Te||Tt)}}static{this.\u0275dir=e.FsC({type:Tt,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[0,"matTextSuffix","_isTextSelector"]},standalone:!0,features:[e.Jv_([{provide:ue,useExisting:Tt}])]})}}return Tt})();const Ct=new e.nKC("FloatingLabelParent");let ct=(()=>{class Tt{get floating(){return this._floating}set floating(Se){this._floating=Se,this.monitorResize&&this._handleResize()}get monitorResize(){return this._monitorResize}set monitorResize(Se){this._monitorResize=Se,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}constructor(Se){this._elementRef=Se,this._floating=!1,this._monitorResize=!1,this._resizeObserver=(0,e.WQX)(j),this._ngZone=(0,e.WQX)(e.SKi),this._parent=(0,e.WQX)(Ct),this._resizeSubscription=new D.yU}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function dt(Tt){if(null!==Tt.offsetParent)return Tt.scrollWidth;const Se=Tt.cloneNode(!0);Se.style.setProperty("position","absolute"),Se.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(Se);const Te=Se.scrollWidth;return Se.remove(),Te}(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{this.\u0275fac=function(Te){return new(Te||Tt)(e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:Tt,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(Te,ce){2&Te&&e.AVh("mdc-floating-label--float-above",ce.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"},standalone:!0})}}return Tt})();const Yt="mdc-line-ripple--active",ve="mdc-line-ripple--deactivating";let _e=(()=>{class Tt{constructor(Se,Te){this._elementRef=Se,this._handleTransitionEnd=ce=>{const Z=this._elementRef.nativeElement.classList,Re=Z.contains(ve);"opacity"===ce.propertyName&&Re&&Z.remove(Yt,ve)},Te.runOutsideAngular(()=>{Se.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const Se=this._elementRef.nativeElement.classList;Se.remove(ve),Se.add(Yt)}deactivate(){this._elementRef.nativeElement.classList.add(ve)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}static{this.\u0275fac=function(Te){return new(Te||Tt)(e.rXU(e.aKT),e.rXU(e.SKi))}}static{this.\u0275dir=e.FsC({type:Tt,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"],standalone:!0})}}return Tt})(),we=(()=>{class Tt{constructor(Se,Te){this._elementRef=Se,this._ngZone=Te,this.open=!1}ngAfterViewInit(){const Se=this._elementRef.nativeElement.querySelector(".mdc-floating-label");Se?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(Se.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>Se.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(Se){this._notch.nativeElement.style.width=this.open&&Se?`calc(${Se}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}static{this.\u0275fac=function(Te){return new(Te||Tt)(e.rXU(e.aKT),e.rXU(e.SKi))}}static{this.\u0275cmp=e.VBU({type:Tt,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(Te,ce){if(1&Te&&e.GBs(ee,5),2&Te){let Z;e.mGM(Z=e.lsd())&&(ce._notch=Z.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(Te,ce){2&Te&&e.AVh("mdc-notched-outline--notched",ce.open)},inputs:{open:[0,"matFormFieldNotchedOutlineOpen","open"]},standalone:!0,features:[e.aNF],attrs:fe,ngContentSelectors:ne,decls:5,vars:0,consts:[["notch",""],[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],[1,"mdc-notched-outline__trailing"]],template:function(Te,ce){1&Te&&(e.NAR(),e.nrm(0,"div",1),e.j41(1,"div",2,0),e.SdG(3),e.k0s(),e.nrm(4,"div",3))},encapsulation:2,changeDetection:0})}}return Tt})();const Ue={transitionMessages:(0,W.hZ)("transitionMessages",[(0,W.wk)("enter",(0,W.iF)({opacity:1,transform:"translateY(0%)"})),(0,W.kY)("void => enter",[(0,W.iF)({opacity:0,transform:"translateY(-5px)"}),(0,W.i0)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let je=(()=>{class Tt{static{this.\u0275fac=function(Te){return new(Te||Tt)}}static{this.\u0275dir=e.FsC({type:Tt})}}return Tt})();const qt=new e.nKC("MatFormField"),Nt=new e.nKC("MAT_FORM_FIELD_DEFAULT_OPTIONS");let yt=0,It=(()=>{class Tt{get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(Se){this._hideRequiredMarker=(0,Y.he)(Se)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(Se){Se!==this._floatLabel&&(this._floatLabel=Se,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(Se){const Te=this._appearance;this._appearance=Se||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==Te&&(this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(Se){this._subscriptSizing=Se||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(Se){this._hintLabel=Se,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(Se){this._explicitFormFieldControl=Se}constructor(Se,Te,ce,Z,Re,Pe,pt,Ke){this._elementRef=Se,this._changeDetectorRef=Te,this._ngZone=ce,this._dir=Z,this._platform=Re,this._defaults=Pe,this._animationMode=pt,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+yt++,this._hintLabelId="mat-mdc-hint-"+yt++,this._subscriptAnimationState="",this._destroyed=new l.B,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,Pe&&(Pe.appearance&&(this.appearance=Pe.appearance),this._hideRequiredMarker=!!Pe?.hideRequiredMarker,Pe.color&&(this.color=Pe.color))}ngAfterViewInit(){this._updateFocusState(),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const Se=this._control;Se.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${Se.controlType}`),Se.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),Se.ngControl&&Se.ngControl.valueChanges&&Se.ngControl.valueChanges.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(Se=>!Se._isText),this._hasTextPrefix=!!this._prefixChildren.find(Se=>Se._isText),this._hasIconSuffix=!!this._suffixChildren.find(Se=>!Se._isText),this._hasTextSuffix=!!this._suffixChildren.find(Se=>Se._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,w.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(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,f.Q)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(Se){const Te=this._control?this._control.ngControl:null;return Te&&Te[Se]}_getDisplayedMessages(){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 Se=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&Se.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const Te=this._hintChildren?this._hintChildren.find(Z=>"start"===Z.align):null,ce=this._hintChildren?this._hintChildren.find(Z=>"end"===Z.align):null;Te?Se.push(Te.id):this._hintLabel&&Se.push(this._hintLabelId),ce&&Se.push(ce.id)}else this._errorChildren&&Se.push(...this._errorChildren.map(Te=>Te.id));this._control.setDescribedByIds(Se)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const Se=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(Se.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const Te=this._iconPrefixContainer?.nativeElement,ce=this._textPrefixContainer?.nativeElement,Z=Te?.getBoundingClientRect().width??0,Re=ce?.getBoundingClientRect().width??0;Se.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${Z+Re}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const Se=this._elementRef.nativeElement;if(Se.getRootNode){const Te=Se.getRootNode();return Te&&Te!==Se}return document.documentElement.contains(Se)}static{this.\u0275fac=function(Te){return new(Te||Tt)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.rXU(t.dS),e.rXU(x.OD),e.rXU(Nt,8),e.rXU(e.bc$,8),e.rXU(Q.qQ))}}static{this.\u0275cmp=e.VBU({type:Tt,selectors:[["mat-form-field"]],contentQueries:function(Te,ce,Z){if(1&Te&&(e.wni(Z,X,5),e.wni(Z,X,7),e.wni(Z,je,5),e.wni(Z,me,5),e.wni(Z,ue,5),e.wni(Z,ae,5),e.wni(Z,st,5)),2&Te){let Re;e.mGM(Re=e.lsd())&&(ce._labelChildNonStatic=Re.first),e.mGM(Re=e.lsd())&&(ce._labelChildStatic=Re.first),e.mGM(Re=e.lsd())&&(ce._formFieldControl=Re.first),e.mGM(Re=e.lsd())&&(ce._prefixChildren=Re),e.mGM(Re=e.lsd())&&(ce._suffixChildren=Re),e.mGM(Re=e.lsd())&&(ce._errorChildren=Re),e.mGM(Re=e.lsd())&&(ce._hintChildren=Re)}},viewQuery:function(Te,ce){if(1&Te&&(e.GBs(Me,5),e.GBs(Ce,5),e.GBs(le,5),e.GBs(ct,5),e.GBs(we,5),e.GBs(_e,5)),2&Te){let Z;e.mGM(Z=e.lsd())&&(ce._textField=Z.first),e.mGM(Z=e.lsd())&&(ce._iconPrefixContainer=Z.first),e.mGM(Z=e.lsd())&&(ce._textPrefixContainer=Z.first),e.mGM(Z=e.lsd())&&(ce._floatingLabel=Z.first),e.mGM(Z=e.lsd())&&(ce._notchedOutline=Z.first),e.mGM(Z=e.lsd())&&(ce._lineRipple=Z.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(Te,ce){2&Te&&e.AVh("mat-mdc-form-field-label-always-float",ce._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",ce._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",ce._hasIconSuffix)("mat-form-field-invalid",ce._control.errorState)("mat-form-field-disabled",ce._control.disabled)("mat-form-field-autofilled",ce._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===ce._animationMode)("mat-form-field-appearance-fill","fill"==ce.appearance)("mat-form-field-appearance-outline","outline"==ce.appearance)("mat-form-field-hide-placeholder",ce._hasFloatingLabel()&&!ce._shouldLabelFloat())("mat-focused",ce._control.focused)("mat-primary","accent"!==ce.color&&"warn"!==ce.color)("mat-accent","accent"===ce.color)("mat-warn","warn"===ce.color)("ng-untouched",ce._shouldForward("untouched"))("ng-touched",ce._shouldForward("touched"))("ng-pristine",ce._shouldForward("pristine"))("ng-dirty",ce._shouldForward("dirty"))("ng-valid",ce._shouldForward("valid"))("ng-invalid",ce._shouldForward("invalid"))("ng-pending",ce._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],standalone:!0,features:[e.Jv_([{provide:qt,useExisting:Tt},{provide:Ct,useExisting:Tt}]),e.aNF],ngContentSelectors:n,decls:18,vars:21,consts:[["labelTemplate",""],["textField",""],["iconPrefixContainer",""],["textPrefixContainer",""],[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",""],[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(Te,ce){if(1&Te){const Z=e.RV6();e.NAR(T),e.DNE(0,d,1,1,"ng-template",null,0,e.C5r),e.j41(2,"div",4,1),e.bIt("click",function(Pe){return e.eBV(Z),e.Njj(ce._control.onContainerClick(Pe))}),e.DNE(4,C,1,0,"div",5),e.j41(5,"div",6),e.DNE(6,_,2,2,"div",7)(7,a,3,0,"div",8)(8,b,3,0,"div",9),e.j41(9,"div",10),e.DNE(10,N,1,1,null,11),e.SdG(11),e.k0s(),e.DNE(12,q,2,0,"div",12)(13,pe,2,0,"div",13),e.k0s(),e.DNE(14,ze,1,0,"div",14),e.k0s(),e.j41(15,"div",15),e.DNE(16,Xe,2,1,"div",16)(17,oe,5,2,"div",17),e.k0s()}if(2&Te){let Z;e.R7$(2),e.AVh("mdc-text-field--filled",!ce._hasOutline())("mdc-text-field--outlined",ce._hasOutline())("mdc-text-field--no-label",!ce._hasFloatingLabel())("mdc-text-field--disabled",ce._control.disabled)("mdc-text-field--invalid",ce._control.errorState),e.R7$(2),e.vxM(ce._hasOutline()||ce._control.disabled?-1:4),e.R7$(2),e.vxM(ce._hasOutline()?6:-1),e.R7$(),e.vxM(ce._hasIconPrefix?7:-1),e.R7$(),e.vxM(ce._hasTextPrefix?8:-1),e.R7$(2),e.vxM(!ce._hasOutline()||ce._forceDisplayInfixLabel()?10:-1),e.R7$(2),e.vxM(ce._hasTextSuffix?12:-1),e.R7$(),e.vxM(ce._hasIconSuffix?13:-1),e.R7$(),e.vxM(ce._hasOutline()?-1:14),e.R7$(),e.AVh("mat-mdc-form-field-subscript-dynamic-size","dynamic"===ce.subscriptSizing),e.R7$(),e.vxM("error"===(Z=ce._getDisplayedMessages())?16:"hint"===Z?17:-1)}},dependencies:[ct,we,Q.T3,_e,st],styles:['.mdc-text-field{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.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__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.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-floating-label--float-above{font-size:.75rem}.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-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 96px/0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;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,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after,.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)[dir=rtl]::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,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;pointer-events:none}.mdc-notched-outline__trailing{flex-grow:1}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.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-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,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{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}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{border-top:1px solid;border-bottom:1px solid}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{max-width:calc(100% - 12px*2)}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::after{border-bottom-width:2px}.mdc-text-field--filled{border-top-left-radius:var(--mdc-filled-text-field-container-shape);border-top-right-radius:var(--mdc-filled-text-field-container-shape);border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-caret-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-error-caret-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-filled-text-field-input-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-filled-text-field-disabled-input-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-focus-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-hover-label-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-disabled-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-focus-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-hover-label-text-color)}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mdc-filled-text-field-label-text-font);font-size:var(--mdc-filled-text-field-label-text-size);font-weight:var(--mdc-filled-text-field-label-text-weight);letter-spacing:var(--mdc-filled-text-field-label-text-tracking)}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mdc-filled-text-field-container-color)}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mdc-filled-text-field-disabled-container-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-hover-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-focus-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-disabled-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-hover-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-error-focus-active-indicator-color)}.mdc-text-field--filled .mdc-line-ripple::before{border-bottom-width:var(--mdc-filled-text-field-active-indicator-height)}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mdc-filled-text-field-focus-active-indicator-height)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-caret-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-error-caret-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-outlined-text-field-input-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-outlined-text-field-disabled-input-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-focus-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-hover-label-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-disabled-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-focus-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-hover-label-text-color)}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mdc-outlined-text-field-label-text-font);font-size:var(--mdc-outlined-text-field-label-text-size);font-weight:var(--mdc-outlined-text-field-label-text-weight);letter-spacing:var(--mdc-outlined-text-field-label-text-tracking)}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(.75*var(--mdc-outlined-text-field-label-text-size))}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mdc-outlined-text-field-label-text-size)}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-outlined-text-field-container-shape))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-hover-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-focus-outline-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-disabled-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-hover-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-focus-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-outline-width)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-focus-outline-width)}.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)}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.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-text-field-wrapper::before{content:none}.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);padding-top:var(--mat-form-field-filled-with-label-container-padding-top);padding-bottom:var(--mat-form-field-filled-with-label-container-padding-bottom)}.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);padding-bottom:var(--mat-form-field-container-vertical-padding)}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:calc(var(--mat-form-field-container-height)/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) / 2) * -1)) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}.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}.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)}.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);line-height:var(--mat-form-field-subscript-text-line-height);font-size:var(--mat-form-field-subscript-text-size);letter-spacing:var(--mat-form-field-subscript-text-tracking);font-weight:var(--mat-form-field-subscript-text-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)}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-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)}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)}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)}.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)}[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)}.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)}.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}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-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);line-height:var(--mat-form-field-container-text-line-height);font-size:var(--mat-form-field-container-text-size);letter-spacing:var(--mat-form-field-container-text-tracking);font-weight:var(--mat-form-field-container-text-weight)}[dir=rtl] .mat-mdc-form-field{text-align:right}.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)}.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)}.mat-form-field-disabled .mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-disabled-leading-icon-color)}.mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-trailing-icon-color)}.mat-form-field-disabled .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-disabled-trailing-icon-color)}.mat-form-field-invalid .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-trailing-icon-color)}.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)}.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)}.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 .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:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .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)}.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)}'],encapsulation:2,data:{animation:[Ue.transitionMessages]},changeDetection:0})}}return Tt})(),Qt=(()=>{class Tt{static{this.\u0275fac=function(Te){return new(Te||Tt)}}static{this.\u0275mod=e.$C({type:Tt})}static{this.\u0275inj=e.G2t({imports:[ie.yE,Q.MD,J.w5,ie.yE]})}}return Tt})()},6195:(Qe,te,g)=>{"use strict";g.d(te,{B_:()=>Ce,Fe:()=>le,NS:()=>O});var e=g(4438),t=g(6600),x=g(4085),D=g(8203);const l=["*"];class h{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const c=Math.max(...this.tracker);return c>1?this.rowCount+c-1:this.rowCount}update(c,m){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(c),this.tracker.fill(0,0,this.tracker.length),this.positions=m.map(d=>this._trackTile(d))}_trackTile(c){const m=this._findMatchingGap(c.colspan);return this._markTilePosition(m,c),this.columnIndex=m+c.colspan,new S(this.rowIndex,m)}_findMatchingGap(c){let m=-1,d=-1;do{this.columnIndex+c>this.tracker.length?(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),d=this._findGapEndIndex(m)):(m=this.tracker.indexOf(0,this.columnIndex),-1!=m?(d=this._findGapEndIndex(m),this.columnIndex=m+1):(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),d=this._findGapEndIndex(m)))}while(d-m{class n{constructor(m,d){this._element=m,this._gridList=d,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(m){this._rowspan=Math.round((0,x.OE)(m))}get colspan(){return this._colspan}set colspan(m){this._colspan=Math.round((0,x.OE)(m))}_setStyle(m,d){this._element.nativeElement.style[m]=d}static{this.\u0275fac=function(d){return new(d||n)(e.rXU(e.aKT),e.rXU(y,8))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(d,C){2&d&&e.BMQ("rowspan",C.rowspan)("colspan",C.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],standalone:!0,features:[e.aNF],ngContentSelectors:l,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(d,C){1&d&&(e.NAR(),e.j41(0,"div",0),e.SdG(1),e.k0s())},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)}.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)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.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)}.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}"],encapsulation:2,changeDetection:0})}}return n})();const W=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Q{constructor(){this._rows=0,this._rowspan=0}init(c,m,d,C){this._gutterSize=ne(c),this._rows=m.rowCount,this._rowspan=m.rowspan,this._cols=d,this._direction=C}getBaseTileSize(c,m){return`(${c}% - (${this._gutterSize} * ${m}))`}getTilePosition(c,m){return 0===m?"0":fe(`(${c} + ${this._gutterSize}) * ${m}`)}getTileSize(c,m){return`(${c} * ${m}) + (${m-1} * ${this._gutterSize})`}setStyle(c,m,d){let C=100/this._cols,A=(this._cols-1)/this._cols;this.setColStyles(c,d,C,A),this.setRowStyles(c,m,C,A)}setColStyles(c,m,d,C){let A=this.getBaseTileSize(d,C);c._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(A,m)),c._setStyle("width",fe(this.getTileSize(A,c.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(c){return`${this._rowspan} * ${this.getTileSize(c,1)}`}getComputedHeight(){return null}}class J extends Q{constructor(c){super(),this.fixedRowHeight=c}init(c,m,d,C){super.init(c,m,d,C),this.fixedRowHeight=ne(this.fixedRowHeight),W.test(this.fixedRowHeight)}setRowStyles(c,m){c._setStyle("top",this.getTilePosition(this.fixedRowHeight,m)),c._setStyle("height",fe(this.getTileSize(this.fixedRowHeight,c.rowspan)))}getComputedHeight(){return["height",fe(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["height",null]),c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}class ie extends Q{constructor(c){super(),this._parseRatio(c)}setRowStyles(c,m,d,C){this.baseTileHeight=this.getBaseTileSize(d/this.rowHeightRatio,C),c._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,m)),c._setStyle("paddingTop",fe(this.getTileSize(this.baseTileHeight,c.rowspan)))}getComputedHeight(){return["paddingBottom",fe(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["paddingBottom",null]),c._tiles.forEach(m=>{m._setStyle("marginTop",null),m._setStyle("paddingTop",null)})}_parseRatio(c){const m=c.split(":");this.rowHeightRatio=parseFloat(m[0])/parseFloat(m[1])}}class ee extends Q{setRowStyles(c,m){let A=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);c._setStyle("top",this.getTilePosition(A,m)),c._setStyle("height",fe(this.getTileSize(A,c.rowspan)))}reset(c){c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}function fe(n){return`calc(${n})`}function ne(n){return n.match(/([A-Za-z%]+)$/)?n:`${n}px`}let Ce=(()=>{class n{constructor(m,d){this._element=m,this._dir=d,this._gutter="1px"}get cols(){return this._cols}set cols(m){this._cols=Math.max(1,Math.round((0,x.OE)(m)))}get gutterSize(){return this._gutter}set gutterSize(m){this._gutter=`${m??""}`}get rowHeight(){return this._rowHeight}set rowHeight(m){const d=`${m??""}`;d!==this._rowHeight&&(this._rowHeight=d,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(m){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===m?new ee:m&&m.indexOf(":")>-1?new ie(m):new J(m)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new h);const m=this._tileCoordinator,d=this._tiles.filter(A=>!A._gridList||A._gridList===this),C=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,d),this._tileStyler.init(this.gutterSize,m,this.cols,C),d.forEach((A,k)=>{const _=m.positions[k];this._tileStyler.setStyle(A,_.row,_.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(m){m&&(this._element.nativeElement.style[m[0]]=m[1])}static{this.\u0275fac=function(d){return new(d||n)(e.rXU(e.aKT),e.rXU(D.dS,8))}}static{this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-list"]],contentQueries:function(d,C,A){if(1&d&&e.wni(A,O,5),2&d){let k;e.mGM(k=e.lsd())&&(C._tiles=k)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(d,C){2&d&&e.BMQ("cols",C.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],standalone:!0,features:[e.Jv_([{provide:y,useExisting:n}]),e.aNF],ngContentSelectors:l,decls:2,vars:0,template:function(d,C){1&d&&(e.NAR(),e.j41(0,"div"),e.SdG(1),e.k0s())},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)}.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)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.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)}.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}"],encapsulation:2,changeDetection:0})}}return n})(),le=(()=>{class n{static{this.\u0275fac=function(d){return new(d||n)}}static{this.\u0275mod=e.$C({type:n})}static{this.\u0275inj=e.G2t({imports:[t.Np,t.yE,t.Np,t.yE]})}}return n})()},9213:(Qe,te,g)=>{"use strict";g.d(te,{An:()=>b,m_:()=>z});var e=g(4438),t=g(6600),x=g(177),D=g(7673),l=g(8810),w=g(7468),f=g(8359),R=g(8141),h=g(6354),S=g(9437),y=g(980),O=g(7647),I=g(6697),V=g(1626),j=g(345);const Y=["*"];let W;function J(N){return function Q(){if(void 0===W&&(W=null,typeof window<"u")){const N=window;void 0!==N.trustedTypes&&(W=N.trustedTypes.createPolicy("angular#components",{createHTML:q=>q}))}return W}()?.createHTML(N)||N}function ie(N){return Error(`Unable to find icon with the name "${N}"`)}function fe(N){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${N}".`)}function ne(N){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${N}".`)}class Me{constructor(q,pe,ze){this.url=q,this.svgText=pe,this.options=ze}}let Ce=(()=>{class N{constructor(pe,ze,Xe,We){this._httpClient=pe,this._sanitizer=ze,this._errorHandler=We,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._resolvers=[],this._defaultFontSetClass=["material-icons","mat-ligature-font"],this._document=Xe}addSvgIcon(pe,ze,Xe){return this.addSvgIconInNamespace("",pe,ze,Xe)}addSvgIconLiteral(pe,ze,Xe){return this.addSvgIconLiteralInNamespace("",pe,ze,Xe)}addSvgIconInNamespace(pe,ze,Xe,We){return this._addSvgIconConfig(pe,ze,new Me(Xe,null,We))}addSvgIconResolver(pe){return this._resolvers.push(pe),this}addSvgIconLiteralInNamespace(pe,ze,Xe,We){const oe=this._sanitizer.sanitize(e.WPN.HTML,Xe);if(!oe)throw ne(Xe);const X=J(oe);return this._addSvgIconConfig(pe,ze,new Me("",X,We))}addSvgIconSet(pe,ze){return this.addSvgIconSetInNamespace("",pe,ze)}addSvgIconSetLiteral(pe,ze){return this.addSvgIconSetLiteralInNamespace("",pe,ze)}addSvgIconSetInNamespace(pe,ze,Xe){return this._addSvgIconSetConfig(pe,new Me(ze,null,Xe))}addSvgIconSetLiteralInNamespace(pe,ze,Xe){const We=this._sanitizer.sanitize(e.WPN.HTML,ze);if(!We)throw ne(ze);const oe=J(We);return this._addSvgIconSetConfig(pe,new Me("",oe,Xe))}registerFontClassAlias(pe,ze=pe){return this._fontCssClassesByAlias.set(pe,ze),this}classNameForFontAlias(pe){return this._fontCssClassesByAlias.get(pe)||pe}setDefaultFontSetClass(...pe){return this._defaultFontSetClass=pe,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(pe){const ze=this._sanitizer.sanitize(e.WPN.RESOURCE_URL,pe);if(!ze)throw fe(pe);const Xe=this._cachedIconsByUrl.get(ze);return Xe?(0,D.of)(n(Xe)):this._loadSvgIconFromConfig(new Me(pe,null)).pipe((0,R.M)(We=>this._cachedIconsByUrl.set(ze,We)),(0,h.T)(We=>n(We)))}getNamedSvgIcon(pe,ze=""){const Xe=c(ze,pe);let We=this._svgIconConfigs.get(Xe);if(We)return this._getSvgFromConfig(We);if(We=this._getIconConfigFromResolvers(ze,pe),We)return this._svgIconConfigs.set(Xe,We),this._getSvgFromConfig(We);const oe=this._iconSetConfigs.get(ze);return oe?this._getSvgFromIconSetConfigs(pe,oe):(0,l.$)(ie(Xe))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(pe){return pe.svgText?(0,D.of)(n(this._svgElementFromConfig(pe))):this._loadSvgIconFromConfig(pe).pipe((0,h.T)(ze=>n(ze)))}_getSvgFromIconSetConfigs(pe,ze){const Xe=this._extractIconWithNameFromAnySet(pe,ze);if(Xe)return(0,D.of)(Xe);const We=ze.filter(oe=>!oe.svgText).map(oe=>this._loadSvgIconSetFromConfig(oe).pipe((0,S.W)(X=>{const ae=`Loading icon set URL: ${this._sanitizer.sanitize(e.WPN.RESOURCE_URL,oe.url)} failed: ${X.message}`;return this._errorHandler.handleError(new Error(ae)),(0,D.of)(null)})));return(0,w.p)(We).pipe((0,h.T)(()=>{const oe=this._extractIconWithNameFromAnySet(pe,ze);if(!oe)throw ie(pe);return oe}))}_extractIconWithNameFromAnySet(pe,ze){for(let Xe=ze.length-1;Xe>=0;Xe--){const We=ze[Xe];if(We.svgText&&We.svgText.toString().indexOf(pe)>-1){const oe=this._svgElementFromConfig(We),X=this._extractSvgIconFromSet(oe,pe,We.options);if(X)return X}}return null}_loadSvgIconFromConfig(pe){return this._fetchIcon(pe).pipe((0,R.M)(ze=>pe.svgText=ze),(0,h.T)(()=>this._svgElementFromConfig(pe)))}_loadSvgIconSetFromConfig(pe){return pe.svgText?(0,D.of)(null):this._fetchIcon(pe).pipe((0,R.M)(ze=>pe.svgText=ze))}_extractSvgIconFromSet(pe,ze,Xe){const We=pe.querySelector(`[id="${ze}"]`);if(!We)return null;const oe=We.cloneNode(!0);if(oe.removeAttribute("id"),"svg"===oe.nodeName.toLowerCase())return this._setSvgAttributes(oe,Xe);if("symbol"===oe.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(oe),Xe);const X=this._svgElementFromString(J(""));return X.appendChild(oe),this._setSvgAttributes(X,Xe)}_svgElementFromString(pe){const ze=this._document.createElement("DIV");ze.innerHTML=pe;const Xe=ze.querySelector("svg");if(!Xe)throw Error(" tag not found");return Xe}_toSvgElement(pe){const ze=this._svgElementFromString(J("")),Xe=pe.attributes;for(let We=0;WeJ(ae)),(0,y.j)(()=>this._inProgressUrlFetches.delete(oe)),(0,O.u)());return this._inProgressUrlFetches.set(oe,se),se}_addSvgIconConfig(pe,ze,Xe){return this._svgIconConfigs.set(c(pe,ze),Xe),this}_addSvgIconSetConfig(pe,ze){const Xe=this._iconSetConfigs.get(pe);return Xe?Xe.push(ze):this._iconSetConfigs.set(pe,[ze]),this}_svgElementFromConfig(pe){if(!pe.svgElement){const ze=this._svgElementFromString(pe.svgText);this._setSvgAttributes(ze,pe.options),pe.svgElement=ze}return pe.svgElement}_getIconConfigFromResolvers(pe,ze){for(let Xe=0;Xeq?q.pathname+q.search:""}}}),k=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],_=k.map(N=>`[${N}]`).join(", "),a=/^url\(['"]?#(.*?)['"]?\)$/;let b=(()=>{class N{get color(){return this._color||this._defaultColor}set color(pe){this._color=pe}get svgIcon(){return this._svgIcon}set svgIcon(pe){pe!==this._svgIcon&&(pe?this._updateSvgIcon(pe):this._svgIcon&&this._clearSvgElement(),this._svgIcon=pe)}get fontSet(){return this._fontSet}set fontSet(pe){const ze=this._cleanupFontValue(pe);ze!==this._fontSet&&(this._fontSet=ze,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(pe){const ze=this._cleanupFontValue(pe);ze!==this._fontIcon&&(this._fontIcon=ze,this._updateFontIconClasses())}constructor(pe,ze,Xe,We,oe,X){this._elementRef=pe,this._iconRegistry=ze,this._location=We,this._errorHandler=oe,this.inline=!1,this._previousFontSetClass=[],this._currentIconFetch=f.yU.EMPTY,X&&(X.color&&(this.color=this._defaultColor=X.color),X.fontSet&&(this.fontSet=X.fontSet)),Xe||pe.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(pe){if(!pe)return["",""];const ze=pe.split(":");switch(ze.length){case 1:return["",ze[0]];case 2:return ze;default:throw Error(`Invalid icon name: "${pe}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const pe=this._elementsWithExternalReferences;if(pe&&pe.size){const ze=this._location.getPathname();ze!==this._previousPath&&(this._previousPath=ze,this._prependPathToReferences(ze))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(pe){this._clearSvgElement();const ze=this._location.getPathname();this._previousPath=ze,this._cacheChildrenWithExternalReferences(pe),this._prependPathToReferences(ze),this._elementRef.nativeElement.appendChild(pe)}_clearSvgElement(){const pe=this._elementRef.nativeElement;let ze=pe.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();ze--;){const Xe=pe.childNodes[ze];(1!==Xe.nodeType||"svg"===Xe.nodeName.toLowerCase())&&Xe.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const pe=this._elementRef.nativeElement,ze=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(Xe=>Xe.length>0);this._previousFontSetClass.forEach(Xe=>pe.classList.remove(Xe)),ze.forEach(Xe=>pe.classList.add(Xe)),this._previousFontSetClass=ze,this.fontIcon!==this._previousFontIconClass&&!ze.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 ze=this._elementsWithExternalReferences;ze&&ze.forEach((Xe,We)=>{Xe.forEach(oe=>{We.setAttribute(oe.name,`url('${pe}#${oe.value}')`)})})}_cacheChildrenWithExternalReferences(pe){const ze=pe.querySelectorAll(_),Xe=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let We=0;We{const X=ze[We],se=X.getAttribute(oe),ae=se?se.match(a):null;if(ae){let he=Xe.get(X);he||(he=[],Xe.set(X,he)),he.push({name:oe,value:ae[1]})}})}_updateSvgIcon(pe){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),pe){const[ze,Xe]=this._splitIconName(pe);ze&&(this._svgNamespace=ze),Xe&&(this._svgName=Xe),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(Xe,ze).pipe((0,I.s)(1)).subscribe(We=>this._setSvgElement(We),We=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${ze}:${Xe}! ${We.message}`))})}}static{this.\u0275fac=function(ze){return new(ze||N)(e.rXU(e.aKT),e.rXU(Ce),e.kS0("aria-hidden"),e.rXU(C),e.rXU(e.zcH),e.rXU(d,8))}}static{this.\u0275cmp=e.VBU({type:N,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:10,hostBindings:function(ze,Xe){2&ze&&(e.BMQ("data-mat-icon-type",Xe._usingFontIcon()?"font":"svg")("data-mat-icon-name",Xe._svgName||Xe.fontIcon)("data-mat-icon-namespace",Xe._svgNamespace||Xe.fontSet)("fontIcon",Xe._usingFontIcon()?Xe.fontIcon:null),e.HbH(Xe.color?"mat-"+Xe.color:""),e.AVh("mat-icon-inline",Xe.inline)("mat-icon-no-color","primary"!==Xe.color&&"accent"!==Xe.color&&"warn"!==Xe.color))},inputs:{color:"color",inline:[2,"inline","inline",e.L39],svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:Y,decls:1,vars:0,template:function(ze,Xe){1&ze&&(e.NAR(),e.SdG(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color)}.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}"],encapsulation:2,changeDetection:0})}}return N})(),z=(()=>{class N{static{this.\u0275fac=function(ze){return new(ze||N)}}static{this.\u0275mod=e.$C({type:N})}static{this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}}return N})()},9631:(Qe,te,g)=>{"use strict";g.d(te,{Oh:()=>j,fg:()=>Q,fS:()=>J});var e=g(4085),t=g(6860),x=g(4438),D=g(983),l=g(1413);const w=(0,t.BQ)({passive:!0});let f=(()=>{class ie{constructor(fe,ne){this._platform=fe,this._ngZone=ne,this._monitoredElements=new Map}monitor(fe){if(!this._platform.isBrowser)return D.w;const ne=(0,e.i8)(fe),Me=this._monitoredElements.get(ne);if(Me)return Me.subject;const Ce=new l.B,le="cdk-text-field-autofilled",T=n=>{"cdk-text-field-autofill-start"!==n.animationName||ne.classList.contains(le)?"cdk-text-field-autofill-end"===n.animationName&&ne.classList.contains(le)&&(ne.classList.remove(le),this._ngZone.run(()=>Ce.next({target:n.target,isAutofilled:!1}))):(ne.classList.add(le),this._ngZone.run(()=>Ce.next({target:n.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{ne.addEventListener("animationstart",T,w),ne.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(ne,{subject:Ce,unlisten:()=>{ne.removeEventListener("animationstart",T,w)}}),Ce}stopMonitoring(fe){const ne=(0,e.i8)(fe),Me=this._monitoredElements.get(ne);Me&&(Me.unlisten(),Me.subject.complete(),ne.classList.remove("cdk-text-field-autofill-monitored"),ne.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(ne))}ngOnDestroy(){this._monitoredElements.forEach((fe,ne)=>this.stopMonitoring(ne))}static{this.\u0275fac=function(ne){return new(ne||ie)(x.KVO(t.OD),x.KVO(x.SKi))}}static{this.\u0275prov=x.jDH({token:ie,factory:ie.\u0275fac,providedIn:"root"})}}return ie})(),S=(()=>{class ie{static{this.\u0275fac=function(ne){return new(ne||ie)}}static{this.\u0275mod=x.$C({type:ie})}static{this.\u0275inj=x.G2t({})}}return ie})();var y=g(9417),O=g(6600),I=g(6467);const j=new x.nKC("MAT_INPUT_VALUE_ACCESSOR"),Y=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let W=0,Q=(()=>{class ie{get disabled(){return this._disabled}set disabled(fe){this._disabled=(0,e.he)(fe),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(fe){this._id=fe||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(fe){this._required=(0,e.he)(fe)}get type(){return this._type}set type(fe){this._type=fe||"text",this._validateType(),!this._isTextarea&&(0,t.MU)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(fe){this._errorStateTracker.matcher=fe}get value(){return this._inputValueAccessor.value}set value(fe){fe!==this.value&&(this._inputValueAccessor.value=fe,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(fe){this._readonly=(0,e.he)(fe)}get errorState(){return this._errorStateTracker.errorState}set errorState(fe){this._errorStateTracker.errorState=fe}constructor(fe,ne,Me,Ce,le,T,n,c,m,d){this._elementRef=fe,this._platform=ne,this.ngControl=Me,this._autofillMonitor=c,this._formField=d,this._uid="mat-input-"+W++,this.focused=!1,this.stateChanges=new l.B,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(k=>(0,t.MU)().has(k)),this._iOSKeyupListener=k=>{const _=k.target;!_.value&&0===_.selectionStart&&0===_.selectionEnd&&(_.setSelectionRange(1,1),_.setSelectionRange(0,0))};const C=this._elementRef.nativeElement,A=C.nodeName.toLowerCase();this._inputValueAccessor=n||C,this._previousNativeValue=this.value,this.id=this.id,ne.IOS&&m.runOutsideAngular(()=>{fe.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._errorStateTracker=new O.X0(T,Me,le,Ce,this.stateChanges),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===A,this._isTextarea="textarea"===A,this._isInFormField=!!d,this._isNativeSelect&&(this.controlType=C.multiple?"mat-native-select-multiple":"mat-native-select")}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(fe=>{this.autofilled=fe.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}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(fe){this._elementRef.nativeElement.focus(fe)}updateErrorState(){this._errorStateTracker.updateErrorState()}_focusChanged(fe){fe!==this.focused&&(this.focused=fe,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const fe=this._elementRef.nativeElement.value;this._previousNativeValue!==fe&&(this._previousNativeValue=fe,this.stateChanges.next())}_dirtyCheckPlaceholder(){const fe=this._getPlaceholder();if(fe!==this._previousPlaceholder){const ne=this._elementRef.nativeElement;this._previousPlaceholder=fe,fe?ne.setAttribute("placeholder",fe):ne.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){Y.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let fe=this._elementRef.nativeElement.validity;return fe&&fe.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const fe=this._elementRef.nativeElement,ne=fe.options[0];return this.focused||fe.multiple||!this.empty||!!(fe.selectedIndex>-1&&ne&&ne.label)}return this.focused||!this.empty}setDescribedByIds(fe){fe.length?this._elementRef.nativeElement.setAttribute("aria-describedby",fe.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const fe=this._elementRef.nativeElement;return this._isNativeSelect&&(fe.multiple||fe.size>1)}static{this.\u0275fac=function(ne){return new(ne||ie)(x.rXU(x.aKT),x.rXU(t.OD),x.rXU(y.vO,10),x.rXU(y.cV,8),x.rXU(y.j4,8),x.rXU(O.es),x.rXU(j,10),x.rXU(f),x.rXU(x.SKi),x.rXU(I.xb,8))}}static{this.\u0275dir=x.FsC({type:ie,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(ne,Me){1&ne&&x.bIt("focus",function(){return Me._focusChanged(!0)})("blur",function(){return Me._focusChanged(!1)})("input",function(){return Me._onInput()}),2&ne&&(x.Mr5("id",Me.id)("disabled",Me.disabled)("required",Me.required),x.BMQ("name",Me.name||null)("readonly",Me.readonly&&!Me._isNativeSelect||null)("aria-invalid",Me.empty&&Me.required?null:Me.errorState)("aria-required",Me.required)("id",Me.id),x.AVh("mat-input-server",Me._isServer)("mat-mdc-form-field-textarea-control",Me._isInFormField&&Me._isTextarea)("mat-mdc-form-field-input-control",Me._isInFormField)("mdc-text-field__input",Me._isInFormField)("mat-mdc-native-select-inline",Me._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"},exportAs:["matInput"],standalone:!0,features:[x.Jv_([{provide:I.qT,useExisting:ie}]),x.OA$]})}}return ie})(),J=(()=>{class ie{static{this.\u0275fac=function(ne){return new(ne||ie)}}static{this.\u0275mod=x.$C({type:ie})}static{this.\u0275inj=x.G2t({imports:[O.yE,I.RG,I.RG,S,O.yE]})}}return ie})()},3902:(Qe,te,g)=>{"use strict";g.d(te,{Fg:()=>we,YE:()=>Ee,jt:()=>me});var e=g(4438),t=g(4085),x=g(6860),D=g(6600),l=g(8359),w=g(7786),R=(g(1413),g(2318)),h=g(177),S=g(1997);g(8617),g(5024),g(7336),g(9417),g(6977);const Y=["*"],Q=["unscopedContent"],J=["text"],ie=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],ee=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],N=new e.nKC("ListOption");let q=(()=>{class Ue{constructor(vt){this._elementRef=vt}static{this.\u0275fac=function($e){return new($e||Ue)(e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:Ue,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"],standalone:!0})}}return Ue})(),pe=(()=>{class Ue{constructor(vt){this._elementRef=vt}static{this.\u0275fac=function($e){return new($e||Ue)(e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:Ue,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"],standalone:!0})}}return Ue})(),ze=(()=>{class Ue{static{this.\u0275fac=function($e){return new($e||Ue)}}static{this.\u0275dir=e.FsC({type:Ue,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"],standalone:!0})}}return Ue})(),Xe=(()=>{class Ue{constructor(vt){this._listOption=vt}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static{this.\u0275fac=function($e){return new($e||Ue)(e.rXU(N,8))}}static{this.\u0275dir=e.FsC({type:Ue,hostVars:4,hostBindings:function($e,nt){2&$e&&e.AVh("mdc-list-item__start",nt._isAlignedAtStart())("mdc-list-item__end",!nt._isAlignedAtStart())},standalone:!0})}}return Ue})(),We=(()=>{class Ue extends Xe{static{this.\u0275fac=(()=>{let vt;return function(nt){return(vt||(vt=e.xGo(Ue)))(nt||Ue)}})()}static{this.\u0275dir=e.FsC({type:Ue,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],standalone:!0,features:[e.Vt3]})}}return Ue})(),oe=(()=>{class Ue extends Xe{static{this.\u0275fac=(()=>{let vt;return function(nt){return(vt||(vt=e.xGo(Ue)))(nt||Ue)}})()}static{this.\u0275dir=e.FsC({type:Ue,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],standalone:!0,features:[e.Vt3]})}}return Ue})();const X=new e.nKC("MAT_LIST_CONFIG");let se=(()=>{class Ue{constructor(){this._isNonInteractive=!0,this._disableRipple=!1,this._disabled=!1,this._defaultOptions=(0,e.WQX)(X,{optional:!0})}get disableRipple(){return this._disableRipple}set disableRipple(vt){this._disableRipple=(0,t.he)(vt)}get disabled(){return this._disabled}set disabled(vt){this._disabled=(0,t.he)(vt)}static{this.\u0275fac=function($e){return new($e||Ue)}}static{this.\u0275dir=e.FsC({type:Ue,hostVars:1,hostBindings:function($e,nt){2&$e&&e.BMQ("aria-disabled",nt.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}}return Ue})(),ae=(()=>{class Ue{set lines(vt){this._explicitLines=(0,t.OE)(vt,null),this._updateItemLines(!1)}get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(vt){this._disableRipple=(0,t.he)(vt)}get disabled(){return this._disabled||!!this._listBase?.disabled}set disabled(vt){this._disabled=(0,t.he)(vt)}get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(vt,$e,nt,qt,Nt,yt){this._elementRef=vt,this._ngZone=$e,this._listBase=nt,this._platform=qt,this._explicitLines=null,this._disableRipple=!1,this._disabled=!1,this._subscriptions=new l.yU,this._rippleRenderer=null,this._hasUnscopedTextContent=!1,this.rippleConfig=Nt||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._noopAnimations="NoopAnimations"===yt,nt&&!nt._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 D.ug(this,this._ngZone,this._hostElement,this._platform),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,w.h)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(vt){if(!this._lines||!this._titles||!this._unscopedContent)return;vt&&this._checkDomForUnscopedTextContent();const $e=this._explicitLines??this._inferLinesFromContent(),nt=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",$e<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",$e<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===$e),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===$e),this._hasUnscopedTextContent){const qt=0===this._titles.length&&1===$e;nt.classList.toggle("mdc-list-item__primary-text",qt),nt.classList.toggle("mdc-list-item__secondary-text",!qt)}else nt.classList.remove("mdc-list-item__primary-text"),nt.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let vt=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(vt+=1),vt}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(vt=>vt.nodeType!==vt.COMMENT_NODE).some(vt=>!(!vt.textContent||!vt.textContent.trim()))}static{this.\u0275fac=function($e){return new($e||Ue)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(se,8),e.rXU(x.OD),e.rXU(D.$E,8),e.rXU(e.bc$,8))}}static{this.\u0275dir=e.FsC({type:Ue,contentQueries:function($e,nt,qt){if(1&$e&&(e.wni(qt,We,4),e.wni(qt,oe,4)),2&$e){let Nt;e.mGM(Nt=e.lsd())&&(nt._avatars=Nt),e.mGM(Nt=e.lsd())&&(nt._icons=Nt)}},hostVars:4,hostBindings:function($e,nt){2&$e&&(e.BMQ("aria-disabled",nt.disabled)("disabled",nt._isButtonElement&&nt.disabled||null),e.AVh("mdc-list-item--disabled",nt.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}}return Ue})(),me=(()=>{class Ue extends se{static{this.\u0275fac=(()=>{let vt;return function(nt){return(vt||(vt=e.xGo(Ue)))(nt||Ue)}})()}static{this.\u0275cmp=e.VBU({type:Ue,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],standalone:!0,features:[e.Jv_([{provide:se,useExisting:Ue}]),e.Vt3,e.aNF],ngContentSelectors:Y,decls:1,vars:0,template:function($e,nt){1&$e&&(e.NAR(),e.SdG(0))},styles:['@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-list-divider::after{content:"";display:block;border-bottom-width:1px;border-bottom-style:solid}}.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item__wrapper{display:block}.mdc-list-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer}.mdc-list-item:focus{outline:none}.mdc-list-item.mdc-list-item--with-one-line{height:48px}.mdc-list-item.mdc-list-item--with-two-lines{height:64px}.mdc-list-item.mdc-list-item--with-three-lines{height:88px}.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-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.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-one-line .mdc-list-item__end{align-self:center;margin-top:0}.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 .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--disabled,.mdc-list-item.mdc-list-item--non-interactive{cursor:auto}.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::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}@media screen and (forced-colors: active){.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px double rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected:focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected:focus::before{border-color:CanvasText}}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.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__content[for]{pointer-events:none}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.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;line-height:normal}.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__overline-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:24px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start,.mdc-list-item--with-leading-avatar .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.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-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-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-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.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-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-leading-avatar.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-avatar .mdc-list-item__start{border-radius:50%}.mdc-list-item--with-leading-icon.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-leading-icon .mdc-list-item__start[dir=rtl]{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon.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-icon.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-icon.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-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.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-icon.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-leading-icon.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-thumbnail.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-thumbnail.mdc-list-item,.mdc-list-item--with-leading-thumbnail.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-thumbnail .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-thumbnail .mdc-list-item__start,.mdc-list-item--with-leading-thumbnail .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-thumbnail.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-thumbnail.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-thumbnail.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-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.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-thumbnail.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-leading-thumbnail.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-image.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-image.mdc-list-item,.mdc-list-item--with-leading-image.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-image .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-image .mdc-list-item__start,.mdc-list-item--with-leading-image .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-image.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-image.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-image.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-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.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-image.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-leading-image.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-video.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-video.mdc-list-item,.mdc-list-item--with-leading-video.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-video .mdc-list-item__start{margin-left:0;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-video .mdc-list-item__start,.mdc-list-item--with-leading-video .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:0}.mdc-list-item--with-leading-video.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-video.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-video.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-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.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-video.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-leading-video.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-checkbox.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.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-leading-checkbox.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-checkbox.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-checkbox.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-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.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-checkbox.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-leading-checkbox.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-radio.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-radio.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-radio .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-radio .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-radio.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{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{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__overline-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__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-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{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{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-switch.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-switch.mdc-list-item,.mdc-list-item--with-leading-switch.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-switch .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-switch .mdc-list-item__start,.mdc-list-item--with-leading-switch .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item--with-leading-switch.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-switch.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-switch.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-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.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-switch.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-leading-switch.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item,.mdc-list-item--with-trailing-icon.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-icon .mdc-list-item__end,.mdc-list-item--with-trailing-icon .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item,.mdc-list-item--with-trailing-meta.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-trailing-meta .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.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-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);line-height:var(--mdc-typography-caption-line-height);font-weight:var(--mdc-typography-caption-font-weight);letter-spacing:var(--mdc-typography-caption-letter-spacing);text-decoration:var(--mdc-typography-caption-text-decoration);text-transform:var(--mdc-typography-caption-text-transform)}.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.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-item--with-trailing-radio.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-radio.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-radio .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-radio .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-switch.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-switch.mdc-list-item,.mdc-list-item--with-trailing-switch.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-switch .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-switch .mdc-list-item__end,.mdc-list-item--with-trailing-switch .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-switch.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item{padding-left:16px;padding-right:16px}[dir=rtl] .mdc-list-item,.mdc-list-item[dir=rtl]{padding-left:16px;padding-right:16px}.mdc-list-group .mdc-deprecated-list{padding:0}.mdc-list-group__subheader{margin:calc((3rem - 1.5rem)/2) 16px}.mdc-list-divider{padding:0;background-clip:content-box}.mdc-list-divider.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset{padding-left:16px;padding-right:auto}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset,.mdc-list-divider.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:16px}.mdc-list-divider.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset{padding-left:auto;padding-right:16px}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset,.mdc-list-divider.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset[dir=rtl]{padding-left:16px;padding-right:auto}.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset{padding-left:0px;padding-right:auto}[dir=rtl] .mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:0px}[dir=rtl] .mdc-list-divider,.mdc-list-divider[dir=rtl]{padding:0}.mdc-list-item{background-color:var(--mdc-list-list-item-container-color)}.mdc-list-item.mdc-list-item--selected{background-color:var(--mdc-list-list-item-selected-container-color)}.mdc-list-item--with-one-line{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-avatar,.mdc-list-item--with-one-line.mdc-list-item--with-leading-icon,.mdc-list-item--with-one-line.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-one-line.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-one-line.mdc-list-item--with-leading-radio,.mdc-list-item--with-one-line.mdc-list-item--with-leading-switch{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-image,.mdc-list-item--with-one-line.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines.mdc-list-item--with-leading-avatar,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-icon,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-radio,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-switch,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-image,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-three-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mdc-list-list-item-one-line-container-height)}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mdc-list-list-item-two-line-container-height)}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mdc-list-list-item-three-line-container-height)}.mdc-list-item__primary-text{color:var(--mdc-list-list-item-label-text-color)}.mdc-list-item__primary-text{font-family:var(--mdc-list-list-item-label-text-font);line-height:var(--mdc-list-list-item-label-text-line-height);font-size:var(--mdc-list-list-item-label-text-size);font-weight:var(--mdc-list-list-item-label-text-weight);letter-spacing:var(--mdc-list-list-item-label-text-tracking)}.mdc-list-item__secondary-text{color:var(--mdc-list-list-item-supporting-text-color)}.mdc-list-item__secondary-text{font-family:var(--mdc-list-list-item-supporting-text-font);line-height:var(--mdc-list-list-item-supporting-text-line-height);font-size:var(--mdc-list-list-item-supporting-text-size);font-weight:var(--mdc-list-list-item-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-supporting-text-tracking)}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-leading-icon-color)}.mdc-list-item--with-leading-icon .mdc-list-item__start{width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start>i{font-size:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon{font-size:var(--mdc-list-list-item-leading-icon-size);width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon,.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mdc-list-list-item-leading-avatar-size);height:var(--mdc-list-list-item-leading-avatar-size)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-supporting-text-color)}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mdc-list-list-item-trailing-supporting-text-font);line-height:var(--mdc-list-list-item-trailing-supporting-text-line-height);font-size:var(--mdc-list-list-item-trailing-supporting-text-size);font-weight:var(--mdc-list-list-item-trailing-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-trailing-supporting-text-tracking)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-icon-color)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end>i{font-size:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon{font-size:var(--mdc-list-list-item-trailing-icon-size);width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon,.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-selected-trailing-icon-color)}.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,.mdc-list-item--disabled .mdc-list-item__overline-text{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-disabled-leading-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{opacity:var(--mdc-list-list-item-disabled-leading-icon-opacity)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-disabled-trailing-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{opacity:var(--mdc-list-list-item-disabled-trailing-icon-opacity)}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mdc-list-list-item-hover-label-text-color)}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mdc-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mdc-list-list-item-hover-trailing-icon-color)}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mdc-list-list-item-focus-label-text-color)}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-list-list-item-disabled-label-text-color)}.mdc-list-item:hover::before{background-color:var(--mdc-list-list-item-hover-state-layer-color);opacity:var(--mdc-list-list-item-hover-state-layer-opacity)}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mdc-list-list-item-disabled-state-layer-color);opacity:var(--mdc-list-list-item-disabled-state-layer-opacity)}.mdc-list-item:focus::before{background-color:var(--mdc-list-list-item-focus-state-layer-color);opacity:var(--mdc-list-list-item-focus-state-layer-opacity)}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mdc-list-list-item-leading-avatar-shape);background-color:var(--mdc-list-list-item-leading-avatar-color)}.mat-mdc-list-item-icon{font-size:var(--mdc-list-list-item-leading-icon-size)}.cdk-high-contrast-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}.cdk-high-contrast-active 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}.mat-mdc-list-item>.mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-mdc-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);margin-inline-end:var(--mat-list-list-item-leading-icon-end-space)}.mat-mdc-nav-list .mat-mdc-list-item{border-radius:var(--mat-list-active-indicator-shape);--mat-mdc-focus-indicator-border-radius:var(--mat-list-active-indicator-shape)}.mat-mdc-nav-list .mat-mdc-list-item.mdc-list-item--activated{background-color:var(--mat-list-active-indicator-color)}'],encapsulation:2,changeDetection:0})}}return Ue})(),Ee=(()=>{class Ue extends ae{get activated(){return this._activated}set activated(vt){this._activated=(0,t.he)(vt)}constructor(vt,$e,nt,qt,Nt,yt){super(vt,$e,nt,qt,Nt,yt),this._activated=!1}_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}static{this.\u0275fac=function($e){return new($e||Ue)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(se,8),e.rXU(x.OD),e.rXU(D.$E,8),e.rXU(e.bc$,8))}}static{this.\u0275cmp=e.VBU({type:Ue,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function($e,nt,qt){if(1&$e&&(e.wni(qt,pe,5),e.wni(qt,q,5),e.wni(qt,ze,5)),2&$e){let Nt;e.mGM(Nt=e.lsd())&&(nt._lines=Nt),e.mGM(Nt=e.lsd())&&(nt._titles=Nt),e.mGM(Nt=e.lsd())&&(nt._meta=Nt)}},viewQuery:function($e,nt){if(1&$e&&(e.GBs(Q,5),e.GBs(J,5)),2&$e){let qt;e.mGM(qt=e.lsd())&&(nt._unscopedContent=qt.first),e.mGM(qt=e.lsd())&&(nt._itemText=qt.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:11,hostBindings:function($e,nt){2&$e&&(e.BMQ("aria-current",nt._getAriaCurrent()),e.AVh("mdc-list-item--activated",nt.activated)("mdc-list-item--with-leading-avatar",0!==nt._avatars.length)("mdc-list-item--with-leading-icon",0!==nt._icons.length)("mdc-list-item--with-trailing-meta",0!==nt._meta.length)("_mat-animation-noopable",nt._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],standalone:!0,features:[e.Vt3,e.aNF],ngContentSelectors:ee,decls:10,vars:0,consts:[["unscopedContent",""],[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],[1,"mat-mdc-focus-indicator"]],template:function($e,nt){if(1&$e){const qt=e.RV6();e.NAR(ie),e.SdG(0),e.j41(1,"span",1),e.SdG(2,1),e.SdG(3,2),e.j41(4,"span",2,0),e.bIt("cdkObserveContent",function(){return e.eBV(qt),e.Njj(nt._updateItemLines(!0))}),e.SdG(6,3),e.k0s()(),e.SdG(7,4),e.SdG(8,5),e.nrm(9,"div",3)}},dependencies:[R.Wv],encapsulation:2,changeDetection:0})}}return Ue})(),we=(()=>{class Ue{static{this.\u0275fac=function($e){return new($e||Ue)}}static{this.\u0275mod=e.$C({type:Ue})}static{this.\u0275inj=e.G2t({imports:[R.w5,h.MD,D.yE,D.pZ,D.O5,S.w]})}}return Ue})()},9115:(Qe,te,g)=>{"use strict";g.d(te,{Cn:()=>he,Cp:()=>ae,fb:()=>m,kk:()=>ze});var e=g(4438),t=g(8617),x=g(7336),D=g(1413),l=g(7786),w=g(8359),f=g(7673),R=g(5007),h=g(9172),S=g(5558),y=g(6697),O=g(6977),I=g(5964),V=g(5335),j=g(177),Y=g(6600),W=g(6939),Q=g(9969),J=g(8203),ie=g(6969),ee=g(6860),fe=g(5542);const ne=["mat-menu-item",""],Me=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],Ce=["mat-icon, [matMenuItemIcon]","*"];function le(Ie,st){1&Ie&&(e.qSk(),e.j41(0,"svg",2),e.nrm(1,"polygon",3),e.k0s())}const T=["*"];function n(Ie,st){if(1&Ie){const me=e.RV6();e.j41(0,"div",0),e.bIt("keydown",function(ue){e.eBV(me);const Be=e.XpG();return e.Njj(Be._handleKeydown(ue))})("click",function(){e.eBV(me);const ue=e.XpG();return e.Njj(ue.closed.emit("click"))})("@transformMenu.start",function(ue){e.eBV(me);const Be=e.XpG();return e.Njj(Be._onAnimationStart(ue))})("@transformMenu.done",function(ue){e.eBV(me);const Be=e.XpG();return e.Njj(Be._onAnimationDone(ue))}),e.j41(1,"div",1),e.SdG(2),e.k0s()()}if(2&Ie){const me=e.XpG();e.HbH(me._classList),e.Y8G("id",me.panelId)("@transformMenu",me._panelAnimationState),e.BMQ("aria-label",me.ariaLabel||null)("aria-labelledby",me.ariaLabelledby||null)("aria-describedby",me.ariaDescribedby||null)}}const c=new e.nKC("MAT_MENU_PANEL");let m=(()=>{class Ie{constructor(me,Ee,ue,Be,Ct){this._elementRef=me,this._document=Ee,this._focusMonitor=ue,this._parentMenu=Be,this._changeDetectorRef=Ct,this.role="menuitem",this.disabled=!1,this.disableRipple=!1,this._hovered=new D.B,this._focused=new D.B,this._highlighted=!1,this._triggersSubmenu=!1,Be?.addItem?.(this)}focus(me,Ee){this._focusMonitor&&me?this._focusMonitor.focusVia(this._getHostElement(),me,Ee):this._getHostElement().focus(Ee),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(me){this.disabled&&(me.preventDefault(),me.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const me=this._elementRef.nativeElement.cloneNode(!0),Ee=me.querySelectorAll("mat-icon, .material-icons");for(let ue=0;ue enter",(0,Q.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,Q.iF)({opacity:1,transform:"scale(1)"}))),(0,Q.kY)("* => void",(0,Q.i0)("100ms 25ms linear",(0,Q.iF)({opacity:0})))]),fadeInItems:(0,Q.hZ)("fadeInItems",[(0,Q.wk)("showing",(0,Q.iF)({opacity:1})),(0,Q.kY)("void => *",[(0,Q.iF)({opacity:0}),(0,Q.i0)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let N=0;const q=new e.nKC("mat-menu-default-options",{providedIn:"root",factory:function pe(){return{overlapTrigger:!1,xPosition:"after",yPosition:"below",backdropClass:"cdk-overlay-transparent-backdrop"}}});let ze=(()=>{class Ie{get xPosition(){return this._xPosition}set xPosition(me){this._xPosition=me,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(me){this._yPosition=me,this.setPositionClasses()}set panelClass(me){const Ee=this._previousPanelClass,ue={...this._classList};Ee&&Ee.length&&Ee.split(" ").forEach(Be=>{ue[Be]=!1}),this._previousPanelClass=me,me&&me.length&&(me.split(" ").forEach(Be=>{ue[Be]=!0}),this._elementRef.nativeElement.className=""),this._classList=ue}get classList(){return this.panelClass}set classList(me){this.panelClass=me}constructor(me,Ee,ue,Be){this._elementRef=me,this._ngZone=Ee,this._changeDetectorRef=Be,this._elevationPrefix="mat-elevation-z",this._baseElevation=8,this._directDescendantItems=new e.rOR,this._classList={},this._panelAnimationState="void",this._animationDone=new D.B,this.closed=new e.bkB,this.close=this.closed,this.panelId="mat-menu-panel-"+N++,this.overlayPanelClass=ue.overlayPanelClass||"",this._xPosition=ue.xPosition,this._yPosition=ue.yPosition,this.backdropClass=ue.backdropClass,this.overlapTrigger=ue.overlapTrigger,this.hasBackdrop=ue.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new t.Bu(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,h.Z)(this._directDescendantItems),(0,S.n)(me=>(0,l.h)(...me.map(Ee=>Ee._focused)))).subscribe(me=>this._keyManager.updateActiveItem(me)),this._directDescendantItems.changes.subscribe(me=>{const Ee=this._keyManager;if("enter"===this._panelAnimationState&&Ee.activeItem?._hasFocus()){const ue=me.toArray(),Be=Math.max(0,Math.min(ue.length-1,Ee.activeItemIndex||0));ue[Be]&&!ue[Be].disabled?Ee.setActiveItem(Be):Ee.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusSubscription?.unsubscribe()}_hovered(){return this._directDescendantItems.changes.pipe((0,h.Z)(this._directDescendantItems),(0,S.n)(Ee=>(0,l.h)(...Ee.map(ue=>ue._hovered))))}addItem(me){}removeItem(me){}_handleKeydown(me){const Ee=me.keyCode,ue=this._keyManager;switch(Ee){case x._f:(0,x.rp)(me)||(me.preventDefault(),this.closed.emit("keydown"));break;case x.UQ:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case x.LE:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(Ee===x.i7||Ee===x.n6)&&ue.setFocusOrigin("keyboard"),void ue.onKeydown(me)}me.stopPropagation()}focusFirstItem(me="program"){this._firstItemFocusSubscription?.unsubscribe(),this._firstItemFocusSubscription=this._ngZone.onStable.pipe((0,y.s)(1)).subscribe(()=>{let Ee=null;if(this._directDescendantItems.length&&(Ee=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!Ee||!Ee.contains(document.activeElement)){const ue=this._keyManager;ue.setFocusOrigin(me).setFirstItemActive(),!ue.activeItem&&Ee&&Ee.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(me){const Ee=Math.min(this._baseElevation+me,24),ue=`${this._elevationPrefix}${Ee}`,Be=Object.keys(this._classList).find(Ct=>Ct.startsWith(this._elevationPrefix));if(!Be||Be===this._previousElevation){const Ct={...this._classList};this._previousElevation&&(Ct[this._previousElevation]=!1),Ct[ue]=!0,this._previousElevation=ue,this._classList=Ct}}setPositionClasses(me=this.xPosition,Ee=this.yPosition){this._classList={...this._classList,"mat-menu-before":"before"===me,"mat-menu-after":"after"===me,"mat-menu-above":"above"===Ee,"mat-menu-below":"below"===Ee},this._changeDetectorRef?.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(me){this._animationDone.next(me),this._isAnimating=!1}_onAnimationStart(me){this._isAnimating=!0,"enter"===me.toState&&0===this._keyManager.activeItemIndex&&(me.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,h.Z)(this._allItems)).subscribe(me=>{this._directDescendantItems.reset(me.filter(Ee=>Ee._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}static{this.\u0275fac=function(Ee){return new(Ee||Ie)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(q),e.rXU(e.gRc))}}static{this.\u0275cmp=e.VBU({type:Ie,selectors:[["mat-menu"]],contentQueries:function(Ee,ue,Be){if(1&Ee&&(e.wni(Be,k,5),e.wni(Be,m,5),e.wni(Be,m,4)),2&Ee){let Ct;e.mGM(Ct=e.lsd())&&(ue.lazyContent=Ct.first),e.mGM(Ct=e.lsd())&&(ue._allItems=Ct),e.mGM(Ct=e.lsd())&&(ue.items=Ct)}},viewQuery:function(Ee,ue){if(1&Ee&&e.GBs(e.C4Q,5),2&Ee){let Be;e.mGM(Be=e.lsd())&&(ue.templateRef=Be.first)}},hostVars:3,hostBindings:function(Ee,ue){2&Ee&&e.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",e.L39],hasBackdrop:[2,"hasBackdrop","hasBackdrop",me=>null==me?null:(0,e.L39)(me)],panelClass:[0,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:Ie}]),e.GFd,e.aNF],ngContentSelectors:T,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel","mat-mdc-elevation-specific",3,"keydown","click","id"],[1,"mat-mdc-menu-content"]],template:function(Ee,ue){1&Ee&&(e.NAR(),e.DNE(0,n,3,7,"ng-template"))},styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;list-style-type:none}.mat-mdc-menu-content:focus{outline:none}.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);line-height:var(--mat-menu-item-label-text-line-height);font-size:var(--mat-menu-item-label-text-size);letter-spacing:var(--mat-menu-item-label-text-tracking);font-weight:var(--mat-menu-item-label-text-weight)}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;outline:0;border-radius:var(--mat-menu-container-shape);background-color:var(--mat-menu-container-color);will-change:transform,opacity}.mat-mdc-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-mdc-menu-panel{outline:solid 1px}.mat-divider{color:var(--mat-menu-divider-color);margin-bottom:var(--mat-menu-divider-bottom-spacing);margin-top:var(--mat-menu-divider-top-spacing)}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:var(--mat-menu-item-leading-spacing);padding-right:var(--mat-menu-item-trailing-spacing);-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;align-items:center;min-height:48px}.mat-mdc-menu-item:focus{outline:none}[dir=rtl] .mat-mdc-menu-item,.mat-mdc-menu-item[dir=rtl]{padding-left:var(--mat-menu-item-trailing-spacing);padding-right:var(--mat-menu-item-leading-spacing)}.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-leading-spacing);padding-right:var(--mat-menu-item-with-icon-trailing-spacing)}[dir=rtl] .mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]),.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon])[dir=rtl]{padding-left:var(--mat-menu-item-with-icon-trailing-spacing);padding-right:var(--mat-menu-item-with-icon-leading-spacing)}.mat-mdc-menu-item::-moz-focus-inner{border:0}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color)}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color)}.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 .mat-icon{flex-shrink:0;margin-right:var(--mat-menu-item-spacing);height:var(--mat-menu-item-icon-size);width:var(--mat-menu-item-icon-size)}[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)}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color)}.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)}.cdk-high-contrast-active .mat-mdc-menu-item{margin-top:1px}.mat-mdc-menu-submenu-icon{width:var(--mat-menu-item-icon-size);height:10px;fill:currentColor;padding-left:var(--mat-menu-item-spacing)}[dir=rtl] .mat-mdc-menu-submenu-icon{padding-right:var(--mat-menu-item-spacing);padding-left:0}[dir=rtl] .mat-mdc-menu-submenu-icon polygon{transform:scaleX(-1)}.cdk-high-contrast-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}'],encapsulation:2,data:{animation:[a.transformMenu,a.fadeInItems]},changeDetection:0})}}return Ie})();const Xe=new e.nKC("mat-menu-scroll-strategy",{providedIn:"root",factory:()=>{const Ie=(0,e.WQX)(ie.hJ);return()=>Ie.scrollStrategies.reposition()}}),oe={provide:Xe,deps:[ie.hJ],useFactory:function We(Ie){return()=>Ie.scrollStrategies.reposition()}},X=(0,ee.BQ)({passive:!0});let ae=(()=>{class Ie{get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(me){this.menu=me}get menu(){return this._menu}set menu(me){me!==this._menu&&(this._menu=me,this._menuCloseSubscription.unsubscribe(),me&&(this._menuCloseSubscription=me.close.subscribe(Ee=>{this._destroyMenu(Ee),("click"===Ee||"tab"===Ee)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(Ee)})),this._menuItemInstance?._setTriggersSubmenu(this.triggersSubmenu()))}constructor(me,Ee,ue,Be,Ct,ct,dt,Yt,ve){this._overlay=me,this._element=Ee,this._viewContainerRef=ue,this._menuItemInstance=ct,this._dir=dt,this._focusMonitor=Yt,this._ngZone=ve,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=w.yU.EMPTY,this._hoverSubscription=w.yU.EMPTY,this._menuCloseSubscription=w.yU.EMPTY,this._changeDetectorRef=(0,e.WQX)(e.gRc),this._handleTouchStart=_e=>{(0,t.w6)(_e)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new e.bkB,this.onMenuOpen=this.menuOpened,this.menuClosed=new e.bkB,this.onMenuClose=this.menuClosed,this._scrollStrategy=Be,this._parentMaterialMenu=Ct instanceof ze?Ct:void 0,Ee.nativeElement.addEventListener("touchstart",this._handleTouchStart,X)}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,X),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}triggersSubmenu(){return!!(this._menuItemInstance&&this._parentMaterialMenu&&this.menu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){const me=this.menu;if(this._menuOpen||!me)return;const Ee=this._createOverlay(me),ue=Ee.getConfig(),Be=ue.positionStrategy;this._setPosition(me,Be),ue.hasBackdrop=null==me.hasBackdrop?!this.triggersSubmenu():me.hasBackdrop,Ee.attach(this._getPortal(me)),me.lazyContent&&me.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(me),me instanceof ze&&(me._startAnimation(),me._directDescendantItems.changes.pipe((0,O.Q)(me.close)).subscribe(()=>{Be.withLockedPosition(!1).reapplyLastPosition(),Be.withLockedPosition(!0)}))}closeMenu(){this.menu?.close.emit()}focus(me,Ee){this._focusMonitor&&me?this._focusMonitor.focusVia(this._element,me,Ee):this._element.nativeElement.focus(Ee)}updatePosition(){this._overlayRef?.updatePosition()}_destroyMenu(me){if(!this._overlayRef||!this.menuOpen)return;const Ee=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===me||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,Ee instanceof ze?(Ee._resetAnimation(),Ee.lazyContent?Ee._animationDone.pipe((0,I.p)(ue=>"void"===ue.toState),(0,y.s)(1),(0,O.Q)(Ee.lazyContent._attached)).subscribe({next:()=>Ee.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),Ee?.lazyContent?.detach())}_initMenu(me){me.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,me.direction=this.dir,this._setMenuElevation(me),me.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(me){if(me.setElevation){let Ee=0,ue=me.parentMenu;for(;ue;)Ee++,ue=ue.parentMenu;me.setElevation(Ee)}}_setIsMenuOpen(me){me!==this._menuOpen&&(this._menuOpen=me,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(me),this._changeDetectorRef.markForCheck())}_createOverlay(me){if(!this._overlayRef){const Ee=this._getOverlayConfig(me);this._subscribeToPositions(me,Ee.positionStrategy),this._overlayRef=this._overlay.create(Ee),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(me){return new ie.rR({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:me.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:me.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(me,Ee){me.setPositionClasses&&Ee.positionChanges.subscribe(ue=>{const Be="start"===ue.connectionPair.overlayX?"after":"before",Ct="top"===ue.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>me.setPositionClasses(Be,Ct)):me.setPositionClasses(Be,Ct)})}_setPosition(me,Ee){let[ue,Be]="before"===me.xPosition?["end","start"]:["start","end"],[Ct,ct]="above"===me.yPosition?["bottom","top"]:["top","bottom"],[dt,Yt]=[Ct,ct],[ve,_e]=[ue,Be],we=0;if(this.triggersSubmenu()){if(_e=ue="before"===me.xPosition?"start":"end",Be=ve="end"===ue?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const Ue=this._parentMaterialMenu.items.first;this._parentInnerPadding=Ue?Ue._getHostElement().offsetTop:0}we="bottom"===Ct?this._parentInnerPadding:-this._parentInnerPadding}}else me.overlapTrigger||(dt="top"===Ct?"bottom":"top",Yt="top"===ct?"bottom":"top");Ee.withPositions([{originX:ue,originY:dt,overlayX:ve,overlayY:Ct,offsetY:we},{originX:Be,originY:dt,overlayX:_e,overlayY:Ct,offsetY:we},{originX:ue,originY:Yt,overlayX:ve,overlayY:ct,offsetY:-we},{originX:Be,originY:Yt,overlayX:_e,overlayY:ct,offsetY:-we}])}_menuClosingActions(){const me=this._overlayRef.backdropClick(),Ee=this._overlayRef.detachments(),ue=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,f.of)(),Be=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,I.p)(Ct=>Ct!==this._menuItemInstance),(0,I.p)(()=>this._menuOpen)):(0,f.of)();return(0,l.h)(me,ue,Be,Ee)}_handleMousedown(me){(0,t._G)(me)||(this._openedBy=0===me.button?"mouse":void 0,this.triggersSubmenu()&&me.preventDefault())}_handleKeydown(me){const Ee=me.keyCode;(Ee===x.Fm||Ee===x.t6)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(Ee===x.LE&&"ltr"===this.dir||Ee===x.UQ&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(me){this.triggersSubmenu()?(me.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,I.p)(me=>me===this._menuItemInstance&&!me.disabled),(0,V.c)(0,R.$)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof ze&&this.menu._isAnimating?this.menu._animationDone.pipe((0,y.s)(1),(0,V.c)(0,R.$),(0,O.Q)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(me){return(!this._portal||this._portal.templateRef!==me.templateRef)&&(this._portal=new W.VA(me.templateRef,this._viewContainerRef)),this._portal}static{this.\u0275fac=function(Ee){return new(Ee||Ie)(e.rXU(ie.hJ),e.rXU(e.aKT),e.rXU(e.c1b),e.rXU(Xe),e.rXU(c,8),e.rXU(m,10),e.rXU(J.dS,8),e.rXU(t.FN),e.rXU(e.SKi))}}static{this.\u0275dir=e.FsC({type:Ie,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(Ee,ue){1&Ee&&e.bIt("click",function(Ct){return ue._handleClick(Ct)})("mousedown",function(Ct){return ue._handleMousedown(Ct)})("keydown",function(Ct){return ue._handleKeydown(Ct)}),2&Ee&&e.BMQ("aria-haspopup",ue.menu?"menu":null)("aria-expanded",ue.menuOpen)("aria-controls",ue.menuOpen?ue.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"],standalone:!0})}}return Ie})(),he=(()=>{class Ie{static{this.\u0275fac=function(Ee){return new(Ee||Ie)}}static{this.\u0275mod=e.$C({type:Ie})}static{this.\u0275inj=e.G2t({providers:[oe],imports:[j.MD,Y.pZ,Y.yE,ie.z_,fe.Gj,Y.yE]})}}return Ie})()},6695:(Qe,te,g)=>{"use strict";g.d(te,{Ou:()=>ne,iy:()=>fe,xX:()=>j});var e=g(4438),t=g(1413),x=g(2771),D=g(8834),l=g(2798),w=g(4823),f=g(6600),R=g(6467);function h(Me,Ce){if(1&Me&&(e.j41(0,"mat-option",16),e.EFF(1),e.k0s()),2&Me){const le=Ce.$implicit;e.Y8G("value",le),e.R7$(),e.SpI(" ",le," ")}}function S(Me,Ce){if(1&Me){const le=e.RV6();e.j41(0,"mat-form-field",13)(1,"mat-select",15),e.bIt("selectionChange",function(n){e.eBV(le);const c=e.XpG(2);return e.Njj(c._changePageSize(n.value))}),e.Z7z(2,h,2,2,"mat-option",16,e.fX1),e.k0s()()}if(2&Me){const le=e.XpG(2);e.Y8G("appearance",le._formFieldAppearance)("color",le.color),e.R7$(),e.Y8G("value",le.pageSize)("disabled",le.disabled)("aria-labelledby",le._pageSizeLabelId)("panelClass",le.selectConfig.panelClass||"")("disableOptionCentering",le.selectConfig.disableOptionCentering),e.R7$(),e.Dyx(le._displayedPageSizeOptions)}}function y(Me,Ce){if(1&Me&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&Me){const le=e.XpG(2);e.R7$(),e.JRh(le.pageSize)}}function O(Me,Ce){if(1&Me&&(e.j41(0,"div",2)(1,"div",12),e.EFF(2),e.k0s(),e.DNE(3,S,4,7,"mat-form-field",13)(4,y,2,1,"div",14),e.k0s()),2&Me){const le=e.XpG();e.R7$(),e.BMQ("id",le._pageSizeLabelId),e.R7$(),e.SpI(" ",le._intl.itemsPerPageLabel," "),e.R7$(),e.vxM(le._displayedPageSizeOptions.length>1?3:-1),e.R7$(),e.vxM(le._displayedPageSizeOptions.length<=1?4:-1)}}function I(Me,Ce){if(1&Me){const le=e.RV6();e.j41(0,"button",17),e.bIt("click",function(){e.eBV(le);const n=e.XpG();return e.Njj(n.firstPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",18),e.k0s()()}if(2&Me){const le=e.XpG();e.Y8G("matTooltip",le._intl.firstPageLabel)("matTooltipDisabled",le._previousButtonsDisabled())("matTooltipPosition","above")("disabled",le._previousButtonsDisabled()),e.BMQ("aria-label",le._intl.firstPageLabel)}}function V(Me,Ce){if(1&Me){const le=e.RV6();e.j41(0,"button",19),e.bIt("click",function(){e.eBV(le);const n=e.XpG();return e.Njj(n.lastPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",20),e.k0s()()}if(2&Me){const le=e.XpG();e.Y8G("matTooltip",le._intl.lastPageLabel)("matTooltipDisabled",le._nextButtonsDisabled())("matTooltipPosition","above")("disabled",le._nextButtonsDisabled()),e.BMQ("aria-label",le._intl.lastPageLabel)}}let j=(()=>{class Me{constructor(){this.changes=new t.B,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(le,T,n)=>{if(0==n||0==T)return`0 of ${n}`;const c=le*T;return`${c+1} \u2013 ${c<(n=Math.max(n,0))?Math.min(c+T,n):c+T} of ${n}`}}static{this.\u0275fac=function(T){return new(T||Me)}}static{this.\u0275prov=e.jDH({token:Me,factory:Me.\u0275fac,providedIn:"root"})}}return Me})();const W={provide:j,deps:[[new e.Xx1,new e.kdw,j]],useFactory:function Y(Me){return Me||new j}},ie=new e.nKC("MAT_PAGINATOR_DEFAULT_OPTIONS");let ee=0,fe=(()=>{class Me{get pageIndex(){return this._pageIndex}set pageIndex(le){this._pageIndex=Math.max(le||0,0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(le){this._length=le||0,this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(le){this._pageSize=Math.max(le||0,0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(le){this._pageSizeOptions=(le||[]).map(T=>(0,e.Udg)(T,0)),this._updateDisplayedPageSizeOptions()}constructor(le,T,n){if(this._intl=le,this._changeDetectorRef=T,this._pageSizeLabelId="mat-paginator-page-size-label-"+ee++,this._isInitialized=!1,this._initializedStream=new x.m(1),this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this.hidePageSize=!1,this.showFirstLastButtons=!1,this.selectConfig={},this.disabled=!1,this.page=new e.bkB,this.initialized=this._initializedStream,this._intlChanges=le.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),n){const{pageSize:c,pageSizeOptions:m,hidePageSize:d,showFirstLastButtons:C}=n;null!=c&&(this._pageSize=c),null!=m&&(this._pageSizeOptions=m),null!=d&&(this.hidePageSize=d),null!=C&&(this.showFirstLastButtons=C)}this._formFieldAppearance=n?.formFieldAppearance||"outline"}ngOnInit(){this._isInitialized=!0,this._updateDisplayedPageSizeOptions(),this._initializedStream.next()}ngOnDestroy(){this._initializedStream.complete(),this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const le=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(le)}previousPage(){if(!this.hasPreviousPage())return;const le=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(le)}firstPage(){if(!this.hasPreviousPage())return;const le=this.pageIndex;this.pageIndex=0,this._emitPageEvent(le)}lastPage(){if(!this.hasNextPage())return;const le=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(le)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const le=this.getNumberOfPages()-1;return this.pageIndexle-T),this._changeDetectorRef.markForCheck())}_emitPageEvent(le){this.page.emit({previousPageIndex:le,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}static{this.\u0275fac=function(T){return new(T||Me)(e.rXU(j),e.rXU(e.gRc),e.rXU(ie,8))}}static{this.\u0275cmp=e.VBU({type:Me,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{color:"color",pageIndex:[2,"pageIndex","pageIndex",e.Udg],length:[2,"length","length",e.Udg],pageSize:[2,"pageSize","pageSize",e.Udg],pageSizeOptions:"pageSizeOptions",hidePageSize:[2,"hidePageSize","hidePageSize",e.L39],showFirstLastButtons:[2,"showFirstLastButtons","showFirstLastButtons",e.L39],selectConfig:"selectConfig",disabled:[2,"disabled","disabled",e.L39]},outputs:{page:"page"},exportAs:["matPaginator"],standalone:!0,features:[e.GFd,e.aNF],decls:14,vars:14,consts:[[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"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-previous",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["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"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-next",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],[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"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(T,n){1&T&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,O,5,4,"div",2),e.j41(3,"div",3)(4,"div",4),e.EFF(5),e.k0s(),e.DNE(6,I,3,5,"button",5),e.j41(7,"button",6),e.bIt("click",function(){return n.previousPage()}),e.qSk(),e.j41(8,"svg",7),e.nrm(9,"path",8),e.k0s()(),e.joV(),e.j41(10,"button",9),e.bIt("click",function(){return n.nextPage()}),e.qSk(),e.j41(11,"svg",7),e.nrm(12,"path",10),e.k0s()(),e.DNE(13,V,3,5,"button",11),e.k0s()()()),2&T&&(e.R7$(2),e.vxM(n.hidePageSize?-1:2),e.R7$(3),e.SpI(" ",n._intl.getRangeLabel(n.pageIndex,n.pageSize,n.length)," "),e.R7$(),e.vxM(n.showFirstLastButtons?6:-1),e.R7$(),e.Y8G("matTooltip",n._intl.previousPageLabel)("matTooltipDisabled",n._previousButtonsDisabled())("matTooltipPosition","above")("disabled",n._previousButtonsDisabled()),e.BMQ("aria-label",n._intl.previousPageLabel),e.R7$(3),e.Y8G("matTooltip",n._intl.nextPageLabel)("matTooltipDisabled",n._nextButtonsDisabled())("matTooltipPosition","above")("disabled",n._nextButtonsDisabled()),e.BMQ("aria-label",n._intl.nextPageLabel),e.R7$(3),e.vxM(n.showFirstLastButtons?13:-1))},dependencies:[R.rl,l.VO,f.wT,D.iY,w.oV],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color);background-color:var(--mat-paginator-container-background-color);font-family:var(--mat-paginator-container-text-font);line-height:var(--mat-paginator-container-text-line-height);font-size:var(--mat-paginator-container-text-size);font-weight:var(--mat-paginator-container-text-weight);letter-spacing:var(--mat-paginator-container-text-tracking);--mat-form-field-container-height:var(--mat-paginator-form-field-container-height);--mat-form-field-container-vertical-padding:var(--mat-paginator-form-field-container-vertical-padding)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-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)}.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: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)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color)}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon,.cdk-high-contrast-active .mat-mdc-paginator-icon{fill:currentColor;fill:CanvasText}.cdk-high-contrast-active .mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}}return Me})(),ne=(()=>{class Me{static{this.\u0275fac=function(T){return new(T||Me)}}static{this.\u0275mod=e.$C({type:Me})}static{this.\u0275inj=e.G2t({providers:[W],imports:[D.Hl,l.Ve,w.uc,fe]})}}return Me})()},7575:(Qe,te,g)=>{"use strict";g.d(te,{HM:()=>R,PO:()=>S});var e=g(4438),x=(g(177),g(6600));function D(y,O){1&y&&e.nrm(0,"div",2)}const l=new e.nKC("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let R=(()=>{class y{constructor(I,V,j,Y,W){this._elementRef=I,this._ngZone=V,this._changeDetectorRef=j,this._animationMode=Y,this._isNoopAnimation=!1,this._defaultColor="primary",this._value=0,this._bufferValue=0,this.animationEnd=new e.bkB,this._mode="determinate",this._transitionendHandler=Q=>{0===this.animationEnd.observers.length||!Q.target||!Q.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))},this._isNoopAnimation="NoopAnimations"===Y,W&&(W.color&&(this.color=this._defaultColor=W.color),this.mode=W.mode||this.mode)}get color(){return this._color||this._defaultColor}set color(I){this._color=I}get value(){return this._value}set value(I){this._value=h(I||0),this._changeDetectorRef.markForCheck()}get bufferValue(){return this._bufferValue||0}set bufferValue(I){this._bufferValue=h(I||0),this._changeDetectorRef.markForCheck()}get mode(){return this._mode}set mode(I){this._mode=I,this._changeDetectorRef.markForCheck()}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._elementRef.nativeElement.addEventListener("transitionend",this._transitionendHandler)})}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._transitionendHandler)}_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}static{this.\u0275fac=function(V){return new(V||y)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.bc$,8),e.rXU(l,8))}}static{this.\u0275cmp=e.VBU({type:y,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(V,j){2&V&&(e.BMQ("aria-valuenow",j._isIndeterminate()?null:j.value)("mode",j.mode),e.HbH("mat-"+j.color),e.AVh("_mat-animation-noopable",j._isNoopAnimation)("mdc-linear-progress--animation-ready",!j._isNoopAnimation)("mdc-linear-progress--indeterminate",j._isIndeterminate()))},inputs:{color:"color",value:[2,"value","value",e.Udg],bufferValue:[2,"bufferValue","bufferValue",e.Udg],mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],standalone:!0,features:[e.GFd,e.aNF],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(V,j){1&V&&(e.j41(0,"div",0),e.nrm(1,"div",1),e.DNE(2,D,1,0,"div",2),e.k0s(),e.j41(3,"div",3),e.nrm(4,"span",4),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",4),e.k0s()),2&V&&(e.R7$(),e.xc7("flex-basis",j._getBufferBarFlexBasis()),e.R7$(),e.vxM("buffer"===j.mode?2:-1),e.R7$(),e.xc7("transform",j._getPrimaryBarTransform()))},styles:["@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(var(--mdc-linear-progress-primary-half))}100%{transform:translateX(var(--mdc-linear-progress-primary-full))}}@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(var(--mdc-linear-progress-secondary-quarter))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full))}}@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(var(--mdc-linear-progress-primary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-primary-full-neg))}}@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(var(--mdc-linear-progress-secondary-quarter-neg))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full-neg))}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}.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)}@media screen and (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)}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden}.mdc-linear-progress__buffer-dots{background-repeat:repeat-x;flex:auto;transform:rotate(180deg);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");animation:mdc-linear-progress-buffering 250ms infinite linear}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.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__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate 2s 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 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate 2s 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 2s infinite linear}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__bar{right:0;-webkit-transform-origin:center right;transform-origin:center right}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__buffer-dots,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse 250ms infinite linear;transform:rotate(0)}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}.mdc-linear-progress--closed{opacity:0}.mdc-linear-progress--closed-animation-off .mdc-linear-progress__buffer-dots{animation:none}.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar,.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar .mdc-linear-progress__bar-inner{animation:none}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height) * -2.5))}}.mdc-linear-progress__bar-inner{border-color:var(--mdc-linear-progress-active-indicator-color)}.mdc-linear-progress__buffer-dots{background-color:var(--mdc-linear-progress-track-color)}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(244, 67, 54, 0.25)'/%3E%3C/svg%3E\")}}.mdc-linear-progress__buffer-bar{background-color:var(--mdc-linear-progress-track-color)}.mdc-linear-progress{height:max(var(--mdc-linear-progress-track-height), var(--mdc-linear-progress-active-indicator-height))}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress{height:4px}}.mdc-linear-progress__bar{height:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__bar-inner{border-top-width:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__buffer{height:var(--mdc-linear-progress-track-height)}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-size:10px var(--mdc-linear-progress-track-height)}}.mdc-linear-progress__buffer{border-radius:var(--mdc-linear-progress-track-shape)}.mat-mdc-progress-bar{display:block;text-align:start;--mdc-linear-progress-primary-half: 83.67142%;--mdc-linear-progress-primary-full: 200.611057%;--mdc-linear-progress-secondary-quarter: 37.651913%;--mdc-linear-progress-secondary-half: 84.386165%;--mdc-linear-progress-secondary-full: 160.277782%;--mdc-linear-progress-primary-half-neg: -83.67142%;--mdc-linear-progress-primary-full-neg: -200.611057%;--mdc-linear-progress-secondary-quarter-neg: -37.651913%;--mdc-linear-progress-secondary-half-neg: -84.386165%;--mdc-linear-progress-secondary-full-neg: -160.277782%}.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}"],encapsulation:2,changeDetection:0})}}return y})();function h(y,O=0,I=100){return Math.max(O,Math.min(I,y))}let S=(()=>{class y{static{this.\u0275fac=function(V){return new(V||y)}}static{this.\u0275mod=e.$C({type:y})}static{this.\u0275inj=e.G2t({imports:[x.yE]})}}return y})()},9183:(Qe,te,g)=>{"use strict";g.d(te,{D6:()=>O,LG:()=>S});var e=g(4438),t=g(177),x=g(6600);const D=["determinateSpinner"];function l(I,V){if(1&I&&(e.qSk(),e.j41(0,"svg",11),e.nrm(1,"circle",12),e.k0s()),2&I){const j=e.XpG();e.BMQ("viewBox",j._viewBox()),e.R7$(),e.xc7("stroke-dasharray",j._strokeCircumference(),"px")("stroke-dashoffset",j._strokeCircumference()/2,"px")("stroke-width",j._circleStrokeWidth(),"%"),e.BMQ("r",j._circleRadius())}}const w=new e.nKC("mat-progress-spinner-default-options",{providedIn:"root",factory:function f(){return{diameter:R}}}),R=100;let S=(()=>{class I{get color(){return this._color||this._defaultColor}set color(j){this._color=j}constructor(j,Y,W){this._elementRef=j,this._defaultColor="primary",this._value=0,this._diameter=R,this._noopAnimations="NoopAnimations"===Y&&!!W&&!W._forceAnimations,this.mode="mat-spinner"===j.nativeElement.nodeName.toLowerCase()?"indeterminate":"determinate",W&&(W.color&&(this.color=this._defaultColor=W.color),W.diameter&&(this.diameter=W.diameter),W.strokeWidth&&(this.strokeWidth=W.strokeWidth))}get value(){return"determinate"===this.mode?this._value:0}set value(j){this._value=Math.max(0,Math.min(100,j||0))}get diameter(){return this._diameter}set diameter(j){this._diameter=j||0}get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(j){this._strokeWidth=j||0}_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{this.\u0275fac=function(Y){return new(Y||I)(e.rXU(e.aKT),e.rXU(e.bc$,8),e.rXU(w))}}static{this.\u0275cmp=e.VBU({type:I,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function(Y,W){if(1&Y&&e.GBs(D,5),2&Y){let Q;e.mGM(Q=e.lsd())&&(W._determinateCircle=Q.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:18,hostBindings:function(Y,W){2&Y&&(e.BMQ("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===W.mode?W.value:null)("mode",W.mode),e.HbH("mat-"+W.color),e.xc7("width",W.diameter,"px")("height",W.diameter,"px")("--mdc-circular-progress-size",W.diameter+"px")("--mdc-circular-progress-active-indicator-width",W.diameter+"px"),e.AVh("_mat-animation-noopable",W._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===W.mode))},inputs:{color:"color",mode:"mode",value:[2,"value","value",e.Udg],diameter:[2,"diameter","diameter",e.Udg],strokeWidth:[2,"strokeWidth","strokeWidth",e.Udg]},exportAs:["matProgressSpinner"],standalone:!0,features:[e.GFd,e.aNF],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(Y,W){if(1&Y&&(e.DNE(0,l,2,8,"ng-template",null,0,e.C5r),e.j41(2,"div",2,1),e.qSk(),e.j41(4,"svg",3),e.nrm(5,"circle",4),e.k0s()(),e.joV(),e.j41(6,"div",5)(7,"div",6)(8,"div",7),e.eu8(9,8),e.k0s(),e.j41(10,"div",9),e.eu8(11,8),e.k0s(),e.j41(12,"div",10),e.eu8(13,8),e.k0s()()()),2&Y){const Q=e.sdS(1);e.R7$(4),e.BMQ("viewBox",W._viewBox()),e.R7$(),e.xc7("stroke-dasharray",W._strokeCircumference(),"px")("stroke-dashoffset",W._strokeDashOffset(),"px")("stroke-width",W._circleStrokeWidth(),"%"),e.BMQ("r",W._circleRadius()),e.R7$(4),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q)}},dependencies:[t.T3],styles:["@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-color-1-fade-in-out{from{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@keyframes mdc-circular-progress-color-2-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-3-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-4-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@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)}}.mdc-circular-progress{display:inline-flex;position:relative;direction:ltr;line-height:0;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.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-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms 0ms 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{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.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__determinate-container{opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{animation:mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-1{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-2{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-3{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-4{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin 1333ms 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 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--closed{opacity:0}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mdc-circular-progress-active-indicator-color)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner circle{stroke-width:var(--mdc-circular-progress-active-indicator-width)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-1 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-2 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-3 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-4 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner .mdc-circular-progress{width:var(--mdc-circular-progress-size) !important;height:var(--mdc-circular-progress-size) !important}.mat-mdc-progress-spinner{display:block;overflow:hidden;line-height:0}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none}.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}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}"],encapsulation:2,changeDetection:0})}}return I})(),O=(()=>{class I{static{this.\u0275fac=function(Y){return new(Y||I)}}static{this.\u0275mod=e.$C({type:I})}static{this.\u0275inj=e.G2t({imports:[t.MD,x.yE]})}}return I})()},5951:(Qe,te,g)=>{"use strict";g.d(te,{VT:()=>Y,Wk:()=>Q,_g:()=>W});var e=g(4438),t=g(6600),x=g(8617),D=g(5024),l=g(9417),w=g(177);const f=["input"],R=["formField"],h=["*"];let S=0;class y{constructor(ie,ee){this.source=ie,this.value=ee}}const O={provide:l.kq,useExisting:(0,e.Rfq)(()=>Y),multi:!0},I=new e.nKC("MatRadioGroup"),V=new e.nKC("mat-radio-default-options",{providedIn:"root",factory:function j(){return{color:"accent"}}});let Y=(()=>{class J{get name(){return this._name}set name(ee){this._name=ee,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(ee){this._labelPosition="before"===ee?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(ee){this._value!==ee&&(this._value=ee,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(ee){this._selected=ee,this.value=ee?ee.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(ee){this._disabled=ee,this._markRadiosForCheck()}get required(){return this._required}set required(ee){this._required=ee,this._markRadiosForCheck()}constructor(ee){this._changeDetector=ee,this._value=null,this._name="mat-radio-group-"+S++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new e.bkB}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(ee=>ee===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(ee=>{ee.name=this.name,ee._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(fe=>{fe.checked=this.value===fe.value,fe.checked&&(this._selected=fe)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new y(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(ee=>ee._markForCheck())}writeValue(ee){this.value=ee,this._changeDetector.markForCheck()}registerOnChange(ee){this._controlValueAccessorChangeFn=ee}registerOnTouched(ee){this.onTouched=ee}setDisabledState(ee){this.disabled=ee,this._changeDetector.markForCheck()}static{this.\u0275fac=function(fe){return new(fe||J)(e.rXU(e.gRc))}}static{this.\u0275dir=e.FsC({type:J,selectors:[["mat-radio-group"]],contentQueries:function(fe,ne,Me){if(1&fe&&e.wni(Me,W,5),2&fe){let Ce;e.mGM(Ce=e.lsd())&&(ne._radios=Ce)}},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]},outputs:{change:"change"},exportAs:["matRadioGroup"],standalone:!0,features:[e.Jv_([O,{provide:I,useExisting:J}]),e.GFd]})}}return J})(),W=(()=>{class J{get checked(){return this._checked}set checked(ee){this._checked!==ee&&(this._checked=ee,ee&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!ee&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),ee&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(ee){this._value!==ee&&(this._value=ee,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===ee),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(ee){this._labelPosition=ee}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(ee){this._setDisabled(ee)}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(ee){this._required=ee}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(ee){this._color=ee}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ee,fe,ne,Me,Ce,le,T,n){this._elementRef=fe,this._changeDetector=ne,this._focusMonitor=Me,this._radioDispatcher=Ce,this._providerOverride=T,this._uniqueId="mat-radio-"+ ++S,this.id=this._uniqueId,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=ee,this._noopAnimations="NoopAnimations"===le,n&&(this.tabIndex=(0,e.Udg)(n,0))}focus(ee,fe){fe?this._focusMonitor.focusVia(this._inputElement,fe,ee):this._inputElement.nativeElement.focus(ee)}_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((ee,fe)=>{ee!==this.id&&fe===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(ee=>{!ee&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new y(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(ee){ee.stopPropagation()}_onInputInteraction(ee){if(ee.stopPropagation(),!this.checked&&!this.disabled){const fe=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),fe&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(ee){this._onInputInteraction(ee),this.disabled||this._inputElement.nativeElement.focus()}_setDisabled(ee){this._disabled!==ee&&(this._disabled=ee,this._changeDetector.markForCheck())}_updateTabIndex(){const ee=this.radioGroup;let fe;if(fe=ee&&ee.selected&&!this.disabled?ee.selected===this?this.tabIndex:-1:this.tabIndex,fe!==this._previousTabIndex){const ne=this._inputElement?.nativeElement;ne&&(ne.setAttribute("tabindex",fe+""),this._previousTabIndex=fe)}}static{this.\u0275fac=function(fe){return new(fe||J)(e.rXU(I,8),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(x.FN),e.rXU(D.zP),e.rXU(e.bc$,8),e.rXU(V,8),e.kS0("tabindex"))}}static{this.\u0275cmp=e.VBU({type:J,selectors:[["mat-radio-button"]],viewQuery:function(fe,ne){if(1&fe&&(e.GBs(f,5),e.GBs(R,7,e.aKT)),2&fe){let Me;e.mGM(Me=e.lsd())&&(ne._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ne._rippleTrigger=Me.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:15,hostBindings:function(fe,ne){1&fe&&e.bIt("focus",function(){return ne._inputElement.nativeElement.focus()}),2&fe&&(e.BMQ("id",ne.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),e.AVh("mat-primary","primary"===ne.color)("mat-accent","accent"===ne.color)("mat-warn","warn"===ne.color)("mat-mdc-radio-checked",ne.checked)("_mat-animation-noopable",ne._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",ee=>null==ee?0:(0,e.Udg)(ee)],checked:[2,"checked","checked",e.L39],value:"value",labelPosition:"labelPosition",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],color:"color"},outputs:{change:"change"},exportAs:["matRadioButton"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:h,decls:13,vars:16,consts:[["formField",""],["input",""],["mat-internal-form-field","",3,"labelPosition"],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio",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-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(fe,ne){if(1&fe){const Me=e.RV6();e.NAR(),e.j41(0,"div",2,0)(2,"div",3)(3,"div",4),e.bIt("click",function(le){return e.eBV(Me),e.Njj(ne._onTouchTargetClick(le))}),e.k0s(),e.j41(4,"input",5,1),e.bIt("change",function(le){return e.eBV(Me),e.Njj(ne._onInputInteraction(le))}),e.k0s(),e.j41(6,"div",6),e.nrm(7,"div",7)(8,"div",8),e.k0s(),e.j41(9,"div",9),e.nrm(10,"div",10),e.k0s()(),e.j41(11,"label",11),e.SdG(12),e.k0s()()}2&fe&&(e.Y8G("labelPosition",ne.labelPosition),e.R7$(2),e.AVh("mdc-radio--disabled",ne.disabled),e.R7$(2),e.Y8G("id",ne.inputId)("checked",ne.checked)("disabled",ne.disabled)("required",ne.required),e.BMQ("name",ne.name)("value",ne.value)("aria-label",ne.ariaLabel)("aria-labelledby",ne.ariaLabelledby)("aria-describedby",ne.ariaDescribedby),e.R7$(5),e.Y8G("matRippleTrigger",ne._rippleTrigger.nativeElement)("matRippleDisabled",ne._isRippleDisabled())("matRippleCentered",!0),e.R7$(2),e.Y8G("for",ne.inputId))},dependencies:[t.r6,t.tO],styles:['.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}.mdc-radio[hidden]{display:none}.mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.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 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0, 0);border-width:10px;border-style:solid;border-radius:50%;transition:transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1}.mdc-radio--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-radio--touch .mdc-radio__native-control{top:calc((40px - 48px) / 2);right:calc((40px - 48px) / 2);left:calc((40px - 48px) / 2);width:48px;height:48px}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{border-color:CanvasText}}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{border-color:CanvasText}}.mdc-radio__native-control:checked+.mdc-radio__background,.mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__outer-circle{transition:border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio--disabled{cursor:default;pointer-events:none}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle{transform:scale(0.5);transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:disabled+.mdc-radio__background,[aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background{cursor:default}.mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{padding:calc((var(--mdc-radio-state-layer-size) - 20px) / 2)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-unselected-icon-opacity)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{top:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);left:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control{top:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);right:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);left:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color)}.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.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color)}.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._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 .mdc-radio .mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-focus-icon-color, black)}.mat-mdc-radio-button.cdk-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-radio-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display)}[dir=rtl] .mat-mdc-radio-touch-target{left:0;right:50%;transform:translate(50%, -50%)}'],encapsulation:2,changeDetection:0})}}return J})(),Q=(()=>{class J{static{this.\u0275fac=function(fe){return new(fe||J)}}static{this.\u0275mod=e.$C({type:J})}static{this.\u0275inj=e.G2t({imports:[t.yE,w.MD,t.pZ,W,t.yE]})}}return J})()},2798:(Qe,te,g)=>{"use strict";g.d(te,{$2:()=>We,JO:()=>N,VO:()=>Xe,Ve:()=>oe});var e=g(6969),t=g(177),x=g(4438),D=g(6600),l=g(6467),w=g(5542),f=g(8617),R=g(8203),h=g(5024),S=g(7336),y=g(9417),O=g(1413),I=g(9030),V=g(7786),j=g(9172),Y=g(5558),W=g(5964),Q=g(6354),J=g(3294),ie=g(6977),ee=g(6697),fe=g(9969);const ne=["trigger"],Me=["panel"],Ce=[[["mat-select-trigger"]],"*"],le=["mat-select-trigger","*"];function T(X,se){if(1&X&&(x.j41(0,"span",4),x.EFF(1),x.k0s()),2&X){const ae=x.XpG();x.R7$(),x.JRh(ae.placeholder)}}function n(X,se){1&X&&x.SdG(0)}function c(X,se){if(1&X&&(x.j41(0,"span",11),x.EFF(1),x.k0s()),2&X){const ae=x.XpG(2);x.R7$(),x.JRh(ae.triggerValue)}}function m(X,se){if(1&X&&(x.j41(0,"span",5),x.DNE(1,n,1,0)(2,c,2,1,"span",11),x.k0s()),2&X){const ae=x.XpG();x.R7$(),x.vxM(ae.customTrigger?1:2)}}function d(X,se){if(1&X){const ae=x.RV6();x.j41(0,"div",12,1),x.bIt("@transformPanel.done",function(Ie){x.eBV(ae);const st=x.XpG();return x.Njj(st._panelDoneAnimatingStream.next(Ie.toState))})("keydown",function(Ie){x.eBV(ae);const st=x.XpG();return x.Njj(st._handleKeydown(Ie))}),x.SdG(2,1),x.k0s()}if(2&X){const ae=x.XpG();x.ZvI("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",ae._getPanelTheme(),""),x.Y8G("ngClass",ae.panelClass)("@transformPanel","showing"),x.BMQ("id",ae.id+"-panel")("aria-multiselectable",ae.multiple)("aria-label",ae.ariaLabel||null)("aria-labelledby",ae._getPanelAriaLabelledby())}}const C={transformPanelWrap:(0,fe.hZ)("transformPanelWrap",[(0,fe.kY)("* => void",(0,fe.P)("@transformPanel",[(0,fe.MA)()],{optional:!0}))]),transformPanel:(0,fe.hZ)("transformPanel",[(0,fe.wk)("void",(0,fe.iF)({opacity:0,transform:"scale(1, 0.8)"})),(0,fe.kY)("void => showing",(0,fe.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,fe.iF)({opacity:1,transform:"scale(1, 1)"}))),(0,fe.kY)("* => void",(0,fe.i0)("100ms linear",(0,fe.iF)({opacity:0})))])};let a=0;const b=new x.nKC("mat-select-scroll-strategy",{providedIn:"root",factory:()=>{const X=(0,x.WQX)(e.hJ);return()=>X.scrollStrategies.reposition()}}),N=new x.nKC("MAT_SELECT_CONFIG"),q={provide:b,deps:[e.hJ],useFactory:function z(X){return()=>X.scrollStrategies.reposition()}},pe=new x.nKC("MatSelectTrigger");class ze{constructor(se,ae){this.source=se,this.value=ae}}let Xe=(()=>{class X{_scrollOptionIntoView(ae){const he=this.options.toArray()[ae];if(he){const Ie=this.panel.nativeElement,st=(0,D.jb)(ae,this.options,this.optionGroups),me=he._getHostElement();Ie.scrollTop=0===ae&&1===st?0:(0,D.TL)(me.offsetTop,me.offsetHeight,Ie.scrollTop,Ie.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(ae){return new ze(this,ae)}get focused(){return this._focused||this._panelOpen}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(ae){this._hideSingleSelectionIndicator=ae,this._syncParentProperties()}get placeholder(){return this._placeholder}set placeholder(ae){this._placeholder=ae,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(ae){this._required=ae,this.stateChanges.next()}get multiple(){return this._multiple}set multiple(ae){this._multiple=ae}get compareWith(){return this._compareWith}set compareWith(ae){this._compareWith=ae,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(ae){this._assignValue(ae)&&this._onChange(ae)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(ae){this._errorStateTracker.matcher=ae}get id(){return this._id}set id(ae){this._id=ae||this._uid,this.stateChanges.next()}get errorState(){return this._errorStateTracker.errorState}set errorState(ae){this._errorStateTracker.errorState=ae}constructor(ae,he,Ie,st,me,Ee,ue,Be,Ct,ct,dt,Yt,ve,_e){this._viewportRuler=ae,this._changeDetectorRef=he,this._elementRef=me,this._dir=Ee,this._parentFormField=Ct,this.ngControl=ct,this._liveAnnouncer=ve,this._defaultOptions=_e,this._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"}],this._panelOpen=!1,this._compareWith=(we,Ue)=>we===Ue,this._uid="mat-select-"+a++,this._triggerAriaLabelledBy=null,this._destroy=new O.B,this.stateChanges=new O.B,this.disableAutomaticLabeling=!0,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+a++,this._panelDoneAnimatingStream=new O.B,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this._hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1,this._multiple=!1,this.disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto",this._initialized=new O.B,this.optionSelectionChanges=(0,I.v)(()=>{const we=this.options;return we?we.changes.pipe((0,j.Z)(we),(0,Y.n)(()=>(0,V.h)(...we.map(Ue=>Ue.onSelectionChange)))):this._initialized.pipe((0,Y.n)(()=>this.optionSelectionChanges))}),this.openedChange=new x.bkB,this._openedStream=this.openedChange.pipe((0,W.p)(we=>we),(0,Q.T)(()=>{})),this._closedStream=this.openedChange.pipe((0,W.p)(we=>!we),(0,Q.T)(()=>{})),this.selectionChange=new x.bkB,this.valueChange=new x.bkB,this._trackedModal=null,this._skipPredicate=we=>!this.panelOpen&&we.disabled,this.ngControl&&(this.ngControl.valueAccessor=this),null!=_e?.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=_e.typeaheadDebounceInterval),this._errorStateTracker=new D.X0(st,ct,Be,ue,this.stateChanges),this._scrollStrategyFactory=Yt,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(dt)||0,this.id=this.id}ngOnInit(){this._selectionModel=new h.CB(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,J.F)(),(0,ie.Q)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen)),this._viewportRuler.change().pipe((0,ie.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,ie.Q)(this._destroy)).subscribe(ae=>{ae.added.forEach(he=>he.select()),ae.removed.forEach(he=>he.deselect())}),this.options.changes.pipe((0,j.Z)(null),(0,ie.Q)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const ae=this._getTriggerAriaLabelledby(),he=this.ngControl;if(ae!==this._triggerAriaLabelledBy){const Ie=this._elementRef.nativeElement;this._triggerAriaLabelledBy=ae,ae?Ie.setAttribute("aria-labelledby",ae):Ie.removeAttribute("aria-labelledby")}he&&(this._previousControl!==he.control&&(void 0!==this._previousControl&&null!==he.disabled&&he.disabled!==this.disabled&&(this.disabled=he.disabled),this._previousControl=he.control),this.updateErrorState())}ngOnChanges(ae){(ae.disabled||ae.userAriaDescribedBy)&&this.stateChanges.next(),ae.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this.typeaheadDebounceInterval)}ngOnDestroy(){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._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._applyModalPanelOwnership(),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_applyModalPanelOwnership(){const ae=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!ae)return;const he=`${this.id}-panel`;this._trackedModal&&(0,f.Ae)(this._trackedModal,"aria-owns",he),(0,f.px)(ae,"aria-owns",he),this._trackedModal=ae}_clearFromModal(){this._trackedModal&&((0,f.Ae)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched(),this.stateChanges.next())}writeValue(ae){this._assignValue(ae)}registerOnChange(ae){this._onChange=ae}registerOnTouched(ae){this._onTouched=ae}setDisabledState(ae){this.disabled=ae,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 ae=this._selectionModel.selected.map(he=>he.viewValue);return this._isRtl()&&ae.reverse(),ae.join(", ")}return this._selectionModel.selected[0].viewValue}updateErrorState(){this._errorStateTracker.updateErrorState()}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(ae){this.disabled||(this.panelOpen?this._handleOpenKeydown(ae):this._handleClosedKeydown(ae))}_handleClosedKeydown(ae){const he=ae.keyCode,Ie=he===S.n6||he===S.i7||he===S.UQ||he===S.LE,st=he===S.Fm||he===S.t6,me=this._keyManager;if(!me.isTyping()&&st&&!(0,S.rp)(ae)||(this.multiple||ae.altKey)&&Ie)ae.preventDefault(),this.open();else if(!this.multiple){const Ee=this.selected;me.onKeydown(ae);const ue=this.selected;ue&&Ee!==ue&&this._liveAnnouncer.announce(ue.viewValue,1e4)}}_handleOpenKeydown(ae){const he=this._keyManager,Ie=ae.keyCode,st=Ie===S.n6||Ie===S.i7,me=he.isTyping();if(st&&ae.altKey)ae.preventDefault(),this.close();else if(me||Ie!==S.Fm&&Ie!==S.t6||!he.activeItem||(0,S.rp)(ae))if(!me&&this._multiple&&Ie===S.A&&ae.ctrlKey){ae.preventDefault();const Ee=this.options.some(ue=>!ue.disabled&&!ue.selected);this.options.forEach(ue=>{ue.disabled||(Ee?ue.select():ue.deselect())})}else{const Ee=he.activeItemIndex;he.onKeydown(ae),this._multiple&&st&&ae.shiftKey&&he.activeItem&&he.activeItemIndex!==Ee&&he.activeItem._selectViaInteraction()}else ae.preventDefault(),he.activeItem._selectViaInteraction()}_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())}_onAttached(){this._overlayDir.positionChange.pipe((0,ee.s)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_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(ae){if(this.options.forEach(he=>he.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&ae)Array.isArray(ae),ae.forEach(he=>this._selectOptionByValue(he)),this._sortValues();else{const he=this._selectOptionByValue(ae);he?this._keyManager.updateActiveItem(he):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(ae){const he=this.options.find(Ie=>{if(this._selectionModel.isSelected(Ie))return!1;try{return null!=Ie.value&&this._compareWith(Ie.value,ae)}catch{return!1}});return he&&this._selectionModel.select(he),he}_assignValue(ae){return!!(ae!==this._value||this._multiple&&Array.isArray(ae))&&(this.options&&this._setSelectionByValue(ae),this._value=ae,!0)}_getOverlayWidth(ae){return"auto"===this.panelWidth?(ae instanceof e.$Q?ae.elementRef:ae||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const ae of this.options)ae._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new f.Au(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 ae=(0,V.h)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,ie.Q)(ae)).subscribe(he=>{this._onSelect(he.source,he.isUserInput),he.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,V.h)(...this.options.map(he=>he._stateChanges)).pipe((0,ie.Q)(ae)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(ae,he){const Ie=this._selectionModel.isSelected(ae);null!=ae.value||this._multiple?(Ie!==ae.selected&&(ae.selected?this._selectionModel.select(ae):this._selectionModel.deselect(ae)),he&&this._keyManager.setActiveItem(ae),this.multiple&&(this._sortValues(),he&&this.focus())):(ae.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(ae.value)),Ie!==this._selectionModel.isSelected(ae)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const ae=this.options.toArray();this._selectionModel.sort((he,Ie)=>this.sortComparator?this.sortComparator(he,Ie,ae):ae.indexOf(he)-ae.indexOf(Ie)),this.stateChanges.next()}}_propagateChanges(ae){let he;he=this.multiple?this.selected.map(Ie=>Ie.value):this.selected?this.selected.value:ae,this._value=he,this.valueChange.emit(he),this._onChange(he),this.selectionChange.emit(this._getChangeEvent(he)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let ae=-1;for(let he=0;he0}focus(ae){this._elementRef.nativeElement.focus(ae)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const ae=this._parentFormField?.getLabelId();return this.ariaLabelledby?(ae?ae+" ":"")+this.ariaLabelledby:ae}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const ae=this._parentFormField?.getLabelId();let he=(ae?ae+" ":"")+this._valueId;return this.ariaLabelledby&&(he+=" "+this.ariaLabelledby),he}_panelDoneAnimating(ae){this.openedChange.emit(ae)}setDescribedByIds(ae){ae.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ae.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static{this.\u0275fac=function(he){return new(he||X)(x.rXU(w.Xj),x.rXU(x.gRc),x.rXU(x.SKi),x.rXU(D.es),x.rXU(x.aKT),x.rXU(R.dS,8),x.rXU(y.cV,8),x.rXU(y.j4,8),x.rXU(l.xb,8),x.rXU(y.vO,10),x.kS0("tabindex"),x.rXU(b),x.rXU(f.Ai),x.rXU(N,8))}}static{this.\u0275cmp=x.VBU({type:X,selectors:[["mat-select"]],contentQueries:function(he,Ie,st){if(1&he&&(x.wni(st,pe,5),x.wni(st,D.wT,5),x.wni(st,D.QC,5)),2&he){let me;x.mGM(me=x.lsd())&&(Ie.customTrigger=me.first),x.mGM(me=x.lsd())&&(Ie.options=me),x.mGM(me=x.lsd())&&(Ie.optionGroups=me)}},viewQuery:function(he,Ie){if(1&he&&(x.GBs(ne,5),x.GBs(Me,5),x.GBs(e.WB,5)),2&he){let st;x.mGM(st=x.lsd())&&(Ie.trigger=st.first),x.mGM(st=x.lsd())&&(Ie.panel=st.first),x.mGM(st=x.lsd())&&(Ie._overlayDir=st.first)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:19,hostBindings:function(he,Ie){1&he&&x.bIt("keydown",function(me){return Ie._handleKeydown(me)})("focus",function(){return Ie._onFocus()})("blur",function(){return Ie._onBlur()}),2&he&&(x.BMQ("id",Ie.id)("tabindex",Ie.disabled?-1:Ie.tabIndex)("aria-controls",Ie.panelOpen?Ie.id+"-panel":null)("aria-expanded",Ie.panelOpen)("aria-label",Ie.ariaLabel||null)("aria-required",Ie.required.toString())("aria-disabled",Ie.disabled.toString())("aria-invalid",Ie.errorState)("aria-activedescendant",Ie._getAriaActiveDescendant()),x.AVh("mat-mdc-select-disabled",Ie.disabled)("mat-mdc-select-invalid",Ie.errorState)("mat-mdc-select-required",Ie.required)("mat-mdc-select-empty",Ie.empty)("mat-mdc-select-multiple",Ie.multiple))},inputs:{userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",disabled:[2,"disabled","disabled",x.L39],disableRipple:[2,"disableRipple","disableRipple",x.L39],tabIndex:[2,"tabIndex","tabIndex",ae=>null==ae?0:(0,x.Udg)(ae)],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",x.L39],placeholder:"placeholder",required:[2,"required","required",x.L39],multiple:[2,"multiple","multiple",x.L39],disableOptionCentering:[2,"disableOptionCentering","disableOptionCentering",x.L39],compareWith:"compareWith",value:"value",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:[2,"typeaheadDebounceInterval","typeaheadDebounceInterval",x.Udg],sortComparator:"sortComparator",id:"id",panelWidth:"panelWidth"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],standalone:!0,features:[x.Jv_([{provide:l.qT,useExisting:X},{provide:D.is,useExisting:X}]),x.GFd,x.OA$,x.aNF],ngContentSelectors:le,decls:11,vars:8,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,"backdropClick","attach","detach","cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"keydown","ngClass"]],template:function(he,Ie){if(1&he){const st=x.RV6();x.NAR(Ce),x.j41(0,"div",2,0),x.bIt("click",function(){return x.eBV(st),x.Njj(Ie.open())}),x.j41(3,"div",3),x.DNE(4,T,2,1,"span",4)(5,m,3,1,"span",5),x.k0s(),x.j41(6,"div",6)(7,"div",7),x.qSk(),x.j41(8,"svg",8),x.nrm(9,"path",9),x.k0s()()()(),x.DNE(10,d,3,9,"ng-template",10),x.bIt("backdropClick",function(){return x.eBV(st),x.Njj(Ie.close())})("attach",function(){return x.eBV(st),x.Njj(Ie._onAttached())})("detach",function(){return x.eBV(st),x.Njj(Ie.close())})}if(2&he){const st=x.sdS(1);x.R7$(3),x.BMQ("id",Ie._valueId),x.R7$(),x.vxM(Ie.empty?4:5),x.R7$(6),x.Y8G("cdkConnectedOverlayPanelClass",Ie._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",Ie._scrollStrategy)("cdkConnectedOverlayOrigin",Ie._preferredOverlayOrigin||st)("cdkConnectedOverlayOpen",Ie.panelOpen)("cdkConnectedOverlayPositions",Ie._positions)("cdkConnectedOverlayWidth",Ie._overlayWidth)}},dependencies:[e.$Q,e.WB,t.YU],styles:['.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);font-family:var(--mat-select-trigger-text-font);line-height:var(--mat-select-trigger-text-line-height);font-size:var(--mat-select-trigger-text-size);font-weight:var(--mat-select-trigger-text-weight);letter-spacing:var(--mat-select-trigger-text-tracking)}div.mat-mdc-select-panel{box-shadow:var(--mat-select-container-elevation-shadow)}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color)}.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)}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color)}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color)}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .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:static;background-color:var(--mat-select-panel-background-color)}.cdk-high-contrast-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}div.mat-mdc-select-panel .mat-mdc-option{--mdc-list-list-item-container-color: var(--mat-select-panel-background-color)}.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)}._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)}'],encapsulation:2,data:{animation:[C.transformPanel]},changeDetection:0})}}return X})(),We=(()=>{class X{static{this.\u0275fac=function(he){return new(he||X)}}static{this.\u0275dir=x.FsC({type:X,selectors:[["mat-select-trigger"]],standalone:!0,features:[x.Jv_([{provide:pe,useExisting:X}])]})}}return X})(),oe=(()=>{class X{static{this.\u0275fac=function(he){return new(he||X)}}static{this.\u0275mod=x.$C({type:X})}static{this.\u0275inj=x.G2t({providers:[q],imports:[t.MD,e.z_,D.Sy,D.yE,w.Gj,l.RG,D.Sy,D.yE]})}}return X})()},882:(Qe,te,g)=>{"use strict";g.d(te,{El:()=>pe,LG:()=>ze,US:()=>Xe,vg:()=>We});var e=g(5542),t=g(4438),x=g(6600),D=g(8617),l=g(8203),w=g(4085),f=g(7336),R=g(6860),h=g(177),S=g(1413),y=g(3726),O=g(7786),I=g(5964),V=g(6354),j=g(3703),Y=g(6977),W=g(3294),Q=g(6697),J=g(9172),ie=g(152),ee=g(9969);const fe=["*"],ne=["content"],Me=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],Ce=["mat-drawer","mat-drawer-content","*"];function le(oe,X){if(1&oe){const se=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(se);const he=t.XpG();return t.Njj(he._onBackdropClicked())}),t.k0s()}if(2&oe){const se=t.XpG();t.AVh("mat-drawer-shown",se._isShowingBackdrop())}}function T(oe,X){1&oe&&(t.j41(0,"mat-drawer-content"),t.SdG(1,2),t.k0s())}const n=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],c=["mat-sidenav","mat-sidenav-content","*"];function m(oe,X){if(1&oe){const se=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(se);const he=t.XpG();return t.Njj(he._onBackdropClicked())}),t.k0s()}if(2&oe){const se=t.XpG();t.AVh("mat-drawer-shown",se._isShowingBackdrop())}}function d(oe,X){1&oe&&(t.j41(0,"mat-sidenav-content"),t.SdG(1,2),t.k0s())}const A={transformDrawer:(0,ee.hZ)("transform",[(0,ee.wk)("open, open-instant",(0,ee.iF)({transform:"none",visibility:"visible"})),(0,ee.wk)("void",(0,ee.iF)({"box-shadow":"none",visibility:"hidden"})),(0,ee.kY)("void => open-instant",(0,ee.i0)("0ms")),(0,ee.kY)("void <=> open, open-instant => void",(0,ee.i0)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},_=new t.nKC("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function b(){return!1}}),a=new t.nKC("MAT_DRAWER_CONTAINER");let z=(()=>{class oe extends e.uv{constructor(se,ae,he,Ie,st){super(he,Ie,st),this._changeDetectorRef=se,this._container=ae}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}static{this.\u0275fac=function(ae){return new(ae||oe)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>q)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))}}static{this.\u0275cmp=t.VBU({type:oe,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:4,hostBindings:function(ae,he){2&ae&&t.xc7("margin-left",he._container._contentMargins.left,"px")("margin-right",he._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:oe}]),t.Vt3,t.aNF],ngContentSelectors:fe,decls:1,vars:0,template:function(ae,he){1&ae&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}}return oe})(),N=(()=>{class oe{get position(){return this._position}set position(se){(se="end"===se?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(se),this._position=se,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(se){this._mode=se,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(se){this._disableClose=(0,w.he)(se)}get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(se){("true"===se||"false"===se||null==se)&&(se=(0,w.he)(se)),this._autoFocus=se}get opened(){return this._opened}set opened(se){this.toggle((0,w.he)(se))}constructor(se,ae,he,Ie,st,me,Ee,ue){this._elementRef=se,this._focusTrapFactory=ae,this._focusMonitor=he,this._platform=Ie,this._ngZone=st,this._interactivityChecker=me,this._doc=Ee,this._container=ue,this._focusTrap=null,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new S.B,this._animationEnd=new S.B,this._animationState="void",this.openedChange=new t.bkB(!0),this._openedStream=this.openedChange.pipe((0,I.p)(Be=>Be),(0,V.T)(()=>{})),this.openedStart=this._animationStarted.pipe((0,I.p)(Be=>Be.fromState!==Be.toState&&0===Be.toState.indexOf("open")),(0,j.u)(void 0)),this._closedStream=this.openedChange.pipe((0,I.p)(Be=>!Be),(0,V.T)(()=>{})),this.closedStart=this._animationStarted.pipe((0,I.p)(Be=>Be.fromState!==Be.toState&&"void"===Be.toState),(0,j.u)(void 0)),this._destroyed=new S.B,this.onPositionChanged=new t.bkB,this._modeChanged=new S.B,this.openedChange.subscribe(Be=>{Be?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,y.R)(this._elementRef.nativeElement,"keydown").pipe((0,I.p)(Be=>Be.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(Be)),(0,Y.Q)(this._destroyed)).subscribe(Be=>this._ngZone.run(()=>{this.close(),Be.stopPropagation(),Be.preventDefault()}))}),this._animationEnd.pipe((0,W.F)((Be,Ct)=>Be.fromState===Ct.fromState&&Be.toState===Ct.toState)).subscribe(Be=>{const{fromState:Ct,toState:ct}=Be;(0===ct.indexOf("open")&&"void"===Ct||"void"===ct&&0===Ct.indexOf("open"))&&this.openedChange.emit(this._opened)})}_forceFocus(se,ae){this._interactivityChecker.isFocusable(se)||(se.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const he=()=>{se.removeEventListener("blur",he),se.removeEventListener("mousedown",he),se.removeAttribute("tabindex")};se.addEventListener("blur",he),se.addEventListener("mousedown",he)})),se.focus(ae)}_focusByCssSelector(se,ae){let he=this._elementRef.nativeElement.querySelector(se);he&&this._forceFocus(he,ae)}_takeFocus(){if(!this._focusTrap)return;const se=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(ae=>{!ae&&"function"==typeof this._elementRef.nativeElement.focus&&se.focus()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(se){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,se):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const se=this._doc.activeElement;return!!se&&this._elementRef.nativeElement.contains(se)}ngAfterViewInit(){this._isAttached=!0,"end"===this._position&&this._updatePositionInParent("end"),this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState())}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){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(se){return this.toggle(!0,se)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(se=!this.opened,ae){se&&ae&&(this._openedVia=ae);const he=this._setOpen(se,!se&&this._isFocusWithinDrawer(),this._openedVia||"program");return se||(this._openedVia=null),he}_setOpen(se,ae,he){return this._opened=se,se?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",ae&&this._restoreFocus(he)),this._updateFocusTrapState(),new Promise(Ie=>{this.openedChange.pipe((0,Q.s)(1)).subscribe(st=>Ie(st?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop)}_updatePositionInParent(se){if(!this._platform.isBrowser)return;const ae=this._elementRef.nativeElement,he=ae.parentNode;"end"===se?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),he.insertBefore(this._anchor,ae)),he.appendChild(ae)):this._anchor&&this._anchor.parentNode.insertBefore(ae,this._anchor)}static{this.\u0275fac=function(ae){return new(ae||oe)(t.rXU(t.aKT),t.rXU(D.GX),t.rXU(D.FN),t.rXU(R.OD),t.rXU(t.SKi),t.rXU(D.Z7),t.rXU(h.qQ,8),t.rXU(a,8))}}static{this.\u0275cmp=t.VBU({type:oe,selectors:[["mat-drawer"]],viewQuery:function(ae,he){if(1&ae&&t.GBs(ne,5),2&ae){let Ie;t.mGM(Ie=t.lsd())&&(he._content=Ie.first)}},hostAttrs:["tabIndex","-1",1,"mat-drawer"],hostVars:12,hostBindings:function(ae,he){1&ae&&t.Kam("@transform.start",function(st){return he._animationStarted.next(st)})("@transform.done",function(st){return he._animationEnd.next(st)}),2&ae&&(t.zvX("@transform",he._animationState),t.BMQ("align",null),t.AVh("mat-drawer-end","end"===he.position)("mat-drawer-over","over"===he.mode)("mat-drawer-push","push"===he.mode)("mat-drawer-side","side"===he.mode)("mat-drawer-opened",he.opened))},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"],standalone:!0,features:[t.aNF],ngContentSelectors:fe,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ae,he){1&ae&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[A.transformDrawer]},changeDetection:0})}}return oe})(),q=(()=>{class oe{get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(se){this._autosize=(0,w.he)(se)}get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(se){this._backdropOverride=null==se?null:(0,w.he)(se)}get scrollable(){return this._userContent||this._content}constructor(se,ae,he,Ie,st,me=!1,Ee){this._dir=se,this._element=ae,this._ngZone=he,this._changeDetectorRef=Ie,this._animationMode=Ee,this._drawers=new t.rOR,this.backdropClick=new t.bkB,this._destroyed=new S.B,this._doCheckSubject=new S.B,this._contentMargins={left:null,right:null},this._contentMarginChanges=new S.B,se&&se.change.pipe((0,Y.Q)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),st.change().pipe((0,Y.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=me}ngAfterContentInit(){this._allDrawers.changes.pipe((0,J.Z)(this._allDrawers),(0,Y.Q)(this._destroyed)).subscribe(se=>{this._drawers.reset(se.filter(ae=>!ae._container||ae._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,J.Z)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(se=>{this._watchDrawerToggle(se),this._watchDrawerPosition(se),this._watchDrawerMode(se)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,ie.B)(10),(0,Y.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(se=>se.open())}close(){this._drawers.forEach(se=>se.close())}updateContentMargins(){let se=0,ae=0;if(this._left&&this._left.opened)if("side"==this._left.mode)se+=this._left._getWidth();else if("push"==this._left.mode){const he=this._left._getWidth();se+=he,ae-=he}if(this._right&&this._right.opened)if("side"==this._right.mode)ae+=this._right._getWidth();else if("push"==this._right.mode){const he=this._right._getWidth();ae+=he,se-=he}se=se||null,ae=ae||null,(se!==this._contentMargins.left||ae!==this._contentMargins.right)&&(this._contentMargins={left:se,right:ae},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(se){se._animationStarted.pipe((0,I.p)(ae=>ae.fromState!==ae.toState),(0,Y.Q)(this._drawers.changes)).subscribe(ae=>{"open-instant"!==ae.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==se.mode&&se.openedChange.pipe((0,Y.Q)(this._drawers.changes)).subscribe(()=>this._setContainerClass(se.opened))}_watchDrawerPosition(se){se&&se.onPositionChanged.pipe((0,Y.Q)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,Q.s)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(se){se&&se._modeChanged.pipe((0,Y.Q)((0,O.h)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(se){const ae=this._element.nativeElement.classList,he="mat-drawer-container-has-open";se?ae.add(he):ae.remove(he)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(se=>{"end"==se.position?this._end=se:this._start=se}),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(se=>se&&!se.disableClose&&this._drawerHasBackdrop(se)).forEach(se=>se._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(se){return null!=se&&se.opened}_drawerHasBackdrop(se){return null==this._backdropOverride?!!se&&"side"!==se.mode:this._backdropOverride}static{this.\u0275fac=function(ae){return new(ae||oe)(t.rXU(l.dS,8),t.rXU(t.aKT),t.rXU(t.SKi),t.rXU(t.gRc),t.rXU(e.Xj),t.rXU(_),t.rXU(t.bc$,8))}}static{this.\u0275cmp=t.VBU({type:oe,selectors:[["mat-drawer-container"]],contentQueries:function(ae,he,Ie){if(1&ae&&(t.wni(Ie,z,5),t.wni(Ie,N,5)),2&ae){let st;t.mGM(st=t.lsd())&&(he._content=st.first),t.mGM(st=t.lsd())&&(he._allDrawers=st)}},viewQuery:function(ae,he){if(1&ae&&t.GBs(z,5),2&ae){let Ie;t.mGM(Ie=t.lsd())&&(he._userContent=Ie.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(ae,he){2&ae&&t.AVh("mat-drawer-container-explicit-backdrop",he._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],standalone:!0,features:[t.Jv_([{provide:a,useExisting:oe}]),t.aNF],ngContentSelectors:Ce,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ae,he){1&ae&&(t.NAR(Me),t.DNE(0,le,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,T,2,0,"mat-drawer-content")),2&ae&&(t.vxM(he.hasBackdrop?0:-1),t.R7$(3),t.vxM(he._content?-1:3))},dependencies:[z],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);box-sizing:border-box;-webkit-overflow-scrolling:touch;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)}.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}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.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);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);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)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .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);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);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);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);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);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);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}}return oe})(),pe=(()=>{class oe extends z{constructor(se,ae,he,Ie,st){super(se,ae,he,Ie,st)}static{this.\u0275fac=function(ae){return new(ae||oe)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>Xe)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))}}static{this.\u0275cmp=t.VBU({type:oe,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(ae,he){2&ae&&t.xc7("margin-left",he._container._contentMargins.left,"px")("margin-right",he._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:oe}]),t.Vt3,t.aNF],ngContentSelectors:fe,decls:1,vars:0,template:function(ae,he){1&ae&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}}return oe})(),ze=(()=>{class oe extends N{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(se){this._fixedInViewport=(0,w.he)(se)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(se){this._fixedTopGap=(0,w.OE)(se)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(se){this._fixedBottomGap=(0,w.OE)(se)}static{this.\u0275fac=(()=>{let se;return function(he){return(se||(se=t.xGo(oe)))(he||oe)}})()}static{this.\u0275cmp=t.VBU({type:oe,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(ae,he){2&ae&&(t.BMQ("align",null),t.xc7("top",he.fixedInViewport?he.fixedTopGap:null,"px")("bottom",he.fixedInViewport?he.fixedBottomGap:null,"px"),t.AVh("mat-drawer-end","end"===he.position)("mat-drawer-over","over"===he.mode)("mat-drawer-push","push"===he.mode)("mat-drawer-side","side"===he.mode)("mat-drawer-opened",he.opened)("mat-sidenav-fixed",he.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],standalone:!0,features:[t.Vt3,t.aNF],ngContentSelectors:fe,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ae,he){1&ae&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[A.transformDrawer]},changeDetection:0})}}return oe})(),Xe=(()=>{class oe extends q{constructor(){super(...arguments),this._allDrawers=void 0,this._content=void 0}static{this.\u0275fac=(()=>{let se;return function(he){return(se||(se=t.xGo(oe)))(he||oe)}})()}static{this.\u0275cmp=t.VBU({type:oe,selectors:[["mat-sidenav-container"]],contentQueries:function(ae,he,Ie){if(1&ae&&(t.wni(Ie,pe,5),t.wni(Ie,ze,5)),2&ae){let st;t.mGM(st=t.lsd())&&(he._content=st.first),t.mGM(st=t.lsd())&&(he._allDrawers=st)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(ae,he){2&ae&&t.AVh("mat-drawer-container-explicit-backdrop",he._backdropOverride)},exportAs:["matSidenavContainer"],standalone:!0,features:[t.Jv_([{provide:a,useExisting:oe}]),t.Vt3,t.aNF],ngContentSelectors:c,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ae,he){1&ae&&(t.NAR(n),t.DNE(0,m,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,d,2,0,"mat-sidenav-content")),2&ae&&(t.vxM(he.hasBackdrop?0:-1),t.R7$(3),t.vxM(he._content?-1:3))},dependencies:[pe],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);box-sizing:border-box;-webkit-overflow-scrolling:touch;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)}.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}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.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);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);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)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .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);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);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);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);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);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);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}}return oe})(),We=(()=>{class oe{static{this.\u0275fac=function(ae){return new(ae||oe)}}static{this.\u0275mod=t.$C({type:oe})}static{this.\u0275inj=t.G2t({imports:[x.yE,e.Gj,e.Gj,x.yE]})}}return oe})()},450:(Qe,te,g)=>{"use strict";g.d(te,{mV:()=>Y,sG:()=>O});var e=g(4438),t=g(9417),x=g(8617),D=g(6600);const l=["switch"],w=["*"];function f(W,Q){1&W&&(e.j41(0,"div",10),e.qSk(),e.j41(1,"svg",12),e.nrm(2,"path",13),e.k0s(),e.j41(3,"svg",14),e.nrm(4,"path",15),e.k0s()())}const R=new e.nKC("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1})}),h={provide:t.kq,useExisting:(0,e.Rfq)(()=>O),multi:!0};class S{constructor(Q,J){this.source=Q,this.checked=J}}let y=0,O=(()=>{class W{_createChangeEvent(J){return new S(this,J)}get buttonId(){return`${this.id||this._uniqueId}-button`}focus(){this._switchElement.nativeElement.focus()}get checked(){return this._checked}set checked(J){this._checked=J,this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(J,ie,ee,fe,ne,Me){this._elementRef=J,this._focusMonitor=ie,this._changeDetectorRef=ee,this.defaults=ne,this._onChange=Ce=>{},this._onTouched=()=>{},this._validatorOnChange=()=>{},this._checked=!1,this.name=null,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this.toggleChange=new e.bkB,this.tabIndex=parseInt(fe)||0,this.color=ne.color||"accent",this._noopAnimations="NoopAnimations"===Me,this.id=this._uniqueId="mat-mdc-slide-toggle-"+ ++y,this.hideIcon=ne.hideIcon??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(J=>{"keyboard"===J||"program"===J?(this._focused=!0,this._changeDetectorRef.markForCheck()):J||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnChanges(J){J.required&&this._validatorOnChange()}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(J){this.checked=!!J}registerOnChange(J){this._onChange=J}registerOnTouched(J){this._onTouched=J}validate(J){return this.required&&!0!==J.value?{required:!0}:null}registerOnValidatorChange(J){this._validatorOnChange=J}setDisabledState(J){this.disabled=J,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.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new S(this,this.checked)))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static{this.\u0275fac=function(ie){return new(ie||W)(e.rXU(e.aKT),e.rXU(x.FN),e.rXU(e.gRc),e.kS0("tabindex"),e.rXU(R),e.rXU(e.bc$,8))}}static{this.\u0275cmp=e.VBU({type:W,selectors:[["mat-slide-toggle"]],viewQuery:function(ie,ee){if(1&ie&&e.GBs(l,5),2&ie){let fe;e.mGM(fe=e.lsd())&&(ee._switchElement=fe.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(ie,ee){2&ie&&(e.Mr5("id",ee.id),e.BMQ("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),e.HbH(ee.color?"mat-"+ee.color:""),e.AVh("mat-mdc-slide-toggle-focused",ee._focused)("mat-mdc-slide-toggle-checked",ee.checked)("_mat-animation-noopable",ee._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",e.L39],color:"color",disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",J=>null==J?0:(0,e.Udg)(J)],checked:[2,"checked","checked",e.L39],hideIcon:[2,"hideIcon","hideIcon",e.L39]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],standalone:!0,features:[e.Jv_([h,{provide:t.cz,useExisting:W,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:w,decls:13,vars:24,consts:[["switch",""],["mat-internal-form-field","",3,"labelPosition"],["role","switch","type","button",1,"mdc-switch",3,"click","tabIndex","disabled"],[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-mdc-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(ie,ee){if(1&ie){const fe=e.RV6();e.NAR(),e.j41(0,"div",1)(1,"button",2,0),e.bIt("click",function(){return e.eBV(fe),e.Njj(ee._handleClick())}),e.nrm(3,"div",3),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"div",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"div",9),e.k0s(),e.DNE(10,f,5,0,"div",10),e.k0s()()(),e.j41(11,"label",11),e.bIt("click",function(Me){return e.eBV(fe),e.Njj(Me.stopPropagation())}),e.SdG(12),e.k0s()()}if(2&ie){const fe=e.sdS(2);e.Y8G("labelPosition",ee.labelPosition),e.R7$(),e.AVh("mdc-switch--selected",ee.checked)("mdc-switch--unselected",!ee.checked)("mdc-switch--checked",ee.checked)("mdc-switch--disabled",ee.disabled),e.Y8G("tabIndex",ee.disabled?-1:ee.tabIndex)("disabled",ee.disabled),e.BMQ("id",ee.buttonId)("name",ee.name)("aria-label",ee.ariaLabel)("aria-labelledby",ee._getAriaLabelledBy())("aria-describedby",ee.ariaDescribedby)("aria-required",ee.required||null)("aria-checked",ee.checked),e.R7$(8),e.Y8G("matRippleTrigger",fe)("matRippleDisabled",ee.disableRipple||ee.disabled)("matRippleCentered",!0),e.R7$(),e.vxM(ee.hideIcon?-1:10),e.R7$(),e.Y8G("for",ee.buttonId),e.BMQ("id",ee._labelId)}},dependencies:[D.r6,D.tO],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mdc-elevation-overlay-color)}.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}.mdc-switch[hidden]{display:none}.mdc-switch:disabled{cursor:default;pointer-events:none}.mdc-switch__track{overflow:hidden;position:relative;width:100%}.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%}@media screen and (forced-colors: active){.mdc-switch__track::before,.mdc-switch__track::after{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(-100%)}[dir=rtl] .mdc-switch__track::after,.mdc-switch__track[dir=rtl]::after{transform:translateX(100%)}.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__track::before,.mdc-switch--selected .mdc-switch__track[dir=rtl]::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.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)}[dir=rtl] .mdc-switch__handle-track,.mdc-switch__handle-track[dir=rtl]{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track,.mdc-switch--selected .mdc-switch__handle-track[dir=rtl]{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto}[dir=rtl] .mdc-switch__handle,.mdc-switch__handle[dir=rtl]{left:auto;right:0}.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 screen and (forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-elevation-overlay{bottom:0;left:0;right:0;top:0}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1}.mdc-switch:disabled .mdc-switch__ripple{display:none}.mdc-switch__icons{height:100%;position:relative;width:100%;z-index:1}.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--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 .mdc-switch--disabled+label{color:var(--mdc-switch-disabled-label-text-color)}.mdc-switch{width:var(--mdc-switch-track-width)}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-selected-handle-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-hover-handle-color)}.mdc-switch.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-focus-handle-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-selected-pressed-handle-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-selected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-unselected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-hover-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-focus-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-unselected-pressed-handle-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-unselected-handle-color)}.mdc-switch .mdc-switch__handle::before{background:var(--mdc-switch-handle-surface-color)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation)}.mdc-switch .mdc-switch__focus-ring-wrapper,.mdc-switch .mdc-switch__handle{height:var(--mdc-switch-handle-height)}.mdc-switch .mdc-switch__handle{border-radius:var(--mdc-switch-handle-shape)}.mdc-switch .mdc-switch__handle{width:var(--mdc-switch-handle-width)}.mdc-switch .mdc-switch__handle-track{width:calc(100% - var(--mdc-switch-handle-width))}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__icon{fill:var(--mdc-switch-selected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-selected-icon-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__icon{fill:var(--mdc-switch-unselected-icon-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-unselected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-selected-icon-opacity)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-unselected-icon-opacity)}.mdc-switch.mdc-switch--selected .mdc-switch__icon{width:var(--mdc-switch-selected-icon-size);height:var(--mdc-switch-selected-icon-size)}.mdc-switch.mdc-switch--unselected .mdc-switch__icon{width:var(--mdc-switch-unselected-icon-size);height:var(--mdc-switch-unselected-icon-size)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-hover-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-focus-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-pressed-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-hover-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-focus-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-pressed-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-selected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-selected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-unselected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-unselected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch .mdc-switch__ripple{height:var(--mdc-switch-state-layer-size);width:var(--mdc-switch-state-layer-size)}.mdc-switch .mdc-switch__track{height:var(--mdc-switch-track-height)}.mdc-switch:disabled .mdc-switch__track{opacity:var(--mdc-switch-disabled-track-opacity)}.mdc-switch:enabled .mdc-switch__track::after{background:var(--mdc-switch-selected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mdc-switch-selected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::after{background:var(--mdc-switch-disabled-selected-track-color)}.mdc-switch:enabled .mdc-switch__track::before{background:var(--mdc-switch-unselected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mdc-switch-unselected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::before{background:var(--mdc-switch-disabled-unselected-track-color)}.mdc-switch .mdc-switch__track{border-radius:var(--mdc-switch-track-shape)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation-shadow)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation-shadow)}.mat-mdc-slide-toggle{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 .mdc-switch__ripple::after{content:"";opacity:0}.mat-mdc-slide-toggle .mdc-switch:hover .mdc-switch__ripple::after{opacity:.04;transition:opacity 75ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mdc-switch .mdc-switch__ripple::after{opacity:.12}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-mdc-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-elevation-overlay,.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}.mdc-switch__handle{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)}.mdc-switch--selected .mdc-switch__track::before{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mdc-switch--selected .mdc-switch__track::after{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::before{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::after{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{width:var(--mat-switch-unselected-handle-size);height:var(--mat-switch-unselected-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{width:var(--mat-switch-selected-handle-size);height:var(--mat-switch-selected-handle-size)}.mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons){width:var(--mat-switch-with-icon-handle-size);height:var(--mat-switch-with-icon-handle-size)}.mat-mdc-slide-toggle:active .mdc-switch:not(.mdc-switch--disabled) .mdc-switch__handle{width:var(--mat-switch-pressed-handle-size);height:var(--mat-switch-pressed-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{margin:var(--mat-switch-selected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-selected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{margin:var(--mat-switch-unselected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-unselected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--selected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-selected-pressed-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--unselected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-unselected-pressed-handle-horizontal-margin)}.mdc-switch__track::after,.mdc-switch__track::before{border-width:var(--mat-switch-track-outline-width);border-color:var(--mat-switch-track-outline-color)}.mdc-switch--selected .mdc-switch__track::after,.mdc-switch--selected .mdc-switch__track::before{border-width:var(--mat-switch-selected-track-outline-width)}.mdc-switch--disabled .mdc-switch__track::after,.mdc-switch--disabled .mdc-switch__track::before{border-width:var(--mat-switch-disabled-unselected-track-outline-width);border-color:var(--mat-switch-disabled-unselected-track-outline-color)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-selected-handle-opacity)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-unselected-handle-opacity)}'],encapsulation:2,changeDetection:0})}}return W})(),Y=(()=>{class W{static{this.\u0275fac=function(ie){return new(ie||W)}}static{this.\u0275mod=e.$C({type:W})}static{this.\u0275inj=e.G2t({imports:[O,D.yE,D.yE]})}}return W})()},5416:(Qe,te,g)=>{"use strict";g.d(te,{UG:()=>c,_T:()=>d,x6:()=>n});var e=g(4438),t=g(8834),x=g(1413),D=g(177),l=g(9969),w=g(6939),f=g(6860),R=g(8617),h=g(9327),S=g(6969),y=g(6977),O=g(6600);function I(C,A){if(1&C){const k=e.RV6();e.j41(0,"div",1)(1,"button",2),e.bIt("click",function(){e.eBV(k);const a=e.XpG();return e.Njj(a.action())}),e.EFF(2),e.k0s()()}if(2&C){const k=e.XpG();e.R7$(2),e.SpI(" ",k.data.action," ")}}const V=["label"];function j(C,A){}const Y=Math.pow(2,31)-1;class W{constructor(A,k){this._overlayRef=k,this._afterDismissed=new x.B,this._afterOpened=new x.B,this._onAction=new x.B,this._dismissedByAction=!1,this.containerInstance=A,A._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(A){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(A,Y))}_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 Q=new e.nKC("MatSnackBarData");class J{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}let ie=(()=>{class C{static{this.\u0275fac=function(_){return new(_||C)}}static{this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"],standalone:!0})}}return C})(),ee=(()=>{class C{static{this.\u0275fac=function(_){return new(_||C)}}static{this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"],standalone:!0})}}return C})(),fe=(()=>{class C{static{this.\u0275fac=function(_){return new(_||C)}}static{this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"],standalone:!0})}}return C})(),ne=(()=>{class C{constructor(k,_){this.snackBarRef=k,this.data=_}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static{this.\u0275fac=function(_){return new(_||C)(e.rXU(W),e.rXU(Q))}}static{this.\u0275cmp=e.VBU({type:C,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],standalone:!0,features:[e.aNF],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["mat-button","","matSnackBarAction","",3,"click"]],template:function(_,a){1&_&&(e.j41(0,"div",0),e.EFF(1),e.k0s(),e.DNE(2,I,3,1,"div",1)),2&_&&(e.R7$(),e.SpI(" ",a.data.message,"\n"),e.R7$(),e.vxM(a.hasAction?2:-1))},dependencies:[t.$z,ie,ee,fe],styles:[".mat-mdc-simple-snack-bar{display:flex}"],encapsulation:2,changeDetection:0})}}return C})();const Me={snackBarState:(0,l.hZ)("state",[(0,l.wk)("void, hidden",(0,l.iF)({transform:"scale(0.8)",opacity:0})),(0,l.wk)("visible",(0,l.iF)({transform:"scale(1)",opacity:1})),(0,l.kY)("* => visible",(0,l.i0)("150ms cubic-bezier(0, 0, 0.2, 1)")),(0,l.kY)("* => void, * => hidden",(0,l.i0)("75ms cubic-bezier(0.4, 0.0, 1, 1)",(0,l.iF)({opacity:0})))])};let Ce=0,le=(()=>{class C extends w.lb{constructor(k,_,a,b,z){super(),this._ngZone=k,this._elementRef=_,this._changeDetectorRef=a,this._platform=b,this.snackBarConfig=z,this._document=(0,e.WQX)(D.qQ),this._trackedModals=new Set,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new x.B,this._onExit=new x.B,this._onEnter=new x.B,this._animationState="void",this._liveElementId="mat-snack-bar-container-live-"+Ce++,this.attachDomPortal=N=>{this._assertNotAttached();const q=this._portalOutlet.attachDomPortal(N);return this._afterPortalAttached(),q},this._live="assertive"!==z.politeness||z.announcementMessage?"off"===z.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(k){this._assertNotAttached();const _=this._portalOutlet.attachComponentPortal(k);return this._afterPortalAttached(),_}attachTemplatePortal(k){this._assertNotAttached();const _=this._portalOutlet.attachTemplatePortal(k);return this._afterPortalAttached(),_}onAnimationEnd(k){const{fromState:_,toState:a}=k;if(("void"===a&&"void"!==_||"hidden"===a)&&this._completeExit(),"visible"===a){const b=this._onEnter;this._ngZone.run(()=>{b.next(),b.complete()})}}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.markForCheck(),this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce())}exit(){return this._ngZone.run(()=>{this._animationState="hidden",this._changeDetectorRef.markForCheck(),this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId)}),this._onExit}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){queueMicrotask(()=>{this._onExit.next(),this._onExit.complete()})}_afterPortalAttached(){const k=this._elementRef.nativeElement,_=this.snackBarConfig.panelClass;_&&(Array.isArray(_)?_.forEach(z=>k.classList.add(z)):k.classList.add(_)),this._exposeToModals();const a=this._label.nativeElement,b="mdc-snackbar__label";a.classList.toggle(b,!a.querySelector(`.${b}`))}_exposeToModals(){const k=this._liveElementId,_=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let a=0;a<_.length;a++){const b=_[a],z=b.getAttribute("aria-owns");this._trackedModals.add(b),z?-1===z.indexOf(k)&&b.setAttribute("aria-owns",z+" "+k):b.setAttribute("aria-owns",k)}}_clearFromModals(){this._trackedModals.forEach(k=>{const _=k.getAttribute("aria-owns");if(_){const a=_.replace(this._liveElementId,"").trim();a.length>0?k.setAttribute("aria-owns",a):k.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const k=this._elementRef.nativeElement.querySelector("[aria-hidden]"),_=this._elementRef.nativeElement.querySelector("[aria-live]");if(k&&_){let a=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&k.contains(document.activeElement)&&(a=document.activeElement),k.removeAttribute("aria-hidden"),_.appendChild(k),a?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static{this.\u0275fac=function(_){return new(_||C)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(f.OD),e.rXU(J))}}static{this.\u0275cmp=e.VBU({type:C,selectors:[["mat-snack-bar-container"]],viewQuery:function(_,a){if(1&_&&(e.GBs(w.I3,7),e.GBs(V,7)),2&_){let b;e.mGM(b=e.lsd())&&(a._portalOutlet=b.first),e.mGM(b=e.lsd())&&(a._label=b.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container","mdc-snackbar--open"],hostVars:1,hostBindings:function(_,a){1&_&&e.Kam("@state.done",function(z){return a.onAnimationEnd(z)}),2&_&&e.zvX("@state",a._animationState)},standalone:!0,features:[e.Vt3,e.aNF],decls:6,vars:3,consts:[["label",""],[1,"mdc-snackbar__surface"],[1,"mat-mdc-snack-bar-label"],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(_,a){1&_&&(e.j41(0,"div",1)(1,"div",2,0)(3,"div",3),e.DNE(4,j,0,0,"ng-template",4),e.k0s(),e.nrm(5,"div"),e.k0s()()),2&_&&(e.R7$(5),e.BMQ("aria-live",a._live)("role",a._role)("id",a._liveElementId))},dependencies:[w.I3],styles:['.mdc-snackbar{display:none;position:fixed;right:0;bottom:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mdc-snackbar--opening,.mdc-snackbar--open,.mdc-snackbar--closing{display:flex}.mdc-snackbar--open .mdc-snackbar__label,.mdc-snackbar--open .mdc-snackbar__actions{visibility:visible}.mdc-snackbar__surface{padding-left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;transform:scale(0.8);opacity:0}.mdc-snackbar__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}@media screen and (forced-colors: active){.mdc-snackbar__surface::before{border-color:CanvasText}}[dir=rtl] .mdc-snackbar__surface,.mdc-snackbar__surface[dir=rtl]{padding-left:8px;padding-right:0}.mdc-snackbar--open .mdc-snackbar__surface{transform:scale(1);opacity:1;pointer-events:auto}.mdc-snackbar--closing .mdc-snackbar__surface{transform:scale(1)}.mdc-snackbar__label{padding-left:16px;padding-right:8px;width:100%;flex-grow:1;box-sizing:border-box;margin:0;visibility:hidden;padding-top:14px;padding-bottom:14px}[dir=rtl] .mdc-snackbar__label,.mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar__label::before{display:inline;content:attr(data-mdc-snackbar-label-text)}.mdc-snackbar__actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box;visibility:hidden}.mdc-snackbar__action+.mdc-snackbar__dismiss{margin-left:8px;margin-right:0}[dir=rtl] .mdc-snackbar__action+.mdc-snackbar__dismiss,.mdc-snackbar__action+.mdc-snackbar__dismiss[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-snack-bar-container{margin:8px;position:static}.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:344px}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:100%}}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container{width:100vw}}.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:672px}.mat-mdc-snack-bar-container .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)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{background-color:var(--mdc-snackbar-container-color)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{border-radius:var(--mdc-snackbar-container-shape)}.mat-mdc-snack-bar-container .mdc-snackbar__label{color:var(--mdc-snackbar-supporting-text-color)}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-size:var(--mdc-snackbar-supporting-text-size);font-family:var(--mdc-snackbar-supporting-text-font);font-weight:var(--mdc-snackbar-supporting-text-weight);line-height:var(--mdc-snackbar-supporting-text-line-height)}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){color:var(--mat-snack-bar-button-color);--mat-text-button-state-layer-color:currentColor;--mat-text-button-ripple-color:currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}.mat-mdc-snack-bar-container .mdc-snackbar__label::before{display:none}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-handset .mdc-snackbar__surface{width:100%}'],encapsulation:2,data:{animation:[Me.snackBarState]}})}}return C})();const n=new e.nKC("mat-snack-bar-default-options",{providedIn:"root",factory:function T(){return new J}});let c=(()=>{class C{get _openedSnackBarRef(){const k=this._parentSnackBar;return k?k._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(k){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=k:this._snackBarRefAtThisLevel=k}constructor(k,_,a,b,z,N){this._overlay=k,this._live=_,this._injector=a,this._breakpointObserver=b,this._parentSnackBar=z,this._defaultConfig=N,this._snackBarRefAtThisLevel=null,this.simpleSnackBarComponent=ne,this.snackBarContainerComponent=le,this.handsetCssClass="mat-mdc-snack-bar-handset"}openFromComponent(k,_){return this._attach(k,_)}openFromTemplate(k,_){return this._attach(k,_)}open(k,_="",a){const b={...this._defaultConfig,...a};return b.data={message:k,action:_},b.announcementMessage===k&&(b.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,b)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(k,_){const b=e.zZn.create({parent:_&&_.viewContainerRef&&_.viewContainerRef.injector||this._injector,providers:[{provide:J,useValue:_}]}),z=new w.A8(this.snackBarContainerComponent,_.viewContainerRef,b),N=k.attach(z);return N.instance.snackBarConfig=_,N.instance}_attach(k,_){const a={...new J,...this._defaultConfig,..._},b=this._createOverlay(a),z=this._attachSnackBarContainer(b,a),N=new W(z,b);if(k instanceof e.C4Q){const q=new w.VA(k,null,{$implicit:a.data,snackBarRef:N});N.instance=z.attachTemplatePortal(q)}else{const q=this._createInjector(a,N),pe=new w.A8(k,void 0,q),ze=z.attachComponentPortal(pe);N.instance=ze.instance}return this._breakpointObserver.observe(h.Rp.HandsetPortrait).pipe((0,y.Q)(b.detachments())).subscribe(q=>{b.overlayElement.classList.toggle(this.handsetCssClass,q.matches)}),a.announcementMessage&&z._onAnnounce.subscribe(()=>{this._live.announce(a.announcementMessage,a.politeness)}),this._animateSnackBar(N,a),this._openedSnackBarRef=N,this._openedSnackBarRef}_animateSnackBar(k,_){k.afterDismissed().subscribe(()=>{this._openedSnackBarRef==k&&(this._openedSnackBarRef=null),_.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{k.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):k.containerInstance.enter(),_.duration&&_.duration>0&&k.afterOpened().subscribe(()=>k._dismissAfter(_.duration))}_createOverlay(k){const _=new S.rR;_.direction=k.direction;let a=this._overlay.position().global();const b="rtl"===k.direction,z="left"===k.horizontalPosition||"start"===k.horizontalPosition&&!b||"end"===k.horizontalPosition&&b,N=!z&&"center"!==k.horizontalPosition;return z?a.left("0"):N?a.right("0"):a.centerHorizontally(),"top"===k.verticalPosition?a.top("0"):a.bottom("0"),_.positionStrategy=a,this._overlay.create(_)}_createInjector(k,_){return e.zZn.create({parent:k&&k.viewContainerRef&&k.viewContainerRef.injector||this._injector,providers:[{provide:W,useValue:_},{provide:Q,useValue:k.data}]})}static{this.\u0275fac=function(_){return new(_||C)(e.KVO(S.hJ),e.KVO(R.Ai),e.KVO(e.zZn),e.KVO(h.QP),e.KVO(C,12),e.KVO(n))}}static{this.\u0275prov=e.jDH({token:C,factory:C.\u0275fac,providedIn:"root"})}}return C})(),d=(()=>{class C{static{this.\u0275fac=function(_){return new(_||C)}}static{this.\u0275mod=e.$C({type:C})}static{this.\u0275inj=e.G2t({providers:[c],imports:[S.z_,w.jc,t.Hl,O.yE,ne,O.yE]})}}return C})()},2042:(Qe,te,g)=>{"use strict";g.d(te,{B4:()=>W,NQ:()=>Ce,aE:()=>Me});var e=g(4438),t=g(8617),x=g(7336),D=g(2771),l=g(1413),w=g(7786),f=g(9969),R=g(6600);const h=["mat-sort-header",""],S=["*"];function y(le,T){if(1&le){const n=e.RV6();e.j41(0,"div",2),e.bIt("@arrowPosition.start",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!0)})("@arrowPosition.done",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!1)}),e.nrm(1,"div",3),e.j41(2,"div",4),e.nrm(3,"div",5)(4,"div",6)(5,"div",7),e.k0s()()}if(2&le){const n=e.XpG();e.Y8G("@arrowOpacity",n._getArrowViewState())("@arrowPosition",n._getArrowViewState())("@allowChildren",n._getArrowDirectionState()),e.R7$(2),e.Y8G("@indicator",n._getArrowDirectionState()),e.R7$(),e.Y8G("@leftPointer",n._getArrowDirectionState()),e.R7$(),e.Y8G("@rightPointer",n._getArrowDirectionState())}}const Y=new e.nKC("MAT_SORT_DEFAULT_OPTIONS");let W=(()=>{class le{get direction(){return this._direction}set direction(n){this._direction=n}constructor(n){this._defaultOptions=n,this._initializedStream=new D.m(1),this.sortables=new Map,this._stateChanges=new l.B,this.start="asc",this._direction="",this.disabled=!1,this.sortChange=new e.bkB,this.initialized=this._initializedStream}register(n){this.sortables.set(n.id,n)}deregister(n){this.sortables.delete(n.id)}sort(n){this.active!=n.id?(this.active=n.id,this.direction=n.start?n.start:this.start):this.direction=this.getNextSortDirection(n),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(n){if(!n)return"";let m=function Q(le,T){let n=["asc","desc"];return"desc"==le&&n.reverse(),T||n.push(""),n}(n.start||this.start,n?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),d=m.indexOf(this.direction)+1;return d>=m.length&&(d=0),m[d]}ngOnInit(){this._initializedStream.next()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete(),this._initializedStream.complete()}static{this.\u0275fac=function(c){return new(c||le)(e.rXU(Y,8))}}static{this.\u0275dir=e.FsC({type:le,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{active:[0,"matSortActive","active"],start:[0,"matSortStart","start"],direction:[0,"matSortDirection","direction"],disableClear:[2,"matSortDisableClear","disableClear",e.L39],disabled:[2,"matSortDisabled","disabled",e.L39]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],standalone:!0,features:[e.GFd,e.OA$]})}}return le})();const J=R.ed.ENTERING+" "+R.r5.STANDARD_CURVE,ie={indicator:(0,f.hZ)("indicator",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"translateY(0px)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"translateY(10px)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),leftPointer:(0,f.hZ)("leftPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),rightPointer:(0,f.hZ)("rightPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),arrowOpacity:(0,f.hZ)("arrowOpacity",[(0,f.wk)("desc-to-active, asc-to-active, active",(0,f.iF)({opacity:1})),(0,f.wk)("desc-to-hint, asc-to-hint, hint",(0,f.iF)({opacity:.54})),(0,f.wk)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,f.iF)({opacity:0})),(0,f.kY)("* => asc, * => desc, * => active, * => hint, * => void",(0,f.i0)("0ms")),(0,f.kY)("* <=> *",(0,f.i0)(J))]),arrowPosition:(0,f.hZ)("arrowPosition",[(0,f.kY)("* => desc-to-hint, * => desc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(-25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-desc, * => active-to-desc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(25%)"})]))),(0,f.kY)("* => asc-to-hint, * => asc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-asc, * => active-to-asc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(-25%)"})]))),(0,f.wk)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,f.iF)({transform:"translateY(0)"})),(0,f.wk)("hint-to-desc, active-to-desc, desc",(0,f.iF)({transform:"translateY(-25%)"})),(0,f.wk)("hint-to-asc, active-to-asc, asc",(0,f.iF)({transform:"translateY(25%)"}))]),allowChildren:(0,f.hZ)("allowChildren",[(0,f.kY)("* <=> *",[(0,f.P)("@*",(0,f.MA)(),{optional:!0})])])};let ee=(()=>{class le{constructor(){this.changes=new l.B}static{this.\u0275fac=function(c){return new(c||le)}}static{this.\u0275prov=e.jDH({token:le,factory:le.\u0275fac,providedIn:"root"})}}return le})();const ne={provide:ee,deps:[[new e.Xx1,new e.kdw,ee]],useFactory:function fe(le){return le||new ee}};let Me=(()=>{class le{get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(n){this._updateSortActionDescription(n)}constructor(n,c,m,d,C,A,k,_){this._intl=n,this._changeDetectorRef=c,this._sort=m,this._columnDef=d,this._focusMonitor=C,this._elementRef=A,this._ariaDescriber=k,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this.disabled=!1,this._sortActionDescription="Sort",_?.arrowPosition&&(this.arrowPosition=_?.arrowPosition),this._handleStateChanges()}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(n=>{const c=!!n;c!==this._showIndicatorHint&&(this._setIndicatorHintVisible(c),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe(),this._sortButton&&this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription)}_setIndicatorHintVisible(n){this._isDisabled()&&n||(this._showIndicatorHint=n,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(n){this._viewState=n||{},this._disableViewStateAnimation&&(this._viewState={toState:n.toState})}_toggleOnInteraction(){this._sort.sort(this),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0)}_handleClick(){this._isDisabled()||this._sort.sort(this)}_handleKeydown(n){!this._isDisabled()&&(n.keyCode===x.t6||n.keyCode===x.Fm)&&(n.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_getArrowDirectionState(){return`${this._isSorted()?"active-":""}${this._arrowDirection}`}_getArrowViewState(){const n=this._viewState.fromState;return(n?`${n}-to-`:"")+this._viewState.toState}_updateArrowDirection(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start}_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(n){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,n)),this._sortActionDescription=n}_handleStateChanges(){this._rerenderSubscription=(0,w.h)(this._sort.sortChange,this._sort._stateChanges,this._intl.changes).subscribe(()=>{this._isSorted()&&(this._updateArrowDirection(),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0),this._setAnimationTransitionState({fromState:this._arrowDirection,toState:"active"}),this._showIndicatorHint=!1),!this._isSorted()&&this._viewState&&"active"===this._viewState.toState&&(this._disableViewStateAnimation=!1,this._setAnimationTransitionState({fromState:"active",toState:this._arrowDirection})),this._changeDetectorRef.markForCheck()})}static{this.\u0275fac=function(c){return new(c||le)(e.rXU(ee),e.rXU(e.gRc),e.rXU(W,8),e.rXU("MAT_SORT_HEADER_COLUMN_DEF",8),e.rXU(t.FN),e.rXU(e.aKT),e.rXU(t.vr,8),e.rXU(Y,8))}}static{this.\u0275cmp=e.VBU({type:le,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(c,m){1&c&&e.bIt("click",function(){return m._handleClick()})("keydown",function(C){return m._handleKeydown(C)})("mouseenter",function(){return m._setIndicatorHintVisible(!0)})("mouseleave",function(){return m._setIndicatorHintVisible(!1)}),2&c&&(e.BMQ("aria-sort",m._getAriaSortAttribute()),e.AVh("mat-sort-header-disabled",m._isDisabled()))},inputs:{id:[0,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",disabled:[2,"disabled","disabled",e.L39],sortActionDescription:"sortActionDescription",disableClear:[2,"disableClear","disableClear",e.L39]},exportAs:["matSortHeader"],standalone:!0,features:[e.GFd,e.aNF],attrs:h,ngContentSelectors:S,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],[1,"mat-sort-header-arrow"],[1,"mat-sort-header-stem"],[1,"mat-sort-header-indicator"],[1,"mat-sort-header-pointer-left"],[1,"mat-sort-header-pointer-right"],[1,"mat-sort-header-pointer-middle"]],template:function(c,m){1&c&&(e.NAR(),e.j41(0,"div",0)(1,"div",1),e.SdG(2),e.k0s(),e.DNE(3,y,6,6,"div",2),e.k0s()),2&c&&(e.AVh("mat-sort-header-sorted",m._isSorted())("mat-sort-header-position-before","before"===m.arrowPosition),e.BMQ("tabindex",m._isDisabled()?null:0)("role",m._isDisabled()?null:"button"),e.R7$(3),e.vxM(m._renderArrow()?3:-1))},styles:[".mat-sort-header-container{display:flex;cursor:pointer;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-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-sort-header-content{text-align:center;display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;color:var(--mat-sort-arrow-color);opacity: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}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}.cdk-high-contrast-active .mat-sort-header-stem{width:0;border-left:solid 2px}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}.cdk-high-contrast-active .mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}.cdk-high-contrast-active .mat-sort-header-pointer-left,.cdk-high-contrast-active .mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}"],encapsulation:2,data:{animation:[ie.indicator,ie.leftPointer,ie.rightPointer,ie.arrowOpacity,ie.arrowPosition,ie.allowChildren]},changeDetection:0})}}return le})(),Ce=(()=>{class le{static{this.\u0275fac=function(c){return new(c||le)}}static{this.\u0275mod=e.$C({type:le})}static{this.\u0275inj=e.G2t({providers:[ne],imports:[R.yE]})}}return le})()},6013:(Qe,te,g)=>{"use strict";g.d(te,{F7:()=>ue,FR:()=>Be,M6:()=>Ee,Ti:()=>ze,V5:()=>me,aP:()=>Ct,xJ:()=>Ie});var e=g(6939),t=g(7768),x=g(177),D=g(4438),l=g(6600),w=g(9213),f=g(8617),R=g(1413),h=g(8359),S=g(8203),y=g(5558),O=g(6354),I=g(9172),V=g(6977),j=g(3294),Y=g(9969),W=g(6860);function Q(ct,dt){if(1&ct&&D.eu8(0,2),2&ct){const Yt=D.XpG();D.Y8G("ngTemplateOutlet",Yt.iconOverrides[Yt.state])("ngTemplateOutletContext",Yt._getIconContext())}}function J(ct,dt){if(1&ct&&(D.j41(0,"span",7),D.EFF(1),D.k0s()),2&ct){const Yt=D.XpG(2);D.R7$(),D.JRh(Yt._getDefaultTextForState(Yt.state))}}function ie(ct,dt){if(1&ct&&(D.j41(0,"span",8),D.EFF(1),D.k0s()),2&ct){const Yt=D.XpG(3);D.R7$(),D.JRh(Yt._intl.completedLabel)}}function ee(ct,dt){if(1&ct&&(D.j41(0,"span",8),D.EFF(1),D.k0s()),2&ct){const Yt=D.XpG(3);D.R7$(),D.JRh(Yt._intl.editableLabel)}}function fe(ct,dt){if(1&ct&&(D.DNE(0,ie,2,1,"span",8)(1,ee,2,1,"span",8),D.j41(2,"mat-icon",7),D.EFF(3),D.k0s()),2&ct){const Yt=D.XpG(2);D.vxM("done"===Yt.state?0:"edit"===Yt.state?1:-1),D.R7$(3),D.JRh(Yt._getDefaultTextForState(Yt.state))}}function ne(ct,dt){if(1&ct&&D.DNE(0,J,2,1,"span",7)(1,fe,4,2,"mat-icon",7),2&ct){let Yt;const ve=D.XpG();D.vxM("number"===(Yt=ve.state)?0:1)}}function Me(ct,dt){1&ct&&(D.j41(0,"div",4),D.eu8(1,9),D.k0s()),2&ct&&(D.R7$(),D.Y8G("ngTemplateOutlet",dt.template))}function Ce(ct,dt){if(1&ct&&(D.j41(0,"div",4),D.EFF(1),D.k0s()),2&ct){const Yt=D.XpG();D.R7$(),D.JRh(Yt.label)}}function le(ct,dt){if(1&ct&&(D.j41(0,"div",5),D.EFF(1),D.k0s()),2&ct){const Yt=D.XpG();D.R7$(),D.JRh(Yt._intl.optionalLabel)}}function T(ct,dt){if(1&ct&&(D.j41(0,"div",6),D.EFF(1),D.k0s()),2&ct){const Yt=D.XpG();D.R7$(),D.JRh(Yt.errorMessage)}}const n=["*"];function c(ct,dt){}function m(ct,dt){if(1&ct&&(D.SdG(0),D.DNE(1,c,0,0,"ng-template",0)),2&ct){const Yt=D.XpG();D.R7$(),D.Y8G("cdkPortalOutlet",Yt._portal)}}const d=(ct,dt)=>({step:ct,i:dt}),C=ct=>({animationDuration:ct}),A=(ct,dt)=>({value:ct,params:dt});function k(ct,dt){1&ct&&D.SdG(0)}function _(ct,dt){1&ct&&D.nrm(0,"div",6)}function a(ct,dt){if(1&ct&&(D.eu8(0,5),D.DNE(1,_,1,0,"div",6)),2&ct){const Yt=dt.$implicit,ve=dt.$index,_e=dt.$count;D.XpG(2);const we=D.sdS(4);D.Y8G("ngTemplateOutlet",we)("ngTemplateOutletContext",D.l_i(3,d,Yt,ve)),D.R7$(),D.vxM(ve!==_e-1?1:-1)}}function b(ct,dt){if(1&ct){const Yt=D.RV6();D.j41(0,"div",7),D.bIt("@horizontalStepTransition.done",function(_e){D.eBV(Yt);const we=D.XpG(2);return D.Njj(we._animationDone.next(_e))}),D.eu8(1,8),D.k0s()}if(2&ct){const Yt=dt.$implicit,ve=dt.$index,_e=D.XpG(2);D.AVh("mat-horizontal-stepper-content-inactive",_e.selectedIndex!==ve),D.Y8G("@horizontalStepTransition",D.l_i(8,A,_e._getAnimationDirection(ve),D.eq3(6,C,_e._getAnimationDuration())))("id",_e._getStepContentId(ve)),D.BMQ("aria-labelledby",_e._getStepLabelId(ve)),D.R7$(),D.Y8G("ngTemplateOutlet",Yt.content)}}function z(ct,dt){if(1&ct&&(D.j41(0,"div",1)(1,"div",2),D.Z7z(2,a,2,6,null,null,D.fX1),D.k0s(),D.j41(4,"div",3),D.Z7z(5,b,2,11,"div",4,D.fX1),D.k0s()()),2&ct){const Yt=D.XpG();D.R7$(2),D.Dyx(Yt.steps),D.R7$(3),D.Dyx(Yt.steps)}}function N(ct,dt){if(1&ct){const Yt=D.RV6();D.j41(0,"div",9),D.eu8(1,5),D.j41(2,"div",10)(3,"div",11),D.bIt("@verticalStepTransition.done",function(_e){D.eBV(Yt);const we=D.XpG(2);return D.Njj(we._animationDone.next(_e))}),D.j41(4,"div",12),D.eu8(5,8),D.k0s()()()()}if(2&ct){const Yt=dt.$implicit,ve=dt.$index,_e=dt.$count,we=D.XpG(2),Ue=D.sdS(4);D.R7$(),D.Y8G("ngTemplateOutlet",Ue)("ngTemplateOutletContext",D.l_i(10,d,Yt,ve)),D.R7$(),D.AVh("mat-stepper-vertical-line",ve!==_e-1),D.R7$(),D.AVh("mat-vertical-stepper-content-inactive",we.selectedIndex!==ve),D.Y8G("@verticalStepTransition",D.l_i(15,A,we._getAnimationDirection(ve),D.eq3(13,C,we._getAnimationDuration())))("id",we._getStepContentId(ve)),D.BMQ("aria-labelledby",we._getStepLabelId(ve)),D.R7$(2),D.Y8G("ngTemplateOutlet",Yt.content)}}function q(ct,dt){if(1&ct&&D.Z7z(0,N,6,18,"div",9,D.fX1),2&ct){const Yt=D.XpG();D.Dyx(Yt.steps)}}function pe(ct,dt){if(1&ct){const Yt=D.RV6();D.j41(0,"mat-step-header",13),D.bIt("click",function(){const _e=D.eBV(Yt).step;return D.Njj(_e.select())})("keydown",function(_e){D.eBV(Yt);const we=D.XpG();return D.Njj(we._onKeydown(_e))}),D.k0s()}if(2&ct){const Yt=dt.step,ve=dt.i,_e=D.XpG();D.AVh("mat-horizontal-stepper-header","horizontal"===_e.orientation)("mat-vertical-stepper-header","vertical"===_e.orientation),D.Y8G("tabIndex",_e._getFocusIndex()===ve?0:-1)("id",_e._getStepLabelId(ve))("index",ve)("state",_e._getIndicatorType(ve,Yt.state))("label",Yt.stepLabel||Yt.label)("selected",_e.selectedIndex===ve)("active",_e._stepIsNavigable(ve,Yt))("optional",Yt.optional)("errorMessage",Yt.errorMessage)("iconOverrides",_e._iconOverrides)("disableRipple",_e.disableRipple||!_e._stepIsNavigable(ve,Yt))("color",Yt.color||_e.color),D.BMQ("aria-posinset",ve+1)("aria-setsize",_e.steps.length)("aria-controls",_e._getStepContentId(ve))("aria-selected",_e.selectedIndex==ve)("aria-label",Yt.ariaLabel||null)("aria-labelledby",!Yt.ariaLabel&&Yt.ariaLabelledby?Yt.ariaLabelledby:null)("aria-disabled",!_e._stepIsNavigable(ve,Yt)||null)}}let ze=(()=>{class ct extends t.nb{static{this.\u0275fac=(()=>{let Yt;return function(_e){return(Yt||(Yt=D.xGo(ct)))(_e||ct)}})()}static{this.\u0275dir=D.FsC({type:ct,selectors:[["","matStepLabel",""]],standalone:!0,features:[D.Vt3]})}}return ct})(),Xe=(()=>{class ct{constructor(){this.changes=new R.B,this.optionalLabel="Optional",this.completedLabel="Completed",this.editableLabel="Editable"}static{this.\u0275fac=function(ve){return new(ve||ct)}}static{this.\u0275prov=D.jDH({token:ct,factory:ct.\u0275fac,providedIn:"root"})}}return ct})();const oe={provide:Xe,deps:[[new D.Xx1,new D.kdw,Xe]],useFactory:function We(ct){return ct||new Xe}};let X=(()=>{class ct extends t.oX{constructor(Yt,ve,_e,we){super(_e),this._intl=Yt,this._focusMonitor=ve,this._intlSubscription=Yt.changes.subscribe(()=>we.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(Yt,ve){Yt?this._focusMonitor.focusVia(this._elementRef,Yt,ve):this._elementRef.nativeElement.focus(ve)}_stringLabel(){return this.label instanceof ze?null:this.label}_templateLabel(){return this.label instanceof ze?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getIconContext(){return{index:this.index,active:this.active,optional:this.optional}}_getDefaultTextForState(Yt){return"number"==Yt?`${this.index+1}`:"edit"==Yt?"create":"error"==Yt?"warning":Yt}static{this.\u0275fac=function(ve){return new(ve||ct)(D.rXU(Xe),D.rXU(f.FN),D.rXU(D.aKT),D.rXU(D.gRc))}}static{this.\u0275cmp=D.VBU({type:ct,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],hostVars:2,hostBindings:function(ve,_e){2&ve&&D.HbH("mat-"+(_e.color||"primary"))},inputs:{state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple",color:"color"},standalone:!0,features:[D.Vt3,D.aNF],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(ve,_e){if(1&ve&&(D.nrm(0,"div",0),D.j41(1,"div")(2,"div",1),D.DNE(3,Q,1,2,"ng-container",2)(4,ne,2,1),D.k0s()(),D.j41(5,"div",3),D.DNE(6,Me,2,1,"div",4)(7,Ce,2,1,"div",4)(8,le,2,1,"div",5)(9,T,2,1,"div",6),D.k0s()),2&ve){let we;D.Y8G("matRippleTrigger",_e._getHostElement())("matRippleDisabled",_e.disableRipple),D.R7$(),D.ZvI("mat-step-icon-state-",_e.state," mat-step-icon"),D.AVh("mat-step-icon-selected",_e.selected),D.R7$(2),D.vxM(_e.iconOverrides&&_e.iconOverrides[_e.state]?3:4),D.R7$(2),D.AVh("mat-step-label-active",_e.active)("mat-step-label-selected",_e.selected)("mat-step-label-error","error"==_e.state),D.R7$(),D.vxM((we=_e._templateLabel())?6:_e._stringLabel()?7:-1,we),D.R7$(2),D.vxM(_e.optional&&"error"!=_e.state?8:-1),D.R7$(),D.vxM("error"===_e.state?9:-1)}},dependencies:[l.r6,x.T3,w.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);border-radius:var(--mat-stepper-header-hover-state-layer-shape)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color);border-radius:var(--mat-stepper-header-focus-state-layer-shape)}@media(hover: none){.mat-step-header:hover{background:none}}.cdk-high-contrast-active .mat-step-header{outline:solid 1px}.cdk-high-contrast-active .mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.cdk-high-contrast-active .mat-step-header[aria-disabled=true]{outline-color:GrayText}.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-label,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-icon,.cdk-high-contrast-active .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)}.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);background-color:var(--mat-stepper-header-icon-background-color)}.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);color:var(--mat-stepper-header-error-state-icon-foreground-color)}.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);font-size:var(--mat-stepper-header-label-text-size);font-weight:var(--mat-stepper-header-label-text-weight);color:var(--mat-stepper-header-label-text-color)}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color)}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color);font-size:var(--mat-stepper-header-error-state-label-text-size)}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size);font-weight:var(--mat-stepper-header-selected-state-label-text-weight)}.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);color:var(--mat-stepper-header-selected-state-icon-foreground-color)}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color);color:var(--mat-stepper-header-done-state-icon-foreground-color)}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color);color:var(--mat-stepper-header-edit-state-icon-foreground-color)}'],encapsulation:2,changeDetection:0})}}return ct})();const he={horizontalStepTransition:(0,Y.hZ)("horizontalStepTransition",[(0,Y.wk)("previous",(0,Y.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"})),(0,Y.wk)("current",(0,Y.iF)({transform:"none",visibility:"inherit"})),(0,Y.wk)("next",(0,Y.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"})),(0,Y.kY)("* => *",(0,Y.Os)([(0,Y.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)"),(0,Y.P)("@*",(0,Y.MA)(),{optional:!0})]),{params:{animationDuration:"500ms"}})]),verticalStepTransition:(0,Y.hZ)("verticalStepTransition",[(0,Y.wk)("previous",(0,Y.iF)({height:"0px",visibility:"hidden"})),(0,Y.wk)("next",(0,Y.iF)({height:"0px",visibility:"hidden"})),(0,Y.wk)("current",(0,Y.iF)({height:"*",visibility:"inherit"})),(0,Y.kY)("* <=> current",(0,Y.Os)([(0,Y.i0)("{{animationDuration}} cubic-bezier(0.4, 0.0, 0.2, 1)"),(0,Y.P)("@*",(0,Y.MA)(),{optional:!0})]),{params:{animationDuration:"225ms"}})])};let Ie=(()=>{class ct{constructor(Yt){this.templateRef=Yt}static{this.\u0275fac=function(ve){return new(ve||ct)(D.rXU(D.C4Q))}}static{this.\u0275dir=D.FsC({type:ct,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:[0,"matStepperIcon","name"]},standalone:!0})}}return ct})(),st=(()=>{class ct{constructor(Yt){this._template=Yt}static{this.\u0275fac=function(ve){return new(ve||ct)(D.rXU(D.C4Q))}}static{this.\u0275dir=D.FsC({type:ct,selectors:[["ng-template","matStepContent",""]],standalone:!0})}}return ct})(),me=(()=>{class ct extends t.VI{constructor(Yt,ve,_e,we){super(Yt,we),this._errorStateMatcher=ve,this._viewContainerRef=_e,this._isSelected=h.yU.EMPTY,this.stepLabel=void 0}ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,y.n)(()=>this._stepper.selectionChange.pipe((0,O.T)(Yt=>Yt.selectedStep===this),(0,I.Z)(this._stepper.selected===this)))).subscribe(Yt=>{Yt&&this._lazyContent&&!this._portal&&(this._portal=new e.VA(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(Yt,ve){return this._errorStateMatcher.isErrorState(Yt,ve)||!!(Yt&&Yt.invalid&&this.interacted)}static{this.\u0275fac=function(ve){return new(ve||ct)(D.rXU((0,D.Rfq)(()=>Ee)),D.rXU(l.es,4),D.rXU(D.c1b),D.rXU(t.x8,8))}}static{this.\u0275cmp=D.VBU({type:ct,selectors:[["mat-step"]],contentQueries:function(ve,_e,we){if(1&ve&&(D.wni(we,ze,5),D.wni(we,st,5)),2&ve){let Ue;D.mGM(Ue=D.lsd())&&(_e.stepLabel=Ue.first),D.mGM(Ue=D.lsd())&&(_e._lazyContent=Ue.first)}},hostAttrs:["hidden",""],inputs:{color:"color"},exportAs:["matStep"],standalone:!0,features:[D.Jv_([{provide:l.es,useExisting:ct},{provide:t.VI,useExisting:ct}]),D.Vt3,D.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(ve,_e){1&ve&&(D.NAR(),D.DNE(0,m,2,1,"ng-template"))},dependencies:[e.I3],encapsulation:2,changeDetection:0})}}return ct})(),Ee=(()=>{class ct extends t.Up{get animationDuration(){return this._animationDuration}set animationDuration(Yt){this._animationDuration=/^\d+$/.test(Yt)?Yt+"ms":Yt}constructor(Yt,ve,_e){super(Yt,ve,_e),this._stepHeader=void 0,this._steps=void 0,this.steps=new D.rOR,this.animationDone=new D.bkB,this.labelPosition="end",this.headerPosition="top",this._iconOverrides={},this._animationDone=new R.B,this._animationDuration="",this._isServer=!(0,D.WQX)(W.OD).isBrowser;const we=_e.nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===we?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:Yt,templateRef:ve})=>this._iconOverrides[Yt]=ve),this.steps.changes.pipe((0,V.Q)(this._destroyed)).subscribe(()=>{this._stateChanged()}),this._animationDone.pipe((0,j.F)((Yt,ve)=>Yt.fromState===ve.fromState&&Yt.toState===ve.toState),(0,V.Q)(this._destroyed)).subscribe(Yt=>{"current"===Yt.toState&&this.animationDone.emit()})}_stepIsNavigable(Yt,ve){return ve.completed||this.selectedIndex===Yt||!this.linear}_getAnimationDuration(){return this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}static{this.\u0275fac=function(ve){return new(ve||ct)(D.rXU(S.dS,8),D.rXU(D.gRc),D.rXU(D.aKT))}}static{this.\u0275cmp=D.VBU({type:ct,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(ve,_e,we){if(1&ve&&(D.wni(we,me,5),D.wni(we,Ie,5)),2&ve){let Ue;D.mGM(Ue=D.lsd())&&(_e._steps=Ue),D.mGM(Ue=D.lsd())&&(_e._icons=Ue)}},viewQuery:function(ve,_e){if(1&ve&&D.GBs(X,5),2&ve){let we;D.mGM(we=D.lsd())&&(_e._stepHeader=we)}},hostAttrs:["role","tablist"],hostVars:11,hostBindings:function(ve,_e){2&ve&&(D.BMQ("aria-orientation",_e.orientation),D.AVh("mat-stepper-horizontal","horizontal"===_e.orientation)("mat-stepper-vertical","vertical"===_e.orientation)("mat-stepper-label-position-end","horizontal"===_e.orientation&&"end"==_e.labelPosition)("mat-stepper-label-position-bottom","horizontal"===_e.orientation&&"bottom"==_e.labelPosition)("mat-stepper-header-position-bottom","bottom"===_e.headerPosition))},inputs:{disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],standalone:!0,features:[D.Jv_([{provide:t.Up,useExisting:ct}]),D.Vt3,D.aNF],ngContentSelectors:n,decls:5,vars:2,consts:[["stepTemplate",""],[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","mat-horizontal-stepper-content-inactive"],[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(ve,_e){if(1&ve&&(D.NAR(),D.DNE(0,k,1,0)(1,z,7,0,"div",1)(2,q,2,0)(3,pe,1,23,"ng-template",null,0,D.C5r)),2&ve){let we;D.vxM(_e._isServer?0:-1),D.R7$(),D.vxM("horizontal"===(we=_e.orientation)?1:"vertical"===we?2:-1)}},dependencies:[x.T3,X],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font);background:var(--mat-stepper-container-color)}.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)}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height) - 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;height:72px;overflow:hidden;align-items:center;padding:0 24px;height:var(--mat-stepper-header-height)}.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::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height) - 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) - 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) - 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{outline:0}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-inactive{height:0;overflow:hidden}.mat-horizontal-stepper-content:not(.mat-horizontal-stepper-content-inactive){visibility:inherit !important}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}.cdk-high-contrast-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{margin-left:36px;border:0;position:relative}.cdk-high-contrast-active .mat-vertical-content-container{outline:solid 1px}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}.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);top:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0}.mat-vertical-stepper-content:not(.mat-vertical-stepper-content-inactive){visibility:inherit !important}.mat-vertical-content{padding:0 24px 24px 24px}.mat-step:last-child .mat-vertical-content-container{border:none}'],encapsulation:2,data:{animation:[he.horizontalStepTransition,he.verticalStepTransition]},changeDetection:0})}}return ct})(),ue=(()=>{class ct extends t.v5{static{this.\u0275fac=(()=>{let Yt;return function(_e){return(Yt||(Yt=D.xGo(ct)))(_e||ct)}})()}static{this.\u0275dir=D.FsC({type:ct,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(ve,_e){2&ve&&D.Mr5("type",_e.type)},standalone:!0,features:[D.Vt3]})}}return ct})(),Be=(()=>{class ct extends t.FK{static{this.\u0275fac=(()=>{let Yt;return function(_e){return(Yt||(Yt=D.xGo(ct)))(_e||ct)}})()}static{this.\u0275dir=D.FsC({type:ct,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(ve,_e){2&ve&&D.Mr5("type",_e.type)},standalone:!0,features:[D.Vt3]})}}return ct})(),Ct=(()=>{class ct{static{this.\u0275fac=function(ve){return new(ve||ct)}}static{this.\u0275mod=D.$C({type:ct})}static{this.\u0275inj=D.G2t({providers:[oe,l.es],imports:[l.yE,x.MD,e.jc,t.uY,w.m_,l.pZ,Ee,X,l.yE]})}}return ct})()},9159:(Qe,te,g)=>{"use strict";g.d(te,{$R:()=>qe,YV:()=>Re,cC:()=>Ke,Qo:()=>Ge,Zq:()=>pt,iF:()=>Ui,xW:()=>pi,KS:()=>Fe,tL:()=>Pe,YZ:()=>Kt,ji:()=>Lt,NB:()=>ti,iL:()=>$t,Zl:()=>Z,I6:()=>Xt,tP:()=>Vi});var e=g(4438),t=g(8203),x=g(5024),D=g(6860),l=g(5542),w=g(177),f=g(1413),R=g(2806),h=g(4412),S=g(4402),y=g(7673),O=g(6977),I=g(6697);const V=[[["caption"]],[["colgroup"],["col"]],"*"],j=["caption","colgroup, col","*"];function Y(St,tt){1&St&&e.SdG(0,2)}function W(St,tt){1&St&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",0),e.eu8(3,2)(4,3),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,4),e.k0s())}function Q(St,tt){1&St&&e.eu8(0,1)(1,2)(2,3)(3,4)}const ee=new e.nKC("CDK_TABLE");let ne=(()=>{class St{constructor(ot){this.template=ot}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkCellDef",""]],standalone:!0})}}return St})(),Me=(()=>{class St{constructor(ot){this.template=ot}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkHeaderCellDef",""]],standalone:!0})}}return St})(),Ce=(()=>{class St{constructor(ot){this.template=ot}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkFooterCellDef",""]],standalone:!0})}}return St})(),le=(()=>{class St{get name(){return this._name}set name(ot){this._setNameInput(ot)}get sticky(){return this._sticky}set sticky(ot){ot!==this._sticky&&(this._sticky=ot,this._hasStickyChanged=!0)}get stickyEnd(){return this._stickyEnd}set stickyEnd(ot){ot!==this._stickyEnd&&(this._stickyEnd=ot,this._hasStickyChanged=!0)}constructor(ot){this._table=ot,this._hasStickyChanged=!1,this._sticky=!1,this._stickyEnd=!1}hasStickyChanged(){const ot=this._hasStickyChanged;return this.resetStickyChanged(),ot}resetStickyChanged(){this._hasStickyChanged=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(ot){ot&&(this._name=ot,this.cssClassFriendlyName=ot.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(ee,8))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkColumnDef",""]],contentQueries:function(Mt,Bt,Ci){if(1&Mt&&(e.wni(Ci,ne,5),e.wni(Ci,Me,5),e.wni(Ci,Ce,5)),2&Mt){let Ti;e.mGM(Ti=e.lsd())&&(Bt.cell=Ti.first),e.mGM(Ti=e.lsd())&&(Bt.headerCell=Ti.first),e.mGM(Ti=e.lsd())&&(Bt.footerCell=Ti.first)}},inputs:{name:[0,"cdkColumnDef","name"],sticky:[2,"sticky","sticky",e.L39],stickyEnd:[2,"stickyEnd","stickyEnd",e.L39]},standalone:!0,features:[e.Jv_([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:St}]),e.GFd]})}}return St})();class T{constructor(tt,ot){ot.nativeElement.classList.add(...tt._columnCssClassName)}}let n=(()=>{class St extends T{constructor(ot,Mt){super(ot,Mt)}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(le),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],standalone:!0,features:[e.Vt3]})}}return St})(),c=(()=>{class St extends T{constructor(ot,Mt){super(ot,Mt);const Bt=ot._table?._getCellRole();Bt&&Mt.nativeElement.setAttribute("role",Bt)}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(le),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],standalone:!0,features:[e.Vt3]})}}return St})(),m=(()=>{class St extends T{constructor(ot,Mt){super(ot,Mt);const Bt=ot._table?._getCellRole();Bt&&Mt.nativeElement.setAttribute("role",Bt)}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(le),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],standalone:!0,features:[e.Vt3]})}}return St})();class d{constructor(){this.tasks=[],this.endTasks=[]}}const C=new e.nKC("_COALESCED_STYLE_SCHEDULER");let A=(()=>{class St{constructor(ot){this._ngZone=ot,this._currentSchedule=null,this._destroyed=new f.B}schedule(ot){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(ot)}scheduleEnd(ot){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(ot)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new d,this._getScheduleObservable().pipe((0,O.Q)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const ot=this._currentSchedule;this._currentSchedule=new d;for(const Mt of ot.tasks)Mt();for(const Mt of ot.endTasks)Mt()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,R.H)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,I.s)(1))}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.KVO(e.SKi))}}static{this.\u0275prov=e.jDH({token:St,factory:St.\u0275fac})}}return St})(),_=(()=>{class St{constructor(ot,Mt){this.template=ot,this._differs=Mt}ngOnChanges(ot){if(!this._columnsDiffer){const Mt=ot.columns&&ot.columns.currentValue||[];this._columnsDiffer=this._differs.find(Mt).create(),this._columnsDiffer.diff(Mt)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(ot){return this instanceof a?ot.headerCell.template:this instanceof b?ot.footerCell.template:ot.cell.template}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q),e.rXU(e._q3))}}static{this.\u0275dir=e.FsC({type:St,features:[e.OA$]})}}return St})(),a=(()=>{class St extends _{get sticky(){return this._sticky}set sticky(ot){ot!==this._sticky&&(this._sticky=ot,this._hasStickyChanged=!0)}constructor(ot,Mt,Bt){super(ot,Mt),this._table=Bt,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ot){super.ngOnChanges(ot)}hasStickyChanged(){const ot=this._hasStickyChanged;return this.resetStickyChanged(),ot}resetStickyChanged(){this._hasStickyChanged=!1}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ee,8))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[0,"cdkHeaderRowDef","columns"],sticky:[2,"cdkHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}}return St})(),b=(()=>{class St extends _{get sticky(){return this._sticky}set sticky(ot){ot!==this._sticky&&(this._sticky=ot,this._hasStickyChanged=!0)}constructor(ot,Mt,Bt){super(ot,Mt),this._table=Bt,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ot){super.ngOnChanges(ot)}hasStickyChanged(){const ot=this._hasStickyChanged;return this.resetStickyChanged(),ot}resetStickyChanged(){this._hasStickyChanged=!1}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ee,8))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[0,"cdkFooterRowDef","columns"],sticky:[2,"cdkFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}}return St})(),z=(()=>{class St extends _{constructor(ot,Mt,Bt){super(ot,Mt),this._table=Bt}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ee,8))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkRowDef",""]],inputs:{columns:[0,"cdkRowDefColumns","columns"],when:[0,"cdkRowDefWhen","when"]},standalone:!0,features:[e.Vt3]})}}return St})(),N=(()=>{class St{static{this.mostRecentCellOutlet=null}constructor(ot){this._viewContainer=ot,St.mostRecentCellOutlet=this}ngOnDestroy(){St.mostRecentCellOutlet===this&&(St.mostRecentCellOutlet=null)}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.c1b))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","cdkCellOutlet",""]],standalone:!0})}}return St})(),q=(()=>{class St{static{this.\u0275fac=function(Mt){return new(Mt||St)}}static{this.\u0275cmp=e.VBU({type:St,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Bt){1&Mt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}}return St})(),pe=(()=>{class St{static{this.\u0275fac=function(Mt){return new(Mt||St)}}static{this.\u0275cmp=e.VBU({type:St,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Bt){1&Mt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}}return St})(),ze=(()=>{class St{static{this.\u0275fac=function(Mt){return new(Mt||St)}}static{this.\u0275cmp=e.VBU({type:St,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Bt){1&Mt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}}return St})(),Xe=(()=>{class St{constructor(ot){this.templateRef=ot,this._contentClassName="cdk-no-data-row"}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.C4Q))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["ng-template","cdkNoDataRow",""]],standalone:!0})}}return St})();const We=["top","bottom","left","right"];class oe{constructor(tt,ot,Mt,Bt,Ci=!0,Ti=!0,Hi){this._isNativeHtmlTable=tt,this._stickCellCss=ot,this.direction=Mt,this._coalescedStyleScheduler=Bt,this._isBrowser=Ci,this._needsPositionStickyOnElement=Ti,this._positionListener=Hi,this._cachedCellWidths=[],this._borderCellCss={top:`${ot}-border-elem-top`,bottom:`${ot}-border-elem-bottom`,left:`${ot}-border-elem-left`,right:`${ot}-border-elem-right`}}clearStickyPositioning(tt,ot){const Mt=[];for(const Bt of tt)if(Bt.nodeType===Bt.ELEMENT_NODE){Mt.push(Bt);for(let Ci=0;Ci{for(const Bt of Mt)this._removeStickyStyle(Bt,ot)})}updateStickyColumns(tt,ot,Mt,Bt=!0){tt.length&&this._isBrowser&&(ot.some(Ci=>Ci)||Mt.some(Ci=>Ci))?this._coalescedStyleScheduler.schedule(()=>{const Ci=tt[0],Ti=Ci.children.length,Hi=this._getCellWidths(Ci,Bt),Zi=this._getStickyStartColumnPositions(Hi,ot),ln=this._getStickyEndColumnPositions(Hi,Mt),mn=ot.lastIndexOf(!0),Ut=Mt.indexOf(!0),lt="rtl"===this.direction,re=lt?"right":"left",He=lt?"left":"right";for(const ye of tt)for(let rt=0;rtot[rt]?ye:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===Ut?[]:Hi.slice(Ut).map((ye,rt)=>Mt[rt+Ut]?ye:null).reverse()}))}):this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]}))}stickRows(tt,ot,Mt){this._isBrowser&&this._coalescedStyleScheduler.schedule(()=>{const Bt="bottom"===Mt?tt.slice().reverse():tt,Ci="bottom"===Mt?ot.slice().reverse():ot,Ti=[],Hi=[],Zi=[];for(let mn=0,Ut=0;mn{const Mt=tt.querySelector("tfoot");Mt&&(ot.some(Bt=>!Bt)?this._removeStickyStyle(Mt,["bottom"]):this._addStickyStyle(Mt,"bottom",0,!1))})}_removeStickyStyle(tt,ot){for(const Bt of ot)tt.style[Bt]="",tt.classList.remove(this._borderCellCss[Bt]);We.some(Bt=>-1===ot.indexOf(Bt)&&tt.style[Bt])?tt.style.zIndex=this._getCalculatedZIndex(tt):(tt.style.zIndex="",this._needsPositionStickyOnElement&&(tt.style.position=""),tt.classList.remove(this._stickCellCss))}_addStickyStyle(tt,ot,Mt,Bt){tt.classList.add(this._stickCellCss),Bt&&tt.classList.add(this._borderCellCss[ot]),tt.style[ot]=`${Mt}px`,tt.style.zIndex=this._getCalculatedZIndex(tt),this._needsPositionStickyOnElement&&(tt.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(tt){const ot={top:100,bottom:10,left:1,right:1};let Mt=0;for(const Bt of We)tt.style[Bt]&&(Mt+=ot[Bt]);return Mt?`${Mt}`:""}_getCellWidths(tt,ot=!0){if(!ot&&this._cachedCellWidths.length)return this._cachedCellWidths;const Mt=[],Bt=tt.children;for(let Ci=0;Ci0;Ci--)ot[Ci]&&(Mt[Ci]=Bt,Bt+=tt[Ci]);return Mt}}const ue=new e.nKC("CDK_SPL");let Ct=(()=>{class St{constructor(ot,Mt){this.viewContainer=ot,this.elementRef=Mt;const Bt=(0,e.WQX)(ee);Bt._rowOutlet=this,Bt._outletAssigned()}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.c1b),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","rowOutlet",""]],standalone:!0})}}return St})(),ct=(()=>{class St{constructor(ot,Mt){this.viewContainer=ot,this.elementRef=Mt;const Bt=(0,e.WQX)(ee);Bt._headerRowOutlet=this,Bt._outletAssigned()}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.c1b),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","headerRowOutlet",""]],standalone:!0})}}return St})(),dt=(()=>{class St{constructor(ot,Mt){this.viewContainer=ot,this.elementRef=Mt;const Bt=(0,e.WQX)(ee);Bt._footerRowOutlet=this,Bt._outletAssigned()}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.c1b),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","footerRowOutlet",""]],standalone:!0})}}return St})(),Yt=(()=>{class St{constructor(ot,Mt){this.viewContainer=ot,this.elementRef=Mt;const Bt=(0,e.WQX)(ee);Bt._noDataRowOutlet=this,Bt._outletAssigned()}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e.c1b),e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:St,selectors:[["","noDataRowOutlet",""]],standalone:!0})}}return St})(),we=(()=>{class St{_getCellRole(){if(void 0===this._cellRoleInternal){const ot=this._elementRef.nativeElement.getAttribute("role"),Mt="grid"===ot||"treegrid"===ot?"gridcell":"cell";this._cellRoleInternal=this._isNativeHtmlTable&&"cell"===Mt?null:Mt}return this._cellRoleInternal}get trackBy(){return this._trackByFn}set trackBy(ot){this._trackByFn=ot}get dataSource(){return this._dataSource}set dataSource(ot){this._dataSource!==ot&&this._switchDataSource(ot)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(ot){this._multiTemplateDataRows=ot,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(ot){this._fixedLayout=ot,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}constructor(ot,Mt,Bt,Ci,Ti,Hi,Zi,ln,mn,Ut,lt,re){this._differs=ot,this._changeDetectorRef=Mt,this._elementRef=Bt,this._dir=Ti,this._platform=Zi,this._viewRepeater=ln,this._coalescedStyleScheduler=mn,this._viewportRuler=Ut,this._stickyPositioningListener=lt,this._ngZone=re,this._onDestroy=new f.B,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._stickyColumnStylesNeedReset=!0,this._forceRecalculateCellWidths=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this.needsPositionStickyOnElement=!0,this._isShowingNoDataRow=!1,this._hasAllOutlets=!1,this._hasInitialized=!1,this._cellRoleInternal=void 0,this._multiTemplateDataRows=!1,this._fixedLayout=!1,this.contentChanged=new e.bkB,this.viewChange=new h.t({start:0,end:Number.MAX_VALUE}),Ci||Bt.nativeElement.setAttribute("role","table"),this._document=Hi,this._isServer=!Zi.isBrowser,this._isNativeHtmlTable="TABLE"===Bt.nativeElement.nodeName}ngOnInit(){this._setupStickyStyler(),this._dataDiffer=this._differs.find([]).create((ot,Mt)=>this.trackBy?this.trackBy(Mt.dataIndex,Mt.data):Mt),this._viewportRuler.change().pipe((0,O.Q)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentInit(){this._hasInitialized=!0}ngAfterContentChecked(){this._canRender()&&this._render()}ngOnDestroy(){[this._rowOutlet?.viewContainer,this._headerRowOutlet?.viewContainer,this._footerRowOutlet?.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(ot=>{ot?.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,x.y4)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const ot=this._dataDiffer.diff(this._renderRows);if(!ot)return this._updateNoDataRow(),void this.contentChanged.next();const Mt=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(ot,Mt,(Bt,Ci,Ti)=>this._getEmbeddedViewArgs(Bt.item,Ti),Bt=>Bt.item.data,Bt=>{Bt.operation===x.Q3.INSERTED&&Bt.context&&this._renderCellTemplateForItem(Bt.record.item.rowDef,Bt.context)}),this._updateRowIndexContext(),ot.forEachIdentityChange(Bt=>{Mt.get(Bt.currentIndex).context.$implicit=Bt.item.data}),this._updateNoDataRow(),this._ngZone&&e.SKi.isInAngularZone()?this._ngZone.onStable.pipe((0,I.s)(1),(0,O.Q)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(ot){this._customColumnDefs.add(ot)}removeColumnDef(ot){this._customColumnDefs.delete(ot)}addRowDef(ot){this._customRowDefs.add(ot)}removeRowDef(ot){this._customRowDefs.delete(ot)}addHeaderRowDef(ot){this._customHeaderRowDefs.add(ot),this._headerRowDefChanged=!0}removeHeaderRowDef(ot){this._customHeaderRowDefs.delete(ot),this._headerRowDefChanged=!0}addFooterRowDef(ot){this._customFooterRowDefs.add(ot),this._footerRowDefChanged=!0}removeFooterRowDef(ot){this._customFooterRowDefs.delete(ot),this._footerRowDefChanged=!0}setNoDataRow(ot){this._customNoDataRow=ot}updateStickyHeaderRowStyles(){const ot=this._getRenderedRows(this._headerRowOutlet);if(this._isNativeHtmlTable){const Bt=je(this._headerRowOutlet,"thead");Bt&&(Bt.style.display=ot.length?"":"none")}const Mt=this._headerRowDefs.map(Bt=>Bt.sticky);this._stickyStyler.clearStickyPositioning(ot,["top"]),this._stickyStyler.stickRows(ot,Mt,"top"),this._headerRowDefs.forEach(Bt=>Bt.resetStickyChanged())}updateStickyFooterRowStyles(){const ot=this._getRenderedRows(this._footerRowOutlet);if(this._isNativeHtmlTable){const Bt=je(this._footerRowOutlet,"tfoot");Bt&&(Bt.style.display=ot.length?"":"none")}const Mt=this._footerRowDefs.map(Bt=>Bt.sticky);this._stickyStyler.clearStickyPositioning(ot,["bottom"]),this._stickyStyler.stickRows(ot,Mt,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,Mt),this._footerRowDefs.forEach(Bt=>Bt.resetStickyChanged())}updateStickyColumnStyles(){const ot=this._getRenderedRows(this._headerRowOutlet),Mt=this._getRenderedRows(this._rowOutlet),Bt=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...ot,...Mt,...Bt],["left","right"]),this._stickyColumnStylesNeedReset=!1),ot.forEach((Ci,Ti)=>{this._addStickyColumnStyles([Ci],this._headerRowDefs[Ti])}),this._rowDefs.forEach(Ci=>{const Ti=[];for(let Hi=0;Hi{this._addStickyColumnStyles([Ci],this._footerRowDefs[Ti])}),Array.from(this._columnDefsByName.values()).forEach(Ci=>Ci.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 Mt=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||Mt,this._forceRecalculateCellWidths=Mt,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 ot=[],Mt=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let Bt=0;Bt{const Hi=Bt&&Bt.has(Ti)?Bt.get(Ti):[];if(Hi.length){const Zi=Hi.shift();return Zi.dataIndex=Mt,Zi}return{data:ot,rowDef:Ti,dataIndex:Mt}})}_cacheColumnDefs(){this._columnDefsByName.clear(),Ue(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(Mt=>{this._columnDefsByName.has(Mt.name),this._columnDefsByName.set(Mt.name,Mt)})}_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 ot=this._rowDefs.filter(Mt=>!Mt.when);this._defaultRowDef=ot[0]}_renderUpdatedColumns(){const ot=(Ti,Hi)=>Ti||!!Hi.getColumnsDiff(),Mt=this._rowDefs.reduce(ot,!1);Mt&&this._forceRenderDataRows();const Bt=this._headerRowDefs.reduce(ot,!1);Bt&&this._forceRenderHeaderRows();const Ci=this._footerRowDefs.reduce(ot,!1);return Ci&&this._forceRenderFooterRows(),Mt||Bt||Ci}_switchDataSource(ot){this._data=[],(0,x.y4)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),ot||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet&&this._rowOutlet.viewContainer.clear()),this._dataSource=ot}_observeRenderChanges(){if(!this.dataSource)return;let ot;(0,x.y4)(this.dataSource)?ot=this.dataSource.connect(this):(0,S.A)(this.dataSource)?ot=this.dataSource:Array.isArray(this.dataSource)&&(ot=(0,y.of)(this.dataSource)),this._renderChangeSubscription=ot.pipe((0,O.Q)(this._onDestroy)).subscribe(Mt=>{this._data=Mt||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((ot,Mt)=>this._renderRow(this._headerRowOutlet,ot,Mt)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((ot,Mt)=>this._renderRow(this._footerRowOutlet,ot,Mt)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(ot,Mt){const Bt=Array.from(Mt.columns||[]).map(Hi=>this._columnDefsByName.get(Hi)),Ci=Bt.map(Hi=>Hi.sticky),Ti=Bt.map(Hi=>Hi.stickyEnd);this._stickyStyler.updateStickyColumns(ot,Ci,Ti,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(ot){const Mt=[];for(let Bt=0;Bt!Ci.when||Ci.when(Mt,ot));else{let Ci=this._rowDefs.find(Ti=>Ti.when&&Ti.when(Mt,ot))||this._defaultRowDef;Ci&&Bt.push(Ci)}return Bt}_getEmbeddedViewArgs(ot,Mt){return{templateRef:ot.rowDef.template,context:{$implicit:ot.data},index:Mt}}_renderRow(ot,Mt,Bt,Ci={}){const Ti=ot.viewContainer.createEmbeddedView(Mt.template,Ci,Bt);return this._renderCellTemplateForItem(Mt,Ci),Ti}_renderCellTemplateForItem(ot,Mt){for(let Bt of this._getCellTemplates(ot))N.mostRecentCellOutlet&&N.mostRecentCellOutlet._viewContainer.createEmbeddedView(Bt,Mt);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const ot=this._rowOutlet.viewContainer;for(let Mt=0,Bt=ot.length;Mt{const Bt=this._columnDefsByName.get(Mt);return ot.extractCellTemplate(Bt)}):[]}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const ot=(Mt,Bt)=>Mt||Bt.hasStickyChanged();this._headerRowDefs.reduce(ot,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(ot,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(ot,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new oe(this._isNativeHtmlTable,this.stickyCssClass,this._dir?this._dir.value:"ltr",this._coalescedStyleScheduler,this._platform.isBrowser,this.needsPositionStickyOnElement,this._stickyPositioningListener),(this._dir?this._dir.change:(0,y.of)()).pipe((0,O.Q)(this._onDestroy)).subscribe(Mt=>{this._stickyStyler.direction=Mt,this.updateStickyColumnStyles()})}_getOwnDefs(ot){return ot.filter(Mt=>!Mt._table||Mt._table===this)}_updateNoDataRow(){const ot=this._customNoDataRow||this._noDataRow;if(!ot)return;const Mt=0===this._rowOutlet.viewContainer.length;if(Mt===this._isShowingNoDataRow)return;const Bt=this._noDataRowOutlet.viewContainer;if(Mt){const Ci=Bt.createEmbeddedView(ot.templateRef),Ti=Ci.rootNodes[0];1===Ci.rootNodes.length&&Ti?.nodeType===this._document.ELEMENT_NODE&&(Ti.setAttribute("role","row"),Ti.classList.add(ot._contentClassName))}else Bt.clear();this._isShowingNoDataRow=Mt,this._changeDetectorRef.markForCheck()}static{this.\u0275fac=function(Mt){return new(Mt||St)(e.rXU(e._q3),e.rXU(e.gRc),e.rXU(e.aKT),e.kS0("role"),e.rXU(t.dS,8),e.rXU(w.qQ),e.rXU(D.OD),e.rXU(x.sL),e.rXU(C),e.rXU(l.Xj),e.rXU(ue,12),e.rXU(e.SKi,8))}}static{this.\u0275cmp=e.VBU({type:St,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(Mt,Bt,Ci){if(1&Mt&&(e.wni(Ci,Xe,5),e.wni(Ci,le,5),e.wni(Ci,z,5),e.wni(Ci,a,5),e.wni(Ci,b,5)),2&Mt){let Ti;e.mGM(Ti=e.lsd())&&(Bt._noDataRow=Ti.first),e.mGM(Ti=e.lsd())&&(Bt._contentColumnDefs=Ti),e.mGM(Ti=e.lsd())&&(Bt._contentRowDefs=Ti),e.mGM(Ti=e.lsd())&&(Bt._contentHeaderRowDefs=Ti),e.mGM(Ti=e.lsd())&&(Bt._contentFooterRowDefs=Ti)}},hostAttrs:[1,"cdk-table"],hostVars:2,hostBindings:function(Mt,Bt){2&Mt&&e.AVh("cdk-table-fixed-layout",Bt.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:[2,"multiTemplateDataRows","multiTemplateDataRows",e.L39],fixedLayout:[2,"fixedLayout","fixedLayout",e.L39]},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],standalone:!0,features:[e.Jv_([{provide:ee,useExisting:St},{provide:x.sL,useClass:x.xn},{provide:C,useClass:A},{provide:ue,useValue:null}]),e.GFd,e.aNF],ngContentSelectors:j,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(Mt,Bt){1&Mt&&(e.NAR(V),e.SdG(0),e.SdG(1,1),e.DNE(2,Y,1,0)(3,W,7,0)(4,Q,4,0)),2&Mt&&(e.R7$(2),e.vxM(Bt._isServer?2:-1),e.R7$(),e.vxM(Bt._isNativeHtmlTable?3:4))},dependencies:[ct,Ct,Yt,dt],styles:[".cdk-table-fixed-layout{table-layout:fixed}"],encapsulation:2})}}return St})();function Ue(St,tt){return St.concat(Array.from(tt))}function je(St,tt){const ot=tt.toUpperCase();let Mt=St.viewContainer.element.nativeElement;for(;Mt;){const Bt=1===Mt.nodeType?Mt.nodeName:null;if(Bt===ot)return Mt;if("TABLE"===Bt)break;Mt=Mt.parentNode}return null}let nt=(()=>{class St{static{this.\u0275fac=function(Mt){return new(Mt||St)}}static{this.\u0275mod=e.$C({type:St})}static{this.\u0275inj=e.G2t({imports:[l.E9]})}}return St})();var Nt=g(6600),yt=g(7786),jt=g(4572),Je=g(4085),et=g(6354);const Ae=[[["caption"]],[["colgroup"],["col"]],"*"],It=["caption","colgroup, col","*"];function Qt(St,tt){1&St&&e.SdG(0,2)}function Tt(St,tt){1&St&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",2),e.eu8(3,3)(4,4),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,5),e.k0s())}function xt(St,tt){1&St&&e.eu8(0,1)(1,3)(2,4)(3,5)}let Z=(()=>{class St extends we{constructor(){super(...arguments),this.stickyCssClass="mat-mdc-table-sticky",this.needsPositionStickyOnElement=!1}static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275cmp=e.VBU({type:St,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(Mt,Bt){2&Mt&&e.AVh("mdc-table-fixed-layout",Bt.fixedLayout)},exportAs:["matTable"],standalone:!0,features:[e.Jv_([{provide:we,useExisting:St},{provide:ee,useExisting:St},{provide:C,useClass:A},{provide:x.sL,useClass:x.xn},{provide:ue,useValue:null}]),e.Vt3,e.aNF],ngContentSelectors:It,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["role","rowgroup",1,"mdc-data-table__content"],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(Mt,Bt){1&Mt&&(e.NAR(Ae),e.SdG(0),e.SdG(1,1),e.DNE(2,Qt,1,0)(3,Tt,7,0)(4,xt,4,0)),2&Mt&&(e.R7$(2),e.vxM(Bt._isServer?2:-1),e.R7$(),e.vxM(Bt._isNativeHtmlTable?3:4))},dependencies:[ct,Ct,Yt,dt],styles:[".mat-mdc-table-sticky{position:sticky !important}.mdc-data-table{-webkit-overflow-scrolling:touch;display:inline-flex;flex-direction:column;box-sizing:border-box;position:relative}.mdc-data-table__table-container{-webkit-overflow-scrolling:touch;overflow-x:auto;width:100%}.mdc-data-table__table{min-width:100%;border:0;white-space:nowrap;border-spacing:0;table-layout:fixed}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell,.mdc-data-table__cell[dir=rtl]{text-align:right}.mdc-data-table__cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__cell--numeric,.mdc-data-table__cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell{box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mdc-data-table__header-cell,.mdc-data-table__header-cell[dir=rtl]{text-align:right}.mdc-data-table__header-cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__header-cell--numeric,.mdc-data-table__header-cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell-wrapper{align-items:center;display:inline-flex;vertical-align:middle}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px 0 16px}.mdc-data-table__header-cell--checkbox,.mdc-data-table__cell--checkbox{padding-left:4px;padding-right:0}[dir=rtl] .mdc-data-table__header-cell--checkbox,[dir=rtl] .mdc-data-table__cell--checkbox,.mdc-data-table__header-cell--checkbox[dir=rtl],.mdc-data-table__cell--checkbox[dir=rtl]{padding-left:0;padding-right:4px}mat-table{display:block}mat-header-row{min-height:56px}mat-row,mat-footer-row{min-height:48px}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{table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color)}.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, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-header-headline-font, Roboto, sans-serif);line-height:var(--mat-table-header-headline-line-height);font-size:var(--mat-table-header-headline-size, 14px);font-weight:var(--mat-table-header-headline-weight, 500)}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, 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, Roboto, sans-serif);line-height:var(--mat-table-row-item-label-text-line-height);font-size:var(--mat-table-row-item-label-text-size, 14px);font-weight:var(--mat-table-row-item-label-text-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, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-footer-supporting-text-font, Roboto, sans-serif);line-height:var(--mat-table-footer-supporting-text-line-height);font-size:var(--mat-table-footer-supporting-text-size, 14px);font-weight:var(--mat-table-footer-supporting-text-weight);letter-spacing:var(--mat-table-footer-supporting-text-tracking)}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, 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);font-weight:inherit;line-height:inherit}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, 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);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)}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}"],encapsulation:2})}}return St})(),Re=(()=>{class St extends ne{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["","matCellDef",""]],standalone:!0,features:[e.Jv_([{provide:ne,useExisting:St}]),e.Vt3]})}}return St})(),Pe=(()=>{class St extends Me{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["","matHeaderCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Me,useExisting:St}]),e.Vt3]})}}return St})(),pt=(()=>{class St extends Ce{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["","matFooterCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Ce,useExisting:St}]),e.Vt3]})}}return St})(),Ke=(()=>{class St extends le{get name(){return this._name}set name(ot){this._setNameInput(ot)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["","matColumnDef",""]],inputs:{name:[0,"matColumnDef","name"]},standalone:!0,features:[e.Jv_([{provide:le,useExisting:St},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:St}]),e.Vt3]})}}return St})(),Fe=(()=>{class St extends n{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],standalone:!0,features:[e.Vt3]})}}return St})(),Ge=(()=>{class St extends c{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}}return St})(),qe=(()=>{class St extends m{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}}return St})(),Lt=(()=>{class St extends a{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[0,"matHeaderRowDef","columns"],sticky:[2,"matHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:a,useExisting:St}]),e.GFd,e.Vt3]})}}return St})(),pi=(()=>{class St extends b{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["","matFooterRowDef",""]],inputs:{columns:[0,"matFooterRowDef","columns"],sticky:[2,"matFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:b,useExisting:St}]),e.GFd,e.Vt3]})}}return St})(),$t=(()=>{class St extends z{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275dir=e.FsC({type:St,selectors:[["","matRowDef",""]],inputs:{columns:[0,"matRowDefColumns","columns"],when:[0,"matRowDefWhen","when"]},standalone:!0,features:[e.Jv_([{provide:z,useExisting:St}]),e.Vt3]})}}return St})(),Kt=(()=>{class St extends q{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275cmp=e.VBU({type:St,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],standalone:!0,features:[e.Jv_([{provide:q,useExisting:St}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Bt){1&Mt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}}return St})(),Ui=(()=>{class St extends pe{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275cmp=e.VBU({type:St,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],standalone:!0,features:[e.Jv_([{provide:pe,useExisting:St}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Bt){1&Mt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}}return St})(),ti=(()=>{class St extends ze{static{this.\u0275fac=(()=>{let ot;return function(Bt){return(ot||(ot=e.xGo(St)))(Bt||St)}})()}static{this.\u0275cmp=e.VBU({type:St,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],standalone:!0,features:[e.Jv_([{provide:ze,useExisting:St}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Bt){1&Mt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}}return St})(),Vi=(()=>{class St{static{this.\u0275fac=function(Mt){return new(Mt||St)}}static{this.\u0275mod=e.$C({type:St})}static{this.\u0275inj=e.G2t({imports:[Nt.yE,nt,Nt.yE]})}}return St})();class Xt extends x.qS{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()}get paginator(){return this._paginator}set paginator(tt){this._paginator=tt,this._updateChangeSubscription()}constructor(tt=[]){super(),this._renderData=new h.t([]),this._filter=new h.t(""),this._internalPageChanges=new f.B,this._renderChangesSubscription=null,this.sortingDataAccessor=(ot,Mt)=>{const Bt=ot[Mt];if((0,Je.o1)(Bt)){const Ci=Number(Bt);return Ci<9007199254740991?Ci:Bt}return Bt},this.sortData=(ot,Mt)=>{const Bt=Mt.active,Ci=Mt.direction;return Bt&&""!=Ci?ot.sort((Ti,Hi)=>{let Zi=this.sortingDataAccessor(Ti,Bt),ln=this.sortingDataAccessor(Hi,Bt);const mn=typeof Zi,Ut=typeof ln;mn!==Ut&&("number"===mn&&(Zi+=""),"number"===Ut&&(ln+=""));let lt=0;return null!=Zi&&null!=ln?Zi>ln?lt=1:Zi{const Bt=Object.keys(ot).reduce((Ti,Hi)=>Ti+ot[Hi]+"\u25ec","").toLowerCase(),Ci=Mt.trim().toLowerCase();return-1!=Bt.indexOf(Ci)},this._data=new h.t(tt),this._updateChangeSubscription()}_updateChangeSubscription(){const tt=this._sort?(0,yt.h)(this._sort.sortChange,this._sort.initialized):(0,y.of)(null),ot=this._paginator?(0,yt.h)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,y.of)(null),Bt=(0,jt.z)([this._data,this._filter]).pipe((0,et.T)(([Hi])=>this._filterData(Hi))),Ci=(0,jt.z)([Bt,tt]).pipe((0,et.T)(([Hi])=>this._orderData(Hi))),Ti=(0,jt.z)([Ci,ot]).pipe((0,et.T)(([Hi])=>this._pageData(Hi)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=Ti.subscribe(Hi=>this._renderData.next(Hi))}_filterData(tt){return this.filteredData=null==this.filter||""===this.filter?tt:tt.filter(ot=>this.filterPredicate(ot,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 ot=this.paginator.pageIndex*this.paginator.pageSize;return tt.slice(ot,ot+this.paginator.pageSize)}_updatePaginator(tt){Promise.resolve().then(()=>{const ot=this.paginator;if(ot&&(ot.length=tt,ot.pageIndex>0)){const Mt=Math.ceil(ot.length/ot.pageSize)-1||0,Bt=Math.min(ot.pageIndex,Mt);Bt!==ot.pageIndex&&(ot.pageIndex=Bt,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},6850:(Qe,te,g)=>{"use strict";g.d(te,{Bu:()=>Qt,ES:()=>me,Ql:()=>Tt,RI:()=>Se,T8:()=>et,hQ:()=>xt,mq:()=>ue});var e=g(4438),t=g(6600),x=g(6939),D=g(1413),l=g(3726),w=g(7673),f=g(7786),R=g(983),h=g(1985),S=g(1807),y=g(8359),O=g(4412),I=g(5542),V=g(6860),j=g(8203),Y=g(8617),W=g(7336),Q=g(6977),J=g(6697),ie=g(9172),ee=g(5558),fe=g(5245),ne=g(5964),Me=g(3294),Ce=g(2318),le=g(177),T=g(9969);const n=["*"];function c(Te,ce){1&Te&&e.SdG(0)}const m=["tabListContainer"],d=["tabList"],C=["tabListInner"],A=["nextPaginator"],k=["previousPaginator"],_=Te=>({animationDuration:Te}),a=(Te,ce)=>({value:Te,params:ce});function b(Te,ce){}const z=["tabBodyWrapper"],N=["tabHeader"];function q(Te,ce){}function pe(Te,ce){if(1&Te&&e.DNE(0,q,0,0,"ng-template",12),2&Te){const Z=e.XpG().$implicit;e.Y8G("cdkPortalOutlet",Z.templateLabel)}}function ze(Te,ce){if(1&Te&&e.EFF(0),2&Te){const Z=e.XpG().$implicit;e.JRh(Z.textLabel)}}function Xe(Te,ce){if(1&Te){const Z=e.RV6();e.j41(0,"div",7,2),e.bIt("click",function(){const Pe=e.eBV(Z),pt=Pe.$implicit,Ke=Pe.$index,Fe=e.XpG(),Ge=e.sdS(1);return e.Njj(Fe._handleClick(pt,Ge,Ke))})("cdkFocusChange",function(Pe){const pt=e.eBV(Z).$index,Ke=e.XpG();return e.Njj(Ke._tabFocusChanged(Pe,pt))}),e.nrm(2,"span",8)(3,"div",9),e.j41(4,"span",10)(5,"span",11),e.DNE(6,pe,1,1,null,12)(7,ze,1,1),e.k0s()()()}if(2&Te){const Z=ce.$implicit,Re=ce.$index,Pe=e.sdS(1),pt=e.XpG();e.HbH(Z.labelClass),e.AVh("mdc-tab--active",pt.selectedIndex===Re),e.Y8G("id",pt._getTabLabelId(Re))("disabled",Z.disabled)("fitInkBarToContent",pt.fitInkBarToContent),e.BMQ("tabIndex",pt._getTabIndex(Re))("aria-posinset",Re+1)("aria-setsize",pt._tabs.length)("aria-controls",pt._getTabContentId(Re))("aria-selected",pt.selectedIndex===Re)("aria-label",Z.ariaLabel||null)("aria-labelledby",!Z.ariaLabel&&Z.ariaLabelledby?Z.ariaLabelledby:null),e.R7$(3),e.Y8G("matRippleTrigger",Pe)("matRippleDisabled",Z.disabled||pt.disableRipple),e.R7$(3),e.vxM(Z.templateLabel?6:7)}}function We(Te,ce){1&Te&&e.SdG(0)}function oe(Te,ce){if(1&Te){const Z=e.RV6();e.j41(0,"mat-tab-body",13),e.bIt("_onCentered",function(){e.eBV(Z);const Pe=e.XpG();return e.Njj(Pe._removeTabBodyWrapperHeight())})("_onCentering",function(Pe){e.eBV(Z);const pt=e.XpG();return e.Njj(pt._setTabBodyWrapperHeight(Pe))}),e.k0s()}if(2&Te){const Z=ce.$implicit,Re=ce.$index,Pe=e.XpG();e.HbH(Z.bodyClass),e.AVh("mat-mdc-tab-body-active",Pe.selectedIndex===Re),e.Y8G("id",Pe._getTabContentId(Re))("content",Z.content)("position",Z.position)("origin",Z.origin)("animationDuration",Pe.animationDuration)("preserveContent",Pe.preserveContent),e.BMQ("tabindex",null!=Pe.contentTabIndex&&Pe.selectedIndex===Re?Pe.contentTabIndex:null)("aria-labelledby",Pe._getTabLabelId(Re))("aria-hidden",Pe.selectedIndex!==Re)}}const X=["mat-tab-nav-bar",""],se=["mat-tab-link",""],ae=new e.nKC("MatTabContent");let he=(()=>{class Te{constructor(Z){this.template=Z}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.C4Q))}}static{this.\u0275dir=e.FsC({type:Te,selectors:[["","matTabContent",""]],standalone:!0,features:[e.Jv_([{provide:ae,useExisting:Te}])]})}}return Te})();const Ie=new e.nKC("MatTabLabel"),st=new e.nKC("MAT_TAB");let me=(()=>{class Te extends x.bV{constructor(Z,Re,Pe){super(Z,Re),this._closestTab=Pe}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.C4Q),e.rXU(e.c1b),e.rXU(st,8))}}static{this.\u0275dir=e.FsC({type:Te,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],standalone:!0,features:[e.Jv_([{provide:Ie,useExisting:Te}]),e.Vt3]})}}return Te})();const Ee=new e.nKC("MAT_TAB_GROUP");let ue=(()=>{class Te{get templateLabel(){return this._templateLabel}set templateLabel(Z){this._setTemplateLabelInput(Z)}get content(){return this._contentPortal}constructor(Z,Re){this._viewContainerRef=Z,this._closestTabGroup=Re,this.disabled=!1,this._explicitContent=void 0,this.textLabel="",this._contentPortal=null,this._stateChanges=new D.B,this.position=null,this.origin=null,this.isActive=!1}ngOnChanges(Z){(Z.hasOwnProperty("textLabel")||Z.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new x.VA(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(Z){Z&&Z._closestTab===this&&(this._templateLabel=Z)}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.c1b),e.rXU(Ee,8))}}static{this.\u0275cmp=e.VBU({type:Te,selectors:[["mat-tab"]],contentQueries:function(Re,Pe,pt){if(1&Re&&(e.wni(pt,me,5),e.wni(pt,he,7,e.C4Q)),2&Re){let Ke;e.mGM(Ke=e.lsd())&&(Pe.templateLabel=Ke.first),e.mGM(Ke=e.lsd())&&(Pe._explicitContent=Ke.first)}},viewQuery:function(Re,Pe){if(1&Re&&e.GBs(e.C4Q,7),2&Re){let pt;e.mGM(pt=e.lsd())&&(Pe._implicitContent=pt.first)}},hostAttrs:["hidden",""],inputs:{disabled:[2,"disabled","disabled",e.L39],textLabel:[0,"label","textLabel"],ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},exportAs:["matTab"],standalone:!0,features:[e.Jv_([{provide:st,useExisting:Te}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Pe){1&Re&&(e.NAR(),e.DNE(0,c,1,0,"ng-template"))},encapsulation:2})}}return Te})();const Be="mdc-tab-indicator--active",Ct="mdc-tab-indicator--no-transition";class ct{constructor(ce){this._items=ce}hide(){this._items.forEach(ce=>ce.deactivateInkBar())}alignToElement(ce){const Z=this._items.find(Pe=>Pe.elementRef.nativeElement===ce),Re=this._currentItem;if(Z!==Re&&(Re?.deactivateInkBar(),Z)){const Pe=Re?.elementRef.nativeElement.getBoundingClientRect?.();Z.activateInkBar(Pe),this._currentItem=Z}}}let dt=(()=>{class Te{constructor(){this._elementRef=(0,e.WQX)(e.aKT),this._fitToContent=!1}get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(Z){this._fitToContent!==Z&&(this._fitToContent=Z,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(Z){const Re=this._elementRef.nativeElement;if(!Z||!Re.getBoundingClientRect||!this._inkBarContentElement)return void Re.classList.add(Be);const Pe=Re.getBoundingClientRect(),pt=Z.width/Pe.width,Ke=Z.left-Pe.left;Re.classList.add(Ct),this._inkBarContentElement.style.setProperty("transform",`translateX(${Ke}px) scaleX(${pt})`),Re.getBoundingClientRect(),Re.classList.remove(Ct),Re.classList.add(Be),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this._elementRef.nativeElement.classList.remove(Be)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const Z=this._elementRef.nativeElement.ownerDocument||document,Re=this._inkBarElement=Z.createElement("span"),Pe=this._inkBarContentElement=Z.createElement("span");Re.className="mdc-tab-indicator",Pe.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",Re.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this._elementRef.nativeElement.querySelector(".mdc-tab__content"):this._elementRef.nativeElement).appendChild(this._inkBarElement)}static{this.\u0275fac=function(Re){return new(Re||Te)}}static{this.\u0275dir=e.FsC({type:Te,inputs:{fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39]},features:[e.GFd]})}}return Te})(),_e=(()=>{class Te extends dt{constructor(Z){super(),this.elementRef=Z,this.disabled=!1}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.aKT))}}static{this.\u0275dir=e.FsC({type:Te,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Re,Pe){2&Re&&(e.BMQ("aria-disabled",!!Pe.disabled),e.AVh("mat-mdc-tab-disabled",Pe.disabled))},inputs:{disabled:[2,"disabled","disabled",e.L39]},standalone:!0,features:[e.GFd,e.Vt3]})}}return Te})();const we=(0,V.BQ)({passive:!0});let vt=(()=>{class Te{get selectedIndex(){return this._selectedIndex}set selectedIndex(Z){const Re=isNaN(Z)?0:Z;this._selectedIndex!=Re&&(this._selectedIndexChanged=!0,this._selectedIndex=Re,this._keyManager&&this._keyManager.updateActiveItem(Re))}constructor(Z,Re,Pe,pt,Ke,Fe,Ge){this._elementRef=Z,this._changeDetectorRef=Re,this._viewportRuler=Pe,this._dir=pt,this._ngZone=Ke,this._platform=Fe,this._animationMode=Ge,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new D.B,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new D.B,this.disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new e.bkB,this.indexFocused=new e.bkB,Ke.runOutsideAngular(()=>{(0,l.R)(Z.nativeElement,"mouseleave").pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}ngAfterViewInit(){(0,l.R)(this._previousPaginator.nativeElement,"touchstart",we).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,l.R)(this._nextPaginator.nativeElement,"touchstart",we).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const Z=this._dir?this._dir.change:(0,w.of)("ltr"),Re=this._viewportRuler.change(150),Pe=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new Y.Bu(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,J.s)(1)).subscribe(Pe),(0,f.h)(Z,Re,this._items.changes,this._itemsResized()).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Pe()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(pt=>{this.indexFocused.emit(pt),this._setTabFocus(pt)})}_itemsResized(){return"function"!=typeof ResizeObserver?R.w:this._items.changes.pipe((0,ie.Z)(this._items),(0,ee.n)(Z=>new h.c(Re=>this._ngZone.runOutsideAngular(()=>{const Pe=new ResizeObserver(pt=>Re.next(pt));return Z.forEach(pt=>Pe.observe(pt.elementRef.nativeElement)),()=>{Pe.disconnect()}}))),(0,fe.i)(1),(0,ne.p)(Z=>Z.some(Re=>Re.contentRect.width>0&&Re.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._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(Z){if(!(0,W.rp)(Z))switch(Z.keyCode){case W.Fm:case W.t6:if(this.focusIndex!==this.selectedIndex){const Re=this._items.get(this.focusIndex);Re&&!Re.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(Z))}break;default:this._keyManager.onKeydown(Z)}}_onContentChanges(){const Z=this._elementRef.nativeElement.textContent;Z!==this._currentTextContent&&(this._currentTextContent=Z||"",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(Z){!this._isValidIndex(Z)||this.focusIndex===Z||!this._keyManager||this._keyManager.setActiveItem(Z)}_isValidIndex(Z){return!this._items||!!this._items.toArray()[Z]}_setTabFocus(Z){if(this._showPaginationControls&&this._scrollToLabel(Z),this._items&&this._items.length){this._items.toArray()[Z].focus();const Re=this._tabListContainer.nativeElement;Re.scrollLeft="ltr"==this._getLayoutDirection()?0:Re.scrollWidth-Re.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const Z=this.scrollDistance,Re="ltr"===this._getLayoutDirection()?-Z:Z;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Re)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(Z){this._scrollTo(Z)}_scrollHeader(Z){return this._scrollTo(this._scrollDistance+("before"==Z?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(Z){this._stopInterval(),this._scrollHeader(Z)}_scrollToLabel(Z){if(this.disablePagination)return;const Re=this._items?this._items.toArray()[Z]:null;if(!Re)return;const Pe=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:pt,offsetWidth:Ke}=Re.elementRef.nativeElement;let Fe,Ge;"ltr"==this._getLayoutDirection()?(Fe=pt,Ge=Fe+Ke):(Ge=this._tabListInner.nativeElement.offsetWidth-pt,Fe=Ge-Ke);const qe=this.scrollDistance,at=this.scrollDistance+Pe;Feat&&(this.scrollDistance+=Math.min(Ge-at,Fe-qe))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const Z=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;Z||(this.scrollDistance=0),Z!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=Z}}_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 Z=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Re=Z?Z.elementRef.nativeElement:null;Re?this._inkBar.alignToElement(Re):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(Z,Re){Re&&null!=Re.button&&0!==Re.button||(this._stopInterval(),(0,S.O)(650,100).pipe((0,Q.Q)((0,f.h)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Pe,distance:pt}=this._scrollHeader(Z);(0===pt||pt>=Pe)&&this._stopInterval()}))}_scrollTo(Z){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Re=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Re,Z)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Re,distance:this._scrollDistance}}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(I.Xj),e.rXU(j.dS,8),e.rXU(e.SKi),e.rXU(V.OD),e.rXU(e.bc$,8))}}static{this.\u0275dir=e.FsC({type:Te,inputs:{disablePagination:[2,"disablePagination","disablePagination",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg]},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[e.GFd]})}}return Te})(),$e=(()=>{class Te extends vt{constructor(Z,Re,Pe,pt,Ke,Fe,Ge){super(Z,Re,Pe,pt,Ke,Fe,Ge),this.disableRipple=!1}ngAfterContentInit(){this._inkBar=new ct(this._items),super.ngAfterContentInit()}_itemSelected(Z){Z.preventDefault()}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(I.Xj),e.rXU(j.dS,8),e.rXU(e.SKi),e.rXU(V.OD),e.rXU(e.bc$,8))}}static{this.\u0275cmp=e.VBU({type:Te,selectors:[["mat-tab-header"]],contentQueries:function(Re,Pe,pt){if(1&Re&&e.wni(pt,_e,4),2&Re){let Ke;e.mGM(Ke=e.lsd())&&(Pe._items=Ke)}},viewQuery:function(Re,Pe){if(1&Re&&(e.GBs(m,7),e.GBs(d,7),e.GBs(C,7),e.GBs(A,5),e.GBs(k,5)),2&Re){let pt;e.mGM(pt=e.lsd())&&(Pe._tabListContainer=pt.first),e.mGM(pt=e.lsd())&&(Pe._tabList=pt.first),e.mGM(pt=e.lsd())&&(Pe._tabListInner=pt.first),e.mGM(pt=e.lsd())&&(Pe._nextPaginator=pt.first),e.mGM(pt=e.lsd())&&(Pe._previousPaginator=pt.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(Re,Pe){2&Re&&e.AVh("mat-mdc-tab-header-pagination-controls-enabled",Pe._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==Pe._getLayoutDirection())},inputs:{disableRipple:[2,"disableRipple","disableRipple",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.aNF],ngContentSelectors:n,decls:13,vars:10,consts:[["previousPaginator",""],["tabListContainer",""],["tabList",""],["tabListInner",""],["nextPaginator",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"click","mousedown","touchend","matRippleDisabled","disabled"],[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"],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"mousedown","click","touchend","matRippleDisabled","disabled"]],template:function(Re,Pe){if(1&Re){const pt=e.RV6();e.NAR(),e.j41(0,"button",5,0),e.bIt("click",function(){return e.eBV(pt),e.Njj(Pe._handlePaginatorClick("before"))})("mousedown",function(Fe){return e.eBV(pt),e.Njj(Pe._handlePaginatorPress("before",Fe))})("touchend",function(){return e.eBV(pt),e.Njj(Pe._stopInterval())}),e.nrm(2,"div",6),e.k0s(),e.j41(3,"div",7,1),e.bIt("keydown",function(Fe){return e.eBV(pt),e.Njj(Pe._handleKeydown(Fe))}),e.j41(5,"div",8,2),e.bIt("cdkObserveContent",function(){return e.eBV(pt),e.Njj(Pe._onContentChanges())}),e.j41(7,"div",9,3),e.SdG(9),e.k0s()()(),e.j41(10,"button",10,4),e.bIt("mousedown",function(Fe){return e.eBV(pt),e.Njj(Pe._handlePaginatorPress("after",Fe))})("click",function(){return e.eBV(pt),e.Njj(Pe._handlePaginatorClick("after"))})("touchend",function(){return e.eBV(pt),e.Njj(Pe._stopInterval())}),e.nrm(12,"div",6),e.k0s()}2&Re&&(e.AVh("mat-mdc-tab-header-pagination-disabled",Pe._disableScrollBefore),e.Y8G("matRippleDisabled",Pe._disableScrollBefore||Pe.disableRipple)("disabled",Pe._disableScrollBefore||null),e.R7$(3),e.AVh("_mat-animation-noopable","NoopAnimations"===Pe._animationMode),e.R7$(7),e.AVh("mat-mdc-tab-header-pagination-disabled",Pe._disableScrollAfter),e.Y8G("matRippleDisabled",Pe._disableScrollAfter||Pe.disableRipple)("disabled",Pe._disableScrollAfter||null))},dependencies:[t.r6,Ce.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;background:none;border:none;outline:0;padding: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-header-inactive-ripple-color)}.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-header-pagination-icon-color)}.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-animation-noopable span.mdc-tab-indicator__content,._mat-animation-noopable span.mdc-tab__text-label{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-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-group-inverted-header .mat-mdc-tab-label-container{border-bottom:none;border-top-style:solid;border-top-width:var(--mat-tab-header-divider-height);border-top-color:var(--mat-tab-header-divider-color)}.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}.mat-mdc-tab::before{margin:5px}.cdk-high-contrast-active .mat-mdc-tab[aria-disabled=true]{color:GrayText}"],encapsulation:2})}}return Te})();const nt=new e.nKC("MAT_TABS_CONFIG"),qt={translateTab:(0,T.hZ)("translateTab",[(0,T.wk)("center, void, left-origin-center, right-origin-center",(0,T.iF)({transform:"none"})),(0,T.wk)("left",(0,T.iF)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,T.wk)("right",(0,T.iF)({transform:"translate3d(100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,T.kY)("* => left, * => right, left => center, right => center",(0,T.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,T.kY)("void => left-origin-center",[(0,T.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"}),(0,T.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,T.kY)("void => right-origin-center",[(0,T.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"}),(0,T.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let Nt=(()=>{class Te extends x.I3{constructor(Z,Re,Pe,pt){super(Z,Re,pt),this._host=Pe,this._centeringSub=y.yU.EMPTY,this._leavingSub=y.yU.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,ie.Z)(this._host._isCenterPosition(this._host._position))).subscribe(Z=>{Z&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU((0,e.Rfq)(()=>yt)),e.rXU(le.qQ))}}static{this.\u0275dir=e.FsC({type:Te,selectors:[["","matTabBodyHost",""]],standalone:!0,features:[e.Vt3]})}}return Te})(),yt=(()=>{class Te{set position(Z){this._positionIndex=Z,this._computePositionAnimationState()}constructor(Z,Re,Pe){this._elementRef=Z,this._dir=Re,this._dirChangeSubscription=y.yU.EMPTY,this._translateTabComplete=new D.B,this._onCentering=new e.bkB,this._beforeCentering=new e.bkB,this._afterLeavingCenter=new e.bkB,this._onCentered=new e.bkB(!0),this.animationDuration="500ms",this.preserveContent=!1,Re&&(this._dirChangeSubscription=Re.change.subscribe(pt=>{this._computePositionAnimationState(pt),Pe.markForCheck()})),this._translateTabComplete.pipe((0,Me.F)((pt,Ke)=>pt.fromState===Ke.fromState&&pt.toState===Ke.toState)).subscribe(pt=>{this._isCenterPosition(pt.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(pt.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(Z){const Re=this._isCenterPosition(Z.toState);this._beforeCentering.emit(Re),Re&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(Z){return"center"==Z||"left-origin-center"==Z||"right-origin-center"==Z}_computePositionAnimationState(Z=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==Z?"left":"right":this._positionIndex>0?"ltr"==Z?"right":"left":"center"}_computePositionFromOrigin(Z){const Re=this._getLayoutDirection();return"ltr"==Re&&Z<=0||"rtl"==Re&&Z>0?"left-origin-center":"right-origin-center"}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.aKT),e.rXU(j.dS,8),e.rXU(e.gRc))}}static{this.\u0275cmp=e.VBU({type:Te,selectors:[["mat-tab-body"]],viewQuery:function(Re,Pe){if(1&Re&&e.GBs(x.I3,5),2&Re){let pt;e.mGM(pt=e.lsd())&&(Pe._portalHost=pt.first)}},hostAttrs:[1,"mat-mdc-tab-body"],inputs:{_content:[0,"content","_content"],origin:"origin",animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"},standalone:!0,features:[e.aNF],decls:3,vars:6,consts:[["content",""],["cdkScrollable","",1,"mat-mdc-tab-body-content"],["matTabBodyHost",""]],template:function(Re,Pe){if(1&Re){const pt=e.RV6();e.j41(0,"div",1,0),e.bIt("@translateTab.start",function(Fe){return e.eBV(pt),e.Njj(Pe._onTranslateTabStarted(Fe))})("@translateTab.done",function(Fe){return e.eBV(pt),e.Njj(Pe._translateTabComplete.next(Fe))}),e.DNE(2,b,0,0,"ng-template",2),e.k0s()}2&Re&&e.Y8G("@translateTab",e.l_i(3,a,Pe._position,e.eq3(1,_,Pe.animationDuration)))},dependencies:[Nt,I.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}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-mdc-tab-body-content[style*="visibility: hidden"]{display:none}'],encapsulation:2,data:{animation:[qt.translateTab]}})}}return Te})(),jt=0,et=(()=>{class Te{get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(Z){this._fitInkBarToContent=Z,this._changeDetectorRef.markForCheck()}get selectedIndex(){return this._selectedIndex}set selectedIndex(Z){this._indexToSelect=isNaN(Z)?null:Z}get animationDuration(){return this._animationDuration}set animationDuration(Z){const Re=Z+"";this._animationDuration=/^\d+$/.test(Re)?Z+"ms":Re}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(Z){this._contentTabIndex=isNaN(Z)?null:Z}get backgroundColor(){return this._backgroundColor}set backgroundColor(Z){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Z&&Re.add("mat-tabs-with-background",`mat-background-${Z}`),this._backgroundColor=Z}constructor(Z,Re,Pe,pt){this._elementRef=Z,this._changeDetectorRef=Re,this._animationMode=pt,this._tabs=new e.rOR,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=y.yU.EMPTY,this._tabLabelSubscription=y.yU.EMPTY,this._fitInkBarToContent=!1,this.stretchTabs=!0,this.dynamicHeight=!1,this._selectedIndex=null,this.headerPosition="above",this.disablePagination=!1,this.disableRipple=!1,this.preserveContent=!1,this.selectedIndexChange=new e.bkB,this.focusChange=new e.bkB,this.animationDone=new e.bkB,this.selectedTabChange=new e.bkB(!0),this._isServer=!(0,e.WQX)(V.OD).isBrowser,this._groupId=jt++,this.animationDuration=Pe&&Pe.animationDuration?Pe.animationDuration:"500ms",this.disablePagination=!(!Pe||null==Pe.disablePagination)&&Pe.disablePagination,this.dynamicHeight=!(!Pe||null==Pe.dynamicHeight)&&Pe.dynamicHeight,null!=Pe?.contentTabIndex&&(this.contentTabIndex=Pe.contentTabIndex),this.preserveContent=!!Pe?.preserveContent,this.fitInkBarToContent=!(!Pe||null==Pe.fitInkBarToContent)&&Pe.fitInkBarToContent,this.stretchTabs=!Pe||null==Pe.stretchTabs||Pe.stretchTabs}ngAfterContentChecked(){const Z=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=Z){const Re=null==this._selectedIndex;if(!Re){this.selectedTabChange.emit(this._createChangeEvent(Z));const Pe=this._tabBodyWrapper.nativeElement;Pe.style.minHeight=Pe.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Pe,pt)=>Pe.isActive=pt===Z),Re||(this.selectedIndexChange.emit(Z),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Re,Pe)=>{Re.position=Pe-Z,null!=this._selectedIndex&&0==Re.position&&!Re.origin&&(Re.origin=Z-this._selectedIndex)}),this._selectedIndex!==Z&&(this._selectedIndex=Z,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const Z=this._clampTabIndex(this._indexToSelect);if(Z===this._selectedIndex){const Re=this._tabs.toArray();let Pe;for(let pt=0;pt{Re[Z].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(Z))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,ie.Z)(this._allTabs)).subscribe(Z=>{this._tabs.reset(Z.filter(Re=>Re._closestTabGroup===this||!Re._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(Z){const Re=this._tabHeader;Re&&(Re.focusIndex=Z)}_focusChanged(Z){this._lastFocusedTabIndex=Z,this.focusChange.emit(this._createChangeEvent(Z))}_createChangeEvent(Z){const Re=new Ae;return Re.index=Z,this._tabs&&this._tabs.length&&(Re.tab=this._tabs.toArray()[Z]),Re}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,f.h)(...this._tabs.map(Z=>Z._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(Z){return Math.min(this._tabs.length-1,Math.max(Z||0,0))}_getTabLabelId(Z){return`mat-tab-label-${this._groupId}-${Z}`}_getTabContentId(Z){return`mat-tab-content-${this._groupId}-${Z}`}_setTabBodyWrapperHeight(Z){if(!this.dynamicHeight||!this._tabBodyWrapperHeight)return;const Re=this._tabBodyWrapper.nativeElement;Re.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Re.style.height=Z+"px")}_removeTabBodyWrapperHeight(){const Z=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=Z.clientHeight,Z.style.height="",this.animationDone.emit()}_handleClick(Z,Re,Pe){Re.focusIndex=Pe,Z.disabled||(this.selectedIndex=Pe)}_getTabIndex(Z){return Z===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(Z,Re){Z&&"mouse"!==Z&&"touch"!==Z&&(this._tabHeader.focusIndex=Re)}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(nt,8),e.rXU(e.bc$,8))}}static{this.\u0275cmp=e.VBU({type:Te,selectors:[["mat-tab-group"]],contentQueries:function(Re,Pe,pt){if(1&Re&&e.wni(pt,ue,5),2&Re){let Ke;e.mGM(Ke=e.lsd())&&(Pe._allTabs=Ke)}},viewQuery:function(Re,Pe){if(1&Re&&(e.GBs(z,5),e.GBs(N,5)),2&Re){let pt;e.mGM(pt=e.lsd())&&(Pe._tabBodyWrapper=pt.first),e.mGM(pt=e.lsd())&&(Pe._tabHeader=pt.first)}},hostAttrs:[1,"mat-mdc-tab-group"],hostVars:10,hostBindings:function(Re,Pe){2&Re&&(e.HbH("mat-"+(Pe.color||"primary")),e.xc7("--mat-tab-animation-duration",Pe.animationDuration),e.AVh("mat-mdc-tab-group-dynamic-height",Pe.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===Pe.headerPosition)("mat-mdc-tab-group-stretch-tabs",Pe.stretchTabs))},inputs:{color:"color",fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39],stretchTabs:[2,"mat-stretch-tabs","stretchTabs",e.L39],dynamicHeight:[2,"dynamicHeight","dynamicHeight",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg],headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:[2,"contentTabIndex","contentTabIndex",e.Udg],disablePagination:[2,"disablePagination","disablePagination",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],preserveContent:[2,"preserveContent","preserveContent",e.L39],backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],standalone:!0,features:[e.Jv_([{provide:Ee,useExisting:Te}]),e.GFd,e.aNF],ngContentSelectors:n,decls:9,vars:6,consts:[["tabHeader",""],["tabBodyWrapper",""],["tabNode",""],[3,"indexFocused","selectFocusedIndex","selectedIndex","disableRipple","disablePagination"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"id","mdc-tab--active","class","disabled","fitInkBarToContent"],[1,"mat-mdc-tab-body-wrapper"],["role","tabpanel",3,"id","mat-mdc-tab-body-active","class","content","position","origin","animationDuration","preserveContent"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-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","id","content","position","origin","animationDuration","preserveContent"]],template:function(Re,Pe){if(1&Re){const pt=e.RV6();e.NAR(),e.j41(0,"mat-tab-header",3,0),e.bIt("indexFocused",function(Fe){return e.eBV(pt),e.Njj(Pe._focusChanged(Fe))})("selectFocusedIndex",function(Fe){return e.eBV(pt),e.Njj(Pe.selectedIndex=Fe)}),e.Z7z(2,Xe,8,17,"div",4,e.fX1),e.k0s(),e.DNE(4,We,1,0),e.j41(5,"div",5,1),e.Z7z(7,oe,1,13,"mat-tab-body",6,e.fX1),e.k0s()}2&Re&&(e.Y8G("selectedIndex",Pe.selectedIndex||0)("disableRipple",Pe.disableRipple)("disablePagination",Pe.disablePagination),e.R7$(2),e.Dyx(Pe._tabs),e.R7$(2),e.vxM(Pe._isServer?4:-1),e.R7$(),e.AVh("_mat-animation-noopable","NoopAnimations"===Pe._animationMode),e.R7$(2),e.Dyx(Pe._tabs))},dependencies:[$e,_e,Y.vR,t.r6,x.I3,yt],styles:['.mdc-tab{min-width:90px;padding-right:24px;padding-left:24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;margin:0;padding-top:0;padding-bottom:0;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;-webkit-appearance:none;z-index:1}.mdc-tab::-moz-focus-inner{padding:0;border:0}.mdc-tab[hidden]{display:none}.mdc-tab--min-width{flex:0 1 auto}.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__icon{transition:150ms color linear;z-index:2}.mdc-tab--stacked .mdc-tab__content{flex-direction:column;align-items:center;justify-content:center}.mdc-tab--stacked .mdc-tab__text-label{padding-top:6px;padding-bottom:4px}.mdc-tab--active .mdc-tab__text-label,.mdc-tab--active .mdc-tab__icon{transition-delay:100ms}.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label{padding-left:8px;padding-right:0}[dir=rtl] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label,.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label[dir=rtl]{padding-left:0;padding-right:8px}.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{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__content--icon{align-self:center;margin:0 auto}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}.mdc-tab-indicator .mdc-tab-indicator__content{transition:250ms transform cubic-bezier(0.4, 0, 0.2, 1)}.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition:150ms opacity linear}.mdc-tab-indicator--active.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition-delay:100ms}.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;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.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-header-disabled-ripple-color)}.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-header-inactive-ripple-color)}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);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-header-inactive-ripple-color)}.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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-mdc-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-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-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-header-with-background-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-header-with-background-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}'],encapsulation:2})}}return Te})();class Ae{}let It=0,Qt=(()=>{class Te extends vt{get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(Z){this._fitInkBarToContent.next(Z),this._changeDetectorRef.markForCheck()}get animationDuration(){return this._animationDuration}set animationDuration(Z){const Re=Z+"";this._animationDuration=/^\d+$/.test(Re)?Z+"ms":Re}get backgroundColor(){return this._backgroundColor}set backgroundColor(Z){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Z&&Re.add("mat-tabs-with-background",`mat-background-${Z}`),this._backgroundColor=Z}constructor(Z,Re,Pe,pt,Ke,Fe,Ge,qe){super(Z,pt,Ke,Re,Pe,Fe,Ge),this._fitInkBarToContent=new O.t(!1),this.stretchTabs=!0,this.disableRipple=!1,this.color="primary",this.disablePagination=!(!qe||null==qe.disablePagination)&&qe.disablePagination,this.fitInkBarToContent=!(!qe||null==qe.fitInkBarToContent)&&qe.fitInkBarToContent,this.stretchTabs=!qe||null==qe.stretchTabs||qe.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new ct(this._items),this._items.changes.pipe((0,ie.Z)(null),(0,Q.Q)(this._destroyed)).subscribe(()=>{this.updateActiveLink()}),super.ngAfterContentInit()}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const Z=this._items.toArray();for(let Re=0;Re.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}.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-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-mdc-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-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-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-header-with-background-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-header-with-background-foreground-color)}"],encapsulation:2})}}return Te})(),Tt=(()=>{class Te extends dt{get active(){return this._isActive}set active(Z){Z!==this._isActive&&(this._isActive=Z,this._tabNavBar.updateActiveLink())}get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}constructor(Z,Re,Pe,pt,Ke,Fe){super(),this._tabNavBar=Z,this.elementRef=Re,this._focusMonitor=Ke,this._destroyed=new D.B,this._isActive=!1,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.id="mat-tab-link-"+It++,this.rippleConfig=Pe||{},this.tabIndex=parseInt(pt)||0,"NoopAnimations"===Fe&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),Z._fitInkBarToContent.pipe((0,Q.Q)(this._destroyed)).subscribe(Ge=>{this.fitInkBarToContent=Ge})}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(Z){(Z.keyCode===W.t6||Z.keyCode===W.Fm)&&(this.disabled?Z.preventDefault():this._tabNavBar.tabPanel&&(Z.keyCode===W.t6&&Z.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")}_getTabIndex(){return this._tabNavBar.tabPanel?this._isActive&&!this.disabled?0:-1:this.disabled?-1:this.tabIndex}static{this.\u0275fac=function(Re){return new(Re||Te)(e.rXU(Qt),e.rXU(e.aKT),e.rXU(t.$E,8),e.kS0("tabindex"),e.rXU(Y.FN),e.rXU(e.bc$,8))}}static{this.\u0275cmp=e.VBU({type:Te,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-mdc-focus-indicator"],hostVars:11,hostBindings:function(Re,Pe){1&Re&&e.bIt("focus",function(){return Pe._handleFocus()})("keydown",function(Ke){return Pe._handleKeydown(Ke)}),2&Re&&(e.BMQ("aria-controls",Pe._getAriaControls())("aria-current",Pe._getAriaCurrent())("aria-disabled",Pe.disabled)("aria-selected",Pe._getAriaSelected())("id",Pe.id)("tabIndex",Pe._getTabIndex())("role",Pe._getRole()),e.AVh("mat-mdc-tab-disabled",Pe.disabled)("mdc-tab--active",Pe.active))},inputs:{active:[2,"active","active",e.L39],disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",Z=>null==Z?0:(0,e.Udg)(Z)],id:"id"},exportAs:["matTabLink"],standalone:!0,features:[e.GFd,e.Vt3,e.aNF],attrs:se,ngContentSelectors:n,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(Re,Pe){1&Re&&(e.NAR(),e.nrm(0,"span",0)(1,"div",1),e.j41(2,"span",2)(3,"span",3),e.SdG(4),e.k0s()()),2&Re&&(e.R7$(),e.Y8G("matRippleTrigger",Pe.elementRef.nativeElement)("matRippleDisabled",Pe.rippleDisabled))},dependencies:[t.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;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab-link:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab-link:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.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-header-active-ripple-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.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-header-disabled-ripple-color)}.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-header-inactive-ripple-color)}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);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-header-inactive-ripple-color)}.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}}'],encapsulation:2,changeDetection:0})}}return Te})(),xt=(()=>{class Te{constructor(){this.id="mat-tab-nav-panel-"+It++}static{this.\u0275fac=function(Re){return new(Re||Te)}}static{this.\u0275cmp=e.VBU({type:Te,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function(Re,Pe){2&Re&&e.BMQ("aria-labelledby",Pe._activeTabId)("id",Pe.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],standalone:!0,features:[e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Pe){1&Re&&(e.NAR(),e.SdG(0))},encapsulation:2,changeDetection:0})}}return Te})(),Se=(()=>{class Te{static{this.\u0275fac=function(Re){return new(Re||Te)}}static{this.\u0275mod=e.$C({type:Te})}static{this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}}return Te})()},5911:(Qe,te,g)=>{"use strict";g.d(te,{KQ:()=>R,s5:()=>S});var e=g(4438),t=g(6600),x=g(6860),D=g(177);const l=["*",[["mat-toolbar-row"]]],w=["*","mat-toolbar-row"];let f=(()=>{class y{static{this.\u0275fac=function(V){return new(V||y)}}static{this.\u0275dir=e.FsC({type:y,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"],standalone:!0})}}return y})(),R=(()=>{class y{constructor(I,V,j){this._elementRef=I,this._platform=V,this._document=j}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static{this.\u0275fac=function(V){return new(V||y)(e.rXU(e.aKT),e.rXU(x.OD),e.rXU(D.qQ))}}static{this.\u0275cmp=e.VBU({type:y,selectors:[["mat-toolbar"]],contentQueries:function(V,j,Y){if(1&V&&e.wni(Y,f,5),2&V){let W;e.mGM(W=e.lsd())&&(j._toolbarRows=W)}},hostAttrs:[1,"mat-toolbar"],hostVars:6,hostBindings:function(V,j){2&V&&(e.HbH(j.color?"mat-"+j.color:""),e.AVh("mat-toolbar-multiple-rows",j._toolbarRows.length>0)("mat-toolbar-single-row",0===j._toolbarRows.length))},inputs:{color:"color"},exportAs:["matToolbar"],standalone:!0,features:[e.aNF],ngContentSelectors:w,decls:2,vars:0,template:function(V,j){1&V&&(e.NAR(l),e.SdG(0),e.SdG(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color);color:var(--mat-toolbar-container-text-color)}.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);font-size:var(--mat-toolbar-title-text-size);line-height:var(--mat-toolbar-title-text-line-height);font-weight:var(--mat-toolbar-title-text-weight);letter-spacing:var(--mat-toolbar-title-text-tracking);margin:0}.cdk-high-contrast-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{--mdc-text-button-label-text-color:var(--mat-toolbar-container-text-color);--mdc-outlined-button-label-text-color:var(--mat-toolbar-container-text-color)}.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)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height)}}"],encapsulation:2,changeDetection:0})}}return y})(),S=(()=>{class y{static{this.\u0275fac=function(V){return new(V||y)}}static{this.\u0275mod=e.$C({type:y})}static{this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}}return y})()},4823:(Qe,te,g)=>{"use strict";g.d(te,{oV:()=>d,uc:()=>k});var e=g(6977),t=g(6697),x=g(4085),D=g(7336),l=g(4438),w=g(177),f=g(6860),R=g(8617),h=g(8203),S=g(6969),y=g(5542),O=g(6939),I=g(1413),j=(g(9969),g(6600));const Y=["tooltip"],J=new l.nKC("mat-tooltip-scroll-strategy",{providedIn:"root",factory:()=>{const _=(0,l.WQX)(S.hJ);return()=>_.scrollStrategies.reposition({scrollThrottle:20})}}),ee={provide:J,deps:[S.hJ],useFactory:function ie(_){return()=>_.scrollStrategies.reposition({scrollThrottle:20})}},ne=new l.nKC("mat-tooltip-default-options",{providedIn:"root",factory:function fe(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),Ce="tooltip-panel",le=(0,f.BQ)({passive:!0});let d=(()=>{class _{get position(){return this._position}set position(b){b!==this._position&&(this._position=b,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(b){this._positionAtOrigin=(0,x.he)(b),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(b){this._disabled=(0,x.he)(b),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(b){this._showDelay=(0,x.OE)(b)}get hideDelay(){return this._hideDelay}set hideDelay(b){this._hideDelay=(0,x.OE)(b),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(b){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=b?String(b).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage(),this._ngZone.runOutsideAngular(()=>{Promise.resolve().then(()=>{this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")})}))}get tooltipClass(){return this._tooltipClass}set tooltipClass(b){this._tooltipClass=b,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}constructor(b,z,N,q,pe,ze,Xe,We,oe,X,se,ae){this._overlay=b,this._elementRef=z,this._scrollDispatcher=N,this._viewContainerRef=q,this._ngZone=pe,this._platform=ze,this._ariaDescriber=Xe,this._focusMonitor=We,this._dir=X,this._defaultOptions=se,this._position="below",this._positionAtOrigin=!1,this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._tooltipComponent=C,this._viewportMargin=8,this._cssClassPrefix="mat-mdc",this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new I.B,this._scrollStrategy=oe,this._document=ae,se&&(this._showDelay=se.showDelay,this._hideDelay=se.hideDelay,se.position&&(this.position=se.position),se.positionAtOrigin&&(this.positionAtOrigin=se.positionAtOrigin),se.touchGestures&&(this.touchGestures=se.touchGestures)),X.change.pipe((0,e.Q)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)}),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,e.Q)(this._destroyed)).subscribe(b=>{b?"keyboard"===b&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const b=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([z,N])=>{b.removeEventListener(z,N,le)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(b,this.message,"tooltip"),this._focusMonitor.stopMonitoring(b)}show(b=this.showDelay,z){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const N=this._createOverlay(z);this._detach(),this._portal=this._portal||new O.A8(this._tooltipComponent,this._viewContainerRef);const q=this._tooltipInstance=N.attach(this._portal).instance;q._triggerElement=this._elementRef.nativeElement,q._mouseLeaveHideDelay=this._hideDelay,q.afterHidden().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),q.show(b)}hide(b=this.hideDelay){const z=this._tooltipInstance;z&&(z.isVisible()?z.hide(b):(z._cancelPendingAnimations(),this._detach()))}toggle(b){this._isTooltipVisible()?this.hide():this.show(void 0,b)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(b){if(this._overlayRef){const q=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!b)&&q._origin instanceof l.aKT)return this._overlayRef;this._detach()}const z=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),N=this._overlay.position().flexibleConnectedTo(this.positionAtOrigin&&b||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(z);return N.positionChanges.pipe((0,e.Q)(this._destroyed)).subscribe(q=>{this._updateCurrentPositionClass(q.connectionPair),this._tooltipInstance&&q.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:N,panelClass:`${this._cssClassPrefix}-${Ce}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,e.Q)(this._destroyed)).subscribe(q=>{this._isTooltipVisible()&&q.keyCode===D._f&&!(0,D.rp)(q)&&(q.preventDefault(),q.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(b){const z=b.getConfig().positionStrategy,N=this._getOrigin(),q=this._getOverlayPosition();z.withPositions([this._addOffset({...N.main,...q.main}),this._addOffset({...N.fallback,...q.fallback})])}_addOffset(b){const N=!this._dir||"ltr"==this._dir.value;return"top"===b.originY?b.offsetY=-8:"bottom"===b.originY?b.offsetY=8:"start"===b.originX?b.offsetX=N?-8:8:"end"===b.originX&&(b.offsetX=N?8:-8),b}_getOrigin(){const b=!this._dir||"ltr"==this._dir.value,z=this.position;let N;"above"==z||"below"==z?N={originX:"center",originY:"above"==z?"top":"bottom"}:"before"==z||"left"==z&&b||"right"==z&&!b?N={originX:"start",originY:"center"}:("after"==z||"right"==z&&b||"left"==z&&!b)&&(N={originX:"end",originY:"center"});const{x:q,y:pe}=this._invertPosition(N.originX,N.originY);return{main:N,fallback:{originX:q,originY:pe}}}_getOverlayPosition(){const b=!this._dir||"ltr"==this._dir.value,z=this.position;let N;"above"==z?N={overlayX:"center",overlayY:"bottom"}:"below"==z?N={overlayX:"center",overlayY:"top"}:"before"==z||"left"==z&&b||"right"==z&&!b?N={overlayX:"end",overlayY:"center"}:("after"==z||"right"==z&&b||"left"==z&&!b)&&(N={overlayX:"start",overlayY:"center"});const{x:q,y:pe}=this._invertPosition(N.overlayX,N.overlayY);return{main:N,fallback:{overlayX:q,overlayY:pe}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,t.s)(1),(0,e.Q)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(b){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=b,this._tooltipInstance._markForCheck())}_invertPosition(b,z){return"above"===this.position||"below"===this.position?"top"===z?z="bottom":"bottom"===z&&(z="top"):"end"===b?b="start":"start"===b&&(b="end"),{x:b,y:z}}_updateCurrentPositionClass(b){const{overlayY:z,originX:N,originY:q}=b;let pe;if(pe="center"===z?this._dir&&"rtl"===this._dir.value?"end"===N?"left":"right":"start"===N?"left":"right":"bottom"===z&&"top"===q?"above":"below",pe!==this._currentPosition){const ze=this._overlayRef;if(ze){const Xe=`${this._cssClassPrefix}-${Ce}-`;ze.removePanelClass(Xe+this._currentPosition),ze.addPanelClass(Xe+pe)}this._currentPosition=pe}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",b=>{let z;this._setupPointerExitEventsIfNeeded(),void 0!==b.x&&void 0!==b.y&&(z=b),this.show(void 0,z)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",b=>{const z=b.targetTouches?.[0],N=z?{x:z.clientX,y:z.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(void 0,N),this._defaultOptions.touchLongPressShowDelay??500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const b=[];if(this._platformSupportsMouseEvents())b.push(["mouseleave",z=>{const N=z.relatedTarget;(!N||!this._overlayRef?.overlayElement.contains(N))&&this.hide()}],["wheel",z=>this._wheelListener(z)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const z=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};b.push(["touchend",z],["touchcancel",z])}this._addListeners(b),this._passiveListeners.push(...b)}_addListeners(b){b.forEach(([z,N])=>{this._elementRef.nativeElement.addEventListener(z,N,le)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(b){if(this._isTooltipVisible()){const z=this._document.elementFromPoint(b.clientX,b.clientY),N=this._elementRef.nativeElement;z!==N&&!N.contains(z)&&this.hide()}}_disableNativeGesturesIfNecessary(){const b=this.touchGestures;if("off"!==b){const z=this._elementRef.nativeElement,N=z.style;("on"===b||"INPUT"!==z.nodeName&&"TEXTAREA"!==z.nodeName)&&(N.userSelect=N.msUserSelect=N.webkitUserSelect=N.MozUserSelect="none"),("on"===b||!z.draggable)&&(N.webkitUserDrag="none"),N.touchAction="none",N.webkitTapHighlightColor="transparent"}}static{this.\u0275fac=function(z){return new(z||_)(l.rXU(S.hJ),l.rXU(l.aKT),l.rXU(y.R),l.rXU(l.c1b),l.rXU(l.SKi),l.rXU(f.OD),l.rXU(R.vr),l.rXU(R.FN),l.rXU(J),l.rXU(h.dS),l.rXU(ne,8),l.rXU(w.qQ))}}static{this.\u0275dir=l.FsC({type:_,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(z,N){2&z&&l.AVh("mat-mdc-tooltip-disabled",N.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"],standalone:!0})}}return _})(),C=(()=>{class _{constructor(b,z,N){this._changeDetectorRef=b,this._elementRef=z,this._isMultiline=!1,this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new I.B,this._showAnimation="mat-mdc-tooltip-show",this._hideAnimation="mat-mdc-tooltip-hide",this._animationsDisabled="NoopAnimations"===N}show(b){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},b)}hide(b){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},b)}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:b}){(!b||!this._triggerElement.contains(b))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const b=this._elementRef.nativeElement.getBoundingClientRect();return b.height>24&&b.width>=200}_handleAnimationEnd({animationName:b}){(b===this._showAnimation||b===this._hideAnimation)&&this._finalizeAnimation(b===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(b){b?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(b){const z=this._tooltip.nativeElement,N=this._showAnimation,q=this._hideAnimation;if(z.classList.remove(b?q:N),z.classList.add(b?N:q),this._isVisible!==b&&(this._isVisible=b,this._changeDetectorRef.markForCheck()),b&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const pe=getComputedStyle(z);("0s"===pe.getPropertyValue("animation-duration")||"none"===pe.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}b&&this._onShow(),this._animationsDisabled&&(z.classList.add("_mat-animation-noopable"),this._finalizeAnimation(b))}static{this.\u0275fac=function(z){return new(z||_)(l.rXU(l.gRc),l.rXU(l.aKT),l.rXU(l.bc$,8))}}static{this.\u0275cmp=l.VBU({type:_,selectors:[["mat-tooltip-component"]],viewQuery:function(z,N){if(1&z&&l.GBs(Y,7),2&z){let q;l.mGM(q=l.lsd())&&(N._tooltip=q.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(z,N){1&z&&l.bIt("mouseleave",function(pe){return N._handleMouseLeave(pe)}),2&z&&l.xc7("zoom",N.isVisible()?1:null)},standalone:!0,features:[l.aNF],decls:4,vars:4,consts:[["tooltip",""],[1,"mdc-tooltip","mdc-tooltip--shown","mat-mdc-tooltip",3,"animationend","ngClass"],[1,"mdc-tooltip__surface","mdc-tooltip__surface-animation"]],template:function(z,N){if(1&z){const q=l.RV6();l.j41(0,"div",1,0),l.bIt("animationend",function(ze){return l.eBV(q),l.Njj(N._handleAnimationEnd(ze))}),l.j41(2,"div",2),l.EFF(3),l.k0s()()}2&z&&(l.AVh("mdc-tooltip--multiline",N._isMultiline),l.Y8G("ngClass",N.tooltipClass),l.R7$(3),l.JRh(N.message))},dependencies:[w.YU],styles:['.mdc-tooltip__surface{word-break:break-all;word-break:var(--mdc-tooltip-word-break, normal);overflow-wrap:anywhere}.mdc-tooltip--showing-transition .mdc-tooltip__surface-animation{transition:opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-tooltip--hide-transition .mdc-tooltip__surface-animation{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-tooltip{position:fixed;display:none;z-index:9}.mdc-tooltip-wrapper--rich{position:relative}.mdc-tooltip--shown,.mdc-tooltip--showing,.mdc-tooltip--hide{display:inline-flex}.mdc-tooltip--shown.mdc-tooltip--rich,.mdc-tooltip--showing.mdc-tooltip--rich,.mdc-tooltip--hide.mdc-tooltip--rich{display:inline-block;left:-320px;position:absolute}.mdc-tooltip__surface{line-height:16px;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center}.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}@media screen and (forced-colors: active){.mdc-tooltip__surface::before{border-color:CanvasText}}.mdc-tooltip--rich .mdc-tooltip__surface{align-items:flex-start;display:flex;flex-direction:column;min-height:24px;min-width:40px;max-width:320px;position:relative}.mdc-tooltip--multiline .mdc-tooltip__surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mdc-tooltip__surface,.mdc-tooltip--multiline .mdc-tooltip__surface[dir=rtl]{text-align:right}.mdc-tooltip__surface .mdc-tooltip__title{margin:0 8px}.mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(200px - 2*8px);margin:8px;text-align:left}[dir=rtl] .mdc-tooltip__surface .mdc-tooltip__content,.mdc-tooltip__surface .mdc-tooltip__content[dir=rtl]{text-align:right}.mdc-tooltip--rich .mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(320px - 2*8px);align-self:stretch}.mdc-tooltip__surface .mdc-tooltip__content-link{text-decoration:none}.mdc-tooltip--rich-actions,.mdc-tooltip__content,.mdc-tooltip__title{z-index:1}.mdc-tooltip__surface-animation{opacity:0;transform:scale(0.8);will-change:transform,opacity}.mdc-tooltip--shown .mdc-tooltip__surface-animation{transform:scale(1);opacity:1}.mdc-tooltip--hide .mdc-tooltip__surface-animation{transform:scale(1)}.mdc-tooltip__caret-surface-top,.mdc-tooltip__caret-surface-bottom{position:absolute;height:24px;width:24px;transform:rotate(35deg) skewY(20deg) scaleX(0.9396926208)}.mdc-tooltip__caret-surface-top .mdc-elevation-overlay,.mdc-tooltip__caret-surface-bottom .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-tooltip__caret-surface-bottom{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);outline:1px solid rgba(0,0,0,0);z-index:-1}@media screen and (forced-colors: active){.mdc-tooltip__caret-surface-bottom{outline-color:CanvasText}}.mat-mdc-tooltip .mdc-tooltip__surface{background-color:var(--mdc-plain-tooltip-container-color)}.mat-mdc-tooltip .mdc-tooltip__surface{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__caret-surface-top,.mat-mdc-tooltip .mdc-tooltip__caret-surface-bottom{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__surface{color:var(--mdc-plain-tooltip-supporting-text-color)}.mat-mdc-tooltip .mdc-tooltip__surface{font-family:var(--mdc-plain-tooltip-supporting-text-font);line-height:var(--mdc-plain-tooltip-supporting-text-line-height);font-size:var(--mdc-plain-tooltip-supporting-text-size);font-weight:var(--mdc-plain-tooltip-supporting-text-weight);letter-spacing:var(--mdc-plain-tooltip-supporting-text-tracking)}.mat-mdc-tooltip{position:relative;transform:scale(0)}.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-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}'],encapsulation:2,changeDetection:0})}}return _})(),k=(()=>{class _{static{this.\u0275fac=function(z){return new(z||_)}}static{this.\u0275mod=l.$C({type:_})}static{this.\u0275inj=l.G2t({providers:[ee],imports:[R.Pd,w.MD,S.z_,j.yE,j.yE,y.Gj]})}}return _})()},7358:(Qe,te,g)=>{"use strict";g.d(te,{Zh:()=>J,d6:()=>R,jH:()=>Y,lQ:()=>I,pO:()=>V,q1:()=>S,wx:()=>O,yI:()=>h});var e=g(4109),t=g(4438),x=g(6600),D=g(5024),l=g(4412),w=g(7786),f=g(6354);let R=(()=>{class ie extends e.xn{constructor(fe,ne,Me){super(fe,ne),this.disabled=!1,this.tabIndex=Number(Me)||0}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static{this.\u0275fac=function(ne){return new(ne||ie)(t.rXU(t.aKT),t.rXU(e.NL),t.kS0("tabindex"))}}static{this.\u0275dir=t.FsC({type:ie,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],inputs:{disabled:[2,"disabled","disabled",t.L39],tabIndex:[2,"tabIndex","tabIndex",fe=>null==fe?0:(0,t.Udg)(fe)]},exportAs:["matTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.xn,useExisting:ie}]),t.GFd,t.Vt3]})}}return ie})(),h=(()=>{class ie extends e.Sz{static{this.\u0275fac=(()=>{let fe;return function(Me){return(fe||(fe=t.xGo(ie)))(Me||ie)}})()}static{this.\u0275dir=t.FsC({type:ie,selectors:[["","matTreeNodeDef",""]],inputs:{when:[0,"matTreeNodeDefWhen","when"],data:[0,"matTreeNode","data"]},standalone:!0,features:[t.Jv_([{provide:e.Sz,useExisting:ie}]),t.Vt3]})}}return ie})(),S=(()=>{class ie extends e.s3{get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(fe){this._tabIndex=fe??0}constructor(fe,ne,Me,Ce){super(fe,ne,Me),this.disabled=!1,this.tabIndex=Number(Ce)||0}ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static{this.\u0275fac=function(ne){return new(ne||ie)(t.rXU(t.aKT),t.rXU(e.NL),t.rXU(t._q3),t.kS0("tabindex"))}}static{this.\u0275dir=t.FsC({type:ie,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{node:[0,"matNestedTreeNode","node"],disabled:[2,"disabled","disabled",t.L39],tabIndex:"tabIndex"},exportAs:["matNestedTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.s3,useExisting:ie},{provide:e.xn,useExisting:ie},{provide:e.kZ,useExisting:ie}]),t.GFd,t.Vt3]})}}return ie})(),O=(()=>{class ie{constructor(fe,ne){this.viewContainer=fe,this._node=ne}static{this.\u0275fac=function(ne){return new(ne||ie)(t.rXU(t.c1b),t.rXU(e.kZ,8))}}static{this.\u0275dir=t.FsC({type:ie,selectors:[["","matTreeNodeOutlet",""]],standalone:!0,features:[t.Jv_([{provide:e.a$,useExisting:ie}])]})}}return ie})(),I=(()=>{class ie extends e.NL{constructor(){super(...arguments),this._nodeOutlet=void 0}static{this.\u0275fac=(()=>{let fe;return function(Me){return(fe||(fe=t.xGo(ie)))(Me||ie)}})()}static{this.\u0275cmp=t.VBU({type:ie,selectors:[["mat-tree"]],viewQuery:function(ne,Me){if(1&ne&&t.GBs(O,7),2&ne){let Ce;t.mGM(Ce=t.lsd())&&(Me._nodeOutlet=Ce.first)}},hostAttrs:["role","tree",1,"mat-tree"],exportAs:["matTree"],standalone:!0,features:[t.Jv_([{provide:e.NL,useExisting:ie}]),t.Vt3,t.aNF],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(ne,Me){1&ne&&t.eu8(0,0)},dependencies:[O],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color)}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color);font-family:var(--mat-tree-node-text-font);font-size:var(--mat-tree-node-text-size);font-weight:var(--mat-tree-node-text-weight)}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height)}.mat-nested-tree-node{border-bottom-width:0}"],encapsulation:2})}}return ie})(),V=(()=>{class ie extends e.Hy{static{this.\u0275fac=(()=>{let fe;return function(Me){return(fe||(fe=t.xGo(ie)))(Me||ie)}})()}static{this.\u0275dir=t.FsC({type:ie,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:[0,"matTreeNodeToggleRecursive","recursive"]},standalone:!0,features:[t.Jv_([{provide:e.Hy,useExisting:ie}]),t.Vt3]})}}return ie})(),Y=(()=>{class ie{static{this.\u0275fac=function(ne){return new(ne||ie)}}static{this.\u0275mod=t.$C({type:ie})}static{this.\u0275inj=t.G2t({imports:[e.Dc,x.yE,x.yE]})}}return ie})();class J extends D.qS{constructor(){super(...arguments),this._data=new l.t([])}get data(){return this._data.value}set data(ee){this._data.next(ee)}connect(ee){return(0,w.h)(ee.viewChange,this._data).pipe((0,f.T)(()=>this.data))}disconnect(){}}},345:(Qe,te,g)=>{"use strict";g.d(te,{B7:()=>Ce,Bb:()=>Ie,fM:()=>nt,hE:()=>Ee,sG:()=>X,up:()=>qt});var e=g(177),t=g(4438);class x extends e.VF{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class D extends x{static makeCurrent(){(0,e.ZD)(new D)}onAndCancel(Te,ce,Z){return Te.addEventListener(ce,Z),()=>{Te.removeEventListener(ce,Z)}}dispatchEvent(Te,ce){Te.dispatchEvent(ce)}remove(Te){Te.remove()}createElement(Te,ce){return(ce=ce||this.getDefaultDocument()).createElement(Te)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(Te){return Te.nodeType===Node.ELEMENT_NODE}isShadowRoot(Te){return Te instanceof DocumentFragment}getGlobalEventTarget(Te,ce){return"window"===ce?window:"document"===ce?Te:"body"===ce?Te.body:null}getBaseHref(Te){const ce=function w(){return l=l||document.querySelector("base"),l?l.getAttribute("href"):null}();return null==ce?null:function f(Se){return new URL(Se,document.baseURI).pathname}(ce)}resetBaseElement(){l=null}getUserAgent(){return window.navigator.userAgent}getCookie(Te){return(0,e._b)(document.cookie,Te)}}let l=null,h=(()=>{class Se{build(){return new XMLHttpRequest}static{this.\u0275fac=function(Z){return new(Z||Se)}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})();const S=new t.nKC("");let y=(()=>{class Se{constructor(ce,Z){this._zone=Z,this._eventNameToPlugin=new Map,ce.forEach(Re=>{Re.manager=this}),this._plugins=ce.slice().reverse()}addEventListener(ce,Z,Re){return this._findPluginFor(Z).addEventListener(ce,Z,Re)}getZone(){return this._zone}_findPluginFor(ce){let Z=this._eventNameToPlugin.get(ce);if(Z)return Z;if(Z=this._plugins.find(Pe=>Pe.supports(ce)),!Z)throw new t.wOt(5101,!1);return this._eventNameToPlugin.set(ce,Z),Z}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(S),t.KVO(t.SKi))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})();class O{constructor(Te){this._doc=Te}}const I="ng-app-id";let V=(()=>{class Se{constructor(ce,Z,Re,Pe={}){this.doc=ce,this.appId=Z,this.nonce=Re,this.platformId=Pe,this.styleRef=new Map,this.hostNodes=new Set,this.styleNodesInDOM=this.collectServerRenderedStyles(),this.platformIsServer=(0,e.Vy)(Pe),this.resetHostNodes()}addStyles(ce){for(const Z of ce)1===this.changeUsageCount(Z,1)&&this.onStyleAdded(Z)}removeStyles(ce){for(const Z of ce)this.changeUsageCount(Z,-1)<=0&&this.onStyleRemoved(Z)}ngOnDestroy(){const ce=this.styleNodesInDOM;ce&&(ce.forEach(Z=>Z.remove()),ce.clear());for(const Z of this.getAllStyles())this.onStyleRemoved(Z);this.resetHostNodes()}addHost(ce){this.hostNodes.add(ce);for(const Z of this.getAllStyles())this.addStyleToHost(ce,Z)}removeHost(ce){this.hostNodes.delete(ce)}getAllStyles(){return this.styleRef.keys()}onStyleAdded(ce){for(const Z of this.hostNodes)this.addStyleToHost(Z,ce)}onStyleRemoved(ce){const Z=this.styleRef;Z.get(ce)?.elements?.forEach(Re=>Re.remove()),Z.delete(ce)}collectServerRenderedStyles(){const ce=this.doc.head?.querySelectorAll(`style[${I}="${this.appId}"]`);if(ce?.length){const Z=new Map;return ce.forEach(Re=>{null!=Re.textContent&&Z.set(Re.textContent,Re)}),Z}return null}changeUsageCount(ce,Z){const Re=this.styleRef;if(Re.has(ce)){const Pe=Re.get(ce);return Pe.usage+=Z,Pe.usage}return Re.set(ce,{usage:Z,elements:[]}),Z}getStyleElement(ce,Z){const Re=this.styleNodesInDOM,Pe=Re?.get(Z);if(Pe?.parentNode===ce)return Re.delete(Z),Pe.removeAttribute(I),Pe;{const pt=this.doc.createElement("style");return this.nonce&&pt.setAttribute("nonce",this.nonce),pt.textContent=Z,this.platformIsServer&&pt.setAttribute(I,this.appId),ce.appendChild(pt),pt}}addStyleToHost(ce,Z){const Re=this.getStyleElement(ce,Z),Pe=this.styleRef,pt=Pe.get(Z)?.elements;pt?pt.push(Re):Pe.set(Z,{elements:[Re],usage:1})}resetHostNodes(){const ce=this.hostNodes;ce.clear(),ce.add(this.doc.head)}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(e.qQ),t.KVO(t.sZ2),t.KVO(t.BIS,8),t.KVO(t.Agw))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})();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"},Y=/%COMP%/g,W="%COMP%",Q=`_nghost-${W}`,J=`_ngcontent-${W}`,ee=new t.nKC("",{providedIn:"root",factory:()=>!0});function Me(Se,Te){return Te.map(ce=>ce.replace(Y,Se))}let Ce=(()=>{class Se{constructor(ce,Z,Re,Pe,pt,Ke,Fe,Ge=null){this.eventManager=ce,this.sharedStylesHost=Z,this.appId=Re,this.removeStylesOnCompDestroy=Pe,this.doc=pt,this.platformId=Ke,this.ngZone=Fe,this.nonce=Ge,this.rendererByCompId=new Map,this.platformIsServer=(0,e.Vy)(Ke),this.defaultRenderer=new le(ce,pt,Fe,this.platformIsServer)}createRenderer(ce,Z){if(!ce||!Z)return this.defaultRenderer;this.platformIsServer&&Z.encapsulation===t.gXe.ShadowDom&&(Z={...Z,encapsulation:t.gXe.Emulated});const Re=this.getOrCreateRenderer(ce,Z);return Re instanceof C?Re.applyToHost(ce):Re instanceof d&&Re.applyStyles(),Re}getOrCreateRenderer(ce,Z){const Re=this.rendererByCompId;let Pe=Re.get(Z.id);if(!Pe){const pt=this.doc,Ke=this.ngZone,Fe=this.eventManager,Ge=this.sharedStylesHost,qe=this.removeStylesOnCompDestroy,at=this.platformIsServer;switch(Z.encapsulation){case t.gXe.Emulated:Pe=new C(Fe,Ge,Z,this.appId,qe,pt,Ke,at);break;case t.gXe.ShadowDom:return new m(Fe,Ge,ce,Z,pt,Ke,this.nonce,at);default:Pe=new d(Fe,Ge,Z,qe,pt,Ke,at)}Re.set(Z.id,Pe)}return Pe}ngOnDestroy(){this.rendererByCompId.clear()}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(y),t.KVO(V),t.KVO(t.sZ2),t.KVO(ee),t.KVO(e.qQ),t.KVO(t.Agw),t.KVO(t.SKi),t.KVO(t.BIS))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})();class le{constructor(Te,ce,Z,Re){this.eventManager=Te,this.doc=ce,this.ngZone=Z,this.platformIsServer=Re,this.data=Object.create(null),this.throwOnSyntheticProps=!0,this.destroyNode=null}destroy(){}createElement(Te,ce){return ce?this.doc.createElementNS(j[ce]||ce,Te):this.doc.createElement(Te)}createComment(Te){return this.doc.createComment(Te)}createText(Te){return this.doc.createTextNode(Te)}appendChild(Te,ce){(c(Te)?Te.content:Te).appendChild(ce)}insertBefore(Te,ce,Z){Te&&(c(Te)?Te.content:Te).insertBefore(ce,Z)}removeChild(Te,ce){ce.remove()}selectRootElement(Te,ce){let Z="string"==typeof Te?this.doc.querySelector(Te):Te;if(!Z)throw new t.wOt(-5104,!1);return ce||(Z.textContent=""),Z}parentNode(Te){return Te.parentNode}nextSibling(Te){return Te.nextSibling}setAttribute(Te,ce,Z,Re){if(Re){ce=Re+":"+ce;const Pe=j[Re];Pe?Te.setAttributeNS(Pe,ce,Z):Te.setAttribute(ce,Z)}else Te.setAttribute(ce,Z)}removeAttribute(Te,ce,Z){if(Z){const Re=j[Z];Re?Te.removeAttributeNS(Re,ce):Te.removeAttribute(`${Z}:${ce}`)}else Te.removeAttribute(ce)}addClass(Te,ce){Te.classList.add(ce)}removeClass(Te,ce){Te.classList.remove(ce)}setStyle(Te,ce,Z,Re){Re&(t.czy.DashCase|t.czy.Important)?Te.style.setProperty(ce,Z,Re&t.czy.Important?"important":""):Te.style[ce]=Z}removeStyle(Te,ce,Z){Z&t.czy.DashCase?Te.style.removeProperty(ce):Te.style[ce]=""}setProperty(Te,ce,Z){null!=Te&&(Te[ce]=Z)}setValue(Te,ce){Te.nodeValue=ce}listen(Te,ce,Z){if("string"==typeof Te&&!(Te=(0,e.QT)().getGlobalEventTarget(this.doc,Te)))throw new Error(`Unsupported event target ${Te} for event ${ce}`);return this.eventManager.addEventListener(Te,ce,this.decoratePreventDefault(Z))}decoratePreventDefault(Te){return ce=>{if("__ngUnwrap__"===ce)return Te;!1===(this.platformIsServer?this.ngZone.runGuarded(()=>Te(ce)):Te(ce))&&ce.preventDefault()}}}function c(Se){return"TEMPLATE"===Se.tagName&&void 0!==Se.content}class m extends le{constructor(Te,ce,Z,Re,Pe,pt,Ke,Fe){super(Te,Pe,pt,Fe),this.sharedStylesHost=ce,this.hostEl=Z,this.shadowRoot=Z.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const Ge=Me(Re.id,Re.styles);for(const qe of Ge){const at=document.createElement("style");Ke&&at.setAttribute("nonce",Ke),at.textContent=qe,this.shadowRoot.appendChild(at)}}nodeOrShadowRoot(Te){return Te===this.hostEl?this.shadowRoot:Te}appendChild(Te,ce){return super.appendChild(this.nodeOrShadowRoot(Te),ce)}insertBefore(Te,ce,Z){return super.insertBefore(this.nodeOrShadowRoot(Te),ce,Z)}removeChild(Te,ce){return super.removeChild(null,ce)}parentNode(Te){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(Te)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class d extends le{constructor(Te,ce,Z,Re,Pe,pt,Ke,Fe){super(Te,Pe,pt,Ke),this.sharedStylesHost=ce,this.removeStylesOnCompDestroy=Re,this.styles=Fe?Me(Fe,Z.styles):Z.styles}applyStyles(){this.sharedStylesHost.addStyles(this.styles)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles)}}class C extends d{constructor(Te,ce,Z,Re,Pe,pt,Ke,Fe){const Ge=Re+"-"+Z.id;super(Te,ce,Z,Pe,pt,Ke,Fe,Ge),this.contentAttr=function fe(Se){return J.replace(Y,Se)}(Ge),this.hostAttr=function ne(Se){return Q.replace(Y,Se)}(Ge)}applyToHost(Te){this.applyStyles(),this.setAttribute(Te,this.hostAttr,"")}createElement(Te,ce){const Z=super.createElement(Te,ce);return super.setAttribute(Z,this.contentAttr,""),Z}}let A=(()=>{class Se extends O{constructor(ce){super(ce)}supports(ce){return!0}addEventListener(ce,Z,Re){return ce.addEventListener(Z,Re,!1),()=>this.removeEventListener(ce,Z,Re)}removeEventListener(ce,Z,Re){return ce.removeEventListener(Z,Re)}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(e.qQ))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})();const k=["alt","control","meta","shift"],_={"\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"},a={alt:Se=>Se.altKey,control:Se=>Se.ctrlKey,meta:Se=>Se.metaKey,shift:Se=>Se.shiftKey};let b=(()=>{class Se extends O{constructor(ce){super(ce)}supports(ce){return null!=Se.parseEventName(ce)}addEventListener(ce,Z,Re){const Pe=Se.parseEventName(Z),pt=Se.eventCallback(Pe.fullKey,Re,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,e.QT)().onAndCancel(ce,Pe.domEventName,pt))}static parseEventName(ce){const Z=ce.toLowerCase().split("."),Re=Z.shift();if(0===Z.length||"keydown"!==Re&&"keyup"!==Re)return null;const Pe=Se._normalizeKey(Z.pop());let pt="",Ke=Z.indexOf("code");if(Ke>-1&&(Z.splice(Ke,1),pt="code."),k.forEach(Ge=>{const qe=Z.indexOf(Ge);qe>-1&&(Z.splice(qe,1),pt+=Ge+".")}),pt+=Pe,0!=Z.length||0===Pe.length)return null;const Fe={};return Fe.domEventName=Re,Fe.fullKey=pt,Fe}static matchEventFullKeyCode(ce,Z){let Re=_[ce.key]||ce.key,Pe="";return Z.indexOf("code.")>-1&&(Re=ce.code,Pe="code."),!(null==Re||!Re)&&(Re=Re.toLowerCase()," "===Re?Re="space":"."===Re&&(Re="dot"),k.forEach(pt=>{pt!==Re&&(0,a[pt])(ce)&&(Pe+=pt+".")}),Pe+=Re,Pe===Z)}static eventCallback(ce,Z,Re){return Pe=>{Se.matchEventFullKeyCode(Pe,ce)&&Re.runGuarded(()=>Z(Pe))}}static _normalizeKey(ce){return"esc"===ce?"escape":ce}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(e.qQ))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})();const X=(0,t.oH4)(t.fpN,"browser",[{provide:t.Agw,useValue:e.AJ},{provide:t.PLl,useValue:function ze(){D.makeCurrent()},multi:!0},{provide:e.qQ,useFactory:function We(){return(0,t.TL$)(document),document},deps:[]}]),se=new t.nKC(""),ae=[{provide:t.e01,useClass:class R{addToWindow(Te){t.JZv.getAngularTestability=(Z,Re=!0)=>{const Pe=Te.findTestabilityInTree(Z,Re);if(null==Pe)throw new t.wOt(5103,!1);return Pe},t.JZv.getAllAngularTestabilities=()=>Te.getAllTestabilities(),t.JZv.getAllAngularRootElements=()=>Te.getAllRootElements(),t.JZv.frameworkStabilizers||(t.JZv.frameworkStabilizers=[]),t.JZv.frameworkStabilizers.push(Z=>{const Re=t.JZv.getAllAngularTestabilities();let Pe=Re.length;const pt=function(){Pe--,0==Pe&&Z()};Re.forEach(Ke=>{Ke.whenStable(pt)})})}findTestabilityInTree(Te,ce,Z){return null==ce?null:Te.getTestability(ce)??(Z?(0,e.QT)().isShadowRoot(ce)?this.findTestabilityInTree(Te,ce.host,!0):this.findTestabilityInTree(Te,ce.parentElement,!0):null)}},deps:[]},{provide:t.WHO,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]},{provide:t.NYb,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]}],he=[{provide:t.H8p,useValue:"root"},{provide:t.zcH,useFactory:function Xe(){return new t.zcH},deps:[]},{provide:S,useClass:A,multi:!0,deps:[e.qQ,t.SKi,t.Agw]},{provide:S,useClass:b,multi:!0,deps:[e.qQ]},Ce,V,y,{provide:t._9s,useExisting:Ce},{provide:e.N0,useClass:h,deps:[]},[]];let Ie=(()=>{class Se{constructor(ce){}static withServerTransition(ce){return{ngModule:Se,providers:[{provide:t.sZ2,useValue:ce.appId}]}}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(se,12))}}static{this.\u0275mod=t.$C({type:Se})}static{this.\u0275inj=t.G2t({providers:[...he,...ae],imports:[e.MD,t.Hbi]})}}return Se})(),Ee=(()=>{class Se{constructor(ce){this._doc=ce}getTitle(){return this._doc.title}setTitle(ce){this._doc.title=ce||""}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(e.qQ))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac,providedIn:"root"})}}return Se})();const we={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},Ue=new t.nKC("HammerGestureConfig"),je=new t.nKC("HammerLoader");let vt=(()=>{class Se{constructor(){this.events=[],this.overrides={}}buildHammer(ce){const Z=new Hammer(ce,this.options);Z.get("pinch").set({enable:!0}),Z.get("rotate").set({enable:!0});for(const Re in this.overrides)Z.get(Re).set(this.overrides[Re]);return Z}static{this.\u0275fac=function(Z){return new(Z||Se)}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})(),$e=(()=>{class Se extends O{constructor(ce,Z,Re,Pe){super(ce),this._config=Z,this.console=Re,this.loader=Pe,this._loaderPromise=null}supports(ce){return!(!we.hasOwnProperty(ce.toLowerCase())&&!this.isCustomEvent(ce)||!window.Hammer&&!this.loader)}addEventListener(ce,Z,Re){const Pe=this.manager.getZone();if(Z=Z.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||Pe.runOutsideAngular(()=>this.loader());let pt=!1,Ke=()=>{pt=!0};return Pe.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?pt||(Ke=this.addEventListener(ce,Z,Re)):Ke=()=>{}}).catch(()=>{Ke=()=>{}})),()=>{Ke()}}return Pe.runOutsideAngular(()=>{const pt=this._config.buildHammer(ce),Ke=function(Fe){Pe.runGuarded(function(){Re(Fe)})};return pt.on(Z,Ke),()=>{pt.off(Z,Ke),"function"==typeof pt.destroy&&pt.destroy()}})}isCustomEvent(ce){return this._config.events.indexOf(ce)>-1}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(e.qQ),t.KVO(Ue),t.KVO(t.H3F),t.KVO(je,8))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac})}}return Se})(),nt=(()=>{class Se{static{this.\u0275fac=function(Z){return new(Z||Se)}}static{this.\u0275mod=t.$C({type:Se})}static{this.\u0275inj=t.G2t({providers:[{provide:S,useClass:$e,multi:!0,deps:[e.qQ,Ue,t.H3F,[new t.Xx1,je]]},{provide:Ue,useClass:vt,deps:[]}]})}}return Se})(),qt=(()=>{class Se{static{this.\u0275fac=function(Z){return new(Z||Se)}}static{this.\u0275prov=t.jDH({token:Se,factory:function(Z){let Re=null;return Re=Z?new(Z||Se):t.KVO(Nt),Re},providedIn:"root"})}}return Se})(),Nt=(()=>{class Se extends qt{constructor(ce){super(),this._doc=ce}sanitize(ce,Z){if(null==Z)return null;switch(ce){case t.WPN.NONE:return Z;case t.WPN.HTML:return(0,t.ZF7)(Z,"HTML")?(0,t.rcV)(Z):(0,t.h9k)(this._doc,String(Z)).toString();case t.WPN.STYLE:return(0,t.ZF7)(Z,"Style")?(0,t.rcV)(Z):Z;case t.WPN.SCRIPT:if((0,t.ZF7)(Z,"Script"))return(0,t.rcV)(Z);throw new t.wOt(5200,!1);case t.WPN.URL:return(0,t.ZF7)(Z,"URL")?(0,t.rcV)(Z):(0,t.$MX)(String(Z));case t.WPN.RESOURCE_URL:if((0,t.ZF7)(Z,"ResourceURL"))return(0,t.rcV)(Z);throw new t.wOt(5201,!1);default:throw new t.wOt(5202,!1)}}bypassSecurityTrustHtml(ce){return(0,t.Kcf)(ce)}bypassSecurityTrustStyle(ce){return(0,t.cWb)(ce)}bypassSecurityTrustScript(ce){return(0,t.UyX)(ce)}bypassSecurityTrustUrl(ce){return(0,t.osQ)(ce)}bypassSecurityTrustResourceUrl(ce){return(0,t.e5t)(ce)}static{this.\u0275fac=function(Z){return new(Z||Se)(t.KVO(e.qQ))}}static{this.\u0275prov=t.jDH({token:Se,factory:Se.\u0275fac,providedIn:"root"})}}return Se})()},1188:(Qe,te,g)=>{"use strict";g.d(te,{nX:()=>hn,j5:()=>ii,wF:()=>ye,L6:()=>Gi,Z:()=>He,gx:()=>nr,Ix:()=>Fn,Wk:()=>Fi,wQ:()=>bn,iI:()=>mo,n3:()=>vo});var e=g(4438),t=g(4402),x=g(2806),D=g(7673),l=g(4412),w=g(4572),f=g(9350),R=g(8793),h=g(9030),S=g(1203),y=g(8810),O=g(983),I=g(17),V=g(1413),j=g(8359),Y=g(177),W=g(6354),Q=g(5558),J=g(6697),ie=g(9172),ee=g(5964),fe=g(1397),ne=g(1594),Me=g(274),Ce=g(8141),le=g(9437),T=g(2816),n=g(9901),c=g(9974),m=g(4360);function d(ge){return ge<=0?()=>O.w:(0,c.N)((De,be)=>{let Ne=[];De.subscribe((0,m._)(be,ft=>{Ne.push(ft),ge{for(const ft of Ne)be.next(ft);be.complete()},void 0,()=>{Ne=null}))})}var C=g(3774),A=g(3669),_=g(3703),a=g(980),b=g(9898),z=g(6977),N=g(6365),q=g(345);const pe="primary",ze=Symbol("RouteTitle");class Xe{constructor(De){this.params=De||{}}has(De){return Object.prototype.hasOwnProperty.call(this.params,De)}get(De){if(this.has(De)){const be=this.params[De];return Array.isArray(be)?be[0]:be}return null}getAll(De){if(this.has(De)){const be=this.params[De];return Array.isArray(be)?be:[be]}return[]}get keys(){return Object.keys(this.params)}}function We(ge){return new Xe(ge)}function oe(ge,De,be){const Ne=be.path.split("/");if(Ne.length>ge.length||"full"===be.pathMatch&&(De.hasChildren()||Ne.lengthNe[Rt]===ft)}return ge===De}function Ie(ge){return ge.length>0?ge[ge.length-1]:null}function st(ge){return(0,t.A)(ge)?ge:(0,e.jNT)(ge)?(0,x.H)(Promise.resolve(ge)):(0,D.of)(ge)}const me={exact:function Ct(ge,De,be){if(!vt(ge.segments,De.segments)||!ve(ge.segments,De.segments,be)||ge.numberOfChildren!==De.numberOfChildren)return!1;for(const Ne in De.children)if(!ge.children[Ne]||!Ct(ge.children[Ne],De.children[Ne],be))return!1;return!0},subset:dt},Ee={exact:function Be(ge,De){return se(ge,De)},subset:function ct(ge,De){return Object.keys(De).length<=Object.keys(ge).length&&Object.keys(De).every(be=>he(ge[be],De[be]))},ignored:()=>!0};function ue(ge,De,be){return me[be.paths](ge.root,De.root,be.matrixParams)&&Ee[be.queryParams](ge.queryParams,De.queryParams)&&!("exact"===be.fragment&&ge.fragment!==De.fragment)}function dt(ge,De,be){return Yt(ge,De,De.segments,be)}function Yt(ge,De,be,Ne){if(ge.segments.length>be.length){const ft=ge.segments.slice(0,be.length);return!(!vt(ft,be)||De.hasChildren()||!ve(ft,be,Ne))}if(ge.segments.length===be.length){if(!vt(ge.segments,be)||!ve(ge.segments,be,Ne))return!1;for(const ft in De.children)if(!ge.children[ft]||!dt(ge.children[ft],De.children[ft],Ne))return!1;return!0}{const ft=be.slice(0,ge.segments.length),Rt=be.slice(ge.segments.length);return!!(vt(ge.segments,ft)&&ve(ge.segments,ft,Ne)&&ge.children[pe])&&Yt(ge.children[pe],De,Rt,Ne)}}function ve(ge,De,be){return De.every((Ne,ft)=>Ee[be](ge[ft].parameters,Ne.parameters))}class _e{constructor(De=new we([],{}),be={},Ne=null){this.root=De,this.queryParams=be,this.fragment=Ne}get queryParamMap(){return this._queryParamMap??=We(this.queryParams),this._queryParamMap}toString(){return Nt.serialize(this)}}class we{constructor(De,be){this.segments=De,this.children=be,this.parent=null,Object.values(be).forEach(Ne=>Ne.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return yt(this)}}class Ue{constructor(De,be){this.path=De,this.parameters=be}get parameterMap(){return this._parameterMap??=We(this.parameters),this._parameterMap}toString(){return xt(this)}}function vt(ge,De){return ge.length===De.length&&ge.every((be,Ne)=>be.path===De[Ne].path)}let nt=(()=>{class ge{static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:()=>new qt,providedIn:"root"})}}return ge})();class qt{parse(De){const be=new qe(De);return new _e(be.parseRootSegment(),be.parseQueryParams(),be.parseFragment())}serialize(De){const be=`/${jt(De.root,!0)}`,Ne=function Te(ge){const De=Object.entries(ge).map(([be,Ne])=>Array.isArray(Ne)?Ne.map(ft=>`${et(be)}=${et(ft)}`).join("&"):`${et(be)}=${et(Ne)}`).filter(be=>be);return De.length?`?${De.join("&")}`:""}(De.queryParams);return`${be}${Ne}${"string"==typeof De.fragment?`#${function Ae(ge){return encodeURI(ge)}(De.fragment)}`:""}`}}const Nt=new qt;function yt(ge){return ge.segments.map(De=>xt(De)).join("/")}function jt(ge,De){if(!ge.hasChildren())return yt(ge);if(De){const be=ge.children[pe]?jt(ge.children[pe],!1):"",Ne=[];return Object.entries(ge.children).forEach(([ft,Rt])=>{ft!==pe&&Ne.push(`${ft}:${jt(Rt,!1)}`)}),Ne.length>0?`${be}(${Ne.join("//")})`:be}{const be=function $e(ge,De){let be=[];return Object.entries(ge.children).forEach(([Ne,ft])=>{Ne===pe&&(be=be.concat(De(ft,Ne)))}),Object.entries(ge.children).forEach(([Ne,ft])=>{Ne!==pe&&(be=be.concat(De(ft,Ne)))}),be}(ge,(Ne,ft)=>ft===pe?[jt(ge.children[pe],!1)]:[`${ft}:${jt(Ne,!1)}`]);return 1===Object.keys(ge.children).length&&null!=ge.children[pe]?`${yt(ge)}/${be[0]}`:`${yt(ge)}/(${be.join("//")})`}}function Je(ge){return encodeURIComponent(ge).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function et(ge){return Je(ge).replace(/%3B/gi,";")}function It(ge){return Je(ge).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function Qt(ge){return decodeURIComponent(ge)}function Tt(ge){return Qt(ge.replace(/\+/g,"%20"))}function xt(ge){return`${It(ge.path)}${function Se(ge){return Object.entries(ge).map(([De,be])=>`;${It(De)}=${It(be)}`).join("")}(ge.parameters)}`}const ce=/^[^\/()?;#]+/;function Z(ge){const De=ge.match(ce);return De?De[0]:""}const Re=/^[^\/()?;=#]+/,pt=/^[^=?&#]+/,Fe=/^[^&#]+/;class qe{constructor(De){this.url=De,this.remaining=De}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new we([],{}):new we([],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 be={};this.peekStartsWith("/(")&&(this.capture("/"),be=this.parseParens(!0));let Ne={};return this.peekStartsWith("(")&&(Ne=this.parseParens(!1)),(De.length>0||Object.keys(be).length>0)&&(Ne[pe]=new we(De,be)),Ne}parseSegment(){const De=Z(this.remaining);if(""===De&&this.peekStartsWith(";"))throw new e.wOt(4009,!1);return this.capture(De),new Ue(Qt(De),this.parseMatrixParams())}parseMatrixParams(){const De={};for(;this.consumeOptional(";");)this.parseParam(De);return De}parseParam(De){const be=function Pe(ge){const De=ge.match(Re);return De?De[0]:""}(this.remaining);if(!be)return;this.capture(be);let Ne="";if(this.consumeOptional("=")){const ft=Z(this.remaining);ft&&(Ne=ft,this.capture(Ne))}De[Qt(be)]=Qt(Ne)}parseQueryParam(De){const be=function Ke(ge){const De=ge.match(pt);return De?De[0]:""}(this.remaining);if(!be)return;this.capture(be);let Ne="";if(this.consumeOptional("=")){const Jt=function Ge(ge){const De=ge.match(Fe);return De?De[0]:""}(this.remaining);Jt&&(Ne=Jt,this.capture(Ne))}const ft=Tt(be),Rt=Tt(Ne);if(De.hasOwnProperty(ft)){let Jt=De[ft];Array.isArray(Jt)||(Jt=[Jt],De[ft]=Jt),Jt.push(Rt)}else De[ft]=Rt}parseParens(De){const be={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const Ne=Z(this.remaining),ft=this.remaining[Ne.length];if("/"!==ft&&")"!==ft&&";"!==ft)throw new e.wOt(4010,!1);let Rt;Ne.indexOf(":")>-1?(Rt=Ne.slice(0,Ne.indexOf(":")),this.capture(Rt),this.capture(":")):De&&(Rt=pe);const Jt=this.parseChildren();be[Rt]=1===Object.keys(Jt).length?Jt[pe]:new we([],Jt),this.consumeOptional("//")}return be}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 e.wOt(4011,!1)}}function at(ge){return ge.segments.length>0?new we([],{[pe]:ge}):ge}function Lt(ge){const De={};for(const[Ne,ft]of Object.entries(ge.children)){const Rt=Lt(ft);if(Ne===pe&&0===Rt.segments.length&&Rt.hasChildren())for(const[Jt,Mi]of Object.entries(Rt.children))De[Jt]=Mi;else(Rt.segments.length>0||Rt.hasChildren())&&(De[Ne]=Rt)}return function pi(ge){if(1===ge.numberOfChildren&&ge.children[pe]){const De=ge.children[pe];return new we(ge.segments.concat(De.segments),De.children)}return ge}(new we(ge.segments,De))}function $t(ge){return ge instanceof _e}function Ui(ge){let De;const ft=at(function be(Rt){const Jt={};for(const bi of Rt.children){const cn=be(bi);Jt[bi.outlet]=cn}const Mi=new we(Rt.url,Jt);return Rt===ge&&(De=Mi),Mi}(ge.root));return De??ft}function ti(ge,De,be,Ne){let ft=ge;for(;ft.parent;)ft=ft.parent;if(0===De.length)return tn(ft,ft,ft,be,Ne);const Rt=function Xt(ge){if("string"==typeof ge[0]&&1===ge.length&&"/"===ge[0])return new Qi(!0,0,ge);let De=0,be=!1;const Ne=ge.reduce((ft,Rt,Jt)=>{if("object"==typeof Rt&&null!=Rt){if(Rt.outlets){const Mi={};return Object.entries(Rt.outlets).forEach(([bi,cn])=>{Mi[bi]="string"==typeof cn?cn.split("/"):cn}),[...ft,{outlets:Mi}]}if(Rt.segmentPath)return[...ft,Rt.segmentPath]}return"string"!=typeof Rt?[...ft,Rt]:0===Jt?(Rt.split("/").forEach((Mi,bi)=>{0==bi&&"."===Mi||(0==bi&&""===Mi?be=!0:".."===Mi?De++:""!=Mi&&ft.push(Mi))}),ft):[...ft,Rt]},[]);return new Qi(be,De,Ne)}(De);if(Rt.toRoot())return tn(ft,ft,new we([],{}),be,Ne);const Jt=function tt(ge,De,be){if(ge.isAbsolute)return new St(De,!0,0);if(!be)return new St(De,!1,NaN);if(null===be.parent)return new St(be,!0,0);const Ne=fi(ge.commands[0])?0:1;return function ot(ge,De,be){let Ne=ge,ft=De,Rt=be;for(;Rt>ft;){if(Rt-=ft,Ne=Ne.parent,!Ne)throw new e.wOt(4005,!1);ft=Ne.segments.length}return new St(Ne,!1,ft-Rt)}(be,be.segments.length-1+Ne,ge.numberOfDoubleDots)}(Rt,ft,ge),Mi=Jt.processChildren?Ci(Jt.segmentGroup,Jt.index,Rt.commands):Bt(Jt.segmentGroup,Jt.index,Rt.commands);return tn(ft,Jt.segmentGroup,Mi,be,Ne)}function fi(ge){return"object"==typeof ge&&null!=ge&&!ge.outlets&&!ge.segmentPath}function xn(ge){return"object"==typeof ge&&null!=ge&&ge.outlets}function tn(ge,De,be,Ne,ft){let Jt,Rt={};Ne&&Object.entries(Ne).forEach(([bi,cn])=>{Rt[bi]=Array.isArray(cn)?cn.map(Pn=>`${Pn}`):`${cn}`}),Jt=ge===De?be:Vi(ge,De,be);const Mi=at(Lt(Jt));return new _e(Mi,Rt,ft)}function Vi(ge,De,be){const Ne={};return Object.entries(ge.children).forEach(([ft,Rt])=>{Ne[ft]=Rt===De?be:Vi(Rt,De,be)}),new we(ge.segments,Ne)}class Qi{constructor(De,be,Ne){if(this.isAbsolute=De,this.numberOfDoubleDots=be,this.commands=Ne,De&&Ne.length>0&&fi(Ne[0]))throw new e.wOt(4003,!1);const ft=Ne.find(xn);if(ft&&ft!==Ie(Ne))throw new e.wOt(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class St{constructor(De,be,Ne){this.segmentGroup=De,this.processChildren=be,this.index=Ne}}function Bt(ge,De,be){if(ge??=new we([],{}),0===ge.segments.length&&ge.hasChildren())return Ci(ge,De,be);const Ne=function Ti(ge,De,be){let Ne=0,ft=De;const Rt={match:!1,pathIndex:0,commandIndex:0};for(;ft=be.length)return Rt;const Jt=ge.segments[ft],Mi=be[Ne];if(xn(Mi))break;const bi=`${Mi}`,cn=Ne0&&void 0===bi)break;if(bi&&cn&&"object"==typeof cn&&void 0===cn.outlets){if(!mn(bi,cn,Jt))return Rt;Ne+=2}else{if(!mn(bi,{},Jt))return Rt;Ne++}ft++}return{match:!0,pathIndex:ft,commandIndex:Ne}}(ge,De,be),ft=be.slice(Ne.commandIndex);if(Ne.match&&Ne.pathIndexRt!==pe)&&ge.children[pe]&&1===ge.numberOfChildren&&0===ge.children[pe].segments.length){const Rt=Ci(ge.children[pe],De,be);return new we(ge.segments,Rt.children)}return Object.entries(Ne).forEach(([Rt,Jt])=>{"string"==typeof Jt&&(Jt=[Jt]),null!==Jt&&(ft[Rt]=Bt(ge.children[Rt],De,Jt))}),Object.entries(ge.children).forEach(([Rt,Jt])=>{void 0===Ne[Rt]&&(ft[Rt]=Jt)}),new we(ge.segments,ft)}}function Hi(ge,De,be){const Ne=ge.segments.slice(0,De);let ft=0;for(;ft{"string"==typeof Ne&&(Ne=[Ne]),null!==Ne&&(De[be]=Hi(new we([],{}),0,Ne))}),De}function ln(ge){const De={};return Object.entries(ge).forEach(([be,Ne])=>De[be]=`${Ne}`),De}function mn(ge,De,be){return ge==be.path&&se(De,be.parameters)}const Ut="imperative";var lt=function(ge){return ge[ge.NavigationStart=0]="NavigationStart",ge[ge.NavigationEnd=1]="NavigationEnd",ge[ge.NavigationCancel=2]="NavigationCancel",ge[ge.NavigationError=3]="NavigationError",ge[ge.RoutesRecognized=4]="RoutesRecognized",ge[ge.ResolveStart=5]="ResolveStart",ge[ge.ResolveEnd=6]="ResolveEnd",ge[ge.GuardsCheckStart=7]="GuardsCheckStart",ge[ge.GuardsCheckEnd=8]="GuardsCheckEnd",ge[ge.RouteConfigLoadStart=9]="RouteConfigLoadStart",ge[ge.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",ge[ge.ChildActivationStart=11]="ChildActivationStart",ge[ge.ChildActivationEnd=12]="ChildActivationEnd",ge[ge.ActivationStart=13]="ActivationStart",ge[ge.ActivationEnd=14]="ActivationEnd",ge[ge.Scroll=15]="Scroll",ge[ge.NavigationSkipped=16]="NavigationSkipped",ge}(lt||{});class re{constructor(De,be){this.id=De,this.url=be}}class He extends re{constructor(De,be,Ne="imperative",ft=null){super(De,be),this.type=lt.NavigationStart,this.navigationTrigger=Ne,this.restoredState=ft}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class ye extends re{constructor(De,be,Ne){super(De,be),this.urlAfterRedirects=Ne,this.type=lt.NavigationEnd}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var rt=function(ge){return ge[ge.Redirect=0]="Redirect",ge[ge.SupersededByNewNavigation=1]="SupersededByNewNavigation",ge[ge.NoDataFromResolver=2]="NoDataFromResolver",ge[ge.GuardRejected=3]="GuardRejected",ge}(rt||{}),ht=function(ge){return ge[ge.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",ge[ge.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",ge}(ht||{});class ii extends re{constructor(De,be,Ne,ft){super(De,be),this.reason=Ne,this.code=ft,this.type=lt.NavigationCancel}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class di extends re{constructor(De,be,Ne,ft){super(De,be),this.reason=Ne,this.code=ft,this.type=lt.NavigationSkipped}}class Gi extends re{constructor(De,be,Ne,ft){super(De,be),this.error=Ne,this.target=ft,this.type=lt.NavigationError}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class Cn extends re{constructor(De,be,Ne,ft){super(De,be),this.urlAfterRedirects=Ne,this.state=ft,this.type=lt.RoutesRecognized}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Hn extends re{constructor(De,be,Ne,ft){super(De,be),this.urlAfterRedirects=Ne,this.state=ft,this.type=lt.GuardsCheckStart}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Qn extends re{constructor(De,be,Ne,ft,Rt){super(De,be),this.urlAfterRedirects=Ne,this.state=ft,this.shouldActivate=Rt,this.type=lt.GuardsCheckEnd}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class Jn extends re{constructor(De,be,Ne,ft){super(De,be),this.urlAfterRedirects=Ne,this.state=ft,this.type=lt.ResolveStart}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class nr extends re{constructor(De,be,Ne,ft){super(De,be),this.urlAfterRedirects=Ne,this.state=ft,this.type=lt.ResolveEnd}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class dr{constructor(De){this.route=De,this.type=lt.RouteConfigLoadStart}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class wn{constructor(De){this.route=De,this.type=lt.RouteConfigLoadEnd}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class Ai{constructor(De){this.snapshot=De,this.type=lt.ChildActivationStart}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Yi{constructor(De){this.snapshot=De,this.type=lt.ChildActivationEnd}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ft{constructor(De){this.snapshot=De,this.type=lt.ActivationStart}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class mi{constructor(De){this.snapshot=De,this.type=lt.ActivationEnd}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class gi{constructor(De,be,Ne){this.routerEvent=De,this.position=be,this.anchor=Ne,this.type=lt.Scroll}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class xi{}class Ni{constructor(De,be){this.url=De,this.navigationBehaviorOptions=be}}function qr(ge){return ge.outlet||pe}function Ma(ge){if(!ge)return null;if(ge.routeConfig?._injector)return ge.routeConfig._injector;for(let De=ge.parent;De;De=De.parent){const be=De.routeConfig;if(be?._loadedInjector)return be._loadedInjector;if(be?._injector)return be._injector}return null}class Ds{get injector(){return Ma(this.route?.snapshot)??this.rootInjector}set injector(De){}constructor(De){this.rootInjector=De,this.outlet=null,this.route=null,this.children=new Or(this.rootInjector),this.attachRef=null}}let Or=(()=>{class ge{constructor(be){this.rootInjector=be,this.contexts=new Map}onChildOutletCreated(be,Ne){const ft=this.getOrCreateContext(be);ft.outlet=Ne,this.contexts.set(be,ft)}onChildOutletDestroyed(be){const Ne=this.getContext(be);Ne&&(Ne.outlet=null,Ne.attachRef=null)}onOutletDeactivated(){const be=this.contexts;return this.contexts=new Map,be}onOutletReAttached(be){this.contexts=be}getOrCreateContext(be){let Ne=this.getContext(be);return Ne||(Ne=new Ds(this.rootInjector),this.contexts.set(be,Ne)),Ne}getContext(be){return this.contexts.get(be)||null}static{this.\u0275fac=function(Ne){return new(Ne||ge)(e.KVO(e.uvJ))}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})();class hs{constructor(De){this._root=De}get root(){return this._root.value}parent(De){const be=this.pathFromRoot(De);return be.length>1?be[be.length-2]:null}children(De){const be=za(De,this._root);return be?be.children.map(Ne=>Ne.value):[]}firstChild(De){const be=za(De,this._root);return be&&be.children.length>0?be.children[0].value:null}siblings(De){const be=Fr(De,this._root);return be.length<2?[]:be[be.length-2].children.map(ft=>ft.value).filter(ft=>ft!==De)}pathFromRoot(De){return Fr(De,this._root).map(be=>be.value)}}function za(ge,De){if(ge===De.value)return De;for(const be of De.children){const Ne=za(ge,be);if(Ne)return Ne}return null}function Fr(ge,De){if(ge===De.value)return[De];for(const be of De.children){const Ne=Fr(ge,be);if(Ne.length)return Ne.unshift(De),Ne}return[]}class Ur{constructor(De,be){this.value=De,this.children=be}toString(){return`TreeNode(${this.value})`}}function yr(ge){const De={};return ge&&ge.children.forEach(be=>De[be.value.outlet]=be),De}class Ya extends hs{constructor(De,be){super(De),this.snapshot=be,ea(this,De)}toString(){return this.snapshot.toString()}}function xr(ge){const De=function ua(ge){const Rt=new Ba([],{},{},"",{},pe,ge,null,{});return new Ao("",new Ur(Rt,[]))}(ge),be=new l.t([new Ue("",{})]),Ne=new l.t({}),ft=new l.t({}),Rt=new l.t({}),Jt=new l.t(""),Mi=new hn(be,Ne,Rt,Jt,ft,pe,ge,De.root);return Mi.snapshot=De.root,new Ya(new Ur(Mi,[]),De)}class hn{constructor(De,be,Ne,ft,Rt,Jt,Mi,bi){this.urlSubject=De,this.paramsSubject=be,this.queryParamsSubject=Ne,this.fragmentSubject=ft,this.dataSubject=Rt,this.outlet=Jt,this.component=Mi,this._futureSnapshot=bi,this.title=this.dataSubject?.pipe((0,W.T)(cn=>cn[ze]))??(0,D.of)(void 0),this.url=De,this.params=be,this.queryParams=Ne,this.fragment=ft,this.data=Rt}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,W.T)(De=>We(De))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,W.T)(De=>We(De))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function Do(ge,De,be="emptyOnly"){let Ne;const{routeConfig:ft}=ge;return Ne=null===De||"always"!==be&&""!==ft?.path&&(De.component||De.routeConfig?.loadComponent)?{params:{...ge.params},data:{...ge.data},resolve:{...ge.data,...ge._resolvedData??{}}}:{params:{...De.params,...ge.params},data:{...De.data,...ge.data},resolve:{...ge.data,...De.data,...ft?.data,...ge._resolvedData}},ft&&fo(ft)&&(Ne.resolve[ze]=ft.title),Ne}class Ba{get title(){return this.data?.[ze]}constructor(De,be,Ne,ft,Rt,Jt,Mi,bi,cn){this.url=De,this.params=be,this.queryParams=Ne,this.fragment=ft,this.data=Rt,this.outlet=Jt,this.component=Mi,this.routeConfig=bi,this._resolve=cn}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??=We(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=We(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(Ne=>Ne.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class Ao extends hs{constructor(De,be){super(be),this.url=De,ea(this,be)}toString(){return _o(this._root)}}function ea(ge,De){De.value._routerState=ge,De.children.forEach(be=>ea(ge,be))}function _o(ge){const De=ge.children.length>0?` { ${ge.children.map(_o).join(", ")} } `:"";return`${ge.value}${De}`}function Va(ge){if(ge.snapshot){const De=ge.snapshot,be=ge._futureSnapshot;ge.snapshot=be,se(De.queryParams,be.queryParams)||ge.queryParamsSubject.next(be.queryParams),De.fragment!==be.fragment&&ge.fragmentSubject.next(be.fragment),se(De.params,be.params)||ge.paramsSubject.next(be.params),function X(ge,De){if(ge.length!==De.length)return!1;for(let be=0;bese(be.parameters,De[Ne].parameters))}(ge.url,De.url);return be&&!(!ge.parent!=!De.parent)&&(!ge.parent||ko(ge.parent,De.parent))}function fo(ge){return"string"==typeof ge.title||null===ge.title}let vo=(()=>{class ge{constructor(){this.activated=null,this._activatedRoute=null,this.name=pe,this.activateEvents=new e.bkB,this.deactivateEvents=new e.bkB,this.attachEvents=new e.bkB,this.detachEvents=new e.bkB,this.parentContexts=(0,e.WQX)(Or),this.location=(0,e.WQX)(e.c1b),this.changeDetector=(0,e.WQX)(e.gRc),this.inputBinder=(0,e.WQX)(Ea,{optional:!0}),this.supportsBindingToComponentInputs=!0}get activatedComponentRef(){return this.activated}ngOnChanges(be){if(be.name){const{firstChange:Ne,previousValue:ft}=be.name;if(Ne)return;this.isTrackedInParentContexts(ft)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(ft)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(be){return this.parentContexts.getContext(be)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const be=this.parentContexts.getContext(this.name);be?.route&&(be.attachRef?this.attach(be.attachRef,be.route):this.activateWith(be.route,be.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new e.wOt(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new e.wOt(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new e.wOt(4012,!1);this.location.detach();const be=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(be.instance),be}attach(be,Ne){this.activated=be,this._activatedRoute=Ne,this.location.insert(be.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(be.instance)}deactivate(){if(this.activated){const be=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(be)}}activateWith(be,Ne){if(this.isActivated)throw new e.wOt(4013,!1);this._activatedRoute=be;const ft=this.location,Jt=be.snapshot.component,Mi=this.parentContexts.getOrCreateContext(this.name).children,bi=new zr(be,Mi,ft.injector);this.activated=ft.createComponent(Jt,{index:ft.length,injector:bi,environmentInjector:Ne}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275dir=e.FsC({type:ge,selectors:[["router-outlet"]],inputs:{name:"name"},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],standalone:!0,features:[e.OA$]})}}return ge})();class zr{__ngOutletInjector(De){return new zr(this.route,this.childContexts,De)}constructor(De,be,Ne){this.route=De,this.childContexts=be,this.parent=Ne}get(De,be){return De===hn?this.route:De===Or?this.childContexts:this.parent.get(De,be)}}const Ea=new e.nKC("");let fa=(()=>{class ge{constructor(){this.outletDataSubscriptions=new Map}bindActivatedRouteToOutletComponent(be){this.unsubscribeFromRouteData(be),this.subscribeToRouteData(be)}unsubscribeFromRouteData(be){this.outletDataSubscriptions.get(be)?.unsubscribe(),this.outletDataSubscriptions.delete(be)}subscribeToRouteData(be){const{activatedRoute:Ne}=be,ft=(0,w.z)([Ne.queryParams,Ne.params,Ne.data]).pipe((0,Q.n)(([Rt,Jt,Mi],bi)=>(Mi={...Rt,...Jt,...Mi},0===bi?(0,D.of)(Mi):Promise.resolve(Mi)))).subscribe(Rt=>{if(!be.isActivated||!be.activatedComponentRef||be.activatedRoute!==Ne||null===Ne.component)return void this.unsubscribeFromRouteData(be);const Jt=(0,e.HJs)(Ne.component);if(Jt)for(const{templateName:Mi}of Jt.inputs)be.activatedComponentRef.setInput(Mi,Rt[Mi]);else this.unsubscribeFromRouteData(be)});this.outletDataSubscriptions.set(be,ft)}static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac})}}return ge})();function Ar(ge,De,be){if(be&&ge.shouldReuseRoute(De.value,be.value.snapshot)){const Ne=be.value;Ne._futureSnapshot=De.value;const ft=function Io(ge,De,be){return De.children.map(Ne=>{for(const ft of be.children)if(ge.shouldReuseRoute(Ne.value,ft.value.snapshot))return Ar(ge,Ne,ft);return Ar(ge,Ne)})}(ge,De,be);return new Ur(Ne,ft)}{if(ge.shouldAttach(De.value)){const Rt=ge.retrieve(De.value);if(null!==Rt){const Jt=Rt.route;return Jt.value._futureSnapshot=De.value,Jt.children=De.children.map(Mi=>Ar(ge,Mi)),Jt}}const Ne=function Ua(ge){return new hn(new l.t(ge.url),new l.t(ge.params),new l.t(ge.queryParams),new l.t(ge.fragment),new l.t(ge.data),ge.outlet,ge.component,ge)}(De.value),ft=De.children.map(Rt=>Ar(ge,Rt));return new Ur(Ne,ft)}}class ma{constructor(De,be){this.redirectTo=De,this.navigationBehaviorOptions=be}}const no="ngNavigationCancelingError";function ta(ge,De){const{redirectTo:be,navigationBehaviorOptions:Ne}=$t(De)?{redirectTo:De,navigationBehaviorOptions:void 0}:De,ft=Ro(!1,rt.Redirect);return ft.url=be,ft.navigationBehaviorOptions=Ne,ft}function Ro(ge,De){const be=new Error(`NavigationCancelingError: ${ge||""}`);return be[no]=!0,be.cancellationCode=De,be}function bo(ge){return!!ge&&ge[no]}class yo{constructor(De,be,Ne,ft,Rt){this.routeReuseStrategy=De,this.futureState=be,this.currState=Ne,this.forwardEvent=ft,this.inputBindingEnabled=Rt}activate(De){const be=this.futureState._root,Ne=this.currState?this.currState._root:null;this.deactivateChildRoutes(be,Ne,De),Va(this.futureState.root),this.activateChildRoutes(be,Ne,De)}deactivateChildRoutes(De,be,Ne){const ft=yr(be);De.children.forEach(Rt=>{const Jt=Rt.value.outlet;this.deactivateRoutes(Rt,ft[Jt],Ne),delete ft[Jt]}),Object.values(ft).forEach(Rt=>{this.deactivateRouteAndItsChildren(Rt,Ne)})}deactivateRoutes(De,be,Ne){const ft=De.value,Rt=be?be.value:null;if(ft===Rt)if(ft.component){const Jt=Ne.getContext(ft.outlet);Jt&&this.deactivateChildRoutes(De,be,Jt.children)}else this.deactivateChildRoutes(De,be,Ne);else Rt&&this.deactivateRouteAndItsChildren(be,Ne)}deactivateRouteAndItsChildren(De,be){De.value.component&&this.routeReuseStrategy.shouldDetach(De.value.snapshot)?this.detachAndStoreRouteSubtree(De,be):this.deactivateRouteAndOutlet(De,be)}detachAndStoreRouteSubtree(De,be){const Ne=be.getContext(De.value.outlet),ft=Ne&&De.value.component?Ne.children:be,Rt=yr(De);for(const Jt of Object.values(Rt))this.deactivateRouteAndItsChildren(Jt,ft);if(Ne&&Ne.outlet){const Jt=Ne.outlet.detach(),Mi=Ne.children.onOutletDeactivated();this.routeReuseStrategy.store(De.value.snapshot,{componentRef:Jt,route:De,contexts:Mi})}}deactivateRouteAndOutlet(De,be){const Ne=be.getContext(De.value.outlet),ft=Ne&&De.value.component?Ne.children:be,Rt=yr(De);for(const Jt of Object.values(Rt))this.deactivateRouteAndItsChildren(Jt,ft);Ne&&(Ne.outlet&&(Ne.outlet.deactivate(),Ne.children.onOutletDeactivated()),Ne.attachRef=null,Ne.route=null)}activateChildRoutes(De,be,Ne){const ft=yr(be);De.children.forEach(Rt=>{this.activateRoutes(Rt,ft[Rt.value.outlet],Ne),this.forwardEvent(new mi(Rt.value.snapshot))}),De.children.length&&this.forwardEvent(new Yi(De.value.snapshot))}activateRoutes(De,be,Ne){const ft=De.value,Rt=be?be.value:null;if(Va(ft),ft===Rt)if(ft.component){const Jt=Ne.getOrCreateContext(ft.outlet);this.activateChildRoutes(De,be,Jt.children)}else this.activateChildRoutes(De,be,Ne);else if(ft.component){const Jt=Ne.getOrCreateContext(ft.outlet);if(this.routeReuseStrategy.shouldAttach(ft.snapshot)){const Mi=this.routeReuseStrategy.retrieve(ft.snapshot);this.routeReuseStrategy.store(ft.snapshot,null),Jt.children.onOutletReAttached(Mi.contexts),Jt.attachRef=Mi.componentRef,Jt.route=Mi.route.value,Jt.outlet&&Jt.outlet.attach(Mi.componentRef,Mi.route.value),Va(Mi.route.value),this.activateChildRoutes(De,null,Jt.children)}else Jt.attachRef=null,Jt.route=ft,Jt.outlet&&Jt.outlet.activateWith(ft,Jt.injector),this.activateChildRoutes(De,null,Jt.children)}else this.activateChildRoutes(De,null,Ne)}}class ro{constructor(De){this.path=De,this.route=this.path[this.path.length-1]}}class Ka{constructor(De,be){this.component=De,this.route=be}}function Ga(ge,De,be){const Ne=ge._root;return Bo(Ne,De?De._root:null,be,[Ne.value])}function ia(ge,De){const be=Symbol(),Ne=De.get(ge,be);return Ne===be?"function"!=typeof ge||(0,e.LfX)(ge)?De.get(ge):ge:Ne}function Bo(ge,De,be,Ne,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Rt=yr(De);return ge.children.forEach(Jt=>{(function Ot(ge,De,be,Ne,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Rt=ge.value,Jt=De?De.value:null,Mi=be?be.getContext(ge.value.outlet):null;if(Jt&&Rt.routeConfig===Jt.routeConfig){const bi=function si(ge,De,be){if("function"==typeof be)return be(ge,De);switch(be){case"pathParamsChange":return!vt(ge.url,De.url);case"pathParamsOrQueryParamsChange":return!vt(ge.url,De.url)||!se(ge.queryParams,De.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!ko(ge,De)||!se(ge.queryParams,De.queryParams);default:return!ko(ge,De)}}(Jt,Rt,Rt.routeConfig.runGuardsAndResolvers);bi?ft.canActivateChecks.push(new ro(Ne)):(Rt.data=Jt.data,Rt._resolvedData=Jt._resolvedData),Bo(ge,De,Rt.component?Mi?Mi.children:null:be,Ne,ft),bi&&Mi&&Mi.outlet&&Mi.outlet.isActivated&&ft.canDeactivateChecks.push(new Ka(Mi.outlet.component,Jt))}else Jt&&wt(De,Mi,ft),ft.canActivateChecks.push(new ro(Ne)),Bo(ge,null,Rt.component?Mi?Mi.children:null:be,Ne,ft)})(Jt,Rt[Jt.value.outlet],be,Ne.concat([Jt.value]),ft),delete Rt[Jt.value.outlet]}),Object.entries(Rt).forEach(([Jt,Mi])=>wt(Mi,be.getContext(Jt),ft)),ft}function wt(ge,De,be){const Ne=yr(ge),ft=ge.value;Object.entries(Ne).forEach(([Rt,Jt])=>{wt(Jt,ft.component?De?De.children.getContext(Rt):null:De,be)}),be.canDeactivateChecks.push(new Ka(ft.component&&De&&De.outlet&&De.outlet.isActivated?De.outlet.component:null,ft))}function ni(ge){return"function"==typeof ge}function Zo(ge){return ge instanceof f.G||"EmptyError"===ge?.name}const $a=Symbol("INITIAL_VALUE");function Vo(){return(0,Q.n)(ge=>(0,w.z)(ge.map(De=>De.pipe((0,J.s)(1),(0,ie.Z)($a)))).pipe((0,W.T)(De=>{for(const be of De)if(!0!==be){if(be===$a)return $a;if(!1===be||Gr(be))return be}return!0}),(0,ee.p)(De=>De!==$a),(0,J.s)(1)))}function Gr(ge){return $t(ge)||ge instanceof ma}function Cr(ge){return(0,S.F)((0,Ce.M)(De=>{if("boolean"!=typeof De)throw ta(0,De)}),(0,W.T)(De=>!0===De))}class _c{constructor(De){this.segmentGroup=De||null}}class ks extends Error{constructor(De){super(),this.urlTree=De}}function Uo(ge){return(0,y.$)(new _c(ge))}class us{constructor(De,be){this.urlSerializer=De,this.urlTree=be}lineralizeSegments(De,be){let Ne=[],ft=be.root;for(;;){if(Ne=Ne.concat(ft.segments),0===ft.numberOfChildren)return(0,D.of)(Ne);if(ft.numberOfChildren>1||!ft.children[pe])return(0,y.$)(new e.wOt(4e3,!1));ft=ft.children[pe]}}applyRedirectCommands(De,be,Ne,ft,Rt){if("string"!=typeof be){const Mi=be,{queryParams:bi,fragment:cn,routeConfig:Pn,url:zn,outlet:Er,params:Cs,data:Sa,title:xc}=ft,Ta=(0,e.N4e)(Rt,()=>Mi({params:Cs,data:Sa,queryParams:bi,fragment:cn,routeConfig:Pn,url:zn,outlet:Er,title:xc}));if(Ta instanceof _e)throw new ks(Ta);be=Ta}const Jt=this.applyRedirectCreateUrlTree(be,this.urlSerializer.parse(be),De,Ne);if("/"===be[0])throw new ks(Jt);return Jt}applyRedirectCreateUrlTree(De,be,Ne,ft){const Rt=this.createSegmentGroup(De,be.root,Ne,ft);return new _e(Rt,this.createQueryParams(be.queryParams,this.urlTree.queryParams),be.fragment)}createQueryParams(De,be){const Ne={};return Object.entries(De).forEach(([ft,Rt])=>{if("string"==typeof Rt&&":"===Rt[0]){const Mi=Rt.substring(1);Ne[ft]=be[Mi]}else Ne[ft]=Rt}),Ne}createSegmentGroup(De,be,Ne,ft){const Rt=this.createSegments(De,be.segments,Ne,ft);let Jt={};return Object.entries(be.children).forEach(([Mi,bi])=>{Jt[Mi]=this.createSegmentGroup(De,bi,Ne,ft)}),new we(Rt,Jt)}createSegments(De,be,Ne,ft){return be.map(Rt=>":"===Rt.path[0]?this.findPosParam(De,Rt,ft):this.findOrReturn(Rt,Ne))}findPosParam(De,be,Ne){const ft=Ne[be.path.substring(1)];if(!ft)throw new e.wOt(4001,!1);return ft}findOrReturn(De,be){let Ne=0;for(const ft of be){if(ft.path===De.path)return be.splice(Ne),ft;Ne++}return De}}const vs={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Us(ge,De,be,Ne,ft){const Rt=jn(ge,De,be);return Rt.matched?(Ne=function On(ge,De){return ge.providers&&!ge._injector&&(ge._injector=(0,e.Ol2)(ge.providers,De,`Route: ${ge.path}`)),ge._injector??De}(De,Ne),function Qa(ge,De,be,Ne){const ft=De.canMatch;if(!ft||0===ft.length)return(0,D.of)(!0);const Rt=ft.map(Jt=>{const Mi=ia(Jt,ge);return st(function ao(ge){return ge&&ni(ge.canMatch)}(Mi)?Mi.canMatch(De,be):(0,e.N4e)(ge,()=>Mi(De,be)))});return(0,D.of)(Rt).pipe(Vo(),Cr())}(Ne,De,be).pipe((0,W.T)(Jt=>!0===Jt?Rt:{...vs}))):(0,D.of)(Rt)}function jn(ge,De,be){if("**"===De.path)return function na(ge){return{matched:!0,parameters:ge.length>0?Ie(ge).parameters:{},consumedSegments:ge,remainingSegments:[],positionalParamSegments:{}}}(be);if(""===De.path)return"full"===De.pathMatch&&(ge.hasChildren()||be.length>0)?{...vs}:{matched:!0,consumedSegments:[],remainingSegments:be,parameters:{},positionalParamSegments:{}};const ft=(De.matcher||oe)(be,ge,De);if(!ft)return{...vs};const Rt={};Object.entries(ft.posParams??{}).forEach(([Mi,bi])=>{Rt[Mi]=bi.path});const Jt=ft.consumed.length>0?{...Rt,...ft.consumed[ft.consumed.length-1].parameters}:Rt;return{matched:!0,consumedSegments:ft.consumed,remainingSegments:be.slice(ft.consumed.length),parameters:Jt,positionalParamSegments:ft.posParams??{}}}function Nr(ge,De,be,Ne){return be.length>0&&function dn(ge,De,be){return be.some(Ne=>qo(ge,De,Ne)&&qr(Ne)!==pe)}(ge,be,Ne)?{segmentGroup:new we(De,_a(Ne,new we(be,ge.children))),slicedSegments:[]}:0===be.length&&function Is(ge,De,be){return be.some(Ne=>qo(ge,De,Ne))}(ge,be,Ne)?{segmentGroup:new we(ge.segments,ca(ge,be,Ne,ge.children)),slicedSegments:be}:{segmentGroup:new we(ge.segments,ge.children),slicedSegments:be}}function ca(ge,De,be,Ne){const ft={};for(const Rt of be)if(qo(ge,De,Rt)&&!Ne[qr(Rt)]){const Jt=new we([],{});ft[qr(Rt)]=Jt}return{...Ne,...ft}}function _a(ge,De){const be={};be[pe]=De;for(const Ne of ge)if(""===Ne.path&&qr(Ne)!==pe){const ft=new we([],{});be[qr(Ne)]=ft}return be}function qo(ge,De,be){return(!(ge.hasChildren()||De.length>0)||"full"!==be.pathMatch)&&""===be.path}class rc{}class bs{constructor(De,be,Ne,ft,Rt,Jt,Mi){this.injector=De,this.configLoader=be,this.rootComponentType=Ne,this.config=ft,this.urlTree=Rt,this.paramsInheritanceStrategy=Jt,this.urlSerializer=Mi,this.applyRedirects=new us(this.urlSerializer,this.urlTree),this.absoluteRedirectCount=0,this.allowRedirects=!0}noMatchError(De){return new e.wOt(4002,`'${De.segmentGroup}'`)}recognize(){const De=Nr(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(De).pipe((0,W.T)(({children:be,rootSnapshot:Ne})=>{const ft=new Ur(Ne,be),Rt=new Ao("",ft),Jt=function Kt(ge,De,be=null,Ne=null){return ti(Ui(ge),De,be,Ne)}(Ne,[],this.urlTree.queryParams,this.urlTree.fragment);return Jt.queryParams=this.urlTree.queryParams,Rt.url=this.urlSerializer.serialize(Jt),{state:Rt,tree:Jt}}))}match(De){const be=new Ba([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Object.freeze({}),pe,this.rootComponentType,null,{});return this.processSegmentGroup(this.injector,this.config,De,pe,be).pipe((0,W.T)(Ne=>({children:Ne,rootSnapshot:be})),(0,le.W)(Ne=>{if(Ne instanceof ks)return this.urlTree=Ne.urlTree,this.match(Ne.urlTree.root);throw Ne instanceof _c?this.noMatchError(Ne):Ne}))}processSegmentGroup(De,be,Ne,ft,Rt){return 0===Ne.segments.length&&Ne.hasChildren()?this.processChildren(De,be,Ne,Rt):this.processSegment(De,be,Ne,Ne.segments,ft,!0,Rt).pipe((0,W.T)(Jt=>Jt instanceof Ur?[Jt]:[]))}processChildren(De,be,Ne,ft){const Rt=[];for(const Jt of Object.keys(Ne.children))"primary"===Jt?Rt.unshift(Jt):Rt.push(Jt);return(0,x.H)(Rt).pipe((0,Me.H)(Jt=>{const Mi=Ne.children[Jt],bi=function _s(ge,De){const be=ge.filter(Ne=>qr(Ne)===De);return be.push(...ge.filter(Ne=>qr(Ne)!==De)),be}(be,Jt);return this.processSegmentGroup(De,bi,Mi,Jt,ft)}),(0,T.S)((Jt,Mi)=>(Jt.push(...Mi),Jt)),(0,n.U)(null),function k(ge,De){const be=arguments.length>=2;return Ne=>Ne.pipe(ge?(0,ee.p)((ft,Rt)=>ge(ft,Rt,Ne)):A.D,d(1),be?(0,n.U)(De):(0,C.v)(()=>new f.G))}(),(0,fe.Z)(Jt=>{if(null===Jt)return Uo(Ne);const Mi=el(Jt);return function Fc(ge){ge.sort((De,be)=>De.value.outlet===pe?-1:be.value.outlet===pe?1:De.value.outlet.localeCompare(be.value.outlet))}(Mi),(0,D.of)(Mi)}))}processSegment(De,be,Ne,ft,Rt,Jt,Mi){return(0,x.H)(be).pipe((0,Me.H)(bi=>this.processSegmentAgainstRoute(bi._injector??De,be,bi,Ne,ft,Rt,Jt,Mi).pipe((0,le.W)(cn=>{if(cn instanceof _c)return(0,D.of)(null);throw cn}))),(0,ne.$)(bi=>!!bi),(0,le.W)(bi=>{if(Zo(bi))return function vc(ge,De,be){return 0===De.length&&!ge.children[be]}(Ne,ft,Rt)?(0,D.of)(new rc):Uo(Ne);throw bi}))}processSegmentAgainstRoute(De,be,Ne,ft,Rt,Jt,Mi,bi){return qr(Ne)===Jt||Jt!==pe&&qo(ft,Rt,Ne)?void 0===Ne.redirectTo?this.matchSegmentAgainstRoute(De,ft,Ne,Rt,Jt,bi):this.allowRedirects&&Mi?this.expandSegmentAgainstRouteUsingRedirect(De,ft,be,Ne,Rt,Jt,bi):Uo(ft):Uo(ft)}expandSegmentAgainstRouteUsingRedirect(De,be,Ne,ft,Rt,Jt,Mi){const{matched:bi,parameters:cn,consumedSegments:Pn,positionalParamSegments:zn,remainingSegments:Er}=jn(be,ft,Rt);if(!bi)return Uo(be);"string"==typeof ft.redirectTo&&"/"===ft.redirectTo[0]&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const Cs=new Ba(Rt,cn,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Gs(ft),qr(ft),ft.component??ft._loadedComponent??null,ft,Hs(ft)),Sa=Do(Cs,Mi,this.paramsInheritanceStrategy);Cs.params=Object.freeze(Sa.params),Cs.data=Object.freeze(Sa.data);const xc=this.applyRedirects.applyRedirectCommands(Pn,ft.redirectTo,zn,Cs,De);return this.applyRedirects.lineralizeSegments(ft,xc).pipe((0,fe.Z)(Ta=>this.processSegment(De,Ne,be,Ta.concat(Er),Jt,!1,Mi)))}matchSegmentAgainstRoute(De,be,Ne,ft,Rt,Jt){const Mi=Us(be,Ne,ft,De);return"**"===Ne.path&&(be.children={}),Mi.pipe((0,Q.n)(bi=>bi.matched?this.getChildConfig(De=Ne._injector??De,Ne,ft).pipe((0,Q.n)(({routes:cn})=>{const Pn=Ne._loadedInjector??De,{parameters:zn,consumedSegments:Er,remainingSegments:Cs}=bi,Sa=new Ba(Er,zn,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Gs(Ne),qr(Ne),Ne.component??Ne._loadedComponent??null,Ne,Hs(Ne)),xc=Do(Sa,Jt,this.paramsInheritanceStrategy);Sa.params=Object.freeze(xc.params),Sa.data=Object.freeze(xc.data);const{segmentGroup:Ta,slicedSegments:wo}=Nr(be,Er,Cs,cn);if(0===wo.length&&Ta.hasChildren())return this.processChildren(Pn,cn,Ta,Sa).pipe((0,W.T)(Cc=>new Ur(Sa,Cc)));if(0===cn.length&&0===wo.length)return(0,D.of)(new Ur(Sa,[]));const Ll=qr(Ne)===Rt;return this.processSegment(Pn,cn,Ta,wo,Ll?pe:Rt,!0,Sa).pipe((0,W.T)(Cc=>new Ur(Sa,Cc instanceof Ur?[Cc]:[])))})):Uo(be)))}getChildConfig(De,be,Ne){return be.children?(0,D.of)({routes:be.children,injector:De}):be.loadChildren?void 0!==be._loadedRoutes?(0,D.of)({routes:be._loadedRoutes,injector:be._loadedInjector}):function Oo(ge,De,be,Ne){const ft=De.canLoad;if(void 0===ft||0===ft.length)return(0,D.of)(!0);const Rt=ft.map(Jt=>{const Mi=ia(Jt,ge);return st(function Ji(ge){return ge&&ni(ge.canLoad)}(Mi)?Mi.canLoad(De,be):(0,e.N4e)(ge,()=>Mi(De,be)))});return(0,D.of)(Rt).pipe(Vo(),Cr())}(De,be,Ne).pipe((0,fe.Z)(ft=>ft?this.configLoader.loadChildren(De,be).pipe((0,Ce.M)(Rt=>{be._loadedRoutes=Rt.routes,be._loadedInjector=Rt.injector})):function Jo(){return(0,y.$)(Ro(!1,rt.GuardRejected))}())):(0,D.of)({routes:[],injector:De})}}function ac(ge){const De=ge.value.routeConfig;return De&&""===De.path}function el(ge){const De=[],be=new Set;for(const Ne of ge){if(!ac(Ne)){De.push(Ne);continue}const ft=De.find(Rt=>Ne.value.routeConfig===Rt.value.routeConfig);void 0!==ft?(ft.children.push(...Ne.children),be.add(ft)):De.push(Ne)}for(const Ne of be){const ft=el(Ne.children);De.push(new Ur(Ne.value,ft))}return De.filter(Ne=>!be.has(Ne))}function Gs(ge){return ge.data||{}}function Hs(ge){return ge.resolve||{}}function es(ge){const De=ge.children.map(be=>es(be)).flat();return[ge,...De]}function ys(ge){return(0,Q.n)(De=>{const be=ge(De);return be?(0,x.H)(be).pipe((0,W.T)(()=>De)):(0,D.of)(De)})}let sc=(()=>{class ge{buildTitle(be){let Ne,ft=be.root;for(;void 0!==ft;)Ne=this.getResolvedTitleForRoute(ft)??Ne,ft=ft.children.find(Rt=>Rt.outlet===pe);return Ne}getResolvedTitleForRoute(be){return be.data[ze]}static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:()=>(0,e.WQX)(zc),providedIn:"root"})}}return ge})(),zc=(()=>{class ge extends sc{constructor(be){super(),this.title=be}updateTitle(be){const Ne=this.buildTitle(be);void 0!==Ne&&this.title.setTitle(Ne)}static{this.\u0275fac=function(Ne){return new(Ne||ge)(e.KVO(q.hE))}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})();const Za=new e.nKC("",{providedIn:"root",factory:()=>({})});let Rs=(()=>{class ge{static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275cmp=e.VBU({type:ge,selectors:[["ng-component"]],standalone:!0,features:[e.aNF],decls:1,vars:0,template:function(Ne,ft){1&Ne&&e.nrm(0,"router-outlet")},dependencies:[vo],encapsulation:2})}}return ge})();function bc(ge){const De=ge.children&&ge.children.map(bc),be=De?{...ge,children:De}:{...ge};return!be.component&&!be.loadComponent&&(De||be.loadChildren)&&be.outlet&&be.outlet!==pe&&(be.component=Rs),be}const Ys=new e.nKC("");let tl=(()=>{class ge{constructor(){this.componentLoaders=new WeakMap,this.childrenLoaders=new WeakMap,this.compiler=(0,e.WQX)(e.Ql9)}loadComponent(be){if(this.componentLoaders.get(be))return this.componentLoaders.get(be);if(be._loadedComponent)return(0,D.of)(be._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(be);const Ne=st(be.loadComponent()).pipe((0,W.T)(Ht),(0,Ce.M)(Rt=>{this.onLoadEndListener&&this.onLoadEndListener(be),be._loadedComponent=Rt}),(0,a.j)(()=>{this.componentLoaders.delete(be)})),ft=new I.G(Ne,()=>new V.B).pipe((0,b.B)());return this.componentLoaders.set(be,ft),ft}loadChildren(be,Ne){if(this.childrenLoaders.get(Ne))return this.childrenLoaders.get(Ne);if(Ne._loadedRoutes)return(0,D.of)({routes:Ne._loadedRoutes,injector:Ne._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(Ne);const Rt=function mt(ge,De,be,Ne){return st(ge.loadChildren()).pipe((0,W.T)(Ht),(0,fe.Z)(ft=>ft instanceof e.Co$||Array.isArray(ft)?(0,D.of)(ft):(0,x.H)(De.compileModuleAsync(ft))),(0,W.T)(ft=>{Ne&&Ne(ge);let Rt,Jt,Mi=!1;return Array.isArray(ft)?(Jt=ft,!0):(Rt=ft.create(be).injector,Jt=Rt.get(Ys,[],{optional:!0,self:!0}).flat()),{routes:Jt.map(bc),injector:Rt}}))}(Ne,this.compiler,be,this.onLoadEndListener).pipe((0,a.j)(()=>{this.childrenLoaders.delete(Ne)})),Jt=new I.G(Rt,()=>new V.B).pipe((0,b.B)());return this.childrenLoaders.set(Ne,Jt),Jt}static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})();function Ht(ge){return function Vt(ge){return ge&&"object"==typeof ge&&"default"in ge}(ge)?ge.default:ge}let ei=(()=>{class ge{static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:()=>(0,e.WQX)(ci),providedIn:"root"})}}return ge})(),ci=(()=>{class ge{shouldProcessUrl(be){return!0}extract(be){return be}merge(be,Ne){return be}static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})();const yi=new e.nKC(""),Oi=new e.nKC("");function ji(ge,De,be){const Ne=ge.get(Oi),ft=ge.get(Y.qQ);return ge.get(e.SKi).runOutsideAngular(()=>{if(!ft.startViewTransition||Ne.skipNextTransition)return Ne.skipNextTransition=!1,new Promise(cn=>setTimeout(cn));let Rt;const Jt=new Promise(cn=>{Rt=cn}),Mi=ft.startViewTransition(()=>(Rt(),function pn(ge){return new Promise(De=>{(0,e.mal)({read:()=>setTimeout(De)},{injector:ge})})}(ge))),{onViewTransitionCreated:bi}=Ne;return bi&&(0,e.N4e)(ge,()=>bi({transition:Mi,from:De,to:be})),Jt})}const _n=new e.nKC("");let Wn=(()=>{class ge{get hasRequestedNavigation(){return 0!==this.navigationId}constructor(){this.currentNavigation=null,this.currentTransition=null,this.lastSuccessfulNavigation=null,this.events=new V.B,this.transitionAbortSubject=new V.B,this.configLoader=(0,e.WQX)(tl),this.environmentInjector=(0,e.WQX)(e.uvJ),this.urlSerializer=(0,e.WQX)(nt),this.rootContexts=(0,e.WQX)(Or),this.location=(0,e.WQX)(Y.aZ),this.inputBindingEnabled=null!==(0,e.WQX)(Ea,{optional:!0}),this.titleStrategy=(0,e.WQX)(sc),this.options=(0,e.WQX)(Za,{optional:!0})||{},this.paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly",this.urlHandlingStrategy=(0,e.WQX)(ei),this.createViewTransition=(0,e.WQX)(yi,{optional:!0}),this.navigationErrorHandler=(0,e.WQX)(_n,{optional:!0}),this.navigationId=0,this.afterPreactivation=()=>(0,D.of)(void 0),this.rootComponentType=null,this.configLoader.onLoadEndListener=ft=>this.events.next(new wn(ft)),this.configLoader.onLoadStartListener=ft=>this.events.next(new dr(ft))}complete(){this.transitions?.complete()}handleNavigationRequest(be){const Ne=++this.navigationId;this.transitions?.next({...this.transitions.value,...be,id:Ne})}setupNavigations(be,Ne,ft){return this.transitions=new l.t({id:0,currentUrlTree:Ne,currentRawUrl:Ne,extractedUrl:this.urlHandlingStrategy.extract(Ne),urlAfterRedirects:this.urlHandlingStrategy.extract(Ne),rawUrl:Ne,extras:{},resolve:()=>{},reject:()=>{},promise:Promise.resolve(!0),source:Ut,restoredState:null,currentSnapshot:ft.snapshot,targetSnapshot:null,currentRouterState:ft,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.transitions.pipe((0,ee.p)(Rt=>0!==Rt.id),(0,W.T)(Rt=>({...Rt,extractedUrl:this.urlHandlingStrategy.extract(Rt.rawUrl)})),(0,Q.n)(Rt=>{let Jt=!1,Mi=!1;return(0,D.of)(Rt).pipe((0,Q.n)(bi=>{if(this.navigationId>Rt.id)return this.cancelNavigationTransition(Rt,"",rt.SupersededByNewNavigation),O.w;this.currentTransition=Rt,this.currentNavigation={id:bi.id,initialUrl:bi.rawUrl,extractedUrl:bi.extractedUrl,targetBrowserUrl:"string"==typeof bi.extras.browserUrl?this.urlSerializer.parse(bi.extras.browserUrl):bi.extras.browserUrl,trigger:bi.source,extras:bi.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null};const cn=!be.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!cn&&"reload"!==(bi.extras.onSameUrlNavigation??be.onSameUrlNavigation)){const zn="";return this.events.next(new di(bi.id,this.urlSerializer.serialize(bi.rawUrl),zn,ht.IgnoredSameUrlNavigation)),bi.resolve(!1),O.w}if(this.urlHandlingStrategy.shouldProcessUrl(bi.rawUrl))return(0,D.of)(bi).pipe((0,Q.n)(zn=>{const Er=this.transitions?.getValue();return this.events.next(new He(zn.id,this.urlSerializer.serialize(zn.extractedUrl),zn.source,zn.restoredState)),Er!==this.transitions?.getValue()?O.w:Promise.resolve(zn)}),function js(ge,De,be,Ne,ft,Rt){return(0,fe.Z)(Jt=>function xo(ge,De,be,Ne,ft,Rt,Jt="emptyOnly"){return new bs(ge,De,be,Ne,ft,Jt,Rt).recognize()}(ge,De,be,Ne,Jt.extractedUrl,ft,Rt).pipe((0,W.T)(({state:Mi,tree:bi})=>({...Jt,targetSnapshot:Mi,urlAfterRedirects:bi}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,be.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,Ce.M)(zn=>{Rt.targetSnapshot=zn.targetSnapshot,Rt.urlAfterRedirects=zn.urlAfterRedirects,this.currentNavigation={...this.currentNavigation,finalUrl:zn.urlAfterRedirects};const Er=new Cn(zn.id,this.urlSerializer.serialize(zn.extractedUrl),this.urlSerializer.serialize(zn.urlAfterRedirects),zn.targetSnapshot);this.events.next(Er)}));if(cn&&this.urlHandlingStrategy.shouldProcessUrl(bi.currentRawUrl)){const{id:zn,extractedUrl:Er,source:Cs,restoredState:Sa,extras:xc}=bi,Ta=new He(zn,this.urlSerializer.serialize(Er),Cs,Sa);this.events.next(Ta);const wo=xr(this.rootComponentType).snapshot;return this.currentTransition=Rt={...bi,targetSnapshot:wo,urlAfterRedirects:Er,extras:{...xc,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.finalUrl=Er,(0,D.of)(Rt)}{const zn="";return this.events.next(new di(bi.id,this.urlSerializer.serialize(bi.extractedUrl),zn,ht.IgnoredByUrlHandlingStrategy)),bi.resolve(!1),O.w}}),(0,Ce.M)(bi=>{const cn=new Hn(bi.id,this.urlSerializer.serialize(bi.extractedUrl),this.urlSerializer.serialize(bi.urlAfterRedirects),bi.targetSnapshot);this.events.next(cn)}),(0,W.T)(bi=>(this.currentTransition=Rt={...bi,guards:Ga(bi.targetSnapshot,bi.currentSnapshot,this.rootContexts)},Rt)),function Pi(ge,De){return(0,fe.Z)(be=>{const{targetSnapshot:Ne,currentSnapshot:ft,guards:{canActivateChecks:Rt,canDeactivateChecks:Jt}}=be;return 0===Jt.length&&0===Rt.length?(0,D.of)({...be,guardsResult:!0}):function it(ge,De,be,Ne){return(0,x.H)(ge).pipe((0,fe.Z)(ft=>function er(ge,De,be,Ne,ft){const Rt=De&&De.routeConfig?De.routeConfig.canDeactivate:null;if(!Rt||0===Rt.length)return(0,D.of)(!0);const Jt=Rt.map(Mi=>{const bi=Ma(De)??ft,cn=ia(Mi,bi);return st(function Ra(ge){return ge&&ni(ge.canDeactivate)}(cn)?cn.canDeactivate(ge,De,be,Ne):(0,e.N4e)(bi,()=>cn(ge,De,be,Ne))).pipe((0,ne.$)())});return(0,D.of)(Jt).pipe(Vo())}(ft.component,ft.route,be,De,Ne)),(0,ne.$)(ft=>!0!==ft,!0))}(Jt,Ne,ft,ge).pipe((0,fe.Z)(Mi=>Mi&&function Ei(ge){return"boolean"==typeof ge}(Mi)?function ut(ge,De,be,Ne){return(0,x.H)(De).pipe((0,Me.H)(ft=>(0,R.x)(function Dt(ge,De){return null!==ge&&De&&De(new Ai(ge)),(0,D.of)(!0)}(ft.route.parent,Ne),function Ve(ge,De){return null!==ge&&De&&De(new Ft(ge)),(0,D.of)(!0)}(ft.route,Ne),function vn(ge,De,be){const Ne=De[De.length-1],Rt=De.slice(0,De.length-1).reverse().map(Jt=>function sr(ge){const De=ge.routeConfig?ge.routeConfig.canActivateChild:null;return De&&0!==De.length?{node:ge,guards:De}:null}(Jt)).filter(Jt=>null!==Jt).map(Jt=>(0,h.v)(()=>{const Mi=Jt.guards.map(bi=>{const cn=Ma(Jt.node)??be,Pn=ia(bi,cn);return st(function ga(ge){return ge&&ni(ge.canActivateChild)}(Pn)?Pn.canActivateChild(Ne,ge):(0,e.N4e)(cn,()=>Pn(Ne,ge))).pipe((0,ne.$)())});return(0,D.of)(Mi).pipe(Vo())}));return(0,D.of)(Rt).pipe(Vo())}(ge,ft.path,be),function ai(ge,De,be){const Ne=De.routeConfig?De.routeConfig.canActivate:null;if(!Ne||0===Ne.length)return(0,D.of)(!0);const ft=Ne.map(Rt=>(0,h.v)(()=>{const Jt=Ma(De)??be,Mi=ia(Rt,Jt);return st(function cr(ge){return ge&&ni(ge.canActivate)}(Mi)?Mi.canActivate(De,ge):(0,e.N4e)(Jt,()=>Mi(De,ge))).pipe((0,ne.$)())}));return(0,D.of)(ft).pipe(Vo())}(ge,ft.route,be))),(0,ne.$)(ft=>!0!==ft,!0))}(Ne,Rt,ge,De):(0,D.of)(Mi)),(0,W.T)(Mi=>({...be,guardsResult:Mi})))})}(this.environmentInjector,bi=>this.events.next(bi)),(0,Ce.M)(bi=>{if(Rt.guardsResult=bi.guardsResult,bi.guardsResult&&"boolean"!=typeof bi.guardsResult)throw ta(0,bi.guardsResult);const cn=new Qn(bi.id,this.urlSerializer.serialize(bi.extractedUrl),this.urlSerializer.serialize(bi.urlAfterRedirects),bi.targetSnapshot,!!bi.guardsResult);this.events.next(cn)}),(0,ee.p)(bi=>!!bi.guardsResult||(this.cancelNavigationTransition(bi,"",rt.GuardRejected),!1)),ys(bi=>{if(bi.guards.canActivateChecks.length)return(0,D.of)(bi).pipe((0,Ce.M)(cn=>{const Pn=new Jn(cn.id,this.urlSerializer.serialize(cn.extractedUrl),this.urlSerializer.serialize(cn.urlAfterRedirects),cn.targetSnapshot);this.events.next(Pn)}),(0,Q.n)(cn=>{let Pn=!1;return(0,D.of)(cn).pipe(function Ws(ge,De){return(0,fe.Z)(be=>{const{targetSnapshot:Ne,guards:{canActivateChecks:ft}}=be;if(!ft.length)return(0,D.of)(be);const Rt=new Set(ft.map(bi=>bi.route)),Jt=new Set;for(const bi of Rt)if(!Jt.has(bi))for(const cn of es(bi))Jt.add(cn);let Mi=0;return(0,x.H)(Jt).pipe((0,Me.H)(bi=>Rt.has(bi)?function Pc(ge,De,be,Ne){const ft=ge.routeConfig,Rt=ge._resolve;return void 0!==ft?.title&&!fo(ft)&&(Rt[ze]=ft.title),function Xs(ge,De,be,Ne){const ft=ae(ge);if(0===ft.length)return(0,D.of)({});const Rt={};return(0,x.H)(ft).pipe((0,fe.Z)(Jt=>function oc(ge,De,be,Ne){const ft=Ma(De)??Ne,Rt=ia(ge,ft);return st(Rt.resolve?Rt.resolve(De,be):(0,e.N4e)(ft,()=>Rt(De,be)))}(ge[Jt],De,be,Ne).pipe((0,ne.$)(),(0,Ce.M)(Mi=>{if(Mi instanceof ma)throw ta(new qt,Mi);Rt[Jt]=Mi}))),d(1),(0,_.u)(Rt),(0,le.W)(Jt=>Zo(Jt)?O.w:(0,y.$)(Jt)))}(Rt,ge,De,Ne).pipe((0,W.T)(Jt=>(ge._resolvedData=Jt,ge.data=Do(ge,ge.parent,be).resolve,null)))}(bi,Ne,ge,De):(bi.data=Do(bi,bi.parent,ge).resolve,(0,D.of)(void 0))),(0,Ce.M)(()=>Mi++),d(1),(0,fe.Z)(bi=>Mi===Jt.size?(0,D.of)(be):O.w))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,Ce.M)({next:()=>Pn=!0,complete:()=>{Pn||this.cancelNavigationTransition(cn,"",rt.NoDataFromResolver)}}))}),(0,Ce.M)(cn=>{const Pn=new nr(cn.id,this.urlSerializer.serialize(cn.extractedUrl),this.urlSerializer.serialize(cn.urlAfterRedirects),cn.targetSnapshot);this.events.next(Pn)}))}),ys(bi=>{const cn=Pn=>{const zn=[];Pn.routeConfig?.loadComponent&&!Pn.routeConfig._loadedComponent&&zn.push(this.configLoader.loadComponent(Pn.routeConfig).pipe((0,Ce.M)(Er=>{Pn.component=Er}),(0,W.T)(()=>{})));for(const Er of Pn.children)zn.push(...cn(Er));return zn};return(0,w.z)(cn(bi.targetSnapshot.root)).pipe((0,n.U)(null),(0,J.s)(1))}),ys(()=>this.afterPreactivation()),(0,Q.n)(()=>{const{currentSnapshot:bi,targetSnapshot:cn}=Rt,Pn=this.createViewTransition?.(this.environmentInjector,bi.root,cn.root);return Pn?(0,x.H)(Pn).pipe((0,W.T)(()=>Rt)):(0,D.of)(Rt)}),(0,W.T)(bi=>{const cn=function Bs(ge,De,be){const Ne=Ar(ge,De._root,be?be._root:void 0);return new Ya(Ne,De)}(be.routeReuseStrategy,bi.targetSnapshot,bi.currentRouterState);return this.currentTransition=Rt={...bi,targetRouterState:cn},this.currentNavigation.targetRouterState=cn,Rt}),(0,Ce.M)(()=>{this.events.next(new xi)}),((ge,De,be,Ne)=>(0,W.T)(ft=>(new yo(De,ft.targetRouterState,ft.currentRouterState,be,Ne).activate(ge),ft)))(this.rootContexts,be.routeReuseStrategy,bi=>this.events.next(bi),this.inputBindingEnabled),(0,J.s)(1),(0,Ce.M)({next:bi=>{Jt=!0,this.lastSuccessfulNavigation=this.currentNavigation,this.events.next(new ye(bi.id,this.urlSerializer.serialize(bi.extractedUrl),this.urlSerializer.serialize(bi.urlAfterRedirects))),this.titleStrategy?.updateTitle(bi.targetRouterState.snapshot),bi.resolve(!0)},complete:()=>{Jt=!0}}),(0,z.Q)(this.transitionAbortSubject.pipe((0,Ce.M)(bi=>{throw bi}))),(0,a.j)(()=>{!Jt&&!Mi&&this.cancelNavigationTransition(Rt,"",rt.SupersededByNewNavigation),this.currentTransition?.id===Rt.id&&(this.currentNavigation=null,this.currentTransition=null)}),(0,le.W)(bi=>{if(Mi=!0,bo(bi))this.events.next(new ii(Rt.id,this.urlSerializer.serialize(Rt.extractedUrl),bi.message,bi.cancellationCode)),function As(ge){return bo(ge)&&$t(ge.url)}(bi)?this.events.next(new Ni(bi.url,bi.navigationBehaviorOptions)):Rt.resolve(!1);else{const cn=new Gi(Rt.id,this.urlSerializer.serialize(Rt.extractedUrl),bi,Rt.targetSnapshot??void 0);try{const Pn=(0,e.N4e)(this.environmentInjector,()=>this.navigationErrorHandler?.(cn));if(Pn instanceof ma){const{message:zn,cancellationCode:Er}=ta(0,Pn);this.events.next(new ii(Rt.id,this.urlSerializer.serialize(Rt.extractedUrl),zn,Er)),this.events.next(new Ni(Pn.redirectTo,Pn.navigationBehaviorOptions))}else{this.events.next(cn);const zn=be.errorHandler(bi);Rt.resolve(!!zn)}}catch(Pn){this.options.resolveNavigationPromiseOnError?Rt.resolve(!1):Rt.reject(Pn)}}return O.w}))}))}cancelNavigationTransition(be,Ne,ft){const Rt=new ii(be.id,this.urlSerializer.serialize(be.extractedUrl),Ne,ft);this.events.next(Rt),be.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){const be=this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))),Ne=this.currentNavigation?.targetBrowserUrl??this.currentNavigation?.extractedUrl;return be.toString()!==Ne?.toString()&&!this.currentNavigation?.extras.skipLocationChange}static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})();function xe(ge){return ge!==Ut}let bt=(()=>{class ge{static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:()=>(0,e.WQX)(gt),providedIn:"root"})}}return ge})();class Ye{shouldDetach(De){return!1}store(De,be){}shouldAttach(De){return!1}retrieve(De){return null}shouldReuseRoute(De,be){return De.routeConfig===be.routeConfig}}let gt=(()=>{class ge extends Ye{static{this.\u0275fac=(()=>{let be;return function(ft){return(be||(be=e.xGo(ge)))(ft||ge)}})()}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})(),Zt=(()=>{class ge{static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:()=>(0,e.WQX)(Si),providedIn:"root"})}}return ge})(),Si=(()=>{class ge extends Zt{constructor(){super(...arguments),this.location=(0,e.WQX)(Y.aZ),this.urlSerializer=(0,e.WQX)(nt),this.options=(0,e.WQX)(Za,{optional:!0})||{},this.canceledNavigationResolution=this.options.canceledNavigationResolution||"replace",this.urlHandlingStrategy=(0,e.WQX)(ei),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.currentUrlTree=new _e,this.rawUrlTree=this.currentUrlTree,this.currentPageId=0,this.lastSuccessfulId=-1,this.routerState=xr(null),this.stateMemento=this.createStateMemento()}getCurrentUrlTree(){return this.currentUrlTree}getRawUrlTree(){return this.rawUrlTree}restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}getRouterState(){return this.routerState}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}registerNonRouterCurrentEntryChangeListener(be){return this.location.subscribe(Ne=>{"popstate"===Ne.type&&be(Ne.url,Ne.state)})}handleRouterEvent(be,Ne){if(be instanceof He)this.stateMemento=this.createStateMemento();else if(be instanceof di)this.rawUrlTree=Ne.initialUrl;else if(be instanceof Cn){if("eager"===this.urlUpdateStrategy&&!Ne.extras.skipLocationChange){const ft=this.urlHandlingStrategy.merge(Ne.finalUrl,Ne.initialUrl);this.setBrowserUrl(Ne.targetBrowserUrl??ft,Ne)}}else be instanceof xi?(this.currentUrlTree=Ne.finalUrl,this.rawUrlTree=this.urlHandlingStrategy.merge(Ne.finalUrl,Ne.initialUrl),this.routerState=Ne.targetRouterState,"deferred"===this.urlUpdateStrategy&&!Ne.extras.skipLocationChange&&this.setBrowserUrl(Ne.targetBrowserUrl??this.rawUrlTree,Ne)):be instanceof ii&&(be.code===rt.GuardRejected||be.code===rt.NoDataFromResolver)?this.restoreHistory(Ne):be instanceof Gi?this.restoreHistory(Ne,!0):be instanceof ye&&(this.lastSuccessfulId=be.id,this.currentPageId=this.browserPageId)}setBrowserUrl(be,Ne){const ft=be instanceof _e?this.urlSerializer.serialize(be):be;if(this.location.isCurrentPathEqualTo(ft)||Ne.extras.replaceUrl){const Jt={...Ne.extras.state,...this.generateNgRouterState(Ne.id,this.browserPageId)};this.location.replaceState(ft,"",Jt)}else{const Rt={...Ne.extras.state,...this.generateNgRouterState(Ne.id,this.browserPageId+1)};this.location.go(ft,"",Rt)}}restoreHistory(be,Ne=!1){if("computed"===this.canceledNavigationResolution){const Rt=this.currentPageId-this.browserPageId;0!==Rt?this.location.historyGo(Rt):this.currentUrlTree===be.finalUrl&&0===Rt&&(this.resetState(be),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(Ne&&this.resetState(be),this.resetUrlToCurrentUrlTree())}resetState(be){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,be.finalUrl??this.rawUrlTree)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(be,Ne){return"computed"===this.canceledNavigationResolution?{navigationId:be,\u0275routerPageId:Ne}:{navigationId:be}}static{this.\u0275fac=(()=>{let be;return function(ft){return(be||(be=e.xGo(ge)))(ft||ge)}})()}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})();var Ii=function(ge){return ge[ge.COMPLETE=0]="COMPLETE",ge[ge.FAILED=1]="FAILED",ge[ge.REDIRECTING=2]="REDIRECTING",ge}(Ii||{});function on(ge,De){ge.events.pipe((0,ee.p)(be=>be instanceof ye||be instanceof ii||be instanceof Gi||be instanceof di),(0,W.T)(be=>be instanceof ye||be instanceof di?Ii.COMPLETE:be instanceof ii&&(be.code===rt.Redirect||be.code===rt.SupersededByNewNavigation)?Ii.REDIRECTING:Ii.FAILED),(0,ee.p)(be=>be!==Ii.REDIRECTING),(0,J.s)(1)).subscribe(()=>{De()})}function Kn(ge){throw ge}const wr={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},pr={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let Fn=(()=>{class ge{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}constructor(){this.disposed=!1,this.console=(0,e.WQX)(e.H3F),this.stateManager=(0,e.WQX)(Zt),this.options=(0,e.WQX)(Za,{optional:!0})||{},this.pendingTasks=(0,e.WQX)(e.TgB),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.navigationTransitions=(0,e.WQX)(Wn),this.urlSerializer=(0,e.WQX)(nt),this.location=(0,e.WQX)(Y.aZ),this.urlHandlingStrategy=(0,e.WQX)(ei),this._events=new V.B,this.errorHandler=this.options.errorHandler||Kn,this.navigated=!1,this.routeReuseStrategy=(0,e.WQX)(bt),this.onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore",this.config=(0,e.WQX)(Ys,{optional:!0})?.flat()??[],this.componentInputBindingEnabled=!!(0,e.WQX)(Ea,{optional:!0}),this.eventsSubscription=new j.yU,this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this,this.currentUrlTree,this.routerState).subscribe({error:be=>{this.console.warn(be)}}),this.subscribeToNavigationEvents()}subscribeToNavigationEvents(){const be=this.navigationTransitions.events.subscribe(Ne=>{try{const ft=this.navigationTransitions.currentTransition,Rt=this.navigationTransitions.currentNavigation;if(null!==ft&&null!==Rt)if(this.stateManager.handleRouterEvent(Ne,Rt),Ne instanceof ii&&Ne.code!==rt.Redirect&&Ne.code!==rt.SupersededByNewNavigation)this.navigated=!0;else if(Ne instanceof ye)this.navigated=!0;else if(Ne instanceof Ni){const Jt=Ne.navigationBehaviorOptions,Mi=this.urlHandlingStrategy.merge(Ne.url,ft.currentRawUrl),bi={browserUrl:ft.extras.browserUrl,info:ft.extras.info,skipLocationChange:ft.extras.skipLocationChange,replaceUrl:ft.extras.replaceUrl||"eager"===this.urlUpdateStrategy||xe(ft.source),...Jt};this.scheduleNavigation(Mi,Ut,null,bi,{resolve:ft.resolve,reject:ft.reject,promise:ft.promise})}(function Dn(ge){return!(ge instanceof xi||ge instanceof Ni)})(Ne)&&this._events.next(Ne)}catch(ft){this.navigationTransitions.transitionAbortSubject.next(ft)}});this.eventsSubscription.add(be)}resetRootComponentType(be){this.routerState.root.component=be,this.navigationTransitions.rootComponentType=be}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),Ut,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((be,Ne)=>{setTimeout(()=>{this.navigateToSyncWithBrowser(be,"popstate",Ne)},0)})}navigateToSyncWithBrowser(be,Ne,ft){const Rt={replaceUrl:!0},Jt=ft?.navigationId?ft:null;if(ft){const bi={...ft};delete bi.navigationId,delete bi.\u0275routerPageId,0!==Object.keys(bi).length&&(Rt.state=bi)}const Mi=this.parseUrl(be);this.scheduleNavigation(Mi,Ne,Jt,Rt)}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.navigationTransitions.currentNavigation}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(be){this.config=be.map(bc),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(be,Ne={}){const{relativeTo:ft,queryParams:Rt,fragment:Jt,queryParamsHandling:Mi,preserveFragment:bi}=Ne,cn=bi?this.currentUrlTree.fragment:Jt;let zn,Pn=null;switch(Mi??this.options.defaultQueryParamsHandling){case"merge":Pn={...this.currentUrlTree.queryParams,...Rt};break;case"preserve":Pn=this.currentUrlTree.queryParams;break;default:Pn=Rt||null}null!==Pn&&(Pn=this.removeEmptyProps(Pn));try{zn=Ui(ft?ft.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof be[0]||"/"!==be[0][0])&&(be=[]),zn=this.currentUrlTree.root}return ti(zn,be,Pn,cn??null)}navigateByUrl(be,Ne={skipLocationChange:!1}){const ft=$t(be)?be:this.parseUrl(be),Rt=this.urlHandlingStrategy.merge(ft,this.rawUrlTree);return this.scheduleNavigation(Rt,Ut,null,Ne)}navigate(be,Ne={skipLocationChange:!1}){return function Sr(ge){for(let De=0;De(null!=Rt&&(Ne[ft]=Rt),Ne),{})}scheduleNavigation(be,Ne,ft,Rt,Jt){if(this.disposed)return Promise.resolve(!1);let Mi,bi,cn;Jt?(Mi=Jt.resolve,bi=Jt.reject,cn=Jt.promise):cn=new Promise((zn,Er)=>{Mi=zn,bi=Er});const Pn=this.pendingTasks.add();return on(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(Pn))}),this.navigationTransitions.handleNavigationRequest({source:Ne,restoredState:ft,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:be,extras:Rt,resolve:Mi,reject:bi,promise:cn,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),cn.catch(zn=>Promise.reject(zn))}static{this.\u0275fac=function(Ne){return new(Ne||ge)}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})(),Fi=(()=>{class ge{constructor(be,Ne,ft,Rt,Jt,Mi){this.router=be,this.route=Ne,this.tabIndexAttribute=ft,this.renderer=Rt,this.el=Jt,this.locationStrategy=Mi,this.href=null,this.onChanges=new V.B,this.preserveFragment=!1,this.skipLocationChange=!1,this.replaceUrl=!1,this.routerLinkInput=null;const bi=Jt.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===bi||"area"===bi,this.isAnchorElement?this.subscription=be.events.subscribe(cn=>{cn instanceof ye&&this.updateHref()}):this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(be){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",be)}ngOnChanges(be){this.isAnchorElement&&this.updateHref(),this.onChanges.next(this)}set routerLink(be){null==be?(this.routerLinkInput=null,this.setTabIndexIfNotOnNativeEl(null)):(this.routerLinkInput=$t(be)||Array.isArray(be)?be:[be],this.setTabIndexIfNotOnNativeEl("0"))}onClick(be,Ne,ft,Rt,Jt){const Mi=this.urlTree;return!!(null===Mi||this.isAnchorElement&&(0!==be||Ne||ft||Rt||Jt||"string"==typeof this.target&&"_self"!=this.target))||(this.router.navigateByUrl(Mi,{skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info}),!this.isAnchorElement)}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const be=this.urlTree;this.href=null!==be&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(be)):null;const Ne=null===this.href?null:(0,e.n$t)(this.href,this.el.nativeElement.tagName.toLowerCase(),"href");this.applyAttributeValue("href",Ne)}applyAttributeValue(be,Ne){const ft=this.renderer,Rt=this.el.nativeElement;null!==Ne?ft.setAttribute(Rt,be,Ne):ft.removeAttribute(Rt,be)}get urlTree(){return null===this.routerLinkInput?null:$t(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{this.\u0275fac=function(Ne){return new(Ne||ge)(e.rXU(Fn),e.rXU(hn),e.kS0("tabindex"),e.rXU(e.sFG),e.rXU(e.aKT),e.rXU(Y.hb))}}static{this.\u0275dir=e.FsC({type:ge,selectors:[["","routerLink",""]],hostVars:1,hostBindings:function(Ne,ft){1&Ne&&e.bIt("click",function(Jt){return ft.onClick(Jt.button,Jt.ctrlKey,Jt.shiftKey,Jt.altKey,Jt.metaKey)}),2&Ne&&e.BMQ("target",ft.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[2,"preserveFragment","preserveFragment",e.L39],skipLocationChange:[2,"skipLocationChange","skipLocationChange",e.L39],replaceUrl:[2,"replaceUrl","replaceUrl",e.L39],routerLink:"routerLink"},standalone:!0,features:[e.GFd,e.OA$]})}}return ge})(),bn=(()=>{class ge{get isActive(){return this._isActive}constructor(be,Ne,ft,Rt,Jt){this.router=be,this.element=Ne,this.renderer=ft,this.cdr=Rt,this.link=Jt,this.classes=[],this._isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new e.bkB,this.routerEventsSubscription=be.events.subscribe(Mi=>{Mi instanceof ye&&this.update()})}ngAfterContentInit(){(0,D.of)(this.links.changes,(0,D.of)(null)).pipe((0,N.U)()).subscribe(be=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const be=[...this.links.toArray(),this.link].filter(Ne=>!!Ne).map(Ne=>Ne.onChanges);this.linkInputChangesSubscription=(0,x.H)(be).pipe((0,N.U)()).subscribe(Ne=>{this._isActive!==this.isLinkActive(this.router)(Ne)&&this.update()})}set routerLinkActive(be){const Ne=Array.isArray(be)?be:be.split(" ");this.classes=Ne.filter(ft=>!!ft)}ngOnChanges(be){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const be=this.hasActiveLinks();this.classes.forEach(Ne=>{be?this.renderer.addClass(this.element.nativeElement,Ne):this.renderer.removeClass(this.element.nativeElement,Ne)}),be&&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!==be&&(this._isActive=be,this.cdr.markForCheck(),this.isActiveChange.emit(be))})}isLinkActive(be){const Ne=function Tr(ge){return!!ge.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return ft=>{const Rt=ft.urlTree;return!!Rt&&be.isActive(Rt,Ne)}}hasActiveLinks(){const be=this.isLinkActive(this.router);return this.link&&be(this.link)||this.links.some(be)}static{this.\u0275fac=function(Ne){return new(Ne||ge)(e.rXU(Fn),e.rXU(e.aKT),e.rXU(e.sFG),e.rXU(e.gRc),e.rXU(Fi,8))}}static{this.\u0275dir=e.FsC({type:ge,selectors:[["","routerLinkActive",""]],contentQueries:function(Ne,ft,Rt){if(1&Ne&&e.wni(Rt,Fi,5),2&Ne){let Jt;e.mGM(Jt=e.lsd())&&(ft.links=Jt)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],standalone:!0,features:[e.OA$]})}}return ge})();class va{}let oo=(()=>{class ge{constructor(be,Ne,ft,Rt,Jt){this.router=be,this.injector=ft,this.preloadingStrategy=Rt,this.loader=Jt}setUpPreloading(){this.subscription=this.router.events.pipe((0,ee.p)(be=>be instanceof ye),(0,Me.H)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(be,Ne){const ft=[];for(const Rt of Ne){Rt.providers&&!Rt._injector&&(Rt._injector=(0,e.Ol2)(Rt.providers,be,`Route: ${Rt.path}`));const Jt=Rt._injector??be,Mi=Rt._loadedInjector??Jt;(Rt.loadChildren&&!Rt._loadedRoutes&&void 0===Rt.canLoad||Rt.loadComponent&&!Rt._loadedComponent)&&ft.push(this.preloadConfig(Jt,Rt)),(Rt.children||Rt._loadedRoutes)&&ft.push(this.processRoutes(Mi,Rt.children??Rt._loadedRoutes))}return(0,x.H)(ft).pipe((0,N.U)())}preloadConfig(be,Ne){return this.preloadingStrategy.preload(Ne,()=>{let ft;ft=Ne.loadChildren&&void 0===Ne.canLoad?this.loader.loadChildren(be,Ne):(0,D.of)(null);const Rt=ft.pipe((0,fe.Z)(Jt=>null===Jt?(0,D.of)(void 0):(Ne._loadedRoutes=Jt.routes,Ne._loadedInjector=Jt.injector,this.processRoutes(Jt.injector??be,Jt.routes))));if(Ne.loadComponent&&!Ne._loadedComponent){const Jt=this.loader.loadComponent(Ne);return(0,x.H)([Rt,Jt]).pipe((0,N.U)())}return Rt})}static{this.\u0275fac=function(Ne){return new(Ne||ge)(e.KVO(Fn),e.KVO(e.Ql9),e.KVO(e.uvJ),e.KVO(va),e.KVO(tl))}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}}return ge})();const hr=new e.nKC("");let aa=(()=>{class ge{constructor(be,Ne,ft,Rt,Jt={}){this.urlSerializer=be,this.transitions=Ne,this.viewportScroller=ft,this.zone=Rt,this.options=Jt,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},Jt.scrollPositionRestoration||="disabled",Jt.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(be=>{be instanceof He?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=be.navigationTrigger,this.restoredId=be.restoredState?be.restoredState.navigationId:0):be instanceof ye?(this.lastId=be.id,this.scheduleScrollEvent(be,this.urlSerializer.parse(be.urlAfterRedirects).fragment)):be instanceof di&&be.code===ht.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(be,this.urlSerializer.parse(be.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(be=>{be instanceof gi&&(be.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(be.position):be.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(be.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(be,Ne){this.zone.runOutsideAngular(()=>{setTimeout(()=>{this.zone.run(()=>{this.transitions.events.next(new gi(be,"popstate"===this.lastSource?this.store[this.restoredId]:null,Ne))})},0)})}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static{this.\u0275fac=function(Ne){e.QTQ()}}static{this.\u0275prov=e.jDH({token:ge,factory:ge.\u0275fac})}}return ge})();function Co(ge,De){return{\u0275kind:ge,\u0275providers:De}}function cc(){const ge=(0,e.WQX)(e.zZn);return De=>{const be=ge.get(e.o8S);if(De!==be.components[0])return;const Ne=ge.get(Fn),ft=ge.get(so);1===ge.get(Xi)&&Ne.initialNavigation(),ge.get(Fo,null,e.$GK.Optional)?.setUpPreloading(),ge.get(hr,null,e.$GK.Optional)?.init(),Ne.resetRootComponentType(be.componentTypes[0]),ft.closed||(ft.next(),ft.complete(),ft.unsubscribe())}}const so=new e.nKC("",{factory:()=>new V.B}),Xi=new e.nKC("",{providedIn:"root",factory:()=>1}),Fo=new e.nKC("");function En(ge){return Co(0,[{provide:Fo,useExisting:oo},{provide:va,useExisting:ge}])}function yc(ge){return Co(9,[{provide:yi,useValue:ji},{provide:Oi,useValue:{skipNextTransition:!!ge?.skipInitialTransition,...ge}}])}const xs=new e.nKC("ROUTER_FORROOT_GUARD"),Yr=[Y.aZ,{provide:nt,useClass:qt},Fn,Or,{provide:hn,useFactory:function Bn(ge){return ge.routerState.root},deps:[Fn]},tl,[]];let mo=(()=>{class ge{constructor(be){}static forRoot(be,Ne){return{ngModule:ge,providers:[Yr,[],{provide:Ys,multi:!0,useValue:be},{provide:xs,useFactory:vr,deps:[[Fn,new e.Xx1,new e.kdw]]},{provide:Za,useValue:Ne||{}},Ne?.useHash?{provide:Y.hb,useClass:Y.fw}:{provide:Y.hb,useClass:Y.Sm},{provide:hr,useFactory:()=>{const ge=(0,e.WQX)(Y.Xr),De=(0,e.WQX)(e.SKi),be=(0,e.WQX)(Za),Ne=(0,e.WQX)(Wn),ft=(0,e.WQX)(nt);return be.scrollOffset&&ge.setOffset(be.scrollOffset),new aa(ft,Ne,ge,De,be)}},Ne?.preloadingStrategy?En(Ne.preloadingStrategy).\u0275providers:[],Ne?.initialNavigation?Qr(Ne):[],Ne?.bindToComponentInputs?Co(8,[fa,{provide:Ea,useExisting:fa}]).\u0275providers:[],Ne?.enableViewTransitions?yc().\u0275providers:[],[{provide:$i,useFactory:cc},{provide:e.iLQ,multi:!0,useExisting:$i}]]}}static forChild(be){return{ngModule:ge,providers:[{provide:Ys,multi:!0,useValue:be}]}}static{this.\u0275fac=function(Ne){return new(Ne||ge)(e.KVO(xs,8))}}static{this.\u0275mod=e.$C({type:ge})}static{this.\u0275inj=e.G2t({})}}return ge})();function vr(ge){return"guarded"}function Qr(ge){return["disabled"===ge.initialNavigation?Co(3,[{provide:e.hnV,multi:!0,useFactory:()=>{const De=(0,e.WQX)(Fn);return()=>{De.setUpLocationChangeListener()}}},{provide:Xi,useValue:2}]).\u0275providers:[],"enabledBlocking"===ge.initialNavigation?Co(2,[{provide:Xi,useValue:0},{provide:e.hnV,multi:!0,deps:[e.zZn],useFactory:De=>{const be=De.get(Y.hj,Promise.resolve());return()=>be.then(()=>new Promise(Ne=>{const ft=De.get(Fn),Rt=De.get(so);on(ft,()=>{Ne(!0)}),De.get(Wn).afterPreactivation=()=>(Ne(!0),Rt.closed?(0,D.of)(void 0):Rt),ft.initialNavigation()}))}}]).\u0275providers:[]]}const $i=new e.nKC("")},60:(Qe,te,g)=>{"use strict";g.d(te,{aY:()=>sc,dX:()=>tl});var e=g(4438),t=g(177);const x=()=>{};let D={},l={},w=null,f={mark:x,measure:x};try{typeof window<"u"&&(D=window),typeof document<"u"&&(l=document),typeof MutationObserver<"u"&&(w=MutationObserver),typeof performance<"u"&&(f=performance)}catch{}const{userAgent:R=""}=D.navigator||{},h=D,S=l,y=w,O=f,V=!!S.documentElement&&!!S.head&&"function"==typeof S.addEventListener&&"function"==typeof S.createElement,j=~R.indexOf("MSIE")||~R.indexOf("Trident/");var Y="classic",W="duotone",Q="sharp",J="sharp-duotone",ie=[Y,W,Q,J],C={classic:{fa:"solid",fas:"solid","fa-solid":"solid",far:"regular","fa-regular":"regular",fal:"light","fa-light":"light",fat:"thin","fa-thin":"thin",fad:"duotone","fa-duotone":"duotone",fab:"brands","fa-brands":"brands"},sharp:{fa:"solid",fass:"solid","fa-solid":"solid",fasr:"regular","fa-regular":"regular",fasl:"light","fa-light":"light",fast:"thin","fa-thin":"thin"},"sharp-duotone":{fa:"solid",fasds:"solid","fa-solid":"solid"}},k=[1,2,3,4,5,6,7,8,9,10],_=k.concat([11,12,13,14,15,16,17,18,19,20]),a={GROUP:"duotone-group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"},b=[...Object.keys({classic:["fas","far","fal","fat"],sharp:["fass","fasr","fasl","fast"],"sharp-duotone":["fasds"]}),"solid","regular","light","thin","duotone","brands","2xs","xs","sm","lg","xl","2xl","beat","border","fade","beat-fade","bounce","flip-both","flip-horizontal","flip-vertical","flip","fw","inverse","layers-counter","layers-text","layers","li","pull-left","pull-right","pulse","rotate-180","rotate-270","rotate-90","rotate-by","shake","spin-pulse","spin-reverse","spin","stack-1x","stack-2x","stack","ul",a.GROUP,a.SWAP_OPACITY,a.PRIMARY,a.SECONDARY].concat(k.map(mt=>"".concat(mt,"x"))).concat(_.map(mt=>"w-".concat(mt)));const ze="___FONT_AWESOME___",Xe=16,We="fa",oe="svg-inline--fa",X="data-fa-i2svg",se="data-fa-pseudo-element",ae="data-fa-pseudo-element-pending",he="data-prefix",Ie="data-icon",st="fontawesome-i2svg",me="async",Ee=["HTML","HEAD","STYLE","SCRIPT"],ue=(()=>{try{return!0}catch{return!1}})(),Be=[Y,Q,J];function Ct(mt){return new Proxy(mt,{get:(Vt,Ht)=>Ht in Vt?Vt[Ht]:Vt[Y]})}const ct={...C};ct[Y]={...C[Y],fak:"kit","fa-kit":"kit",fakd:"kit-duotone","fa-kit-duotone":"kit-duotone"};const dt=Ct(ct),Yt={classic:{solid:"fas",regular:"far",light:"fal",thin:"fat",duotone:"fad",brands:"fab"},sharp:{solid:"fass",regular:"fasr",light:"fasl",thin:"fast"},"sharp-duotone":{solid:"fasds"}};Yt[Y]={...Yt[Y],kit:"fak","kit-duotone":"fakd"};const ve=Ct(Yt),_e={classic:{fab:"fa-brands",fad:"fa-duotone",fal:"fa-light",far:"fa-regular",fas:"fa-solid",fat:"fa-thin"},sharp:{fass:"fa-solid",fasr:"fa-regular",fasl:"fa-light",fast:"fa-thin"},"sharp-duotone":{fasds:"fa-solid"}};_e[Y]={..._e[Y],fak:"fa-kit"};const we=Ct(_e),Ue={classic:{"fa-brands":"fab","fa-duotone":"fad","fa-light":"fal","fa-regular":"far","fa-solid":"fas","fa-thin":"fat"},sharp:{"fa-solid":"fass","fa-regular":"fasr","fa-light":"fasl","fa-thin":"fast"},"sharp-duotone":{"fa-solid":"fasds"}};Ue[Y]={...Ue[Y],"fa-kit":"fak"};const je=Ct(Ue),vt=/fa(s|r|l|t|d|b|k|kd|ss|sr|sl|st|sds)?[\-\ ]/,$e="fa-layers-text",nt=/Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Sharp Duotone|Sharp|Kit)?.*/i,yt=(Ct({classic:{900:"fas",400:"far",normal:"far",300:"fal",100:"fat"},sharp:{900:"fass",400:"fasr",300:"fasl",100:"fast"},"sharp-duotone":{900:"fasds"}}),["class","data-prefix","data-icon","data-fa-transform","data-fa-mask"]),jt=a,Je=new Set;Object.keys(ve[Y]).map(Je.add.bind(Je)),Object.keys(ve[Q]).map(Je.add.bind(Je)),Object.keys(ve[J]).map(Je.add.bind(Je));const et=["kit",...b],Ae=h.FontAwesomeConfig||{};S&&"function"==typeof S.querySelector&&[["data-family-prefix","familyPrefix"],["data-css-prefix","cssPrefix"],["data-family-default","familyDefault"],["data-style-default","styleDefault"],["data-replacement-class","replacementClass"],["data-auto-replace-svg","autoReplaceSvg"],["data-auto-add-css","autoAddCss"],["data-auto-a11y","autoA11y"],["data-search-pseudo-elements","searchPseudoElements"],["data-observe-mutations","observeMutations"],["data-mutate-approach","mutateApproach"],["data-keep-original-source","keepOriginalSource"],["data-measure-performance","measurePerformance"],["data-show-missing-icons","showMissingIcons"]].forEach(Vt=>{let[Ht,ei]=Vt;const ci=function Qt(mt){return""===mt||"false"!==mt&&("true"===mt||mt)}(function It(mt){var Vt=S.querySelector("script["+mt+"]");if(Vt)return Vt.getAttribute(mt)}(Ht));null!=ci&&(Ae[ei]=ci)});const Tt={styleDefault:"solid",familyDefault:"classic",cssPrefix:We,replacementClass:oe,autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:"async",keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0};Ae.familyPrefix&&(Ae.cssPrefix=Ae.familyPrefix);const xt={...Tt,...Ae};xt.autoReplaceSvg||(xt.observeMutations=!1);const Se={};Object.keys(Tt).forEach(mt=>{Object.defineProperty(Se,mt,{enumerable:!0,set:function(Vt){xt[mt]=Vt,Te.forEach(Ht=>Ht(Se))},get:function(){return xt[mt]}})}),Object.defineProperty(Se,"familyPrefix",{enumerable:!0,set:function(mt){xt.cssPrefix=mt,Te.forEach(Vt=>Vt(Se))},get:function(){return xt.cssPrefix}}),h.FontAwesomeConfig=Se;const Te=[],Z=Xe,Re={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1},pt="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";function Ke(){let mt=12,Vt="";for(;mt-- >0;)Vt+=pt[62*Math.random()|0];return Vt}function Fe(mt){const Vt=[];for(let Ht=(mt||[]).length>>>0;Ht--;)Vt[Ht]=mt[Ht];return Vt}function Ge(mt){return mt.classList?Fe(mt.classList):(mt.getAttribute("class")||"").split(" ").filter(Vt=>Vt)}function qe(mt){return"".concat(mt).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function Lt(mt){return Object.keys(mt||{}).reduce((Vt,Ht)=>Vt+"".concat(Ht,": ").concat(mt[Ht].trim(),";"),"")}function pi(mt){return mt.size!==Re.size||mt.x!==Re.x||mt.y!==Re.y||mt.rotate!==Re.rotate||mt.flipX||mt.flipY}var Ui=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";\n --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";\n --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 6 Sharp Duotone";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\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.0714285705em;\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 margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\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: 1em;\n}\n.fa-layers svg.svg-inline--fa {\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: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: 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.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.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: 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-delay: -1ms;\n animation-duration: 1ms;\n animation-iteration-count: 1;\n transition-delay: 0s;\n transition-duration: 0s;\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.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 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.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}';function ti(){const mt=We,Vt=oe,Ht=Se.cssPrefix,ei=Se.replacementClass;let ci=Ui;if(Ht!==mt||ei!==Vt){const yi=new RegExp("\\.".concat(mt,"\\-"),"g"),Oi=new RegExp("\\--".concat(mt,"\\-"),"g"),ji=new RegExp("\\.".concat(Vt),"g");ci=ci.replace(yi,".".concat(Ht,"-")).replace(Oi,"--".concat(Ht,"-")).replace(ji,".".concat(ei))}return ci}let fi=!1;function xn(){Se.autoAddCss&&!fi&&(function Pe(mt){if(!mt||!V)return;const Vt=S.createElement("style");Vt.setAttribute("type","text/css"),Vt.innerHTML=mt;const Ht=S.head.childNodes;let ei=null;for(let ci=Ht.length-1;ci>-1;ci--){const yi=Ht[ci],Oi=(yi.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(Oi)>-1&&(ei=yi)}S.head.insertBefore(Vt,ei)}(ti()),fi=!0)}var tn={mixout:()=>({dom:{css:ti,insertCss:xn}}),hooks:()=>({beforeDOMElementCreation(){xn()},beforeI2svg(){xn()}})};const Vi=h||{};Vi[ze]||(Vi[ze]={}),Vi[ze].styles||(Vi[ze].styles={}),Vi[ze].hooks||(Vi[ze].hooks={}),Vi[ze].shims||(Vi[ze].shims=[]);var Qi=Vi[ze];const Xt=[],St=function(){S.removeEventListener("DOMContentLoaded",St),tt=1,Xt.map(mt=>mt())};let tt=!1;function Mt(mt){const{tag:Vt,attributes:Ht={},children:ei=[]}=mt;return"string"==typeof mt?qe(mt):"<".concat(Vt," ").concat(function at(mt){return Object.keys(mt||{}).reduce((Vt,Ht)=>Vt+"".concat(Ht,'="').concat(qe(mt[Ht]),'" '),"").trim()}(Ht),">").concat(ei.map(Mt).join(""),"")}function Bt(mt,Vt,Ht){if(mt&&mt[Vt]&&mt[Vt][Ht])return{prefix:Vt,iconName:Ht,icon:mt[Vt][Ht]}}V&&(tt=(S.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(S.readyState),tt||S.addEventListener("DOMContentLoaded",St));var Ti=function(Vt,Ht,ei,ci){var pn,_n,Wn,yi=Object.keys(Vt),Oi=yi.length,ji=void 0!==ci?function(Vt,Ht){return function(ei,ci,yi,Oi){return Vt.call(Ht,ei,ci,yi,Oi)}}(Ht,ci):Ht;for(void 0===ei?(pn=1,Wn=Vt[yi[0]]):(pn=0,Wn=ei);pn=55296&&ci<=56319&&Ht{const ei=mt[Ht];return ei.icon?Vt[ei.iconName]=ei.icon:Vt[Ht]=ei,Vt},{})}function Ut(mt,Vt){let Ht=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const{skipHooks:ei=!1}=Ht,ci=mn(Vt);"function"!=typeof Qi.hooks.addPack||ei?Qi.styles[mt]={...Qi.styles[mt]||{},...ci}:Qi.hooks.addPack(mt,mn(Vt)),"fas"===mt&&Ut("fa",Vt)}const{styles:lt,shims:re}=Qi,He={[Y]:Object.values(we[Y]),[Q]:Object.values(we[Q]),[J]:Object.values(we[J])};let ye=null,rt={},ht={},ii={},di={},Gi={};const Cn={[Y]:Object.keys(dt[Y]),[Q]:Object.keys(dt[Q]),[J]:Object.keys(dt[J])};const Jn=()=>{const mt=ei=>Ti(lt,(ci,yi,Oi)=>(ci[Oi]=Ti(yi,ei,{}),ci),{});rt=mt((ei,ci,yi)=>(ci[3]&&(ei[ci[3]]=yi),ci[2]&&ci[2].filter(ji=>"number"==typeof ji).forEach(ji=>{ei[ji.toString(16)]=yi}),ei)),ht=mt((ei,ci,yi)=>(ei[yi]=yi,ci[2]&&ci[2].filter(ji=>"string"==typeof ji).forEach(ji=>{ei[ji]=yi}),ei)),Gi=mt((ei,ci,yi)=>{const Oi=ci[2];return ei[yi]=yi,Oi.forEach(ji=>{ei[ji]=yi}),ei});const Vt="far"in lt||Se.autoFetchSvg,Ht=Ti(re,(ei,ci)=>{const yi=ci[0];let Oi=ci[1];const ji=ci[2];return"far"===Oi&&!Vt&&(Oi="fas"),"string"==typeof yi&&(ei.names[yi]={prefix:Oi,iconName:ji}),"number"==typeof yi&&(ei.unicodes[yi.toString(16)]={prefix:Oi,iconName:ji}),ei},{names:{},unicodes:{}});ii=Ht.names,di=Ht.unicodes,ye=gi(Se.styleDefault,{family:Se.familyDefault})};function nr(mt,Vt){return(rt[mt]||{})[Vt]}function wn(mt,Vt){return(Gi[mt]||{})[Vt]}function Ai(mt){return ii[mt]||{prefix:null,iconName:null}}function Ft(){return ye}(function ce(mt){Te.push(mt)})(mt=>{ye=gi(mt.styleDefault,{family:Se.familyDefault})}),Jn();const mi=()=>({prefix:null,iconName:null,rest:[]});function gi(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{family:Ht=Y}=Vt;return ve[Ht][mt]||ve[Ht][dt[Ht][mt]]||(mt in Qi.styles?mt:null)||null}const xi={[Y]:Object.keys(we[Y]),[Q]:Object.keys(we[Q]),[J]:Object.keys(we[J])};function Ni(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{skipLookups:Ht=!1}=Vt,ei={[Y]:"".concat(Se.cssPrefix,"-").concat(Y),[Q]:"".concat(Se.cssPrefix,"-").concat(Q),[J]:"".concat(Se.cssPrefix,"-").concat(J)};let ci=null,yi=Y;const Oi=ie.filter(pn=>pn!==W);Oi.forEach(pn=>{(mt.includes(ei[pn])||mt.some(_n=>xi[pn].includes(_n)))&&(yi=pn)});const ji=mt.reduce((pn,_n)=>{const Wn=function Qn(mt,Vt){const Ht=Vt.split("-"),ei=Ht[0],ci=Ht.slice(1).join("-");return ei!==mt||""===ci||function Hn(mt){return~et.indexOf(mt)}(ci)?null:ci}(Se.cssPrefix,_n);if(lt[_n]?(_n=He[yi].includes(_n)?je[yi][_n]:_n,ci=_n,pn.prefix=_n):Cn[yi].indexOf(_n)>-1?(ci=_n,pn.prefix=gi(_n,{family:yi})):Wn?pn.iconName=Wn:_n!==Se.replacementClass&&!Oi.some(xe=>_n===ei[xe])&&pn.rest.push(_n),!Ht&&pn.prefix&&pn.iconName){const xe="fa"===ci?Ai(pn.iconName):{},bt=wn(pn.prefix,pn.iconName);xe.prefix&&(ci=null),pn.iconName=xe.iconName||bt||pn.iconName,pn.prefix=xe.prefix||pn.prefix,"far"===pn.prefix&&!lt.far&<.fas&&!Se.autoFetchSvg&&(pn.prefix="fas")}return pn},mi());return(mt.includes("fa-brands")||mt.includes("fab"))&&(ji.prefix="fab"),(mt.includes("fa-duotone")||mt.includes("fad"))&&(ji.prefix="fad"),!ji.prefix&&yi===Q&&(lt.fass||Se.autoFetchSvg)&&(ji.prefix="fass",ji.iconName=wn(ji.prefix,ji.iconName)||ji.iconName),!ji.prefix&&yi===J&&(lt.fasds||Se.autoFetchSvg)&&(ji.prefix="fasds",ji.iconName=wn(ji.prefix,ji.iconName)||ji.iconName),("fa"===ji.prefix||"fa"===ci)&&(ji.prefix=Ft()||"fas"),ji}let On=[],ir={};const gn={},Xr=Object.keys(gn);function mr(mt,Vt){for(var Ht=arguments.length,ei=new Array(Ht>2?Ht-2:0),ci=2;ci{Vt=Oi.apply(null,[Vt,...ei])}),Vt}function wa(mt){for(var Vt=arguments.length,Ht=new Array(Vt>1?Vt-1:0),ei=1;ei{yi.apply(null,Ht)})}function Xa(){const mt=arguments[0],Vt=Array.prototype.slice.call(arguments,1);return gn[mt]?gn[mt].apply(null,Vt):void 0}function ds(mt){"fa"===mt.prefix&&(mt.prefix="fas");let{iconName:Vt}=mt;const Ht=mt.prefix||Ft();if(Vt)return Vt=wn(Ht,Vt)||Vt,Bt(qr.definitions,Ht,Vt)||Bt(Qi.styles,Ht,Vt)}const qr=new class nn{constructor(){this.definitions={}}add(){for(var Vt=arguments.length,Ht=new Array(Vt),ei=0;ei{this.definitions[yi]={...this.definitions[yi]||{},...ci[yi]},Ut(yi,ci[yi]);const Oi=we[Y][yi];Oi&&Ut(Oi,ci[yi]),Jn()})}reset(){this.definitions={}}_pullDefinitions(Vt,Ht){const ei=Ht.prefix&&Ht.iconName&&Ht.icon?{0:Ht}:Ht;return Object.keys(ei).map(ci=>{const{prefix:yi,iconName:Oi,icon:ji}=ei[ci],pn=ji[2];Vt[yi]||(Vt[yi]={}),pn.length>0&&pn.forEach(_n=>{"string"==typeof _n&&(Vt[yi][_n]=ji)}),Vt[yi][Oi]=ji}),Vt}},Or={noAuto:()=>{Se.autoReplaceSvg=!1,Se.observeMutations=!1,wa("noAuto")},config:Se,dom:{i2svg:function(){let mt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return V?(wa("beforeI2svg",mt),Xa("pseudoElements2svg",mt),Xa("i2svg",mt)):Promise.reject(new Error("Operation requires a DOM of some kind."))},watch:function(){let mt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};const{autoReplaceSvgRoot:Vt}=mt;!1===Se.autoReplaceSvg&&(Se.autoReplaceSvg=!0),Se.observeMutations=!0,function ot(mt){V&&(tt?setTimeout(mt,0):Xt.push(mt))}(()=>{hs({autoReplaceSvgRoot:Vt}),wa("watch",mt)})}},parse:{icon:mt=>{if(null===mt)return null;if("object"==typeof mt&&mt.prefix&&mt.iconName)return{prefix:mt.prefix,iconName:wn(mt.prefix,mt.iconName)||mt.iconName};if(Array.isArray(mt)&&2===mt.length){const Vt=0===mt[1].indexOf("fa-")?mt[1].slice(3):mt[1],Ht=gi(mt[0]);return{prefix:Ht,iconName:wn(Ht,Vt)||Vt}}if("string"==typeof mt&&(mt.indexOf("".concat(Se.cssPrefix,"-"))>-1||mt.match(vt))){const Vt=Ni(mt.split(" "),{skipLookups:!0});return{prefix:Vt.prefix||Ft(),iconName:wn(Vt.prefix,Vt.iconName)||Vt.iconName}}if("string"==typeof mt){const Vt=Ft();return{prefix:Vt,iconName:wn(Vt,mt)||mt}}}},library:qr,findIconDefinition:ds,toHtml:Mt},hs=function(){let mt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};const{autoReplaceSvgRoot:Vt=S}=mt;(Object.keys(Qi.styles).length>0||Se.autoFetchSvg)&&V&&Se.autoReplaceSvg&&Or.dom.i2svg({node:Vt})};function za(mt,Vt){return Object.defineProperty(mt,"abstract",{get:Vt}),Object.defineProperty(mt,"html",{get:function(){return mt.abstract.map(Ht=>Mt(Ht))}}),Object.defineProperty(mt,"node",{get:function(){if(!V)return;const Ht=S.createElement("div");return Ht.innerHTML=mt.html,Ht.children}}),mt}function yr(mt){const{icons:{main:Vt,mask:Ht},prefix:ei,iconName:ci,transform:yi,symbol:Oi,title:ji,maskId:pn,titleId:_n,extra:Wn,watchable:xe=!1}=mt,{width:bt,height:Ye}=Ht.found?Ht:Vt,gt="fak"===ei,Zt=[Se.replacementClass,ci?"".concat(Se.cssPrefix,"-").concat(ci):""].filter(pr=>-1===Wn.classes.indexOf(pr)).filter(pr=>""!==pr||!!pr).concat(Wn.classes).join(" ");let Si={children:[],attributes:{...Wn.attributes,"data-prefix":ei,"data-icon":ci,class:Zt,role:Wn.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(bt," ").concat(Ye)}};const Ii=gt&&!~Wn.classes.indexOf("fa-fw")?{width:"".concat(bt/Ye*16*.0625,"em")}:{};xe&&(Si.attributes[X]=""),ji&&(Si.children.push({tag:"title",attributes:{id:Si.attributes["aria-labelledby"]||"title-".concat(_n||Ke())},children:[ji]}),delete Si.attributes.title);const on={...Si,prefix:ei,iconName:ci,main:Vt,mask:Ht,maskId:pn,transform:yi,symbol:Oi,styles:{...Ii,...Wn.styles}},{children:Kn,attributes:wr}=Ht.found&&Vt.found?Xa("generateAbstractMask",on)||{children:[],attributes:{}}:Xa("generateAbstractIcon",on)||{children:[],attributes:{}};return on.children=Kn,on.attributes=wr,Oi?function Ur(mt){let{prefix:Vt,iconName:Ht,children:ei,attributes:ci,symbol:yi}=mt;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:{...ci,id:!0===yi?"".concat(Vt,"-").concat(Se.cssPrefix,"-").concat(Ht):yi},children:ei}]}]}(on):function Fr(mt){let{children:Vt,main:Ht,mask:ei,attributes:ci,styles:yi,transform:Oi}=mt;if(pi(Oi)&&Ht.found&&!ei.found){const{width:ji,height:pn}=Ht,_n={x:ji/pn/2,y:.5};ci.style=Lt({...yi,"transform-origin":"".concat(_n.x+Oi.x/16,"em ").concat(_n.y+Oi.y/16,"em")})}return[{tag:"svg",attributes:ci,children:Vt}]}(on)}function Ya(mt){const{content:Vt,width:Ht,height:ei,transform:ci,title:yi,extra:Oi,watchable:ji=!1}=mt,pn={...Oi.attributes,...yi?{title:yi}:{},class:Oi.classes.join(" ")};ji&&(pn[X]="");const _n={...Oi.styles};pi(ci)&&(_n.transform=function Kt(mt){let{transform:Vt,width:Ht=Xe,height:ei=Xe,startCentered:ci=!1}=mt,yi="";return yi+=ci&&j?"translate(".concat(Vt.x/Z-Ht/2,"em, ").concat(Vt.y/Z-ei/2,"em) "):ci?"translate(calc(-50% + ".concat(Vt.x/Z,"em), calc(-50% + ").concat(Vt.y/Z,"em)) "):"translate(".concat(Vt.x/Z,"em, ").concat(Vt.y/Z,"em) "),yi+="scale(".concat(Vt.size/Z*(Vt.flipX?-1:1),", ").concat(Vt.size/Z*(Vt.flipY?-1:1),") "),yi+="rotate(".concat(Vt.rotate,"deg) "),yi}({transform:ci,startCentered:!0,width:Ht,height:ei}),_n["-webkit-transform"]=_n.transform);const Wn=Lt(_n);Wn.length>0&&(pn.style=Wn);const xe=[];return xe.push({tag:"span",attributes:pn,children:[Vt]}),yi&&xe.push({tag:"span",attributes:{class:"sr-only"},children:[yi]}),xe}const{styles:ua}=Qi;function hn(mt){const Vt=mt[0],Ht=mt[1],[ei]=mt.slice(4);let ci=null;return ci=Array.isArray(ei)?{tag:"g",attributes:{class:"".concat(Se.cssPrefix,"-").concat(jt.GROUP)},children:[{tag:"path",attributes:{class:"".concat(Se.cssPrefix,"-").concat(jt.SECONDARY),fill:"currentColor",d:ei[0]}},{tag:"path",attributes:{class:"".concat(Se.cssPrefix,"-").concat(jt.PRIMARY),fill:"currentColor",d:ei[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:ei}},{found:!0,width:Vt,height:Ht,icon:ci}}const Do={found:!1,width:512,height:512};function Ao(mt,Vt){let Ht=Vt;return"fa"===Vt&&null!==Se.styleDefault&&(Vt=Ft()),new Promise((ei,ci)=>{if("fa"===Ht){const yi=Ai(mt)||{};mt=yi.iconName||mt,Vt=yi.prefix||Vt}if(mt&&Vt&&ua[Vt]&&ua[Vt][mt])return ei(hn(ua[Vt][mt]));(function Ba(mt,Vt){!ue&&!Se.showMissingIcons&&mt&&console.error('Icon with name "'.concat(mt,'" and prefix "').concat(Vt,'" is missing.'))})(mt,Vt),ei({...Do,icon:Se.showMissingIcons&&mt&&Xa("missingIconAbstract")||{}})})}const ea=()=>{},_o=Se.measurePerformance&&O&&O.mark&&O.measure?O:{mark:ea,measure:ea},Va='FA "6.6.0"',fo=mt=>{_o.mark("".concat(Va," ").concat(mt," ends")),_o.measure("".concat(Va," ").concat(mt),"".concat(Va," ").concat(mt," begins"),"".concat(Va," ").concat(mt," ends"))};var vo={begin:mt=>(_o.mark("".concat(Va," ").concat(mt," begins")),()=>fo(mt)),end:fo};const zr=()=>{};function Ea(mt){return"string"==typeof(mt.getAttribute?mt.getAttribute(X):null)}function Io(mt){return S.createElementNS("http://www.w3.org/2000/svg",mt)}function Ua(mt){return S.createElement(mt)}function ma(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{ceFn:Ht=("svg"===mt.tag?Io:Ua)}=Vt;if("string"==typeof mt)return S.createTextNode(mt);const ei=Ht(mt.tag);return Object.keys(mt.attributes||[]).forEach(function(yi){ei.setAttribute(yi,mt.attributes[yi])}),(mt.children||[]).forEach(function(yi){ei.appendChild(ma(yi,{ceFn:Ht}))}),ei}const ta={replace:function(mt){const Vt=mt[0];if(Vt.parentNode)if(mt[1].forEach(Ht=>{Vt.parentNode.insertBefore(ma(Ht),Vt)}),null===Vt.getAttribute(X)&&Se.keepOriginalSource){let Ht=S.createComment(function no(mt){let Vt=" ".concat(mt.outerHTML," ");return Vt="".concat(Vt,"Font Awesome fontawesome.com "),Vt}(Vt));Vt.parentNode.replaceChild(Ht,Vt)}else Vt.remove()},nest:function(mt){const Vt=mt[0],Ht=mt[1];if(~Ge(Vt).indexOf(Se.replacementClass))return ta.replace(mt);const ei=new RegExp("".concat(Se.cssPrefix,"-.*"));if(delete Ht[0].attributes.id,Ht[0].attributes.class){const yi=Ht[0].attributes.class.split(" ").reduce((Oi,ji)=>(ji===Se.replacementClass||ji.match(ei)?Oi.toSvg.push(ji):Oi.toNode.push(ji),Oi),{toNode:[],toSvg:[]});Ht[0].attributes.class=yi.toSvg.join(" "),0===yi.toNode.length?Vt.removeAttribute("class"):Vt.setAttribute("class",yi.toNode.join(" "))}const ci=Ht.map(yi=>Mt(yi)).join("\n");Vt.setAttribute(X,""),Vt.innerHTML=ci}};function Ro(mt){mt()}function As(mt,Vt){const Ht="function"==typeof Vt?Vt:zr;if(0===mt.length)Ht();else{let ei=Ro;Se.mutateApproach===me&&(ei=h.requestAnimationFrame||Ro),ei(()=>{const ci=function Ar(){return!0===Se.autoReplaceSvg?ta.replace:ta[Se.autoReplaceSvg]||ta.replace}(),yi=vo.begin("mutate");mt.map(ci),yi(),Ht()})}}let bo=!1;function $r(){bo=!0}function pa(){bo=!1}let yo=null;function ro(mt){if(!y||!Se.observeMutations)return;const{treeCallback:Vt=zr,nodeCallback:Ht=zr,pseudoElementsCallback:ei=zr,observeMutationsRoot:ci=S}=mt;yo=new y(yi=>{if(bo)return;const Oi=Ft();Fe(yi).forEach(ji=>{if("childList"===ji.type&&ji.addedNodes.length>0&&!Ea(ji.addedNodes[0])&&(Se.searchPseudoElements&&ei(ji.target),Vt(ji.target)),"attributes"===ji.type&&ji.target.parentNode&&Se.searchPseudoElements&&ei(ji.target.parentNode),"attributes"===ji.type&&Ea(ji.target)&&~yt.indexOf(ji.attributeName))if("class"===ji.attributeName&&function fa(mt){const Vt=mt.getAttribute?mt.getAttribute(he):null,Ht=mt.getAttribute?mt.getAttribute(Ie):null;return Vt&&Ht}(ji.target)){const{prefix:pn,iconName:_n}=Ni(Ge(ji.target));ji.target.setAttribute(he,pn||Oi),_n&&ji.target.setAttribute(Ie,_n)}else(function Bs(mt){return mt&&mt.classList&&mt.classList.contains&&mt.classList.contains(Se.replacementClass)})(ji.target)&&Ht(ji.target)})}),V&&yo.observe(ci,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}function Ot(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0};const{iconName:Ht,prefix:ei,rest:ci}=function sr(mt){const Vt=mt.getAttribute("data-prefix"),Ht=mt.getAttribute("data-icon"),ei=void 0!==mt.innerText?mt.innerText.trim():"";let ci=Ni(Ge(mt));return ci.prefix||(ci.prefix=Ft()),Vt&&Ht&&(ci.prefix=Vt,ci.iconName=Ht),ci.iconName&&ci.prefix||(ci.prefix&&ei.length>0&&(ci.iconName=function dr(mt,Vt){return(ht[mt]||{})[Vt]}(ci.prefix,mt.innerText)||nr(ci.prefix,Zi(mt.innerText))),!ci.iconName&&Se.autoFetchSvg&&mt.firstChild&&mt.firstChild.nodeType===Node.TEXT_NODE&&(ci.iconName=mt.firstChild.data)),ci}(mt),yi=function ia(mt){const Vt=Fe(mt.attributes).reduce((ci,yi)=>("class"!==ci.name&&"style"!==ci.name&&(ci[yi.name]=yi.value),ci),{}),Ht=mt.getAttribute("title"),ei=mt.getAttribute("data-fa-title-id");return Se.autoA11y&&(Ht?Vt["aria-labelledby"]="".concat(Se.replacementClass,"-title-").concat(ei||Ke()):(Vt["aria-hidden"]="true",Vt.focusable="false")),Vt}(mt),Oi=mr("parseNodeAttributes",{},mt);let ji=Vt.styleParser?function Ga(mt){const Vt=mt.getAttribute("style");let Ht=[];return Vt&&(Ht=Vt.split(";").reduce((ei,ci)=>{const yi=ci.split(":"),Oi=yi[0],ji=yi.slice(1);return Oi&&ji.length>0&&(ei[Oi]=ji.join(":").trim()),ei},{})),Ht}(mt):[];return{iconName:Ht,title:mt.getAttribute("title"),titleId:mt.getAttribute("data-fa-title-id"),prefix:ei,transform:Re,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:ci,styles:ji,attributes:yi},...Oi}}const{styles:si}=Qi;function wt(mt){const Vt="nest"===Se.autoReplaceSvg?Ot(mt,{styleParser:!1}):Ot(mt);return~Vt.extra.classes.indexOf($e)?Xa("generateLayersText",mt,Vt):Xa("generateSvgReplacementMutation",mt,Vt)}let ni=new Set;function Ei(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!V)return Promise.resolve();const Ht=S.documentElement.classList,ei=Wn=>Ht.add("".concat(st,"-").concat(Wn)),ci=Wn=>Ht.remove("".concat(st,"-").concat(Wn)),yi=Se.autoFetchSvg?ni:Be.map(Wn=>"fa-".concat(Wn)).concat(Object.keys(si));yi.includes("fa")||yi.push("fa");const Oi=[".".concat($e,":not([").concat(X,"])")].concat(yi.map(Wn=>".".concat(Wn,":not([").concat(X,"])"))).join(", ");if(0===Oi.length)return Promise.resolve();let ji=[];try{ji=Fe(mt.querySelectorAll(Oi))}catch{}if(!(ji.length>0))return Promise.resolve();ei("pending"),ci("complete");const pn=vo.begin("onTree"),_n=ji.reduce((Wn,xe)=>{try{const bt=wt(xe);bt&&Wn.push(bt)}catch(bt){ue||"MissingIcon"===bt.name&&console.error(bt)}return Wn},[]);return new Promise((Wn,xe)=>{Promise.all(_n).then(bt=>{As(bt,()=>{ei("active"),ei("complete"),ci("pending"),"function"==typeof Vt&&Vt(),pn(),Wn()})}).catch(bt=>{pn(),xe(bt)})})}function Ji(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;wt(mt).then(Ht=>{Ht&&As([Ht],Vt)})}Be.map(mt=>{ni.add("fa-".concat(mt))}),Object.keys(dt[Y]).map(ni.add.bind(ni)),Object.keys(dt[Q]).map(ni.add.bind(ni)),Object.keys(dt[J]).map(ni.add.bind(ni)),ni=[...ni];const ga=function(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{transform:Ht=Re,symbol:ei=!1,mask:ci=null,maskId:yi=null,title:Oi=null,titleId:ji=null,classes:pn=[],attributes:_n={},styles:Wn={}}=Vt;if(!mt)return;const{prefix:xe,iconName:bt,icon:Ye}=mt;return za({type:"icon",...mt},()=>(wa("beforeDOMElementCreation",{iconDefinition:mt,params:Vt}),Se.autoA11y&&(Oi?_n["aria-labelledby"]="".concat(Se.replacementClass,"-title-").concat(ji||Ke()):(_n["aria-hidden"]="true",_n.focusable="false")),yr({icons:{main:hn(Ye),mask:ci?hn(ci.icon):{found:!1,width:null,height:null,icon:{}}},prefix:xe,iconName:bt,transform:{...Re,...Ht},symbol:ei,title:Oi,maskId:yi,titleId:ji,extra:{attributes:_n,styles:Wn,classes:pn}})))};var Ra={mixout(){return{icon:(mt=ga,function(Vt){let Ht=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const ei=(Vt||{}).icon?Vt:ds(Vt||{});let{mask:ci}=Ht;return ci&&(ci=(ci||{}).icon?ci:ds(ci||{})),mt(ei,{...Ht,mask:ci})})};var mt},hooks:()=>({mutationObserverCallbacks:mt=>(mt.treeCallback=Ei,mt.nodeCallback=Ji,mt)}),provides(mt){mt.i2svg=function(Vt){const{node:Ht=S,callback:ei=()=>{}}=Vt;return Ei(Ht,ei)},mt.generateSvgReplacementMutation=function(Vt,Ht){const{iconName:ei,title:ci,titleId:yi,prefix:Oi,transform:ji,symbol:pn,mask:_n,maskId:Wn,extra:xe}=Ht;return new Promise((bt,Ye)=>{Promise.all([Ao(ei,Oi),_n.iconName?Ao(_n.iconName,_n.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(gt=>{let[Zt,Si]=gt;bt([Vt,yr({icons:{main:Zt,mask:Si},prefix:Oi,iconName:ei,transform:ji,symbol:pn,maskId:Wn,title:ci,titleId:yi,extra:xe,watchable:!0})])}).catch(Ye)})},mt.generateAbstractIcon=function(Vt){let{children:Ht,attributes:ei,main:ci,transform:yi,styles:Oi}=Vt;const ji=Lt(Oi);let pn;return ji.length>0&&(ei.style=ji),pi(yi)&&(pn=Xa("generateAbstractTransformGrouping",{main:ci,transform:yi,containerWidth:ci.width,iconWidth:ci.width})),Ht.push(pn||ci.icon),{children:Ht,attributes:ei}}}},ao={mixout:()=>({layer(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{classes:Ht=[]}=Vt;return za({type:"layer"},()=>{wa("beforeDOMElementCreation",{assembler:mt,params:Vt});let ei=[];return mt(ci=>{Array.isArray(ci)?ci.map(yi=>{ei=ei.concat(yi.abstract)}):ei=ei.concat(ci.abstract)}),[{tag:"span",attributes:{class:["".concat(Se.cssPrefix,"-layers"),...Ht].join(" ")},children:ei}]})}})},Zo={mixout:()=>({counter(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{title:Ht=null,classes:ei=[],attributes:ci={},styles:yi={}}=Vt;return za({type:"counter",content:mt},()=>(wa("beforeDOMElementCreation",{content:mt,params:Vt}),function xr(mt){const{content:Vt,title:Ht,extra:ei}=mt,ci={...ei.attributes,...Ht?{title:Ht}:{},class:ei.classes.join(" ")},yi=Lt(ei.styles);yi.length>0&&(ci.style=yi);const Oi=[];return Oi.push({tag:"span",attributes:ci,children:[Vt]}),Ht&&Oi.push({tag:"span",attributes:{class:"sr-only"},children:[Ht]}),Oi}({content:mt.toString(),title:Ht,extra:{attributes:ci,styles:yi,classes:["".concat(Se.cssPrefix,"-layers-counter"),...ei]}})))}})},$a={mixout:()=>({text(mt){let Vt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{transform:Ht=Re,title:ei=null,classes:ci=[],attributes:yi={},styles:Oi={}}=Vt;return za({type:"text",content:mt},()=>(wa("beforeDOMElementCreation",{content:mt,params:Vt}),Ya({content:mt,transform:{...Re,...Ht},title:ei,extra:{attributes:yi,styles:Oi,classes:["".concat(Se.cssPrefix,"-layers-text"),...ci]}})))}}),provides(mt){mt.generateLayersText=function(Vt,Ht){const{title:ei,transform:ci,extra:yi}=Ht;let Oi=null,ji=null;if(j){const pn=parseInt(getComputedStyle(Vt).fontSize,10),_n=Vt.getBoundingClientRect();Oi=_n.width/pn,ji=_n.height/pn}return Se.autoA11y&&!ei&&(yi.attributes["aria-hidden"]="true"),Promise.resolve([Vt,Ya({content:Vt.innerHTML,width:Oi,height:ji,transform:ci,title:ei,extra:yi,watchable:!0})])}}};const Vo=new RegExp('"',"ug"),Gr=[1105920,1112319],Pi={FontAwesome:{normal:"fas",400:"fas"},"Font Awesome 6 Free":{900:"fas",400:"far"},"Font Awesome 6 Pro":{900:"fas",400:"far",normal:"far",300:"fal",100:"fat"},"Font Awesome 6 Brands":{400:"fab",normal:"fab"},"Font Awesome 6 Duotone":{900:"fad"},"Font Awesome 6 Sharp":{900:"fass",400:"fasr",normal:"fasr",300:"fasl",100:"fast"},"Font Awesome 6 Sharp Duotone":{900:"fasds"},"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"}},it=Object.keys(Pi).reduce((mt,Vt)=>(mt[Vt.toLowerCase()]=Pi[Vt],mt),{}),ut=Object.keys(it).reduce((mt,Vt)=>{const Ht=it[Vt];return mt[Vt]=Ht[900]||[...Object.entries(Ht)][0][1],mt},{});function ai(mt,Vt){const Ht="".concat(ae).concat(Vt.replace(":","-"));return new Promise((ei,ci)=>{if(null!==mt.getAttribute(Ht))return ei();const Oi=Fe(mt.children).filter(bt=>bt.getAttribute(se)===Vt)[0],ji=h.getComputedStyle(mt,Vt),pn=ji.getPropertyValue("font-family"),_n=pn.match(nt),Wn=ji.getPropertyValue("font-weight"),xe=ji.getPropertyValue("content");if(Oi&&!_n)return mt.removeChild(Oi),ei();if(_n&&"none"!==xe&&""!==xe){const bt=ji.getPropertyValue("content");let Ye=function Dt(mt,Vt){const Ht=mt.replace(/^['"]|['"]$/g,"").toLowerCase(),ei=parseInt(Vt),ci=isNaN(ei)?"normal":ei;return(it[Ht]||{})[ci]||ut[Ht]}(pn,Wn);const{value:gt,isSecondary:Zt}=function Ve(mt){const Vt=mt.replace(Vo,""),Ht=function ln(mt,Vt){const Ht=mt.length;let ci,ei=mt.charCodeAt(Vt);return ei>=55296&&ei<=56319&&Ht>Vt+1&&(ci=mt.charCodeAt(Vt+1),ci>=56320&&ci<=57343)?1024*(ei-55296)+ci-56320+65536:ei}(Vt,0),ei=Ht>=Gr[0]&&Ht<=Gr[1],ci=2===Vt.length&&Vt[0]===Vt[1];return{value:Zi(ci?Vt[0]:Vt),isSecondary:ei||ci}}(bt),Si=_n[0].startsWith("FontAwesome");let Ii=nr(Ye,gt),on=Ii;if(Si){const Kn=function Yi(mt){const Vt=di[mt],Ht=nr("fas",mt);return Vt||(Ht?{prefix:"fas",iconName:Ht}:null)||{prefix:null,iconName:null}}(gt);Kn.iconName&&Kn.prefix&&(Ii=Kn.iconName,Ye=Kn.prefix)}if(!Ii||Zt||Oi&&Oi.getAttribute(he)===Ye&&Oi.getAttribute(Ie)===on)ei();else{mt.setAttribute(Ht,on),Oi&&mt.removeChild(Oi);const Kn=function Bo(){return{iconName:null,title:null,titleId:null,prefix:null,transform:Re,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),{extra:wr}=Kn;wr.attributes[se]=Vt,Ao(Ii,Ye).then(pr=>{const Fn=yr({...Kn,icons:{main:pr,mask:mi()},prefix:Ye,iconName:on,extra:wr,watchable:!0}),Sr=S.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===Vt?mt.insertBefore(Sr,mt.firstChild):mt.appendChild(Sr),Sr.outerHTML=Fn.map(Dn=>Mt(Dn)).join("\n"),mt.removeAttribute(Ht),ei()}).catch(ci)}}else ei()})}function vn(mt){return Promise.all([ai(mt,"::before"),ai(mt,"::after")])}function er(mt){return!(mt.parentNode===document.head||~Ee.indexOf(mt.tagName.toUpperCase())||mt.getAttribute(se)||mt.parentNode&&"svg"===mt.parentNode.tagName)}function Oo(mt){if(V)return new Promise((Vt,Ht)=>{const ei=Fe(mt.querySelectorAll("*")).filter(er).map(vn),ci=vo.begin("searchPseudoElements");$r(),Promise.all(ei).then(()=>{ci(),pa(),Vt()}).catch(()=>{ci(),pa(),Ht()})})}let Qa=!1;const ks=mt=>mt.toLowerCase().split(" ").reduce((Ht,ei)=>{const ci=ei.toLowerCase().split("-"),yi=ci[0];let Oi=ci.slice(1).join("-");if(yi&&"h"===Oi)return Ht.flipX=!0,Ht;if(yi&&"v"===Oi)return Ht.flipY=!0,Ht;if(Oi=parseFloat(Oi),isNaN(Oi))return Ht;switch(yi){case"grow":Ht.size=Ht.size+Oi;break;case"shrink":Ht.size=Ht.size-Oi;break;case"left":Ht.x=Ht.x-Oi;break;case"right":Ht.x=Ht.x+Oi;break;case"up":Ht.y=Ht.y-Oi;break;case"down":Ht.y=Ht.y+Oi;break;case"rotate":Ht.rotate=Ht.rotate+Oi}return Ht},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0}),Vs={x:0,y:0,width:"100%",height:"100%"};function nc(mt){return mt.attributes&&(mt.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(mt.attributes.fill="black"),mt}function Jo(mt){return"g"===mt.tag?mt.children:[mt]}!function fr(mt,Vt){let{mixoutsTo:Ht}=Vt;On=mt,ir={},Object.keys(gn).forEach(ei=>{-1===Xr.indexOf(ei)&&delete gn[ei]}),On.forEach(ei=>{const ci=ei.mixout?ei.mixout():{};if(Object.keys(ci).forEach(yi=>{"function"==typeof ci[yi]&&(Ht[yi]=ci[yi]),"object"==typeof ci[yi]&&Object.keys(ci[yi]).forEach(Oi=>{Ht[yi]||(Ht[yi]={}),Ht[yi][Oi]=ci[yi][Oi]})}),ei.hooks){const yi=ei.hooks();Object.keys(yi).forEach(Oi=>{ir[Oi]||(ir[Oi]=[]),ir[Oi].push(yi[Oi])})}ei.provides&&ei.provides(gn)})}([tn,Ra,ao,Zo,$a,{hooks:()=>({mutationObserverCallbacks:mt=>(mt.pseudoElementsCallback=Oo,mt)}),provides(mt){mt.pseudoElements2svg=function(Vt){const{node:Ht=S}=Vt;Se.searchPseudoElements&&Oo(Ht)}}},{mixout:()=>({dom:{unwatch(){$r(),Qa=!0}}}),hooks:()=>({bootstrap(){ro(mr("mutationObserverCallbacks",{}))},noAuto(){!function Ka(){yo&&yo.disconnect()}()},watch(mt){const{observeMutationsRoot:Vt}=mt;Qa?pa():ro(mr("mutationObserverCallbacks",{observeMutationsRoot:Vt}))}})},{mixout:()=>({parse:{transform:mt=>ks(mt)}}),hooks:()=>({parseNodeAttributes(mt,Vt){const Ht=Vt.getAttribute("data-fa-transform");return Ht&&(mt.transform=ks(Ht)),mt}}),provides(mt){mt.generateAbstractTransformGrouping=function(Vt){let{main:Ht,transform:ei,containerWidth:ci,iconWidth:yi}=Vt;const Oi={transform:"translate(".concat(ci/2," 256)")},ji="translate(".concat(32*ei.x,", ").concat(32*ei.y,") "),pn="scale(".concat(ei.size/16*(ei.flipX?-1:1),", ").concat(ei.size/16*(ei.flipY?-1:1),") "),_n="rotate(".concat(ei.rotate," 0 0)"),Wn={transform:"".concat(ji," ").concat(pn," ").concat(_n)},xe={transform:"translate(".concat(yi/2*-1," -256)")};return{tag:"g",attributes:{...Oi},children:[{tag:"g",attributes:{...Wn},children:[{tag:Ht.icon.tag,children:Ht.icon.children,attributes:{...Ht.icon.attributes,...xe}}]}]}}}},{hooks:()=>({parseNodeAttributes(mt,Vt){const Ht=Vt.getAttribute("data-fa-mask"),ei=Ht?Ni(Ht.split(" ").map(ci=>ci.trim())):mi();return ei.prefix||(ei.prefix=Ft()),mt.mask=ei,mt.maskId=Vt.getAttribute("data-fa-mask-id"),mt}}),provides(mt){mt.generateAbstractMask=function(Vt){let{children:Ht,attributes:ei,main:ci,mask:yi,maskId:Oi,transform:ji}=Vt;const{width:pn,icon:_n}=ci,{width:Wn,icon:xe}=yi,bt=function $t(mt){let{transform:Vt,containerWidth:Ht,iconWidth:ei}=mt;const ci={transform:"translate(".concat(Ht/2," 256)")},yi="translate(".concat(32*Vt.x,", ").concat(32*Vt.y,") "),Oi="scale(".concat(Vt.size/16*(Vt.flipX?-1:1),", ").concat(Vt.size/16*(Vt.flipY?-1:1),") "),ji="rotate(".concat(Vt.rotate," 0 0)");return{outer:ci,inner:{transform:"".concat(yi," ").concat(Oi," ").concat(ji)},path:{transform:"translate(".concat(ei/2*-1," -256)")}}}({transform:ji,containerWidth:Wn,iconWidth:pn}),Ye={tag:"rect",attributes:{...Vs,fill:"white"}},gt=_n.children?{children:_n.children.map(nc)}:{},Zt={tag:"g",attributes:{...bt.inner},children:[nc({tag:_n.tag,attributes:{..._n.attributes,...bt.path},...gt})]},Si={tag:"g",attributes:{...bt.outer},children:[Zt]},Ii="mask-".concat(Oi||Ke()),on="clip-".concat(Oi||Ke()),Kn={tag:"mask",attributes:{...Vs,id:Ii,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"},children:[Ye,Si]},wr={tag:"defs",children:[{tag:"clipPath",attributes:{id:on},children:Jo(xe)},Kn]};return Ht.push(wr,{tag:"rect",attributes:{fill:"currentColor","clip-path":"url(#".concat(on,")"),mask:"url(#".concat(Ii,")"),...Vs}}),{children:Ht,attributes:ei}}}},{provides(mt){let Vt=!1;h.matchMedia&&(Vt=h.matchMedia("(prefers-reduced-motion: reduce)").matches),mt.missingIconAbstract=function(){const Ht=[],ei={fill:"currentColor"},ci={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};Ht.push({tag:"path",attributes:{...ei,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"}});const yi={...ci,attributeName:"opacity"},Oi={tag:"circle",attributes:{...ei,cx:"256",cy:"364",r:"28"},children:[]};return Vt||Oi.children.push({tag:"animate",attributes:{...ci,attributeName:"r",values:"28;14;28;28;14;28;"}},{tag:"animate",attributes:{...yi,values:"1;0;1;1;0;1;"}}),Ht.push(Oi),Ht.push({tag:"path",attributes:{...ei,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:Vt?[]:[{tag:"animate",attributes:{...yi,values:"1;0;0;0;0;1;"}}]}),Vt||Ht.push({tag:"path",attributes:{...ei,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:{...yi,values:"0;0;1;1;0;0;"}}]}),{tag:"g",attributes:{class:"missing"},children:Ht}}}},{hooks:()=>({parseNodeAttributes(mt,Vt){const Ht=Vt.getAttribute("data-fa-symbol");return mt.symbol=null!==Ht&&(""===Ht||Ht),mt}})}],{mixoutsTo:Or});const Nr=Or.config,_a=Or.dom,dn=Or.parse,vc=Or.icon;var bs=g(345);const Fc=["*"],Nc=mt=>{const Vt={[`fa-${mt.animation}`]:null!=mt.animation&&!mt.animation.startsWith("spin"),"fa-spin":"spin"===mt.animation||"spin-reverse"===mt.animation,"fa-spin-pulse":"spin-pulse"===mt.animation||"spin-pulse-reverse"===mt.animation,"fa-spin-reverse":"spin-reverse"===mt.animation||"spin-pulse-reverse"===mt.animation,"fa-pulse":"spin-pulse"===mt.animation||"spin-pulse-reverse"===mt.animation,"fa-fw":mt.fixedWidth,"fa-border":mt.border,"fa-inverse":mt.inverse,"fa-layers-counter":mt.counter,"fa-flip-horizontal":"horizontal"===mt.flip||"both"===mt.flip,"fa-flip-vertical":"vertical"===mt.flip||"both"===mt.flip,[`fa-${mt.size}`]:null!==mt.size,[`fa-rotate-${mt.rotate}`]:null!==mt.rotate,[`fa-pull-${mt.pull}`]:null!==mt.pull,[`fa-stack-${mt.stackItemSize}`]:null!=mt.stackItemSize};return Object.keys(Vt).map(Ht=>Vt[Ht]?Ht:null).filter(Ht=>Ht)},Gs=new WeakSet,Hs="fa-auto-css";let Pc=(()=>{class mt{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null,this._autoAddCss=!0}set autoAddCss(Ht){Nr.autoAddCss=Ht,this._autoAddCss=Ht}get autoAddCss(){return this._autoAddCss}static{this.\u0275fac=function(ei){return new(ei||mt)}}static{this.\u0275prov=e.jDH({token:mt,factory:mt.\u0275fac,providedIn:"root"})}}return mt})(),Xs=(()=>{class mt{constructor(){this.definitions={}}addIcons(...Ht){for(const ei of Ht){ei.prefix in this.definitions||(this.definitions[ei.prefix]={}),this.definitions[ei.prefix][ei.iconName]=ei;for(const ci of ei.icon[2])"string"==typeof ci&&(this.definitions[ei.prefix][ci]=ei)}}addIconPacks(...Ht){for(const ei of Ht){const ci=Object.keys(ei).map(yi=>ei[yi]);this.addIcons(...ci)}}getIconDefinition(Ht,ei){return Ht in this.definitions&&ei in this.definitions[Ht]?this.definitions[Ht][ei]:null}static{this.\u0275fac=function(ei){return new(ei||mt)}}static{this.\u0275prov=e.jDH({token:mt,factory:mt.\u0275fac,providedIn:"root"})}}return mt})(),oc=(()=>{class mt{constructor(){this.stackItemSize="1x"}ngOnChanges(Ht){if("size"in Ht)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{this.\u0275fac=function(ei){return new(ei||mt)}}static{this.\u0275dir=e.FsC({type:mt,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},standalone:!0,features:[e.OA$]})}}return mt})(),ys=(()=>{class mt{constructor(Ht,ei){this.renderer=Ht,this.elementRef=ei}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(Ht){"size"in Ht&&(null!=Ht.size.currentValue&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${Ht.size.currentValue}`),null!=Ht.size.previousValue&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${Ht.size.previousValue}`))}static{this.\u0275fac=function(ei){return new(ei||mt)(e.rXU(e.sFG),e.rXU(e.aKT))}}static{this.\u0275cmp=e.VBU({type:mt,selectors:[["fa-stack"]],inputs:{size:"size"},standalone:!0,features:[e.OA$,e.aNF],ngContentSelectors:Fc,decls:1,vars:0,template:function(ei,ci){1&ei&&(e.NAR(),e.SdG(0))},encapsulation:2})}}return mt})(),sc=(()=>{class mt{constructor(Ht,ei,ci,yi,Oi){this.sanitizer=Ht,this.config=ei,this.iconLibrary=ci,this.stackItem=yi,this.document=(0,e.WQX)(t.qQ),null!=Oi&&null==yi&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}ngOnChanges(Ht){if(null!=this.icon||null!=this.config.fallbackIcon){if(Ht){const ei=this.findIconDefinition(this.icon??this.config.fallbackIcon);if(null!=ei){const ci=this.buildParams();!function js(mt,Vt){if(!Vt.autoAddCss||Gs.has(mt))return;if(null!=mt.getElementById(Hs))return Vt.autoAddCss=!1,void Gs.add(mt);const Ht=mt.createElement("style");Ht.setAttribute("type","text/css"),Ht.setAttribute("id",Hs),Ht.innerHTML=_a.css();const ei=mt.head.childNodes;let ci=null;for(let yi=ei.length-1;yi>-1;yi--){const Oi=ei[yi],ji=Oi.nodeName.toUpperCase();["STYLE","LINK"].indexOf(ji)>-1&&(ci=Oi)}mt.head.insertBefore(Ht,ci),Vt.autoAddCss=!1,Gs.add(mt)}(this.document,this.config);const yi=vc(ei,ci);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(yi.html.join("\n"))}}}else(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})()}render(){this.ngOnChanges({})}findIconDefinition(Ht){const ei=((mt,Vt)=>(mt=>void 0!==mt.prefix&&void 0!==mt.iconName)(mt)?mt:Array.isArray(mt)&&2===mt.length?{prefix:mt[0],iconName:mt[1]}:{prefix:Vt,iconName:mt})(Ht,this.config.defaultPrefix);return"icon"in ei?ei:this.iconLibrary.getIconDefinition(ei.prefix,ei.iconName)??((mt=>{throw new Error(`Could not find icon with iconName=${mt.iconName} and prefix=${mt.prefix} in the icon library.`)})(ei),null)}buildParams(){const Ht={flip:this.flip,animation:this.animation,border:this.border,inverse:this.inverse,size:this.size||null,pull:this.pull||null,rotate:this.rotate||null,fixedWidth:"boolean"==typeof this.fixedWidth?this.fixedWidth:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize:null},ei="string"==typeof this.transform?dn.transform(this.transform):this.transform;return{title:this.title,transform:ei,classes:Nc(Ht),mask:null!=this.mask?this.findIconDefinition(this.mask):null,symbol:this.symbol,attributes:{role:this.a11yRole}}}static{this.\u0275fac=function(ei){return new(ei||mt)(e.rXU(bs.up),e.rXU(Pc),e.rXU(Xs),e.rXU(oc,8),e.rXU(ys,8))}}static{this.\u0275cmp=e.VBU({type:mt,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(ei,ci){2&ei&&(e.Mr5("innerHTML",ci.renderedIconHTML,e.npT),e.BMQ("title",ci.title))},inputs:{icon:"icon",title:"title",animation:"animation",mask:"mask",flip:"flip",size:"size",pull:"pull",border:"border",inverse:"inverse",symbol:"symbol",rotate:"rotate",fixedWidth:"fixedWidth",transform:"transform",a11yRole:"a11yRole"},standalone:!0,features:[e.OA$,e.aNF],decls:0,vars:0,template:function(ei,ci){},encapsulation:2})}}return mt})(),tl=(()=>{class mt{static{this.\u0275fac=function(ei){return new(ei||mt)}}static{this.\u0275mod=e.$C({type:mt})}static{this.\u0275inj=e.G2t({})}}return mt})()},5383:(Qe,te,g)=>{"use strict";g.d(te,{$$g:()=>ea,$Fj:()=>_0,$sC:()=>Pm,BA1:()=>r2,C8j:()=>vp,CQO:()=>Ng,Ccf:()=>$6,D6w:()=>ll,DW4:()=>_n,EvL:()=>j4,FYJ:()=>pu,GR4:()=>Z3,GRI:()=>r8,HEq:()=>Vs,If6:()=>h_,Int:()=>AC,JKM:()=>Xh,Kcb:()=>Mp,M29:()=>P1,McB:()=>_i,Mf0:()=>X_,MjD:()=>U_,Oh6:()=>mi,QLR:()=>ku,TBz:()=>c5,Tq9:()=>Nx,Vpi:()=>J1,VwO:()=>c7,W1p:()=>Kh,WKo:()=>W9,WxX:()=>Je,Xbc:()=>cd,_eQ:()=>pn,_qq:()=>z8,aAJ:()=>f_,aFw:()=>Kl,cbP:()=>sg,dB:()=>g7,e4L:()=>Il,eGi:()=>rg,f6_:()=>F3,gdJ:()=>Co,hb3:()=>r4,iW_:()=>Db,iy8:()=>Yb,jPR:()=>Qg,jTw:()=>K0,k02:()=>$n,k6j:()=>pd,knH:()=>e6,ld_:()=>Wv,njF:()=>Zp,nsx:()=>n6,o97:()=>rp,pCJ:()=>ii,pS3:()=>d2,peG:()=>Ih,qFF:()=>f9,qIE:()=>fn,s5m:()=>Od,vfE:()=>Ql,xiI:()=>Rg,ymQ:()=>k2,zPk:()=>tc,zjW:()=>p2,zm_:()=>r_,zpE:()=>Tw});const Je={prefix:"fas",iconName:"angles-down",icon:[448,512,["angle-double-down"],"f103","M246.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 0L224 402.7 361.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 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},ii={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304l91.4 0C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7L29.7 512C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},mi={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M32 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 64C0 46.3 14.3 32 32 32zm0 128l448 0 0 256c0 35.3-28.7 64-64 64L96 480c-35.3 0-64-28.7-64-64l0-256zm128 80c0 8.8 7.2 16 16 16l160 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-160 0c-8.8 0-16 7.2-16 16z"]},ea={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z"]},Vs={prefix:"fas",iconName:"unlock-keyhole",icon:[448,512,["unlock-alt"],"f13e","M224 64c-44.2 0-80 35.8-80 80l0 48 240 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 256c0-35.3 28.7-64 64-64l16 0 0-48C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0z"]},pn={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448L64 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"]},_n={prefix:"fas",iconName:"lock",icon:[448,512,[128274],"f023","M144 144l0 48 160 0 0-48c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192l0-48C80 64.5 144.5 0 224 0s144 64.5 144 144l0 48 16 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 256c0-35.3 28.7-64 64-64l16 0z"]},Co={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192l42.7 0c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0L21.3 320C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7l42.7 0C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3l-213.3 0zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352l117.3 0C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7l-330.7 0c-14.7 0-26.7-11.9-26.7-26.7z"]},pd={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z"]},Il={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75l-8.7 0-32 0-96 0c-35.3 0-64 28.7-64 64l0 96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-128 8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-147.6c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4L480 32zm-64 76.7L416 240l0 131.3C357.2 317.8 280.5 288 200.7 288l-8.7 0 0-96 8.7 0c79.8 0 156.5-29.8 215.3-83.3z"]},k2={prefix:"fas",iconName:"money-bill-wave",icon:[576,512,[],"f53a","M0 112.5L0 422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4l0-309.9c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64l-64 0 0-64zm64-208c0 35.3-28.7 64-64 64l0-64 64 0zM512 304l0 64-64 0c0-35.3 28.7-64 64-64zM448 96l64 0 0 64c-35.3 0-64-28.7-64-64z"]},ll={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 32zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 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 64l384 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 288zm280 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"]},_0={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 96c0-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 64l128 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 96l256 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"]},Kl={prefix:"fas",iconName:"window-restore",icon:[512,512,[],"f2d2","M432 64L208 64c-8.8 0-16 7.2-16 16l0 16-64 0 0-16c0-44.2 35.8-80 80-80L432 0c44.2 0 80 35.8 80 80l0 224c0 44.2-35.8 80-80 80l-16 0 0-64 16 0c8.8 0 16-7.2 16-16l0-224c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64l256 0c35.3 0 64 28.7 64 64l0 256c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 192zm64 32c0 17.7 14.3 32 32 32l192 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 192c-17.7 0-32 14.3-32 32z"]},Od={prefix:"fas",iconName:"euro-sign",icon:[320,512,[8364,"eur","euro"],"f153","M48.1 240c-.1 2.7-.1 5.3-.1 8l0 16c0 2.7 0 5.3 .1 8L32 272c-17.7 0-32 14.3-32 32s14.3 32 32 32l28.3 0C89.9 419.9 170 480 264 480l24 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-24 0c-57.9 0-108.2-32.4-133.9-80L256 336c17.7 0 32-14.3 32-32s-14.3-32-32-32l-143.8 0c-.1-2.6-.2-5.3-.2-8l0-16c0-2.7 .1-5.4 .2-8L256 240c17.7 0 32-14.3 32-32s-14.3-32-32-32l-125.9 0c25.7-47.6 76-80 133.9-80l24 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-24 0C170 32 89.9 92.1 60.3 176L32 176c-17.7 0-32 14.3-32 32s14.3 32 32 32l16.1 0z"]},Ql={prefix:"fas",iconName:"sterling-sign",icon:[320,512,[163,"gbp","pound-sign"],"f154","M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4L48 224l-16 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l16 0 0 44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480l256 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L88.5 416l.7-1.1C104.1 390 112 361.5 112 332.5l0-44.5 112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-112 0 0-63.6z"]},P1={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-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.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z"]},Ih={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M297.4 9.4c12.5-12.5 32.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 0s-12.5-32.8 0-45.3L338.7 160 128 160c-35.3 0-64 28.7-64 64l0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32C0 153.3 57.3 96 128 96l210.7 0L297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.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 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32c0-53 43-96 96-96l146.7 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},fn={prefix:"fas",iconName:"layer-group",icon:[576,512,[],"f5fd","M264.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 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.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 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.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 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z"]},j4={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M80 160c0-35.3 28.7-64 64-64l32 0c35.3 0 64 28.7 64 64l0 3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74l0 1.4c0 17.7 14.3 32 32 32s32-14.3 32-32l0-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7l0-3.6c0-70.7-57.3-128-128-128l-32 0C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"]},K0={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M392.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.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"]},Xh={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l40.9 0 56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288l46 0L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288l40.9 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-19.6 0 50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224l-64 0L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224l-64 0L62.4 53.9zm78 234.1l26.6 0-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1-14 0zm96 64l26.6 0-15.2 45.6L345 288z"]},Kh={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M304 240l0-223.4c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16L304 240zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4L256 288 412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288l238.4 0z"]},Zp={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"]},e6={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M224 32L64 32C46.3 32 32 46.3 32 64l0 64c0 17.7 14.3 32 32 32l377.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.7L288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32zM480 256c0-17.7-14.3-32-32-32l-160 0 0-32-64 0 0 32L70.6 224c-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.7L448 352c17.7 0 32-14.3 32-32l0-64zM288 480l0-96-64 0 0 96c0 17.7 14.3 32 32 32s32-14.3 32-32z"]},n6={prefix:"fas",iconName:"screwdriver-wrench",icon:[512,512,["tools"],"f7d9","M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4l54.1 0 109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109 0-54.1c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7L352 176c-8.8 0-16-7.2-16-16l0-57.4c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},r2={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-224c0-35.3-28.7-64-64-64L80 128c-8.8 0-16-7.2-16-16s7.2-16 16-16l368 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L64 32zM416 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},cd={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 87.8c18.8-10.9 40.7-17.1 64-17.1l96 0c35.3 0 64-28.7 64-64l0-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3l0 6.7c0 70.7-57.3 128-128 128l-96 0c-35.3 0-64 28.7-64 64l0 6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3l0-6.7 0-198.7C19.7 141 0 112.8 0 80C0 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"]},c5={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155c-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.8c6.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-96c0-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.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-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"]},d2={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"]},_i={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304l91.4 0c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7l0 .9c0 9.2 2.7 18.5 7.9 26.3L29.7 512C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8l0 30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8l0-30.5c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9l0-30.5zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z"]},$n={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-128c0-17.7-14.3-32-32-32L352 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"]},Pm={prefix:"fas",iconName:"angles-up",icon:[448,512,["angle-double-up"],"f102","M246.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 0L224 109.3 361.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 0L224 301.3 361.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},Db={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 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-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},c7={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 64c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 160 0 64 0 160c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-64-32 0c-17.7 0-32-14.3-32-32l0-64c-17.7 0-32-14.3-32-32s14.3-32 32-32l0-64c0-17.7 14.3-32 32-32l32 0 0-64zm448 0l0 64 32 0c17.7 0 32 14.3 32 32l0 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l0 64c0 17.7-14.3 32-32 32l-32 0 0 64c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-160 0-64 0-160c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32zM416 224l0 64-192 0 0-64 192 0z"]},pu={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32l64 0 16 0 176 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-56.2 0c9.6 14.4 16.7 30.6 20.7 48l35.6 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-35.6 0c-13.2 58.3-61.9 103.2-122.2 110.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 0c32.8 0 61-19.7 73.3-48L32 208c-17.7 0-32-14.3-32-32s14.3-32 32-32l153.3 0C173 115.7 144.8 96 112 96L96 96 32 96C14.3 96 0 81.7 0 64z"]},$6={prefix:"fas",iconName:"money-bill-1",icon:[576,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128L0 384c0 35.3 28.7 64 64 64l448 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64L64 64zm64 320l-64 0 0-64c35.3 0 64 28.7 64 64zM64 192l0-64 64 0c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64l0 64-64 0zm64-192c-35.3 0-64-28.7-64-64l64 0 0 64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 9.7 6.9 17.7 16 19.6l0 48.4-4 0c-11 0-20 9-20 20s9 20 20 20l24 0 24 0c11 0 20-9 20-20s-9-20-20-20l-4 0 0-68c0-11-9-20-20-20l-16 0c-11 0-20 9-20 20z"]},Yb=$6,p2={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64l0 160 0 96-16 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l16 0 0 64c0 17.7 14.3 32 32 32s32-14.3 32-32l0-64 80 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-80 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"]},g7={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z"]},rg={prefix:"fas",iconName:"network-wired",icon:[640,512,[],"f6ff","M256 64l128 0 0 64-128 0 0-64zM240 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l48 0 0 32L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0 0 32-48 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l160 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0-32 256 0 0 32-48 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l160 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0-32 96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-256 0 0-32 48 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48L240 0zM96 448l0-64 128 0 0 64L96 448zm320-64l128 0 0 64-128 0 0-64z"]},sg={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},r_={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288l111.5 0L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7l-111.5 0L349.4 44.6z"]},tc={prefix:"fas",iconName:"yen-sign",icon:[320,512,[165,"cny","jpy","rmb","yen"],"f157","M58.6 46.3C48.8 31.5 29 27.6 14.2 37.4S-4.4 67 5.4 81.8L100.2 224 48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l80 0 0 32-80 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l80 0 0 64c0 17.7 14.3 32 32 32s32-14.3 32-32l0-64 80 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-80 0 0-32 80 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-52.2 0L314.6 81.8c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.3z"]},F3={prefix:"fas",iconName:"ruble-sign",icon:[384,512,[8381,"rouble","rub","ruble"],"f158","M96 32C78.3 32 64 46.3 64 64l0 192-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l32 0 0 32-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l32 0 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32 160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-160 0 0-32 112 0c79.5 0 144-64.5 144-144s-64.5-144-144-144L96 32zM240 256l-112 0 0-160 112 0c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},h_={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[512,512,[],"e4c1","M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 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-146.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-80zm13.3 256l80 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 416 96 416c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z"]},f_={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l362.8 0c-5.4-9.4-8.6-20.3-8.6-32l0-128c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7l-91.4 0zM528 240c17.7 0 32 14.3 32 32l0 48-64 0 0-48c0-17.7 14.3-32 32-32zm-80 32l0 48c-17.7 0-32 14.3-32 32l0 128c0 17.7 14.3 32 32 32l160 0c17.7 0 32-14.3 32-32l0-128c0-17.7-14.3-32-32-32l0-48c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},Rg={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-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"]},rp={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"]},Ng={prefix:"fas",iconName:"link",icon:[640,512,[128279,"chain"],"f0c1","M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"]},U_={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 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},X_={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.3-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8l0 464c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L192 471.6l-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.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16l192 0c8.8 0 16-7.2 16-16s-7.2-16-16-16L96 144zM80 352c0 8.8 7.2 16 16 16l192 0c8.8 0 16-7.2 16-16s-7.2-16-16-16L96 336c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l192 0c8.8 0 16-7.2 16-16s-7.2-16-16-16L96 240z"]},Nx={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 0c17.7 0 32 14.3 32 32l0 18.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5l-1.7 0c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4l0 3.4c0 51.2-33.6 94.6-80 109.2l0 21.3c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-19.4c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5l0-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2L368 32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32l80 0c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320 64 320l0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32L0 288 0 64zM64 256l48 0c44.2 0 80-35.8 80-80s-35.8-80-80-80L64 96l0 160z"]},f9={prefix:"fas",iconName:"diagram-project",icon:[576,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32l96 0c26.5 0 48 21.5 48 48l0 16 192 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-192 0 0 16c0 1.7-.1 3.4-.3 5L272 288l96 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-1.7 .1-3.4 .3-5L144 224l-96 0c-26.5 0-48-21.5-48-48L0 80z"]},Qg={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M208 0L332.1 0c12.7 0 24.9 5.1 33.9 14.1l67.9 67.9c9 9 14.1 21.2 14.1 33.9L448 336c0 26.5-21.5 48-48 48l-192 0c-26.5 0-48-21.5-48-48l0-288c0-26.5 21.5-48 48-48zM48 128l80 0 0 64-64 0 0 256 192 0 0-32 64 0 0 48c0 26.5-21.5 48-48 48L48 512c-26.5 0-48-21.5-48-48L0 176c0-26.5 21.5-48 48-48z"]},ku={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z"]},r8={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"]},W9={prefix:"fas",iconName:"percent",icon:[384,512,[62101,62785,"percentage"],"25","M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"]},AC={prefix:"fas",iconName:"clock-rotate-left",icon:[512,512,["history"],"f1da","M75 75L41 41C25.9 25.9 0 36.6 0 57.9L0 168c0 13.3 10.7 24 24 24l110.1 0c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-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.1c0-13.3-10.7-24-24-24z"]},vp={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1l0 29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9l0-29.7zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1l0 29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1l0-29.7c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z"]},Z3={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.3L352 448l160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0-192 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 288l144.9 0L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-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.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320l144.9 0L126.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.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z"]},Mp={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M144 0c-17.7 0-32 14.3-32 32l0 32L37.6 64C16.8 64 0 80.8 0 101.6L0 224l0 41.7L0 288 0 406.3c0 23 18.7 41.7 41.7 41.7l70.3 0 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32 32 0c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112l0-32c0-17.7-14.3-32-32-32zM112 128l0 96-48 0 0-96 48 0zm64 96l0-96c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64l0 96-48 0 0-96 48 0zm64 96l0-96 32 0c26.5 0 48 21.5 48 48s-21.5 48-48 48l-32 0z"]},Tw={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480L40 480c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24l0 112c0 13.3 10.7 24 24 24s24-10.7 24-24l0-112c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},z8={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M32 96l320 0 0-64c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6l0-64L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.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.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64 320 0z"]},Wv={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304l91.4 0c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144L29.7 512C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM352 368a144 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"]},r4={prefix:"fas",iconName:"turkish-lira-sign",icon:[384,512,["try","turkish-lira"],"e2bb","M96 32c17.7 0 32 14.3 32 32l0 35.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9l0 29.4 119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9 128 416l63.8 0c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480L96 480c-17.7 0-32-14.3-32-32l0-167.9-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6l0-29.4-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6 64 64c0-17.7 14.3-32 32-32z"]},J1={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M160 0c17.7 0 32 14.3 32 32l0 35.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11l0 33.4c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-34.9c-.4-.1-.9-.1-1.3-.2l-.2 0s0 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3c-16.1-7.2-23.4-26.1-16.2-42.2s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7s0 0 0 0C119.4 279.3 84.4 270 58.4 253c-14.2-9.3-27.5-22-35.8-39.6c-8.4-17.9-10.1-37.9-6.1-59.2C23.7 116 52.3 91.2 84.8 78.3c13.3-5.3 27.9-8.9 43.2-11L128 32c0-17.7 14.3-32 32-32z"]}},4054:(Qe,te,g)=>{"use strict";g.d(te,{En:()=>We,Vm:()=>Je,EH:()=>C,gp:()=>oe});var e=g(7673);g(274),g(3993);var w=g(7786),f=g(1985),R=g(1413),h=g(3557),S=g(983),y=g(8810),O=g(8071);class V{constructor(Se,Te,ce){this.kind=Se,this.value=Te,this.error=ce,this.hasValue="N"===Se}observe(Se){return j(this,Se)}do(Se,Te,ce){const{kind:Z,value:Re,error:Pe}=this;return"N"===Z?Se?.(Re):"E"===Z?Te?.(Pe):ce?.()}accept(Se,Te,ce){var Z;return(0,O.T)(null===(Z=Se)||void 0===Z?void 0:Z.next)?this.observe(Se):this.do(Se,Te,ce)}toObservable(){const{kind:Se,value:Te,error:ce}=this,Z="N"===Se?(0,e.of)(Te):"E"===Se?(0,y.$)(()=>ce):"C"===Se?S.w:0;if(!Z)throw new TypeError(`Unexpected notification kind ${Se}`);return Z}static createNext(Se){return new V("N",Se)}static createError(Se){return new V("E",void 0,Se)}static createComplete(){return V.completeNotification}}function j(xt,Se){var Te,ce,Z;const{kind:Re,value:Pe,error:pt}=xt;if("string"!=typeof Re)throw new TypeError('Invalid notification, missing "kind"');"N"===Re?null===(Te=Se.next)||void 0===Te||Te.call(Se,Pe):"E"===Re?null===(ce=Se.error)||void 0===ce||ce.call(Se,pt):null===(Z=Se.complete)||void 0===Z||Z.call(Se)}V.completeNotification=new V("C");var Y=g(9974),W=g(4360),J=g(6354),ie=g(9437),ee=g(5964),fe=g(8750);function ne(xt,Se,Te,ce){return(0,Y.N)((Z,Re)=>{let Pe;Se&&"function"!=typeof Se?({duration:Te,element:Pe,connector:ce}=Se):Pe=Se;const pt=new Map,Ke=pi=>{pt.forEach(pi),pi(Re)},Fe=pi=>Ke($t=>$t.error(pi));let Ge=0,qe=!1;const at=new W.H(Re,pi=>{try{const $t=xt(pi);let Kt=pt.get($t);if(!Kt){pt.set($t,Kt=ce?ce():new R.B);const Ui=function Lt(pi,$t){const Kt=new f.c(Ui=>{Ge++;const ti=$t.subscribe(Ui);return()=>{ti.unsubscribe(),0==--Ge&&qe&&at.unsubscribe()}});return Kt.key=pi,Kt}($t,Kt);if(Re.next(Ui),Te){const ti=(0,W._)(Kt,()=>{Kt.complete(),ti?.unsubscribe()},void 0,void 0,()=>pt.delete($t));at.add((0,fe.Tg)(Te(Ui)).subscribe(ti))}}Kt.next(Pe?Pe(pi):pi)}catch($t){Fe($t)}},()=>Ke(pi=>pi.complete()),Fe,()=>pt.clear(),()=>(qe=!0,0===Ge));Z.subscribe(at)})}var Me=g(1397);function Ce(xt,Se){return Se?Te=>Te.pipe(Ce((ce,Z)=>(0,fe.Tg)(xt(ce,Z)).pipe((0,J.T)((Re,Pe)=>Se(ce,Re,Z,Pe))))):(0,Y.N)((Te,ce)=>{let Z=0,Re=null,Pe=!1;Te.subscribe((0,W._)(ce,pt=>{Re||(Re=(0,W._)(ce,void 0,()=>{Re=null,Pe&&ce.complete()}),(0,fe.Tg)(xt(pt,Z++)).subscribe(Re))},()=>{Pe=!0,!Re&&ce.complete()}))})}var T=g(6697),n=g(4438),c=g(9640);const m={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},d="__@ngrx/effects_create__";function C(xt,Se={}){const Te=Se.functional?xt:xt(),ce={...m,...Se};return Object.defineProperty(Te,d,{value:ce}),Te}function a(xt){return Object.getPrototypeOf(xt)}function z(xt){return"function"==typeof xt}function N(xt){return xt.filter(z)}function pe(xt,Se,Te){const ce=a(xt),Re=ce&&"Object"!==ce.constructor.name?ce.constructor.name:null,Pe=function _(xt){return function A(xt){return Object.getOwnPropertyNames(xt).filter(ce=>!(!xt[ce]||!xt[ce].hasOwnProperty(d))&&xt[ce][d].hasOwnProperty("dispatch")).map(ce=>({propertyName:ce,...xt[ce][d]}))}(xt)}(xt).map(({propertyName:pt,dispatch:Ke,useEffectsErrorHandler:Fe})=>{const Ge="function"==typeof xt[pt]?xt[pt]():xt[pt],qe=Fe?Te(Ge,Se):Ge;return!1===Ke?qe.pipe((0,h.w)()):qe.pipe(function Q(){return(0,Y.N)((xt,Se)=>{xt.subscribe((0,W._)(Se,Te=>{Se.next(V.createNext(Te))},()=>{Se.next(V.createComplete()),Se.complete()},Te=>{Se.next(V.createError(Te)),Se.complete()}))})}()).pipe((0,J.T)(Lt=>({effect:xt[pt],notification:Lt,propertyName:pt,sourceName:Re,sourceInstance:xt})))});return(0,w.h)(...Pe)}function Xe(xt,Se,Te=10){return xt.pipe((0,ie.W)(ce=>(Se&&Se.handleError(ce),Te<=1?xt:Xe(xt,Se,Te-1))))}let We=(()=>{class xt extends f.c{constructor(Te){super(),Te&&(this.source=Te)}lift(Te){const ce=new xt;return ce.source=this,ce.operator=Te,ce}static{this.\u0275fac=function(ce){return new(ce||xt)(n.KVO(c.sA))}}static{this.\u0275prov=n.jDH({token:xt,factory:xt.\u0275fac,providedIn:"root"})}}return xt})();function oe(...xt){return(0,ee.p)(Se=>xt.some(Te=>"string"==typeof Te?Te===Se.type:Te.type===Se.type))}const X=new n.nKC("@ngrx/effects Internal Root Guard"),se=new n.nKC("@ngrx/effects User Provided Effects"),ae=new n.nKC("@ngrx/effects Internal Root Effects"),he=new n.nKC("@ngrx/effects Internal Root Effects Instances"),Ie=new n.nKC("@ngrx/effects Internal Feature Effects"),st=new n.nKC("@ngrx/effects Internal Feature Effects Instance Groups"),me=new n.nKC("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>Xe}),Ee="@ngrx/effects/init";(0,c.VP)(Ee);function je(xt){return vt(xt,"ngrxOnInitEffects")}function vt(xt,Se){return xt&&Se in xt&&"function"==typeof xt[Se]}let $e=(()=>{class xt extends R.B{constructor(Te,ce){super(),this.errorHandler=Te,this.effectsErrorHandler=ce}addEffects(Te){this.next(Te)}toActions(){return this.pipe(ne(Te=>function b(xt){return!!xt.constructor&&"Object"!==xt.constructor.name&&"Function"!==xt.constructor.name}(Te)?a(Te):Te),(0,Me.Z)(Te=>Te.pipe(ne(nt))),(0,Me.Z)(Te=>{const ce=Te.pipe(Ce(Re=>function qt(xt,Se){return Te=>{const ce=pe(Te,xt,Se);return function we(xt){return vt(xt,"ngrxOnRunEffects")}(Te)?Te.ngrxOnRunEffects(ce):ce}}(this.errorHandler,this.effectsErrorHandler)(Re)),(0,J.T)(Re=>(function Be(xt,Se){if("N"===xt.notification.kind){const Te=xt.notification.value;!function Ct(xt){return"function"!=typeof xt&&xt&&xt.type&&"string"==typeof xt.type}(Te)&&Se.handleError(new Error(`Effect ${function ct({propertyName:xt,sourceInstance:Se,sourceName:Te}){const ce="function"==typeof Se[xt];return Te?`"${Te}.${String(xt)}${ce?"()":""}"`:`"${String(xt)}()"`}(xt)} dispatched an invalid action: ${function dt(xt){try{return JSON.stringify(xt)}catch{return xt}}(Te)}`))}}(Re,this.errorHandler),Re.notification)),(0,ee.p)(Re=>"N"===Re.kind&&null!=Re.value),function le(){return(0,Y.N)((xt,Se)=>{xt.subscribe((0,W._)(Se,Te=>j(Te,Se)))})}()),Z=Te.pipe((0,T.s)(1),(0,ee.p)(je),(0,J.T)(Re=>Re.ngrxOnInitEffects()));return(0,w.h)(ce,Z)}))}static{this.\u0275fac=function(ce){return new(ce||xt)(n.KVO(n.zcH),n.KVO(me))}}static{this.\u0275prov=n.jDH({token:xt,factory:xt.\u0275fac,providedIn:"root"})}}return xt})();function nt(xt){return function ve(xt){return vt(xt,"ngrxOnIdentifyEffects")}(xt)?xt.ngrxOnIdentifyEffects():""}let Nt=(()=>{class xt{get isStarted(){return!!this.effectsSubscription}constructor(Te,ce){this.effectSources=Te,this.store=ce,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}static{this.\u0275fac=function(ce){return new(ce||xt)(n.KVO($e),n.KVO(c.il))}}static{this.\u0275prov=n.jDH({token:xt,factory:xt.\u0275fac,providedIn:"root"})}}return xt})(),yt=(()=>{class xt{constructor(Te,ce,Z,Re,Pe,pt,Ke){this.sources=Te,ce.start();for(const Fe of Re)Te.addEffects(Fe);Z.dispatch({type:Ee})}addEffects(Te){this.sources.addEffects(Te)}static{this.\u0275fac=function(ce){return new(ce||xt)(n.KVO($e),n.KVO(Nt),n.KVO(c.il),n.KVO(he),n.KVO(c.wc,8),n.KVO(c.ae,8),n.KVO(X,8))}}static{this.\u0275mod=n.$C({type:xt})}static{this.\u0275inj=n.G2t({})}}return xt})(),jt=(()=>{class xt{constructor(Te,ce,Z,Re){const Pe=ce.flat();for(const pt of Pe)Te.addEffects(pt)}static{this.\u0275fac=function(ce){return new(ce||xt)(n.KVO(yt),n.KVO(st),n.KVO(c.wc,8),n.KVO(c.ae,8))}}static{this.\u0275mod=n.$C({type:xt})}static{this.\u0275inj=n.G2t({})}}return xt})(),Je=(()=>{class xt{static forFeature(...Te){const ce=Te.flat(),Z=N(ce);return{ngModule:jt,providers:[Z,{provide:Ie,multi:!0,useValue:ce},{provide:se,multi:!0,useValue:[]},{provide:st,multi:!0,useFactory:et,deps:[Ie,se]}]}}static forRoot(...Te){const ce=Te.flat(),Z=N(ce);return{ngModule:yt,providers:[Z,{provide:ae,useValue:[ce]},{provide:X,useFactory:Ae},{provide:se,multi:!0,useValue:[]},{provide:he,useFactory:et,deps:[ae,se]}]}}static{this.\u0275fac=function(ce){return new(ce||xt)}}static{this.\u0275mod=n.$C({type:xt})}static{this.\u0275inj=n.G2t({})}}return xt})();function et(xt,Se){const Te=[];for(const ce of xt)Te.push(...ce);for(const ce of Se)Te.push(...ce);return Te.map(ce=>function q(xt){return xt instanceof n.nKC||z(xt)}(ce)?(0,n.WQX)(ce):ce)}function Ae(){const xt=(0,n.WQX)(Nt,{optional:!0,skipSelf:!0}),Se=(0,n.WQX)(ae,{self:!0});if((1!==Se.length||0!==Se[0].length)&&xt)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9640:(Qe,te,g)=>{"use strict";g.d(te,{SS:()=>le,Zz:()=>Ce,N_:()=>m,Bh:()=>ct,QU:()=>Ct,sA:()=>_e,h1:()=>Ue,il:()=>nt,ae:()=>dr,md:()=>wn,wc:()=>nr,q6:()=>dt,VP:()=>j,UX:()=>$t,vy:()=>Yi,Mz:()=>at,on:()=>Ai,xk:()=>Y});var e=g(4438),t=g(4412),x=g(1985),D=g(1413),l=g(7242),w=g(941),f=g(3993),R=g(2816),h=g(6354),y=g(3294),O=g(9079);const I={};function j(Ft,mi){if(I[Ft]=(I[Ft]||0)+1,"function"==typeof mi)return Q(Ft,(...xi)=>({...mi(...xi),type:Ft}));switch(mi?mi._as:"empty"){case"empty":return Q(Ft,()=>({type:Ft}));case"props":return Q(Ft,xi=>({...xi,type:Ft}));default:throw new Error("Unexpected config.")}}function Y(){return{_as:"props",_p:void 0}}function Q(Ft,mi){return Object.defineProperty(mi,"type",{value:Ft,writable:!1})}const Ce="@ngrx/store/init";let le=(()=>{class Ft extends t.t{constructor(){super({type:Ce})}next(gi){if("function"==typeof gi)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 gi>"u")throw new TypeError("Actions must be objects");if(typeof gi.type>"u")throw new TypeError("Actions must have a type property");super.next(gi)}complete(){}ngOnDestroy(){super.complete()}static{this.\u0275fac=function(xi){return new(xi||Ft)}}static{this.\u0275prov=e.jDH({token:Ft,factory:Ft.\u0275fac})}}return Ft})();const T=[le],n=new e.nKC("@ngrx/store Internal Root Guard"),c=new e.nKC("@ngrx/store Internal Initial State"),m=new e.nKC("@ngrx/store Initial State"),d=new e.nKC("@ngrx/store Reducer Factory"),C=new e.nKC("@ngrx/store Internal Reducer Factory Provider"),A=new e.nKC("@ngrx/store Initial Reducers"),k=new e.nKC("@ngrx/store Internal Initial Reducers"),_=new e.nKC("@ngrx/store Store Features"),a=new e.nKC("@ngrx/store Internal Store Reducers"),b=new e.nKC("@ngrx/store Internal Feature Reducers"),z=new e.nKC("@ngrx/store Internal Feature Configs"),N=new e.nKC("@ngrx/store Internal Store Features"),q=new e.nKC("@ngrx/store Internal Feature Reducers Token"),pe=new e.nKC("@ngrx/store Feature Reducers"),ze=new e.nKC("@ngrx/store User Provided Meta Reducers"),Xe=new e.nKC("@ngrx/store Meta Reducers"),We=new e.nKC("@ngrx/store Internal Resolved Meta Reducers"),oe=new e.nKC("@ngrx/store User Runtime Checks Config"),X=new e.nKC("@ngrx/store Internal User Runtime Checks Config"),se=new e.nKC("@ngrx/store Internal Runtime Checks"),ae=new e.nKC("@ngrx/store Check if Action types are unique");function st(Ft,mi={}){const gi=Object.keys(Ft),xi={};for(let nn=0;nnnn(Ni),gi(mi))}}function ue(Ft,mi){return Array.isArray(mi)&&mi.length>0&&(Ft=Ee.apply(null,[...mi,Ft])),(gi,xi)=>{const Ni=Ft(gi);return(nn,On)=>Ni(nn=void 0===nn?xi:nn,On)}}new e.nKC("@ngrx/store Root Store Provider"),new e.nKC("@ngrx/store Feature State Provider");class Ct extends x.c{}class ct extends le{}const dt="@ngrx/store/update-reducers";let Yt=(()=>{class Ft extends t.t{get currentReducers(){return this.reducers}constructor(gi,xi,Ni,nn){super(nn(Ni,xi)),this.dispatcher=gi,this.initialState=xi,this.reducers=Ni,this.reducerFactory=nn}addFeature(gi){this.addFeatures([gi])}addFeatures(gi){const xi=gi.reduce((Ni,{reducers:nn,reducerFactory:On,metaReducers:ir,initialState:gn,key:Xr})=>{const fr="function"==typeof nn?function Be(Ft){const mi=Array.isArray(Ft)&&Ft.length>0?Ee(...Ft):gi=>gi;return(gi,xi)=>(gi=mi(gi),(Ni,nn)=>gi(Ni=void 0===Ni?xi:Ni,nn))}(ir)(nn,gn):ue(On,ir)(nn,gn);return Ni[Xr]=fr,Ni},{});this.addReducers(xi)}removeFeature(gi){this.removeFeatures([gi])}removeFeatures(gi){this.removeReducers(gi.map(xi=>xi.key))}addReducer(gi,xi){this.addReducers({[gi]:xi})}addReducers(gi){this.reducers={...this.reducers,...gi},this.updateReducers(Object.keys(gi))}removeReducer(gi){this.removeReducers([gi])}removeReducers(gi){gi.forEach(xi=>{this.reducers=function me(Ft,mi){return Object.keys(Ft).filter(gi=>gi!==mi).reduce((gi,xi)=>Object.assign(gi,{[xi]:Ft[xi]}),{})}(this.reducers,xi)}),this.updateReducers(gi)}updateReducers(gi){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:dt,features:gi})}ngOnDestroy(){this.complete()}static{this.\u0275fac=function(xi){return new(xi||Ft)(e.KVO(ct),e.KVO(m),e.KVO(A),e.KVO(d))}}static{this.\u0275prov=e.jDH({token:Ft,factory:Ft.\u0275fac})}}return Ft})();const ve=[Yt,{provide:Ct,useExisting:Yt},{provide:ct,useExisting:le}];let _e=(()=>{class Ft extends D.B{ngOnDestroy(){this.complete()}static{this.\u0275fac=(()=>{let gi;return function(Ni){return(gi||(gi=e.xGo(Ft)))(Ni||Ft)}})()}static{this.\u0275prov=e.jDH({token:Ft,factory:Ft.\u0275fac})}}return Ft})();const we=[_e];class Ue extends x.c{}let je=(()=>{class Ft extends t.t{static{this.INIT=Ce}constructor(gi,xi,Ni,nn){super(nn);const Xr=gi.pipe((0,w.Q)(l.T)).pipe((0,f.E)(xi)).pipe((0,R.S)(vt,{state:nn}));this.stateSubscription=Xr.subscribe(({state:fr,action:mr})=>{this.next(fr),Ni.next(mr)}),this.state=(0,O.ot)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static{this.\u0275fac=function(xi){return new(xi||Ft)(e.KVO(le),e.KVO(Ct),e.KVO(_e),e.KVO(m))}}static{this.\u0275prov=e.jDH({token:Ft,factory:Ft.\u0275fac})}}return Ft})();function vt(Ft={state:void 0},[mi,gi]){const{state:xi}=Ft;return{state:gi(xi,mi),action:mi}}const $e=[je,{provide:Ue,useExisting:je}];let nt=(()=>{class Ft extends x.c{constructor(gi,xi,Ni){super(),this.actionsObserver=xi,this.reducerManager=Ni,this.source=gi,this.state=gi.state}select(gi,...xi){return Nt.call(null,gi,...xi)(this)}selectSignal(gi,xi){return(0,e.EWP)(()=>gi(this.state()),xi)}lift(gi){const xi=new Ft(this,this.actionsObserver,this.reducerManager);return xi.operator=gi,xi}dispatch(gi){this.actionsObserver.next(gi)}next(gi){this.actionsObserver.next(gi)}error(gi){this.actionsObserver.error(gi)}complete(){this.actionsObserver.complete()}addReducer(gi,xi){this.reducerManager.addReducer(gi,xi)}removeReducer(gi){this.reducerManager.removeReducer(gi)}static{this.\u0275fac=function(xi){return new(xi||Ft)(e.KVO(Ue),e.KVO(le),e.KVO(Yt))}}static{this.\u0275prov=e.jDH({token:Ft,factory:Ft.\u0275fac})}}return Ft})();const qt=[nt];function Nt(Ft,mi,...gi){return function(Ni){let nn;if("string"==typeof Ft){const On=[mi,...gi].filter(Boolean);nn=Ni.pipe(function S(...Ft){const mi=Ft.length;if(0===mi)throw new Error("list of properties cannot be empty.");return(0,h.T)(gi=>{let xi=gi;for(let Ni=0;NiFt(On,mi)))}return nn.pipe((0,y.F)())}}const yt="https://ngrx.io/guide/store/configuration/runtime-checks";function jt(Ft){return void 0===Ft}function Je(Ft){return null===Ft}function et(Ft){return Array.isArray(Ft)}function Tt(Ft){return"object"==typeof Ft&&null!==Ft}function Te(Ft){return"function"==typeof Ft}let Re=!1;function Ke(Ft,mi){return Ft===mi}function qe(Ft,mi=Ke,gi=Ke){let nn,xi=null,Ni=null;return{memoized:function Xr(){if(void 0!==nn)return nn.result;if(!xi)return Ni=Ft.apply(null,arguments),xi=arguments,Ni;if(!function Fe(Ft,mi,gi){for(let xi=0;xi"function"==typeof mi)}(xi[0])&&(xi=function Ui(Ft){const mi=Object.values(Ft),gi=Object.keys(Ft);return[...mi,(...Ni)=>gi.reduce((nn,On,ir)=>({...nn,[On]:Ni[ir]}),{})]}(xi[0]));const Ni=xi.slice(0,xi.length-1),nn=xi[xi.length-1],On=Ni.filter(fr=>fr.release&&"function"==typeof fr.release),ir=Ft(function(...fr){return nn.apply(null,fr)}),gn=qe(function(fr,mr){return mi.stateFn.apply(null,[fr,Ni,mr,ir])});return Object.assign(gn.memoized,{release:function Xr(){gn.reset(),ir.reset(),On.forEach(fr=>fr.release())},projector:ir.memoized,setResult:gn.setResult,clearResult:gn.clearResult})}}(qe)(...Ft)}function Lt(Ft,mi,gi,xi){if(void 0===gi){const nn=mi.map(On=>On(Ft));return xi.memoized.apply(null,nn)}const Ni=mi.map(nn=>nn(Ft,gi));return xi.memoized.apply(null,[...Ni,gi])}function $t(Ft){return at(mi=>{const gi=mi[Ft];return!function pt(){return Re}()&&(0,e.naY)()&&!(Ft in mi)&&console.warn(`@ngrx/store: The feature name "${Ft}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${Ft}', ...) or StoreModule.forFeature('${Ft}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),gi},mi=>mi)}function tn(Ft){return Ft instanceof e.nKC?(0,e.WQX)(Ft):Ft}function Vi(Ft,mi){return mi.map((gi,xi)=>{if(Ft[xi]instanceof e.nKC){const Ni=(0,e.WQX)(Ft[xi]);return{key:gi.key,reducerFactory:Ni.reducerFactory?Ni.reducerFactory:st,metaReducers:Ni.metaReducers?Ni.metaReducers:[],initialState:Ni.initialState}}return gi})}function Qi(Ft){return Ft.map(mi=>mi instanceof e.nKC?(0,e.WQX)(mi):mi)}function Xt(Ft){return"function"==typeof Ft?Ft():Ft}function St(Ft,mi){return Ft.concat(mi)}function tt(){if((0,e.WQX)(nt,{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 Mt(Ft){Object.freeze(Ft);const mi=Te(Ft);return Object.getOwnPropertyNames(Ft).forEach(gi=>{if(!gi.startsWith("\u0275")&&function Z(Ft,mi){return Object.prototype.hasOwnProperty.call(Ft,mi)}(Ft,gi)&&(!mi||"caller"!==gi&&"callee"!==gi&&"arguments"!==gi)){const xi=Ft[gi];(Tt(xi)||Te(xi))&&!Object.isFrozen(xi)&&Mt(xi)}}),Ft}function Ci(Ft,mi=[]){return(jt(Ft)||Je(Ft))&&0===mi.length?{path:["root"],value:Ft}:Object.keys(Ft).reduce((xi,Ni)=>{if(xi)return xi;const nn=Ft[Ni];return function ce(Ft){return Te(Ft)&&Ft.hasOwnProperty("\u0275cmp")}(nn)?xi:!(jt(nn)||Je(nn)||function Qt(Ft){return"number"==typeof Ft}(nn)||function It(Ft){return"boolean"==typeof Ft}(nn)||function Ae(Ft){return"string"==typeof Ft}(nn)||et(nn))&&(function Se(Ft){if(!function xt(Ft){return Tt(Ft)&&!et(Ft)}(Ft))return!1;const mi=Object.getPrototypeOf(Ft);return mi===Object.prototype||null===mi}(nn)?Ci(nn,[...mi,Ni]):{path:[...mi,Ni],value:nn})},!1)}function Ti(Ft,mi){if(!1===Ft)return;const gi=Ft.path.join("."),xi=new Error(`Detected unserializable ${mi} at "${gi}". ${yt}#strict${mi}serializability`);throw xi.value=Ft.value,xi.unserializablePath=gi,xi}function Zi(Ft){return(0,e.naY)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...Ft}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function ln({strictActionSerializability:Ft,strictStateSerializability:mi}){return gi=>Ft||mi?function Bt(Ft,mi){return function(gi,xi){mi.action(xi)&&Ti(Ci(xi),"action");const Ni=Ft(gi,xi);return mi.state()&&Ti(Ci(Ni),"state"),Ni}}(gi,{action:xi=>Ft&&!Ut(xi),state:()=>mi}):gi}function mn({strictActionImmutability:Ft,strictStateImmutability:mi}){return gi=>Ft||mi?function ot(Ft,mi){return function(gi,xi){const Ni=mi.action(xi)?Mt(xi):xi,nn=Ft(gi,Ni);return mi.state()?Mt(nn):nn}}(gi,{action:xi=>Ft&&!Ut(xi),state:()=>mi}):gi}function Ut(Ft){return Ft.type.startsWith("@ngrx")}function lt({strictActionWithinNgZone:Ft}){return mi=>Ft?function Hi(Ft,mi){return function(gi,xi){if(mi.action(xi)&&!e.SKi.isInAngularZone())throw new Error(`Action '${xi.type}' running outside NgZone. ${yt}#strictactionwithinngzone`);return Ft(gi,xi)}}(mi,{action:gi=>Ft&&!Ut(gi)}):mi}function re(Ft){return[{provide:X,useValue:Ft},{provide:oe,useFactory:ye,deps:[X]},{provide:se,deps:[oe],useFactory:Zi},{provide:Xe,multi:!0,deps:[se],useFactory:mn},{provide:Xe,multi:!0,deps:[se],useFactory:ln},{provide:Xe,multi:!0,deps:[se],useFactory:lt}]}function He(){return[{provide:ae,multi:!0,deps:[se],useFactory:rt}]}function ye(Ft){return Ft}function rt(Ft){if(!Ft.strictActionTypeUniqueness)return;const mi=Object.entries(I).filter(([,gi])=>gi>1).map(([gi])=>gi);if(mi.length)throw new Error(`Action types are registered more than once, ${mi.map(gi=>`"${gi}"`).join(", ")}. ${yt}#strictactiontypeuniqueness`)}function ii(Ft={},mi={}){return[{provide:n,useFactory:tt},{provide:c,useValue:mi.initialState},{provide:m,useFactory:Xt,deps:[c]},{provide:k,useValue:Ft},{provide:a,useExisting:Ft instanceof e.nKC?Ft:k},{provide:A,deps:[k,[new e.y_5(a)]],useFactory:tn},{provide:ze,useValue:mi.metaReducers?mi.metaReducers:[]},{provide:We,deps:[Xe,ze],useFactory:St},{provide:C,useValue:mi.reducerFactory?mi.reducerFactory:st},{provide:d,deps:[C,We],useFactory:ue},T,ve,we,$e,qt,re(mi.runtimeChecks),He()]}function Jn(Ft,mi,gi={}){return[{provide:z,multi:!0,useValue:Ft instanceof Object?{}:gi},{provide:_,multi:!0,useValue:{key:Ft instanceof Object?Ft.name:Ft,reducerFactory:gi instanceof e.nKC||!gi.reducerFactory?st:gi.reducerFactory,metaReducers:gi instanceof e.nKC||!gi.metaReducers?[]:gi.metaReducers,initialState:gi instanceof e.nKC||!gi.initialState?void 0:gi.initialState}},{provide:N,deps:[z,_],useFactory:Vi},{provide:b,multi:!0,useValue:Ft instanceof Object?Ft.reducer:mi},{provide:q,multi:!0,useExisting:mi instanceof e.nKC?mi:b},{provide:pe,multi:!0,deps:[b,[new e.y_5(q)]],useFactory:Qi},He()]}let nr=(()=>{class Ft{constructor(gi,xi,Ni,nn,On,ir){}static{this.\u0275fac=function(xi){return new(xi||Ft)(e.KVO(le),e.KVO(Ct),e.KVO(_e),e.KVO(nt),e.KVO(n,8),e.KVO(ae,8))}}static{this.\u0275mod=e.$C({type:Ft})}static{this.\u0275inj=e.G2t({})}}return Ft})(),dr=(()=>{class Ft{constructor(gi,xi,Ni,nn,On){this.features=gi,this.featureReducers=xi,this.reducerManager=Ni;const ir=gi.map((gn,Xr)=>{const mr=xi.shift()[Xr];return{...gn,reducers:mr,initialState:Xt(gn.initialState)}});Ni.addFeatures(ir)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static{this.\u0275fac=function(xi){return new(xi||Ft)(e.KVO(N),e.KVO(pe),e.KVO(Yt),e.KVO(nr),e.KVO(ae,8))}}static{this.\u0275mod=e.$C({type:Ft})}static{this.\u0275inj=e.G2t({})}}return Ft})(),wn=(()=>{class Ft{static forRoot(gi,xi){return{ngModule:nr,providers:[...ii(gi,xi)]}}static forFeature(gi,xi,Ni={}){return{ngModule:dr,providers:[...Jn(gi,xi,Ni)]}}static{this.\u0275fac=function(xi){return new(xi||Ft)}}static{this.\u0275mod=e.$C({type:Ft})}static{this.\u0275inj=e.G2t({})}}return Ft})();function Ai(...Ft){return{reducer:Ft.pop(),types:Ft.map(xi=>xi.type)}}function Yi(Ft,...mi){const gi=new Map;for(const xi of mi)for(const Ni of xi.types){const nn=gi.get(Ni);gi.set(Ni,nn?(ir,gn)=>xi.reducer(nn(ir,gn),gn):xi.reducer)}return function(xi=Ft,Ni){const nn=gi.get(Ni.type);return nn?nn(xi,Ni):xi}}},6064:(Qe,te,g)=>{"use strict";g.d(te,{Dl:()=>vm,L8:()=>_m,dV:()=>D6});var e=g(4438),t=g(177),x=g(1635),D=g(6939),l=g(3726),w=g(152),f=g(9969);function R(){}function h(u){return null==u?R:function(){return this.querySelector(u)}}function O(){return[]}function I(u){return null==u?O:function(){return this.querySelectorAll(u)}}function Y(u){return function(){return this.matches(u)}}function W(u){return function(L){return L.matches(u)}}var Q=Array.prototype.find;function ie(){return this.firstElementChild}var fe=Array.prototype.filter;function ne(){return Array.from(this.children)}function T(u){return new Array(u.length)}function c(u,L){this.ownerDocument=u.ownerDocument,this.namespaceURI=u.namespaceURI,this._next=null,this._parent=u,this.__data__=L}function d(u,L,s,M,U,K){for(var Et,ke=0,Gt=L.length,Pt=K.length;keL?1:u>=L?0:NaN}c.prototype={constructor:c,appendChild:function(u){return this._parent.insertBefore(u,this._next)},insertBefore:function(u,L){return this._parent.insertBefore(u,L)},querySelector:function(u){return this._parent.querySelector(u)},querySelectorAll:function(u){return this._parent.querySelectorAll(u)}};var ae="http://www.w3.org/1999/xhtml";const he={svg:"http://www.w3.org/2000/svg",xhtml:ae,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Ie(u){var L=u+="",s=L.indexOf(":");return s>=0&&"xmlns"!==(L=u.slice(0,s))&&(u=u.slice(s+1)),he.hasOwnProperty(L)?{space:he[L],local:u}:u}function st(u){return function(){this.removeAttribute(u)}}function me(u){return function(){this.removeAttributeNS(u.space,u.local)}}function Ee(u,L){return function(){this.setAttribute(u,L)}}function ue(u,L){return function(){this.setAttributeNS(u.space,u.local,L)}}function Be(u,L){return function(){var s=L.apply(this,arguments);null==s?this.removeAttribute(u):this.setAttribute(u,s)}}function Ct(u,L){return function(){var s=L.apply(this,arguments);null==s?this.removeAttributeNS(u.space,u.local):this.setAttributeNS(u.space,u.local,s)}}function dt(u){return u.ownerDocument&&u.ownerDocument.defaultView||u.document&&u||u.defaultView}function Yt(u){return function(){this.style.removeProperty(u)}}function ve(u,L,s){return function(){this.style.setProperty(u,L,s)}}function _e(u,L,s){return function(){var M=L.apply(this,arguments);null==M?this.style.removeProperty(u):this.style.setProperty(u,M,s)}}function Ue(u,L){return u.style.getPropertyValue(L)||dt(u).getComputedStyle(u,null).getPropertyValue(L)}function je(u){return function(){delete this[u]}}function vt(u,L){return function(){this[u]=L}}function $e(u,L){return function(){var s=L.apply(this,arguments);null==s?delete this[u]:this[u]=s}}function qt(u){return u.trim().split(/^|\s+/)}function Nt(u){return u.classList||new yt(u)}function yt(u){this._node=u,this._names=qt(u.getAttribute("class")||"")}function jt(u,L){for(var s=Nt(u),M=-1,U=L.length;++M=0&&(this._names.splice(L,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(u){return this._names.indexOf(u)>=0}};var Zi=[null];function ln(u,L){this._groups=u,this._parents=L}function mn(){return new ln([[document.documentElement]],Zi)}ln.prototype=mn.prototype={constructor:ln,select:function S(u){"function"!=typeof u&&(u=h(u));for(var L=this._groups,s=L.length,M=new Array(s),U=0;U=yn&&(yn=Yn+1);!(tr=ki[yn])&&++yn=0;)(ke=M[U])&&(K&&4^ke.compareDocumentPosition(K)&&K.parentNode.insertBefore(ke,K),K=ke);return this},sort:function q(u){function L(_i,wi){return _i&&wi?u(_i.__data__,wi.__data__):!_i-!wi}u||(u=pe);for(var s=this._groups,M=s.length,U=new Array(M),K=0;K1?this.each((null==L?Yt:"function"==typeof L?_e:ve)(u,L,s??"")):Ue(this.node(),u)},property:function nt(u,L){return arguments.length>1?this.each((null==L?je:"function"==typeof L?$e:vt)(u,L)):this.node()[u]},classed:function Qt(u,L){var s=qt(u+"");if(arguments.length<2){for(var M=Nt(this.node()),U=-1,K=s.length;++U=0&&(s=L.slice(M+1),L=L.slice(0,M)),{type:L,name:s}})}(u+""),K=M.length;if(!(arguments.length<2)){for(Et=L?tt:St,U=0;U{}};function ye(){for(var M,u=0,L=arguments.length,s={};u=0&&(M=s.slice(U+1),s=s.slice(0,U)),s&&!L.hasOwnProperty(s))throw new Error("unknown type: "+s);return{type:s,name:M}})}(u+"",s),K=-1,ke=M.length;if(!(arguments.length<2)){if(null!=L&&"function"!=typeof L)throw new Error("invalid callback: "+L);for(;++K0)for(var U,K,s=new Array(U),M=0;M>8&15|L>>4&240,L>>4&15|240&L,(15&L)<<4|15&L,1):8===s?Or(L>>24&255,L>>16&255,L>>8&255,(255&L)/255):4===s?Or(L>>12&15|L>>8&240,L>>8&15|L>>4&240,L>>4&15|240&L,((15&L)<<4|15&L)/255):null):(L=On.exec(u))?new Fr(L[1],L[2],L[3],1):(L=ir.exec(u))?new Fr(255*L[1]/100,255*L[2]/100,255*L[3]/100,1):(L=gn.exec(u))?Or(L[1],L[2],L[3],L[4]):(L=Xr.exec(u))?Or(255*L[1]/100,255*L[2]/100,255*L[3]/100,L[4]):(L=fr.exec(u))?Do(L[1],L[2]/100,L[3]/100,1):(L=mr.exec(u))?Do(L[1],L[2]/100,L[3]/100,L[4]):wa.hasOwnProperty(u)?Ds(wa[u]):"transparent"===u?new Fr(NaN,NaN,NaN,0):null}function Ds(u){return new Fr(u>>16&255,u>>8&255,255&u,1)}function Or(u,L,s,M){return M<=0&&(u=L=s=NaN),new Fr(u,L,s,M)}function za(u,L,s,M){return 1===arguments.length?function hs(u){return u instanceof Yi||(u=Ma(u)),u?new Fr((u=u.rgb()).r,u.g,u.b,u.opacity):new Fr}(u):new Fr(u,L,s,M??1)}function Fr(u,L,s,M){this.r=+u,this.g=+L,this.b=+s,this.opacity=+M}function Ur(){return`#${hn(this.r)}${hn(this.g)}${hn(this.b)}`}function Ya(){const u=xr(this.opacity);return`${1===u?"rgb(":"rgba("}${ua(this.r)}, ${ua(this.g)}, ${ua(this.b)}${1===u?")":`, ${u})`}`}function xr(u){return isNaN(u)?1:Math.max(0,Math.min(1,u))}function ua(u){return Math.max(0,Math.min(255,Math.round(u)||0))}function hn(u){return((u=ua(u))<16?"0":"")+u.toString(16)}function Do(u,L,s,M){return M<=0?u=L=s=NaN:s<=0||s>=1?u=L=NaN:L<=0&&(u=NaN),new ea(u,L,s,M)}function Ba(u){if(u instanceof ea)return new ea(u.h,u.s,u.l,u.opacity);if(u instanceof Yi||(u=Ma(u)),!u)return new ea;if(u instanceof ea)return u;var L=(u=u.rgb()).r/255,s=u.g/255,M=u.b/255,U=Math.min(L,s,M),K=Math.max(L,s,M),ke=NaN,Et=K-U,Gt=(K+U)/2;return Et?(ke=L===K?(s-M)/Et+6*(s0&&Gt<1?0:ke,new ea(ke,Et,Gt,u.opacity)}function ea(u,L,s,M){this.h=+u,this.s=+L,this.l=+s,this.opacity=+M}function _o(u){return(u=(u||0)%360)<0?u+360:u}function Va(u){return Math.max(0,Math.min(1,u||0))}function ko(u,L,s){return 255*(u<60?L+(s-L)*u/60:u<180?s:u<240?L+(s-L)*(240-u)/60:L)}function fo(u,L,s,M,U){var K=u*u,ke=K*u;return((1-3*u+3*K-ke)*L+(4-6*K+3*ke)*s+(1+3*u+3*K-3*ke)*M+ke*U)/6}wn(Yi,Ma,{copy(u){return Object.assign(new this.constructor,this,u)},displayable(){return this.rgb().displayable()},hex:Xa,formatHex:Xa,formatHex8:function ds(){return this.rgb().formatHex8()},formatHsl:function qr(){return Ba(this).formatHsl()},formatRgb:_s,toString:_s}),wn(Fr,za,Ai(Yi,{brighter(u){return u=null==u?mi:Math.pow(mi,u),new Fr(this.r*u,this.g*u,this.b*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new Fr(this.r*u,this.g*u,this.b*u,this.opacity)},rgb(){return this},clamp(){return new Fr(ua(this.r),ua(this.g),ua(this.b),xr(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:Ur,formatHex:Ur,formatHex8:function yr(){return`#${hn(this.r)}${hn(this.g)}${hn(this.b)}${hn(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:Ya,toString:Ya})),wn(ea,function Ao(u,L,s,M){return 1===arguments.length?Ba(u):new ea(u,L,s,M??1)},Ai(Yi,{brighter(u){return u=null==u?mi:Math.pow(mi,u),new ea(this.h,this.s,this.l*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new ea(this.h,this.s,this.l*u,this.opacity)},rgb(){var u=this.h%360+360*(this.h<0),L=isNaN(u)||isNaN(this.s)?0:this.s,s=this.l,M=s+(s<.5?s:1-s)*L,U=2*s-M;return new Fr(ko(u>=240?u-240:u+120,U,M),ko(u,U,M),ko(u<120?u+240:u-120,U,M),this.opacity)},clamp(){return new ea(_o(this.h),Va(this.s),Va(this.l),xr(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 u=xr(this.opacity);return`${1===u?"hsl(":"hsla("}${_o(this.h)}, ${100*Va(this.s)}%, ${100*Va(this.l)}%${1===u?")":`, ${u})`}`}}));const Ea=u=>()=>u;function Ua(u,L){var s=L-u;return s?function fa(u,L){return function(s){return u+s*L}}(u,s):Ea(isNaN(u)?L:u)}const ma=function u(L){var s=function Io(u){return 1==(u=+u)?Ua:function(L,s){return s-L?function Bs(u,L,s){return u=Math.pow(u,s),L=Math.pow(L,s)-u,s=1/s,function(M){return Math.pow(u+M*L,s)}}(L,s,u):Ea(isNaN(L)?s:L)}}(L);function M(U,K){var ke=s((U=za(U)).r,(K=za(K)).r),Et=s(U.g,K.g),Gt=s(U.b,K.b),Pt=Ua(U.opacity,K.opacity);return function(li){return U.r=ke(li),U.g=Et(li),U.b=Gt(li),U.opacity=Pt(li),U+""}}return M.gamma=u,M}(1);function no(u){return function(L){var ke,Et,s=L.length,M=new Array(s),U=new Array(s),K=new Array(s);for(ke=0;ke=1?(s=1,L-1):Math.floor(s*L),U=u[M],K=u[M+1];return fo((s-M/L)*L,M>0?u[M-1]:2*U-K,U,K,Ms&&(K=L.slice(s,K),Et[ke]?Et[ke]+=K:Et[++ke]=K),(M=M[0])===(U=U[0])?Et[ke]?Et[ke]+=U:Et[++ke]=U:(Et[++ke]=null,Gt.push({i:ke,x:pa(M,U)})),s=Ka.lastIndex;return s=0&&u._call.call(void 0,L),u=u._next;--Ei}()}finally{Ei=0,function Oo(){for(var u,s,L=Ra,M=1/0;L;)L._call?(M>L._time&&(M=L._time),u=L,L=L._next):(s=L._next,L._next=null,L=u?u._next=s:Ra=s);ao=u,Cr(M)}(),$a=0}}function er(){var u=Gr.now(),L=u-Zo;L>ga&&(Vo-=L,Zo=u)}function Cr(u){Ei||(Ji&&(Ji=clearTimeout(Ji)),u-$a>24?(u<1/0&&(Ji=setTimeout(vn,u-Gr.now()-Vo)),cr&&(cr=clearInterval(cr))):(cr||(Zo=Gr.now(),cr=setInterval(er,ga)),Ei=1,Pi(vn)))}function Qa(u,L,s){var M=new Ve;return M.restart(U=>{M.stop(),u(U+L)},L=null==L?0:+L,s),M}Ve.prototype=Dt.prototype={constructor:Ve,restart:function(u,L,s){if("function"!=typeof u)throw new TypeError("callback is not a function");s=(null==s?it():+s)+(null==L?0:+L),!this._next&&ao!==this&&(ao?ao._next=this:Ra=this,ao=this),this._call=u,this._time=s,Cr()},stop:function(){this._call&&(this._call=null,this._time=1/0,Cr())}};var _c=Gi("start","end","cancel","interrupt"),ks=[],Uo=0,Jo=3;function jn(u,L,s,M,U,K){var ke=u.__transition;if(ke){if(s in ke)return}else u.__transition={};!function _a(u,L,s){var U,M=u.__transition;function ke(Pt){var li,_i,wi,Di;if(1!==s.state)return Gt();for(li in M)if((Di=M[li]).name===s.name){if(Di.state===Jo)return Qa(ke);4===Di.state?(Di.state=6,Di.timer.stop(),Di.on.call("interrupt",u,u.__data__,Di.index,Di.group),delete M[li]):+liUo)throw new Error("too late; already scheduled");return s}function Nr(u,L){var s=ca(u,L);if(s.state>Jo)throw new Error("too late; already running");return s}function ca(u,L){var s=u.__transition;if(!s||!(s=s[L]))throw new Error("transition not found");return s}var xo,qo=180/Math.PI,vc={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function rc(u,L,s,M,U,K){var ke,Et,Gt;return(ke=Math.sqrt(u*u+L*L))&&(u/=ke,L/=ke),(Gt=u*s+L*M)&&(s-=u*Gt,M-=L*Gt),(Et=Math.sqrt(s*s+M*M))&&(s/=Et,M/=Et,Gt/=Et),u*M180?li+=360:li-Pt>180&&(Pt+=360),wi.push({i:_i.push(U(_i)+"rotate(",null,M)-2,x:pa(Pt,li)})):li&&_i.push(U(_i)+"rotate("+li+M)}(Pt.rotate,li.rotate,_i,wi),function Et(Pt,li,_i,wi){Pt!==li?wi.push({i:_i.push(U(_i)+"skewX(",null,M)-2,x:pa(Pt,li)}):li&&_i.push(U(_i)+"skewX("+li+M)}(Pt.skewX,li.skewX,_i,wi),function Gt(Pt,li,_i,wi,Di,sn){if(Pt!==_i||li!==wi){var kn=Di.push(U(Di)+"scale(",null,",",null,")");sn.push({i:kn-4,x:pa(Pt,_i)},{i:kn-2,x:pa(li,wi)})}else(1!==_i||1!==wi)&&Di.push(U(Di)+"scale("+_i+","+wi+")")}(Pt.scaleX,Pt.scaleY,li.scaleX,li.scaleY,_i,wi),Pt=li=null,function(Di){for(var ki,sn=-1,kn=wi.length;++sn=0&&(L=L.slice(0,s)),!L||"start"===L})}(L)?na:Nr;return function(){var ke=K(this,u),Et=ke.on;Et!==M&&(U=(M=Et).copy()).on(L,s),ke.on=U}}(s,u,L))},attr:function zc(u,L){var s=Ie(u),M="transform"===s?el:Ws;return this.attrTween(u,"function"==typeof L?(s.local?sc:ys)(s,M,js(this,"attr."+u,L)):null==L?(s.local?Pc:es)(s):(s.local?oc:Xs)(s,M,L))},attrTween:function tl(u,L){var s="attr."+u;if(arguments.length<2)return(s=this.tween(s))&&s._value;if(null==L)return this.tween(s,null);if("function"!=typeof L)throw new Error;var M=Ie(u);return this.tween(s,(M.local?bc:Ys)(M,L))},style:function bn(u,L,s){var M="transform"==(u+="")?ac:Ws;return null==L?this.styleTween(u,function pr(u,L){var s,M,U;return function(){var K=Ue(this,u),ke=(this.style.removeProperty(u),Ue(this,u));return K===ke?null:K===s&&ke===M?U:U=L(s=K,M=ke)}}(u,M)).on("end.style."+u,Fn(u)):"function"==typeof L?this.styleTween(u,function Dn(u,L,s){var M,U,K;return function(){var ke=Ue(this,u),Et=s(this),Gt=Et+"";return null==Et&&(this.style.removeProperty(u),Gt=Et=Ue(this,u)),ke===Gt?null:ke===M&&Gt===U?K:(U=Gt,K=L(M=ke,Et))}}(u,M,js(this,"style."+u,L))).each(function Fi(u,L){var s,M,U,Et,K="style."+L,ke="end."+K;return function(){var Gt=Nr(this,u),Pt=Gt.on,li=null==Gt.value[K]?Et||(Et=Fn(L)):void 0;(Pt!==s||U!==li)&&(M=(s=Pt).copy()).on(ke,U=li),Gt.on=M}}(this._id,u)):this.styleTween(u,function Sr(u,L,s){var M,K,U=s+"";return function(){var ke=Ue(this,u);return ke===U?null:ke===M?K:K=L(M=ke,s)}}(u,M,L),s).on("end.style."+u,null)},styleTween:function ra(u,L,s){var M="style."+(u+="");if(arguments.length<2)return(M=this.tween(M))&&M._value;if(null==L)return this.tween(M,null);if("function"!=typeof L)throw new Error;return this.tween(M,function va(u,L,s){var M,U;function K(){var ke=L.apply(this,arguments);return ke!==U&&(M=(U=ke)&&function Tr(u,L,s){return function(M){this.style.setProperty(u,L.call(this,M),s)}}(u,ke,s)),M}return K._value=L,K}(u,L,s??""))},text:function hr(u){return this.tween("text","function"==typeof u?function oo(u){return function(){var L=u(this);this.textContent=L??""}}(js(this,"text",u)):function Ja(u){return function(){this.textContent=u}}(null==u?"":u+""))},textTween:function Bn(u){var L="text";if(arguments.length<1)return(L=this.tween(L))&&L._value;if(null==u)return this.tween(L,null);if("function"!=typeof u)throw new Error;return this.tween(L,function ts(u){var L,s;function M(){var U=u.apply(this,arguments);return U!==s&&(L=(s=U)&&function aa(u){return function(L){this.textContent=u.call(this,L)}}(U)),L}return M._value=u,M}(u))},remove:function Si(){return this.on("end.remove",function Zt(u){return function(){var L=this.parentNode;for(var s in this.__transition)if(+s!==u)return;L&&L.removeChild(this)}}(this._id))},tween:function Hs(u,L){var s=this._id;if(u+="",arguments.length<2){for(var ke,M=ca(this.node(),s).tween,U=0,K=M.length;U2&&M.state<5,M.state=6,M.timer.stop(),M.on.call(U?"interrupt":"cancel",u,u.__data__,M.index,M.group),delete s[ke]):K=!1;K&&delete u.__transition}}(this,u)})},lt.prototype.transition=function En(u){var L,s;u instanceof Lr?(L=u._id,u=u._name):(L=cc(),(s=El).time=it(),u=null==u?null:u+"");for(var M=this._groups,U=M.length,K=0;KL?1:u>=L?0:NaN}function zn(u,L){return null==u||null==L?NaN:Lu?1:L>=u?0:NaN}function Er(u){let L,s,M;function U(Et,Gt,Pt=0,li=Et.length){if(Pt>>1;s(Et[_i],Gt)<0?Pt=_i+1:li=_i}while(PtPn(u(Et),Gt),M=(Et,Gt)=>u(Et)-Gt):(L=u===Pn||u===zn?u:Cs,s=u,M=u),{left:U,center:function ke(Et,Gt,Pt=0,li=Et.length){const _i=U(Et,Gt,Pt,li-1);return _i>Pt&&M(Et[_i-1],Gt)>-M(Et[_i],Gt)?_i-1:_i},right:function K(Et,Gt,Pt=0,li=Et.length){if(Pt>>1;s(Et[_i],Gt)<=0?Pt=_i+1:li=_i}while(Pt=Sa?10:K>=xc?5:K>=Ta?2:1;let Et,Gt,Pt;return U<0?(Pt=Math.pow(10,-U)/ke,Et=Math.round(u*Pt),Gt=Math.round(L*Pt),Et/PtL&&--Gt,Pt=-Pt):(Pt=Math.pow(10,U)*ke,Et=Math.round(u/Pt),Gt=Math.round(L/Pt),Et*PtL&&--Gt),Gt(u(K=new Date(+K)),K),U.ceil=K=>(u(K=new Date(K-1)),L(K,1),u(K),K),U.round=K=>{const ke=U(K),Et=U.ceil(K);return K-ke(L(K=new Date(+K),null==ke?1:Math.floor(ke)),K),U.range=(K,ke,Et)=>{const Gt=[];if(K=U.ceil(K),Et=null==Et?1:Math.floor(Et),!(K0))return Gt;let Pt;do{Gt.push(Pt=new Date(+K)),L(K,Et),u(K)}while(PtUn(ke=>{if(ke>=ke)for(;u(ke),!K(ke);)ke.setTime(ke-1)},(ke,Et)=>{if(ke>=ke)if(Et<0)for(;++Et<=0;)for(;L(ke,-1),!K(ke););else for(;--Et>=0;)for(;L(ke,1),!K(ke););}),s&&(U.count=(K,ke)=>(e1.setTime(+K),t1.setTime(+ke),u(e1),u(t1),Math.floor(s(e1,t1))),U.every=K=>(K=Math.floor(K),isFinite(K)&&K>0?K>1?U.filter(M?ke=>M(ke)%K==0:ke=>U.count(0,ke)%K==0):U:null)),U}const Dl=Un(()=>{},(u,L)=>{u.setTime(+u+L)},(u,L)=>L-u);Dl.every=u=>(u=Math.floor(u),isFinite(u)&&u>0?u>1?Un(L=>{L.setTime(Math.floor(L/u)*u)},(L,s)=>{L.setTime(+L+s*u)},(L,s)=>(s-L)/u):Dl:null);const co=Un(u=>{u.setTime(u-u.getMilliseconds())},(u,L)=>{u.setTime(+u+L*wc)},(u,L)=>(L-u)/wc,u=>u.getUTCSeconds()),nl=Un(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*wc)},(u,L)=>{u.setTime(+u+L*ws)},(u,L)=>(L-u)/ws,u=>u.getMinutes()),fs=Un(u=>{u.setUTCSeconds(0,0)},(u,L)=>{u.setTime(+u+L*ws)},(u,L)=>(L-u)/ws,u=>u.getUTCMinutes()),$s=Un(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*wc-u.getMinutes()*ws)},(u,L)=>{u.setTime(+u+L*dc)},(u,L)=>(L-u)/dc,u=>u.getHours()),Ms=Un(u=>{u.setUTCMinutes(0,0,0)},(u,L)=>{u.setTime(+u+L*dc)},(u,L)=>(L-u)/dc,u=>u.getUTCHours()),n1=Un(u=>u.setHours(0,0,0,0),(u,L)=>u.setDate(u.getDate()+L),(u,L)=>(L-u-(L.getTimezoneOffset()-u.getTimezoneOffset())*ws)/Mc,u=>u.getDate()-1),hc=(Un(u=>{u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCDate(u.getUTCDate()+L)},(u,L)=>(L-u)/Mc,u=>u.getUTCDate()-1),Un(u=>{u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCDate(u.getUTCDate()+L)},(u,L)=>(L-u)/Mc,u=>Math.floor(u/Mc)));function Ec(u){return Un(L=>{L.setDate(L.getDate()-(L.getDay()+7-u)%7),L.setHours(0,0,0,0)},(L,s)=>{L.setDate(L.getDate()+7*s)},(L,s)=>(s-L-(s.getTimezoneOffset()-L.getTimezoneOffset())*ws)/_d)}const Qs=Ec(0);function al(u){return Un(L=>{L.setUTCDate(L.getUTCDate()-(L.getUTCDay()+7-u)%7),L.setUTCHours(0,0,0,0)},(L,s)=>{L.setUTCDate(L.getUTCDate()+7*s)},(L,s)=>(s-L)/_d)}Ec(1),Ec(2),Ec(3),Ec(4),Ec(5),Ec(6);const L2=al(0),o1=(al(1),al(2),al(3),al(4),al(5),al(6),Un(u=>{u.setDate(1),u.setHours(0,0,0,0)},(u,L)=>{u.setMonth(u.getMonth()+L)},(u,L)=>L.getMonth()-u.getMonth()+12*(L.getFullYear()-u.getFullYear()),u=>u.getMonth())),a0=Un(u=>{u.setUTCDate(1),u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCMonth(u.getUTCMonth()+L)},(u,L)=>L.getUTCMonth()-u.getUTCMonth()+12*(L.getUTCFullYear()-u.getUTCFullYear()),u=>u.getUTCMonth()),Ns=Un(u=>{u.setMonth(0,1),u.setHours(0,0,0,0)},(u,L)=>{u.setFullYear(u.getFullYear()+L)},(u,L)=>L.getFullYear()-u.getFullYear(),u=>u.getFullYear());Ns.every=u=>isFinite(u=Math.floor(u))&&u>0?Un(L=>{L.setFullYear(Math.floor(L.getFullYear()/u)*u),L.setMonth(0,1),L.setHours(0,0,0,0)},(L,s)=>{L.setFullYear(L.getFullYear()+s*u)}):null;const ns=Un(u=>{u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCFullYear(u.getUTCFullYear()+L)},(u,L)=>L.getUTCFullYear()-u.getUTCFullYear(),u=>u.getUTCFullYear());function La(u,L,s,M,U,K){const ke=[[co,1,wc],[co,5,5e3],[co,15,15e3],[co,30,3e4],[K,1,ws],[K,5,5*ws],[K,15,15*ws],[K,30,30*ws],[U,1,dc],[U,3,3*dc],[U,6,6*dc],[U,12,12*dc],[M,1,Mc],[M,2,2*Mc],[s,1,_d],[L,1,vd],[L,3,3*vd],[u,1,Fs]];function Gt(Pt,li,_i){const wi=Math.abs(li-Pt)/_i,Di=Er(([,,ki])=>ki).right(ke,wi);if(Di===ke.length)return u.every(e0(Pt/Fs,li/Fs,_i));if(0===Di)return Dl.every(Math.max(e0(Pt,li,_i),1));const[sn,kn]=ke[wi/ke[Di-1][2]isFinite(u=Math.floor(u))&&u>0?Un(L=>{L.setUTCFullYear(Math.floor(L.getUTCFullYear()/u)*u),L.setUTCMonth(0,1),L.setUTCHours(0,0,0,0)},(L,s)=>{L.setUTCFullYear(L.getUTCFullYear()+s*u)}):null;const[Oa,Xu]=La(ns,a0,L2,hc,Ms,fs),[Ha,Vc]=La(Ns,o1,Qs,n1,$s,nl);var Sc=new Date,Uc=new Date;function Es(u,L,s,M){function U(K){return u(K=0===arguments.length?new Date:new Date(+K)),K}return U.floor=function(K){return u(K=new Date(+K)),K},U.ceil=function(K){return u(K=new Date(K-1)),L(K,1),u(K),K},U.round=function(K){var ke=U(K),Et=U.ceil(K);return K-ke0))return Gt;do{Gt.push(Pt=new Date(+K)),L(K,Et),u(K)}while(Pt=ke)for(;u(ke),!K(ke);)ke.setTime(ke-1)},function(ke,Et){if(ke>=ke)if(Et<0)for(;++Et<=0;)for(;L(ke,-1),!K(ke););else for(;--Et>=0;)for(;L(ke,1),!K(ke););})},s&&(U.count=function(K,ke){return Sc.setTime(+K),Uc.setTime(+ke),u(Sc),u(Uc),Math.floor(s(Sc,Uc))},U.every=function(K){return K=Math.floor(K),isFinite(K)&&K>0?K>1?U.filter(M?function(ke){return M(ke)%K==0}:function(ke){return U.count(0,ke)%K==0}):U:null}),U}const Ol=864e5,c1=7*Ol;function Tc(u){return Es(function(L){L.setUTCDate(L.getUTCDate()-(L.getUTCDay()+7-u)%7),L.setUTCHours(0,0,0,0)},function(L,s){L.setUTCDate(L.getUTCDate()+7*s)},function(L,s){return(s-L)/c1})}var O2=Tc(0),qa=Tc(1),sl=(Tc(2),Tc(3),Tc(4));const Cd=(Tc(5),Tc(6),Es(function(u){u.setUTCHours(0,0,0,0)},function(u,L){u.setUTCDate(u.getUTCDate()+L)},function(u,L){return(L-u)/Ol},function(u){return u.getUTCDate()-1}));function Gc(u){return Es(function(L){L.setDate(L.getDate()-(L.getDay()+7-u)%7),L.setHours(0,0,0,0)},function(L,s){L.setDate(L.getDate()+7*s)},function(L,s){return(s-L-6e4*(s.getTimezoneOffset()-L.getTimezoneOffset()))/c1})}var d1=Gc(0),h1=Gc(1),ll=(Gc(2),Gc(3),Gc(4));const Nl=(Gc(5),Gc(6),Es(u=>u.setHours(0,0,0,0),(u,L)=>u.setDate(u.getDate()+L),(u,L)=>(L-u-6e4*(L.getTimezoneOffset()-u.getTimezoneOffset()))/Ol,u=>u.getDate()-1));var dl=Es(function(u){u.setMonth(0,1),u.setHours(0,0,0,0)},function(u,L){u.setFullYear(u.getFullYear()+L)},function(u,L){return L.getFullYear()-u.getFullYear()},function(u){return u.getFullYear()});dl.every=function(u){return isFinite(u=Math.floor(u))&&u>0?Es(function(L){L.setFullYear(Math.floor(L.getFullYear()/u)*u),L.setMonth(0,1),L.setHours(0,0,0,0)},function(L,s){L.setFullYear(L.getFullYear()+s*u)}):null};const Pl=dl;var hl=Es(function(u){u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},function(u,L){u.setUTCFullYear(u.getUTCFullYear()+L)},function(u,L){return L.getUTCFullYear()-u.getUTCFullYear()},function(u){return u.getUTCFullYear()});hl.every=function(u){return isFinite(u=Math.floor(u))&&u>0?Es(function(L){L.setUTCFullYear(Math.floor(L.getUTCFullYear()/u)*u),L.setUTCMonth(0,1),L.setUTCHours(0,0,0,0)},function(L,s){L.setUTCFullYear(L.getUTCFullYear()+s*u)}):null};const m1=hl;function p1(u){if(0<=u.y&&u.y<100){var L=new Date(-1,u.m,u.d,u.H,u.M,u.S,u.L);return L.setFullYear(u.y),L}return new Date(u.y,u.m,u.d,u.H,u.M,u.S,u.L)}function d0(u){if(0<=u.y&&u.y<100){var L=new Date(Date.UTC(-1,u.m,u.d,u.H,u.M,u.S,u.L));return L.setUTCFullYear(u.y),L}return new Date(Date.UTC(u.y,u.m,u.d,u.H,u.M,u.S,u.L))}function ps(u,L,s){return{y:u,m:L,d:s,H:0,M:0,S:0,L:0}}var Sd={"-":"",_:" ",0:"0"},eo=/^\s*\d+/,U2=/^%/,Td=/[\\^$*+?|[\]().{}]/g;function Dr(u,L,s){var M=u<0?"-":"",U=(M?-u:u)+"",K=U.length;return M+(K[L.toLowerCase(),s]))}function h0(u,L,s){var M=eo.exec(L.slice(s,s+1));return M?(u.w=+M[0],s+M[0].length):-1}function H2(u,L,s){var M=eo.exec(L.slice(s,s+1));return M?(u.u=+M[0],s+M[0].length):-1}function Ju(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.U=+M[0],s+M[0].length):-1}function Ld(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.V=+M[0],s+M[0].length):-1}function ul(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.W=+M[0],s+M[0].length):-1}function j2(u,L,s){var M=eo.exec(L.slice(s,s+4));return M?(u.y=+M[0],s+M[0].length):-1}function g1(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.y=+M[0]+(+M[0]>68?1900:2e3),s+M[0].length):-1}function W2(u,L,s){var M=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(L.slice(s,s+6));return M?(u.Z=M[1]?0:-(M[2]+(M[3]||"00")),s+M[0].length):-1}function Vl(u,L,s){var M=eo.exec(L.slice(s,s+1));return M?(u.q=3*M[0]-3,s+M[0].length):-1}function Ul(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.m=M[0]-1,s+M[0].length):-1}function to(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.d=+M[0],s+M[0].length):-1}function qu(u,L,s){var M=eo.exec(L.slice(s,s+3));return M?(u.m=0,u.d=+M[0],s+M[0].length):-1}function _1(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.H=+M[0],s+M[0].length):-1}function u0(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.M=+M[0],s+M[0].length):-1}function X2(u,L,s){var M=eo.exec(L.slice(s,s+2));return M?(u.S=+M[0],s+M[0].length):-1}function Y2(u,L,s){var M=eo.exec(L.slice(s,s+3));return M?(u.L=+M[0],s+M[0].length):-1}function v1(u,L,s){var M=eo.exec(L.slice(s,s+6));return M?(u.L=Math.floor(M[0]/1e3),s+M[0].length):-1}function K2(u,L,s){var M=U2.exec(L.slice(s,s+1));return M?s+M[0].length:-1}function $2(u,L,s){var M=eo.exec(L.slice(s));return M?(u.Q=+M[0],s+M[0].length):-1}function Dd(u,L,s){var M=eo.exec(L.slice(s));return M?(u.s=+M[0],s+M[0].length):-1}function Dc(u,L){return Dr(u.getDate(),L,2)}function f0(u,L){return Dr(u.getHours(),L,2)}function ef(u,L){return Dr(u.getHours()%12||12,L,2)}function tf(u,L){return Dr(1+Nl.count(Pl(u),u),L,3)}function Q2(u,L){return Dr(u.getMilliseconds(),L,3)}function Z2(u,L){return Q2(u,L)+"000"}function nf(u,L){return Dr(u.getMonth()+1,L,2)}function J2(u,L){return Dr(u.getMinutes(),L,2)}function rf(u,L){return Dr(u.getSeconds(),L,2)}function q2(u){var L=u.getDay();return 0===L?7:L}function u4(u,L){return Dr(d1.count(Pl(u)-1,u),L,2)}function b1(u){var L=u.getDay();return L>=4||0===L?ll(u):ll.ceil(u)}function eh(u,L){return u=b1(u),Dr(ll.count(Pl(u),u)+(4===Pl(u).getDay()),L,2)}function Ho(u){return u.getDay()}function f4(u,L){return Dr(h1.count(Pl(u)-1,u),L,2)}function th(u,L){return Dr(u.getFullYear()%100,L,2)}function m4(u,L){return Dr((u=b1(u)).getFullYear()%100,L,2)}function y1(u,L){return Dr(u.getFullYear()%1e4,L,4)}function p4(u,L){var s=u.getDay();return Dr((u=s>=4||0===s?ll(u):ll.ceil(u)).getFullYear()%1e4,L,4)}function x1(u){var L=u.getTimezoneOffset();return(L>0?"-":(L*=-1,"+"))+Dr(L/60|0,"0",2)+Dr(L%60,"0",2)}function Hc(u,L){return Dr(u.getUTCDate(),L,2)}function Gl(u,L){return Dr(u.getUTCHours(),L,2)}function af(u,L){return Dr(u.getUTCHours()%12||12,L,2)}function ih(u,L){return Dr(1+Cd.count(m1(u),u),L,3)}function jc(u,L){return Dr(u.getUTCMilliseconds(),L,3)}function g4(u,L){return jc(u,L)+"000"}function sf(u,L){return Dr(u.getUTCMonth()+1,L,2)}function fc(u,L){return Dr(u.getUTCMinutes(),L,2)}function Wc(u,L){return Dr(u.getUTCSeconds(),L,2)}function nh(u){var L=u.getUTCDay();return 0===L?7:L}function rh(u,L){return Dr(O2.count(m1(u)-1,u),L,2)}function cf(u){var L=u.getUTCDay();return L>=4||0===L?sl(u):sl.ceil(u)}function C1(u,L){return u=cf(u),Dr(sl.count(m1(u),u)+(4===m1(u).getUTCDay()),L,2)}function w1(u){return u.getUTCDay()}function ah(u,L){return Dr(qa.count(m1(u)-1,u),L,2)}function Da(u,L){return Dr(u.getUTCFullYear()%100,L,2)}function lf(u,L){return Dr((u=cf(u)).getUTCFullYear()%100,L,2)}function M1(u,L){return Dr(u.getUTCFullYear()%1e4,L,4)}function df(u,L){var s=u.getUTCDay();return Dr((u=s>=4||0===s?sl(u):sl.ceil(u)).getUTCFullYear()%1e4,L,4)}function hf(){return"+0000"}function Ad(){return"%"}function m0(u){return+u}function p0(u){return Math.floor(+u/1e3)}function g0(u){return null===u?NaN:+u}!function Ac(u){(function Zu(u){var L=u.dateTime,s=u.date,M=u.time,U=u.periods,K=u.days,ke=u.shortDays,Et=u.months,Gt=u.shortMonths,Pt=zl(U),li=Bl(U),_i=zl(K),wi=Bl(K),Di=zl(ke),sn=Bl(ke),kn=zl(Et),ki=Bl(Et),Tn=zl(Gt),Yn=Bl(Gt),yn={a:function ka(Ln){return ke[Ln.getDay()]},A:function ss(Ln){return K[Ln.getDay()]},b:function Jr(Ln){return Gt[Ln.getMonth()]},B:function Ia(Ln){return Et[Ln.getMonth()]},c:null,d:Dc,e:Dc,f:Z2,g:m4,G:p4,H:f0,I:ef,j:tf,L:Q2,m:nf,M:J2,p:function Pa(Ln){return U[+(Ln.getHours()>=12)]},q:function go(Ln){return 1+~~(Ln.getMonth()/3)},Q:m0,s:p0,S:rf,u:q2,U:u4,V:eh,w:Ho,W:f4,x:null,X:null,y:th,Y:y1,Z:x1,"%":Ad},or={a:function dd(Ln){return ke[Ln.getUTCDay()]},A:function Wd(Ln){return K[Ln.getUTCDay()]},b:function Xd(Ln){return Gt[Ln.getUTCMonth()]},B:function $1(Ln){return Et[Ln.getUTCMonth()]},c:null,d:Hc,e:Hc,f:g4,g:lf,G:df,H:Gl,I:af,j:ih,L:jc,m:sf,M:fc,p:function So(Ln){return U[+(Ln.getUTCHours()>=12)]},q:function Yd(Ln){return 1+~~(Ln.getUTCMonth()/3)},Q:m0,s:p0,S:Wc,u:nh,U:rh,V:C1,w:w1,W:ah,x:null,X:null,y:Da,Y:M1,Z:hf,"%":Ad},tr={a:function xa(Ln,_r,Rr){var en=Di.exec(_r.slice(Rr));return en?(Ln.w=sn.get(en[0].toLowerCase()),Rr+en[0].length):-1},A:function Vn(Ln,_r,Rr){var en=_i.exec(_r.slice(Rr));return en?(Ln.w=wi.get(en[0].toLowerCase()),Rr+en[0].length):-1},b:function Na(Ln,_r,Rr){var en=Tn.exec(_r.slice(Rr));return en?(Ln.m=Yn.get(en[0].toLowerCase()),Rr+en[0].length):-1},B:function Ir(Ln,_r,Rr){var en=kn.exec(_r.slice(Rr));return en?(Ln.m=ki.get(en[0].toLowerCase()),Rr+en[0].length):-1},c:function Ca(Ln,_r,Rr){return ya(Ln,L,_r,Rr)},d:to,e:to,f:v1,g:g1,G:j2,H:_1,I:_1,j:qu,L:Y2,m:Ul,M:u0,p:function Ts(Ln,_r,Rr){var en=Pt.exec(_r.slice(Rr));return en?(Ln.p=li.get(en[0].toLowerCase()),Rr+en[0].length):-1},q:Vl,Q:$2,s:Dd,S:X2,u:H2,U:Ju,V:Ld,w:h0,W:ul,x:function Ko(Ln,_r,Rr){return ya(Ln,s,_r,Rr)},X:function ja(Ln,_r,Rr){return ya(Ln,M,_r,Rr)},y:g1,Y:j2,Z:W2,"%":K2};function Rn(Ln,_r){return function(Rr){var $o,$n,uo,en=[],ho=-1,sa=0,Ls=Ln.length;for(Rr instanceof Date||(Rr=new Date(+Rr));++ho53)return null;"w"in en||(en.w=1),"Z"in en?(Ls=(sa=d0(ps(en.y,0,1))).getUTCDay(),sa=Ls>4||0===Ls?qa.ceil(sa):qa(sa),sa=Cd.offset(sa,7*(en.V-1)),en.y=sa.getUTCFullYear(),en.m=sa.getUTCMonth(),en.d=sa.getUTCDate()+(en.w+6)%7):(Ls=(sa=p1(ps(en.y,0,1))).getDay(),sa=Ls>4||0===Ls?h1.ceil(sa):h1(sa),sa=Nl.offset(sa,7*(en.V-1)),en.y=sa.getFullYear(),en.m=sa.getMonth(),en.d=sa.getDate()+(en.w+6)%7)}else("W"in en||"U"in en)&&("w"in en||(en.w="u"in en?en.u%7:"W"in en?1:0),Ls="Z"in en?d0(ps(en.y,0,1)).getUTCDay():p1(ps(en.y,0,1)).getDay(),en.m=0,en.d="W"in en?(en.w+6)%7+7*en.W-(Ls+5)%7:en.w+7*en.U-(Ls+6)%7);return"Z"in en?(en.H+=en.Z/100|0,en.M+=en.Z%100,d0(en)):p1(en)}}function ya(Ln,_r,Rr,en){for(var $o,$n,ho=0,sa=_r.length,Ls=Rr.length;ho=Ls)return-1;if(37===($o=_r.charCodeAt(ho++))){if($o=_r.charAt(ho++),!($n=tr[$o in Sd?_r.charAt(ho++):$o])||(en=$n(Ln,Rr,en))<0)return-1}else if($o!=Rr.charCodeAt(en++))return-1}return en}return yn.x=Rn(s,yn),yn.X=Rn(M,yn),yn.c=Rn(L,yn),or.x=Rn(s,or),or.X=Rn(M,or),or.c=Rn(L,or),{format:function(Ln){var _r=Rn(Ln+="",yn);return _r.toString=function(){return Ln},_r},parse:function(Ln){var _r=Zr(Ln+="",!1);return _r.toString=function(){return Ln},_r},utcFormat:function(Ln){var _r=Rn(Ln+="",or);return _r.toString=function(){return Ln},_r},utcParse:function(Ln){var _r=Zr(Ln+="",!0);return _r.toString=function(){return Ln},_r}}})(u)}({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 _4=Er(Pn).right,pf=(Er(g0),_4);function _0(u,L){return u=+u,L=+L,function(s){return Math.round(u*(1-s)+L*s)}}function jl(u){return+u}var v0=[0,1];function Wl(u){return u}function Xl(u,L){return(L-=u=+u)?function(s){return(s-u)/L}:function Hl(u){return function(){return u}}(isNaN(L)?NaN:.5)}function gf(u,L,s){var M=u[0],U=u[1],K=L[0],ke=L[1];return UL&&(s=u,u=L,L=s),function(M){return Math.max(u,Math.min(L,M))}}(u[0],u[wi-1])),Et=wi>2?b0:gf,Gt=Pt=null,_i}function _i(wi){return null==wi||isNaN(wi=+wi)?K:(Gt||(Gt=Et(u.map(M),L,s)))(M(ke(wi)))}return _i.invert=function(wi){return ke(U((Pt||(Pt=Et(L,u.map(M),pa)))(wi)))},_i.domain=function(wi){return arguments.length?(u=Array.from(wi,jl),li()):u.slice()},_i.range=function(wi){return arguments.length?(L=Array.from(wi),li()):L.slice()},_i.rangeRound=function(wi){return L=Array.from(wi),s=_0,li()},_i.clamp=function(wi){return arguments.length?(ke=!!wi||Wl,li()):ke!==Wl},_i.interpolate=function(wi){return arguments.length?(s=wi,li()):s},_i.unknown=function(wi){return arguments.length?(K=wi,_i):K},function(wi,Di){return M=wi,U=Di,li()}}()(Wl,Wl)}function $l(u,L){switch(arguments.length){case 0:break;case 1:this.range(u);break;default:this.range(L).domain(u)}return this}var w0,bf=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function No(u){if(!(L=bf.exec(u)))throw new Error("invalid format: "+u);var L;return new kd({fill:L[1],align:L[2],sign:L[3],symbol:L[4],zero:L[5],width:L[6],comma:L[7],precision:L[8]&&L[8].slice(1),trim:L[9],type:L[10]})}function kd(u){this.fill=void 0===u.fill?" ":u.fill+"",this.align=void 0===u.align?">":u.align+"",this.sign=void 0===u.sign?"-":u.sign+"",this.symbol=void 0===u.symbol?"":u.symbol+"",this.zero=!!u.zero,this.width=void 0===u.width?void 0:+u.width,this.comma=!!u.comma,this.precision=void 0===u.precision?void 0:+u.precision,this.trim=!!u.trim,this.type=void 0===u.type?"":u.type+""}function pl(u,L){if((s=(u=L?u.toExponential(L-1):u.toExponential()).indexOf("e"))<0)return null;var s,M=u.slice(0,s);return[M.length>1?M[0]+M.slice(2):M,+u.slice(s+1)]}function Id(u){return(u=pl(Math.abs(u)))?u[1]:NaN}function E1(u,L){var s=pl(u,L);if(!s)return u+"";var M=s[0],U=s[1];return U<0?"0."+new Array(-U).join("0")+M:M.length>U+1?M.slice(0,U+1)+"."+M.slice(U+1):M+new Array(U-M.length+2).join("0")}No.prototype=kd.prototype,kd.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 uh={"%":(u,L)=>(100*u).toFixed(L),b:u=>Math.round(u).toString(2),c:u=>u+"",d:function dh(u){return Math.abs(u=Math.round(u))>=1e21?u.toLocaleString("en").replace(/,/g,""):u.toString(10)},e:(u,L)=>u.toExponential(L),f:(u,L)=>u.toFixed(L),g:(u,L)=>u.toPrecision(L),o:u=>Math.round(u).toString(8),p:(u,L)=>E1(100*u,L),r:E1,s:function xf(u,L){var s=pl(u,L);if(!s)return u+"";var M=s[0],U=s[1],K=U-(w0=3*Math.max(-8,Math.min(8,Math.floor(U/3))))+1,ke=M.length;return K===ke?M:K>ke?M+new Array(K-ke+1).join("0"):K>0?M.slice(0,K)+"."+M.slice(K):"0."+new Array(1-K).join("0")+pl(u,Math.max(0,L+K-1))[0]},X:u=>Math.round(u).toString(16).toUpperCase(),x:u=>Math.round(u).toString(16)};function M0(u){return u}var Rd,mh,ph,fh=Array.prototype.map,E0=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function T0(u){var L=u.domain;return u.ticks=function(s){var M=L();return function Ll(u,L,s){if(!((s=+s)>0))return[];if((u=+u)==(L=+L))return[u];const M=L=U))return[];const Et=K-U+1,Gt=new Array(Et);if(M)if(ke<0)for(let Pt=0;Pt0;){if((Pt=Cc(ke,Et,s))===Gt)return M[U]=ke,M[K]=Et,L(M);if(Pt>0)ke=Math.floor(ke/Pt)*Pt,Et=Math.ceil(Et/Pt)*Pt;else{if(!(Pt<0))break;ke=Math.ceil(ke*Pt)/Pt,Et=Math.floor(Et*Pt)/Pt}Gt=Pt}return u},u}function Yc(){var u=fl();return u.copy=function(){return function y0(u,L){return L.domain(u.domain()).range(u.range()).interpolate(u.interpolate()).clamp(u.clamp()).unknown(u.unknown())}(u,Yc())},$l.apply(u,arguments),T0(u)}function L0(u,L,s){u=+u,L=+L,s=(U=arguments.length)<2?(L=u,u=0,1):U<3?1:+s;for(var M=-1,U=0|Math.max(0,Math.ceil((L-u)/s)),K=new Array(U);++M0&&Et>0&&(Gt+Et+1>M&&(Et=Math.max(1,M-Gt)),K.push(s.substring(U-=Et,U+Et)),!((Gt+=Et+1)>M));)Et=u[ke=(ke+1)%u.length];return K.reverse().join(L)}}(fh.call(u.grouping,Number),u.thousands+""),s=void 0===u.currency?"":u.currency[0]+"",M=void 0===u.currency?"":u.currency[1]+"",U=void 0===u.decimal?".":u.decimal+"",K=void 0===u.numerals?M0:function kc(u){return function(L){return L.replace(/[0-9]/g,function(s){return u[+s]})}}(fh.call(u.numerals,String)),ke=void 0===u.percent?"%":u.percent+"",Et=void 0===u.minus?"\u2212":u.minus+"",Gt=void 0===u.nan?"NaN":u.nan+"";function Pt(_i){var wi=(_i=No(_i)).fill,Di=_i.align,sn=_i.sign,kn=_i.symbol,ki=_i.zero,Tn=_i.width,Yn=_i.comma,yn=_i.precision,or=_i.trim,tr=_i.type;"n"===tr?(Yn=!0,tr="g"):uh[tr]||(void 0===yn&&(yn=12),or=!0,tr="g"),(ki||"0"===wi&&"="===Di)&&(ki=!0,wi="0",Di="=");var Rn="$"===kn?s:"#"===kn&&/[boxX]/.test(tr)?"0"+tr.toLowerCase():"",Zr="$"===kn?M:/[%p]/.test(tr)?ke:"",ya=uh[tr],Ts=/[defgprs%]/.test(tr);function xa(Vn){var Ca,Ko,ja,Na=Rn,Ir=Zr;if("c"===tr)Ir=ya(Vn)+Ir,Vn="";else{var ka=(Vn=+Vn)<0||1/Vn<0;if(Vn=isNaN(Vn)?Gt:ya(Math.abs(Vn),yn),or&&(Vn=function hh(u){e:for(var U,L=u.length,s=1,M=-1;s0&&(M=0)}return M>0?u.slice(0,M)+u.slice(U+1):u}(Vn)),ka&&0==+Vn&&"+"!==sn&&(ka=!1),Na=(ka?"("===sn?sn:Et:"-"===sn||"("===sn?"":sn)+Na,Ir=("s"===tr?E0[8+w0/3]:"")+Ir+(ka&&"("===sn?")":""),Ts)for(Ca=-1,Ko=Vn.length;++Ca(ja=Vn.charCodeAt(Ca))||ja>57){Ir=(46===ja?U+Vn.slice(Ca+1):Vn.slice(Ca))+Ir,Vn=Vn.slice(0,Ca);break}}Yn&&!ki&&(Vn=L(Vn,1/0));var ss=Na.length+Vn.length+Ir.length,Jr=ss>1)+Na+Vn+Ir+Jr.slice(ss);break;default:Vn=Jr+Na+Vn+Ir}return K(Vn)}return yn=void 0===yn?6:/[gprs]/.test(tr)?Math.max(1,Math.min(21,yn)):Math.max(0,Math.min(20,yn)),xa.toString=function(){return _i+""},xa}return{format:Pt,formatPrefix:function li(_i,wi){var Di=Pt(((_i=No(_i)).type="f",_i)),sn=3*Math.max(-8,Math.min(8,Math.floor(Id(wi)/3))),kn=Math.pow(10,-sn),ki=E0[8+sn/3];return function(Tn){return Di(kn*Tn)+ki}}}}(u),mh=Rd.format,ph=Rd.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class T1 extends Map{constructor(L,s=A0){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:s}}),null!=L)for(const[M,U]of L)this.set(M,U)}get(L){return super.get(D0(this,L))}has(L){return super.has(D0(this,L))}set(L,s){return super.set(function vh({_intern:u,_key:L},s){const M=L(s);return u.has(M)?u.get(M):(u.set(M,s),s)}(this,L),s)}delete(L){return super.delete(function Od({_intern:u,_key:L},s){const M=L(s);return u.has(M)&&(s=u.get(M),u.delete(M)),s}(this,L))}}function D0({_intern:u,_key:L},s){const M=L(s);return u.has(M)?u.get(M):s}function A0(u){return null!==u&&"object"==typeof u?u.valueOf():u}Set;const wf=Symbol("implicit");function L1(){var u=new T1,L=[],s=[],M=wf;function U(K){let ke=u.get(K);if(void 0===ke){if(M!==wf)return M;u.set(K,ke=L.push(K)-1)}return s[ke%s.length]}return U.domain=function(K){if(!arguments.length)return L.slice();L=[],u=new T1;for(const ke of K)u.has(ke)||u.set(ke,L.push(ke)-1);return U},U.range=function(K){return arguments.length?(s=Array.from(K),U):s.slice()},U.unknown=function(K){return arguments.length?(M=K,U):M},U.copy=function(){return L1(L,s).unknown(M)},$l.apply(U,arguments),U}function gl(){var K,ke,u=L1().unknown(void 0),L=u.domain,s=u.range,M=0,U=1,Et=!1,Gt=0,Pt=0,li=.5;function _i(){var wi=L().length,Di=U=1)return+s(u[M-1],M-1,u);var M,U=(M-1)*L,K=Math.floor(U),ke=+s(u[K],K,u);return ke+(+s(u[K+1],K+1,u)-ke)*(U-K)}}function Ef(){var M,u=[],L=[],s=[];function U(){var ke=0,Et=Math.max(1,L.length);for(s=new Array(Et-1);++ke0?s[Et-1]:u[0],Et({model:u});function Sf(u,L){}function io(u,L){if(1&u&&(e.j41(0,"span"),e.DNE(1,Sf,0,0,"ng-template",5),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("ngTemplateOutlet",s.template)("ngTemplateOutletContext",e.eq3(2,x4,s.context))}}function Tf(u,L){if(1&u&&e.nrm(0,"span",6),2&u){const s=e.XpG();e.Y8G("innerHTML",s.title,e.npT)}}function Lf(u,L){if(1&u&&(e.j41(0,"header",4)(1,"span",5),e.EFF(2),e.k0s()()),2&u){const s=e.XpG();e.R7$(2),e.JRh(s.title)}}function Df(u,L){if(1&u){const s=e.RV6();e.j41(0,"li",6)(1,"ngx-charts-legend-entry",7),e.bIt("select",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.labelClick.emit(U))})("activate",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.activate(U))})("deactivate",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.deactivate(U))}),e.k0s()()}if(2&u){const s=L.$implicit,M=e.XpG();e.R7$(),e.Y8G("label",s.label)("formattedLabel",s.formattedLabel)("color",s.color)("isActive",M.isActive(s))}}const xh=["*"];function Ch(u,L){if(1&u&&e.nrm(0,"ngx-charts-scale-legend",4),2&u){const s=e.XpG();e.Y8G("horizontal",s.legendOptions&&s.legendOptions.position===s.LegendPosition.Below)("valueRange",s.legendOptions.domain)("colors",s.legendOptions.colors)("height",s.view[1])("width",s.legendWidth)}}function C4(u,L){if(1&u){const s=e.RV6();e.j41(0,"ngx-charts-legend",5),e.bIt("labelClick",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.legendLabelClick.emit(U))})("labelActivate",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.legendLabelActivate.emit(U))})("labelDeactivate",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.legendLabelDeactivate.emit(U))}),e.k0s()}if(2&u){const s=e.XpG();e.Y8G("horizontal",s.legendOptions&&s.legendOptions.position===s.LegendPosition.Below)("data",s.legendOptions.domain)("title",s.legendOptions.title)("colors",s.legendOptions.colors)("height",s.view[1])("width",s.legendWidth)("activeEntries",s.activeEntries)}}const w4=["ngx-charts-axis-label",""],Fd=["ticksel"],Af=["ngx-charts-x-axis-ticks",""];function Ql(u,L){1&u&&(e.qSk(),e.eu8(0))}function R0(u,L){if(1&u&&(e.qSk(),e.j41(0,"tspan",10),e.EFF(1),e.k0s()),2&u){const s=L.$implicit;e.BMQ("y",12*L.index),e.R7$(),e.SpI(" ",s," ")}}function Zl(u,L){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,R0,2,2,"tspan",9),e.bVm()),2&u){const s=L.ngIf;e.R7$(),e.Y8G("ngForOf",s)}}function D1(u,L){if(1&u&&e.DNE(0,Zl,2,1,"ng-container",6),2&u){const s=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(s))}}function O0(u,L){if(1&u&&e.EFF(0),2&u){const s=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(s)," ")}}function lo(u,L){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",7),e.DNE(4,Ql,1,0,"ng-container",8),e.k0s(),e.DNE(5,D1,1,1,"ng-template",null,1,e.C5r)(7,O0,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const s=L.ngIf,M=e.sdS(6),U=e.sdS(8),K=e.XpG(2);e.R7$(2),e.JRh(s),e.R7$(),e.BMQ("text-anchor",K.textAnchor)("transform",K.textTransform),e.R7$(),e.Y8G("ngIf",K.isWrapTicksSupported)("ngIfThen",M)("ngIfElse",U)}}function Jl(u,L){if(1&u&&(e.qSk(),e.j41(0,"g",5),e.DNE(1,lo,9,6,"ng-container",6),e.k0s()),2&u){const s=L.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(s)),e.R7$(),e.Y8G("ngIf",M.tickFormat(s))}}function ql(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",11),e.k0s()),2&u){const s=e.XpG(2);e.BMQ("transform",s.gridLineTransform()),e.R7$(),e.BMQ("y1",-s.gridLineHeight)}}function F0(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,ql,2,2,"g",6),e.k0s()),2&u){const s=L.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(s)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}const A1=["ngx-charts-x-axis",""];function ed(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.emitTicksHeight(U))}),e.k0s()}if(2&u){const s=e.XpG();e.Y8G("trimTicks",s.trimTicks)("rotateTicks",s.rotateTicks)("maxTickLength",s.maxTickLength)("tickFormatting",s.tickFormatting)("tickArguments",s.tickArguments)("tickStroke",s.tickStroke)("scale",s.xScale)("orient",s.xOrient)("showGridLines",s.showGridLines)("gridLineHeight",s.dims.height)("width",s.dims.width)("tickValues",s.ticks)("wrapTicks",s.wrapTicks)}}function N0(u,L){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const s=e.XpG();e.Y8G("label",s.labelText)("offset",s.labelOffset)("orient",s.orientation.Bottom)("height",s.dims.height)("width",s.dims.width)}}const M4=["ngx-charts-y-axis-ticks",""];function k1(u,L){1&u&&(e.qSk(),e.eu8(0))}function Nd(u,L){if(1&u&&(e.qSk(),e.j41(0,"tspan",12),e.EFF(1),e.k0s()),2&u){const s=L.$implicit,M=L.index,U=e.XpG(6);e.BMQ("y",M*(8+U.tickSpacing)),e.R7$(),e.SpI(" ",s," ")}}function wh(u,L){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,Nd,2,2,"tspan",11),e.bVm()),2&u){const s=e.XpG().ngIf;e.R7$(),e.Y8G("ngForOf",s)}}function Mh(u,L){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,wh,2,1,"ng-container",10),e.bVm()),2&u){const s=L.ngIf;e.XpG(2);const M=e.sdS(8);e.R7$(),e.Y8G("ngIf",s.length>1)("ngIfElse",M)}}function kf(u,L){if(1&u&&e.DNE(0,Mh,2,2,"ng-container",7),2&u){const s=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(s))}}function Eh(u,L){if(1&u&&e.EFF(0),2&u){const s=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(s)," ")}}function P0(u,L){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",8),e.DNE(4,k1,1,0,"ng-container",9),e.k0s(),e.DNE(5,kf,1,1,"ng-template",null,1,e.C5r)(7,Eh,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const s=L.ngIf,M=e.sdS(6),U=e.sdS(8),K=e.XpG(2);e.R7$(2),e.JRh(s),e.R7$(),e.xc7("font-size","12px"),e.BMQ("dy",K.dy)("x",K.x1)("y",K.y1)("text-anchor",K.textAnchor),e.R7$(),e.Y8G("ngIf",K.wrapTicks)("ngIfThen",M)("ngIfElse",U)}}function z0(u,L){if(1&u&&(e.qSk(),e.j41(0,"g",6),e.DNE(1,P0,9,10,"ng-container",7),e.k0s()),2&u){const s=L.$implicit,M=e.XpG();e.BMQ("transform",M.transform(s)),e.R7$(),e.Y8G("ngIf",M.tickFormat(s))}}function If(u,L){if(1&u&&(e.qSk(),e.nrm(0,"path",13)),2&u){const s=e.XpG();e.BMQ("d",s.referenceAreaPath)("transform",s.gridLineTransform())}}function Sh(u,L){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const s=e.XpG(3);e.BMQ("x2",s.gridLineWidth)}}function Pd(u,L){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const s=e.XpG(3);e.BMQ("x2",-s.gridLineWidth)}}function Th(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Sh,1,1,"line",14)(2,Pd,1,1,"line",14),e.k0s()),2&u){const s=e.XpG(2);e.BMQ("transform",s.gridLineTransform()),e.R7$(),e.Y8G("ngIf",s.orient===s.Orientation.Left),e.R7$(),e.Y8G("ngIf",s.orient===s.Orientation.Right)}}function B0(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Th,3,3,"g",7),e.k0s()),2&u){const s=L.$implicit,M=e.XpG();e.BMQ("transform",M.transform(s)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}function Rf(u,L){if(1&u&&(e.qSk(),e.j41(0,"g")(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",17),e.EFF(4),e.k0s()()),2&u){const s=e.XpG(2).$implicit,M=e.XpG();e.R7$(2),e.JRh(M.tickTrim(M.tickFormat(s.value))),e.R7$(),e.BMQ("dy",M.dy)("y",-6)("x",M.gridLineWidth)("text-anchor",M.textAnchor),e.R7$(),e.SpI(" ",s.name," ")}}function E4(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",16),e.DNE(2,Rf,5,6,"g",7),e.k0s()),2&u){const s=e.XpG().$implicit,M=e.XpG();e.BMQ("transform",M.transform(s.value)),e.R7$(),e.BMQ("x2",M.gridLineWidth)("transform",M.gridLineTransform()),e.R7$(),e.Y8G("ngIf",M.showRefLabels)}}function S4(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,E4,3,4,"g",7),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("ngIf",s.showRefLines)}}const zd=["ngx-charts-y-axis",""];function I1(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.emitTicksWidth(U))}),e.k0s()}if(2&u){const s=e.XpG();e.Y8G("trimTicks",s.trimTicks)("maxTickLength",s.maxTickLength)("tickFormatting",s.tickFormatting)("tickArguments",s.tickArguments)("tickValues",s.ticks)("tickStroke",s.tickStroke)("scale",s.yScale)("orient",s.yOrient)("showGridLines",s.showGridLines)("gridLineWidth",s.dims.width)("referenceLines",s.referenceLines)("showRefLines",s.showRefLines)("showRefLabels",s.showRefLabels)("height",s.dims.height)("wrapTicks",s.wrapTicks)}}function R1(u,L){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const s=e.XpG();e.Y8G("label",s.labelText)("offset",s.labelOffset)("orient",s.yOrient)("height",s.dims.height)("width",s.dims.width)}}const V0=["ngx-charts-svg-linear-gradient",""];function O1(u,L){if(1&u&&(e.qSk(),e.nrm(0,"stop")),2&u){const s=L.$implicit;e.xc7("stop-color",s.color)("stop-opacity",s.opacity),e.BMQ("offset",s.offset+"%")}}const N1=["ngx-charts-grid-panel",""],Lh=["ngx-charts-grid-panel-series",""];function U0(u,L){if(1&u&&(e.qSk(),e.nrm(0,"g",1)),2&u){const s=L.$implicit;e.AVh("grid-panel",!0)("odd","odd"===s.class)("even","even"===s.class),e.Y8G("height",s.height)("width",s.width)("x",s.x)("y",s.y)}}const U1=["tooltipTemplate"],rs=(u,L)=>[u,L],bl=".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",W0=["ngx-charts-bar",""];function X0(u,L){if(1&u&&(e.qSk(),e.j41(0,"defs"),e.nrm(1,"g",2),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("orientation",s.orientation)("name",s.gradientId)("stops",s.gradientStops)}}const Yf=["ngx-charts-bar-label",""],Mn=["ngx-charts-series-vertical",""];function Ki(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(U){e.eBV(s);const K=e.XpG(2);return e.Njj(K.onClick(U))})("activate",function(U){e.eBV(s);const K=e.XpG(2);return e.Njj(K.activate.emit(U))})("deactivate",function(U){e.eBV(s);const K=e.XpG(2);return e.Njj(K.deactivate.emit(U))}),e.k0s()}if(2&u){const s=L.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("@.disabled",!M.animations)("width",s.width)("height",s.height)("x",s.x)("y",s.y)("fill",s.color)("stops",s.gradientStops)("data",s.data)("orientation",M.barOrientation.Vertical)("roundEdges",s.roundEdges)("gradient",M.gradient)("ariaLabel",s.ariaLabel)("isActive",M.isActive(s.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:s.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",s.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function an(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Ki,1,22,"g",1),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("ngForOf",s.bars)("ngForTrackBy",s.trackBy)}}function Xn(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(U){e.eBV(s);const K=e.XpG(2);return e.Njj(K.onClick(U))})("activate",function(U){e.eBV(s);const K=e.XpG(2);return e.Njj(K.activate.emit(U))})("deactivate",function(U){e.eBV(s);const K=e.XpG(2);return e.Njj(K.deactivate.emit(U))}),e.k0s()}if(2&u){const s=L.$implicit,M=e.XpG(2);e.Y8G("width",s.width)("height",s.height)("x",s.x)("y",s.y)("fill",s.color)("stops",s.gradientStops)("data",s.data)("orientation",M.barOrientation.Vertical)("roundEdges",s.roundEdges)("gradient",M.gradient)("ariaLabel",s.ariaLabel)("isActive",M.isActive(s.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:s.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",s.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function gr(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Xn,1,20,"g",1),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("ngForOf",s.bars)("ngForTrackBy",s.trackBy)}}function jr(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",4),e.bIt("dimensionsChanged",function(U){const K=e.eBV(s).index,ke=e.XpG(2);return e.Njj(ke.dataLabelHeightChanged.emit({size:U,index:K}))}),e.k0s()}if(2&u){const s=L.$implicit,M=e.XpG(2);e.Y8G("barX",s.x)("barY",s.y)("barWidth",s.width)("barHeight",s.height)("value",s.total)("valueFormatting",M.dataLabelFormatting)("orientation",M.barOrientation.Vertical)}}function da(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,jr,1,7,"g",3),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("ngForOf",s.barsForDataLabels)("ngForTrackBy",s.trackDataLabelBy)}}function rr(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",5),e.bIt("dimensionsChanged",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.updateXAxisHeight(U))}),e.k0s()}if(2&u){const s=e.XpG();e.Y8G("xScale",s.xScale)("dims",s.dims)("showGridLines",s.showGridLines)("showLabel",s.showXAxisLabel)("labelText",s.xAxisLabel)("trimTicks",s.trimXAxisTicks)("rotateTicks",s.rotateXAxisTicks)("maxTickLength",s.maxXAxisTickLength)("tickFormatting",s.xAxisTickFormatting)("ticks",s.xAxisTicks)("xAxisOffset",s.dataLabelMaxHeight.negative)("wrapTicks",s.wrapTicks)}}function Kr(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.updateYAxisWidth(U))}),e.k0s()}if(2&u){const s=e.XpG();e.Y8G("yScale",s.yScale)("dims",s.dims)("showGridLines",s.showGridLines)("showLabel",s.showYAxisLabel)("labelText",s.yAxisLabel)("trimTicks",s.trimYAxisTicks)("maxTickLength",s.maxYAxisTickLength)("tickFormatting",s.yAxisTickFormatting)("ticks",s.yAxisTicks)("wrapTicks",s.wrapTicks)}}function kr(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.updateXAxisHeight(U))}),e.k0s()}if(2&u){const s=e.XpG();e.Y8G("xScale",s.groupScale)("dims",s.dims)("showLabel",s.showXAxisLabel)("labelText",s.xAxisLabel)("trimTicks",s.trimXAxisTicks)("rotateTicks",s.rotateXAxisTicks)("maxTickLength",s.maxXAxisTickLength)("tickFormatting",s.xAxisTickFormatting)("ticks",s.xAxisTicks)("xAxisOffset",s.dataLabelMaxHeight.negative)("wrapTicks",s.wrapTicks)}}function Aa(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",7),e.bIt("dimensionsChanged",function(U){e.eBV(s);const K=e.XpG();return e.Njj(K.updateYAxisWidth(U))}),e.k0s()}if(2&u){const s=e.XpG();e.Y8G("yScale",s.valueScale)("dims",s.dims)("showGridLines",s.showGridLines)("showLabel",s.showYAxisLabel)("labelText",s.yAxisLabel)("trimTicks",s.trimYAxisTicks)("maxTickLength",s.maxYAxisTickLength)("tickFormatting",s.yAxisTickFormatting)("ticks",s.yAxisTicks)("wrapTicks",s.wrapTicks)}}function ha(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(U){const K=e.eBV(s).$implicit,ke=e.XpG(2);return e.Njj(ke.onClick(U,K))})("activate",function(U){const K=e.eBV(s).$implicit,ke=e.XpG(2);return e.Njj(ke.onActivate(U,K))})("deactivate",function(U){const K=e.eBV(s).$implicit,ke=e.XpG(2);return e.Njj(ke.onDeactivate(U,K))})("dataLabelHeightChanged",function(U){const K=e.eBV(s).index,ke=e.XpG(2);return e.Njj(ke.onDataLabelMaxHeightChanged(U,K))}),e.k0s()}if(2&u){const s=L.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",s.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",s.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(s))}}function Zs(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,ha,1,17,"g",8),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("ngForOf",s.results)("ngForTrackBy",s.trackBy)}}function rd(u,L){if(1&u){const s=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(U){const K=e.eBV(s).$implicit,ke=e.XpG(2);return e.Njj(ke.onClick(U,K))})("activate",function(U){const K=e.eBV(s).$implicit,ke=e.XpG(2);return e.Njj(ke.onActivate(U,K))})("deactivate",function(U){const K=e.eBV(s).$implicit,ke=e.XpG(2);return e.Njj(ke.onDeactivate(U,K))})("dataLabelHeightChanged",function(U){const K=e.eBV(s).index,ke=e.XpG(2);return e.Njj(ke.onDataLabelMaxHeightChanged(U,K))}),e.k0s()}if(2&u){const s=L.$implicit,M=e.XpG(2);e.Y8G("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",s.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",s.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(s))}}function G1(u,L){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,rd,1,16,"g",8),e.k0s()),2&u){const s=e.XpG();e.R7$(),e.Y8G("ngForOf",s.results)("ngForTrackBy",s.trackBy)}}function Jh(u,L,s){s=s||{};let M,U,K,ke=null,Et=0;function Gt(){Et=!1===s.leading?0:+new Date,ke=null,K=u.apply(M,U)}return function(){const Pt=+new Date;!Et&&!1===s.leading&&(Et=Pt);const li=L-(Pt-Et);return M=this,U=arguments,li<=0?(clearTimeout(ke),ke=null,Et=Pt,K=u.apply(M,U)):!ke&&!1!==s.trailing&&(ke=setTimeout(Gt,li)),K}}function om(u,L){return function(M,U,K){return{configurable:!0,enumerable:K.enumerable,get:function(){return Object.defineProperty(this,U,{configurable:!0,enumerable:K.enumerable,value:Jh(K.value,u,L)}),this[U]}}}}var br=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u.Center="center",u}(br||{});function sm(u,L,s){return s===br.Top?u.top-7:s===br.Bottom?u.top+u.height-L.height+7:s===br.Center?u.top+u.height/2-L.height/2:void 0}function qh(u,L,s){return s===br.Left?u.left-7:s===br.Right?u.left+u.width-L.width+7:s===br.Center?u.left+u.width/2-L.width/2:void 0}class Js{static calculateVerticalAlignment(L,s,M){let U=sm(L,s,M);return U+s.height>window.innerHeight&&(U=window.innerHeight-s.height),U}static calculateVerticalCaret(L,s,M,U){let K;U===br.Top&&(K=L.height/2-M.height/2+7),U===br.Bottom&&(K=s.height-L.height/2-M.height/2-7),U===br.Center&&(K=s.height/2-M.height/2);const ke=sm(L,s,U);return ke+s.height>window.innerHeight&&(K+=ke+s.height-window.innerHeight),K}static calculateHorizontalAlignment(L,s,M){let U=qh(L,s,M);return U+s.width>window.innerWidth&&(U=window.innerWidth-s.width),U}static calculateHorizontalCaret(L,s,M,U){let K;U===br.Left&&(K=L.width/2-M.width/2+7),U===br.Right&&(K=s.width-L.width/2-M.width/2-7),U===br.Center&&(K=s.width/2-M.width/2);const ke=qh(L,s,U);return ke+s.width>window.innerWidth&&(K+=ke+s.width-window.innerWidth),K}static shouldFlip(L,s,M,U){let K=!1;return M===br.Right&&L.left+L.width+s.width+U>window.innerWidth&&(K=!0),M===br.Left&&L.left-s.width-U<0&&(K=!0),M===br.Top&&L.top-s.height-U<0&&(K=!0),M===br.Bottom&&L.top+L.height+s.height+U>window.innerHeight&&(K=!0),K}static positionCaret(L,s,M,U,K){let ke=0,Et=0;return L===br.Right?(Et=-7,ke=Js.calculateVerticalCaret(M,s,U,K)):L===br.Left?(Et=s.width,ke=Js.calculateVerticalCaret(M,s,U,K)):L===br.Top?(ke=s.height,Et=Js.calculateHorizontalCaret(M,s,U,K)):L===br.Bottom&&(ke=-7,Et=Js.calculateHorizontalCaret(M,s,U,K)),{top:ke,left:Et}}static positionContent(L,s,M,U,K){let ke=0,Et=0;return L===br.Right?(Et=M.left+M.width+U,ke=Js.calculateVerticalAlignment(M,s,K)):L===br.Left?(Et=M.left-s.width-U,ke=Js.calculateVerticalAlignment(M,s,K)):L===br.Top?(ke=M.top-s.height-U,Et=Js.calculateHorizontalAlignment(M,s,K)):L===br.Bottom&&(ke=M.top+M.height+U,Et=Js.calculateHorizontalAlignment(M,s,K)),{top:ke,left:Et}}static determinePlacement(L,s,M,U){if(Js.shouldFlip(M,s,L,U)){if(L===br.Right)return br.Left;if(L===br.Left)return br.Right;if(L===br.Top)return br.Bottom;if(L===br.Bottom)return br.Top}return L}}let s6=(()=>{class u{constructor(s,M,U){this.element=s,this.renderer=M,this.platformId=U}get cssClasses(){let s="ngx-charts-tooltip-content";return s+=` position-${this.placement}`,s+=` type-${this.type}`,s+=` ${this.cssClass}`,s}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,t.UE)(this.platformId))return;const s=this.element.nativeElement,M=this.host.nativeElement.getBoundingClientRect();if(!M.height&&!M.width)return;const U=s.getBoundingClientRect();this.checkFlip(M,U),this.positionContent(s,M,U),this.showCaret&&this.positionCaret(M,U),setTimeout(()=>this.renderer.addClass(s,"animate"),1)}positionContent(s,M,U){const{top:K,left:ke}=Js.positionContent(this.placement,U,M,this.spacing,this.alignment);this.renderer.setStyle(s,"top",`${K}px`),this.renderer.setStyle(s,"left",`${ke}px`)}positionCaret(s,M){const U=this.caretElm.nativeElement,K=U.getBoundingClientRect(),{top:ke,left:Et}=Js.positionCaret(this.placement,M,s,K,this.alignment);this.renderer.setStyle(U,"top",`${ke}px`),this.renderer.setStyle(U,"left",`${Et}px`)}checkFlip(s,M){this.placement=Js.determinePlacement(this.placement,M,s,this.spacing)}onWindowResize(){this.position()}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.aKT),e.rXU(e.sFG),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-tooltip-content"]],viewQuery:function(s,M){if(1&s&&e.GBs(I0,5),2&s){let U;e.mGM(U=e.lsd())&&(M.caretElm=U.first)}},hostVars:2,hostBindings:function(s,M){1&s&&e.bIt("resize",function(){return M.onWindowResize()},!1,e.tSv),2&s&&e.HbH(M.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},decls:6,vars:6,consts:[["caretElm",""],[3,"hidden"],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(s,M){1&s&&(e.j41(0,"div"),e.nrm(1,"span",1,0),e.j41(3,"div",2),e.DNE(4,io,2,4,"span",3)(5,Tf,1,1,"span",4),e.k0s()()),2&s&&(e.R7$(),e.ZvI("tooltip-caret position-",M.placement,""),e.Y8G("hidden",!M.showCaret),e.R7$(3),e.Y8G("ngIf",!M.title),e.R7$(),e.Y8G("ngIf",M.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:rgba(0,0,0,.75);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:translate(10px)}.ngx-charts-tooltip-content.position-left{transform:translate(-10px)}.ngx-charts-tooltip-content.position-top{transform:translateY(-10px)}.ngx-charts-tooltip-content.position-bottom{transform:translateY(10px)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translate(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}),(0,x.Cg)([om(100)],u.prototype,"onWindowResize",null),u})();class eu{constructor(L){this.injectionService=L,this.defaults={},this.components=new Map}getByType(L=this.type){return this.components.get(L)}create(L){return this.createByType(this.type,L)}createByType(L,s){s=this.assignDefaults(s);const M=this.injectComponent(L,s);return this.register(L,M),M}destroy(L){const s=this.components.get(L.componentType);if(s&&s.length){const M=s.indexOf(L);M>-1&&(s[M].destroy(),s.splice(M,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(L){const s=this.components.get(L);if(s&&s.length){let M=s.length-1;for(;M>=0;)this.destroy(s[M--])}}injectComponent(L,s){return this.injectionService.appendComponent(L,s)}assignDefaults(L){const s={...this.defaults.inputs},M={...this.defaults.outputs};return!L.inputs&&!L.outputs&&(L={inputs:L}),s&&(L.inputs={...s,...L.inputs}),M&&(L.outputs={...M,...L.outputs}),L}register(L,s){this.components.has(L)||this.components.set(L,[]),this.components.get(L).push(s)}}let cm=(()=>{class u{constructor(s,M,U){this.applicationRef=s,this.componentFactoryResolver=M,this.injector=U}static setGlobalRootViewContainer(s){u.globalRootViewContainer=s}getRootViewContainer(){if(this._container)return this._container;if(u.globalRootViewContainer)return u.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(s){this._container=s}getComponentRootNode(s){return function c6(u){return u.element}(s)?s.element.nativeElement:s.hostView&&s.hostView.rootNodes.length>0?s.hostView.rootNodes[0]:s.location.nativeElement}getRootViewContainerNode(s){return this.getComponentRootNode(s)}projectComponentBindings(s,M){if(M){if(void 0!==M.inputs){const U=Object.getOwnPropertyNames(M.inputs);for(const K of U)s.instance[K]=M.inputs[K]}if(void 0!==M.outputs){const U=Object.getOwnPropertyNames(M.outputs);for(const K of U)s.instance[K]=M.outputs[K]}}return s}appendComponent(s,M={},U){U||(U=this.getRootViewContainer());const K=this.getComponentRootNode(U),ke=new D.aI(K,this.componentFactoryResolver,this.applicationRef,this.injector),Et=new D.A8(s),Gt=ke.attach(Et);return this.projectComponentBindings(Gt,M),Gt}}return u.globalRootViewContainer=null,u.\u0275fac=function(s){return new(s||u)(e.KVO(e.o8S),e.KVO(e.OM3),e.KVO(e.zZn))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})(),a3=(()=>{class u extends eu{constructor(s){super(s),this.type=s6}}return u.\u0275fac=function(s){return new(s||u)(e.KVO(cm))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})();var Ic=function(u){return u.Right="right",u.Below="below",u}(Ic||{}),Z0=function(u){return u.ScaleLegend="scaleLegend",u.Legend="legend",u}(Z0||{}),In=function(u){return u.Time="time",u.Linear="linear",u.Ordinal="ordinal",u.Quantile="quantile",u}(In||{});let tu=(()=>{class u{constructor(){this.horizontal=!1}ngOnChanges(s){const M=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${M})`}gradientString(s,M){M.push(1);const U=[];return s.reverse().forEach((K,ke)=>{U.push(`${K} ${Math.round(100*M[ke])}%`)}),U.join(", ")}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},features:[e.OA$],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(s,M){1&s&&(e.j41(0,"div",0)(1,"div",1)(2,"span"),e.EFF(3),e.k0s()(),e.nrm(4,"div",2),e.j41(5,"div",1)(6,"span"),e.EFF(7),e.k0s()()()),2&s&&(e.xc7("height",M.horizontal?void 0:M.height,"px")("width",M.width,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(3),e.JRh(M.valueRange[1].toLocaleString()),e.R7$(),e.xc7("background",M.gradient),e.R7$(3),e.JRh(M.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}),u})();function J0(u){return u instanceof Date?u.toLocaleDateString():u.toLocaleString()}let s3=(()=>{class u{constructor(){this.isActive=!1,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.toggle=new e.bkB}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(s,M){1&s&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},decls:4,vars:6,consts:[["tabindex","-1",3,"click","title"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(s,M){1&s&&(e.j41(0,"span",0),e.bIt("click",function(){return M.select.emit(M.formattedLabel)}),e.j41(1,"span",1),e.bIt("click",function(){return M.toggle.emit(M.formattedLabel)}),e.k0s(),e.j41(2,"span",2),e.EFF(3),e.k0s()()),2&s&&(e.AVh("active",M.isActive),e.Y8G("title",M.formattedLabel),e.R7$(),e.xc7("background-color",M.color),e.R7$(2),e.SpI(" ",M.trimmedLabel," "))},encapsulation:2,changeDetection:0}),u})(),c3=(()=>{class u{constructor(s){this.cd=s,this.horizontal=!1,this.labelClick=new e.bkB,this.labelActivate=new e.bkB,this.labelDeactivate=new e.bkB,this.legendEntries=[]}ngOnChanges(s){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const s=[];for(const M of this.data){const U=J0(M);-1===s.findIndex(ke=>ke.label===U)&&s.push({label:M,formattedLabel:U,color:this.colors.getColor(M)})}return s}isActive(s){return!!this.activeEntries&&void 0!==this.activeEntries.find(U=>s.label===U.name)}activate(s){this.labelActivate.emit(s)}deactivate(s){this.labelDeactivate.emit(s)}trackBy(s,M){return M.label}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.gRc))},u.\u0275cmp=e.VBU({type:u,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"},features:[e.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(s,M){1&s&&(e.j41(0,"div"),e.DNE(1,Lf,3,1,"header",0),e.j41(2,"div",1)(3,"ul",2),e.DNE(4,Df,2,4,"li",3),e.k0s()()()),2&s&&(e.xc7("width",M.width,"px"),e.R7$(),e.Y8G("ngIf",(null==M.title?null:M.title.length)>0),e.R7$(2),e.xc7("max-height",M.height-45,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(),e.Y8G("ngForOf",M.legendEntries)("ngForTrackBy",M.trackBy))},dependencies:[s3,t.bT,t.Sq],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:rgba(0,0,0,.05)}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;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}),u})(),Y1=(()=>{class u{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new e.bkB,this.legendLabelActivate=new e.bkB,this.legendLabelDeactivate=new e.bkB,this.LegendPosition=Ic,this.LegendType=Z0}ngOnChanges(s){this.update()}update(){let s=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===Ic.Right)&&(s=this.legendType===Z0.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-s)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==Ic.Right?this.chartWidth:Math.floor(this.view[0]*s/12)}getLegendType(){return this.legendOptions.scaleType===In.Linear?Z0.ScaleLegend:Z0.Legend}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},features:[e.Jv_([a3]),e.OA$],ngContentSelectors:xh,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(s,M){1&s&&(e.NAR(),e.j41(0,"div",0),e.qSk(),e.j41(1,"svg",1),e.SdG(2),e.k0s(),e.DNE(3,Ch,1,5,"ngx-charts-scale-legend",2)(4,C4,1,7,"ngx-charts-legend",3),e.k0s()),2&s&&(e.xc7("width",M.view[0],"px")("height",M.view[1],"px"),e.R7$(),e.BMQ("width",M.chartWidth)("height",M.view[1]),e.R7$(2),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.ScaleLegend),e.R7$(),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.Legend))},dependencies:[tu,c3,t.bT],encapsulation:2,changeDetection:0}),u})(),l3=(()=>{class u{constructor(s,M){this.element=s,this.zone=M,this.visible=new e.bkB,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const s=()=>{if(!this.element)return;const{offsetHeight:M,offsetWidth:U}=this.element.nativeElement;M&&U?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>s(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>s())})}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.aKT),e.rXU(e.SKi))},u.\u0275dir=e.FsC({type:u,selectors:[["visibility-observer"]],outputs:{visible:"visible"}}),u})();function l6(u){return"[object Date]"===toString.call(u)}let iu=(()=>{class u{constructor(s,M,U,K){this.chartElement=s,this.zone=M,this.cd=U,this.platformId=K,this.scheme="cool",this.schemeType=In.Ordinal,this.animations=!0,this.select=new e.bkB}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new l3(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(s){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 s=this.getContainerDims();s&&(this.width=s.width,this.height=s.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 s,M;const U=this.chartElement.nativeElement;if((0,t.UE)(this.platformId)&&null!==U.parentNode){const K=U.parentNode.getBoundingClientRect();s=K.width,M=K.height}return s&&M?{width:s,height:M}:null}formatDates(){for(let s=0;s{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=M}cloneData(s){const M=[];for(const U of s){const K={};if(void 0!==U.name&&(K.name=U.name),void 0!==U.value&&(K.value=U.value),void 0!==U.series){K.series=[];for(const ke of U.series){const Et=Object.assign({},ke);K.series.push(Et)}}void 0!==U.extra&&(K.extra=JSON.parse(JSON.stringify(U.extra))),void 0!==U.source&&(K.source=U.source),void 0!==U.target&&(K.target=U.target),M.push(K)}return M}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},features:[e.OA$],decls:1,vars:0,template:function(s,M){1&s&&e.nrm(0,"div")},encapsulation:2}),u})();var Po=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u}(Po||{});let q0=(()=>{class u{constructor(s){this.textHeight=25,this.margin=5,this.element=s.nativeElement}ngOnChanges(s){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case Po.Top:case Po.Bottom:this.y=this.offset,this.x=this.width/2;break;case Po.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Po.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},features:[e.OA$],attrs:w4,decls:2,vars:6,template:function(s,M){1&s&&(e.qSk(),e.j41(0,"text"),e.EFF(1),e.k0s()),2&s&&(e.BMQ("stroke-width",M.strokeWidth)("x",M.x)("y",M.y)("text-anchor",M.textAnchor)("transform",M.transform),e.R7$(),e.SpI(" ",M.label," "))},encapsulation:2,changeDetection:0}),u})();function e2(u,L=16){return"string"!=typeof u?"number"==typeof u?u+"":"":(u=u.trim()).length<=L?u:`${u.slice(0,L)}...`}function Rc(u,L){if(u.length>L){const s=[],M=Math.floor(u.length/L);for(let U=0;U{const Et=(K.pop()||"")+" ";return Et.length+ke.length>L?[...K,Et.trim(),ke.trim()]:[...K,Et+ke]},[]);else{let K=0;for(;Ks&&(U=U.splice(0,s),U[U.length-1]+="..."),U}var yl=function(u){return u.Start="start",u.Middle="middle",u.End="end",u}(yl||{});let nu=(()=>{class u{constructor(s){this.platformId=s,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=yl.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16}get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}ngOnChanges(s){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const s=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);s!==this.height&&(this.height=s,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const s=this.scale;this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:s.tickFormat?s.tickFormat.apply(s,this.tickArguments):function(U){return"Date"===U.constructor.name?U.toLocaleDateString():U.toLocaleString()};const M=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.adjustedScale=this.scale.bandwidth?function(U){return this.scale(U)+.5*this.scale.bandwidth()}:this.scale,this.textTransform="",M&&0!==M?(this.textTransform=`rotate(${M})`,this.textAnchor=yl.End,this.verticalSpacing=10):this.textAnchor=yl.Middle,setTimeout(()=>this.updateDims())}getRotationAngle(s){let M=0;this.maxTicksLength=0;for(let _i=0;_ithis.maxTicksLength&&(this.maxTicksLength=Di)}const ke=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let Et=ke;const Gt=Math.floor(this.width/s.length);for(;Et>Gt&&M>-90;)M-=30,Et=Math.cos(M*(Math.PI/180))*ke;let Pt=14;if(this.isWrapTicksSupported){const _i=this.ticks.reduce((Di,sn)=>sn.length>Di.length?sn:Di,"");Pt=14*(this.tickChunks(_i).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(_i)}const li=0!==M?Math.max(Math.abs(Math.sin(M*Math.PI/180))*this.maxTickLength*7,10):Pt;return this.approxHeight=Math.min(li,200),M}getTicks(){let s;const M=this.getMaxTicks(20),U=this.getMaxTicks(100);return this.tickValues?s=this.tickValues:this.scale.ticks?s=this.scale.ticks.apply(this.scale,[U]):(s=this.scale.domain(),s=Rc(s,M)),s}getMaxTicks(s){return Math.floor(this.width/s)}tickTransform(s){return"translate("+this.adjustedScale(s)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(s){return this.trimTicks?e2(s,this.maxTickLength):s}getMaxPossibleLengthForTick(s){if(this.scale.bandwidth){const U=Math.floor(this.scale.bandwidth()/7),K=s.slice(0,U);return Math.max(K.length,this.maxTickLength)}return this.maxTickLength}tickChunks(s){if(s.toString().length>this.maxTickLength&&this.scale.bandwidth){let U=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(U<=1)return[this.tickTrim(s)];let K=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,t.UE)(this.platformId)||(K=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),U=Math.min(U,5),lm(s,K,U<1?1:U)}return[this.tickTrim(s)]}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(s,M){if(1&s&&e.GBs(Fd,5),2&s){let U;e.mGM(U=e.lsd())&&(M.ticksElement=U.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"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Af,decls:4,vars:2,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],[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"]],template:function(s,M){1&s&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,Jl,2,2,"g",3),e.k0s(),e.DNE(3,F0,2,2,"g",4)),2&s&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.ticks))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),dm=(()=>{class u{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Po.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.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=Po}ngOnChanges(s){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:s}){const M=s+25+5;M!==this.labelOffset&&(this.labelOffset=M,setTimeout(()=>{this.dimensionsChanged.emit({height:s})},0))}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(s,M){if(1&s&&e.GBs(nu,5),2&s){let U;e.mGM(U=e.lsd())&&(M.ticksComponent=U.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",xAxisOffset:"xAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:A1,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","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","width","tickValues","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(s,M){1&s&&(e.qSk(),e.j41(0,"g"),e.DNE(1,ed,1,13,"g",0)(2,N0,1,5,"g",1),e.k0s()),2&s&&(e.BMQ("class",M.xAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[nu,q0,t.bT],encapsulation:2,changeDetection:0}),u})();function qs(u,L,s,M,U,[K,ke,Et,Gt]){let Pt="";return Pt=`M${[u+U,L]}`,Pt+="h"+((s=0===(s=Math.floor(s))?1:s)-2*U),Pt+=ke?`a${[U,U]} 0 0 1 ${[U,U]}`:`h${U}v${U}`,Pt+="v"+((M=0===(M=Math.floor(M))?1:M)-2*U),Pt+=Gt?`a${[U,U]} 0 0 1 ${[-U,U]}`:`v${U}h${-U}`,Pt+="h"+(2*U-s),Pt+=Et?`a${[U,U]} 0 0 1 ${[-U,-U]}`:`h${-U}v${-U}`,Pt+="v"+(2*U-M),Pt+=K?`a${[U,U]} 0 0 1 ${[U,-U]}`:`v${-U}h${U}`,Pt+="z",Pt}let ru=(()=>{class u{constructor(s){this.platformId=s,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 e.bkB,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=yl.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Po}ngOnChanges(s){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const s=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);s!==this.width&&(this.width=s,this.dimensionsChanged.emit({width:s}),setTimeout(()=>this.updateDims()))}update(){const s=this.scale,M=this.orient===Po.Top||this.orient===Po.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:s.tickFormat?s.tickFormat.apply(s,this.tickArguments):function(U){return"Date"===U.constructor.name?U.toLocaleDateString():U.toLocaleString()},this.adjustedScale=s.bandwidth?U=>{const K=s(U)+.5*s.bandwidth();if(this.wrapTicks&&U.toString().length>this.maxTickLength){const ke=this.tickChunks(U).length;if(1===ke)return K;const Pt=.5*s.bandwidth()-8*ke*.5;return s(U)+Pt}return K}:s,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Po.Top:case Po.Bottom:this.transform=function(U){return"translate("+this.adjustedScale(U)+",0)"},this.textAnchor=yl.Middle,this.y2=this.innerTickSize*M,this.y1=this.tickSpacing*M,this.dy=M<0?"0em":".71em";break;case Po.Left:this.transform=function(U){return"translate(0,"+this.adjustedScale(U)+")"},this.textAnchor=yl.End,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,this.dy=".32em";break;case Po.Right:this.transform=function(U){return"translate(0,"+this.adjustedScale(U)+")"},this.textAnchor=yl.Start,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(s=>s.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(s=>s.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=qs(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let s;const M=this.getMaxTicks(20),U=this.getMaxTicks(50);return this.tickValues?s=this.tickValues:this.scale.ticks?s=this.scale.ticks.apply(this.scale,[U]):(s=this.scale.domain(),s=Rc(s,M)),s}getMaxTicks(s){return Math.floor(this.height/s)}tickTransform(s){return`translate(${this.adjustedScale(s)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(s){return this.trimTicks?e2(s,this.maxTickLength):s}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(U=>this.tickTrim(this.tickFormat(U)).length))}tickChunks(s){if(s.toString().length>this.maxTickLength&&this.scale.bandwidth){const M=this.maxTickLength,U=Math.floor(this.scale.bandwidth()/15);return U<=1?[this.tickTrim(s)]:lm(s,M,Math.min(U,5))}return[this.tickFormat(s)]}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(s,M){if(1&s&&e.GBs(Fd,5),2&s){let U;e.mGM(U=e.lsd())&&(M.ticksElement=U.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"},features:[e.OA$],attrs:M4,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[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"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(s,M){1&s&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,z0,2,2,"g",3),e.k0s(),e.DNE(3,If,1,2,"path",4)(4,B0,2,2,"g",5)(5,S4,2,1,"g",5)),2&s&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngIf",M.referenceLineLength>1&&M.refMax&&M.refMin&&M.showRefLines),e.R7$(),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.referenceLines))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),od=(()=>{class u{constructor(){this.showGridLines=!1,this.yOrient=Po.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(s){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===Po.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:s}){s!==this.labelOffset&&this.yOrient===Po.Right?(this.labelOffset=s+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:s})},0)):s!==this.labelOffset&&(this.labelOffset=s,setTimeout(()=>{this.dimensionsChanged.emit({width:s})},0))}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(s,M){if(1&s&&e.GBs(ru,5),2&s){let U;e.mGM(U=e.lsd())&&(M.ticksComponent=U.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"},features:[e.OA$],attrs:zd,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(s,M){1&s&&(e.qSk(),e.j41(0,"g"),e.DNE(1,I1,1,15,"g",0)(2,R1,1,5,"g",1),e.k0s()),2&s&&(e.BMQ("class",M.yAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.yScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[ru,q0,t.bT],encapsulation:2,changeDetection:0}),u})(),Hd=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD]]}),u})();var sd=function(u){return u.popover="popover",u.tooltip="tooltip",u}(sd||{}),Zc=function(u){return u[u.all="all"]="all",u[u.focus="focus"]="focus",u[u.mouseover="mouseover"]="mouseover",u}(Zc||{});let t2=(()=>{class u{constructor(s,M,U){this.tooltipService=s,this.viewContainerRef=M,this.renderer=U,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=br.Top,this.tooltipAlignment=br.Center,this.tooltipType=sd.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=Zc.all,this.tooltipImmediateExit=!1,this.show=new e.bkB,this.hide=new e.bkB}get listensForFocus(){return this.tooltipShowEvent===Zc.all||this.tooltipShowEvent===Zc.focus}get listensForHover(){return this.tooltipShowEvent===Zc.all||this.tooltipShowEvent===Zc.mouseover}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(s){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(s))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(s){if(this.component||this.tooltipDisabled)return;const M=s?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const U=this.createBoundOptions();this.component=this.tooltipService.create(U),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},M)}addHideListeners(s){this.mouseEnterContentEvent=this.renderer.listen(s,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(s,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",M=>{s.contains(M.target)||this.hideTooltip()}))}hideTooltip(s=!1){if(!this.component)return;const M=()=>{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),s?M():this.timeout=setTimeout(M,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}}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(a3),e.rXU(e.c1b),e.rXU(e.sFG))},u.\u0275dir=e.FsC({type:u,selectors:[["","ngx-tooltip",""]],hostBindings:function(s,M){1&s&&e.bIt("focusin",function(){return M.onFocus()})("blur",function(){return M.onBlur()})("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(K){return M.onMouseLeave(K.target)})("click",function(){return M.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"}}),u})(),d3=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({providers:[cm,a3],imports:[[t.MD]]}),u})();const h3={};function n2(){let u=("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4);return u=`a${u}`,h3[u]?n2():(h3[u]=!0,u)}var Eo=function(u){return u.Vertical="vertical",u.Horizontal="horizontal",u}(Eo||{});let r2=(()=>{class u{constructor(){this.orientation=Eo.Vertical}ngOnChanges(s){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===Eo.Horizontal?this.x2="100%":this.orientation===Eo.Vertical&&(this.y1="100%")}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},features:[e.OA$],attrs:V0,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(s,M){1&s&&(e.qSk(),e.j41(0,"linearGradient",0),e.DNE(1,O1,1,5,"stop",1),e.k0s()),2&s&&(e.Y8G("id",M.name),e.BMQ("x1",M.x1)("y1",M.y1)("x2",M.x2)("y2",M.y2),e.R7$(),e.Y8G("ngForOf",M.stops))},dependencies:[t.Sq],encapsulation:2,changeDetection:0}),u})(),um=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},attrs:N1,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(s,M){1&s&&(e.qSk(),e.nrm(0,"rect",0)),2&s&&e.BMQ("height",M.height)("width",M.width)("x",M.x)("y",M.y)},encapsulation:2,changeDetection:0}),u})();var jd=function(u){return u.Odd="odd",u.Even="even",u}(jd||{});let a2,fm=(()=>{class u{ngOnChanges(s){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(s=>{let M,U,K,ke,Et,Gt=jd.Odd;if(this.orient===Eo.Vertical){const Pt=this.xScale(s.name);Number.parseInt((Pt/this.xScale.step()).toString(),10)%2==1&&(Gt=jd.Even),M=this.xScale.bandwidth()*this.xScale.paddingInner(),U=this.xScale.bandwidth()+M,K=this.dims.height,ke=this.xScale(s.name)-M/2,Et=0}else if(this.orient===Eo.Horizontal){const Pt=this.yScale(s.name);Number.parseInt((Pt/this.yScale.step()).toString(),10)%2==1&&(Gt=jd.Even),M=this.yScale.bandwidth()*this.yScale.paddingInner(),U=this.dims.width,K=this.yScale.bandwidth()+M,ke=0,Et=this.yScale(s.name)-M/2}return{name:s.name,class:Gt,height:K,width:U,x:ke,y:Et}})}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},features:[e.OA$],attrs:Lh,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(s,M){1&s&&e.DNE(0,U0,1,10,"g",0),2&s&&e.Y8G("ngForOf",M.gridPanels)},dependencies:[um,t.Sq],encapsulation:2,changeDetection:0}),u})();typeof window<"u"?a2=window:typeof global<"u"&&(a2=global);let ec=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD,Hd,d3],t.MD,Hd,d3]}),u})();function o2({width:u,height:L,margins:s,showXAxis:M=!1,showYAxis:U=!1,xAxisHeight:K=0,yAxisWidth:ke=0,showXLabel:Et=!1,showYLabel:Gt=!1,showLegend:Pt=!1,legendType:li=In.Ordinal,legendPosition:_i=Ic.Right,columns:wi=12}){let Di=s[3],sn=u,kn=L-s[0]-s[2];return Pt&&_i===Ic.Right&&(wi-=li===In.Ordinal?2:1),sn=sn*wi/12,sn=sn-s[1]-s[3],M&&(kn-=5,kn-=K,Et&&(kn-=30)),U&&(sn-=5,sn-=ke,Di+=ke,Di+=10,Gt&&(sn-=30,Di+=30)),sn=Math.max(0,sn),kn=Math.max(0,kn),{width:Math.floor(sn),height:Math.floor(kn),xOffset:Math.floor(Di)}}const cu=[{name:"vivid",selectable:!0,group:In.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:In.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:In.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:In.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:In.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:In.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:In.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:In.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:In.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:In.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:In.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:In.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:In.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:In.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:In.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class pm{constructor(L,s,M,U){"string"==typeof L&&(L=cu.find(K=>K.name===L)),this.colorDomain=L.domain,this.scaleType=s,this.domain=M,this.customColors=U,this.scale=this.generateColorScheme(L,s,this.domain)}generateColorScheme(L,s,M){let U;switch("string"==typeof L&&(L=cu.find(K=>K.name===L)),s){case In.Quantile:U=Ef().range(L.domain).domain(M);break;case In.Ordinal:U=L1().range(L.domain).domain(M);break;case In.Linear:{const K=[...L.domain];1===K.length&&(K.push(K[0]),this.colorDomain=K);const ke=L0(0,1,1/K.length);U=Yc().range(K).domain(ke)}}return U}getColor(L){if(null==L)throw new Error("Value can not be null");if(this.scaleType===In.Linear){const s=Yc().domain(this.domain).range([0,1]);return this.scale(s(L))}{if("function"==typeof this.customColors)return this.customColors(L);const s=L.toString();let M;return this.customColors&&this.customColors.length>0&&(M=this.customColors.find(U=>U.name.toLowerCase()===s.toLowerCase())),M?M.value:this.scale(L)}}getLinearGradientStops(L,s){void 0===s&&(s=this.domain[0]);const M=Yc().domain(this.domain).range([0,1]),U=gl().domain(this.colorDomain).range([0,1]),K=this.getColor(L),ke=M(s),Et=this.getColor(s),Gt=M(L);let Pt=1,li=ke;const _i=[];for(_i.push({color:Et,offset:ke,originalOffset:ke,opacity:1});li=(Gt-U.bandwidth()).toFixed(4))break;_i.push({color:wi,offset:Di,opacity:1}),li=Di,Pt++}}if(_i[_i.length-1].offset<100&&_i.push({color:K,offset:Gt,opacity:1}),Gt===ke)_i[0].offset=0,_i[1].offset=100;else if(100!==_i[_i.length-1].offset)for(const wi of _i)wi.offset=(wi.offset-ke)/(Gt-ke)*100;return _i}}let lu=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),s2=(()=>{class u{constructor(s){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.hasGradient=!1,this.hideBar=!1,this.element=s.nativeElement}ngOnChanges(s){s.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+n2().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 s=function re(u){return"string"==typeof u?new ln([[document.querySelector(u)]],[document.documentElement]):new ln([[u]],Zi)}(this.element).select(".bar"),M=this.getPath();this.animations?s.transition().duration(500).attr("d",M):s.attr("d",M)}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 M,s=this.getRadius();return this.roundEdges?this.orientation===Eo.Vertical?(s=Math.min(this.height,s),M=qs(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===Eo.Horizontal&&(s=Math.min(this.width,s),M=qs(this.x,this.y,1,this.height,0,this.edges)):this.orientation===Eo.Vertical?M=qs(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===Eo.Horizontal&&(M=qs(this.x,this.y,1,this.height,0,this.edges)),M}getPath(){let M,s=this.getRadius();return this.roundEdges?this.orientation===Eo.Vertical?(s=Math.min(this.height,s),M=qs(this.x,this.y,this.width,this.height,s,this.edges)):this.orientation===Eo.Horizontal&&(s=Math.min(this.width,s),M=qs(this.x,this.y,this.width,this.height,s,this.edges)):M=qs(this.x,this.y,this.width,this.height,s,this.edges),M}getRadius(){let s=0;return this.roundEdges&&this.height>5&&this.width>5&&(s=Math.floor(Math.min(5,this.height/2,this.width/2))),s}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let s=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===Eo.Vertical?s=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===Eo.Horizontal&&(s=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),s}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===Eo.Vertical&&0===this.height||this.orientation===Eo.Horizontal&&0===this.width)}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(s,M){1&s&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.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"},features:[e.OA$],attrs:W0,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(s,M){1&s&&(e.DNE(0,X0,2,3,"defs",0),e.qSk(),e.j41(1,"path",1),e.bIt("click",function(){return M.select.emit(M.data)}),e.k0s()),2&s&&(e.Y8G("ngIf",M.hasGradient),e.R7$(),e.AVh("active",M.isActive)("hidden",M.hideBar),e.BMQ("d",M.path)("aria-label",M.ariaLabel)("fill",M.hasGradient?M.gradientFill:M.fill))},dependencies:[r2,t.bT],encapsulation:2,changeDetection:0}),u})();var Oc=function(u){return u.Standard="standard",u.Normalized="normalized",u.Stacked="stacked",u}(Oc||{}),xl=function(u){return u.positive="positive",u.negative="negative",u}(xl||{});let gm=(()=>{class u{constructor(s){this.dimensionsChanged=new e.bkB,this.horizontalPadding=2,this.verticalPadding=5,this.element=s.nativeElement}ngOnChanges(s){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):J0(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})`)}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Yf,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(s,M){1&s&&(e.qSk(),e.j41(0,"text",0),e.EFF(1),e.k0s()),2&s&&(e.BMQ("text-anchor",M.textAnchor)("transform",M.transform)("x",M.x)("y",M.y),e.R7$(),e.SpI(" ",M.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}),u})(),du=(()=>{class u{constructor(s){this.platformId=s,this.type=Oc.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.dataLabelHeightChanged=new e.bkB,this.barsForDataLabels=[],this.barOrientation=Eo,this.isSSR=!1}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(s){this.update()}update(){let s;this.updateTooltipSettings(),this.series.length&&(s=this.xScale.bandwidth()),s=Math.round(s);const M=Math.max(this.yScale.domain()[0],0),U={[xl.positive]:0,[xl.negative]:0};let ke,K=xl.positive;this.type===Oc.Normalized&&(ke=this.series.map(Et=>Et.value).reduce((Et,Gt)=>Et+Gt,0)),this.bars=this.series.map((Et,Gt)=>{let Pt=Et.value;const li=this.getLabel(Et),_i=J0(li);K=Pt>0?xl.positive:xl.negative;const Di={value:Pt,label:li,roundEdges:this.roundEdges,data:Et,width:s,formattedLabel:_i,height:0,x:0,y:0};if(this.type===Oc.Standard)Di.height=Math.abs(this.yScale(Pt)-this.yScale(M)),Di.x=this.xScale(li),Di.y=this.yScale(Pt<0?0:Pt);else if(this.type===Oc.Stacked){const kn=U[K],ki=kn+Pt;U[K]+=Pt,Di.height=this.yScale(kn)-this.yScale(ki),Di.x=0,Di.y=this.yScale(ki),Di.offset0=kn,Di.offset1=ki}else if(this.type===Oc.Normalized){let kn=U[K],ki=kn+Pt;U[K]+=Pt,ke>0?(kn=100*kn/ke,ki=100*ki/ke):(kn=0,ki=0),Di.height=this.yScale(kn)-this.yScale(ki),Di.x=0,Di.y=this.yScale(ki),Di.offset0=kn,Di.offset1=ki,Pt=(ki-kn).toFixed(2)+"%"}this.colors.scaleType===In.Ordinal?Di.color=this.colors.getColor(li):this.type===Oc.Standard?(Di.color=this.colors.getColor(Pt),Di.gradientStops=this.colors.getLinearGradientStops(Pt)):(Di.color=this.colors.getColor(Di.offset1),Di.gradientStops=this.colors.getLinearGradientStops(Di.offset1,Di.offset0));let sn=_i;return Di.ariaLabel=_i+" "+Pt.toLocaleString(),null!=this.seriesName&&(sn=`${this.seriesName} \u2022 ${_i}`,Di.data.series=this.seriesName,Di.ariaLabel=this.seriesName+" "+Di.ariaLabel),Di.tooltipText=this.tooltipDisabled?void 0:`\n ${function o3(u){return u.toLocaleString().replace(/[&'`"<>]/g,L=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[L]))}(sn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(Pt):Pt.toLocaleString()}\n `,Di}),this.updateDataLabels()}updateDataLabels(){if(this.type===Oc.Stacked){this.barsForDataLabels=[];const s={};s.series=this.seriesName;const M=this.series.map(K=>K.value).reduce((K,ke)=>ke>0?K+ke:K,0),U=this.series.map(K=>K.value).reduce((K,ke)=>ke<0?K+ke:K,0);s.total=M+U,s.x=0,s.y=0,s.height=this.yScale(s.total>0?M:U),s.width=this.xScale.bandwidth(),this.barsForDataLabels.push(s)}else this.barsForDataLabels=this.series.map(s=>{const M={};return M.series=this.seriesName??s.label,M.total=s.value,M.x=this.xScale(s.label),M.y=this.yScale(0),M.height=this.yScale(M.total)-this.yScale(0),M.width=this.xScale.bandwidth(),M})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:br.Top,this.tooltipType=this.tooltipDisabled?void 0:sd.tooltip}isActive(s){return!!this.activeEntries&&void 0!==this.activeEntries.find(U=>s.name===U.name&&s.value===U.value)}onClick(s){this.select.emit(s)}getLabel(s){return s.label?s.label:s.name}trackBy(s,M){return M.label}trackDataLabelBy(s,M){return s+"#"+M.series+"#"+M.total}}return u.\u0275fac=function(s){return new(s||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,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"},features:[e.OA$],attrs:Mn,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(s,M){1&s&&e.DNE(0,an,2,2,"g",0)(1,gr,2,2,"g",0)(2,da,2,2,"g",0),2&s&&(e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR),e.R7$(),e.Y8G("ngIf",M.showDataLabel))},dependencies:[s2,gm,t.bT,t.Sq,t2],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1}),(0,f.i0)(500,(0,f.iF)({opacity:0}))])])]},changeDetection:0}),u})(),_m=(()=>{class u extends iu{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Ic.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 e.bkB,this.deactivate=new e.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive: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=o2({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})`}getXScale(){this.xDomain=this.getXDomain();const s=this.xDomain.length/(this.dims.width/this.barPadding+1);return gl().range([0,this.dims.width]).paddingInner(s).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const s=Yc().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?s.nice():s}getXDomain(){return this.results.map(s=>s.label)}getYDomain(){const s=this.results.map(K=>K.value);let M=this.yScaleMin?Math.min(this.yScaleMin,...s):Math.min(0,...s);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(M=Math.min(M,...this.yAxisTicks));let U=this.yScaleMax?Math.max(this.yScaleMax,...s):Math.max(0,...s);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(U=Math.max(U,...this.yAxisTicks)),[M,U]}onClick(s){this.select.emit(s)}setColors(){let s;s=this.schemeType===In.Ordinal?this.xDomain:this.yDomain,this.colors=new pm(this.scheme,this.schemeType,s,this.customColors)}getLegendOptions(){const s={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return s.scaleType===In.Ordinal?(s.domain=this.xDomain,s.colors=this.colors,s.title=this.legendTitle):(s.domain=this.yDomain,s.colors=this.colors.scale),s}updateYAxisWidth({width:s}){this.yAxisWidth=s,this.update()}updateXAxisHeight({height:s}){this.xAxisHeight=s,this.update()}onDataLabelMaxHeightChanged(s){s.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,s.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,s.size.height),s.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(s,M=!1){s=this.results.find(K=>M?K.label===s.name:K.name===s.name),!(this.activeEntries.findIndex(K=>K.name===s.name&&K.value===s.value&&K.series===s.series)>-1)&&(this.activeEntries=[s,...this.activeEntries],this.activate.emit({value:s,entries:this.activeEntries}))}onDeactivate(s,M=!1){s=this.results.find(K=>M?K.label===s.name:K.name===s.name);const U=this.activeEntries.findIndex(K=>K.name===s.name&&K.value===s.value&&K.series===s.series);this.activeEntries.splice(U,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:s,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let L;return function(M){return(L||(L=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(s,M,U){if(1&s&&e.wni(U,U1,5),2&s){let K;e.mGM(K=e.lsd())&&(M.tooltipTemplate=K.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",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",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.Vt3],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","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","wrapTicks"]],template:function(s,M){1&s&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelClick",function(K){return M.onClick(K)})("legendLabelActivate",function(K){return M.onActivate(K,!0)})("legendLabelDeactivate",function(K){return M.onDeactivate(K,!0)}),e.qSk(),e.j41(1,"g",1),e.DNE(2,rr,1,12,"g",2)(3,Kr,1,10,"g",3),e.j41(4,"g",4),e.bIt("activate",function(K){return M.onActivate(K)})("deactivate",function(K){return M.onDeactivate(K)})("select",function(K){return M.onClick(K)})("dataLabelHeightChanged",function(K){return M.onDataLabelMaxHeightChanged(K)}),e.k0s()()()),2&s&&(e.Y8G("view",e.l_i(22,rs,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("xScale",M.xScale)("yScale",M.yScale)("colors",M.colors)("series",M.results)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("activeEntries",M.activeEntries)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero))},dependencies:[Y1,dm,od,du,t.bT],styles:[bl],encapsulation:2,changeDetection:0}),u})(),vm=(()=>{class u extends iu{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Ic.Right,this.tooltipDisabled=!1,this.scaleType=In.Ordinal,this.showGridLines=!0,this.activeEntries=[],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 e.bkB,this.deactivate=new e.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=Eo,this.trackBy=(s,M)=>M.name}ngOnInit(){(0,t.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=o2({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(s,M){s.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,s.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,s.size.height),M===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const s=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return gl().rangeRound([0,this.dims.width]).paddingInner(s).paddingOuter(s/2).domain(this.groupDomain)}getInnerScale(){const s=this.groupScale.bandwidth(),M=this.innerDomain.length/(s/this.barPadding+1);return gl().rangeRound([0,s]).paddingInner(M).domain(this.innerDomain)}getValueScale(){const s=Yc().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?s.nice():s}getGroupDomain(){const s=[];for(const M of this.results)s.includes(M.label)||s.push(M.label);return s}getInnerDomain(){const s=[];for(const M of this.results)for(const U of M.series)s.includes(U.label)||s.push(U.label);return s}getValueDomain(){const s=[];for(const K of this.results)for(const ke of K.series)s.includes(ke.value)||s.push(ke.value);return[Math.min(0,...s),this.yScaleMax?Math.max(this.yScaleMax,...s):Math.max(0,...s)]}groupTransform(s){return`translate(${this.groupScale(s.label)}, 0)`}onClick(s,M){M&&(s.series=M.name),this.select.emit(s)}setColors(){let s;s=this.schemeType===In.Ordinal?this.innerDomain:this.valueDomain,this.colors=new pm(this.scheme,this.schemeType,s,this.customColors)}getLegendOptions(){const s={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return s.scaleType===In.Ordinal?(s.domain=this.innerDomain,s.colors=this.colors,s.title=this.legendTitle):(s.domain=this.valueDomain,s.colors=this.colors.scale),s}updateYAxisWidth({width:s}){this.yAxisWidth=s,this.update()}updateXAxisHeight({height:s}){this.xAxisHeight=s,this.update()}onActivate(s,M,U=!1){const K=Object.assign({},s);M&&(K.series=M.name);const ke=this.results.map(Et=>Et.series).flat().filter(Et=>U?Et.label===K.name:Et.name===K.name&&Et.series===K.series);this.activeEntries=[...ke],this.activate.emit({value:K,entries:this.activeEntries})}onDeactivate(s,M,U=!1){const K=Object.assign({},s);M&&(K.series=M.name),this.activeEntries=this.activeEntries.filter(ke=>U?ke.label!==K.name:!(ke.name===K.name&&ke.series===K.series)),this.deactivate.emit({value:K,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let L;return function(M){return(L||(L=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(s,M,U){if(1&s&&e.wni(U,U1,5),2&s){let K;e.mGM(K=e.lsd())&&(M.tooltipTemplate=K.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"},features:[e.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(s,M){1&s&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelActivate",function(K){return M.onActivate(K,void 0,!0)})("legendLabelDeactivate",function(K){return M.onDeactivate(K,void 0,!0)})("legendLabelClick",function(K){return M.onClick(K)}),e.qSk(),e.j41(1,"g",1),e.nrm(2,"g",2),e.DNE(3,kr,1,11,"g",3)(4,Aa,1,10,"g",4)(5,Zs,2,2,"g",5),e.k0s(),e.DNE(6,G1,2,2,"g",5),e.k0s()),2&s&&(e.Y8G("view",e.l_i(15,rs,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("xScale",M.groupScale)("yScale",M.valueScale)("data",M.results)("dims",M.dims)("orient",M.barOrientation.Vertical),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR))},dependencies:[Y1,fm,dm,od,du,t.bT,t.Sq],styles:[bl],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1,transform:"*"}),(0,f.i0)(500,(0,f.iF)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}),u})(),_3=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})();_l();let d2=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),ym=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),y6=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),wm=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})();Math;let x3=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),C3=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec,x3,wm]]}),u})(),T6=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),L6=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),K1=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec,x3,_3]]}),u})(),Rm=(()=>{class u{}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[ec]]}),u})(),D6=(()=>{class u{constructor(){!function Im(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}}return u.\u0275fac=function(s){return new(s||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[ec,lu,_3,d2,ym,y6,Rm,wm,C3,T6,x3,L6,K1]}),u})()},8288:(Qe,te,g)=>{"use strict";g.d(te,{Um:()=>h,XK:()=>S});var e=g(467),t=g(4438),x=g(177),D=g(8314);function l(y,O){if(1&y&&t.nrm(0,"canvas",1),2&y){const I=t.XpG();t.HbH(I.styleClass),t.Y8G("qrCode",I.value)("qrCodeErrorCorrectionLevel",I.errorCorrectionLevel)("qrCodeCenterImageSrc",I.centerImageSrc)("qrCodeCenterImageWidth",I.centerImageSize)("qrCodeCenterImageHeight",I.centerImageSize)("qrCodeMargin",I.margin)("width",I.size)("height",I.size)("ngStyle",I.style)("darkColor",I.darkColor)("lightColor",I.lightColor)}}const w=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/;let f=(()=>{class y{static{this.DEFAULT_ERROR_CORRECTION_LEVEL="M"}static{this.DEFAULT_CENTER_IMAGE_SIZE=40}constructor(I){this.viewContainerRef=I,this.errorCorrectionLevel=y.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var I=this;return(0,e.A)(function*(){if(!I.value)return;I.version&&I.version>40?(console.warn("[qrCode] max version is 40, clamping"),I.version=40):I.version&&I.version<1?(console.warn("[qrCode] min version is 1, clamping"),I.version=1):void 0!==I.version&&isNaN(I.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),I.version=void 0);const V=I.viewContainerRef.element.nativeElement;if(!V)return;const j=V.getContext("2d");j&&j.clearRect(0,0,j.canvas.width,j.canvas.height);const Y=I.errorCorrectionLevel??y.DEFAULT_ERROR_CORRECTION_LEVEL,W=w.test(I.darkColor)?I.darkColor:void 0,Q=w.test(I.lightColor)?I.lightColor:void 0;(0,t.naY)()&&(!W&&I.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!Q&&I.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield D.toCanvas(V,I.value,{version:I.version,errorCorrectionLevel:Y,width:I.width,margin:I.margin,color:{dark:W,light:Q}});const J=I.centerImageSrc,ie=R(I.centerImageWidth,y.DEFAULT_CENTER_IMAGE_SIZE),ee=R(I.centerImageHeight,y.DEFAULT_CENTER_IMAGE_SIZE);if(J&&j){I.centerImage||(I.centerImage=new Image(ie,ee));const fe=I.centerImage;J!==I.centerImage.src&&(fe.src=J),ie!==I.centerImage.width&&(fe.width=ie),ee!==I.centerImage.height&&(fe.height=ee);const ne=()=>{j.drawImage(fe,V.width/2-ie/2,V.height/2-ee/2,ie,ee)};fe.onload=ne,fe.complete&&ne()}})()}static{this.\u0275fac=function(V){return new(V||y)(t.rXU(t.c1b))}}static{this.\u0275dir=t.FsC({type:y,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"]},features:[t.OA$]})}}return y})();function R(y,O){return void 0===y||""===y?O:"string"==typeof y?parseInt(y,10):y}let h=(()=>{class y{static{this.\u0275fac=function(V){return new(V||y)}}static{this.\u0275cmp=t.VBU({type:y,selectors:[["qr-code"]],inputs:{value:"value",size:"size",style:"style",styleClass:"styleClass",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","class","ngStyle","darkColor","lightColor"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","ngStyle","darkColor","lightColor"]],template:function(V,j){1&V&&t.DNE(0,l,1,13,"canvas",0),2&V&&t.vxM(j.value?0:-1)},dependencies:[x.B3,f],encapsulation:2})}}return y})(),S=(()=>{class y{static{this.\u0275fac=function(V){return new(V||y)}}static{this.\u0275mod=t.$C({type:y})}static{this.\u0275inj=t.G2t({imports:[x.MD]})}}return y})()},497:(Qe,te,g)=>{"use strict";g.d(te,{kU:()=>Tt,ZF:()=>Re,Ld:()=>Z,U$:()=>pt});var e=g(1413),t=g(3726),x=g(7786),D=g(3798),l=g(6977),w=g(3294),f=g(3703),R=g(4438),h=g(177);function S(Ke){return getComputedStyle(Ke)}function y(Ke,Fe){for(var Ge in Fe){var qe=Fe[Ge];"number"==typeof qe&&(qe+="px"),Ke.style[Ge]=qe}return Ke}function O(Ke){var Fe=document.createElement("div");return Fe.className=Ke,Fe}var I=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function V(Ke,Fe){if(!I)throw new Error("No element matching method supported");return I.call(Ke,Fe)}function j(Ke){Ke.remove?Ke.remove():Ke.parentNode&&Ke.parentNode.removeChild(Ke)}function Y(Ke,Fe){return Array.prototype.filter.call(Ke.children,function(Ge){return V(Ge,Fe)})}var W={main:"ps",rtl:"ps__rtl",element:{thumb:function(Ke){return"ps__thumb-"+Ke},rail:function(Ke){return"ps__rail-"+Ke},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function(Ke){return"ps--active-"+Ke},scrolling:function(Ke){return"ps--scrolling-"+Ke}}},Q={x:null,y:null};function J(Ke,Fe){var Ge=Ke.element.classList,qe=W.state.scrolling(Fe);Ge.contains(qe)?clearTimeout(Q[Fe]):Ge.add(qe)}function ie(Ke,Fe){Q[Fe]=setTimeout(function(){return Ke.isAlive&&Ke.element.classList.remove(W.state.scrolling(Fe))},Ke.settings.scrollingThreshold)}var fe=function(Fe){this.element=Fe,this.handlers={}},ne={isEmpty:{configurable:!0}};fe.prototype.bind=function(Fe,Ge){typeof this.handlers[Fe]>"u"&&(this.handlers[Fe]=[]),this.handlers[Fe].push(Ge),this.element.addEventListener(Fe,Ge,!1)},fe.prototype.unbind=function(Fe,Ge){var qe=this;this.handlers[Fe]=this.handlers[Fe].filter(function(at){return!(!Ge||at===Ge)||(qe.element.removeEventListener(Fe,at,!1),!1)})},fe.prototype.unbindAll=function(){for(var Fe in this.handlers)this.unbind(Fe)},ne.isEmpty.get=function(){var Ke=this;return Object.keys(this.handlers).every(function(Fe){return 0===Ke.handlers[Fe].length})},Object.defineProperties(fe.prototype,ne);var Me=function(){this.eventElements=[]};function Ce(Ke){if("function"==typeof window.CustomEvent)return new CustomEvent(Ke);var Fe=document.createEvent("CustomEvent");return Fe.initCustomEvent(Ke,!1,!1,void 0),Fe}function le(Ke,Fe,Ge,qe,at){var Lt;if(void 0===qe&&(qe=!0),void 0===at&&(at=!1),"top"===Fe)Lt=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==Fe)throw new Error("A proper axis should be provided");Lt=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function T(Ke,Fe,Ge,qe,at){var Lt=Ge[0],pi=Ge[1],$t=Ge[2],Kt=Ge[3],Ui=Ge[4],ti=Ge[5];void 0===qe&&(qe=!0),void 0===at&&(at=!1);var fi=Ke.element;Ke.reach[Kt]=null,fi[$t]<1&&(Ke.reach[Kt]="start"),fi[$t]>Ke[Lt]-Ke[pi]-1&&(Ke.reach[Kt]="end"),Fe&&(fi.dispatchEvent(Ce("ps-scroll-"+Kt)),Fe<0?fi.dispatchEvent(Ce("ps-scroll-"+Ui)):Fe>0&&fi.dispatchEvent(Ce("ps-scroll-"+ti)),qe&&function ee(Ke,Fe){J(Ke,Fe),ie(Ke,Fe)}(Ke,Kt)),Ke.reach[Kt]&&(Fe||at)&&fi.dispatchEvent(Ce("ps-"+Kt+"-reach-"+Ke.reach[Kt]))}(Ke,Ge,Lt,qe,at)}function n(Ke){return parseInt(Ke,10)||0}Me.prototype.eventElement=function(Fe){var Ge=this.eventElements.filter(function(qe){return qe.element===Fe})[0];return Ge||(Ge=new fe(Fe),this.eventElements.push(Ge)),Ge},Me.prototype.bind=function(Fe,Ge,qe){this.eventElement(Fe).bind(Ge,qe)},Me.prototype.unbind=function(Fe,Ge,qe){var at=this.eventElement(Fe);at.unbind(Ge,qe),at.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(at),1)},Me.prototype.unbindAll=function(){this.eventElements.forEach(function(Fe){return Fe.unbindAll()}),this.eventElements=[]},Me.prototype.once=function(Fe,Ge,qe){var at=this.eventElement(Fe),Lt=function(pi){at.unbind(Ge,Lt),qe(pi)};at.bind(Ge,Lt)};var d={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 C(Ke){var Fe=Ke.element,Ge=Math.floor(Fe.scrollTop),qe=Fe.getBoundingClientRect();Ke.containerWidth=Math.round(qe.width),Ke.containerHeight=Math.round(qe.height),Ke.contentWidth=Fe.scrollWidth,Ke.contentHeight=Fe.scrollHeight,Fe.contains(Ke.scrollbarXRail)||(Y(Fe,W.element.rail("x")).forEach(function(at){return j(at)}),Fe.appendChild(Ke.scrollbarXRail)),Fe.contains(Ke.scrollbarYRail)||(Y(Fe,W.element.rail("y")).forEach(function(at){return j(at)}),Fe.appendChild(Ke.scrollbarYRail)),!Ke.settings.suppressScrollX&&Ke.containerWidth+Ke.settings.scrollXMarginOffset=Ke.railXWidth-Ke.scrollbarXWidth&&(Ke.scrollbarXLeft=Ke.railXWidth-Ke.scrollbarXWidth),Ke.scrollbarYTop>=Ke.railYHeight-Ke.scrollbarYHeight&&(Ke.scrollbarYTop=Ke.railYHeight-Ke.scrollbarYHeight),function k(Ke,Fe){var Ge={width:Fe.railXWidth},qe=Math.floor(Ke.scrollTop);Ge.left=Fe.isRtl?Fe.negativeScrollAdjustment+Ke.scrollLeft+Fe.containerWidth-Fe.contentWidth:Ke.scrollLeft,Fe.isScrollbarXUsingBottom?Ge.bottom=Fe.scrollbarXBottom-qe:Ge.top=Fe.scrollbarXTop+qe,y(Fe.scrollbarXRail,Ge);var at={top:qe,height:Fe.railYHeight};Fe.isScrollbarYUsingRight?at.right=Fe.isRtl?Fe.contentWidth-(Fe.negativeScrollAdjustment+Ke.scrollLeft)-Fe.scrollbarYRight-Fe.scrollbarYOuterWidth-9:Fe.scrollbarYRight-Ke.scrollLeft:at.left=Fe.isRtl?Fe.negativeScrollAdjustment+Ke.scrollLeft+2*Fe.containerWidth-Fe.contentWidth-Fe.scrollbarYLeft-Fe.scrollbarYOuterWidth:Fe.scrollbarYLeft+Ke.scrollLeft,y(Fe.scrollbarYRail,at),y(Fe.scrollbarX,{left:Fe.scrollbarXLeft,width:Fe.scrollbarXWidth-Fe.railBorderXWidth}),y(Fe.scrollbarY,{top:Fe.scrollbarYTop,height:Fe.scrollbarYHeight-Fe.railBorderYWidth})}(Fe,Ke),Ke.scrollbarXActive?Fe.classList.add(W.state.active("x")):(Fe.classList.remove(W.state.active("x")),Ke.scrollbarXWidth=0,Ke.scrollbarXLeft=0,Fe.scrollLeft=!0===Ke.isRtl?Ke.contentWidth:0),Ke.scrollbarYActive?Fe.classList.add(W.state.active("y")):(Fe.classList.remove(W.state.active("y")),Ke.scrollbarYHeight=0,Ke.scrollbarYTop=0,Fe.scrollTop=0)}function A(Ke,Fe){return Ke.settings.minScrollbarLength&&(Fe=Math.max(Fe,Ke.settings.minScrollbarLength)),Ke.settings.maxScrollbarLength&&(Fe=Math.min(Fe,Ke.settings.maxScrollbarLength)),Fe}function b(Ke,Fe){var Ge=Fe[0],qe=Fe[1],at=Fe[2],Lt=Fe[3],pi=Fe[4],$t=Fe[5],Kt=Fe[6],Ui=Fe[7],ti=Fe[8],fi=Ke.element,xn=null,tn=null,Vi=null;function Qi(tt){tt.touches&&tt.touches[0]&&(tt[at]=tt.touches[0].pageY),fi[Kt]=xn+Vi*(tt[at]-tn),J(Ke,Ui),C(Ke),tt.stopPropagation(),tt.type.startsWith("touch")&&tt.changedTouches.length>1&&tt.preventDefault()}function Xt(){ie(Ke,Ui),Ke[ti].classList.remove(W.state.clicking),Ke.event.unbind(Ke.ownerDocument,"mousemove",Qi)}function St(tt,ot){xn=fi[Kt],ot&&tt.touches&&(tt[at]=tt.touches[0].pageY),tn=tt[at],Vi=(Ke[qe]-Ke[Ge])/(Ke[Lt]-Ke[$t]),ot?Ke.event.bind(Ke.ownerDocument,"touchmove",Qi):(Ke.event.bind(Ke.ownerDocument,"mousemove",Qi),Ke.event.once(Ke.ownerDocument,"mouseup",Xt),tt.preventDefault()),Ke[ti].classList.add(W.state.clicking),tt.stopPropagation()}Ke.event.bind(Ke[pi],"mousedown",function(tt){St(tt)}),Ke.event.bind(Ke[pi],"touchstart",function(tt){St(tt,!0)})}var ze={"click-rail":function _(Ke){Ke.event.bind(Ke.scrollbarY,"mousedown",function(Ge){return Ge.stopPropagation()}),Ke.event.bind(Ke.scrollbarYRail,"mousedown",function(Ge){var qe=Ge.pageY-window.pageYOffset-Ke.scrollbarYRail.getBoundingClientRect().top;Ke.element.scrollTop+=(qe>Ke.scrollbarYTop?1:-1)*Ke.containerHeight,C(Ke),Ge.stopPropagation()}),Ke.event.bind(Ke.scrollbarX,"mousedown",function(Ge){return Ge.stopPropagation()}),Ke.event.bind(Ke.scrollbarXRail,"mousedown",function(Ge){var qe=Ge.pageX-window.pageXOffset-Ke.scrollbarXRail.getBoundingClientRect().left;Ke.element.scrollLeft+=(qe>Ke.scrollbarXLeft?1:-1)*Ke.containerWidth,C(Ke),Ge.stopPropagation()})},"drag-thumb":function a(Ke){b(Ke,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),b(Ke,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function z(Ke){var Fe=Ke.element;Ke.event.bind(Ke.ownerDocument,"keydown",function(Lt){if(!(Lt.isDefaultPrevented&&Lt.isDefaultPrevented()||Lt.defaultPrevented)&&(V(Fe,":hover")||V(Ke.scrollbarX,":focus")||V(Ke.scrollbarY,":focus"))){var pi=document.activeElement?document.activeElement:Ke.ownerDocument.activeElement;if(pi){if("IFRAME"===pi.tagName)pi=pi.contentDocument.activeElement;else for(;pi.shadowRoot;)pi=pi.shadowRoot.activeElement;if(function c(Ke){return V(Ke,"input,[contenteditable]")||V(Ke,"select,[contenteditable]")||V(Ke,"textarea,[contenteditable]")||V(Ke,"button,[contenteditable]")}(pi))return}var $t=0,Kt=0;switch(Lt.which){case 37:$t=Lt.metaKey?-Ke.contentWidth:Lt.altKey?-Ke.containerWidth:-30;break;case 38:Kt=Lt.metaKey?Ke.contentHeight:Lt.altKey?Ke.containerHeight:30;break;case 39:$t=Lt.metaKey?Ke.contentWidth:Lt.altKey?Ke.containerWidth:30;break;case 40:Kt=Lt.metaKey?-Ke.contentHeight:Lt.altKey?-Ke.containerHeight:-30;break;case 32:Kt=Lt.shiftKey?Ke.containerHeight:-Ke.containerHeight;break;case 33:Kt=Ke.containerHeight;break;case 34:Kt=-Ke.containerHeight;break;case 36:Kt=Ke.contentHeight;break;case 35:Kt=-Ke.contentHeight;break;default:return}Ke.settings.suppressScrollX&&0!==$t||Ke.settings.suppressScrollY&&0!==Kt||(Fe.scrollTop-=Kt,Fe.scrollLeft+=$t,C(Ke),function at(Lt,pi){var $t=Math.floor(Fe.scrollTop);if(0===Lt){if(!Ke.scrollbarYActive)return!1;if(0===$t&&pi>0||$t>=Ke.contentHeight-Ke.containerHeight&&pi<0)return!Ke.settings.wheelPropagation}var Kt=Fe.scrollLeft;if(0===pi){if(!Ke.scrollbarXActive)return!1;if(0===Kt&&Lt<0||Kt>=Ke.contentWidth-Ke.containerWidth&&Lt>0)return!Ke.settings.wheelPropagation}return!0}($t,Kt)&&Lt.preventDefault())}})},wheel:function N(Ke){var Fe=Ke.element;function Lt(pi){var $t=function qe(pi){var $t=pi.deltaX,Kt=-1*pi.deltaY;return(typeof $t>"u"||typeof Kt>"u")&&($t=-1*pi.wheelDeltaX/6,Kt=pi.wheelDeltaY/6),pi.deltaMode&&1===pi.deltaMode&&($t*=10,Kt*=10),$t!=$t&&Kt!=Kt&&($t=0,Kt=pi.wheelDelta),pi.shiftKey?[-Kt,-$t]:[$t,Kt]}(pi),Kt=$t[0],Ui=$t[1];if(!function at(pi,$t,Kt){if(!d.isWebKit&&Fe.querySelector("select:focus"))return!0;if(!Fe.contains(pi))return!1;for(var Ui=pi;Ui&&Ui!==Fe;){if(Ui.classList.contains(W.element.consuming))return!0;var ti=S(Ui);if(Kt&&ti.overflowY.match(/(scroll|auto)/)){var fi=Ui.scrollHeight-Ui.clientHeight;if(fi>0&&(Ui.scrollTop>0&&Kt<0||Ui.scrollTop0))return!0}if($t&&ti.overflowX.match(/(scroll|auto)/)){var xn=Ui.scrollWidth-Ui.clientWidth;if(xn>0&&(Ui.scrollLeft>0&&$t<0||Ui.scrollLeft0))return!0}Ui=Ui.parentNode}return!1}(pi.target,Kt,Ui)){var ti=!1;Ke.settings.useBothWheelAxes?Ke.scrollbarYActive&&!Ke.scrollbarXActive?(Ui?Fe.scrollTop-=Ui*Ke.settings.wheelSpeed:Fe.scrollTop+=Kt*Ke.settings.wheelSpeed,ti=!0):Ke.scrollbarXActive&&!Ke.scrollbarYActive&&(Kt?Fe.scrollLeft+=Kt*Ke.settings.wheelSpeed:Fe.scrollLeft-=Ui*Ke.settings.wheelSpeed,ti=!0):(Fe.scrollTop-=Ui*Ke.settings.wheelSpeed,Fe.scrollLeft+=Kt*Ke.settings.wheelSpeed),C(Ke),ti=ti||function Ge(pi,$t){var Kt=Math.floor(Fe.scrollTop),Ui=0===Fe.scrollTop,ti=Kt+Fe.offsetHeight===Fe.scrollHeight,fi=0===Fe.scrollLeft,xn=Fe.scrollLeft+Fe.offsetWidth===Fe.scrollWidth;return!(Math.abs($t)>Math.abs(pi)?Ui||ti:fi||xn)||!Ke.settings.wheelPropagation}(Kt,Ui),ti&&!pi.ctrlKey&&(pi.stopPropagation(),pi.preventDefault())}}typeof window.onwheel<"u"?Ke.event.bind(Fe,"wheel",Lt):typeof window.onmousewheel<"u"&&Ke.event.bind(Fe,"mousewheel",Lt)},touch:function q(Ke){if(d.supportsTouch||d.supportsIePointer){var Fe=Ke.element,at={},Lt=0,pi={},$t=null;d.supportsTouch?(Ke.event.bind(Fe,"touchstart",ti),Ke.event.bind(Fe,"touchmove",xn),Ke.event.bind(Fe,"touchend",tn)):d.supportsIePointer&&(window.PointerEvent?(Ke.event.bind(Fe,"pointerdown",ti),Ke.event.bind(Fe,"pointermove",xn),Ke.event.bind(Fe,"pointerup",tn)):window.MSPointerEvent&&(Ke.event.bind(Fe,"MSPointerDown",ti),Ke.event.bind(Fe,"MSPointerMove",xn),Ke.event.bind(Fe,"MSPointerUp",tn)))}function qe(Vi,Qi){Fe.scrollTop-=Qi,Fe.scrollLeft-=Vi,C(Ke)}function Kt(Vi){return Vi.targetTouches?Vi.targetTouches[0]:Vi}function Ui(Vi){return!(Vi.pointerType&&"pen"===Vi.pointerType&&0===Vi.buttons||!(Vi.targetTouches&&1===Vi.targetTouches.length||Vi.pointerType&&"mouse"!==Vi.pointerType&&Vi.pointerType!==Vi.MSPOINTER_TYPE_MOUSE))}function ti(Vi){if(Ui(Vi)){var Qi=Kt(Vi);at.pageX=Qi.pageX,at.pageY=Qi.pageY,Lt=(new Date).getTime(),null!==$t&&clearInterval($t)}}function xn(Vi){if(Ui(Vi)){var Qi=Kt(Vi),Xt={pageX:Qi.pageX,pageY:Qi.pageY},St=Xt.pageX-at.pageX,tt=Xt.pageY-at.pageY;if(function fi(Vi,Qi,Xt){if(!Fe.contains(Vi))return!1;for(var St=Vi;St&&St!==Fe;){if(St.classList.contains(W.element.consuming))return!0;var tt=S(St);if(Xt&&tt.overflowY.match(/(scroll|auto)/)){var ot=St.scrollHeight-St.clientHeight;if(ot>0&&(St.scrollTop>0&&Xt<0||St.scrollTop0))return!0}if(Qi&&tt.overflowX.match(/(scroll|auto)/)){var Mt=St.scrollWidth-St.clientWidth;if(Mt>0&&(St.scrollLeft>0&&Qi<0||St.scrollLeft0))return!0}St=St.parentNode}return!1}(Vi.target,St,tt))return;qe(St,tt),at=Xt;var ot=(new Date).getTime(),Mt=ot-Lt;Mt>0&&(pi.x=St/Mt,pi.y=tt/Mt,Lt=ot),function Ge(Vi,Qi){var Xt=Math.floor(Fe.scrollTop),St=Fe.scrollLeft,tt=Math.abs(Vi),ot=Math.abs(Qi);if(ot>tt){if(Qi<0&&Xt===Ke.contentHeight-Ke.containerHeight||Qi>0&&0===Xt)return 0===window.scrollY&&Qi>0&&d.isChrome}else if(tt>ot&&(Vi<0&&St===Ke.contentWidth-Ke.containerWidth||Vi>0&&0===St))return!0;return!0}(St,tt)&&Vi.preventDefault()}}function tn(){Ke.settings.swipeEasing&&(clearInterval($t),$t=setInterval(function(){Ke.isInitialized?clearInterval($t):pi.x||pi.y?Math.abs(pi.x)<.01&&Math.abs(pi.y)<.01?clearInterval($t):Ke.element?(qe(30*pi.x,30*pi.y),pi.x*=.8,pi.y*=.8):clearInterval($t):clearInterval($t)},10))}}},Xe=function(Fe,Ge){var qe=this;if(void 0===Ge&&(Ge={}),"string"==typeof Fe&&(Fe=document.querySelector(Fe)),!Fe||!Fe.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var at in this.element=Fe,Fe.classList.add(W.main),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},Ge)this.settings[at]=Ge[at];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var ti,Ui,Lt=function(){return Fe.classList.add(W.state.focus)},pi=function(){return Fe.classList.remove(W.state.focus)};this.isRtl="rtl"===S(Fe).direction,!0===this.isRtl&&Fe.classList.add(W.rtl),this.isNegativeScroll=(Ui=Fe.scrollLeft,Fe.scrollLeft=-1,ti=Fe.scrollLeft<0,Fe.scrollLeft=Ui,ti),this.negativeScrollAdjustment=this.isNegativeScroll?Fe.scrollWidth-Fe.clientWidth:0,this.event=new Me,this.ownerDocument=Fe.ownerDocument||document,this.scrollbarXRail=O(W.element.rail("x")),Fe.appendChild(this.scrollbarXRail),this.scrollbarX=O(W.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",Lt),this.event.bind(this.scrollbarX,"blur",pi),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var $t=S(this.scrollbarXRail);this.scrollbarXBottom=parseInt($t.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=n($t.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=n($t.borderLeftWidth)+n($t.borderRightWidth),y(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=n($t.marginLeft)+n($t.marginRight),y(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=O(W.element.rail("y")),Fe.appendChild(this.scrollbarYRail),this.scrollbarY=O(W.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",Lt),this.event.bind(this.scrollbarY,"blur",pi),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var Kt=S(this.scrollbarYRail);this.scrollbarYRight=parseInt(Kt.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=n(Kt.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function m(Ke){var Fe=S(Ke);return n(Fe.width)+n(Fe.paddingLeft)+n(Fe.paddingRight)+n(Fe.borderLeftWidth)+n(Fe.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=n(Kt.borderTopWidth)+n(Kt.borderBottomWidth),y(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=n(Kt.marginTop)+n(Kt.marginBottom),y(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:Fe.scrollLeft<=0?"start":Fe.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:Fe.scrollTop<=0?"start":Fe.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(Ui){return ze[Ui](qe)}),this.lastScrollTop=Math.floor(Fe.scrollTop),this.lastScrollLeft=Fe.scrollLeft,this.event.bind(this.element,"scroll",function(Ui){return qe.onScroll(Ui)}),C(this)};Xe.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,y(this.scrollbarXRail,{display:"block"}),y(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=n(S(this.scrollbarXRail).marginLeft)+n(S(this.scrollbarXRail).marginRight),this.railYMarginHeight=n(S(this.scrollbarYRail).marginTop)+n(S(this.scrollbarYRail).marginBottom),y(this.scrollbarXRail,{display:"none"}),y(this.scrollbarYRail,{display:"none"}),C(this),le(this,"top",0,!1,!0),le(this,"left",0,!1,!0),y(this.scrollbarXRail,{display:""}),y(this.scrollbarYRail,{display:""}))},Xe.prototype.onScroll=function(Fe){this.isAlive&&(C(this),le(this,"top",this.element.scrollTop-this.lastScrollTop),le(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},Xe.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)},Xe.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(Fe){return!Fe.match(/^ps([-_].+|)$/)}).join(" ")};const We=Xe;var oe=function(){if(typeof Map<"u")return Map;function Ke(Fe,Ge){var qe=-1;return Fe.some(function(at,Lt){return at[0]===Ge&&(qe=Lt,!0)}),qe}return function(){function Fe(){this.__entries__=[]}return Object.defineProperty(Fe.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),Fe.prototype.get=function(Ge){var qe=Ke(this.__entries__,Ge),at=this.__entries__[qe];return at&&at[1]},Fe.prototype.set=function(Ge,qe){var at=Ke(this.__entries__,Ge);~at?this.__entries__[at][1]=qe:this.__entries__.push([Ge,qe])},Fe.prototype.delete=function(Ge){var qe=this.__entries__,at=Ke(qe,Ge);~at&&qe.splice(at,1)},Fe.prototype.has=function(Ge){return!!~Ke(this.__entries__,Ge)},Fe.prototype.clear=function(){this.__entries__.splice(0)},Fe.prototype.forEach=function(Ge,qe){void 0===qe&&(qe=null);for(var at=0,Lt=this.__entries__;at0},Ke.prototype.connect_=function(){!X||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),Ee?(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)},Ke.prototype.disconnect_=function(){!X||!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)},Ke.prototype.onTransitionEnd_=function(Fe){var Ge=Fe.propertyName,qe=void 0===Ge?"":Ge;me.some(function(Lt){return!!~qe.indexOf(Lt)})&&this.refresh()},Ke.getInstance=function(){return this.instance_||(this.instance_=new Ke),this.instance_},Ke.instance_=null,Ke}(),Be=function(Ke,Fe){for(var Ge=0,qe=Object.keys(Fe);Ge"u")&&Element instanceof Object){if(!(Fe instanceof Ct(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)||(Ge.set(Fe,new qt(Fe)),this.controller_.addObserver(this),this.controller_.refresh())}},Ke.prototype.unobserve=function(Fe){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!(Fe instanceof Ct(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)&&(Ge.delete(Fe),Ge.size||this.controller_.removeObserver(this))}},Ke.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},Ke.prototype.gatherActive=function(){var Fe=this;this.clearActive(),this.observations_.forEach(function(Ge){Ge.isActive()&&Fe.activeObservations_.push(Ge)})},Ke.prototype.broadcastActive=function(){if(this.hasActive()){var Fe=this.callbackCtx_,Ge=this.activeObservations_.map(function(qe){return new Nt(qe.target,qe.broadcastRect())});this.callback_.call(Fe,Ge,Fe),this.clearActive()}},Ke.prototype.clearActive=function(){this.activeObservations_.splice(0)},Ke.prototype.hasActive=function(){return this.activeObservations_.length>0},Ke}(),jt=typeof WeakMap<"u"?new WeakMap:new oe,Je=function(){return function Ke(Fe){if(!(this instanceof Ke))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var Ge=ue.getInstance(),qe=new yt(Fe,Ge,this);jt.set(this,qe)}}();["observe","unobserve","disconnect"].forEach(function(Ke){Je.prototype[Ke]=function(){var Fe;return(Fe=jt.get(this))[Ke].apply(Fe,arguments)}});const Ae=typeof se.ResizeObserver<"u"?se.ResizeObserver:Je,It=["*"];function Qt(Ke,Fe){if(1&Ke&&(R.j41(0,"div",3),R.nrm(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),R.k0s()),2&Ke){const Ge=R.XpG();R.AVh("ps-at-top",Ge.states.top)("ps-at-left",Ge.states.left)("ps-at-right",Ge.states.right)("ps-at-bottom",Ge.states.bottom),R.R7$(),R.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction),R.R7$(),R.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),R.R7$(),R.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),R.R7$(),R.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction)}}const Tt=new R.nKC("PERFECT_SCROLLBAR_CONFIG");class xt{constructor(Fe,Ge,qe,at){this.x=Fe,this.y=Ge,this.w=qe,this.h=at}}class Se{constructor(Fe,Ge){this.x=Fe,this.y=Ge}}const Te=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class ce{constructor(Fe={}){this.assign(Fe)}assign(Fe={}){for(const Ge in Fe)this[Ge]=Fe[Ge]}}let Z=(()=>{class Ke{constructor(Ge,qe,at,Lt,pi){this.zone=Ge,this.differs=qe,this.elementRef=at,this.platformId=Lt,this.defaults=pi,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new e.B,this.disabled=!1,this.psScrollY=new R.bkB,this.psScrollX=new R.bkB,this.psScrollUp=new R.bkB,this.psScrollDown=new R.bkB,this.psScrollLeft=new R.bkB,this.psScrollRight=new R.bkB,this.psYReachEnd=new R.bkB,this.psYReachStart=new R.bkB,this.psXReachEnd=new R.bkB,this.psXReachStart=new R.bkB}ngOnInit(){if(!this.disabled&&(0,h.UE)(this.platformId)){const Ge=new ce(this.defaults);Ge.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new We(this.elementRef.nativeElement,Ge)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new Ae(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{Te.forEach(qe=>{const at=qe.replace(/([A-Z])/g,Lt=>`-${Lt.toLowerCase()}`);(0,t.R)(this.elementRef.nativeElement,at).pipe((0,D.Z)(20),(0,l.Q)(this.ngDestroy)).subscribe(Lt=>{this[qe].emit(Lt)})})})}}ngOnDestroy(){(0,h.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,h.UE)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(Ge){Ge.disabled&&!Ge.disabled.isFirstChange()&&(0,h.UE)(this.platformId)&&Ge.disabled.currentValue!==Ge.disabled.previousValue&&(!0===Ge.disabled.currentValue?this.ngOnDestroy():!1===Ge.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(Ge="scroll"){return new xt(this.elementRef.nativeElement[Ge+"Left"],this.elementRef.nativeElement[Ge+"Top"],this.elementRef.nativeElement[Ge+"Width"],this.elementRef.nativeElement[Ge+"Height"])}position(Ge=!1){return!Ge&&this.instance?new Se(this.instance.reach.x||0,this.instance.reach.y||0):new Se(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(Ge="any"){const qe=this.elementRef.nativeElement;return"any"===Ge?qe.classList.contains("ps--active-x")||qe.classList.contains("ps--active-y"):"both"===Ge?qe.classList.contains("ps--active-x")&&qe.classList.contains("ps--active-y"):qe.classList.contains("ps--active-"+Ge)}scrollTo(Ge,qe,at){this.disabled||(null==qe&&null==at?this.animateScrolling("scrollTop",Ge,at):(null!=Ge&&this.animateScrolling("scrollLeft",Ge,at),null!=qe&&this.animateScrolling("scrollTop",qe,at)))}scrollToX(Ge,qe){this.animateScrolling("scrollLeft",Ge,qe)}scrollToY(Ge,qe){this.animateScrolling("scrollTop",Ge,qe)}scrollToTop(Ge,qe){this.animateScrolling("scrollTop",Ge||0,qe)}scrollToLeft(Ge,qe){this.animateScrolling("scrollLeft",Ge||0,qe)}scrollToRight(Ge,qe){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(Ge||0),qe)}scrollToBottom(Ge,qe){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(Ge||0),qe)}scrollToElement(Ge,qe,at){if("string"==typeof Ge&&(Ge=this.elementRef.nativeElement.querySelector(Ge)),Ge){const Lt=Ge.getBoundingClientRect(),pi=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",Lt.left-pi.left+this.elementRef.nativeElement.scrollLeft+(qe||0),at),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",Lt.top-pi.top+this.elementRef.nativeElement.scrollTop+(qe||0),at)}}animateScrolling(Ge,qe,at){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!at||typeof window>"u")this.elementRef.nativeElement[Ge]=qe;else if(qe!==this.elementRef.nativeElement[Ge]){let Lt=0,pi=0,$t=performance.now(),Kt=this.elementRef.nativeElement[Ge];const Ui=(Kt-qe)/2,ti=fi=>{pi+=Math.PI/(at/(fi-$t)),Lt=Math.round(qe+Ui+Ui*Math.cos(pi)),this.elementRef.nativeElement[Ge]===Kt&&(pi>=Math.PI?this.animateScrolling(Ge,qe,0):(this.elementRef.nativeElement[Ge]=Lt,Kt=this.elementRef.nativeElement[Ge],$t=fi,this.animation=window.requestAnimationFrame(ti)))};window.requestAnimationFrame(ti)}}}return Ke.\u0275fac=function(Ge){return new(Ge||Ke)(R.rXU(R.SKi),R.rXU(R.MKu),R.rXU(R.aKT),R.rXU(R.Agw),R.rXU(Tt,8))},Ke.\u0275dir=R.FsC({type:Ke,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"],features:[R.OA$]}),Ke})(),Re=(()=>{class Ke{constructor(Ge,qe,at){this.zone=Ge,this.cdRef=qe,this.platformId=at,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 e.B,this.stateUpdate=new e.B,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new R.bkB,this.psScrollX=new R.bkB,this.psScrollUp=new R.bkB,this.psScrollDown=new R.bkB,this.psScrollLeft=new R.bkB,this.psScrollRight=new R.bkB,this.psYReachEnd=new R.bkB,this.psYReachStart=new R.bkB,this.psXReachEnd=new R.bkB,this.psXReachStart=new R.bkB}ngOnInit(){(0,h.UE)(this.platformId)&&(this.stateUpdate.pipe((0,l.Q)(this.ngDestroy),(0,w.F)((Ge,qe)=>Ge===qe&&!this.stateTimeout)).subscribe(Ge=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===Ge||"y"===Ge?(this.interaction=!1,"x"===Ge?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===Ge&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===Ge||"right"===Ge?(this.states.left=!1,this.states.right=!1,this.states[Ge]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===Ge||"bottom"===Ge)&&(this.states.top=!1,this.states.bottom=!1,this.states[Ge]=!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 Ge=this.directiveRef.elementRef.nativeElement;(0,t.R)(Ge,"wheel").pipe((0,l.Q)(this.ngDestroy)).subscribe(qe=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(qe,qe.deltaX,qe.deltaY)}),(0,t.R)(Ge,"touchmove").pipe((0,l.Q)(this.ngDestroy)).subscribe(qe=>{if(!this.disabled&&this.autoPropagation){const at=qe.touches[0].clientX,Lt=qe.touches[0].clientY;this.checkPropagation(qe,at-this.scrollPositionX,Lt-this.scrollPositionY),this.scrollPositionX=at,this.scrollPositionY=Lt}}),(0,x.h)((0,t.R)(Ge,"ps-scroll-x").pipe((0,f.u)("x")),(0,t.R)(Ge,"ps-scroll-y").pipe((0,f.u)("y")),(0,t.R)(Ge,"ps-x-reach-end").pipe((0,f.u)("right")),(0,t.R)(Ge,"ps-y-reach-end").pipe((0,f.u)("bottom")),(0,t.R)(Ge,"ps-x-reach-start").pipe((0,f.u)("left")),(0,t.R)(Ge,"ps-y-reach-start").pipe((0,f.u)("top"))).pipe((0,l.Q)(this.ngDestroy)).subscribe(qe=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(qe)})}}),window.setTimeout(()=>{Te.forEach(Ge=>{this.directiveRef&&(this.directiveRef[Ge]=this[Ge])})},0))}ngOnDestroy(){(0,h.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,h.UE)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const Ge=this.directiveRef.elementRef.nativeElement;this.usePropagationX=Ge.classList.contains("ps--active-x"),this.usePropagationY=Ge.classList.contains("ps--active-y")}}checkPropagation(Ge,qe,at){this.interaction=!0;const Lt=qe<0?-1:1,pi=at<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==Lt)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==pi))&&(Ge.preventDefault(),Ge.stopPropagation()),qe&&(this.scrollDirectionX=Lt),at&&(this.scrollDirectionY=pi),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return Ke.\u0275fac=function(Ge){return new(Ge||Ke)(R.rXU(R.SKi),R.rXU(R.gRc),R.rXU(R.Agw))},Ke.\u0275cmp=R.VBU({type:Ke,selectors:[["perfect-scrollbar"]],viewQuery:function(Ge,qe){if(1&Ge&&R.GBs(Z,7),2&Ge){let at;R.mGM(at=R.lsd())&&(qe.directiveRef=at.first)}},hostVars:4,hostBindings:function(Ge,qe){2&Ge&&R.AVh("ps-show-limits",qe.autoPropagation)("ps-show-active",qe.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"],ngContentSelectors:It,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(Ge,qe){1&Ge&&(R.NAR(),R.j41(0,"div",0)(1,"div",1),R.SdG(2),R.k0s(),R.DNE(3,Qt,5,16,"div",2),R.k0s()),2&Ge&&(R.AVh("ps",qe.usePSClass),R.Y8G("perfectScrollbar",qe.config)("disabled",qe.disabled),R.R7$(3),R.Y8G("ngIf",qe.scrollIndicators))},dependencies:[Z,h.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}),Ke})(),pt=(()=>{class Ke{}return Ke.\u0275fac=function(Ge){return new(Ge||Ke)},Ke.\u0275mod=R.$C({type:Ke}),Ke.\u0275inj=R.G2t({imports:[[h.MD],h.MD]}),Ke})()},467:(Qe,te,g)=>{"use strict";function e(x,D,l,w,f,R,h){try{var S=x[R](h),y=S.value}catch(O){return void l(O)}S.done?D(y):Promise.resolve(y).then(w,f)}function t(x){return function(){var D=this,l=arguments;return new Promise(function(w,f){var R=x.apply(D,l);function h(y){e(R,w,f,h,S,"next",y)}function S(y){e(R,w,f,h,S,"throw",y)}h(void 0)})}}g.d(te,{A:()=>t})},1635:(Qe,te,g)=>{"use strict";function l(z,N,q,pe){var We,ze=arguments.length,Xe=ze<3?N:null===pe?pe=Object.getOwnPropertyDescriptor(N,q):pe;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Xe=Reflect.decorate(z,N,q,pe);else for(var oe=z.length-1;oe>=0;oe--)(We=z[oe])&&(Xe=(ze<3?We(Xe):ze>3?We(N,q,Xe):We(N,q))||Xe);return ze>3&&Xe&&Object.defineProperty(N,q,Xe),Xe}function O(z,N,q,pe){return new(q||(q=Promise))(function(Xe,We){function oe(ae){try{se(pe.next(ae))}catch(he){We(he)}}function X(ae){try{se(pe.throw(ae))}catch(he){We(he)}}function se(ae){ae.done?Xe(ae.value):function ze(Xe){return Xe instanceof q?Xe:new q(function(We){We(Xe)})}(ae.value).then(oe,X)}se((pe=pe.apply(z,N||[])).next())})}function ee(z){return this instanceof ee?(this.v=z,this):new ee(z)}function fe(z,N,q){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var ze,pe=q.apply(z,N||[]),Xe=[];return ze=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),oe("next"),oe("throw"),oe("return",function We(st){return function(me){return Promise.resolve(me).then(st,he)}}),ze[Symbol.asyncIterator]=function(){return this},ze;function oe(st,me){pe[st]&&(ze[st]=function(Ee){return new Promise(function(ue,Be){Xe.push([st,Ee,ue,Be])>1||X(st,Ee)})},me&&(ze[st]=me(ze[st])))}function X(st,me){try{!function se(st){st.value instanceof ee?Promise.resolve(st.value.v).then(ae,he):Ie(Xe[0][2],st)}(pe[st](me))}catch(Ee){Ie(Xe[0][3],Ee)}}function ae(st){X("next",st)}function he(st){X("throw",st)}function Ie(st,me){st(me),Xe.shift(),Xe.length&&X(Xe[0][0],Xe[0][1])}}function Me(z){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var q,N=z[Symbol.asyncIterator];return N?N.call(z):(z=function Y(z){var N="function"==typeof Symbol&&Symbol.iterator,q=N&&z[N],pe=0;if(q)return q.call(z);if(z&&"number"==typeof z.length)return{next:function(){return z&&pe>=z.length&&(z=void 0),{value:z&&z[pe++],done:!z}}};throw new TypeError(N?"Object is not iterable.":"Symbol.iterator is not defined.")}(z),q={},pe("next"),pe("throw"),pe("return"),q[Symbol.asyncIterator]=function(){return this},q);function pe(Xe){q[Xe]=z[Xe]&&function(We){return new Promise(function(oe,X){!function ze(Xe,We,oe,X){Promise.resolve(X).then(function(se){Xe({value:se,done:oe})},We)}(oe,X,(We=z[Xe](We)).done,We.value)})}}}g.d(te,{AQ:()=>fe,Cg:()=>l,N3:()=>ee,sH:()=>O,xN:()=>Me}),"function"==typeof SuppressedError&&SuppressedError},3219:Qe=>{"use strict";Qe.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"}}')},2951:Qe=>{"use strict";Qe.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"}}')},4589:Qe=>{"use strict";Qe.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"}')},3241:Qe=>{"use strict";Qe.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"}}')},1636:Qe=>{"use strict";Qe.exports={rE:"6.6.0"}},5579:Qe=>{"use strict";Qe.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"}')}},Qe=>{Qe(Qe.s=3471)}]); \ No newline at end of file diff --git a/frontend/main.86bc6d8e9eec4faf.js b/frontend/main.86bc6d8e9eec4faf.js deleted file mode 100644 index 717f82da..00000000 --- a/frontend/main.86bc6d8e9eec4faf.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[792],{8430:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>ne,$J:()=>r,$Q:()=>D,Aw:()=>I,C2:()=>y,CK:()=>ie,Db:()=>Xt,Do:()=>N,Dq:()=>qe,ED:()=>ye,EM:()=>ce,Eb:()=>mt,Ew:()=>fe,Fd:()=>ae,GZ:()=>ke,Gy:()=>z,Gz:()=>_t,Hm:()=>de,Jx:()=>ze,Ml:()=>at,N4:()=>Me,NS:()=>x,NU:()=>ue,Qj:()=>W,Qv:()=>pt,Sn:()=>f,T4:()=>Te,Uj:()=>ge,VK:()=>Ee,We:()=>Q,XT:()=>F,Yi:()=>_,Zi:()=>ee,a5:()=>Ke,aB:()=>se,cR:()=>C,dv:()=>n,ed:()=>J,fy:()=>c,g6:()=>me,gf:()=>S,ij:()=>L,jQ:()=>Ze,kQ:()=>pe,kX:()=>T,kv:()=>V,lg:()=>l,no:()=>w,qw:()=>_e,sq:()=>$,uK:()=>v,vL:()=>m,w0:()=>h,x1:()=>d,y0:()=>be,zU:()=>k});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.TC.UPDATE_API_CALL_STATUS_CLN,(0,e.xk)()),S=(0,e.VP)(t.TC.RESET_CLN_STORE),l=(0,e.VP)(t.TC.FETCH_PAGE_SETTINGS_CLN),x=(0,e.VP)(t.TC.SET_PAGE_SETTINGS_CLN,(0,e.xk)()),f=(0,e.VP)(t.TC.SAVE_PAGE_SETTINGS_CLN,(0,e.xk)()),I=(0,e.VP)(t.TC.FETCH_INFO_CLN,(0,e.xk)()),d=(0,e.VP)(t.TC.SET_INFO_CLN,(0,e.xk)()),T=(0,e.VP)(t.TC.FETCH_FEE_RATES_CLN,(0,e.xk)()),y=(0,e.VP)(t.TC.SET_FEE_RATES_CLN,(0,e.xk)()),F=(0,e.VP)(t.TC.GET_NEW_ADDRESS_CLN,(0,e.xk)()),z=((0,e.VP)(t.TC.SET_NEW_ADDRESS_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_PEERS_CLN)),W=(0,e.VP)(t.TC.SET_PEERS_CLN,(0,e.xk)()),$=(0,e.VP)(t.TC.SAVE_NEW_PEER_CLN,(0,e.xk)()),Q=((0,e.VP)(t.TC.NEWLY_ADDED_PEER_CLN,(0,e.xk)()),(0,e.VP)(t.TC.ADD_PEER_CLN,(0,e.xk)())),J=(0,e.VP)(t.TC.DETACH_PEER_CLN,(0,e.xk)()),ee=(0,e.VP)(t.TC.REMOVE_PEER_CLN,(0,e.xk)()),ie=(0,e.VP)(t.TC.FETCH_PAYMENTS_CLN),ge=(0,e.VP)(t.TC.SET_PAYMENTS_CLN,(0,e.xk)()),ae=(0,e.VP)(t.TC.SEND_PAYMENT_CLN,(0,e.xk)()),Me=(0,e.VP)(t.TC.SEND_PAYMENT_STATUS_CLN,(0,e.xk)()),Te=(0,e.VP)(t.TC.GET_QUERY_ROUTES_CLN,(0,e.xk)()),de=(0,e.VP)(t.TC.SET_QUERY_ROUTES_CLN,(0,e.xk)()),D=(0,e.VP)(t.TC.FETCH_CHANNELS_CLN),n=(0,e.VP)(t.TC.SET_CHANNELS_CLN,(0,e.xk)()),c=(0,e.VP)(t.TC.UPDATE_CHANNEL_CLN,(0,e.xk)()),m=(0,e.VP)(t.TC.SAVE_NEW_CHANNEL_CLN,(0,e.xk)()),h=(0,e.VP)(t.TC.CLOSE_CHANNEL_CLN,(0,e.xk)()),C=(0,e.VP)(t.TC.REMOVE_CHANNEL_CLN,(0,e.xk)()),k=(0,e.VP)(t.TC.PEER_LOOKUP_CLN,(0,e.xk)()),L=(0,e.VP)(t.TC.CHANNEL_LOOKUP_CLN,(0,e.xk)()),_=(0,e.VP)(t.TC.INVOICE_LOOKUP_CLN,(0,e.xk)()),r=(0,e.VP)(t.TC.SET_LOOKUP_CLN,(0,e.xk)()),v=(0,e.VP)(t.TC.GET_FORWARDING_HISTORY_CLN,(0,e.xk)()),V=(0,e.VP)(t.TC.SET_FORWARDING_HISTORY_CLN,(0,e.xk)()),N=(0,e.VP)(t.TC.FETCH_INVOICES_CLN),ne=(0,e.VP)(t.TC.SET_INVOICES_CLN,(0,e.xk)()),Ee=(0,e.VP)(t.TC.SAVE_NEW_INVOICE_CLN,(0,e.xk)()),ze=(0,e.VP)(t.TC.ADD_INVOICE_CLN,(0,e.xk)()),qe=(0,e.VP)(t.TC.UPDATE_INVOICE_CLN,(0,e.xk)()),Ke=(0,e.VP)(t.TC.DELETE_EXPIRED_INVOICE_CLN,(0,e.xk)()),se=(0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_CLN,(0,e.xk)()),me=((0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_RES_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_UTXO_BALANCES_CLN)),ce=(0,e.VP)(t.TC.SET_UTXO_BALANCES_CLN,(0,e.xk)()),fe=(0,e.VP)(t.TC.FETCH_OFFER_INVOICE_CLN,(0,e.xk)()),ke=(0,e.VP)(t.TC.SET_OFFER_INVOICE_CLN,(0,e.xk)()),mt=(0,e.VP)(t.TC.FETCH_OFFERS_CLN),_e=(0,e.VP)(t.TC.SET_OFFERS_CLN,(0,e.xk)()),be=(0,e.VP)(t.TC.SAVE_NEW_OFFER_CLN,(0,e.xk)()),pe=(0,e.VP)(t.TC.ADD_OFFER_CLN,(0,e.xk)()),Ze=(0,e.VP)(t.TC.DISABLE_OFFER_CLN,(0,e.xk)()),_t=(0,e.VP)(t.TC.UPDATE_OFFER_CLN,(0,e.xk)()),at=(0,e.VP)(t.TC.FETCH_OFFER_BOOKMARKS_CLN),pt=(0,e.VP)(t.TC.SET_OFFER_BOOKMARKS_CLN,(0,e.xk)()),Xt=(0,e.VP)(t.TC.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,e.xk)()),ye=(0,e.VP)(t.TC.DELETE_OFFER_BOOKMARK_CLN,(0,e.xk)()),ue=(0,e.VP)(t.TC.REMOVE_OFFER_BOOKMARK_CLN,(0,e.xk)())},283:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>Me});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(2462),d=g(8321),T=g(4416),y=g(1771),F=g(8430),R=g(9584),z=g(2142),W=g(4438),$=g(1626),j=g(9640),Q=g(3202),J=g(2571),ee=g(8570),ie=g(1188),ge=g(7879),ae=g(177);let Me=(()=>{class Te{constructor(D,n,c,m,h,C,k,L,_){this.actions=D,this.httpClient=n,this.store=c,this.sessionService=m,this.commonService=h,this.logger=C,this.router=k,this.wsService=L,this.location=_,this.CHILD_API_URL=T.H$+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_INFO_CLN),(0,S.Z)(r=>(this.flgInitialized=!1,this.store.dispatch((0,y.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.INITIATED}})),this.store.dispatch((0,y.mt)({payload:T.MZ.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+T.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(T.aU.SET_SELECTED_NODE))),(0,x.T)(v=>(this.logger.info(v),this.CLN_VERISON=v.version||"",v.chains&&v.chains.length&&v.chains[0]&&"object"==typeof v.chains[0]&&v.chains[0].hasOwnProperty("chain")&&v?.chains[0].chain&&v?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&v?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.GET_NODE_INFO})),this.store.dispatch((0,y.Jh)()),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:T.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:T.aU.LOGOUT,payload:"Sorry Not Sorry, RTL is Bitcoin Only!"}):(this.initializeRemainingData(v,r.payload.loadPage),this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.GET_NODE_INFO})),{type:T.TC.SET_INFO_CLN,payload:v||{}}))),(0,f.W)(v=>{const V=this.commonService.extractErrorCode(v),N="ETIMEDOUT"===V?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(v);return this.router.navigate(["/login"],{state:{logoutReason:JSON.stringify(N)}}),this.handleErrorWithoutAlert("FetchInfo",T.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:V,error:N}),(0,w.of)({type:T.aU.VOID})})))))),this.fetchFeeRatesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_FEE_RATES_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchFeeRates"+r.payload,status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/feeRates",{style:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchFeeRates"+r.payload,status:T.wn.COMPLETED}})),{type:T.TC.SET_FEE_RATES_CLN,payload:v||{}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchFeeRates"+r.payload,T.MZ.NO_SPINNER,"Fetching Fee Rates Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.getNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_NEW_ADDRESS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+T.rl.ON_CHAIN_API+"/newaddr",{addresstype:r.payload.addressCode}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.GENERATE_NEW_ADDRESS})),{type:T.TC.SET_NEW_ADDRESS_CLN,payload:v&&v[r.payload.addressCode]?v[r.payload.addressCode]:{}})),(0,f.W)(v=>(this.handleErrorWithAlert("GenerateNewAddress",T.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+T.rl.ON_CHAIN_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.setNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_NEW_ADDRESS_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.peersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PEERS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPeers",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.PEERS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPeers",status:T.wn.COMPLETED}})),{type:T.TC.SET_PEERS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPeers",T.MZ.NO_SPINNER,"Fetching Peers Failed.",r),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_PEER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.CONNECT_PEER})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewPeer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.PEERS_API,{id:r.payload.id}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewPeer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.CONNECT_PEER})),this.store.dispatch((0,F.Qj)({payload:v||[]})),{type:T.TC.NEWLY_ADDED_PEER_CLN,payload:{peer:v.find(V=>0===r.payload.id.indexOf(V.id?V.id:""))}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewPeer",T.MZ.CONNECT_PEER,"Peer Connection Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.detachPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DETACH_PEER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+T.rl.PEERS_API+"/disconnect",{id:r.payload.id,force:r.payload.force}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.DISCONNECT_PEER})),this.store.dispatch((0,y.UI)({payload:"Peer Disconnected Successfully!"})),{type:T.TC.REMOVE_PEER_CLN,payload:{id:r.payload.id}})),(0,f.W)(v=>(this.handleErrorWithAlert("PeerDisconnect",T.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+T.rl.PEERS_API+"/"+r.payload.id,v),(0,w.of)({type:T.aU.VOID})))))))),this.channelsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_CHANNELS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchChannels",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.CHANNELS_API+"/listPeerChannels"))),(0,x.T)(r=>{this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchChannels",status:T.wn.COMPLETED}}));const v={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return r.forEach(V=>{"CHANNELD_NORMAL"===V.state?V.peer_connected?v.activeChannels.push(V):v.inactiveChannels.push(V):v.pendingChannels.push(V)}),{type:T.TC.SET_CHANNELS_CLN,payload:v}}),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchChannels",T.MZ.NO_SPINNER,"Fetching Channels Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.openNewChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_CHANNEL_CLN),(0,S.Z)(r=>{this.store.dispatch((0,y.mt)({payload:T.MZ.OPEN_CHANNEL})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewChannel",status:T.wn.INITIATED}}));const v={id:r.payload.peerId,amount:r.payload.amount,feerate:r.payload.feeRate,announce:r.payload.announce};return r.payload.minconf&&(v.minconf=r.payload.minconf),r.payload.utxos&&(v.utxos=r.payload.utxos),r.payload.requestAmount&&(v.request_amt=r.payload.requestAmount),r.payload.compactLease&&(v.compact_lease=r.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API,v).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,F.no)({payload:{action:"SaveNewChannel",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.OPEN_CHANNEL})),this.store.dispatch((0,y.UI)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,F.g6)()),{type:T.TC.FETCH_CHANNELS_CLN})),(0,f.W)(V=>(this.handleErrorWithoutAlert("SaveNewChannel",T.MZ.OPEN_CHANNEL,"Opening Channel Failed.",V),(0,w.of)({type:T.aU.VOID}))))}))),this.updateChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.UPDATE_CHANNEL_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/setChannelFee",r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,y.UI)("all"===r.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:T.TC.FETCH_CHANNELS_CLN})),(0,f.W)(v=>(this.handleErrorWithAlert("UpdateChannel",T.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+T.rl.CHANNELS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.closeChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.CLOSE_CHANNEL_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/close",{id:r.payload.channelId,unilateraltimeout:r.payload.force?1:null}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,y.UI)({payload:"Channel Closed Successfully!"})),{type:T.TC.REMOVE_CHANNEL_CLN,payload:r.payload})),(0,f.W)(v=>(this.handleErrorWithAlert("CloseChannel",r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+T.rl.CHANNELS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.paymentsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PAYMENTS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPayments",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.PAYMENTS_API))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPayments",status:T.wn.COMPLETED}})),{type:T.TC.SET_PAYMENTS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPayments",T.MZ.NO_SPINNER,"Fetching Payments Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.fetchOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFER_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.FETCH_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"FetchOfferInvoice",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/fetchOfferInvoice",r.payload).pipe((0,x.T)(v=>{this.logger.info(v),setTimeout(()=>{this.store.dispatch((0,F.no)({payload:{action:"FetchOfferInvoice",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.FETCH_INVOICE})),this.store.dispatch((0,F.GZ)({payload:v||{}}))},500)}),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOfferInvoice",T.MZ.FETCH_INVOICE,"Offer Invoice Fetch Failed",v),(0,w.of)({type:T.aU.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_OFFER_INVOICE_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.sendPaymentCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SEND_PAYMENT_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.no)({payload:{action:"SendPayment",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.PAYMENTS_API,r.payload).pipe((0,x.T)(v=>{this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SendPayment",status:T.wn.COMPLETED}}));let V="Payment Sent Successfully!";v.saveToDBError&&(V="Payment Sent Successfully but Offer Saving to Database Failed."),v.saveToDBResponse&&"NA"!==v.saveToDBResponse&&(this.store.dispatch((0,F.Db)({payload:v.saveToDBResponse})),V="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,F.CK)()),this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),this.store.dispatch((0,y.UI)({payload:V})),this.store.dispatch((0,F.N4)({payload:v.paymentResponse}))},1e3)}),(0,f.W)(v=>(this.logger.error("Error: "+JSON.stringify(v)),r.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed.",v):this.handleErrorWithAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+T.rl.PAYMENTS_API,v),(0,w.of)({type:T.aU.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_QUERY_ROUTES_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"GetQueryRoutes",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/getRoute",{id:r.payload.destPubkey,amount_msat:r.payload.amount,riskfactor:0}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"GetQueryRoutes",status:T.wn.COMPLETED}})),{type:T.TC.SET_QUERY_ROUTES_CLN,payload:v})),(0,f.W)(v=>(this.store.dispatch((0,F.Hm)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",T.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/getRoute",v),(0,w.of)({type:T.aU.VOID})))))))),this.setQueryRoutesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_QUERY_ROUTES_CLN),(0,x.T)(r=>r.payload)),{dispatch:!1}),this.peerLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.PEER_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEARCHING_NODE})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/listNodes",{id:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEARCHING_NODE})),{type:T.TC.SET_LOOKUP_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithAlert("Lookup",T.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/listNodes/"+r.payload,v),(0,w.of)({type:T.aU.VOID})))))))),this.channelLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.CHANNEL_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/listChannels",{short_channel_id:r.payload.shortChannelID}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),{type:T.TC.SET_LOOKUP_CLN,payload:v})),(0,f.W)(v=>(r.payload.showError?this.handleErrorWithAlert("Lookup",r.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/listChannels/"+r.payload.shortChannelID,v):this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.$J)({payload:[]})),(0,w.of)({type:T.aU.VOID})))))))),this.invoiceLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.INVOICE_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/lookup",{label:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEARCHING_INVOICE})),v.invoices&&v.invoices.length&&v.invoices.length>0&&this.store.dispatch((0,F.Dq)({payload:v.invoices[0]})),{type:T.TC.SET_LOOKUP_CLN,payload:v.invoices&&v.invoices.length&&v.invoices.length>0?v.invoices[0]:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("Lookup",T.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",v),this.store.dispatch((0,y.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:T.aU.VOID})))))))),this.setLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_LOOKUP_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_FORWARDING_HISTORY_CLN),(0,S.Z)(r=>{const v=r.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,F.no)({payload:{action:"FetchForwardingHistory"+v,status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/listForwards",r.payload).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,F.no)({payload:{action:"FetchForwardingHistory"+v,status:T.wn.COMPLETED}})),r.payload.status===T.xk.FAILED?this.store.dispatch((0,F.kv)({payload:{status:T.xk.FAILED,totalForwards:V.length,listForwards:V}})):r.payload.status===T.xk.LOCAL_FAILED?this.store.dispatch((0,F.kv)({payload:{status:T.xk.LOCAL_FAILED,totalForwards:V.length,listForwards:V}})):r.payload.status===T.xk.SETTLED&&this.store.dispatch((0,F.kv)({payload:{status:T.xk.SETTLED,totalForwards:V.length,listForwards:V}})),{type:T.aU.VOID})),(0,f.W)(V=>(this.handleErrorWithAlert("FetchForwardingHistory"+v,T.MZ.NO_SPINNER,"Get "+r.payload.status+" Forwarding History Failed",this.CHILD_API_URL+T.rl.CHANNELS_API+"/listForwards",V),(0,w.of)({type:T.aU.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DELETE_EXPIRED_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/delete",{maxexpiry:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.DELETE_INVOICE})),this.store.dispatch((0,y.UI)({payload:"Invoices Deleted Successfully!"})),{type:T.TC.FETCH_INVOICES_CLN})),(0,f.W)(v=>(this.handleErrorWithAlert("DeleteInvoices",T.MZ.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+T.rl.INVOICES_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.ADD_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewInvoice",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewInvoice",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.ADD_INVOICE})),v.amount_msat=r.payload.amount_msat,v.label=r.payload.label,v.expires_at=Math.round((new Date).getTime()/1e3+r.payload.expiry),v.description=r.payload.description,v.status="unpaid",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{invoice:v,newlyAdded:!0,component:d.y}}}))},200),{type:T.TC.ADD_INVOICE_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewInvoice",T.MZ.ADD_INVOICE,"Add Invoice Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewOfferCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_OFFER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.CREATE_OFFER})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewOffer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewOffer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{offer:v,newlyAdded:!0,component:z.f}}}))},100),{type:T.TC.ADD_OFFER_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewOffer",T.MZ.CREATE_OFFER,"Create Offer Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.invoicesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_INVOICES_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchInvoices",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/lookup",null))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchInvoices",status:T.wn.COMPLETED}})),{type:T.TC.SET_INVOICES_CLN,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchInvoices",T.MZ.NO_SPINNER,"Fetching Invoices Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.offersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFERS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchOffers",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.OFFERS_API).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchOffers",status:T.wn.COMPLETED}})),{type:T.TC.SET_OFFERS_CLN,payload:v.offers?v.offers:[]})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOffers",T.MZ.NO_SPINNER,"Fetching Offers Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.offersDisableCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DISABLE_OFFER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DISABLE_OFFER})),this.store.dispatch((0,F.no)({payload:{action:"DisableOffer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/disableOffer",{offer_id:r.payload.offer_id}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"DisableOffer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.DISABLE_OFFER})),this.store.dispatch((0,y.UI)({payload:"Offer Disabled Successfully!"})),{type:T.TC.UPDATE_OFFER_CLN,payload:{offer:v}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("DisableOffer",T.MZ.DISABLE_OFFER,"Disabling Offer Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.offerBookmarksFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFER_BOOKMARKS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchOfferBookmarks",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmarks").pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchOfferBookmarks",status:T.wn.COMPLETED}})),{type:T.TC.SET_OFFER_BOOKMARKS_CLN,payload:v||[]})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",T.MZ.NO_SPINNER,"Fetching Offer Bookmarks Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.peidOffersDeleteCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DELETE_OFFER_BOOKMARK_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,F.no)({payload:{action:"DeleteOfferBookmark",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmark/delete",{offer_str:r.payload.bolt12}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"DeleteOfferBookmark",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,y.UI)({payload:"Offer Bookmark Deleted Successfully!"})),{type:T.TC.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:r.payload.bolt12}})),(0,f.W)(v=>(this.handleErrorWithAlert("DeleteOfferBookmark",T.MZ.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmark/"+r.payload.bolt12,v),(0,w.of)({type:T.aU.VOID})))))))),this.SetChannelTransactionCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_CHANNEL_TRANSACTION_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEND_FUNDS})),this.store.dispatch((0,F.no)({payload:{action:"SetChannelTransaction",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.ON_CHAIN_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SetChannelTransaction",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEND_FUNDS})),this.store.dispatch((0,F.g6)()),{type:T.TC.SET_CHANNEL_TRANSACTION_RES_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SetChannelTransaction",T.MZ.SEND_FUNDS,"Sending Fund Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.utxoBalancesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_UTXO_BALANCES_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchUTXOBalances",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.ON_CHAIN_API+"/utxos"))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchUTXOBalances",status:T.wn.COMPLETED}})),{type:T.TC.SET_UTXO_BALANCES_CLN,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchUTXOBalances",T.MZ.NO_SPINNER,"Fetching UTXO and Balances Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PAGE_SETTINGS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPageSettings",status:T.wn.INITIATED}})),this.httpClient.get(T.rl.PAGE_SETTINGS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPageSettings",status:T.wn.COMPLETED}})),{type:T.TC.SET_PAGE_SETTINGS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPageSettings",T.MZ.NO_SPINNER,"Fetching Page Settings Failed.",r),(0,w.of)({type:T.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_PAGE_SETTINGS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.no)({payload:{action:"SavePageSettings",status:T.wn.INITIATED}})),this.httpClient.post(T.rl.PAGE_SETTINGS_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SavePageSettings",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,y.UI)({payload:"Page Layout Updated Successfully!"})),{type:T.TC.SET_PAGE_SETTINGS_CLN,payload:v||[]})),(0,f.W)(v=>(this.handleErrorWithAlert("SavePageSettings",T.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",T.rl.PAGE_SETTINGS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.store.select(R.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(r=>{r.FetchInfo.status!==T.wn.COMPLETED&&r.FetchInfo.status!==T.wn.ERROR||r.FetchChannels.status!==T.wn.COMPLETED&&r.FetchChannels.status!==T.wn.ERROR||r.FetchUTXOBalances.status!==T.wn.COMPLETED&&r.FetchUTXOBalances.status!==T.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,y.y0)({payload:T.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(r=>{this.logger.info("Received new message from the service: "+JSON.stringify(r)),r&&r.data&&r.data[T.Jr.INVOICE_PAYMENT]&&r.data[T.Jr.INVOICE_PAYMENT].label&&this.store.dispatch((0,F.Dq)({payload:r.data[T.Jr.INVOICE_PAYMENT]}))})}initializeRemainingData(D,n){this.sessionService.setItem("clnUnlocked","true");const c={identity_pubkey:D.id,alias:D.alias,testnet:"testnet"===D.network.toLowerCase(),chains:D.chains,uris:D.uris,version:D.version,api_version:D.api_version,numberOfPendingChannels:D.num_pending_channels};this.store.dispatch((0,y.mt)({payload:T.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,y.Fl)({payload:c}));let m=this.location.path();m.includes("/lnd/")?m=m?.replace("/lnd/","/cln/"):m.includes("/ecl/")&&(m=m?.replace("/ecl/","/cln/")),(m.includes("/login")||m.includes("/error")||""===m||"HOME"===n||m.includes("?access-key="))&&(m="/cln/home"),this.router.navigate([m]),this.store.dispatch((0,F.Do)()),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,F.kX)({payload:"perkw"})),this.store.dispatch((0,F.kX)({payload:"perkb"})),this.store.dispatch((0,F.Gy)()),this.store.dispatch((0,F.CK)())}handleErrorWithoutAlert(D,n,c,m){if(this.logger.error("ERROR IN: "+D+"\n"+JSON.stringify(m)),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,y.y0)({payload:n}));const h=this.commonService.extractErrorMessage(m,c);this.store.dispatch((0,F.no)({payload:{action:D,status:T.wn.ERROR,statusCode:m.status.toString(),message:h}}))}}handleErrorWithAlert(D,n,c,m,h){if(this.logger.error(h),401===h.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)})),this.store.dispatch((0,y.UI)({payload:"Authentication Failed: "+h.error}));else{this.store.dispatch((0,y.y0)({payload:n}));const C=this.commonService.extractErrorMessage(h);this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:c,message:{code:h.status,message:C,URL:m},component:I.f}}})),this.store.dispatch((0,F.no)({payload:{action:D,status:T.wn.ERROR,statusCode:h.status.toString(),message:C,URL:m}}))}}ngOnDestroy(){this.unSubs.forEach(D=>{D.next(null),D.complete()})}static#e=this.\u0275fac=function(n){return new(n||Te)(W.KVO(e.En),W.KVO($.Qq),W.KVO(j.il),W.KVO(Q.Q),W.KVO(J.h),W.KVO(ee.gP),W.KVO(ie.Ix),W.KVO(ge.I),W.KVO(ae.aZ))};static#t=this.\u0275prov=W.jDH({token:Te,factory:Te.\u0275fac})}return Te})()},9584:(Qe,te,g)=>{"use strict";g.d(te,{Al:()=>F,BM:()=>R,Dv:()=>W,GX:()=>j,Ie:()=>z,KT:()=>f,O5:()=>ee,Pj:()=>y,RB:()=>T,RQ:()=>J,aJ:()=>$,av:()=>w,ip:()=>ie,kQ:()=>Q,kr:()=>d,mH:()=>S,os:()=>I,ru:()=>x});var e=g(9640);const t=(0,e.UX)("cln"),w=(0,e.Mz)(t,ae=>({pageSettings:ae.pageSettings,apiCallStatus:ae.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,ae=>ae.information),x=((0,e.Mz)(t,ae=>ae.apisCallStatus.FetchInfo),(0,e.Mz)(t,ae=>ae.apisCallStatus)),f=(0,e.Mz)(t,ae=>({payments:ae.payments,apiCallStatus:ae.apisCallStatus.FetchPayments})),I=(0,e.Mz)(t,ae=>({peers:ae.peers,apiCallStatus:ae.apisCallStatus.FetchPeers})),d=(0,e.Mz)(t,ae=>({feeRatesPerKB:ae.feeRatesPerKB,apiCallStatus:ae.apisCallStatus.FetchFeeRatesperkb})),T=(0,e.Mz)(t,ae=>({feeRatesPerKW:ae.feeRatesPerKW,apiCallStatus:ae.apisCallStatus.FetchFeeRatesperkw})),y=(0,e.Mz)(t,ae=>({listInvoices:ae.invoices,apiCallStatus:ae.apisCallStatus.FetchInvoices})),F=(0,e.Mz)(t,ae=>({utxos:ae.utxos,balance:ae.balance,localRemoteBalance:ae.localRemoteBalance,apiCallStatus:ae.apisCallStatus.FetchUTXOBalances})),R=(0,e.Mz)(t,ae=>({activeChannels:ae.activeChannels,pendingChannels:ae.pendingChannels,inactiveChannels:ae.inactiveChannels,apiCallStatus:ae.apisCallStatus.FetchChannels})),z=(0,e.Mz)(t,ae=>({forwardingHistory:ae.forwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryS})),W=(0,e.Mz)(t,ae=>({failedForwardingHistory:ae.failedForwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryF})),$=(0,e.Mz)(t,ae=>({localFailedForwardingHistory:ae.localFailedForwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryL})),j=(0,e.Mz)(t,ae=>({information:ae.information,balance:ae.balance,numPeers:ae.peers.length})),Q=(0,e.Mz)(t,ae=>({information:ae.information,balance:ae.balance})),J=(0,e.Mz)(t,ae=>({information:ae.information,fees:ae.fees,apisCallStatus:[ae.apisCallStatus.FetchInfo,ae.apisCallStatus.FetchForwardingHistoryS]})),ee=(0,e.Mz)(t,ae=>({offers:ae.offers,apiCallStatus:ae.apisCallStatus.FetchOffers})),ie=(0,e.Mz)(t,ae=>({offersBookmarks:ae.offersBookmarks,apiCallStatus:ae.apisCallStatus.FetchOfferBookmarks}))},8321:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>mt});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(9584),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(1997),J=g(9183),ee=g(4823),ie=g(8288),ge=g(9157),ae=g(9587);const Me=_e=>({"display-none":_e}),Te=_e=>({"xs-scroll-y":_e}),de=(_e,be)=>({"mt-2":_e,"mt-1":be}),D=_e=>({"mr-0":_e}),n=()=>[];function c(_e,be){if(1&_e&&f.nrm(0,"qr-code",33),2&_e){const pe=f.XpG();f.Y8G("value",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))("size",pe.qrWidth)("errorCorrectionLevel","L")}}function m(_e,be){1&_e&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function h(_e,be){if(1&_e&&f.nrm(0,"span",35),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function C(_e,be){if(1&_e&&f.nrm(0,"span",36),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function k(_e,be){if(1&_e&&f.nrm(0,"span",37),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function L(_e,be){if(1&_e&&f.nrm(0,"qr-code",33),2&_e){const pe=f.XpG();f.Y8G("value",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))("size",pe.qrWidth)("errorCorrectionLevel","L")}}function _(_e,be){1&_e&&(f.j41(0,"span",38),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function r(_e,be){1&_e&&f.nrm(0,"mat-divider",39)}function v(_e,be){if(1&_e&&(f.j41(0,"div",20)(1,"div",40),f.nrm(2,"fa-icon",41),f.j41(3,"span"),f.EFF(4),f.k0s()()()),2&_e){const pe=f.XpG();f.R7$(2),f.Y8G("icon",pe.faExclamationTriangle),f.R7$(2),f.JRh(null==pe.invoice?null:pe.invoice.warning_capacity)}}function V(_e,be){1&_e&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function N(_e,be){1&_e&&f.nrm(0,"span",47)}function ne(_e,be){if(1&_e&&(f.j41(0,"div",43)(1,"div",44)(2,"span",45),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,N,1,0,"span",46),f.k0s()()),2&_e){const pe=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,(null==pe.invoice?null:pe.invoice.amount_received_msat)/1e3)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,n).constructor(35))}}function Ee(_e,be){if(1&_e&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&_e){const pe=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,(null==pe.invoice?null:pe.invoice.amount_received_msat)/1e3)," Sats")}}function ze(_e,be){if(1&_e&&(f.qex(0),f.DNE(1,ne,6,5,"div",42)(2,Ee,3,3,"div",24),f.bVm()),2&_e){const pe=f.XpG();f.R7$(),f.Y8G("ngIf",pe.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!pe.flgInvoicePaid)}}function qe(_e,be){1&_e&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Ke(_e,be){1&_e&&f.nrm(0,"mat-spinner",49),2&_e&&f.Y8G("diameter",20)}function se(_e,be){if(1&_e&&(f.qex(0),f.DNE(1,qe,2,0,"span",24)(2,Ke,1,1,"mat-spinner",48),f.bVm()),2&_e){const pe=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==pe.invoice?null:pe.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==pe.invoice?null:pe.invoice.status))}}function X(_e,be){if(1&_e&&(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&_e){const pe=f.XpG();f.R7$(7),f.JRh(null==pe.invoice?null:pe.invoice.payment_hash),f.R7$(7),f.JRh(null==pe.invoice?null:pe.invoice.label)}}function me(_e,be){1&_e&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ce(_e,be){1&_e&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function fe(_e,be){if(1&_e){const pe=f.RV6();f.j41(0,"button",50),f.bIt("copied",function(_t){f.eBV(pe);const at=f.XpG();return f.Njj(at.onCopyPayment(_t))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&_e){const pe=f.XpG();f.Y8G("payload",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))}}function ke(_e,be){if(1&_e){const pe=f.RV6();f.j41(0,"button",51),f.bIt("click",function(){f.eBV(pe);const _t=f.XpG();return f.Njj(_t.onClose())}),f.EFF(1,"OK"),f.k0s()}}let mt=(()=>{class _e{constructor(pe,Ze,_t,at,pt,Xt){this.dialogRef=pe,this.data=Ze,this.logger=_t,this.commonService=at,this.snackBar=pt,this.store=Xt,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.Pj).pipe((0,S.Q)(this.unSubs[1])).subscribe(pe=>{const _t=(pe.listInvoices.invoices||[])?.find(at=>at.payment_hash===this.invoice.payment_hash)||null;_t&&(this.invoice=_t),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(_t),this.logger.info(pe)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(pe){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+pe)}ngOnDestroy(){this.unSubs.forEach(pe=>{pe.next(null),pe.complete()})}static#e=this.\u0275fac=function(Ze){return new(Ze||_e)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:_e,selectors:[["rtl-cln-invoice-information"]],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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(Ze,_t){if(1&Ze){const at=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,c,1,3,"qr-code",3)(3,m,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,h,1,3,"span",10)(11,C,1,3,"span",11)(12,k,1,3,"span",12),f.k0s()(),f.j41(13,"button",13),f.bIt("click",function(){return f.eBV(at),f.Njj(_t.onClose())}),f.EFF(14,"X"),f.k0s()(),f.j41(15,"mat-card-content",14)(16,"div",15)(17,"div",16),f.DNE(18,L,1,3,"qr-code",3)(19,_,2,0,"span",17),f.k0s(),f.DNE(20,r,1,0,"mat-divider",18)(21,v,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,V,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,ze,3,2,"ng-container",24)(35,se,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,X,16,2,"div",24),f.j41(65,"div",28)(66,"button",29),f.bIt("click",function(){return f.eBV(at),f.Njj(_t.onShowAdvanced())}),f.DNE(67,me,2,0,"p",30)(68,ce,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(70,fe,2,1,"button",31)(71,ke,2,0,"button",32),f.k0s()()()()()}if(2&Ze){const at=f.sdS(69);f.R7$(),f.Y8G("fxLayoutAlign",null!=_t.invoice&&_t.invoice.bolt11&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||null!=_t.invoice&&_t.invoice.bolt12&&""!==(null==_t.invoice?null:_t.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(40,Me,_t.screenSize===_t.screenSizeEnum.XS||_t.screenSize===_t.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12)),f.R7$(4),f.Y8G("icon",_t.faReceipt),f.R7$(2),f.SpI(" ",_t.screenSize===_t.screenSizeEnum.XS?_t.newlyAdded?"Created":"Invoice":_t.newlyAdded?"Invoice Created":"Invoice Information"," "),f.R7$(),f.Y8G("ngIf","paid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","expired"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(3),f.Y8G("ngClass",f.eq3(42,Te,_t.screenSize===_t.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=_t.invoice&&_t.invoice.bolt11&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||null!=_t.invoice&&_t.invoice.bolt12&&""!==(null==_t.invoice?null:_t.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(44,Me,_t.screenSize!==_t.screenSizeEnum.XS&&_t.screenSize!==_t.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",_t.screenSize===_t.screenSizeEnum.XS||_t.screenSize===_t.screenSizeEnum.SM),f.R7$(),f.Y8G("ngIf",null==_t.invoice?null:_t.invoice.warning_capacity),f.R7$(4),f.JRh(_t.screenSize===_t.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI(" ",f.bMT(28,32,(null==_t.invoice?null:_t.invoice.amount_msat)/1e3||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.amount_msat)||"0"===(null==_t.invoice?null:_t.invoice.amount_msat)||"any"===(null==_t.invoice?null:_t.invoice.amount_msat)),f.R7$(5),f.Y8G("ngIf","paid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","paid"!==(null==_t.invoice?null:_t.invoice.status)),f.R7$(7),f.JRh(f.i5U(43,34,1e3*(null==_t.invoice?null:_t.invoice.expires_at),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(49,37,1e3*(null==_t.invoice?null:_t.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),f.R7$(8),f.JRh((null==_t.invoice?null:_t.invoice.description)||"-"),f.R7$(5),f.SpI("",null!=_t.invoice&&_t.invoice.bolt12?"Bolt12":null!=_t.invoice&&_t.invoice.bolt11&&!_t.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),f.R7$(2),f.JRh((null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",_t.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(46,de,!_t.showAdvanced,_t.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!_t.showAdvanced)("ngIfElse",at),f.R7$(3),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12))}},dependencies:[F.YU,F.Sq,F.bT,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,j.m2,j.MM,Q.q,J.LG,ee.oV,ie.Um,ge.U,ae.N,F.QX,F.vh]})}return _e})()},2142:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>ne});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(4438),f=g(8570),I=g(2571),d=g(5416),T=g(1534),y=g(177),F=g(60),R=g(2920),z=g(6038),W=g(8834),$=g(5596),j=g(1997),Q=g(8288),J=g(9157),ee=g(9587);const ie=Ee=>({"display-none":Ee}),ge=Ee=>({"xs-scroll-y":Ee}),ae=(Ee,ze)=>({"mt-2":Ee,"mt-1":ze});function Me(Ee,ze){if(1&Ee&&x.nrm(0,"qr-code",28),2&Ee){const qe=x.XpG();x.Y8G("value",null==qe.offer?null:qe.offer.bolt12)("size",qe.qrWidth)("errorCorrectionLevel","L")}}function Te(Ee,ze){1&Ee&&(x.j41(0,"span",29),x.EFF(1,"N/A"),x.k0s())}function de(Ee,ze){if(1&Ee&&x.nrm(0,"qr-code",28),2&Ee){const qe=x.XpG();x.Y8G("value",null==qe.offer?null:qe.offer.bolt12)("size",qe.qrWidth)("errorCorrectionLevel","L")}}function D(Ee,ze){1&Ee&&(x.j41(0,"span",30),x.EFF(1,"QR Code Not Applicable"),x.k0s())}function n(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",31),2&Ee&&x.Y8G("inset",!0)}function c(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function m(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",17)(2,"h4",18),x.EFF(3,"Used"),x.k0s(),x.j41(4,"span",19),x.EFF(5),x.k0s()(),x.j41(6,"div",17)(7,"h4",18),x.EFF(8,"Single Use"),x.k0s(),x.j41(9,"span",19),x.EFF(10),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.SpI(" ",null!=qe.offer&&qe.offer.used?null!=qe.offer&&qe.offer.used?"Yes":"No":"N/K"," "),x.R7$(5),x.SpI(" ",null!=qe.offer&&qe.offer.single_use?null!=qe.offer&&qe.offer.single_use?"Yes":"No":"N/K"," ")}}function h(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function C(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",21)(2,"h4",18),x.EFF(3,"Issuer"),x.k0s(),x.j41(4,"span",34),x.EFF(5),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.JRh(null==qe.offerDecoded?null:qe.offerDecoded.offer_issuer)}}function k(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function L(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",21)(2,"h4",18),x.EFF(3,"Label"),x.k0s(),x.j41(4,"span",19),x.EFF(5),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.JRh(qe.offer.label)}}function _(Ee,ze){if(1&Ee&&(x.j41(0,"div"),x.DNE(1,c,1,0,"mat-divider",32)(2,m,11,2,"div",33)(3,h,1,0,"mat-divider",32)(4,C,6,1,"div",33)(5,k,1,0,"mat-divider",32)(6,L,6,1,"div",33),x.nrm(7,"mat-divider",20),x.j41(8,"div",16)(9,"div",21)(10,"h4",18),x.EFF(11,"Offer ID"),x.k0s(),x.j41(12,"span",19),x.EFF(13),x.k0s()()(),x.nrm(14,"mat-divider",20),x.j41(15,"div",16)(16,"div",21)(17,"h4",18),x.EFF(18,"Offer Node ID"),x.k0s(),x.j41(19,"span",19),x.EFF(20),x.k0s()()(),x.nrm(21,"mat-divider",20),x.k0s()),2&Ee){const qe=x.XpG();x.R7$(),x.Y8G("ngIf",(null==qe.offer?null:qe.offer.used)||(null==qe.offer?null:qe.offer.single_use)),x.R7$(),x.Y8G("ngIf",(null==qe.offer?null:qe.offer.used)||(null==qe.offer?null:qe.offer.single_use)),x.R7$(),x.Y8G("ngIf",null==qe.offerDecoded?null:qe.offerDecoded.issuer),x.R7$(),x.Y8G("ngIf",null==qe.offerDecoded?null:qe.offerDecoded.issuer),x.R7$(),x.Y8G("ngIf",qe.offer.label),x.R7$(),x.Y8G("ngIf",qe.offer.label),x.R7$(7),x.JRh(qe.offerDecoded.offer_id),x.R7$(7),x.JRh(null==qe.offerDecoded?null:qe.offerDecoded.offer_node_id)}}function r(Ee,ze){1&Ee&&(x.j41(0,"p"),x.EFF(1,"Show Advanced"),x.k0s())}function v(Ee,ze){1&Ee&&(x.j41(0,"p"),x.EFF(1,"Hide Advanced"),x.k0s())}function V(Ee,ze){if(1&Ee){const qe=x.RV6();x.j41(0,"button",35),x.bIt("copied",function(se){x.eBV(qe);const X=x.XpG();return x.Njj(X.onCopyOffer(se))}),x.EFF(1,"Copy Offer"),x.k0s()}if(2&Ee){const qe=x.XpG();x.Y8G("payload",null==qe.offer?null:qe.offer.bolt12)}}function N(Ee,ze){if(1&Ee){const qe=x.RV6();x.j41(0,"button",36),x.bIt("click",function(){x.eBV(qe);const se=x.XpG();return x.Njj(se.onClose())}),x.EFF(1,"OK"),x.k0s()}}let ne=(()=>{class Ee{constructor(qe,Ke,se,X,me,ce){this.dialogRef=qe,this.data=Ke,this.logger=se,this.commonService=X,this.snackBar=me,this.dataService=ce,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOfferPaid=!1,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,S.Q)(this.unSubs[1])).subscribe(qe=>{this.offerDecoded=qe,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(qe){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+qe)}ngOnDestroy(){this.unSubs.forEach(qe=>{qe.next(null),qe.complete()})}static#e=this.\u0275fac=function(Ke){return new(Ke||Ee)(x.rXU(e.CP),x.rXU(e.Vh),x.rXU(f.gP),x.rXU(I.h),x.rXU(d.UG),x.rXU(T.u))};static#t=this.\u0275cmp=x.VBU({type:Ee,selectors:[["rtl-cln-offer-information"]],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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(Ke,se){if(1&Ke){const X=x.RV6();x.j41(0,"div",1)(1,"div",2),x.DNE(2,Me,1,3,"qr-code",3)(3,Te,2,0,"span",4),x.k0s(),x.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),x.nrm(7,"fa-icon",8),x.j41(8,"span",9),x.EFF(9),x.k0s()(),x.j41(10,"button",10),x.bIt("click",function(){return x.eBV(X),x.Njj(se.onClose())}),x.EFF(11,"X"),x.k0s()(),x.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),x.DNE(15,de,1,3,"qr-code",3)(16,D,2,0,"span",14),x.k0s(),x.DNE(17,n,1,1,"mat-divider",15),x.j41(18,"div",16)(19,"div",17)(20,"h4",18),x.EFF(21,"Amount Requested (Sats)"),x.k0s(),x.j41(22,"span",19),x.EFF(23),x.nI1(24,"number"),x.k0s()(),x.j41(25,"div",17)(26,"h4",18),x.EFF(27,"Valid"),x.k0s(),x.j41(28,"span",19),x.EFF(29),x.k0s()()(),x.nrm(30,"mat-divider",20),x.j41(31,"div",16)(32,"div",21)(33,"h4",18),x.EFF(34,"Description"),x.k0s(),x.j41(35,"span",19),x.EFF(36),x.k0s()()(),x.nrm(37,"mat-divider",20),x.j41(38,"div",16)(39,"div",21)(40,"h4",18),x.EFF(41,"Offer"),x.k0s(),x.j41(42,"span",19),x.EFF(43),x.k0s()()(),x.DNE(44,_,22,8,"div",22),x.j41(45,"div",23)(46,"button",24),x.bIt("click",function(){return x.eBV(X),x.Njj(se.onShowAdvanced())}),x.DNE(47,r,2,0,"p",25)(48,v,2,0,"ng-template",null,0,x.C5r),x.k0s(),x.DNE(50,V,2,1,"button",26)(51,N,2,0,"button",27),x.k0s()()()()()}if(2&Ke){const X=x.sdS(49);x.R7$(),x.Y8G("fxLayoutAlign",null!=se.offer&&se.offer.bolt12&&""!==(null==se.offer?null:se.offer.bolt12)?"center start":"center center")("ngClass",x.eq3(24,ie,se.screenSize===se.screenSizeEnum.XS||se.screenSize===se.screenSizeEnum.SM)),x.R7$(),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12)),x.R7$(4),x.Y8G("icon",se.faReceipt),x.R7$(2),x.JRh(se.screenSize===se.screenSizeEnum.XS?se.newlyAdded?"Created":"Offer":se.newlyAdded?"Offer Created":"Offer Information"),x.R7$(3),x.Y8G("ngClass",x.eq3(26,ge,se.screenSize===se.screenSizeEnum.XS)),x.R7$(2),x.Y8G("fxLayoutAlign",null!=se.offer&&se.offer.bolt12&&""!==(null==se.offer?null:se.offer.bolt12)?"center start":"center center")("ngClass",x.eq3(28,ie,se.screenSize!==se.screenSizeEnum.XS&&se.screenSize!==se.screenSizeEnum.SM)),x.R7$(),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",se.screenSize===se.screenSizeEnum.XS||se.screenSize===se.screenSizeEnum.SM),x.R7$(6),x.SpI(" ",null!=se.offerDecoded&&se.offerDecoded.offer_amount_msat&&0!==(null==se.offerDecoded?null:se.offerDecoded.offer_amount_msat)?x.bMT(24,22,(null==se.offerDecoded?null:se.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),x.R7$(6),x.SpI(" ",null!=se.offerDecoded&&se.offerDecoded.valid?null!=se.offerDecoded&&se.offerDecoded.valid?"Yes":"No":"N/K"," "),x.R7$(7),x.SpI(" ",null==se.offerDecoded?null:se.offerDecoded.offer_description," "),x.R7$(7),x.JRh(null==se.offer?null:se.offer.bolt12),x.R7$(),x.Y8G("ngIf",se.showAdvanced),x.R7$(),x.Y8G("ngClass",x.l_i(30,ae,!se.showAdvanced,se.showAdvanced)),x.R7$(2),x.Y8G("ngIf",!se.showAdvanced)("ngIfElse",X),x.R7$(3),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12))}},dependencies:[y.YU,y.bT,F.aY,R.DJ,R.sA,R.UI,z.PW,W.$z,$.m2,$.MM,j.q,Q.Um,J.U,ee.N,y.QX]})}return Ee})()},5428:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>Ke,$Q:()=>F,As:()=>ne,CK:()=>k,Do:()=>qe,Dq:()=>me,Fd:()=>v,Gy:()=>ee,Hh:()=>S,Hm:()=>r,I6:()=>W,Jx:()=>X,Lc:()=>Te,Lz:()=>Ee,N4:()=>V,N8:()=>Q,NS:()=>x,Qj:()=>ie,Sn:()=>f,T4:()=>_,Tp:()=>R,Uj:()=>L,Uo:()=>y,XT:()=>D,Xx:()=>j,Yi:()=>fe,ZE:()=>J,Zi:()=>de,cR:()=>C,cU:()=>z,fy:()=>m,gZ:()=>mt,iO:()=>se,jJ:()=>$,lg:()=>l,mh:()=>N,sq:()=>ge,uL:()=>w,vL:()=>c,w0:()=>h,x1:()=>d,yn:()=>_e,yp:()=>T,zR:()=>I,zU:()=>ce});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.Uu.UPDATE_API_CALL_STATUS_ECL,(0,e.xk)()),S=(0,e.VP)(t.Uu.RESET_ECL_STORE),l=(0,e.VP)(t.Uu.FETCH_PAGE_SETTINGS_ECL),x=(0,e.VP)(t.Uu.SET_PAGE_SETTINGS_ECL,(0,e.xk)()),f=(0,e.VP)(t.Uu.SAVE_PAGE_SETTINGS_ECL,(0,e.xk)()),I=(0,e.VP)(t.Uu.FETCH_INFO_ECL,(0,e.xk)()),d=(0,e.VP)(t.Uu.SET_INFO_ECL,(0,e.xk)()),T=(0,e.VP)(t.Uu.FETCH_FEES_ECL),y=(0,e.VP)(t.Uu.SET_FEES_ECL,(0,e.xk)()),F=(0,e.VP)(t.Uu.FETCH_CHANNELS_ECL),R=(0,e.VP)(t.Uu.SET_ACTIVE_CHANNELS_ECL,(0,e.xk)()),z=(0,e.VP)(t.Uu.SET_PENDING_CHANNELS_ECL,(0,e.xk)()),W=(0,e.VP)(t.Uu.SET_INACTIVE_CHANNELS_ECL,(0,e.xk)()),$=(0,e.VP)(t.Uu.FETCH_ONCHAIN_BALANCE_ECL),j=(0,e.VP)(t.Uu.SET_ONCHAIN_BALANCE_ECL,(0,e.xk)()),Q=(0,e.VP)(t.Uu.SET_LIGHTNING_BALANCE_ECL,(0,e.xk)()),J=(0,e.VP)(t.Uu.SET_CHANNELS_STATUS_ECL,(0,e.xk)()),ee=(0,e.VP)(t.Uu.FETCH_PEERS_ECL),ie=(0,e.VP)(t.Uu.SET_PEERS_ECL,(0,e.xk)()),ge=(0,e.VP)(t.Uu.SAVE_NEW_PEER_ECL,(0,e.xk)()),Te=((0,e.VP)(t.Uu.NEWLY_ADDED_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.ADD_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.DETACH_PEER_ECL,(0,e.xk)())),de=(0,e.VP)(t.Uu.REMOVE_PEER_ECL,(0,e.xk)()),D=(0,e.VP)(t.Uu.GET_NEW_ADDRESS_ECL),c=((0,e.VP)(t.Uu.SET_NEW_ADDRESS_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.SAVE_NEW_CHANNEL_ECL,(0,e.xk)())),m=(0,e.VP)(t.Uu.UPDATE_CHANNEL_ECL,(0,e.xk)()),h=(0,e.VP)(t.Uu.CLOSE_CHANNEL_ECL,(0,e.xk)()),C=(0,e.VP)(t.Uu.REMOVE_CHANNEL_ECL,(0,e.xk)()),k=(0,e.VP)(t.Uu.FETCH_PAYMENTS_ECL,(0,e.xk)()),L=(0,e.VP)(t.Uu.SET_PAYMENTS_ECL,(0,e.xk)()),_=(0,e.VP)(t.Uu.GET_QUERY_ROUTES_ECL,(0,e.xk)()),r=(0,e.VP)(t.Uu.SET_QUERY_ROUTES_ECL,(0,e.xk)()),v=(0,e.VP)(t.Uu.SEND_PAYMENT_ECL,(0,e.xk)()),V=(0,e.VP)(t.Uu.SEND_PAYMENT_STATUS_ECL,(0,e.xk)()),N=(0,e.VP)(t.Uu.FETCH_TRANSACTIONS_ECL,(0,e.xk)()),ne=(0,e.VP)(t.Uu.SET_TRANSACTIONS_ECL,(0,e.xk)()),Ee=(0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_ECL,(0,e.xk)()),qe=((0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.FETCH_INVOICES_ECL,(0,e.xk)())),Ke=(0,e.VP)(t.Uu.SET_INVOICES_ECL,(0,e.xk)()),se=(0,e.VP)(t.Uu.CREATE_INVOICE_ECL,(0,e.xk)()),X=(0,e.VP)(t.Uu.ADD_INVOICE_ECL,(0,e.xk)()),me=(0,e.VP)(t.Uu.UPDATE_INVOICE_ECL,(0,e.xk)()),ce=(0,e.VP)(t.Uu.PEER_LOOKUP_ECL,(0,e.xk)()),fe=(0,e.VP)(t.Uu.INVOICE_LOOKUP_ECL,(0,e.xk)()),mt=((0,e.VP)(t.Uu.SET_LOOKUP_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.UPDATE_CHANNEL_STATE_ECL,(0,e.xk)())),_e=(0,e.VP)(t.Uu.UPDATE_RELAYED_PAYMENT_ECL,(0,e.xk)())},3017:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>ae});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(2462),d=g(4416),T=g(1771),y=g(6439),F=g(5428),R=g(2730),z=g(4438),W=g(1626),$=g(9640),j=g(3202),Q=g(2571),J=g(8570),ee=g(1188),ie=g(7879),ge=g(177);let ae=(()=>{class Me{constructor(de,D,n,c,m,h,C,k,L){this.actions=de,this.httpClient=D,this.store=n,this.sessionService=c,this.commonService=m,this.logger=h,this.router=C,this.wsService=k,this.location=L,this.CHILD_API_URL=d.H$+"/ecl",this.invoicesPageSettings=d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"invoices"===_.tableId),this.paymentsPageSettings=d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"payments"===_.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,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_INFO_ECL),(0,S.Z)(_=>(this.flgInitialized=!1,this.store.dispatch((0,T.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,T.mt)({payload:d.MZ.GET_NODE_INFO})),this.store.dispatch((0,F.uL)({payload:{action:"FetchInfo",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(d.aU.SET_SELECTED_NODE))),(0,x.T)(r=>(this.logger.info(r),this.initializeRemainingData(r,_.payload.loadPage),this.store.dispatch((0,F.uL)({payload:{action:"FetchInfo",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.GET_NODE_INFO})),{type:d.Uu.SET_INFO_ECL,payload:r||{}})),(0,f.W)(r=>{const v=this.commonService.extractErrorCode(r),V=503===v?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(r);return this.router.navigate(["/error"],{state:{errorCode:v,errorMessage:V}}),this.handleErrorWithoutAlert("FetchInfo",d.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:v,error:V}),(0,w.of)({type:d.aU.VOID})})))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_FEES_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchFees",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/fees").pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchFees",status:d.wn.COMPLETED}})),{type:d.Uu.SET_FEES_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchFees",d.MZ.NO_SPINNER,"Fetching Fees Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.fetchPayments=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PAYMENTS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPayments",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/payments?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"FetchPayments",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PAYMENTS_ECL,payload:r||{}})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPayments",d.MZ.NO_SPINNER,"Fetching Payments Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_CHANNELS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchChannels",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.CHANNELS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.rawChannelsList=r,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,F.uL)({payload:{action:"FetchChannels",status:d.wn.COMPLETED}})),{type:d.aU.VOID})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchChannels",d.MZ.NO_SPINNER,"Fetching Channels Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.fetchOnchainBalance=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_ONCHAIN_BALANCE_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/balance"))),(0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.COMPLETED}})),{type:d.Uu.SET_ONCHAIN_BALANCE_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchOnchainBalance",d.MZ.NO_SPINNER,"Fetching Onchain Balances Failed.",_),(0,w.of)({type:d.aU.VOID}))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PEERS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPeers",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.PEERS_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchPeers",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PEERS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPeers",d.MZ.NO_SPINNER,"Fetching Peers Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.GET_NEW_ADDRESS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,T.mt)({payload:d.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,T.y0)({payload:d.MZ.GENERATE_NEW_ADDRESS})),{type:d.Uu.SET_NEW_ADDRESS_ECL,payload:_})),(0,f.W)(_=>(this.handleErrorWithAlert("GetNewAddress",d.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+d.rl.ON_CHAIN_API,_),(0,w.of)({type:d.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_NEW_ADDRESS_ECL),(0,x.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_NEW_PEER_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewPeer",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PEERS_API+(_.payload.id.includes("@")?"?uri=":"?nodeId=")+_.payload.id,{}).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewPeer",status:d.wn.COMPLETED}})),r=r||[],this.store.dispatch((0,T.y0)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,F.Qj)({payload:r})),{type:d.Uu.NEWLY_ADDED_PEER_ECL,payload:{peer:r.find(v=>v.nodeId===(_.payload.id.includes("@")?_.payload.id.substring(0,_.payload.id.indexOf("@")):_.payload.id))}})),(0,f.W)(r=>(this.handleErrorWithoutAlert("SaveNewPeer",d.MZ.CONNECT_PEER,"Peer Connection Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.DETACH_PEER_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+d.rl.PEERS_API+"/"+_.payload.nodeId).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,T.y0)({payload:d.MZ.DISCONNECT_PEER})),this.store.dispatch((0,T.UI)({payload:"Disconnecting Peer!"})),{type:d.Uu.REMOVE_PEER_ECL,payload:{nodeId:_.payload.nodeId}})),(0,f.W)(r=>(this.handleErrorWithAlert("DisconnectPeer",d.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+d.rl.PEERS_API+"/"+_.payload.nodeId,r),(0,w.of)({type:d.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_NEW_CHANNEL_ECL),(0,S.Z)(_=>{this.store.dispatch((0,T.mt)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewChannel",status:d.wn.INITIATED}}));const r={nodeId:_.payload.nodeId,fundingSatoshis:_.payload.amount,announceChannel:!_.payload.private};return _.payload.feeRate&&_.payload.feeRate>0&&(r.fundingFeerateSatByte=_.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API,r).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewChannel",status:d.wn.COMPLETED}})),this.store.dispatch((0,F.Gy)()),this.store.dispatch((0,F.jJ)()),this.store.dispatch((0,T.y0)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,T.UI)({payload:"Channel Added Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewChannel",d.MZ.OPEN_CHANNEL,"Opening Channel Failed.",v),(0,w.of)({type:d.aU.VOID}))))}))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.UPDATE_CHANNEL_ECL),(0,S.Z)(_=>{this.store.dispatch((0,T.mt)({payload:d.MZ.UPDATE_CHAN_POLICY}));let r="?feeBaseMsat="+_.payload.baseFeeMsat+"&feeProportionalMillionths="+_.payload.feeRate;return r=_.payload.nodeIds?r+"&nodeIds="+_.payload.nodeIds:_.payload.nodeId?r+"&nodeId="+_.payload.nodeId:_.payload.channelIds?r+"&channelIds="+_.payload.channelIds:r+"&channelId="+_.payload.channelId,this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API+"/updateRelayFee"+r,{}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,T.y0)({payload:d.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,T.UI)(_.payload.nodeIds||_.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(v=>(this.handleErrorWithAlert("UpdateChannels",d.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+d.rl.CHANNELS_API,v),(0,w.of)({type:d.aU.VOID}))))}))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.CLOSE_CHANNEL_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+d.rl.CHANNELS_API+"?channelId="+_.payload.channelId+"&force="+_.payload.force).pipe((0,x.T)(r=>(this.logger.info(r),setTimeout(()=>{this.store.dispatch((0,T.y0)({payload:_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,T.UI)({payload:_.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:d.aU.VOID})),(0,f.W)(r=>(this.handleErrorWithAlert("CloseChannel",_.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,r),(0,w.of)({type:d.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.GET_QUERY_ROUTES_ECL),(0,S.Z)(_=>this.httpClient.get(this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount).pipe((0,x.T)(r=>(this.logger.info(r),{type:d.Uu.SET_QUERY_ROUTES_ECL,payload:r})),(0,f.W)(r=>(this.store.dispatch((0,F.Hm)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",d.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount,r),(0,w.of)({type:d.aU.VOID}))))))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_QUERY_ROUTES_ECL),(0,x.T)(_=>_.payload)),{dispatch:!1}),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SEND_PAYMENT_ECL),(0,S.Z)(_=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,T.mt)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,F.uL)({payload:{action:"SendPayment",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PAYMENTS_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.latestPaymentRes=r,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:d.aU.VOID})),(0,f.W)(r=>(this.logger.error("Error: "+JSON.stringify(r)),_.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed.",r):this.handleErrorWithAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_TRANSACTIONS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchTransactions",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/transactions?count="+_.payload.count+"&skip="+_.payload.skip))),(0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchTransactions",status:d.wn.COMPLETED}})),{type:d.Uu.SET_TRANSACTIONS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchTransactions",d.MZ.NO_SPINNER,"Fetching Transactions Failed.",_),(0,w.of)({type:d.aU.VOID}))))),this.SendOnchainFunds=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SEND_ONCHAIN_FUNDS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,F.uL)({payload:{action:"SendOnchainFunds",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.ON_CHAIN_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SendOnchainFunds",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,F.jJ)()),{type:d.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("SendOnchainFunds",d.MZ.SEND_FUNDS,"Sending Fund Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.createInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.CREATE_INVOICE_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.CREATE_INVOICE})),this.store.dispatch((0,F.uL)({payload:{action:"CreateInvoice",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.INVOICES_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"CreateInvoice",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.CREATE_INVOICE})),r.timestamp=Math.round((new Date).getTime()/1e3),r.expiresAt=Math.round(r.timestamp+_.payload.expireIn),r.description=_.payload.description,r.status="unpaid",setTimeout(()=>{this.store.dispatch((0,T.xO)({payload:{data:{invoice:r,newlyAdded:!0,component:y.Z}}}))},200),{type:d.Uu.ADD_INVOICE_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("CreateInvoice",d.MZ.CREATE_INVOICE,"Create Invoice Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_INVOICES_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchInvoices",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"FetchInvoices",status:d.wn.COMPLETED}})),{type:d.Uu.SET_INVOICES_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchInvoices",d.MZ.NO_SPINNER,"Fetching Invoices Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.PEER_LOOKUP_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEARCHING_NODE})),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEARCHING_NODE})),{type:d.Uu.SET_LOOKUP_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithAlert("Lookup",d.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+_.payload,r),(0,w.of)({type:d.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.INVOICE_LOOKUP_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"/"+_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.Dq)({payload:r})),{type:d.Uu.SET_LOOKUP_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("Lookup",d.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",r),this.store.dispatch((0,T.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:d.aU.VOID})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_LOOKUP_ECL),(0,x.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PAGE_SETTINGS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPageSettings",status:d.wn.INITIATED}})),this.httpClient.get(d.rl.PAGE_SETTINGS_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchPageSettings",status:d.wn.COMPLETED}})),this.invoicesPageSettings=_&&Object.keys(_).length>0?_.find(r=>"transactions"===r.pageId)?.tables.find(r=>"invoices"===r.tableId):d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"invoices"===r.tableId),this.paymentsPageSettings=_&&Object.keys(_).length>0?_.find(r=>"transactions"===r.pageId)?.tables.find(r=>"payments"===r.tableId):d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"payments"===r.tableId),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPageSettings",d.MZ.NO_SPINNER,"Fetching Page Settings Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_PAGE_SETTINGS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.uL)({payload:{action:"SavePageSettings",status:d.wn.INITIATED}})),this.httpClient.post(d.rl.PAGE_SETTINGS_API,_.payload).pipe((0,x.T)(r=>{this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SavePageSettings",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,T.UI)({payload:"Page Layout Updated Successfully!"}));const v=(r.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId)||d.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId))?.recordsPerPage,V=(r.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId)||d.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId))?.recordsPerPage;return this.invoicesPageSettings&&v!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=v),this.paymentsPageSettings&&V!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=V),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:r||[]}}),(0,f.W)(r=>(this.handleErrorWithAlert("SavePageSettings",d.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",d.rl.PAGE_SETTINGS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.handleSendPaymentStatus=_=>{this.store.dispatch((0,F.uL)({payload:{action:"SendPayment",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,F.N4)({payload:this.latestPaymentRes})),this.store.dispatch((0,T.UI)({payload:_}))},this.store.select(R.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(_=>{_.FetchInfo.status!==d.wn.COMPLETED&&_.FetchInfo.status!==d.wn.ERROR||_.FetchFees.status!==d.wn.COMPLETED&&_.FetchFees.status!==d.wn.ERROR||_.FetchOnchainBalance.status!==d.wn.COMPLETED&&_.FetchOnchainBalance.status!==d.wn.ERROR||_.FetchChannels.status!==d.wn.COMPLETED&&_.FetchChannels.status!==d.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,T.y0)({payload:d.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(_=>{this.logger.info("Received new message from the service: "+JSON.stringify(_));let r="";if(_)switch(_.type){case d.ck.PAYMENT_SENT:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Sent: "+(_.paymentHash?"with payment hash "+_.paymentHash:JSON.stringify(_)),this.handleSendPaymentStatus(r));break;case d.ck.PAYMENT_FAILED:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Failed: "+(_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].t?_.failures[0].t:_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].e&&_.failures[0].e.failureMessage?_.failures[0].e.failureMessage:JSON.stringify(_)),this.handleSendPaymentStatus(r));break;case d.ck.PAYMENT_RECEIVED:this.store.dispatch((0,F.Dq)({payload:_}));break;case d.ck.PAYMENT_RELAYED:delete _.source,_.amountIn=Math.round((_.amountIn||0)/1e3),_.amountOut=Math.round((_.amountOut||0)/1e3),_.timestamp.unix&&(_.timestamp=1e3*_.timestamp.unix),this.store.dispatch((0,F.yn)({payload:_}));break;case d.ck.CHANNEL_STATE_CHANGED:"NORMAL"===_.currentState||"CLOSED"===_.currentState?(this.rawChannelsList=this.rawChannelsList?.map(v=>(v.channelId===_.channelId&&v.nodeId===_.remoteNodeId&&(v.state=_.currentState),v)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,F.gZ)({payload:_}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(_))}})}setChannelsAndStatusAndBalances(){let de=0,D=0,n=0,c={localBalance:0,remoteBalance:0},m=[];const h=[],C=[],k={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((L,_)=>{L&&("NORMAL"===L.state?(de=(L.toLocal||0)+(L.toRemote||0),D+=L.toLocal||0,n+=L.toRemote||0,L.balancedness=0===de?1:+(1-Math.abs(((L.toLocal||0)-(L.toRemote||0))/de)).toFixed(3),m.push(L),k.active.channels=k.active.channels+1,k.active.capacity=k.active.capacity+(L.toLocal||0)):L.state?.includes("WAIT")||L.state?.includes("CLOSING")||L.state?.includes("SYNCING")?(L.state=L.state?.replace(/_/g," "),h.push(L),k.pending.channels=k.pending.channels+1,k.pending.capacity=k.pending.capacity+(L.toLocal||0)):(L.state=L.state?.replace(/_/g," "),C.push(L),k.inactive.channels=k.inactive.channels+1,k.inactive.capacity=k.inactive.capacity+(L.toLocal||0)))}),c={localBalance:D,remoteBalance:n},m=this.commonService.sortDescByKey(m,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(m)),this.logger.info("Pending Channels: "+JSON.stringify(h)),this.logger.info("Inactive Channels: "+JSON.stringify(C)),this.logger.info("Lightning Balances: "+JSON.stringify(c)),this.logger.info("Channels Status: "+JSON.stringify(k)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:m,pending:h,inactive:C,balances:c,status:k})),this.store.dispatch((0,F.Tp)({payload:m})),this.store.dispatch((0,F.cU)({payload:h})),this.store.dispatch((0,F.I6)({payload:C})),this.store.dispatch((0,F.N8)({payload:c})),this.store.dispatch((0,F.ZE)({payload:k}))}initializeRemainingData(de,D){this.sessionService.setItem("eclUnlocked","true");const n={identity_pubkey:de.nodeId,alias:de.alias,testnet:"testnet"===de.network,chains:de.publicAddresses,uris:de.uris,version:de.version,numberOfPendingChannels:0};this.store.dispatch((0,T.mt)({payload:d.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,T.Fl)({payload:n}));let c=this.location.path();c.includes("/lnd/")?c=c?.replace("/lnd/","/ecl/"):c.includes("/cln/")&&(c=c?.replace("/cln/","/ecl/")),(c.includes("/login")||c.includes("/error")||""===c||"HOME"===D||c.includes("?access-key="))&&(c="/ecl/home"),this.router.navigate([c]),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.yp)()),this.store.dispatch((0,F.jJ)()),this.store.dispatch((0,F.Gy)())}handleErrorWithoutAlert(de,D,n,c){this.logger.error("ERROR IN: "+de+"\n"+JSON.stringify(c)),401===c.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,T.Jh)()),this.store.dispatch((0,T.ri)({payload:"Authentication Failed: "+JSON.stringify(c.error)}))):(this.store.dispatch((0,T.y0)({payload:D})),this.store.dispatch((0,F.uL)({payload:{action:de,status:d.wn.ERROR,statusCode:c.status.toString(),message:this.commonService.extractErrorMessage(c,n)}})))}handleErrorWithAlert(de,D,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,T.Jh)()),this.store.dispatch((0,T.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,T.y0)({payload:D}));const h=this.commonService.extractErrorMessage(m);this.store.dispatch((0,T.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status,message:h,URL:c},component:I.f}}})),this.store.dispatch((0,F.uL)({payload:{action:de,status:d.wn.ERROR,statusCode:m.status.toString(),message:h,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(de=>{de.next(null),de.complete()})}static#e=this.\u0275fac=function(D){return new(D||Me)(z.KVO(e.En),z.KVO(W.Qq),z.KVO($.il),z.KVO(j.Q),z.KVO(Q.h),z.KVO(J.gP),z.KVO(ee.Ix),z.KVO(ie.I),z.KVO(ge.aZ))};static#t=this.\u0275prov=z.jDH({token:Me,factory:Me.\u0275fac})}return Me})()},2730:(Qe,te,g)=>{"use strict";g.d(te,{DW:()=>j,KT:()=>I,Ou:()=>R,b_:()=>l,gN:()=>z,jZ:()=>w,oR:()=>d,os:()=>$,p3:()=>S,rN:()=>W,ru:()=>f});var e=g(9640);const t=(0,e.UX)("ecl"),w=(0,e.Mz)(t,Q=>({pageSettings:Q.pageSettings,apiCallStatus:Q.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,Q=>Q.information),l=(0,e.Mz)(t,Q=>({information:Q.information,apiCallStatus:Q.apisCallStatus.FetchInfo})),f=((0,e.Mz)(t,Q=>Q.apisCallStatus.FetchInfo),(0,e.Mz)(t,Q=>Q.apisCallStatus)),I=(0,e.Mz)(t,Q=>({payments:Q.payments,apiCallStatus:Q.apisCallStatus.FetchPayments})),d=(0,e.Mz)(t,Q=>({fees:Q.fees,apiCallStatus:Q.apisCallStatus.FetchFees})),R=((0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({pendingChannels:Q.pendingChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({inactiveChannels:Q.inactiveChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,pendingChannels:Q.pendingChannels,inactiveChannels:Q.inactiveChannels,lightningBalance:Q.lightningBalance,channelsStatus:Q.channelsStatus,apiCallStatus:Q.apisCallStatus.FetchChannels}))),z=(0,e.Mz)(t,Q=>({transactions:Q.transactions,apiCallStatus:Q.apisCallStatus.FetchTransactions})),W=(0,e.Mz)(t,Q=>({invoices:Q.invoices,apiCallStatus:Q.apisCallStatus.FetchInvoices})),$=(0,e.Mz)(t,Q=>({peers:Q.peers,apiCallStatus:Q.apisCallStatus.FetchPeers})),j=(0,e.Mz)(t,Q=>({onchainBalance:Q.onchainBalance,apiCallStatus:Q.apisCallStatus.FetchOnchainBalance}))},6439:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>se});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(2730),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(1997),J=g(9183),ee=g(8288),ie=g(9157),ge=g(9587);const ae=X=>({"display-none":X}),Me=X=>({"xs-scroll-y":X}),Te=(X,me)=>({"mt-2":X,"mt-1":me}),de=()=>[];function D(X,me){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ce=f.XpG();f.Y8G("value",null==ce.invoice?null:ce.invoice.serialized)("size",ce.qrWidth)("errorCorrectionLevel","L")}}function n(X,me){1&X&&(f.j41(0,"span",30),f.EFF(1,"N/A"),f.k0s())}function c(X,me){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ce=f.XpG();f.Y8G("value",null==ce.invoice?null:ce.invoice.serialized)("size",ce.qrWidth)("errorCorrectionLevel","L")}}function m(X,me){1&X&&(f.j41(0,"span",31),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function h(X,me){1&X&&f.nrm(0,"mat-divider",32),2&X&&f.Y8G("inset",!0)}function C(X,me){1&X&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function k(X,me){1&X&&f.nrm(0,"span",38)}function L(X,me){if(1&X&&(f.j41(0,"div",34)(1,"div",35)(2,"span",36),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,k,1,0,"span",37),f.k0s()()),2&X){const ce=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==ce.invoice?null:ce.invoice.amountSettled)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,de).constructor(35))}}function _(X,me){if(1&X&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&X){const ce=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==ce.invoice?null:ce.invoice.amountSettled)," Sats")}}function r(X,me){if(1&X&&(f.qex(0),f.DNE(1,L,6,5,"div",33)(2,_,3,3,"div",20),f.bVm()),2&X){const ce=f.XpG();f.R7$(),f.Y8G("ngIf",ce.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!ce.flgInvoicePaid)}}function v(X,me){1&X&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function V(X,me){1&X&&f.nrm(0,"mat-spinner",40),2&X&&f.Y8G("diameter",20)}function N(X,me){if(1&X&&(f.qex(0),f.DNE(1,v,2,0,"span",20)(2,V,1,1,"mat-spinner",39),f.bVm()),2&X){const ce=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==ce.invoice?null:ce.invoice.status)||!ce.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","unpaid"===(null==ce.invoice?null:ce.invoice.status)&&ce.flgVersionCompatible)}}function ne(X,me){if(1&X&&(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&X){const ce=f.XpG();f.R7$(7),f.JRh(f.i5U(8,4,1e3*(null==ce.invoice?null:ce.invoice.expiresAt),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(14,7,1e3*(null==ce.invoice?null:ce.invoice.receivedAt),"dd/MMM/y HH:mm")),f.R7$(8),f.JRh(null==ce.invoice?null:ce.invoice.paymentHash),f.R7$(7),f.JRh(null==ce.invoice?null:ce.invoice.nodeId)}}function Ee(X,me){1&X&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ze(X,me){1&X&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function qe(X,me){if(1&X){const ce=f.RV6();f.j41(0,"button",43),f.bIt("copied",function(ke){f.eBV(ce);const mt=f.XpG();return f.Njj(mt.onCopyPayment(ke))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&X){const ce=f.XpG();f.Y8G("payload",null==ce.invoice?null:ce.invoice.serialized)}}function Ke(X,me){if(1&X){const ce=f.RV6();f.j41(0,"button",44),f.bIt("click",function(){f.eBV(ce);const ke=f.XpG();return f.Njj(ke.onClose())}),f.EFF(1,"OK"),f.k0s()}}let se=(()=>{class X{constructor(ce,fe,ke,mt,_e,be){this.dialogRef=ce,this.data=fe,this.logger=ke,this.commonService=mt,this.snackBar=_e,this.store=be,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.p3).pipe((0,S.Q)(this.unSubs[0])).subscribe(ce=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ce.version,"0.5.0")}),this.store.select(x.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(ce=>{const fe=this.invoice.status,mt=(ce.invoices&&ce.invoices.length>0?ce.invoices:[])?.find(_e=>_e.paymentHash===this.invoice.paymentHash)||null;mt&&(this.invoice=mt),fe!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(ce)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(ce){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+ce)}ngOnDestroy(){this.unSubs.forEach(ce=>{ce.next(null),ce.complete()})}static#e=this.\u0275fac=function(fe){return new(fe||X)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:X,selectors:[["rtl-ecl-invoice-information"]],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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(fe,ke){if(1&fe){const mt=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,D,1,3,"qr-code",3)(3,n,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 f.eBV(mt),f.Njj(ke.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),f.DNE(15,c,1,3,"qr-code",3)(16,m,2,0,"span",14),f.k0s(),f.DNE(17,h,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,C,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,r,3,2,"ng-container",20)(31,N,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,ne,30,10,"div",20),f.j41(61,"div",24)(62,"button",25),f.bIt("click",function(){return f.eBV(mt),f.Njj(ke.onShowAdvanced())}),f.DNE(63,Ee,2,0,"p",26)(64,ze,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(66,qe,2,1,"button",27)(67,Ke,2,0,"button",28),f.k0s()()()()()}if(2&fe){const mt=f.sdS(65);f.R7$(),f.Y8G("fxLayoutAlign",null!=ke.invoice&&ke.invoice.serialized&&""!==(null==ke.invoice?null:ke.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(33,ae,ke.screenSize===ke.screenSizeEnum.XS||ke.screenSize===ke.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(4),f.Y8G("icon",ke.faReceipt),f.R7$(2),f.JRh(ke.screenSize===ke.screenSizeEnum.XS?ke.newlyAdded?"Created":"Invoice":ke.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(35,Me,ke.screenSize===ke.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=ke.invoice&&ke.invoice.serialized&&""!==(null==ke.invoice?null:ke.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(37,ae,ke.screenSize!==ke.screenSizeEnum.XS&&ke.screenSize!==ke.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",ke.screenSize===ke.screenSizeEnum.XS||ke.screenSize===ke.screenSizeEnum.SM),f.R7$(6),f.SpI("",f.bMT(24,26,(null==ke.invoice?null:ke.invoice.amount)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.amount)||"0"===(null==ke.invoice?null:ke.invoice.amount)),f.R7$(5),f.Y8G("ngIf",null==ke.invoice?null:ke.invoice.amountSettled),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.amountSettled)),f.R7$(7),f.JRh(f.i5U(39,28,1e3*(null==ke.invoice?null:ke.invoice.timestamp),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.bMT(45,31,null==ke.invoice?null:ke.invoice.status)),f.R7$(8),f.JRh((null==ke.invoice?null:ke.invoice.description)||"-"),f.R7$(7),f.JRh((null==ke.invoice?null:ke.invoice.serialized)||"N/A"),f.R7$(),f.Y8G("ngIf",ke.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(39,Te,!ke.showAdvanced,ke.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!ke.showAdvanced)("ngIfElse",mt),f.R7$(3),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized))}},dependencies:[F.YU,F.Sq,F.bT,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,j.m2,j.MM,Q.q,J.LG,ee.Um,ie.U,ge.N,F.QX,F.PV,F.vh]})}return X})()},190:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>se,$J:()=>ne,$Q:()=>de,As:()=>fe,Br:()=>d,CK:()=>_e,DI:()=>ae,DY:()=>ge,Do:()=>Ke,Dq:()=>X,Fd:()=>pe,GZ:()=>Xe,Gy:()=>y,H2:()=>r,Hm:()=>zt,J9:()=>Te,Jx:()=>J,L:()=>v,Lf:()=>ze,NS:()=>f,O8:()=>mt,Qj:()=>F,SM:()=>ke,Sn:()=>I,T4:()=>$t,Uj:()=>be,Uo:()=>ie,VK:()=>j,WE:()=>Ye,X9:()=>x,XT:()=>pt,Yi:()=>Nt,Zi:()=>$,_$:()=>me,aB:()=>ye,ar:()=>n,b1:()=>St,cR:()=>_,cU:()=>c,dv:()=>D,e8:()=>w,ed:()=>W,fy:()=>C,ij:()=>Yt,jk:()=>Et,kv:()=>tt,lg:()=>l,mh:()=>ce,oX:()=>Ie,p1:()=>S,pL:()=>m,sq:()=>R,t0:()=>_t,t5:()=>Ee,tG:()=>Jt,tf:()=>Me,uK:()=>oe,vL:()=>k,w0:()=>L,x1:()=>T,yp:()=>ee,z2:()=>h,zU:()=>rt});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.QP.UPDATE_API_CALL_STATUS_LND,(0,e.xk)()),S=(0,e.VP)(t.QP.RESET_LND_STORE),l=(0,e.VP)(t.QP.FETCH_PAGE_SETTINGS_LND),x=(0,e.VP)(t.QP.UPDATE_SELECTED_NODE_OPTIONS),f=(0,e.VP)(t.QP.SET_PAGE_SETTINGS_LND,(0,e.xk)()),I=(0,e.VP)(t.QP.SAVE_PAGE_SETTINGS_LND,(0,e.xk)()),d=(0,e.VP)(t.QP.FETCH_INFO_LND,(0,e.xk)()),T=(0,e.VP)(t.QP.SET_INFO_LND,(0,e.xk)()),y=(0,e.VP)(t.QP.FETCH_PEERS_LND),F=(0,e.VP)(t.QP.SET_PEERS_LND,(0,e.xk)()),R=(0,e.VP)(t.QP.SAVE_NEW_PEER_LND,(0,e.xk)()),W=((0,e.VP)(t.QP.NEWLY_ADDED_PEER_LND,(0,e.xk)()),(0,e.VP)(t.QP.DETACH_PEER_LND,(0,e.xk)())),$=(0,e.VP)(t.QP.REMOVE_PEER_LND,(0,e.xk)()),j=(0,e.VP)(t.QP.SAVE_NEW_INVOICE_LND,(0,e.xk)()),J=((0,e.VP)(t.QP.NEWLY_SAVED_INVOICE_LND,(0,e.xk)()),(0,e.VP)(t.QP.ADD_INVOICE_LND,(0,e.xk)())),ee=(0,e.VP)(t.QP.FETCH_FEES_LND),ie=(0,e.VP)(t.QP.SET_FEES_LND,(0,e.xk)()),ge=(0,e.VP)(t.QP.FETCH_BLOCKCHAIN_BALANCE_LND),ae=(0,e.VP)(t.QP.SET_BLOCKCHAIN_BALANCE_LND,(0,e.xk)()),Me=(0,e.VP)(t.QP.FETCH_NETWORK_LND),Te=(0,e.VP)(t.QP.SET_NETWORK_LND,(0,e.xk)()),de=(0,e.VP)(t.QP.FETCH_CHANNELS_LND),D=(0,e.VP)(t.QP.SET_CHANNELS_LND,(0,e.xk)()),n=(0,e.VP)(t.QP.FETCH_PENDING_CHANNELS_LND),c=(0,e.VP)(t.QP.SET_PENDING_CHANNELS_LND,(0,e.xk)()),m=(0,e.VP)(t.QP.FETCH_CLOSED_CHANNELS_LND),h=(0,e.VP)(t.QP.SET_CLOSED_CHANNELS_LND,(0,e.xk)()),C=(0,e.VP)(t.QP.UPDATE_CHANNEL_LND,(0,e.xk)()),k=(0,e.VP)(t.QP.SAVE_NEW_CHANNEL_LND,(0,e.xk)()),L=(0,e.VP)(t.QP.CLOSE_CHANNEL_LND,(0,e.xk)()),_=(0,e.VP)(t.QP.REMOVE_CHANNEL_LND,(0,e.xk)()),r=(0,e.VP)(t.QP.BACKUP_CHANNELS_LND,(0,e.xk)()),v=(0,e.VP)(t.QP.VERIFY_CHANNEL_LND,(0,e.xk)()),ne=((0,e.VP)(t.QP.BACKUP_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.VERIFY_CHANNEL_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.RESTORE_CHANNELS_LIST_LND)),Ee=(0,e.VP)(t.QP.SET_RESTORE_CHANNELS_LIST_LND,(0,e.xk)()),ze=(0,e.VP)(t.QP.RESTORE_CHANNELS_LND,(0,e.xk)()),Ke=((0,e.VP)(t.QP.RESTORE_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_INVOICES_LND,(0,e.xk)())),se=(0,e.VP)(t.QP.SET_INVOICES_LND,(0,e.xk)()),X=(0,e.VP)(t.QP.UPDATE_INVOICE_LND,(0,e.xk)()),me=(0,e.VP)(t.QP.UPDATE_PAYMENT_LND,(0,e.xk)()),ce=(0,e.VP)(t.QP.FETCH_TRANSACTIONS_LND),fe=(0,e.VP)(t.QP.SET_TRANSACTIONS_LND,(0,e.xk)()),ke=(0,e.VP)(t.QP.FETCH_UTXOS_LND),mt=(0,e.VP)(t.QP.SET_UTXOS_LND,(0,e.xk)()),_e=(0,e.VP)(t.QP.FETCH_PAYMENTS_LND,(0,e.xk)()),be=(0,e.VP)(t.QP.SET_PAYMENTS_LND,(0,e.xk)()),pe=(0,e.VP)(t.QP.SEND_PAYMENT_LND,(0,e.xk)()),_t=((0,e.VP)(t.QP.SEND_PAYMENT_STATUS_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_GRAPH_NODE_LND,(0,e.xk)())),pt=((0,e.VP)(t.QP.SET_GRAPH_NODE_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_NEW_ADDRESS_LND,(0,e.xk)())),ye=((0,e.VP)(t.QP.SET_NEW_ADDRESS_LND,(0,e.xk)()),(0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_LND,(0,e.xk)())),Ie=((0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.GEN_SEED_LND,(0,e.xk)())),Xe=((0,e.VP)(t.QP.GEN_SEED_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.INIT_WALLET_LND,(0,e.xk)())),Ye=((0,e.VP)(t.QP.INIT_WALLET_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.UNLOCK_WALLET_LND,(0,e.xk)())),rt=(0,e.VP)(t.QP.PEER_LOOKUP_LND,(0,e.xk)()),Yt=(0,e.VP)(t.QP.CHANNEL_LOOKUP_LND,(0,e.xk)()),Nt=(0,e.VP)(t.QP.INVOICE_LOOKUP_LND,(0,e.xk)()),Et=(0,e.VP)(t.QP.PAYMENT_LOOKUP_LND,(0,e.xk)()),oe=((0,e.VP)(t.QP.SET_LOOKUP_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_FORWARDING_HISTORY_LND,(0,e.xk)())),tt=(0,e.VP)(t.QP.SET_FORWARDING_HISTORY_LND,(0,e.xk)()),$t=(0,e.VP)(t.QP.GET_QUERY_ROUTES_LND,(0,e.xk)()),zt=(0,e.VP)(t.QP.SET_QUERY_ROUTES_LND,(0,e.xk)()),Jt=(0,e.VP)(t.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),St=(0,e.VP)(t.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,e.xk)())},9579:(Qe,te,g)=>{"use strict";g.d(te,{L:()=>Te});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(3993),d=g(6391),T=g(2462),y=g(4416),F=g(1771),R=g(190),z=g(3536),W=g(4438),$=g(1626),j=g(9640),Q=g(8570),J=g(2571),ee=g(3202),ie=g(5351),ge=g(1188),ae=g(7879),Me=g(177);let Te=(()=>{class de{constructor(n,c,m,h,C,k,L,_,r,v){this.actions=n,this.httpClient=c,this.store=m,this.logger=h,this.commonService=C,this.sessionService=k,this.dialog=L,this.router=_,this.wsService=r,this.location=v,this.CHILD_API_URL=y.H$+"/lnd",this.invoicesPageSettings=y.ZC.find(V=>"transactions"===V.pageId)?.tables.find(V=>"invoices"===V.tableId),this.paymentsPageSettings=y.ZC.find(V=>"transactions"===V.pageId)?.tables.find(V=>"payments"===V.tableId),this.flgInitialized=!1,this.unSubs=[new t.B,new t.B],this.infoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INFO_LND),(0,S.Z)(V=>(this.flgInitialized=!1,this.store.dispatch((0,F.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.mt)({payload:y.MZ.GET_NODE_INFO})),this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(y.aU.SET_SELECTED_NODE))),(0,x.T)(N=>(this.logger.info(N),N.chains&&N.chains.length&&N.chains[0]&&("string"==typeof N.chains[0]&&N.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof N.chains[0]&&N.chains[0].hasOwnProperty("chain")&&N.chains[0].chain&&N.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.xO)({payload:{data:{type:y.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:y.aU.LOGOUT}):N.identity_pubkey?(N.lnImplementation="LND",this.initializeRemainingData(N,V.payload.loadPage),this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),{type:y.QP.SET_INFO_LND,payload:N||{}}):(this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:y.QP.SET_INFO_LND,payload:{}}))),(0,f.W)(N=>{if("string"==typeof N.error.error&&N.error.error.includes("Not Found")||"string"==typeof N.error.error&&N.error.error.includes("wallet locked")||502===N.status&&!N.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",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",N);else if("string"==typeof N.error.error&&N.error.error.includes("starting up")&&500===N.status)setTimeout(()=>{this.store.dispatch((0,R.Br)({payload:{loadPage:"HOME"}}))},2e3);else{const ne=this.commonService.extractErrorCode(N),Ee=503===ne?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(N);this.router.navigate(["/error"],{state:{errorCode:ne,errorMessage:Ee}}),this.handleErrorWithoutAlert("FetchInfo",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ne,error:Ee})}return(0,w.of)({type:y.aU.VOID})})))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PEERS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPeers",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PEERS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPeers",status:y.wn.COMPLETED}})),{type:y.QP.SET_PEERS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPeers",y.MZ.NO_SPINNER,"Fetching Peers Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_PEER_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewPeer",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.PEERS_API,{pubkey:V.payload.pubkey,host:V.payload.host,perm:V.payload.perm}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewPeer",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,R.Qj)({payload:N||[]})),{type:y.QP.NEWLY_ADDED_PEER_LND,payload:{peer:N[0]}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewPeer",y.MZ.CONNECT_PEER,"Peer Connection Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.DETACH_PEER_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+y.rl.PEERS_API+"/"+V.payload.pubkey).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.DISCONNECT_PEER})),this.store.dispatch((0,F.UI)({payload:"Peer Disconnected Successfully."})),{type:y.QP.REMOVE_PEER_LND,payload:{pubkey:V.payload.pubkey}})),(0,f.W)(N=>(this.handleErrorWithAlert("DetachPeer",y.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+y.rl.PEERS_API+"/"+V.payload.pubkey,N),(0,w.of)({type:y.aU.VOID})))))))),this.saveNewInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_INVOICE_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewInvoice",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.INVOICES_API,{memo:V.payload.memo,value:V.payload.value,private:V.payload.private,expiry:V.payload.expiry,is_amp:V.payload.is_amp}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewInvoice",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:V.payload.pageSize,reversed:!0}})),V.payload.openModal?(N.memo=V.payload.memo,N.value=V.payload.value,N.expiry=V.payload.expiry,N.private=V.payload.private,N.is_amp=V.payload.is_amp,N.cltv_expiry="144",N.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,F.xO)({payload:{data:{invoice:N,newlyAdded:!0,component:d.H}}}))},200),{type:y.aU.CLOSE_SPINNER,payload:V.payload.uiMessage}):{type:y.QP.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:N.payment_request}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewInvoice",V.payload.uiMessage,"Add Invoice Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API,{node_pubkey:V.payload.selectedPeerPubkey,local_funding_amount:V.payload.fundingAmount,private:V.payload.private,trans_type:V.payload.transType,trans_type_value:V.payload.transTypeValue,spend_unconfirmed:V.payload.spendUnconfirmed,commitment_type:V.payload.commitmentType}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:y.QP.FETCH_PENDING_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewChannel",y.MZ.OPEN_CHANNEL,"Opening Channel Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",{baseFeeMsat:V.payload.baseFeeMsat,feeRate:V.payload.feeRate,timeLockDelta:V.payload.timeLockDelta,max_htlc_msat:V.payload.maxHtlcMsat,min_htlc_msat:V.payload.minHtlcMsat,chanPoint:V.payload.chanPoint}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,F.UI)("all"===V.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:y.QP.FETCH_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithAlert("UpdateChannels",y.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",N),(0,w.of)({type:y.aU.VOID})))))))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CLOSE_CHANNEL_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL}));let N=this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+V.payload.channelPoint+"?force="+V.payload.forcibly;return V.payload.targetConf&&(N=N+"&target_conf="+V.payload.targetConf),V.payload.satPerByte&&(N=N+"&sat_per_byte="+V.payload.satPerByte),this.httpClient.delete(N).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.ar)()),this.store.dispatch((0,R.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:ne.message}})),{type:y.aU.VOID})),(0,f.W)(ne=>(this.handleErrorWithAlert("CloseChannel",V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+V.payload.channelPoint+"?force="+V.payload.forcibly,ne),(0,w.of)({type:y.aU.VOID}))))}))),this.backupChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.BACKUP_CHANNELS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"BackupChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+V.payload.channelPoint).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"BackupChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,F.UI)({payload:V.payload.showMessage+" "+N.message})),{type:y.QP.BACKUP_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("BackupChannels",V.payload.uiMessage,V.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.verifyChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.VERIFY_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"VerifyChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+V.payload.channelPoint,{}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"VerifyChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,F.UI)({payload:N.message})),{type:y.QP.VERIFY_CHANNEL_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("VerifyChannel",y.MZ.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.restoreChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannels",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+V.payload.channelPoint,{}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,F.UI)({payload:N.message})),this.store.dispatch((0,R.t5)({payload:N.list})),{type:y.QP.RESTORE_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("RestoreChannels",y.MZ.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_FEES_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchFees",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.FEES_API))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchFees",status:y.wn.COMPLETED}})),V.forwarding_events_history&&(this.store.dispatch((0,R.kv)({payload:V.forwarding_events_history})),delete V.forwarding_events_history),{type:y.QP.SET_FEES_LND,payload:V||{}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchFees",y.MZ.NO_SPINNER,"Fetching Fees Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.balanceBlockchainFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_BLOCKCHAIN_BALANCE_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchBalance",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.BALANCE_API))),(0,x.T)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchBalance",status:y.wn.COMPLETED}})),this.logger.info(V),{type:y.QP.SET_BLOCKCHAIN_BALANCE_LND,payload:V||{total_balance:""}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchBalance",y.MZ.NO_SPINNER,"Fetching Blockchain Balance Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.networkInfoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_NETWORK_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchNetwork",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/info"))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchNetwork",status:y.wn.COMPLETED}})),{type:y.QP.SET_NETWORK_LND,payload:V||{}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchNetwork",y.MZ.NO_SPINNER,"Fetching Network Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CHANNELS_LND,payload:V.channels||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchChannels",y.MZ.NO_SPINNER,"Fetching Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.channelsPendingFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PENDING_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPendingChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/pending").pipe((0,x.T)(V=>{this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPendingChannels",status:y.wn.COMPLETED}}));const N={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 V&&(N.total_limbo_balance=V.total_limbo_balance,V.pending_closing_channels&&(N.closing.num_channels=V.pending_closing_channels.length,N.total_channels=N.total_channels+V.pending_closing_channels.length,V.pending_closing_channels.forEach(ne=>{N.closing.limbo_balance=+N.closing.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.pending_force_closing_channels&&(N.force_closing.num_channels=V.pending_force_closing_channels.length,N.total_channels=N.total_channels+V.pending_force_closing_channels.length,V.pending_force_closing_channels.forEach(ne=>{N.force_closing.limbo_balance=+N.force_closing.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.pending_open_channels&&(N.open.num_channels=V.pending_open_channels.length,N.total_channels=N.total_channels+V.pending_open_channels.length,V.pending_open_channels.forEach(ne=>{N.open.limbo_balance=+N.open.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.waiting_close_channels&&(N.waiting_close.num_channels=V.waiting_close_channels.length,N.total_channels=N.total_channels+V.waiting_close_channels.length,V.waiting_close_channels.forEach(ne=>{N.waiting_close.limbo_balance=+N.waiting_close.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)}))),{type:y.QP.SET_PENDING_CHANNELS_LND,payload:V?{pendingChannels:V,pendingChannelsSummary:N}:{pendingChannels:{},pendingChannelsSummary:N}}}),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPendingChannels",y.MZ.NO_SPINNER,"Fetching Pending Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.channelsClosedFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CLOSED_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchClosedChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/closed").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchClosedChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CLOSED_CHANNELS_LND,payload:V.channels||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchClosedChannels",y.MZ.NO_SPINNER,"Fetching Closed Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INVOICES_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchInvoices",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.INVOICES_API+"?num_max_invoices="+(V.payload.num_max_invoices?V.payload.num_max_invoices:100)+"&index_offset="+(V.payload.index_offset?V.payload.index_offset:0)+"&reversed="+(!!V.payload.reversed&&V.payload.reversed)).pipe((0,x.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,R.e8)({payload:{action:"FetchInvoices",status:y.wn.COMPLETED}})),V.payload.reversed&&!V.payload.index_offset&&(ze.total_invoices=+(ze.last_index_offset||0)),{type:y.QP.SET_INVOICES_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchInvoices",y.MZ.NO_SPINNER,"Fetching Invoices Failed.",ze),(0,w.of)({type:y.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_TRANSACTIONS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.TRANSACTIONS_API))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_TRANSACTIONS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchTransactions",y.MZ.NO_SPINNER,"Fetching Transactions Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.utxosFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_UTXOS_LND),(0,I.E)(this.store.select(z.pI)),(0,S.Z)(([V,N])=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchUTXOs",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/getUTXOs?max_confs="+(N&&N.block_height?N.block_height:1e9)))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchUTXOs",status:y.wn.COMPLETED}})),{type:y.QP.SET_UTXOS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchUTXOs",y.MZ.NO_SPINNER,"Fetching UTXOs Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.paymentsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAYMENTS_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPayments",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"?max_payments="+(V.payload.max_payments?V.payload.max_payments:100)+"&index_offset="+(V.payload.index_offset?V.payload.index_offset:0)+"&reversed="+(!!V.payload.reversed&&V.payload.reversed)).pipe((0,x.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,R.e8)({payload:{action:"FetchPayments",status:y.wn.COMPLETED}})),this.commonService.sortByKey(ze.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:y.QP.SET_PAYMENTS_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchPayments",y.MZ.NO_SPINNER,"Fetching Payments Failed.",ze),(0,w.of)({type:y.QP.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SEND_PAYMENT_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.INITIATED}}));const N={};return N.paymentReq=V.payload.paymentReq,V.payload.paymentAmount&&(N.paymentAmount=V.payload.paymentAmount),V.payload.outgoingChannel&&(N.outgoingChannel=V.payload.outgoingChannel.chan_id),V.payload.allowSelfPayment&&(N.allowSelfPayment=V.payload.allowSelfPayment),V.payload.lastHopPubkey&&(N.lastHopPubkey=V.payload.lastHopPubkey),V.payload.feeLimitType&&V.payload.feeLimitType!==y.nv[0].id&&(N.feeLimit={},N.feeLimit[V.payload.feeLimitType]=V.payload.feeLimit),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",N).pipe((0,x.T)(ne=>{if(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),ne.payment_error)return V.payload.allowSelfPayment?(this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:ne}):(V.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne.payment_error):this.handleErrorWithAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",ne.payment_error),{type:y.aU.VOID});if(this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.CK)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),V.payload.allowSelfPayment)this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let Ee="Payment Sent Successfully.";ne.payment_route&&ne.payment_route.total_fees_msat&&(Ee="Payment sent successfully with the total fee "+ne.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,F.UI)({payload:Ee}))}return{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:ne}}),(0,f.W)(ne=>(this.logger.error("Error: "+JSON.stringify(ne)),V.payload.allowSelfPayment?(this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,w.of)({type:y.QP.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(ne)}})):(V.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne):this.handleErrorWithAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",ne),(0,w.of)({type:y.aU.VOID})))))}))),this.graphNodeFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_GRAPH_NODE_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,R.e8)({payload:{action:"FetchGraphNode",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload.pubkey).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,R.e8)({payload:{action:"FetchGraphNode",status:y.wn.COMPLETED}})),{type:y.QP.SET_GRAPH_NODE_LND,payload:N&&N.node?{node:N.node}:{node:null}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("FetchGraphNode",y.MZ.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.setGraphNode=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_GRAPH_NODE_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_NEW_ADDRESS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+V.payload.addressId).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GENERATE_NEW_ADDRESS})),{type:y.QP.SET_NEW_ADDRESS_LND,payload:N&&N.address?N.address:{}})),(0,f.W)(N=>(this.handleErrorWithAlert("GetNewAddress",y.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+V.payload.addressId,N),(0,w.of)({type:y.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_NEW_ADDRESS_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_CHANNEL_TRANSACTION_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,R.e8)({payload:{action:"SetChannelTransaction",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.TRANSACTIONS_API,{amount:V.payload.amount,address:V.payload.address,sendAll:V.payload.sendAll,fees:V.payload.fees,blocks:V.payload.blocks}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SetChannelTransaction",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,R.mh)()),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),{type:y.QP.SET_CHANNEL_TRANSACTION_RES_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SetChannelTransaction",y.MZ.SEND_FUNDS,"Sending Fund Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.fetchForwardingHistory=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_FORWARDING_HISTORY_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.SWITCH_API,{num_max_events:V.payload.num_max_events,index_offset:V.payload.index_offset,end_time:V.payload.end_time,start_time:V.payload.start_time}).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,R.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.COMPLETED}})),{type:y.QP.SET_FORWARDING_HISTORY_LND,payload:ne})),(0,f.W)(ne=>(this.handleErrorWithAlert("FetchForwardingHistory",y.MZ.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+y.rl.SWITCH_API,ne),(0,w.of)({type:y.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_QUERY_ROUTES_LND),(0,S.Z)(V=>{let N=this.CHILD_API_URL+y.rl.NETWORK_API+"/routes/"+V.payload.destPubkey+"/"+V.payload.amount;return V.payload.outgoingChanId&&(N=N+"?outgoing_chan_id="+V.payload.outgoingChanId),this.httpClient.get(N).pipe((0,x.T)(ne=>(this.logger.info(ne),{type:y.QP.SET_QUERY_ROUTES_LND,payload:ne})),(0,f.W)(ne=>(this.store.dispatch((0,R.Hm)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",y.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+y.rl.NETWORK_API,ne),(0,w.of)({type:y.aU.VOID}))))}))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_QUERY_ROUTES_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.genSeed=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+V.payload).pipe((0,x.T)(N=>(this.logger.info("Generated GenSeed!"),this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GEN_SEED})),{type:y.QP.GEN_SEED_RESPONSE_LND,payload:N.cipher_seed_mnemonic})),(0,f.W)(N=>(this.handleErrorWithAlert("GenSeed",y.MZ.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+V.payload,N),(0,w.of)({type:y.aU.VOID})))))))),this.updateSelNodeOptions=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_SELECTED_NODE_OPTIONS),(0,S.Z)(()=>this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/updateSelNodeOptions").pipe((0,x.T)(V=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(V),{type:y.aU.VOID})),(0,f.W)(V=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",y.MZ.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",V),(0,w.of)({type:y.aU.VOID}))))))),this.genSeedResponse=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_RESPONSE_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.initWalletRes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_RESPONSE_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.initWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/initwallet",{wallet_password:V.payload.pwd,cipher_seed_mnemonic:V.payload.cipher?V.payload.cipher:"",aezeed_passphrase:V.payload.passphrase?V.payload.passphrase:""}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.INITIALIZE_WALLET})),{type:y.QP.INIT_WALLET_RESPONSE_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("InitWallet",y.MZ.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/initwallet",N),(0,w.of)({type:y.aU.VOID})))))))),this.unlockWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UNLOCK_WALLET_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/unlockwallet",{wallet_password:V.payload.pwd}).pipe((0,x.T)(N=>(this.logger.info(N),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,F.y0)({payload:y.MZ.UNLOCK_WALLET})),this.store.dispatch((0,F.mt)({payload:y.MZ.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,F.y0)({payload:y.MZ.WAIT_SYNC_NODE})),this.store.dispatch((0,R.Br)({payload:{loadPage:"HOME"}}))},5e3),{type:y.aU.VOID})),(0,f.W)(N=>(this.handleErrorWithAlert("UnlockWallet",y.MZ.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/unlockwallet",N),(0,w.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PEER_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",y.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload,N),(0,w.of)({type:y.aU.VOID})))))))),this.channelLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CHANNEL_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+V.payload.channelID).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",V.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+V.payload.channelID,N),(0,w.of)({type:y.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INVOICE_LOOKUP_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}}));let N=this.CHILD_API_URL+y.rl.INVOICES_API+"/lookup";return N=V.payload.paymentAddress&&""!==V.payload.paymentAddress?N+"?payment_addr="+V.payload.paymentAddress:N+"?payment_hash="+V.payload.paymentHash,this.httpClient.get(N).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.Dq)({payload:ne})),{type:y.QP.SET_LOOKUP_LND,payload:ne})),(0,f.W)(ne=>(this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",ne),V.payload.openSnackBar&&this.store.dispatch((0,F.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:ne}}))))}))),this.paymentLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PAYMENT_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/lookup/"+V.payload).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,R._$)({payload:N})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_PAYMENT,"Payment Lookup Failed",N),(0,w.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:N}})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_LOOKUP_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LIST_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannelsList",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/list").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannelsList",status:y.wn.COMPLETED}})),{type:y.QP.SET_RESTORE_CHANNELS_LIST_LND,payload:V||{all_restore_exists:!1,files:[]}})),(0,f.W)(V=>(this.handleErrorWithAlert("RestoreChannelsList",y.MZ.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API,V),(0,w.of)({type:y.aU.VOID})))))))),this.setRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_RESTORE_CHANNELS_LIST_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/alltransactions").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:V})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchLightningTransactions",y.MZ.NO_SPINNER,"Fetching All Lightning Transaction Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.pageSettingsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAGE_SETTINGS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPageSettings",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.PAGE_SETTINGS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPageSettings",status:y.wn.COMPLETED}})),this.invoicesPageSettings=V&&Object.keys(V).length>0?V.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId),this.paymentsPageSettings=V&&Object.keys(V).length>0?V.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPageSettings",y.MZ.NO_SPINNER,"Fetching Page Settings Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.savePageSettings=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_PAGE_SETTINGS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,R.e8)({payload:{action:"SavePageSettings",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.PAGE_SETTINGS_API,V.payload).pipe((0,x.T)(N=>{this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SavePageSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.UI)({payload:"Page Layout Updated Successfully!"}));const ne=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)).recordsPerPage,Ee=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)).recordsPerPage;return this.invoicesPageSettings&&ne!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ne,this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&Ee!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=Ee),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:N||[]}}),(0,f.W)(N=>(this.handleErrorWithAlert("SavePageSettings",y.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",y.rl.PAGE_SETTINGS_API,N),(0,w.of)({type:y.aU.VOID})))))))),this.store.select(z.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(V=>{V.FetchInfo.status!==y.wn.COMPLETED&&V.FetchInfo.status!==y.wn.ERROR||V.FetchFees.status!==y.wn.COMPLETED&&V.FetchFees.status!==y.wn.ERROR||V.FetchBalanceBlockchain.status!==y.wn.COMPLETED&&V.FetchBalanceBlockchain.status!==y.wn.ERROR||V.FetchAllChannels.status!==y.wn.COMPLETED&&V.FetchAllChannels.status!==y.wn.ERROR||V.FetchPendingChannels.status!==y.wn.COMPLETED&&V.FetchPendingChannels.status!==y.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,F.y0)({payload:y.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(V=>{this.logger.info("Received new message from the service: "+JSON.stringify(V)),V&&(V.type===y.o1.INVOICE?(this.logger.info(V),V&&V.result&&V.result.payment_request&&this.store.dispatch((0,R.Dq)({payload:V.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(V)))})}initializeRemainingData(n,c){this.sessionService.setItem("lndUnlocked","true");const m={identity_pubkey:n.identity_pubkey,alias:n.alias,testnet:n.testnet,chains:n.chains,uris:n.uris,version:n.version?n.version.split(" ")[0]:""};this.store.dispatch((0,F.mt)({payload:y.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,F.Fl)({payload:m}));let h=this.location.path();h.includes("/cln/")?h=h?.replace("/cln/","/lnd/"):h.includes("/ecl/")&&(h=h?.replace("/ecl/","/lnd/")),(h.includes("/unlock")||h.includes("/login")||h.includes("/error")||""===h||"HOME"===c||h.includes("?access-key="))&&(h="/lnd/home"),this.router.navigate([h]),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.ar)()),this.store.dispatch((0,R.pL)()),this.store.dispatch((0,R.Gy)()),this.store.dispatch((0,R.tf)()),this.store.dispatch((0,R.yp)()),this.store.dispatch((0,R.CK)({payload:{max_payments:1e5,reversed:!0}})),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(n,c,m,h){this.logger.error("ERROR IN: "+n+"\n"+JSON.stringify(h)),401===h.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)}))):(this.store.dispatch((0,F.y0)({payload:c})),this.store.dispatch((0,R.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:h.status.toString(),message:this.commonService.extractErrorMessage(h,m)}})))}handleErrorWithAlert(n,c,m,h,C){if(this.logger.error(C),401===C.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.ri)({payload:"Authentication Failed: "+JSON.stringify(C.error)}));else{this.store.dispatch((0,F.y0)({payload:c}));const k=this.commonService.extractErrorMessage(C);this.store.dispatch((0,F.xO)({payload:{data:{type:"ERROR",alertTitle:m,message:{code:C.status,message:k,URL:h},component:T.f}}})),this.store.dispatch((0,R.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:C.status.toString(),message:k,URL:h}}))}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#e=this.\u0275fac=function(c){return new(c||de)(W.KVO(e.En),W.KVO($.Qq),W.KVO(j.il),W.KVO(Q.gP),W.KVO(J.h),W.KVO(ee.Q),W.KVO(ie.bZ),W.KVO(ge.Ix),W.KVO(ae.I),W.KVO(Me.aZ))};static#t=this.\u0275prov=W.jDH({token:de,factory:de.\u0275fac})}return de})()},3536:(Qe,te,g)=>{"use strict";g.d(te,{$7:()=>j,$G:()=>w,BM:()=>R,Bw:()=>$,Ie:()=>f,KT:()=>I,Uv:()=>W,ah:()=>J,eO:()=>ge,gN:()=>y,gj:()=>ae,n_:()=>ie,oR:()=>d,os:()=>T,pI:()=>S,rN:()=>F,ru:()=>x,tA:()=>ee});var e=g(9640);const t=(0,e.UX)("lnd"),w=(0,e.Mz)(t,Me=>({pageSettings:Me.pageSettings,apiCallStatus:Me.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,Me=>Me.information),x=((0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo})),(0,e.Mz)(t,Me=>Me.apisCallStatus)),f=(0,e.Mz)(t,Me=>({forwardingHistory:Me.forwardingHistory,apiCallStatus:Me.apisCallStatus.FetchForwardingHistory})),I=(0,e.Mz)(t,Me=>({listPayments:Me.listPayments,apiCallStatus:Me.apisCallStatus.FetchPayments})),d=(0,e.Mz)(t,Me=>({fees:Me.fees,apiCallStatus:Me.apisCallStatus.FetchFees})),T=(0,e.Mz)(t,Me=>({peers:Me.peers,apiCallStatus:Me.apisCallStatus.FetchPeers})),y=(0,e.Mz)(t,Me=>({transactions:Me.transactions,apiCallStatus:Me.apisCallStatus.FetchTransactions})),F=(0,e.Mz)(t,Me=>({listInvoices:Me.listInvoices,apiCallStatus:Me.apisCallStatus.FetchInvoices})),R=(0,e.Mz)(t,Me=>({channels:Me.channels,channelsSummary:Me.channelsSummary,lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),W=((0,e.Mz)(t,Me=>({channelsSummary:Me.channelsSummary,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({pendingChannels:Me.pendingChannels,pendingChannelsSummary:Me.pendingChannelsSummary,apiCallStatus:Me.apisCallStatus.FetchPendingChannels}))),$=(0,e.Mz)(t,Me=>({closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchClosedChannels})),j=(0,e.Mz)(t,Me=>({blockchainBalance:Me.blockchainBalance,apiCallStatus:Me.apisCallStatus.FetchBalanceBlockchain})),J=((0,e.Mz)(t,Me=>({lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({utxos:Me.utxos,apiCallStatus:Me.apisCallStatus.FetchUTXOs}))),ee=(0,e.Mz)(t,Me=>({networkInfo:Me.networkInfo,apiCallStatus:Me.apisCallStatus.FetchNetwork})),ie=(0,e.Mz)(t,Me=>({allLightningTransactions:Me.allLightningTransactions,apiCallStatus:Me.apisCallStatus.FetchLightningTransactions})),ge=(0,e.Mz)(t,Me=>({channels:Me.channels,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels})),ae=(0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo}))},6391:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>Xt});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(3536),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(9454),J=g(9213),ee=g(1997),ie=g(9183),ge=g(4823),ae=g(8288),Me=g(9157),Te=g(9587);const de=["scrollContainer"],D=ye=>({"display-none":ye}),n=ye=>({"xs-scroll-y":ye}),c=ye=>({"h-50":ye}),m=()=>[],h=ye=>({"mr-0":ye});function C(ye,ue){if(1&ye&&f.nrm(0,"qr-code",33),2&ye){const Ie=f.XpG();f.Y8G("value",null==Ie.invoice?null:Ie.invoice.payment_request)("size",Ie.qrWidth)("errorCorrectionLevel","L")}}function k(ye,ue){1&ye&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function L(ye,ue){if(1&ye&&f.nrm(0,"qr-code",33),2&ye){const Ie=f.XpG();f.Y8G("value",null==Ie.invoice?null:Ie.invoice.payment_request)("size",Ie.qrWidth)("errorCorrectionLevel","L")}}function _(ye,ue){1&ye&&(f.j41(0,"span",35),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function r(ye,ue){1&ye&&f.nrm(0,"mat-divider",24),2&ye&&f.Y8G("inset",!0)}function v(ye,ue){1&ye&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function V(ye,ue){1&ye&&f.nrm(0,"span",41)}function N(ye,ue){if(1&ye&&(f.j41(0,"div",37)(1,"div",38)(2,"span",39),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,V,1,0,"span",40),f.k0s()()),2&ye){const Ie=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==Ie.invoice?null:Ie.invoice.amt_paid_sat)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,m).constructor(35))}}function ne(ye,ue){if(1&ye&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&ye){const Ie=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==Ie.invoice?null:Ie.invoice.amt_paid_sat)," Sats")}}function Ee(ye,ue){if(1&ye&&(f.qex(0),f.DNE(1,N,6,5,"div",36)(2,ne,3,3,"div",23),f.bVm()),2&ye){const Ie=f.XpG();f.R7$(),f.Y8G("ngIf",Ie.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!Ie.flgInvoicePaid)}}function ze(ye,ue){1&ye&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function qe(ye,ue){1&ye&&f.nrm(0,"mat-spinner",43),2&ye&&f.Y8G("diameter",20)}function Ke(ye,ue){if(1&ye&&(f.qex(0),f.DNE(1,ze,2,0,"span",23)(2,qe,1,1,"mat-spinner",42),f.bVm()),2&ye){const Ie=f.XpG();f.R7$(),f.Y8G("ngIf","OPEN"!==(null==Ie.invoice?null:Ie.invoice.state)||!Ie.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","OPEN"===(null==Ie.invoice?null:Ie.invoice.state)&&Ie.flgVersionCompatible)}}function se(ye,ue){1&ye&&f.eu8(0)}function X(ye,ue){if(1&ye&&(f.j41(0,"div"),f.DNE(1,se,1,0,"ng-container",44),f.k0s()),2&ye){f.XpG();const Ie=f.sdS(79);f.R7$(),f.Y8G("ngTemplateOutlet",Ie)}}function me(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"div",45)(1,"button",46),f.bIt("click",function(){f.eBV(Ie);const Xe=f.XpG();return f.Njj(Xe.onScrollDown())}),f.j41(2,"mat-icon",47),f.EFF(3,"arrow_downward"),f.k0s()()()}}function ce(ye,ue){1&ye&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function fe(ye,ue){1&ye&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function ke(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"button",48),f.bIt("copied",function(Xe){f.eBV(Ie);const yt=f.XpG();return f.Njj(yt.onCopyPayment(Xe))}),f.EFF(1),f.k0s()}if(2&ye){const Ie=f.XpG();f.Y8G("payload",null==Ie.invoice?null:Ie.invoice.payment_request),f.R7$(),f.JRh(Ie.screenSize===Ie.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function mt(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"button",49),f.bIt("click",function(){f.eBV(Ie);const Xe=f.XpG();return f.Njj(Xe.onClose())}),f.EFF(1,"OK"),f.k0s()}}function _e(ye,ue){if(1&ye&&f.nrm(0,"span",64),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function be(ye,ue){if(1&ye&&f.nrm(0,"span",65),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function pe(ye,ue){if(1&ye&&f.nrm(0,"span",66),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function Ze(ye,ue){if(1&ye&&(f.j41(0,"div",53)(1,"div",58)(2,"span",59),f.DNE(3,_e,1,3,"span",60)(4,be,1,3,"span",61)(5,pe,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&ye){const Ie=ue.$implicit,He=f.XpG(3);f.R7$(3),f.Y8G("ngIf","SETTLED"===Ie.state),f.R7$(),f.Y8G("ngIf","ACCEPTED"===Ie.state),f.R7$(),f.Y8G("ngIf","CANCELED"===Ie.state),f.R7$(),f.SpI(" ",Ie.chan_id," "),f.R7$(2),f.JRh(f.i5U(9,6,+Ie.amt_msat/1e3||0,He.getDecimalFormat(Ie))),f.R7$(2),f.Y8G("inset",!0)}}function _t(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"div",19)(1,"mat-expansion-panel",51),f.bIt("opened",function(){f.eBV(Ie);const Xe=f.XpG(2);return f.Njj(Xe.flgOpened=!0)})("closed",function(){f.eBV(Ie);const Xe=f.XpG(2);return f.Njj(Xe.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,Ze,11,9,"div",57),f.k0s()()()}if(2&ye){const Ie=f.XpG(2);f.R7$(12),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngForOf",null==Ie.invoice?null:Ie.invoice.htlcs)}}function at(ye,ue){1&ye&&f.nrm(0,"mat-divider",24),2&ye&&f.Y8G("inset",!0)}function pt(ye,ue){if(1&ye&&(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,_t,14,2,"div",50)(34,at,1,1,"mat-divider",17)),2&ye){const Ie=f.XpG();f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Ie.invoice?null:Ie.invoice.r_preimage)||"-"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Ie.invoice?null:Ie.invoice.state),f.R7$(5),f.JRh(f.i5U(19,11,1e3*(+(null==Ie.invoice?null:Ie.invoice.creation_date)+ +(null==Ie.invoice?null:Ie.invoice.expiry)),"dd/MMM/y HH:mm")),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null!=Ie.invoice&&Ie.invoice.private?"Yes":"No"),f.R7$(5),f.JRh(null!=Ie.invoice&&Ie.invoice.is_amp?"Yes":"No"),f.R7$(),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0)}}let Xt=(()=>{class ye{set container(Ie){Ie&&(this.scrollContainer=Ie)}constructor(Ie,He,Xe,yt,Ye,rt){this.dialogRef=Ie,this.data=He,this.logger=Xe,this.commonService=yt,this.snackBar=Ye,this.store=rt,this.faReceipt=t.Mf0,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.pI).pipe((0,S.Q)(this.unSubs[0])).subscribe(He=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(He.version,"0.11.0")});const Ie=JSON.parse(JSON.stringify(this.invoice));this.store.select(x.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(He=>{const Xe=this.invoice?.state,Ye=(He.listInvoices.invoices||[]).find(rt=>rt.r_hash===Ie.r_hash)||null;Ye&&(this.invoice=Ye),Xe!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(He)})}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(Ie){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+Ie)}getDecimalFormat(Ie){return Ie.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(Ie=>{Ie.next(null),Ie.complete()})}static#e=this.\u0275fac=function(He){return new(He||ye)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:ye,selectors:[["rtl-invoice-information"]],viewQuery:function(He,Xe){if(1&He&&f.GBs(de,5),2&He){let yt;f.mGM(yt=f.lsd())&&(Xe.container=yt.first)}},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"],[3,"value","size","errorCorrectionLevel",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"],[3,"value","size","errorCorrectionLevel"],[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(He,Xe){if(1&He){const yt=f.RV6();f.j41(0,"div",3)(1,"div",4),f.DNE(2,C,1,3,"qr-code",5)(3,k,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 f.eBV(yt),f.Njj(Xe.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",13)(13,"div",14)(14,"div",15),f.DNE(15,L,1,3,"qr-code",5)(16,_,2,0,"span",16),f.k0s(),f.DNE(17,r,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,v,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,Ee,3,2,"ng-container",23)(33,Ke,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,X,2,1,"div",23),f.k0s()()(),f.DNE(70,me,4,0,"div",27),f.j41(71,"div",28)(72,"button",29),f.bIt("click",function(){return f.eBV(yt),f.Njj(Xe.onShowAdvanced())}),f.DNE(73,ce,2,0,"p",30)(74,fe,2,0,"ng-template",null,1,f.C5r),f.k0s(),f.DNE(76,ke,2,2,"button",31)(77,mt,2,0,"button",32),f.k0s()()(),f.DNE(78,pt,35,14,"ng-template",null,2,f.C5r)}if(2&He){const yt=f.sdS(75);f.R7$(),f.Y8G("fxLayoutAlign",null!=Xe.invoice&&Xe.invoice.payment_request&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(41,D,Xe.screenSize===Xe.screenSizeEnum.XS||Xe.screenSize===Xe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(4),f.Y8G("icon",Xe.faReceipt),f.R7$(2),f.JRh(Xe.screenSize===Xe.screenSizeEnum.XS?Xe.newlyAdded?"Created":"Invoice":Xe.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(43,n,Xe.screenSize===Xe.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Xe.invoice&&Xe.invoice.payment_request&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(45,D,Xe.screenSize!==Xe.screenSizeEnum.XS&&Xe.screenSize!==Xe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",Xe.screenSize===Xe.screenSizeEnum.XS||Xe.screenSize===Xe.screenSizeEnum.SM),f.R7$(),f.Y8G("ngClass",f.eq3(47,c,(null==Xe.invoice?null:Xe.invoice.htlcs)&&(null==Xe.invoice?null:Xe.invoice.htlcs.length)>0&&Xe.showAdvanced)),f.R7$(5),f.JRh(Xe.screenSize===Xe.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI("",f.bMT(26,33,(null==Xe.invoice?null:Xe.invoice.value)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.value)||"0"===(null==Xe.invoice?null:Xe.invoice.value)),f.R7$(5),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.amt_paid_sat)&&"OPEN"!==(null==Xe.invoice?null:Xe.invoice.state)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.amt_paid_sat)||"0"===(null==Xe.invoice?null:Xe.invoice.amt_paid_sat)),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(f.i5U(41,35,1e3*(null==Xe.invoice?null:Xe.invoice.creation_date),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(0!=+(null==Xe.invoice?null:Xe.invoice.settle_date)?f.i5U(47,38,1e3*+(null==Xe.invoice?null:Xe.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Xe.invoice?null:Xe.invoice.memo),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Xe.invoice?null:Xe.invoice.payment_request)||"N/A"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Xe.invoice?null:Xe.invoice.r_hash)||""),f.R7$(),f.Y8G("ngIf",Xe.showAdvanced),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.htlcs)&&(null==Xe.invoice?null:Xe.invoice.htlcs.length)>0&&Xe.showAdvanced&&Xe.flgOpened),f.R7$(3),f.Y8G("ngIf",!Xe.showAdvanced)("ngIfElse",yt),f.R7$(3),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request))}},dependencies:[F.YU,F.Sq,F.bT,F.T3,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,$.$0,j.m2,j.MM,Q.GK,Q.Z2,Q.WN,J.An,ee.q,ie.LG,ge.oV,ae.Um,Me.U,Te.N,F.QX,F.vh]})}return ye})()},1001:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>t,q:()=>w});var e=g(9969);const t=[(0,e.hZ)("opacityAnimation",[(0,e.kY)(":enter",[(0,e.iF)({opacity:0}),(0,e.i0)("1000ms ease-in",(0,e.iF)({opacity:1}))]),(0,e.kY)(":leave",[(0,e.i0)("0ms",(0,e.iF)({opacity:0}))])])],w=[(0,e.hZ)("fadeIn",[(0,e.kY)("void => *",[]),(0,e.kY)("* => void",[]),(0,e.kY)("* => *",[(0,e.i0)(800,(0,e.i7)([(0,e.iF)({opacity:0,transform:"translateY(100%)"}),(0,e.iF)({opacity:1,transform:"translateY(0%)"})]))])])]},9881:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>t});var e=g(9969);const t=(0,e.hZ)("routeAnimation",[(0,e.kY)("* => *",[(0,e.P)(":enter, :leave",(0,e.iF)({position:"fixed",width:"100%"}),{optional:!0}),(0,e.Os)([(0,e.P)(":enter",[(0,e.iF)({transform:"translateX(100%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(0%)"}))],{optional:!0}),(0,e.P)(":leave",[(0,e.iF)({transform:"translateX(0%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(-100%)"}))],{optional:!0})])])])},6949:(Qe,te,g)=>{"use strict";g.d(te,{k:()=>t});var e=g(9969);const t=[(0,e.hZ)("sliderAnimation",[(0,e.wk)("*",(0,e.iF)({transform:"translateX(0)"})),(0,e.kY)("void => backward",[(0,e.iF)({transform:"translateX(-100%"}),(0,e.i0)("800ms")]),(0,e.kY)("backward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(100%)"}))]),(0,e.kY)("void => forward",[(0,e.iF)({transform:"translateX(100%"}),(0,e.i0)("800ms")]),(0,e.kY)("forward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(-100%)"}))])])]},2462:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>y});var e=g(5351),t=g(4438),w=g(8570),S=g(177),l=g(2920),x=g(8834),f=g(5596),I=g(1997),d=g(9587);function T(F,R){if(1&F&&(t.j41(0,"p",14),t.EFF(1),t.k0s()),2&F){const z=t.XpG();t.R7$(),t.JRh(z.data.titleMessage)}}let y=(()=>{class F{constructor(z,W,$){this.dialogRef=z,this.data=W,this.logger=$,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=this.\u0275fac=function(W){return new(W||F)(t.rXU(e.CP),t.rXU(e.Vh),t.rXU(w.gP))};static#t=this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-error-message"]],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(W,$){1&W&&(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 $.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"div",7),t.DNE(10,T,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&W&&(t.R7$(5),t.JRh($.data.alertTitle||"ERROR"),t.R7$(5),t.Y8G("ngIf",$.data.titleMessage),t.R7$(4),t.JRh($.data.message.code),t.R7$(5),t.JRh($.errorMessage),t.R7$(5),t.JRh($.data.message.URL),t.R7$(3),t.Y8G("mat-dialog-close",!1))},dependencies:[S.bT,l.DJ,l.sA,l.UI,e.tx,x.$z,f.m2,f.MM,I.q,d.N],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return F})()},8711:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>Zi});var e=g(9417),t=g(1413),w=g(6977),S=g(5351),l=g(5383),x=g(1001),f=g(4416),I=g(3536),d=g(4438),T=g(9640),y=g(4104),F=g(177),R=g(8570),z=g(1188),W=g(2571),$=g(2920),j=g(6038),Q=g(8834),J=g(5596),ee=g(9454),ie=g(9213),ge=g(9631),ae=g(6467),Me=g(7575),Te=g(5951),de=g(450),D=g(4823),n=g(6013),c=g(9587),m=g(1997);const h=Qt=>({"h-5":Qt});function C(Qt,Mt){1&Qt&&d.eu8(0)}function k(Qt,Mt){1&Qt&&d.eu8(0)}function L(Qt,Mt){if(1&Qt&&(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&Qt){const it=d.XpG(),ct=d.sdS(4);d.Y8G("expanded",it.panelExpanded)("ngClass",d.eq3(7,h,!it.flgShowPanel)),d.R7$(4),d.Lme("Quote for ",it.termCaption," amount (",d.bMT(5,5,it.quote.amount)," Sats)"),d.R7$(2),d.Y8G("ngTemplateOutlet",ct)}}function _(Qt,Mt){if(1&Qt&&(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&Qt){const it=d.XpG(2);d.R7$(6),d.JRh(d.bMT(7,1,null==it.quote?null:it.quote.prepay_amt_sat))}}function r(Qt,Mt){1&Qt&&d.nrm(0,"mat-divider",13)}function v(Qt,Mt){if(1&Qt&&(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&Qt){const it=d.XpG(2);d.R7$(7),d.JRh(null==it.quote?null:it.quote.swap_payment_dest)}}function V(Qt,Mt){if(1&Qt&&(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,_,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,r,1,0,"mat-divider",17)(37,v,8,1,"div",18),d.k0s()),2&Qt){const it=d.XpG();d.R7$(2),d.Y8G("fxFlex",null!=it.quote&&it.quote.prepay_amt_sat?"30":"50"),d.R7$(6),d.JRh(d.bMT(9,9,null==it.quote?null:it.quote.swap_fee_sat)),d.R7$(2),d.Y8G("fxFlex",null!=it.quote&&it.quote.prepay_amt_sat?"35":"50"),d.R7$(2),d.SpI(" ",null!=it.quote&&it.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=it.quote&&it.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),d.R7$(4),d.JRh(d.bMT(17,11,null!=it.quote&&it.quote.htlc_sweep_fee_sat?it.quote.htlc_sweep_fee_sat:null!=it.quote&&it.quote.htlc_publish_fee_sat?it.quote.htlc_publish_fee_sat:0)),d.R7$(2),d.Y8G("ngIf",null==it.quote?null:it.quote.prepay_amt_sat),d.R7$(9),d.JRh(d.bMT(28,13,(null==it.quote?null:it.quote.amount)*((null!=it.quote&&it.quote.off_chain_swap_routing_fee_percentage?null==it.quote?null:it.quote.off_chain_swap_routing_fee_percentage:2)/100))),d.R7$(9),d.Y8G("ngIf",""!==(null==it.quote?null:it.quote.swap_payment_dest)),d.R7$(),d.Y8G("ngIf",""!==(null==it.quote?null:it.quote.swap_payment_dest))}}let N=(()=>{class Qt{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static#e=this.\u0275fac=function(ct){return new(ct||Qt)};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},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,"fxFlex"],["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(ct,wt){if(1&ct&&d.DNE(0,C,1,0,"ng-container",2)(1,L,7,9,"ng-template",null,0,d.C5r)(3,V,38,15,"ng-template",null,1,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4);d.Y8G("ngTemplateOutlet",wt.showPanel?Ut:xi)}},dependencies:[F.YU,F.bT,F.T3,$.DJ,$.sA,$.UI,j.PW,ee.GK,ee.Z2,ee.WN,ie.An,m.q,D.oV,F.QX]})}return Qt})();function ne(Qt,Mt){1&Qt&&d.eu8(0)}function Ee(Qt,Mt){if(1&Qt&&(d.j41(0,"div",3)(1,"span",4),d.EFF(2),d.k0s()()),2&Qt){const it=d.XpG();d.R7$(2),d.JRh(null!=it.loopStatus&&it.loopStatus.error?null==it.loopStatus?null:it.loopStatus.error:"Unknown Error.")}}function ze(Qt,Mt){if(1&Qt&&(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&Qt){const it=d.XpG();d.R7$(6),d.JRh(null==it.loopStatus?null:it.loopStatus.id_bytes),d.R7$(7),d.JRh(null==it.loopStatus?null:it.loopStatus.htlc_address)}}let qe=(()=>{class Qt{constructor(){}static#e=this.\u0275fac=function(ct){return new(ct||Qt)};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},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(ct,wt){if(1&ct&&d.DNE(0,ne,1,0,"ng-container",2)(1,Ee,3,1,"ng-template",null,0,d.C5r)(3,ze,14,2,"ng-template",null,1,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4);d.Y8G("ngTemplateOutlet",null!=wt.loopStatus&&wt.loopStatus.error?Ut:xi)}},dependencies:[F.T3,$.DJ,$.sA,$.UI,m.q]})}return Qt})();var Ke=g(6949);const se=(Qt,Mt)=>({"small-svg":Qt,"large-svg":Mt});function X(Qt,Mt){1&Qt&&d.eu8(0)}function me(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function ce(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function fe(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function ke(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function mt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}let _e=(()=>{class Qt{constructor(it){this.commonService=it,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(it){2===it.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===it.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(ct,wt){if(1&ct&&d.DNE(0,X,1,0,"ng-container",5)(1,me,32,5,"ng-template",null,0,d.C5r)(3,ce,66,5,"ng-template",null,1,d.C5r)(5,fe,93,5,"ng-template",null,2,d.C5r)(7,ke,54,5,"ng-template",null,3,d.C5r)(9,mt,51,5,"ng-template",null,4,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4),Si=d.sdS(6),zi=d.sdS(8),en=d.sdS(10);d.Y8G("ngTemplateOutlet",1===wt.stepNumber?Ut:2===wt.stepNumber?xi:3===wt.stepNumber?Si:4===wt.stepNumber?zi:en)}},dependencies:[F.YU,F.T3,$.DJ,$.sA,$.UI,j.PW,J.Lc,J.dh],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:[Ke.k]}})}return Qt})();const be=(Qt,Mt)=>({"small-svg":Qt,"large-svg":Mt});function pe(Qt,Mt){1&Qt&&d.eu8(0)}function Ze(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function _t(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function at(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function pt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function Xt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.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()()()()()(),d.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&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}let ye=(()=>{class Qt{constructor(it){this.commonService=it,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(it){2===it.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===it.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(ct,wt){if(1&ct&&d.DNE(0,pe,1,0,"ng-container",5)(1,Ze,32,5,"ng-template",null,0,d.C5r)(3,_t,51,5,"ng-template",null,1,d.C5r)(5,at,74,5,"ng-template",null,2,d.C5r)(7,pt,53,5,"ng-template",null,3,d.C5r)(9,Xt,66,5,"ng-template",null,4,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4),Si=d.sdS(6),zi=d.sdS(8),en=d.sdS(10);d.Y8G("ngTemplateOutlet",1===wt.stepNumber?Ut:2===wt.stepNumber?xi:3===wt.stepNumber?Si:4===wt.stepNumber?zi:en)}},dependencies:[F.YU,F.T3,$.DJ,$.sA,$.UI,j.PW,J.Lc,J.dh],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:[Ke.k]}})}return Qt})();const ue=["stepper"],Ie=()=>[1,2,3,4,5],He=(Qt,Mt)=>({"dot-primary":Qt,"dot-primary-lighter":Mt});function Xe(Qt,Mt){if(1&Qt&&(d.j41(0,"div",48)(1,"p",49)(2,"strong"),d.EFF(3,"Channel Peer:\xa0"),d.k0s(),d.EFF(4),d.nI1(5,"titlecase"),d.k0s(),d.j41(6,"p",50)(7,"strong"),d.EFF(8,"Channel ID:\xa0"),d.k0s(),d.EFF(9),d.k0s(),d.nrm(10,"p",50),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(4),d.JRh(d.bMT(5,2,it.channel.remote_alias)),d.R7$(5),d.JRh(it.channel.chan_id)}}function yt(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.JRh(it.inputFormLabel)}}function Ye(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Amount is required."),d.k0s())}function rt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Amount must be greater than or equal to ",d.bMT(2,1,it.minQuote.amount),".")}}function Yt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Amount must be less than or equal to ",d.bMT(2,1,it.maxQuote.amount),".")}}function Nt(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target is required."),d.k0s())}function Et(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target must be a positive number."),d.k0s())}function Vt(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage is required."),d.k0s())}function oe(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage must be a positive number."),d.k0s())}function tt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-form-field",50)(1,"mat-label"),d.EFF(2,"Max Off-chain Routing Fee (%)"),d.k0s(),d.nrm(3,"input",51),d.DNE(4,Vt,2,0,"mat-error",25)(5,oe,2,0,"mat-error",25),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.routingFeePercent.errors?null:it.inputFormGroup.controls.routingFeePercent.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.routingFeePercent.errors?null:it.inputFormGroup.controls.routingFeePercent.errors.min)}}function $t(Qt,Mt){1&Qt&&(d.j41(0,"div",52)(1,"mat-slide-toggle",53),d.EFF(2,"Fast"),d.k0s(),d.j41(3,"mat-icon",54),d.EFF(4,"info_outline"),d.k0s()())}function zt(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.JRh(it.quoteFormLabel)}}function Jt(Qt,Mt){1&Qt&&(d.j41(0,"p",55)(1,"mat-icon",56),d.EFF(2,"close"),d.k0s(),d.EFF(3,"Local balance amount is insufficient for swap."),d.k0s())}function St(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",57),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onValidateAmount())}),d.EFF(1,"Next"),d.k0s()}}function dt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",58),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onLoop())}),d.EFF(1),d.k0s()}if(2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Initiate ",it.loopDirectionCaption,"")}}function Ae(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(3);d.JRh(it.addressFormLabel)}}function we(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Address is required."),d.k0s())}function he(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"mat-step",16)(1,"form",17),d.DNE(2,Ae,1,1,"ng-template",18),d.j41(3,"div",59)(4,"mat-radio-group",60),d.bIt("change",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.Njj(Ut.onAddressTypeChange(wt))}),d.j41(5,"mat-radio-button",61),d.EFF(6,"Node Local Address"),d.k0s(),d.j41(7,"mat-radio-button",62),d.EFF(8,"External Address"),d.k0s()(),d.j41(9,"mat-form-field",63)(10,"mat-label"),d.EFF(11,"Address"),d.k0s(),d.nrm(12,"input",64),d.DNE(13,we,2,0,"mat-error",25),d.k0s()(),d.j41(14,"div",29)(15,"button",65),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onLoop())}),d.EFF(16),d.k0s()()()()}if(2&Qt){const it=d.XpG(2);d.Y8G("stepControl",it.addressFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.addressFormGroup),d.R7$(11),d.Y8G("required","external"===it.addressFormGroup.controls.addressType.value),d.R7$(),d.Y8G("ngIf",null==it.addressFormGroup.controls.address.errors?null:it.addressFormGroup.controls.address.errors.required),d.R7$(3),d.SpI("Initiate ",it.loopDirectionCaption,"")}}function q(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.SpI("",it.loopDirectionCaption," Status")}}function Re(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-icon",66),d.EFF(1),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.JRh(it.loopStatus&&null!=it.loopStatus&&it.loopStatus.id_bytes?"check":"close")}}function Ne(Qt,Mt){1&Qt&&d.nrm(0,"div")}function gt(Qt,Mt){1&Qt&&d.nrm(0,"mat-progress-bar",67)}function $e(Qt,Mt){if(1&Qt&&(d.j41(0,"h4",68),d.EFF(1),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.JRh(it.loopStatus&&it.loopStatus.error?it.loopDirectionCaption+" failed.":it.loopStatus&&it.loopStatus.id_bytes&&it.channel?it.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":it.loopDirectionCaption+" request placed successfully.")}}function Fe(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",69),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.goToLoop())}),d.EFF(1,"Check Status"),d.k0s()}}function Ge(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",70),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onRestart())}),d.EFF(1,"Start Again"),d.k0s()}}function et(Qt,Mt){if(1&Qt){const it=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(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.showInfo())}),d.EFF(8,"?"),d.k0s(),d.j41(9,"button",11),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.onClose())}),d.EFF(10,"X"),d.k0s()()(),d.j41(11,"mat-card-content",12)(12,"div",13),d.DNE(13,Xe,11,4,"div",14),d.j41(14,"mat-vertical-stepper",15,1),d.bIt("selectionChange",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.stepSelectionChanged(wt))}),d.j41(16,"mat-step",16)(17,"form",17),d.DNE(18,yt,1,1,"ng-template",18),d.j41(19,"div",19),d.nrm(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",20),d.k0s(),d.j41(22,"div",21)(23,"mat-form-field",22)(24,"mat-label"),d.EFF(25,"Amount"),d.k0s(),d.nrm(26,"input",23),d.j41(27,"mat-hint"),d.EFF(28),d.nI1(29,"number"),d.nI1(30,"number"),d.k0s(),d.j41(31,"span",24),d.EFF(32,"Sats"),d.k0s(),d.DNE(33,Ye,2,0,"mat-error",25)(34,rt,3,3,"mat-error",25)(35,Yt,3,3,"mat-error",25),d.k0s(),d.j41(36,"mat-form-field",22)(37,"mat-label"),d.EFF(38,"Sweep Confirmation Target"),d.k0s(),d.nrm(39,"input",26),d.DNE(40,Nt,2,0,"mat-error",25)(41,Et,2,0,"mat-error",25),d.k0s(),d.DNE(42,tt,6,3,"mat-form-field",27),d.k0s(),d.DNE(43,$t,5,0,"div",28),d.j41(44,"div",29)(45,"button",30),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.onEstimateQuote())}),d.EFF(46,"Estimate Quote"),d.k0s()()()(),d.j41(47,"mat-step",16)(48,"form",17),d.DNE(49,zt,1,1,"ng-template",18),d.nrm(50,"rtl-loop-quote",31),d.DNE(51,Jt,4,0,"p",32),d.j41(52,"div",29),d.DNE(53,St,2,0,"button",33)(54,dt,2,1,"button",34),d.k0s()()(),d.DNE(55,he,17,6,"mat-step",35),d.j41(56,"mat-step",36)(57,"form",17),d.DNE(58,q,1,1,"ng-template",18),d.j41(59,"div",37)(60,"mat-expansion-panel",38)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",39),d.EFF(64),d.DNE(65,Re,2,1,"mat-icon",40),d.k0s()()(),d.DNE(66,Ne,1,0,"div",41),d.k0s(),d.DNE(67,gt,1,0,"mat-progress-bar",42),d.k0s(),d.DNE(68,$e,2,1,"h4",43),d.j41(69,"div",29),d.DNE(70,Fe,2,0,"button",44)(71,Ge,2,0,"button",45),d.k0s()()()(),d.j41(72,"div",46)(73,"button",47),d.EFF(74,"Close"),d.k0s()()()()()()}if(2&Qt){const it=d.XpG(),ct=d.sdS(2);d.Y8G("@opacityAnimation",void 0),d.R7$(3),d.Y8G("fxFlex",it.screenSize===it.screenSizeEnum.XS||it.screenSize===it.screenSizeEnum.SM?"83":"91"),d.R7$(2),d.JRh(it.channel?"Channel "+it.loopDirectionCaption:it.loopDirectionCaption),d.R7$(),d.Y8G("fxFlex",it.screenSize===it.screenSizeEnum.XS||it.screenSize===it.screenSizeEnum.SM?"17":"9"),d.R7$(7),d.Y8G("ngIf",it.channel),d.R7$(),d.Y8G("linear",!0),d.R7$(2),d.Y8G("stepControl",it.inputFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.inputFormGroup),d.R7$(3),d.Y8G("quote",it.minQuote)("termCaption","min")("panelExpanded",!1)("showPanel",!0),d.R7$(),d.Y8G("quote",it.maxQuote)("termCaption","max")("panelExpanded",!1)("showPanel",!0),d.R7$(2),d.Y8G("fxFlex",it.direction===it.LoopTypeEnum.LOOP_OUT?"35":"48"),d.R7$(3),d.Y8G("step",1e3),d.R7$(2),d.Lme("Range: ",d.bMT(29,51,it.minQuote.amount),"-",d.bMT(30,53,it.maxQuote.amount),""),d.R7$(5),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.min),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.max),d.R7$(),d.Y8G("fxFlex",it.direction===it.LoopTypeEnum.LOOP_OUT?"30":"48"),d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.sweepConfTarget.errors?null:it.inputFormGroup.controls.sweepConfTarget.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.sweepConfTarget.errors?null:it.inputFormGroup.controls.sweepConfTarget.errors.min),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(4),d.Y8G("stepControl",it.quoteFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.quoteFormGroup),d.R7$(2),d.Y8G("quote",it.quote)("showPanel",!1),d.R7$(),d.Y8G("ngIf",it.inputFormGroup.controls.amount.value>it.localBalanceToCompare),d.R7$(2),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_IN),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("stepControl",it.statusFormGroup),d.R7$(),d.Y8G("formGroup",it.statusFormGroup),d.R7$(3),d.Y8G("expanded",!!it.loopStatus),d.R7$(4),d.JRh(it.loopStatus?it.loopStatus.id_bytes?it.loopDirectionCaption+" request details":it.loopDirectionCaption+" error details":"Waiting for "+it.loopDirectionCaption+" request..."),d.R7$(),d.Y8G("ngIf",it.loopStatus),d.R7$(),d.Y8G("ngIf",!it.loopStatus)("ngIfElse",ct),d.R7$(),d.Y8G("ngIf",!it.loopStatus),d.R7$(),d.Y8G("ngIf",it.loopStatus),d.R7$(2),d.Y8G("ngIf",it.loopStatus&&it.loopStatus.id_bytes&&it.channel),d.R7$(),d.Y8G("ngIf",it.loopStatus&&(it.loopStatus.error||!it.loopStatus.id_bytes)),d.R7$(2),d.Y8G("mat-dialog-close",!1)}}function st(Qt,Mt){if(1&Qt&&d.nrm(0,"rtl-loop-status",71),2&Qt){const it=d.XpG();d.Y8G("loopStatus",it.loopStatus)}}function Tt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"rtl-loop-out-info-graphics",87),d.mxI("stepNumberChange",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.DH7(Ut.stepNumber,wt)||(Ut.stepNumber=wt),d.Njj(wt)}),d.k0s()}if(2&Qt){const it=d.XpG(2);d.Y8G("animationDirection",it.animationDirection),d.R50("stepNumber",it.stepNumber)}}function mi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"rtl-loop-in-info-graphics",87),d.mxI("stepNumberChange",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.DH7(Ut.stepNumber,wt)||(Ut.stepNumber=wt),d.Njj(wt)}),d.k0s()}if(2&Qt){const it=d.XpG(2);d.Y8G("animationDirection",it.animationDirection),d.R50("stepNumber",it.stepNumber)}}function Kt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"span",88),d.bIt("click",function(){const wt=d.eBV(it).$implicit,Ut=d.XpG(2);return d.Njj(Ut.onStepChanged(wt))}),d.nrm(1,"p",89),d.k0s()}if(2&Qt){const it=Mt.$implicit,ct=d.XpG(2);d.R7$(),d.Y8G("ngClass",d.l_i(1,He,ct.stepNumber===it,ct.stepNumber!==it))}}function Pt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",90),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onReadMore())}),d.EFF(1,"Read More"),d.k0s()}}function Xi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",91),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(4))}),d.EFF(1,"Back"),d.k0s()}}function di(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",92),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function fi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",93),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function vn(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",94),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(wt.stepNumber-1))}),d.EFF(1,"Back"),d.k0s()}}function Qi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",95),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(wt.stepNumber+1))}),d.EFF(1,"Next"),d.k0s()}}function Li(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",72)(1,"div",19)(2,"mat-card-header",73)(3,"div",74),d.nrm(4,"span",8),d.k0s(),d.j41(5,"div",75)(6,"button",11),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(7,"X"),d.k0s()()(),d.j41(8,"mat-card-content",76),d.DNE(9,Tt,1,2,"rtl-loop-out-info-graphics",77)(10,mi,1,2,"rtl-loop-in-info-graphics",77),d.k0s(),d.j41(11,"div",78),d.DNE(12,Kt,2,4,"span",79),d.k0s(),d.j41(13,"div",80),d.DNE(14,Pt,2,0,"button",81)(15,Xi,2,0,"button",82)(16,di,2,0,"button",83)(17,fi,2,0,"button",84)(18,vn,2,0,"button",85)(19,Qi,2,0,"button",86),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@opacityAnimation",void 0),d.R7$(9),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_IN),d.R7$(2),d.Y8G("ngForOf",d.lJ4(10,Ie)),d.R7$(2),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",it.stepNumber<5),d.R7$(),d.Y8G("ngIf",it.stepNumber>1&&it.stepNumber<5),d.R7$(),d.Y8G("ngIf",it.stepNumber<5)}}let Zi=(()=>{class Qt{constructor(it,ct,wt,Ut,xi,Si,zi,en,Ni){this.dialogRef=it,this.data=ct,this.store=wt,this.loopService=Ut,this.formBuilder=xi,this.decimalPipe=Si,this.logger=zi,this.router=en,this.commonService=Ni,this.faInfoCircle=l.iW_,this.LoopTypeEnum=f.C7,this.direction=f.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=f.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||f.C7.LOOP_OUT,this.loopDirectionCaption=this.direction===f.C7.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[e.k0.required,e.k0.min(this.minQuote.amount||0),e.k0.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[e.k0.required,e.k0.min(1)]],routingFeePercent:[2,[e.k0.required,e.k0.min(0)]],fast:[!1,[e.k0.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[e.k0.required]],address:[{value:"",disabled:!0}]}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(I.BM).pipe((0,w.Q)(this.unSubs[6])).subscribe(it=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:it.lightningBalance&&it.lightningBalance.local?+it.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,w.Q)(this.unSubs[4])).subscribe(it=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,w.Q)(this.unSubs[5])).subscribe(it=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(it){"external"===it.value?(this.addressFormGroup.controls.address.setValidators([e.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===f.C7.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===f.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===f.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,w.Q)(this.unSubs[0])).subscribe({next:it=>{this.loopStatus=it,this.loopService.listSwaps(),this.flgEditable=!0},error:it=>{this.loopStatus={error:it},this.flgEditable=!0,this.logger.error(it)}});else{const it=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),ct="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",wt=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,it,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),wt,ct).pipe((0,w.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 it=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===f.C7.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,it).pipe((0,w.Q)(this.unSubs[2])).subscribe(ct=>{this.quote=ct,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,it).pipe((0,w.Q)(this.unSubs[3])).subscribe(ct=>{this.quote=ct,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(it){switch(it.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===f.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===f.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===f.C7.LOOP_OUT&&1!==it.selectedIndex&&it.selectedIndex{it.next(null),it.complete()})}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(S.CP),d.rXU(S.Vh),d.rXU(T.il),d.rXU(y.Q),d.rXU(e.ze),d.rXU(F.QX),d.rXU(R.gP),d.rXU(z.Ix),d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-modal"]],viewQuery:function(ct,wt){if(1&ct&&d.GBs(ue,5),2&ct){let Ut;d.mGM(Ut=d.lsd())&&(wt.stepper=Ut.first)}},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,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["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"],[3,"quote","termCaption","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"fxFlex"],["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(ct,wt){1&ct&&d.DNE(0,et,75,55,"div",2)(1,st,1,1,"ng-template",null,0,d.C5r)(3,Li,20,11,"div",3),2&ct&&(d.Y8G("ngIf",!wt.flgShowInfo),d.R7$(3),d.Y8G("ngIf",wt.flgShowInfo))},dependencies:[F.YU,F.Sq,F.bT,e.qT,e.me,e.Q0,e.BC,e.cb,e.YS,e.j4,e.JD,$.DJ,$.sA,$.UI,j.PW,S.tx,Q.$z,J.m2,J.MM,ee.GK,ee.Z2,ee.WN,ie.An,ge.fg,ae.rl,ae.nJ,ae.MV,ae.TL,ae.yw,Me.HM,Te.VT,Te._g,de.sG,D.oV,n.V5,n.Ti,n.M6,c.N,N,qe,_e,ye,F.QX,F.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:[x.C]}})}return Qt})()},13:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>I});var e=g(5383),t=g(4438),w=g(1188),S=g(60),l=g(2920),x=g(8834),f=g(5596);let I=(()=>{class d{constructor(y){this.router=y,this.faTimes=e.GRI}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(F){return new(F||d)(t.rXU(w.Ix))};static#t=this.\u0275cmp=t.VBU({type:d,selectors:[["rtl-not-found"]],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(F,R){1&F&&(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 R.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()()),2&F&&(t.R7$(),t.Y8G("icon",R.faTimes))},dependencies:[S.aY,l.DJ,l.sA,l.UI,x.$z,f.RN,f.m2],encapsulation:2})}return d})()},9587:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>t});var e=g(4438);let t=(()=>{class w{constructor(l){this.el=l}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static#e=this.\u0275fac=function(x){return new(x||w)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:w,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"}})}return w})()},9157:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>t});var e=g(4438);let t=(()=>{class w{constructor(){this.copied=new e.bkB}onClick(l){l.preventDefault(),this.payload&&(navigator.clipboard?this.copyUsingClipboardAPI():this.copyUsingFallbackMethod())}copyUsingFallbackMethod(){const l=document.createElement("textarea");l.value=this.payload,document.body.appendChild(l),l.select();try{document.execCommand("copy")?this.copied.emit(this.payload.toString()):this.copied.emit("Error could not copy text.")}finally{document.body.removeChild(l)}}copyUsingClipboardAPI(){navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())}).catch(l=>{this.copied.emit("Error could not copy text: "+JSON.stringify(l))})}static#e=this.\u0275fac=function(x){return new(x||w)};static#t=this.\u0275dir=e.FsC({type:w,selectors:[["","rtlClipboard",""]],hostBindings:function(x,f){1&x&&e.bIt("click",function(d){return f.onClick(d)})},inputs:{payload:"payload"},outputs:{copied:"copied"}})}return w})()},92:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>w});var e=g(9417),t=g(4438);let w=(()=>{class S{validate(x){return this.max?e.k0.max(+this.max)(x):null}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275dir=t.FsC({type:S,selectors:[["input","max",""]],inputs:{max:"max"},features:[t.Jv_([{provide:e.cz,useExisting:S,multi:!0}])]})}return S})()},6114:(Qe,te,g)=>{"use strict";g.d(te,{V:()=>w});var e=g(9417),t=g(4438);let w=(()=>{class S{validate(x){return this.min?e.k0.min(+this.min)(x):null}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275dir=t.FsC({type:S,selectors:[["input","min",""]],inputs:{min:"min"},features:[t.Jv_([{provide:e.cz,useExisting:S,multi:!0}])]})}return S})()},2929:(Qe,te,g)=>{"use strict";g.d(te,{Qu:()=>S,VD:()=>l,ZE:()=>w,gZ:()=>t});var e=g(4438);let t=(()=>{class x{transform(I,d){return I?.replace(/^[0]+/g,"")}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"removeleadingzeros",type:x,pure:!0})}return x})(),w=(()=>{class x{transform(I,d){return I?.replace(/(?:^\w|[A-Z]|\b\w)/g,(T,y)=>T.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelcase",type:x,pure:!0})}return x})(),S=(()=>{class x{transform(I,d,T){return I.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,F)=>" "+y.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelCaseWithSpaces",type:x,pure:!0})}return x})(),l=(()=>{class x{transform(I,d,T){return I=I?I.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",d&&(I=I.replace(new RegExp(d,"g")," ")),T&&(I=I.replace(new RegExp(T,"g")," ")),I.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,F)=>y.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelcaseWithReplace",type:x,pure:!0})}return x})()},7186:(Qe,te,g)=>{"use strict";g.d(te,{Wz:()=>f,fe:()=>I,jn:()=>x,q_:()=>l});var e=g(4438),t=g(1188),w=g(3202),S=g(6354);function l(){return()=>{const d=(0,e.WQX)(t.Ix),T=(0,e.WQX)(t.nX),y=(0,e.WQX)(w.Q);return!(!y.getItem("token")||T.snapshot.url&&T.snapshot.url.length&&"settings"!==T.snapshot.url[0].path&&"auth"!==T.snapshot.url[0].path&&"true"===y.getItem("defaultPassword")&&(d.navigate(["/settings/auth"]),1))}}function x(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.lndUnlocked))}function f(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.clnUnlocked))}function I(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.eclUnlocked))}},2571:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>z});var e=g(4412),t=g(1413),w=g(7673),S=g(8810),l=g(6977),x=g(5558),f=g(9437),I=g(4416),d=g(4438),T=g(1534),y=g(8570),F=g(177),R=g(345);let z=(()=>{class W{constructor(j,Q,J,ee){this.dataService=j,this.logger=Q,this.datePipe=J,this.sanitizer=ee,this.currencyUnits=[],this.CurrencyUnitEnum=I.BQ,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=I.wn.UN_INITIATED,this.screenSize=I.f7.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new e.t(this.containerSize),this.unSubs=[new t.B,new t.B,new t.B]}getScreenSize(){return this.screenSize}setScreenSize(j){this.screenSize=j}getContainerSize(){return this.containerSize}setContainerSize(j,Q){this.containerSize={width:j,height:Q},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(j,Q,J,ee="asc"){return j.sort("number"===J?"desc"===ee?(ie,ge)=>+ie[Q]>+ge[Q]?-1:1:(ie,ge)=>+ie[Q]>+ge[Q]?1:-1:"desc"===ee?(ie,ge)=>ie[Q]>ge[Q]?-1:1:(ie,ge)=>ie[Q]>ge[Q]?1:-1)}sortDescByKey(j,Q){return j.sort((J,ee)=>{const ie=+J[Q],ge=+ee[Q];return ie>ge?-1:ie{const ie=+J[Q],ge=+ee[Q];return iege?1:0})}camelCase(j){return j?.replace(/(?:^\w|[A-Z]|\b\w)/g,(Q,J)=>Q.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(j,Q,J){return Q&&J&&""!==Q&&""!==J&&(j=j?.replace(new RegExp(Q,"g"),J)),j.indexOf("!\n")>0||j.indexOf(".\n")>0?j.split("\n")?.reduce((ee,ie)=>ee+ie.charAt(0).toUpperCase()+ie.substring(1).toLowerCase()+"\n",""):j.indexOf(" ")>0?j.split(" ")?.reduce((ee,ie)=>ee+ie.charAt(0).toUpperCase()+ie.substring(1).toLowerCase()+" ",""):j.charAt(0).toUpperCase()+j.substring(1).toLowerCase()}convertCurrency(j,Q,J,ee,ie){const ge=(new Date).valueOf();try{return ie&&ee&&(Q===I.BQ.OTHER||J===I.BQ.OTHER)?this.ratesAPIStatus!==I.wn.INITIATED?this.conversionData.data&&this.conversionData.last_fetched&&ge(this.ratesAPIStatus=I.wn.COMPLETED,this.conversionData.data=ae&&"object"==typeof ae?ae:ae&&"string"==typeof ae?JSON.parse(ae):{},this.conversionData.last_fetched=ge,(0,w.of)(this.convertWithFiat(j,Q,ee)))),(0,f.W)(ae=>(this.ratesAPIStatus=I.wn.ERROR,(0,S.$)(()=>"Currency Conversion Error."))))):(0,w.of)(this.conversionData.data&&this.conversionData.last_fetched&&ge"Currency Conversion Error.")}}convertWithoutFiat(j,Q){const J={};switch(J[I.BQ.SATS]=0,J[I.BQ.BTC]=0,Q){case I.BQ.SATS:J[I.BQ.SATS]=j,J[I.BQ.BTC]=1e-8*j;break;case I.BQ.BTC:J[I.BQ.SATS]=1e8*j,J[I.BQ.BTC]=j}return J}convertWithFiat(j,Q,J){const ee={unit:J,iconType:"FA",symbol:null};if(J){const ie=(0,I.Zo)(this.conversionData.data[J].symbol);ee.iconType=ie.iconType,ee.symbol=ie&&"SVG"===ie.iconType&&ie.symbol&&"string"==typeof ie.symbol?this.sanitizer.bypassSecurityTrustHtml(ie.symbol):ie.symbol}switch(ee[I.BQ.SATS]=0,ee[I.BQ.BTC]=0,ee[I.BQ.OTHER]=0,Q){case I.BQ.SATS:ee[I.BQ.SATS]=j,ee[I.BQ.BTC]=1e-8*j,ee[I.BQ.OTHER]=1e-8*j*this.conversionData.data[J].last;break;case I.BQ.BTC:ee[I.BQ.SATS]=1e8*j,ee[I.BQ.BTC]=j,ee[I.BQ.OTHER]=j*this.conversionData.data[J].last;break;case I.BQ.OTHER:ee[I.BQ.SATS]=j/this.conversionData.data[J].last*1e8,ee[I.BQ.BTC]=j/this.conversionData.data[J].last,ee[I.BQ.OTHER]=j}return ee}convertTime(j,Q,J){switch(Q){case I.F7.SECS:switch(J){case I.F7.MINS:j/=60;break;case I.F7.HOURS:j/=I.bz;break;case I.F7.DAYS:j/=24*I.bz}break;case I.F7.MINS:switch(J){case I.F7.SECS:j*=60;break;case I.F7.HOURS:j/=60;break;case I.F7.DAYS:j/=1440}break;case I.F7.HOURS:switch(J){case I.F7.SECS:j*=I.bz;break;case I.F7.MINS:j*=60;break;case I.F7.DAYS:j/=24}break;case I.F7.DAYS:switch(J){case I.F7.SECS:j=j*I.bz*24;break;case I.F7.MINS:j=60*j*24;break;case I.F7.HOURS:j*=24}}return j}downloadFile(j,Q,J=".json",ee=".csv"){let ie=new Blob;ie=".json"===J?new Blob(["\ufeff"+this.convertToCSV(j)],{type:"text/csv;charset=utf-8;"}):new Blob([j.toString()],{type:"text/plain;charset=utf-8"});const ge=document.createElement("a"),ae=URL.createObjectURL(ie);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&ge.setAttribute("target","_blank"),ge.setAttribute("href",ae),ge.setAttribute("download",Q+ee),ge.style.visibility="hidden",document.body.appendChild(ge),ge.click(),document.body.removeChild(ge)}convertToCSV(j){const Q=[];let J="",ee="",ie="";return"object"!=typeof j&&(j=JSON.parse(j)),j.forEach((ae,Me)=>{for(const Te in ae)Q.findIndex(de=>de===Te)<0&&Q.push(Te)}),ie=Q.join(",")+"\r\n",j.forEach(ae=>{J="",Q.forEach(Me=>{if(ae.hasOwnProperty(Me))if(Array.isArray(ae[Me]))ee="",ae[Me].forEach((Te,de)=>{ee+="object"==typeof Te?"("+JSON.stringify(Te)?.replace(/\,/g,";")+")":"("+Te+")"}),J+=ee+",";else if("object"==typeof ae[Me])J+=JSON.stringify(ae[Me])?.replace(/\,/g,";")+",";else if(Me.includes("timestamp")||Me.includes("date"))try{switch(ae[Me].toString().length){case 10:J+=this.datePipe.transform(new Date(1e3*ae[Me]),"dd/MMM/y HH:mm")+",";break;case 13:J+=this.datePipe.transform(new Date(ae[Me]),"dd/MMM/y HH:mm")+",";break;default:J+=ae[Me]+","}}catch{J+=ae[Me]+","}else J+=ae[Me]+",";else J+=","}),ie+=J.slice(0,-1)+"\r\n"}),ie}isVersionCompatible(j,Q){if(j){const J=j.match(/v?(?\d+(?:\.\d+)*)/);if(J&&J.groups&&J.groups.version){this.logger.info("Current Version: "+J.groups.version),this.logger.info("Checking Compatiblility with Version: "+Q);const ee=J.groups.version.split(".")||[],ie=Q.split(".");return+ee[0]>+ie[0]||+ee[0]==+ie[0]&&+ee[1]>+ie[1]||+ee[0]==+ie[0]&&+ee[1]==+ie[1]&&+ee[2]>=+ie[2]}return this.logger.error("Invalid Version String: "+j),!1}return!1}extractErrorMessage(j,Q="Unknown Error."){const J=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:Q);return this.logger.info("Error Message: "+J),J}extractErrorCode(j,Q=500){const J=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:Q;return this.logger.info("Error Code: "+J),J}extractErrorNumber(j,Q=500){const J=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:Q;return this.logger.info("Error Number: "+J),J}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static#e=this.\u0275fac=function(Q){return new(Q||W)(d.KVO(T.u),d.KVO(y.gP),d.KVO(F.vh),d.KVO(R.up))};static#t=this.\u0275prov=d.jDH({token:W,factory:W.\u0275fac})}return W})()},4416:(Qe,te,g)=>{"use strict";g.d(te,{A$:()=>Te,A0:()=>T,Ah:()=>qe,BQ:()=>c,Bd:()=>V,Bv:()=>ee,C7:()=>v,F7:()=>D,G:()=>J,H$:()=>I,HW:()=>Me,Hx:()=>r,It:()=>x,Jd:()=>Xe,Jr:()=>ge,KR:()=>ne,Ld:()=>$,MZ:()=>se,QP:()=>fe,SY:()=>F,TC:()=>ke,TH:()=>_e,U1:()=>de,UN:()=>m,Uq:()=>be,Uu:()=>mt,WW:()=>Yt,X8:()=>rt,XG:()=>j,Y0:()=>X,ZC:()=>yt,Zb:()=>_,Zi:()=>Et,Zo:()=>Vt,_1:()=>Ye,_U:()=>pe,aG:()=>k,aR:()=>me,aU:()=>ce,bz:()=>l,ck:()=>ie,f7:()=>h,iI:()=>L,jG:()=>Ie,k:()=>y,md:()=>z,mu:()=>He,nv:()=>Q,o1:()=>ae,oi:()=>ue,on:()=>S,q9:()=>N,rl:()=>d,rs:()=>Ee,tj:()=>C,ul:()=>Ze,wn:()=>Ke,xk:()=>_t,xp:()=>W,xv:()=>f});var e=g(4438),t=g(6695),w=g(5383);function S(oe){const tt=new t.xX;return tt.itemsPerPageLabel=oe+" per page:",tt}const l=3600,x=24*l*7,f="0.15.2-beta",I=(0,e.naY)()?"http://localhost:3000/rtl/api":"./api",d={AUTHENTICATE_API:I+"/authenticate",CONF_API:I+"/conf",PAGE_SETTINGS_API:I+"/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"},T=["Sats","BTC"],y={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},F=["SECS","MINS","HOURS","DAYS"],z=10,W=[5,10,25,100],$=[{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"}],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 Payment Amount",placeholder:"Percentage Limit"}],J=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom"}],ee={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 ie=function(oe){return oe.PAYMENT_RECEIVED="payment-received",oe.PAYMENT_RELAYED="payment-relayed",oe.PAYMENT_SENT="payment-sent",oe.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",oe.PAYMENT_FAILED="payment-failed",oe.CHANNEL_OPENED="channel-opened",oe.CHANNEL_STATE_CHANGED="channel-state-changed",oe.CHANNEL_CLOSED="channel-closed",oe}(ie||{}),ge=function(oe){return oe.CONNECT="connect",oe.DISCONNECT="disconnect",oe.WARNING="warning",oe.INVOICE_PAYMENT="invoice_payment",oe.INVOICE_CREATION="invoice_creation",oe.CHANNEL_OPENED="channel_opened",oe.CHANNEL_STATE_CHANGED="channel_state_changed",oe.SENDPAY_SUCCESS="sendpay_success",oe.SENDPAY_FAILURE="sendpay_failure",oe.COIN_MOVEMENT="coin_movement",oe.BALANCE_SNAPSHOT="balance_snapshot",oe.BLOCK_ADDED="block_added",oe.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",oe.CHANNEL_OPEN_FAILED="channel_open_failed",oe}(ge||{}),ae=function(oe){return oe.INVOICE="invoice",oe}(ae||{}),Me=function(oe){return oe.OPERATOR="OPERATOR",oe.MERCHANT="MERCHANT",oe.ALL="ALL",oe}(Me||{}),Te=function(oe){return oe.INFORMATION="Information",oe.WARNING="Warning",oe.ERROR="Error",oe.SUCCESS="Success",oe.CONFIRM="Confirm",oe}(Te||{}),de=function(oe){return oe.JWT="JWT",oe.PASSWORD="PASSWORD",oe}(de||{}),D=function(oe){return oe.SECS="SECS",oe.MINS="MINS",oe.HOURS="HOURS",oe.DAYS="DAYS",oe}(D||{}),c=function(oe){return oe.SATS="Sats",oe.BTC="BTC",oe.OTHER="OTHER",oe}(c||{}),m=function(oe){return oe.ARRAY="ARRAY",oe.NUMBER="NUMBER",oe.STRING="STRING",oe.BOOLEAN="BOOLEAN",oe.PASSWORD="PASSWORD",oe.DATE="DATE",oe.DATE_TIME="DATE_TIME",oe}(m||{}),h=function(oe){return oe.XS="XS",oe.SM="SM",oe.MD="MD",oe.LG="LG",oe.XL="XL",oe}(h||{});const C={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 L=function(oe){return oe.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",oe.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",oe.WIRE_INVALID_ONION_KEY="Invalid Onion Key",oe.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",oe.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",oe.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",oe.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",oe.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",oe.WIRE_FEE_INSUFFICIENT="Insufficient Fee",oe.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",oe.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",oe.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",oe.WIRE_CHANNEL_DISABLED="Channel Disabled",oe.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",oe.WIRE_INVALID_REALM="Invalid Realm",oe.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",oe.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",oe.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",oe.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",oe.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",oe.WIRE_MPP_TIMEOUT="MPP Timeout",oe.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",oe.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",oe}(L||{}),_=function(oe){return oe.CHANNELD_NORMAL="Active",oe.OPENINGD="Opening",oe.CHANNELD_AWAITING_LOCKIN="Pending Open",oe.CHANNELD_SHUTTING_DOWN="Shutting Down",oe.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",oe.CLOSINGD_COMPLETE="Closed",oe.AWAITING_UNILATERAL="Awaiting Unilateral Close",oe.FUNDING_SPEND_SEEN="Funding Spend Seen",oe.ONCHAIN="Onchain",oe.DUALOPEND_OPEN_INIT="Dual Open Initialized",oe.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",oe}(_||{}),r=function(oe){return oe.INITIATED="Initiated",oe.PREIMAGE_REVEALED="Preimage Revealed",oe.HTLC_PUBLISHED="HTLC Published",oe.SUCCESS="Successful",oe.FAILED="Failed",oe.INVOICE_SETTLED="Invoice Settled",oe}(r||{}),v=function(oe){return oe.LOOP_OUT="LOOP_OUT",oe.LOOP_IN="LOOP_IN",oe}(v||{}),V=function(oe){return oe.SWAP_OUT="SWAP_OUT",oe.SWAP_IN="SWAP_IN",oe}(V||{}),N=function(oe){return oe["swap.created"]="Swap Created",oe["swap.expired"]="Swap Expired",oe["invoice.set"]="Invoice Set",oe["invoice.paid"]="Invoice Paid",oe["invoice.pending"]="Invoice Pending",oe["invoice.settled"]="Invoice Settled",oe["invoice.failedToPay"]="Invoice Failed To Pay",oe["channel.created"]="Channel Created",oe["transaction.failed"]="Transaction Failed",oe["transaction.mempool"]="Transaction Mempool",oe["transaction.claimed"]="Transaction Claimed",oe["transaction.refunded"]="Transaction Refunded",oe["transaction.confirmed"]="Transaction Confirmed",oe["transaction.lockupFailed"]="Lockup Transaction Failed",oe["swap.refunded"]="Swap Refunded",oe["swap.abandoned"]="Swap Abandoned",oe}(N||{});const ne=[{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}],Ee=["MONTHLY","YEARLY"],qe=["password","changeme","moneyprintergobrrr"];var Ke=function(oe){return oe.UN_INITIATED="UN_INITIATED",oe.INITIATED="INITIATED",oe.COMPLETED="COMPLETED",oe.ERROR="ERROR",oe}(Ke||{});const se={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 X=function(oe){return oe.INVOICE="INVOICE",oe.OFFER="OFFER",oe.KEYSEND="KEYSEND",oe}(X||{}),me=function(oe){return oe.FEES="FEES",oe.EVENTS="EVENTS",oe}(me||{}),ce=function(oe){return oe.VOID="VOID",oe.SET_API_URL_ECL="SET_API_URL_ECL",oe.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",oe.RESET_ROOT_STORE="RESET_ROOT_STORE",oe.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",oe.OPEN_SNACK_BAR="OPEN_SNACKBAR",oe.OPEN_SPINNER="OPEN_SPINNER",oe.CLOSE_SPINNER="CLOSE_SPINNER",oe.OPEN_ALERT="OPEN_ALERT",oe.CLOSE_ALERT="CLOSE_ALERT",oe.OPEN_CONFIRMATION="OPEN_CONFIRMATION",oe.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",oe.SHOW_PUBKEY="SHOW_PUBKEY",oe.FETCH_CONFIG="FETCH_CONFIG",oe.SHOW_CONFIG="SHOW_CONFIG",oe.FETCH_STORE="FETCH_STORE",oe.SET_STORE="SET_STORE",oe.FETCH_APPLICATION_SETTINGS="FETCH_APPLICATION_SETTINGS",oe.SET_APPLICATION_SETTINGS="SET_APPLICATION_SETTINGS",oe.SAVE_SETTINGS="SAVE_SETTINGS",oe.SET_SELECTED_NODE="SET_SELECTED_NODE",oe.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",oe.UPDATE_APPLICATION_SETTINGS="UPDATE_APPLICATION_SETTINGS",oe.UPDATE_NODE_SETTINGS="UPDATE_NODE_SETTINGS",oe.SET_SELECTED_NODE_SETTINGS="SET_SELECTED_NODE_SETTINGS",oe.SET_NODE_DATA="SET_NODE_DATA",oe.IS_AUTHORIZED="IS_AUTHORIZED",oe.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",oe.LOGIN="LOGIN",oe.VERIFY_TWO_FA="VERIFY_TWO_FA",oe.LOGOUT="LOGOUT",oe.RESET_PASSWORD="RESET_PASSWORD",oe.RESET_PASSWORD_RES="RESET_PASSWORD_RES",oe.FETCH_FILE="FETCH_FILE",oe.SHOW_FILE="SHOW_FILE",oe}(ce||{}),fe=function(oe){return oe.RESET_LND_STORE="RESET_LND_STORE",oe.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",oe.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",oe.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",oe.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",oe.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",oe.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",oe.FETCH_INFO_LND="FETCH_INFO_LND",oe.SET_INFO_LND="SET_INFO_LND",oe.FETCH_PEERS_LND="FETCH_PEERS_LND",oe.SET_PEERS_LND="SET_PEERS_LND",oe.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",oe.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",oe.DETACH_PEER_LND="DETACH_PEER_LND",oe.REMOVE_PEER_LND="REMOVE_PEER_LND",oe.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",oe.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",oe.ADD_INVOICE_LND="ADD_INVOICE_LND",oe.FETCH_FEES_LND="FETCH_FEES_LND",oe.SET_FEES_LND="SET_FEES_LND",oe.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",oe.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",oe.FETCH_NETWORK_LND="FETCH_NETWORK_LND",oe.SET_NETWORK_LND="SET_NETWORK_LND",oe.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",oe.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",oe.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",oe.SET_CHANNELS_LND="SET_CHANNELS_LND",oe.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",oe.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",oe.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",oe.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",oe.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",oe.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",oe.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",oe.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",oe.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",oe.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",oe.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",oe.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",oe.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",oe.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",oe.FETCH_INVOICES_LND="FETCH_INVOICES_LND",oe.SET_INVOICES_LND="SET_INVOICES_LND",oe.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",oe.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",oe.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",oe.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",oe.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",oe.FETCH_UTXOS_LND="FETCH_UTXOS_LND",oe.SET_UTXOS_LND="SET_UTXOS_LND",oe.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",oe.SET_PAYMENTS_LND="SET_PAYMENTS_LND",oe.SEND_PAYMENT_LND="SEND_PAYMENT_LND",oe.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",oe.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",oe.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",oe.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",oe.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",oe.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",oe.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",oe.GEN_SEED_LND="GEN_SEED_LND",oe.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",oe.INIT_WALLET_LND="INIT_WALLET_LND",oe.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",oe.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",oe.PEER_LOOKUP_LND="PEER_LOOKUP_LND",oe.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",oe.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",oe.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",oe.SET_LOOKUP_LND="SET_LOOKUP_LND",oe.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",oe.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",oe.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",oe.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",oe.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",oe.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",oe}(fe||{}),ke=function(oe){return oe.RESET_CLN_STORE="RESET_CLN_STORE",oe.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",oe.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",oe.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",oe.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",oe.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",oe.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",oe.SET_INFO_CLN="SET_INFO_CLN",oe.FETCH_FEES_CLN="FETCH_FEES_CLN",oe.SET_FEES_CLN="SET_FEES_CLN",oe.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",oe.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",oe.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",oe.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",oe.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",oe.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",oe.FETCH_PEERS_CLN="FETCH_PEERS_CLN",oe.SET_PEERS_CLN="SET_PEERS_CLN",oe.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",oe.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",oe.ADD_PEER_CLN="ADD_PEER_CLN",oe.DETACH_PEER_CLN="DETACH_PEER_CLN",oe.REMOVE_PEER_CLN="REMOVE_PEER_CLN",oe.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",oe.SET_CHANNELS_CLN="SET_CHANNELS_CLN",oe.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",oe.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",oe.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",oe.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",oe.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",oe.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",oe.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",oe.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",oe.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",oe.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",oe.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",oe.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",oe.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",oe.SET_LOOKUP_CLN="SET_LOOKUP_CLN",oe.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",oe.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",oe.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",oe.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",oe.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",oe.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",oe.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",oe.SET_INVOICES_CLN="SET_INVOICES_CLN",oe.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",oe.ADD_INVOICE_CLN="ADD_INVOICE_CLN",oe.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",oe.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",oe.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",oe.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",oe.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",oe.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",oe.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",oe.SET_OFFERS_CLN="SET_OFFERS_CLN",oe.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",oe.ADD_OFFER_CLN="ADD_OFFER_CLN",oe.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",oe.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",oe.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",oe.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",oe.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",oe.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",oe.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",oe}(ke||{}),mt=function(oe){return oe.RESET_ECL_STORE="RESET_ECL_STORE",oe.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",oe.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",oe.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",oe.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",oe.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",oe.FETCH_INFO_ECL="FETCH_INFO_ECL",oe.SET_INFO_ECL="SET_INFO_ECL",oe.FETCH_FEES_ECL="FETCH_FEES_ECL",oe.SET_FEES_ECL="SET_FEES_ECL",oe.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",oe.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",oe.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",oe.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",oe.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",oe.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",oe.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",oe.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",oe.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",oe.FETCH_PEERS_ECL="FETCH_PEERS_ECL",oe.SET_PEERS_ECL="SET_PEERS_ECL",oe.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",oe.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",oe.ADD_PEER_ECL="ADD_PEER_ECL",oe.DETACH_PEER_ECL="DETACH_PEER_ECL",oe.REMOVE_PEER_ECL="REMOVE_PEER_ECL",oe.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",oe.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",oe.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",oe.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",oe.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",oe.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",oe.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",oe.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",oe.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",oe.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",oe.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",oe.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",oe.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",oe.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",oe.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",oe.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",oe.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",oe.SET_INVOICES_ECL="SET_INVOICES_ECL",oe.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",oe.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",oe.ADD_INVOICE_ECL="ADD_INVOICE_ECL",oe.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",oe.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",oe.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",oe.SET_LOOKUP_ECL="SET_LOOKUP_ECL",oe.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",oe.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",oe}(mt||{});const _e=[{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 be=function(oe){return oe.gossip_queries_ex="Gossip queries including additional information",oe.option_anchor_outputs="Anchor outputs",oe.option_data_loss_protect="Extra channel re-establish fields",oe.var_onion_optin="Variable-length routing onion payloads",oe.option_static_remotekey="Static key for remote output",oe.option_support_large_channel="Create large channels",oe.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",oe.payment_secret="Payment secret field",oe.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",oe.basic_mpp="Basic multi-part payments",oe.gossip_queries="More sophisticated gossip control",oe.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",oe.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",oe.amp="AMP",oe}(be||{}),pe=function(oe){return oe["data-loss-protect"]="Extra channel re-establish fields",oe["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",oe["gossip-queries"]="More sophisticated gossip control",oe["tlv-onion"]="Variable-length routing onion payloads",oe["ext-gossip-queries"]="Gossip queries can include additional information",oe["static-remote-key"]="Static key for remote output",oe["payment-addr"]="Payment secret field",oe["multi-path-payments"]="Basic multi-part payments",oe["wumbo-channels"]="Wumbo Channels",oe.anchors="Anchor outputs",oe["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",oe.amp="AMP",oe}(pe||{});const Ze=[{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 _t=function(oe){return oe.OFFERED="offered",oe.SETTLED="settled",oe.FAILED="failed",oe.LOCAL_FAILED="local_failed",oe}(_t||{}),ue=function(oe){return oe.ASCENDING="asc",oe.DESCENDING="desc",oe}(ue||{});const Ie=["asc","desc"],He=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:ue.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:ue.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"msatoshi_to_us",sortOrder:ue.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:z,sortBy:"state",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"expiry",sortOrder:ue.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:z,sortBy:"channel_opening_fee",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"created_at",sortOrder:ue.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:z,sortBy:"expires_at",sortOrder:ue.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:z,sortBy:"offer_id",sortOrder:ue.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:z,sortBy:"lastUpdatedAt",sortOrder:ue.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"total_fee",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"date",sortOrder:ue.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:z,sortBy:"msatoshi",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],Xe={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"}]}}},yt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:ue.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:z,sortBy:"time_stamp",sortOrder:ue.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:ue.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:z,sortBy:"balancedness",sortOrder:ue.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:ue.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:z,sortBy:"close_type",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"incoming",sortOrder:ue.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"creation_date",sortOrder:ue.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:z,sortBy:"creation_date",sortOrder:ue.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"total_amount",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:z,sortBy:"remote_alias",sortOrder:ue.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:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:ue.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:z,sortBy:"hop_sequence",sortOrder:ue.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:z,sortBy:"initiation_time",sortOrder:ue.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:z,sortBy:"status",sortOrder:ue.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:z,sortBy:"status",sortOrder:ue.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],Ye={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"}]}}},rt=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"firstPartTimestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:z,sortBy:"receivedAt",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"totalFee",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:ue.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],Yt={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"}]}}},Nt_DKK="\n \n \n \n ",Et=[{id:"USD",name:"United States Dollar",iconType:"FA",symbol:w.Vpi},{id:"ARS",name:"Argentina Peso",iconType:"FA",symbol:w.Vpi},{id:"AUD",name:"Australia Dollar",iconType:"FA",symbol:w.Vpi},{id:"BRL",name:"Brazil Real",iconType:"FA",symbol:w.Tq9},{id:"CAD",name:"Canada Dollar",iconType:"FA",symbol:w.Vpi},{id:"CHF",name:"Switzerland Franc",iconType:"FA",symbol:w.zjW},{id:"CLP",name:"Chile Peso",iconType:"FA",symbol:w.Vpi},{id:"CNY",name:"China Yuan Renminbi",iconType:"FA",symbol:w.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:Nt_DKK,class:"currency-icon-medium"},{id:"EUR",name:"Euro Member Countries",iconType:"FA",symbol:w.s5m},{id:"GBP",name:"United Kingdom Pound",iconType:"FA",symbol:w.vfE},{id:"HKD",name:"Hong Kong Dollar",iconType:"FA",symbol:w.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:w.FYJ},{id:"ISK",name:"Iceland Krona",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"JPY",name:"Japan Yen",iconType:"FA",symbol:w.zPk},{id:"KRW",name:"Korea (South) Won",iconType:"FA",symbol:w.JKM},{id:"NZD",name:"New Zealand Dollar",iconType:"FA",symbol:w.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:w.f6_},{id:"SEK",name:"Sweden Krona",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"SGD",name:"Singapore Dollar",iconType:"FA",symbol:w.Vpi},{id:"THB",name:"Thailand Baht",iconType:"FA",symbol:w.Kcb},{id:"TRY",name:"Turkey Lira",iconType:"FA",symbol:w.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 Vt(oe){const tt=Et.find($t=>$t.id===oe);return"SVG"===tt.iconType&&"string"==typeof tt.symbol&&(tt.symbol=tt.symbol.replace('{"use strict";g.d(te,{u:()=>ae});var e=g(1626),t=g(4412),w=g(1413),S=g(8810),l=g(7673),x=g(1594),f=g(1397),I=g(6977),d=g(6354),T=g(9437),y=g(3993),F=g(4416),R=g(2462),z=g(1771),W=g(190),$=g(3536),j=g(9584),Q=g(4438),J=g(9640),ee=g(8570),ie=g(5416),ge=g(177);let ae=(()=>{class Me{constructor(de,D,n,c,m){this.httpClient=de,this.store=D,this.logger=n,this.snackBar=c,this.titleCasePipe=m,this.APIUrl=F.H$,this.lnImplementation="",this.lnImplementationUpdated=new t.t(null),this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B],this.mapAliases=(h,C)=>(h&&h.length>0?h.forEach((k,L)=>{if(C&&C.length>0)for(let _=0;_{let c=this.APIUrl+"/"+n+F.rl.PAYMENTS_API+"/decode/"+de,m="GET",h=null;return"cln"===n&&(c=this.APIUrl+"/"+n+F.rl.UTILITY_API+"/decode",h={string:de},m="POST"),this.store.dispatch((0,z.mt)({payload:F.MZ.DECODE_PAYMENT})),this.httpClient.request(m,c,{body:JSON.stringify(h),headers:{"Content-Type":"application/json"}}).pipe((0,I.Q)(this.unSubs[0]),(0,d.T)(C=>(this.store.dispatch((0,z.y0)({payload:F.MZ.DECODE_PAYMENT})),C)),(0,T.W)(C=>(D?this.handleErrorWithoutAlert("Decode Payment",F.MZ.DECODE_PAYMENT,C):this.handleErrorWithAlert("decodePaymentData",F.MZ.DECODE_PAYMENT,"Decode Payment Failed",c,C),(0,S.$)(()=>new Error(this.extractErrorMessage(C))))))}))}decodePayments(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>{let n="",c="",m=null;return"ecl"===D?(n=this.APIUrl+"/"+D+F.rl.PAYMENTS_API+"/getsentinfos",m={payments:de},c=F.MZ.GET_SENT_PAYMENTS):"cln"===D?(n=this.APIUrl+"/"+D+F.rl.UTILITY_API+"/decode",m={string:de},c=F.MZ.DECODE_PAYMENTS):(n=this.APIUrl+"/"+D+F.rl.PAYMENTS_API,m={payments:de},c=F.MZ.DECODE_PAYMENTS),this.store.dispatch((0,z.mt)({payload:c})),this.httpClient.post(n,m).pipe((0,I.Q)(this.unSubs[1]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:c})),h)),(0,T.W)(h=>(this.handleErrorWithAlert("decodePaymentsData",c,c+" Failed",n,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}getAliasesFromPubkeys(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{if(D){const c=(new e.Nl).set("pubkeys",de);return this.httpClient.get(this.APIUrl+"/"+n+F.rl.NETWORK_API+"/nodes",{params:c})}return this.httpClient.get(this.APIUrl+"/"+n+F.rl.NETWORK_API+"/node/"+de)}))}signMessage(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>{let n=this.APIUrl+"/"+D+F.rl.MESSAGE_API+"/sign";return"cln"===D&&(n=this.APIUrl+"/"+D+F.rl.UTILITY_API+"/sign"),this.store.dispatch((0,z.mt)({payload:F.MZ.SIGN_MESSAGE})),this.httpClient.post(n,{message:de}).pipe((0,I.Q)(this.unSubs[2]),(0,d.T)(c=>(this.store.dispatch((0,z.y0)({payload:F.MZ.SIGN_MESSAGE})),c)),(0,T.W)(c=>(this.handleErrorWithAlert("signMessageData",F.MZ.SIGN_MESSAGE,"Sign Message Failed",n,c),(0,S.$)(()=>new Error(this.extractErrorMessage(c))))))}))}verifyMessage(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{let c="",m=null;return"cln"===n?(c=this.APIUrl+"/"+n+F.rl.UTILITY_API+"/verify",m={message:de,zbase:D}):(c=this.APIUrl+"/"+n+F.rl.MESSAGE_API+"/verify",m={message:de,signature:D}),this.store.dispatch((0,z.mt)({payload:F.MZ.VERIFY_MESSAGE})),this.httpClient.post(c,m).pipe((0,I.Q)(this.unSubs[3]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:F.MZ.VERIFY_MESSAGE})),h)),(0,T.W)(h=>(this.handleErrorWithAlert("verifyMessageData",F.MZ.VERIFY_MESSAGE,"Verify Message Failed",c,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}bumpFee(de,D,n,c){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(m=>{const h={txid:de,outputIndex:D};return n&&(h.targetConf=n),c&&(h.satPerByte=c),this.store.dispatch((0,z.mt)({payload:F.MZ.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+m+F.rl.WALLET_API+"/bumpfee",h).pipe((0,I.Q)(this.unSubs[4]),(0,d.T)(C=>(this.store.dispatch((0,z.y0)({payload:F.MZ.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),C)),(0,T.W)(C=>(this.handleErrorWithoutAlert("Bump Fee",F.MZ.BUMP_FEE,C),(0,S.$)(()=>new Error(this.extractErrorMessage(C))))))}))}labelUTXO(de,D,n=!0){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(c=>{const m={txid:de,label:D,overwrite:n};return this.store.dispatch((0,z.mt)({payload:F.MZ.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+c+F.rl.WALLET_API+"/label",m).pipe((0,I.Q)(this.unSubs[5]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:F.MZ.LABEL_UTXO})),h)),(0,T.W)(h=>(this.handleErrorWithoutAlert("Label UTXO",F.MZ.LABEL_UTXO,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}leaseUTXO(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{const c={txid:de,outputIndex:D};return this.store.dispatch((0,z.mt)({payload:F.MZ.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+n+F.rl.WALLET_API+"/lease",c).pipe((0,I.Q)(this.unSubs[6]),(0,d.T)(m=>{this.store.dispatch((0,z.y0)({payload:F.MZ.LEASE_UTXO})),this.store.dispatch((0,W.mh)()),this.store.dispatch((0,W.SM)());const h=new Date(1e3*m.expiration);return Math.round(h.getTime())-60*h.getTimezoneOffset()}),(0,T.W)(m=>(this.handleErrorWithoutAlert("Lease UTXO",F.MZ.LEASE_UTXO,m),(0,S.$)(()=>new Error(this.extractErrorMessage(m))))))}))}getForwardingHistory(de,D,n,c){if("LND"===de){const m={end_time:n,start_time:D};return this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+F.rl.SWITCH_API,m).pipe((0,I.Q)(this.unSubs[7]),(0,y.E)(this.store.select($.eO)),(0,f.Z)(([h,C])=>{if(h.forwarding_events){const k=[...C.channels,...C.closedChannels];h.forwarding_events.forEach(L=>{if(k&&k.length>0)for(let _=0;_(this.handleErrorWithAlert("getForwardingHistoryData",F.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+F.rl.SWITCH_API,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}return"CLN"===de?(this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+F.rl.CHANNELS_API+"/listForwards",{status:c||"settled"}).pipe((0,I.Q)(this.unSubs[8]),(0,y.E)(this.store.select(j.BM)),(0,f.Z)(([m,h])=>{const C=this.mapAliases(m,[...h.activeChannels,...h.pendingChannels,...h.inactiveChannels]);return this.store.dispatch((0,z.y0)({payload:F.MZ.GET_FORWARDING_HISTORY})),(0,l.of)(C)}),(0,T.W)(m=>(this.handleErrorWithAlert("getForwardingHistoryData",F.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+F.rl.CHANNELS_API+"/listForwards",m),(0,S.$)(()=>new Error(this.extractErrorMessage(m))))))):(0,l.of)({})}listNetworkNodes(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>(this.store.dispatch((0,z.mt)({payload:F.MZ.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+D+F.rl.NETWORK_API+"/listNodes",de).pipe((0,I.Q)(this.unSubs[9]),(0,f.Z)(n=>(this.store.dispatch((0,z.y0)({payload:F.MZ.LIST_NETWORK_NODES})),(0,l.of)(n))),(0,T.W)(n=>(this.handleErrorWithoutAlert("List Network Nodes",F.MZ.LIST_NETWORK_NODES,n),(0,S.$)(()=>this.extractErrorMessage(n))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(de=>(this.store.dispatch((0,z.mt)({payload:F.MZ.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+de+F.rl.UTILITY_API+"/listConfigs").pipe((0,I.Q)(this.unSubs[10]),(0,f.Z)(D=>(this.store.dispatch((0,z.y0)({payload:F.MZ.GET_LIST_CONFIGS})),(0,l.of)(D))),(0,T.W)(D=>(this.handleErrorWithoutAlert("List Configurations",F.MZ.GET_LIST_CONFIGS,D),(0,S.$)(()=>this.extractErrorMessage(D))))))))}getOrUpdateFunderPolicy(de,D,n,c,m,h){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(C=>{const k=de?{policy:de,policy_mod:D,lease_fee_base_msat:n,lease_fee_basis:c,channel_fee_max_base_msat:m,channel_fee_max_proportional_thousandths:h}:null;return this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+C+F.rl.CHANNELS_API+"/funderUpdate",k).pipe((0,I.Q)(this.unSubs[11]),(0,d.T)(L=>(this.store.dispatch((0,z.y0)({payload:F.MZ.GET_FUNDER_POLICY})),k&&this.store.dispatch((0,z.UI)({payload:"Funder Policy Updated Successfully with Compact Lease: "+L.compact_lease+"!"})),L)),(0,T.W)(L=>(this.handleErrorWithoutAlert("Funder Policy",F.MZ.GET_FUNDER_POLICY,L),(0,S.$)(()=>new Error(this.extractErrorMessage(L))))))}))}circularRebalance(de,D="",n="",c="",m="",h=[],C="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+F.rl.CHANNELS_API+"/circularRebalance",{amountMsat:de,sourceShortChannelId:D,sourceNodeId:n,targetShortChannelId:c,targetNodeId:m,ignoreNodeIds:h,format:C}).pipe((0,I.Q)(this.unSubs[12]),(0,d.T)(_=>_),(0,T.W)(_=>(this.handleErrorWithoutAlert("Rebalance Channel",F.MZ.REBALANCE_CHANNEL,_),(0,S.$)(()=>_.error))))}extractErrorMessage(de,D="Unknown Error."){return this.titleCasePipe.transform(de.error.text&&"string"==typeof de.error.text&&de.error.text.includes('')?"API Route Does Not Exist.":de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&de.error.error.error.error.error&&"string"==typeof de.error.error.error.error.error?de.error.error.error.error.error:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&"string"==typeof de.error.error.error.error?de.error.error.error.error:de.error&&de.error.error&&de.error.error.error&&"string"==typeof de.error.error.error?de.error.error.error:de.error&&de.error.error&&"string"==typeof de.error.error?de.error.error:de.error&&"string"==typeof de.error?de.error:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&de.error.error.error.error.message&&"string"==typeof de.error.error.error.error.message?de.error.error.error.error.message:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.message&&"string"==typeof de.error.error.error.message?de.error.error.error.message:de.error&&de.error.error&&de.error.error.message&&"string"==typeof de.error.error.message?de.error.error.message:de.error&&de.error.message&&"string"==typeof de.error.message?de.error.message:de.message&&"string"==typeof de.message?de.message:D)}handleErrorWithoutAlert(de,D,n){n.error.text&&"string"==typeof n.error.text&&n.error.text.includes('')&&(n={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+de+"\n"+JSON.stringify(n)),401===n.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.Jh)()),this.store.dispatch((0,z.ri)({payload:"Authentication Failed: "+JSON.stringify(n.error)}))):(this.store.dispatch((0,z.y0)({payload:D})),this.store.dispatch((0,z.Gd)({payload:{action:de,status:F.wn.ERROR,statusCode:n.status.toString(),message:this.extractErrorMessage(n)}})))}handleErrorWithAlert(de,D,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.Jh)()),this.store.dispatch((0,z.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,z.y0)({payload:D}));const h=this.extractErrorMessage(m);this.store.dispatch((0,z.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status?m.status:"Unknown Error",message:h,URL:c},component:R.f}}})),this.store.dispatch((0,z.Gd)({payload:{action:de,status:F.wn.ERROR,statusCode:m.status.toString(),message:h,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(de=>{de.next(null),de.complete()})}static#e=this.\u0275fac=function(D){return new(D||Me)(Q.KVO(e.Qq),Q.KVO(J.il),Q.KVO(ee.gP),Q.KVO(ie.UG),Q.KVO(ge.PV))};static#t=this.\u0275prov=Q.jDH({token:Me,factory:Me.\u0275fac})}return Me})()},8570:(Qe,te,g)=>{"use strict";g.d(te,{gP:()=>l,tU:()=>x});var e=g(4438);const t=(0,e.naY)(),w=()=>null;let l=(()=>{class f{invokeConsoleMethod(d,T){}static#e=this.\u0275fac=function(T){return new(T||f)};static#t=this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}return f})(),x=(()=>{class f{get info(){return t?console.log.bind(console):w}get warn(){return t?console.warn.bind(console):w}get error(){return t?console.error.bind(console):w}invokeConsoleMethod(d,T){(console[d]||console.log||w).apply(console,[T])}static#e=this.\u0275fac=function(T){return new(T||f)};static#t=this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}return f})()},4104:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>$});var e=g(1626),t=g(4412),w=g(1413),S=g(7673),l=g(8810),x=g(6977),f=g(9437),I=g(6354),d=g(4416),T=g(2462),y=g(1771),F=g(4438),R=g(8570),z=g(9640),W=g(2571);let $=(()=>{class j{constructor(J,ee,ie,ge){this.httpClient=J,this.logger=ee,this.store=ie,this.commonService=ge,this.loopUrl="",this.swaps=[],this.swapsChanged=new t.t([]),this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.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,y.mt)({payload:d.MZ.GET_LOOP_SWAPS})),this.loopUrl=d.H$+d.rl.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,x.Q)(this.unSubs[0])).subscribe({next:J=>{this.store.dispatch((0,y.y0)({payload:d.MZ.GET_LOOP_SWAPS})),this.swaps=J,this.swapsChanged.next(this.swaps)},error:J=>this.swapsChanged.error(this.handleErrorWithAlert(d.MZ.GET_LOOP_SWAPS,this.loopUrl,J))})}loopOut(J,ee,ie,ge,ae,Me,Te,de,D,n){const c={amount:J,targetConf:ie,swapRoutingFee:ge,minerFee:ae,prepayRoutingFee:Me,prepayAmt:Te,swapFee:de,swapPublicationDeadline:D,destAddress:n};return""!==ee&&(c.chanId=ee),this.loopUrl=d.H$+d.rl.LOOP_API+"/out",this.httpClient.post(this.loopUrl,c).pipe((0,f.W)(m=>this.handleErrorWithoutAlert("Loop Out for Channel: "+ee,d.MZ.NO_SPINNER,m)))}getLoopOutTerms(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,f.W)(J=>this.handleErrorWithoutAlert("Loop Out Terms",d.MZ.NO_SPINNER,J)))}getLoopOutQuote(J,ee,ie){let ge=new e.Nl;return ge=ge.append("targetConf",ee.toString()),ge=ge.append("swapPublicationDeadline",ie.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/quote/"+J,this.store.dispatch((0,y.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ge}).pipe((0,x.Q)(this.unSubs[1]),(0,I.T)(ae=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_QUOTE})),ae)),(0,f.W)(ae=>this.handleErrorWithoutAlert("Loop Out Quote",d.MZ.GET_QUOTE,ae)))}getLoopOutTermsAndQuotes(J){let ee=new e.Nl;return ee=ee.append("targetConf",J.toString()),ee=ee.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ee}).pipe((0,x.Q)(this.unSubs[2]),(0,I.T)(ie=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ie)),(0,f.W)(ie=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ie))))}loopIn(J,ee,ie,ge,ae){const Me={amount:J,swapFee:ee,minerFee:ie,lastHop:ge,externalHtlc:ae};return this.loopUrl=d.H$+d.rl.LOOP_API+"/in",this.httpClient.post(this.loopUrl,Me).pipe((0,f.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,f.W)(J=>this.handleErrorWithoutAlert("Loop In Terms",d.MZ.NO_SPINNER,J)))}getLoopInQuote(J,ee,ie){let ge=new e.Nl;return ge=ge.append("targetConf",ee.toString()),ge=ge.append("swapPublicationDeadline",ie.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/quote/"+J,this.store.dispatch((0,y.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ge}).pipe((0,x.Q)(this.unSubs[3]),(0,I.T)(ae=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_QUOTE})),ae)),(0,f.W)(ae=>this.handleErrorWithoutAlert("Loop In Qoute",d.MZ.GET_QUOTE,ae)))}getLoopInTermsAndQuotes(J){let ee=new e.Nl;return ee=ee.append("targetConf",J.toString()),ee=ee.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ee}).pipe((0,x.Q)(this.unSubs[4]),(0,I.T)(ie=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ie)),(0,f.W)(ie=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ie))))}getSwap(J){return this.loopUrl=d.H$+d.rl.LOOP_API+"/swap/"+J,this.httpClient.get(this.loopUrl).pipe((0,f.W)(ee=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+J,d.MZ.NO_SPINNER,ee)))}handleErrorWithoutAlert(J,ee,ie){let ge="";return this.logger.error("ERROR IN: "+J+"\n"+JSON.stringify(ie)),this.store.dispatch((0,y.y0)({payload:ee})),401===ie.status?(ge="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:ge}))):503===ie.status?(ge="Unable to Connect to Loop Server.",this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:J},component:T.f}}}))):ge=this.commonService.extractErrorMessage(ie),(0,l.$)(()=>new Error(ge))}handleErrorWithAlert(J,ee,ie){let ge="";if(this.logger.error(ie),this.store.dispatch((0,y.y0)({payload:J})),401===ie.status)ge="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:ge}));else if(503===ie.status)ge="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:ee},component:T.f}}}))},100);else{ge=this.commonService.extractErrorMessage(ie);const ae=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,y.xO)({payload:{data:{type:d.A$.ERROR,alertTitle:"ERROR",message:{code:ae,message:ge,URL:ee},component:T.f}}}))},100)}return{message:ge}}ngOnDestroy(){this.unSubs.forEach(J=>{J.next(null),J.complete()})}static#e=this.\u0275fac=function(ee){return new(ee||j)(F.KVO(e.Qq),F.KVO(R.gP),F.KVO(z.il),F.KVO(W.h))};static#t=this.\u0275prov=F.jDH({token:j,factory:j.\u0275fac})}return j})()},3202:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>w});var e=g(1413),t=g(4438);let w=(()=>{class S{constructor(){this.sessionSub=new e.B}watchSession(){return this.sessionSub.asObservable()}getItem(x){return sessionStorage.getItem(x)}getAllItems(){return sessionStorage}setItem(x,f){sessionStorage.setItem(x,f),this.sessionSub.next(sessionStorage)}removeItem(x){sessionStorage.removeItem(x),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275prov=t.jDH({token:S,factory:S.\u0275fac})}return S})()},7879:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>z});var e=g(4412),t=g(1413),w=g(6977),S=g(7707),l=g(1985),x=g(8359),f=g(2771);const I={url:"",deserializer:W=>JSON.parse(W.data),serializer:W=>JSON.stringify(W)};class T extends t.k{constructor($,j){if(super(),this._socket=null,$ instanceof l.c)this.destination=j,this.source=$;else{const Q=this._config=Object.assign({},I);if(this._output=new t.B,"string"==typeof $)Q.url=$;else for(const J in $)$.hasOwnProperty(J)&&(Q[J]=$[J]);if(!Q.WebSocketCtor&&WebSocket)Q.WebSocketCtor=WebSocket;else if(!Q.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new f.m}}lift($){const j=new T(this._config,this.destination);return j.operator=$,j.source=this,j}_resetState(){this._socket=null,this.source||(this.destination=new f.m),this._output=new t.B}multiplex($,j,Q){const J=this;return new l.c(ee=>{try{J.next($())}catch(ge){ee.error(ge)}const ie=J.subscribe({next:ge=>{try{Q(ge)&&ee.next(ge)}catch(ae){ee.error(ae)}},error:ge=>ee.error(ge),complete:()=>ee.complete()});return()=>{try{J.next(j())}catch(ge){ee.error(ge)}ie.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:$,protocol:j,url:Q,binaryType:J}=this._config,ee=this._output;let ie=null;try{ie=j?new $(Q,j):new $(Q),this._socket=ie,J&&(this._socket.binaryType=J)}catch(ae){return void ee.error(ae)}const ge=new x.yU(()=>{this._socket=null,ie&&1===ie.readyState&&ie.close()});ie.onopen=ae=>{const{_socket:Me}=this;if(!Me)return ie.close(),void this._resetState();const{openObserver:Te}=this._config;Te&&Te.next(ae);const de=this.destination;this.destination=S.vU.create(D=>{if(1===ie.readyState)try{const{serializer:n}=this._config;ie.send(n(D))}catch(n){this.destination.error(n)}},D=>{const{closingObserver:n}=this._config;n&&n.next(void 0),D&&D.code?ie.close(D.code,D.reason):ee.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),ie.close(),this._resetState()}),de&&de instanceof f.m&&ge.add(de.subscribe(this.destination))},ie.onerror=ae=>{this._resetState(),ee.error(ae)},ie.onclose=ae=>{ie===this._socket&&this._resetState();const{closeObserver:Me}=this._config;Me&&Me.next(ae),ae.wasClean?ee.complete():ee.error(ae)},ie.onmessage=ae=>{try{const{deserializer:Me}=this._config;ee.next(Me(ae))}catch(Me){ee.error(Me)}}}_subscribe($){const{source:j}=this;return j?j.subscribe($):(this._socket||this._connectSocket(),this._output.subscribe($),$.add(()=>{const{_socket:Q}=this;0===this._output.observers.length&&(Q&&(1===Q.readyState||0===Q.readyState)&&Q.close(),this._resetState())}),$)}unsubscribe(){const{_socket:$}=this;$&&(1===$.readyState||0===$.readyState)&&$.close(),this._resetState(),super.unsubscribe()}}var y=g(4438),F=g(8570),R=g(3202);let z=(()=>{class W{constructor(j,Q){this.logger=j,this.sessionService=Q,this.clWSMessages=new e.t(null),this.eclWSMessages=new e.t(null),this.lndWSMessages=new e.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(j,Q){(!this.socket||this.socket.closed)&&(this.wsUrl=j,this.nodeIndex=Q,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new T({url:j,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,w.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=this.\u0275fac=function(Q){return new(Q||W)(y.KVO(F.gP),y.KVO(R.Q))};static#t=this.\u0275prov=y.jDH({token:W,factory:W.\u0275fac})}return W})()},9029:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>as});var e=g(177),t=g(1188),w=g(9417),S=g(1626),l=g(60),x=g(4438),f=g(9340),I=g(6038),d=g(2920);g(4085);let ct=(()=>{class Ft{}return Ft.\u0275fac=function(xt){return new(xt||Ft)},Ft.\u0275mod=x.$C({type:Ft}),Ft.\u0275inj=x.G2t({imports:[f.Ui]}),Ft})(),Ut=(()=>{class Ft{constructor(xt,ai){(0,e.Vy)(ai)&&!xt&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(xt,ai=[]){return{ngModule:Ft,providers:xt.serverLoaded?[{provide:f.EA,useValue:{...f.PV,...xt}},{provide:f.SL,useValue:ai,multi:!0},{provide:f.Ce,useValue:!0}]:[{provide:f.EA,useValue:{...f.PV,...xt}},{provide:f.SL,useValue:ai,multi:!0}]}}}return Ft.\u0275fac=function(xt){return new(xt||Ft)(x.KVO(f.Ce),x.KVO(x.Agw))},Ft.\u0275mod=x.$C({type:Ft}),Ft.\u0275inj=x.G2t({imports:[d.w2,I.Cc,ct,d.w2,I.Cc,ct]}),Ft})();var xi=g(9327),Si=g(6600),zi=g(5351),en=g(850),Ni=g(1975),fn=g(8834),Zt=g(8617);g(5024);const re=["button"],je=["*"];function Ce(Ft,ri){if(1&Ft&&x.nrm(0,"mat-pseudo-checkbox",3),2&Ft){const xt=x.XpG();x.Y8G("disabled",xt.disabled)}}function ot(Ft,ri){if(1&Ft&&x.nrm(0,"mat-pseudo-checkbox",3),2&Ft){const xt=x.XpG();x.Y8G("disabled",xt.disabled)}}const ut=new x.nKC("MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS",{providedIn:"root",factory:function ii(){return{hideSingleSelectionIndicator:!1,hideMultipleSelectionIndicator:!1}}}),si=new x.nKC("MatButtonToggleGroup");let mn=0;class Fn{constructor(ri,xt){this.source=ri,this.value=xt}}let Yn=(()=>{class Ft{get buttonId(){return`${this.id}-button`}get appearance(){return this.buttonToggleGroup?this.buttonToggleGroup.appearance:this._appearance}set appearance(xt){this._appearance=xt}get checked(){return this.buttonToggleGroup?this.buttonToggleGroup._isSelected(this):this._checked}set checked(xt){xt!==this._checked&&(this._checked=xt,this.buttonToggleGroup&&this.buttonToggleGroup._syncButtonToggle(this,this._checked),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled||this.buttonToggleGroup&&this.buttonToggleGroup.disabled}set disabled(xt){this._disabled=xt}constructor(xt,ai,Ei,Ki,tr,Or){this._changeDetectorRef=ai,this._elementRef=Ei,this._focusMonitor=Ki,this._checked=!1,this.ariaLabelledby=null,this._disabled=!1,this.change=new x.bkB;const Fr=Number(tr);this.tabIndex=Fr||0===Fr?Fr:null,this.buttonToggleGroup=xt,this.appearance=Or&&Or.appearance?Or.appearance:"standard"}ngOnInit(){const xt=this.buttonToggleGroup;this.id=this.id||"mat-button-toggle-"+mn++,xt&&(xt._isPrechecked(this)?this.checked=!0:xt._isSelected(this)!==this._checked&&xt._syncButtonToggle(this,this._checked))}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){const xt=this.buttonToggleGroup;this._focusMonitor.stopMonitoring(this._elementRef),xt&&xt._isSelected(this)&&xt._syncButtonToggle(this,!1,!1,!0)}focus(xt){this._buttonElement.nativeElement.focus(xt)}_onButtonClick(){const xt=!!this._isSingleSelector()||!this._checked;xt!==this._checked&&(this._checked=xt,this.buttonToggleGroup&&(this.buttonToggleGroup._syncButtonToggle(this,this._checked,!0),this.buttonToggleGroup._onTouched())),this.change.emit(new Fn(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#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.rXU(si,8),x.rXU(x.gRc),x.rXU(x.aKT),x.rXU(Zt.FN),x.kS0("tabindex"),x.rXU(ut,8))};static#t=this.\u0275cmp=x.VBU({type:Ft,selectors:[["mat-button-toggle"]],viewQuery:function(ai,Ei){if(1&ai&&x.GBs(re,5),2&ai){let Ki;x.mGM(Ki=x.lsd())&&(Ei._buttonElement=Ki.first)}},hostAttrs:["role","presentation",1,"mat-button-toggle"],hostVars:12,hostBindings:function(ai,Ei){1&ai&&x.bIt("focus",function(){return Ei.focus()}),2&ai&&(x.BMQ("aria-label",null)("aria-labelledby",null)("id",Ei.id)("name",null),x.AVh("mat-button-toggle-standalone",!Ei.buttonToggleGroup)("mat-button-toggle-checked",Ei.checked)("mat-button-toggle-disabled",Ei.disabled)("mat-button-toggle-appearance-standard","standard"===Ei.appearance))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],id:"id",name:"name",value:"value",tabIndex:"tabIndex",disableRipple:[2,"disableRipple","disableRipple",x.L39],appearance:"appearance",checked:[2,"checked","checked",x.L39],disabled:[2,"disabled","disabled",x.L39]},outputs:{change:"change"},exportAs:["matButtonToggle"],standalone:!0,features:[x.GFd,x.aNF],ngContentSelectors:je,decls:8,vars:11,consts:[["button",""],["type","button",1,"mat-button-toggle-button","mat-focus-indicator",3,"click","id","disabled"],[1,"mat-button-toggle-label-content"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"mat-button-toggle-focus-overlay"],["matRipple","",1,"mat-button-toggle-ripple",3,"matRippleTrigger","matRippleDisabled"]],template:function(ai,Ei){if(1&ai){const Ki=x.RV6();x.NAR(),x.j41(0,"button",1,0),x.bIt("click",function(){return x.eBV(Ki),x.Njj(Ei._onButtonClick())}),x.j41(2,"span",2),x.DNE(3,Ce,1,1,"mat-pseudo-checkbox",3)(4,ot,1,1,"mat-pseudo-checkbox",3),x.SdG(5),x.k0s()(),x.nrm(6,"span",4)(7,"span",5)}if(2&ai){const Ki=x.sdS(1);x.Y8G("id",Ei.buttonId)("disabled",Ei.disabled||null),x.BMQ("tabindex",Ei.disabled?-1:Ei.tabIndex)("aria-pressed",Ei.checked)("name",Ei._getButtonName())("aria-label",Ei.ariaLabel)("aria-labelledby",Ei.ariaLabelledby),x.R7$(3),x.vxM(Ei.buttonToggleGroup&&Ei.checked&&!Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideSingleSelectionIndicator?3:-1),x.R7$(),x.vxM(Ei.buttonToggleGroup&&Ei.checked&&Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideMultipleSelectionIndicator?4:-1),x.R7$(3),x.Y8G("matRippleTrigger",Ki)("matRippleDisabled",Ei.disableRipple||Ei.disabled)}},dependencies:[Si.r6,Si.wg],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);transform:translateZ(0);border-radius:var(--mat-legacy-button-toggle-shape)}.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)}.cdk-high-contrast-active .mat-button-toggle-standalone,.cdk-high-contrast-active .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-standard-button-toggle-shape);border:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard .mat-pseudo-checkbox,.mat-button-toggle-group-appearance-standard .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-standard-button-toggle-selected-state-text-color )}.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}.cdk-high-contrast-active .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.cdk-high-contrast-active .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-legacy-button-toggle-text-color);font-family:var(--mat-legacy-button-toggle-label-text-font);font-size:var(--mat-legacy-button-toggle-label-text-size);line-height:var(--mat-legacy-button-toggle-label-text-line-height);font-weight:var(--mat-legacy-button-toggle-label-text-weight);letter-spacing:var(--mat-legacy-button-toggle-label-text-tracking);--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-legacy-button-toggle-selected-state-text-color )}.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-legacy-button-toggle-focus-state-layer-opacity)}.mat-button-toggle .mat-icon svg{vertical-align:top}.mat-button-toggle .mat-pseudo-checkbox{margin-right:12px}[dir=rtl] .mat-button-toggle .mat-pseudo-checkbox{margin-right:0;margin-left:12px}.mat-button-toggle-checked{color:var(--mat-legacy-button-toggle-selected-state-text-color);background-color:var(--mat-legacy-button-toggle-selected-state-background-color)}.mat-button-toggle-disabled{color:var(--mat-legacy-button-toggle-disabled-state-text-color);background-color:var(--mat-legacy-button-toggle-disabled-state-background-color);--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-legacy-button-toggle-disabled-state-text-color )}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:var(--mat-legacy-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard{color:var(--mat-standard-button-toggle-text-color);background-color:var(--mat-standard-button-toggle-background-color);font-family:var(--mat-standard-button-toggle-label-text-font);font-size:var(--mat-standard-button-toggle-label-text-size);line-height:var(--mat-standard-button-toggle-label-text-line-height);font-weight:var(--mat-standard-button-toggle-label-text-weight);letter-spacing:var(--mat-standard-button-toggle-label-text-tracking)}.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:solid 1px var(--mat-standard-button-toggle-divider-color)}[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-standard-button-toggle-divider-color)}.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-standard-button-toggle-divider-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-selected-state-text-color);background-color:var(--mat-standard-button-toggle-selected-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled{color:var(--mat-standard-button-toggle-disabled-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-standard-button-toggle-disabled-selected-state-text-color )}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-disabled-selected-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:var(--mat-standard-button-toggle-state-layer-color)}.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):hover .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-hover-state-layer-opacity)}.mat-button-toggle-appearance-standard.cdk-keyboard-focused:not(.mat-button-toggle-disabled) .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-focus-state-layer-opacity)}@media(hover: none){.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):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-legacy-button-toggle-height);position:relative}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{padding:0 12px;line-height:var(--mat-standard-button-toggle-height)}.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-legacy-button-toggle-state-layer-color)}.cdk-high-contrast-active .mat-button-toggle-checked .mat-button-toggle-focus-overlay{border-bottom:solid 500px;opacity:.5;height:0}.cdk-high-contrast-active .mat-button-toggle-checked:hover .mat-button-toggle-focus-overlay{opacity:.6}.cdk-high-contrast-active .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-disabled .mat-button-toggle-button{cursor:default}.mat-button-toggle-button::-moz-focus-inner{border:0}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard{--mat-focus-indicator-border-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-standard-button-toggle-shape);border-bottom-right-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-left-radius:var(--mat-standard-button-toggle-shape);border-bottom-left-radius:var(--mat-standard-button-toggle-shape)}"],encapsulation:2,changeDetection:0})}return Ft})(),Qn=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({imports:[Si.yE,Si.pZ,Yn,Si.yE]})}return Ft})();var rr=g(5596),Rn=g(2765),_i=g(5084),Oi=g(9454),jt=g(6195),Ci=g(9213),hi=g(9631),yi=g(3902),Vi=g(9115),ji=g(6695),rn=g(7575),ar=g(9183),sr=g(5951),nr=g(2798),or=g(882),Xr=g(450),Sr=g(6860);g(1413);let kr=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({imports:[Si.yE,Si.pZ]})}return Ft})();var ha=g(5416),Br=g(2042),Ua=g(6013),rs=g(9159),Ga=g(6850),Na=g(5911),ja=g(4823),Bo=g(7358),Uo=g(6471),uo=g(6064),ga=g(8288),Za=g(497),Lr=g(6969);let _a=(()=>{class Ft extends Lr.Sf{constructor(xt,ai){super(xt,ai)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.rXU(e.qQ),x.rXU(Sr.OD))};static#t=this.\u0275dir=x.FsC({type:Ft,features:[x.Vt3]})}return Ft})();var Oo=g(8570),qr=g(4416),Bn=g(2929);const Da={suppressScrollX:!1,suppressScrollY:!1};let Go=(()=>{class Ft extends Si.xW{constructor(xt){super(xt)}format(xt,ai){if("input"===ai){let Ei=xt.getDate().toString();return Ei=+Ei<10?"0"+Ei:Ei,Ei+"/"+qr.KR[xt.getMonth()].name.toUpperCase()+"/"+xt.getFullYear()}return qr.KR[xt.getMonth()].name.toUpperCase()+" "+xt.getFullYear()}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.KVO(Si.Ju,8))};static#t=this.\u0275prov=x.jDH({token:Ft,factory:Ft.\u0275fac})}return Ft})();const Wa={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 as=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({providers:[{provide:Oo.gP,useClass:Oo.tU},{provide:Za.kU,useValue:Da},{provide:ha.x6,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:zi.di,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:Si.MJ,useClass:Go},{provide:Si.de,useValue:Wa},{provide:Lr.Sf,useClass:_a},e.QX,e.PV,e.vh,Bn.gZ,Bn.ZE,Bn.VD,Bn.Qu],imports:[e.MD,w.YN,w.X1,l.dX,Ut,xi.RH,zi.hM,fn.Hl,Qn,rr.Hu,Rn.g7,Oi.MY,jt.Fe,_i.X6,Si.WX,Ci.m_,hi.fS,yi.Fg,Vi.Cn,rn.PO,ar.D6,sr.Wk,Bo.jH,Uo.YN,nr.Ve,or.vg,Xr.mV,Br.NQ,rs.tP,Na.s5,ja.uc,Ni.Y,ji.Ou,Ua.aP,kr,Ga.RI,ha._T,en.jL,uo.dV,ga.XK,t.iI,S.q1,Za.U$,w.YN,w.X1,l.dX,Ut,xi.RH,zi.hM,fn.Hl,Qn,rr.Hu,Rn.g7,Oi.MY,jt.Fe,_i.X6,Si.WX,Ci.m_,hi.fS,yi.Fg,Vi.Cn,rn.PO,ar.D6,sr.Wk,Bo.jH,Uo.YN,nr.Ve,or.vg,Xr.mV,Br.NQ,rs.tP,Na.s5,ja.uc,Ni.Y,ji.Ou,Ua.aP,kr,Ga.RI,ha._T,en.jL,uo.dV,ga.XK,Za.U$]})}return Ft})()},1771:(Qe,te,g)=>{"use strict";g.d(te,{Dz:()=>W,Fl:()=>Me,Gd:()=>l,I1:()=>F,IK:()=>J,Jh:()=>x,My:()=>S,NU:()=>Q,Np:()=>ge,OP:()=>z,Qi:()=>ee,R$:()=>y,T$:()=>ie,Tn:()=>j,UI:()=>f,iD:()=>m,mt:()=>I,oz:()=>n,rc:()=>ae,ri:()=>Te,t2:()=>C,uP:()=>R,xO:()=>T,xw:()=>de,y0:()=>d});var e=g(9640),t=g(4416);(0,e.VP)(t.aU.VOID);const S=(0,e.VP)(t.aU.SET_API_URL_ECL,(0,e.xk)()),l=(0,e.VP)(t.aU.UPDATE_API_CALL_STATUS_ROOT,(0,e.xk)()),x=(0,e.VP)(t.aU.CLOSE_ALL_DIALOGS),f=(0,e.VP)(t.aU.OPEN_SNACK_BAR,(0,e.xk)()),I=(0,e.VP)(t.aU.OPEN_SPINNER,(0,e.xk)()),d=(0,e.VP)(t.aU.CLOSE_SPINNER,(0,e.xk)()),T=(0,e.VP)(t.aU.OPEN_ALERT,(0,e.xk)()),y=(0,e.VP)(t.aU.CLOSE_ALERT,(0,e.xk)()),F=(0,e.VP)(t.aU.OPEN_CONFIRMATION,(0,e.xk)()),R=(0,e.VP)(t.aU.CLOSE_CONFIRMATION,(0,e.xk)()),z=(0,e.VP)(t.aU.SHOW_PUBKEY),W=(0,e.VP)(t.aU.FETCH_CONFIG,(0,e.xk)()),j=((0,e.VP)(t.aU.SHOW_CONFIG,(0,e.xk)()),(0,e.VP)(t.aU.RESET_ROOT_STORE,(0,e.xk)())),Q=(0,e.VP)(t.aU.FETCH_APPLICATION_SETTINGS),J=(0,e.VP)(t.aU.SET_APPLICATION_SETTINGS,(0,e.xk)()),ee=(0,e.VP)(t.aU.SET_SELECTED_NODE,(0,e.xk)()),ie=(0,e.VP)(t.aU.UPDATE_NODE_SETTINGS,(0,e.xk)()),ge=(0,e.VP)(t.aU.SET_SELECTED_NODE_SETTINGS,(0,e.xk)()),ae=(0,e.VP)(t.aU.UPDATE_APPLICATION_SETTINGS,(0,e.xk)()),Me=(0,e.VP)(t.aU.SET_NODE_DATA,(0,e.xk)()),Te=(0,e.VP)(t.aU.LOGOUT,(0,e.xk)()),de=(0,e.VP)(t.aU.RESET_PASSWORD,(0,e.xk)()),n=((0,e.VP)(t.aU.RESET_PASSWORD_RES,(0,e.xk)()),(0,e.VP)(t.aU.IS_AUTHORIZED,(0,e.xk)())),m=((0,e.VP)(t.aU.IS_AUTHORIZED_RES,(0,e.xk)()),(0,e.VP)(t.aU.LOGIN,(0,e.xk)())),C=((0,e.VP)(t.aU.VERIFY_TWO_FA,(0,e.xk)()),(0,e.VP)(t.aU.FETCH_FILE,(0,e.xk)()));(0,e.VP)(t.aU.SHOW_FILE,(0,e.xk)())},7541:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>je});var e=g(4438),t=g(4054),w=g(1413),S=g(7673),l=g(6354),x=g(6697),f=g(3993),I=g(1397),d=g(9437),T=g(6977),y=g(4416),F=g(5351),R=g(2920),z=g(9183);let W=(()=>{class Ce{constructor(ut,ii){this.dialogRef=ut,this.data=ii}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-spinner-dialog"]],decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(ii,si){1&ii&&(e.j41(0,"div",0),e.nrm(1,"mat-progress-spinner",1),e.j41(2,"h2"),e.EFF(3),e.k0s()()),2&ii&&(e.R7$(3),e.JRh(si.data.titleMessage))},dependencies:[R.DJ,R.sA,z.LG],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]})}return Ce})();var $=g(5383),j=g(9647),Q=g(8570),J=g(5416),ee=g(2571),ie=g(1188),ge=g(9640),ae=g(177),Me=g(60),Te=g(6038),de=g(8834),D=g(5596),n=g(9213),c=g(1997),m=g(4823),h=g(8288),C=g(497),k=g(9157),L=g(9587);const _=["scrollContainer"],r=Ce=>({"display-none":Ce}),v=Ce=>({"h-40":Ce}),V=Ce=>({"failed-status":Ce});function N(Ce,ot){if(1&Ce&&e.nrm(0,"qr-code",19),2&Ce){const ut=e.XpG();e.Y8G("value",ut.showQRField)("size",200)("errorCorrectionLevel","L")}}function ne(Ce,ot){1&Ce&&e.eu8(0)}function Ee(Ce,ot){if(1&Ce&&(e.qex(0),e.j41(1,"mat-card-content",20,1),e.DNE(3,ne,1,0,"ng-container",21),e.k0s(),e.bVm()),2&Ce){const ut=e.XpG(),ii=e.sdS(20);e.R7$(),e.Y8G("ngClass",e.eq3(2,v,ut.data.scrollable)),e.R7$(2),e.Y8G("ngTemplateOutlet",ii)}}function ze(Ce,ot){1&Ce&&e.eu8(0)}function qe(Ce,ot){if(1&Ce&&(e.qex(0),e.j41(1,"mat-card-content",22),e.DNE(2,ze,1,0,"ng-container",21),e.k0s(),e.bVm()),2&Ce){e.XpG();const ut=e.sdS(20);e.R7$(2),e.Y8G("ngTemplateOutlet",ut)}}function Ke(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",26),e.EFF(1,"arrow_downward"),e.k0s())}function se(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",26),e.EFF(1,"arrow_upward"),e.k0s())}function X(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onScroll())}),e.DNE(2,Ke,2,0,"mat-icon",25)(3,se,2,0,"mat-icon",25),e.k0s()()}if(2&Ce){const ut=e.XpG();e.R7$(2),e.Y8G("ngIf","DOWN"===ut.scrollDirection),e.R7$(),e.Y8G("ngIf","UP"===ut.scrollDirection)}}function me(Ce,ot){1&Ce&&(e.j41(0,"button",27),e.EFF(1,"OK"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function ce(Ce,ot){1&Ce&&(e.j41(0,"button",28),e.EFF(1,"Close"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function fe(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",29),e.bIt("copied",function(si){e.eBV(ut);const Pi=e.XpG();return e.Njj(Pi.onCopyField(si))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.Y8G("payload",ut.showCopyField),e.R7$(),e.SpI("Copy ",ut.showCopyName,"")}}function ke(Ce,ot){1&Ce&&(e.j41(0,"button",28),e.EFF(1,"Close"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function mt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",29),e.bIt("copied",function(si){e.eBV(ut);const Pi=e.XpG();return e.Njj(Pi.onCopyField(si))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.Y8G("payload",ut.showQRField),e.R7$(),e.SpI("Copy ",ut.showQRName,"")}}function _e(Ce,ot){if(1&Ce&&e.nrm(0,"qr-code",19),2&Ce){const ut=e.XpG(2);e.Y8G("value",ut.showQRField)("size",200)("errorCorrectionLevel","L")}}function be(Ce,ot){if(1&Ce&&(e.j41(0,"p",35),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.JRh(ut.data.titleMessage)}}function pe(Ce,ot){1&Ce&&e.nrm(0,"span",49),2&Ce&&e.Y8G("innerHTML",ot.$implicit,e.npT)}function Ze(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,pe,1,1,"span",48),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.Y8G("ngForOf",ut.value)}}function _t(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ut.value,"dd/MMM/y HH:mm"))}}function at(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ut.value,ut.digitsInfo?ut.digitsInfo:"1.0-3"))}}function pt(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(ut.value?"True":"False")}}function Xt(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",53),e.EFF(1,"info"),e.k0s())}function ye(Ce,ot){if(1&Ce&&(e.j41(0,"p",51),e.EFF(1),e.DNE(2,Xt,2,0,"mat-icon",52),e.k0s()),2&Ce){const ut=e.XpG(3).$implicit,ii=e.XpG(4);e.Y8G("ngClass",e.eq3(3,V,ut.value===ii.LoopStateEnum.FAILED)),e.R7$(),e.SpI(" ",ut.value," "),e.R7$(),e.Y8G("ngIf",ut.value===ii.LoopStateEnum.FAILED)}}function ue(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"p",55),e.bIt("click",function(){e.eBV(ut);const si=e.XpG(8);return e.Njj(si.onGoToLink())}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG(4).$implicit,ii=e.XpG(4);e.FS9("matTooltip","Go To "+ii.goToName),e.R7$(),e.SpI(" ",ut.value," ")}}function Ie(Ce,ot){if(1&Ce&&e.EFF(0),2&Ce){const ut=e.XpG(4).$implicit;e.SpI(" ",ut.value," ")}}function He(Ce,ot){if(1&Ce&&e.DNE(0,ue,2,2,"p",54)(1,Ie,1,1,"ng-template",null,4,e.C5r),2&Ce){const ut=e.sdS(2),ii=e.XpG(3).$implicit,si=e.XpG(4);e.Y8G("ngIf",ii.value===si.goToFieldValue)("ngIfElse",ut)}}function Xe(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,ye,3,5,"p",50)(2,He,3,2,"ng-template",null,3,e.C5r),e.bVm()),2&Ce){const ut=e.sdS(3),ii=e.XpG(2).$implicit,si=e.XpG(4);e.R7$(),e.Y8G("ngIf","SWAP"===si.data.openedBy&&"state"===ii.key)("ngIfElse",ut)}}function yt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"fa-icon",56),e.bIt("click",function(){e.eBV(ut);const si=e.XpG(2).$implicit,Pi=e.XpG(4);return e.Njj(Pi.onExplorerClicked(si))}),e.k0s()}if(2&Ce){const ut=e.XpG(6);e.FS9("matTooltip","Link to "+ut.selNode.settings.blockExplorerUrl),e.Y8G("icon",ut.faUpRightFromSquare)}}function Ye(Ce,ot){if(1&Ce&&(e.j41(0,"span")(1,"span",44),e.DNE(2,Ze,2,1,"ng-container",45)(3,_t,3,4,"ng-container",45)(4,at,3,4,"ng-container",45)(5,pt,2,1,"ng-container",45)(6,Xe,4,2,"ng-container",46),e.j41(7,"span"),e.DNE(8,yt,1,2,"fa-icon",47),e.k0s()()()),2&Ce){const ut=e.XpG().$implicit,ii=e.XpG(4);e.R7$(),e.Y8G("ngSwitch",ut.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN),e.R7$(3),e.Y8G("ngIf",ut.explorerLink&&""!==ut.explorerLink)}}function rt(Ce,ot){1&Ce&&(e.j41(0,"span",57),e.EFF(1,"\xa0"),e.k0s())}function Yt(Ce,ot){if(1&Ce&&(e.j41(0,"div",40)(1,"h4",41),e.EFF(2),e.k0s(),e.DNE(3,Ye,9,6,"span",42)(4,rt,2,0,"ng-template",null,2,e.C5r),e.nrm(6,"mat-divider",43),e.k0s()),2&Ce){const ut=ot.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ut.width),e.R7$(2),e.JRh(ut.title),e.R7$(),e.Y8G("ngIf",ut&&(!!ut.value||0===ut.value))("ngIfElse",ii)}}function Nt(Ce,ot){if(1&Ce&&(e.j41(0,"div")(1,"div",38),e.DNE(2,Yt,7,4,"div",39),e.k0s()()),2&Ce){const ut=ot.$implicit;e.R7$(2),e.Y8G("ngForOf",ut)}}function Et(Ce,ot){if(1&Ce&&(e.j41(0,"div",36),e.DNE(1,Nt,3,1,"div",37),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.Y8G("ngForOf",ut.messageObjs)}}function Vt(Ce,ot){if(1&Ce&&(e.j41(0,"div",30)(1,"div",31),e.DNE(2,_e,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",32),e.DNE(4,be,2,1,"p",33)(5,Et,2,1,"div",34),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngClass",e.eq3(4,r,""===ut.showQRField||ut.screenSize!==ut.screenSizeEnum.XS&&ut.screenSize!==ut.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==ut.showQRField),e.R7$(2),e.Y8G("ngIf",ut.data.titleMessage),e.R7$(),e.Y8G("ngIf",(null==ut.messageObjs?null:ut.messageObjs.length)>0)}}let oe=(()=>{class Ce{set container(ut){ut&&(this.scrollContainer=ut,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(ut,ii,si,Pi,mn,Fn,$n,Yn){this.dialogRef=ut,this.data=ii,this.logger=si,this.snackBar=Pi,this.commonService=mn,this.renderer=Fn,this.router=$n,this.store=Yn,this.faUpRightFromSquare=$.k02,this.LoopStateEnum=y.Hx,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.screenSize="",this.screenSizeEnum=y.f7,this.scrollDirection="DOWN",this.shouldScroll=!0,this.unSubs=[new w.B,new w.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===y.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,T.Q)(this.unSubs[0])).subscribe(ut=>{this.selNode=ut,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(ut){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+ut)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}onExplorerClicked(ut){window.open(this.selNode.settings.blockExplorerUrl+"/"+ut.explorerLink+"/"+ut.value,"_blank")}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd(),this.unSubs.forEach(ut=>{ut.next(null),ut.complete()})}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ee.h),e.rXU(e.sFG),e.rXU(ie.Ix),e.rXU(ge.il))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-alert-message"]],viewQuery:function(ii,si){if(1&ii&&e.GBs(_,5),2&ii){let Pi;e.mGM(Pi=e.lsd())&&(si.container=Pi.first)}},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"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],[3,"fxFlex"],["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"],[3,"value","size","errorCorrectionLevel"],[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"],["fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center"],["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"],["tabindex","4","fxLayout","row","class","go-to-link",3,"matTooltip","click",4,"ngIf","ngIfElse"],["tabindex","4","fxLayout","row",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,si){if(1&ii){const Pi=e.RV6();e.j41(0,"div",5)(1,"div",6),e.DNE(2,N,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",8)(4,"mat-card-header",9)(5,"div",10)(6,"span",11),e.EFF(7),e.k0s()(),e.j41(8,"button",12),e.bIt("click",function(){return e.eBV(Pi),e.Njj(si.onClose())}),e.EFF(9,"X"),e.k0s()(),e.DNE(10,Ee,4,4,"ng-container",13)(11,qe,3,1,"ng-container",13)(12,X,4,2,"div",14),e.j41(13,"div",15),e.DNE(14,me,2,1,"button",16)(15,ce,2,1,"button",17)(16,fe,2,2,"button",18)(17,ke,2,1,"button",17)(18,mt,2,2,"button",18),e.k0s()()(),e.DNE(19,Vt,6,6,"ng-template",null,0,e.C5r)}2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(12,r,""===si.showQRField||si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==si.showQRField),e.R7$(),e.Y8G("fxFlex",""===si.showQRField||si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM?"100":"70"),e.R7$(4),e.JRh(si.data.alertTitle||si.alertTypeEnum[si.data.type]),e.R7$(3),e.Y8G("ngIf",si.data.scrollable),e.R7$(),e.Y8G("ngIf",!si.data.scrollable),e.R7$(),e.Y8G("ngIf",si.data.scrollable&&si.shouldScroll),e.R7$(2),e.Y8G("ngIf",(!si.showQRField||""===si.showQRField)&&""===si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showQRField),e.R7$(),e.Y8G("ngIf",""!==si.showQRField))},dependencies:[ae.YU,ae.Sq,ae.bT,ae.T3,ae.ux,ae.e1,ae.fG,Me.aY,R.DJ,R.sA,R.UI,Te.PW,F.tx,de.$z,de.$0,D.m2,D.MM,n.An,c.q,m.oV,h.Um,C.Ld,k.U,L.N,ae.QX,ae.vh],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return Ce})();var tt=g(1771),$t=g(9417),zt=g(9631),Jt=g(6467),St=g(6114);function dt(Ce,ot){if(1&Ce&&(e.j41(0,"div",20),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("icon",ut.faExclamationTriangle),e.R7$(2),e.JRh(ut.warningMessage)}}function Ae(Ce,ot){if(1&Ce&&(e.j41(0,"div",22),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("icon",ut.faInfoCircle),e.R7$(2),e.JRh(ut.informationMessage)}}function we(Ce,ot){if(1&Ce&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.data.titleMessage)}}function he(Ce,ot){1&Ce&&e.nrm(0,"div",37),2&Ce&&e.Y8G("innerHTML",ot.$implicit,e.npT)}function q(Ce,ot){if(1&Ce&&(e.qex(0,35),e.DNE(1,he,1,1,"div",36),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.Y8G("ngForOf",ut.value)}}function Re(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ut.value,"dd/MMM/y HH:mm"))}}function Ne(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ut.value,"1.0-3"))}}function gt(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(!0===ut.value?"True":"False")}}function $e(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(ut.value)}}function Fe(Ce,ot){if(1&Ce&&(e.j41(0,"span")(1,"span",31),e.DNE(2,q,2,1,"ng-container",32)(3,Re,3,4,"ng-container",33)(4,Ne,3,4,"ng-container",33)(5,gt,2,1,"ng-container",33)(6,$e,2,1,"ng-container",34),e.k0s()()),2&Ce){const ut=e.XpG().$implicit,ii=e.XpG(3);e.R7$(),e.Y8G("ngSwitch",ut.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN)}}function Ge(Ce,ot){1&Ce&&(e.j41(0,"span",38),e.EFF(1,"\xa0"),e.k0s())}function et(Ce,ot){if(1&Ce&&(e.j41(0,"div",27)(1,"h4",28),e.EFF(2),e.k0s(),e.DNE(3,Fe,7,5,"span",29)(4,Ge,2,0,"ng-template",null,0,e.C5r),e.nrm(6,"mat-divider",30),e.k0s()),2&Ce){const ut=ot.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ut.width),e.R7$(2),e.JRh(ut.title),e.R7$(),e.Y8G("ngIf",ut&&(!!ut.value||0===ut.value))("ngIfElse",ii)}}function st(Ce,ot){if(1&Ce&&(e.j41(0,"div")(1,"div",25),e.DNE(2,et,7,4,"div",26),e.k0s()()),2&Ce){const ut=ot.$implicit;e.R7$(2),e.Y8G("ngForOf",ut)}}function Tt(Ce,ot){if(1&Ce&&(e.j41(0,"div"),e.DNE(1,st,3,1,"div",24),e.k0s()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngForOf",ut.messageObjs)}}function mi(Ce,ot){if(1&Ce&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.JRh(ut.data.titleMessage)}}function Kt(Ce,ot){if(1&Ce&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.SpI("",ut.placeholder," is required.")}}function Pt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"mat-form-field",42)(1,"mat-label"),e.EFF(2),e.k0s(),e.j41(3,"input",43),e.nI1(4,"lowercase"),e.mxI("ngModelChange",function(si){e.eBV(ut);const Pi=e.XpG().$implicit;return e.DH7(Pi.inputValue,si)||(Pi.inputValue=si),e.Njj(si)}),e.k0s(),e.DNE(5,Kt,2,1,"mat-error",13),e.j41(6,"mat-hint"),e.EFF(7),e.k0s()()}if(2&Ce){const ut=e.XpG(),ii=ut.$implicit,si=ut.index;e.Y8G("fxFlex",ii.width),e.R7$(2),e.JRh(ii.placeholder),e.R7$(),e.Mz_("name","input",si,""),e.Y8G("autoFocus",0===si)("min",ii.min)("step",ii.step)("type",e.bMT(4,12,ii.inputType))("tabindex",si+1),e.R50("ngModel",ii.inputValue),e.R7$(2),e.Y8G("ngIf",!ii.inputValue),e.R7$(2),e.JRh(ii.hintFunction?ii.hintFunction(ii.inputValue):ii.hintText)}}function Xi(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,Pt,8,14,"mat-form-field",41),e.bVm()),2&Ce){const ut=ot.$implicit,ii=e.XpG(2);e.R7$(),e.Y8G("ngIf",!ut.advancedField||ii.showAdvanced)}}function di(Ce,ot){if(1&Ce&&(e.j41(0,"div",39),e.DNE(1,mi,2,1,"p",12),e.j41(2,"div",40),e.DNE(3,Xi,2,1,"ng-container",24),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngIf",ut.data.titleMessage),e.R7$(2),e.Y8G("ngForOf",ut.getInputs)}}function fi(Ce,ot){1&Ce&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function vn(Ce,ot){1&Ce&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Qi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",44),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onShowAdvanced())}),e.DNE(1,fi,2,0,"p",29)(2,vn,2,0,"ng-template",null,1,e.C5r),e.k0s()}if(2&Ce){const ut=e.sdS(3),ii=e.XpG();e.R7$(),e.Y8G("ngIf",!ii.showAdvanced)("ngIfElse",ut)}}function Li(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",45),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onClose(si.getInputs))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.yesBtnText)}}function Zi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",46),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onClose(!0))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.yesBtnText)}}let Qt=(()=>{class Ce{constructor(ut,ii,si,Pi){this.dialogRef=ut,this.data=ii,this.logger=si,this.store=Pi,this.faInfoCircle=$.iW_,this.faExclamationTriangle=$.zpE,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.getInputs=[{placeholder:"",inputType:y.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===y.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(ut){if(ut&&this.getInputs&&this.getInputs.some(ii=>typeof ii.inputValue>"u"))return!0;!this.showAdvanced&&ut.length&&(ut=ut?.reduce((ii,si)=>(si.advancedField||ii.push(si),ii),[])),this.store.dispatch((0,tt.uP)({payload:ut}))}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(ge.il))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-confirmation-message"]],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,"fxFlex",4,"ngIf"],[3,"fxFlex"],["matInput","","required","",3,"ngModelChange","autoFocus","name","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,si){1&ii&&(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 si.onClose(!1)}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9),e.DNE(10,dt,4,2,"div",10)(11,Ae,4,2,"div",11)(12,we,2,1,"p",12)(13,Tt,2,1,"div",13)(14,di,4,2,"div",14),e.j41(15,"div",15)(16,"button",16),e.bIt("click",function(){return si.onClose(!1)}),e.EFF(17),e.k0s(),e.DNE(18,Qi,4,2,"button",17)(19,Li,2,1,"button",18)(20,Zi,2,1,"button",19),e.k0s()()()()()),2&ii&&(e.R7$(5),e.JRh(si.data.alertTitle||si.alertTypeEnum[si.data.type]),e.R7$(5),e.Y8G("ngIf",si.warningMessage&&""!==si.warningMessage),e.R7$(),e.Y8G("ngIf",si.informationMessage&&""!==si.informationMessage),e.R7$(),e.Y8G("ngIf",si.data.titleMessage&&!si.flgShowInput),e.R7$(),e.Y8G("ngIf",(null==si.messageObjs?null:si.messageObjs.length)>0),e.R7$(),e.Y8G("ngIf",si.flgShowInput),e.R7$(3),e.JRh(si.noBtnText),e.R7$(),e.Y8G("ngIf",si.hasAdvanced),e.R7$(),e.Y8G("ngIf",si.flgShowInput),e.R7$(),e.Y8G("ngIf",!si.flgShowInput))},dependencies:[ae.Sq,ae.bT,ae.ux,ae.e1,ae.fG,$t.qT,$t.me,$t.BC,$t.cb,$t.YS,$t.vS,$t.cV,Me.aY,R.DJ,R.sA,R.UI,de.$z,D.m2,D.MM,zt.fg,Jt.rl,Jt.nJ,Jt.MV,Jt.TL,c.q,L.N,St.V,ae.GH,ae.QX,ae.vh]})}return Ce})();var Mt=g(2462),it=g(2798),ct=g(6600);const wt=Ce=>({"display-none":Ce});function Ut(Ce,ot){if(1&Ce&&(e.j41(0,"mat-option",23),e.EFF(1),e.k0s()),2&Ce){const ut=ot.$implicit;e.Y8G("value",ut),e.R7$(),e.SpI(" ",ut.infoName," ")}}function xi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),e.mxI("valueChange",function(si){e.eBV(ut);const Pi=e.XpG();return e.DH7(Pi.selInfoType,si)||(Pi.selInfoType=si),e.Njj(si)}),e.DNE(3,Ut,2,2,"mat-option",22),e.k0s()()()}if(2&Ce){const ut=e.XpG();e.R7$(2),e.R50("value",ut.selInfoType),e.R7$(),e.Y8G("ngForOf",ut.infoTypes)}}let Si=(()=>{class Ce{constructor(ut,ii,si,Pi,mn){this.dialogRef=ut,this.data=ii,this.logger=si,this.snackBar=Pi,this.commonService=mn,this.faReceipt=$.Mf0,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=y.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((ut,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(ut){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+ut)}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ee.h))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-show-pubkey"]],decls:26,vars:19,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"],[3,"value","size","errorCorrectionLevel"],["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(ii,si){1&ii&&(e.j41(0,"div",0)(1,"div",1),e.nrm(2,"qr-code",2),e.k0s(),e.j41(3,"div",3)(4,"mat-card-header",4)(5,"div",5),e.nrm(6,"fa-icon",6),e.j41(7,"span",7),e.EFF(8),e.k0s()(),e.j41(9,"button",8),e.bIt("click",function(){return si.onClose()}),e.EFF(10,"X"),e.k0s()(),e.j41(11,"mat-card-content",9)(12,"div",10)(13,"div",11),e.nrm(14,"qr-code",2),e.k0s(),e.DNE(15,xi,4,2,"div",12),e.j41(16,"div",13)(17,"div",14)(18,"h4",15),e.EFF(19),e.k0s(),e.j41(20,"span",16),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",17),e.j41(23,"div",18)(24,"button",19),e.bIt("copied",function(mn){return si.onCopyPubkey(mn)}),e.EFF(25),e.k0s()()()()()()),2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(15,wt,si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.Y8G("size",si.qrWidth)("errorCorrectionLevel","L"),e.R7$(4),e.Y8G("icon",si.faReceipt),e.R7$(2),e.JRh(si.selInfoType.infoName),e.R7$(5),e.Y8G("ngClass",e.eq3(17,wt,si.screenSize!==si.screenSizeEnum.XS&&si.screenSize!==si.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.Y8G("size",si.qrWidth)("errorCorrectionLevel","L"),e.R7$(),e.Y8G("ngIf",si.information.uris&&si.information.uris.length>0),e.R7$(4),e.JRh(si.selInfoType.infoName),e.R7$(2),e.JRh(0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.R7$(3),e.FS9("payload",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.R7$(),e.SpI("Copy ",si.selInfoType.infoKey,""))},dependencies:[ae.YU,ae.Sq,ae.bT,Me.aY,R.DJ,R.sA,R.UI,Te.PW,de.$z,D.m2,D.MM,Jt.rl,c.q,it.VO,ct.wT,h.Um,k.U,L.N]})}return Ce})();var zi=g(190),en=g(8430),Ni=g(5428),fn=g(1626),Zt=g(7879),bt=g(3202),re=g(1534);let je=(()=>{class Ce{constructor(ut,ii,si,Pi,mn,Fn,$n,Yn,Qn,rr,Rn){this.actions=ut,this.httpClient=ii,this.store=si,this.logger=Pi,this.wsService=mn,this.sessionService=Fn,this.commonService=$n,this.dataService=Yn,this.dialog=Qn,this.snackBar=rr,this.router=Rn,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new w.B,new w.B],this.closeAllDialogs=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALL_DIALOGS),(0,l.T)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SNACK_BAR),(0,l.T)(_i=>{"string"==typeof _i.payload?this.snackBar.open(_i.payload):this.snackBar.open(_i.payload.message,"","ERROR"===_i.payload.type?{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===_i.payload.type?{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SPINNER),(0,l.T)(_i=>{_i.payload!==y.MZ.NO_SPINNER&&(this.dialogRef=this.dialog.open(W,{panelClass:"spinner-dialog-panel",data:{titleMessage:_i.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_SPINNER),(0,l.T)(_i=>{if(_i.payload!==y.MZ.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===_i.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(Oi=>{Oi.componentInstance&&Oi.componentInstance.data&&Oi.componentInstance.data.titleMessage&&Oi.componentInstance.data.titleMessage===_i.payload&&Oi.close()})}catch(Oi){this.logger.error(Oi)}})),{dispatch:!1}),this.openAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_ALERT),(0,l.T)(_i=>{const Oi=JSON.parse(JSON.stringify(_i.payload));Oi.width||(Oi.width=this.alertWidth),this.dialogRef=this.dialog.open(_i.payload.data.component?_i.payload.data.component:oe,Oi)})),{dispatch:!1}),this.closeAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALERT),(0,l.T)(_i=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(_i.payload),_i.payload))),{dispatch:!1}),this.openConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_CONFIRMATION),(0,l.T)(_i=>{const Oi=JSON.parse(JSON.stringify(_i.payload));Oi.width||(Oi.width=this.confirmWidth),this.dialogRef=this.dialog.open(Qt,Oi)})),{dispatch:!1}),this.closeConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_CONFIRMATION),(0,x.s)(1),(0,l.T)(_i=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(_i.payload),_i.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_PUBKEY),(0,f.E)(this.store.select(j.N)),(0,I.Z)(([_i,Oi])=>(this.sessionService.getItem("token")&&Oi.identity_pubkey?this.store.dispatch((0,tt.xO)({payload:{data:{information:Oi,component:Si}}})):this.snackBar.open("Node Pubkey does not exist."),(0,S.of)({type:y.aU.VOID}))))),this.appConfigFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_APPLICATION_SETTINGS),(0,I.Z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===y.f7.XS||this.screenSize===y.f7.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===y.f7.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,tt.mt)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API))),(0,l.T)(_i=>{this.logger.info(_i),this.store.dispatch((0,tt.y0)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.COMPLETED}}));let Oi=null;return _i.nodes.forEach(jt=>{jt.settings.currencyUnits=[...y.A0,jt.settings?.currencyUnit?jt.settings?.currencyUnit:""],+(jt.index||-1)===_i.selectedNodeIndex&&(Oi=jt)}),Oi?(this.store.dispatch((0,tt.Qi)({payload:{uiMessage:y.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:Oi,isInitialSetup:!0}})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:_i}):{type:y.aU.VOID}}),(0,d.W)(_i=>(this.handleErrorWithAlert("FetchRTLConfig",y.MZ.GET_RTL_CONFIG,"Fetch RTL Config Failed!",y.rl.CONF_API,_i),(0,S.of)({type:y.aU.VOID}))))),this.updateNodeSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_NODE_SETTINGS),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.UPDATE_NODE_SETTINGS})),this.store.dispatch((0,tt.Gd)({payload:{action:"updateNodeSettings",status:y.wn.INITIATED}})),_i.payload.settings.fiatConversion||delete _i.payload.settings.currencyUnit,delete _i.payload.settings.currencyUnits,this.httpClient.post(y.rl.CONF_API+"/node",_i.payload).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"updateNodeSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.UPDATE_NODE_SETTINGS})),Oi.settings.currencyUnits=[...y.A0,Oi.settings?.currencyUnit?Oi.settings?.currencyUnit:""],this.store.dispatch((0,tt.Np)({payload:Oi})),{type:y.aU.OPEN_SNACK_BAR,payload:"Node settings updated successfully!"})),(0,d.W)(Oi=>(this.handleErrorWithAlert("updateNodeSettings",y.MZ.UPDATE_NODE_SETTINGS,"Update Node Settings Failed!",y.rl.CONF_API+"/node",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.updateApplicationSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_APPLICATION_SETTINGS),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),this.store.dispatch((0,tt.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.INITIATED}})),_i.payload.config.nodes.forEach(Oi=>{delete Oi.settings.currencyUnits}),this.httpClient.post(y.rl.CONF_API+"/application",_i.payload.config).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),_i.payload.showSnackBar&&this.store.dispatch((0,tt.UI)({payload:_i.payload.message})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("updateApplicationSettings",y.MZ.UPDATE_APPLICATION_SETTINGS,"Update Application Settings Failed!",y.rl.CONF_API+"/application",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.configFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_CONFIG),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.OPEN_CONFIG_FILE})),this.store.dispatch((0,tt.Gd)({payload:{action:"fetchConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/config/"+_i.payload).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"fetchConfig",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.OPEN_CONFIG_FILE})),{type:y.aU.SHOW_CONFIG,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("fetchConfig",y.MZ.OPEN_CONFIG_FILE,"Fetch Config Failed!",y.rl.CONF_API+"/config/"+_i.payload,Oi),(0,S.of)({type:y.aU.VOID})))))))),this.showLnConfig=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_CONFIG),(0,l.T)(_i=>_i.payload)),{dispatch:!1}),this.isAuthorized=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED),(0,I.Z)(_i=>(this.store.dispatch((0,tt.Gd)({payload:{action:"IsAuthorized",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:_i.payload&&""!==_i.payload.trim()?y.U1.PASSWORD:y.U1.JWT,authenticationValue:_i.payload&&""!==_i.payload.trim()?_i.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"IsAuthorized",status:y.wn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:y.aU.IS_AUTHORIZED_RES,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("IsAuthorized",y.MZ.NO_SPINNER,"Authorization Failed",y.rl.AUTHENTICATE_API,Oi),(0,S.of)({type:y.aU.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED_RES),(0,l.T)(_i=>_i.payload)),{dispatch:!1}),this.authLogin=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGIN),(0,f.E)(this.store.select(j.qv)),(0,I.Z)(([_i,Oi])=>(this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,en.gf)()),this.store.dispatch((0,Ni.Hh)()),this.store.dispatch((0,tt.Gd)({payload:{action:"Login",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:_i.payload.password?y.U1.PASSWORD:y.U1.JWT,authenticationValue:_i.payload.password?_i.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:_i.payload.twoFAToken?_i.payload.twoFAToken:""}).pipe((0,l.T)(jt=>{this.logger.info(jt),this.store.dispatch((0,tt.Gd)({payload:{action:"Login",status:y.wn.COMPLETED}})),this.setLoggedInDetails(_i.payload.defaultPassword,jt)}),(0,d.W)(jt=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",y.MZ.NO_SPINNER,jt),+Oi.SSO.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:jt.error&&jt.error.error?jt.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"],{state:{logoutReason:jt.error&&jt.error.error?jt.error.error:"Single Sign On Failed!"}}),(0,S.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.VERIFY_TWO_FA),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,tt.Gd)({payload:{action:"VerifyToken",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/token",{authentication2FA:_i.payload.token}).pipe((0,l.T)(Oi=>{this.logger.info(Oi),this.store.dispatch((0,tt.y0)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,tt.Gd)({payload:{action:"VerifyToken",status:y.wn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,_i.payload.authResponse)}),(0,d.W)(Oi=>(this.handleErrorWithAlert("VerifyToken",y.MZ.VERIFY_TOKEN,"Authorization Failed!",y.rl.AUTHENTICATE_API+"/token",Oi),(0,S.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGOUT),(0,f.E)(this.store.select(j.qv)),(0,I.Z)(([_i,Oi])=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.LOG_OUT})),Oi.SSO&&+Oi.SSO.rtlSSO?window.location.href=Oi.SSO.logoutRedirectLink:this.router.navigate(["./login"],{state:{logoutReason:_i.payload}}),this.sessionService.clearAll(),this.store.dispatch((0,tt.Fl)({payload:{}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from browser"),this.httpClient.get(y.rl.AUTHENTICATE_API+"/logout").pipe((0,l.T)(jt=>{this.logger.info(jt),this.store.dispatch((0,tt.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from server")}))))),{dispatch:!1}),this.resetPassword=(0,t.EH)(()=>this.actions.pipe((0,T.Q)(this.unSubs[1]),(0,t.gp)(y.aU.RESET_PASSWORD),(0,I.Z)(_i=>(this.store.dispatch((0,tt.Gd)({payload:{action:"ResetPassword",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/reset",{currPassword:_i.payload.currPassword,newPassword:_i.payload.newPassword}).pipe((0,T.Q)(this.unSubs[0]),(0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"ResetPassword",status:y.wn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,tt.UI)({payload:"Password Reset Successful!"})),this.SetToken(Oi.token),{type:y.aU.RESET_PASSWORD_RES,payload:Oi.token})),(0,d.W)(Oi=>(this.handleErrorWithAlert("ResetPassword",y.MZ.NO_SPINNER,"Password Reset Failed!",y.rl.AUTHENTICATE_API+"/reset",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.setSelectedNode=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SET_SELECTED_NODE),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:_i.payload.uiMessage})),this.store.dispatch((0,tt.Gd)({payload:{action:"UpdateSelNode",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/updateSelNode/"+_i.payload.currentLnNode?.index+"/"+_i.payload.prevLnNodeIndex).pipe((0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"UpdateSelNode",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:_i.payload.uiMessage})),this.initializeNode(Oi,_i.payload.isInitialSetup),{type:y.aU.VOID})),(0,d.W)(Oi=>(this.handleErrorWithAlert("UpdateSelNode",_i.payload.uiMessage,"Update Selected Node Failed!",y.rl.CONF_API+"/updateSelNode",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.fetchFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_FILE),(0,I.Z)(_i=>{this.store.dispatch((0,tt.mt)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchFile",status:y.wn.INITIATED}}));const Oi="?channel="+_i.payload.channelPoint+(_i.payload.path?"&path="+_i.payload.path:"");return this.httpClient.get(y.rl.CONF_API+"/file"+Oi).pipe((0,l.T)(jt=>(this.store.dispatch((0,tt.Gd)({payload:{action:"FetchFile",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),{type:y.aU.SHOW_FILE,payload:jt})),(0,d.W)(jt=>(this.handleErrorWithAlert("fetchFile",y.MZ.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",y.rl.CONF_API+"/file"+Oi,{status:this.commonService.extractErrorNumber(jt),error:{error:this.commonService.extractErrorCode(jt)}}),(0,S.of)({type:y.aU.VOID}))))}))),this.showFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_FILE),(0,l.T)(_i=>_i.payload)),{dispatch:!1})}initializeNode(ut,ii){this.logger.info("Initializing node from RTL Effects.");const si=ii?"":"HOME";if(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),ut.settings.currencyUnits=[...y.A0,ut.settings?.currencyUnit?ut.settings?.currencyUnit:""],this.store.dispatch((0,tt.Tn)({payload:ut})),this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,en.gf)()),this.store.dispatch((0,Ni.Hh)()),this.sessionService.getItem("token")){const Pi=ut.lnImplementation?ut.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(Pi);const mn=!(0,e.naY)()&&window.location.origin?window.location.origin+"/rtl/api":y.H$;switch(this.wsService.connectWebSocket(mn?.replace(/^http/,"ws")+y.rl.Web_SOCKET_API,ut.index?ut.index.toString():"-1"),Pi){case"CLN":this.store.dispatch((0,en.lg)()),this.store.dispatch((0,en.Aw)({payload:{loadPage:si}}));break;case"ECL":this.store.dispatch((0,Ni.lg)()),this.store.dispatch((0,Ni.zR)({payload:{loadPage:si}}));break;default:this.store.dispatch((0,zi.lg)()),this.store.dispatch((0,zi.Br)({payload:{loadPage:si}}))}}}SetToken(ut){ut?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",ut)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(ut,ii){this.logger.info("Successfully Authorized!"),this.SetToken(ii.token),this.sessionService.setItem("defaultPassword",ut),ut?(this.store.dispatch((0,tt.UI)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,tt.NU)())}handleErrorWithoutAlert(ut,ii,si){this.logger.error("ERROR IN: "+ut+"\n"+JSON.stringify(si)),401===si.status&&"Login"!==ut?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,tt.Jh)()),this.store.dispatch((0,tt.ri)({payload:"Authentication Failed: "+JSON.stringify(si.error)}))):(this.store.dispatch((0,tt.y0)({payload:ii})),this.store.dispatch((0,tt.Gd)({payload:{action:ut,status:y.wn.ERROR,statusCode:si.status?si.status.toString():"",message:this.commonService.extractErrorMessage(si)}})))}handleErrorWithAlert(ut,ii,si,Pi,mn){if(this.logger.error(mn),0===mn.status&&mn.statusText&&"Unknown Error"===mn.statusText&&(mn={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===mn.status&&"Login"!==ut)this.logger.info("Redirecting to Login"),this.store.dispatch((0,tt.Jh)()),this.store.dispatch((0,tt.ri)({payload:"Authentication Failed: "+JSON.stringify(mn.error)}));else{this.store.dispatch((0,tt.y0)({payload:ii}));const Fn=this.commonService.extractErrorMessage(mn);this.store.dispatch((0,tt.xO)({payload:{data:{type:"ERROR",alertTitle:si,message:{code:mn.status?mn.status:"Unknown Error",message:Fn,URL:Pi},component:Mt.f}}})),this.store.dispatch((0,tt.Gd)({payload:{action:ut,status:y.wn.ERROR,statusCode:mn.status?mn.status.toString():"",message:Fn,URL:Pi}}))}}ngOnDestroy(){this.unSubs.forEach(ut=>{ut.next(null),ut.complete()})}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.KVO(t.En),e.KVO(fn.Qq),e.KVO(ge.il),e.KVO(Q.gP),e.KVO(Zt.I),e.KVO(bt.Q),e.KVO(ee.h),e.KVO(re.u),e.KVO(F.bZ),e.KVO(J.UG),e.KVO(ie.Ix))};static#t=this.\u0275prov=e.jDH({token:Ce,factory:Ce.\u0275fac})}return Ce})()},9647:(Qe,te,g)=>{"use strict";g.d(te,{Az:()=>d,E2:()=>I,Kq:()=>f,N:()=>x,_c:()=>S,qv:()=>l});var e=g(9640);const t=(0,e.UX)("root"),S=((0,e.Mz)(t,T=>T.apiURL),(0,e.Mz)(t,T=>T.selNode)),l=(0,e.Mz)(t,T=>T.appConfig),x=(0,e.Mz)(t,T=>T.nodeData),f=(0,e.Mz)(t,T=>T.apisCallStatus.Login),I=(0,e.Mz)(t,T=>T.apisCallStatus.IsAuthorized),d=(0,e.Mz)(t,T=>({nodeDate:T.nodeData,selNode:T.selNode}))},3471:(Qe,te,g)=>{"use strict";var e=g(345),t=g(4438),w=g(9969);function l(O){return new t.wOt(3e3,!1)}function ze(O){switch(O.length){case 0:return new w.sf;case 1:return O[0];default:return new w.ui(O)}}function qe(O,H,b=new Map,U=new Map){const G=[],Oe=[];let It=-1,Lt=null;if(H.forEach(oi=>{const ci=oi.get("offset"),Ui=ci==It,Ti=Ui&&Lt||new Map;oi.forEach((un,bn)=>{let Yi=bn,Ji=un;if("offset"!==bn)switch(Yi=O.normalizePropertyName(Yi,G),Ji){case w.FX:Ji=b.get(bn);break;case w.kp:Ji=U.get(bn);break;default:Ji=O.normalizeStyleValue(bn,Yi,Ji,G)}Ti.set(Yi,Ji)}),Ui||Oe.push(Ti),Lt=Ti,It=ci}),G.length)throw function c(O){return new t.wOt(3502,!1)}();return Oe}function Ke(O,H,b,U){switch(H){case"start":O.onStart(()=>U(b&&se(b,"start",O)));break;case"done":O.onDone(()=>U(b&&se(b,"done",O)));break;case"destroy":O.onDestroy(()=>U(b&&se(b,"destroy",O)))}}function se(O,H,b){const Oe=X(O.element,O.triggerName,O.fromState,O.toState,H||O.phaseName,b.totalTime??O.totalTime,!!b.disabled),It=O._data;return null!=It&&(Oe._data=It),Oe}function X(O,H,b,U,G="",Oe=0,It){return{element:O,triggerName:H,fromState:b,toState:U,phaseName:G,totalTime:Oe,disabled:!!It}}function me(O,H,b){let U=O.get(H);return U||O.set(H,U=b),U}function ce(O){const H=O.indexOf(":");return[O.substring(1,H),O.slice(H+1)]}const fe=typeof document>"u"?null:document.documentElement;function ke(O){const H=O.parentNode||O.host||null;return H===fe?null:H}let _e=null,be=!1;function at(O,H){for(;H;){if(H===O)return!0;H=ke(H)}return!1}function pt(O,H,b){if(b)return Array.from(O.querySelectorAll(H));const U=O.querySelector(H);return U?[U]:[]}let ye=(()=>{class O{validateStyleProperty(b){return function pe(O){_e||(_e=function _t(){return typeof document<"u"?document.body:null}()||{},be=!!_e.style&&"WebkitAppearance"in _e.style);let H=!0;return _e.style&&!function mt(O){return"ebkit"==O.substring(1,6)}(O)&&(H=O in _e.style,!H&&be&&(H="Webkit"+O.charAt(0).toUpperCase()+O.slice(1)in _e.style)),H}(b)}containsElement(b,U){return at(b,U)}getParentElement(b){return ke(b)}query(b,U,G){return pt(b,U,G)}computeStyle(b,U,G){return G||""}animate(b,U,G,Oe,It,Lt=[],oi){return new w.sf(G,Oe)}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();class ue{static#e=this.NOOP=new ye}class Ie{}const Xe=1e3,rt="ng-enter",Yt="ng-leave",Nt="ng-trigger",Et=".ng-trigger",Vt="ng-animating",oe=".ng-animating";function tt(O){if("number"==typeof O)return O;const H=O.match(/^(-?[\.\d]+)(m?s)/);return!H||H.length<2?0:$t(parseFloat(H[1]),H[2])}function $t(O,H){return"s"===H?O*Xe:O}function zt(O,H,b){return O.hasOwnProperty("duration")?O:function Jt(O,H,b){let G,Oe=0,It="";if("string"==typeof O){const Lt=O.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===Lt)return H.push(l()),{duration:0,delay:0,easing:""};G=$t(parseFloat(Lt[1]),Lt[2]);const oi=Lt[3];null!=oi&&(Oe=$t(parseFloat(oi),Lt[4]));const ci=Lt[5];ci&&(It=ci)}else G=O;if(!b){let Lt=!1,oi=H.length;G<0&&(H.push(function x(){return new t.wOt(3100,!1)}()),Lt=!0),Oe<0&&(H.push(function f(){return new t.wOt(3101,!1)}()),Lt=!0),Lt&&H.splice(oi,0,l())}return{duration:G,delay:Oe,easing:It}}(O,H,b)}function Ae(O,H,b){H.forEach((U,G)=>{const Oe=Fe(G);b&&!b.has(G)&&b.set(G,O.style[Oe]),O.style[Oe]=U})}function we(O,H){H.forEach((b,U)=>{const G=Fe(U);O.style[G]=""})}function he(O){return Array.isArray(O)?1==O.length?O[0]:(0,w.K2)(O):O}const Re=new RegExp("{{\\s*(.+?)\\s*}}","g");function Ne(O){let H=[];if("string"==typeof O){let b;for(;b=Re.exec(O);)H.push(b[1]);Re.lastIndex=0}return H}function gt(O,H,b){const U=`${O}`,G=U.replace(Re,(Oe,It)=>{let Lt=H[It];return null==Lt&&(b.push(function d(O){return new t.wOt(3003,!1)}()),Lt=""),Lt.toString()});return G==U?O:G}const $e=/-+([a-z0-9])/g;function Fe(O){return O.replace($e,(...H)=>H[1].toUpperCase())}function Tt(O,H,b){switch(H.type){case w.If.Trigger:return O.visitTrigger(H,b);case w.If.State:return O.visitState(H,b);case w.If.Transition:return O.visitTransition(H,b);case w.If.Sequence:return O.visitSequence(H,b);case w.If.Group:return O.visitGroup(H,b);case w.If.Animate:return O.visitAnimate(H,b);case w.If.Keyframes:return O.visitKeyframes(H,b);case w.If.Style:return O.visitStyle(H,b);case w.If.Reference:return O.visitReference(H,b);case w.If.AnimateChild:return O.visitAnimateChild(H,b);case w.If.AnimateRef:return O.visitAnimateRef(H,b);case w.If.Query:return O.visitQuery(H,b);case w.If.Stagger:return O.visitStagger(H,b);default:throw function T(O){return new t.wOt(3004,!1)}()}}function mi(O,H){return window.getComputedStyle(O)[H]}const Kt=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 Pt extends Ie{normalizePropertyName(H,b){return Fe(H)}normalizeStyleValue(H,b,U,G){let Oe="";const It=U.toString().trim();if(Kt.has(b)&&0!==U&&"0"!==U)if("number"==typeof U)Oe="px";else{const Lt=U.match(/^[+-]?[\d\.]+([a-z]*)$/);Lt&&0==Lt[1].length&&G.push(function y(O,H){return new t.wOt(3005,!1)}())}return It+Oe}}const Zi="*";const ct=new Set(["true","1"]),wt=new Set(["false","0"]);function Ut(O,H){const b=ct.has(O)||wt.has(O),U=ct.has(H)||wt.has(H);return(G,Oe)=>{let It=O==Zi||O==G,Lt=H==Zi||H==Oe;return!It&&b&&"boolean"==typeof G&&(It=G?ct.has(O):wt.has(O)),!Lt&&U&&"boolean"==typeof Oe&&(Lt=Oe?ct.has(H):wt.has(H)),It&&Lt}}const Si=new RegExp("s*:selfs*,?","g");function zi(O,H,b,U){return new Ni(O).build(H,b,U)}class Ni{constructor(H){this._driver=H}build(H,b,U){const G=new bt(b);return this._resetContextStyleTimingState(G),Tt(this,he(H),G)}_resetContextStyleTimingState(H){H.currentQuerySelector="",H.collectedStyles=new Map,H.collectedStyles.set("",new Map),H.currentTime=0}visitTrigger(H,b){let U=b.queryCount=0,G=b.depCount=0;const Oe=[],It=[];return"@"==H.name.charAt(0)&&b.errors.push(function F(){return new t.wOt(3006,!1)}()),H.definitions.forEach(Lt=>{if(this._resetContextStyleTimingState(b),Lt.type==w.If.State){const oi=Lt,ci=oi.name;ci.toString().split(/\s*,\s*/).forEach(Ui=>{oi.name=Ui,Oe.push(this.visitState(oi,b))}),oi.name=ci}else if(Lt.type==w.If.Transition){const oi=this.visitTransition(Lt,b);U+=oi.queryCount,G+=oi.depCount,It.push(oi)}else b.errors.push(function R(){return new t.wOt(3007,!1)}())}),{type:w.If.Trigger,name:H.name,states:Oe,transitions:It,queryCount:U,depCount:G,options:null}}visitState(H,b){const U=this.visitStyle(H.styles,b),G=H.options&&H.options.params||null;if(U.containsDynamicStyles){const Oe=new Set,It=G||{};U.styles.forEach(Lt=>{Lt instanceof Map&&Lt.forEach(oi=>{Ne(oi).forEach(ci=>{It.hasOwnProperty(ci)||Oe.add(ci)})})}),Oe.size&&b.errors.push(function z(O,H){return new t.wOt(3008,!1)}(0,Oe.values()))}return{type:w.If.State,name:H.name,style:U,options:G?{params:G}:null}}visitTransition(H,b){b.queryCount=0,b.depCount=0;const U=Tt(this,he(H.animation),b),G=function Qt(O,H){const b=[];return"string"==typeof O?O.split(/\s*,\s*/).forEach(U=>function Mt(O,H,b){if(":"==O[0]){const oi=function it(O,H){switch(O){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(b,U)=>parseFloat(U)>parseFloat(b);case":decrement":return(b,U)=>parseFloat(U) *"}}(O,b);if("function"==typeof oi)return void H.push(oi);O=oi}const U=O.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==U||U.length<4)return b.push(function Me(O){return new t.wOt(3015,!1)}()),H;const G=U[1],Oe=U[2],It=U[3];H.push(Ut(G,It)),"<"==Oe[0]&&(G!=Zi||It!=Zi)&&H.push(Ut(It,G))}(U,b,H)):b.push(O),b}(H.expr,b.errors);return{type:w.If.Transition,matchers:G,animation:U,queryCount:b.queryCount,depCount:b.depCount,options:Ce(H.options)}}visitSequence(H,b){return{type:w.If.Sequence,steps:H.steps.map(U=>Tt(this,U,b)),options:Ce(H.options)}}visitGroup(H,b){const U=b.currentTime;let G=0;const Oe=H.steps.map(It=>{b.currentTime=U;const Lt=Tt(this,It,b);return G=Math.max(G,b.currentTime),Lt});return b.currentTime=G,{type:w.If.Group,steps:Oe,options:Ce(H.options)}}visitAnimate(H,b){const U=function je(O,H){if(O.hasOwnProperty("duration"))return O;if("number"==typeof O)return ot(zt(O,H).duration,0,"");const b=O;if(b.split(/\s+/).some(Oe=>"{"==Oe.charAt(0)&&"{"==Oe.charAt(1))){const Oe=ot(0,0,"");return Oe.dynamic=!0,Oe.strValue=b,Oe}const G=zt(b,H);return ot(G.duration,G.delay,G.easing)}(H.timings,b.errors);b.currentAnimateTimings=U;let G,Oe=H.styles?H.styles:(0,w.iF)({});if(Oe.type==w.If.Keyframes)G=this.visitKeyframes(Oe,b);else{let It=H.styles,Lt=!1;if(!It){Lt=!0;const ci={};U.easing&&(ci.easing=U.easing),It=(0,w.iF)(ci)}b.currentTime+=U.duration+U.delay;const oi=this.visitStyle(It,b);oi.isEmptyStep=Lt,G=oi}return b.currentAnimateTimings=null,{type:w.If.Animate,timings:U,style:G,options:null}}visitStyle(H,b){const U=this._makeStyleAst(H,b);return this._validateStyleAst(U,b),U}_makeStyleAst(H,b){const U=[],G=Array.isArray(H.styles)?H.styles:[H.styles];for(let Lt of G)"string"==typeof Lt?Lt===w.kp?U.push(Lt):b.errors.push(new t.wOt(3002,!1)):U.push(new Map(Object.entries(Lt)));let Oe=!1,It=null;return U.forEach(Lt=>{if(Lt instanceof Map&&(Lt.has("easing")&&(It=Lt.get("easing"),Lt.delete("easing")),!Oe))for(let oi of Lt.values())if(oi.toString().indexOf("{{")>=0){Oe=!0;break}}),{type:w.If.Style,styles:U,easing:It,offset:H.offset,containsDynamicStyles:Oe,options:null}}_validateStyleAst(H,b){const U=b.currentAnimateTimings;let G=b.currentTime,Oe=b.currentTime;U&&Oe>0&&(Oe-=U.duration+U.delay),H.styles.forEach(It=>{"string"!=typeof It&&It.forEach((Lt,oi)=>{const ci=b.collectedStyles.get(b.currentQuerySelector),Ui=ci.get(oi);let Ti=!0;Ui&&(Oe!=G&&Oe>=Ui.startTime&&G<=Ui.endTime&&(b.errors.push(function j(O,H,b,U,G){return new t.wOt(3010,!1)}()),Ti=!1),Oe=Ui.startTime),Ti&&ci.set(oi,{startTime:Oe,endTime:G}),b.options&&function q(O,H,b){const U=H.params||{},G=Ne(O);G.length&&G.forEach(Oe=>{U.hasOwnProperty(Oe)||b.push(function I(O){return new t.wOt(3001,!1)}())})}(Lt,b.options,b.errors)})})}visitKeyframes(H,b){const U={type:w.If.Keyframes,styles:[],options:null};if(!b.currentAnimateTimings)return b.errors.push(function Q(){return new t.wOt(3011,!1)}()),U;let Oe=0;const It=[];let Lt=!1,oi=!1,ci=0;const Ui=H.steps.map(Un=>{const Vr=this._makeStyleAst(Un,b);let la=null!=Vr.offset?Vr.offset:function re(O){if("string"==typeof O)return null;let H=null;if(Array.isArray(O))O.forEach(b=>{if(b instanceof Map&&b.has("offset")){const U=b;H=parseFloat(U.get("offset")),U.delete("offset")}});else if(O instanceof Map&&O.has("offset")){const b=O;H=parseFloat(b.get("offset")),b.delete("offset")}return H}(Vr.styles),cr=0;return null!=la&&(Oe++,cr=Vr.offset=la),oi=oi||cr<0||cr>1,Lt=Lt||cr0&&Oe{const la=un>0?Vr==bn?1:un*Vr:It[Vr],cr=la*An;b.currentTime=Yi+Ji.delay+cr,Ji.duration=cr,this._validateStyleAst(Un,b),Un.offset=la,U.styles.push(Un)}),U}visitReference(H,b){return{type:w.If.Reference,animation:Tt(this,he(H.animation),b),options:Ce(H.options)}}visitAnimateChild(H,b){return b.depCount++,{type:w.If.AnimateChild,options:Ce(H.options)}}visitAnimateRef(H,b){return{type:w.If.AnimateRef,animation:this.visitReference(H.animation,b),options:Ce(H.options)}}visitQuery(H,b){const U=b.currentQuerySelector,G=H.options||{};b.queryCount++,b.currentQuery=H;const[Oe,It]=function fn(O){const H=!!O.split(/\s*,\s*/).find(b=>":self"==b);return H&&(O=O.replace(Si,"")),O=O.replace(/@\*/g,Et).replace(/@\w+/g,b=>Et+"-"+b.slice(1)).replace(/:animating/g,oe),[O,H]}(H.selector);b.currentQuerySelector=U.length?U+" "+Oe:Oe,me(b.collectedStyles,b.currentQuerySelector,new Map);const Lt=Tt(this,he(H.animation),b);return b.currentQuery=null,b.currentQuerySelector=U,{type:w.If.Query,selector:Oe,limit:G.limit||0,optional:!!G.optional,includeSelf:It,animation:Lt,originalSelector:H.selector,options:Ce(H.options)}}visitStagger(H,b){b.currentQuery||b.errors.push(function ge(){return new t.wOt(3013,!1)}());const U="full"===H.timings?{duration:0,delay:0,easing:"full"}:zt(H.timings,b.errors,!0);return{type:w.If.Stagger,animation:Tt(this,he(H.animation),b),timings:U,options:null}}}class bt{constructor(H){this.errors=H,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles=new Map,this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function Ce(O){return O?(O={...O}).params&&(O.params=function Zt(O){return O?{...O}:null}(O.params)):O={},O}function ot(O,H,b){return{duration:O,delay:H,easing:b}}function ut(O,H,b,U,G,Oe,It=null,Lt=!1){return{type:1,element:O,keyframes:H,preStyleProps:b,postStyleProps:U,duration:G,delay:Oe,totalTime:G+Oe,easing:It,subTimeline:Lt}}class ii{constructor(){this._map=new Map}get(H){return this._map.get(H)||[]}append(H,b){let U=this._map.get(H);U||this._map.set(H,U=[]),U.push(...b)}has(H){return this._map.has(H)}clear(){this._map.clear()}}const mn=new RegExp(":enter","g"),$n=new RegExp(":leave","g");function Yn(O,H,b,U,G,Oe=new Map,It=new Map,Lt,oi,ci=[]){return(new Qn).buildKeyframes(O,H,b,U,G,Oe,It,Lt,oi,ci)}class Qn{buildKeyframes(H,b,U,G,Oe,It,Lt,oi,ci,Ui=[]){ci=ci||new ii;const Ti=new Rn(H,b,ci,G,Oe,Ui,[]);Ti.options=oi;const un=oi.delay?tt(oi.delay):0;Ti.currentTimeline.delayNextStep(un),Ti.currentTimeline.setStyles([It],null,Ti.errors,oi),Tt(this,U,Ti);const bn=Ti.timelines.filter(Yi=>Yi.containsAnimation());if(bn.length&&Lt.size){let Yi;for(let Ji=bn.length-1;Ji>=0;Ji--){const An=bn[Ji];if(An.element===b){Yi=An;break}}Yi&&!Yi.allowOnlyTimelineStyles()&&Yi.setStyles([Lt],null,Ti.errors,oi)}return bn.length?bn.map(Yi=>Yi.buildKeyframes()):[ut(b,[],[],[],0,un,"",!1)]}visitTrigger(H,b){}visitState(H,b){}visitTransition(H,b){}visitAnimateChild(H,b){const U=b.subInstructions.get(b.element);if(U){const G=b.createSubContext(H.options),Oe=b.currentTimeline.currentTime,It=this._visitSubInstructions(U,G,G.options);Oe!=It&&b.transformIntoNewTimeline(It)}b.previousNode=H}visitAnimateRef(H,b){const U=b.createSubContext(H.options);U.transformIntoNewTimeline(),this._applyAnimationRefDelays([H.options,H.animation.options],b,U),this.visitReference(H.animation,U),b.transformIntoNewTimeline(U.currentTimeline.currentTime),b.previousNode=H}_applyAnimationRefDelays(H,b,U){for(const G of H){const Oe=G?.delay;if(Oe){const It="number"==typeof Oe?Oe:tt(gt(Oe,G?.params??{},b.errors));U.delayNextStep(It)}}}_visitSubInstructions(H,b,U){let Oe=b.currentTimeline.currentTime;const It=null!=U.duration?tt(U.duration):null,Lt=null!=U.delay?tt(U.delay):null;return 0!==It&&H.forEach(oi=>{const ci=b.appendInstructionToTimeline(oi,It,Lt);Oe=Math.max(Oe,ci.duration+ci.delay)}),Oe}visitReference(H,b){b.updateOptions(H.options,!0),Tt(this,H.animation,b),b.previousNode=H}visitSequence(H,b){const U=b.subContextCount;let G=b;const Oe=H.options;if(Oe&&(Oe.params||Oe.delay)&&(G=b.createSubContext(Oe),G.transformIntoNewTimeline(),null!=Oe.delay)){G.previousNode.type==w.If.Style&&(G.currentTimeline.snapshotCurrentStyles(),G.previousNode=rr);const It=tt(Oe.delay);G.delayNextStep(It)}H.steps.length&&(H.steps.forEach(It=>Tt(this,It,G)),G.currentTimeline.applyStylesToKeyframe(),G.subContextCount>U&&G.transformIntoNewTimeline()),b.previousNode=H}visitGroup(H,b){const U=[];let G=b.currentTimeline.currentTime;const Oe=H.options&&H.options.delay?tt(H.options.delay):0;H.steps.forEach(It=>{const Lt=b.createSubContext(H.options);Oe&&Lt.delayNextStep(Oe),Tt(this,It,Lt),G=Math.max(G,Lt.currentTimeline.currentTime),U.push(Lt.currentTimeline)}),U.forEach(It=>b.currentTimeline.mergeTimelineCollectedStyles(It)),b.transformIntoNewTimeline(G),b.previousNode=H}_visitTiming(H,b){if(H.dynamic){const U=H.strValue;return zt(b.params?gt(U,b.params,b.errors):U,b.errors)}return{duration:H.duration,delay:H.delay,easing:H.easing}}visitAnimate(H,b){const U=b.currentAnimateTimings=this._visitTiming(H.timings,b),G=b.currentTimeline;U.delay&&(b.incrementTime(U.delay),G.snapshotCurrentStyles());const Oe=H.style;Oe.type==w.If.Keyframes?this.visitKeyframes(Oe,b):(b.incrementTime(U.duration),this.visitStyle(Oe,b),G.applyStylesToKeyframe()),b.currentAnimateTimings=null,b.previousNode=H}visitStyle(H,b){const U=b.currentTimeline,G=b.currentAnimateTimings;!G&&U.hasCurrentStyleProperties()&&U.forwardFrame();const Oe=G&&G.easing||H.easing;H.isEmptyStep?U.applyEmptyStep(Oe):U.setStyles(H.styles,Oe,b.errors,b.options),b.previousNode=H}visitKeyframes(H,b){const U=b.currentAnimateTimings,G=b.currentTimeline.duration,Oe=U.duration,Lt=b.createSubContext().currentTimeline;Lt.easing=U.easing,H.styles.forEach(oi=>{Lt.forwardTime((oi.offset||0)*Oe),Lt.setStyles(oi.styles,oi.easing,b.errors,b.options),Lt.applyStylesToKeyframe()}),b.currentTimeline.mergeTimelineCollectedStyles(Lt),b.transformIntoNewTimeline(G+Oe),b.previousNode=H}visitQuery(H,b){const U=b.currentTimeline.currentTime,G=H.options||{},Oe=G.delay?tt(G.delay):0;Oe&&(b.previousNode.type===w.If.Style||0==U&&b.currentTimeline.hasCurrentStyleProperties())&&(b.currentTimeline.snapshotCurrentStyles(),b.previousNode=rr);let It=U;const Lt=b.invokeQuery(H.selector,H.originalSelector,H.limit,H.includeSelf,!!G.optional,b.errors);b.currentQueryTotal=Lt.length;let oi=null;Lt.forEach((ci,Ui)=>{b.currentQueryIndex=Ui;const Ti=b.createSubContext(H.options,ci);Oe&&Ti.delayNextStep(Oe),ci===b.element&&(oi=Ti.currentTimeline),Tt(this,H.animation,Ti),Ti.currentTimeline.applyStylesToKeyframe(),It=Math.max(It,Ti.currentTimeline.currentTime)}),b.currentQueryIndex=0,b.currentQueryTotal=0,b.transformIntoNewTimeline(It),oi&&(b.currentTimeline.mergeTimelineCollectedStyles(oi),b.currentTimeline.snapshotCurrentStyles()),b.previousNode=H}visitStagger(H,b){const U=b.parentContext,G=b.currentTimeline,Oe=H.timings,It=Math.abs(Oe.duration),Lt=It*(b.currentQueryTotal-1);let oi=It*b.currentQueryIndex;switch(Oe.duration<0?"reverse":Oe.easing){case"reverse":oi=Lt-oi;break;case"full":oi=U.currentStaggerTime}const Ui=b.currentTimeline;oi&&Ui.delayNextStep(oi);const Ti=Ui.currentTime;Tt(this,H.animation,b),b.previousNode=H,U.currentStaggerTime=G.currentTime-Ti+(G.startTime-U.currentTimeline.startTime)}}const rr={};class Rn{constructor(H,b,U,G,Oe,It,Lt,oi){this._driver=H,this.element=b,this.subInstructions=U,this._enterClassName=G,this._leaveClassName=Oe,this.errors=It,this.timelines=Lt,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=rr,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=oi||new _i(this._driver,b,0),Lt.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(H,b){if(!H)return;const U=H;let G=this.options;null!=U.duration&&(G.duration=tt(U.duration)),null!=U.delay&&(G.delay=tt(U.delay));const Oe=U.params;if(Oe){let It=G.params;It||(It=this.options.params={}),Object.keys(Oe).forEach(Lt=>{(!b||!It.hasOwnProperty(Lt))&&(It[Lt]=gt(Oe[Lt],It,this.errors))})}}_copyOptions(){const H={};if(this.options){const b=this.options.params;if(b){const U=H.params={};Object.keys(b).forEach(G=>{U[G]=b[G]})}}return H}createSubContext(H=null,b,U){const G=b||this.element,Oe=new Rn(this._driver,G,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(G,U||0));return Oe.previousNode=this.previousNode,Oe.currentAnimateTimings=this.currentAnimateTimings,Oe.options=this._copyOptions(),Oe.updateOptions(H),Oe.currentQueryIndex=this.currentQueryIndex,Oe.currentQueryTotal=this.currentQueryTotal,Oe.parentContext=this,this.subContextCount++,Oe}transformIntoNewTimeline(H){return this.previousNode=rr,this.currentTimeline=this.currentTimeline.fork(this.element,H),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(H,b,U){const G={duration:b??H.duration,delay:this.currentTimeline.currentTime+(U??0)+H.delay,easing:""},Oe=new Oi(this._driver,H.element,H.keyframes,H.preStyleProps,H.postStyleProps,G,H.stretchStartingKeyframe);return this.timelines.push(Oe),G}incrementTime(H){this.currentTimeline.forwardTime(this.currentTimeline.duration+H)}delayNextStep(H){H>0&&this.currentTimeline.delayNextStep(H)}invokeQuery(H,b,U,G,Oe,It){let Lt=[];if(G&&Lt.push(this.element),H.length>0){H=(H=H.replace(mn,"."+this._enterClassName)).replace($n,"."+this._leaveClassName);let ci=this._driver.query(this.element,H,1!=U);0!==U&&(ci=U<0?ci.slice(ci.length+U,ci.length):ci.slice(0,U)),Lt.push(...ci)}return!Oe&&0==Lt.length&&It.push(function ae(O){return new t.wOt(3014,!1)}()),Lt}}class _i{constructor(H,b,U,G){this._driver=H,this.element=b,this.startTime=U,this._elementTimelineStylesLookup=G,this.duration=0,this.easing=null,this._previousKeyframe=new Map,this._currentKeyframe=new Map,this._keyframes=new Map,this._styleSummary=new Map,this._localTimelineStyles=new Map,this._pendingStyles=new Map,this._backFill=new Map,this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(b),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(b,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(H){const b=1===this._keyframes.size&&this._pendingStyles.size;this.duration||b?(this.forwardTime(this.currentTime+H),b&&this.snapshotCurrentStyles()):this.startTime+=H}fork(H,b){return this.applyStylesToKeyframe(),new _i(this._driver,H,b||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(H){this.applyStylesToKeyframe(),this.duration=H,this._loadKeyframe()}_updateStyle(H,b){this._localTimelineStyles.set(H,b),this._globalTimelineStyles.set(H,b),this._styleSummary.set(H,{time:this.currentTime,value:b})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(H){H&&this._previousKeyframe.set("easing",H);for(let[b,U]of this._globalTimelineStyles)this._backFill.set(b,U||w.kp),this._currentKeyframe.set(b,w.kp);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(H,b,U,G){b&&this._previousKeyframe.set("easing",b);const Oe=G&&G.params||{},It=function Ci(O,H){const b=new Map;let U;return O.forEach(G=>{if("*"===G){U??=H.keys();for(let Oe of U)b.set(Oe,w.kp)}else for(let[Oe,It]of G)b.set(Oe,It)}),b}(H,this._globalTimelineStyles);for(let[Lt,oi]of It){const ci=gt(oi,Oe,U);this._pendingStyles.set(Lt,ci),this._localTimelineStyles.has(Lt)||this._backFill.set(Lt,this._globalTimelineStyles.get(Lt)??w.kp),this._updateStyle(Lt,ci)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((H,b)=>{this._currentKeyframe.set(b,H)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((H,b)=>{this._currentKeyframe.has(b)||this._currentKeyframe.set(b,H)}))}snapshotCurrentStyles(){for(let[H,b]of this._localTimelineStyles)this._pendingStyles.set(H,b),this._updateStyle(H,b)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const H=[];for(let b in this._currentKeyframe)H.push(b);return H}mergeTimelineCollectedStyles(H){H._styleSummary.forEach((b,U)=>{const G=this._styleSummary.get(U);(!G||b.time>G.time)&&this._updateStyle(U,b.value)})}buildKeyframes(){this.applyStylesToKeyframe();const H=new Set,b=new Set,U=1===this._keyframes.size&&0===this.duration;let G=[];this._keyframes.forEach((Lt,oi)=>{const ci=new Map([...this._backFill,...Lt]);ci.forEach((Ui,Ti)=>{Ui===w.FX?H.add(Ti):Ui===w.kp&&b.add(Ti)}),U||ci.set("offset",oi/this.duration),G.push(ci)});const Oe=[...H.values()],It=[...b.values()];if(U){const Lt=G[0],oi=new Map(Lt);Lt.set("offset",0),oi.set("offset",1),G=[Lt,oi]}return ut(this.element,G,Oe,It,this.duration,this.startTime,this.easing,!1)}}class Oi extends _i{constructor(H,b,U,G,Oe,It,Lt=!1){super(H,b,It.delay),this.keyframes=U,this.preStyleProps=G,this.postStyleProps=Oe,this._stretchStartingKeyframe=Lt,this.timings={duration:It.duration,delay:It.delay,easing:It.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let H=this.keyframes,{delay:b,duration:U,easing:G}=this.timings;if(this._stretchStartingKeyframe&&b){const Oe=[],It=U+b,Lt=b/It,oi=new Map(H[0]);oi.set("offset",0),Oe.push(oi);const ci=new Map(H[0]);ci.set("offset",jt(Lt)),Oe.push(ci);const Ui=H.length-1;for(let Ti=1;Ti<=Ui;Ti++){let un=new Map(H[Ti]);const bn=un.get("offset");un.set("offset",jt((b+bn*U)/It)),Oe.push(un)}U=It,b=0,G="",H=Oe}return ut(this.element,H,this.preStyleProps,this.postStyleProps,U,b,G,!0)}}function jt(O,H=3){const b=Math.pow(10,H-1);return Math.round(O*b)/b}function hi(O,H,b,U,G,Oe,It,Lt,oi,ci,Ui,Ti,un){return{type:0,element:O,triggerName:H,isRemovalTransition:G,fromState:b,fromStyles:Oe,toState:U,toStyles:It,timelines:Lt,queriedElements:oi,preStyleProps:ci,postStyleProps:Ui,totalTime:Ti,errors:un}}const yi={};class Vi{constructor(H,b,U){this._triggerName=H,this.ast=b,this._stateStyles=U}match(H,b,U,G){return function rn(O,H,b,U,G){return O.some(Oe=>Oe(H,b,U,G))}(this.ast.matchers,H,b,U,G)}buildStyles(H,b,U){let G=this._stateStyles.get("*");return void 0!==H&&(G=this._stateStyles.get(H?.toString())||G),G?G.buildStyles(b,U):new Map}build(H,b,U,G,Oe,It,Lt,oi,ci,Ui){const Ti=[],un=this.ast.options&&this.ast.options.params||yi,Yi=this.buildStyles(U,Lt&&Lt.params||yi,Ti),Ji=oi&&oi.params||yi,An=this.buildStyles(G,Ji,Ti),Un=new Set,Vr=new Map,la=new Map,cr="void"===G,ta={params:ar(Ji,un),delay:this.ast.options?.delay},Ar=Ui?[]:Yn(H,b,this.ast.animation,Oe,It,Yi,An,ta,ci,Ti);let ma=0;return Ar.forEach(ia=>{ma=Math.max(ia.duration+ia.delay,ma)}),Ti.length?hi(b,this._triggerName,U,G,cr,Yi,An,[],[],Vr,la,ma,Ti):(Ar.forEach(ia=>{const rc=ia.element,Lc=me(Vr,rc,new Set);ia.preStyleProps.forEach($c=>Lc.add($c));const M1=me(la,rc,new Set);ia.postStyleProps.forEach($c=>M1.add($c)),rc!==b&&Un.add(rc)}),hi(b,this._triggerName,U,G,cr,Yi,An,Ar,[...Un.values()],Vr,la,ma))}}function ar(O,H){const b={...H};return Object.entries(O).forEach(([U,G])=>{null!=G&&(b[U]=G)}),b}class sr{constructor(H,b,U){this.styles=H,this.defaultParams=b,this.normalizer=U}buildStyles(H,b){const U=new Map,G=ar(H,this.defaultParams);return this.styles.styles.forEach(Oe=>{"string"!=typeof Oe&&Oe.forEach((It,Lt)=>{It&&(It=gt(It,G,b));const oi=this.normalizer.normalizePropertyName(Lt,b);It=this.normalizer.normalizeStyleValue(Lt,oi,It,b),U.set(Lt,It)})}),U}}class or{constructor(H,b,U){this.name=H,this.ast=b,this._normalizer=U,this.transitionFactories=[],this.states=new Map,b.states.forEach(G=>{this.states.set(G.name,new sr(G.style,G.options&&G.options.params||{},U))}),Sr(this.states,"true","1"),Sr(this.states,"false","0"),b.transitions.forEach(G=>{this.transitionFactories.push(new Vi(H,G,this.states))}),this.fallbackTransition=function Xr(O,H,b){return new Vi(O,{type:w.If.Transition,animation:{type:w.If.Sequence,steps:[],options:null},matchers:[(It,Lt)=>!0],options:null,queryCount:0,depCount:0},H)}(H,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(H,b,U,G){return this.transitionFactories.find(It=>It.match(H,b,U,G))||null}matchStyles(H,b,U){return this.fallbackTransition.buildStyles(H,b,U)}}function Sr(O,H,b){O.has(H)?O.has(b)||O.set(b,O.get(H)):O.has(b)&&O.set(H,O.get(b))}const zr=new ii;class Ho{constructor(H,b,U){this.bodyNode=H,this._driver=b,this._normalizer=U,this._animations=new Map,this._playersById=new Map,this.players=[]}register(H,b){const U=[],Oe=zi(this._driver,b,U,[]);if(U.length)throw function m(O){return new t.wOt(3503,!1)}();this._animations.set(H,Oe)}_buildPlayer(H,b,U){const G=H.element,Oe=qe(this._normalizer,H.keyframes,b,U);return this._driver.animate(G,Oe,H.duration,H.delay,H.easing,[],!0)}create(H,b,U={}){const G=[],Oe=this._animations.get(H);let It;const Lt=new Map;if(Oe?(It=Yn(this._driver,b,Oe,rt,Yt,new Map,new Map,U,zr,G),It.forEach(Ui=>{const Ti=me(Lt,Ui.element,new Map);Ui.postStyleProps.forEach(un=>Ti.set(un,null))})):(G.push(function h(){return new t.wOt(3300,!1)}()),It=[]),G.length)throw function C(O){return new t.wOt(3504,!1)}();Lt.forEach((Ui,Ti)=>{Ui.forEach((un,bn)=>{Ui.set(bn,this._driver.computeStyle(Ti,bn,w.kp))})});const ci=ze(It.map(Ui=>{const Ti=Lt.get(Ui.element);return this._buildPlayer(Ui,new Map,Ti)}));return this._playersById.set(H,ci),ci.onDestroy(()=>this.destroy(H)),this.players.push(ci),ci}destroy(H){const b=this._getPlayer(H);b.destroy(),this._playersById.delete(H);const U=this.players.indexOf(b);U>=0&&this.players.splice(U,1)}_getPlayer(H){const b=this._playersById.get(H);if(!b)throw function k(O){return new t.wOt(3301,!1)}();return b}listen(H,b,U,G){const Oe=X(b,"","","");return Ke(this._getPlayer(H),U,Oe,G),()=>{}}command(H,b,U,G){if("register"==U)return void this.register(H,G[0]);if("create"==U)return void this.create(H,b,G[0]||{});const Oe=this._getPlayer(H);switch(U){case"play":Oe.play();break;case"pause":Oe.pause();break;case"reset":Oe.reset();break;case"restart":Oe.restart();break;case"finish":Oe.finish();break;case"init":Oe.init();break;case"setPosition":Oe.setPosition(parseFloat(G[0]));break;case"destroy":this.destroy(H)}}}const xo="ng-animate-queued",Rr="ng-animate-disabled",ho=[],xr={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Sa={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},zn="__ng_removed";class ro{get params(){return this.options.params}constructor(H,b=""){this.namespaceId=b;const U=H&&H.hasOwnProperty("value");if(this.value=function da(O){return O??null}(U?H.value:H),U){const{value:Oe,...It}=H;this.options=It}else this.options={};this.options.params||(this.options.params={})}absorbOptions(H){const b=H.params;if(b){const U=this.options.params;Object.keys(b).forEach(G=>{null==U[G]&&(U[G]=b[G])})}}}const hn="void",Yr=new ro(hn);class Ta{constructor(H,b,U){this.id=H,this.hostElement=b,this._engine=U,this.players=[],this._triggers=new Map,this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+H,kr(b,this._hostClassName)}listen(H,b,U,G){if(!this._triggers.has(b))throw function L(O,H){return new t.wOt(3302,!1)}();if(null==U||0==U.length)throw function _(O){return new t.wOt(3303,!1)}();if(!function Oa(O){return"start"==O||"done"==O}(U))throw function r(O,H){return new t.wOt(3400,!1)}();const Oe=me(this._elementListeners,H,[]),It={name:b,phase:U,callback:G};Oe.push(It);const Lt=me(this._engine.statesByElement,H,new Map);return Lt.has(b)||(kr(H,Nt),kr(H,Nt+"-"+b),Lt.set(b,Yr)),()=>{this._engine.afterFlush(()=>{const oi=Oe.indexOf(It);oi>=0&&Oe.splice(oi,1),this._triggers.has(b)||Lt.delete(b)})}}register(H,b){return!this._triggers.has(H)&&(this._triggers.set(H,b),!0)}_getTrigger(H){const b=this._triggers.get(H);if(!b)throw function v(O){return new t.wOt(3401,!1)}();return b}trigger(H,b,U,G=!0){const Oe=this._getTrigger(b),It=new wo(this.id,b,H);let Lt=this._engine.statesByElement.get(H);Lt||(kr(H,Nt),kr(H,Nt+"-"+b),this._engine.statesByElement.set(H,Lt=new Map));let oi=Lt.get(b);const ci=new ro(U,this.id);if(!(U&&U.hasOwnProperty("value"))&&oi&&ci.absorbOptions(oi.options),Lt.set(b,ci),oi||(oi=Yr),ci.value!==hn&&oi.value===ci.value){if(!function Ga(O,H){const b=Object.keys(O),U=Object.keys(H);if(b.length!=U.length)return!1;for(let G=0;G{we(H,An),Ae(H,Un)})}return}const un=me(this._engine.playersByElement,H,[]);un.forEach(Ji=>{Ji.namespaceId==this.id&&Ji.triggerName==b&&Ji.queued&&Ji.destroy()});let bn=Oe.matchTransition(oi.value,ci.value,H,ci.params),Yi=!1;if(!bn){if(!G)return;bn=Oe.fallbackTransition,Yi=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:H,triggerName:b,transition:bn,fromState:oi,toState:ci,player:It,isFallbackTransition:Yi}),Yi||(kr(H,xo),It.onStart(()=>{ha(H,xo)})),It.onDone(()=>{let Ji=this.players.indexOf(It);Ji>=0&&this.players.splice(Ji,1);const An=this._engine.playersByElement.get(H);if(An){let Un=An.indexOf(It);Un>=0&&An.splice(Un,1)}}),this.players.push(It),un.push(It),It}deregister(H){this._triggers.delete(H),this._engine.statesByElement.forEach(b=>b.delete(H)),this._elementListeners.forEach((b,U)=>{this._elementListeners.set(U,b.filter(G=>G.name!=H))})}clearElementCache(H){this._engine.statesByElement.delete(H),this._elementListeners.delete(H);const b=this._engine.playersByElement.get(H);b&&(b.forEach(U=>U.destroy()),this._engine.playersByElement.delete(H))}_signalRemovalForInnerTriggers(H,b){const U=this._engine.driver.query(H,Et,!0);U.forEach(G=>{if(G[zn])return;const Oe=this._engine.fetchNamespacesByElement(G);Oe.size?Oe.forEach(It=>It.triggerLeaveAnimation(G,b,!1,!0)):this.clearElementCache(G)}),this._engine.afterFlushAnimationsDone(()=>U.forEach(G=>this.clearElementCache(G)))}triggerLeaveAnimation(H,b,U,G){const Oe=this._engine.statesByElement.get(H),It=new Map;if(Oe){const Lt=[];if(Oe.forEach((oi,ci)=>{if(It.set(ci,oi.value),this._triggers.has(ci)){const Ui=this.trigger(H,ci,hn,G);Ui&&Lt.push(Ui)}}),Lt.length)return this._engine.markElementAsRemoved(this.id,H,!0,b,It),U&&ze(Lt).onDone(()=>this._engine.processLeaveNode(H)),!0}return!1}prepareLeaveAnimationListeners(H){const b=this._elementListeners.get(H),U=this._engine.statesByElement.get(H);if(b&&U){const G=new Set;b.forEach(Oe=>{const It=Oe.name;if(G.has(It))return;G.add(It);const oi=this._triggers.get(It).fallbackTransition,ci=U.get(It)||Yr,Ui=new ro(hn),Ti=new wo(this.id,It,H);this._engine.totalQueuedPlayers++,this._queue.push({element:H,triggerName:It,transition:oi,fromState:ci,toState:Ui,player:Ti,isFallbackTransition:!0})})}}removeNode(H,b){const U=this._engine;if(H.childElementCount&&this._signalRemovalForInnerTriggers(H,b),this.triggerLeaveAnimation(H,b,!0))return;let G=!1;if(U.totalAnimations){const Oe=U.players.length?U.playersByQueriedElement.get(H):[];if(Oe&&Oe.length)G=!0;else{let It=H;for(;It=It.parentNode;)if(U.statesByElement.get(It)){G=!0;break}}}if(this.prepareLeaveAnimationListeners(H),G)U.markElementAsRemoved(this.id,H,!1,b);else{const Oe=H[zn];(!Oe||Oe===xr)&&(U.afterFlush(()=>this.clearElementCache(H)),U.destroyInnerAnimations(H),U._onRemovalComplete(H,b))}}insertNode(H,b){kr(H,this._hostClassName)}drainQueuedTransitions(H){const b=[];return this._queue.forEach(U=>{const G=U.player;if(G.destroyed)return;const Oe=U.element,It=this._elementListeners.get(Oe);It&&It.forEach(Lt=>{if(Lt.name==U.triggerName){const oi=X(Oe,U.triggerName,U.fromState.value,U.toState.value);oi._data=H,Ke(U.player,Lt.phase,oi,Lt.callback)}}),G.markedForDestroy?this._engine.afterFlush(()=>{G.destroy()}):b.push(U)}),this._queue=[],b.sort((U,G)=>{const Oe=U.transition.ast.depCount,It=G.transition.ast.depCount;return 0==Oe||0==It?Oe-It:this._engine.driver.containsElement(U.element,G.element)?1:-1})}destroy(H){this.players.forEach(b=>b.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,H)}}class Co{_onRemovalComplete(H,b){this.onRemovalComplete(H,b)}constructor(H,b,U){this.bodyNode=H,this.driver=b,this._normalizer=U,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(G,Oe)=>{}}get queuedPlayers(){const H=[];return this._namespaceList.forEach(b=>{b.players.forEach(U=>{U.queued&&H.push(U)})}),H}createNamespace(H,b){const U=new Ta(H,b,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,b)?this._balanceNamespaceList(U,b):(this.newHostElements.set(b,U),this.collectEnterElement(b)),this._namespaceLookup[H]=U}_balanceNamespaceList(H,b){const U=this._namespaceList,G=this.namespacesByHostElement;if(U.length-1>=0){let It=!1,Lt=this.driver.getParentElement(b);for(;Lt;){const oi=G.get(Lt);if(oi){const ci=U.indexOf(oi);U.splice(ci+1,0,H),It=!0;break}Lt=this.driver.getParentElement(Lt)}It||U.unshift(H)}else U.push(H);return G.set(b,H),H}register(H,b){let U=this._namespaceLookup[H];return U||(U=this.createNamespace(H,b)),U}registerTrigger(H,b,U){let G=this._namespaceLookup[H];G&&G.register(b,U)&&this.totalAnimations++}destroy(H,b){H&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const U=this._fetchNamespace(H);this.namespacesByHostElement.delete(U.hostElement);const G=this._namespaceList.indexOf(U);G>=0&&this._namespaceList.splice(G,1),U.destroy(b),delete this._namespaceLookup[H]}))}_fetchNamespace(H){return this._namespaceLookup[H]}fetchNamespacesByElement(H){const b=new Set,U=this.statesByElement.get(H);if(U)for(let G of U.values())if(G.namespaceId){const Oe=this._fetchNamespace(G.namespaceId);Oe&&b.add(Oe)}return b}trigger(H,b,U,G){if(ao(b)){const Oe=this._fetchNamespace(H);if(Oe)return Oe.trigger(b,U,G),!0}return!1}insertNode(H,b,U,G){if(!ao(b))return;const Oe=b[zn];if(Oe&&Oe.setForRemoval){Oe.setForRemoval=!1,Oe.setForMove=!0;const It=this.collectedLeaveElements.indexOf(b);It>=0&&this.collectedLeaveElements.splice(It,1)}if(H){const It=this._fetchNamespace(H);It&&It.insertNode(b,U)}G&&this.collectEnterElement(b)}collectEnterElement(H){this.collectedEnterElements.push(H)}markElementAsDisabled(H,b){b?this.disabledNodes.has(H)||(this.disabledNodes.add(H),kr(H,Rr)):this.disabledNodes.has(H)&&(this.disabledNodes.delete(H),ha(H,Rr))}removeNode(H,b,U){if(ao(b)){const G=H?this._fetchNamespace(H):null;G?G.removeNode(b,U):this.markElementAsRemoved(H,b,!1,U);const Oe=this.namespacesByHostElement.get(b);Oe&&Oe.id!==H&&Oe.removeNode(b,U)}else this._onRemovalComplete(b,U)}markElementAsRemoved(H,b,U,G,Oe){this.collectedLeaveElements.push(b),b[zn]={namespaceId:H,setForRemoval:G,hasAnimation:U,removedBeforeQueried:!1,previousTriggersValues:Oe}}listen(H,b,U,G,Oe){return ao(b)?this._fetchNamespace(H).listen(b,U,G,Oe):()=>{}}_buildInstruction(H,b,U,G,Oe){return H.transition.build(this.driver,H.element,H.fromState.value,H.toState.value,U,G,H.fromState.options,H.toState.options,b,Oe)}destroyInnerAnimations(H){let b=this.driver.query(H,Et,!0);b.forEach(U=>this.destroyActiveAnimationsForElement(U)),0!=this.playersByQueriedElement.size&&(b=this.driver.query(H,oe,!0),b.forEach(U=>this.finishActiveQueriedAnimationOnElement(U)))}destroyActiveAnimationsForElement(H){const b=this.playersByElement.get(H);b&&b.forEach(U=>{U.queued?U.markedForDestroy=!0:U.destroy()})}finishActiveQueriedAnimationOnElement(H){const b=this.playersByQueriedElement.get(H);b&&b.forEach(U=>U.finish())}whenRenderingDone(){return new Promise(H=>{if(this.players.length)return ze(this.players).onDone(()=>H());H()})}processLeaveNode(H){const b=H[zn];if(b&&b.setForRemoval){if(H[zn]=xr,b.namespaceId){this.destroyInnerAnimations(H);const U=this._fetchNamespace(b.namespaceId);U&&U.clearElementCache(H)}this._onRemovalComplete(H,b.setForRemoval)}H.classList?.contains(Rr)&&this.markElementAsDisabled(H,!1),this.driver.query(H,".ng-animate-disabled",!0).forEach(U=>{this.markElementAsDisabled(U,!1)})}flush(H=-1){let b=[];if(this.newHostElements.size&&(this.newHostElements.forEach((U,G)=>this._balanceNamespaceList(U,G)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let U=0;UU()),this._flushFns=[],this._whenQuietFns.length){const U=this._whenQuietFns;this._whenQuietFns=[],b.length?ze(b).onDone(()=>{U.forEach(G=>G())}):U.forEach(G=>G())}}reportError(H){throw function V(O){return new t.wOt(3402,!1)}()}_flushAnimations(H,b){const U=new ii,G=[],Oe=new Map,It=[],Lt=new Map,oi=new Map,ci=new Map,Ui=new Set;this.disabledNodes.forEach(wn=>{Ui.add(wn);const On=this.driver.query(wn,".ng-animate-queued",!0);for(let Gn=0;Gn{const Gn=rt+Ji++;Yi.set(On,Gn),wn.forEach(Mr=>kr(Mr,Gn))});const An=[],Un=new Set,Vr=new Set;for(let wn=0;wnUn.add(Mr)):Vr.add(On))}const la=new Map,cr=Ro(un,Array.from(Un));cr.forEach((wn,On)=>{const Gn=Yt+Ji++;la.set(On,Gn),wn.forEach(Mr=>kr(Mr,Gn))}),H.push(()=>{bn.forEach((wn,On)=>{const Gn=Yi.get(On);wn.forEach(Mr=>ha(Mr,Gn))}),cr.forEach((wn,On)=>{const Gn=la.get(On);wn.forEach(Mr=>ha(Mr,Gn))}),An.forEach(wn=>{this.processLeaveNode(wn)})});const ta=[],Ar=[];for(let wn=this._namespaceList.length-1;wn>=0;wn--)this._namespaceList[wn].drainQueuedTransitions(b).forEach(Gn=>{const Mr=Gn.player,_o=Gn.element;if(ta.push(Mr),this.collectedEnterElements.length){const vo=_o[zn];if(vo&&vo.setForMove){if(vo.previousTriggersValues&&vo.previousTriggersValues.has(Gn.triggerName)){const Qc=vo.previousTriggersValues.get(Gn.triggerName),Xs=this.statesByElement.get(Gn.element);if(Xs&&Xs.has(Gn.triggerName)){const Ld=Xs.get(Gn.triggerName);Ld.value=Qc,Xs.set(Gn.triggerName,Ld)}}return void Mr.destroy()}}const ac=!Ti||!this.driver.containsElement(Ti,_o),xs=la.get(_o),yl=Yi.get(_o),wa=this._buildInstruction(Gn,U,yl,xs,ac);if(wa.errors&&wa.errors.length)return void Ar.push(wa);if(ac)return Mr.onStart(()=>we(_o,wa.fromStyles)),Mr.onDestroy(()=>Ae(_o,wa.toStyles)),void G.push(Mr);if(Gn.isFallbackTransition)return Mr.onStart(()=>we(_o,wa.fromStyles)),Mr.onDestroy(()=>Ae(_o,wa.toStyles)),void G.push(Mr);const Y2=[];wa.timelines.forEach(vo=>{vo.stretchStartingKeyframe=!0,this.disabledNodes.has(vo.element)||Y2.push(vo)}),wa.timelines=Y2,U.append(_o,wa.timelines),It.push({instruction:wa,player:Mr,element:_o}),wa.queriedElements.forEach(vo=>me(Lt,vo,[]).push(Mr)),wa.preStyleProps.forEach((vo,Qc)=>{if(vo.size){let Xs=oi.get(Qc);Xs||oi.set(Qc,Xs=new Set),vo.forEach((Ld,Id)=>Xs.add(Id))}}),wa.postStyleProps.forEach((vo,Qc)=>{let Xs=ci.get(Qc);Xs||ci.set(Qc,Xs=new Set),vo.forEach((Ld,Id)=>Xs.add(Id))})});if(Ar.length){const wn=[];Ar.forEach(On=>{wn.push(function ne(O,H){return new t.wOt(3505,!1)}())}),ta.forEach(On=>On.destroy()),this.reportError(wn)}const ma=new Map,ia=new Map;It.forEach(wn=>{const On=wn.element;U.has(On)&&(ia.set(On,On),this._beforeAnimationBuild(wn.player.namespaceId,wn.instruction,ma))}),G.forEach(wn=>{const On=wn.element;this._getPreviousPlayers(On,!1,wn.namespaceId,wn.triggerName,null).forEach(Mr=>{me(ma,On,[]).push(Mr),Mr.destroy()})});const rc=An.filter(wn=>Na(wn,oi,ci)),Lc=new Map;Fa(Lc,this.driver,Vr,ci,w.kp).forEach(wn=>{Na(wn,oi,ci)&&rc.push(wn)});const $c=new Map;bn.forEach((wn,On)=>{Fa($c,this.driver,new Set(wn),oi,w.FX)}),rc.forEach(wn=>{const On=Lc.get(wn),Gn=$c.get(wn);Lc.set(wn,new Map([...On?.entries()??[],...Gn?.entries()??[]]))});const W2=[],bl=[],X2={};It.forEach(wn=>{const{element:On,player:Gn,instruction:Mr}=wn;if(U.has(On)){if(Ui.has(On))return Gn.onDestroy(()=>Ae(On,Mr.toStyles)),Gn.disabled=!0,Gn.overrideTotalTime(Mr.totalTime),void G.push(Gn);let _o=X2;if(ia.size>1){let xs=On;const yl=[];for(;xs=xs.parentNode;){const wa=ia.get(xs);if(wa){_o=wa;break}yl.push(xs)}yl.forEach(wa=>ia.set(wa,_o))}const ac=this._buildAnimation(Gn.namespaceId,Mr,ma,Oe,$c,Lc);if(Gn.setRealPlayer(ac),_o===X2)W2.push(Gn);else{const xs=this.playersByElement.get(_o);xs&&xs.length&&(Gn.parentPlayer=ze(xs)),G.push(Gn)}}else we(On,Mr.fromStyles),Gn.onDestroy(()=>Ae(On,Mr.toStyles)),bl.push(Gn),Ui.has(On)&&G.push(Gn)}),bl.forEach(wn=>{const On=Oe.get(wn.element);if(On&&On.length){const Gn=ze(On);wn.setRealPlayer(Gn)}}),G.forEach(wn=>{wn.parentPlayer?wn.syncPlayerEvents(wn.parentPlayer):wn.destroy()});for(let wn=0;wn!ac.destroyed);_o.length?Br(this,On,_o):this.processLeaveNode(On)}return An.length=0,W2.forEach(wn=>{this.players.push(wn),wn.onDone(()=>{wn.destroy();const On=this.players.indexOf(wn);this.players.splice(On,1)}),wn.play()}),W2}afterFlush(H){this._flushFns.push(H)}afterFlushAnimationsDone(H){this._whenQuietFns.push(H)}_getPreviousPlayers(H,b,U,G,Oe){let It=[];if(b){const Lt=this.playersByQueriedElement.get(H);Lt&&(It=Lt)}else{const Lt=this.playersByElement.get(H);if(Lt){const oi=!Oe||Oe==hn;Lt.forEach(ci=>{ci.queued||!oi&&ci.triggerName!=G||It.push(ci)})}}return(U||G)&&(It=It.filter(Lt=>!(U&&U!=Lt.namespaceId||G&&G!=Lt.triggerName))),It}_beforeAnimationBuild(H,b,U){const Oe=b.element,It=b.isRemovalTransition?void 0:H,Lt=b.isRemovalTransition?void 0:b.triggerName;for(const oi of b.timelines){const ci=oi.element,Ui=ci!==Oe,Ti=me(U,ci,[]);this._getPreviousPlayers(ci,Ui,It,Lt,b.toState).forEach(bn=>{const Yi=bn.getRealPlayer();Yi.beforeDestroy&&Yi.beforeDestroy(),bn.destroy(),Ti.push(bn)})}we(Oe,b.fromStyles)}_buildAnimation(H,b,U,G,Oe,It){const Lt=b.triggerName,oi=b.element,ci=[],Ui=new Set,Ti=new Set,un=b.timelines.map(Yi=>{const Ji=Yi.element;Ui.add(Ji);const An=Ji[zn];if(An&&An.removedBeforeQueried)return new w.sf(Yi.duration,Yi.delay);const Un=Ji!==oi,Vr=function Ua(O){const H=[];return rs(O,H),H}((U.get(Ji)||ho).map(ma=>ma.getRealPlayer())).filter(ma=>!!ma.element&&ma.element===Ji),la=Oe.get(Ji),cr=It.get(Ji),ta=qe(this._normalizer,Yi.keyframes,la,cr),Ar=this._buildPlayer(Yi,ta,Vr);if(Yi.subTimeline&&G&&Ti.add(Ji),Un){const ma=new wo(H,Lt,Ji);ma.setRealPlayer(Ar),ci.push(ma)}return Ar});ci.forEach(Yi=>{me(this.playersByQueriedElement,Yi.element,[]).push(Yi),Yi.onDone(()=>function zo(O,H,b){let U=O.get(H);if(U){if(U.length){const G=U.indexOf(b);U.splice(G,1)}0==U.length&&O.delete(H)}return U}(this.playersByQueriedElement,Yi.element,Yi))}),Ui.forEach(Yi=>kr(Yi,Vt));const bn=ze(un);return bn.onDestroy(()=>{Ui.forEach(Yi=>ha(Yi,Vt)),Ae(oi,b.toStyles)}),Ti.forEach(Yi=>{me(G,Yi,[]).push(bn)}),bn}_buildPlayer(H,b,U){return b.length>0?this.driver.animate(H.element,b,H.duration,H.delay,H.easing,U):new w.sf(H.duration,H.delay)}}class wo{constructor(H,b,U){this.namespaceId=H,this.triggerName=b,this.element=U,this._player=new w.sf,this._containsRealPlayer=!1,this._queuedCallbacks=new Map,this.destroyed=!1,this.parentPlayer=null,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(H){this._containsRealPlayer||(this._player=H,this._queuedCallbacks.forEach((b,U)=>{b.forEach(G=>Ke(H,U,void 0,G))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(H.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(H){this.totalTime=H}syncPlayerEvents(H){const b=this._player;b.triggerCallback&&H.onStart(()=>b.triggerCallback("start")),H.onDone(()=>this.finish()),H.onDestroy(()=>this.destroy())}_queueEvent(H,b){me(this._queuedCallbacks,H,[]).push(b)}onDone(H){this.queued&&this._queueEvent("done",H),this._player.onDone(H)}onStart(H){this.queued&&this._queueEvent("start",H),this._player.onStart(H)}onDestroy(H){this.queued&&this._queueEvent("destroy",H),this._player.onDestroy(H)}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(H){this.queued||this._player.setPosition(H)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(H){const b=this._player;b.triggerCallback&&b.triggerCallback(H)}}function ao(O){return O&&1===O.nodeType}function ns(O,H){const b=O.style.display;return O.style.display=H??"none",b}function Fa(O,H,b,U,G){const Oe=[];b.forEach(oi=>Oe.push(ns(oi)));const It=[];U.forEach((oi,ci)=>{const Ui=new Map;oi.forEach(Ti=>{const un=H.computeStyle(ci,Ti,G);Ui.set(Ti,un),(!un||0==un.length)&&(ci[zn]=Sa,It.push(ci))}),O.set(ci,Ui)});let Lt=0;return b.forEach(oi=>ns(oi,Oe[Lt++])),It}function Ro(O,H){const b=new Map;if(O.forEach(Lt=>b.set(Lt,[])),0==H.length)return b;const G=new Set(H),Oe=new Map;function It(Lt){if(!Lt)return 1;let oi=Oe.get(Lt);if(oi)return oi;const ci=Lt.parentNode;return oi=b.has(ci)?ci:G.has(ci)?1:It(ci),Oe.set(Lt,oi),oi}return H.forEach(Lt=>{const oi=It(Lt);1!==oi&&b.get(oi).push(Lt)}),b}function kr(O,H){O.classList?.add(H)}function ha(O,H){O.classList?.remove(H)}function Br(O,H,b){ze(b).onDone(()=>O.processLeaveNode(H))}function rs(O,H){for(let b=0;bG.add(Oe)):H.set(O,U),b.delete(O),!0}class ja{constructor(H,b,U){this._driver=b,this._normalizer=U,this._triggerCache={},this.onRemovalComplete=(G,Oe)=>{},this._transitionEngine=new Co(H.body,b,U),this._timelineEngine=new Ho(H.body,b,U),this._transitionEngine.onRemovalComplete=(G,Oe)=>this.onRemovalComplete(G,Oe)}registerTrigger(H,b,U,G,Oe){const It=H+"-"+G;let Lt=this._triggerCache[It];if(!Lt){const oi=[],Ui=zi(this._driver,Oe,oi,[]);if(oi.length)throw function n(O,H){return new t.wOt(3404,!1)}();Lt=function nr(O,H,b){return new or(O,H,b)}(G,Ui,this._normalizer),this._triggerCache[It]=Lt}this._transitionEngine.registerTrigger(b,G,Lt)}register(H,b){this._transitionEngine.register(H,b)}destroy(H,b){this._transitionEngine.destroy(H,b)}onInsert(H,b,U,G){this._transitionEngine.insertNode(H,b,U,G)}onRemove(H,b,U){this._transitionEngine.removeNode(H,b,U)}disableAnimations(H,b){this._transitionEngine.markElementAsDisabled(H,b)}process(H,b,U,G){if("@"==U.charAt(0)){const[Oe,It]=ce(U);this._timelineEngine.command(Oe,b,It,G)}else this._transitionEngine.trigger(H,b,U,G)}listen(H,b,U,G,Oe){if("@"==U.charAt(0)){const[It,Lt]=ce(U);return this._timelineEngine.listen(It,b,Lt,Oe)}return this._transitionEngine.listen(H,b,U,G,Oe)}flush(H=-1){this._transitionEngine.flush(H)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(H){this._transitionEngine.afterFlushAnimationsDone(H)}}class Uo{static#e=this.initialStylesByElement=new WeakMap;constructor(H,b,U){this._element=H,this._startStyles=b,this._endStyles=U,this._state=0;let G=Uo.initialStylesByElement.get(H);G||Uo.initialStylesByElement.set(H,G=new Map),this._initialStyles=G}start(){this._state<1&&(this._startStyles&&Ae(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Ae(this._element,this._initialStyles),this._endStyles&&(Ae(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(Uo.initialStylesByElement.delete(this._element),this._startStyles&&(we(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(we(this._element,this._endStyles),this._endStyles=null),Ae(this._element,this._initialStyles),this._state=3)}}function uo(O){let H=null;return O.forEach((b,U)=>{(function ga(O){return"display"===O||"position"===O})(U)&&(H=H||new Map,H.set(U,b))}),H}class Za{constructor(H,b,U,G){this.element=H,this.keyframes=b,this.options=U,this._specialStyles=G,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this._originalOnDoneFns=[],this._originalOnStartFns=[],this.time=0,this.parentPlayer=null,this.currentSnapshot=new Map,this._duration=U.duration,this._delay=U.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(H=>H()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const H=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,H,this.options),this._finalKeyframe=H.length?H[H.length-1]:new Map;const b=()=>this._onFinish();this.domPlayer.addEventListener("finish",b),this.onDestroy(()=>{this.domPlayer.removeEventListener("finish",b)})}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(H){const b=[];return H.forEach(U=>{b.push(Object.fromEntries(U))}),b}_triggerWebAnimation(H,b,U){return H.animate(this._convertKeyframesToObject(b),U)}onStart(H){this._originalOnStartFns.push(H),this._onStartFns.push(H)}onDone(H){this._originalOnDoneFns.push(H),this._onDoneFns.push(H)}onDestroy(H){this._onDestroyFns.push(H)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(H=>H()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),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&&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(H=>H()),this._onDestroyFns=[])}setPosition(H){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=H*this.time}getPosition(){return+(this.domPlayer.currentTime??0)/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const H=new Map;this.hasStarted()&&this._finalKeyframe.forEach((U,G)=>{"offset"!==G&&H.set(G,this._finished?U:mi(this.element,G))}),this.currentSnapshot=H}triggerCallback(H){const b="start"===H?this._onStartFns:this._onDoneFns;b.forEach(U=>U()),b.length=0}}class Lr{validateStyleProperty(H){return!0}validateAnimatableStyleProperty(H){return!0}containsElement(H,b){return at(H,b)}getParentElement(H){return ke(H)}query(H,b,U){return pt(H,b,U)}computeStyle(H,b,U){return mi(H,b)}animate(H,b,U,G,Oe,It=[]){const oi={duration:U,delay:G,fill:0==G?"both":"forwards"};Oe&&(oi.easing=Oe);const ci=new Map,Ui=It.filter(bn=>bn instanceof Za);(function et(O,H){return 0===O||0===H})(U,G)&&Ui.forEach(bn=>{bn.currentSnapshot.forEach((Yi,Ji)=>ci.set(Ji,Yi))});let Ti=function St(O){return O.length?O[0]instanceof Map?O:O.map(H=>new Map(Object.entries(H))):[]}(b).map(bn=>new Map(bn));Ti=function st(O,H,b){if(b.size&&H.length){let U=H[0],G=[];if(b.forEach((Oe,It)=>{U.has(It)||G.push(It),U.set(It,Oe)}),G.length)for(let Oe=1;OeIt.set(Lt,mi(O,Lt)))}}return H}(H,Ti,ci);const un=function Bo(O,H){let b=null,U=null;return Array.isArray(H)&&H.length?(b=uo(H[0]),H.length>1&&(U=uo(H[H.length-1]))):H instanceof Map&&(b=uo(H)),b||U?new Uo(O,b,U):null}(H,Ti);return new Za(H,Ti,oi,un)}}const Bn="@.disabled";class Da{constructor(H,b,U,G){this.namespaceId=H,this.delegate=b,this.engine=U,this._onDestroy=G,this.\u0275type=0}get data(){return this.delegate.data}destroyNode(H){this.delegate.destroyNode?.(H)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(H,b){return this.delegate.createElement(H,b)}createComment(H){return this.delegate.createComment(H)}createText(H){return this.delegate.createText(H)}appendChild(H,b){this.delegate.appendChild(H,b),this.engine.onInsert(this.namespaceId,b,H,!1)}insertBefore(H,b,U,G=!0){this.delegate.insertBefore(H,b,U),this.engine.onInsert(this.namespaceId,b,H,G)}removeChild(H,b,U){this.engine.onRemove(this.namespaceId,b,this.delegate)}selectRootElement(H,b){return this.delegate.selectRootElement(H,b)}parentNode(H){return this.delegate.parentNode(H)}nextSibling(H){return this.delegate.nextSibling(H)}setAttribute(H,b,U,G){this.delegate.setAttribute(H,b,U,G)}removeAttribute(H,b,U){this.delegate.removeAttribute(H,b,U)}addClass(H,b){this.delegate.addClass(H,b)}removeClass(H,b){this.delegate.removeClass(H,b)}setStyle(H,b,U,G){this.delegate.setStyle(H,b,U,G)}removeStyle(H,b,U){this.delegate.removeStyle(H,b,U)}setProperty(H,b,U){"@"==b.charAt(0)&&b==Bn?this.disableAnimations(H,!!U):this.delegate.setProperty(H,b,U)}setValue(H,b){this.delegate.setValue(H,b)}listen(H,b,U){return this.delegate.listen(H,b,U)}disableAnimations(H,b){this.engine.disableAnimations(H,b)}}class Go extends Da{constructor(H,b,U,G,Oe){super(b,U,G,Oe),this.factory=H,this.namespaceId=b}setProperty(H,b,U){"@"==b.charAt(0)?"."==b.charAt(1)&&b==Bn?this.disableAnimations(H,U=void 0===U||!!U):this.engine.process(this.namespaceId,H,b.slice(1),U):this.delegate.setProperty(H,b,U)}listen(H,b,U){if("@"==b.charAt(0)){const G=function Wa(O){switch(O){case"body":return document.body;case"document":return document;case"window":return window;default:return O}}(H);let Oe=b.slice(1),It="";return"@"!=Oe.charAt(0)&&([Oe,It]=function as(O){const H=O.indexOf(".");return[O.substring(0,H),O.slice(H+1)]}(Oe)),this.engine.listen(this.namespaceId,G,Oe,It,Lt=>{this.factory.scheduleListenerCallback(Lt._data||-1,U,Lt)})}return this.delegate.listen(H,b,U)}}class Ft{constructor(H,b,U){this.delegate=H,this.engine=b,this._zone=U,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,b.onRemovalComplete=(G,Oe)=>{const It=Oe?.parentNode(G);It&&Oe.removeChild(It,G)}}createRenderer(H,b){const G=this.delegate.createRenderer(H,b);if(!H||!b?.data?.animation){const ci=this._rendererCache;let Ui=ci.get(G);return Ui||(Ui=new Da("",G,this.engine,()=>ci.delete(G)),ci.set(G,Ui)),Ui}const Oe=b.id,It=b.id+"-"+this._currentId;this._currentId++,this.engine.register(It,H);const Lt=ci=>{Array.isArray(ci)?ci.forEach(Lt):this.engine.registerTrigger(Oe,It,H,ci.name,ci)};return b.data.animation.forEach(Lt),new Go(this,It,G,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(H,b,U){if(H>=0&&Hb(U));const G=this._animationCallbacksBuffer;0==G.length&&queueMicrotask(()=>{this._zone.run(()=>{G.forEach(Oe=>{const[It,Lt]=Oe;It(Lt)}),this._animationCallbacksBuffer=[]})}),G.push([b,U])}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()}}var ri=g(177);const Ki=[{provide:Ie,useFactory:function ai(){return new Pt}},{provide:ja,useClass:(()=>{class O extends ja{constructor(b,U,G){super(b,U,G)}ngOnDestroy(){this.flush()}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(ri.qQ),t.KVO(ue),t.KVO(Ie))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})()},{provide:t._9s,useFactory:function Ei(O,H,b){return new Ft(O,H,b)},deps:[e.B7,ja,t.SKi]}],tr=[{provide:ue,useFactory:()=>new Lr},{provide:t.bc$,useValue:"BrowserAnimations"},...Ki],Or=[{provide:ue,useClass:ye},{provide:t.bc$,useValue:"NoopAnimations"},...Ki];let Fr=(()=>{class O{static withConfig(b){return{ngModule:O,providers:b.disableAnimations?Or:tr}}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O});static#i=this.\u0275inj=t.G2t({providers:tr,imports:[e.Bb]})}return O})();var Ms=g(1626),oa=g(9327),Ri=g(9640),lt=g(4054),ht=g(983),Ue=g(1985),At=g(7673),ni=g(7786),pn=g(7242),Zn=g(2771),Fo=g(7647),vr=g(5964),Xa=g(6354),lc=g(274),dc=g(3236),hc=g(8211),jo=g(9974),Wo=g(8750),fo=g(1853),Is=g(4360),Vn=g(5225);const Kr=(0,fo.L)(O=>function(b=null){O(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=b});function so(O){throw new Kr(O)}var Ir=g(152),Aa=g(9437),$s=g(6697),dn=g(6977),Es=g(5558),uc=g(5245),Ss=g(941),fc=g(3993),_s=g(2816),kl=g(9079);const vs="PERFORM_ACTION",el="ROLLBACK",Rs="TOGGLE_ACTION",pc="JUMP_TO_STATE",Js="JUMP_TO_ACTION",bs="IMPORT_STATE",gc="LOCK_CHANGES",_c="PAUSE_RECORDING";class os{constructor(H,b){if(this.action=H,this.timestamp=b,this.type=vs,typeof H.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class So{constructor(){this.type="REFRESH"}}class Os{constructor(H){this.timestamp=H,this.type="RESET"}}class tl{constructor(H){this.timestamp=H,this.type=el}}class Rc{constructor(H){this.timestamp=H,this.type="COMMIT"}}class Il{constructor(){this.type="SWEEP"}}class il{constructor(H){this.id=H,this.type=Rs}}class Fs{constructor(H){this.index=H,this.type=pc}}class nt{constructor(H){this.actionId=H,this.type=Js}}class Rt{constructor(H){this.nextLiftedState=H,this.type=bs}}class kt{constructor(H){this.status=H,this.type=gc}}class Z{constructor(H){this.status=H,this.type=_c}}const De=new t.nKC("@ngrx/store-devtools Options"),We=new t.nKC("@ngrx/store-devtools Initial Config");function Dt(){return null}const ei="NgRx Store DevTools";function pi(O){const H={maxAge:!1,monitor:Dt,actionSanitizer:void 0,stateSanitizer:void 0,name:ei,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},b="function"==typeof O?O():O,G=b.features||!!b.logOnly&&{pause:!0,export:!0,test:!0}||H.features;!0===G.import&&(G.import="custom");const Oe=Object.assign({},H,{features:G},b);if(Oe.maxAge&&Oe.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${Oe.maxAge}`);return Oe}function Di(O,H){return O.filter(b=>H.indexOf(b)<0)}function an(O){const{computedStates:H,currentStateIndex:b}=O;if(b>=H.length){const{state:G}=H[H.length-1];return G}const{state:U}=H[b];return U}function yn(O){return new os(O,+Date.now())}function Dn(O,H){return Object.keys(H).reduce((b,U)=>{const G=Number(U);return b[G]=hr(O,H[G],G),b},{})}function hr(O,H,b){return{...H,action:O(H.action,b)}}function ir(O,H){return H.map((b,U)=>({state:br(O,b.state,U),error:b.error}))}function br(O,H,b){return O(H,b)}function gr(O){return O.predicate||O.actionsSafelist||O.actionsBlocklist}function sa(O,H,b,U,G){const Oe=b&&!b(O,H.action),It=U&&!H.action.type.match(U.map(oi=>Hn(oi)).join("|")),Lt=G&&H.action.type.match(G.map(oi=>Hn(oi)).join("|"));return Oe||It||Lt}function Hn(O){return O.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Bi(O){return{ngZone:O?(0,t.WQX)(t.SKi):null,connectInZone:O}}let sn=(()=>{class O extends Ri.SS{static#e=this.\u0275fac=(()=>{let b;return function(G){return(b||(b=t.xGo(O)))(G||O)}})();static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const $r=new t.nKC("@ngrx/store-devtools Redux Devtools Extension");let fa=(()=>{class O{constructor(b,U,G){this.config=U,this.dispatcher=G,this.zoneConfig=Bi(this.config.connectInZone),this.devtoolsExtension=b,this.createActionStreams()}notify(b,U){if(this.devtoolsExtension)if(b.type===vs){if(U.isLocked||U.isPaused)return;const G=an(U);if(gr(this.config)&&sa(G,b,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const Oe=this.config.stateSanitizer?br(this.config.stateSanitizer,G,U.currentStateIndex):G,It=this.config.actionSanitizer?hr(this.config.actionSanitizer,b,U.nextActionId):b;this.sendToReduxDevtools(()=>this.extensionConnection.send(It,Oe))}else{const G={...U,stagedActionIds:U.stagedActionIds,actionsById:this.config.actionSanitizer?Dn(this.config.actionSanitizer,U.actionsById):U.actionsById,computedStates:this.config.stateSanitizer?ir(this.config.stateSanitizer,U.computedStates):U.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,G,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new Ue.c(b=>{const U=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=U,U.init(),U.subscribe(G=>b.next(G)),U.unsubscribe}):ht.w}createActionStreams(){const b=this.createChangesObservable().pipe((0,Fo.u)()),U=b.pipe((0,vr.p)(ci=>"START"===ci.type)),G=b.pipe((0,vr.p)(ci=>"STOP"===ci.type)),Oe=b.pipe((0,vr.p)(ci=>"DISPATCH"===ci.type),(0,Xa.T)(ci=>this.unwrapAction(ci.payload)),(0,lc.H)(ci=>ci.type===bs?this.dispatcher.pipe((0,vr.p)(Ui=>Ui.type===Ri.q6),function ua(O,H){const{first:b,each:U,with:G=so,scheduler:Oe=H??dc.E,meta:It=null}=(0,hc.v)(O)?{first:O}:"number"==typeof O?{each:O}:O;if(null==b&&null==U)throw new TypeError("No timeout provided.");return(0,jo.N)((Lt,oi)=>{let ci,Ui,Ti=null,un=0;const bn=Yi=>{Ui=(0,Vn.N)(oi,Oe,()=>{try{ci.unsubscribe(),(0,Wo.Tg)(G({meta:It,lastValue:Ti,seen:un})).subscribe(oi)}catch(Ji){oi.error(Ji)}},Yi)};ci=Lt.subscribe((0,Is._)(oi,Yi=>{Ui?.unsubscribe(),un++,oi.next(Ti=Yi),U>0&&bn(U)},void 0,void 0,()=>{Ui?.closed||Ui?.unsubscribe(),Ti=null})),!un&&bn(null!=b?"number"==typeof b?b:+b-Oe.now():U)})}(1e3),(0,Ir.B)(1e3),(0,Xa.T)(()=>ci),(0,Aa.W)(()=>(0,At.of)(ci)),(0,$s.s)(1)):(0,At.of)(ci))),Lt=b.pipe((0,vr.p)(ci=>"ACTION"===ci.type),(0,Xa.T)(ci=>this.unwrapAction(ci.payload))).pipe((0,dn.Q)(G)),oi=Oe.pipe((0,dn.Q)(G));this.start$=U.pipe((0,dn.Q)(G)),this.actions$=this.start$.pipe((0,Es.n)(()=>Lt)),this.liftedActions$=this.start$.pipe((0,Es.n)(()=>oi))}unwrapAction(b){return"string"==typeof b?(0,eval)(`(${b})`):b}getExtensionConfig(b){const U={name:b.name,features:b.features,serialize:b.serialize,autoPause:b.autoPause??!1,trace:b.trace??!1,traceLimit:b.traceLimit??75};return!1!==b.maxAge&&(U.maxAge=b.maxAge),U}sendToReduxDevtools(b){try{b()}catch(U){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",U)}}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO($r),t.KVO(De),t.KVO(sn))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const Ya={type:Ri.Zz},Ur={type:"@ngrx/store-devtools/recompute"};function va(O,H,b,U,G){if(U)return{state:b,error:"Interrupted by an error up the chain"};let It,Oe=b;try{Oe=O(b,H)}catch(Lt){It=Lt.toString(),G.handleError(Lt)}return{state:Oe,error:It}}function cs(O,H,b,U,G,Oe,It,Lt,oi){if(H>=O.length&&O.length===Oe.length)return O;const ci=O.slice(0,H),Ui=Oe.length-(oi?1:0);for(let Ti=H;Ti-1?Yi:va(b,bn,Ji,An,Lt);ci.push(Vr)}return oi&&ci.push(O[O.length-1]),ci}let Rl=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi,ci){const Ui=function Wn(O,H){return{monitorState:H(void 0,{}),nextActionId:1,actionsById:{0:yn(Ya)},stagedActionIds:[0],skippedActionIds:[],committedState:O,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}(oi,ci.monitor),Ti=function bc(O,H,b,U,G={}){return Oe=>(It,Lt)=>{let{monitorState:oi,actionsById:ci,nextActionId:Ui,stagedActionIds:Ti,skippedActionIds:un,committedState:bn,currentStateIndex:Yi,computedStates:Ji,isLocked:An,isPaused:Un}=It||H;function Vr(ta){let Ar=ta,ma=Ti.slice(1,Ar+1);for(let ia=0;ia-1===ma.indexOf(ia)),Ti=[0,...Ti.slice(Ar+1)],bn=Ji[Ar].state,Ji=Ji.slice(Ar),Yi=Yi>Ar?Yi-Ar:0}function la(){ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],bn=Ji[Yi].state,Yi=0,Ji=[]}It||(ci=Object.create(ci));let cr=0;switch(Lt.type){case gc:An=Lt.status,cr=1/0;break;case _c:Un=Lt.status,Un?(Ti=[...Ti,Ui],ci[Ui]=new os({type:"@ngrx/devtools/pause"},+Date.now()),Ui++,cr=Ti.length-1,Ji=Ji.concat(Ji[Ji.length-1]),Yi===Ti.length-2&&Yi++,cr=1/0):la();break;case"RESET":ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],bn=O,Yi=0,Ji=[];break;case"COMMIT":la();break;case el:ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],Yi=0,Ji=[];break;case Rs:{const{id:ta}=Lt;un=-1===un.indexOf(ta)?[ta,...un]:un.filter(ma=>ma!==ta),cr=Ti.indexOf(ta);break}case"SET_ACTIONS_ACTIVE":{const{start:ta,end:Ar,active:ma}=Lt,ia=[];for(let rc=ta;rcG.maxAge&&(Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),Vr(Ti.length-G.maxAge),cr=1/0);break;case Ri.q6:if(Ji.filter(Ar=>Ar.error).length>0)cr=0,G.maxAge&&Ti.length>G.maxAge&&(Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),Vr(Ti.length-G.maxAge),cr=1/0);else{if(!Un&&!An){Yi===Ti.length-1&&Yi++;const Ar=Ui++;ci[Ar]=new os(Lt,+Date.now()),Ti=[...Ti,Ar],cr=Ti.length-1,Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un)}Ji=Ji.map(Ar=>({...Ar,state:Oe(Ar.state,Ur)})),Yi=Ti.length-1,G.maxAge&&Ti.length>G.maxAge&&Vr(Ti.length-G.maxAge),cr=1/0}break;default:cr=1/0}return Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),oi=U(oi,Lt),{monitorState:oi,actionsById:ci,nextActionId:Ui,stagedActionIds:Ti,skippedActionIds:un,committedState:bn,currentStateIndex:Yi,computedStates:Ji,isLocked:An,isPaused:Un}}}(oi,Ui,Lt,ci.monitor,ci),un=(0,ni.h)((0,ni.h)(U.asObservable().pipe((0,uc.i)(1)),Oe.actions$).pipe((0,Xa.T)(yn)),b,Oe.liftedActions$).pipe((0,Ss.Q)(pn.T)),bn=G.pipe((0,Xa.T)(Ti)),Yi=Bi(ci.connectInZone),Ji=new Zn.m(1);this.liftedStateSubscription=un.pipe((0,fc.E)(bn),yc(Yi),(0,_s.S)(({state:Vr},[la,cr])=>{let ta=cr(Vr,la);return la.type!==vs&&gr(ci)&&(ta=function Cr(O,H,b,U){const G=[],Oe={},It=[];return O.stagedActionIds.forEach((Lt,oi)=>{const ci=O.actionsById[Lt];ci&&(oi&&sa(O.computedStates[oi],ci,H,b,U)||(Oe[Lt]=ci,G.push(Lt),It.push(O.computedStates[oi])))}),{...O,stagedActionIds:G,actionsById:Oe,computedStates:It}}(ta,ci.predicate,ci.actionsSafelist,ci.actionsBlocklist)),Oe.notify(la,ta),{state:ta,action:la}},{state:Ui,action:null})).subscribe(({state:Vr,action:la})=>{Ji.next(Vr),la.type===vs&&It.next(la.action)}),this.extensionStartSubscription=Oe.start$.pipe(yc(Yi)).subscribe(()=>{this.refresh()});const An=Ji.asObservable(),Un=An.pipe((0,Xa.T)(an));Object.defineProperty(Un,"state",{value:(0,kl.ot)(Un,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=b,this.liftedState=An,this.state=Un}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}dispatch(b){this.dispatcher.next(b)}next(b){this.dispatcher.next(b)}error(b){}complete(){}performAction(b){this.dispatch(new os(b,+Date.now()))}refresh(){this.dispatch(new So)}reset(){this.dispatch(new Os(+Date.now()))}rollback(){this.dispatch(new tl(+Date.now()))}commit(){this.dispatch(new Rc(+Date.now()))}sweep(){this.dispatch(new Il)}toggleAction(b){this.dispatch(new il(b))}jumpToAction(b){this.dispatch(new nt(b))}jumpToState(b){this.dispatch(new Fs(b))}importState(b){this.dispatch(new Rt(b))}lockChanges(b){this.dispatch(new kt(b))}pauseRecording(b){this.dispatch(new Z(b))}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(sn),t.KVO(Ri.SS),t.KVO(Ri.QU),t.KVO(fa),t.KVO(Ri.sA),t.KVO(t.zcH),t.KVO(Ri.N_),t.KVO(De))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();function yc({ngZone:O,connectInZone:H}){return b=>H?new Ue.c(U=>b.subscribe({next:G=>O.run(()=>U.next(G)),error:G=>O.run(()=>U.error(G)),complete:()=>O.run(()=>U.complete())})):b}const Qr=new t.nKC("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function mo(O,H){return!!O||H.monitor!==Dt}function To(){const O="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[O]<"u"?window[O]:null}function qs(O={}){return(0,t.EmA)([fa,sn,Rl,{provide:We,useValue:O},{provide:Qr,deps:[$r,De],useFactory:mo},{provide:$r,useFactory:To},{provide:De,deps:[We],useFactory:pi},{provide:Ri.h1,deps:[Rl],useFactory:Oc},{provide:Ri.Bh,useExisting:sn}])}function Oc(O){return O.state}let Ns=(()=>{class O{static instrument(b={}){return{ngModule:O,providers:[qs(b)]}}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O});static#i=this.\u0275inj=t.G2t({})}return O})();var Gi=g(1413),Fc=g(3726),Ps=g(2806),kn=g(1807);function nl(O=0,H=dc.E){return O<0&&(O=0),(0,kn.O)(O,O,H)}var rl=g(8359),Xo=g(7908),Ol=g(9326),ea=g(8141),Fl=g(980),ka=g(3294);class ba{}function Ts(O){return(0,t.EmA)([{provide:ba,useValue:O}])}let Vs=(()=>{class O{constructor(b,U){this._ngZone=U,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,b&&this.setConfig(b)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,ni.h)((0,Fc.R)(window,"mousemove"),(0,Fc.R)(window,"resize"),(0,Fc.R)(document,"keydown"))),this.idle$=(0,Ps.H)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function Nc(O,...H){var b,U;const G=null!==(b=(0,Ol.lI)(H))&&void 0!==b?b:dc.E,Oe=null!==(U=H[0])&&void 0!==U?U:null,It=H[1]||1/0;return(0,jo.N)((Lt,oi)=>{let ci=[],Ui=!1;const Ti=Yi=>{const{buffer:Ji,subs:An}=Yi;An.unsubscribe(),(0,Xo.o)(ci,Yi),oi.next(Ji),Ui&&un()},un=()=>{if(ci){const Yi=new rl.yU;oi.add(Yi);const An={buffer:[],subs:Yi};ci.push(An),(0,Vn.N)(Yi,G,()=>Ti(An),O)}};null!==Oe&&Oe>=0?(0,Vn.N)(oi,G,un,Oe,!0):Ui=!0,un();const bn=(0,Is._)(oi,Yi=>{const Ji=ci.slice();for(const An of Ji){const{buffer:Un}=An;Un.push(Yi),It<=Un.length&&Ti(An)}},()=>{for(;ci?.length;)oi.next(ci.shift().buffer);bn?.unsubscribe(),oi.complete(),oi.unsubscribe()},void 0,()=>ci=null);Lt.subscribe(bn)})}(this.idleSensitivityMillisec),(0,vr.p)(b=>!b.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,ea.M)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,Es.n)(()=>this._ngZone.runOutsideAngular(()=>nl(1e3).pipe((0,dn.Q)((0,ni.h)(this.activityEvents$,(0,kn.O)(this.idleMillisec).pipe((0,ea.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,ka.F)(),(0,Es.n)(b=>b?this.timer$:(0,At.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,vr.p)(b=>!!b),(0,ea.M)(()=>this.isTimeout=!0),(0,Xa.T)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(b){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(b):console.error("Call stopWatching() before set config values")}setConfig(b){b.idle&&(this.idleMillisec=1e3*b.idle),b.ping&&(this.pingMillisec=1e3*b.ping),b.idleSensitivity&&(this.idleSensitivityMillisec=1e3*b.idleSensitivity),b.timeout&&(this.timeout=b.timeout)}setCustomActivityEvents(b){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=b:console.error("Call stopWatching() before set custom activity events")}setupTimer(b){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,At.of)(()=>new Date).pipe((0,Xa.T)(U=>U()),(0,Es.n)(U=>nl(1e3).pipe((0,Xa.T)(()=>Math.round(((new Date).valueOf()-U.valueOf())/1e3)),(0,ea.M)(G=>{G>=b&&this.timeout$.next(!0)}))))})}setupPing(b){this.ping$=nl(b).pipe((0,vr.p)(()=>!this.isTimeout))}}return O.\u0275fac=function(b){return new(b||O)(t.KVO(ba,8),t.KVO(t.SKi))},O.\u0275prov=t.jDH({token:O,factory:O.\u0275fac,providedIn:"root"}),O})();var En=g(1188),nn=g(5383),Gr=g(9647),ya=g(60),$i=g(2920),mr=g(5596),ca=g(6850);const Nl=()=>({initial:!1});function v0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[1].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[1].link),t.Y8G("active",b.activeLink===b.links[1].link)("state",t.lJ4(4,Nl)),t.R7$(),t.JRh(b.links[1].name)}}function Hu(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link),t.R7$(),t.JRh(b.links[2].name)}}let b0=(()=>{class O{constructor(b,U){this.store=b,this.router=U,this.faUserCog=nn.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 b=this.links.find(U=>this.router.url.includes(U.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{this.showBitcoind=!1,this.selNode=U,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-settings"]],decls:16,vars:7,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","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","tabindex","3","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","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","active","routerLink","state"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Settings"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.DNE(10,v0,2,5,"div",8)(11,Hu,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()}if(2&U){const Oe=t.sdS(13);t.R7$(),t.Y8G("icon",G.faUserCog),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.Y8G("ngIf",!+G.appConfig.SSO.rtlSSO),t.R7$(),t.Y8G("ngIf",G.showBitcoind)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();var Cn=g(1771),Yo=g(8570),Wi=g(9417),ve=g(8834),Pe=g(6467),xe=g(2798),Be=g(6600),ft=g(497),Ot=g(9587);function qt(O,H){if(1&O&&(t.j41(0,"mat-option",15),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.index),t.R7$(),t.Lme(" ",b.lnNode," (",b.lnImplementation,") ")}}function Mi(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",3,0)(2,"div",4),t.nrm(3,"fa-icon",5),t.j41(4,"span",6),t.EFF(5,"Default Node"),t.k0s()(),t.j41(6,"div",7)(7,"div",8)(8,"mat-form-field",9)(9,"mat-select",10),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.appConfig.defaultNodeIndex,G)||(Oe.appConfig.defaultNodeIndex=G),t.Njj(G)}),t.DNE(10,qt,2,3,"mat-option",11),t.k0s()()(),t.j41(11,"div",12)(12,"div",8)(13,"button",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onResetSettings())}),t.EFF(14,"Reset"),t.k0s(),t.j41(15,"button",14),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onUpdateApplicationSettings())}),t.EFF(16,"Update"),t.k0s()()()()()}if(2&O){const b=t.XpG();t.R7$(3),t.Y8G("icon",b.faWindowRestore),t.R7$(6),t.R50("ngModel",b.appConfig.defaultNodeIndex),t.R7$(),t.Y8G("ngForOf",b.appConfig.nodes)}}let vi=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faWindowRestore=nn.aFw,this.faPlus=nn.QLR,this.previousDefaultNode=0,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(b)})}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,Cn.rc)({payload:{showSnackBar:!0,message:"Default Node Updated.",config:this.appConfig}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-app-settings"]],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(U,G){1&U&&(t.j41(0,"div",1),t.DNE(1,Mi,17,3,"form",2),t.k0s()),2&U&&(t.R7$(),t.Y8G("ngIf",G.appConfig.nodes&&G.appConfig.nodes.length&&G.appConfig.nodes.length>0))},dependencies:[ri.Sq,ri.bT,Wi.qT,Wi.BC,Wi.cb,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Pe.rl,xe.VO,Be.wT,ft.Ld,Ot.N]})}return O})();var on=g(2852),Sn=g(5351),Jn=g(1264),_r=g(7541),ys=g(5416),Nr=g(9631),Ka=g(6013),ls=g(8288),xc=g(9157);const Pl=["stepper"];function Ko(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG();t.JRh(b.passwordFormLabel)}}function Ds(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function Hs(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.secretFormLabel)}}function Cc(O,H){if(1&O&&t.nrm(0,"qr-code",33),2&O){const b=t.XpG(2);t.Y8G("value",b.otpauth)("size",180)("errorCorrectionLevel","L")}}function As(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Secret Code is required."),t.k0s())}function Vl(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-step",10)(1,"form",22),t.DNE(2,Hs,1,1,"ng-template",23),t.j41(3,"div",24),t.DNE(4,Cc,1,3,"qr-code",25),t.k0s(),t.j41(5,"div",26),t.nrm(6,"fa-icon",27),t.j41(7,"span"),t.EFF(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),t.k0s()(),t.j41(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),t.EFF(12,"Secret Code"),t.k0s(),t.nrm(13,"input",29),t.j41(14,"fa-icon",30),t.bIt("copied",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onCopySecret(G))}),t.k0s(),t.DNE(15,As,2,0,"mat-error",15),t.k0s()(),t.j41(16,"div",31)(17,"button",32),t.EFF(18,"Next"),t.k0s()()()()}if(2&O){const b=t.XpG();t.Y8G("stepControl",b.secretFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.secretFormGroup),t.R7$(3),t.Y8G("ngIf",b.otpauth),t.R7$(2),t.Y8G("icon",b.faInfoCircle),t.R7$(8),t.Y8G("icon",b.faCopy)("payload",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret?null:b.secretFormGroup.controls.secret.value),t.R7$(),t.Y8G("ngIf",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret||null==b.secretFormGroup.controls.secret.errors?null:b.secretFormGroup.controls.secret.errors.required)}}function Hd(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.tokenFormLabel)}}function wr(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}function ld(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is invalid."),t.k0s())}function La(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",8)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),t.EFF(4,"Token"),t.k0s(),t.nrm(5,"input",37),t.DNE(6,wr,2,0,"mat-error",15)(7,ld,2,0,"mat-error",15),t.k0s()(),t.j41(8,"div",31)(9,"button",38),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(10),t.k0s()()()}if(2&O){const b=t.XpG(2);t.R7$(6),t.Y8G("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.required),t.R7$(),t.Y8G("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.notValid),t.R7$(3),t.JRh(null!=b.tokenFormGroup&&null!=b.tokenFormGroup.controls&&null!=b.tokenFormGroup.controls.token&&null!=b.tokenFormGroup.controls.token.errors&&b.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function po(O,H){1&O&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Success! You are all set."),t.k0s()())}function zu(O,H){if(1&O&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,Hd,1,1,"ng-template",12)(3,La,11,3,"div",36)(4,po,3,0,"div",15),t.k0s()()),2&O){const b=t.XpG();t.Y8G("stepControl",b.tokenFormGroup),t.R7$(),t.Y8G("formGroup",b.tokenFormGroup),t.R7$(2),t.Y8G("ngIf",!b.flgValidated||!b.isTokenValid),t.R7$(),t.Y8G("ngIf",b.flgValidated&&b.isTokenValid)}}function ec(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.disableFormLabel)}}function Hl(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",8)(1,"div",39),t.nrm(2,"fa-icon",27),t.j41(3,"span"),t.EFF(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),t.k0s()(),t.j41(5,"div",31)(6,"button",38),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(7,"Disable"),t.k0s()()()}if(2&O){const b=t.XpG(2);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle)}}function $o(O,H){1&O&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Two factor authentication removed from RTL."),t.k0s()())}function Y3(O,H){if(1&O&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,ec,1,1,"ng-template",12)(3,Hl,8,1,"div",36)(4,$o,3,0,"div",15),t.k0s()()),2&O){const b=t.XpG();t.Y8G("stepControl",b.disableFormGroup),t.R7$(),t.Y8G("formGroup",b.disableFormGroup),t.R7$(2),t.Y8G("ngIf",!b.flgValidated||!b.isTokenValid),t.R7$(),t.Y8G("ngIf",b.flgValidated&&b.isTokenValid)}}let zd=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.dialogRef=b,this.data=U,this.store=G,this.formBuilder=Oe,this.rtlEffects=It,this.snackBar=Lt,this.faExclamationTriangle=nn.zpE,this.faCopy=nn.jPR,this.faInfoCircle=nn.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:["",[Wi.k0.required]],password:["",[Wi.k0.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},Wi.k0.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",Wi.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},Wi.k0.required]})}generateSecret(){const b=Jn.authenticator.generateSecret();return this.otpauth=Jn.authenticator.keyuri("","Ride The Lightning (RTL)",b),b}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Cn.oz)({payload:on(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,$s.s)(1)).subscribe(b=>{"ERROR"!==b?(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(b){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,Cn.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=Jn.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,Cn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication enabled successfully.",config:this.appConfig}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0}stepSelectionChanged(b){switch(b.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}b.selectedIndex{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Sn.Vh),t.rXU(Ri.il),t.rXU(Wi.ze),t.rXU(_r.H),t.rXU(ys.UG))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-two-factor-auth"]],viewQuery:function(U,G){if(1&U&&t.GBs(Pl,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},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"],[3,"value","size","errorCorrectionLevel",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",""],[3,"value","size","errorCorrectionLevel"],[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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Setup Two Factor Authentication"),t.k0s()(),t.j41(6,"button",6),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(Lt){return t.eBV(Oe),t.Njj(G.stepSelectionChanged(Lt))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,Ko,1,1,"ng-template",12),t.j41(15,"div",1)(16,"mat-form-field",13)(17,"mat-label"),t.EFF(18,"Password"),t.k0s(),t.nrm(19,"input",14),t.DNE(20,Ds,2,0,"mat-error",15),t.k0s()(),t.j41(21,"div",16)(22,"button",17),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onAuthenticate())}),t.EFF(23,"Confirm"),t.k0s()()()(),t.DNE(24,Vl,19,8,"mat-step",18)(25,zu,5,4,"mat-step",19)(26,Y3,5,4,"mat-step",19),t.k0s(),t.j41(27,"div",20)(28,"button",21),t.EFF(29),t.k0s()()()()()()}2&U&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(4),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",G.passwordFormGroup)("editable",G.flgEditable),t.R7$(),t.Y8G("formGroup",G.passwordFormGroup),t.R7$(7),t.Y8G("ngIf",null==G.passwordFormGroup||null==G.passwordFormGroup.controls||null==G.passwordFormGroup.controls.password||null==G.passwordFormGroup.controls.password.errors?null:G.passwordFormGroup.controls.password.errors.required),t.R7$(4),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",G.showDisableStepper),t.R7$(2),t.Y8G("mat-dialog-close",!1),t.R7$(),t.JRh(G.flgValidated&&G.isTokenValid?"Close":"Cancel"))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.j4,Wi.JD,ya.aY,$i.DJ,$i.sA,$i.UI,Sn.tx,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pe.yw,Ka.V5,Ka.Ti,Ka.M6,Ka.F7,ls.Um,xc.U,Ot.N]})}return O})();var Wt=g(4416),qa=g(3202),Pc=g(1997);const y0=["authForm"];function Bu(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Current password is required."),t.k0s())}function al(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.errorMsg)}}function x0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.errorConfirmMsg)}}function Z1(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",12,0)(2,"div",13),t.nrm(3,"fa-icon",6),t.j41(4,"span",7),t.EFF(5,"Password"),t.k0s()(),t.j41(6,"mat-form-field")(7,"mat-label"),t.EFF(8,"Current Password"),t.k0s(),t.j41(9,"input",14),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.currPassword,G)||(Oe.currPassword=G),t.Njj(G)}),t.k0s(),t.DNE(10,Bu,2,0,"mat-error",15),t.k0s(),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"New Password"),t.k0s(),t.j41(14,"input",16),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.newPassword,G)||(Oe.newPassword=G),t.Njj(G)}),t.k0s(),t.DNE(15,al,2,1,"mat-error",15),t.k0s(),t.j41(16,"mat-form-field")(17,"mat-label"),t.EFF(18,"Confirm New Password"),t.k0s(),t.j41(19,"input",17),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.confirmPassword,G)||(Oe.confirmPassword=G),t.Njj(G)}),t.k0s(),t.DNE(20,x0,2,1,"mat-error",15),t.k0s(),t.j41(21,"div",18)(22,"button",19),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onResetPassword())}),t.EFF(23,"Reset"),t.k0s(),t.j41(24,"button",20),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onChangePassword())}),t.EFF(25,"Change Password"),t.k0s()()()}if(2&O){const b=t.XpG();t.R7$(3),t.Y8G("icon",b.faLock),t.R7$(6),t.R50("ngModel",b.currPassword),t.R7$(),t.Y8G("ngIf",!b.currPassword),t.R7$(4),t.R50("ngModel",b.newPassword),t.R7$(),t.Y8G("ngIf",b.matchOldAndNewPasswords()),t.R7$(4),t.R50("ngModel",b.confirmPassword),t.R7$(),t.Y8G("ngIf",b.matchNewPasswords())}}let Bd=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.store=U,this.actions=G,this.router=Oe,this.sessionService=It,this.faInfoCircle=nn.iW_,this.faUserLock=nn.aAJ,this.faUserClock=nn.ld_,this.faLock=nn.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(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.logger.info(this.appConfig)}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(b=>b.type===Wt.aU.RESET_PASSWORD_RES)).subscribe(b=>{if(Wt.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||Wt.Ah.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Cn.xw)({payload:{currPassword:on(this.currPassword).toString(),newPassword:on(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let b=!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.",b=!0):Wt.Ah.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=Wt.Ah?.reduce((U,G,Oe)=>Oe{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(En.Ix),t.rXU(qa.Q))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-auth-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(y0,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},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(U,G){1&U&&(t.j41(0,"div",1),t.DNE(1,Z1,26,7,"form",2),t.nrm(2,"mat-divider",3),t.j41(3,"div",4)(4,"div",5),t.nrm(5,"fa-icon",6),t.j41(6,"span",7),t.EFF(7,"Two Factor Authentication"),t.k0s()(),t.j41(8,"div",8),t.nrm(9,"fa-icon",9),t.j41(10,"span"),t.EFF(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),t.k0s()(),t.j41(12,"div",10)(13,"button",11),t.bIt("click",function(){return G.on2FAuth()}),t.EFF(14),t.k0s()()()()),2&U&&(t.R7$(),t.Y8G("ngIf",null==G.appConfig?null:G.appConfig.allowPasswordUpdate),t.R7$(4),t.Y8G("icon",G.faUserClock),t.R7$(4),t.Y8G("icon",G.faInfoCircle),t.R7$(5),t.JRh(G.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pc.q,Ot.N]})}return O})();var wc=g(3902);function ol(O,H){1&O&&t.nrm(0,"mat-divider",7)}function Nn(O,H){if(1&O&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,ol,1,0,"mat-divider",6),t.k0s()),2&O){const b=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,b.configData)),t.R7$(2),t.Y8G("ngIf",""!==b.configData)}}function zl(O,H){if(1&O&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function J1(O,H){if(1&O&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function C0(O,H){1&O&&t.nrm(0,"mat-divider",15),2&O&&t.Y8G("inset",!0)}function K3(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,zl,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,J1,2,1,"h4",12),t.k0s(),t.DNE(5,C0,1,1,"mat-divider",13),t.k0s()),2&O){const b=H.$implicit;t.R7$(2),t.Y8G("ngIf",b.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",b.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",b.indexOf("[")<0)}}function Ud(O,H){if(1&O&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,K3,6,3,"mat-list-item",9),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.Y8G("ngForOf",b.configData)}}let Uu=(()=>{class O{constructor(b,U,G){this.store=b,this.rtlEffects=U,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=nn.dB,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.Dz)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{const U=b.data;this.fileFormat=b.format,this.configData=""===U||!U||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==U&&U&&"JSON"===this.fileFormat?U:"":U.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(_r.H),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-bitcoin-config"]],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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,Nn,5,4,"div",2)(3,Ud,3,1,"div",3),t.k0s()()),2&U&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[ri.Sq,ri.bT,$i.DJ,$i.sA,$i.UI,mr.Lc,wc.jt,wc.YE,Pc.q,ri.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();function Gu(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}let ju=(()=>{class O{constructor(b,U,G){this.dialogRef=b,this.store=U,this.rtlEffects=G,this.password="",this.isAuthenticated=!1,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,$s.s)(1)).subscribe(b=>{"ERROR"!==b?(this.isAuthenticated=!0,this.store.dispatch((0,Cn.R$)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Cn.oz)({payload:on(this.password)}))}onClose(){this.store.dispatch((0,Cn.R$)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Ri.il),t.rXU(_r.H))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-is-authorized"]],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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t.EFF(5,"Authenticate with your RTL Password"),t.k0s()(),t.j41(6,"button",5),t.bIt("click",function(){return G.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),t.EFF(12,"Password"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(It){return t.DH7(G.password,It)||(G.password=It),It}),t.k0s(),t.DNE(14,Gu,2,0,"mat-error",9),t.k0s(),t.j41(15,"div",10)(16,"button",11),t.bIt("click",function(){return G.onAuthenticate()}),t.EFF(17,"Confirm"),t.k0s()()()()()()),2&U&&(t.R7$(13),t.R50("ngModel",G.password),t.R7$(),t.Y8G("ngIf",!G.password))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Ot.N]})}return O})();const sl=()=>({initial:!1});function $3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link)("state",t.lJ4(4,sl)),t.R7$(),t.JRh(b.links[2].name)}}function Q3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",14),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[3].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[3].link),t.Y8G("active",b.activeLink===b.links[3].link),t.R7$(),t.JRh(b.links[3].name)}}function Wu(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",15),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.showLnConfigClicked())}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.Y8G("active",b.activeLink===b.links[4].link),t.R7$(),t.JRh(b.links[4].name)}}let Z3=(()=>{class O{constructor(b,U,G,Oe){this.store=b,this.router=U,this.rtlEffects=G,this.activatedRoute=Oe,this.faTools=nn.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 b=this.links.find(U=>this.router.url.includes(U.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{switch(this.showLnConfig=!1,this.selNode=U,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,Cn.xO)({payload:{maxWidth:"50rem",data:{component:ju}}})),this.rtlEffects.closeAlert.pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{b&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix),t.rXU(_r.H),t.rXU(En.nX))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-node-config"]],decls:19,vars:11,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","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","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","active","routerLink","state"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Node Config"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.j41(10,"div",8),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[1].link)}),t.EFF(11),t.k0s(),t.DNE(12,$3,2,5,"div",9)(13,Q3,2,3,"div",10)(14,Wu,2,2,"div",11),t.k0s(),t.nrm(15,"mat-tab-nav-panel",null,0),t.j41(17,"div",12),t.nrm(18,"router-outlet"),t.k0s()()()()}if(2&U){const Oe=t.sdS(16);t.R7$(),t.Y8G("icon",G.faTools),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.FS9("routerLink",G.links[1].link),t.Y8G("active",G.activeLink===G.links[1].link),t.R7$(),t.JRh(G.links[1].name),t.R7$(),t.Y8G("ngIf","ECL"!==(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf","CLN"===(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf",G.showLnConfig)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();function J3(O,H){1&O&&t.nrm(0,"mat-divider",7)}function Ii(O,H){if(1&O&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,J3,1,0,"mat-divider",6),t.k0s()),2&O){const b=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,b.configData)),t.R7$(2),t.Y8G("ngIf",""!==b.configData)}}function ur(O,H){if(1&O&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function w0(O,H){if(1&O&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function q1(O,H){1&O&&t.nrm(0,"mat-divider",15),2&O&&t.Y8G("inset",!0)}function jr(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,ur,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,w0,2,1,"h4",12),t.k0s(),t.DNE(5,q1,1,1,"mat-divider",13),t.k0s()),2&O){const b=H.$implicit;t.R7$(2),t.Y8G("ngIf",b.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",b.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",b.indexOf("[")<0)}}function M0(O,H){if(1&O&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,jr,6,3,"mat-list-item",9),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.Y8G("ngForOf",b.configData)}}let Bl=(()=>{class O{constructor(b,U,G){this.store=b,this.rtlEffects=U,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=nn.dB,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.Dz)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{const U=b.data;this.fileFormat=b.format,this.configData=""===U||!U||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==U&&U&&"JSON"===this.fileFormat?U:"":U.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(_r.H),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-lnp-config"]],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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,Ii,5,4,"div",2)(3,M0,3,1,"div",3),t.k0s()()),2&U&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[ri.Sq,ri.bT,$i.DJ,$i.sA,$i.UI,mr.Lc,wc.jt,wc.YE,Pc.q,ri.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();var Ia=g(2571),ds=g(6038),Ra=g(9454),Gd=g(5951),e2=g(450);const Sp=O=>({skin:!0,"selected-color":O});function Xu(O,H){if(1&O&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("icon",b.symbol)}}function Yu(O,H){if(1&O&&(t.j41(0,"span",41),t.nrm(1,"span",43),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("innerHTML",b.symbol,t.npT)}}function jd(O,H){if(1&O&&(t.j41(0,"mat-option",39),t.DNE(1,Xu,2,1,"span",40)(2,Yu,2,1,"span",40),t.EFF(3),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.id),t.R7$(),t.Y8G("ngIf",b&&"FA"===b.iconType),t.R7$(),t.Y8G("ngIf",b&&"SVG"===b.iconType),t.R7$(),t.Lme(" ",b.name," (",b.id,") ")}}function hs(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Currency unit is required."),t.k0s())}function tc(O,H){if(1&O&&(t.j41(0,"mat-radio-button",44),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b)("checked",U.selNode.settings.userPersona===b),t.R7$(),t.SpI(" ",t.bMT(2,3,b)," ")}}function Ku(O,H){if(1&O&&(t.j41(0,"mat-radio-button",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI("",b.name," ")}}function us(O,H){if(1&O){const b=t.RV6();t.j41(0,"span",46)(1,"div",47),t.nI1(2,"lowercase"),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.changeThemeColor(G.id))}),t.k0s(),t.EFF(3),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.HbH(t.bMT(2,4,b.id)),t.Y8G("ngClass",t.eq3(6,Sp,U.selectedThemeColor===b.id)),t.R7$(2),t.SpI(" ",b.name," ")}}let Mc=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.commonService=U,this.store=G,this.sanitizer=Oe,this.faBarsStaggered=nn.o97,this.faExclamationTriangle=nn.zpE,this.faMoneyBillAlt=nn.iy8,this.faPaintBrush=nn._eQ,this.faInfoCircle=nn.iW_,this.faEyeSlash=nn.k6j,this.userPersonas=[Wt.HW.OPERATOR,Wt.HW.MERCHANT],this.currencyUnits=Wt.Zi,this.themeModes=Wt.Bv.modes,this.themeColors=Wt.Bv.themes,this.selectedThemeMode=Wt.Bv.modes[0],this.selectedThemeColor=Wt.Bv.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.currencyUnits.map(b=>("SVG"===b.iconType&&"string"==typeof b.symbol&&(b.symbol=b.symbol.replace('{this.selNode=JSON.parse(JSON.stringify(b)),this.selectedThemeMode=this.themeModes.find(U=>this.selNode.settings.themeMode===U.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(b)})}toggleSettings(b,U){this.selNode.settings[b]=!this.selNode.settings[b]}changeThemeColor(b){this.selectedThemeColor=b,this.selNode.settings.themeColor=b}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onFiatConversionChange(b){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,Cn.T$)({payload:this.selNode}))}onResetSettings(){const b=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(U=>U.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Cn.Qi)({payload:{uiMessage:Wt.MZ.NO_SPINNER,prevLnNodeIndex:+b,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(e.up))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-node-settings"]],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(U,G){if(1&U){const Oe=t.RV6();t.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"),t.nrm(7,"fa-icon",6),t.j41(8,"span",7),t.EFF(9,"Block Explorer"),t.k0s()()(),t.j41(10,"div",8)(11,"div",9),t.nrm(12,"fa-icon",10),t.j41(13,"span"),t.EFF(14,"Configure your own blockchain explorer url or "),t.j41(15,"strong")(16,"a",11),t.EFF(17,"mempool.space"),t.k0s()(),t.EFF(18," will be used."),t.k0s()(),t.j41(19,"div",12)(20,"mat-form-field",13)(21,"mat-label"),t.EFF(22,"Block Explorer URL"),t.k0s(),t.j41(23,"input",14),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.blockExplorerUrl,Lt)||(G.selNode.settings.blockExplorerUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(24,"mat-hint"),t.EFF(25,"Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info"),t.k0s()()()()(),t.j41(26,"mat-expansion-panel",5)(27,"mat-expansion-panel-header")(28,"mat-panel-title"),t.nrm(29,"fa-icon",6),t.j41(30,"span",7),t.EFF(31,"Open Unannounced Channels"),t.k0s()()(),t.j41(32,"div",8)(33,"div",15),t.nrm(34,"fa-icon",10),t.j41(35,"span"),t.EFF(36,"Use this control to toggle setting which defaults to opening unannounced channels only."),t.k0s()(),t.j41(37,"div",12)(38,"mat-slide-toggle",16),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.unannouncedChannels,Lt)||(G.selNode.settings.unannouncedChannels=Lt),t.Njj(Lt)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(!G.selNode.settings.unannouncedChannels)}),t.EFF(39,"Open Unannounced Channels"),t.k0s()()()(),t.j41(40,"mat-expansion-panel",5)(41,"mat-expansion-panel-header")(42,"mat-panel-title"),t.nrm(43,"fa-icon",6),t.j41(44,"span",7),t.EFF(45,"Balance Display"),t.k0s()()(),t.j41(46,"div",8)(47,"div",9),t.nrm(48,"fa-icon",10),t.j41(49,"span"),t.EFF(50,"Fiat conversion calls "),t.j41(51,"strong")(52,"a",17),t.EFF(53,"Blockchain.com"),t.k0s()(),t.EFF(54," API to get conversion rates."),t.k0s()(),t.j41(55,"div",12)(56,"mat-slide-toggle",18),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.fiatConversion,Lt)||(G.selNode.settings.fiatConversion=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onFiatConversionChange(Lt))}),t.EFF(57,"Enable Fiat Conversion"),t.k0s(),t.j41(58,"mat-form-field",19)(59,"mat-label"),t.EFF(60,"Fiat Currency"),t.k0s(),t.j41(61,"mat-select",20,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.currencyUnit,Lt)||(G.selNode.settings.currencyUnit=Lt),t.Njj(Lt)}),t.DNE(63,jd,4,5,"mat-option",21),t.k0s(),t.DNE(64,hs,2,0,"mat-error",22),t.k0s()()()(),t.j41(65,"mat-expansion-panel",5)(66,"mat-expansion-panel-header")(67,"mat-panel-title"),t.nrm(68,"fa-icon",6),t.j41(69,"span",7),t.EFF(70,"Customization"),t.k0s()()(),t.j41(71,"div",8)(72,"div",23),t.nrm(73,"fa-icon",10),t.j41(74,"span"),t.EFF(75,"Dashboard layout will be tailored based on the role selected to better serve its needs."),t.k0s()(),t.j41(76,"div",24)(77,"h4"),t.EFF(78,"Dashboard Layout"),t.k0s(),t.j41(79,"mat-radio-group",25),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.userPersona,Lt)||(G.selNode.settings.userPersona=Lt),t.Njj(Lt)}),t.DNE(80,tc,3,5,"mat-radio-button",26),t.k0s()(),t.nrm(81,"mat-divider",27),t.j41(82,"div",28)(83,"h4"),t.EFF(84,"Mode"),t.k0s(),t.j41(85,"mat-radio-group",29),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selectedThemeMode,Lt)||(G.selectedThemeMode=Lt),t.Njj(Lt)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(G.chooseThemeMode())}),t.DNE(86,Ku,2,2,"mat-radio-button",30),t.k0s()(),t.nrm(87,"mat-divider",27),t.j41(88,"div",31)(89,"div",32)(90,"h4"),t.EFF(91,"Themes"),t.k0s(),t.j41(92,"div",33),t.DNE(93,us,4,8,"span",34),t.k0s()()()()()()(),t.j41(94,"div",35)(95,"div",36)(96,"button",37),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetSettings())}),t.EFF(97,"Reset"),t.k0s(),t.j41(98,"button",38),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateNodeSettings())}),t.EFF(99,"Update"),t.k0s()()()()}2&U&&(t.R7$(7),t.Y8G("icon",G.faBarsStaggered),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(11),t.R50("ngModel",G.selNode.settings.blockExplorerUrl),t.R7$(6),t.Y8G("icon",G.faEyeSlash),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(4),t.R50("ngModel",G.selNode.settings.unannouncedChannels),t.R7$(5),t.Y8G("icon",G.faMoneyBillAlt),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(8),t.R50("ngModel",G.selNode.settings.fiatConversion),t.R7$(5),t.Y8G("disabled",!G.selNode.settings.fiatConversion)("required",G.selNode.settings.fiatConversion),t.R50("ngModel",G.selNode.settings.currencyUnit),t.R7$(2),t.Y8G("ngForOf",G.currencyUnits),t.R7$(),t.Y8G("ngIf",G.selNode.settings.fiatConversion&&!G.selNode.settings.currencyUnit),t.R7$(4),t.Y8G("icon",G.faPaintBrush),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.R50("ngModel",G.selNode.settings.userPersona),t.R7$(),t.Y8G("ngForOf",G.userPersonas),t.R7$(5),t.R50("ngModel",G.selectedThemeMode),t.R7$(),t.Y8G("ngForOf",G.themeModes),t.R7$(7),t.Y8G("ngForOf",G.themeColors))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pc.q,Gd.VT,Gd._g,xe.VO,Be.wT,e2.sG,ft.Ld,Ot.N,ri.GH,ri.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 O})();var dd=g(9584),t2=g(3536),xa=g(8430),Pa=g(190),n2=g(2730),Ca=g(5428),Vc=g(9213),ic=g(4823),Ul=g(2929);const zs=O=>({error:O}),E0=O=>({"error-border":O}),Wd=O=>({"ml-minus-1":O}),$u=O=>({"error-border p-2":O});function Gl(O,H){if(1&O&&t.eu8(0,14),2&O){const b=t.XpG(),U=t.sdS(18);t.Y8G("ngTemplateOutlet",U)("ngTemplateOutletContext",t.eq3(2,zs,b.errorMessage))}}function Xd(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ",b," ")}}function S0(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG(3);t.Y8G("value",b),t.R7$(),t.SpI(" ","ECL"===U.selNode.lnImplementation?t.bMT(2,2,b):t.i5U(3,4,b,"_")," ")}}function Qu(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ","desc"===b?"Descending":"Ascending"," ")}}function Va(O,H){if(1&O&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG(2).$implicit,G=t.XpG(2);t.Y8G("value",b.column)("disabled",U.columnSelection.length<=2&&U.columnSelection.includes(b.column)),t.R7$(),t.SpI(" ",b.label?b.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,b.column):t.i5U(3,5,b.column,"_")," ")}}function Hc(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-form-field",32)(1,"mat-label"),t.EFF(2,"Column selection (Desktop Resolution)"),t.k0s(),t.j41(3,"mat-select",33),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG().$implicit;return t.DH7(Oe.columnSelection,G)||(Oe.columnSelection=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(b);const G=t.XpG().$implicit,Oe=t.XpG(2);return t.Njj(Oe.oncolumnSelectionChange(G))}),t.DNE(4,Va,4,8,"mat-option",28),t.k0s()()}if(2&O){const b=t.XpG().$implicit,U=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.FCK("name","",U.pageId,"",b.tableId,"-columns-selection"),t.R50("ngModel",b.columnSelection),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[U.pageId][b.tableId].allowedColumns)}}function Pr(O,H){if(1&O&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG().$implicit,G=t.XpG(2);t.Y8G("value",b.column)("disabled",U.columnSelectionSM.length<=1&&U.columnSelectionSM.includes(b.column)||U.columnSelectionSM.length>=3&&!U.columnSelectionSM.includes(b.column)),t.R7$(),t.SpI(" ",b.label?b.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,b.column):t.i5U(3,5,b.column,"_")," ")}}function T0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s(),t.j41(5,"mat-form-field",20)(6,"mat-label"),t.EFF(7,"Records/Page"),t.k0s(),t.j41(8,"mat-select",21),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.recordsPerPage,G)||(Oe.recordsPerPage=G),t.Njj(G)}),t.DNE(9,Xd,2,2,"mat-option",22),t.k0s()(),t.j41(10,"mat-form-field",20)(11,"mat-label"),t.EFF(12,"Sort By"),t.k0s(),t.j41(13,"mat-select",23),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.sortBy,G)||(Oe.sortBy=G),t.Njj(G)}),t.DNE(14,S0,4,7,"mat-option",22),t.k0s()(),t.j41(15,"mat-form-field",20)(16,"mat-label"),t.EFF(17,"Sort Order"),t.k0s(),t.j41(18,"mat-select",24),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.sortOrder,G)||(Oe.sortOrder=G),t.Njj(G)}),t.DNE(19,Qu,2,2,"mat-option",22),t.k0s()(),t.DNE(20,Hc,5,5,"mat-form-field",25),t.j41(21,"mat-form-field",26)(22,"mat-label"),t.EFF(23,"Column Selection (Mobile Resolution)"),t.k0s(),t.j41(24,"mat-select",27),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.columnSelectionSM,G)||(Oe.columnSelectionSM=G),t.Njj(G)}),t.DNE(25,Pr,4,8,"mat-option",28),t.k0s()(),t.j41(26,"button",29),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG().$implicit,It=t.XpG();return t.Njj(It.onTableReset(Oe.pageId,G))}),t.j41(27,"mat-icon",30),t.EFF(28,"restore"),t.k0s()()()()}if(2&O){const b=H.$implicit,U=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.SpI("",t.i5U(4,24,b.tableId,"_"),":"),t.R7$(5),t.FCK("name","",U.pageId,"",b.tableId,"-page-size-options"),t.Y8G("disabled",G.nodePageDefs[U.pageId][b.tableId].disablePageSize),t.R50("ngModel",b.recordsPerPage),t.R7$(),t.Y8G("ngForOf",G.pageSizeOptions),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-sort-by"),t.R50("ngModel",b.sortBy),t.R7$(),t.Y8G("ngForOf",b.columnSelection),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-sort-order"),t.R50("ngModel",b.sortOrder),t.R7$(),t.Y8G("ngForOf",G.sortOrders),t.R7$(),t.Y8G("ngIf",G.screenSize!==G.screenSizeEnum.XS),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-columns-selection-sm"),t.R50("ngModel",b.columnSelectionSM),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[U.pageId][b.tableId].allowedColumns),t.R7$(2),t.Y8G("ngClass",t.eq3(27,Wd,G.screenSize===G.screenSizeEnum.XS||G.screenSize===G.screenSizeEnum.SM))}}function D0(O,H){if(1&O&&t.eu8(0,14),2&O){const b=t.XpG(2),U=t.sdS(18);t.Y8G("ngTemplateOutlet",U)("ngTemplateOutletContext",t.eq3(2,zs,b.errorMessage))}}function cl(O,H){if(1&O&&(t.j41(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s()(),t.DNE(5,T0,29,29,"div",16)(6,D0,1,4,"ng-container",7),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("ngClass",t.eq3(7,E0,(null==U.errorMessage?null:U.errorMessage.page)===b.pageId)),t.R7$(3),t.JRh(t.i5U(4,4,b.pageId,"_")),t.R7$(2),t.Y8G("ngForOf",b.tables),t.R7$(),t.Y8G("ngIf",U.errorMessage&&(null==U.errorMessage?null:U.errorMessage.page)===b.pageId)}}function A0(O,H){if(1&O&&(t.j41(0,"mat-panel-title"),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=t.XpG().error;t.R7$(),t.SpI("Page ",t.bMT(2,1,b.page),"")}}function k0(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.k0s()()),2&O){const b=t.XpG().error;t.R7$(4),t.JRh(b.message)}}function Zu(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(4),t.Lme("Table ",t.bMT(5,2,b.table)," ",b.message,"")}}function Yd(O,H){if(1&O&&(t.j41(0,"div",35),t.DNE(1,A0,3,3,"mat-panel-title",36),t.j41(2,"mat-list",37),t.DNE(3,k0,5,1,"mat-list-item",36)(4,Zu,6,4,"mat-list-item",38),t.k0s()()),2&O){const b=H.error,U=t.XpG();t.Y8G("ngClass",t.eq3(4,$u,"unknown"===U.errorMessage.page)),t.R7$(),t.Y8G("ngIf","unknown"===U.errorMessage.page),t.R7$(2),t.Y8G("ngIf",b.message),t.R7$(),t.Y8G("ngForOf",b.tables)}}let Ec=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.commonService=U,this.store=G,this.actions=Oe,this.faPenRuler=nn.$$g,this.faExclamationTriangle=nn.zpE,this.screenSize="",this.screenSizeEnum=Wt.f7,this.pageSizeOptions=Wt.xp,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=Wt.jG,this.apiCallStatus=null,this.apiCallStatusEnum=Wt.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(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{switch(this.selNode=b,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],Wt.mu),this.defaultSettings=Object.assign([],Wt.mu),this.nodePageDefs=Wt.Jd,this.store.select(dd.av).pipe((0,dn.Q)(this.unSubs[1]),(0,fc.E)(this.store.select(Gr._c))).subscribe(([U,G])=>{const Oe=JSON.parse(JSON.stringify(U.pageSettings));if(this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.enableOffers){const It=Oe.find(ci=>"transactions"===ci.pageId),Lt=It?.tables.findIndex(ci=>"offers"===ci.tableId),oi=It?.tables.findIndex(ci=>"offer_bookmarks"===ci.tableId);Lt>-1&&It?.tables.splice(Lt,1),oi>-1&&It?.tables.splice(oi,1)}if(!G?.settings.enablePeerswap){const It=Oe.findIndex(Lt=>"peerswap"===Lt.pageId);It>-1&&Oe.splice(It,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN||U.type===Wt.TC.SAVE_PAGE_SETTINGS_CLN)).subscribe(U=>{U.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],Wt.X8),this.defaultSettings=Object.assign([],Wt.X8),this.nodePageDefs=Wt.WW,this.store.select(n2.jZ).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{const G=JSON.parse(JSON.stringify(U.pageSettings));this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=G,this.initialPageSettings=G):(this.pageSettings=G,this.initialPageSettings=G),this.logger.info(G)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL||U.type===Wt.Uu.SAVE_PAGE_SETTINGS_ECL)).subscribe(U=>{U.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))});break;default:this.initialPageSettings=Object.assign([],Wt.ZC),this.defaultSettings=Object.assign([],Wt.ZC),this.nodePageDefs=Wt._1,this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[1]),(0,fc.E)(this.store.select(Gr._c))).subscribe(([U,G])=>{const Oe=JSON.parse(JSON.stringify(U.pageSettings));if(this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.swapServerUrl||""===G.settings.swapServerUrl.trim()){const It=Oe.findIndex(Lt=>"loop"===Lt.pageId);It>-1&&Oe.splice(It,1)}if(!G?.settings.boltzServerUrl||""===G.settings.boltzServerUrl.trim()){const It=Oe.findIndex(Lt=>"boltz"===Lt.pageId);It>-1&&Oe.splice(It,1)}if(!G?.settings.enablePeerswap){const It=Oe.findIndex(Lt=>"peerswap"===Lt.pageId);It>-1&&Oe.splice(It,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.QP.UPDATE_API_CALL_STATUS_LND||U.type===Wt.QP.SAVE_PAGE_SETTINGS_LND)).subscribe(U=>{U.type===Wt.QP.UPDATE_API_CALL_STATUS_LND&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))})}})}oncolumnSelectionChange(b){b.columnSelection&&(!b.sortBy||!b.columnSelection.includes(b.sortBy))&&(b.sortBy=b.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((b,U)=>b||U.tables.reduce((G,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,xa.Sn)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,Ca.Sn)({payload:this.pageSettings}));break;default:this.store.dispatch((0,Pa.Sn)({payload:this.pageSettings}))}}onTableReset(b,U){const G=this.pageSettings.findIndex(Lt=>Lt.pageId===b),Oe=this.pageSettings[G].tables.findIndex(Lt=>Lt.tableId===U.tableId),It=this.defaultSettings.find(Lt=>Lt.pageId===b)?.tables.find(Lt=>Lt.tableId===U.tableId)||this.pageSettings.find(Lt=>Lt.pageId===b)?.tables.find(Lt=>Lt.tableId===U.tableId);this.pageSettings[G].tables.splice(Oe,1,It)}onResetPageSettings(b){"current"===b?(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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(lt.En))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-page-settings"]],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","disabled","name","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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Grid Settings"),t.k0s()(),t.DNE(7,Gl,1,4,"ng-container",7),t.j41(8,"mat-accordion",8),t.DNE(9,cl,7,9,"mat-expansion-panel",9),t.k0s()(),t.j41(10,"div",10)(11,"button",11),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("current"))}),t.EFF(12,"Reset"),t.k0s(),t.j41(13,"button",12),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("default"))}),t.EFF(14,"Reset to Default"),t.k0s(),t.j41(15,"button",13),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdatePageSettings())}),t.EFF(16,"Save"),t.k0s()()(),t.DNE(17,Yd,5,6,"ng-template",null,1,t.C5r)}2&U&&(t.R7$(4),t.Y8G("icon",G.faPenRuler),t.R7$(3),t.Y8G("ngIf",G.errorMessage&&"unknown"===G.errorMessage.page),t.R7$(2),t.Y8G("ngForOf",G.pageSettings))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.T3,Wi.qT,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,ve.iY,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Vc.An,Pe.rl,Pe.nJ,wc.jt,wc.YE,xe.VO,Be.wT,ic.oV,ft.Ld,ri.PV,Ul.VD,Ul.Qu],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]})}return O})();function q3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[0].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[0].link),t.Y8G("active",b.activeLink===b.links[0].link),t.R7$(),t.JRh(b.links[0].name)}}function r2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[1].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[1].link),t.Y8G("active",b.activeLink===b.links[1].link),t.R7$(),t.JRh(b.links[1].name)}}function a2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[2].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link),t.R7$(),t.JRh(b.links[2].name)}}let o2=(()=>{class O{constructor(b,U,G){this.store=b,this.router=U,this.activatedRoute=G,this.faLayerGroup=nn.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(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b,this.setActiveLink(),this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})})}setActiveLink(b){if(b&&""!==b)this.activeLink=b;else{const U=this.links.find(G=>this.router.url.includes(G.link));this.activeLink=U?this.selNode&&"CLN"===this.selNode.lnImplementation?this.links[1].link:U.link:this.links[this.links.length-1].link}}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix),t.rXU(En.nX))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-services-settings"]],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,"active","routerLink","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","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","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Services"),t.k0s()()(),t.j41(5,"div",5)(6,"mat-card")(7,"mat-card-content",5)(8,"nav",6),t.DNE(9,q3,2,3,"div",7)(10,r2,2,3,"div",8)(11,a2,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()),2&U){const Oe=t.sdS(13);t.R7$(2),t.Y8G("icon",G.faLayerGroup),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngIf","LND"===G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"!==G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"===G.selNode.lnImplementation)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();const Kd=["form"];function s2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Loop server URL is required."),t.k0s())}function L0(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the loop server url with 'https://'."),t.k0s())}function ll(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Loop macaroon path is required."),t.k0s())}let zc=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faInfoCircle=nn.iW_,this.enableLoop=!1,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableLoop=!(!b.settings.swapServerUrl||""===b.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(b)})}onEnableServiceChanged(b){this.enableLoop=b.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,Cn.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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-loop-service-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(Kd,7),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"loopd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.enableLoop,Lt)||(G.enableLoop=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(Lt))}),t.EFF(16,"Enable Loop Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Loop Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.swapServerUrl,Lt)||(G.selNode.settings.swapServerUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),t.k0s(),t.DNE(24,s2,2,0,"mat-error",11)(25,L0,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Loop Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.authentication.swapMacaroonPath,Lt)||(G.selNode.authentication.swapMacaroonPath=Lt),t.Njj(Lt)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),t.k0s(),t.DNE(32,ll,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&U){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableLoop),t.R7$(5),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.settings.swapServerUrl),t.R7$(4),t.Y8G("ngIf",!G.selNode.settings.swapServerUrl&&G.enableLoop),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableLoop),t.R7$(4),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.authentication.swapMacaroonPath),t.R7$(3),t.Y8G("ngIf",!G.selNode.authentication.swapMacaroonPath&&G.enableLoop)}},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,e2.sG,ft.Ld,Ot.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();const Bc=["form"];function I0(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz server URL is required."),t.k0s())}function c2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the boltz server url with 'https://'."),t.k0s())}function dl(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz macaroon path is required."),t.k0s())}let Ju=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faInfoCircle=nn.iW_,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableBoltz=!(!b.settings.boltzServerUrl||""===b.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(b)})}onEnableServiceChanged(b){this.enableBoltz=b.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,Cn.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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(Bc,7),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"boltzd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.enableBoltz,Lt)||(G.enableBoltz=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(Lt))}),t.EFF(16,"Enable Boltz Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Boltz Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.serverUrl,Lt)||(G.serverUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),t.k0s(),t.DNE(24,I0,2,0,"mat-error",11)(25,c2,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Boltz Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.macaroonPath,Lt)||(G.macaroonPath=Lt),t.Njj(Lt)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),t.k0s(),t.DNE(32,dl,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&U){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableBoltz),t.R7$(5),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.serverUrl),t.R7$(4),t.Y8G("ngIf",(!G.serverUrl||""===G.serverUrl.trim())&&G.enableBoltz),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableBoltz),t.R7$(4),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.macaroonPath),t.R7$(3),t.Y8G("ngIf",!G.macaroonPath&&G.enableBoltz)}},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,e2.sG,ft.Ld,Ot.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})(),qu=(()=>{class O{constructor(){}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-ln-services"]],decls:1,vars:0,template:function(U,G){1&U&&t.nrm(0,"router-outlet")},dependencies:[En.n3]})}return O})();var ef=g(8711),tf=g(4104),hl=g(6695),Sc=g(2042),Tr=g(9159),ul=g(7575);const R0=()=>["all"],hd=O=>({"overflow-auto error-border":O,"overflow-auto":!0}),nf=()=>["no_swap"],$d=O=>({width:O}),Qd=O=>({"display-none":O});function jl(O,H){if(1&O&&(t.j41(0,"mat-option",37),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b),t.R7$(),t.JRh(U.getLabel(b))}}function Tc(O,H){1&O&&t.nrm(0,"mat-progress-bar",38)}function l2(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"State"),t.k0s())}function Uc(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.JRh(U.LoopStateEnum[null==b?null:b.state])}}function O0(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"Initiation Time"),t.k0s())}function Zd(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==b?null:b.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function Wl(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"Last Update Time"),t.k0s())}function fl(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==b?null:b.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function F0(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Amount (Sats)"),t.k0s())}function d2(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.amt))}}function eo(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Server (Sats)"),t.k0s())}function N0(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.cost_server))}}function h2(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Offchain (Sats)"),t.k0s())}function Dr(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.cost_offchain))}}function Jd(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Onchain (Sats)"),t.k0s())}function ks(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==b?null:b.cost_onchain)," ")}}function ud(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"HTLC Address"),t.k0s())}function P0(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.htlc_address)}}function u2(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"ID"),t.k0s())}function Xl(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.id)}}function Yl(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"ID (Bytes)"),t.k0s())}function to(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.id_bytes)}}function V0(O,H){if(1&O){const b=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(){t.eBV(b);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function f2(O,H){if(1&O){const b=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(G){const Oe=t.eBV(b).$implicit,It=t.XpG();return t.Njj(It.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function m2(O,H){if(1&O&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.emptyTableMessage)}}function H0(O,H){if(1&O&&(t.j41(0,"td",51),t.DNE(1,m2,2,1,"p",52),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}function z0(O,H){if(1&O&&t.nrm(0,"tr",53),2&O){const b=t.XpG();t.Y8G("ngClass",t.eq3(1,Qd,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function Kl(O,H){1&O&&t.nrm(0,"tr",54)}function rf(O,H){1&O&&t.nrm(0,"tr",55)}let qd=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.logger=b,this.commonService=U,this.store=G,this.loopService=Oe,this.datePipe=It,this.camelCaseWithReplace=Lt,this.selectedSwapType=Wt.C7.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:Wt.md,sortBy:"initiation_time",sortOrder:Wt.oi.DESCENDING},this.LoopStateEnum=Wt.Hx,this.faHistory=nn.Int,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new Tr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){this.swapCaption=this.selectedSwapType===Wt.C7.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.tableSetting=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSetting.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.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:Wt.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(b){const U=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(G=>G.column===b);return U?U.label?U.label:this.camelCaseWithReplace.transform(U.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,U)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(b).toLowerCase();break;case"state":G=b?.state?this.LoopStateEnum[b?.state]:"";break;case"initiation_time":case"last_update_time":G=this.datePipe.transform(new Date((b[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:G=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===G.indexOf(U):G.includes(U)}}onSwapClick(b,U){this.loopService.getSwap(b.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:Wt.Hx[G.state||""],title:"Status",width:50,type:Wt.UN.STRING},{key:"amt",value:G.amt,title:"Amount (Sats)",width:50,type:Wt.UN.NUMBER}],[{key:"initiation_time",value:(G.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:Wt.UN.DATE_TIME},{key:"last_update_time",value:(G.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:Wt.UN.DATE_TIME}],[{key:"cost_server",value:G.cost_server,title:"Server Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_offchain",value:G.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_onchain",value:G.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:Wt.UN.NUMBER}],[{key:"id_bytes",value:G.id_bytes,title:"ID",width:100,type:Wt.UN.STRING}],[{key:"htlc_address",value:G.htlc_address,title:"HTLC Address",width:100,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new Tr.I6([...b]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(U,G)=>U[G]&&isNaN(U[G])?U[G].toLocaleLowerCase():U[G]?+U[G]: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===Wt.C7.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(tf.Q),t.rXU(ri.vh),t.rXU(Ul.VD))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-swaps"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Sc.B4,5),t.GBs(hl.iy,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:xe.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:hl.xX,useValue:(0,Wt.on)("Swaps")}]),t.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(U,G){if(1&U){const Oe=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),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(Lt){return t.eBV(Oe),t.DH7(G.selFilterBy,Lt)||(G.selFilterBy=Lt),t.Njj(Lt)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,jl,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(Lt){return t.eBV(Oe),t.DH7(G.selFilter,Lt)||(G.selFilter=Lt),t.Njj(Lt)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,Tc,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,l2,2,0,"th",16)(24,Uc,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,O0,2,0,"th",16)(27,Zd,3,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Wl,2,0,"th",16)(30,fl,3,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,F0,2,0,"th",21)(33,d2,4,3,"td",17),t.bVm(),t.qex(34,22),t.DNE(35,eo,2,0,"th",21)(36,N0,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,h2,2,0,"th",21)(39,Dr,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,Jd,2,0,"th",21)(42,ks,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,ud,2,0,"th",16)(45,P0,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,u2,2,0,"th",16)(48,Xl,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,Yl,2,0,"th",16)(51,to,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,V0,6,0,"th",29)(54,f2,3,0,"td",30),t.bVm(),t.qex(55,31),t.DNE(56,H0,2,1,"td",32),t.bVm(),t.DNE(57,z0,1,3,"tr",33)(58,Kl,1,0,"tr",34)(59,rf,1,0,"tr",35),t.k0s(),t.nrm(60,"mat-paginator",36),t.k0s()()()}2&U&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,R0).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.tableSetting.sortBy)("matSortDirection",G.tableSetting.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,hd,"error"===G.flgLoading[0])),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(19,nf)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.B3,Wi.me,Wi.BC,Wi.vS,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ds.eI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,ul.HM,xe.VO,xe.$2,Be.wT,Sc.B4,Sc.aE,Tr.Zl,Tr.tL,Tr.ji,Tr.cC,Tr.YV,Tr.iL,Tr.Zq,Tr.xW,Tr.KS,Tr.$R,Tr.Qo,Tr.YZ,Tr.NB,Tr.iF,hl.iy,ft.ZF,ft.Ld,ri.QX,ri.vh]})}return O})();const p2=O=>["../",O];function e1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.Y8G("active",U.activeTab.link===b.link)("routerLink",t.eq3(3,p2,b.link)),t.R7$(),t.JRh(b.name)}}let B0=(()=>{class O{constructor(b,U,G){this.router=b,this.loopService=U,this.store=G,this.faInfinity=nn.C8j,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=Wt.C7,this.selectedSwapType=Wt.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,Cn.mt)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,dn.Q)(this.unSubs[4])).subscribe({next:U=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo=U,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:U=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const b=this.links.find(U=>this.router.url.includes(U.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"loopin"===b.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"loopin"===G.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:U=>{this.flgLoading[0]=!1,this.storedSwaps=U,this.filteredSwaps=this.storedSwaps?.filter(G=>G.type===this.selectedSwapType)},error:U=>{this.flgLoading[0]="error",this.emptyTableMessage=U.message?U.message:"No loop "+(this.selectedSwapType===Wt.C7.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){this.selectedSwapType="loopin"===b.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(U=>U.type===this.selectedSwapType)}onLoop(b){b===Wt.C7.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{minQuote:U[0],maxQuote:U[1],direction:b,component:ef.D}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[3])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{minQuote:U[0],maxQuote:U[1],direction:b,component:ef.D}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.Ix),t.rXU(tf.Q),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-loop"]],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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,e1,2,5,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8)(12,"button",9),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLoop(G.selectedSwapType))}),t.EFF(13),t.k0s()(),t.nrm(14,"rtl-swaps",10),t.k0s()()()}if(2&U){const Oe=t.sdS(10);t.R7$(),t.Y8G("icon",G.faInfinity),t.R7$(2),t.SpI("Loop (v",(null==G.loopInfo?null:G.loopInfo.version)||" Unknown",")"),t.R7$(4),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.filteredSwaps)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[ri.Sq,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.Wk,qd]})}return O})();var af=g(1001),U0=g(4412),G0=g(8810),t1=g(2462);let fd=(()=>{class O{constructor(b,U,G,Oe){this.httpClient=b,this.logger=U,this.store=G,this.commonService=Oe,this.swapUrl="",this.swaps={},this.boltzInfo=null,this.boltzInfoChanged=new U0.t(null),this.swapsChanged=new U0.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,Cn.mt)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swaps=b,this.swapsChanged.next(this.swaps)},error:b=>this.swapsChanged.error(this.handleErrorWithAlert(Wt.MZ.GET_BOLTZ_SWAPS,this.swapUrl,b))})}swapInfo(b){return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/swapInfo/"+b,this.httpClient.get(this.swapUrl).pipe((0,Aa.W)(U=>(0,At.of)(this.handleErrorWithAlert(Wt.MZ.NO_SPINNER,this.swapUrl,U))))}getBoltzInfo(){this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/info",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:b=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.boltzInfo=b,this.boltzInfoChanged.next(this.boltzInfo)},error:b=>(this.boltzInfo={version:"2.0.0"},this.boltzInfoChanged.next(this.boltzInfo),(0,At.of)(this.handleErrorWithoutAlert(Wt.MZ.GET_BOLTZ_INFO,this.swapUrl,b)))})}serviceInfo(){return this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_SERVICE_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[2]),(0,Xa.T)(b=>(this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_SERVICE_INFO})),b)),(0,Aa.W)(b=>(0,At.of)(this.handleErrorWithAlert(Wt.MZ.GET_SERVICE_INFO,this.swapUrl,b))))}swapOut(b,U,G){const Oe={amount:b,address:U,acceptZeroConf:G};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,Aa.W)(It=>this.handleErrorWithoutAlert("Swap Out for Address: "+U,Wt.MZ.NO_SPINNER,It)))}swapIn(b,U){const G={amount:b,sendFromInternal:U};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,G).pipe((0,Aa.W)(Oe=>this.handleErrorWithoutAlert("Swap In for Amount: "+b,Wt.MZ.NO_SPINNER,Oe)))}handleErrorWithoutAlert(b,U,G){let Oe="";return this.logger.error("ERROR IN: "+b+"\n"+JSON.stringify(G)),this.store.dispatch((0,Cn.y0)({payload:U})),401===G.status?(Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:Oe}))):503===G.status?(Oe="Unable to Connect to Boltz Server.",this.store.dispatch((0,Cn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:b},component:t1.f}}}))):Oe=this.commonService.extractErrorMessage(G),(0,G0.$)(()=>new Error(Oe))}handleErrorWithAlert(b,U,G){let Oe="";if(401===G.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:"Authentication Failed: "+JSON.stringify(G.error)}))),this.logger.error(G),this.store.dispatch((0,Cn.y0)({payload:b})),401===G.status)Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:Oe}));else if(503===G.status)Oe="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:U},component:t1.f}}}))},100);else{Oe=this.commonService.extractErrorMessage(G);const It=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;setTimeout(()=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.ERROR,alertTitle:"ERROR",message:{code:It,message:Oe,URL:U},component:t1.f}}}))},100)}return{message:Oe}}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(Ms.Qq),t.KVO(Yo.gP),t.KVO(Ri.il),t.KVO(Ia.h))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const g2=O=>({"display-none":O});function sf(O,H){1&O&&t.eu8(0)}function cf(O,H){if(1&O&&(t.j41(0,"div",4)(1,"span",5),t.EFF(2),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.JRh(null!=b.swapStatus&&b.swapStatus.error?null==b.swapStatus?null:b.swapStatus.error:"Unknown Error.")}}function lf(O,H){if(1&O&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Routing Fee (mSats)"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.nI1(5,"number"),t.k0s()()),2&O){const b=t.XpG(2);t.R7$(4),t.JRh(t.bMT(5,1,null==b.swapStatus?null:b.swapStatus.routingFeeMilliSat))}}function j0(O,H){if(1&O&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Claim Transaction ID"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.k0s()()),2&O){const b=t.XpG(2);t.R7$(4),t.JRh(null==b.swapStatus?null:b.swapStatus.claimTransactionId)}}function W0(O,H){if(1&O&&(t.j41(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),t.EFF(4,"ID"),t.k0s(),t.j41(5,"span",5),t.EFF(6),t.k0s()(),t.DNE(7,lf,6,3,"div",9)(8,j0,5,1,"div",9),t.k0s(),t.nrm(9,"mat-divider",10),t.j41(10,"div",6)(11,"div",11)(12,"h4",8),t.EFF(13,"Lockup Address"),t.k0s(),t.j41(14,"span",5),t.EFF(15),t.k0s()()()()),2&O){const b=t.XpG();t.R7$(6),t.JRh(null==b.swapStatus?null:b.swapStatus.id),t.R7$(),t.Y8G("ngIf",b.acceptZeroConf),t.R7$(),t.Y8G("ngIf",b.acceptZeroConf),t.R7$(7),t.JRh(null==b.swapStatus?null:b.swapStatus.lockupAddress)}}function go(O,H){1&O&&(t.j41(0,"span",22),t.EFF(1,"N/A"),t.k0s())}function e4(O,H){1&O&&(t.j41(0,"span",23),t.EFF(1,"QR Code Not Applicable"),t.k0s())}function X0(O,H){1&O&&t.nrm(0,"mat-divider",24),2&O&&t.Y8G("inset",!0)}function t4(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Transaction ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.txId)}}function _2(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",25)(2,"h4",8),t.EFF(3,"ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",25)(7,"h4",8),t.EFF(8,"Expected Amount (Sats)"),t.k0s(),t.j41(9,"span",5),t.EFF(10),t.nI1(11,"number"),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.id),t.R7$(5),t.JRh(t.bMT(11,2,null==b.swapStatus?null:b.swapStatus.expectedAmount))}}function i4(O,H){1&O&&t.nrm(0,"mat-divider",10)}function n1(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Address"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.address)}}function Bs(O,H){1&O&&t.nrm(0,"mat-divider",10)}function r1(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"BIP 21"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.bip21)}}function ml(O,H){if(1&O&&(t.j41(0,"div",12)(1,"div",13),t.nrm(2,"qr-code",14),t.DNE(3,go,2,0,"span",15),t.k0s(),t.j41(4,"div",16)(5,"div",4)(6,"div",17),t.nrm(7,"qr-code",14),t.DNE(8,e4,2,0,"span",18),t.k0s(),t.DNE(9,X0,1,1,"mat-divider",19)(10,t4,6,1,"div",20)(11,_2,12,4,"div",20)(12,i4,1,0,"mat-divider",21)(13,n1,6,1,"div",20)(14,Bs,1,0,"mat-divider",21)(15,r1,6,1,"div",20),t.k0s()()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("fxLayoutAlign",""!==((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(19,g2,b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))("size",b.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))),t.R7$(3),t.Y8G("fxLayoutAlign",""!==((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(21,g2,b.screenSize!==b.screenSizeEnum.XS&&b.screenSize!==b.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))("size",b.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))),t.R7$(),t.Y8G("ngIf",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM),t.R7$(),t.Y8G("ngIf",b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal)}}let df=(()=>{class O{constructor(b){this.commonService=b,this.swapStatus=null,this.direction=Wt.Bd.SWAP_OUT,this.acceptZeroConf=!1,this.sendFromInternal=!0,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=Wt.f7,this.swapTypeEnum=Wt.Bd}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===Wt.f7.XS&&(this.qrWidth=180)}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction",acceptZeroConf:"acceptZeroConf",sendFromInternal:"sendFromInternal"},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"],[3,"value","size","errorCorrectionLevel"],["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(U,G){if(1&U&&t.DNE(0,sf,1,0,"ng-container",3)(1,cf,3,1,"ng-template",null,0,t.C5r)(3,W0,16,4,"ng-template",null,1,t.C5r)(5,ml,16,23,"ng-template",null,2,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6);t.Y8G("ngTemplateOutlet",null!=G.swapStatus&&G.swapStatus.error?Oe:G.direction===G.swapTypeEnum.SWAP_OUT?It:Lt)}},dependencies:[ri.YU,ri.bT,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,Pc.q,ls.Um,ri.QX]})}return O})(),Y0=(()=>{class O{constructor(){this.serviceInfo={},this.direction=Wt.Bd.SWAP_OUT,this.swapTypeEnum=Wt.Bd}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},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(U,G){1&U&&(t.j41(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),t.EFF(4,"Service Information"),t.k0s()()(),t.j41(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),t.EFF(9,"Minimum Amount (Sats)"),t.k0s(),t.j41(10,"span",6),t.EFF(11),t.nI1(12,"number"),t.k0s()(),t.j41(13,"div",4)(14,"h4",5),t.EFF(15,"Maximum Amount (Sats)"),t.k0s(),t.j41(16,"span",6),t.EFF(17),t.nI1(18,"number"),t.k0s()()(),t.nrm(19,"mat-divider",7),t.j41(20,"div",3)(21,"div",4)(22,"h4",5),t.EFF(23,"Fee Percentage"),t.k0s(),t.j41(24,"span",6),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div",4)(28,"h4",5),t.EFF(29,"Miner Fee (Sats)"),t.k0s(),t.j41(30,"span",6),t.EFF(31),t.nI1(32,"number"),t.k0s()()()()()),2&U&&(t.Y8G("expanded",!0),t.R7$(11),t.JRh(t.bMT(12,5,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.minimal)),t.R7$(6),t.JRh(t.bMT(18,7,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.maximal)),t.R7$(8),t.JRh(t.bMT(26,9,null==G.serviceInfo||null==G.serviceInfo.fees?null:G.serviceInfo.fees.percentage)),t.R7$(6),t.JRh(t.bMT(32,11,G.direction===G.swapTypeEnum.SWAP_OUT?null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.reverse:null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.normal)))},dependencies:[$i.DJ,$i.sA,$i.UI,Ra.GK,Ra.Z2,Ra.WN,Pc.q,ri.QX]})}return O})();var v2=g(6949);const md=(O,H)=>({"small-svg":O,"large-svg":H});function hf(O,H){1&O&&t.eu8(0)}function n4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.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),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Submarine Swaps explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function r4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21),t.nrm(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.joV(),t.j41(9,"div",18)(10,"mat-card-title"),t.EFF(11,"Step 1: Deciding to Submarine Swap"),t.k0s()(),t.j41(12,"div",19)(13,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function uf(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",29),t.nrm(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),t.j41(9,"defs")(10,"pattern",37),t.nrm(11,"use",38),t.k0s(),t.nrm(12,"image",39),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Sending the on-chain funds"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function ff(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",40)(2,"g",41),t.nrm(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),t.k0s(),t.j41(8,"defs")(9,"clipPath",47),t.nrm(10,"rect",48),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on Lightning"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.EFF(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function $l(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",49),t.nrm(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let pd=(()=>{class O{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(U,G){if(1&U&&t.DNE(0,hf,1,0,"ng-container",5)(1,n4,18,5,"ng-template",null,0,t.C5r)(3,r4,15,5,"ng-template",null,1,t.C5r)(5,uf,19,5,"ng-template",null,2,t.C5r)(7,ff,17,5,"ng-template",null,3,t.C5r)(9,$l,13,5,"ng-template",null,4,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6),oi=t.sdS(8),ci=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?It:3===G.stepNumber?Lt:4===G.stepNumber?oi:ci)}},dependencies:[ri.YU,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,mr.Lc,mr.dh],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:[v2.k]}})}return O})();const Ql=(O,H)=>({"small-svg":O,"large-svg":H});function mf(O,H){1&O&&t.eu8(0)}function a1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.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),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Reverse Submarine Swap explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function Us(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21)(2,"g",22),t.nrm(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.nrm(9,"path",29),t.j41(10,"defs")(11,"clipPath",30),t.nrm(12,"rect",31),t.k0s()()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 1: Deciding to Reverse Submarine Swap"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function K0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",32),t.nrm(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),t.j41(9,"defs")(10,"pattern",40),t.nrm(11,"use",41),t.k0s(),t.nrm(12,"image",42),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Paying the Lightning Invoice"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function o1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",43)(2,"g",22),t.nrm(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),t.k0s(),t.j41(8,"defs")(9,"clipPath",30),t.nrm(10,"rect",49),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on-chain"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function gd(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",50),t.nrm(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let $0=(()=>{class O{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},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(U,G){if(1&U&&t.DNE(0,mf,1,0,"ng-container",5)(1,a1,18,5,"ng-template",null,0,t.C5r)(3,Us,19,5,"ng-template",null,1,t.C5r)(5,K0,19,5,"ng-template",null,2,t.C5r)(7,o1,17,5,"ng-template",null,3,t.C5r)(9,gd,13,5,"ng-template",null,4,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6),oi=t.sdS(8),ci=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?It:3===G.stepNumber?Lt:4===G.stepNumber?oi:ci)}},dependencies:[ri.YU,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,mr.Lc,mr.dh],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:[v2.k]}})}return O})();const Q0=["stepper"],Z0=()=>[1,2,3,4,5],_d=(O,H)=>({"dot-primary":O,"dot-primary-lighter":H});function s1(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.inputFormLabel)}}function c1(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function J0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.SpI("Amount must be greater than or equal to ",t.bMT(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),".")}}function q0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",t.bMT(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),".")}}function Zl(O,H){1&O&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",43),t.EFF(3,"Accept Zero Conf"),t.k0s(),t.j41(4,"mat-icon",44),t.EFF(5,"info_outline"),t.k0s()()())}function b2(O,H){1&O&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",45),t.EFF(3,"Send from Internal Wallet"),t.k0s(),t.j41(4,"mat-icon",46),t.EFF(5,"info_outline"),t.k0s()()())}function pf(O,H){1&O&&(t.j41(0,"button",47),t.EFF(1,"Next"),t.k0s())}function gf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",48),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG(2);t.R7$(),t.SpI("Initiate ",b.swapDirectionCaption,"")}}function Qo(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(3);t.JRh(b.addressFormLabel)}}function y2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function l1(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-step",15)(1,"form",16),t.DNE(2,Qo,1,1,"ng-template",17),t.j41(3,"div",49)(4,"mat-radio-group",50),t.bIt("change",function(G){t.eBV(b);const Oe=t.XpG(2);return t.Njj(Oe.onAddressTypeChange(G))}),t.j41(5,"mat-radio-button",51),t.EFF(6,"Node Local Address"),t.k0s(),t.j41(7,"mat-radio-button",52),t.EFF(8,"External Address"),t.k0s()(),t.j41(9,"mat-form-field",53)(10,"mat-label"),t.EFF(11,"Address"),t.k0s(),t.nrm(12,"input",54),t.DNE(13,y2,2,0,"mat-error",24),t.k0s()(),t.j41(14,"div",26)(15,"button",55),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(16),t.k0s()()()()}if(2&O){const b=t.XpG(2);t.Y8G("stepControl",b.addressFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.addressFormGroup),t.R7$(11),t.Y8G("required","external"===b.addressFormGroup.controls.addressType.value),t.R7$(),t.Y8G("ngIf",null==b.addressFormGroup.controls.address.errors?null:b.addressFormGroup.controls.address.errors.required),t.R7$(3),t.SpI("Initiate ",b.swapDirectionCaption,"")}}function x2(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.SpI("",b.swapDirectionCaption," Status")}}function eh(O,H){if(1&O&&(t.j41(0,"mat-icon",56),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.swapStatus&&null!=b.swapStatus&&b.swapStatus.id?"check":"close")}}function a4(O,H){1&O&&t.nrm(0,"div")}function Zo(O,H){1&O&&t.nrm(0,"mat-progress-bar",57)}function pl(O,H){if(1&O&&(t.j41(0,"h4",58),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.swapStatus&&b.swapStatus.error?b.swapDirectionCaption+" failed.":b.swapStatus&&b.swapStatus.id?b.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":b.swapDirectionCaption+" request placed successfully.")}}function C2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",59),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function w2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5),t.k0s()(),t.j41(6,"div",9)(7,"button",10),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onClose())}),t.EFF(10,"X"),t.k0s()()(),t.j41(11,"mat-card-content",12)(12,"div",13)(13,"mat-vertical-stepper",14,1),t.bIt("selectionChange",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.stepSelectionChanged(G))}),t.j41(15,"mat-step",15)(16,"form",16),t.DNE(17,s1,1,1,"ng-template",17),t.j41(18,"div",18),t.nrm(19,"rtl-boltz-service-info",19),t.k0s(),t.j41(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),t.EFF(23,"Amount"),t.k0s(),t.nrm(24,"input",22),t.j41(25,"mat-hint"),t.EFF(26),t.nI1(27,"number"),t.nI1(28,"number"),t.k0s(),t.j41(29,"span",23),t.EFF(30,"Sats"),t.k0s(),t.DNE(31,c1,2,0,"mat-error",24)(32,J0,3,3,"mat-error",24)(33,q0,3,3,"mat-error",24),t.k0s(),t.DNE(34,Zl,6,0,"div",25)(35,b2,6,0,"div",25),t.k0s(),t.j41(36,"div",26),t.DNE(37,pf,2,0,"button",27)(38,gf,2,1,"button",28),t.k0s()()(),t.DNE(39,l1,17,6,"mat-step",29),t.j41(40,"mat-step",30)(41,"form",16),t.DNE(42,x2,1,1,"ng-template",17),t.j41(43,"div",31)(44,"mat-expansion-panel",32)(45,"mat-expansion-panel-header")(46,"mat-panel-title")(47,"span",33),t.EFF(48),t.DNE(49,eh,2,1,"mat-icon",34),t.k0s()()(),t.DNE(50,a4,1,0,"div",35),t.k0s(),t.DNE(51,Zo,1,0,"mat-progress-bar",36),t.k0s(),t.DNE(52,pl,2,1,"h4",37),t.j41(53,"div",26),t.DNE(54,C2,2,0,"button",38),t.k0s()()()(),t.j41(55,"div",39)(56,"button",40),t.EFF(57,"Close"),t.k0s()()()()()()}if(2&O){const b=t.XpG(),U=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(3),t.Y8G("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"83":"91"),t.R7$(2),t.JRh(b.swapDirectionCaption),t.R7$(),t.Y8G("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"17":"9"),t.R7$(7),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",b.inputFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.inputFormGroup),t.R7$(3),t.Y8G("serviceInfo",b.serviceInfo)("direction",b.direction),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.Lme("Range: ",t.bMT(27,32,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),"-",t.bMT(28,34,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),""),t.R7$(5),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.required),t.R7$(),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.min),t.R7$(),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.max),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN&&b.isSendFromInternalCompatible),t.R7$(2),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("stepControl",b.statusFormGroup),t.R7$(),t.Y8G("formGroup",b.statusFormGroup),t.R7$(3),t.Y8G("expanded",!!b.swapStatus),t.R7$(4),t.JRh(b.swapStatus?b.swapStatus.id?b.swapDirectionCaption+" request details":b.swapDirectionCaption+" error details":"Waiting for "+b.swapDirectionCaption+" request..."),t.R7$(),t.Y8G("ngIf",b.swapStatus),t.R7$(),t.Y8G("ngIf",!b.swapStatus)("ngIfElse",U),t.R7$(),t.Y8G("ngIf",!b.swapStatus),t.R7$(),t.Y8G("ngIf",b.swapStatus),t.R7$(2),t.Y8G("ngIf",b.swapStatus&&(b.swapStatus.error||!b.swapStatus.id)),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function _f(O,H){if(1&O&&t.nrm(0,"rtl-boltz-swap-status",60),2&O){const b=t.XpG();t.Y8G("swapStatus",b.swapStatus)("direction",b.direction)("acceptZeroConf",null==b.inputFormGroup||null==b.inputFormGroup.controls?null:b.inputFormGroup.controls.acceptZeroConf.value)("sendFromInternal",null==b.inputFormGroup||null==b.inputFormGroup.controls?null:b.inputFormGroup.controls.sendFromInternal.value)}}function th(O,H){if(1&O){const b=t.RV6();t.j41(0,"rtl-boltz-swapout-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&O){const b=t.XpG(2);t.Y8G("animationDirection",b.animationDirection),t.R50("stepNumber",b.stepNumber)}}function ih(O,H){if(1&O){const b=t.RV6();t.j41(0,"rtl-boltz-swapin-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&O){const b=t.XpG(2);t.Y8G("animationDirection",b.animationDirection),t.R50("stepNumber",b.stepNumber)}}function Gc(O,H){if(1&O){const b=t.RV6();t.j41(0,"span",77),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onStepChanged(G))}),t.nrm(1,"p",78),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,_d,U.stepNumber===b,U.stepNumber!==b))}}function M2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onReadMore())}),t.EFF(1,"Read More"),t.k0s()}}function nh(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function vf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function rh(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function E2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",83),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function bf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",84),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function S2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",61)(1,"div",18)(2,"mat-card-header",62)(3,"div",63),t.nrm(4,"span",8),t.k0s(),t.j41(5,"div",64)(6,"button",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",65),t.DNE(9,th,1,2,"rtl-boltz-swapout-info-graphics",66)(10,ih,1,2,"rtl-boltz-swapin-info-graphics",66),t.k0s(),t.j41(11,"div",67),t.DNE(12,Gc,2,4,"span",68),t.k0s(),t.j41(13,"div",69),t.DNE(14,M2,2,0,"button",70)(15,nh,2,0,"button",71)(16,vf,2,0,"button",72)(17,rh,2,0,"button",73)(18,E2,2,0,"button",74)(19,bf,2,0,"button",75),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.R7$(2),t.Y8G("ngForOf",t.lJ4(10,Z0)),t.R7$(2),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",b.stepNumber<5),t.R7$(),t.Y8G("ngIf",b.stepNumber>1&&b.stepNumber<5),t.R7$(),t.Y8G("ngIf",b.stepNumber<5)}}let Jl=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi){this.dialogRef=b,this.data=U,this.boltzService=G,this.formBuilder=Oe,this.decimalPipe=It,this.logger=Lt,this.commonService=oi,this.faInfoCircle=nn.iW_,this.boltzInfo=null,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=Wt.Bd,this.direction=Wt.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=Wt.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||Wt.Bd.SWAP_OUT,this.swapDirectionCaption=this.direction===Wt.Bd.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[Wi.k0.required,Wi.k0.min(this.serviceInfo.limits?.minimal||0),Wi.k0.max(this.serviceInfo.limits?.maximal||0)]],acceptZeroConf:[!1],sendFromInternal:[!0]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[Wi.k0.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.boltzService.boltzInfoChanged.pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.boltzInfo=b,this.isSendFromInternalCompatible=this.commonService.isVersionCompatible(this.boltzInfo.version,"2.0.0")},error:b=>{this.boltzInfo={version:"2.0.0"},this.logger.error(b)}})}ngAfterViewInit(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(b){"external"===b.value?(this.addressFormGroup.controls.address.setValidators([Wi.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===Wt.Bd.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===Wt.Bd.SWAP_IN?this.boltzService.swapIn(this.inputFormGroup.controls.amount.value,this.isSendFromInternalCompatible?this.inputFormGroup.controls.sendFromInternal.value:null).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:b=>{this.swapStatus=b,this.boltzService.listSwaps(),this.flgEditable=!0},error:b=>{this.swapStatus={error:b},this.flgEditable=!0,this.logger.error(b)}}):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,dn.Q)(this.unSubs[3])).subscribe({next:U=>{this.swapStatus=U,this.boltzService.listSwaps(),this.flgEditable=!0},error:U=>{this.swapStatus={error:U},this.flgEditable=!0,this.logger.error(U)}})}stepSelectionChanged(b){switch(b.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value?this.direction===Wt.Bd.SWAP_IN?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.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"):"Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address"}b.selectedIndex{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Sn.Vh),t.rXU(fd),t.rXU(Wi.ze),t.rXU(ri.QX),t.rXU(Yo.gP),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(U,G){if(1&U&&t.GBs(Q0,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},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,"fxFlex"],[1,"page-title"],["fxLayoutAlign","end end",3,"fxFlex"],["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"],["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(U,G){1&U&&t.DNE(0,w2,58,36,"div",2)(1,_f,1,4,"ng-template",null,0,t.C5r)(3,S2,20,11,"div",3),2&U&&(t.Y8G("ngIf",!G.flgShowInfo),t.R7$(3),t.Y8G("ngIf",G.flgShowInfo))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.Q0,Wi.BC,Wi.cb,Wi.YS,Wi.j4,Wi.JD,$i.DJ,$i.sA,$i.UI,ds.PW,Sn.tx,ve.$z,mr.m2,mr.MM,Ra.GK,Ra.Z2,Ra.WN,Vc.An,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pe.yw,ul.HM,Gd.VT,Gd._g,e2.sG,ic.oV,Ka.V5,Ka.Ti,Ka.M6,Ka.F7,Ot.N,df,Y0,pd,$0,ri.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:[af.C]}})}return O})();const yf=()=>["all"],d1=O=>({"overflow-auto error-border":O,"overflow-auto":!0}),ah=()=>["no_swap"],jc=O=>({width:O}),T2=O=>({"display-none":O});function oh(O,H){if(1&O&&(t.j41(0,"mat-option",42),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b),t.R7$(),t.JRh(U.getLabel(b))}}function xf(O,H){1&O&&t.nrm(0,"mat-progress-bar",43)}function h1(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Status"),t.k0s())}function D2(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.JRh(U.swapStateEnum[null==b?null:b.status])}}function Cf(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Swap ID"),t.k0s())}function ql(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.id)}}function vd(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Claim Address"),t.k0s())}function bd(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.claimAddress)}}function wf(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Lockup Address"),t.k0s())}function Mf(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.lockupAddress)}}function o4(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Onchain Amount (Sats)"),t.k0s())}function A2(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.onchainAmount))}}function sh(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Expected Amount (Sats)"),t.k0s())}function u1(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.expectedAmount))}}function ch(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Error"),t.k0s())}function Dc(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.error)}}function f1(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Private Key"),t.k0s())}function k2(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.privateKey)}}function lh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Preimage"),t.k0s())}function ed(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.preimage)}}function dh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Redeem Script"),t.k0s())}function hh(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.redeemScript)}}function Ef(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Invoice"),t.k0s())}function Sf(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.invoice)}}function uh(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Timeout Block Height"),t.k0s())}function s4(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.timeoutBlockHeight))}}function c4(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Lockup Tx ID"),t.k0s())}function Gs(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.lockupTransactionId)}}function fh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Claim Tx ID"),t.k0s())}function m1(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.claimTransactionId)}}function mh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Refund Tx ID"),t.k0s())}function js(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.refundTransactionId)}}function yd(O,H){if(1&O){const b=t.RV6();t.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",53),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function p1(O,H){if(1&O){const b=t.RV6();t.j41(0,"td",54)(1,"button",55),t.bIt("click",function(G){const Oe=t.eBV(b).$implicit,It=t.XpG();return t.Njj(It.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function td(O,H){if(1&O&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.emptyTableMessage)}}function id(O,H){if(1&O&&(t.j41(0,"td",56),t.DNE(1,td,2,1,"p",57),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}function Wc(O,H){if(1&O&&t.nrm(0,"tr",58),2&O){const b=t.XpG();t.Y8G("ngClass",t.eq3(1,T2,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function Ac(O,H){1&O&&t.nrm(0,"tr",59)}function xd(O,H){1&O&&t.nrm(0,"tr",60)}let nd=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.commonService=U,this.store=G,this.boltzService=Oe,this.camelCaseWithReplace=It,this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.swapStateEnum=Wt.q9,this.swapTypeEnum=Wt.Bd,this.faHistory=nn.Int,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new Tr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){b.selectedSwapType&&!b.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===Wt.Bd.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.tableSettingSwapOut=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapOut.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapIn.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.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===Wt.Bd.SWAP_IN?(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.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:Wt.md):(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.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:Wt.md)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(b){const G=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===Wt.Bd.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(Oe=>Oe.column===b);return G?G.label?G.label:this.camelCaseWithReplace.transform(G.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,U)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(b).toLowerCase();break;case"status":G=b?.status?this.swapStateEnum[b?.status]:"";break;default:G=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===G.indexOf(U):G.includes(U)}}onSwapClick(b,U){this.boltzService.swapInfo(b.id||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:Wt.q9[(G=this.selectedSwapType===Wt.Bd.SWAP_IN?G.swap:G.reverseSwap).status],title:"Status",width:50,type:Wt.UN.STRING},{key:"id",value:G.id,title:"ID",width:50,type:Wt.UN.STRING}],[{key:"amount",value:G.onchainAmount?G.onchainAmount:G.expectedAmount?G.expectedAmount:0,title:G.onchainAmount?"Onchain Amount (Sats)":G.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:Wt.UN.NUMBER},{key:"timeoutBlockHeight",value:G.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:Wt.UN.NUMBER}],[{key:"address",value:G.claimAddress?G.claimAddress:G.lockupAddress?G.lockupAddress:"",title:G.claimAddress?"Claim Address":G.lockupAddress?"Lockup Address":"Address",width:100,type:Wt.UN.STRING}],[{key:"invoice",value:G.invoice,title:"Invoice",width:100,type:Wt.UN.STRING}],[{key:"privateKey",value:G.privateKey,title:"Private Key",width:100,type:Wt.UN.STRING}],[{key:"preimage",value:G.preimage,title:"Preimage",width:100,type:Wt.UN.STRING}],[{key:"redeemScript",value:G.redeemScript,title:"Redeem Script",width:100,type:Wt.UN.STRING}],[{key:"lockupTransactionId",value:G.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:Wt.UN.STRING},{key:"transactionId",value:G.claimTransactionId?G.claimTransactionId:G.refundTransactionId?G.refundTransactionId:"",title:G.claimTransactionId?"Claim Transaction ID":G.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new Tr.I6(b?[...b]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(U,G)=>U[G]&&isNaN(U[G])?U[G].toLocaleLowerCase():U[G]?+U[G]: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===Wt.Bd.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(fd),t.rXU(Ul.VD))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swaps"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Sc.B4,5),t.GBs(hl.iy,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:xe.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:hl.xX,useValue:(0,Wt.on)("Swaps")}]),t.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(U,G){if(1&U){const Oe=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),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(Lt){return t.eBV(Oe),t.DH7(G.selFilterBy,Lt)||(G.selFilterBy=Lt),t.Njj(Lt)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,oh,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(Lt){return t.eBV(Oe),t.DH7(G.selFilter,Lt)||(G.selFilter=Lt),t.Njj(Lt)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,xf,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,h1,2,0,"th",16)(24,D2,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Cf,2,0,"th",16)(27,ql,2,1,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,vd,2,0,"th",16)(30,bd,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,wf,2,0,"th",16)(33,Mf,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,o4,2,0,"th",22)(36,A2,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,sh,2,0,"th",22)(39,u1,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,ch,2,0,"th",16)(42,Dc,4,4,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,f1,2,0,"th",16)(45,k2,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,lh,2,0,"th",16)(48,ed,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,dh,2,0,"th",16)(51,hh,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,Ef,2,0,"th",16)(54,Sf,4,4,"td",17),t.bVm(),t.qex(55,29),t.DNE(56,uh,2,0,"th",22)(57,s4,4,3,"td",17),t.bVm(),t.qex(58,30),t.DNE(59,c4,2,0,"th",16)(60,Gs,2,1,"td",17),t.bVm(),t.qex(61,31),t.DNE(62,fh,2,0,"th",16)(63,m1,2,1,"td",17),t.bVm(),t.qex(64,32),t.DNE(65,mh,2,0,"th",16)(66,js,2,1,"td",17),t.bVm(),t.qex(67,33),t.DNE(68,yd,6,0,"th",34)(69,p1,3,0,"td",35),t.bVm(),t.qex(70,36),t.DNE(71,id,2,1,"td",37),t.bVm(),t.DNE(72,Wc,1,3,"tr",38)(73,Ac,1,0,"tr",39)(74,xd,1,0,"tr",40),t.k0s(),t.nrm(75,"mat-paginator",41),t.k0s()()()}2&U&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,yf).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortBy:G.tableSettingSwapOut.sortBy)("matSortDirection",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortOrder:G.tableSettingSwapOut.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,d1,"error"===G.flgLoading[0])),t.R7$(52),t.Y8G("matFooterRowDef",t.lJ4(19,ah)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.B3,Wi.me,Wi.BC,Wi.vS,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ds.eI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,ul.HM,xe.VO,xe.$2,Be.wT,Sc.B4,Sc.aE,Tr.Zl,Tr.tL,Tr.ji,Tr.cC,Tr.YV,Tr.iL,Tr.Zq,Tr.xW,Tr.KS,Tr.$R,Tr.Qo,Tr.YZ,Tr.NB,Tr.iF,hl.iy,ft.ZF,ft.Ld,ri.QX]})}return O})();const ph=O=>["../",O];function l4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",16),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.Y8G("active",U.activeTab.link===b.link)("routerLink",t.eq3(3,ph,b.link)),t.R7$(),t.JRh(b.name)}}let gh=(()=>{class O{constructor(b,U,G){this.router=b,this.store=U,this.boltzService=G,this.swapTypeEnum=Wt.Bd,this.selectedSwapType=Wt.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 b=this.links.find(U=>this.router.url.includes(U.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"swapin"===b.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"swapin"===G.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:U=>{this.swaps=U,this.swapsData=this.selectedSwapType===Wt.Bd.SWAP_IN&&U.swaps?U.swaps:this.selectedSwapType===Wt.Bd.SWAP_OUT&&U.reverseSwaps?U.reverseSwaps:[],this.flgLoading[0]=!1},error:U=>{this.flgLoading[0]="error",this.emptyTableMessage=U.message?U.message:"No swap "+(this.selectedSwapType===Wt.Bd.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){"swapin"===b.link?(this.selectedSwapType=Wt.Bd.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(b){this.boltzService.serviceInfo().pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{serviceInfo:U,direction:b,component:Jl}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.Ix),t.rXU(Ri.il),t.rXU(fd))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-root"]],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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.qSk(),t.j41(1,"svg",2)(2,"g",3)(3,"g",4),t.nrm(4,"circle",5)(5,"path",6)(6,"path",7),t.k0s()()(),t.joV(),t.j41(7,"span",8),t.EFF(8,"Boltz"),t.k0s()(),t.j41(9,"div",9)(10,"mat-card")(11,"mat-card-content",10)(12,"nav",11),t.DNE(13,l4,2,5,"div",12),t.k0s(),t.nrm(14,"mat-tab-nav-panel",null,0),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onSwap(G.selectedSwapType))}),t.EFF(18),t.k0s()(),t.nrm(19,"rtl-boltz-swaps",15),t.k0s()()()}if(2&U){const Oe=t.sdS(15);t.R7$(12),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.swapsData)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[ri.Sq,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.Wk,nd]})}return O})();class io{constructor(H){this.help=H}}function _h(O,H){if(1&O&&(t.j41(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.k0s()(),t.j41(4,"mat-panel-description",9),t.nrm(5,"span",10),t.j41(6,"a",11),t.EFF(7),t.k0s()()()),2&O){const b=t.XpG().$implicit,U=t.XpG();t.R7$(3),t.JRh(b.help.question),t.R7$(2),t.Y8G("innerHTML",b.help.answer,t.npT),t.R7$(),t.Y8G("routerLink",U.flgLoggedIn?b.help.link:"/login"),t.R7$(),t.JRh(U.flgLoggedIn?b.help.linkCaption:"Login to go to the page")}}function Af(O,H){if(1&O&&(t.j41(0,"div",6),t.DNE(1,_h,8,4,"mat-expansion-panel",7),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngIf","ALL"===b.help.lnImplementation||b.help.lnImplementation===U.selNode.lnImplementation)}}let vh=(()=>{class O{constructor(b,U){this.store=b,this.sessionService=U,this.helpTopics=[],this.faQuestion=nn.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(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.flgLoggedIn=!!b.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(qa.Q))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-help"]],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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.nrm(2,"fa-icon",2),t.j41(3,"span",3),t.EFF(4,"Help"),t.k0s()(),t.j41(5,"div",4)(6,"div",0),t.DNE(7,Af,2,1,"div",5),t.k0s()()()),2&U&&(t.R7$(2),t.Y8G("icon",G.faQuestion),t.R7$(5),t.Y8G("ngForOf",G.helpTopics))},dependencies:[ri.Sq,ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,Ra.GK,Ra.Z2,Ra.WN,Ra.Q6,En.Wk],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]})}return O})();var rd=g(4572);function bh(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}let L2=(()=>{class O{constructor(b,U){this.dialogRef=b,this.store=U,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Cn.R$)({payload:{twoFAToken:this.token}}))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-login-token"]],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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Two Factor Token"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0),t.bIt("ngSubmit",function(){return t.eBV(Oe),t.Njj(G.onVerifyToken())}),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"Token"),t.k0s(),t.j41(14,"input",9),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.token,Lt)||(G.token=Lt),t.Njj(Lt)}),t.k0s(),t.DNE(15,bh,2,0,"mat-error",10),t.k0s(),t.j41(16,"div",11)(17,"button",12),t.EFF(18,"Verify Token"),t.k0s()()()()()()}2&U&&(t.R7$(14),t.R50("ngModel",G.token),t.R7$(),t.Y8G("ngIf",!G.token))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Ot.N]})}return O})();const kf=O=>({"padding-gap-large":O}),g1=(O,H)=>({"font-size-200":O,"font-size-300":H});function u4(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function wd(O,H){if(1&O&&(t.j41(0,"p",21)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&O){const b=t.XpG();t.R7$(3),t.SpI(" ",b.loginErrorMessage," ")}}function Lf(O,H){if(1&O&&(t.j41(0,"p",23)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&O){const b=t.XpG();t.R7$(3),t.SpI(" ",b.logoutReason," ")}}let _1=(()=>{class O{constructor(b,U,G,Oe,It){this.actions=b,this.logger=U,this.store=G,this.rtlEffects=Oe,this.commonService=It,this.faUnlockAlt=nn.HEq,this.logoutReason="",this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=Wt.f7,this.loginErrorMessage="",this.apiCallStatusEnum=Wt.wn,this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,rd.z)([this.store.select(Gr.Kq),this.store.select(Gr.E2)]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(([b,U])=>{this.loginErrorMessage="",b.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof b.message?JSON.stringify(b.message):b.message),this.logger.error(b.message)),U.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof U.message?JSON.stringify(U.message):U.message),this.logger.error(U.message))}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.appConfig=b,this.logger.info(b)}),this.actions.pipe((0,vr.p)(b=>b.type===Wt.aU.LOGOUT),(0,$s.s)(1)).subscribe(b=>{this.logoutReason=b.payload})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.logoutReason="",this.appConfig.enable2FA?(this.store.dispatch((0,Cn.xO)({payload:{maxWidth:"35rem",data:{component:L2}}})),this.rtlEffects.closeAlert.pipe((0,$s.s)(1)).subscribe(b=>{b&&this.store.dispatch((0,Cn.iD)({payload:{password:on(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase()),twoFAToken:b.twoFAToken}}))})):this.store.dispatch((0,Cn.iD)({payload:{password:on(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.logoutReason="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(lt.En),t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(_r.H),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-login"]],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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card",3)(3,"div",4)(4,"div",5),t.nrm(5,"img",6),t.k0s(),t.j41(6,"div",7)(7,"mat-card-header",8)(8,"mat-card-title",9)(9,"span",10),t.EFF(10,"Welcome"),t.k0s()()(),t.j41(11,"mat-card-content",11)(12,"form",12,0)(14,"mat-form-field")(15,"mat-label"),t.EFF(16,"Password"),t.k0s(),t.j41(17,"input",13),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.password,Lt)||(G.password=Lt),t.Njj(Lt)}),t.k0s(),t.j41(18,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.flgShow=!G.flgShow)}),t.j41(19,"mat-icon"),t.EFF(20),t.k0s()(),t.DNE(21,u4,2,0,"mat-error",15),t.k0s(),t.DNE(22,wd,4,1,"p",16)(23,Lf,4,1,"p",17),t.j41(24,"div",18)(25,"button",19),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.resetData())}),t.EFF(26,"Clear"),t.k0s(),t.j41(27,"button",20),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLogin())}),t.EFF(28,"Login"),t.k0s()()()()()()()()()}2&U&&(t.R7$(6),t.Y8G("ngClass",t.eq3(9,kf,G.screenSize===G.screenSizeEnum.XS)),t.R7$(2),t.Y8G("ngClass",t.l_i(11,g1,G.screenSize===G.screenSizeEnum.XS,G.screenSize!==G.screenSizeEnum.XS)),t.R7$(9),t.Y8G("type",G.flgShow?"text":"password"),t.R50("ngModel",G.password),t.R7$(),t.BMQ("aria-label","Hide password"),t.R7$(2),t.JRh(G.flgShow?"visibility_off":"visibility"),t.R7$(),t.Y8G("ngIf",!G.password),t.R7$(),t.Y8G("ngIf",""!==G.loginErrorMessage),t.R7$(),t.Y8G("ngIf",""!==G.logoutReason))},dependencies:[ri.YU,ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,ve.iY,mr.RN,mr.m2,mr.MM,mr.dh,Vc.An,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pe.yw,Ot.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 O})();var I2=g(13);let R2=(()=>{class O{constructor(b,U){this.activatedRoute=b,this.router=U,this.error={errorCode:"",errorMessage:""},this.faTimes=nn.GRI,this.unsubs=[new Gi.B,new Gi.B]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,dn.Q)(this.unsubs[0])).subscribe(b=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.nX),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-error"]],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(U,G){1&U&&(t.j41(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),t.nrm(4,"fa-icon",4),t.j41(5,"span",5),t.EFF(6),t.k0s()()(),t.j41(7,"mat-card-content",6)(8,"div",7),t.EFF(9),t.k0s(),t.j41(10,"span",8)(11,"button",9),t.bIt("click",function(){return G.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()),2&U&&(t.R7$(4),t.Y8G("icon",G.faTimes),t.R7$(2),t.SpI("Error ",G.error.errorCode,""),t.R7$(3),t.JRh(G.error.errorMessage))},dependencies:[ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,mr.MM,mr.dh],encapsulation:2})}return O})();var No=g(7186),O2=g(1534),F2=g(92),N2=g(6114);const Md=(O,H)=>({"alert-danger":O,"alert-info":H});function yh(O,H){1&O&&t.nrm(0,"span",17)}function Ed(O,H){1&O&&t.nrm(0,"span",18)}function xh(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",19,0)(2,"div",20),t.nrm(3,"fa-icon",4),t.j41(4,"span"),t.EFF(5,"Please ensure that "),t.j41(6,"strong"),t.EFF(7,"experimental-offers"),t.k0s(),t.EFF(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(9,"strong")(10,"a",21),t.EFF(11,"here"),t.k0s()(),t.EFF(12," to learn more about Core Lightning offers."),t.k0s()(),t.j41(13,"h4",22),t.EFF(14,"Description"),t.k0s(),t.j41(15,"span"),t.EFF(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),t.k0s(),t.j41(17,"h4",22),t.EFF(18,"Links"),t.k0s(),t.j41(19,"span")(20,"a",23),t.EFF(21,"Core lightning Bolt12"),t.k0s()(),t.nrm(22,"mat-divider",24),t.j41(23,"div",25),t.nrm(24,"fa-icon",4),t.j41(25,"span"),t.EFF(26,"Do not get an Offer tattoo until spec is fully ratified!"),t.k0s()(),t.j41(27,"mat-slide-toggle",26),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.enableOffers,G)||(Oe.enableOffers=G),t.Njj(G)}),t.bIt("change",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onUpdateFeature())}),t.EFF(28),t.k0s()()}if(2&O){const b=t.XpG(2);t.R7$(3),t.Y8G("icon",b.faInfoCircle),t.R7$(19),t.Y8G("inset",!0),t.R7$(2),t.Y8G("icon",b.faExclamationTriangle),t.R7$(3),t.R50("ngModel",b.enableOffers),t.R7$(),t.SpI("Enable Offers ",b.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"","")}}function P2(O,H){if(1&O&&(t.j41(0,"div")(1,"div",29),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"experimental-dual-fund"),t.k0s(),t.EFF(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(8,"strong")(9,"a",30),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about Core Lightning Liquidity Ads."),t.k0s()()()),2&O){const b=t.XpG(3);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle)}}function Ch(O,H){if(1&O&&(t.j41(0,"mat-option",47),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ",t.bMT(2,2,b.id)," ")}}function wh(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.SpI("",b.selPolicyType.placeholder," is required.")}}function Sd(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.Lme("",b.selPolicyType.placeholder," must be greater than or equal to ",b.selPolicyType.min,".")}}function V2(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.Lme("",b.selPolicyType.placeholder," must be less than or equal to ",b.selPolicyType.max,".")}}function gl(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base fee is required."),t.k0s())}function If(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base basis is required."),t.k0s())}function Mh(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing base fee is required."),t.k0s())}function f4(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing fee rate is required."),t.k0s())}function v1(O,H){if(1&O&&(t.j41(0,"h4",48)(1,"span",49),t.EFF(2),t.k0s()()),2&O){const b=t.XpG(4);t.R7$(),t.Y8G("ngClass",t.l_i(2,Md,!!b.updateMsg.error,!!b.updateMsg.data)),t.R7$(),t.SpI(" ",b.updateMsg.error&&""!==b.updateMsg.error?"Error: "+b.updateMsg.error||0:b.updateMsg.data&&""!==b.updateMsg.data?b.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function H2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",31)(1,"div",32),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.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."),t.k0s()(),t.j41(5,"div",33)(6,"mat-form-field",34)(7,"mat-label"),t.EFF(8,"Policy"),t.k0s(),t.j41(9,"mat-select",35),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.selPolicyType,G)||(Oe.selPolicyType=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.policyMod=null)}),t.DNE(10,Ch,3,4,"mat-option",36),t.k0s()(),t.j41(11,"mat-form-field",37)(12,"mat-label"),t.EFF(13),t.k0s(),t.j41(14,"input",38,1),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.policyMod,G)||(Oe.policyMod=G),t.Njj(G)}),t.k0s(),t.j41(16,"mat-hint"),t.EFF(17),t.k0s(),t.DNE(18,wh,2,1,"mat-error",27)(19,Sd,2,2,"mat-error",27)(20,V2,2,2,"mat-error",27),t.k0s()(),t.j41(21,"div",33)(22,"mat-form-field",37)(23,"mat-label"),t.EFF(24,"Lease Base Fee (Sats)"),t.k0s(),t.j41(25,"input",39),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_base_sat,G)||(Oe.lease_fee_base_sat=G),t.Njj(G)}),t.k0s(),t.DNE(26,gl,2,0,"mat-error",27),t.k0s(),t.j41(27,"mat-form-field",37)(28,"mat-label"),t.EFF(29,"Lease Base Basis (bps)"),t.k0s(),t.j41(30,"input",40),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_basis,G)||(Oe.lease_fee_basis=G),t.Njj(G)}),t.k0s(),t.DNE(31,If,2,0,"mat-error",27),t.k0s()(),t.j41(32,"div",33)(33,"mat-form-field",37)(34,"mat-label"),t.EFF(35,"Max Channel Routing Base Fee (Sats)"),t.k0s(),t.j41(36,"input",41),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxBaseSat,G)||(Oe.channelFeeMaxBaseSat=G),t.Njj(G)}),t.k0s(),t.DNE(37,Mh,2,0,"mat-error",27),t.k0s(),t.j41(38,"mat-form-field",37)(39,"mat-label"),t.EFF(40,"Max Channel Routing Fee Rate (ppm)"),t.k0s(),t.j41(41,"input",42),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxProportional,G)||(Oe.channelFeeMaxProportional=G),t.Njj(G)}),t.k0s(),t.DNE(42,f4,2,0,"mat-error",27),t.k0s()(),t.DNE(43,v1,3,5,"h4",43),t.j41(44,"div",44)(45,"button",45),t.bIt("click",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.onResetPolicy())}),t.EFF(46,"Reset"),t.k0s(),t.j41(47,"button",46),t.bIt("click",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.onUpdateFundingPolicy())}),t.EFF(48,"Update"),t.k0s()()()}if(2&O){const b=t.XpG(3);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle),t.R7$(7),t.R50("ngModel",b.selPolicyType),t.R7$(),t.Y8G("ngForOf",b.policyTypes),t.R7$(3),t.JRh(b.selPolicyType.placeholder),t.R7$(),t.Y8G("step","fixed"===b.selPolicyType.id?1e3:10)("min",b.selPolicyType.min)("max",b.selPolicyType.max),t.R50("ngModel",b.policyMod),t.R7$(3),t.E5c("",b.selPolicyType.placeholder," should be between ",b.selPolicyType.min," and ",b.selPolicyType.max,""),t.R7$(),t.Y8G("ngIf",!b.policyMod),t.R7$(),t.Y8G("ngIf",b.policyModb.selPolicyType.max),t.R7$(5),t.R50("ngModel",b.lease_fee_base_sat),t.R7$(),t.Y8G("ngIf",!b.lease_fee_base_sat),t.R7$(4),t.R50("ngModel",b.lease_fee_basis),t.R7$(),t.Y8G("ngIf",!b.lease_fee_basis),t.R7$(5),t.R50("ngModel",b.channelFeeMaxBaseSat),t.R7$(),t.Y8G("ngIf",!b.channelFeeMaxBaseSat),t.R7$(4),t.R50("ngModel",b.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",!b.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",b.flgUpdateCalled)}}function Eh(O,H){if(1&O&&(t.j41(0,"form",19,0),t.DNE(2,P2,12,1,"div",27)(3,H2,49,23,"div",28),t.k0s()),2&O){const b=t.XpG(2);t.R7$(2),t.Y8G("ngIf",!b.features[1].enabled),t.R7$(),t.Y8G("ngIf",b.features[1].enabled)}}function Sh(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-expansion-panel",10),t.bIt("opened",function(){const G=t.eBV(b).index,Oe=t.XpG();return t.Njj(Oe.onPanelExpanded(G))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title",11)(3,"h4",12),t.EFF(4),t.k0s(),t.j41(5,"h4",12),t.DNE(6,yh,1,0,"span",13)(7,Ed,1,0,"span",14),t.EFF(8),t.k0s()()(),t.j41(9,"div",15),t.DNE(10,xh,29,5,"form",16)(11,Eh,4,2,"form",16),t.k0s()()}if(2&O){const b=H.$implicit,U=H.index;t.Y8G("expanded",!1),t.R7$(4),t.JRh(b.name),t.R7$(2),t.Y8G("ngIf",b.enabled),t.R7$(),t.Y8G("ngIf",!b.enabled),t.R7$(),t.SpI(" ",b.enabled?"Enabled":"Disabled"," "),t.R7$(2),t.Y8G("ngIf",0===U),t.R7$(),t.Y8G("ngIf",1===U)}}let Th=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.store=U,this.dataService=G,this.commonService=Oe,this.faInfoCircle=nn.iW_,this.faExclamationTriangle=nn.zpE,this.faCode=nn.jTw,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=Wt.ul,this.selPolicyType=Wt.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,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.logger.info("Received List Configs: "+JSON.stringify(b)),this.features[1].enabled=!!b["experimental-dual-fund"]},error:b=>{this.logger.error("List Configs Error: "+JSON.stringify(b)),this.features[1].enabled=!1}}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(dd.Al).pipe((0,dn.Q)(this.unSubs[2])).subscribe(b=>{this.policyTypes[2].max=b.balance.totalBalance||1e3})}onPanelExpanded(b){1===b&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,dn.Q)(this.unSubs[3])).subscribe(U=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(U)),this.fundingPolicy=U,this.fundingPolicy.policy&&(this.selPolicyType=Wt.ul.find(G=>G.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,Cn.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,dn.Q)(this.unSubs[4])).subscribe({next:b=>{this.logger.info(b),this.fundingPolicy=b,this.updateMsg={data:"Compact Lease: "+b.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:b=>{this.logger.error(b),this.updateMsg={error:this.commonService.extractErrorMessage(b,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?Wt.ul.find(b=>b.id===this.fundingPolicy.policy)||this.policyTypes[0]:Wt.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(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(O2.u),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-experimental-settings"]],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(U,G){1&U&&(t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.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."),t.k0s()(),t.j41(5,"form",5,0)(7,"div",6),t.nrm(8,"fa-icon",7),t.j41(9,"span",8),t.EFF(10,"Features"),t.k0s()(),t.j41(11,"mat-accordion"),t.DNE(12,Sh,12,7,"mat-expansion-panel",9),t.k0s()()()),2&U&&(t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.Y8G("icon",G.faCode),t.R7$(4),t.Y8G("ngForOf",G.features))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.Q0,Wi.BC,Wi.cb,Wi.YS,Wi.VZ,Wi.zX,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pc.q,xe.VO,Be.wT,e2.sG,ft.Ld,Ot.N,F2.z,N2.V,ri.PV],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})(),_l=(()=>{class O{constructor(){}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-no-service-found"]],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(U,G){1&U&&(t.j41(0,"div",0)(1,"mat-card")(2,"mat-card-content",1)(3,"div",2)(4,"div",3),t.EFF(5,"No Service Found!"),t.k0s()()()()())},dependencies:[$i.DJ,$i.sA,mr.RN,mr.m2],encapsulation:2})}return O})();const b1=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([g.e(193),g.e(190)]).then(g.bind(g,9190)).then(O=>O.LNDModule),canActivate:[(0,No.q_)()]},{path:"cln",loadChildren:()=>Promise.all([g.e(193),g.e(853)]).then(g.bind(g,4853)).then(O=>O.CLNModule),canActivate:[(0,No.q_)()]},{path:"ecl",loadChildren:()=>Promise.all([g.e(193),g.e(17)]).then(g.bind(g,9017)).then(O=>O.ECLModule),canActivate:[(0,No.q_)()]},{path:"settings",component:b0,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:vi,canActivate:[(0,No.q_)()]},{path:"auth",component:Bd,canActivate:[(0,No.q_)()]},{path:"bconfig",component:Uu,canActivate:[(0,No.q_)()]}]},{path:"config",component:Z3,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:Mc,canActivate:[(0,No.q_)()]},{path:"pglayout",component:Ec,canActivate:[(0,No.q_)()]},{path:"services",component:o2,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:zc,canActivate:[(0,No.q_)()]},{path:"boltz",component:Ju,canActivate:[(0,No.q_)()]},{path:"noservice",component:_l}]},{path:"experimental",component:Th,canActivate:[(0,No.q_)()]},{path:"lnconfig",component:Bl,canActivate:[(0,No.q_)()]}]},{path:"services",component:qu,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:B0},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:gh}]},{path:"help",component:vh},{path:"login",component:_1},{path:"error",component:R2},{path:"**",component:I2.X}],Rf=En.iI.forRoot(b1,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var Of=g(9029),Ff=g(9881),Nf=g(9183),Ws=g(882),Xc=g(5911),z2=g(4109),nc=g(7358);const Yc={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/lnd/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/lnd/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/lnd/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/lnd/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/lnd/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/lnd/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/lnd/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/lnd/graph",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.pCJ,link:"/lnd/messages",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:nn.cbP,link:"/lnd/channelbackup",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Network",iconType:"FA",icon:nn.qFF,link:"/lnd/network",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:nn.D6w,link:"/lnd/network",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:nn.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:nn.C8j,link:"/services/loop",userPersona:Wt.HW.ALL},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/cln/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/cln/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/cln/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/cln/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:nn.e4L,link:"/cln/liquidityads",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/cln/transactions",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/cln/routing",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/cln/reports",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/cln/graph",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.pCJ,link:"/cln/messages",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:nn.WKo,link:"/cln/rates",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:nn.D6w,link:"/cln/rates",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:nn.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/ecl/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/ecl/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/ecl/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/ecl/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/ecl/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/ecl/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/ecl/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/ecl/graph",userPersona:Wt.HW.ALL}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}]};function Dh(O,H){if(1&O&&(t.j41(0,"mat-option",12),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.index),t.R7$(),t.Lme(" ",b.lnNode," (",b.lnImplementation,") ")}}function Ah(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-select",10),t.bIt("selectionChange",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onNodeSelectionChange(G.value))}),t.j41(1,"perfect-scrollbar"),t.DNE(2,Dh,2,3,"mat-option",11),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("value",b.selConfigNodeIndex),t.R7$(2),t.Y8G("ngForOf",b.appConfig.nodes)}}function kh(O,H){if(1&O&&(t.j41(0,"span",21),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.XpG(2);const U=t.sdS(11);t.R7$(),t.Y8G("ngTemplateOutlet","boltzIconBlock"===b.icon?U:null)}}function Lh(O,H){if(1&O&&t.nrm(0,"fa-icon",23),2&O){const b=t.XpG().$implicit;t.Y8G("icon",b.icon)}}function Vf(O,H){if(1&O&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b.icon)}}function Ih(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",15)(1,"div",16),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onChildNavClicked(G))}),t.j41(2,"div",17),t.DNE(3,kh,2,1,"span",18)(4,Lh,1,1,"fa-icon",19)(5,Vf,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()()()()}if(2&O){const b=H.$implicit;t.FS9("routerLink",b.link),t.R7$(3),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name)}}function y1(O,H){if(1&O&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function kc(O,H){if(1&O&&t.nrm(0,"fa-icon",23),2&O){const b=t.XpG().$implicit;t.Y8G("icon",b.icon)}}function Td(O,H){if(1&O&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b.icon)}}function Rh(O,H){if(1&O&&(t.j41(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),t.DNE(3,y1,2,1,"span",28)(4,kc,1,1,"fa-icon",19)(5,Td,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"button",29)(9,"mat-icon"),t.EFF(10),t.k0s()()(),t.j41(11,"div",30),t.eu8(12,31),t.k0s()()),2&O){const b=H.$implicit,U=t.XpG(2);t.R7$(3),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name),t.R7$(),t.BMQ("aria-label","toggle "+b.name),t.R7$(2),t.JRh(U.treeControlNested.isExpanded(b)?"arrow_drop_up":"arrow_drop_down"),t.R7$(),t.AVh("tree-children-invisible",!U.treeControlNested.isExpanded(b))}}function x1(O,H){if(1&O&&(t.j41(0,"mat-tree",7,1),t.DNE(2,Ih,8,5,"mat-tree-node",13)(3,Rh,13,8,"mat-nested-tree-node",14),t.k0s()),2&O){const b=t.XpG();t.Y8G("dataSource",b.navMenus)("treeControl",b.treeControlNested),t.R7$(3),t.Y8G("matTreeNodeDefWhen",b.hasChild)}}function Oh(O,H){if(1&O&&(t.j41(0,"span",37),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function p4(O,H){if(1&O&&t.nrm(0,"fa-icon",38),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.Y8G("icon",b.icon)}}function Fh(O,H){if(1&O&&(t.j41(0,"mat-icon",39),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.R7$(),t.JRh(b.icon)}}function g4(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onShowData(G))}),t.DNE(1,Oh,2,1,"span",34)(2,p4,1,2,"fa-icon",35)(3,Fh,2,2,"mat-icon",36),t.j41(4,"span"),t.EFF(5),t.k0s()()}if(2&O){const b=H.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name)}}function B2(O,H){if(1&O&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function U2(O,H){if(1&O&&t.nrm(0,"fa-icon",38),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.Y8G("icon",b.icon)}}function Hf(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onClick(G))}),t.DNE(1,B2,2,1,"span",28)(2,U2,1,2,"fa-icon",35),t.j41(3,"span"),t.EFF(4),t.k0s()()}if(2&O){const b=H.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(2),t.JRh(b.name)}}function _4(O,H){if(1&O&&(t.j41(0,"mat-tree",7),t.DNE(1,Hf,5,3,"mat-tree-node",8),t.k0s()),2&O){const b=t.XpG();t.Y8G("dataSource",b.navMenusLogout)("treeControl",b.treeControlLogout)}}function Nh(O,H){1&O&&(t.qSk(),t.j41(0,"svg",40)(1,"g",41)(2,"g",42),t.nrm(3,"circle",43)(4,"path",44)(5,"path",45),t.k0s()()())}let v4=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.logger=b,this.commonService=U,this.sessionService=G,this.store=Oe,this.actions=It,this.rtlEffects=Lt,this.ChildNavClicked=new t.bkB,this.faEject=nn.njF,this.faEye=nn.pS3,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:nn.njF}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:nn.pS3}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=Wt.HW,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B],this.treeControlNested=new z2.XO(oi=>oi.children),this.treeControlLogout=new z2.XO(oi=>oi.children),this.treeControlShowData=new z2.XO(oi=>oi.children),this.navMenus=new nc.Zh,this.navMenusLogout=new nc.Zh,this.navMenusShowData=new nc.Zh,this.hasChild=(oi,ci)=>!!ci.children&&ci.children.length>0,this.version=Wt.xv,Yc.LNDChildren&&200===Yc.LNDChildren[Yc.LNDChildren.length-1].id&&Yc.LNDChildren.pop(),this.navMenus.data=Yc.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const b=this.sessionService.getItem("token");this.showLogout=!!b,this.flgLoading=!!b,this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr.Az).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{if(this.information=U.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 G=this.information.chains[0];this.informationChain.chain=G.chain,this.informationChain.network=G.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=U.selNode,this.selConfigNodeIndex=+(U.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(U)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{this.showLogout=!!U.token,this.flgLoading=!!U.token}),this.actions.pipe((0,dn.Q)(this.unSubs[3]),(0,vr.p)(U=>U.type===Wt.aU.LOGOUT)).subscribe(U=>{this.showLogout=!1})}onClick(b){"Logout"===b.name&&(this.store.dispatch((0,Cn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[4])).subscribe(U=>{U&&(this.showLogout=!1,this.store.dispatch((0,Cn.ri)({payload:""})))})),this.ChildNavClicked.emit(b)}onChildNavClicked(b){this.ChildNavClicked.emit(b)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){let b=[];b=JSON.parse(JSON.stringify(Yc.LNDChildren)),this.navMenus.data=b?.filter(U=>U.children&&U.children.length?(U.children=U.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/loop"!==G.link&&"/services/boltz"!==G.link||"/services/loop"===G.link&&this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),U.children.length>0):U.userPersona===Wt.HW.ALL||U.userPersona===this.selNode.settings.userPersona)}loadCLNMenu(){let b=[];b=JSON.parse(JSON.stringify(Yc.CLNChildren)),this.navMenus.data=b?.filter(U=>U.children&&U.children.length?(U.children=U.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/peerswap"!==G.link||"/services/peerswap"===G.link&&this.selNode.settings.enablePeerswap||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),U.children.length>0):U.userPersona===Wt.HW.ALL||U.userPersona===this.selNode.settings.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Yc.ECLChildren))}onShowData(b){this.store.dispatch((0,Cn.OP)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(b){const U=this.selConfigNodeIndex;this.selConfigNodeIndex=b;const G=this.appConfig.nodes.find(Oe=>+Oe.index===b);this.store.dispatch((0,Cn.Qi)({payload:{uiMessage:Wt.MZ.UPDATE_SELECTED_NODE,prevLnNodeIndex:+U,currentLnNode:G||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(qa.Q),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(_r.H))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-side-navigation"]],viewQuery:function(U,G){if(1&U&&t.GBs(nc.lQ,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.tree=Oe.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},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"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["matTreeNodeToggle","","routerLinkActive","active-link",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,"icon","matTooltip",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,"icon","matTooltip"],["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(U,G){1&U&&(t.j41(0,"div",2)(1,"div",3),t.DNE(2,Ah,3,2,"mat-select",4),t.nrm(3,"mat-divider",5),t.DNE(4,x1,4,3,"mat-tree",6),t.nrm(5,"mat-divider",5),t.j41(6,"mat-tree",7),t.DNE(7,g4,6,4,"mat-tree-node",8),t.k0s()(),t.j41(8,"div",9),t.DNE(9,_4,2,2,"mat-tree",6),t.k0s()(),t.DNE(10,Nh,6,0,"ng-template",null,0,t.C5r)),2&U&&(t.R7$(2),t.Y8G("ngIf",G.appConfig.nodes.length>1),t.R7$(2),t.Y8G("ngIf",null==G.selNode.settings?null:G.selNode.settings.lnServerUrl),t.R7$(2),t.Y8G("dataSource",G.navMenusShowData)("treeControl",G.treeControlShowData),t.R7$(3),t.Y8G("ngIf",G.showLogout))},dependencies:[ri.Sq,ri.bT,ri.T3,ya.aY,$i.DJ,$i.sA,$i.UI,ve.iY,Vc.An,Pc.q,nc.q1,nc.yI,nc.pO,nc.lQ,nc.d6,nc.wx,xe.VO,Be.wT,ic.oV,En.Wk,En.wQ,ft.ZF,ft.Ld],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]})}return O})();var Dd=g(9115);function b4(O,H){if(1&O&&(t.j41(0,"p",14),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faCode),t.R7$(2),t.SpI("API Version: ",null==b.information?null:b.information.api_version,"")}}function vl(O,H){if(1&O&&(t.j41(0,"p",15),t.nrm(1,"fa-icon",3),t.j41(2,"span",16),t.EFF(3,"Settings"),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faUserCog)}}function y4(O,H){if(1&O&&(t.j41(0,"p",17),t.nrm(1,"fa-icon",3),t.j41(2,"span",18),t.EFF(3,"Help"),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faQuestion)}}function zf(O,H){if(1&O){const b=t.RV6();t.j41(0,"p",19),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onClick())}),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3,"Logout"),t.k0s()()}if(2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faEject)}}let Ph=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.sessionService=U,this.store=G,this.rtlEffects=Oe,this.actions=It,this.faUserCog=nn.McB,this.faCodeBranch=nn.Xbc,this.faCode=nn.jTw,this.faCog=nn.dB,this.faQuestion=nn.EvL,this.faEject=nn.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=Wt.xv}ngOnInit(){this.store.select(Gr.N).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{if(this.information=b,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 U=this.information.chains[0];this.informationChain.chain=U.chain,this.informationChain.network=U.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(b)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.showLogout=!!b.token,this.flgLoading=!!b.token}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(b=>b.type===Wt.aU.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Cn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{b&&(this.showLogout=!1,this.store.dispatch((0,Cn.ri)({payload:""})))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(qa.Q),t.rXU(Ri.il),t.rXU(_r.H),t.rXU(lt.En))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-top-menu"]],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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"mat-menu",1,0)(2,"p",2),t.nrm(3,"fa-icon",3),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.DNE(6,b4,4,2,"p",4)(7,vl,4,1,"p",5)(8,y4,4,1,"p",6),t.j41(9,"p",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onDonate())}),t.qSk(),t.j41(10,"svg",8)(11,"g"),t.nrm(12,"path",9),t.k0s()(),t.joV(),t.j41(13,"span"),t.EFF(14,"Donate"),t.k0s()(),t.DNE(15,zf,4,1,"p",10),t.k0s(),t.j41(16,"button",11),t.nrm(17,"img",12),t.j41(18,"mat-icon",13),t.EFF(19,"arrow_drop_down"),t.k0s()()}if(2&U){const Oe=t.sdS(1);t.Y8G("overlapTrigger",!1),t.R7$(3),t.Y8G("icon",G.faCodeBranch),t.R7$(2),t.SpI("Version: ",G.version,""),t.R7$(),t.Y8G("ngIf",null==G.information?null:G.information.api_version),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(7),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("matMenuTriggerFor",Oe)}},dependencies:[ri.bT,ya.aY,$i.sA,ve.iY,Vc.An,Dd.kk,Dd.fb,Dd.Cp,En.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 O})();const Bf=["sideNavigation"],x4=["sideNavContent"],Vh=(O,H)=>[O,H];function G2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",15),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.sideNavToggle())}),t.j41(1,"mat-icon",16),t.EFF(2,"menu"),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("matTooltip",b.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",b.smallScreen)}}function j2(O,H){1&O&&(t.qSk(),t.nrm(0,"path",21))}function Hh(O,H){1&O&&(t.qSk(),t.nrm(0,"path",22))}function C4(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",17),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.flgSidenavPinned=!G.flgSidenavPinned)}),t.qSk(),t.j41(1,"svg",18),t.DNE(2,j2,1,0,"path",19)(3,Hh,1,0,"path",20),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("matTooltip",b.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),t.R7$(2),t.Y8G("ngIf",!b.flgSidenavPinned),t.R7$(),t.Y8G("ngIf",b.flgSidenavPinned)}}function Kc(O,H){if(1&O&&(t.j41(0,"span",23),t.EFF(1),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.JRh(b.information.alias?"RTL - "+b.information.alias:"RTL")}}function Uf(O,H){if(1&O&&(t.j41(0,"span",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.JRh(b.information.alias?"Ride The Lightning - "+b.information.alias:"Ride The Lightning")}}function zh(O,H){1&O&&(t.j41(0,"div",25),t.nrm(1,"mat-spinner",26),t.j41(2,"h4"),t.EFF(3,"Loading RTL..."),t.k0s()())}let Gf=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi,ci,Ui){this.logger=b,this.commonService=U,this.store=G,this.actions=Oe,this.userIdle=It,this.router=Lt,this.sessionService=oi,this.breakpointObserver=ci,this.renderer=Ui,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(b=>{b instanceof En.wF&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([oa.Rp.XSmall,oa.Rp.TabletPortrait,oa.Rp.Small,oa.Rp.Medium,oa.Rp.Large,oa.Rp.XLarge]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{b.breakpoints[oa.Rp.XSmall]?(this.commonService.setScreenSize(Wt.f7.XS),this.smallScreen=!0):b.breakpoints[oa.Rp.TabletPortrait]?(this.commonService.setScreenSize(Wt.f7.SM),this.smallScreen=!0):b.breakpoints[oa.Rp.Small]||b.breakpoints[oa.Rp.Medium]?(this.commonService.setScreenSize(Wt.f7.MD),this.smallScreen=!1):b.breakpoints[oa.Rp.Large]?(this.commonService.setScreenSize(Wt.f7.LG),this.smallScreen=!1):(this.commonService.setScreenSize(Wt.f7.XL),this.smallScreen=!1)}),this.store.dispatch((0,Cn.NU)()),this.accessKey=this.readAccessKey()||"",this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1),this.selNode=b}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[2])).subscribe(b=>{this.appConfig=b}),this.store.select(Gr.N).pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{this.information=b,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,dn.Q)(this.unSubs[4]),(0,vr.p)(b=>b.type===Wt.aU.FETCH_APPLICATION_SETTINGS||b.type===Wt.aU.LOGIN||b.type===Wt.aU.LOGOUT)).subscribe(b=>{b.type===Wt.aU.SET_APPLICATION_SETTINGS&&(this.sessionService.getItem("token")||(+b.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,Cn.iD)({payload:{password:on(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"],{state:{logoutReason:"Access key too short. It should be at least 32 characters long."}}))),b.type===Wt.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)),b.type===Wt.aU.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,dn.Q)(this.unSubs[5])).subscribe(b=>{this.logger.info("Counting Down: "+(11-b))}),this.userIdle.onTimeout().pipe((0,dn.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,Cn.Jh)()),this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Cn.ri)({payload:"Logging Out. Time limit exceeded for session inactivity."})))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const b=window.location.href;return b.includes("access-key=")?b.substring(b.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(b){this.smallScreen&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}backdropClicked(){(!this.flgSidenavPinned||this.smallScreen)&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}copiedText(b){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+b)}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(Vs),t.rXU(En.Ix),t.rXU(qa.Q),t.rXU(oa.QP),t.rXU(t.sFG))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-app"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Bf,5),t.GBs(x4,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sideNavigation=Oe.first),t.mGM(Oe=t.lsd())&&(G.sideNavContent=Oe.first)}},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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",3),t.nI1(1,"lowercase"),t.nI1(2,"lowercase"),t.j41(3,"mat-toolbar",4)(4,"div"),t.DNE(5,G2,3,2,"button",5)(6,C4,4,3,"button",6),t.k0s(),t.j41(7,"div"),t.DNE(8,Kc,2,1,"span",7)(9,Uf,2,1,"span",8),t.k0s(),t.j41(10,"div"),t.nrm(11,"rtl-top-menu"),t.k0s()(),t.j41(12,"mat-sidenav-container",9),t.bIt("backdropClick",function(){return t.eBV(Oe),t.Njj(G.backdropClicked())}),t.j41(13,"mat-sidenav",10,0)(15,"rtl-side-navigation",11),t.bIt("ChildNavClicked",function(Lt){return t.eBV(Oe),t.Njj(G.onNavigationClicked(Lt))}),t.k0s()(),t.j41(16,"mat-sidenav-content",12,1)(18,"div",13),t.nrm(19,"router-outlet",null,2),t.k0s()()(),t.DNE(21,zh,4,0,"div",14),t.k0s()}2&U&&(t.Y8G("ngClass",t.l_i(12,Vh,t.bMT(1,8,G.selNode.settings.themeColor),t.bMT(2,10,G.selNode.settings.themeMode))),t.R7$(5),t.Y8G("ngIf",G.flgLoggedIn),t.R7$(),t.Y8G("ngIf",!G.smallScreen&&G.flgLoggedIn),t.R7$(2),t.Y8G("ngIf",G.smallScreen),t.R7$(),t.Y8G("ngIf",!G.smallScreen),t.R7$(4),t.Y8G("opened",G.flgSideNavOpened&&G.flgLoggedIn)("mode",G.flgSidenavPinned&&!G.smallScreen?"side":"over"),t.R7$(8),t.Y8G("ngIf",!G.selNode.settings.themeColor))},dependencies:[ri.YU,ri.bT,$i.DJ,$i.sA,$i.UI,ds.PW,ve.iY,Vc.An,Nf.LG,Ws.LG,Ws.US,Ws.El,Xc.KQ,ic.oV,ft.Ld,v4,Ph,En.n3,ri.GH],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[Ff.E]}})}return O})(),C1=(()=>{class O{constructor(b){this.sessionService=b}intercept(b,U){if(this.sessionService.getItem("token")){const G=b.clone({headers:b.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return U.handle(G)}return U.handle(b)}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(qa.Q))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();var w4=g(7879),M4=g(9579),E4=g(283),Bh=g(3017);const Uh={userPersona:Wt.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"},jf={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},Gh={apiURL:"",apisCallStatus:{Login:{status:Wt.wn.UN_INITIATED},IsAuthorized:{status:Wt.wn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:Uh,authentication:jf,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,SSO:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,secret2FA:"",allowPasswordUpdate:!0,nodes:[{settings:Uh,authentication:jf}]},nodeData:{}},Ad=(0,Ri.vy)(Gh,(0,Ri.on)(Cn.Gd,(O,{payload:H})=>{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Cn.Tn,(O,{payload:H})=>({...Gh,apisCallStatus:O.apisCallStatus,appConfig:O.appConfig,selNode:H})),(0,Ri.on)(Cn.Np,(O,{payload:H})=>({...O,selNode:H})),(0,Ri.on)(Cn.Fl,(O,{payload:H})=>({...O,nodeData:H})),(0,Ri.on)(Cn.IK,(O,{payload:H})=>({...O,appConfig:H}))),jh={apisCallStatus:{FetchPageSettings:{status:Wt.wn.UN_INITIATED},FetchInfo:{status:Wt.wn.UN_INITIATED},FetchFees:{status:Wt.wn.UN_INITIATED},FetchPeers:{status:Wt.wn.UN_INITIATED},FetchClosedChannels:{status:Wt.wn.UN_INITIATED},FetchPendingChannels:{status:Wt.wn.UN_INITIATED},FetchAllChannels:{status:Wt.wn.UN_INITIATED},FetchBalanceBlockchain:{status:Wt.wn.UN_INITIATED},FetchInvoices:{status:Wt.wn.UN_INITIATED},FetchPayments:{status:Wt.wn.UN_INITIATED},FetchForwardingHistory:{status:Wt.wn.UN_INITIATED},FetchUTXOs:{status:Wt.wn.UN_INITIATED},FetchTransactions:{status:Wt.wn.UN_INITIATED},FetchLightningTransactions:{status:Wt.wn.UN_INITIATED},FetchNetwork:{status:Wt.wn.UN_INITIATED}},pageSettings:Wt.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 Wh=!1,Xh=!1;const Wf=(0,Ri.vy)(jh,(0,Ri.on)(Pa.e8,(O,{payload:H})=>{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Pa.p1,O=>({...jh})),(0,Ri.on)(Pa.x1,(O,{payload:H})=>({...O,information:H})),(0,Ri.on)(Pa.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(Pa.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.pub_key===H.pubkey);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(Pa.Jx,(O,{payload:H})=>{const b=O.listInvoices;return b.invoices?.unshift(H),{...O,listInvoices:b}}),(0,Ri.on)(Pa.Dq,(O,{payload:H})=>{const b=O.listInvoices;return b.invoices=b.invoices?.map(U=>U.payment_request===H.payment_request?H:U),{...O,listInvoices:b}}),(0,Ri.on)(Pa._$,(O,{payload:H})=>{const b=O.listPayments;return b.payments=b.payments?.map(U=>U.payment_hash===H.payment_hash?H:U),{...O,listPayments:b}}),(0,Ri.on)(Pa.Uo,(O,{payload:H})=>({...O,fees:H})),(0,Ri.on)(Pa.z2,(O,{payload:H})=>({...O,closedChannels:H})),(0,Ri.on)(Pa.cU,(O,{payload:H})=>({...O,pendingChannels:H.pendingChannels,pendingChannelsSummary:H.pendingChannelsSummary})),(0,Ri.on)(Pa.dv,(O,{payload:H})=>{let b=0,U=0,G=0,Oe=0,It=0,Lt=0;return H&&H.forEach(oi=>{oi.local_balance||(oi.local_balance=0),!0===oi.active?(It+=+oi.local_balance,G+=1,oi.local_balance?b=+b+ +oi.local_balance:oi.local_balance=0,oi.remote_balance?U=+U+ +oi.remote_balance:oi.remote_balance=0):(Lt+=+oi.local_balance,Oe+=1)}),{...O,channels:H,channelsSummary:{active:{num_channels:G,capacity:It},inactive:{num_channels:Oe,capacity:Lt}},lightningBalance:{local:b,remote:U}}}),(0,Ri.on)(Pa.cR,(O,{payload:H})=>{const b=[...O.channels],U=O.channels.findIndex(G=>G.channel_point===H.channelPoint);return U>-1&&b.splice(U,1),{...O,channels:b}}),(0,Ri.on)(Pa.DI,(O,{payload:H})=>({...O,blockchainBalance:H})),(0,Ri.on)(Pa.J9,(O,{payload:H})=>({...O,networkInfo:H})),(0,Ri.on)(Pa.$6,(O,{payload:H})=>(H.total_invoices||(H.total_invoices=O.listInvoices.total_invoices),{...O,listInvoices:H})),(0,Ri.on)(Pa.As,(O,{payload:H})=>{if(Wh=!0,H.length&&Xh){const b=[...O.utxos];return b.forEach(U=>{const G=H.find(Oe=>Oe.tx_hash===U.outpoint?.txid_str);U.label=G&&G.label?G.label:""}),{...O,utxos:b,transactions:H}}return{...O,transactions:H}}),(0,Ri.on)(Pa.O8,(O,{payload:H})=>{if(Xh=!0,H.length&&Wh){const b=[...O.transactions];H.forEach(U=>{const G=b.find(Oe=>Oe.tx_hash===U.outpoint?.txid_str);U.label=G&&G.label?G.label:""})}return{...O,utxos:H}}),(0,Ri.on)(Pa.Uj,(O,{payload:H})=>{const b={listInvoicesAll:O.allLightningTransactions.listInvoicesAll,listPaymentsAll:H};return{...O,listPayments:H,allLightningTransactions:b}}),(0,Ri.on)(Pa.b1,(O,{payload:H})=>{const b={listInvoicesAll:H.listInvoicesAll,listPaymentsAll:O.listPayments};return{...O,allLightningTransactions:b}}),(0,Ri.on)(Pa.kv,(O,{payload:H})=>{const b=[...O.channels,...O.closedChannels];let U=H.forwarding_events?JSON.parse(JSON.stringify(H)):{};return U.forwarding_events&&(U=Yh(U,b)),{...O,forwardingHistory:U}}),(0,Ri.on)(Pa.NS,(O,{payload:H})=>{const b=[];return Wt.ZC.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),Yh=(O,H)=>(O.forwarding_events.forEach(b=>{if(H&&H.length>0)for(let U=0;U{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(xa.gf,O=>({...Xf})),(0,Ri.on)(xa.x1,(O,{payload:H})=>({...O,information:H,fees:{feeCollected:H.fees_collected_msat}})),(0,Ri.on)(xa.C2,(O,{payload:H})=>H.perkb?{...O,feeRatesPerKB:H}:H.perkw?{...O,feeRatesPerKW:H}:{...O}),(0,Ri.on)(xa.EM,(O,{payload:H})=>({...O,utxos:H.utxos||[],balance:H.balance,localRemoteBalance:H.localRemoteBalance})),(0,Ri.on)(xa.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(xa.We,(O,{payload:H})=>({...O,peers:[...O.peers,H]})),(0,Ri.on)(xa.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.id===H.id);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(xa.dv,(O,{payload:H})=>({...O,activeChannels:H.activeChannels,pendingChannels:H.pendingChannels,inactiveChannels:H.inactiveChannels})),(0,Ri.on)(xa.cR,(O,{payload:H})=>{const b=[...O.peers];return b.forEach(U=>{U.id===H.id&&(U.connected=!1,delete U.netaddr)}),{...O,peers:b}}),(0,Ri.on)(xa.Uj,(O,{payload:H})=>({...O,payments:H})),(0,Ri.on)(xa.kv,(O,{payload:H})=>{const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels],U=Yf(H.listForwards,b);switch(H.listForwards=U,H.status){case Wt.xk.SETTLED:const G=O.fees;return G.totalTxCount=H.totalForwards||0,{...O,fees:G,forwardingHistory:H};case Wt.xk.FAILED:return{...O,failedForwardingHistory:H};case Wt.xk.LOCAL_FAILED:return{...O,localFailedForwardingHistory:H};default:return{...O}}}),(0,Ri.on)(xa.Jx,(O,{payload:H})=>{const b=O.invoices;return b.invoices?.unshift(H),{...O,invoices:b}}),(0,Ri.on)(xa.$6,(O,{payload:H})=>({...O,invoices:H})),(0,Ri.on)(xa.Dq,(O,{payload:H})=>{const b=O.invoices;return b.invoices=b.invoices?.map(U=>(U.label===H.label&&(U.amount_received_msat=H.msat,U.payment_preimage=H.preimage,U.status="paid"),U)),{...O,invoices:b}}),(0,Ri.on)(xa.qw,(O,{payload:H})=>({...O,offers:H})),(0,Ri.on)(xa.kQ,(O,{payload:H})=>{const b=O.offers;return b?.unshift(H),{...O,offers:b}}),(0,Ri.on)(xa.Gz,(O,{payload:H})=>{const b=[...O.offers],U=O.offers.findIndex(G=>G.offer_id===H.offer.offer_id);return U>-1&&b.splice(U,1,H.offer),{...O,offers:b}}),(0,Ri.on)(xa.Qv,(O,{payload:H})=>({...O,offersBookmarks:H})),(0,Ri.on)(xa.Db,(O,{payload:H})=>{const b=[...O.offersBookmarks],U=b.findIndex(G=>G.bolt12===H.bolt12);if(U<0)b?.unshift(H);else{const G={...b[U]};G.title=H.title,G.amountMSat=H.amountMSat,G.lastUpdatedAt=H.lastUpdatedAt,G.description=H.description,G.issuer=H.issuer,b.splice(U,1,G)}return{...O,offersBookmarks:b}}),(0,Ri.on)(xa.NU,(O,{payload:H})=>{const b=[...O.offersBookmarks],U=O.offersBookmarks.findIndex(G=>G.bolt12===H.bolt12);return U>-1&&b.splice(U,1),{...O,offersBookmarks:b}}),(0,Ri.on)(xa.NS,(O,{payload:H})=>{const b=[];return Wt.mu.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),Yf=(O,H)=>(O&&O.length>0?O.forEach((b,U)=>{if(H&&H.length>0)for(let G=0;G{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Ca.Hh,O=>({...Kf})),(0,Ri.on)(Ca.x1,(O,{payload:H})=>({...O,information:H})),(0,Ri.on)(Ca.Uo,(O,{payload:H})=>({...O,fees:H})),(0,Ri.on)(Ca.Tp,(O,{payload:H})=>({...O,activeChannels:H})),(0,Ri.on)(Ca.cU,(O,{payload:H})=>({...O,pendingChannels:H})),(0,Ri.on)(Ca.I6,(O,{payload:H})=>({...O,inactiveChannels:H})),(0,Ri.on)(Ca.ZE,(O,{payload:H})=>({...O,channelsStatus:H})),(0,Ri.on)(Ca.Xx,(O,{payload:H})=>({...O,onchainBalance:H})),(0,Ri.on)(Ca.N8,(O,{payload:H})=>({...O,lightningBalance:H})),(0,Ri.on)(Ca.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(Ca.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.nodeId===H.nodeId);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(Ca.cR,(O,{payload:H})=>{const b=[...O.activeChannels],U=O.activeChannels.findIndex(G=>G.channelId===H.channelId);return U>-1&&b.splice(U,1),{...O,activeChannels:b}}),(0,Ri.on)(Ca.Uj,(O,{payload:H})=>{if(H&&H.sent){const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels];H.sent?.map(U=>{const G=O.peers.find(Oe=>Oe.nodeId===U.recipientNodeId);return U.recipientNodeAlias=G?G.alias:U.recipientNodeId,U.parts&&U.parts?.map(Oe=>{const It=b.find(Lt=>Lt.channelId===Oe.toChannelId);return Oe.toChannelAlias=It?It.alias:Oe.toChannelId,U.parts}),H.sent})}if(H&&H.relayed){const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels];H.relayed.forEach(U=>{U=w1(U,b)})}return{...O,payments:H}}),(0,Ri.on)(Ca.As,(O,{payload:H})=>({...O,transactions:H})),(0,Ri.on)(Ca.Jx,(O,{payload:H})=>{const b=O.invoices;return b?.unshift(H),{...O,invoices:b}}),(0,Ri.on)(Ca.$6,(O,{payload:H})=>({...O,invoices:H})),(0,Ri.on)(Ca.Dq,(O,{payload:H})=>{let b=O.invoices;return b=b?.map(U=>{if(U.paymentHash===H.paymentHash){if(H.hasOwnProperty("type")){const G=JSON.parse(JSON.stringify(U));return G.amountSettled=H.parts&&H.parts.length&&H.parts.length>0&&H.parts[0].amount?(H.parts[0].amount||0)/1e3:0,G.receivedAt=H.parts&&H.parts.length&&H.parts.length>0&&H.parts[0].timestamp?Math.round((H.parts[0].timestamp||0)/1e3):0,G.status="received",G}return H}return U}),{...O,invoices:b}}),(0,Ri.on)(Ca.gZ,(O,{payload:H})=>{let b=O.pendingChannels;return b=b?.map(U=>(U.channelId===H.channelId&&U.nodeId===H.remoteNodeId&&(H.currentState=H.currentState?.replace(/_/g," "),U.state=H.currentState),U)),{...O,pendingChannels:b}}),(0,Ri.on)(Ca.yn,(O,{payload:H})=>{const b=O.payments,U=w1(H,[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels]);b.relayed?.unshift(U);const G=(H.amountIn||0)-(H.amountOut||0),Oe={localBalance:O.lightningBalance.localBalance+G,remoteBalance:O.lightningBalance.remoteBalance-G},It=O.channelsStatus;It.active&&(It.active.capacity=(O.channelsStatus?.active?.capacity||0)+G);const Lt={daily_fee:(O.fees.daily_fee||0)+G,daily_txs:(O.fees.daily_txs||0)+1,weekly_fee:(O.fees.weekly_fee||0)+G,weekly_txs:(O.fees.weekly_txs||0)+1,monthly_fee:(O.fees.monthly_fee||0)+G,monthly_txs:(O.fees.monthly_txs||0)+1},oi=O.activeChannels;let ci=!1,Ui=!1;for(const Ti of oi){if(Ti.channelId===H.fromChannelId){ci=!0;const un=(Ti.toLocal||0)+(Ti.toRemote||0);Ti.toLocal=(Ti.toLocal||0)+U.amountIn,Ti.toRemote=(Ti.toRemote||0)-U.amountIn,Ti.balancedness=0===un?1:+(1-Math.abs((Ti.toLocal-Ti.toRemote)/un)).toFixed(3)}if(Ti.channelId===H.toChannelId){Ui=!0;const un=(Ti.toLocal||0)+(Ti.toRemote||0);Ti.toLocal=(Ti.toLocal||0)-U.amountOut,Ti.toRemote=(Ti.toRemote||0)+U.amountOut,Ti.balancedness=0===un?1:+(1-Math.abs((Ti.toLocal-Ti.toRemote)/un)).toFixed(3)}if(Ui&&ci)break}return{...O,payments:b,lightningBalance:Oe,channelStatus:It,fees:Lt,activeChannels:oi}}),(0,Ri.on)(Ca.NS,(O,{payload:H})=>{const b=[];return Wt.X8.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),w1=(O,H)=>{if("payment-relayed"===O.type)if(H&&H.length>0)for(let b=0;b0)for(let G=0;G{H[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=H[G].alias?H[G].alias:Oe.channelId,Oe.shortChannelId=H[G].shortChannelId?H[G].shortChannelId:"")}),O.outgoing?.forEach(Oe=>{H[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=H[G].alias?H[G].alias:Oe.channelId,Oe.shortChannelId=H[G].shortChannelId?H[G].shortChannelId:"")}),G===H.length-1&&(O.incoming&&O.incoming.length&&O.incoming.length>0&&!O.incoming[0].channelAlias&&O.incoming?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}),O.outgoing&&O.outgoing.length&&O.outgoing.length>0&&!O.outgoing[0].channelAlias&&O.outgoing?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}));else O.incoming?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""}),O.outgoing?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""});const b=O.incoming?.reduce((G,Oe)=>G+Oe.amount,0)||0;O.amountIn=Math.round(b/1e3),O.fromChannelId=O.incoming&&O.incoming.length?O.incoming[0].channelId:"",O.fromChannelAlias=O.incoming&&O.incoming.length?O.incoming[0].channelAlias:"",O.fromShortChannelId=O.incoming&&O.incoming.length?O.incoming[0].shortChannelId:"";const U=O.outgoing?.reduce((G,Oe)=>G+Oe.amount,0)||0;O.amountOut=Math.round(U/1e3),O.toChannelId=O.outgoing&&O.outgoing.length?O.outgoing[0].channelId:"",O.toChannelAlias=O.outgoing&&O.outgoing.length?O.outgoing[0].channelAlias:"",O.toShortChannelId=O.outgoing&&O.outgoing.length?O.outgoing[0].shortChannelId:""}return O};let Kh=!1;(0,t.naY)()&&(Kh=!0);let D4=(()=>{class O{static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O,bootstrap:[Gf]});static#i=this.\u0275inj=t.G2t({providers:[Ts({idle:Wt.bz-10,timeout:10,ping:12e3}),{provide:Ms.a7,useClass:C1,multi:!0},qa.Q,O2.u,w4.I,tf.Q,Ia.h,fd],imports:[Fr,Of.G,Rf,oa.RH,e.fM,Ri.md.forRoot({root:Ad,lnd:Wf,cln:S4,ecl:T4},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),lt.Vm.forRoot([_r.H,M4.L,E4.i,Bh.B]),Kh?Ns.instrument({connectInZone:!0}):[]]})}return O})();e.sG().bootstrapModule(D4).catch(O=>console.error(O))},426:(Qe,te)=>{"use strict";function g(X){return Object.keys(X).map(me=>X[me])}var X;Object.defineProperty(te,"__esModule",{value:!0}),(X=te.HashAlgorithms||(te.HashAlgorithms={})).SHA1="sha1",X.SHA256="sha256",X.SHA512="sha512";const e=g(te.HashAlgorithms);!function(X){X.ASCII="ascii",X.BASE64="base64",X.HEX="hex",X.LATIN1="latin1",X.UTF8="utf8"}(te.KeyEncodings||(te.KeyEncodings={}));const t=g(te.KeyEncodings);!function(X){X.HOTP="hotp",X.TOTP="totp"}(te.Strategy||(te.Strategy={}));const w=g(te.Strategy),S=()=>{throw new Error("Please provide an options.createDigest implementation.")};function l(X){return/^(\d+)$/.test(X)}function x(X,me,ce){return X.length>=me?X:`${Array(me+1).join(ce)}${X}`.slice(-1*me)}function f(X){const me=`otpauth://${X.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,ce=[];if(w.indexOf(X.type)<0)throw new Error(`Expecting options.type to be one of ${w.join(", ")}. Received ${X.type}.`);if("hotp"===X.type){if(null==X.counter||"number"!=typeof X.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');ce.push(`&counter=${X.counter}`)}return"totp"===X.type&&X.step&&ce.push(`&period=${X.step}`),X.digits&&ce.push(`&digits=${X.digits}`),X.algorithm&&ce.push(`&algorithm=${X.algorithm.toUpperCase()}`),X.issuer&&ce.push(`&issuer=${encodeURIComponent(X.issuer)}`),me.replace("{labelPrefix}",encodeURIComponent(X.issuer||X.accountName)).replace("{accountName}",encodeURIComponent(X.accountName)).replace("{secret}",X.secret).replace("{query}",ce.join(""))}class I{constructor(me={}){this._defaultOptions=Object.freeze({...me}),this._options=Object.freeze({})}create(me={}){return new I(me)}clone(me={}){const ce=this.create({...this._defaultOptions,...me});return ce.options=this._options,ce}get options(){return Object.freeze({...this._defaultOptions,...this._options})}set options(me){this._options=Object.freeze({...this._options,...me})}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function d(X){if("function"!=typeof X.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof X.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof X.digits)throw new Error("Expecting options.digits to be a number.");if(!X.algorithm||e.indexOf(X.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${e.join(", ")}. Received ${X.algorithm}.`);if(!X.encoding||t.indexOf(X.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${t.join(", ")}. Received ${X.encoding}.`)}const T=(X,me,ce)=>Buffer.from(me,ce).toString("hex");function y(){return{algorithm:te.HashAlgorithms.SHA1,createHmacKey:T,createDigest:S,digits:6,encoding:te.KeyEncodings.ASCII}}function F(X){const me={...y(),...X};return d(me),Object.freeze(me)}function R(X){return x(X.toString(16),16,"0")}function z(X,me){const ce=Buffer.from(X,"hex"),fe=15&ce[ce.length-1],mt=((127&ce[fe])<<24|(255&ce[fe+1])<<16|(255&ce[fe+2])<<8|255&ce[fe+3])%Math.pow(10,me);return x(String(mt),me,"0")}function $(X,me,ce){const fe=ce.digest||function W(X,me,ce){const fe=R(me),ke=ce.createHmacKey(ce.algorithm,X,ce.encoding);return ce.createDigest(ce.algorithm,ke,fe)}(X,me,ce);return z(fe,ce.digits)}function j(X,me,ce,fe){return!!l(X)&&X===$(me,ce,fe)}function Q(X,me,ce,fe,ke){return f({algorithm:ke.algorithm,digits:ke.digits,type:te.Strategy.HOTP,accountName:X,counter:fe,issuer:me,secret:ce})}class J extends I{create(me={}){return new J(me)}allOptions(){return F(this.options)}generate(me,ce){return $(me,ce,this.allOptions())}check(me,ce,fe){return j(me,ce,fe,this.allOptions())}verify(me){if("object"!=typeof me)throw new Error("Expecting argument 0 of verify to be an object");return this.check(me.token,me.secret,me.counter)}keyuri(me,ce,fe,ke){return Q(me,ce,fe,ke,this.allOptions())}}function ee(X){if("number"==typeof X)return[Math.abs(X),Math.abs(X)];if(Array.isArray(X)){const[me,ce]=X;if("number"==typeof me&&"number"==typeof ce)return[Math.abs(me),Math.abs(ce)]}throw new Error("Expecting options.window to be an number or [number, number].")}function ie(X){if(d(X),ee(X.window),"number"!=typeof X.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof X.step)throw new Error("Expecting options.step to be a number.")}const ge=(X,me,ce)=>{const fe=X.length,ke=Buffer.from(X,me).toString("hex");if(fe{switch(X){case te.HashAlgorithms.SHA1:return ge(me,ce,20);case te.HashAlgorithms.SHA256:return ge(me,ce,32);case te.HashAlgorithms.SHA512:return ge(me,ce,64);default:throw new Error(`Expecting algorithm to be one of ${e.join(", ")}. Received ${X}.`)}};function Me(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:S,createHmacKey:ae,digits:6,encoding:te.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function Te(X){const me={...Me(),...X};return ie(me),Object.freeze(me)}function de(X,me){return Math.floor(X/me/1e3)}function D(X,me){return $(X,de(me.epoch,me.step),me)}function n(X,me,ce,fe){const ke=[];if(0===fe)return ke;for(let mt=1;mt<=fe;mt++)ke.push(X+me*mt*ce);return ke}function c(X,me,ce){const fe=ee(ce),ke=1e3*me;return{current:X,past:n(X,-1,ke,fe[0]),future:n(X,1,ke,fe[1])}}function m(X,me,ce){return!!l(X)&&X===D(me,ce)}function h(X,me,ce,fe){let ke=null;return X.some((mt,_e)=>!!m(me,ce,{...fe,epoch:mt})&&(ke=_e+1,!0)),ke}function C(X,me,ce){if(m(X,me,ce))return 0;const fe=c(ce.epoch,ce.step,ce.window),ke=h(fe.past,X,me,ce);return null!==ke?-1*ke:h(fe.future,X,me,ce)}function k(X,me){return Math.floor(X/1e3)%me}function L(X,me){return me-k(X,me)}function _(X,me,ce,fe){return f({algorithm:fe.algorithm,digits:fe.digits,step:fe.step,type:te.Strategy.TOTP,accountName:X,issuer:me,secret:ce})}class r extends J{create(me={}){return new r(me)}allOptions(){return Te(this.options)}generate(me){return D(me,this.allOptions())}checkDelta(me,ce){return C(me,ce,this.allOptions())}check(me,ce){return"number"==typeof this.checkDelta(me,ce)}verify(me){if("object"!=typeof me)throw new Error("Expecting argument 0 of verify to be an object");return this.check(me.token,me.secret)}timeRemaining(){const me=this.allOptions();return L(me.epoch,me.step)}timeUsed(){const me=this.allOptions();return k(me.epoch,me.step)}keyuri(me,ce,fe){return _(me,ce,fe,this.allOptions())}}function v(X){if(ie(X),"function"!=typeof X.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(X.keyEncoder&&"function"!=typeof X.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function V(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:S,createHmacKey:ae,digits:6,encoding:te.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function N(X){const me={...V(),...X};return v(me),Object.freeze(me)}function ne(X,me){return me.keyEncoder(X,me.encoding)}function Ee(X,me){return me.keyDecoder(X,me.encoding)}function ze(X,me){return ne(me.createRandomBytes(X,me.encoding),me)}function qe(X,me){return D(Ee(X,me),me)}function Ke(X,me,ce){return C(X,Ee(me,ce),ce)}class se extends r{create(me={}){return new se(me)}allOptions(){return N(this.options)}generate(me){return qe(me,this.allOptions())}checkDelta(me,ce){return Ke(me,ce,this.allOptions())}encode(me){return ne(me,this.allOptions())}decode(me){return Ee(me,this.allOptions())}generateSecret(me=10){return ze(me,this.allOptions())}}te.Authenticator=se,te.HASH_ALGORITHMS=e,te.HOTP=J,te.KEY_ENCODINGS=t,te.OTP=I,te.STRATEGY=w,te.TOTP=r,te.authenticatorCheckWithWindow=Ke,te.authenticatorDecoder=Ee,te.authenticatorDefaultOptions=V,te.authenticatorEncoder=ne,te.authenticatorGenerateSecret=ze,te.authenticatorOptionValidator=v,te.authenticatorOptions=N,te.authenticatorToken=qe,te.createDigestPlaceholder=S,te.hotpCheck=j,te.hotpCounter=R,te.hotpCreateHmacKey=T,te.hotpDefaultOptions=y,te.hotpDigestToToken=z,te.hotpKeyuri=Q,te.hotpOptions=F,te.hotpOptionsValidator=d,te.hotpToken=$,te.isTokenValid=l,te.keyuri=f,te.objectValues=g,te.padStart=x,te.totpCheck=m,te.totpCheckByEpoch=h,te.totpCheckWithWindow=C,te.totpCounter=de,te.totpCreateHmacKey=ae,te.totpDefaultOptions=Me,te.totpEpochAvailable=c,te.totpKeyuri=_,te.totpOptions=Te,te.totpOptionsValidator=ie,te.totpPadSecret=ge,te.totpTimeRemaining=L,te.totpTimeUsed=k,te.totpToken=D},7840:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(1426));te.createDigest=(l,x,f)=>t.createHmac(l,Buffer.from(x,"hex")).update(Buffer.from(f,"hex")).digest().toString("hex"),te.createRandomBytes=(l,x)=>t.randomBytes(l).toString(x)},5526:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(7851));te.keyDecoder=(l,x)=>t.decode(l).toString(x),te.keyEncoder=(l,x)=>t.encode(Buffer.from(l,x).toString("ascii")).toString().replace(/=/g,"")},4478:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(7840),t=g(5526),w=g(426);const S=new w.HOTP({createDigest:e.createDigest}),l=new w.TOTP({createDigest:e.createDigest}),x=new w.Authenticator({createDigest:e.createDigest,createRandomBytes:e.createRandomBytes,keyDecoder:t.keyDecoder,keyEncoder:t.keyEncoder});te.authenticator=x,te.hotp=S,te.totp=l},1990:(Qe,te,g)=>{var e=te;e.bignum=g(6867),e.define=g(6626).define,e.base=g(5066),e.constants=g(7740),e.decoders=g(1558),e.encoders=g(2714)},6626:(Qe,te,g)=>{var e=g(1990),t=g(1993);function S(l,x){this.name=l,this.body=x,this.decoders={},this.encoders={}}te.define=function(x,f){return new S(x,f)},S.prototype._createNamed=function(x){var f;try{f=g(8326).runInThisContext("(function "+this.name+"(entity) {\n this._initNamed(entity);\n})")}catch{f=function(d){this._initNamed(d)}}return t(f,x),f.prototype._initNamed=function(d){x.call(this,d)},new f(this)},S.prototype._getDecoder=function(x){return this.decoders.hasOwnProperty(x=x||"der")||(this.decoders[x]=this._createNamed(e.decoders[x])),this.decoders[x]},S.prototype.decode=function(x,f,I){return this._getDecoder(f).decode(x,I)},S.prototype._getEncoder=function(x){return this.encoders.hasOwnProperty(x=x||"der")||(this.encoders[x]=this._createNamed(e.encoders[x])),this.encoders[x]},S.prototype.encode=function(x,f,I){return this._getEncoder(f).encode(x,I)}},7290:(Qe,te,g)=>{var e=g(1993),t=g(5066).Reporter,w=g(3838).Buffer;function S(x,f){t.call(this,f),w.isBuffer(x)?(this.base=x,this.offset=0,this.length=x.length):this.error("Input not Buffer")}function l(x,f){if(Array.isArray(x))this.length=0,this.value=x.map(function(I){return I instanceof l||(I=new l(I,f)),this.length+=I.length,I},this);else if("number"==typeof x){if(!(0<=x&&x<=255))return f.error("non-byte EncoderBuffer value");this.value=x,this.length=1}else if("string"==typeof x)this.value=x,this.length=w.byteLength(x);else{if(!w.isBuffer(x))return f.error("Unsupported type: "+typeof x);this.value=x,this.length=x.length}}e(S,t),te.t=S,S.prototype.save=function(){return{offset:this.offset,reporter:t.prototype.save.call(this)}},S.prototype.restore=function(f){var I=new S(this.base);return I.offset=f.offset,I.length=this.offset,this.offset=f.offset,t.prototype.restore.call(this,f.reporter),I},S.prototype.isEmpty=function(){return this.offset===this.length},S.prototype.readUInt8=function(f){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(f||"DecoderBuffer overrun")},S.prototype.skip=function(f,I){if(!(this.offset+f<=this.length))return this.error(I||"DecoderBuffer overrun");var d=new S(this.base);return d._reporterState=this._reporterState,d.offset=this.offset,d.length=this.offset+f,this.offset+=f,d},S.prototype.raw=function(f){return this.base.slice(f?f.offset:this.offset,this.length)},te.d=l,l.prototype.join=function(f,I){return f||(f=new w(this.length)),I||(I=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(d){d.join(f,I),I+=d.length}):("number"==typeof this.value?f[I]=this.value:"string"==typeof this.value?f.write(this.value,I):w.isBuffer(this.value)&&this.value.copy(f,I),I+=this.length)),f}},5066:(Qe,te,g)=>{var e=te;e.Reporter=g(5697).a,e.DecoderBuffer=g(7290).t,e.EncoderBuffer=g(7290).d,e.Node=g(4320)},4320:(Qe,te,g)=>{var e=g(5066).Reporter,t=g(5066).EncoderBuffer,w=g(5066).DecoderBuffer,S=g(9210),l=["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"],x=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(l);function I(T,y){var F={};this._baseState=F,F.enc=T,F.parent=y||null,F.children=null,F.tag=null,F.args=null,F.reverseArgs=null,F.choice=null,F.optional=!1,F.any=!1,F.obj=!1,F.use=null,F.useDecoder=null,F.key=null,F.default=null,F.explicit=null,F.implicit=null,F.contains=null,F.parent||(F.children=[],this._wrap())}Qe.exports=I;var d=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];I.prototype.clone=function(){var y=this._baseState,F={};d.forEach(function(z){F[z]=y[z]});var R=new this.constructor(F.parent);return R._baseState=F,R},I.prototype._wrap=function(){var y=this._baseState;x.forEach(function(F){this[F]=function(){var z=new this.constructor(this);return y.children.push(z),z[F].apply(z,arguments)}},this)},I.prototype._init=function(y){var F=this._baseState;S(null===F.parent),y.call(this),F.children=F.children.filter(function(R){return R._baseState.parent===this},this),S.equal(F.children.length,1,"Root node can have only one child")},I.prototype._useArgs=function(y){var F=this._baseState,R=y.filter(function(z){return z instanceof this.constructor},this);y=y.filter(function(z){return!(z instanceof this.constructor)},this),0!==R.length&&(S(null===F.children),F.children=R,R.forEach(function(z){z._baseState.parent=this},this)),0!==y.length&&(S(null===F.args),F.args=y,F.reverseArgs=y.map(function(z){if("object"!=typeof z||z.constructor!==Object)return z;var W={};return Object.keys(z).forEach(function($){$==(0|$)&&($|=0),W[z[$]]=$}),W}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(T){I.prototype[T]=function(){throw new Error(T+" not implemented for encoding: "+this._baseState.enc)}}),l.forEach(function(T){I.prototype[T]=function(){var F=this._baseState,R=Array.prototype.slice.call(arguments);return S(null===F.tag),F.tag=T,this._useArgs(R),this}}),I.prototype.use=function(y){S(y);var F=this._baseState;return S(null===F.use),F.use=y,this},I.prototype.optional=function(){return this._baseState.optional=!0,this},I.prototype.def=function(y){var F=this._baseState;return S(null===F.default),F.default=y,F.optional=!0,this},I.prototype.explicit=function(y){var F=this._baseState;return S(null===F.explicit&&null===F.implicit),F.explicit=y,this},I.prototype.implicit=function(y){var F=this._baseState;return S(null===F.explicit&&null===F.implicit),F.implicit=y,this},I.prototype.obj=function(){var y=this._baseState,F=Array.prototype.slice.call(arguments);return y.obj=!0,0!==F.length&&this._useArgs(F),this},I.prototype.key=function(y){var F=this._baseState;return S(null===F.key),F.key=y,this},I.prototype.any=function(){return this._baseState.any=!0,this},I.prototype.choice=function(y){var F=this._baseState;return S(null===F.choice),F.choice=y,this._useArgs(Object.keys(y).map(function(R){return y[R]})),this},I.prototype.contains=function(y){var F=this._baseState;return S(null===F.use),F.contains=y,this},I.prototype._decode=function(y,F){var R=this._baseState;if(null===R.parent)return y.wrapResult(R.children[0]._decode(y,F));var J,z=R.default,W=!0,$=null;if(null!==R.key&&($=y.enterKey(R.key)),R.optional){var j=null;if(null!==R.explicit?j=R.explicit:null!==R.implicit?j=R.implicit:null!==R.tag&&(j=R.tag),null!==j||R.any){if(W=this._peekTag(y,j,R.any),y.isError(W))return W}else{var Q=y.save();try{null===R.choice?this._decodeGeneric(R.tag,y,F):this._decodeChoice(y,F),W=!0}catch{W=!1}y.restore(Q)}}if(R.obj&&W&&(J=y.enterObject()),W){if(null!==R.explicit){var ee=this._decodeTag(y,R.explicit);if(y.isError(ee))return ee;y=ee}var ie=y.offset;if(null===R.use&&null===R.choice){R.any&&(Q=y.save());var ge=this._decodeTag(y,null!==R.implicit?R.implicit:R.tag,R.any);if(y.isError(ge))return ge;R.any?z=y.raw(Q):y=ge}if(F&&F.track&&null!==R.tag&&F.track(y.path(),ie,y.length,"tagged"),F&&F.track&&null!==R.tag&&F.track(y.path(),y.offset,y.length,"content"),R.any||(z=null===R.choice?this._decodeGeneric(R.tag,y,F):this._decodeChoice(y,F)),y.isError(z))return z;if(!R.any&&null===R.choice&&null!==R.children&&R.children.forEach(function(Te){Te._decode(y,F)}),R.contains&&("octstr"===R.tag||"bitstr"===R.tag)){var ae=new w(z);z=this._getUse(R.contains,y._reporterState.obj)._decode(ae,F)}}return R.obj&&W&&(z=y.leaveObject(J)),null===R.key||null===z&&!0!==W?null!==$&&y.exitKey($):y.leaveKey($,R.key,z),z},I.prototype._decodeGeneric=function(y,F,R){var z=this._baseState;return"seq"===y||"set"===y?null:"seqof"===y||"setof"===y?this._decodeList(F,y,z.args[0],R):/str$/.test(y)?this._decodeStr(F,y,R):"objid"===y&&z.args?this._decodeObjid(F,z.args[0],z.args[1],R):"objid"===y?this._decodeObjid(F,null,null,R):"gentime"===y||"utctime"===y?this._decodeTime(F,y,R):"null_"===y?this._decodeNull(F,R):"bool"===y?this._decodeBool(F,R):"objDesc"===y?this._decodeStr(F,y,R):"int"===y||"enum"===y?this._decodeInt(F,z.args&&z.args[0],R):null!==z.use?this._getUse(z.use,F._reporterState.obj)._decode(F,R):F.error("unknown tag: "+y)},I.prototype._getUse=function(y,F){var R=this._baseState;return R.useDecoder=this._use(y,F),S(null===R.useDecoder._baseState.parent),R.useDecoder=R.useDecoder._baseState.children[0],R.implicit!==R.useDecoder._baseState.implicit&&(R.useDecoder=R.useDecoder.clone(),R.useDecoder._baseState.implicit=R.implicit),R.useDecoder},I.prototype._decodeChoice=function(y,F){var R=this._baseState,z=null,W=!1;return Object.keys(R.choice).some(function($){var j=y.save(),Q=R.choice[$];try{var J=Q._decode(y,F);if(y.isError(J))return!1;z={type:$,value:J},W=!0}catch{return y.restore(j),!1}return!0},this),W?z:y.error("Choice not matched")},I.prototype._createEncoderBuffer=function(y){return new t(y,this.reporter)},I.prototype._encode=function(y,F,R){var z=this._baseState;if(null===z.default||z.default!==y){var W=this._encodeValue(y,F,R);if(void 0!==W&&!this._skipDefault(W,F,R))return W}},I.prototype._encodeValue=function(y,F,R){var z=this._baseState;if(null===z.parent)return z.children[0]._encode(y,F||new e);var Q=null;if(this.reporter=F,z.optional&&void 0===y){if(null===z.default)return;y=z.default}var W=null,$=!1;if(z.any)Q=this._createEncoderBuffer(y);else if(z.choice)Q=this._encodeChoice(y,F);else if(z.contains)W=this._getUse(z.contains,R)._encode(y,F),$=!0;else if(z.children)W=z.children.map(function(ie){if("null_"===ie._baseState.tag)return ie._encode(null,F,y);if(null===ie._baseState.key)return F.error("Child should have a key");var ge=F.enterKey(ie._baseState.key);if("object"!=typeof y)return F.error("Child expected, but input is not object");var ae=ie._encode(y[ie._baseState.key],F,y);return F.leaveKey(ge),ae},this).filter(function(ie){return ie}),W=this._createEncoderBuffer(W);else if("seqof"===z.tag||"setof"===z.tag){if(!z.args||1!==z.args.length)return F.error("Too many args for : "+z.tag);if(!Array.isArray(y))return F.error("seqof/setof, but data is not Array");var j=this.clone();j._baseState.implicit=null,W=this._createEncoderBuffer(y.map(function(ie){return this._getUse(this._baseState.args[0],y)._encode(ie,F)},j))}else null!==z.use?Q=this._getUse(z.use,R)._encode(y,F):(W=this._encodePrimitive(z.tag,y),$=!0);if(!z.any&&null===z.choice){var J=null!==z.implicit?z.implicit:z.tag,ee=null===z.implicit?"universal":"context";null===J?null===z.use&&F.error("Tag could be omitted only for .use()"):null===z.use&&(Q=this._encodeComposite(J,$,ee,W))}return null!==z.explicit&&(Q=this._encodeComposite(z.explicit,!1,"context",Q)),Q},I.prototype._encodeChoice=function(y,F){var R=this._baseState,z=R.choice[y.type];return z||S(!1,y.type+" not found in "+JSON.stringify(Object.keys(R.choice))),z._encode(y.value,F)},I.prototype._encodePrimitive=function(y,F){var R=this._baseState;if(/str$/.test(y))return this._encodeStr(F,y);if("objid"===y&&R.args)return this._encodeObjid(F,R.reverseArgs[0],R.args[1]);if("objid"===y)return this._encodeObjid(F,null,null);if("gentime"===y||"utctime"===y)return this._encodeTime(F,y);if("null_"===y)return this._encodeNull();if("int"===y||"enum"===y)return this._encodeInt(F,R.args&&R.reverseArgs[0]);if("bool"===y)return this._encodeBool(F);if("objDesc"===y)return this._encodeStr(F,y);throw new Error("Unsupported tag: "+y)},I.prototype._isNumstr=function(y){return/^[0-9 ]*$/.test(y)},I.prototype._isPrintstr=function(y){return/^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(y)}},5697:(Qe,te,g)=>{var e=g(1993);function t(S){this._reporterState={obj:null,path:[],options:S||{},errors:[]}}function w(S,l){this.path=S,this.rethrow(l)}te.a=t,t.prototype.isError=function(l){return l instanceof w},t.prototype.save=function(){var l=this._reporterState;return{obj:l.obj,pathLen:l.path.length}},t.prototype.restore=function(l){var x=this._reporterState;x.obj=l.obj,x.path=x.path.slice(0,l.pathLen)},t.prototype.enterKey=function(l){return this._reporterState.path.push(l)},t.prototype.exitKey=function(l){var x=this._reporterState;x.path=x.path.slice(0,l-1)},t.prototype.leaveKey=function(l,x,f){var I=this._reporterState;this.exitKey(l),null!==I.obj&&(I.obj[x]=f)},t.prototype.path=function(){return this._reporterState.path.join("/")},t.prototype.enterObject=function(){var l=this._reporterState,x=l.obj;return l.obj={},x},t.prototype.leaveObject=function(l){var x=this._reporterState,f=x.obj;return x.obj=l,f},t.prototype.error=function(l){var x,f=this._reporterState,I=l instanceof w;if(x=I?l:new w(f.path.map(function(d){return"["+JSON.stringify(d)+"]"}).join(""),l.message||l,l.stack),!f.options.partial)throw x;return I||f.errors.push(x),x},t.prototype.wrapResult=function(l){var x=this._reporterState;return x.options.partial?{result:this.isError(l)?null:l,errors:x.errors}:l},e(w,Error),w.prototype.rethrow=function(l){if(this.message=l+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,w),!this.stack)try{throw new Error(this.message)}catch(x){this.stack=x.stack}return this}},6283:(Qe,te,g)=>{var e=g(7740);te.tagClass={0:"universal",1:"application",2:"context",3:"private"},te.tagClassByName=e._reverse(te.tagClass),te.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"},te.tagByName=e._reverse(te.tag)},7740:(Qe,te,g)=>{var e=te;e._reverse=function(w){var S={};return Object.keys(w).forEach(function(l){(0|l)==l&&(l|=0),S[w[l]]=l}),S},e.der=g(6283)},5941:(Qe,te,g)=>{var e=g(1993),t=g(1990),w=t.base,S=t.bignum,l=t.constants.der;function x(T){this.enc="der",this.name=T.name,this.entity=T,this.tree=new f,this.tree._init(T.body)}function f(T){w.Node.call(this,"der",T)}function I(T,y){var F=T.readUInt8(y);if(T.isError(F))return F;var R=l.tagClass[F>>6],z=!(32&F);if(31&~F)F&=31;else{var W=F;for(F=0;!(128&~W);){if(W=T.readUInt8(y),T.isError(W))return W;F<<=7,F|=127&W}}return{cls:R,primitive:z,tag:F,tagStr:l.tag[F]}}function d(T,y,F){var R=T.readUInt8(F);if(T.isError(R))return R;if(!y&&128===R)return null;if(!(128&R))return R;var z=127&R;if(z>4)return T.error("length octect is too long");R=0;for(var W=0;W{var e=te;e.der=g(5941),e.pem=g(9316)},9316:(Qe,te,g)=>{var e=g(1993),t=g(3838).Buffer,w=g(5941);function S(l){w.call(this,l),this.enc="pem"}e(S,w),Qe.exports=S,S.prototype.decode=function(x,f){for(var I=x.toString().split(/[\r\n]+/g),d=f.label.toUpperCase(),T=/^-----(BEGIN|END) ([^-]+)-----$/,y=-1,F=-1,R=0;R{var e=g(1993),t=g(3838).Buffer,w=g(1990),S=w.base,l=w.constants.der;function x(T){this.enc="der",this.name=T.name,this.entity=T,this.tree=new f,this.tree._init(T.body)}function f(T){S.Node.call(this,"der",T)}function I(T){return T<10?"0"+T:T}Qe.exports=x,x.prototype.encode=function(y,F){return this.tree._encode(y,F).join()},e(f,S.Node),f.prototype._encodeComposite=function(y,F,R,z){var Q,W=function d(T,y,F,R){var z;if("seqof"===T?T="seq":"setof"===T&&(T="set"),l.tagByName.hasOwnProperty(T))z=l.tagByName[T];else{if("number"!=typeof T||(0|T)!==T)return R.error("Unknown tag: "+T);z=T}return z>=31?R.error("Multi-octet tag encoding unsupported"):(y||(z|=32),z|=l.tagClassByName[F||"universal"]<<6)}(y,F,R,this.reporter);if(z.length<128)return(Q=new t(2))[0]=W,Q[1]=z.length,this._createEncoderBuffer([Q,z]);for(var $=1,j=z.length;j>=256;j>>=8)$++;(Q=new t(2+$))[0]=W,Q[1]=128|$,j=1+$;for(var J=z.length;J>0;j--,J>>=8)Q[j]=255&J;return this._createEncoderBuffer([Q,z])},f.prototype._encodeStr=function(y,F){if("bitstr"===F)return this._createEncoderBuffer([0|y.unused,y.data]);if("bmpstr"===F){for(var R=new t(2*y.length),z=0;z=40)return this.reporter.error("Second objid identifier OOB");y.splice(0,2,40*y[0]+y[1])}var W=0;for(z=0;z=128;$>>=7)W++}var j=new t(W),Q=j.length-1;for(z=y.length-1;z>=0;z--)for(j[Q--]=127&($=y[z]);($>>=7)>0;)j[Q--]=128|127&$;return this._createEncoderBuffer(j)},f.prototype._encodeTime=function(y,F){var R,z=new Date(y);return"gentime"===F?R=[I(z.getFullYear()),I(z.getUTCMonth()+1),I(z.getUTCDate()),I(z.getUTCHours()),I(z.getUTCMinutes()),I(z.getUTCSeconds()),"Z"].join(""):"utctime"===F?R=[I(z.getFullYear()%100),I(z.getUTCMonth()+1),I(z.getUTCDate()),I(z.getUTCHours()),I(z.getUTCMinutes()),I(z.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+F+" time is not supported yet"),this._encodeStr(R,"octstr")},f.prototype._encodeNull=function(){return this._createEncoderBuffer("")},f.prototype._encodeInt=function(y,F){if("string"==typeof y){if(!F)return this.reporter.error("String int or enum given, but no values map");if(!F.hasOwnProperty(y))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(y));y=F[y]}if("number"!=typeof y&&!t.isBuffer(y)){var R=y.toArray();!y.sign&&128&R[0]&&R.unshift(0),y=new t(R)}if(t.isBuffer(y)){var z=y.length;0===y.length&&z++;var $=new t(z);return y.copy($),0===y.length&&($[0]=0),this._createEncoderBuffer($)}if(y<128)return this._createEncoderBuffer(y);if(y<256)return this._createEncoderBuffer([0,y]);z=1;for(var W=y;W>=256;W>>=8)z++;for(W=($=new Array(z)).length-1;W>=0;W--)$[W]=255&y,y>>=8;return 128&$[0]&&$.unshift(0),this._createEncoderBuffer(new t($))},f.prototype._encodeBool=function(y){return this._createEncoderBuffer(y?255:0)},f.prototype._use=function(y,F){return"function"==typeof y&&(y=y(F)),y._getEncoder("der").tree},f.prototype._skipDefault=function(y,F,R){var W,z=this._baseState;if(null===z.default)return!1;var $=y.join();if(void 0===z.defaultBuffer&&(z.defaultBuffer=this._encodeValue(z.default,F,R).join()),$.length!==z.defaultBuffer.length)return!1;for(W=0;W<$.length;W++)if($[W]!==z.defaultBuffer[W])return!1;return!0}},2714:(Qe,te,g)=>{var e=te;e.der=g(2193),e.pem=g(4816)},4816:(Qe,te,g)=>{var e=g(1993),t=g(2193);function w(S){t.call(this,S),this.enc="pem"}e(w,t),Qe.exports=w,w.prototype.encode=function(l,x){for(var I=t.prototype.encode.call(this,l).toString("base64"),d=["-----BEGIN "+x.label+"-----"],T=0;T=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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 z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.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&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},3981:(Qe,te)=>{"use strict";te.byteLength=function f(R){var z=x(R),$=z[1];return 3*(z[0]+$)/4-$},te.toByteArray=function d(R){var z,ie,W=x(R),$=W[0],j=W[1],Q=new t(function I(R,z,W){return 3*(z+W)/4-W}(0,$,j)),J=0,ee=j>0?$-4:$;for(ie=0;ie>16&255,Q[J++]=z>>8&255,Q[J++]=255&z;return 2===j&&(z=e[R.charCodeAt(ie)]<<2|e[R.charCodeAt(ie+1)]>>4,Q[J++]=255&z),1===j&&(z=e[R.charCodeAt(ie)]<<10|e[R.charCodeAt(ie+1)]<<4|e[R.charCodeAt(ie+2)]>>2,Q[J++]=z>>8&255,Q[J++]=255&z),Q},te.fromByteArray=function F(R){for(var z,W=R.length,$=W%3,j=[],Q=16383,J=0,ee=W-$;Jee?ee:J+Q));return 1===$?j.push(g[(z=R[W-1])>>2]+g[z<<4&63]+"=="):2===$&&j.push(g[(z=(R[W-2]<<8)+R[W-1])>>10]+g[z>>4&63]+g[z<<2&63]+"="),j.join("")};for(var g=[],e=[],t=typeof Uint8Array<"u"?Uint8Array:Array,w="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",S=0;S<64;++S)g[S]=w[S],e[w.charCodeAt(S)]=S;function x(R){var z=R.length;if(z%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var W=R.indexOf("=");return-1===W&&(W=z),[W,W===z?0:4-W%4]}function T(R){return g[R>>18&63]+g[R>>12&63]+g[R>>6&63]+g[63&R]}function y(R,z,W){for(var j=[],Q=z;Q=48&&C<=57?C-48:C>=65&&C<=70?C-55:C>=97&&C<=102?C-87:void w(!1,"Invalid character in "+m)}function I(m,h,C){var k=f(m,C);return C-1>=h&&(k|=f(m,C-1)<<4),k}function d(m,h,C,k){for(var L=0,_=0,r=Math.min(m.length,C),v=h;v=49?V-49+10:V>=17?V-17+10:V,w(V>=0&&_0?h:C},l.min=function(h,C){return h.cmp(C)<0?h:C},l.prototype._init=function(h,C,k){if("number"==typeof h)return this._initNumber(h,C,k);if("object"==typeof h)return this._initArray(h,C,k);"hex"===C&&(C=16),w(C===(0|C)&&C>=2&&C<=36);var L=0;"-"===(h=h.toString().replace(/\s+/g,""))[0]&&(L++,this.negative=1),L=0;L-=3)this.words[_]|=(r=h[L]|h[L-1]<<8|h[L-2]<<16)<>>26-v&67108863,(v+=24)>=26&&(v-=26,_++);else if("le"===k)for(L=0,_=0;L>>26-v&67108863,(v+=24)>=26&&(v-=26,_++);return this._strip()},l.prototype._parseHex=function(h,C,k){this.length=Math.ceil((h.length-C)/6),this.words=new Array(this.length);for(var L=0;L=C;L-=2)v=I(h,C,L)<<_,this.words[r]|=67108863&v,_>=18?(_-=18,this.words[r+=1]|=v>>>26):_+=8;else for(L=(h.length-C)%2==0?C+1:C;L=18?(_-=18,this.words[r+=1]|=v>>>26):_+=8;this._strip()},l.prototype._parseBase=function(h,C,k){this.words=[0],this.length=1;for(var L=0,_=1;_<=67108863;_*=C)L++;L--,_=_/C|0;for(var r=h.length-k,v=r%L,V=Math.min(r,r-v)+k,N=0,ne=k;ne1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},typeof Symbol<"u"&&"function"==typeof Symbol.for)try{l.prototype[Symbol.for("nodejs.util.inspect.custom")]=y}catch{l.prototype.inspect=y}else l.prototype.inspect=y;function y(){return(this.red?""}var F=["","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"],R=[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],z=[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(m,h,C){C.negative=h.negative^m.negative;var k=m.length+h.length|0;C.length=k,k=k-1|0;var L=0|m.words[0],_=0|h.words[0],r=L*_,V=r/67108864|0;C.words[0]=67108863&r;for(var N=1;N>>26,Ee=67108863&V,ze=Math.min(N,h.length-1),qe=Math.max(0,N-m.length+1);qe<=ze;qe++)ne+=(r=(L=0|m.words[N-qe|0])*(_=0|h.words[qe])+Ee)/67108864|0,Ee=67108863&r;C.words[N]=0|Ee,V=0|ne}return 0!==V?C.words[N]=0|V:C.length--,C._strip()}l.prototype.toString=function(h,C){var k;if(C=0|C||1,16===(h=h||10)||"hex"===h){k="";for(var L=0,_=0,r=0;r>>24-L&16777215,(L+=2)>=26&&(L-=26,r--),k=0!==_||r!==this.length-1?F[6-V.length]+V+k:V+k}for(0!==_&&(k=_.toString(16)+k);k.length%C!=0;)k="0"+k;return 0!==this.negative&&(k="-"+k),k}if(h===(0|h)&&h>=2&&h<=36){var N=R[h],ne=z[h];k="";var Ee=this.clone();for(Ee.negative=0;!Ee.isZero();){var ze=Ee.modrn(ne).toString(h);k=(Ee=Ee.idivn(ne)).isZero()?ze+k:F[N-ze.length]+ze+k}for(this.isZero()&&(k="0"+k);k.length%C!=0;)k="0"+k;return 0!==this.negative&&(k="-"+k),k}w(!1,"Base should be between 2 and 36")},l.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&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-h:h},l.prototype.toJSON=function(){return this.toString(16,2)},x&&(l.prototype.toBuffer=function(h,C){return this.toArrayLike(x,h,C)}),l.prototype.toArray=function(h,C){return this.toArrayLike(Array,h,C)},l.prototype.toArrayLike=function(h,C,k){this._strip();var L=this.byteLength(),_=k||Math.max(1,L);w(L<=_,"byte array longer than desired length"),w(_>0,"Requested array length <= 0");var r=function(h,C){return h.allocUnsafe?h.allocUnsafe(C):new h(C)}(h,_);return this["_toArrayLike"+("le"===C?"LE":"BE")](r,L),r},l.prototype._toArrayLikeLE=function(h,C){for(var k=0,L=0,_=0,r=0;_>8&255),k>16&255),6===r?(k>24&255),L=0,r=0):(L=v>>>24,r+=2)}if(k=0&&(h[k--]=v>>8&255),k>=0&&(h[k--]=v>>16&255),6===r?(k>=0&&(h[k--]=v>>24&255),L=0,r=0):(L=v>>>24,r+=2)}if(k>=0)for(h[k--]=L;k>=0;)h[k--]=0},l.prototype._countBits=Math.clz32?function(h){return 32-Math.clz32(h)}:function(h){var C=h,k=0;return C>=4096&&(k+=13,C>>>=13),C>=64&&(k+=7,C>>>=7),C>=8&&(k+=4,C>>>=4),C>=2&&(k+=2,C>>>=2),k+C},l.prototype._zeroBits=function(h){if(0===h)return 26;var C=h,k=0;return 8191&C||(k+=13,C>>>=13),127&C||(k+=7,C>>>=7),15&C||(k+=4,C>>>=4),3&C||(k+=2,C>>>=2),1&C||k++,k},l.prototype.bitLength=function(){var C=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+C},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var h=0,C=0;Ch.length?this.clone().ior(h):h.clone().ior(this)},l.prototype.uor=function(h){return this.length>h.length?this.clone().iuor(h):h.clone().iuor(this)},l.prototype.iuand=function(h){var C;C=this.length>h.length?h:this;for(var k=0;kh.length?this.clone().iand(h):h.clone().iand(this)},l.prototype.uand=function(h){return this.length>h.length?this.clone().iuand(h):h.clone().iuand(this)},l.prototype.iuxor=function(h){var C,k;this.length>h.length?(C=this,k=h):(C=h,k=this);for(var L=0;Lh.length?this.clone().ixor(h):h.clone().ixor(this)},l.prototype.uxor=function(h){return this.length>h.length?this.clone().iuxor(h):h.clone().iuxor(this)},l.prototype.inotn=function(h){w("number"==typeof h&&h>=0);var C=0|Math.ceil(h/26),k=h%26;this._expand(C),k>0&&C--;for(var L=0;L0&&(this.words[L]=~this.words[L]&67108863>>26-k),this._strip()},l.prototype.notn=function(h){return this.clone().inotn(h)},l.prototype.setn=function(h,C){w("number"==typeof h&&h>=0);var k=h/26|0,L=h%26;return this._expand(k+1),this.words[k]=C?this.words[k]|1<h.length?(k=this,L=h):(k=h,L=this);for(var _=0,r=0;r>>26;for(;0!==_&&r>>26;if(this.length=k.length,0!==_)this.words[this.length]=_,this.length++;else if(k!==this)for(;rh.length?this.clone().iadd(h):h.clone().iadd(this)},l.prototype.isub=function(h){if(0!==h.negative){h.negative=0;var C=this.iadd(h);return h.negative=1,C._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(h),this.negative=1,this._normSign();var L,_,k=this.cmp(h);if(0===k)return this.negative=0,this.length=1,this.words[0]=0,this;k>0?(L=this,_=h):(L=h,_=this);for(var r=0,v=0;v<_.length;v++)r=(C=(0|L.words[v])-(0|_.words[v])+r)>>26,this.words[v]=67108863&C;for(;0!==r&&v>26,this.words[v]=67108863&C;if(0===r&&v>>13,Ke=0|L[1],se=8191&Ke,X=Ke>>>13,me=0|L[2],ce=8191&me,fe=me>>>13,ke=0|L[3],mt=8191&ke,_e=ke>>>13,be=0|L[4],pe=8191&be,Ze=be>>>13,_t=0|L[5],at=8191&_t,pt=_t>>>13,Xt=0|L[6],ye=8191&Xt,ue=Xt>>>13,Ie=0|L[7],He=8191&Ie,Xe=Ie>>>13,yt=0|L[8],Ye=8191&yt,rt=yt>>>13,Yt=0|L[9],Nt=8191&Yt,Et=Yt>>>13,Vt=0|_[0],oe=8191&Vt,tt=Vt>>>13,$t=0|_[1],zt=8191&$t,Jt=$t>>>13,St=0|_[2],dt=8191&St,Ae=St>>>13,we=0|_[3],he=8191&we,q=we>>>13,Re=0|_[4],Ne=8191&Re,gt=Re>>>13,$e=0|_[5],Fe=8191&$e,Ge=$e>>>13,et=0|_[6],st=8191&et,Tt=et>>>13,mi=0|_[7],Kt=8191&mi,Pt=mi>>>13,Xi=0|_[8],di=8191&Xi,fi=Xi>>>13,vn=0|_[9],Qi=8191&vn,Li=vn>>>13;k.negative=h.negative^C.negative,k.length=19;var Zi=(v+(V=Math.imul(ze,oe))|0)+((8191&(N=(N=Math.imul(ze,tt))+Math.imul(qe,oe)|0))<<13)|0;v=((ne=Math.imul(qe,tt))+(N>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,V=Math.imul(se,oe),N=(N=Math.imul(se,tt))+Math.imul(X,oe)|0,ne=Math.imul(X,tt);var Qt=(v+(V=V+Math.imul(ze,zt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Jt)|0)+(N>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,V=Math.imul(ce,oe),N=(N=Math.imul(ce,tt))+Math.imul(fe,oe)|0,ne=Math.imul(fe,tt),V=V+Math.imul(se,zt)|0,N=(N=N+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,ne=ne+Math.imul(X,Jt)|0;var Mt=(v+(V=V+Math.imul(ze,dt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Ae)|0)+(N>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,V=Math.imul(mt,oe),N=(N=Math.imul(mt,tt))+Math.imul(_e,oe)|0,ne=Math.imul(_e,tt),V=V+Math.imul(ce,zt)|0,N=(N=N+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,ne=ne+Math.imul(fe,Jt)|0,V=V+Math.imul(se,dt)|0,N=(N=N+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,ne=ne+Math.imul(X,Ae)|0;var it=(v+(V=V+Math.imul(ze,he)|0)|0)+((8191&(N=(N=N+Math.imul(ze,q)|0)+Math.imul(qe,he)|0))<<13)|0;v=((ne=ne+Math.imul(qe,q)|0)+(N>>>13)|0)+(it>>>26)|0,it&=67108863,V=Math.imul(pe,oe),N=(N=Math.imul(pe,tt))+Math.imul(Ze,oe)|0,ne=Math.imul(Ze,tt),V=V+Math.imul(mt,zt)|0,N=(N=N+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,ne=ne+Math.imul(_e,Jt)|0,V=V+Math.imul(ce,dt)|0,N=(N=N+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,ne=ne+Math.imul(fe,Ae)|0,V=V+Math.imul(se,he)|0,N=(N=N+Math.imul(se,q)|0)+Math.imul(X,he)|0,ne=ne+Math.imul(X,q)|0;var ct=(v+(V=V+Math.imul(ze,Ne)|0)|0)+((8191&(N=(N=N+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0))<<13)|0;v=((ne=ne+Math.imul(qe,gt)|0)+(N>>>13)|0)+(ct>>>26)|0,ct&=67108863,V=Math.imul(at,oe),N=(N=Math.imul(at,tt))+Math.imul(pt,oe)|0,ne=Math.imul(pt,tt),V=V+Math.imul(pe,zt)|0,N=(N=N+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,ne=ne+Math.imul(Ze,Jt)|0,V=V+Math.imul(mt,dt)|0,N=(N=N+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,ne=ne+Math.imul(_e,Ae)|0,V=V+Math.imul(ce,he)|0,N=(N=N+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,ne=ne+Math.imul(fe,q)|0,V=V+Math.imul(se,Ne)|0,N=(N=N+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,ne=ne+Math.imul(X,gt)|0;var wt=(v+(V=V+Math.imul(ze,Fe)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Ge)|0)+(N>>>13)|0)+(wt>>>26)|0,wt&=67108863,V=Math.imul(ye,oe),N=(N=Math.imul(ye,tt))+Math.imul(ue,oe)|0,ne=Math.imul(ue,tt),V=V+Math.imul(at,zt)|0,N=(N=N+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,ne=ne+Math.imul(pt,Jt)|0,V=V+Math.imul(pe,dt)|0,N=(N=N+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,ne=ne+Math.imul(Ze,Ae)|0,V=V+Math.imul(mt,he)|0,N=(N=N+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,ne=ne+Math.imul(_e,q)|0,V=V+Math.imul(ce,Ne)|0,N=(N=N+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,ne=ne+Math.imul(fe,gt)|0,V=V+Math.imul(se,Fe)|0,N=(N=N+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,ne=ne+Math.imul(X,Ge)|0;var Ut=(v+(V=V+Math.imul(ze,st)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Tt)|0)+(N>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,V=Math.imul(He,oe),N=(N=Math.imul(He,tt))+Math.imul(Xe,oe)|0,ne=Math.imul(Xe,tt),V=V+Math.imul(ye,zt)|0,N=(N=N+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,ne=ne+Math.imul(ue,Jt)|0,V=V+Math.imul(at,dt)|0,N=(N=N+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,ne=ne+Math.imul(pt,Ae)|0,V=V+Math.imul(pe,he)|0,N=(N=N+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,ne=ne+Math.imul(Ze,q)|0,V=V+Math.imul(mt,Ne)|0,N=(N=N+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,ne=ne+Math.imul(_e,gt)|0,V=V+Math.imul(ce,Fe)|0,N=(N=N+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,ne=ne+Math.imul(fe,Ge)|0,V=V+Math.imul(se,st)|0,N=(N=N+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,ne=ne+Math.imul(X,Tt)|0;var xi=(v+(V=V+Math.imul(ze,Kt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Pt)|0)+(N>>>13)|0)+(xi>>>26)|0,xi&=67108863,V=Math.imul(Ye,oe),N=(N=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,ne=Math.imul(rt,tt),V=V+Math.imul(He,zt)|0,N=(N=N+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,ne=ne+Math.imul(Xe,Jt)|0,V=V+Math.imul(ye,dt)|0,N=(N=N+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,ne=ne+Math.imul(ue,Ae)|0,V=V+Math.imul(at,he)|0,N=(N=N+Math.imul(at,q)|0)+Math.imul(pt,he)|0,ne=ne+Math.imul(pt,q)|0,V=V+Math.imul(pe,Ne)|0,N=(N=N+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,ne=ne+Math.imul(Ze,gt)|0,V=V+Math.imul(mt,Fe)|0,N=(N=N+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,ne=ne+Math.imul(_e,Ge)|0,V=V+Math.imul(ce,st)|0,N=(N=N+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,ne=ne+Math.imul(fe,Tt)|0,V=V+Math.imul(se,Kt)|0,N=(N=N+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,ne=ne+Math.imul(X,Pt)|0;var Si=(v+(V=V+Math.imul(ze,di)|0)|0)+((8191&(N=(N=N+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;v=((ne=ne+Math.imul(qe,fi)|0)+(N>>>13)|0)+(Si>>>26)|0,Si&=67108863,V=Math.imul(Nt,oe),N=(N=Math.imul(Nt,tt))+Math.imul(Et,oe)|0,ne=Math.imul(Et,tt),V=V+Math.imul(Ye,zt)|0,N=(N=N+Math.imul(Ye,Jt)|0)+Math.imul(rt,zt)|0,ne=ne+Math.imul(rt,Jt)|0,V=V+Math.imul(He,dt)|0,N=(N=N+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,ne=ne+Math.imul(Xe,Ae)|0,V=V+Math.imul(ye,he)|0,N=(N=N+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,ne=ne+Math.imul(ue,q)|0,V=V+Math.imul(at,Ne)|0,N=(N=N+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,ne=ne+Math.imul(pt,gt)|0,V=V+Math.imul(pe,Fe)|0,N=(N=N+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,ne=ne+Math.imul(Ze,Ge)|0,V=V+Math.imul(mt,st)|0,N=(N=N+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,ne=ne+Math.imul(_e,Tt)|0,V=V+Math.imul(ce,Kt)|0,N=(N=N+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,ne=ne+Math.imul(fe,Pt)|0,V=V+Math.imul(se,di)|0,N=(N=N+Math.imul(se,fi)|0)+Math.imul(X,di)|0,ne=ne+Math.imul(X,fi)|0;var zi=(v+(V=V+Math.imul(ze,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Li)|0)+Math.imul(qe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Li)|0)+(N>>>13)|0)+(zi>>>26)|0,zi&=67108863,V=Math.imul(Nt,zt),N=(N=Math.imul(Nt,Jt))+Math.imul(Et,zt)|0,ne=Math.imul(Et,Jt),V=V+Math.imul(Ye,dt)|0,N=(N=N+Math.imul(Ye,Ae)|0)+Math.imul(rt,dt)|0,ne=ne+Math.imul(rt,Ae)|0,V=V+Math.imul(He,he)|0,N=(N=N+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,ne=ne+Math.imul(Xe,q)|0,V=V+Math.imul(ye,Ne)|0,N=(N=N+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,ne=ne+Math.imul(ue,gt)|0,V=V+Math.imul(at,Fe)|0,N=(N=N+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,ne=ne+Math.imul(pt,Ge)|0,V=V+Math.imul(pe,st)|0,N=(N=N+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,ne=ne+Math.imul(Ze,Tt)|0,V=V+Math.imul(mt,Kt)|0,N=(N=N+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,ne=ne+Math.imul(_e,Pt)|0,V=V+Math.imul(ce,di)|0,N=(N=N+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0,ne=ne+Math.imul(fe,fi)|0;var en=(v+(V=V+Math.imul(se,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(se,Li)|0)+Math.imul(X,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(X,Li)|0)+(N>>>13)|0)+(en>>>26)|0,en&=67108863,V=Math.imul(Nt,dt),N=(N=Math.imul(Nt,Ae))+Math.imul(Et,dt)|0,ne=Math.imul(Et,Ae),V=V+Math.imul(Ye,he)|0,N=(N=N+Math.imul(Ye,q)|0)+Math.imul(rt,he)|0,ne=ne+Math.imul(rt,q)|0,V=V+Math.imul(He,Ne)|0,N=(N=N+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,ne=ne+Math.imul(Xe,gt)|0,V=V+Math.imul(ye,Fe)|0,N=(N=N+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,ne=ne+Math.imul(ue,Ge)|0,V=V+Math.imul(at,st)|0,N=(N=N+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,ne=ne+Math.imul(pt,Tt)|0,V=V+Math.imul(pe,Kt)|0,N=(N=N+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,ne=ne+Math.imul(Ze,Pt)|0,V=V+Math.imul(mt,di)|0,N=(N=N+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0,ne=ne+Math.imul(_e,fi)|0;var Ni=(v+(V=V+Math.imul(ce,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ce,Li)|0)+Math.imul(fe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(fe,Li)|0)+(N>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,V=Math.imul(Nt,he),N=(N=Math.imul(Nt,q))+Math.imul(Et,he)|0,ne=Math.imul(Et,q),V=V+Math.imul(Ye,Ne)|0,N=(N=N+Math.imul(Ye,gt)|0)+Math.imul(rt,Ne)|0,ne=ne+Math.imul(rt,gt)|0,V=V+Math.imul(He,Fe)|0,N=(N=N+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,ne=ne+Math.imul(Xe,Ge)|0,V=V+Math.imul(ye,st)|0,N=(N=N+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,ne=ne+Math.imul(ue,Tt)|0,V=V+Math.imul(at,Kt)|0,N=(N=N+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,ne=ne+Math.imul(pt,Pt)|0,V=V+Math.imul(pe,di)|0,N=(N=N+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0,ne=ne+Math.imul(Ze,fi)|0;var fn=(v+(V=V+Math.imul(mt,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(mt,Li)|0)+Math.imul(_e,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(_e,Li)|0)+(N>>>13)|0)+(fn>>>26)|0,fn&=67108863,V=Math.imul(Nt,Ne),N=(N=Math.imul(Nt,gt))+Math.imul(Et,Ne)|0,ne=Math.imul(Et,gt),V=V+Math.imul(Ye,Fe)|0,N=(N=N+Math.imul(Ye,Ge)|0)+Math.imul(rt,Fe)|0,ne=ne+Math.imul(rt,Ge)|0,V=V+Math.imul(He,st)|0,N=(N=N+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,ne=ne+Math.imul(Xe,Tt)|0,V=V+Math.imul(ye,Kt)|0,N=(N=N+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,ne=ne+Math.imul(ue,Pt)|0,V=V+Math.imul(at,di)|0,N=(N=N+Math.imul(at,fi)|0)+Math.imul(pt,di)|0,ne=ne+Math.imul(pt,fi)|0;var Zt=(v+(V=V+Math.imul(pe,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(pe,Li)|0)+Math.imul(Ze,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(Ze,Li)|0)+(N>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,V=Math.imul(Nt,Fe),N=(N=Math.imul(Nt,Ge))+Math.imul(Et,Fe)|0,ne=Math.imul(Et,Ge),V=V+Math.imul(Ye,st)|0,N=(N=N+Math.imul(Ye,Tt)|0)+Math.imul(rt,st)|0,ne=ne+Math.imul(rt,Tt)|0,V=V+Math.imul(He,Kt)|0,N=(N=N+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,ne=ne+Math.imul(Xe,Pt)|0,V=V+Math.imul(ye,di)|0,N=(N=N+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0,ne=ne+Math.imul(ue,fi)|0;var bt=(v+(V=V+Math.imul(at,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(at,Li)|0)+Math.imul(pt,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(pt,Li)|0)+(N>>>13)|0)+(bt>>>26)|0,bt&=67108863,V=Math.imul(Nt,st),N=(N=Math.imul(Nt,Tt))+Math.imul(Et,st)|0,ne=Math.imul(Et,Tt),V=V+Math.imul(Ye,Kt)|0,N=(N=N+Math.imul(Ye,Pt)|0)+Math.imul(rt,Kt)|0,ne=ne+Math.imul(rt,Pt)|0,V=V+Math.imul(He,di)|0,N=(N=N+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0,ne=ne+Math.imul(Xe,fi)|0;var re=(v+(V=V+Math.imul(ye,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ye,Li)|0)+Math.imul(ue,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(ue,Li)|0)+(N>>>13)|0)+(re>>>26)|0,re&=67108863,V=Math.imul(Nt,Kt),N=(N=Math.imul(Nt,Pt))+Math.imul(Et,Kt)|0,ne=Math.imul(Et,Pt),V=V+Math.imul(Ye,di)|0,N=(N=N+Math.imul(Ye,fi)|0)+Math.imul(rt,di)|0,ne=ne+Math.imul(rt,fi)|0;var je=(v+(V=V+Math.imul(He,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(He,Li)|0)+Math.imul(Xe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(Xe,Li)|0)+(N>>>13)|0)+(je>>>26)|0,je&=67108863,V=Math.imul(Nt,di),N=(N=Math.imul(Nt,fi))+Math.imul(Et,di)|0,ne=Math.imul(Et,fi);var Ce=(v+(V=V+Math.imul(Ye,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(Ye,Li)|0)+Math.imul(rt,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(rt,Li)|0)+(N>>>13)|0)+(Ce>>>26)|0,Ce&=67108863;var ot=(v+(V=Math.imul(Nt,Qi))|0)+((8191&(N=(N=Math.imul(Nt,Li))+Math.imul(Et,Qi)|0))<<13)|0;return v=((ne=Math.imul(Et,Li))+(N>>>13)|0)+(ot>>>26)|0,ot&=67108863,r[0]=Zi,r[1]=Qt,r[2]=Mt,r[3]=it,r[4]=ct,r[5]=wt,r[6]=Ut,r[7]=xi,r[8]=Si,r[9]=zi,r[10]=en,r[11]=Ni,r[12]=fn,r[13]=Zt,r[14]=bt,r[15]=re,r[16]=je,r[17]=Ce,r[18]=ot,0!==v&&(r[19]=v,k.length++),k};function J(m,h,C){C.negative=h.negative^m.negative,C.length=m.length+h.length;for(var k=0,L=0,_=0;_>>26)|0)>>>26,r&=67108863}C.words[_]=v,k=r,r=L}return 0!==k?C.words[_]=k:C.length--,C._strip()}function ee(m,h,C){return J(m,h,C)}function ie(m,h){this.x=m,this.y=h}Math.imul||(Q=j),l.prototype.mulTo=function(h,C){var L=this.length+h.length;return 10===this.length&&10===h.length?Q(this,h,C):L<63?j(this,h,C):L<1024?J(this,h,C):ee(this,h,C)},ie.prototype.makeRBT=function(h){for(var C=new Array(h),k=l.prototype._countBits(h)-1,L=0;L>=1;return L},ie.prototype.permute=function(h,C,k,L,_,r){for(var v=0;v>>=1)_++;return 1<<_+1+L},ie.prototype.conjugate=function(h,C,k){if(!(k<=1))for(var L=0;L>>=13),_>>>=13;for(r=2*C;r>=26,k+=_/67108864|0,k+=r>>>26,this.words[L]=67108863&r}return 0!==k&&(this.words[L]=k,this.length++),C?this.ineg():this},l.prototype.muln=function(h){return this.clone().imuln(h)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(h){var C=function $(m){for(var h=new Array(m.bitLength()),C=0;C>>C%26&1;return h}(h);if(0===C.length)return new l(1);for(var k=this,L=0;L=0);var _,C=h%26,k=(h-C)/26,L=67108863>>>26-C<<26-C;if(0!==C){var r=0;for(_=0;_>>26-C}r&&(this.words[_]=r,this.length++)}if(0!==k){for(_=this.length-1;_>=0;_--)this.words[_+k]=this.words[_];for(_=0;_=0),L=C?(C-C%26)/26:0;var _=h%26,r=Math.min((h-_)/26,this.length),v=67108863^67108863>>>_<<_,V=k;if(L-=r,L=Math.max(0,L),V){for(var N=0;Nr)for(this.length-=r,N=0;N=0&&(0!==ne||N>=L);N--){var Ee=0|this.words[N];this.words[N]=ne<<26-_|Ee>>>_,ne=Ee&v}return V&&0!==ne&&(V.words[V.length++]=ne),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},l.prototype.ishrn=function(h,C,k){return w(0===this.negative),this.iushrn(h,C,k)},l.prototype.shln=function(h){return this.clone().ishln(h)},l.prototype.ushln=function(h){return this.clone().iushln(h)},l.prototype.shrn=function(h){return this.clone().ishrn(h)},l.prototype.ushrn=function(h){return this.clone().iushrn(h)},l.prototype.testn=function(h){w("number"==typeof h&&h>=0);var C=h%26,k=(h-C)/26;return!(this.length<=k||!(this.words[k]&1<=0);var C=h%26,k=(h-C)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=k?this:(0!==C&&k++,this.length=Math.min(k,this.length),0!==C&&(this.words[this.length-1]&=67108863^67108863>>>C<=67108864;C++)this.words[C]-=67108864,C===this.length-1?this.words[C+1]=1:this.words[C+1]++;return this.length=Math.max(this.length,C+1),this},l.prototype.isubn=function(h){if(w("number"==typeof h),w(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 C=0;C>26)-(V/67108864|0),this.words[_+k]=67108863&r}for(;_>26,this.words[_+k]=67108863&r;if(0===v)return this._strip();for(w(-1===v),v=0,_=0;_>26,this.words[_]=67108863&r;return this.negative=1,this._strip()},l.prototype._wordDiv=function(h,C){var k,L=this.clone(),_=h,r=0|_.words[_.length-1];0!=(k=26-this._countBits(r))&&(_=_.ushln(k),L.iushln(k),r=0|_.words[_.length-1]);var N,V=L.length-_.length;if("mod"!==C){(N=new l(null)).length=V+1,N.words=new Array(N.length);for(var ne=0;ne=0;ze--){var qe=67108864*(0|L.words[_.length+ze])+(0|L.words[_.length+ze-1]);for(qe=Math.min(qe/r|0,67108863),L._ishlnsubmul(_,qe,ze);0!==L.negative;)qe--,L.negative=0,L._ishlnsubmul(_,1,ze),L.isZero()||(L.negative^=1);N&&(N.words[ze]=qe)}return N&&N._strip(),L._strip(),"div"!==C&&0!==k&&L.iushrn(k),{div:N||null,mod:L}},l.prototype.divmod=function(h,C,k){return w(!h.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===h.negative?(r=this.neg().divmod(h,C),"mod"!==C&&(L=r.div.neg()),"div"!==C&&(_=r.mod.neg(),k&&0!==_.negative&&_.iadd(h)),{div:L,mod:_}):0===this.negative&&0!==h.negative?(r=this.divmod(h.neg(),C),"mod"!==C&&(L=r.div.neg()),{div:L,mod:r.mod}):this.negative&h.negative?(r=this.neg().divmod(h.neg(),C),"div"!==C&&(_=r.mod.neg(),k&&0!==_.negative&&_.isub(h)),{div:r.div,mod:_}):h.length>this.length||this.cmp(h)<0?{div:new l(0),mod:this}:1===h.length?"div"===C?{div:this.divn(h.words[0]),mod:null}:"mod"===C?{div:null,mod:new l(this.modrn(h.words[0]))}:{div:this.divn(h.words[0]),mod:new l(this.modrn(h.words[0]))}:this._wordDiv(h,C);var L,_,r},l.prototype.div=function(h){return this.divmod(h,"div",!1).div},l.prototype.mod=function(h){return this.divmod(h,"mod",!1).mod},l.prototype.umod=function(h){return this.divmod(h,"mod",!0).mod},l.prototype.divRound=function(h){var C=this.divmod(h);if(C.mod.isZero())return C.div;var k=0!==C.div.negative?C.mod.isub(h):C.mod,L=h.ushrn(1),_=h.andln(1),r=k.cmp(L);return r<0||1===_&&0===r?C.div:0!==C.div.negative?C.div.isubn(1):C.div.iaddn(1)},l.prototype.modrn=function(h){var C=h<0;C&&(h=-h),w(h<=67108863);for(var k=(1<<26)%h,L=0,_=this.length-1;_>=0;_--)L=(k*L+(0|this.words[_]))%h;return C?-L:L},l.prototype.modn=function(h){return this.modrn(h)},l.prototype.idivn=function(h){var C=h<0;C&&(h=-h),w(h<=67108863);for(var k=0,L=this.length-1;L>=0;L--){var _=(0|this.words[L])+67108864*k;this.words[L]=_/h|0,k=_%h}return this._strip(),C?this.ineg():this},l.prototype.divn=function(h){return this.clone().idivn(h)},l.prototype.egcd=function(h){w(0===h.negative),w(!h.isZero());var C=this,k=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var L=new l(1),_=new l(0),r=new l(0),v=new l(1),V=0;C.isEven()&&k.isEven();)C.iushrn(1),k.iushrn(1),++V;for(var N=k.clone(),ne=C.clone();!C.isZero();){for(var Ee=0,ze=1;!(C.words[0]&ze)&&Ee<26;++Ee,ze<<=1);if(Ee>0)for(C.iushrn(Ee);Ee-- >0;)(L.isOdd()||_.isOdd())&&(L.iadd(N),_.isub(ne)),L.iushrn(1),_.iushrn(1);for(var qe=0,Ke=1;!(k.words[0]&Ke)&&qe<26;++qe,Ke<<=1);if(qe>0)for(k.iushrn(qe);qe-- >0;)(r.isOdd()||v.isOdd())&&(r.iadd(N),v.isub(ne)),r.iushrn(1),v.iushrn(1);C.cmp(k)>=0?(C.isub(k),L.isub(r),_.isub(v)):(k.isub(C),r.isub(L),v.isub(_))}return{a:r,b:v,gcd:k.iushln(V)}},l.prototype._invmp=function(h){w(0===h.negative),w(!h.isZero());var Ee,C=this,k=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var L=new l(1),_=new l(0),r=k.clone();C.cmpn(1)>0&&k.cmpn(1)>0;){for(var v=0,V=1;!(C.words[0]&V)&&v<26;++v,V<<=1);if(v>0)for(C.iushrn(v);v-- >0;)L.isOdd()&&L.iadd(r),L.iushrn(1);for(var N=0,ne=1;!(k.words[0]&ne)&&N<26;++N,ne<<=1);if(N>0)for(k.iushrn(N);N-- >0;)_.isOdd()&&_.iadd(r),_.iushrn(1);C.cmp(k)>=0?(C.isub(k),L.isub(_)):(k.isub(C),_.isub(L))}return(Ee=0===C.cmpn(1)?L:_).cmpn(0)<0&&Ee.iadd(h),Ee},l.prototype.gcd=function(h){if(this.isZero())return h.abs();if(h.isZero())return this.abs();var C=this.clone(),k=h.clone();C.negative=0,k.negative=0;for(var L=0;C.isEven()&&k.isEven();L++)C.iushrn(1),k.iushrn(1);for(;;){for(;C.isEven();)C.iushrn(1);for(;k.isEven();)k.iushrn(1);var _=C.cmp(k);if(_<0){var r=C;C=k,k=r}else if(0===_||0===k.cmpn(1))break;C.isub(k)}return k.iushln(L)},l.prototype.invm=function(h){return this.egcd(h).a.umod(h)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(h){return this.words[0]&h},l.prototype.bincn=function(h){w("number"==typeof h);var C=h%26,k=(h-C)/26,L=1<>>26,this.words[r]=v&=67108863}return 0!==_&&(this.words[r]=_,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(h){var k,C=h<0;if(0!==this.negative&&!C)return-1;if(0===this.negative&&C)return 1;if(this._strip(),this.length>1)k=1;else{C&&(h=-h),w(h<=67108863,"Number is too big");var L=0|this.words[0];k=L===h?0:Lh.length)return 1;if(this.length=0;k--){var L=0|this.words[k],_=0|h.words[k];if(L!==_){L<_?C=-1:L>_&&(C=1);break}}return C},l.prototype.gtn=function(h){return 1===this.cmpn(h)},l.prototype.gt=function(h){return 1===this.cmp(h)},l.prototype.gten=function(h){return this.cmpn(h)>=0},l.prototype.gte=function(h){return this.cmp(h)>=0},l.prototype.ltn=function(h){return-1===this.cmpn(h)},l.prototype.lt=function(h){return-1===this.cmp(h)},l.prototype.lten=function(h){return this.cmpn(h)<=0},l.prototype.lte=function(h){return this.cmp(h)<=0},l.prototype.eqn=function(h){return 0===this.cmpn(h)},l.prototype.eq=function(h){return 0===this.cmp(h)},l.red=function(h){return new n(h)},l.prototype.toRed=function(h){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),h.convertTo(this)._forceRed(h)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(h){return this.red=h,this},l.prototype.forceRed=function(h){return w(!this.red,"Already a number in reduction context"),this._forceRed(h)},l.prototype.redAdd=function(h){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,h)},l.prototype.redIAdd=function(h){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,h)},l.prototype.redSub=function(h){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,h)},l.prototype.redISub=function(h){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,h)},l.prototype.redShl=function(h){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,h)},l.prototype.redMul=function(h){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.mul(this,h)},l.prototype.redIMul=function(h){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.imul(this,h)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(h){return w(this.red&&!h.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,h)};var ge={k256:null,p224:null,p192:null,p25519:null};function ae(m,h){this.name=m,this.p=new l(h,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function Me(){ae.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function Te(){ae.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function de(){ae.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function D(){ae.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function n(m){if("string"==typeof m){var h=l._prime(m);this.m=h.p,this.prime=h}else w(m.gtn(1),"modulus must be greater than 1"),this.m=m,this.prime=null}function c(m){n.call(this,m),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ae.prototype._tmp=function(){var h=new l(null);return h.words=new Array(Math.ceil(this.n/13)),h},ae.prototype.ireduce=function(h){var k,C=h;do{this.split(C,this.tmp),k=(C=(C=this.imulK(C)).iadd(this.tmp)).bitLength()}while(k>this.n);var L=k0?C.isub(this.p):void 0!==C.strip?C.strip():C._strip(),C},ae.prototype.split=function(h,C){h.iushrn(this.n,0,C)},ae.prototype.imulK=function(h){return h.imul(this.k)},S(Me,ae),Me.prototype.split=function(h,C){for(var k=4194303,L=Math.min(h.length,9),_=0;_>>22,r=v}h.words[_-10]=r>>>=22,h.length-=0===r&&h.length>10?10:9},Me.prototype.imulK=function(h){h.words[h.length]=0,h.words[h.length+1]=0,h.length+=2;for(var C=0,k=0;k>>=26,h.words[k]=_,C=L}return 0!==C&&(h.words[h.length++]=C),h},l._prime=function(h){if(ge[h])return ge[h];var C;if("k256"===h)C=new Me;else if("p224"===h)C=new Te;else if("p192"===h)C=new de;else{if("p25519"!==h)throw new Error("Unknown prime "+h);C=new D}return ge[h]=C,C},n.prototype._verify1=function(h){w(0===h.negative,"red works only with positives"),w(h.red,"red works only with red numbers")},n.prototype._verify2=function(h,C){w(!(h.negative|C.negative),"red works only with positives"),w(h.red&&h.red===C.red,"red works only with red numbers")},n.prototype.imod=function(h){return this.prime?this.prime.ireduce(h)._forceRed(this):(T(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,C){this._verify2(h,C);var k=h.add(C);return k.cmp(this.m)>=0&&k.isub(this.m),k._forceRed(this)},n.prototype.iadd=function(h,C){this._verify2(h,C);var k=h.iadd(C);return k.cmp(this.m)>=0&&k.isub(this.m),k},n.prototype.sub=function(h,C){this._verify2(h,C);var k=h.sub(C);return k.cmpn(0)<0&&k.iadd(this.m),k._forceRed(this)},n.prototype.isub=function(h,C){this._verify2(h,C);var k=h.isub(C);return k.cmpn(0)<0&&k.iadd(this.m),k},n.prototype.shl=function(h,C){return this._verify1(h),this.imod(h.ushln(C))},n.prototype.imul=function(h,C){return this._verify2(h,C),this.imod(h.imul(C))},n.prototype.mul=function(h,C){return this._verify2(h,C),this.imod(h.mul(C))},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 C=this.m.andln(3);if(w(C%2==1),3===C){var k=this.m.add(new l(1)).iushrn(2);return this.pow(h,k)}for(var L=this.m.subn(1),_=0;!L.isZero()&&0===L.andln(1);)_++,L.iushrn(1);w(!L.isZero());var r=new l(1).toRed(this),v=r.redNeg(),V=this.m.subn(1).iushrn(1),N=this.m.bitLength();for(N=new l(2*N*N).toRed(this);0!==this.pow(N,V).cmp(v);)N.redIAdd(v);for(var ne=this.pow(N,L),Ee=this.pow(h,L.addn(1).iushrn(1)),ze=this.pow(h,L),qe=_;0!==ze.cmp(r);){for(var Ke=ze,se=0;0!==Ke.cmp(r);se++)Ke=Ke.redSqr();w(se=0;_--){for(var ne=C.words[_],Ee=N-1;Ee>=0;Ee--){var ze=ne>>Ee&1;r!==L[0]&&(r=this.sqr(r)),0!==ze||0!==v?(v<<=1,v|=ze,(4==++V||0===_&&0===Ee)&&(r=this.mul(r,L[v]),V=0,v=0)):V=0}N=26}return r},n.prototype.convertTo=function(h){var C=h.umod(this.m);return C===h?C.clone():C},n.prototype.convertFrom=function(h){var C=h.clone();return C.red=null,C},l.mont=function(h){return new c(h)},S(c,n),c.prototype.convertTo=function(h){return this.imod(h.ushln(this.shift))},c.prototype.convertFrom=function(h){var C=this.imod(h.mul(this.rinv));return C.red=null,C},c.prototype.imul=function(h,C){if(h.isZero()||C.isZero())return h.words[0]=0,h.length=1,h;var k=h.imul(C),L=k.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=k.isub(L).iushrn(this.shift),r=_;return _.cmp(this.m)>=0?r=_.isub(this.m):_.cmpn(0)<0&&(r=_.iadd(this.m)),r._forceRed(this)},c.prototype.mul=function(h,C){if(h.isZero()||C.isZero())return new l(0)._forceRed(this);var k=h.mul(C),L=k.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=k.isub(L).iushrn(this.shift),r=_;return _.cmp(this.m)>=0?r=_.isub(this.m):_.cmpn(0)<0&&(r=_.iadd(this.m)),r._forceRed(this)},c.prototype.invm=function(h){return this.imod(h._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},5294:(Qe,te,g)=>{var e;function t(S){this.rand=S}if(Qe.exports=function(l){return e||(e=new t(null)),e.generate(l)},Qe.exports.Rand=t,t.prototype.generate=function(l){return this._rand(l)},t.prototype._rand=function(l){if(this.rand.getBytes)return this.rand.getBytes(l);for(var x=new Uint8Array(l),f=0;f{var e=g(7054).Buffer;function t(I){e.isBuffer(I)||(I=e.from(I));for(var d=I.length/4|0,T=new Array(d),y=0;y>>24]^z[Q>>>16&255]^W[J>>>8&255]^$[255&ee]^d[Te++],ge=R[Q>>>24]^z[J>>>16&255]^W[ee>>>8&255]^$[255&j]^d[Te++],ae=R[J>>>24]^z[ee>>>16&255]^W[j>>>8&255]^$[255&Q]^d[Te++],Me=R[ee>>>24]^z[j>>>16&255]^W[Q>>>8&255]^$[255&J]^d[Te++],j=ie,Q=ge,J=ae,ee=Me;return ie=(y[j>>>24]<<24|y[Q>>>16&255]<<16|y[J>>>8&255]<<8|y[255&ee])^d[Te++],ge=(y[Q>>>24]<<24|y[J>>>16&255]<<16|y[ee>>>8&255]<<8|y[255&j])^d[Te++],ae=(y[J>>>24]<<24|y[ee>>>16&255]<<16|y[j>>>8&255]<<8|y[255&Q])^d[Te++],Me=(y[ee>>>24]<<24|y[j>>>16&255]<<16|y[Q>>>8&255]<<8|y[255&J])^d[Te++],[ie>>>=0,ge>>>=0,ae>>>=0,Me>>>=0]}var l=[0,1,2,4,8,16,32,64,128,27,54],x=function(){for(var I=new Array(256),d=0;d<256;d++)I[d]=d<128?d<<1:d<<1^283;for(var T=[],y=[],F=[[],[],[],[]],R=[[],[],[],[]],z=0,W=0,$=0;$<256;++$){var j=W^W<<1^W<<2^W<<3^W<<4;T[z]=j=j>>>8^255&j^99,y[j]=z;var Q=I[z],J=I[Q],ee=I[J],ie=257*I[j]^16843008*j;F[0][z]=ie<<24|ie>>>8,F[1][z]=ie<<16|ie>>>16,F[2][z]=ie<<8|ie>>>24,F[3][z]=ie,R[0][j]=(ie=16843009*ee^65537*J^257*Q^16843008*z)<<24|ie>>>8,R[1][j]=ie<<16|ie>>>16,R[2][j]=ie<<8|ie>>>24,R[3][j]=ie,0===z?z=W=1:(z=Q^I[I[I[ee^Q]]],W^=I[I[W]])}return{SBOX:T,INV_SBOX:y,SUB_MIX:F,INV_SUB_MIX:R}}();function f(I){this._key=t(I),this._reset()}f.blockSize=16,f.keySize=32,f.prototype.blockSize=f.blockSize,f.prototype.keySize=f.keySize,f.prototype._reset=function(){for(var I=this._key,d=I.length,T=d+6,y=4*(T+1),F=[],R=0;R>>24)>>>24]<<24|x.SBOX[z>>>16&255]<<16|x.SBOX[z>>>8&255]<<8|x.SBOX[255&z],z^=l[R/d|0]<<24):d>6&&R%d==4&&(z=x.SBOX[z>>>24]<<24|x.SBOX[z>>>16&255]<<16|x.SBOX[z>>>8&255]<<8|x.SBOX[255&z]),F[R]=F[R-d]^z}for(var W=[],$=0;$>>24]]^x.INV_SUB_MIX[1][x.SBOX[Q>>>16&255]]^x.INV_SUB_MIX[2][x.SBOX[Q>>>8&255]]^x.INV_SUB_MIX[3][x.SBOX[255&Q]]}this._nRounds=T,this._keySchedule=F,this._invKeySchedule=W},f.prototype.encryptBlockRaw=function(I){return S(I=t(I),this._keySchedule,x.SUB_MIX,x.SBOX,this._nRounds)},f.prototype.encryptBlock=function(I){var d=this.encryptBlockRaw(I),T=e.allocUnsafe(16);return T.writeUInt32BE(d[0],0),T.writeUInt32BE(d[1],4),T.writeUInt32BE(d[2],8),T.writeUInt32BE(d[3],12),T},f.prototype.decryptBlock=function(I){var d=(I=t(I))[1];I[1]=I[3],I[3]=d;var T=S(I,this._invKeySchedule,x.INV_SUB_MIX,x.INV_SBOX,this._nRounds),y=e.allocUnsafe(16);return y.writeUInt32BE(T[0],0),y.writeUInt32BE(T[3],4),y.writeUInt32BE(T[2],8),y.writeUInt32BE(T[1],12),y},f.prototype.scrub=function(){w(this._keySchedule),w(this._invKeySchedule),w(this._key)},Qe.exports.AES=f},9307:(Qe,te,g)=>{var e=g(2375),t=g(7054).Buffer,w=g(3247),S=g(1993),l=g(5917),x=g(3546),f=g(5725);function T(y,F,R,z){w.call(this);var W=t.alloc(4,0);this._cipher=new e.AES(F);var $=this._cipher.encryptBlock(W);this._ghash=new l($),R=function d(y,F,R){if(12===F.length)return y._finID=t.concat([F,t.from([0,0,0,1])]),t.concat([F,t.from([0,0,0,2])]);var z=new l(R),W=F.length,$=W%16;z.update(F),$&&z.update(t.alloc($=16-$,0)),z.update(t.alloc(8,0));var j=8*W,Q=t.alloc(8);Q.writeUIntBE(j,0,8),z.update(Q),y._finID=z.state;var J=t.from(y._finID);return f(J),J}(this,R,$),this._prev=t.from(R),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=z,this._alen=0,this._len=0,this._mode=y,this._authTag=null,this._called=!1}S(T,w),T.prototype._update=function(y){if(!this._called&&this._alen){var F=16-this._alen%16;F<16&&(F=t.alloc(F,0),this._ghash.update(F))}this._called=!0;var R=this._mode.encrypt(this,y);return this._ghash.update(this._decrypt?y:R),this._len+=y.length,R},T.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var y=x(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function I(y,F){var R=0;y.length!==F.length&&R++;for(var z=Math.min(y.length,F.length),W=0;W{var e=g(350),t=g(102),w=g(3219);te.createCipher=te.Cipher=e.createCipher,te.createCipheriv=te.Cipheriv=e.createCipheriv,te.createDecipher=te.Decipher=t.createDecipher,te.createDecipheriv=te.Decipheriv=t.createDecipheriv,te.listCiphers=te.getCiphers=function S(){return Object.keys(w)}},102:(Qe,te,g)=>{var e=g(9307),t=g(7054).Buffer,w=g(503),S=g(1821),l=g(3247),x=g(2375),f=g(592);function d(z,W,$){l.call(this),this._cache=new T,this._last=void 0,this._cipher=new x.AES(W),this._prev=t.from($),this._mode=z,this._autopadding=!0}function T(){this.cache=t.allocUnsafe(0)}function F(z,W,$){var j=w[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof $&&($=t.from($)),"GCM"!==j.mode&&$.length!==j.iv)throw new TypeError("invalid iv length "+$.length);if("string"==typeof W&&(W=t.from(W)),W.length!==j.key/8)throw new TypeError("invalid key length "+W.length);return"stream"===j.type?new S(j.module,W,$,!0):"auth"===j.type?new e(j.module,W,$,!0):new d(j.module,W,$)}g(1993)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var W,$,j=[];W=this._cache.get(this._autopadding);)$=this._mode.decrypt(this,W),j.push($);return t.concat(j)},d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return function y(z){var W=z[15];if(W<1||W>16)throw new Error("unable to decrypt data");for(var $=-1;++$16)return W=this.cache.slice(0,16),this.cache=this.cache.slice(16),W}else if(this.cache.length>=16)return W=this.cache.slice(0,16),this.cache=this.cache.slice(16),W;return null},T.prototype.flush=function(){if(this.cache.length)return this.cache},te.createDecipher=function R(z,W){var $=w[z.toLowerCase()];if(!$)throw new TypeError("invalid suite type");var j=f(W,!1,$.key,$.iv);return F(z,j.key,j.iv)},te.createDecipheriv=F},350:(Qe,te,g)=>{var e=g(503),t=g(9307),w=g(7054).Buffer,S=g(1821),l=g(3247),x=g(2375),f=g(592);function d(z,W,$){l.call(this),this._cache=new y,this._cipher=new x.AES(W),this._prev=w.from($),this._mode=z,this._autopadding=!0}g(1993)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var W,$,j=[];W=this._cache.get();)$=this._mode.encrypt(this,W),j.push($);return w.concat(j)};var T=w.alloc(16,16);function y(){this.cache=w.allocUnsafe(0)}function F(z,W,$){var j=e[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof W&&(W=w.from(W)),W.length!==j.key/8)throw new TypeError("invalid key length "+W.length);if("string"==typeof $&&($=w.from($)),"GCM"!==j.mode&&$.length!==j.iv)throw new TypeError("invalid iv length "+$.length);return"stream"===j.type?new S(j.module,W,$):"auth"===j.type?new t(j.module,W,$):new d(j.module,W,$)}d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return z=this._mode.encrypt(this,z),this._cipher.scrub(),z;if(!z.equals(T))throw this._cipher.scrub(),new Error("data not multiple of block length")},d.prototype.setAutoPadding=function(z){return this._autopadding=!!z,this},y.prototype.add=function(z){this.cache=w.concat([this.cache,z])},y.prototype.get=function(){if(this.cache.length>15){var z=this.cache.slice(0,16);return this.cache=this.cache.slice(16),z}return null},y.prototype.flush=function(){for(var z=16-this.cache.length,W=w.allocUnsafe(z),$=-1;++${var e=g(7054).Buffer,t=e.alloc(16,0);function S(x){var f=e.allocUnsafe(16);return f.writeUInt32BE(x[0]>>>0,0),f.writeUInt32BE(x[1]>>>0,4),f.writeUInt32BE(x[2]>>>0,8),f.writeUInt32BE(x[3]>>>0,12),f}function l(x){this.h=x,this.state=e.alloc(16,0),this.cache=e.allocUnsafe(0)}l.prototype.ghash=function(x){for(var f=-1;++f0;I--)x[I]=x[I]>>>1|(1&x[I-1])<<31;x[0]=x[0]>>>1,T&&(x[0]=x[0]^225<<24)}this.state=S(f)},l.prototype.update=function(x){this.cache=e.concat([this.cache,x]);for(var f;this.cache.length>=16;)f=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(f)},l.prototype.final=function(x,f){return this.cache.length&&this.ghash(e.concat([this.cache,t],16)),this.ghash(S([0,x,0,f])),this.state},Qe.exports=l},5725:Qe=>{Qe.exports=function te(g){for(var t,e=g.length;e--;){if(255!==(t=g.readUInt8(e))){t++,g.writeUInt8(t,e);break}g.writeUInt8(0,e)}}},4133:(Qe,te,g)=>{var e=g(3546);te.encrypt=function(t,w){var S=e(w,t._prev);return t._prev=t._cipher.encryptBlock(S),t._prev},te.decrypt=function(t,w){var S=t._prev;t._prev=w;var l=t._cipher.decryptBlock(w);return e(l,S)}},7090:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(3546);function w(S,l,x){var f=l.length,I=t(l,S._cache);return S._cache=S._cache.slice(f),S._prev=e.concat([S._prev,x?l:I]),I}te.encrypt=function(S,l,x){for(var I,f=e.allocUnsafe(0);l.length;){if(0===S._cache.length&&(S._cache=S._cipher.encryptBlock(S._prev),S._prev=e.allocUnsafe(0)),!(S._cache.length<=l.length)){f=e.concat([f,w(S,l,x)]);break}f=e.concat([f,w(S,l.slice(0,I=S._cache.length),x)]),l=l.slice(I)}return f}},1039:(Qe,te,g)=>{var e=g(7054).Buffer;function t(S,l,x){for(var y,F,I=-1,T=0;++I<8;)T+=(128&(F=S._cipher.encryptBlock(S._prev)[0]^(y=l&1<<7-I?128:0)))>>I%8,S._prev=w(S._prev,x?y:F);return T}function w(S,l){var x=S.length,f=-1,I=e.allocUnsafe(S.length);for(S=e.concat([S,e.from([l])]);++f>7;return I}te.encrypt=function(S,l,x){for(var f=l.length,I=e.allocUnsafe(f),d=-1;++d{var e=g(7054).Buffer;function t(w,S,l){var f=w._cipher.encryptBlock(w._prev)[0]^S;return w._prev=e.concat([w._prev.slice(1),e.from([l?S:f])]),f}te.encrypt=function(w,S,l){for(var x=S.length,f=e.allocUnsafe(x),I=-1;++I{var e=g(3546),t=g(7054).Buffer,w=g(5725);function S(x){var f=x._cipher.encryptBlockRaw(x._prev);return w(x._prev),f}te.encrypt=function(x,f){var I=Math.ceil(f.length/16),d=x._cache.length;x._cache=t.concat([x._cache,t.allocUnsafe(16*I)]);for(var T=0;T{te.encrypt=function(g,e){return g._cipher.encryptBlock(e)},te.decrypt=function(g,e){return g._cipher.decryptBlock(e)}},503:(Qe,te,g)=>{var e={ECB:g(7513),CBC:g(4133),CFB:g(7090),CFB8:g(2576),CFB1:g(1039),OFB:g(6854),CTR:g(336),GCM:g(336)},t=g(3219);for(var w in t)t[w].module=e[t[w].mode];Qe.exports=t},6854:(Qe,te,g)=>{var e=g(3546);function t(w){return w._prev=w._cipher.encryptBlock(w._prev),w._prev}te.encrypt=function(w,S){for(;w._cache.length{var e=g(2375),t=g(7054).Buffer,w=g(3247);function l(x,f,I,d){w.call(this),this._cipher=new e.AES(f),this._prev=t.from(I),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=d,this._mode=x}g(1993)(l,w),l.prototype._update=function(x){return this._mode.encrypt(this,x,this._decrypt)},l.prototype._final=function(){this._cipher.scrub()},Qe.exports=l},8862:(Qe,te,g)=>{var e=g(9799),t=g(3388),w=g(503),S=g(9571),l=g(592);function I(y,F,R){if(y=y.toLowerCase(),w[y])return t.createCipheriv(y,F,R);if(S[y])return new e({key:F,iv:R,mode:y});throw new TypeError("invalid suite type")}function d(y,F,R){if(y=y.toLowerCase(),w[y])return t.createDecipheriv(y,F,R);if(S[y])return new e({key:F,iv:R,mode:y,decrypt:!0});throw new TypeError("invalid suite type")}te.createCipher=te.Cipher=function x(y,F){var R,z;if(y=y.toLowerCase(),w[y])R=w[y].key,z=w[y].iv;else{if(!S[y])throw new TypeError("invalid suite type");R=8*S[y].key,z=S[y].iv}var W=l(F,!1,R,z);return I(y,W.key,W.iv)},te.createCipheriv=te.Cipheriv=I,te.createDecipher=te.Decipher=function f(y,F){var R,z;if(y=y.toLowerCase(),w[y])R=w[y].key,z=w[y].iv;else{if(!S[y])throw new TypeError("invalid suite type");R=8*S[y].key,z=S[y].iv}var W=l(F,!1,R,z);return d(y,W.key,W.iv)},te.createDecipheriv=te.Decipheriv=d,te.listCiphers=te.getCiphers=function T(){return Object.keys(S).concat(t.getCiphers())}},9799:(Qe,te,g)=>{var e=g(3247),t=g(1549),w=g(1993),S=g(7054).Buffer,l={"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 x(f){e.call(this);var T,I=f.mode.toLowerCase(),d=l[I];T=f.decrypt?"decrypt":"encrypt";var y=f.key;S.isBuffer(y)||(y=S.from(y)),("des-ede"===I||"des-ede-cbc"===I)&&(y=S.concat([y,y.slice(0,8)]));var F=f.iv;S.isBuffer(F)||(F=S.from(F)),this._des=d.create({key:y,iv:F,type:T})}l.des=l["des-cbc"],l.des3=l["des-ede3-cbc"],Qe.exports=x,w(x,e),x.prototype._update=function(f){return S.from(this._des.update(f))},x.prototype._final=function(){return S.from(this._des.final())}},9571:(Qe,te)=>{te["des-ecb"]={key:8,iv:0},te["des-cbc"]=te.des={key:8,iv:8},te["des-ede3-cbc"]=te.des3={key:24,iv:8},te["des-ede3"]={key:24,iv:0},te["des-ede-cbc"]={key:16,iv:8},te["des-ede"]={key:16,iv:0}},4105:(Qe,te,g)=>{var e=g(917),t=g(3342);function S(x){var I,f=x.modulus.byteLength();do{I=new e(t(f))}while(I.cmp(x.modulus)>=0||!I.umod(x.prime1)||!I.umod(x.prime2));return I}function l(x,f){var I=function w(x){var f=S(x);return{blinder:f.toRed(e.mont(x.modulus)).redPow(new e(x.publicExponent)).fromRed(),unblinder:f.invm(x.modulus)}}(f),d=f.modulus.byteLength(),T=new e(x).mul(I.blinder).umod(f.modulus),y=T.toRed(e.mont(f.prime1)),F=T.toRed(e.mont(f.prime2)),R=f.coefficient,z=f.prime1,W=f.prime2,$=y.redPow(f.exponent1).fromRed(),j=F.redPow(f.exponent2).fromRed(),Q=$.isub(j).imul(R).umod(z).imul(W);return j.iadd(Q).imul(I.unblinder).umod(f.modulus).toArrayLike(Buffer,"be",d)}l.getr=S,Qe.exports=l},9560:(Qe,te,g)=>{"use strict";Qe.exports=g(2951)},9143:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7211),w=g(5942),S=g(1993),l=g(3150),x=g(4754),f=g(2951);function I(F){w.Writable.call(this);var R=f[F];if(!R)throw new Error("Unknown message digest");this._hashType=R.hash,this._hash=t(R.hash),this._tag=R.id,this._signType=R.sign}function d(F){w.Writable.call(this);var R=f[F];if(!R)throw new Error("Unknown message digest");this._hash=t(R.hash),this._tag=R.id,this._signType=R.sign}function T(F){return new I(F)}function y(F){return new d(F)}Object.keys(f).forEach(function(F){f[F].id=e.from(f[F].id,"hex"),f[F.toLowerCase()]=f[F]}),S(I,w.Writable),I.prototype._write=function(R,z,W){this._hash.update(R),W()},I.prototype.update=function(R,z){return this._hash.update("string"==typeof R?e.from(R,z):R),this},I.prototype.sign=function(R,z){this.end();var W=this._hash.digest(),$=l(W,R,this._hashType,this._signType,this._tag);return z?$.toString(z):$},S(d,w.Writable),d.prototype._write=function(R,z,W){this._hash.update(R),W()},d.prototype.update=function(R,z){return this._hash.update("string"==typeof R?e.from(R,z):R),this},d.prototype.verify=function(R,z,W){var $="string"==typeof z?e.from(z,W):z;this.end();var j=this._hash.digest();return x($,j,R,this._signType,this._tag)},Qe.exports={Sign:T,Verify:y,createSign:T,createVerify:y}},3150:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(6432),w=g(4105),S=g(518).ec,l=g(917),x=g(5667),f=g(4589);function R(Q,J,ee,ie){if((Q=e.from(Q.toArray())).length0&&ee.ishrn(ie),ee}function $(Q,J,ee){var ie,ge;do{for(ie=e.alloc(0);8*ie.length{"use strict";var e=g(7054).Buffer,t=g(917),w=g(518).ec,S=g(5667),l=g(4589);function d(T,y){if(T.cmpn(0)<=0)throw new Error("invalid sig");if(T.cmp(y)>=0)throw new Error("invalid sig")}Qe.exports=function x(T,y,F,R,z){var W=S(F);if("ec"===W.type){if("ecdsa"!==R&&"ecdsa/rsa"!==R)throw new Error("wrong public key type");return function f(T,y,F){var R=l[F.data.algorithm.curve.join(".")];if(!R)throw new Error("unknown curve "+F.data.algorithm.curve.join("."));return new w(R).verify(y,T,F.data.subjectPrivateKey.data)}(T,y,W)}if("dsa"===W.type){if("dsa"!==R)throw new Error("wrong public key type");return function I(T,y,F){var R=F.data.p,z=F.data.q,W=F.data.g,$=F.data.pub_key,j=S.signature.decode(T,"der"),Q=j.s,J=j.r;d(Q,z),d(J,z);var ee=t.mont(R),ie=Q.invm(z);return 0===W.toRed(ee).redPow(new t(y).mul(ie).mod(z)).fromRed().mul($.toRed(ee).redPow(J.mul(ie).mod(z)).fromRed()).mod(R).mod(z).cmp(J)}(T,y,W)}if("rsa"!==R&&"ecdsa/rsa"!==R)throw new Error("wrong public key type");y=e.concat([z,y]);for(var $=W.modulus.byteLength(),j=[1],Q=0;y.length+j.length+2<$;)j.push(255),Q+=1;j.push(0);for(var J=-1;++J{Qe.exports=function(g,e){for(var t=Math.min(g.length,e.length),w=new Buffer(t),S=0;S{"use strict";var e=g(3981),t=g(2020),w="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;te.Buffer=f,te.SlowBuffer=function Q(_e){return+_e!=_e&&(_e=0),f.alloc(+_e)},te.INSPECT_MAX_BYTES=50;var S=2147483647;function x(_e){if(_e>S)throw new RangeError('The value "'+_e+'" is invalid for option "size"');var be=new Uint8Array(_e);return Object.setPrototypeOf(be,f.prototype),be}function f(_e,be,pe){if("number"==typeof _e){if("string"==typeof be)throw new TypeError('The "string" argument must be of type string. Received type number');return y(_e)}return I(_e,be,pe)}function I(_e,be,pe){if("string"==typeof _e)return function F(_e,be){if(("string"!=typeof be||""===be)&&(be="utf8"),!f.isEncoding(be))throw new TypeError("Unknown encoding: "+be);var pe=0|J(_e,be),Ze=x(pe),_t=Ze.write(_e,be);return _t!==pe&&(Ze=Ze.slice(0,_t)),Ze}(_e,be);if(ArrayBuffer.isView(_e))return function z(_e){if(fe(_e,Uint8Array)){var be=new Uint8Array(_e);return W(be.buffer,be.byteOffset,be.byteLength)}return R(_e)}(_e);if(null==_e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof _e);if(fe(_e,ArrayBuffer)||_e&&fe(_e.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(fe(_e,SharedArrayBuffer)||_e&&fe(_e.buffer,SharedArrayBuffer)))return W(_e,be,pe);if("number"==typeof _e)throw new TypeError('The "value" argument must not be of type number. Received type number');var Ze=_e.valueOf&&_e.valueOf();if(null!=Ze&&Ze!==_e)return f.from(Ze,be,pe);var _t=function $(_e){if(f.isBuffer(_e)){var be=0|j(_e.length),pe=x(be);return 0===pe.length||_e.copy(pe,0,0,be),pe}return void 0!==_e.length?"number"!=typeof _e.length||ke(_e.length)?x(0):R(_e):"Buffer"===_e.type&&Array.isArray(_e.data)?R(_e.data):void 0}(_e);if(_t)return _t;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof _e[Symbol.toPrimitive])return f.from(_e[Symbol.toPrimitive]("string"),be,pe);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof _e)}function d(_e){if("number"!=typeof _e)throw new TypeError('"size" argument must be of type number');if(_e<0)throw new RangeError('The value "'+_e+'" is invalid for option "size"')}function y(_e){return d(_e),x(_e<0?0:0|j(_e))}function R(_e){for(var be=_e.length<0?0:0|j(_e.length),pe=x(be),Ze=0;Ze=S)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+S.toString(16)+" bytes");return 0|_e}function J(_e,be){if(f.isBuffer(_e))return _e.length;if(ArrayBuffer.isView(_e)||fe(_e,ArrayBuffer))return _e.byteLength;if("string"!=typeof _e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof _e);var pe=_e.length,Ze=arguments.length>2&&!0===arguments[2];if(!Ze&&0===pe)return 0;for(var _t=!1;;)switch(be){case"ascii":case"latin1":case"binary":return pe;case"utf8":case"utf-8":return Ke(_e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*pe;case"hex":return pe>>>1;case"base64":return me(_e).length;default:if(_t)return Ze?-1:Ke(_e).length;be=(""+be).toLowerCase(),_t=!0}}function ee(_e,be,pe){var Ze=!1;if((void 0===be||be<0)&&(be=0),be>this.length||((void 0===pe||pe>this.length)&&(pe=this.length),pe<=0)||(pe>>>=0)<=(be>>>=0))return"";for(_e||(_e="utf8");;)switch(_e){case"hex":return _(this,be,pe);case"utf8":case"utf-8":return m(this,be,pe);case"ascii":return k(this,be,pe);case"latin1":case"binary":return L(this,be,pe);case"base64":return c(this,be,pe);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r(this,be,pe);default:if(Ze)throw new TypeError("Unknown encoding: "+_e);_e=(_e+"").toLowerCase(),Ze=!0}}function ie(_e,be,pe){var Ze=_e[be];_e[be]=_e[pe],_e[pe]=Ze}function ge(_e,be,pe,Ze,_t){if(0===_e.length)return-1;if("string"==typeof pe?(Ze=pe,pe=0):pe>2147483647?pe=2147483647:pe<-2147483648&&(pe=-2147483648),ke(pe=+pe)&&(pe=_t?0:_e.length-1),pe<0&&(pe=_e.length+pe),pe>=_e.length){if(_t)return-1;pe=_e.length-1}else if(pe<0){if(!_t)return-1;pe=0}if("string"==typeof be&&(be=f.from(be,Ze)),f.isBuffer(be))return 0===be.length?-1:ae(_e,be,pe,Ze,_t);if("number"==typeof be)return be&=255,"function"==typeof Uint8Array.prototype.indexOf?_t?Uint8Array.prototype.indexOf.call(_e,be,pe):Uint8Array.prototype.lastIndexOf.call(_e,be,pe):ae(_e,[be],pe,Ze,_t);throw new TypeError("val must be string, number or Buffer")}function ae(_e,be,pe,Ze,_t){var ue,at=1,pt=_e.length,Xt=be.length;if(void 0!==Ze&&("ucs2"===(Ze=String(Ze).toLowerCase())||"ucs-2"===Ze||"utf16le"===Ze||"utf-16le"===Ze)){if(_e.length<2||be.length<2)return-1;at=2,pt/=2,Xt/=2,pe/=2}function ye(yt,Ye){return 1===at?yt[Ye]:yt.readUInt16BE(Ye*at)}if(_t){var Ie=-1;for(ue=pe;uept&&(pe=pt-Xt),ue=pe;ue>=0;ue--){for(var He=!0,Xe=0;Xe_t&&(Ze=_t):Ze=_t;var at=be.length;Ze>at/2&&(Ze=at/2);for(var pt=0;pt>8,at.push(pe%256),at.push(Ze);return at}(be,_e.length-pe),_e,pe,Ze)}function c(_e,be,pe){return e.fromByteArray(0===be&&pe===_e.length?_e:_e.slice(be,pe))}function m(_e,be,pe){pe=Math.min(_e.length,pe);for(var Ze=[],_t=be;_t239?4:at>223?3:at>191?2:1;if(_t+Xt<=pe)switch(Xt){case 1:at<128&&(pt=at);break;case 2:128==(192&(ye=_e[_t+1]))&&(He=(31&at)<<6|63&ye)>127&&(pt=He);break;case 3:ue=_e[_t+2],128==(192&(ye=_e[_t+1]))&&128==(192&ue)&&(He=(15&at)<<12|(63&ye)<<6|63&ue)>2047&&(He<55296||He>57343)&&(pt=He);break;case 4:ue=_e[_t+2],Ie=_e[_t+3],128==(192&(ye=_e[_t+1]))&&128==(192&ue)&&128==(192&Ie)&&(He=(15&at)<<18|(63&ye)<<12|(63&ue)<<6|63&Ie)>65535&&He<1114112&&(pt=He)}null===pt?(pt=65533,Xt=1):pt>65535&&(Ze.push((pt-=65536)>>>10&1023|55296),pt=56320|1023&pt),Ze.push(pt),_t+=Xt}return function C(_e){var be=_e.length;if(be<=h)return String.fromCharCode.apply(String,_e);for(var pe="",Ze=0;Ze_t.length?f.from(pt).copy(_t,at):Uint8Array.prototype.set.call(_t,pt,at);else{if(!f.isBuffer(pt))throw new TypeError('"list" argument must be an Array of Buffers');pt.copy(_t,at)}at+=pt.length}return _t},f.byteLength=J,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var be=this.length;if(be%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var pe=0;pepe&&(be+=" ... "),""},w&&(f.prototype[w]=f.prototype.inspect),f.prototype.compare=function(be,pe,Ze,_t,at){if(fe(be,Uint8Array)&&(be=f.from(be,be.offset,be.byteLength)),!f.isBuffer(be))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof be);if(void 0===pe&&(pe=0),void 0===Ze&&(Ze=be?be.length:0),void 0===_t&&(_t=0),void 0===at&&(at=this.length),pe<0||Ze>be.length||_t<0||at>this.length)throw new RangeError("out of range index");if(_t>=at&&pe>=Ze)return 0;if(_t>=at)return-1;if(pe>=Ze)return 1;if(this===be)return 0;for(var pt=(at>>>=0)-(_t>>>=0),Xt=(Ze>>>=0)-(pe>>>=0),ye=Math.min(pt,Xt),ue=this.slice(_t,at),Ie=be.slice(pe,Ze),He=0;He>>=0,isFinite(Ze)?(Ze>>>=0,void 0===_t&&(_t="utf8")):(_t=Ze,Ze=void 0)}var at=this.length-pe;if((void 0===Ze||Ze>at)&&(Ze=at),be.length>0&&(Ze<0||pe<0)||pe>this.length)throw new RangeError("Attempt to write outside buffer bounds");_t||(_t="utf8");for(var pt=!1;;)switch(_t){case"hex":return Me(this,be,pe,Ze);case"utf8":case"utf-8":return Te(this,be,pe,Ze);case"ascii":case"latin1":case"binary":return de(this,be,pe,Ze);case"base64":return D(this,be,pe,Ze);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,be,pe,Ze);default:if(pt)throw new TypeError("Unknown encoding: "+_t);_t=(""+_t).toLowerCase(),pt=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var h=4096;function k(_e,be,pe){var Ze="";pe=Math.min(_e.length,pe);for(var _t=be;_tZe)&&(pe=Ze);for(var _t="",at=be;atpe)throw new RangeError("Trying to access beyond buffer length")}function V(_e,be,pe,Ze,_t,at){if(!f.isBuffer(_e))throw new TypeError('"buffer" argument must be a Buffer instance');if(be>_t||be_e.length)throw new RangeError("Index out of range")}function N(_e,be,pe,Ze,_t,at){if(pe+Ze>_e.length)throw new RangeError("Index out of range");if(pe<0)throw new RangeError("Index out of range")}function ne(_e,be,pe,Ze,_t){return be=+be,pe>>>=0,_t||N(_e,0,pe,4),t.write(_e,be,pe,Ze,23,4),pe+4}function Ee(_e,be,pe,Ze,_t){return be=+be,pe>>>=0,_t||N(_e,0,pe,8),t.write(_e,be,pe,Ze,52,8),pe+8}f.prototype.slice=function(be,pe){var Ze=this.length;(be=~~be)<0?(be+=Ze)<0&&(be=0):be>Ze&&(be=Ze),(pe=void 0===pe?Ze:~~pe)<0?(pe+=Ze)<0&&(pe=0):pe>Ze&&(pe=Ze),pe>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be],at=1,pt=0;++pt>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be+--pe],at=1;pe>0&&(at*=256);)_t+=this[be+--pe]*at;return _t},f.prototype.readUint8=f.prototype.readUInt8=function(be,pe){return be>>>=0,pe||v(be,1,this.length),this[be]},f.prototype.readUint16LE=f.prototype.readUInt16LE=function(be,pe){return be>>>=0,pe||v(be,2,this.length),this[be]|this[be+1]<<8},f.prototype.readUint16BE=f.prototype.readUInt16BE=function(be,pe){return be>>>=0,pe||v(be,2,this.length),this[be]<<8|this[be+1]},f.prototype.readUint32LE=f.prototype.readUInt32LE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),(this[be]|this[be+1]<<8|this[be+2]<<16)+16777216*this[be+3]},f.prototype.readUint32BE=f.prototype.readUInt32BE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),16777216*this[be]+(this[be+1]<<16|this[be+2]<<8|this[be+3])},f.prototype.readIntLE=function(be,pe,Ze){be>>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be],at=1,pt=0;++pt=(at*=128)&&(_t-=Math.pow(2,8*pe)),_t},f.prototype.readIntBE=function(be,pe,Ze){be>>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=pe,at=1,pt=this[be+--_t];_t>0&&(at*=256);)pt+=this[be+--_t]*at;return pt>=(at*=128)&&(pt-=Math.pow(2,8*pe)),pt},f.prototype.readInt8=function(be,pe){return be>>>=0,pe||v(be,1,this.length),128&this[be]?-1*(255-this[be]+1):this[be]},f.prototype.readInt16LE=function(be,pe){be>>>=0,pe||v(be,2,this.length);var Ze=this[be]|this[be+1]<<8;return 32768&Ze?4294901760|Ze:Ze},f.prototype.readInt16BE=function(be,pe){be>>>=0,pe||v(be,2,this.length);var Ze=this[be+1]|this[be]<<8;return 32768&Ze?4294901760|Ze:Ze},f.prototype.readInt32LE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),this[be]|this[be+1]<<8|this[be+2]<<16|this[be+3]<<24},f.prototype.readInt32BE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),this[be]<<24|this[be+1]<<16|this[be+2]<<8|this[be+3]},f.prototype.readFloatLE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),t.read(this,be,!0,23,4)},f.prototype.readFloatBE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),t.read(this,be,!1,23,4)},f.prototype.readDoubleLE=function(be,pe){return be>>>=0,pe||v(be,8,this.length),t.read(this,be,!0,52,8)},f.prototype.readDoubleBE=function(be,pe){return be>>>=0,pe||v(be,8,this.length),t.read(this,be,!1,52,8)},f.prototype.writeUintLE=f.prototype.writeUIntLE=function(be,pe,Ze,_t){be=+be,pe>>>=0,Ze>>>=0,_t||V(this,be,pe,Ze,Math.pow(2,8*Ze)-1,0);var pt=1,Xt=0;for(this[pe]=255&be;++Xt>>=0,Ze>>>=0,_t||V(this,be,pe,Ze,Math.pow(2,8*Ze)-1,0);var pt=Ze-1,Xt=1;for(this[pe+pt]=255&be;--pt>=0&&(Xt*=256);)this[pe+pt]=be/Xt&255;return pe+Ze},f.prototype.writeUint8=f.prototype.writeUInt8=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,1,255,0),this[pe]=255&be,pe+1},f.prototype.writeUint16LE=f.prototype.writeUInt16LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,65535,0),this[pe]=255&be,this[pe+1]=be>>>8,pe+2},f.prototype.writeUint16BE=f.prototype.writeUInt16BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,65535,0),this[pe]=be>>>8,this[pe+1]=255&be,pe+2},f.prototype.writeUint32LE=f.prototype.writeUInt32LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,4294967295,0),this[pe+3]=be>>>24,this[pe+2]=be>>>16,this[pe+1]=be>>>8,this[pe]=255&be,pe+4},f.prototype.writeUint32BE=f.prototype.writeUInt32BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,4294967295,0),this[pe]=be>>>24,this[pe+1]=be>>>16,this[pe+2]=be>>>8,this[pe+3]=255&be,pe+4},f.prototype.writeIntLE=function(be,pe,Ze,_t){if(be=+be,pe>>>=0,!_t){var at=Math.pow(2,8*Ze-1);V(this,be,pe,Ze,at-1,-at)}var pt=0,Xt=1,ye=0;for(this[pe]=255&be;++pt>>=0,!_t){var at=Math.pow(2,8*Ze-1);V(this,be,pe,Ze,at-1,-at)}var pt=Ze-1,Xt=1,ye=0;for(this[pe+pt]=255&be;--pt>=0&&(Xt*=256);)be<0&&0===ye&&0!==this[pe+pt+1]&&(ye=1),this[pe+pt]=(be/Xt|0)-ye&255;return pe+Ze},f.prototype.writeInt8=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,1,127,-128),be<0&&(be=255+be+1),this[pe]=255&be,pe+1},f.prototype.writeInt16LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,32767,-32768),this[pe]=255&be,this[pe+1]=be>>>8,pe+2},f.prototype.writeInt16BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,32767,-32768),this[pe]=be>>>8,this[pe+1]=255&be,pe+2},f.prototype.writeInt32LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,2147483647,-2147483648),this[pe]=255&be,this[pe+1]=be>>>8,this[pe+2]=be>>>16,this[pe+3]=be>>>24,pe+4},f.prototype.writeInt32BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,2147483647,-2147483648),be<0&&(be=4294967295+be+1),this[pe]=be>>>24,this[pe+1]=be>>>16,this[pe+2]=be>>>8,this[pe+3]=255&be,pe+4},f.prototype.writeFloatLE=function(be,pe,Ze){return ne(this,be,pe,!0,Ze)},f.prototype.writeFloatBE=function(be,pe,Ze){return ne(this,be,pe,!1,Ze)},f.prototype.writeDoubleLE=function(be,pe,Ze){return Ee(this,be,pe,!0,Ze)},f.prototype.writeDoubleBE=function(be,pe,Ze){return Ee(this,be,pe,!1,Ze)},f.prototype.copy=function(be,pe,Ze,_t){if(!f.isBuffer(be))throw new TypeError("argument should be a Buffer");if(Ze||(Ze=0),!_t&&0!==_t&&(_t=this.length),pe>=be.length&&(pe=be.length),pe||(pe=0),_t>0&&_t=this.length)throw new RangeError("Index out of range");if(_t<0)throw new RangeError("sourceEnd out of bounds");_t>this.length&&(_t=this.length),be.length-pe<_t-Ze&&(_t=be.length-pe+Ze);var at=_t-Ze;return this===be&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(pe,Ze,_t):Uint8Array.prototype.set.call(be,this.subarray(Ze,_t),pe),at},f.prototype.fill=function(be,pe,Ze,_t){if("string"==typeof be){if("string"==typeof pe?(_t=pe,pe=0,Ze=this.length):"string"==typeof Ze&&(_t=Ze,Ze=this.length),void 0!==_t&&"string"!=typeof _t)throw new TypeError("encoding must be a string");if("string"==typeof _t&&!f.isEncoding(_t))throw new TypeError("Unknown encoding: "+_t);if(1===be.length){var at=be.charCodeAt(0);("utf8"===_t&&at<128||"latin1"===_t)&&(be=at)}}else"number"==typeof be?be&=255:"boolean"==typeof be&&(be=Number(be));if(pe<0||this.length>>=0,Ze=void 0===Ze?this.length:Ze>>>0,be||(be=0),"number"==typeof be)for(pt=pe;pt55295&&pe<57344){if(!_t){if(pe>56319){(be-=3)>-1&&at.push(239,191,189);continue}if(pt+1===Ze){(be-=3)>-1&&at.push(239,191,189);continue}_t=pe;continue}if(pe<56320){(be-=3)>-1&&at.push(239,191,189),_t=pe;continue}pe=65536+(_t-55296<<10|pe-56320)}else _t&&(be-=3)>-1&&at.push(239,191,189);if(_t=null,pe<128){if((be-=1)<0)break;at.push(pe)}else if(pe<2048){if((be-=2)<0)break;at.push(pe>>6|192,63&pe|128)}else if(pe<65536){if((be-=3)<0)break;at.push(pe>>12|224,pe>>6&63|128,63&pe|128)}else{if(!(pe<1114112))throw new Error("Invalid code point");if((be-=4)<0)break;at.push(pe>>18|240,pe>>12&63|128,pe>>6&63|128,63&pe|128)}}return at}function me(_e){return e.toByteArray(function qe(_e){if((_e=(_e=_e.split("=")[0]).trim().replace(ze,"")).length<2)return"";for(;_e.length%4!=0;)_e+="=";return _e}(_e))}function ce(_e,be,pe,Ze){for(var _t=0;_t=be.length||_t>=_e.length);++_t)be[_t+pe]=_e[_t];return _t}function fe(_e,be){return _e instanceof be||null!=_e&&null!=_e.constructor&&null!=_e.constructor.name&&_e.constructor.name===be.name}function ke(_e){return _e!=_e}var mt=function(){for(var _e="0123456789abcdef",be=new Array(256),pe=0;pe<16;++pe)for(var Ze=16*pe,_t=0;_t<16;++_t)be[Ze+_t]=_e[pe]+_e[_t];return be}()},3247:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(7045).Transform,w=g(8454).I;function l(x){t.call(this),this.hashMode="string"==typeof x,this.hashMode?this[x]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}g(1993)(l,t),l.prototype.update=function(x,f,I){"string"==typeof x&&(x=e.from(x,f));var d=this._update(x);return this.hashMode?this:(I&&(d=this._toString(d,I)),d)},l.prototype.setAutoPadding=function(){},l.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},l.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},l.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},l.prototype._transform=function(x,f,I){var d;try{this.hashMode?this._update(x):this.push(this._update(x))}catch(T){d=T}finally{I(d)}},l.prototype._flush=function(x){var f;try{this.push(this.__final())}catch(I){f=I}x(f)},l.prototype._finalOrDigest=function(x){var f=this.__final()||e.alloc(0);return x&&(f=this._toString(f,x,!0)),f},l.prototype._toString=function(x,f,I){if(this._decoder||(this._decoder=new w(f),this._encoding=f),this._encoding!==f)throw new Error("can't switch encodings");var d=this._decoder.write(x);return I&&(d+=this._decoder.end()),d},Qe.exports=l},4740:function(Qe){!function(te){"use strict";var g={bytesToHex:function(w){return function e(w){return w.map(function(S){return function t(w,S){return w.length>S?w:Array(S-w.length+1).join("0")+w}(S.toString(16),2)}).join("")}(w)},hexToBytes:function(w){if(w.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===w.indexOf("0x")&&(w=w.slice(2)),w.match(/../g).map(function(S){return parseInt(S,16)})}};Qe.exports?Qe.exports=g:te.convertHex=g}(this)},820:function(Qe){!function(te){"use strict";var g={bytesToString:function(e){return e.map(function(t){return String.fromCharCode(t)}).join("")},stringToBytes:function(e){return e.split("").map(function(t){return t.charCodeAt(0)})}};g.UTF8={bytesToString:function(e){return decodeURIComponent(escape(g.bytesToString(e)))},stringToBytes:function(e){return g.stringToBytes(unescape(encodeURIComponent(e)))}},Qe.exports?Qe.exports=g:te.convertString=g}(this)},7637:(Qe,te,g)=>{function W($){return Object.prototype.toString.call($)}te.isArray=function e($){return Array.isArray?Array.isArray($):"[object Array]"===W($)},te.isBoolean=function t($){return"boolean"==typeof $},te.isNull=function w($){return null===$},te.isNullOrUndefined=function S($){return null==$},te.isNumber=function l($){return"number"==typeof $},te.isString=function x($){return"string"==typeof $},te.isSymbol=function f($){return"symbol"==typeof $},te.isUndefined=function I($){return void 0===$},te.isRegExp=function d($){return"[object RegExp]"===W($)},te.isObject=function T($){return"object"==typeof $&&null!==$},te.isDate=function y($){return"[object Date]"===W($)},te.isError=function F($){return"[object Error]"===W($)||$ instanceof Error},te.isFunction=function R($){return"function"==typeof $},te.isPrimitive=function z($){return null===$||"boolean"==typeof $||"number"==typeof $||"string"==typeof $||"symbol"==typeof $||typeof $>"u"},te.isBuffer=g(3838).Buffer.isBuffer},7303:(Qe,te,g)=>{var e=g(518),t=g(9606);Qe.exports=function(f){return new S(f)};var w={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(x){this.curveType=w[x],this.curveType||(this.curveType={name:x}),this.curve=new e.ec(this.curveType.name),this.keys=void 0}function l(x,f,I){Array.isArray(x)||(x=x.toArray());var d=new Buffer(x);if(I&&d.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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 z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.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&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},7211:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(4725),w=g(6636),S=g(5443),l=g(3247);function x(f){l.call(this,"digest"),this._hash=f}e(x,l),x.prototype._update=function(f){this._hash.update(f)},x.prototype._final=function(){return this._hash.digest()},Qe.exports=function(I){return"md5"===(I=I.toLowerCase())?new t:"rmd160"===I||"ripemd160"===I?new w:new x(S(I))}},3407:(Qe,te,g)=>{var e=g(4725);Qe.exports=function(t){return(new e).update(t).digest()}},6432:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(509),w=g(3247),S=g(7054).Buffer,l=g(3407),x=g(6636),f=g(5443),I=S.alloc(128);function d(T,y){w.call(this,"digest"),"string"==typeof y&&(y=S.from(y));var F="sha512"===T||"sha384"===T?128:64;this._alg=T,this._key=y,y.length>F?y=("rmd160"===T?new x:f(T)).update(y).digest():y.length{"use strict";var e=g(1993),t=g(7054).Buffer,w=g(3247),S=t.alloc(128),l=64;function x(f,I){w.call(this,"digest"),"string"==typeof I&&(I=t.from(I)),this._alg=f,this._key=I,I.length>l?I=f(I):I.length{"use strict";te.randomBytes=te.rng=te.pseudoRandomBytes=te.prng=g(3342),te.createHash=te.Hash=g(7211),te.createHmac=te.Hmac=g(6432);var e=g(9560),t=Object.keys(e),w=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(t);te.getHashes=function(){return w};var S=g(3397);te.pbkdf2=S.pbkdf2,te.pbkdf2Sync=S.pbkdf2Sync;var l=g(8862);te.Cipher=l.Cipher,te.createCipher=l.createCipher,te.Cipheriv=l.Cipheriv,te.createCipheriv=l.createCipheriv,te.Decipher=l.Decipher,te.createDecipher=l.createDecipher,te.Decipheriv=l.Decipheriv,te.createDecipheriv=l.createDecipheriv,te.getCiphers=l.getCiphers,te.listCiphers=l.listCiphers;var x=g(4377);te.DiffieHellmanGroup=x.DiffieHellmanGroup,te.createDiffieHellmanGroup=x.createDiffieHellmanGroup,te.getDiffieHellman=x.getDiffieHellman,te.createDiffieHellman=x.createDiffieHellman,te.DiffieHellman=x.DiffieHellman;var f=g(9143);te.createSign=f.createSign,te.Sign=f.Sign,te.createVerify=f.createVerify,te.Verify=f.Verify,te.createECDH=g(7303);var I=g(2965);te.publicEncrypt=I.publicEncrypt,te.privateEncrypt=I.privateEncrypt,te.publicDecrypt=I.publicDecrypt,te.privateDecrypt=I.privateDecrypt;var d=g(9682);te.randomFill=d.randomFill,te.randomFillSync=d.randomFillSync,te.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},te.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}},1549:(Qe,te,g)=>{"use strict";te.utils=g(5671),te.Cipher=g(219),te.DES=g(4166),te.CBC=g(8800),te.EDE=g(2122)},8800:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),w={};function S(x){e.equal(x.length,8,"Invalid IV length"),this.iv=new Array(8);for(var f=0;f{"use strict";var e=g(9210);function t(w){this.options=w,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0,this.padding=!1!==w.padding}Qe.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,l){for(var x=Math.min(this.buffer.length-this.bufferOff,S.length-l),f=0;f0;f--)l+=this._buffer(S,l),x+=this._flushBuffer(I,x);return l+=this._buffer(S,l),I},t.prototype.final=function(S){var l,x;return S&&(l=this.update(S)),x="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),l?l.concat(x):x},t.prototype._pad=function(S,l){if(0===l)return!1;for(;l{"use strict";var e=g(9210),t=g(1993),w=g(5671),S=g(219);function l(){this.tmp=new Array(2),this.keys=null}function x(I){S.call(this,I);var d=new l;this._desState=d,this.deriveKeys(d,I.key)}t(x,S),Qe.exports=x,x.create=function(d){return new x(d)};var f=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];x.prototype.deriveKeys=function(d,T){d.keys=new Array(32),e.equal(T.length,this.blockSize,"Invalid key length");var y=w.readUInt32BE(T,0),F=w.readUInt32BE(T,4);w.pc1(y,F,d.tmp,0),y=d.tmp[0],F=d.tmp[1];for(var R=0;R>>1];y=w.r28shl(y,z),F=w.r28shl(F,z),w.pc2(y,F,d.keys,R)}},x.prototype._update=function(d,T,y,F){var R=this._desState,z=w.readUInt32BE(d,T),W=w.readUInt32BE(d,T+4);w.ip(z,W,R.tmp,0),z=R.tmp[0],W=R.tmp[1],"encrypt"===this.type?this._encrypt(R,z,W,R.tmp,0):this._decrypt(R,z,W,R.tmp,0),W=R.tmp[1],w.writeUInt32BE(y,z=R.tmp[0],F),w.writeUInt32BE(y,W,F+4)},x.prototype._pad=function(d,T){if(!1===this.padding)return!1;for(var y=d.length-T,F=T;F>>0,z=ie}w.rip(W,z,F,R)},x.prototype._decrypt=function(d,T,y,F,R){for(var z=y,W=T,$=d.keys.length-2;$>=0;$-=2){var j=d.keys[$],Q=d.keys[$+1];w.expand(z,d.tmp,0);var J=w.substitute(j^=d.tmp[0],Q^=d.tmp[1]),ie=z;z=(W^w.permute(J))>>>0,W=ie}w.rip(z,W,F,R)}},2122:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),w=g(219),S=g(4166);function l(f,I){e.equal(I.length,24,"Invalid key length");var d=I.slice(0,8),T=I.slice(8,16),y=I.slice(16,24);this.ciphers="encrypt"===f?[S.create({type:"encrypt",key:d}),S.create({type:"decrypt",key:T}),S.create({type:"encrypt",key:y})]:[S.create({type:"decrypt",key:y}),S.create({type:"encrypt",key:T}),S.create({type:"decrypt",key:d})]}function x(f){w.call(this,f);var I=new l(this.type,this.options.key);this._edeState=I}t(x,w),Qe.exports=x,x.create=function(I){return new x(I)},x.prototype._update=function(I,d,T,y){var F=this._edeState;F.ciphers[0]._update(I,d,T,y),F.ciphers[1]._update(T,y,T,y),F.ciphers[2]._update(T,y,T,y)},x.prototype._pad=S.prototype._pad,x.prototype._unpad=S.prototype._unpad},5671:(Qe,te)=>{"use strict";te.readUInt32BE=function(S,l){return(S[0+l]<<24|S[1+l]<<16|S[2+l]<<8|S[3+l])>>>0},te.writeUInt32BE=function(S,l,x){S[0+x]=l>>>24,S[1+x]=l>>>16&255,S[2+x]=l>>>8&255,S[3+x]=255&l},te.ip=function(S,l,x,f){for(var I=0,d=0,T=6;T>=0;T-=2){for(var y=0;y<=24;y+=8)I<<=1,I|=l>>>y+T&1;for(y=0;y<=24;y+=8)I<<=1,I|=S>>>y+T&1}for(T=6;T>=0;T-=2){for(y=1;y<=25;y+=8)d<<=1,d|=l>>>y+T&1;for(y=1;y<=25;y+=8)d<<=1,d|=S>>>y+T&1}x[f+0]=I>>>0,x[f+1]=d>>>0},te.rip=function(S,l,x,f){for(var I=0,d=0,T=0;T<4;T++)for(var y=24;y>=0;y-=8)I<<=1,I|=l>>>y+T&1,I<<=1,I|=S>>>y+T&1;for(T=4;T<8;T++)for(y=24;y>=0;y-=8)d<<=1,d|=l>>>y+T&1,d<<=1,d|=S>>>y+T&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.pc1=function(S,l,x,f){for(var I=0,d=0,T=7;T>=5;T--){for(var y=0;y<=24;y+=8)I<<=1,I|=l>>y+T&1;for(y=0;y<=24;y+=8)I<<=1,I|=S>>y+T&1}for(y=0;y<=24;y+=8)I<<=1,I|=l>>y+T&1;for(T=1;T<=3;T++){for(y=0;y<=24;y+=8)d<<=1,d|=l>>y+T&1;for(y=0;y<=24;y+=8)d<<=1,d|=S>>y+T&1}for(y=0;y<=24;y+=8)d<<=1,d|=S>>y+T&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.r28shl=function(S,l){return S<>>28-l};var g=[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];te.pc2=function(S,l,x,f){for(var I=0,d=0,T=g.length>>>1,y=0;y>>g[y]&1;for(y=T;y>>g[y]&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.expand=function(S,l,x){var f=0,I=0;f=(1&S)<<5|S>>>27;for(var d=23;d>=15;d-=4)f<<=6,f|=S>>>d&63;for(d=11;d>=3;d-=4)I|=S>>>d&63,I<<=6;I|=(31&S)<<1|S>>>31,l[x+0]=f>>>0,l[x+1]=I>>>0};var e=[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];te.substitute=function(S,l){for(var x=0,f=0;f<4;f++)x<<=4,x|=e[64*f+(S>>>18-6*f&63)];for(f=0;f<4;f++)x<<=4,x|=e[256+64*f+(l>>>18-6*f&63)];return x>>>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];te.permute=function(S){for(var l=0,x=0;x>>t[x]&1;return l>>>0},te.padSplit=function(S,l,x){for(var f=S.toString(2);f.length{var e=g(2727),t=g(3241),w=g(4593),l={binary:!0,hex:!0,base64:!0};te.DiffieHellmanGroup=te.createDiffieHellmanGroup=te.getDiffieHellman=function S(f){var I=new Buffer(t[f].prime,"hex"),d=new Buffer(t[f].gen,"hex");return new w(I,d)},te.createDiffieHellman=te.DiffieHellman=function x(f,I,d,T){return Buffer.isBuffer(I)||void 0===l[I]?x(f,"binary",I,d):(I=I||"binary",T=T||"binary",d=d||new Buffer([2]),Buffer.isBuffer(d)||(d=new Buffer(d,T)),"number"==typeof f?new w(e(f,d),d,!0):(Buffer.isBuffer(f)||(f=new Buffer(f,I)),new w(f,d,!0)))}},4593:(Qe,te,g)=>{var e=g(8280),w=new(g(3459)),S=new e(24),l=new e(11),x=new e(10),f=new e(3),I=new e(7),d=g(2727),T=g(3342);function y(j,Q){return Q=Q||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,Q)),this._pub=new e(j),this}function F(j,Q){return Q=Q||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,Q)),this._priv=new e(j),this}Qe.exports=W;var R={};function W(j,Q,J){this.setGenerator(Q),this.__prime=new e(j),this._prime=e.mont(this.__prime),this._primeLen=j.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,J?(this.setPublicKey=y,this.setPrivateKey=F):this._primeCode=8}function $(j,Q){var J=new Buffer(j.toArray());return Q?J.toString(Q):J}Object.defineProperty(W.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function z(j,Q){var J=Q.toString("hex"),ee=[J,j.toString(16)].join("_");if(ee in R)return R[ee];var ge,ie=0;if(j.isEven()||!d.simpleSieve||!d.fermatTest(j)||!w.test(j))return ie+=1,R[ee]=ie+="02"===J||"05"===J?8:4,ie;switch(w.test(j.shrn(1))||(ie+=2),J){case"02":j.mod(S).cmp(l)&&(ie+=8);break;case"05":(ge=j.mod(x)).cmp(f)&&ge.cmp(I)&&(ie+=8);break;default:ie+=4}return R[ee]=ie,ie}(this.__prime,this.__gen)),this._primeCode}}),W.prototype.generateKeys=function(){return this._priv||(this._priv=new e(T(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},W.prototype.computeSecret=function(j){var Q=(j=(j=new e(j)).toRed(this._prime)).redPow(this._priv).fromRed(),J=new Buffer(Q.toArray()),ee=this.getPrime();if(J.length{var e=g(3342);Qe.exports=ie,ie.simpleSieve=J,ie.fermatTest=ee;var t=g(8280),w=new t(24),l=new(g(3459)),x=new t(1),f=new t(2),I=new t(5),y=(new t(16),new t(8),new t(10)),F=new t(3),z=(new t(7),new t(11)),W=new t(4),j=(new t(12),null);function J(ge){for(var ae=function Q(){if(null!==j)return j;var ae=[];ae[0]=2;for(var Me=1,Te=3;Te<1048576;Te+=2){for(var de=Math.ceil(Math.sqrt(Te)),D=0;Dge;)Me.ishrn(1);if(Me.isEven()&&Me.iadd(x),Me.testn(1)||Me.iadd(f),ae.cmp(f)){if(!ae.cmp(I))for(;Me.mod(y).cmp(F);)Me.iadd(W)}else for(;Me.mod(w).cmp(z);)Me.iadd(W);if(J(Te=Me.shrn(1))&&J(Me)&&ee(Te)&&ee(Me)&&l.test(Te)&&l.test(Me))return Me}}},8280:function(Qe,te,g){!function(e,t){"use strict";function w(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var c=function(){};c.prototype=n.prototype,D.prototype=new c,D.prototype.constructor=D}function l(D,n,c){if(l.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(D||0,n||10,c||"be"))}var x;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{x=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(6089).Buffer}catch{}function f(D,n){var c=D.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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 z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.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&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},243:Qe=>{"use strict";var te={single_source_shortest_paths:function(g,e,t){var w={},S={};S[e]=0;var x,f,I,d,T,F,l=te.PriorityQueue.make();for(l.push(e,0);!l.empty();)for(I in d=(x=l.pop()).cost,T=g[f=x.value]||{})T.hasOwnProperty(I)&&(F=d+T[I],(typeof S[I]>"u"||S[I]>F)&&(S[I]=F,l.push(I,F),w[I]=f));if(typeof t<"u"&&typeof S[t]>"u"){var W=["Could not find a path from ",e," to ",t,"."].join("");throw new Error(W)}return w},extract_shortest_path_from_predecessor_list:function(g,e){for(var t=[],w=e;w;)t.push(w),w=g[w];return t.reverse(),t},find_path:function(g,e,t){var w=te.single_source_shortest_paths(g,e,t);return te.extract_shortest_path_from_predecessor_list(w,t)},PriorityQueue:{make:function(g){var w,e=te.PriorityQueue,t={};for(w in g=g||{},e)e.hasOwnProperty(w)&&(t[w]=e[w]);return t.queue=[],t.sorter=g.sorter||e.default_sorter,t},default_sorter:function(g,e){return g.cost-e.cost},push:function(g,e){this.queue.push({value:g,cost:e}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Qe.exports=te},518:(Qe,te,g)=>{"use strict";var e=te;e.version=g(1636).rE,e.utils=g(3136),e.rand=g(5294),e.curve=g(8729),e.curves=g(3401),e.ec=g(9042),e.eddsa=g(3045)},8828:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.getNAF,S=t.getJSF,l=t.assert;function x(I,d){this.type=I,this.p=new e(d.p,16),this.red=d.prime?e.red(d.prime):e.mont(this.p),this.zero=new e(0).toRed(this.red),this.one=new e(1).toRed(this.red),this.two=new e(2).toRed(this.red),this.n=d.n&&new e(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 T=this.n&&this.p.div(this.n);!T||T.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function f(I,d){this.curve=I,this.type=d,this.precomputed=null}Qe.exports=x,x.prototype.point=function(){throw new Error("Not implemented")},x.prototype.validate=function(){throw new Error("Not implemented")},x.prototype._fixedNafMul=function(d,T){l(d.precomputed);var y=d._getDoubles(),F=w(T,1,this._bitLength),R=(1<=W;j--)$=($<<1)+F[j];z.push($)}for(var Q=this.jpoint(null,null,null),J=this.jpoint(null,null,null),ee=R;ee>0;ee--){for(W=0;W=0;$--){for(var j=0;$>=0&&0===z[$];$--)j++;if($>=0&&j++,W=W.dblp(j),$<0)break;var Q=z[$];l(0!==Q),W="affine"===d.type?W.mixedAdd(Q>0?R[Q-1>>1]:R[-Q-1>>1].neg()):W.add(Q>0?R[Q-1>>1]:R[-Q-1>>1].neg())}return"affine"===d.type?W.toP():W},x.prototype._wnafMulAdd=function(d,T,y,F,R){var Q,J,ee,z=this._wnafT1,W=this._wnafT2,$=this._wnafT3,j=0;for(Q=0;Q=1;Q-=2){var ge=Q-1,ae=Q;if(1===z[ge]&&1===z[ae]){var Me=[T[ge],null,null,T[ae]];0===T[ge].y.cmp(T[ae].y)?(Me[1]=T[ge].add(T[ae]),Me[2]=T[ge].toJ().mixedAdd(T[ae].neg())):0===T[ge].y.cmp(T[ae].y.redNeg())?(Me[1]=T[ge].toJ().mixedAdd(T[ae]),Me[2]=T[ge].add(T[ae].neg())):(Me[1]=T[ge].toJ().mixedAdd(T[ae]),Me[2]=T[ge].toJ().mixedAdd(T[ae].neg()));var Te=[-3,-1,-5,-7,0,7,5,1,3],de=S(y[ge],y[ae]);for(j=Math.max(de[0].length,j),$[ge]=new Array(j),$[ae]=new Array(j),J=0;J=0;Q--){for(var h=0;Q>=0;){var C=!0;for(J=0;J=0&&h++,c=c.dblp(h),Q<0)break;for(J=0;J0?ee=W[J][k-1>>1]:k<0&&(ee=W[J][-k-1>>1].neg()),c="affine"===ee.type?c.mixedAdd(ee):c.add(ee))}}for(Q=0;Q=Math.ceil((d.bitLength()+1)/T.step)},f.prototype._getDoubles=function(d,T){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var y=[this],F=this,R=0;R{"use strict";var e=g(3136),t=g(8723),w=g(1993),S=g(8828),l=e.assert;function x(I){this.twisted=1!=(0|I.a),this.mOneA=this.twisted&&-1==(0|I.a),this.extended=this.mOneA,S.call(this,"edwards",I),this.a=new t(I.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new t(I.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new t(I.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),l(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|I.c)}function f(I,d,T,y,F){S.BasePoint.call(this,I,"projective"),null===d&&null===T&&null===y?(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(T,16),this.z=y?new t(y,16):this.curve.one,this.t=F&&new t(F,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()))))}w(x,S),Qe.exports=x,x.prototype._mulA=function(d){return this.mOneA?d.redNeg():this.a.redMul(d)},x.prototype._mulC=function(d){return this.oneC?d:this.c.redMul(d)},x.prototype.jpoint=function(d,T,y,F){return this.point(d,T,y,F)},x.prototype.pointFromX=function(d,T){(d=new t(d,16)).red||(d=d.toRed(this.red));var y=d.redSqr(),F=this.c2.redSub(this.a.redMul(y)),R=this.one.redSub(this.c2.redMul(this.d).redMul(y)),z=F.redMul(R.redInvm()),W=z.redSqrt();if(0!==W.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");var $=W.fromRed().isOdd();return(T&&!$||!T&&$)&&(W=W.redNeg()),this.point(d,W)},x.prototype.pointFromY=function(d,T){(d=new t(d,16)).red||(d=d.toRed(this.red));var y=d.redSqr(),F=y.redSub(this.c2),R=y.redMul(this.d).redMul(this.c2).redSub(this.a),z=F.redMul(R.redInvm());if(0===z.cmp(this.zero)){if(T)throw new Error("invalid point");return this.point(this.zero,d)}var W=z.redSqrt();if(0!==W.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");return W.fromRed().isOdd()!==T&&(W=W.redNeg()),this.point(W,d)},x.prototype.validate=function(d){if(d.isInfinity())return!0;d.normalize();var T=d.x.redSqr(),y=d.y.redSqr(),F=T.redMul(this.a).redAdd(y),R=this.c2.redMul(this.one.redAdd(this.d.redMul(T).redMul(y)));return 0===F.cmp(R)},w(f,S.BasePoint),x.prototype.pointFromJSON=function(d){return f.fromJSON(this,d)},x.prototype.point=function(d,T,y,F){return new f(this,d,T,y,F)},f.fromJSON=function(d,T){return new f(d,T[0],T[1],T[2])},f.prototype.inspect=function(){return this.isInfinity()?"":""},f.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},f.prototype._extDbl=function(){var d=this.x.redSqr(),T=this.y.redSqr(),y=this.z.redSqr();y=y.redIAdd(y);var F=this.curve._mulA(d),R=this.x.redAdd(this.y).redSqr().redISub(d).redISub(T),z=F.redAdd(T),W=z.redSub(y),$=F.redSub(T),j=R.redMul(W),Q=z.redMul($),J=R.redMul($),ee=W.redMul(z);return this.curve.point(j,Q,ee,J)},f.prototype._projDbl=function(){var F,R,z,W,$,j,d=this.x.redAdd(this.y).redSqr(),T=this.x.redSqr(),y=this.y.redSqr();if(this.curve.twisted){var Q=(W=this.curve._mulA(T)).redAdd(y);this.zOne?(F=d.redSub(T).redSub(y).redMul(Q.redSub(this.curve.two)),R=Q.redMul(W.redSub(y)),z=Q.redSqr().redSub(Q).redSub(Q)):($=this.z.redSqr(),j=Q.redSub($).redISub($),F=d.redSub(T).redISub(y).redMul(j),R=Q.redMul(W.redSub(y)),z=Q.redMul(j))}else W=T.redAdd(y),$=this.curve._mulC(this.z).redSqr(),j=W.redSub($).redSub($),F=this.curve._mulC(d.redISub(W)).redMul(j),R=this.curve._mulC(W).redMul(T.redISub(y)),z=W.redMul(j);return this.curve.point(F,R,z)},f.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},f.prototype._extAdd=function(d){var T=this.y.redSub(this.x).redMul(d.y.redSub(d.x)),y=this.y.redAdd(this.x).redMul(d.y.redAdd(d.x)),F=this.t.redMul(this.curve.dd).redMul(d.t),R=this.z.redMul(d.z.redAdd(d.z)),z=y.redSub(T),W=R.redSub(F),$=R.redAdd(F),j=y.redAdd(T),Q=z.redMul(W),J=$.redMul(j),ee=z.redMul(j),ie=W.redMul($);return this.curve.point(Q,J,ie,ee)},f.prototype._projAdd=function(d){var J,ee,T=this.z.redMul(d.z),y=T.redSqr(),F=this.x.redMul(d.x),R=this.y.redMul(d.y),z=this.curve.d.redMul(F).redMul(R),W=y.redSub(z),$=y.redAdd(z),j=this.x.redAdd(this.y).redMul(d.x.redAdd(d.y)).redISub(F).redISub(R),Q=T.redMul(W).redMul(j);return this.curve.twisted?(J=T.redMul($).redMul(R.redSub(this.curve._mulA(F))),ee=W.redMul($)):(J=T.redMul($).redMul(R.redSub(F)),ee=this.curve._mulC(W).redMul($)),this.curve.point(Q,J,ee)},f.prototype.add=function(d){return this.isInfinity()?d:d.isInfinity()?this:this.curve.extended?this._extAdd(d):this._projAdd(d)},f.prototype.mul=function(d){return this._hasDoubles(d)?this.curve._fixedNafMul(this,d):this.curve._wnafMul(this,d)},f.prototype.mulAdd=function(d,T,y){return this.curve._wnafMulAdd(1,[this,T],[d,y],2,!1)},f.prototype.jmulAdd=function(d,T,y){return this.curve._wnafMulAdd(1,[this,T],[d,y],2,!0)},f.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},f.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},f.prototype.getX=function(){return this.normalize(),this.x.fromRed()},f.prototype.getY=function(){return this.normalize(),this.y.fromRed()},f.prototype.eq=function(d){return this===d||0===this.getX().cmp(d.getX())&&0===this.getY().cmp(d.getY())},f.prototype.eqXToP=function(d){var T=d.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(T))return!0;for(var y=d.clone(),F=this.curve.redN.redMul(this.z);;){if(y.iadd(this.curve.n),y.cmp(this.curve.p)>=0)return!1;if(T.redIAdd(F),0===this.x.cmp(T))return!0}},f.prototype.toP=f.prototype.normalize,f.prototype.mixedAdd=f.prototype.add},8729:(Qe,te,g)=>{"use strict";var e=te;e.base=g(8828),e.short=g(8075),e.mont=g(4947),e.edwards=g(5537)},4947:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(1993),w=g(8828),S=g(3136);function l(f){w.call(this,"mont",f),this.a=new e(f.a,16).toRed(this.red),this.b=new e(f.b,16).toRed(this.red),this.i4=new e(4).toRed(this.red).redInvm(),this.two=new e(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function x(f,I,d){w.BasePoint.call(this,f,"projective"),null===I&&null===d?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new e(I,16),this.z=new e(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(l,w),Qe.exports=l,l.prototype.validate=function(I){var d=I.normalize().x,T=d.redSqr(),y=T.redMul(d).redAdd(T.redMul(this.a)).redAdd(d);return 0===y.redSqrt().redSqr().cmp(y)},t(x,w.BasePoint),l.prototype.decodePoint=function(I,d){return this.point(S.toArray(I,d),1)},l.prototype.point=function(I,d){return new x(this,I,d)},l.prototype.pointFromJSON=function(I){return x.fromJSON(this,I)},x.prototype.precompute=function(){},x.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},x.fromJSON=function(I,d){return new x(I,d[0],d[1]||I.one)},x.prototype.inspect=function(){return this.isInfinity()?"":""},x.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},x.prototype.dbl=function(){var d=this.x.redAdd(this.z).redSqr(),y=this.x.redSub(this.z).redSqr(),F=d.redSub(y),R=d.redMul(y),z=F.redMul(y.redAdd(this.curve.a24.redMul(F)));return this.curve.point(R,z)},x.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.diffAdd=function(I,d){var T=this.x.redAdd(this.z),y=this.x.redSub(this.z),F=I.x.redAdd(I.z),z=I.x.redSub(I.z).redMul(T),W=F.redMul(y),$=d.z.redMul(z.redAdd(W).redSqr()),j=d.x.redMul(z.redISub(W).redSqr());return this.curve.point($,j)},x.prototype.mul=function(I){for(var d=I.clone(),T=this,y=this.curve.point(null,null),R=[];0!==d.cmpn(0);d.iushrn(1))R.push(d.andln(1));for(var z=R.length-1;z>=0;z--)0===R[z]?(T=T.diffAdd(y,this),y=y.dbl()):(y=T.diffAdd(y,this),T=T.dbl());return y},x.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.eq=function(I){return 0===this.getX().cmp(I.getX())},x.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},x.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},8075:(Qe,te,g)=>{"use strict";var e=g(3136),t=g(8723),w=g(1993),S=g(8828),l=e.assert;function x(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 f(d,T,y,F){S.BasePoint.call(this,d,"affine"),null===T&&null===y?(this.x=null,this.y=null,this.inf=!0):(this.x=new t(T,16),this.y=new t(y,16),F&&(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 I(d,T,y,F){S.BasePoint.call(this,d,"jacobian"),null===T&&null===y&&null===F?(this.x=this.curve.one,this.y=this.curve.one,this.z=new t(0)):(this.x=new t(T,16),this.y=new t(y,16),this.z=new t(F,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}w(x,S),Qe.exports=x,x.prototype._getEndomorphism=function(T){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var y,F;if(T.beta)y=new t(T.beta,16).toRed(this.red);else{var R=this._getEndoRoots(this.p);y=(y=R[0].cmp(R[1])<0?R[0]:R[1]).toRed(this.red)}if(T.lambda)F=new t(T.lambda,16);else{var z=this._getEndoRoots(this.n);0===this.g.mul(z[0]).x.cmp(this.g.x.redMul(y))?F=z[0]:l(0===this.g.mul(F=z[1]).x.cmp(this.g.x.redMul(y)))}return{beta:y,lambda:F,basis:T.basis?T.basis.map(function($){return{a:new t($.a,16),b:new t($.b,16)}}):this._getEndoBasis(F)}}},x.prototype._getEndoRoots=function(T){var y=T===this.p?this.red:t.mont(T),F=new t(2).toRed(y).redInvm(),R=F.redNeg(),z=new t(3).toRed(y).redNeg().redSqrt().redMul(F);return[R.redAdd(z).fromRed(),R.redSub(z).fromRed()]},x.prototype._getEndoBasis=function(T){for(var Q,J,ee,ie,ge,ae,Me,de,D,y=this.n.ushrn(Math.floor(this.n.bitLength()/2)),F=T,R=this.n.clone(),z=new t(1),W=new t(0),$=new t(0),j=new t(1),Te=0;0!==F.cmpn(0);){var n=R.div(F);de=R.sub(n.mul(F)),D=$.sub(n.mul(z));var c=j.sub(n.mul(W));if(!ee&&de.cmp(y)<0)Q=Me.neg(),J=z,ee=de.neg(),ie=D;else if(ee&&2==++Te)break;Me=de,R=F,F=de,$=z,z=D,j=W,W=c}ge=de.neg(),ae=D;var m=ee.sqr().add(ie.sqr());return ge.sqr().add(ae.sqr()).cmp(m)>=0&&(ge=Q,ae=J),ee.negative&&(ee=ee.neg(),ie=ie.neg()),ge.negative&&(ge=ge.neg(),ae=ae.neg()),[{a:ee,b:ie},{a:ge,b:ae}]},x.prototype._endoSplit=function(T){var y=this.endo.basis,F=y[0],R=y[1],z=R.b.mul(T).divRound(this.n),W=F.b.neg().mul(T).divRound(this.n),$=z.mul(F.a),j=W.mul(R.a),Q=z.mul(F.b),J=W.mul(R.b);return{k1:T.sub($).sub(j),k2:Q.add(J).neg()}},x.prototype.pointFromX=function(T,y){(T=new t(T,16)).red||(T=T.toRed(this.red));var F=T.redSqr().redMul(T).redIAdd(T.redMul(this.a)).redIAdd(this.b),R=F.redSqrt();if(0!==R.redSqr().redSub(F).cmp(this.zero))throw new Error("invalid point");var z=R.fromRed().isOdd();return(y&&!z||!y&&z)&&(R=R.redNeg()),this.point(T,R)},x.prototype.validate=function(T){if(T.inf)return!0;var y=T.x,F=T.y,R=this.a.redMul(y),z=y.redSqr().redMul(y).redIAdd(R).redIAdd(this.b);return 0===F.redSqr().redISub(z).cmpn(0)},x.prototype._endoWnafMulAdd=function(T,y,F){for(var R=this._endoWnafT1,z=this._endoWnafT2,W=0;W":""},f.prototype.isInfinity=function(){return this.inf},f.prototype.add=function(T){if(this.inf)return T;if(T.inf)return this;if(this.eq(T))return this.dbl();if(this.neg().eq(T))return this.curve.point(null,null);if(0===this.x.cmp(T.x))return this.curve.point(null,null);var y=this.y.redSub(T.y);0!==y.cmpn(0)&&(y=y.redMul(this.x.redSub(T.x).redInvm()));var F=y.redSqr().redISub(this.x).redISub(T.x),R=y.redMul(this.x.redSub(F)).redISub(this.y);return this.curve.point(F,R)},f.prototype.dbl=function(){if(this.inf)return this;var T=this.y.redAdd(this.y);if(0===T.cmpn(0))return this.curve.point(null,null);var y=this.curve.a,F=this.x.redSqr(),R=T.redInvm(),z=F.redAdd(F).redIAdd(F).redIAdd(y).redMul(R),W=z.redSqr().redISub(this.x.redAdd(this.x)),$=z.redMul(this.x.redSub(W)).redISub(this.y);return this.curve.point(W,$)},f.prototype.getX=function(){return this.x.fromRed()},f.prototype.getY=function(){return this.y.fromRed()},f.prototype.mul=function(T){return T=new t(T,16),this.isInfinity()?this:this._hasDoubles(T)?this.curve._fixedNafMul(this,T):this.curve.endo?this.curve._endoWnafMulAdd([this],[T]):this.curve._wnafMul(this,T)},f.prototype.mulAdd=function(T,y,F){var R=[this,y],z=[T,F];return this.curve.endo?this.curve._endoWnafMulAdd(R,z):this.curve._wnafMulAdd(1,R,z,2)},f.prototype.jmulAdd=function(T,y,F){var R=[this,y],z=[T,F];return this.curve.endo?this.curve._endoWnafMulAdd(R,z,!0):this.curve._wnafMulAdd(1,R,z,2,!0)},f.prototype.eq=function(T){return this===T||this.inf===T.inf&&(this.inf||0===this.x.cmp(T.x)&&0===this.y.cmp(T.y))},f.prototype.neg=function(T){if(this.inf)return this;var y=this.curve.point(this.x,this.y.redNeg());if(T&&this.precomputed){var F=this.precomputed,R=function(z){return z.neg()};y.precomputed={naf:F.naf&&{wnd:F.naf.wnd,points:F.naf.points.map(R)},doubles:F.doubles&&{step:F.doubles.step,points:F.doubles.points.map(R)}}}return y},f.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},w(I,S.BasePoint),x.prototype.jpoint=function(T,y,F){return new I(this,T,y,F)},I.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var T=this.z.redInvm(),y=T.redSqr(),F=this.x.redMul(y),R=this.y.redMul(y).redMul(T);return this.curve.point(F,R)},I.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},I.prototype.add=function(T){if(this.isInfinity())return T;if(T.isInfinity())return this;var y=T.z.redSqr(),F=this.z.redSqr(),R=this.x.redMul(y),z=T.x.redMul(F),W=this.y.redMul(y.redMul(T.z)),$=T.y.redMul(F.redMul(this.z)),j=R.redSub(z),Q=W.redSub($);if(0===j.cmpn(0))return 0!==Q.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var J=j.redSqr(),ee=J.redMul(j),ie=R.redMul(J),ge=Q.redSqr().redIAdd(ee).redISub(ie).redISub(ie),ae=Q.redMul(ie.redISub(ge)).redISub(W.redMul(ee)),Me=this.z.redMul(T.z).redMul(j);return this.curve.jpoint(ge,ae,Me)},I.prototype.mixedAdd=function(T){if(this.isInfinity())return T.toJ();if(T.isInfinity())return this;var y=this.z.redSqr(),F=this.x,R=T.x.redMul(y),z=this.y,W=T.y.redMul(y).redMul(this.z),$=F.redSub(R),j=z.redSub(W);if(0===$.cmpn(0))return 0!==j.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var Q=$.redSqr(),J=Q.redMul($),ee=F.redMul(Q),ie=j.redSqr().redIAdd(J).redISub(ee).redISub(ee),ge=j.redMul(ee.redISub(ie)).redISub(z.redMul(J)),ae=this.z.redMul($);return this.curve.jpoint(ie,ge,ae)},I.prototype.dblp=function(T){if(0===T)return this;if(this.isInfinity())return this;if(!T)return this.dbl();var y;if(this.curve.zeroA||this.curve.threeA){var F=this;for(y=0;y=0)return!1;if(F.redIAdd(z),0===this.x.cmp(F))return!0}},I.prototype.inspect=function(){return this.isInfinity()?"":""},I.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},3401:(Qe,te,g)=>{"use strict";var I,e=te,t=g(2529),w=g(8729),l=g(3136).assert;function x(d){this.curve="short"===d.type?new w.short(d):"edwards"===d.type?new w.edwards(d):new w.mont(d),this.g=this.curve.g,this.n=this.curve.n,this.hash=d.hash,l(this.g.validate(),"Invalid curve"),l(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function f(d,T){Object.defineProperty(e,d,{configurable:!0,enumerable:!0,get:function(){var y=new x(T);return Object.defineProperty(e,d,{configurable:!0,enumerable:!0,value:y}),y}})}e.PresetCurve=x,f("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"]}),f("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"]}),f("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"]}),f("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"]}),f("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"]}),f("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"]}),f("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{I=g(1416)}catch{I=void 0}f("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",I]})},9042:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3556),w=g(3136),S=g(3401),l=g(5294),x=w.assert,f=g(541),I=g(484);function d(T){if(!(this instanceof d))return new d(T);"string"==typeof T&&(x(Object.prototype.hasOwnProperty.call(S,T),"Unknown curve "+T),T=S[T]),T instanceof S.PresetCurve&&(T={curve:T}),this.curve=T.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=T.curve.g,this.g.precompute(T.curve.n.bitLength()+1),this.hash=T.hash||T.curve.hash}Qe.exports=d,d.prototype.keyPair=function(y){return new f(this,y)},d.prototype.keyFromPrivate=function(y,F){return f.fromPrivate(this,y,F)},d.prototype.keyFromPublic=function(y,F){return f.fromPublic(this,y,F)},d.prototype.genKeyPair=function(y){y||(y={});for(var F=new t({hash:this.hash,pers:y.pers,persEnc:y.persEnc||"utf8",entropy:y.entropy||l(this.hash.hmacStrength),entropyEnc:y.entropy&&y.entropyEnc||"utf8",nonce:this.n.toArray()}),R=this.n.byteLength(),z=this.n.sub(new e(2));;){var W=new e(F.generate(R));if(!(W.cmp(z)>0))return W.iaddn(1),this.keyFromPrivate(W)}},d.prototype._truncateToN=function(y,F){var R=8*y.byteLength()-this.n.bitLength();return R>0&&(y=y.ushrn(R)),!F&&y.cmp(this.n)>=0?y.sub(this.n):y},d.prototype.sign=function(y,F,R,z){"object"==typeof R&&(z=R,R=null),z||(z={}),F=this.keyFromPrivate(F,R),y=this._truncateToN(new e(y,16));for(var W=this.n.byteLength(),$=F.getPrivate().toArray("be",W),j=y.toArray("be",W),Q=new t({hash:this.hash,entropy:$,nonce:j,pers:z.pers,persEnc:z.persEnc||"utf8"}),J=this.n.sub(new e(1)),ee=0;;ee++){var ie=z.k?z.k(ee):new e(Q.generate(this.n.byteLength()));if(!((ie=this._truncateToN(ie,!0)).cmpn(1)<=0||ie.cmp(J)>=0)){var ge=this.g.mul(ie);if(!ge.isInfinity()){var ae=ge.getX(),Me=ae.umod(this.n);if(0!==Me.cmpn(0)){var Te=ie.invm(this.n).mul(Me.mul(F.getPrivate()).iadd(y));if(0!==(Te=Te.umod(this.n)).cmpn(0)){var de=(ge.getY().isOdd()?1:0)|(0!==ae.cmp(Me)?2:0);return z.canonical&&Te.cmp(this.nh)>0&&(Te=this.n.sub(Te),de^=1),new I({r:Me,s:Te,recoveryParam:de})}}}}}},d.prototype.verify=function(y,F,R,z){y=this._truncateToN(new e(y,16)),R=this.keyFromPublic(R,z);var W=(F=new I(F,"hex")).r,$=F.s;if(W.cmpn(1)<0||W.cmp(this.n)>=0||$.cmpn(1)<0||$.cmp(this.n)>=0)return!1;var ee,j=$.invm(this.n),Q=j.mul(y).umod(this.n),J=j.mul(W).umod(this.n);return this.curve._maxwellTrick?!(ee=this.g.jmulAdd(Q,R.getPublic(),J)).isInfinity()&&ee.eqXToP(W):!(ee=this.g.mulAdd(Q,R.getPublic(),J)).isInfinity()&&0===ee.getX().umod(this.n).cmp(W)},d.prototype.recoverPubKey=function(T,y,F,R){x((3&F)===F,"The recovery param is more than two bits"),y=new I(y,R);var z=this.n,W=new e(T),$=y.r,j=y.s,Q=1&F,J=F>>1;if($.cmp(this.curve.p.umod(this.curve.n))>=0&&J)throw new Error("Unable to find sencond key candinate");$=this.curve.pointFromX(J?$.add(this.curve.n):$,Q);var ee=y.r.invm(z),ie=z.sub(W).mul(ee).umod(z),ge=j.mul(ee).umod(z);return this.g.mulAdd(ie,$,ge)},d.prototype.getKeyRecoveryParam=function(T,y,F,R){if(null!==(y=new I(y,R)).recoveryParam)return y.recoveryParam;for(var z=0;z<4;z++){var W;try{W=this.recoverPubKey(T,y,z)}catch{continue}if(W.eq(F))return z}throw new Error("Unable to find valid recovery factor")}},541:(Qe,te,g)=>{"use strict";var e=g(8723),w=g(3136).assert;function S(l,x){this.ec=l,this.priv=null,this.pub=null,x.priv&&this._importPrivate(x.priv,x.privEnc),x.pub&&this._importPublic(x.pub,x.pubEnc)}Qe.exports=S,S.fromPublic=function(x,f,I){return f instanceof S?f:new S(x,{pub:f,pubEnc:I})},S.fromPrivate=function(x,f,I){return f instanceof S?f:new S(x,{priv:f,privEnc:I})},S.prototype.validate=function(){var x=this.getPublic();return x.isInfinity()?{result:!1,reason:"Invalid public key"}:x.validate()?x.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(x,f){return"string"==typeof x&&(f=x,x=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),f?this.pub.encode(f,x):this.pub},S.prototype.getPrivate=function(x){return"hex"===x?this.priv.toString(16,2):this.priv},S.prototype._importPrivate=function(x,f){this.priv=new e(x,f||16),this.priv=this.priv.umod(this.ec.curve.n)},S.prototype._importPublic=function(x,f){if(x.x||x.y)return"mont"===this.ec.curve.type?w(x.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&w(x.x&&x.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(x.x,x.y));this.pub=this.ec.curve.decodePoint(x,f)},S.prototype.derive=function(x){return x.validate()||w(x.validate(),"public point not validated"),x.mul(this.priv).getX()},S.prototype.sign=function(x,f,I){return this.ec.sign(x,this,f,I)},S.prototype.verify=function(x,f){return this.ec.verify(x,f,this)},S.prototype.inspect=function(){return""}},484:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.assert;function S(d,T){if(d instanceof S)return d;this._importDER(d,T)||(w(d.r&&d.s,"Signature without r or s"),this.r=new e(d.r,16),this.s=new e(d.s,16),this.recoveryParam=void 0===d.recoveryParam?null:d.recoveryParam)}function l(){this.place=0}function x(d,T){var y=d[T.place++];if(!(128&y))return y;var F=15&y;if(0===F||F>4)return!1;for(var R=0,z=0,W=T.place;z>>=0;return!(R<=127)&&(T.place=W,R)}function f(d){for(var T=0,y=d.length-1;!d[T]&&!(128&d[T+1])&&T>>3);for(d.push(128|y);--y;)d.push(T>>>(y<<3)&255);d.push(T)}}Qe.exports=S,S.prototype._importDER=function(T,y){T=t.toArray(T,y);var F=new l;if(48!==T[F.place++])return!1;var R=x(T,F);if(!1===R||R+F.place!==T.length||2!==T[F.place++])return!1;var z=x(T,F);if(!1===z)return!1;var W=T.slice(F.place,z+F.place);if(F.place+=z,2!==T[F.place++])return!1;var $=x(T,F);if(!1===$||T.length!==$+F.place)return!1;var j=T.slice(F.place,$+F.place);if(0===W[0]){if(!(128&W[1]))return!1;W=W.slice(1)}if(0===j[0]){if(!(128&j[1]))return!1;j=j.slice(1)}return this.r=new e(W),this.s=new e(j),this.recoveryParam=null,!0},S.prototype.toDER=function(T){var y=this.r.toArray(),F=this.s.toArray();for(128&y[0]&&(y=[0].concat(y)),128&F[0]&&(F=[0].concat(F)),y=f(y),F=f(F);!(F[0]||128&F[1]);)F=F.slice(1);var R=[2];I(R,y.length),(R=R.concat(y)).push(2),I(R,F.length);var z=R.concat(F),W=[48];return I(W,z.length),W=W.concat(z),t.encode(W,T)}},3045:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(3401),w=g(3136),S=w.assert,l=w.parseBytes,x=g(7222),f=g(5451);function I(d){if(S("ed25519"===d,"only tested with ed25519 so far"),!(this instanceof I))return new I(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=e.sha512}Qe.exports=I,I.prototype.sign=function(T,y){T=l(T);var F=this.keyFromSecret(y),R=this.hashInt(F.messagePrefix(),T),z=this.g.mul(R),W=this.encodePoint(z),$=this.hashInt(W,F.pubBytes(),T).mul(F.priv()),j=R.add($).umod(this.curve.n);return this.makeSignature({R:z,S:j,Rencoded:W})},I.prototype.verify=function(T,y,F){T=l(T),y=this.makeSignature(y);var R=this.keyFromPublic(F),z=this.hashInt(y.Rencoded(),R.pubBytes(),T),W=this.g.mul(y.S());return y.R().add(R.pub().mul(z)).eq(W)},I.prototype.hashInt=function(){for(var T=this.hash(),y=0;y{"use strict";var e=g(3136),t=e.assert,w=e.parseBytes,S=e.cachedProperty;function l(x,f){this.eddsa=x,this._secret=w(f.secret),x.isPoint(f.pub)?this._pub=f.pub:this._pubBytes=w(f.pub)}l.fromPublic=function(f,I){return I instanceof l?I:new l(f,{pub:I})},l.fromSecret=function(f,I){return I instanceof l?I:new l(f,{secret:I})},l.prototype.secret=function(){return this._secret},S(l,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),S(l,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),S(l,"privBytes",function(){var f=this.eddsa,I=this.hash(),d=f.encodingLength-1,T=I.slice(0,f.encodingLength);return T[0]&=248,T[d]&=127,T[d]|=64,T}),S(l,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),S(l,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),S(l,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),l.prototype.sign=function(f){return t(this._secret,"KeyPair can only verify"),this.eddsa.sign(f,this)},l.prototype.verify=function(f,I){return this.eddsa.verify(f,I,this)},l.prototype.getSecret=function(f){return t(this._secret,"KeyPair is public only"),e.encode(this.secret(),f)},l.prototype.getPublic=function(f){return e.encode(this.pubBytes(),f)},Qe.exports=l},5451:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.assert,S=t.cachedProperty,l=t.parseBytes;function x(f,I){this.eddsa=f,"object"!=typeof I&&(I=l(I)),Array.isArray(I)&&(I={R:I.slice(0,f.encodingLength),S:I.slice(f.encodingLength)}),w(I.R&&I.S,"Signature without R or S"),f.isPoint(I.R)&&(this._R=I.R),I.S instanceof e&&(this._S=I.S),this._Rencoded=Array.isArray(I.R)?I.R:I.Rencoded,this._Sencoded=Array.isArray(I.S)?I.S:I.Sencoded}S(x,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),S(x,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),S(x,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),S(x,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),x.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},x.prototype.toHex=function(){return t.encode(this.toBytes(),"hex").toUpperCase()},Qe.exports=x},1416:Qe=>{Qe.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"]]}}},3136:(Qe,te,g)=>{"use strict";var e=te,t=g(8723),w=g(9210),S=g(1832);e.assert=w,e.toArray=S.toArray,e.zero2=S.zero2,e.toHex=S.toHex,e.encode=S.encode,e.getNAF=function l(T,y,F){var z,R=new Array(Math.max(T.bitLength(),F)+1);for(z=0;z(W>>1)-1?(W>>1)-Q:Q):j=0,R[z]=j,$.iushrn(1)}return R},e.getJSF=function x(T,y){var F=[[],[]];T=T.clone(),y=y.clone();for(var W,R=0,z=0;T.cmpn(-R)>0||y.cmpn(-z)>0;){var Q,J,$=T.andln(3)+R&3,j=y.andln(3)+z&3;3===$&&($=-1),3===j&&(j=-1),Q=1&$?3!=(W=T.andln(7)+R&7)&&5!==W||2!==j?$:-$:0,F[0].push(Q),J=1&j?3!=(W=y.andln(7)+z&7)&&5!==W||2!==$?j:-j:0,F[1].push(J),2*R===Q+1&&(R=1-R),2*z===J+1&&(z=1-z),T.iushrn(1),y.iushrn(1)}return F},e.cachedProperty=function f(T,y,F){var R="_"+y;T.prototype[y]=function(){return void 0!==this[R]?this[R]:this[R]=F.call(this)}},e.parseBytes=function I(T){return"string"==typeof T?e.toArray(T,"hex"):T},e.intFromLE=function d(T){return new t(T,"hex","le")}},8723:function(Qe,te,g){!function(e,t){"use strict";function w(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var c=function(){};c.prototype=n.prototype,D.prototype=new c,D.prototype.constructor=D}function l(D,n,c){if(l.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(D||0,n||10,c||"be"))}var x;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{x=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(9368).Buffer}catch{}function f(D,n){var c=D.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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 z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.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&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},3174:Qe=>{"use strict";Qe.exports=function(g){for(var e=[],t=g.length,w=0;w=55296&&S<=56319&&t>w+1){var l=g.charCodeAt(w+1);l>=56320&&l<=57343&&(S=1024*(S-55296)+l-56320+65536,w+=1)}S<128?e.push(S):S<2048?(e.push(S>>6|192),e.push(63&S|128)):S<55296||S>=57344&&S<65536?(e.push(S>>12|224),e.push(S>>6&63|128),e.push(63&S|128)):S>=65536&&S<=1114111?(e.push(S>>18|240),e.push(S>>12&63|128),e.push(S>>6&63|128),e.push(63&S|128)):e.push(239,191,189)}return new Uint8Array(e).buffer}},4356:Qe=>{"use strict";var e,te="object"==typeof Reflect?Reflect:null,g=te&&"function"==typeof te.apply?te.apply:function(ee,ie,ge){return Function.prototype.apply.call(ee,ie,ge)};e=te&&"function"==typeof te.ownKeys?te.ownKeys:Object.getOwnPropertySymbols?function(ee){return Object.getOwnPropertyNames(ee).concat(Object.getOwnPropertySymbols(ee))}:function(ee){return Object.getOwnPropertyNames(ee)};var w=Number.isNaN||function(ee){return ee!=ee};function S(){S.init.call(this)}Qe.exports=S,Qe.exports.once=function $(J,ee){return new Promise(function(ie,ge){function ae(Te){J.removeListener(ee,Me),ge(Te)}function Me(){"function"==typeof J.removeListener&&J.removeListener("error",ae),ie([].slice.call(arguments))}Q(J,ee,Me,{once:!0}),"error"!==ee&&function j(J,ee,ie){"function"==typeof J.on&&Q(J,"error",ee,ie)}(J,ae,{once:!0})})},S.EventEmitter=S,S.prototype._events=void 0,S.prototype._eventsCount=0,S.prototype._maxListeners=void 0;var l=10;function x(J){if("function"!=typeof J)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof J)}function f(J){return void 0===J._maxListeners?S.defaultMaxListeners:J._maxListeners}function I(J,ee,ie,ge){var ae,Me,Te;if(x(ie),void 0===(Me=J._events)?(Me=J._events=Object.create(null),J._eventsCount=0):(void 0!==Me.newListener&&(J.emit("newListener",ee,ie.listener?ie.listener:ie),Me=J._events),Te=Me[ee]),void 0===Te)Te=Me[ee]=ie,++J._eventsCount;else if("function"==typeof Te?Te=Me[ee]=ge?[ie,Te]:[Te,ie]:ge?Te.unshift(ie):Te.push(ie),(ae=f(J))>0&&Te.length>ae&&!Te.warned){Te.warned=!0;var de=new Error("Possible EventEmitter memory leak detected. "+Te.length+" "+String(ee)+" listeners added. Use emitter.setMaxListeners() to increase limit");de.name="MaxListenersExceededWarning",de.emitter=J,de.type=ee,de.count=Te.length,function t(J){console&&console.warn&&console.warn(J)}(de)}return J}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 T(J,ee,ie){var ge={fired:!1,wrapFn:void 0,target:J,type:ee,listener:ie},ae=d.bind(ge);return ae.listener=ie,ge.wrapFn=ae,ae}function y(J,ee,ie){var ge=J._events;if(void 0===ge)return[];var ae=ge[ee];return void 0===ae?[]:"function"==typeof ae?ie?[ae.listener||ae]:[ae]:ie?function W(J){for(var ee=new Array(J.length),ie=0;ie0&&(Te=ie[0]),Te instanceof Error)throw Te;var de=new Error("Unhandled error."+(Te?" ("+Te.message+")":""));throw de.context=Te,de}var D=Me[ee];if(void 0===D)return!1;if("function"==typeof D)g(D,this,ie);else{var n=D.length,c=R(D,n);for(ge=0;ge=0;Te--)if(ge[Te]===ie||ge[Te].listener===ie){de=ge[Te].listener,Me=Te;break}if(Me<0)return this;0===Me?ge.shift():function z(J,ee){for(;ee+1=0;ae--)this.removeListener(ee,ie[ae]);return this},S.prototype.listeners=function(ee){return y(this,ee,!0)},S.prototype.rawListeners=function(ee){return y(this,ee,!1)},S.listenerCount=function(J,ee){return"function"==typeof J.listenerCount?J.listenerCount(ee):F.call(J,ee)},S.prototype.listenerCount=F,S.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},592:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(4725);Qe.exports=function w(S,l,x,f){if(e.isBuffer(S)||(S=e.from(S,"binary")),l&&(e.isBuffer(l)||(l=e.from(l,"binary")),8!==l.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var I=x/8,d=e.alloc(I),T=e.alloc(f||0),y=e.alloc(0);I>0||f>0;){var F=new t;F.update(y),F.update(S),l&&F.update(l),y=F.digest();var R=0;if(I>0){var z=d.length-I;R=Math.min(I,y.length),y.copy(d,z,0,R),I-=R}if(R0){var W=T.length-f,$=Math.min(f,y.length-R);y.copy(T,W,R,R+$),f-=$}}return y.fill(0),{key:d,iv:T}}},3686:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7045).Transform;function l(x){t.call(this),this._block=e.allocUnsafe(x),this._blockSize=x,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}g(1993)(l,t),l.prototype._transform=function(x,f,I){var d=null;try{this.update(x,f)}catch(T){d=T}I(d)},l.prototype._flush=function(x){var f=null;try{this.push(this.digest())}catch(I){f=I}x(f)},l.prototype.update=function(x,f){if(function S(x,f){if(!e.isBuffer(x)&&"string"!=typeof x)throw new TypeError(f+" must be a string or a buffer")}(x,"Data"),this._finalized)throw new Error("Digest already called");e.isBuffer(x)||(x=e.from(x,f));for(var I=this._block,d=0;this._blockOffset+x.length-d>=this._blockSize;){for(var T=this._blockOffset;T0;++y)this._length[y]+=F,(F=this._length[y]/4294967296|0)>0&&(this._length[y]-=4294967296*F);return this},l.prototype._update=function(){throw new Error("_update is not implemented")},l.prototype.digest=function(x){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var f=this._digest();void 0!==x&&(f=f.toString(x)),this._block.fill(0),this._blockOffset=0;for(var I=0;I<4;++I)this._length[I]=0;return f},l.prototype._digest=function(){throw new Error("_digest is not implemented")},Qe.exports=l},2529:(Qe,te,g)=>{var e=te;e.utils=g(8283),e.common=g(2901),e.sha=g(8528),e.ripemd=g(5283),e.hmac=g(7163),e.sha1=e.sha.sha1,e.sha256=e.sha.sha256,e.sha224=e.sha.sha224,e.sha384=e.sha.sha384,e.sha512=e.sha.sha512,e.ripemd160=e.ripemd.ripemd160},2901:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(9210);function w(){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}te.BlockHash=w,w.prototype.update=function(l,x){if(l=e.toArray(l,x),this.pending=this.pending?this.pending.concat(l):l,this.pendingTotal+=l.length,this.pending.length>=this._delta8){var f=(l=this.pending).length%this._delta8;this.pending=l.slice(l.length-f,l.length),0===this.pending.length&&(this.pending=null),l=e.join32(l,0,l.length-f,this.endian);for(var I=0;I>>24&255,I[d++]=l>>>16&255,I[d++]=l>>>8&255,I[d++]=255&l}else for(I[d++]=255&l,I[d++]=l>>>8&255,I[d++]=l>>>16&255,I[d++]=l>>>24&255,I[d++]=0,I[d++]=0,I[d++]=0,I[d++]=0,T=8;T{"use strict";var e=g(8283),t=g(9210);function w(S,l,x){if(!(this instanceof w))return new w(S,l,x);this.Hash=S,this.blockSize=S.blockSize/8,this.outSize=S.outSize/8,this.inner=null,this.outer=null,this._init(e.toArray(l,x))}Qe.exports=w,w.prototype._init=function(l){l.length>this.blockSize&&(l=(new this.Hash).update(l).digest()),t(l.length<=this.blockSize);for(var x=l.length;x{"use strict";var e=g(8283),t=g(2901),w=e.rotl32,S=e.sum32,l=e.sum32_3,x=e.sum32_4,f=t.BlockHash;function I(){if(!(this instanceof I))return new I;f.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function d($,j,Q,J){return $<=15?j^Q^J:$<=31?j&Q|~j&J:$<=47?(j|~Q)^J:$<=63?j&J|Q&~J:j^(Q|~J)}function y($){return $<=15?1352829926:$<=31?1548603684:$<=47?1836072691:$<=63?2053994217:0}e.inherits(I,f),te.ripemd160=I,I.blockSize=512,I.outSize=160,I.hmacStrength=192,I.padLength=64,I.prototype._update=function(j,Q){for(var J=this.h[0],ee=this.h[1],ie=this.h[2],ge=this.h[3],ae=this.h[4],Me=J,Te=ee,de=ie,D=ge,n=ae,c=0;c<80;c++){var m=S(w(x(J,d(c,ee,ie,ge),j[F[c]+Q],($=c)<=15?0:$<=31?1518500249:$<=47?1859775393:$<=63?2400959708:2840853838),z[c]),ae);J=ae,ae=ge,ge=w(ie,10),ie=ee,ee=m,m=S(w(x(Me,d(79-c,Te,de,D),j[R[c]+Q],y(c)),W[c]),n),Me=n,n=D,D=w(de,10),de=Te,Te=m}var $;m=l(this.h[1],ie,D),this.h[1]=l(this.h[2],ge,n),this.h[2]=l(this.h[3],ae,Me),this.h[3]=l(this.h[4],J,Te),this.h[4]=l(this.h[0],ee,de),this.h[0]=m},I.prototype._digest=function(j){return"hex"===j?e.toHex32(this.h,"little"):e.split32(this.h,"little")};var F=[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],R=[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],z=[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],W=[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]},8528:(Qe,te,g)=>{"use strict";te.sha1=g(3468),te.sha224=g(5563),te.sha256=g(7138),te.sha384=g(3898),te.sha512=g(827)},3468:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(3161),S=e.rotl32,l=e.sum32,x=e.sum32_5,f=w.ft_1,I=t.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function T(){if(!(this instanceof T))return new T;I.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}e.inherits(T,I),Qe.exports=T,T.blockSize=512,T.outSize=160,T.hmacStrength=80,T.padLength=64,T.prototype._update=function(F,R){for(var z=this.W,W=0;W<16;W++)z[W]=F[R+W];for(;W{"use strict";var e=g(8283),t=g(7138);function w(){if(!(this instanceof w))return new w;t.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}e.inherits(w,t),Qe.exports=w,w.blockSize=512,w.outSize=224,w.hmacStrength=192,w.padLength=64,w.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,7),"big"):e.split32(this.h.slice(0,7),"big")}},7138:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(3161),S=g(9210),l=e.sum32,x=e.sum32_4,f=e.sum32_5,I=w.ch32,d=w.maj32,T=w.s0_256,y=w.s1_256,F=w.g0_256,R=w.g1_256,z=t.BlockHash,W=[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 $(){if(!(this instanceof $))return new $;z.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=W,this.W=new Array(64)}e.inherits($,z),Qe.exports=$,$.blockSize=512,$.outSize=256,$.hmacStrength=192,$.padLength=64,$.prototype._update=function(Q,J){for(var ee=this.W,ie=0;ie<16;ie++)ee[ie]=Q[J+ie];for(;ie{"use strict";var e=g(8283),t=g(827);function w(){if(!(this instanceof w))return new w;t.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}e.inherits(w,t),Qe.exports=w,w.blockSize=1024,w.outSize=384,w.hmacStrength=192,w.padLength=128,w.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,12),"big"):e.split32(this.h.slice(0,12),"big")}},827:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(9210),S=e.rotr64_hi,l=e.rotr64_lo,x=e.shr64_hi,f=e.shr64_lo,I=e.sum64,d=e.sum64_hi,T=e.sum64_lo,y=e.sum64_4_hi,F=e.sum64_4_lo,R=e.sum64_5_hi,z=e.sum64_5_lo,W=t.BlockHash,$=[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 j(){if(!(this instanceof j))return new j;W.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=$,this.W=new Array(160)}function Q(m,h,C,k,L){var _=m&C^~m&L;return _<0&&(_+=4294967296),_}function J(m,h,C,k,L,_){var r=h&k^~h&_;return r<0&&(r+=4294967296),r}function ee(m,h,C,k,L){var _=m&C^m&L^C&L;return _<0&&(_+=4294967296),_}function ie(m,h,C,k,L,_){var r=h&k^h&_^k&_;return r<0&&(r+=4294967296),r}function ge(m,h){var _=S(m,h,28)^S(h,m,2)^S(h,m,7);return _<0&&(_+=4294967296),_}function ae(m,h){var _=l(m,h,28)^l(h,m,2)^l(h,m,7);return _<0&&(_+=4294967296),_}function Me(m,h){var _=S(m,h,14)^S(m,h,18)^S(h,m,9);return _<0&&(_+=4294967296),_}function Te(m,h){var _=l(m,h,14)^l(m,h,18)^l(h,m,9);return _<0&&(_+=4294967296),_}function de(m,h){var _=S(m,h,1)^S(m,h,8)^x(m,h,7);return _<0&&(_+=4294967296),_}function D(m,h){var _=l(m,h,1)^l(m,h,8)^f(m,h,7);return _<0&&(_+=4294967296),_}function n(m,h){var _=S(m,h,19)^S(h,m,29)^x(m,h,6);return _<0&&(_+=4294967296),_}function c(m,h){var _=l(m,h,19)^l(h,m,29)^f(m,h,6);return _<0&&(_+=4294967296),_}e.inherits(j,W),Qe.exports=j,j.blockSize=1024,j.outSize=512,j.hmacStrength=192,j.padLength=128,j.prototype._prepareBlock=function(h,C){for(var k=this.W,L=0;L<32;L++)k[L]=h[C+L];for(;L{"use strict";var t=g(8283).rotr32;function S(y,F,R){return y&F^~y&R}function l(y,F,R){return y&F^y&R^F&R}function x(y,F,R){return y^F^R}te.ft_1=function w(y,F,R,z){return 0===y?S(F,R,z):1===y||3===y?x(F,R,z):2===y?l(F,R,z):void 0},te.ch32=S,te.maj32=l,te.p32=x,te.s0_256=function f(y){return t(y,2)^t(y,13)^t(y,22)},te.s1_256=function I(y){return t(y,6)^t(y,11)^t(y,25)},te.g0_256=function d(y){return t(y,7)^t(y,18)^y>>>3},te.g1_256=function T(y){return t(y,17)^t(y,19)^y>>>10}},8283:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993);function w(c,m){return!(55296!=(64512&c.charCodeAt(m))||m<0||m+1>=c.length)&&56320==(64512&c.charCodeAt(m+1))}function x(c){return(c>>>24|c>>>8&65280|c<<8&16711680|(255&c)<<24)>>>0}function I(c){return 1===c.length?"0"+c:c}function d(c){return 7===c.length?"0"+c:6===c.length?"00"+c:5===c.length?"000"+c:4===c.length?"0000"+c:3===c.length?"00000"+c:2===c.length?"000000"+c:1===c.length?"0000000"+c:c}te.inherits=t,te.toArray=function S(c,m){if(Array.isArray(c))return c.slice();if(!c)return[];var h=[];if("string"==typeof c)if(m){if("hex"===m)for((c=c.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(c="0"+c),k=0;k>6|192,h[C++]=63&L|128):w(c,k)?(L=65536+((1023&L)<<10)+(1023&c.charCodeAt(++k)),h[C++]=L>>18|240,h[C++]=L>>12&63|128,h[C++]=L>>6&63|128,h[C++]=63&L|128):(h[C++]=L>>12|224,h[C++]=L>>6&63|128,h[C++]=63&L|128)}else for(k=0;k>>0;return L},te.split32=function y(c,m){for(var h=new Array(4*c.length),C=0,k=0;C>>24,h[k+1]=L>>>16&255,h[k+2]=L>>>8&255,h[k+3]=255&L):(h[k+3]=L>>>24,h[k+2]=L>>>16&255,h[k+1]=L>>>8&255,h[k]=255&L)}return h},te.rotr32=function F(c,m){return c>>>m|c<<32-m},te.rotl32=function R(c,m){return c<>>32-m},te.sum32=function z(c,m){return c+m>>>0},te.sum32_3=function W(c,m,h){return c+m+h>>>0},te.sum32_4=function $(c,m,h,C){return c+m+h+C>>>0},te.sum32_5=function j(c,m,h,C,k){return c+m+h+C+k>>>0},te.sum64=function Q(c,m,h,C){var _=C+c[m+1]>>>0;c[m]=(_>>0,c[m+1]=_},te.sum64_hi=function J(c,m,h,C){return(m+C>>>0>>0},te.sum64_lo=function ee(c,m,h,C){return m+C>>>0},te.sum64_4_hi=function ie(c,m,h,C,k,L,_,r){var v=0,V=m;return v+=(V=V+C>>>0)>>0)>>0)>>0},te.sum64_4_lo=function ge(c,m,h,C,k,L,_,r){return m+C+L+r>>>0},te.sum64_5_hi=function ae(c,m,h,C,k,L,_,r,v,V){var N=0,ne=m;return N+=(ne=ne+C>>>0)>>0)>>0)>>0)>>0},te.sum64_5_lo=function Me(c,m,h,C,k,L,_,r,v,V){return m+C+L+r+V>>>0},te.rotr64_hi=function Te(c,m,h){return(m<<32-h|c>>>h)>>>0},te.rotr64_lo=function de(c,m,h){return(c<<32-h|m>>>h)>>>0},te.shr64_hi=function D(c,m,h){return c>>>h},te.shr64_lo=function n(c,m,h){return(c<<32-h|m>>>h)>>>0}},3556:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(1832),w=g(9210);function S(l){if(!(this instanceof S))return new S(l);this.hash=l.hash,this.predResist=!!l.predResist,this.outLen=this.hash.outSize,this.minEntropy=l.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var x=t.toArray(l.entropy,l.entropyEnc||"hex"),f=t.toArray(l.nonce,l.nonceEnc||"hex"),I=t.toArray(l.pers,l.persEnc||"hex");w(x.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(x,f,I)}Qe.exports=S,S.prototype._init=function(x,f,I){var d=x.concat(f).concat(I);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var T=0;T=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(x.concat(I||[])),this._reseed=1},S.prototype.generate=function(x,f,I,d){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof f&&(d=I,I=f,f=null),I&&(I=t.toArray(I,d||"hex"),this._update(I));for(var T=[];T.length{te.read=function(g,e,t,w,S){var l,x,f=8*S-w-1,I=(1<>1,T=-7,y=t?S-1:0,F=t?-1:1,R=g[e+y];for(y+=F,l=R&(1<<-T)-1,R>>=-T,T+=f;T>0;l=256*l+g[e+y],y+=F,T-=8);for(x=l&(1<<-T)-1,l>>=-T,T+=w;T>0;x=256*x+g[e+y],y+=F,T-=8);if(0===l)l=1-d;else{if(l===I)return x?NaN:1/0*(R?-1:1);x+=Math.pow(2,w),l-=d}return(R?-1:1)*x*Math.pow(2,l-w)},te.write=function(g,e,t,w,S,l){var x,f,I,d=8*l-S-1,T=(1<>1,F=23===S?Math.pow(2,-24)-Math.pow(2,-77):0,R=w?0:l-1,z=w?1:-1,W=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(f=isNaN(e)?1:0,x=T):(x=Math.floor(Math.log(e)/Math.LN2),e*(I=Math.pow(2,-x))<1&&(x--,I*=2),(e+=x+y>=1?F/I:F*Math.pow(2,1-y))*I>=2&&(x++,I/=2),x+y>=T?(f=0,x=T):x+y>=1?(f=(e*I-1)*Math.pow(2,S),x+=y):(f=e*Math.pow(2,y-1)*Math.pow(2,S),x=0));S>=8;g[t+R]=255&f,R+=z,f/=256,S-=8);for(x=x<0;g[t+R]=255&x,R+=z,x/=256,d-=8);g[t+R-z]|=128*W}},1993:Qe=>{Qe.exports="function"==typeof Object.create?function(g,e){e&&(g.super_=e,g.prototype=Object.create(e.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}))}:function(g,e){if(e){g.super_=e;var t=function(){};t.prototype=e.prototype,g.prototype=new t,g.prototype.constructor=g}}},53:Qe=>{var te={}.toString;Qe.exports=Array.isArray||function(g){return"[object Array]"==te.call(g)}},4725:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(3686),w=g(7054).Buffer,S=new Array(16);function l(){t.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function x(y,F){return y<>>32-F}function f(y,F,R,z,W,$,j){return x(y+(F&R|~F&z)+W+$|0,j)+F|0}function I(y,F,R,z,W,$,j){return x(y+(F&z|R&~z)+W+$|0,j)+F|0}function d(y,F,R,z,W,$,j){return x(y+(F^R^z)+W+$|0,j)+F|0}function T(y,F,R,z,W,$,j){return x(y+(R^(F|~z))+W+$|0,j)+F|0}e(l,t),l.prototype._update=function(){for(var y=S,F=0;F<16;++F)y[F]=this._block.readInt32LE(4*F);var R=this._a,z=this._b,W=this._c,$=this._d;R=f(R,z,W,$,y[0],3614090360,7),$=f($,R,z,W,y[1],3905402710,12),W=f(W,$,R,z,y[2],606105819,17),z=f(z,W,$,R,y[3],3250441966,22),R=f(R,z,W,$,y[4],4118548399,7),$=f($,R,z,W,y[5],1200080426,12),W=f(W,$,R,z,y[6],2821735955,17),z=f(z,W,$,R,y[7],4249261313,22),R=f(R,z,W,$,y[8],1770035416,7),$=f($,R,z,W,y[9],2336552879,12),W=f(W,$,R,z,y[10],4294925233,17),z=f(z,W,$,R,y[11],2304563134,22),R=f(R,z,W,$,y[12],1804603682,7),$=f($,R,z,W,y[13],4254626195,12),W=f(W,$,R,z,y[14],2792965006,17),R=I(R,z=f(z,W,$,R,y[15],1236535329,22),W,$,y[1],4129170786,5),$=I($,R,z,W,y[6],3225465664,9),W=I(W,$,R,z,y[11],643717713,14),z=I(z,W,$,R,y[0],3921069994,20),R=I(R,z,W,$,y[5],3593408605,5),$=I($,R,z,W,y[10],38016083,9),W=I(W,$,R,z,y[15],3634488961,14),z=I(z,W,$,R,y[4],3889429448,20),R=I(R,z,W,$,y[9],568446438,5),$=I($,R,z,W,y[14],3275163606,9),W=I(W,$,R,z,y[3],4107603335,14),z=I(z,W,$,R,y[8],1163531501,20),R=I(R,z,W,$,y[13],2850285829,5),$=I($,R,z,W,y[2],4243563512,9),W=I(W,$,R,z,y[7],1735328473,14),R=d(R,z=I(z,W,$,R,y[12],2368359562,20),W,$,y[5],4294588738,4),$=d($,R,z,W,y[8],2272392833,11),W=d(W,$,R,z,y[11],1839030562,16),z=d(z,W,$,R,y[14],4259657740,23),R=d(R,z,W,$,y[1],2763975236,4),$=d($,R,z,W,y[4],1272893353,11),W=d(W,$,R,z,y[7],4139469664,16),z=d(z,W,$,R,y[10],3200236656,23),R=d(R,z,W,$,y[13],681279174,4),$=d($,R,z,W,y[0],3936430074,11),W=d(W,$,R,z,y[3],3572445317,16),z=d(z,W,$,R,y[6],76029189,23),R=d(R,z,W,$,y[9],3654602809,4),$=d($,R,z,W,y[12],3873151461,11),W=d(W,$,R,z,y[15],530742520,16),R=T(R,z=d(z,W,$,R,y[2],3299628645,23),W,$,y[0],4096336452,6),$=T($,R,z,W,y[7],1126891415,10),W=T(W,$,R,z,y[14],2878612391,15),z=T(z,W,$,R,y[5],4237533241,21),R=T(R,z,W,$,y[12],1700485571,6),$=T($,R,z,W,y[3],2399980690,10),W=T(W,$,R,z,y[10],4293915773,15),z=T(z,W,$,R,y[1],2240044497,21),R=T(R,z,W,$,y[8],1873313359,6),$=T($,R,z,W,y[15],4264355552,10),W=T(W,$,R,z,y[6],2734768916,15),z=T(z,W,$,R,y[13],1309151649,21),R=T(R,z,W,$,y[4],4149444226,6),$=T($,R,z,W,y[11],3174756917,10),W=T(W,$,R,z,y[2],718787259,15),z=T(z,W,$,R,y[9],3951481745,21),this._a=this._a+R|0,this._b=this._b+z|0,this._c=this._c+W|0,this._d=this._d+$|0},l.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 y=w.allocUnsafe(16);return y.writeInt32LE(this._a,0),y.writeInt32LE(this._b,4),y.writeInt32LE(this._c,8),y.writeInt32LE(this._d,12),y},Qe.exports=l},3459:(Qe,te,g)=>{var e=g(7223),t=g(5294);function w(S){this.rand=S||new t.Rand}Qe.exports=w,w.create=function(l){return new w(l)},w.prototype._randbelow=function(l){var x=l.bitLength(),f=Math.ceil(x/8);do{var I=new e(this.rand.generate(f))}while(I.cmp(l)>=0);return I},w.prototype._randrange=function(l,x){var f=x.sub(l);return l.add(this._randbelow(f))},w.prototype.test=function(l,x,f){var I=l.bitLength(),d=e.mont(l),T=new e(1).toRed(d);x||(x=Math.max(1,I/48|0));for(var y=l.subn(1),F=0;!y.testn(F);F++);for(var R=l.shrn(F),z=y.toRed(d);x>0;x--){var $=this._randrange(new e(2),y);f&&f($);var j=$.toRed(d).redPow(R);if(0!==j.cmp(T)&&0!==j.cmp(z)){for(var Q=1;Q0;x--){var z=this._randrange(new e(2),T),W=l.gcd(z);if(0!==W.cmpn(1))return W;var $=z.toRed(I).redPow(F);if(0!==$.cmp(d)&&0!==$.cmp(R)){for(var j=1;j=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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 z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.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&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},9210:Qe=>{function te(g,e){if(!g)throw new Error(e||"Assertion failed")}Qe.exports=te,te.equal=function(e,t,w){if(e!=t)throw new Error(w||"Assertion failed: "+e+" != "+t)}},1832:(Qe,te)=>{"use strict";var g=te;function t(S){return 1===S.length?"0"+S:S}function w(S){for(var l="",x=0;x>8,T=255&I;d?x.push(d,T):x.push(T)}return x},g.zero2=t,g.toHex=w,g.encode=function(l,x){return"hex"===x?w(l):l}},1264:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(4478);Object.keys(e).forEach(function(t){"default"!==t&&Object.defineProperty(te,t,{enumerable:!0,get:function(){return e[t]}})})},3138:(Qe,te,g)=>{"use strict";var e=g(1990);te.certificate=g(4772);var t=e.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())});te.RSAPrivateKey=t;var w=e.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});te.RSAPublicKey=w;var S=e.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())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())});te.PublicKey=l;var x=e.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(S),this.key("subjectPrivateKey").octstr())});te.PrivateKey=x;var f=e.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())});te.EncryptedPrivateKey=f;var I=e.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())});te.DSAPrivateKey=I,te.DSAparam=e.define("DSAparam",function(){this.int()});var d=e.define("ECParameters",function(){this.choice({namedCurve:this.objid()})}),T=e.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())});te.ECPrivateKey=T,te.signature=e.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},4772:(Qe,te,g)=>{"use strict";var e=g(1990),t=e.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),w=e.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),S=e.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())}),x=e.define("RelativeDistinguishedName",function(){this.setof(w)}),f=e.define("RDNSequence",function(){this.seqof(x)}),I=e.define("Name",function(){this.choice({rdnSequence:this.use(f)})}),d=e.define("Validity",function(){this.seq().obj(this.key("notBefore").use(t),this.key("notAfter").use(t))}),T=e.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),y=e.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(I),this.key("validity").use(d),this.key("subject").use(I),this.key("subjectPublicKeyInfo").use(l),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(T).optional())}),F=e.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(y),this.key("signatureAlgorithm").use(S),this.key("signatureValue").bitstr())});Qe.exports=F},9472:(Qe,te,g)=>{"use strict";var e=/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,w=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,S=g(592),l=g(3388),x=g(7054).Buffer;Qe.exports=function(f,I){var y,d=f.toString(),T=d.match(e);if(T){var R="aes"+T[1],z=x.from(T[2],"hex"),W=x.from(T[3].replace(/[\r\n]/g,""),"base64"),$=S(I,z.slice(0,8),parseInt(T[1],10)).key,j=[],Q=l.createDecipheriv(R,$,z);j.push(Q.update(W)),j.push(Q.final()),y=x.concat(j)}else{var F=d.match(w);y=x.from(F[2].replace(/[\r\n]/g,""),"base64")}return{tag:d.match(t)[1],data:y}}},5667:(Qe,te,g)=>{"use strict";var e=g(3138),t=g(5579),w=g(9472),S=g(3388),l=g(3397),x=g(7054).Buffer;function I(d){var T;"object"==typeof d&&!x.isBuffer(d)&&(T=d.passphrase,d=d.key),"string"==typeof d&&(d=x.from(d));var z,W,y=w(d,T),F=y.tag,R=y.data;switch(F){case"CERTIFICATE":W=e.certificate.decode(R,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(W||(W=e.PublicKey.decode(R,"der")),z=W.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPublicKey.decode(W.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return W.subjectPrivateKey=W.subjectPublicKey,{type:"ec",data:W};case"1.2.840.10040.4.1":return W.algorithm.params.pub_key=e.DSAparam.decode(W.subjectPublicKey.data,"der"),{type:"dsa",data:W.algorithm.params};default:throw new Error("unknown key id "+z)}case"ENCRYPTED PRIVATE KEY":R=function f(d,T){var y=d.algorithm.decrypt.kde.kdeparams.salt,F=parseInt(d.algorithm.decrypt.kde.kdeparams.iters.toString(),10),R=t[d.algorithm.decrypt.cipher.algo.join(".")],z=d.algorithm.decrypt.cipher.iv,W=d.subjectPrivateKey,$=parseInt(R.split("-")[1],10)/8,j=l.pbkdf2Sync(T,y,F,$,"sha1"),Q=S.createDecipheriv(R,j,z),J=[];return J.push(Q.update(W)),J.push(Q.final()),x.concat(J)}(R=e.EncryptedPrivateKey.decode(R,"der"),T);case"PRIVATE KEY":switch(z=(W=e.PrivateKey.decode(R,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPrivateKey.decode(W.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:W.algorithm.curve,privateKey:e.ECPrivateKey.decode(W.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return W.algorithm.params.priv_key=e.DSAparam.decode(W.subjectPrivateKey,"der"),{type:"dsa",params:W.algorithm.params};default:throw new Error("unknown key id "+z)}case"RSA PUBLIC KEY":return e.RSAPublicKey.decode(R,"der");case"RSA PRIVATE KEY":return e.RSAPrivateKey.decode(R,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:e.DSAPrivateKey.decode(R,"der")};case"EC PRIVATE KEY":return{curve:(R=e.ECPrivateKey.decode(R,"der")).parameters.value,privateKey:R.privateKey};default:throw new Error("unknown key type "+F)}}I.signature=e.signature,Qe.exports=I},3397:(Qe,te,g)=>{te.pbkdf2=g(2685),te.pbkdf2Sync=g(9111)},2685:(Qe,te,g)=>{var x,y,e=g(7054).Buffer,t=g(6111),w=g(5392),S=g(9111),l=g(6643),f=global.crypto&&global.crypto.subtle,I={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 F(){return y||(y=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function R(W,$,j,Q,J){return f.importKey("raw",W,{name:"PBKDF2"},!1,["deriveBits"]).then(function(ee){return f.deriveBits({name:"PBKDF2",salt:$,iterations:j,hash:{name:J}},ee,Q<<3)}).then(function(ee){return e.from(ee)})}Qe.exports=function(W,$,j,Q,J,ee){"function"==typeof J&&(ee=J,J=void 0);var ie=I[(J=J||"sha1").toLowerCase()];if(ie&&"function"==typeof global.Promise){if(t(j,Q),W=l(W,w,"Password"),$=l($,w,"Salt"),"function"!=typeof ee)throw new Error("No callback provided to pbkdf2");!function z(W,$){W.then(function(j){F()(function(){$(null,j)})},function(j){F()(function(){$(j)})})}(function T(W){if(global.process&&!global.process.browser||!f||!f.importKey||!f.deriveBits)return Promise.resolve(!1);if(void 0!==d[W])return d[W];var $=R(x=x||e.alloc(8),x,10,128,W).then(function(){return!0}).catch(function(){return!1});return d[W]=$,$}(ie).then(function(ge){return ge?R(W,$,j,Q,ie):S(W,$,j,Q,J)}),ee)}else F()(function(){var ge;try{ge=S(W,$,j,Q,J)}catch(ae){return ee(ae)}ee(null,ge)})}},5392:Qe=>{var te;te=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",Qe.exports=te},6111:Qe=>{var te=Math.pow(2,30)-1;Qe.exports=function(g,e){if("number"!=typeof g)throw new TypeError("Iterations not a number");if(g<0)throw new TypeError("Bad iterations");if("number"!=typeof e)throw new TypeError("Key length not a number");if(e<0||e>te||e!=e)throw new TypeError("Bad key length")}},9111:(Qe,te,g)=>{var e=g(3407),t=g(6636),w=g(5443),S=g(7054).Buffer,l=g(6111),x=g(5392),f=g(6643),I=S.alloc(128),d={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function T(R,z,W){var $=function y(R){return"rmd160"===R||"ripemd160"===R?function W($){return(new t).update($).digest()}:"md5"===R?e:function z($){return w(R).update($).digest()}}(R),j="sha512"===R||"sha384"===R?128:64;z.length>j?z=$(z):z.length{var e=g(7054).Buffer;Qe.exports=function(t,w,S){if(e.isBuffer(t))return t;if("string"==typeof t)return e.from(t,w);if(ArrayBuffer.isView(t))return e.from(t.buffer);throw new TypeError(S+" must be a string, a Buffer, a typed array or a DataView")}},9656:Qe=>{"use strict";Qe.exports=typeof process>"u"||!process.version||0===process.version.indexOf("v0.")||0===process.version.indexOf("v1.")&&0!==process.version.indexOf("v1.8.")?{nextTick:function te(g,e,t,w){if("function"!=typeof g)throw new TypeError('"callback" argument must be a function');var l,x,S=arguments.length;switch(S){case 0:case 1:return process.nextTick(g);case 2:return process.nextTick(function(){g.call(null,e)});case 3:return process.nextTick(function(){g.call(null,e,t)});case 4:return process.nextTick(function(){g.call(null,e,t,w)});default:for(l=new Array(S-1),x=0;x{te.publicEncrypt=g(7267),te.privateDecrypt=g(8613),te.privateEncrypt=function(t,w){return te.publicEncrypt(t,w,!0)},te.publicDecrypt=function(t,w){return te.privateDecrypt(t,w,!0)}},715:(Qe,te,g)=>{var e=g(7211),t=g(7054).Buffer;function w(S){var l=t.allocUnsafe(4);return l.writeUInt32BE(S,0),l}Qe.exports=function(S,l){for(var I,x=t.alloc(0),f=0;x.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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 z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.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&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(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 c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},8613:(Qe,te,g)=>{var e=g(5667),t=g(715),w=g(7196),S=g(6508),l=g(4105),x=g(7211),f=g(568),I=g(7054).Buffer;Qe.exports=function(R,z,W){var $;$=R.padding?R.padding:W?1:4;var J,j=e(R),Q=j.modulus.byteLength();if(z.length>Q||new S(z).cmp(j.modulus)>=0)throw new Error("decryption error");J=W?f(new S(z),j):l(z,j);var ee=I.alloc(Q-J.length);if(J=I.concat([ee,J],Q),4===$)return function d(F,R){var z=F.modulus.byteLength(),W=x("sha1").update(I.alloc(0)).digest(),$=W.length;if(0!==R[0])throw new Error("decryption error");var j=R.slice(1,$+1),Q=R.slice($+1),J=w(j,t(Q,$)),ee=w(Q,t(J,z-$-1));if(function y(F,R){F=I.from(F),R=I.from(R);var z=0,W=F.length;F.length!==R.length&&(z++,W=Math.min(F.length,R.length));for(var $=-1;++$=R.length){j++;break}var Q=R.slice(2,$-1);if(("0002"!==W.toString("hex")&&!z||"0001"!==W.toString("hex")&&z)&&j++,Q.length<8&&j++,j)throw new Error("decryption error");return R.slice($)}(0,J,W);if(3===$)return J;throw new Error("unknown padding")}},7267:(Qe,te,g)=>{var e=g(5667),t=g(3342),w=g(7211),S=g(715),l=g(7196),x=g(6508),f=g(568),I=g(4105),d=g(7054).Buffer;Qe.exports=function(z,W,$){var j;j=z.padding?z.padding:$?1:4;var J,Q=e(z);if(4===j)J=function T(R,z){var W=R.modulus.byteLength(),$=z.length,j=w("sha1").update(d.alloc(0)).digest(),Q=j.length,J=2*Q;if($>W-J-2)throw new Error("message too long");var ee=d.alloc(W-$-J-2),ie=W-Q-1,ge=t(Q),ae=l(d.concat([j,ee,d.alloc(1,1),z],ie),S(ge,ie)),Me=l(ge,S(ae,Q));return new x(d.concat([d.alloc(1),Me,ae],W))}(Q,W);else if(1===j)J=function y(R,z,W){var Q,$=z.length,j=R.modulus.byteLength();if($>j-11)throw new Error("message too long");return Q=W?d.alloc(j-$-3,255):function F(R){for(var Q,z=d.allocUnsafe(R),W=0,$=t(2*R),j=0;W=0)throw new Error("data too long for modulus")}return $?I(J,Q):f(J,Q)}},568:(Qe,te,g)=>{var e=g(6508),t=g(7054).Buffer;Qe.exports=function w(S,l){return t.from(S.toRed(e.mont(l.modulus)).redPow(new e(l.publicExponent)).fromRed().toArray())}},7196:Qe=>{Qe.exports=function(g,e){for(var t=g.length,w=-1;++w{const e=g(2836),t=g(9460),w=g(7030),S=g(6511);function l(x,f,I,d,T){const y=[].slice.call(arguments,1),F=y.length,R="function"==typeof y[F-1];if(!R&&!e())throw new Error("Callback required as last argument");if(!R){if(F<1)throw new Error("Too few arguments provided");return 1===F?(I=f,f=d=void 0):2===F&&!f.getContext&&(d=I,I=f,f=void 0),new Promise(function(z,W){try{const $=t.create(I,d);z(x($,f,d))}catch($){W($)}})}if(F<2)throw new Error("Too few arguments provided");2===F?(T=I,I=f,f=d=void 0):3===F&&(f.getContext&&typeof T>"u"?(T=d,d=void 0):(T=d,d=I,I=f,f=void 0));try{const z=t.create(I,d);T(null,x(z,f,d))}catch(z){T(z)}}te.create=t.create,te.toCanvas=l.bind(null,w.render),te.toDataURL=l.bind(null,w.renderToDataURL),te.toString=l.bind(null,function(x,f,I){return S.render(x,I)})},2836:Qe=>{Qe.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6214:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getRowColCoords=function(w){if(1===w)return[];const S=Math.floor(w/7)+2,l=e(w),x=145===l?26:2*Math.ceil((l-13)/(2*S-2)),f=[l-7];for(let I=1;I{const e=g(1677),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 w(S){this.mode=e.ALPHANUMERIC,this.data=S}w.getBitsLength=function(l){return 11*Math.floor(l/2)+l%2*6},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(l){let x;for(x=0;x+2<=this.data.length;x+=2){let f=45*t.indexOf(this.data[x]);f+=t.indexOf(this.data[x+1]),l.put(f,11)}this.data.length%2&&l.put(t.indexOf(this.data[x]),6)},Qe.exports=w},4662:Qe=>{function te(){this.buffer=[],this.length=0}te.prototype={get:function(g){const e=Math.floor(g/8);return 1==(this.buffer[e]>>>7-g%8&1)},put:function(g,e){for(let t=0;t>>e-t-1&1))},getLengthInBits:function(){return this.length},putBit:function(g){const e=Math.floor(this.length/8);this.buffer.length<=e&&this.buffer.push(0),g&&(this.buffer[e]|=128>>>this.length%8),this.length++}},Qe.exports=te},8322:Qe=>{function te(g){if(!g||g<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=g,this.data=new Uint8Array(g*g),this.reservedBit=new Uint8Array(g*g)}te.prototype.set=function(g,e,t,w){const S=g*this.size+e;this.data[S]=t,w&&(this.reservedBit[S]=!0)},te.prototype.get=function(g,e){return this.data[g*this.size+e]},te.prototype.xor=function(g,e,t){this.data[g*this.size+e]^=t},te.prototype.isReserved=function(g,e){return this.reservedBit[g*this.size+e]},Qe.exports=te},4969:(Qe,te,g)=>{const e=g(3174),t=g(1677);function w(S){this.mode=t.BYTE,"string"==typeof S&&(S=e(S)),this.data=new Uint8Array(S)}w.getBitsLength=function(l){return 8*l},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(S){for(let l=0,x=this.data.length;l{const e=g(7424),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],w=[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];te.getBlocksCount=function(l,x){switch(x){case e.L:return t[4*(l-1)+0];case e.M:return t[4*(l-1)+1];case e.Q:return t[4*(l-1)+2];case e.H:return t[4*(l-1)+3];default:return}},te.getTotalCodewordsCount=function(l,x){switch(x){case e.L:return w[4*(l-1)+0];case e.M:return w[4*(l-1)+1];case e.Q:return w[4*(l-1)+2];case e.H:return w[4*(l-1)+3];default:return}}},7424:(Qe,te)=>{te.L={bit:1},te.M={bit:0},te.Q={bit:3},te.H={bit:2},te.isValid=function(t){return t&&typeof t.bit<"u"&&t.bit>=0&&t.bit<4},te.from=function(t,w){if(te.isValid(t))return t;try{return function g(e){if("string"!=typeof e)throw new Error("Param is not a string");switch(e.toLowerCase()){case"l":case"low":return te.L;case"m":case"medium":return te.M;case"q":case"quartile":return te.Q;case"h":case"high":return te.H;default:throw new Error("Unknown EC Level: "+e)}}(t)}catch{return w}}},6269:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getPositions=function(S){const l=e(S);return[[0,0],[l-7,0],[0,l-7]]}},6254:(Qe,te,g)=>{const e=g(9089),S=e.getBCHDigit(1335);te.getEncodedBits=function(x,f){const I=x.bit<<3|f;let d=I<<10;for(;e.getBCHDigit(d)-S>=0;)d^=1335<{const g=new Uint8Array(512),e=new Uint8Array(256);(function(){let w=1;for(let S=0;S<255;S++)g[S]=w,e[w]=S,w<<=1,256&w&&(w^=285);for(let S=255;S<512;S++)g[S]=g[S-255]})(),te.log=function(w){if(w<1)throw new Error("log("+w+")");return e[w]},te.exp=function(w){return g[w]},te.mul=function(w,S){return 0===w||0===S?0:g[e[w]+e[S]]}},3264:(Qe,te,g)=>{const e=g(1677),t=g(9089);function w(S){this.mode=e.KANJI,this.data=S}w.getBitsLength=function(l){return 13*l},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(S){let l;for(l=0;l=33088&&x<=40956)x-=33088;else{if(!(x>=57408&&x<=60351))throw new Error("Invalid SJIS character: "+this.data[l]+"\nMake sure your charset is UTF-8");x-=49472}x=192*(x>>>8&255)+(255&x),S.put(x,13)}},Qe.exports=w},3361:(Qe,te)=>{te.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function e(t,w,S){switch(t){case te.Patterns.PATTERN000:return(w+S)%2==0;case te.Patterns.PATTERN001:return w%2==0;case te.Patterns.PATTERN010:return S%3==0;case te.Patterns.PATTERN011:return(w+S)%3==0;case te.Patterns.PATTERN100:return(Math.floor(w/2)+Math.floor(S/3))%2==0;case te.Patterns.PATTERN101:return w*S%2+w*S%3==0;case te.Patterns.PATTERN110:return(w*S%2+w*S%3)%2==0;case te.Patterns.PATTERN111:return(w*S%3+(w+S)%2)%2==0;default:throw new Error("bad maskPattern:"+t)}}te.isValid=function(w){return null!=w&&""!==w&&!isNaN(w)&&w>=0&&w<=7},te.from=function(w){return te.isValid(w)?parseInt(w,10):void 0},te.getPenaltyN1=function(w){const S=w.size;let l=0,x=0,f=0,I=null,d=null;for(let T=0;T=5&&(l+=x-5+3),I=F,x=1),F=w.get(y,T),F===d?f++:(f>=5&&(l+=f-5+3),d=F,f=1)}x>=5&&(l+=x-5+3),f>=5&&(l+=f-5+3)}return l},te.getPenaltyN2=function(w){const S=w.size;let l=0;for(let x=0;x=10&&(1488===x||93===x)&&l++,f=f<<1&2047|w.get(d,I),d>=10&&(1488===f||93===f)&&l++}return 40*l},te.getPenaltyN4=function(w){let S=0;const l=w.data.length;for(let f=0;f{const e=g(377),t=g(9359);te.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},te.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},te.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},te.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},te.MIXED={bit:-1},te.getCharCountIndicator=function(l,x){if(!l.ccBits)throw new Error("Invalid mode: "+l);if(!e.isValid(x))throw new Error("Invalid version: "+x);return x>=1&&x<10?l.ccBits[0]:x<27?l.ccBits[1]:l.ccBits[2]},te.getBestModeForData=function(l){return t.testNumeric(l)?te.NUMERIC:t.testAlphanumeric(l)?te.ALPHANUMERIC:t.testKanji(l)?te.KANJI:te.BYTE},te.toString=function(l){if(l&&l.id)return l.id;throw new Error("Invalid mode")},te.isValid=function(l){return l&&l.bit&&l.ccBits},te.from=function(l,x){if(te.isValid(l))return l;try{return function w(S){if("string"!=typeof S)throw new Error("Param is not a string");switch(S.toLowerCase()){case"numeric":return te.NUMERIC;case"alphanumeric":return te.ALPHANUMERIC;case"kanji":return te.KANJI;case"byte":return te.BYTE;default:throw new Error("Unknown mode: "+S)}}(l)}catch{return x}}},6628:(Qe,te,g)=>{const e=g(1677);function t(w){this.mode=e.NUMERIC,this.data=w.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 l,x,f;for(l=0;l+3<=this.data.length;l+=3)x=this.data.substr(l,3),f=parseInt(x,10),S.put(f,10);const I=this.data.length-l;I>0&&(x=this.data.substr(l),f=parseInt(x,10),S.put(f,3*I+1))},Qe.exports=t},1744:(Qe,te,g)=>{const e=g(6686);te.mul=function(w,S){const l=new Uint8Array(w.length+S.length-1);for(let x=0;x=0;){const x=l[0];for(let I=0;I{const e=g(9089),t=g(7424),w=g(4662),S=g(8322),l=g(6214),x=g(6269),f=g(3361),I=g(3677),d=g(6289),T=g(1252),y=g(6254),F=g(1677),R=g(2868);function Q(ae,Me,Te){const de=ae.size,D=y.getEncodedBits(Me,Te);let n,c;for(n=0;n<15;n++)c=1==(D>>n&1),ae.set(n<6?n:n<8?n+1:de-15+n,8,c,!0),ae.set(8,n<8?de-n-1:n<9?15-n-1+1:15-n-1,c,!0);ae.set(de-8,8,1,!0)}function ge(ae,Me,Te,de){let D;if(Array.isArray(ae))D=R.fromArray(ae);else{if("string"!=typeof ae)throw new Error("Invalid data");{let C=Me;if(!C){const k=R.rawSplit(ae);C=T.getBestVersionForData(k,Te)}D=R.fromString(ae,C||40)}}const n=T.getBestVersionForData(D,Te);if(!n)throw new Error("The amount of data is too big to be stored in a QR Code");if(Me){if(Me=0&&m<=6&&(0===h||6===h)||h>=0&&h<=6&&(0===m||6===m)||m>=2&&m<=4&&h>=2&&h<=4,!0)}}(h,Me),function W(ae){const Me=ae.size;for(let Te=8;Te=7&&function j(ae,Me){const Te=ae.size,de=T.getEncodedBits(Me);let D,n,c;for(let m=0;m<18;m++)D=Math.floor(m/3),n=m%3+Te-8-3,c=1==(de>>m&1),ae.set(D,n,c,!0),ae.set(n,D,c,!0)}(h,Me),function J(ae,Me){const Te=ae.size;let de=-1,D=Te-1,n=7,c=0;for(let m=Te-1;m>0;m-=2)for(6===m&&m--;;){for(let h=0;h<2;h++)if(!ae.isReserved(D,m-h)){let C=!1;c>>n&1)),ae.set(D,m-h,C),n--,-1===n&&(c++,n=7)}if(D+=de,D<0||Te<=D){D-=de,de=-de;break}}}(h,c),isNaN(de)&&(de=f.getBestMask(h,Q.bind(null,h,Te))),f.applyMask(de,h),Q(h,Te,de),{modules:h,version:Me,errorCorrectionLevel:Te,maskPattern:de,segments:D}}te.create=function(Me,Te){if(typeof Me>"u"||""===Me)throw new Error("No input text");let D,n,de=t.M;return typeof Te<"u"&&(de=t.from(Te.errorCorrectionLevel,t.M),D=T.from(Te.version),n=f.from(Te.maskPattern),Te.toSJISFunc&&e.setToSJISFunction(Te.toSJISFunc)),ge(Me,D,de,n)}},6289:(Qe,te,g)=>{const e=g(1744);function t(w){this.genPoly=void 0,this.degree=w,this.degree&&this.initialize(this.degree)}t.prototype.initialize=function(S){this.degree=S,this.genPoly=e.generateECPolynomial(this.degree)},t.prototype.encode=function(S){if(!this.genPoly)throw new Error("Encoder not initialized");const l=new Uint8Array(S.length+this.degree);l.set(S);const x=e.mod(l,this.genPoly),f=this.degree-x.length;if(f>0){const I=new Uint8Array(this.degree);return I.set(x,f),I}return x},Qe.exports=t},9359:(Qe,te)=>{const g="[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 w="(?:(?![A-Z0-9 $%*+\\-./:]|"+t+")(?:.|[\r\n]))+";te.KANJI=new RegExp(t,"g"),te.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),te.BYTE=new RegExp(w,"g"),te.NUMERIC=new RegExp(g,"g"),te.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const S=new RegExp("^"+t+"$"),l=new RegExp("^"+g+"$"),x=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");te.testKanji=function(I){return S.test(I)},te.testNumeric=function(I){return l.test(I)},te.testAlphanumeric=function(I){return x.test(I)}},2868:(Qe,te,g)=>{const e=g(1677),t=g(6628),w=g(1018),S=g(4969),l=g(3264),x=g(9359),f=g(9089),I=g(243);function d(j){return unescape(encodeURIComponent(j)).length}function T(j,Q,J){const ee=[];let ie;for(;null!==(ie=j.exec(J));)ee.push({data:ie[0],index:ie.index,mode:Q,length:ie[0].length});return ee}function y(j){const Q=T(x.NUMERIC,e.NUMERIC,j),J=T(x.ALPHANUMERIC,e.ALPHANUMERIC,j);let ee,ie;return f.isKanjiModeEnabled()?(ee=T(x.BYTE,e.BYTE,j),ie=T(x.KANJI,e.KANJI,j)):(ee=T(x.BYTE_KANJI,e.BYTE,j),ie=[]),Q.concat(J,ee,ie).sort(function(ae,Me){return ae.index-Me.index}).map(function(ae){return{data:ae.data,mode:ae.mode,length:ae.length}})}function F(j,Q){switch(Q){case e.NUMERIC:return t.getBitsLength(j);case e.ALPHANUMERIC:return w.getBitsLength(j);case e.KANJI:return l.getBitsLength(j);case e.BYTE:return S.getBitsLength(j)}}function $(j,Q){let J;const ee=e.getBestModeForData(j);if(J=e.from(Q,ee),J!==e.BYTE&&J.bit=0?Q[Q.length-1]:null;return ee&&ee.mode===J.mode?(Q[Q.length-1].data+=J.data,Q):(Q.push(J),Q)},[])}(Me))},te.rawSplit=function(Q){return te.fromArray(y(Q,f.isKanjiModeEnabled()))}},9089:(Qe,te)=>{let g;const e=[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];te.getSymbolSize=function(w){if(!w)throw new Error('"version" cannot be null or undefined');if(w<1||w>40)throw new Error('"version" should be in range from 1 to 40');return 4*w+17},te.getSymbolTotalCodewords=function(w){return e[w]},te.getBCHDigit=function(t){let w=0;for(;0!==t;)w++,t>>>=1;return w},te.setToSJISFunction=function(w){if("function"!=typeof w)throw new Error('"toSJISFunc" is not a valid function.');g=w},te.isKanjiModeEnabled=function(){return typeof g<"u"},te.toSJIS=function(w){return g(w)}},377:(Qe,te)=>{te.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}},1252:(Qe,te,g)=>{const e=g(9089),t=g(3677),w=g(7424),S=g(1677),l=g(377),f=e.getBCHDigit(7973);function d(F,R){return S.getCharCountIndicator(F,R)+4}function T(F,R){let z=0;return F.forEach(function(W){const $=d(W.mode,R);z+=$+W.getBitsLength()}),z}te.from=function(R,z){return l.isValid(R)?parseInt(R,10):z},te.getCapacity=function(R,z,W){if(!l.isValid(R))throw new Error("Invalid QR Code version");typeof W>"u"&&(W=S.BYTE);const Q=8*(e.getSymbolTotalCodewords(R)-t.getTotalCodewordsCount(R,z));if(W===S.MIXED)return Q;const J=Q-d(W,R);switch(W){case S.NUMERIC:return Math.floor(J/10*3);case S.ALPHANUMERIC:return Math.floor(J/11*2);case S.KANJI:return Math.floor(J/13);default:return Math.floor(J/8)}},te.getBestVersionForData=function(R,z){let W;const $=w.from(z,w.M);if(Array.isArray(R)){if(R.length>1)return function y(F,R){for(let z=1;z<=40;z++)if(T(F,z)<=te.getCapacity(z,R,S.MIXED))return z}(R,$);if(0===R.length)return 1;W=R[0]}else W=R;return function I(F,R,z){for(let W=1;W<=40;W++)if(R<=te.getCapacity(W,z,F))return W}(W.mode,W.getLength(),$)},te.getEncodedBits=function(R){if(!l.isValid(R)||R<7)throw new Error("Invalid QR Code version");let z=R<<12;for(;e.getBCHDigit(z)-f>=0;)z^=7973<{const e=g(7077);te.render=function(l,x,f){let I=f,d=x;typeof I>"u"&&(!x||!x.getContext)&&(I=x,x=void 0),x||(d=function w(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),I=e.getOptions(I);const T=e.getImageWidth(l.modules.size,I),y=d.getContext("2d"),F=y.createImageData(T,T);return e.qrToImageData(F.data,l,I),function t(S,l,x){S.clearRect(0,0,l.width,l.height),l.style||(l.style={}),l.height=x,l.width=x,l.style.height=x+"px",l.style.width=x+"px"}(y,d,T),y.putImageData(F,0,0),d},te.renderToDataURL=function(l,x,f){let I=f;return typeof I>"u"&&(!x||!x.getContext)&&(I=x,x=void 0),I||(I={}),te.render(l,x,I).toDataURL(I.type||"image/png",(I.rendererOpts||{}).quality)}},6511:(Qe,te,g)=>{const e=g(7077);function t(l,x){const f=l.a/255,I=x+'="'+l.hex+'"';return f<1?I+" "+x+'-opacity="'+f.toFixed(2).slice(1)+'"':I}function w(l,x,f){let I=l+x;return typeof f<"u"&&(I+=" "+f),I}te.render=function(x,f,I){const d=e.getOptions(f),T=x.modules.size,y=x.modules.data,F=T+2*d.margin,R=d.color.light.a?"':"",z="0&&R>0&&l[F-1]||(I+=T?w("M",R+f,.5+z+f):w("m",d,0),d=0,T=!1),R+1',j=''+R+z+"\n";return"function"==typeof I&&I(null,j),j}},7077:(Qe,te)=>{function g(e){if("number"==typeof e&&(e=e.toString()),"string"!=typeof e)throw new Error("Color should be defined as hex string");let t=e.slice().replace("#","").split("");if(t.length<3||5===t.length||t.length>8)throw new Error("Invalid hex color: "+e);(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 w=parseInt(t.join(""),16);return{r:w>>24&255,g:w>>16&255,b:w>>8&255,a:255&w,hex:"#"+t.slice(0,6).join("")}}te.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:g(t.color.dark||"#000000ff"),light:g(t.color.light||"#ffffffff")},type:t.type,rendererOpts:t.rendererOpts||{}}},te.getScale=function(t,w){return w.width&&w.width>=t+2*w.margin?w.width/(t+2*w.margin):w.scale},te.getImageWidth=function(t,w){const S=te.getScale(t,w);return Math.floor((t+2*w.margin)*S)},te.qrToImageData=function(t,w,S){const l=w.modules.size,x=w.modules.data,f=te.getScale(l,S),I=Math.floor((l+2*S.margin)*f),d=S.margin*f,T=[S.color.light,S.color.dark];for(let y=0;y=d&&F>=d&&y{"use strict";var e=65536,S=g(7054).Buffer,l=global.crypto||global.msCrypto;Qe.exports=l&&l.getRandomValues?function x(f,I){if(f>4294967295)throw new RangeError("requested too many random bytes");var d=S.allocUnsafe(f);if(f>0)if(f>e)for(var T=0;T{"use strict";function e(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var t=g(7054),w=g(3342),S=t.Buffer,l=t.kMaxLength,x=global.crypto||global.msCrypto,f=Math.pow(2,32)-1;function I(R,z){if("number"!=typeof R||R!=R)throw new TypeError("offset must be a number");if(R>f||R<0)throw new TypeError("offset must be a uint32");if(R>l||R>z)throw new RangeError("offset out of range")}function d(R,z,W){if("number"!=typeof R||R!=R)throw new TypeError("size must be a number");if(R>f||R<0)throw new TypeError("size must be a uint32");if(R+z>W||R>l)throw new RangeError("buffer too small")}function y(R,z,W,$){if(process.browser){var Q=new Uint8Array(R.buffer,z,W);return x.getRandomValues(Q),$?void process.nextTick(function(){$(null,R)}):R}if(!$)return w(W).copy(R,z),R;w(W,function(ee,ie){if(ee)return $(ee);ie.copy(R,z),$(null,R)})}x&&x.getRandomValues||!process.browser?(te.randomFill=function T(R,z,W,$){if(!(S.isBuffer(R)||R instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof z)$=z,z=0,W=R.length;else if("function"==typeof W)$=W,W=R.length-z;else if("function"!=typeof $)throw new TypeError('"cb" argument must be a function');return I(z,R.length),d(W,z,R.length),y(R,z,W,$)},te.randomFillSync=function F(R,z,W){if(typeof z>"u"&&(z=0),!(S.isBuffer(R)||R instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return I(z,R.length),void 0===W&&(W=R.length-z),d(W,z,R.length),y(R,z,W)}):(te.randomFill=e,te.randomFillSync=e)},4075:(Qe,te,g)=>{"use strict";var e=g(9656),t=Object.keys||function(F){var R=[];for(var z in F)R.push(z);return R};Qe.exports=d;var w=Object.create(g(7637));w.inherits=g(1993);var S=g(9609),l=g(7849);w.inherits(d,S);for(var x=t(l.prototype),f=0;f{"use strict";Qe.exports=w;var e=g(2909),t=Object.create(g(7637));function w(S){if(!(this instanceof w))return new w(S);e.call(this,S)}t.inherits=g(1993),t.inherits(w,e),w.prototype._transform=function(S,l,x){x(null,S)}},9609:(Qe,te,g)=>{"use strict";var e=g(9656);Qe.exports=ee;var w,t=g(53);ee.ReadableState=J,g(4356);var l=function(se,X){return se.listeners(X).length},x=g(8342),f=g(2655).Buffer,I=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},y=Object.create(g(7637));y.inherits=g(1993);var F=g(9838),R=void 0;R=F&&F.debuglog?F.debuglog("stream"):function(){};var $,z=g(7809),W=g(1509);y.inherits(ee,x);var j=["error","close","destroy","pause","resume"];function J(se,X){var me=X instanceof(w=w||g(4075));this.objectMode=!!(se=se||{}).objectMode,me&&(this.objectMode=this.objectMode||!!se.readableObjectMode);var ce=se.highWaterMark,fe=se.readableHighWaterMark;this.highWaterMark=ce||0===ce?ce:me&&(fe||0===fe)?fe:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new z,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=se.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,se.encoding&&($||($=g(8454).I),this.decoder=new $(se.encoding),this.encoding=se.encoding)}function ee(se){if(w=w||g(4075),!(this instanceof ee))return new ee(se);this._readableState=new J(se,this),this.readable=!0,se&&("function"==typeof se.read&&(this._read=se.read),"function"==typeof se.destroy&&(this._destroy=se.destroy)),x.call(this)}function ie(se,X,me,ce,fe){var mt,ke=se._readableState;return null===X?(ke.reading=!1,function n(se,X){if(!X.ended){if(X.decoder){var me=X.decoder.end();me&&me.length&&(X.buffer.push(me),X.length+=X.objectMode?1:me.length)}X.ended=!0,c(se)}}(se,ke)):(fe||(mt=function ae(se,X){var me;return!function T(se){return f.isBuffer(se)||se instanceof I}(X)&&"string"!=typeof X&&void 0!==X&&!se.objectMode&&(me=new TypeError("Invalid non-string/buffer chunk")),me}(ke,X)),mt?se.emit("error",mt):ke.objectMode||X&&X.length>0?("string"!=typeof X&&!ke.objectMode&&Object.getPrototypeOf(X)!==f.prototype&&(X=function d(se){return f.from(se)}(X)),ce?ke.endEmitted?se.emit("error",new Error("stream.unshift() after end event")):ge(se,ke,X,!0):ke.ended?se.emit("error",new Error("stream.push() after EOF")):(ke.reading=!1,ke.decoder&&!me?(X=ke.decoder.write(X),ke.objectMode||0!==X.length?ge(se,ke,X,!1):h(se,ke)):ge(se,ke,X,!1))):ce||(ke.reading=!1)),function Me(se){return!se.ended&&(se.needReadable||se.lengthX.highWaterMark&&(X.highWaterMark=function de(se){return se>=8388608?se=8388608:(se--,se|=se>>>1,se|=se>>>2,se|=se>>>4,se|=se>>>8,se|=se>>>16,se++),se}(se)),se<=X.length?se:X.ended?X.length:(X.needReadable=!0,0))}function c(se){var X=se._readableState;X.needReadable=!1,X.emittedReadable||(R("emitReadable",X.flowing),X.emittedReadable=!0,X.sync?e.nextTick(m,se):m(se))}function m(se){R("emit readable"),se.emit("readable"),v(se)}function h(se,X){X.readingMore||(X.readingMore=!0,e.nextTick(C,se,X))}function C(se,X){for(var me=X.length;!X.reading&&!X.flowing&&!X.ended&&X.length=X.length?(me=X.decoder?X.buffer.join(""):1===X.buffer.length?X.buffer.head.data:X.buffer.concat(X.length),X.buffer.clear()):me=function N(se,X,me){var ce;return seke.length?ke.length:se;if(fe+=mt===ke.length?ke:ke.slice(0,se),0==(se-=mt)){mt===ke.length?(++ce,X.head=me.next?me.next:X.tail=null):(X.head=me,me.data=ke.slice(mt));break}++ce}return X.length-=ce,fe}(se,X):function Ee(se,X){var me=f.allocUnsafe(se),ce=X.head,fe=1;for(ce.data.copy(me),se-=ce.data.length;ce=ce.next;){var ke=ce.data,mt=se>ke.length?ke.length:se;if(ke.copy(me,me.length-se,0,mt),0==(se-=mt)){mt===ke.length?(++fe,X.head=ce.next?ce.next:X.tail=null):(X.head=ce,ce.data=ke.slice(mt));break}++fe}return X.length-=fe,me}(se,X),ce}(se,X.buffer,X.decoder),me);var me}function ze(se){var X=se._readableState;if(X.length>0)throw new Error('"endReadable()" called on non-empty stream');X.endEmitted||(X.ended=!0,e.nextTick(qe,X,se))}function qe(se,X){!se.endEmitted&&0===se.length&&(se.endEmitted=!0,X.readable=!1,X.emit("end"))}function Ke(se,X){for(var me=0,ce=se.length;me=X.highWaterMark||X.ended))return R("read: emitReadable",X.length,X.ended),0===X.length&&X.ended?ze(this):c(this),null;if(0===(se=D(se,X))&&X.ended)return 0===X.length&&ze(this),null;var fe,ce=X.needReadable;return R("need readable",ce),(0===X.length||X.length-se0?V(se,X):null)?(X.needReadable=!0,se=0):X.length-=se,0===X.length&&(X.ended||(X.needReadable=!0),me!==se&&X.ended&&ze(this)),null!==fe&&this.emit("data",fe),fe},ee.prototype._read=function(se){this.emit("error",new Error("_read() is not implemented"))},ee.prototype.pipe=function(se,X){var me=this,ce=this._readableState;switch(ce.pipesCount){case 0:ce.pipes=se;break;case 1:ce.pipes=[ce.pipes,se];break;default:ce.pipes.push(se)}ce.pipesCount+=1,R("pipe count=%d opts=%j",ce.pipesCount,X);var ke=X&&!1===X.end||se===process.stdout||se===process.stderr?ue:_e;function _e(){R("onend"),se.end()}ce.endEmitted?e.nextTick(ke):me.once("end",ke),se.on("unpipe",function mt(Ie,He){R("onunpipe"),Ie===me&&He&&!1===He.hasUnpiped&&(He.hasUnpiped=!0,function Ze(){R("cleanup"),se.removeListener("close",Xt),se.removeListener("finish",ye),se.removeListener("drain",be),se.removeListener("error",pt),se.removeListener("unpipe",mt),me.removeListener("end",_e),me.removeListener("end",ue),me.removeListener("data",at),pe=!0,ce.awaitDrain&&(!se._writableState||se._writableState.needDrain)&&be()}())});var be=function k(se){return function(){var X=se._readableState;R("pipeOnDrain",X.awaitDrain),X.awaitDrain&&X.awaitDrain--,0===X.awaitDrain&&l(se,"data")&&(X.flowing=!0,v(se))}}(me);se.on("drain",be);var pe=!1,_t=!1;function at(Ie){R("ondata"),_t=!1,!1===se.write(Ie)&&!_t&&((1===ce.pipesCount&&ce.pipes===se||ce.pipesCount>1&&-1!==Ke(ce.pipes,se))&&!pe&&(R("false write response, pause",ce.awaitDrain),ce.awaitDrain++,_t=!0),me.pause())}function pt(Ie){R("onerror",Ie),ue(),se.removeListener("error",pt),0===l(se,"error")&&se.emit("error",Ie)}function Xt(){se.removeListener("finish",ye),ue()}function ye(){R("onfinish"),se.removeListener("close",Xt),ue()}function ue(){R("unpipe"),me.unpipe(se)}return me.on("data",at),function Q(se,X,me){if("function"==typeof se.prependListener)return se.prependListener(X,me);se._events&&se._events[X]?t(se._events[X])?se._events[X].unshift(me):se._events[X]=[me,se._events[X]]:se.on(X,me)}(se,"error",pt),se.once("close",Xt),se.once("finish",ye),se.emit("pipe",me),ce.flowing||(R("pipe resume"),me.resume()),se},ee.prototype.unpipe=function(se){var X=this._readableState,me={hasUnpiped:!1};if(0===X.pipesCount)return this;if(1===X.pipesCount)return se&&se!==X.pipes||(se||(se=X.pipes),X.pipes=null,X.pipesCount=0,X.flowing=!1,se&&se.emit("unpipe",this,me)),this;if(!se){var ce=X.pipes,fe=X.pipesCount;X.pipes=null,X.pipesCount=0,X.flowing=!1;for(var ke=0;ke{"use strict";Qe.exports=S;var e=g(4075),t=Object.create(g(7637));function w(f,I){var d=this._transformState;d.transforming=!1;var T=d.writecb;if(!T)return this.emit("error",new Error("write callback called multiple times"));d.writechunk=null,d.writecb=null,null!=I&&this.push(I),T(f);var y=this._readableState;y.reading=!1,(y.needReadable||y.length{"use strict";var e=g(9656);function w(_){var r=this;this.next=null,this.entry=null,this.finish=function(){!function L(_,r,v){var V=_.entry;for(_.entry=null;V;){var N=V.callback;r.pendingcb--,N(v),V=V.next}r.corkedRequestsFree.next=_}(r,_)}}Qe.exports=j;var l,S=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:e.nextTick;j.WritableState=W;var x=Object.create(g(7637));x.inherits=g(1993);var $,f={deprecate:g(3398)},I=g(8342),d=g(2655).Buffer,T=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},R=g(1509);function z(){}function W(_,r){l=l||g(4075);var v=r instanceof l;this.objectMode=!!(_=_||{}).objectMode,v&&(this.objectMode=this.objectMode||!!_.writableObjectMode);var V=_.highWaterMark,N=_.writableHighWaterMark;this.highWaterMark=V||0===V?V:v&&(N||0===N)?N: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===_.decodeStrings),this.defaultEncoding=_.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ze){!function Te(_,r){var v=_._writableState,V=v.sync,N=v.writecb;if(function Me(_){_.writing=!1,_.writecb=null,_.length-=_.writelen,_.writelen=0}(v),r)!function ae(_,r,v,V,N){--r.pendingcb,v?(e.nextTick(N,V),e.nextTick(C,_,r),_._writableState.errorEmitted=!0,_.emit("error",V)):(N(V),_._writableState.errorEmitted=!0,_.emit("error",V),C(_,r))}(_,v,V,r,N);else{var ne=c(v);!ne&&!v.corked&&!v.bufferProcessing&&v.bufferedRequest&&n(_,v),V?S(de,_,v,ne,N):de(_,v,ne,N)}}(r,ze)},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 w(this)}function j(_){if(l=l||g(4075),!($.call(j,this)||this instanceof l))return new j(_);this._writableState=new W(_,this),this.writable=!0,_&&("function"==typeof _.write&&(this._write=_.write),"function"==typeof _.writev&&(this._writev=_.writev),"function"==typeof _.destroy&&(this._destroy=_.destroy),"function"==typeof _.final&&(this._final=_.final)),I.call(this)}function ge(_,r,v,V,N,ne,Ee){r.writelen=V,r.writecb=Ee,r.writing=!0,r.sync=!0,v?_._writev(N,r.onwrite):_._write(N,ne,r.onwrite),r.sync=!1}function de(_,r,v,V){v||function D(_,r){0===r.length&&r.needDrain&&(r.needDrain=!1,_.emit("drain"))}(_,r),r.pendingcb--,V(),C(_,r)}function n(_,r){r.bufferProcessing=!0;var v=r.bufferedRequest;if(_._writev&&v&&v.next){var N=new Array(r.bufferedRequestCount),ne=r.corkedRequestsFree;ne.entry=v;for(var Ee=0,ze=!0;v;)N[Ee]=v,v.isBuf||(ze=!1),v=v.next,Ee+=1;N.allBuffers=ze,ge(_,r,!0,r.length,N,"",ne.finish),r.pendingcb++,r.lastBufferedRequest=null,ne.next?(r.corkedRequestsFree=ne.next,ne.next=null):r.corkedRequestsFree=new w(r),r.bufferedRequestCount=0}else{for(;v;){var qe=v.chunk;if(ge(_,r,!1,r.objectMode?1:qe.length,qe,v.encoding,v.callback),v=v.next,r.bufferedRequestCount--,r.writing)break}null===v&&(r.lastBufferedRequest=null)}r.bufferedRequest=v,r.bufferProcessing=!1}function c(_){return _.ending&&0===_.length&&null===_.bufferedRequest&&!_.finished&&!_.writing}function m(_,r){_._final(function(v){r.pendingcb--,v&&_.emit("error",v),r.prefinished=!0,_.emit("prefinish"),C(_,r)})}function C(_,r){var v=c(r);return v&&(function h(_,r){!r.prefinished&&!r.finalCalled&&("function"==typeof _._final?(r.pendingcb++,r.finalCalled=!0,e.nextTick(m,_,r)):(r.prefinished=!0,_.emit("prefinish")))}(_,r),0===r.pendingcb&&(r.finished=!0,_.emit("finish"))),v}x.inherits(j,I),W.prototype.getBuffer=function(){for(var r=this.bufferedRequest,v=[];r;)v.push(r),r=r.next;return v},function(){try{Object.defineProperty(W.prototype,"buffer",{get:f.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]?($=Function.prototype[Symbol.hasInstance],Object.defineProperty(j,Symbol.hasInstance,{value:function(_){return!!$.call(this,_)||this===j&&_&&_._writableState instanceof W}})):$=function(_){return _ instanceof this},j.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},j.prototype.write=function(_,r,v){var V=this._writableState,N=!1,ne=!V.objectMode&&function F(_){return d.isBuffer(_)||_ instanceof T}(_);return ne&&!d.isBuffer(_)&&(_=function y(_){return d.from(_)}(_)),"function"==typeof r&&(v=r,r=null),ne?r="buffer":r||(r=V.defaultEncoding),"function"!=typeof v&&(v=z),V.ended?function Q(_,r){var v=new Error("write after end");_.emit("error",v),e.nextTick(r,v)}(this,v):(ne||function J(_,r,v,V){var N=!0,ne=!1;return null===v?ne=new TypeError("May not write null values to stream"):"string"!=typeof v&&void 0!==v&&!r.objectMode&&(ne=new TypeError("Invalid non-string/buffer chunk")),ne&&(_.emit("error",ne),e.nextTick(V,ne),N=!1),N}(this,V,_,v))&&(V.pendingcb++,N=function ie(_,r,v,V,N,ne){if(!v){var Ee=function ee(_,r,v){return!_.objectMode&&!1!==_.decodeStrings&&"string"==typeof r&&(r=d.from(r,v)),r}(r,V,N);V!==Ee&&(v=!0,N="buffer",V=Ee)}var ze=r.objectMode?1:V.length;r.length+=ze;var qe=r.length-1))throw new TypeError("Unknown encoding: "+r);return this._writableState.defaultEncoding=r,this},Object.defineProperty(j.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),j.prototype._write=function(_,r,v){v(new Error("_write() is not implemented"))},j.prototype._writev=null,j.prototype.end=function(_,r,v){var V=this._writableState;"function"==typeof _?(v=_,_=null,r=null):"function"==typeof r&&(v=r,r=null),null!=_&&this.write(_,r),V.corked&&(V.corked=1,this.uncork()),V.ending||function k(_,r,v){r.ending=!0,C(_,r),v&&(r.finished?e.nextTick(v):_.once("finish",v)),r.ended=!0,_.writable=!1}(this,V,v)},Object.defineProperty(j.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(_){this._writableState&&(this._writableState.destroyed=_)}}),j.prototype.destroy=R.destroy,j.prototype._undestroy=R.undestroy,j.prototype._destroy=function(_,r){this.end(),r(_)}},7809:(Qe,te,g)=>{"use strict";var t=g(2655).Buffer,w=g(5340);function S(l,x,f){l.copy(x,f)}Qe.exports=function(){function l(){(function e(l,x){if(!(l instanceof x))throw new TypeError("Cannot call a class as a function")})(this,l),this.head=null,this.tail=null,this.length=0}return l.prototype.push=function(f){var I={data:f,next:null};this.length>0?this.tail.next=I:this.head=I,this.tail=I,++this.length},l.prototype.unshift=function(f){var I={data:f,next:this.head};0===this.length&&(this.tail=I),this.head=I,++this.length},l.prototype.shift=function(){if(0!==this.length){var f=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,f}},l.prototype.clear=function(){this.head=this.tail=null,this.length=0},l.prototype.join=function(f){if(0===this.length)return"";for(var I=this.head,d=""+I.data;I=I.next;)d+=f+I.data;return d},l.prototype.concat=function(f){if(0===this.length)return t.alloc(0);for(var I=t.allocUnsafe(f>>>0),d=this.head,T=0;d;)S(d.data,I,T),T+=d.data.length,d=d.next;return I},l}(),w&&w.inspect&&w.inspect.custom&&(Qe.exports.prototype[w.inspect.custom]=function(){var l=w.inspect({length:this.length});return this.constructor.name+" "+l})},1509:(Qe,te,g)=>{"use strict";var e=g(9656);function S(l,x){l.emit("error",x)}Qe.exports={destroy:function t(l,x){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(x?x(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,e.nextTick(S,this,l)):e.nextTick(S,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(T){!x&&T?f._writableState?f._writableState.errorEmitted||(f._writableState.errorEmitted=!0,e.nextTick(S,f,T)):e.nextTick(S,f,T):x&&x(T)}),this)},undestroy:function w(){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)}}},8342:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},2655:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},5942:(Qe,te,g)=>{(te=Qe.exports=g(9609)).Stream=te,te.Readable=te,te.Writable=g(7849),te.Duplex=g(4075),te.Transform=g(2909),te.PassThrough=g(8823)},6021:Qe=>{"use strict";function te(t){return t instanceof Buffer?Buffer.from(t):new t.constructor(t.buffer.slice(),t.byteOffset,t.length)}Qe.exports=function g(t){return(t=t||{}).circles?function e(t){var w=[],S=[];return t.proto?function f(I){if("object"!=typeof I||null===I)return I;if(I instanceof Date)return new Date(I);if(Array.isArray(I))return l(I,f);if(I instanceof Map)return new Map(l(Array.from(I),f));if(I instanceof Set)return new Set(l(Array.from(I),f));var d={};for(var T in w.push(I),S.push(d),I){var y=I[T];if("object"!=typeof y||null===y)d[T]=y;else if(y instanceof Date)d[T]=new Date(y);else if(y instanceof Map)d[T]=new Map(l(Array.from(y),f));else if(y instanceof Set)d[T]=new Set(l(Array.from(y),f));else if(ArrayBuffer.isView(y))d[T]=te(y);else{var F=w.indexOf(y);d[T]=-1!==F?S[F]:f(y)}}return w.pop(),S.pop(),d}:function x(I){if("object"!=typeof I||null===I)return I;if(I instanceof Date)return new Date(I);if(Array.isArray(I))return l(I,x);if(I instanceof Map)return new Map(l(Array.from(I),x));if(I instanceof Set)return new Set(l(Array.from(I),x));var d={};for(var T in w.push(I),S.push(d),I)if(!1!==Object.hasOwnProperty.call(I,T)){var y=I[T];if("object"!=typeof y||null===y)d[T]=y;else if(y instanceof Date)d[T]=new Date(y);else if(y instanceof Map)d[T]=new Map(l(Array.from(y),x));else if(y instanceof Set)d[T]=new Set(l(Array.from(y),x));else if(ArrayBuffer.isView(y))d[T]=te(y);else{var F=w.indexOf(y);d[T]=-1!==F?S[F]:x(y)}}return w.pop(),S.pop(),d};function l(I,d){for(var T=Object.keys(I),y=new Array(T.length),F=0;F{"use strict";var e=g(3838).Buffer,t=g(1993),w=g(3686),S=new Array(16),l=[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],x=[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],f=[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],I=[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],T=[1352829926,1548603684,1836072691,2053994217,0];function y(){w.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function F(Q,J){return Q<>>32-J}function R(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J^ee^ie)+ae+Me|0,Te)+ge|0}function z(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J&ee|~J&ie)+ae+Me|0,Te)+ge|0}function W(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+((J|~ee)^ie)+ae+Me|0,Te)+ge|0}function $(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J&ie|ee&~ie)+ae+Me|0,Te)+ge|0}function j(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J^(ee|~ie))+ae+Me|0,Te)+ge|0}t(y,w),y.prototype._update=function(){for(var Q=S,J=0;J<16;++J)Q[J]=this._block.readInt32LE(4*J);for(var ee=0|this._a,ie=0|this._b,ge=0|this._c,ae=0|this._d,Me=0|this._e,Te=0|this._a,de=0|this._b,D=0|this._c,n=0|this._d,c=0|this._e,m=0;m<80;m+=1){var h,C;m<16?(h=R(ee,ie,ge,ae,Me,Q[l[m]],d[0],f[m]),C=j(Te,de,D,n,c,Q[x[m]],T[0],I[m])):m<32?(h=z(ee,ie,ge,ae,Me,Q[l[m]],d[1],f[m]),C=$(Te,de,D,n,c,Q[x[m]],T[1],I[m])):m<48?(h=W(ee,ie,ge,ae,Me,Q[l[m]],d[2],f[m]),C=W(Te,de,D,n,c,Q[x[m]],T[2],I[m])):m<64?(h=$(ee,ie,ge,ae,Me,Q[l[m]],d[3],f[m]),C=z(Te,de,D,n,c,Q[x[m]],T[3],I[m])):(h=j(ee,ie,ge,ae,Me,Q[l[m]],d[4],f[m]),C=R(Te,de,D,n,c,Q[x[m]],T[4],I[m])),ee=Me,Me=ae,ae=F(ge,10),ge=ie,ie=h,Te=c,c=n,n=F(D,10),D=de,de=C}var k=this._b+ge+n|0;this._b=this._c+ae+c|0,this._c=this._d+Me+Te|0,this._d=this._e+ee+de|0,this._e=this._a+ie+D|0,this._a=k},y.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 Q=e.alloc?e.alloc(20):new e(20);return Q.writeInt32LE(this._a,0),Q.writeInt32LE(this._b,4),Q.writeInt32LE(this._c,8),Q.writeInt32LE(this._d,12),Q.writeInt32LE(this._e,16),Q},Qe.exports=y},4412:(Qe,te,g)=>{"use strict";g.d(te,{t:()=>t});var e=g(1413);class t extends e.B{constructor(S){super(),this._value=S}get value(){return this.getValue()}_subscribe(S){const l=super._subscribe(S);return!l.closed&&S.next(this._value),l}getValue(){const{hasError:S,thrownError:l,_value:x}=this;if(S)throw l;return this._throwIfClosed(),x}next(S){super.next(this._value=S)}}},1985:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>I});var e=g(7707),t=g(8359),w=g(3494),S=g(1203),l=g(1026),x=g(8071),f=g(9786);let I=(()=>{class F{constructor(z){z&&(this._subscribe=z)}lift(z){const W=new F;return W.source=this,W.operator=z,W}subscribe(z,W,$){const j=function y(F){return F&&F instanceof e.vU||function T(F){return F&&(0,x.T)(F.next)&&(0,x.T)(F.error)&&(0,x.T)(F.complete)}(F)&&(0,t.Uv)(F)}(z)?z:new e.Ms(z,W,$);return(0,f.Y)(()=>{const{operator:Q,source:J}=this;j.add(Q?Q.call(j,J):J?this._subscribe(j):this._trySubscribe(j))}),j}_trySubscribe(z){try{return this._subscribe(z)}catch(W){z.error(W)}}forEach(z,W){return new(W=d(W))(($,j)=>{const Q=new e.Ms({next:J=>{try{z(J)}catch(ee){j(ee),Q.unsubscribe()}},error:j,complete:$});this.subscribe(Q)})}_subscribe(z){var W;return null===(W=this.source)||void 0===W?void 0:W.subscribe(z)}[w.s](){return this}pipe(...z){return(0,S.m)(z)(this)}toPromise(z){return new(z=d(z))((W,$)=>{let j;this.subscribe(Q=>j=Q,Q=>$(Q),()=>W(j))})}}return F.create=R=>new F(R),F})();function d(F){var R;return null!==(R=F??l.$.Promise)&&void 0!==R?R:Promise}},2771:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>w});var e=g(1413),t=g(6129);class w extends e.B{constructor(l=1/0,x=1/0,f=t.U){super(),this._bufferSize=l,this._windowTime=x,this._timestampProvider=f,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=x===1/0,this._bufferSize=Math.max(1,l),this._windowTime=Math.max(1,x)}next(l){const{isStopped:x,_buffer:f,_infiniteTimeWindow:I,_timestampProvider:d,_windowTime:T}=this;x||(f.push(l),!I&&f.push(d.now()+T)),this._trimBuffer(),super.next(l)}_subscribe(l){this._throwIfClosed(),this._trimBuffer();const x=this._innerSubscribe(l),{_infiniteTimeWindow:f,_buffer:I}=this,d=I.slice();for(let T=0;T{"use strict";g.d(te,{k:()=>I,B:()=>f});var e=g(1985),t=g(8359);const S=(0,g(1853).L)(d=>function(){d(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var l=g(7908),x=g(9786);let f=(()=>{class d extends e.c{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(y){const F=new I(this,this);return F.operator=y,F}_throwIfClosed(){if(this.closed)throw new S}next(y){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const F of this.currentObservers)F.next(y)}})}error(y){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=y;const{observers:F}=this;for(;F.length;)F.shift().error(y)}})}complete(){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:y}=this;for(;y.length;)y.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var y;return(null===(y=this.observers)||void 0===y?void 0:y.length)>0}_trySubscribe(y){return this._throwIfClosed(),super._trySubscribe(y)}_subscribe(y){return this._throwIfClosed(),this._checkFinalizedStatuses(y),this._innerSubscribe(y)}_innerSubscribe(y){const{hasError:F,isStopped:R,observers:z}=this;return F||R?t.Kn:(this.currentObservers=null,z.push(y),new t.yU(()=>{this.currentObservers=null,(0,l.o)(z,y)}))}_checkFinalizedStatuses(y){const{hasError:F,thrownError:R,isStopped:z}=this;F?y.error(R):z&&y.complete()}asObservable(){const y=new e.c;return y.source=this,y}}return d.create=(T,y)=>new I(T,y),d})();class I extends f{constructor(T,y){super(),this.destination=T,this.source=y}next(T){var y,F;null===(F=null===(y=this.destination)||void 0===y?void 0:y.next)||void 0===F||F.call(y,T)}error(T){var y,F;null===(F=null===(y=this.destination)||void 0===y?void 0:y.error)||void 0===F||F.call(y,T)}complete(){var T,y;null===(y=null===(T=this.destination)||void 0===T?void 0:T.complete)||void 0===y||y.call(T)}_subscribe(T){var y,F;return null!==(F=null===(y=this.source)||void 0===y?void 0:y.subscribe(T))&&void 0!==F?F:t.Kn}}},7707:(Qe,te,g)=>{"use strict";g.d(te,{Ms:()=>$,vU:()=>F});var e=g(8071),t=g(8359),w=g(1026),S=g(5334),l=g(5343);const x=d("C",void 0,void 0);function d(ie,ge,ae){return{kind:ie,value:ge,error:ae}}var T=g(9270),y=g(9786);class F extends t.yU{constructor(ge){super(),this.isStopped=!1,ge?(this.destination=ge,(0,t.Uv)(ge)&&ge.add(this)):this.destination=ee}static create(ge,ae,Me){return new $(ge,ae,Me)}next(ge){this.isStopped?J(function I(ie){return d("N",ie,void 0)}(ge),this):this._next(ge)}error(ge){this.isStopped?J(function f(ie){return d("E",void 0,ie)}(ge),this):(this.isStopped=!0,this._error(ge))}complete(){this.isStopped?J(x,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(ge){this.destination.next(ge)}_error(ge){try{this.destination.error(ge)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const R=Function.prototype.bind;function z(ie,ge){return R.call(ie,ge)}class W{constructor(ge){this.partialObserver=ge}next(ge){const{partialObserver:ae}=this;if(ae.next)try{ae.next(ge)}catch(Me){j(Me)}}error(ge){const{partialObserver:ae}=this;if(ae.error)try{ae.error(ge)}catch(Me){j(Me)}else j(ge)}complete(){const{partialObserver:ge}=this;if(ge.complete)try{ge.complete()}catch(ae){j(ae)}}}class $ extends F{constructor(ge,ae,Me){let Te;if(super(),(0,e.T)(ge)||!ge)Te={next:ge??void 0,error:ae??void 0,complete:Me??void 0};else{let de;this&&w.$.useDeprecatedNextContext?(de=Object.create(ge),de.unsubscribe=()=>this.unsubscribe(),Te={next:ge.next&&z(ge.next,de),error:ge.error&&z(ge.error,de),complete:ge.complete&&z(ge.complete,de)}):Te=ge}this.destination=new W(Te)}}function j(ie){w.$.useDeprecatedSynchronousErrorHandling?(0,y.l)(ie):(0,S.m)(ie)}function J(ie,ge){const{onStoppedNotification:ae}=w.$;ae&&T.f.setTimeout(()=>ae(ie,ge))}const ee={closed:!0,next:l.l,error:function Q(ie){throw ie},complete:l.l}},8359:(Qe,te,g)=>{"use strict";g.d(te,{Kn:()=>x,yU:()=>l,Uv:()=>f});var e=g(8071);const w=(0,g(1853).L)(d=>function(y){d(this),this.message=y?`${y.length} errors occurred during unsubscription:\n${y.map((F,R)=>`${R+1}) ${F.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=y});var S=g(7908);class l{constructor(T){this.initialTeardown=T,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let T;if(!this.closed){this.closed=!0;const{_parentage:y}=this;if(y)if(this._parentage=null,Array.isArray(y))for(const z of y)z.remove(this);else y.remove(this);const{initialTeardown:F}=this;if((0,e.T)(F))try{F()}catch(z){T=z instanceof w?z.errors:[z]}const{_finalizers:R}=this;if(R){this._finalizers=null;for(const z of R)try{I(z)}catch(W){T=T??[],W instanceof w?T=[...T,...W.errors]:T.push(W)}}if(T)throw new w(T)}}add(T){var y;if(T&&T!==this)if(this.closed)I(T);else{if(T instanceof l){if(T.closed||T._hasParent(this))return;T._addParent(this)}(this._finalizers=null!==(y=this._finalizers)&&void 0!==y?y:[]).push(T)}}_hasParent(T){const{_parentage:y}=this;return y===T||Array.isArray(y)&&y.includes(T)}_addParent(T){const{_parentage:y}=this;this._parentage=Array.isArray(y)?(y.push(T),y):y?[y,T]:T}_removeParent(T){const{_parentage:y}=this;y===T?this._parentage=null:Array.isArray(y)&&(0,S.o)(y,T)}remove(T){const{_finalizers:y}=this;y&&(0,S.o)(y,T),T instanceof l&&T._removeParent(this)}}l.EMPTY=(()=>{const d=new l;return d.closed=!0,d})();const x=l.EMPTY;function f(d){return d instanceof l||d&&"closed"in d&&(0,e.T)(d.remove)&&(0,e.T)(d.add)&&(0,e.T)(d.unsubscribe)}function I(d){(0,e.T)(d)?d():d.unsubscribe()}},1026:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>e});const e={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},17:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>x});var e=g(1985),t=g(8359),w=g(9898),S=g(4360),l=g(9974);class x extends e.c{constructor(I,d){super(),this.source=I,this.subjectFactory=d,this._subject=null,this._refCount=0,this._connection=null,(0,l.S)(I)&&(this.lift=I.lift)}_subscribe(I){return this.getSubject().subscribe(I)}getSubject(){const I=this._subject;return(!I||I.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:I}=this;this._subject=this._connection=null,I?.unsubscribe()}connect(){let I=this._connection;if(!I){I=this._connection=new t.yU;const d=this.getSubject();I.add(this.source.subscribe((0,S._)(d,void 0,()=>{this._teardown(),d.complete()},T=>{this._teardown(),d.error(T)},()=>this._teardown()))),I.closed&&(this._connection=null,I=t.yU.EMPTY)}return I}refCount(){return(0,w.B)()(this)}}},4572:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>T});var e=g(1985),t=g(3073),w=g(2806),S=g(3669),l=g(6450),x=g(9326),f=g(8496),I=g(4360),d=g(5225);function T(...R){const z=(0,x.lI)(R),W=(0,x.ms)(R),{args:$,keys:j}=(0,t.D)(R);if(0===$.length)return(0,w.H)([],z);const Q=new e.c(function y(R,z,W=S.D){return $=>{F(z,()=>{const{length:j}=R,Q=new Array(j);let J=j,ee=j;for(let ie=0;ie{const ge=(0,w.H)(R[ie],z);let ae=!1;ge.subscribe((0,I._)($,Me=>{Q[ie]=Me,ae||(ae=!0,ee--),ee||$.next(W(Q.slice()))},()=>{--J||$.complete()}))},$)},$)}}($,z,j?J=>(0,f.e)(j,J):S.D));return W?Q.pipe((0,l.I)(W)):Q}function F(R,z,W){R?(0,d.N)(W,R,z):z()}},8793:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>l});var e=g(6365),w=g(9326),S=g(2806);function l(...x){return function t(){return(0,e.U)(1)}()((0,S.H)(x,(0,w.lI)(x)))}},9030:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>w});var e=g(1985),t=g(8750);function w(S){return new e.c(l=>{(0,t.Tg)(S()).subscribe(l)})}},983:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>t});const t=new(g(1985).c)(l=>l.complete())},7468:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>I});var e=g(1985),t=g(3073),w=g(8750),S=g(9326),l=g(4360),x=g(6450),f=g(8496);function I(...d){const T=(0,S.ms)(d),{args:y,keys:F}=(0,t.D)(d),R=new e.c(z=>{const{length:W}=y;if(!W)return void z.complete();const $=new Array(W);let j=W,Q=W;for(let J=0;J{ee||(ee=!0,Q--),$[J]=ie},()=>j--,void 0,()=>{(!j||!ee)&&(Q||z.next(F?(0,f.e)(F,$):$),z.complete())}))}});return T?R.pipe((0,x.I)(T)):R}},2806:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>ae});var e=g(8750),t=g(941),w=g(9974);function S(Me,Te=0){return(0,w.N)((de,D)=>{D.add(Me.schedule(()=>de.subscribe(D),Te))})}var f=g(1985),d=g(4761),T=g(8071),y=g(5225);function R(Me,Te){if(!Me)throw new Error("Iterable cannot be null");return new f.c(de=>{(0,y.N)(de,Te,()=>{const D=Me[Symbol.asyncIterator]();(0,y.N)(de,Te,()=>{D.next().then(n=>{n.done?de.complete():de.next(n.value)})},0,!0)})})}var z=g(5055),W=g(9858),$=g(7441),j=g(5397),Q=g(7953),J=g(591),ee=g(5196);function ae(Me,Te){return Te?function ge(Me,Te){if(null!=Me){if((0,z.l)(Me))return function l(Me,Te){return(0,e.Tg)(Me).pipe(S(Te),(0,t.Q)(Te))}(Me,Te);if((0,$.X)(Me))return function I(Me,Te){return new f.c(de=>{let D=0;return Te.schedule(function(){D===Me.length?de.complete():(de.next(Me[D++]),de.closed||this.schedule())})})}(Me,Te);if((0,W.y)(Me))return function x(Me,Te){return(0,e.Tg)(Me).pipe(S(Te),(0,t.Q)(Te))}(Me,Te);if((0,Q.T)(Me))return R(Me,Te);if((0,j.x)(Me))return function F(Me,Te){return new f.c(de=>{let D;return(0,y.N)(de,Te,()=>{D=Me[d.l](),(0,y.N)(de,Te,()=>{let n,c;try{({value:n,done:c}=D.next())}catch(m){return void de.error(m)}c?de.complete():de.next(n)},0,!0)}),()=>(0,T.T)(D?.return)&&D.return()})}(Me,Te);if((0,ee.U)(Me))return function ie(Me,Te){return R((0,ee.C)(Me),Te)}(Me,Te)}throw(0,J.L)(Me)}(Me,Te):(0,e.Tg)(Me)}},3726:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>T});var e=g(8750),t=g(1985),w=g(1397),S=g(7441),l=g(8071),x=g(6450);const f=["addListener","removeListener"],I=["addEventListener","removeEventListener"],d=["on","off"];function T(W,$,j,Q){if((0,l.T)(j)&&(Q=j,j=void 0),Q)return T(W,$,j).pipe((0,x.I)(Q));const[J,ee]=function z(W){return(0,l.T)(W.addEventListener)&&(0,l.T)(W.removeEventListener)}(W)?I.map(ie=>ge=>W[ie]($,ge,j)):function F(W){return(0,l.T)(W.addListener)&&(0,l.T)(W.removeListener)}(W)?f.map(y(W,$)):function R(W){return(0,l.T)(W.on)&&(0,l.T)(W.off)}(W)?d.map(y(W,$)):[];if(!J&&(0,S.X)(W))return(0,w.Z)(ie=>T(ie,$,j))((0,e.Tg)(W));if(!J)throw new TypeError("Invalid event target");return new t.c(ie=>{const ge=(...ae)=>ie.next(1ee(ge)})}function y(W,$){return j=>Q=>W[j]($,Q)}},8750:(Qe,te,g)=>{"use strict";g.d(te,{Tg:()=>R});var e=g(1635),t=g(7441),w=g(9858),S=g(1985),l=g(5055),x=g(7953),f=g(591),I=g(5397),d=g(5196),T=g(8071),y=g(5334),F=g(3494);function R(ie){if(ie instanceof S.c)return ie;if(null!=ie){if((0,l.l)(ie))return function z(ie){return new S.c(ge=>{const ae=ie[F.s]();if((0,T.T)(ae.subscribe))return ae.subscribe(ge);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(ie);if((0,t.X)(ie))return function W(ie){return new S.c(ge=>{for(let ae=0;ae{ie.then(ae=>{ge.closed||(ge.next(ae),ge.complete())},ae=>ge.error(ae)).then(null,y.m)})}(ie);if((0,x.T)(ie))return Q(ie);if((0,I.x)(ie))return function j(ie){return new S.c(ge=>{for(const ae of ie)if(ge.next(ae),ge.closed)return;ge.complete()})}(ie);if((0,d.U)(ie))return function J(ie){return Q((0,d.C)(ie))}(ie)}throw(0,f.L)(ie)}function Q(ie){return new S.c(ge=>{(function ee(ie,ge){var ae,Me,Te,de;return(0,e.sH)(this,void 0,void 0,function*(){try{for(ae=(0,e.xN)(ie);!(Me=yield ae.next()).done;)if(ge.next(Me.value),ge.closed)return}catch(D){Te={error:D}}finally{try{Me&&!Me.done&&(de=ae.return)&&(yield de.call(ae))}finally{if(Te)throw Te.error}}ge.complete()})})(ie,ge).catch(ae=>ge.error(ae))})}},7786:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>x});var e=g(6365),t=g(8750),w=g(983),S=g(9326),l=g(2806);function x(...f){const I=(0,S.lI)(f),d=(0,S.R0)(f,1/0),T=f;return T.length?1===T.length?(0,t.Tg)(T[0]):(0,e.U)(d)((0,l.H)(T,I)):w.w}},7673:(Qe,te,g)=>{"use strict";g.d(te,{of:()=>w});var e=g(9326),t=g(2806);function w(...S){const l=(0,e.lI)(S);return(0,t.H)(S,l)}},8810:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>w});var e=g(1985),t=g(8071);function w(S,l){const x=(0,t.T)(S)?S:()=>S,f=I=>I.error(x());return new e.c(l?I=>l.schedule(f,0,I):f)}},1807:(Qe,te,g)=>{"use strict";g.d(te,{O:()=>l});var e=g(1985),t=g(3236),w=g(9470),S=g(8211);function l(x=0,f,I=t.b){let d=-1;return null!=f&&((0,w.m)(f)?I=f:d=f),new e.c(T=>{let y=(0,S.v)(x)?+x-I.now():x;y<0&&(y=0);let F=0;return I.schedule(function(){T.closed||(T.next(F++),0<=d?this.schedule(void 0,d):T.complete())},y)})}},4360:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>w,_:()=>t});var e=g(7707);function t(S,l,x,f,I){return new w(S,l,x,f,I)}class w extends e.vU{constructor(l,x,f,I,d,T){super(l),this.onFinalize=d,this.shouldUnsubscribe=T,this._next=x?function(y){try{x(y)}catch(F){l.error(F)}}:super._next,this._error=I?function(y){try{I(y)}catch(F){l.error(F)}finally{this.unsubscribe()}}:super._error,this._complete=f?function(){try{f()}catch(y){l.error(y)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var l;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:x}=this;super.unsubscribe(),!x&&(null===(l=this.onFinalize)||void 0===l||l.call(this))}}}},3798:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>f});var e=g(3236),t=g(9974),w=g(8750),S=g(4360),x=g(1807);function f(I,d=e.E){return function l(I){return(0,t.N)((d,T)=>{let y=!1,F=null,R=null,z=!1;const W=()=>{if(R?.unsubscribe(),R=null,y){y=!1;const j=F;F=null,T.next(j)}z&&T.complete()},$=()=>{R=null,z&&T.complete()};d.subscribe((0,S._)(T,j=>{y=!0,F=j,R||(0,w.Tg)(I(j)).subscribe(R=(0,S._)(T,W,$))},()=>{z=!0,(!y||!R||R.closed)&&T.complete()}))})}(()=>(0,x.O)(I,d))}},9437:(Qe,te,g)=>{"use strict";g.d(te,{W:()=>S});var e=g(8750),t=g(4360),w=g(9974);function S(l){return(0,w.N)((x,f)=>{let T,I=null,d=!1;I=x.subscribe((0,t._)(f,void 0,void 0,y=>{T=(0,e.Tg)(l(y,S(l)(x))),I?(I.unsubscribe(),I=null,T.subscribe(f)):d=!0})),d&&(I.unsubscribe(),I=null,T.subscribe(f))})}},274:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>w});var e=g(1397),t=g(8071);function w(S,l){return(0,t.T)(l)?(0,e.Z)(S,l,1):(0,e.Z)(S,1)}},152:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>S});var e=g(3236),t=g(9974),w=g(4360);function S(l,x=e.E){return(0,t.N)((f,I)=>{let d=null,T=null,y=null;const F=()=>{if(d){d.unsubscribe(),d=null;const z=T;T=null,I.next(z)}};function R(){const z=y+l,W=x.now();if(W{T=z,y=x.now(),d||(d=x.schedule(R,l),I.add(d))},()=>{F(),I.complete()},void 0,()=>{T=d=null}))})}},9901:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>w});var e=g(9974),t=g(4360);function w(S){return(0,e.N)((l,x)=>{let f=!1;l.subscribe((0,t._)(x,I=>{f=!0,x.next(I)},()=>{f||x.next(S),x.complete()}))})}},5335:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>T});var e=g(3236),t=g(8793),w=g(6697),S=g(3557),l=g(3703),x=g(1397),f=g(8750);function I(y,F){return F?R=>(0,t.x)(F.pipe((0,w.s)(1),(0,S.w)()),R.pipe(I(y))):(0,x.Z)((R,z)=>(0,f.Tg)(y(R,z)).pipe((0,w.s)(1),(0,l.u)(R)))}var d=g(1807);function T(y,F=e.E){const R=(0,d.O)(y,F);return I(()=>R)}},3294:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>S});var e=g(3669),t=g(9974),w=g(4360);function S(x,f=e.D){return x=x??l,(0,t.N)((I,d)=>{let T,y=!0;I.subscribe((0,w._)(d,F=>{const R=f(F);(y||!x(T,R))&&(y=!1,T=R,d.next(F))}))})}function l(x,f){return x===f}},5964:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>w});var e=g(9974),t=g(4360);function w(S,l){return(0,e.N)((x,f)=>{let I=0;x.subscribe((0,t._)(f,d=>S.call(l,d,I++)&&f.next(d)))})}},980:(Qe,te,g)=>{"use strict";g.d(te,{j:()=>t});var e=g(9974);function t(w){return(0,e.N)((S,l)=>{try{S.subscribe(l)}finally{l.add(w)}})}},1594:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>f});var e=g(9350),t=g(5964),w=g(6697),S=g(9901),l=g(3774),x=g(3669);function f(I,d){const T=arguments.length>=2;return y=>y.pipe(I?(0,t.p)((F,R)=>I(F,R,y)):x.D,(0,w.s)(1),T?(0,S.U)(d):(0,l.v)(()=>new e.G))}},3557:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>S});var e=g(9974),t=g(4360),w=g(5343);function S(){return(0,e.N)((l,x)=>{l.subscribe((0,t._)(x,w.l))})}},6354:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>w});var e=g(9974),t=g(4360);function w(S,l){return(0,e.N)((x,f)=>{let I=0;x.subscribe((0,t._)(f,d=>{f.next(S.call(l,d,I++))}))})}},3703:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>t});var e=g(6354);function t(w){return(0,e.T)(()=>w)}},6365:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>w});var e=g(1397),t=g(3669);function w(S=1/0){return(0,e.Z)(t.D,S)}},1397:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>I});var e=g(6354),t=g(8750),w=g(9974),S=g(5225),l=g(4360),f=g(8071);function I(d,T,y=1/0){return(0,f.T)(T)?I((F,R)=>(0,e.T)((z,W)=>T(F,z,R,W))((0,t.Tg)(d(F,R))),y):("number"==typeof T&&(y=T),(0,w.N)((F,R)=>function x(d,T,y,F,R,z,W,$){const j=[];let Q=0,J=0,ee=!1;const ie=()=>{ee&&!j.length&&!Q&&T.complete()},ge=Me=>Q{z&&T.next(Me),Q++;let Te=!1;(0,t.Tg)(y(Me,J++)).subscribe((0,l._)(T,de=>{R?.(de),z?ge(de):T.next(de)},()=>{Te=!0},void 0,()=>{if(Te)try{for(Q--;j.length&&Qae(de)):ae(de)}ie()}catch(de){T.error(de)}}))};return d.subscribe((0,l._)(T,ge,()=>{ee=!0,ie()})),()=>{$?.()}}(F,R,d,y)))}},941:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>S});var e=g(5225),t=g(9974),w=g(4360);function S(l,x=0){return(0,t.N)((f,I)=>{f.subscribe((0,w._)(I,d=>(0,e.N)(I,l,()=>I.next(d),x),()=>(0,e.N)(I,l,()=>I.complete(),x),d=>(0,e.N)(I,l,()=>I.error(d),x)))})}},9898:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>w});var e=g(9974),t=g(4360);function w(){return(0,e.N)((S,l)=>{let x=null;S._refCount++;const f=(0,t._)(l,void 0,void 0,void 0,()=>{if(!S||S._refCount<=0||0<--S._refCount)return void(x=null);const I=S._connection,d=x;x=null,I&&(!d||I===d)&&I.unsubscribe(),l.unsubscribe()});S.subscribe(f),f.closed||(x=S.connect())})}},2816:(Qe,te,g)=>{"use strict";g.d(te,{S:()=>S});var e=g(9974),t=g(4360);function S(l,x){return(0,e.N)(function w(l,x,f,I,d){return(T,y)=>{let F=f,R=x,z=0;T.subscribe((0,t._)(y,W=>{const $=z++;R=F?l(R,W,$):(F=!0,W),I&&y.next(R)},d&&(()=>{F&&y.next(R),y.complete()})))}}(l,x,arguments.length>=2,!0))}},7647:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>l});var e=g(8750),t=g(1413),w=g(7707),S=g(9974);function l(f={}){const{connector:I=(()=>new t.B),resetOnError:d=!0,resetOnComplete:T=!0,resetOnRefCountZero:y=!0}=f;return F=>{let R,z,W,$=0,j=!1,Q=!1;const J=()=>{z?.unsubscribe(),z=void 0},ee=()=>{J(),R=W=void 0,j=Q=!1},ie=()=>{const ge=R;ee(),ge?.unsubscribe()};return(0,S.N)((ge,ae)=>{$++,!Q&&!j&&J();const Me=W=W??I();ae.add(()=>{$--,0===$&&!Q&&!j&&(z=x(ie,y))}),Me.subscribe(ae),!R&&$>0&&(R=new w.Ms({next:Te=>Me.next(Te),error:Te=>{Q=!0,J(),z=x(ee,d,Te),Me.error(Te)},complete:()=>{j=!0,J(),z=x(ee,T),Me.complete()}}),(0,e.Tg)(ge).subscribe(R))})(F)}}function x(f,I,...d){if(!0===I)return void f();if(!1===I)return;const T=new w.Ms({next:()=>{T.unsubscribe(),f()}});return(0,e.Tg)(I(...d)).subscribe(T)}},5245:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>t});var e=g(5964);function t(w){return(0,e.p)((S,l)=>w<=l)}},9172:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>S});var e=g(8793),t=g(9326),w=g(9974);function S(...l){const x=(0,t.lI)(l);return(0,w.N)((f,I)=>{(x?(0,e.x)(l,f,x):(0,e.x)(l,f)).subscribe(I)})}},5558:(Qe,te,g)=>{"use strict";g.d(te,{n:()=>S});var e=g(8750),t=g(9974),w=g(4360);function S(l,x){return(0,t.N)((f,I)=>{let d=null,T=0,y=!1;const F=()=>y&&!d&&I.complete();f.subscribe((0,w._)(I,R=>{d?.unsubscribe();let z=0;const W=T++;(0,e.Tg)(l(R,W)).subscribe(d=(0,w._)(I,$=>I.next(x?x(R,$,W,z++):$),()=>{d=null,F()}))},()=>{y=!0,F()}))})}},6697:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>S});var e=g(983),t=g(9974),w=g(4360);function S(l){return l<=0?()=>e.w:(0,t.N)((x,f)=>{let I=0;x.subscribe((0,w._)(f,d=>{++I<=l&&(f.next(d),l<=I&&f.complete())}))})}},6977:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>l});var e=g(9974),t=g(4360),w=g(8750),S=g(5343);function l(x){return(0,e.N)((f,I)=>{(0,w.Tg)(x).subscribe((0,t._)(I,()=>I.complete(),S.l)),!I.closed&&f.subscribe(I)})}},8141:(Qe,te,g)=>{"use strict";g.d(te,{M:()=>l});var e=g(8071),t=g(9974),w=g(4360),S=g(3669);function l(x,f,I){const d=(0,e.T)(x)||f||I?{next:x,error:f,complete:I}:x;return d?(0,t.N)((T,y)=>{var F;null===(F=d.subscribe)||void 0===F||F.call(d);let R=!0;T.subscribe((0,w._)(y,z=>{var W;null===(W=d.next)||void 0===W||W.call(d,z),y.next(z)},()=>{var z;R=!1,null===(z=d.complete)||void 0===z||z.call(d),y.complete()},z=>{var W;R=!1,null===(W=d.error)||void 0===W||W.call(d,z),y.error(z)},()=>{var z,W;R&&(null===(z=d.unsubscribe)||void 0===z||z.call(d)),null===(W=d.finalize)||void 0===W||W.call(d)}))}):S.D}},3774:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>S});var e=g(9350),t=g(9974),w=g(4360);function S(x=l){return(0,t.N)((f,I)=>{let d=!1;f.subscribe((0,w._)(I,T=>{d=!0,I.next(T)},()=>d?I.complete():I.error(x())))})}function l(){return new e.G}},3993:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>f});var e=g(9974),t=g(4360),w=g(8750),S=g(3669),l=g(5343),x=g(9326);function f(...I){const d=(0,x.ms)(I);return(0,e.N)((T,y)=>{const F=I.length,R=new Array(F);let z=I.map(()=>!1),W=!1;for(let $=0;${R[$]=j,!W&&!z[$]&&(z[$]=!0,(W=z.every(S.D))&&(z=null))},l.l));T.subscribe((0,t._)(y,$=>{if(W){const j=[$,...R];y.next(d?d(...j):j)}}))})}},6780:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>l});var e=g(8359);class t extends e.yU{constructor(f,I){super()}schedule(f,I=0){return this}}const w={setInterval(x,f,...I){const{delegate:d}=w;return d?.setInterval?d.setInterval(x,f,...I):setInterval(x,f,...I)},clearInterval(x){const{delegate:f}=w;return(f?.clearInterval||clearInterval)(x)},delegate:void 0};var S=g(7908);class l extends t{constructor(f,I){super(f,I),this.scheduler=f,this.work=I,this.pending=!1}schedule(f,I=0){var d;if(this.closed)return this;this.state=f;const T=this.id,y=this.scheduler;return null!=T&&(this.id=this.recycleAsyncId(y,T,I)),this.pending=!0,this.delay=I,this.id=null!==(d=this.id)&&void 0!==d?d:this.requestAsyncId(y,this.id,I),this}requestAsyncId(f,I,d=0){return w.setInterval(f.flush.bind(f,this),d)}recycleAsyncId(f,I,d=0){if(null!=d&&this.delay===d&&!1===this.pending)return I;null!=I&&w.clearInterval(I)}execute(f,I){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const d=this._execute(f,I);if(d)return d;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(f,I){let T,d=!1;try{this.work(f)}catch(y){d=!0,T=y||new Error("Scheduled action threw falsy error")}if(d)return this.unsubscribe(),T}unsubscribe(){if(!this.closed){const{id:f,scheduler:I}=this,{actions:d}=I;this.work=this.state=this.scheduler=null,this.pending=!1,(0,S.o)(d,this),null!=f&&(this.id=this.recycleAsyncId(I,f,null)),this.delay=null,super.unsubscribe()}}}},9687:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>w});var e=g(6129);class t{constructor(l,x=t.now){this.schedulerActionCtor=l,this.now=x}schedule(l,x=0,f){return new this.schedulerActionCtor(this,l).schedule(f,x)}}t.now=e.U.now;class w extends t{constructor(l,x=t.now){super(l,x),this.actions=[],this._active=!1}flush(l){const{actions:x}=this;if(this._active)return void x.push(l);let f;this._active=!0;do{if(f=l.execute(l.state,l.delay))break}while(l=x.shift());if(this._active=!1,f){for(;l=x.shift();)l.unsubscribe();throw f}}}},5007:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>z});var e=g(6780);let w,t=1;const S={};function l($){return $ in S&&(delete S[$],!0)}const x={setImmediate($){const j=t++;return S[j]=!0,w||(w=Promise.resolve()),w.then(()=>l(j)&&$()),j},clearImmediate($){l($)}},{setImmediate:I,clearImmediate:d}=x,T={setImmediate(...$){const{delegate:j}=T;return(j?.setImmediate||I)(...$)},clearImmediate($){const{delegate:j}=T;return(j?.clearImmediate||d)($)},delegate:void 0};var F=g(9687);const z=new class R extends F.q{flush(j){this._active=!0;const Q=this._scheduled;this._scheduled=void 0;const{actions:J}=this;let ee;j=j||J.shift();do{if(ee=j.execute(j.state,j.delay))break}while((j=J[0])&&j.id===Q&&J.shift());if(this._active=!1,ee){for(;(j=J[0])&&j.id===Q&&J.shift();)j.unsubscribe();throw ee}}}(class y extends e.R{constructor(j,Q){super(j,Q),this.scheduler=j,this.work=Q}requestAsyncId(j,Q,J=0){return null!==J&&J>0?super.requestAsyncId(j,Q,J):(j.actions.push(this),j._scheduled||(j._scheduled=T.setImmediate(j.flush.bind(j,void 0))))}recycleAsyncId(j,Q,J=0){var ee;if(null!=J?J>0:this.delay>0)return super.recycleAsyncId(j,Q,J);const{actions:ie}=j;null!=Q&&(null===(ee=ie[ie.length-1])||void 0===ee?void 0:ee.id)!==Q&&(T.clearImmediate(Q),j._scheduled===Q&&(j._scheduled=void 0))}})},3236:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>w,b:()=>S});var e=g(6780);const w=new(g(9687).q)(e.R),S=w},6129:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>e});const e={now:()=>(e.delegate||Date).now(),delegate:void 0}},7242:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>l});var e=g(6780),w=g(9687);const l=new class S extends w.q{}(class t extends e.R{constructor(I,d){super(I,d),this.scheduler=I,this.work=d}schedule(I,d=0){return d>0?super.schedule(I,d):(this.delay=d,this.state=I,this.scheduler.flush(this),this)}execute(I,d){return d>0||this.closed?super.execute(I,d):this._execute(I,d)}requestAsyncId(I,d,T=0){return null!=T&&T>0||null==T&&this.delay>0?super.requestAsyncId(I,d,T):(I.flush(this),0)}})},9270:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>e});const e={setTimeout(t,w,...S){const{delegate:l}=e;return l?.setTimeout?l.setTimeout(t,w,...S):setTimeout(t,w,...S)},clearTimeout(t){const{delegate:w}=e;return(w?.clearTimeout||clearTimeout)(t)},delegate:void 0}},4761:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>t});const t=function e(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},3494:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>e});const e="function"==typeof Symbol&&Symbol.observable||"@@observable"},9350:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>t});const t=(0,g(1853).L)(w=>function(){w(this),this.name="EmptyError",this.message="no elements in sequence"})},9326:(Qe,te,g)=>{"use strict";g.d(te,{R0:()=>x,lI:()=>l,ms:()=>S});var e=g(8071),t=g(9470);function w(f){return f[f.length-1]}function S(f){return(0,e.T)(w(f))?f.pop():void 0}function l(f){return(0,t.m)(w(f))?f.pop():void 0}function x(f,I){return"number"==typeof w(f)?f.pop():I}},3073:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>l});const{isArray:e}=Array,{getPrototypeOf:t,prototype:w,keys:S}=Object;function l(f){if(1===f.length){const I=f[0];if(e(I))return{args:I,keys:null};if(function x(f){return f&&"object"==typeof f&&t(f)===w}(I)){const d=S(I);return{args:d.map(T=>I[T]),keys:d}}}return{args:f,keys:null}}},7908:(Qe,te,g)=>{"use strict";function e(t,w){if(t){const S=t.indexOf(w);0<=S&&t.splice(S,1)}}g.d(te,{o:()=>e})},1853:(Qe,te,g)=>{"use strict";function e(t){const S=t(l=>{Error.call(l),l.stack=(new Error).stack});return S.prototype=Object.create(Error.prototype),S.prototype.constructor=S,S}g.d(te,{L:()=>e})},8496:(Qe,te,g)=>{"use strict";function e(t,w){return t.reduce((S,l,x)=>(S[l]=w[x],S),{})}g.d(te,{e:()=>e})},9786:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>w,l:()=>S});var e=g(1026);let t=null;function w(l){if(e.$.useDeprecatedSynchronousErrorHandling){const x=!t;if(x&&(t={errorThrown:!1,error:null}),l(),x){const{errorThrown:f,error:I}=t;if(t=null,f)throw I}}else l()}function S(l){e.$.useDeprecatedSynchronousErrorHandling&&t&&(t.errorThrown=!0,t.error=l)}},5225:(Qe,te,g)=>{"use strict";function e(t,w,S,l=0,x=!1){const f=w.schedule(function(){S(),x?t.add(this.schedule(null,l)):this.unsubscribe()},l);if(t.add(f),!x)return f}g.d(te,{N:()=>e})},3669:(Qe,te,g)=>{"use strict";function e(t){return t}g.d(te,{D:()=>e})},7441:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>e});const e=t=>t&&"number"==typeof t.length&&"function"!=typeof t},7953:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>t});var e=g(8071);function t(w){return Symbol.asyncIterator&&(0,e.T)(w?.[Symbol.asyncIterator])}},8211:(Qe,te,g)=>{"use strict";function e(t){return t instanceof Date&&!isNaN(t)}g.d(te,{v:()=>e})},8071:(Qe,te,g)=>{"use strict";function e(t){return"function"==typeof t}g.d(te,{T:()=>e})},5055:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>w});var e=g(3494),t=g(8071);function w(S){return(0,t.T)(S[e.s])}},5397:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>w});var e=g(4761),t=g(8071);function w(S){return(0,t.T)(S?.[e.l])}},4402:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>w});var e=g(1985),t=g(8071);function w(S){return!!S&&(S instanceof e.c||(0,t.T)(S.lift)&&(0,t.T)(S.subscribe))}},9858:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>t});var e=g(8071);function t(w){return(0,e.T)(w?.then)}},5196:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>w,U:()=>S});var e=g(1635),t=g(8071);function w(l){return(0,e.AQ)(this,arguments,function*(){const f=l.getReader();try{for(;;){const{value:I,done:d}=yield(0,e.N3)(f.read());if(d)return yield(0,e.N3)(void 0);yield yield(0,e.N3)(I)}}finally{f.releaseLock()}})}function S(l){return(0,t.T)(l?.getReader)}},9470:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>t});var e=g(8071);function t(w){return w&&(0,e.T)(w.schedule)}},9974:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>w,S:()=>t});var e=g(8071);function t(S){return(0,e.T)(S?.lift)}function w(S){return l=>{if(t(l))return l.lift(function(x){try{return S(x,this)}catch(f){this.error(f)}});throw new TypeError("Unable to lift unknown Observable type")}}},6450:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>S});var e=g(6354);const{isArray:t}=Array;function S(l){return(0,e.T)(x=>function w(l,x){return t(x)?l(...x):l(x)}(l,x))}},5343:(Qe,te,g)=>{"use strict";function e(){}g.d(te,{l:()=>e})},1203:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>t,m:()=>w});var e=g(3669);function t(...S){return w(S)}function w(S){return 0===S.length?e.D:1===S.length?S[0]:function(x){return S.reduce((f,I)=>I(f),x)}}},5334:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>w});var e=g(1026),t=g(9270);function w(S){t.f.setTimeout(()=>{const{onUnhandledError:l}=e.$;if(!l)throw S;l(S)})}},591:(Qe,te,g)=>{"use strict";function e(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.`)}g.d(te,{L:()=>e})},7054:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),S.prototype=Object.create(t.prototype),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},463:(Qe,te,g)=>{var e=g(7054).Buffer;function t(w,S){this._block=e.alloc(w),this._finalSize=S,this._blockSize=w,this._len=0}t.prototype.update=function(w,S){"string"==typeof w&&(w=e.from(w,S=S||"utf8"));for(var l=this._block,x=this._blockSize,f=w.length,I=this._len,d=0;d=this._finalSize&&(this._update(this._block),this._block.fill(0));var l=8*this._len;if(l<=4294967295)this._block.writeUInt32BE(l,this._blockSize-4);else{var x=(4294967295&l)>>>0;this._block.writeUInt32BE((l-x)/4294967296,this._blockSize-8),this._block.writeUInt32BE(x,this._blockSize-4)}this._update(this._block);var I=this._hash();return w?I.toString(w):I},t.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Qe.exports=t},5443:(Qe,te,g)=>{var e=Qe.exports=function(w){w=w.toLowerCase();var S=e[w];if(!S)throw new Error(w+" is not supported (we accept pull requests)");return new S};e.sha=g(8585),e.sha1=g(1270),e.sha224=g(2709),e.sha256=g(2148),e.sha384=g(1856),e.sha512=g(3121)},8585:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(T){return T<<5|T>>>27}function I(T){return T<<30|T>>>2}function d(T,y,F,R){return 0===T?y&F|~y&R:2===T?y&F|y&R|F&R:y^F^R}e(x,t),x.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},x.prototype._update=function(T){for(var y=this._w,F=0|this._a,R=0|this._b,z=0|this._c,W=0|this._d,$=0|this._e,j=0;j<16;++j)y[j]=T.readInt32BE(4*j);for(;j<80;++j)y[j]=y[j-3]^y[j-8]^y[j-14]^y[j-16];for(var Q=0;Q<80;++Q){var J=~~(Q/20),ee=f(F)+d(J,R,z,W)+$+y[Q]+S[J]|0;$=W,W=z,z=I(R),R=F,F=ee}this._a=F+this._a|0,this._b=R+this._b|0,this._c=z+this._c|0,this._d=W+this._d|0,this._e=$+this._e|0},x.prototype._hash=function(){var T=w.allocUnsafe(20);return T.writeInt32BE(0|this._a,0),T.writeInt32BE(0|this._b,4),T.writeInt32BE(0|this._c,8),T.writeInt32BE(0|this._d,12),T.writeInt32BE(0|this._e,16),T},Qe.exports=x},1270:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(y){return y<<1|y>>>31}function I(y){return y<<5|y>>>27}function d(y){return y<<30|y>>>2}function T(y,F,R,z){return 0===y?F&R|~F&z:2===y?F&R|F&z|R&z:F^R^z}e(x,t),x.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},x.prototype._update=function(y){for(var F=this._w,R=0|this._a,z=0|this._b,W=0|this._c,$=0|this._d,j=0|this._e,Q=0;Q<16;++Q)F[Q]=y.readInt32BE(4*Q);for(;Q<80;++Q)F[Q]=f(F[Q-3]^F[Q-8]^F[Q-14]^F[Q-16]);for(var J=0;J<80;++J){var ee=~~(J/20),ie=I(R)+T(ee,z,W,$)+j+F[J]+S[ee]|0;j=$,$=W,W=d(z),z=R,R=ie}this._a=R+this._a|0,this._b=z+this._b|0,this._c=W+this._c|0,this._d=$+this._d|0,this._e=j+this._e|0},x.prototype._hash=function(){var y=w.allocUnsafe(20);return y.writeInt32BE(0|this._a,0),y.writeInt32BE(0|this._b,4),y.writeInt32BE(0|this._c,8),y.writeInt32BE(0|this._d,12),y.writeInt32BE(0|this._e,16),y},Qe.exports=x},2709:(Qe,te,g)=>{var e=g(1993),t=g(2148),w=g(463),S=g(7054).Buffer,l=new Array(64);function x(){this.init(),this._w=l,w.call(this,64,56)}e(x,t),x.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},x.prototype._hash=function(){var f=S.allocUnsafe(28);return f.writeInt32BE(this._a,0),f.writeInt32BE(this._b,4),f.writeInt32BE(this._c,8),f.writeInt32BE(this._d,12),f.writeInt32BE(this._e,16),f.writeInt32BE(this._f,20),f.writeInt32BE(this._g,24),f},Qe.exports=x},2148:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).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],l=new Array(64);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(R,z,W){return W^R&(z^W)}function I(R,z,W){return R&z|W&(R|z)}function d(R){return(R>>>2|R<<30)^(R>>>13|R<<19)^(R>>>22|R<<10)}function T(R){return(R>>>6|R<<26)^(R>>>11|R<<21)^(R>>>25|R<<7)}function y(R){return(R>>>7|R<<25)^(R>>>18|R<<14)^R>>>3}function F(R){return(R>>>17|R<<15)^(R>>>19|R<<13)^R>>>10}e(x,t),x.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},x.prototype._update=function(R){for(var z=this._w,W=0|this._a,$=0|this._b,j=0|this._c,Q=0|this._d,J=0|this._e,ee=0|this._f,ie=0|this._g,ge=0|this._h,ae=0;ae<16;++ae)z[ae]=R.readInt32BE(4*ae);for(;ae<64;++ae)z[ae]=F(z[ae-2])+z[ae-7]+y(z[ae-15])+z[ae-16]|0;for(var Me=0;Me<64;++Me){var Te=ge+T(J)+f(J,ee,ie)+S[Me]+z[Me]|0,de=d(W)+I(W,$,j)|0;ge=ie,ie=ee,ee=J,J=Q+Te|0,Q=j,j=$,$=W,W=Te+de|0}this._a=W+this._a|0,this._b=$+this._b|0,this._c=j+this._c|0,this._d=Q+this._d|0,this._e=J+this._e|0,this._f=ee+this._f|0,this._g=ie+this._g|0,this._h=ge+this._h|0},x.prototype._hash=function(){var R=w.allocUnsafe(32);return R.writeInt32BE(this._a,0),R.writeInt32BE(this._b,4),R.writeInt32BE(this._c,8),R.writeInt32BE(this._d,12),R.writeInt32BE(this._e,16),R.writeInt32BE(this._f,20),R.writeInt32BE(this._g,24),R.writeInt32BE(this._h,28),R},Qe.exports=x},1856:(Qe,te,g)=>{var e=g(1993),t=g(3121),w=g(463),S=g(7054).Buffer,l=new Array(160);function x(){this.init(),this._w=l,w.call(this,128,112)}e(x,t),x.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},x.prototype._hash=function(){var f=S.allocUnsafe(48);function I(d,T,y){f.writeInt32BE(d,y),f.writeInt32BE(T,y+4)}return I(this._ah,this._al,0),I(this._bh,this._bl,8),I(this._ch,this._cl,16),I(this._dh,this._dl,24),I(this._eh,this._el,32),I(this._fh,this._fl,40),f},Qe.exports=x},3121:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).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],l=new Array(160);function x(){this.init(),this._w=l,t.call(this,128,112)}function f($,j,Q){return Q^$&(j^Q)}function I($,j,Q){return $&j|Q&($|j)}function d($,j){return($>>>28|j<<4)^(j>>>2|$<<30)^(j>>>7|$<<25)}function T($,j){return($>>>14|j<<18)^($>>>18|j<<14)^(j>>>9|$<<23)}function y($,j){return($>>>1|j<<31)^($>>>8|j<<24)^$>>>7}function F($,j){return($>>>1|j<<31)^($>>>8|j<<24)^($>>>7|j<<25)}function R($,j){return($>>>19|j<<13)^(j>>>29|$<<3)^$>>>6}function z($,j){return($>>>19|j<<13)^(j>>>29|$<<3)^($>>>6|j<<26)}function W($,j){return $>>>0>>0?1:0}e(x,t),x.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},x.prototype._update=function($){for(var j=this._w,Q=0|this._ah,J=0|this._bh,ee=0|this._ch,ie=0|this._dh,ge=0|this._eh,ae=0|this._fh,Me=0|this._gh,Te=0|this._hh,de=0|this._al,D=0|this._bl,n=0|this._cl,c=0|this._dl,m=0|this._el,h=0|this._fl,C=0|this._gl,k=0|this._hl,L=0;L<32;L+=2)j[L]=$.readInt32BE(4*L),j[L+1]=$.readInt32BE(4*L+4);for(;L<160;L+=2){var _=j[L-30],r=j[L-30+1],v=y(_,r),V=F(r,_),N=R(_=j[L-4],r=j[L-4+1]),ne=z(r,_),qe=j[L-32],Ke=j[L-32+1],se=V+j[L-14+1]|0,X=v+j[L-14]+W(se,V)|0;X=(X=X+N+W(se=se+ne|0,ne)|0)+qe+W(se=se+Ke|0,Ke)|0,j[L]=X,j[L+1]=se}for(var me=0;me<160;me+=2){X=j[me],se=j[me+1];var ce=I(Q,J,ee),fe=I(de,D,n),ke=d(Q,de),mt=d(de,Q),_e=T(ge,m),be=T(m,ge),pe=S[me],Ze=S[me+1],_t=f(ge,ae,Me),at=f(m,h,C),pt=k+be|0,Xt=Te+_e+W(pt,k)|0;Xt=(Xt=(Xt=Xt+_t+W(pt=pt+at|0,at)|0)+pe+W(pt=pt+Ze|0,Ze)|0)+X+W(pt=pt+se|0,se)|0;var ye=mt+fe|0,ue=ke+ce+W(ye,mt)|0;Te=Me,k=C,Me=ae,C=h,ae=ge,h=m,ge=ie+Xt+W(m=c+pt|0,c)|0,ie=ee,c=n,ee=J,n=D,J=Q,D=de,Q=Xt+ue+W(de=pt+ye|0,pt)|0}this._al=this._al+de|0,this._bl=this._bl+D|0,this._cl=this._cl+n|0,this._dl=this._dl+c|0,this._el=this._el+m|0,this._fl=this._fl+h|0,this._gl=this._gl+C|0,this._hl=this._hl+k|0,this._ah=this._ah+Q+W(this._al,de)|0,this._bh=this._bh+J+W(this._bl,D)|0,this._ch=this._ch+ee+W(this._cl,n)|0,this._dh=this._dh+ie+W(this._dl,c)|0,this._eh=this._eh+ge+W(this._el,m)|0,this._fh=this._fh+ae+W(this._fl,h)|0,this._gh=this._gh+Me+W(this._gl,C)|0,this._hh=this._hh+Te+W(this._hl,k)|0},x.prototype._hash=function(){var $=w.allocUnsafe(64);function j(Q,J,ee){$.writeInt32BE(Q,ee),$.writeInt32BE(J,ee+4)}return j(this._ah,this._al,0),j(this._bh,this._bl,8),j(this._ch,this._cl,16),j(this._dh,this._dl,24),j(this._eh,this._el,32),j(this._fh,this._fl,40),j(this._gh,this._gl,48),j(this._hh,this._hl,56),$},Qe.exports=x},2852:function(Qe,te,g){!function(e){"use strict";var t={};Qe.exports?(t.bytesToHex=g(4740).bytesToHex,t.convertString=g(820),Qe.exports=I):(t.bytesToHex=e.convertHex.bytesToHex,t.convertString=e.convertString,e.sha256=I);var w=[];!function(){function d(R){for(var z=Math.sqrt(R),W=2;W<=z;W++)if(!(R%W))return!1;return!0}for(var y=2,F=0;F<64;)d(y)&&(w[F]=4294967296*((R=Math.pow(y,1/3))-(0|R))|0,F++),y++;var R}();var S=function(d){for(var T=[],y=0,F=0;y>>5]|=d[y]<<24-F%32;return T},l=function(d){for(var T=[],y=0;y<32*d.length;y+=8)T.push(d[y>>>5]>>>24-y%32&255);return T},x=[],f=function(d,T,y){for(var F=d[0],R=d[1],z=d[2],W=d[3],$=d[4],j=d[5],Q=d[6],J=d[7],ee=0;ee<64;ee++){if(ee<16)x[ee]=0|T[y+ee];else{var ie=x[ee-15],ae=x[ee-2];x[ee]=((ie<<25|ie>>>7)^(ie<<14|ie>>>18)^ie>>>3)+x[ee-7]+((ae<<15|ae>>>17)^(ae<<13|ae>>>19)^ae>>>10)+x[ee-16]}var de=F&R^F&z^R&z,c=J+(($<<26|$>>>6)^($<<21|$>>>11)^($<<7|$>>>25))+($&j^~$&Q)+w[ee]+x[ee];J=Q,Q=j,j=$,$=W+c|0,W=z,z=R,R=F,F=c+(((F<<30|F>>>2)^(F<<19|F>>>13)^(F<<10|F>>>22))+de)|0}d[0]=d[0]+F|0,d[1]=d[1]+R|0,d[2]=d[2]+z|0,d[3]=d[3]+W|0,d[4]=d[4]+$|0,d[5]=d[5]+j|0,d[6]=d[6]+Q|0,d[7]=d[7]+J|0};function I(d,T){d.constructor===String&&(d=t.convertString.UTF8.stringToBytes(d));var y=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],F=S(d),R=8*d.length;F[R>>5]|=128<<24-R%32,F[15+(R+64>>9<<4)]=R;for(var z=0;z{Qe.exports=w;var e=g(4356).EventEmitter;function w(){e.call(this)}g(1993)(w,e),w.Readable=g(1092),w.Writable=g(5492),w.Duplex=g(1030),w.Transform=g(3410),w.PassThrough=g(3824),w.finished=g(7854),w.pipeline=g(6846),w.Stream=w,w.prototype.pipe=function(S,l){var x=this;function f(z){S.writable&&!1===S.write(z)&&x.pause&&x.pause()}function I(){x.readable&&x.resume&&x.resume()}x.on("data",f),S.on("drain",I),!S._isStdio&&(!l||!1!==l.end)&&(x.on("end",T),x.on("close",y));var d=!1;function T(){d||(d=!0,S.end())}function y(){d||(d=!0,"function"==typeof S.destroy&&S.destroy())}function F(z){if(R(),0===e.listenerCount(this,"error"))throw z}function R(){x.removeListener("data",f),S.removeListener("drain",I),x.removeListener("end",T),x.removeListener("close",y),x.removeListener("error",F),S.removeListener("error",F),x.removeListener("end",R),x.removeListener("close",R),S.removeListener("close",R)}return x.on("error",F),S.on("error",F),x.on("end",R),x.on("close",R),S.on("close",R),S.emit("pipe",x),S}},464:Qe=>{"use strict";var g={};function e(x,f,I){I||(I=Error);var T=function(y){function F(R,z,W){return y.call(this,function d(y,F,R){return"string"==typeof f?f:f(y,F,R)}(R,z,W))||this}return function te(x,f){x.prototype=Object.create(f.prototype),x.prototype.constructor=x,x.__proto__=f}(F,y),F}(I);T.prototype.name=I.name,T.prototype.code=x,g[x]=T}function t(x,f){if(Array.isArray(x)){var I=x.length;return x=x.map(function(d){return String(d)}),I>2?"one of ".concat(f," ").concat(x.slice(0,I-1).join(", "),", or ")+x[I-1]:2===I?"one of ".concat(f," ").concat(x[0]," or ").concat(x[1]):"of ".concat(f," ").concat(x[0])}return"of ".concat(f," ").concat(String(x))}e("ERR_INVALID_OPT_VALUE",function(x,f){return'The value "'+f+'" is invalid for option "'+x+'"'},TypeError),e("ERR_INVALID_ARG_TYPE",function(x,f,I){var d,T;if("string"==typeof f&&function w(x,f,I){return x.substr(!I||I<0?0:+I,f.length)===f}(f,"not ")?(d="must not be",f=f.replace(/^not /,"")):d="must be",function S(x,f,I){return(void 0===I||I>x.length)&&(I=x.length),x.substring(I-f.length,I)===f}(x," argument"))T="The ".concat(x," ").concat(d," ").concat(t(f,"type"));else{var y=function l(x,f,I){return"number"!=typeof I&&(I=0),!(I+f.length>x.length)&&-1!==x.indexOf(f,I)}(x,".")?"property":"argument";T='The "'.concat(x,'" ').concat(y," ").concat(d," ").concat(t(f,"type"))}return T+". Received type ".concat(typeof I)},TypeError),e("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),e("ERR_METHOD_NOT_IMPLEMENTED",function(x){return"The "+x+" method is not implemented"}),e("ERR_STREAM_PREMATURE_CLOSE","Premature close"),e("ERR_STREAM_DESTROYED",function(x){return"Cannot call "+x+" after a stream was destroyed"}),e("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),e("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),e("ERR_STREAM_WRITE_AFTER_END","write after end"),e("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),e("ERR_UNKNOWN_ENCODING",function(x){return"Unknown encoding: "+x},TypeError),e("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Qe.exports.F=g},1030:(Qe,te,g)=>{"use strict";var e=Object.keys||function(T){var y=[];for(var F in T)y.push(F);return y};Qe.exports=f;var t=g(1092),w=g(5492);g(1993)(f,t);for(var S=e(w.prototype),l=0;l{"use strict";Qe.exports=t;var e=g(3410);function t(w){if(!(this instanceof t))return new t(w);e.call(this,w)}g(1993)(t,e),t.prototype._transform=function(w,S,l){l(null,w)}},1092:(Qe,te,g)=>{"use strict";var e;Qe.exports=D,D.ReadableState=de,g(4356);var T,w=function(ke,mt){return ke.listeners(mt).length},S=g(2601),l=g(3838).Buffer,x=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},d=g(7199);T=d&&d.debuglog?d.debuglog("stream"):function(){};var ee,ie,ge,y=g(7606),F=g(8152),z=g(2827).getHighWaterMark,W=g(464).F,$=W.ERR_INVALID_ARG_TYPE,j=W.ERR_STREAM_PUSH_AFTER_EOF,Q=W.ERR_METHOD_NOT_IMPLEMENTED,J=W.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;g(1993)(D,S);var ae=F.errorOrDestroy,Me=["error","close","destroy","pause","resume"];function de(fe,ke,mt){e=e||g(1030),"boolean"!=typeof mt&&(mt=ke instanceof e),this.objectMode=!!(fe=fe||{}).objectMode,mt&&(this.objectMode=this.objectMode||!!fe.readableObjectMode),this.highWaterMark=z(this,fe,"readableHighWaterMark",mt),this.buffer=new y,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!==fe.emitClose,this.autoDestroy=!!fe.autoDestroy,this.destroyed=!1,this.defaultEncoding=fe.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,fe.encoding&&(ee||(ee=g(8454).I),this.decoder=new ee(fe.encoding),this.encoding=fe.encoding)}function D(fe){if(e=e||g(1030),!(this instanceof D))return new D(fe);this._readableState=new de(fe,this,this instanceof e),this.readable=!0,fe&&("function"==typeof fe.read&&(this._read=fe.read),"function"==typeof fe.destroy&&(this._destroy=fe.destroy)),S.call(this)}function n(fe,ke,mt,_e,be){T("readableAddChunk",ke);var Ze,pe=fe._readableState;if(null===ke)pe.reading=!1,function L(fe,ke){if(T("onEofChunk"),!ke.ended){if(ke.decoder){var mt=ke.decoder.end();mt&&mt.length&&(ke.buffer.push(mt),ke.length+=ke.objectMode?1:mt.length)}ke.ended=!0,ke.sync?_(fe):(ke.needReadable=!1,ke.emittedReadable||(ke.emittedReadable=!0,r(fe)))}}(fe,pe);else if(be||(Ze=function m(fe,ke){var mt;return!function I(fe){return l.isBuffer(fe)||fe instanceof x}(ke)&&"string"!=typeof ke&&void 0!==ke&&!fe.objectMode&&(mt=new $("chunk",["string","Buffer","Uint8Array"],ke)),mt}(pe,ke)),Ze)ae(fe,Ze);else if(pe.objectMode||ke&&ke.length>0)if("string"!=typeof ke&&!pe.objectMode&&Object.getPrototypeOf(ke)!==l.prototype&&(ke=function f(fe){return l.from(fe)}(ke)),_e)pe.endEmitted?ae(fe,new J):c(fe,pe,ke,!0);else if(pe.ended)ae(fe,new j);else{if(pe.destroyed)return!1;pe.reading=!1,pe.decoder&&!mt?(ke=pe.decoder.write(ke),pe.objectMode||0!==ke.length?c(fe,pe,ke,!1):v(fe,pe)):c(fe,pe,ke,!1)}else _e||(pe.reading=!1,v(fe,pe));return!pe.ended&&(pe.lengthke.highWaterMark&&(ke.highWaterMark=function C(fe){return fe>=h?fe=h:(fe--,fe|=fe>>>1,fe|=fe>>>2,fe|=fe>>>4,fe|=fe>>>8,fe|=fe>>>16,fe++),fe}(fe)),fe<=ke.length?fe:ke.ended?ke.length:(ke.needReadable=!0,0))}function _(fe){var ke=fe._readableState;T("emitReadable",ke.needReadable,ke.emittedReadable),ke.needReadable=!1,ke.emittedReadable||(T("emitReadable",ke.flowing),ke.emittedReadable=!0,process.nextTick(r,fe))}function r(fe){var ke=fe._readableState;T("emitReadable_",ke.destroyed,ke.length,ke.ended),!ke.destroyed&&(ke.length||ke.ended)&&(fe.emit("readable"),ke.emittedReadable=!1),ke.needReadable=!ke.flowing&&!ke.ended&&ke.length<=ke.highWaterMark,Ke(fe)}function v(fe,ke){ke.readingMore||(ke.readingMore=!0,process.nextTick(V,fe,ke))}function V(fe,ke){for(;!ke.reading&&!ke.ended&&(ke.length0,ke.resumeScheduled&&!ke.paused?ke.flowing=!0:fe.listenerCount("data")>0&&fe.resume()}function Ee(fe){T("readable nexttick read 0"),fe.read(0)}function qe(fe,ke){T("resume",ke.reading),ke.reading||fe.read(0),ke.resumeScheduled=!1,fe.emit("resume"),Ke(fe),ke.flowing&&!ke.reading&&fe.read(0)}function Ke(fe){var ke=fe._readableState;for(T("flow",ke.flowing);ke.flowing&&null!==fe.read(););}function se(fe,ke){return 0===ke.length?null:(ke.objectMode?mt=ke.buffer.shift():!fe||fe>=ke.length?(mt=ke.decoder?ke.buffer.join(""):1===ke.buffer.length?ke.buffer.first():ke.buffer.concat(ke.length),ke.buffer.clear()):mt=ke.buffer.consume(fe,ke.decoder),mt);var mt}function X(fe){var ke=fe._readableState;T("endReadable",ke.endEmitted),ke.endEmitted||(ke.ended=!0,process.nextTick(me,ke,fe))}function me(fe,ke){if(T("endReadableNT",fe.endEmitted,fe.length),!fe.endEmitted&&0===fe.length&&(fe.endEmitted=!0,ke.readable=!1,ke.emit("end"),fe.autoDestroy)){var mt=ke._writableState;(!mt||mt.autoDestroy&&mt.finished)&&ke.destroy()}}function ce(fe,ke){for(var mt=0,_e=fe.length;mt<_e;mt++)if(fe[mt]===ke)return mt;return-1}D.prototype.read=function(fe){T("read",fe),fe=parseInt(fe,10);var ke=this._readableState,mt=fe;if(0!==fe&&(ke.emittedReadable=!1),0===fe&&ke.needReadable&&((0!==ke.highWaterMark?ke.length>=ke.highWaterMark:ke.length>0)||ke.ended))return T("read: emitReadable",ke.length,ke.ended),0===ke.length&&ke.ended?X(this):_(this),null;if(0===(fe=k(fe,ke))&&ke.ended)return 0===ke.length&&X(this),null;var be,_e=ke.needReadable;return T("need readable",_e),(0===ke.length||ke.length-fe0?se(fe,ke):null)?(ke.needReadable=ke.length<=ke.highWaterMark,fe=0):(ke.length-=fe,ke.awaitDrain=0),0===ke.length&&(ke.ended||(ke.needReadable=!0),mt!==fe&&ke.ended&&X(this)),null!==be&&this.emit("data",be),be},D.prototype._read=function(fe){ae(this,new Q("_read()"))},D.prototype.pipe=function(fe,ke){var mt=this,_e=this._readableState;switch(_e.pipesCount){case 0:_e.pipes=fe;break;case 1:_e.pipes=[_e.pipes,fe];break;default:_e.pipes.push(fe)}_e.pipesCount+=1,T("pipe count=%d opts=%j",_e.pipesCount,ke);var pe=ke&&!1===ke.end||fe===process.stdout||fe===process.stderr?Xe:_t;function _t(){T("onend"),fe.end()}_e.endEmitted?process.nextTick(pe):mt.once("end",pe),fe.on("unpipe",function Ze(yt,Ye){T("onunpipe"),yt===mt&&Ye&&!1===Ye.hasUnpiped&&(Ye.hasUnpiped=!0,function Xt(){T("cleanup"),fe.removeListener("close",Ie),fe.removeListener("finish",He),fe.removeListener("drain",at),fe.removeListener("error",ue),fe.removeListener("unpipe",Ze),mt.removeListener("end",_t),mt.removeListener("end",Xe),mt.removeListener("data",ye),pt=!0,_e.awaitDrain&&(!fe._writableState||fe._writableState.needDrain)&&at()}())});var at=function N(fe){return function(){var mt=fe._readableState;T("pipeOnDrain",mt.awaitDrain),mt.awaitDrain&&mt.awaitDrain--,0===mt.awaitDrain&&w(fe,"data")&&(mt.flowing=!0,Ke(fe))}}(mt);fe.on("drain",at);var pt=!1;function ye(yt){T("ondata");var Ye=fe.write(yt);T("dest.write",Ye),!1===Ye&&((1===_e.pipesCount&&_e.pipes===fe||_e.pipesCount>1&&-1!==ce(_e.pipes,fe))&&!pt&&(T("false write response, pause",_e.awaitDrain),_e.awaitDrain++),mt.pause())}function ue(yt){T("onerror",yt),Xe(),fe.removeListener("error",ue),0===w(fe,"error")&&ae(fe,yt)}function Ie(){fe.removeListener("finish",He),Xe()}function He(){T("onfinish"),fe.removeListener("close",Ie),Xe()}function Xe(){T("unpipe"),mt.unpipe(fe)}return mt.on("data",ye),function Te(fe,ke,mt){if("function"==typeof fe.prependListener)return fe.prependListener(ke,mt);fe._events&&fe._events[ke]?Array.isArray(fe._events[ke])?fe._events[ke].unshift(mt):fe._events[ke]=[mt,fe._events[ke]]:fe.on(ke,mt)}(fe,"error",ue),fe.once("close",Ie),fe.once("finish",He),fe.emit("pipe",mt),_e.flowing||(T("pipe resume"),mt.resume()),fe},D.prototype.unpipe=function(fe){var ke=this._readableState,mt={hasUnpiped:!1};if(0===ke.pipesCount)return this;if(1===ke.pipesCount)return fe&&fe!==ke.pipes||(fe||(fe=ke.pipes),ke.pipes=null,ke.pipesCount=0,ke.flowing=!1,fe&&fe.emit("unpipe",this,mt)),this;if(!fe){var _e=ke.pipes,be=ke.pipesCount;ke.pipes=null,ke.pipesCount=0,ke.flowing=!1;for(var pe=0;pe0,!1!==_e.flowing&&this.resume()):"readable"===fe&&!_e.endEmitted&&!_e.readableListening&&(_e.readableListening=_e.needReadable=!0,_e.flowing=!1,_e.emittedReadable=!1,T("on readable",_e.length,_e.reading),_e.length?_(this):_e.reading||process.nextTick(Ee,this)),mt},D.prototype.removeListener=function(fe,ke){var mt=S.prototype.removeListener.call(this,fe,ke);return"readable"===fe&&process.nextTick(ne,this),mt},D.prototype.removeAllListeners=function(fe){var ke=S.prototype.removeAllListeners.apply(this,arguments);return("readable"===fe||void 0===fe)&&process.nextTick(ne,this),ke},D.prototype.resume=function(){var fe=this._readableState;return fe.flowing||(T("resume"),fe.flowing=!fe.readableListening,function ze(fe,ke){ke.resumeScheduled||(ke.resumeScheduled=!0,process.nextTick(qe,fe,ke))}(this,fe)),fe.paused=!1,this},D.prototype.pause=function(){return T("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(T("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},D.prototype.wrap=function(fe){var ke=this,mt=this._readableState,_e=!1;for(var be in fe.on("end",function(){if(T("wrapped end"),mt.decoder&&!mt.ended){var Ze=mt.decoder.end();Ze&&Ze.length&&ke.push(Ze)}ke.push(null)}),fe.on("data",function(Ze){T("wrapped data"),mt.decoder&&(Ze=mt.decoder.write(Ze)),mt.objectMode&&null==Ze||!(mt.objectMode||Ze&&Ze.length)||ke.push(Ze)||(_e=!0,fe.pause())}),fe)void 0===this[be]&&"function"==typeof fe[be]&&(this[be]=function(_t){return function(){return fe[_t].apply(fe,arguments)}}(be));for(var pe=0;pe{"use strict";Qe.exports=I;var e=g(464).F,t=e.ERR_METHOD_NOT_IMPLEMENTED,w=e.ERR_MULTIPLE_CALLBACK,S=e.ERR_TRANSFORM_ALREADY_TRANSFORMING,l=e.ERR_TRANSFORM_WITH_LENGTH_0,x=g(1030);function f(y,F){var R=this._transformState;R.transforming=!1;var z=R.writecb;if(null===z)return this.emit("error",new w);R.writechunk=null,R.writecb=null,null!=F&&this.push(F),z(y);var W=this._readableState;W.reading=!1,(W.needReadable||W.length{"use strict";function t(Ke){var se=this;this.next=null,this.entry=null,this.finish=function(){!function qe(Ke,se,X){var me=Ke.entry;for(Ke.entry=null;me;){var ce=me.callback;se.pendingcb--,ce(X),me=me.next}se.corkedRequestsFree.next=Ke}(se,Ke)}}var w;Qe.exports=de,de.WritableState=Me;var Te,S={deprecate:g(3398)},l=g(2601),x=g(3838).Buffer,f=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},T=g(8152),F=g(2827).getHighWaterMark,R=g(464).F,z=R.ERR_INVALID_ARG_TYPE,W=R.ERR_METHOD_NOT_IMPLEMENTED,$=R.ERR_MULTIPLE_CALLBACK,j=R.ERR_STREAM_CANNOT_PIPE,Q=R.ERR_STREAM_DESTROYED,J=R.ERR_STREAM_NULL_VALUES,ee=R.ERR_STREAM_WRITE_AFTER_END,ie=R.ERR_UNKNOWN_ENCODING,ge=T.errorOrDestroy;function ae(){}function Me(Ke,se,X){w=w||g(1030),"boolean"!=typeof X&&(X=se instanceof w),this.objectMode=!!(Ke=Ke||{}).objectMode,X&&(this.objectMode=this.objectMode||!!Ke.writableObjectMode),this.highWaterMark=F(this,Ke,"writableHighWaterMark",X),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===Ke.decodeStrings),this.defaultEncoding=Ke.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ce){!function L(Ke,se){var X=Ke._writableState,me=X.sync,ce=X.writecb;if("function"!=typeof ce)throw new $;if(function k(Ke){Ke.writing=!1,Ke.writecb=null,Ke.length-=Ke.writelen,Ke.writelen=0}(X),se)!function C(Ke,se,X,me,ce){--se.pendingcb,X?(process.nextTick(ce,me),process.nextTick(Ee,Ke,se),Ke._writableState.errorEmitted=!0,ge(Ke,me)):(ce(me),Ke._writableState.errorEmitted=!0,ge(Ke,me),Ee(Ke,se))}(Ke,X,me,se,ce);else{var fe=V(X)||Ke.destroyed;!fe&&!X.corked&&!X.bufferProcessing&&X.bufferedRequest&&v(Ke,X),me?process.nextTick(_,Ke,X,fe,ce):_(Ke,X,fe,ce)}}(se,ce)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==Ke.emitClose,this.autoDestroy=!!Ke.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new t(this)}function de(Ke){var se=this instanceof(w=w||g(1030));if(!se&&!Te.call(de,this))return new de(Ke);this._writableState=new Me(Ke,this,se),this.writable=!0,Ke&&("function"==typeof Ke.write&&(this._write=Ke.write),"function"==typeof Ke.writev&&(this._writev=Ke.writev),"function"==typeof Ke.destroy&&(this._destroy=Ke.destroy),"function"==typeof Ke.final&&(this._final=Ke.final)),l.call(this)}function h(Ke,se,X,me,ce,fe,ke){se.writelen=me,se.writecb=ke,se.writing=!0,se.sync=!0,se.destroyed?se.onwrite(new Q("write")):X?Ke._writev(ce,se.onwrite):Ke._write(ce,fe,se.onwrite),se.sync=!1}function _(Ke,se,X,me){X||function r(Ke,se){0===se.length&&se.needDrain&&(se.needDrain=!1,Ke.emit("drain"))}(Ke,se),se.pendingcb--,me(),Ee(Ke,se)}function v(Ke,se){se.bufferProcessing=!0;var X=se.bufferedRequest;if(Ke._writev&&X&&X.next){var ce=new Array(se.bufferedRequestCount),fe=se.corkedRequestsFree;fe.entry=X;for(var ke=0,mt=!0;X;)ce[ke]=X,X.isBuf||(mt=!1),X=X.next,ke+=1;ce.allBuffers=mt,h(Ke,se,!0,se.length,ce,"",fe.finish),se.pendingcb++,se.lastBufferedRequest=null,fe.next?(se.corkedRequestsFree=fe.next,fe.next=null):se.corkedRequestsFree=new t(se),se.bufferedRequestCount=0}else{for(;X;){var _e=X.chunk;if(h(Ke,se,!1,se.objectMode?1:_e.length,_e,X.encoding,X.callback),X=X.next,se.bufferedRequestCount--,se.writing)break}null===X&&(se.lastBufferedRequest=null)}se.bufferedRequest=X,se.bufferProcessing=!1}function V(Ke){return Ke.ending&&0===Ke.length&&null===Ke.bufferedRequest&&!Ke.finished&&!Ke.writing}function N(Ke,se){Ke._final(function(X){se.pendingcb--,X&&ge(Ke,X),se.prefinished=!0,Ke.emit("prefinish"),Ee(Ke,se)})}function Ee(Ke,se){var X=V(se);if(X&&(function ne(Ke,se){!se.prefinished&&!se.finalCalled&&("function"!=typeof Ke._final||se.destroyed?(se.prefinished=!0,Ke.emit("prefinish")):(se.pendingcb++,se.finalCalled=!0,process.nextTick(N,Ke,se)))}(Ke,se),0===se.pendingcb&&(se.finished=!0,Ke.emit("finish"),se.autoDestroy))){var me=Ke._readableState;(!me||me.autoDestroy&&me.endEmitted)&&Ke.destroy()}return X}g(1993)(de,l),Me.prototype.getBuffer=function(){for(var se=this.bufferedRequest,X=[];se;)X.push(se),se=se.next;return X},function(){try{Object.defineProperty(Me.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]?(Te=Function.prototype[Symbol.hasInstance],Object.defineProperty(de,Symbol.hasInstance,{value:function(se){return!!Te.call(this,se)||this===de&&se&&se._writableState instanceof Me}})):Te=function(se){return se instanceof this},de.prototype.pipe=function(){ge(this,new j)},de.prototype.write=function(Ke,se,X){var me=this._writableState,ce=!1,fe=!me.objectMode&&function d(Ke){return x.isBuffer(Ke)||Ke instanceof f}(Ke);return fe&&!x.isBuffer(Ke)&&(Ke=function I(Ke){return x.from(Ke)}(Ke)),"function"==typeof se&&(X=se,se=null),fe?se="buffer":se||(se=me.defaultEncoding),"function"!=typeof X&&(X=ae),me.ending?function D(Ke,se){var X=new ee;ge(Ke,X),process.nextTick(se,X)}(this,X):(fe||function n(Ke,se,X,me){var ce;return null===X?ce=new J:"string"!=typeof X&&!se.objectMode&&(ce=new z("chunk",["string","Buffer"],X)),!ce||(ge(Ke,ce),process.nextTick(me,ce),!1)}(this,me,Ke,X))&&(me.pendingcb++,ce=function m(Ke,se,X,me,ce,fe){if(!X){var ke=function c(Ke,se,X){return!Ke.objectMode&&!1!==Ke.decodeStrings&&"string"==typeof se&&(se=x.from(se,X)),se}(se,me,ce);me!==ke&&(X=!0,ce="buffer",me=ke)}var mt=se.objectMode?1:me.length;se.length+=mt;var _e=se.length-1))throw new ie(se);return this._writableState.defaultEncoding=se,this},Object.defineProperty(de.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(de.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),de.prototype._write=function(Ke,se,X){X(new W("_write()"))},de.prototype._writev=null,de.prototype.end=function(Ke,se,X){var me=this._writableState;return"function"==typeof Ke?(X=Ke,Ke=null,se=null):"function"==typeof se&&(X=se,se=null),null!=Ke&&this.write(Ke,se),me.corked&&(me.corked=1,this.uncork()),me.ending||function ze(Ke,se,X){se.ending=!0,Ee(Ke,se),X&&(se.finished?process.nextTick(X):Ke.once("finish",X)),se.ended=!0,Ke.writable=!1}(this,me,X),this},Object.defineProperty(de.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(de.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(se){this._writableState&&(this._writableState.destroyed=se)}}),de.prototype.destroy=T.destroy,de.prototype._undestroy=T.undestroy,de.prototype._destroy=function(Ke,se){se(Ke)}},2683:(Qe,te,g)=>{"use strict";var e;function t(ee,ie,ge){return ie=function w(ee){var ie=function S(ee,ie){if("object"!=typeof ee||null===ee)return ee;var ge=ee[Symbol.toPrimitive];if(void 0!==ge){var ae=ge.call(ee,ie||"default");if("object"!=typeof ae)return ae;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===ie?String:Number)(ee)}(ee,"string");return"symbol"==typeof ie?ie:String(ie)}(ie),ie in ee?Object.defineProperty(ee,ie,{value:ge,enumerable:!0,configurable:!0,writable:!0}):ee[ie]=ge,ee}var l=g(7854),x=Symbol("lastResolve"),f=Symbol("lastReject"),I=Symbol("error"),d=Symbol("ended"),T=Symbol("lastPromise"),y=Symbol("handlePromise"),F=Symbol("stream");function R(ee,ie){return{value:ee,done:ie}}function z(ee){var ie=ee[x];if(null!==ie){var ge=ee[F].read();null!==ge&&(ee[T]=null,ee[x]=null,ee[f]=null,ie(R(ge,!1)))}}function W(ee){process.nextTick(z,ee)}var j=Object.getPrototypeOf(function(){}),Q=Object.setPrototypeOf((t(e={get stream(){return this[F]},next:function(){var ie=this,ge=this[I];if(null!==ge)return Promise.reject(ge);if(this[d])return Promise.resolve(R(void 0,!0));if(this[F].destroyed)return new Promise(function(de,D){process.nextTick(function(){ie[I]?D(ie[I]):de(R(void 0,!0))})});var Me,ae=this[T];if(ae)Me=new Promise(function $(ee,ie){return function(ge,ae){ee.then(function(){ie[d]?ge(R(void 0,!0)):ie[y](ge,ae)},ae)}}(ae,this));else{var Te=this[F].read();if(null!==Te)return Promise.resolve(R(Te,!1));Me=new Promise(this[y])}return this[T]=Me,Me}},Symbol.asyncIterator,function(){return this}),t(e,"return",function(){var ie=this;return new Promise(function(ge,ae){ie[F].destroy(null,function(Me){Me?ae(Me):ge(R(void 0,!0))})})}),e),j);Qe.exports=function(ie){var ge,ae=Object.create(Q,(t(ge={},F,{value:ie,writable:!0}),t(ge,x,{value:null,writable:!0}),t(ge,f,{value:null,writable:!0}),t(ge,I,{value:null,writable:!0}),t(ge,d,{value:ie._readableState.endEmitted,writable:!0}),t(ge,y,{value:function(Te,de){var D=ae[F].read();D?(ae[T]=null,ae[x]=null,ae[f]=null,Te(R(D,!1))):(ae[x]=Te,ae[f]=de)},writable:!0}),ge));return ae[T]=null,l(ie,function(Me){if(Me&&"ERR_STREAM_PREMATURE_CLOSE"!==Me.code){var Te=ae[f];return null!==Te&&(ae[T]=null,ae[x]=null,ae[f]=null,Te(Me)),void(ae[I]=Me)}var de=ae[x];null!==de&&(ae[T]=null,ae[x]=null,ae[f]=null,de(R(void 0,!0))),ae[d]=!0}),ie.on("readable",W.bind(null,ae)),ae}},7606:(Qe,te,g)=>{"use strict";function e(W,$){var j=Object.keys(W);if(Object.getOwnPropertySymbols){var Q=Object.getOwnPropertySymbols(W);$&&(Q=Q.filter(function(J){return Object.getOwnPropertyDescriptor(W,J).enumerable})),j.push.apply(j,Q)}return j}function t(W){for(var $=1;$0?this.tail.next=Q:this.head=Q,this.tail=Q,++this.length}},{key:"unshift",value:function(j){var Q={data:j,next:this.head};0===this.length&&(this.tail=Q),this.head=Q,++this.length}},{key:"shift",value:function(){if(0!==this.length){var j=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,j}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(j){if(0===this.length)return"";for(var Q=this.head,J=""+Q.data;Q=Q.next;)J+=j+Q.data;return J}},{key:"concat",value:function(j){if(0===this.length)return T.alloc(0);for(var Q=T.allocUnsafe(j>>>0),J=this.head,ee=0;J;)z(J.data,Q,ee),ee+=J.data.length,J=J.next;return Q}},{key:"consume",value:function(j,Q){var J;return jie.length?ie.length:j;if(ee+=ge===ie.length?ie:ie.slice(0,j),0==(j-=ge)){ge===ie.length?(++J,this.head=Q.next?Q.next:this.tail=null):(this.head=Q,Q.data=ie.slice(ge));break}++J}return this.length-=J,ee}},{key:"_getBuffer",value:function(j){var Q=T.allocUnsafe(j),J=this.head,ee=1;for(J.data.copy(Q),j-=J.data.length;J=J.next;){var ie=J.data,ge=j>ie.length?ie.length:j;if(ie.copy(Q,Q.length-j,0,ge),0==(j-=ge)){ge===ie.length?(++ee,this.head=J.next?J.next:this.tail=null):(this.head=J,J.data=ie.slice(ge));break}++ee}return this.length-=ee,Q}},{key:R,value:function(j,Q){return F(this,t(t({},Q),{},{depth:0,customInspect:!1}))}}]),W}()},8152:Qe=>{"use strict";function g(l,x){w(l,x),e(l)}function e(l){l._writableState&&!l._writableState.emitClose||l._readableState&&!l._readableState.emitClose||l.emit("close")}function w(l,x){l.emit("error",x)}Qe.exports={destroy:function te(l,x){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(x?x(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(w,this,l)):process.nextTick(w,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(T){!x&&T?f._writableState?f._writableState.errorEmitted?process.nextTick(e,f):(f._writableState.errorEmitted=!0,process.nextTick(g,f,T)):process.nextTick(g,f,T):x?(process.nextTick(e,f),x(T)):process.nextTick(e,f)}),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(l,x){var f=l._readableState,I=l._writableState;f&&f.autoDestroy||I&&I.autoDestroy?l.destroy(x):l.emit("error",x)}}},7854:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_STREAM_PREMATURE_CLOSE;function w(){}Qe.exports=function l(x,f,I){if("function"==typeof f)return l(x,null,f);f||(f={}),I=function t(x){var f=!1;return function(){if(!f){f=!0;for(var I=arguments.length,d=new Array(I),T=0;T{Qe.exports=function(){throw new Error("Readable.from is not available in the browser")}},6846:(Qe,te,g)=>{"use strict";var e,w=g(464).F,S=w.ERR_MISSING_ARGS,l=w.ERR_STREAM_DESTROYED;function x(R){if(R)throw R}function d(R){R()}function T(R,z){return R.pipe(z)}Qe.exports=function F(){for(var R=arguments.length,z=new Array(R),W=0;W0,function(ae){j||(j=ae),ae&&Q.forEach(d),!ie&&(Q.forEach(d),$(j))})});return z.reduce(T)}},2827:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_INVALID_OPT_VALUE;Qe.exports={getHighWaterMark:function w(S,l,x,f){var I=function t(S,l,x){return null!=S.highWaterMark?S.highWaterMark:l?S[x]:null}(l,f,x);if(null!=I){if(!isFinite(I)||Math.floor(I)!==I||I<0)throw new e(f?x:"highWaterMark",I);return Math.floor(I)}return S.objectMode?16:16384}}},2601:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},8454:(Qe,te,g)=>{"use strict";var e=g(4272).Buffer,t=e.isEncoding||function(Q){switch((Q=""+Q)&&Q.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 l(Q){var J;switch(this.encoding=function S(Q){var J=function w(Q){if(!Q)return"utf8";for(var J;;)switch(Q){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 Q;default:if(J)return;Q=(""+Q).toLowerCase(),J=!0}}(Q);if("string"!=typeof J&&(e.isEncoding===t||!t(Q)))throw new Error("Unknown encoding: "+Q);return J||Q}(Q),this.encoding){case"utf16le":this.text=F,this.end=R,J=4;break;case"utf8":this.fillLast=d,J=4;break;case"base64":this.text=z,this.end=W,J=3;break;default:return this.write=$,void(this.end=j)}this.lastNeed=0,this.lastTotal=0,this.lastChar=e.allocUnsafe(J)}function x(Q){return Q<=127?0:Q>>5==6?2:Q>>4==14?3:Q>>3==30?4:Q>>6==2?-1:-2}function d(Q){var J=this.lastTotal-this.lastNeed,ee=function I(Q,J,ee){if(128!=(192&J[0]))return Q.lastNeed=0,"\ufffd";if(Q.lastNeed>1&&J.length>1){if(128!=(192&J[1]))return Q.lastNeed=1,"\ufffd";if(Q.lastNeed>2&&J.length>2&&128!=(192&J[2]))return Q.lastNeed=2,"\ufffd"}}(this,Q);return void 0!==ee?ee:this.lastNeed<=Q.length?(Q.copy(this.lastChar,J,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(Q.copy(this.lastChar,J,0,Q.length),void(this.lastNeed-=Q.length))}function F(Q,J){if((Q.length-J)%2==0){var ee=Q.toString("utf16le",J);if(ee){var ie=ee.charCodeAt(ee.length-1);if(ie>=55296&&ie<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1],ee.slice(0,-1)}return ee}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=Q[Q.length-1],Q.toString("utf16le",J,Q.length-1)}function R(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):J}function z(Q,J){var ee=(Q.length-J)%3;return 0===ee?Q.toString("base64",J):(this.lastNeed=3-ee,this.lastTotal=3,1===ee?this.lastChar[0]=Q[Q.length-1]:(this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1]),Q.toString("base64",J,Q.length-ee))}function W(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("base64",0,3-this.lastNeed):J}function $(Q){return Q.toString(this.encoding)}function j(Q){return Q&&Q.length?this.write(Q):""}te.I=l,l.prototype.write=function(Q){if(0===Q.length)return"";var J,ee;if(this.lastNeed){if(void 0===(J=this.fillLast(Q)))return"";ee=this.lastNeed,this.lastNeed=0}else ee=0;return ee=0?(ge>0&&(Q.lastNeed=ge-1),ge):--ie=0?(ge>0&&(Q.lastNeed=ge-2),ge):--ie=0?(ge>0&&(2===ge?ge=0:Q.lastNeed=ge-3),ge):0}(this,Q,J);if(!this.lastNeed)return Q.toString("utf8",J);this.lastTotal=ee;var ie=Q.length-(ee-this.lastNeed);return Q.copy(this.lastChar,0,ie),Q.toString("utf8",J,ie)},l.prototype.fillLast=function(Q){if(this.lastNeed<=Q.length)return Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,Q.length),this.lastNeed-=Q.length}},4272:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},7851:(Qe,te,g)=>{var e=g(1876);te.encode=e.encode,te.decode=e.decode},1876:(Qe,te)=>{"use strict";var e=[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];te.encode=function(w){Buffer.isBuffer(w)||(w=new Buffer(w));for(var S=0,l=0,x=0,f=0,I=new Buffer(8*function t(w){var S=Math.floor(w.length/5);return w.length%5==0?S:S+1}(w));S3?(f=(f=d&255>>x)<<(x=(x+5)%8)|(S+1>8-x,S++):(f=d>>8-(x+5)&31,0==(x=(x+5)%8)&&S++),I[l]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(f),l++}for(S=l;S>>(S=(S+5)%8),f++,x=255&l<<8-S)}return I.slice(0,f)}},3398:Qe=>{function g(e){try{if(!global.localStorage)return!1}catch{return!1}var t=global.localStorage[e];return null!=t&&"true"===String(t).toLowerCase()}Qe.exports=function te(e,t){if(g("noDeprecation"))return e;var w=!1;return function S(){if(!w){if(g("throwDeprecation"))throw new Error(t);g("traceDeprecation")?console.trace(t):console.warn(t),w=!0}return e.apply(this,arguments)}}},8326:(__unused_webpack_module,exports)=>{var indexOf=function(Qe,te){if(Qe.indexOf)return Qe.indexOf(te);for(var g=0;g{},7790:()=>{},7965:()=>{},6089:()=>{},9368:()=>{},4688:()=>{},1069:()=>{},5340:()=>{},9838:()=>{},3779:()=>{},7199:()=>{},9969:(Qe,te,g)=>{"use strict";g.d(te,{FX:()=>de,If:()=>e,K2:()=>x,MA:()=>F,Os:()=>l,P:()=>z,hZ:()=>w,i0:()=>S,i7:()=>d,iF:()=>f,kY:()=>T,kp:()=>t,sf:()=>Me,ui:()=>Te,wk:()=>I});var e=function(D){return D[D.State=0]="State",D[D.Transition=1]="Transition",D[D.Sequence=2]="Sequence",D[D.Group=3]="Group",D[D.Animate=4]="Animate",D[D.Keyframes=5]="Keyframes",D[D.Style=6]="Style",D[D.Trigger=7]="Trigger",D[D.Reference=8]="Reference",D[D.AnimateChild=9]="AnimateChild",D[D.AnimateRef=10]="AnimateRef",D[D.Query=11]="Query",D[D.Stagger=12]="Stagger",D}(e||{});const t="*";function w(D,n){return{type:e.Trigger,name:D,definitions:n,options:{}}}function S(D,n=null){return{type:e.Animate,styles:n,timings:D}}function l(D,n=null){return{type:e.Group,steps:D,options:n}}function x(D,n=null){return{type:e.Sequence,steps:D,options:n}}function f(D){return{type:e.Style,styles:D,offset:null}}function I(D,n,c){return{type:e.State,name:D,styles:n,options:c}}function d(D){return{type:e.Keyframes,steps:D}}function T(D,n,c=null){return{type:e.Transition,expr:D,animation:n,options:c}}function F(D=null){return{type:e.AnimateChild,options:D}}function z(D,n,c=null){return{type:e.Query,selector:D,animation:n,options:c}}class Me{constructor(n=0,c=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._originalOnDoneFns=[],this._originalOnStartFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=n+c}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}onStart(n){this._originalOnStartFns.push(n),this._onStartFns.push(n)}onDone(n){this._originalOnDoneFns.push(n),this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(n=>n()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(n){this._position=this.totalTime?n*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}class Te{constructor(n){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=n;let c=0,m=0,h=0;const C=this.players.length;0==C?queueMicrotask(()=>this._onFinish()):this.players.forEach(k=>{k.onDone(()=>{++c==C&&this._onFinish()}),k.onDestroy(()=>{++m==C&&this._onDestroy()}),k.onStart(()=>{++h==C&&this._onStart()})}),this.totalTime=this.players.reduce((k,L)=>Math.max(k,L.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}init(){this.players.forEach(n=>n.init())}onStart(n){this._onStartFns.push(n)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(n=>n()),this._onStartFns=[])}onDone(n){this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(n=>n.play())}pause(){this.players.forEach(n=>n.pause())}restart(){this.players.forEach(n=>n.restart())}finish(){this._onFinish(),this.players.forEach(n=>n.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(n=>n.destroy()),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this.players.forEach(n=>n.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(n){const c=n*this.totalTime;this.players.forEach(m=>{const h=m.totalTime?Math.min(1,c/m.totalTime):1;m.setPosition(h)})}getPosition(){const n=this.players.reduce((c,m)=>null===c||m.totalTime>c.totalTime?m:c,null);return null!=n?n.getPosition():0}beforeDestroy(){this.players.forEach(n=>{n.beforeDestroy&&n.beforeDestroy()})}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}const de="!"},8617:(Qe,te,g)=>{"use strict";g.d(te,{Ae:()=>ge,Ai:()=>rt,Au:()=>C,Bu:()=>k,FN:()=>oe,GX:()=>fe,Pd:()=>Ae,Q_:()=>dt,Z7:()=>_,_G:()=>_t,kB:()=>ke,px:()=>ie,vR:()=>tt,vr:()=>n,w6:()=>at});var e=g(177),t=g(4438),w=g(6860),S=g(1413),l=g(8359),x=g(4412),f=g(7673),I=g(7336),d=g(8141),T=g(152),y=g(5964),F=g(6354),R=g(6697),z=g(5245),W=g(3294),$=g(6977),j=g(2318),Q=g(4085),J=g(9327);const ee=" ";function ie(we,he,q){const Re=ae(we,he);q=q.trim(),!Re.some(Ne=>Ne.trim()===q)&&(Re.push(q),we.setAttribute(he,Re.join(ee)))}function ge(we,he,q){const Re=ae(we,he);q=q.trim();const Ne=Re.filter(gt=>gt!==q);Ne.length?we.setAttribute(he,Ne.join(ee)):we.removeAttribute(he)}function ae(we,he){return we.getAttribute(he)?.match(/\S+/g)??[]}const Te="cdk-describedby-message",de="cdk-describedby-host";let D=0,n=(()=>{class we{constructor(q,Re){this._platform=Re,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+D++,this._document=q,this._id=(0,t.WQX)(t.sZ2)+"-"+D++}describe(q,Re,Ne){if(!this._canBeDescribed(q,Re))return;const gt=c(Re,Ne);"string"!=typeof Re?(m(Re,this._id),this._messageRegistry.set(gt,{messageElement:Re,referenceCount:0})):this._messageRegistry.has(gt)||this._createMessageElement(Re,Ne),this._isElementDescribedByMessage(q,gt)||this._addMessageReference(q,gt)}removeDescription(q,Re,Ne){if(!Re||!this._isElementNode(q))return;const gt=c(Re,Ne);if(this._isElementDescribedByMessage(q,gt)&&this._removeMessageReference(q,gt),"string"==typeof Re){const $e=this._messageRegistry.get(gt);$e&&0===$e.referenceCount&&this._deleteMessageElement(gt)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const q=this._document.querySelectorAll(`[${de}="${this._id}"]`);for(let Re=0;Re0!=Ne.indexOf(Te));q.setAttribute("aria-describedby",Re.join(" "))}_addMessageReference(q,Re){const Ne=this._messageRegistry.get(Re);ie(q,"aria-describedby",Ne.messageElement.id),q.setAttribute(de,this._id),Ne.referenceCount++}_removeMessageReference(q,Re){const Ne=this._messageRegistry.get(Re);Ne.referenceCount--,ge(q,"aria-describedby",Ne.messageElement.id),q.removeAttribute(de)}_isElementDescribedByMessage(q,Re){const Ne=ae(q,"aria-describedby"),gt=this._messageRegistry.get(Re),$e=gt&>.messageElement.id;return!!$e&&-1!=Ne.indexOf($e)}_canBeDescribed(q,Re){if(!this._isElementNode(q))return!1;if(Re&&"object"==typeof Re)return!0;const Ne=null==Re?"":`${Re}`.trim(),gt=q.getAttribute("aria-label");return!(!Ne||gt&>.trim()===Ne)}_isElementNode(q){return q.nodeType===this._document.ELEMENT_NODE}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(e.qQ),t.KVO(w.OD))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function c(we,he){return"string"==typeof we?`${he||""}/${we}`:we}function m(we,he){we.id||(we.id=`${Te}-${he}-${D++}`)}class h{constructor(he,q){this._items=he,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new S.B,this._typeaheadSubscription=l.yU.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._pageUpAndDown={enabled:!1,delta:10},this._skipPredicateFn=Re=>Re.disabled,this._pressedLetters=[],this.tabOut=new S.B,this.change=new S.B,he instanceof t.rOR?this._itemChangesSubscription=he.changes.subscribe(Re=>this._itemsChanged(Re.toArray())):(0,t.Hps)(he)&&(this._effectRef=(0,t.QZP)(()=>this._itemsChanged(he()),{injector:q}))}skipPredicate(he){return this._skipPredicateFn=he,this}withWrap(he=!0){return this._wrap=he,this}withVerticalOrientation(he=!0){return this._vertical=he,this}withHorizontalOrientation(he){return this._horizontal=he,this}withAllowedModifierKeys(he){return this._allowedModifierKeys=he,this}withTypeAhead(he=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,d.M)(q=>this._pressedLetters.push(q)),(0,T.B)(he),(0,y.p)(()=>this._pressedLetters.length>0),(0,F.T)(()=>this._pressedLetters.join(""))).subscribe(q=>{const Re=this._getItemsArray();for(let Ne=1;Ne!he[gt]||this._allowedModifierKeys.indexOf(gt)>-1);switch(q){case I.wn:return void this.tabOut.next();case I.n6:if(this._vertical&&Ne){this.setNextItemActive();break}return;case I.i7:if(this._vertical&&Ne){this.setPreviousItemActive();break}return;case I.LE:if(this._horizontal&&Ne){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case I.UQ:if(this._horizontal&&Ne){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case I.yZ:if(this._homeAndEnd&&Ne){this.setFirstItemActive();break}return;case I.Kp:if(this._homeAndEnd&&Ne){this.setLastItemActive();break}return;case I.w_:if(this._pageUpAndDown.enabled&&Ne){const gt=this._activeItemIndex-this._pageUpAndDown.delta;this._setActiveItemByIndex(gt>0?gt:0,1);break}return;case I.dB:if(this._pageUpAndDown.enabled&&Ne){const gt=this._activeItemIndex+this._pageUpAndDown.delta,$e=this._getItemsArray().length;this._setActiveItemByIndex(gt<$e?gt:$e-1,-1);break}return;default:return void((Ne||(0,I.rp)(he,"shiftKey"))&&(he.key&&1===he.key.length?this._letterKeyStream.next(he.key.toLocaleUpperCase()):(q>=I.A&&q<=I.Z||q>=I.f2&&q<=I.bn)&&this._letterKeyStream.next(String.fromCharCode(q))))}this._pressedLetters=[],he.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._getItemsArray().length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(he){const q=this._getItemsArray(),Re="number"==typeof he?he:q.indexOf(he);this._activeItem=q[Re]??null,this._activeItemIndex=Re}destroy(){this._typeaheadSubscription.unsubscribe(),this._itemChangesSubscription?.unsubscribe(),this._effectRef?.destroy(),this._letterKeyStream.complete(),this.tabOut.complete(),this.change.complete(),this._pressedLetters=[]}_setActiveItemByDelta(he){this._wrap?this._setActiveInWrapMode(he):this._setActiveInDefaultMode(he)}_setActiveInWrapMode(he){const q=this._getItemsArray();for(let Re=1;Re<=q.length;Re++){const Ne=(this._activeItemIndex+he*Re+q.length)%q.length;if(!this._skipPredicateFn(q[Ne]))return void this.setActiveItem(Ne)}}_setActiveInDefaultMode(he){this._setActiveItemByIndex(this._activeItemIndex+he,he)}_setActiveItemByIndex(he,q){const Re=this._getItemsArray();if(Re[he]){for(;this._skipPredicateFn(Re[he]);)if(!Re[he+=q])return;this.setActiveItem(he)}}_getItemsArray(){return(0,t.Hps)(this._items)?this._items():this._items instanceof t.rOR?this._items.toArray():this._items}_itemsChanged(he){if(this._activeItem){const q=he.indexOf(this._activeItem);q>-1&&q!==this._activeItemIndex&&(this._activeItemIndex=q)}}}class C extends h{setActiveItem(he){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(he),this.activeItem&&this.activeItem.setActiveStyles()}}class k extends h{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(he){return this._origin=he,this}setActiveItem(he){super.setActiveItem(he),this.activeItem&&this.activeItem.focus(this._origin)}}let _=(()=>{class we{constructor(q){this._platform=q}isDisabled(q){return q.hasAttribute("disabled")}isVisible(q){return function v(we){return!!(we.offsetWidth||we.offsetHeight||"function"==typeof we.getClientRects&&we.getClientRects().length)}(q)&&"visible"===getComputedStyle(q).visibility}isTabbable(q){if(!this._platform.isBrowser)return!1;const Re=function r(we){try{return we.frameElement}catch{return null}}(function me(we){return we.ownerDocument&&we.ownerDocument.defaultView||window}(q));if(Re&&(-1===Ke(Re)||!this.isVisible(Re)))return!1;let Ne=q.nodeName.toLowerCase(),gt=Ke(q);return q.hasAttribute("contenteditable")?-1!==gt:!("iframe"===Ne||"object"===Ne||this._platform.WEBKIT&&this._platform.IOS&&!function se(we){let he=we.nodeName.toLowerCase(),q="input"===he&&we.type;return"text"===q||"password"===q||"select"===he||"textarea"===he}(q))&&("audio"===Ne?!!q.hasAttribute("controls")&&-1!==gt:"video"===Ne?-1!==gt&&(null!==gt||this._platform.FIREFOX||q.hasAttribute("controls")):q.tabIndex>=0)}isFocusable(q,Re){return function X(we){return!function N(we){return function Ee(we){return"input"==we.nodeName.toLowerCase()}(we)&&"hidden"==we.type}(we)&&(function V(we){let he=we.nodeName.toLowerCase();return"input"===he||"select"===he||"button"===he||"textarea"===he}(we)||function ne(we){return function ze(we){return"a"==we.nodeName.toLowerCase()}(we)&&we.hasAttribute("href")}(we)||we.hasAttribute("contenteditable")||qe(we))}(q)&&!this.isDisabled(q)&&(Re?.ignoreVisibility||this.isVisible(q))}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function qe(we){if(!we.hasAttribute("tabindex")||void 0===we.tabIndex)return!1;let he=we.getAttribute("tabindex");return!(!he||isNaN(parseInt(he,10)))}function Ke(we){if(!qe(we))return null;const he=parseInt(we.getAttribute("tabindex")||"",10);return isNaN(he)?-1:he}class ce{get enabled(){return this._enabled}set enabled(he){this._enabled=he,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(he,this._startAnchor),this._toggleAnchorTabIndex(he,this._endAnchor))}constructor(he,q,Re,Ne,gt=!1){this._element=he,this._checker=q,this._ngZone=Re,this._document=Ne,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,gt||this.attachAnchors()}destroy(){const he=this._startAnchor,q=this._endAnchor;he&&(he.removeEventListener("focus",this.startAnchorListener),he.remove()),q&&(q.removeEventListener("focus",this.endAnchorListener),q.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(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusInitialElement(he)))})}focusFirstTabbableElementWhenReady(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusFirstTabbableElement(he)))})}focusLastTabbableElementWhenReady(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusLastTabbableElement(he)))})}_getRegionBoundary(he){const q=this._element.querySelectorAll(`[cdk-focus-region-${he}], [cdkFocusRegion${he}], [cdk-focus-${he}]`);return"start"==he?q.length?q[0]:this._getFirstTabbableElement(this._element):q.length?q[q.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(he){const q=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(q){if(!this._checker.isFocusable(q)){const Re=this._getFirstTabbableElement(q);return Re?.focus(he),!!Re}return q.focus(he),!0}return this.focusFirstTabbableElement(he)}focusFirstTabbableElement(he){const q=this._getRegionBoundary("start");return q&&q.focus(he),!!q}focusLastTabbableElement(he){const q=this._getRegionBoundary("end");return q&&q.focus(he),!!q}hasAttached(){return this._hasAttached}_getFirstTabbableElement(he){if(this._checker.isFocusable(he)&&this._checker.isTabbable(he))return he;const q=he.children;for(let Re=0;Re=0;Re--){const Ne=q[Re].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(q[Re]):null;if(Ne)return Ne}return null}_createAnchor(){const he=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,he),he.classList.add("cdk-visually-hidden"),he.classList.add("cdk-focus-trap-anchor"),he.setAttribute("aria-hidden","true"),he}_toggleAnchorTabIndex(he,q){he?q.setAttribute("tabindex","0"):q.removeAttribute("tabindex")}toggleAnchors(he){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(he,this._startAnchor),this._toggleAnchorTabIndex(he,this._endAnchor))}_executeOnStable(he){this._ngZone.isStable?he():this._ngZone.onStable.pipe((0,R.s)(1)).subscribe(he)}}let fe=(()=>{class we{constructor(q,Re,Ne){this._checker=q,this._ngZone=Re,this._document=Ne}create(q,Re=!1){return new ce(q,this._checker,this._ngZone,this._document,Re)}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(_),t.KVO(t.SKi),t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})(),ke=(()=>{class we{get enabled(){return this.focusTrap?.enabled||!1}set enabled(q){this.focusTrap&&(this.focusTrap.enabled=q)}constructor(q,Re,Ne){this._elementRef=q,this._focusTrapFactory=Re,this._previouslyFocusedElement=null,(0,t.WQX)(w.OD).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(q){const Re=q.autoCapture;Re&&!Re.firstChange&&this.autoCapture&&this.focusTrap?.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,w.vc)(),this.focusTrap?.focusInitialElementWhenReady()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.rXU(t.aKT),t.rXU(fe),t.rXU(e.qQ))};static#t=this.\u0275dir=t.FsC({type:we,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[2,"cdkTrapFocus","enabled",t.L39],autoCapture:[2,"cdkTrapFocusAutoCapture","autoCapture",t.L39]},exportAs:["cdkTrapFocus"],standalone:!0,features:[t.GFd,t.OA$]})}return we})();function _t(we){return 0===we.buttons||0===we.detail}function at(we){const he=we.touches&&we.touches[0]||we.changedTouches&&we.changedTouches[0];return!(!he||-1!==he.identifier||null!=he.radiusX&&1!==he.radiusX||null!=he.radiusY&&1!==he.radiusY)}const pt=new t.nKC("cdk-input-modality-detector-options"),Xt={ignoreKeys:[I.A$,I.W3,I.eg,I.Ge,I.FX]},ue=(0,w.BQ)({passive:!0,capture:!0});let Ie=(()=>{class we{get mostRecentModality(){return this._modality.value}constructor(q,Re,Ne,gt){this._platform=q,this._mostRecentTarget=null,this._modality=new x.t(null),this._lastTouchMs=0,this._onKeydown=$e=>{this._options?.ignoreKeys?.some(Fe=>Fe===$e.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,w.Fb)($e))},this._onMousedown=$e=>{Date.now()-this._lastTouchMs<650||(this._modality.next(_t($e)?"keyboard":"mouse"),this._mostRecentTarget=(0,w.Fb)($e))},this._onTouchstart=$e=>{at($e)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,w.Fb)($e))},this._options={...Xt,...gt},this.modalityDetected=this._modality.pipe((0,z.i)(1)),this.modalityChanged=this.modalityDetected.pipe((0,W.F)()),q.isBrowser&&Re.runOutsideAngular(()=>{Ne.addEventListener("keydown",this._onKeydown,ue),Ne.addEventListener("mousedown",this._onMousedown,ue),Ne.addEventListener("touchstart",this._onTouchstart,ue)})}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,ue),document.removeEventListener("mousedown",this._onMousedown,ue),document.removeEventListener("touchstart",this._onTouchstart,ue))}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD),t.KVO(t.SKi),t.KVO(e.qQ),t.KVO(pt,8))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();const He=new t.nKC("liveAnnouncerElement",{providedIn:"root",factory:function Xe(){return null}}),yt=new t.nKC("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let Ye=0,rt=(()=>{class we{constructor(q,Re,Ne,gt){this._ngZone=Re,this._defaultOptions=gt,this._document=Ne,this._liveElement=q||this._createLiveElement()}announce(q,...Re){const Ne=this._defaultOptions;let gt,$e;return 1===Re.length&&"number"==typeof Re[0]?$e=Re[0]:[gt,$e]=Re,this.clear(),clearTimeout(this._previousTimeout),gt||(gt=Ne&&Ne.politeness?Ne.politeness:"polite"),null==$e&&Ne&&($e=Ne.duration),this._liveElement.setAttribute("aria-live",gt),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(Fe=>this._currentResolve=Fe)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=q,"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 q="cdk-live-announcer-element",Re=this._document.getElementsByClassName(q),Ne=this._document.createElement("div");for(let gt=0;gt .cdk-overlay-container [aria-modal="true"]');for(let Ne=0;Ne{class we{constructor(q,Re,Ne,gt,$e){this._ngZone=q,this._platform=Re,this._inputModalityDetector=Ne,this._origin=null,this._windowFocused=!1,this._originFromTouchInteraction=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._rootNodeFocusListenerCount=new Map,this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=window.setTimeout(()=>this._windowFocused=!1)},this._stopInputModalityDetector=new S.B,this._rootNodeFocusAndBlurListener=Fe=>{for(let et=(0,w.Fb)(Fe);et;et=et.parentElement)"focus"===Fe.type?this._onFocus(Fe,et):this._onBlur(Fe,et)},this._document=gt,this._detectionMode=$e?.detectionMode||Nt.IMMEDIATE}monitor(q,Re=!1){const Ne=(0,Q.i8)(q);if(!this._platform.isBrowser||1!==Ne.nodeType)return(0,f.of)();const gt=(0,w.KT)(Ne)||this._getDocument(),$e=this._elementInfo.get(Ne);if($e)return Re&&($e.checkChildren=!0),$e.subject;const Fe={checkChildren:Re,subject:new S.B,rootNode:gt};return this._elementInfo.set(Ne,Fe),this._registerGlobalListeners(Fe),Fe.subject}stopMonitoring(q){const Re=(0,Q.i8)(q),Ne=this._elementInfo.get(Re);Ne&&(Ne.subject.complete(),this._setClasses(Re),this._elementInfo.delete(Re),this._removeGlobalListeners(Ne))}focusVia(q,Re,Ne){const gt=(0,Q.i8)(q);gt===this._getDocument().activeElement?this._getClosestElementsInfo(gt).forEach(([Fe,Ge])=>this._originChanged(Fe,Re,Ge)):(this._setOrigin(Re),"function"==typeof gt.focus&>.focus(Ne))}ngOnDestroy(){this._elementInfo.forEach((q,Re)=>this.stopMonitoring(Re))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(q){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(q)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:q&&this._isLastInteractionFromInputLabel(q)?"mouse":"program"}_shouldBeAttributedToTouch(q){return this._detectionMode===Nt.EVENTUAL||!!q?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(q,Re){q.classList.toggle("cdk-focused",!!Re),q.classList.toggle("cdk-touch-focused","touch"===Re),q.classList.toggle("cdk-keyboard-focused","keyboard"===Re),q.classList.toggle("cdk-mouse-focused","mouse"===Re),q.classList.toggle("cdk-program-focused","program"===Re)}_setOrigin(q,Re=!1){this._ngZone.runOutsideAngular(()=>{this._origin=q,this._originFromTouchInteraction="touch"===q&&Re,this._detectionMode===Nt.IMMEDIATE&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(q,Re){const Ne=this._elementInfo.get(Re),gt=(0,w.Fb)(q);!Ne||!Ne.checkChildren&&Re!==gt||this._originChanged(Re,this._getFocusOrigin(gt),Ne)}_onBlur(q,Re){const Ne=this._elementInfo.get(Re);!Ne||Ne.checkChildren&&q.relatedTarget instanceof Node&&Re.contains(q.relatedTarget)||(this._setClasses(Re),this._emitOrigin(Ne,null))}_emitOrigin(q,Re){q.subject.observers.length&&this._ngZone.run(()=>q.subject.next(Re))}_registerGlobalListeners(q){if(!this._platform.isBrowser)return;const Re=q.rootNode,Ne=this._rootNodeFocusListenerCount.get(Re)||0;Ne||this._ngZone.runOutsideAngular(()=>{Re.addEventListener("focus",this._rootNodeFocusAndBlurListener,Vt),Re.addEventListener("blur",this._rootNodeFocusAndBlurListener,Vt)}),this._rootNodeFocusListenerCount.set(Re,Ne+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,$.Q)(this._stopInputModalityDetector)).subscribe(gt=>{this._setOrigin(gt,!0)}))}_removeGlobalListeners(q){const Re=q.rootNode;if(this._rootNodeFocusListenerCount.has(Re)){const Ne=this._rootNodeFocusListenerCount.get(Re);Ne>1?this._rootNodeFocusListenerCount.set(Re,Ne-1):(Re.removeEventListener("focus",this._rootNodeFocusAndBlurListener,Vt),Re.removeEventListener("blur",this._rootNodeFocusAndBlurListener,Vt),this._rootNodeFocusListenerCount.delete(Re))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(q,Re,Ne){this._setClasses(q,Re),this._emitOrigin(Ne,Re),this._lastFocusOrigin=Re}_getClosestElementsInfo(q){const Re=[];return this._elementInfo.forEach((Ne,gt)=>{(gt===q||Ne.checkChildren&>.contains(q))&&Re.push([gt,Ne])}),Re}_isLastInteractionFromInputLabel(q){const{_mostRecentTarget:Re,mostRecentModality:Ne}=this._inputModalityDetector;if("mouse"!==Ne||!Re||Re===q||"INPUT"!==q.nodeName&&"TEXTAREA"!==q.nodeName||q.disabled)return!1;const gt=q.labels;if(gt)for(let $e=0;$e{class we{constructor(q,Re){this._elementRef=q,this._focusMonitor=Re,this._focusOrigin=null,this.cdkFocusChange=new t.bkB}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const q=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(q,1===q.nodeType&&q.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(Re=>{this._focusOrigin=Re,this.cdkFocusChange.emit(Re)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.rXU(t.aKT),t.rXU(oe))};static#t=this.\u0275dir=t.FsC({type:we,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"],standalone:!0})}return we})();var $t=function(we){return we[we.NONE=0]="NONE",we[we.BLACK_ON_WHITE=1]="BLACK_ON_WHITE",we[we.WHITE_ON_BLACK=2]="WHITE_ON_BLACK",we}($t||{});const zt="cdk-high-contrast-black-on-white",Jt="cdk-high-contrast-white-on-black",St="cdk-high-contrast-active";let dt=(()=>{class we{constructor(q,Re){this._platform=q,this._document=Re,this._breakpointSubscription=(0,t.WQX)(J.QP).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return $t.NONE;const q=this._document.createElement("div");q.style.backgroundColor="rgb(1,2,3)",q.style.position="absolute",this._document.body.appendChild(q);const Re=this._document.defaultView||window,Ne=Re&&Re.getComputedStyle?Re.getComputedStyle(q):null,gt=(Ne&&Ne.backgroundColor||"").replace(/ /g,"");switch(q.remove(),gt){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return $t.WHITE_ON_BLACK;case"rgb(255,255,255)":case"rgb(255,250,239)":return $t.BLACK_ON_WHITE}return $t.NONE}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const q=this._document.body.classList;q.remove(St,zt,Jt),this._hasCheckedHighContrastMode=!0;const Re=this.getHighContrastMode();Re===$t.BLACK_ON_WHITE?q.add(St,zt):Re===$t.WHITE_ON_BLACK&&q.add(St,Jt)}}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD),t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})(),Ae=(()=>{class we{constructor(q){q._applyBodyHighContrastModeCssClasses()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(dt))};static#t=this.\u0275mod=t.$C({type:we});static#i=this.\u0275inj=t.G2t({imports:[j.w5]})}return we})()},8203:(Qe,te,g)=>{"use strict";g.d(te,{dS:()=>f,jI:()=>d});var e=g(4438),t=g(177);const w=new e.nKC("cdk-dir-doc",{providedIn:"root",factory:function S(){return(0,e.WQX)(t.qQ)}}),l=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let f=(()=>{class T{constructor(F){this.value="ltr",this.change=new e.bkB,F&&(this.value=function x(T){const y=T?.toLowerCase()||"";return"auto"===y&&typeof navigator<"u"&&navigator?.language?l.test(navigator.language)?"rtl":"ltr":"rtl"===y?"rtl":"ltr"}((F.body?F.body.dir:null)||(F.documentElement?F.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static#e=this.\u0275fac=function(R){return new(R||T)(e.KVO(w,8))};static#t=this.\u0275prov=e.jDH({token:T,factory:T.\u0275fac,providedIn:"root"})}return T})(),d=(()=>{class T{static#e=this.\u0275fac=function(R){return new(R||T)};static#t=this.\u0275mod=e.$C({type:T});static#i=this.\u0275inj=e.G2t({})}return T})()},4085:(Qe,te,g)=>{"use strict";g.d(te,{FG:()=>l,OE:()=>w,a1:()=>x,cc:()=>I,he:()=>t,i8:()=>f,o1:()=>S});var e=g(4438);function t(d){return null!=d&&"false"!=`${d}`}function w(d,T=0){return S(d)?Number(d):T}function S(d){return!isNaN(parseFloat(d))&&!isNaN(Number(d))}function l(d){return Array.isArray(d)?d:[d]}function x(d){return null==d?"":"string"==typeof d?d:`${d}px`}function f(d){return d instanceof e.aKT?d.nativeElement:d}function I(d,T=/\s+/){const y=[];if(null!=d){const F=Array.isArray(d)?d:`${d}`.split(T);for(const R of F){const z=`${R}`.trim();z&&y.push(z)}}return y}},5024:(Qe,te,g)=>{"use strict";g.d(te,{CB:()=>R,DQ:()=>F,Q3:()=>d,qS:()=>x,sL:()=>T,xn:()=>y,y4:()=>f,zP:()=>W});var e=g(17),S=(g(4402),g(7673),g(1413)),l=g(4438);class x{}function f($){return $&&"function"==typeof $.connect&&!($ instanceof e.G)}var d=function($){return $[$.REPLACED=0]="REPLACED",$[$.INSERTED=1]="INSERTED",$[$.MOVED=2]="MOVED",$[$.REMOVED=3]="REMOVED",$}(d||{});const T=new l.nKC("_ViewRepeater");class y{applyChanges(j,Q,J,ee,ie){j.forEachOperation((ge,ae,Me)=>{let Te,de;if(null==ge.previousIndex){const D=J(ge,ae,Me);Te=Q.createEmbeddedView(D.templateRef,D.context,D.index),de=d.INSERTED}else null==Me?(Q.remove(ae),de=d.REMOVED):(Te=Q.get(ae),Q.move(Te,Me),de=d.MOVED);ie&&ie({context:Te?.context,operation:de,record:ge})})}detach(){}}class F{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(j,Q,J,ee,ie){j.forEachOperation((ge,ae,Me)=>{let Te,de;null==ge.previousIndex?(Te=this._insertView(()=>J(ge,ae,Me),Me,Q,ee(ge)),de=Te?d.INSERTED:d.REPLACED):null==Me?(this._detachAndCacheView(ae,Q),de=d.REMOVED):(Te=this._moveView(ae,Me,Q,ee(ge)),de=d.MOVED),ie&&ie({context:Te?.context,operation:de,record:ge})})}detach(){for(const j of this._viewCache)j.destroy();this._viewCache=[]}_insertView(j,Q,J,ee){const ie=this._insertViewFromCache(Q,J);if(ie)return void(ie.context.$implicit=ee);const ge=j();return J.createEmbeddedView(ge.templateRef,ge.context,ge.index)}_detachAndCacheView(j,Q){const J=Q.detach(j);this._maybeCacheView(J,Q)}_moveView(j,Q,J,ee){const ie=J.get(j);return J.move(ie,Q),ie.context.$implicit=ee,ie}_maybeCacheView(j,Q){if(this._viewCache.lengththis._markSelected(ie)):this._markSelected(Q[0]),this._selectedToEmit.length=0)}select(...j){this._verifyValueAssignment(j),j.forEach(J=>this._markSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}deselect(...j){this._verifyValueAssignment(j),j.forEach(J=>this._unmarkSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}setSelection(...j){this._verifyValueAssignment(j);const Q=this.selected,J=new Set(j);j.forEach(ie=>this._markSelected(ie)),Q.filter(ie=>!J.has(this._getConcreteValue(ie,J))).forEach(ie=>this._unmarkSelected(ie));const ee=this._hasQueuedChanges();return this._emitChangeEvent(),ee}toggle(j){return this.isSelected(j)?this.deselect(j):this.select(j)}clear(j=!0){this._unmarkAll();const Q=this._hasQueuedChanges();return j&&this._emitChangeEvent(),Q}isSelected(j){return this._selection.has(this._getConcreteValue(j))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(j){this._multiple&&this.selected&&this._selected.sort(j)}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(j){j=this._getConcreteValue(j),this.isSelected(j)||(this._multiple||this._unmarkAll(),this.isSelected(j)||this._selection.add(j),this._emitChanges&&this._selectedToEmit.push(j))}_unmarkSelected(j){j=this._getConcreteValue(j),this.isSelected(j)&&(this._selection.delete(j),this._emitChanges&&this._deselectedToEmit.push(j))}_unmarkAll(){this.isEmpty()||this._selection.forEach(j=>this._unmarkSelected(j))}_verifyValueAssignment(j){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(j,Q){if(this.compareWith){Q=Q??this._selection;for(let J of Q)if(this.compareWith(j,J))return J;return j}return j}}let W=(()=>{class ${constructor(){this._listeners=[]}notify(Q,J){for(let ee of this._listeners)ee(Q,J)}listen(Q){return this._listeners.push(Q),()=>{this._listeners=this._listeners.filter(J=>Q!==J)}}ngOnDestroy(){this._listeners=[]}static#e=this.\u0275fac=function(J){return new(J||$)};static#t=this.\u0275prov=l.jDH({token:$,factory:$.\u0275fac,providedIn:"root"})}return $})()},7336:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>N,A$:()=>I,FX:()=>x,Fm:()=>l,G_:()=>t,Ge:()=>yt,Kp:()=>W,LE:()=>J,SJ:()=>Me,UQ:()=>j,W3:()=>f,Z:()=>Xe,_f:()=>y,bn:()=>L,dB:()=>z,eg:()=>ot,f2:()=>Te,i7:()=>Q,n6:()=>ee,rp:()=>ut,t6:()=>F,w_:()=>R,wn:()=>w,yZ:()=>$});const t=8,w=9,l=13,x=16,f=17,I=18,y=27,F=32,R=33,z=34,W=35,$=36,j=37,Q=38,J=39,ee=40,Me=46,Te=48,L=57,N=65,Xe=90,yt=91,ot=224;function ut(ii,...si){return si.length?si.some(Pi=>ii[Pi]):ii.altKey||ii.shiftKey||ii.ctrlKey||ii.metaKey}},9327:(Qe,te,g)=>{"use strict";g.d(te,{QP:()=>ee,RH:()=>z,Rp:()=>ge});var e=g(4438),t=g(4085),w=g(1413),S=g(4572),l=g(8793),x=g(1985),f=g(6697),I=g(5245),d=g(152),T=g(6354),y=g(9172),F=g(6977),R=g(6860);let z=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=e.$C({type:ae});static#i=this.\u0275inj=e.G2t({})}return ae})();const W=new Set;let $,j=(()=>{class ae{constructor(Te,de){this._platform=Te,this._nonce=de,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):J}matchMedia(Te){return(this._platform.WEBKIT||this._platform.BLINK)&&function Q(ae,Me){if(!W.has(ae))try{$||($=document.createElement("style"),Me&&$.setAttribute("nonce",Me),$.setAttribute("type","text/css"),document.head.appendChild($)),$.sheet&&($.sheet.insertRule(`@media ${ae} {body{ }}`,0),W.add(ae))}catch(Te){console.error(Te)}}(Te,this._nonce),this._matchMedia(Te)}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(R.OD),e.KVO(e.BIS,8))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function J(ae){return{matches:"all"===ae||""===ae,media:ae,addListener:()=>{},removeListener:()=>{}}}let ee=(()=>{class ae{constructor(Te,de){this._mediaMatcher=Te,this._zone=de,this._queries=new Map,this._destroySubject=new w.B}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(Te){return ie((0,t.FG)(Te)).some(D=>this._registerQuery(D).mql.matches)}observe(Te){const D=ie((0,t.FG)(Te)).map(c=>this._registerQuery(c).observable);let n=(0,S.z)(D);return n=(0,l.x)(n.pipe((0,f.s)(1)),n.pipe((0,I.i)(1),(0,d.B)(0))),n.pipe((0,T.T)(c=>{const m={matches:!1,breakpoints:{}};return c.forEach(({matches:h,query:C})=>{m.matches=m.matches||h,m.breakpoints[C]=h}),m}))}_registerQuery(Te){if(this._queries.has(Te))return this._queries.get(Te);const de=this._mediaMatcher.matchMedia(Te),n={observable:new x.c(c=>{const m=h=>this._zone.run(()=>c.next(h));return de.addListener(m),()=>{de.removeListener(m)}}).pipe((0,y.Z)(de),(0,T.T)(({matches:c})=>({query:Te,matches:c})),(0,F.Q)(this._destroySubject)),mql:de};return this._queries.set(Te,n),n}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(j),e.KVO(e.SKi))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function ie(ae){return ae.map(Me=>Me.split(",")).reduce((Me,Te)=>Me.concat(Te)).map(Me=>Me.trim())}const ge={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)"}},2318:(Qe,te,g)=>{"use strict";g.d(te,{Wv:()=>y,w5:()=>F});var e=g(4085),t=g(4438),w=g(1985),S=g(1413),l=g(6354),x=g(5964),f=g(152);let d=(()=>{class R{create(W){return typeof MutationObserver>"u"?null:new MutationObserver(W)}static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275prov=t.jDH({token:R,factory:R.\u0275fac,providedIn:"root"})}return R})(),T=(()=>{class R{constructor(W){this._mutationObserverFactory=W,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((W,$)=>this._cleanupObserver($))}observe(W){const $=(0,e.i8)(W);return new w.c(j=>{const J=this._observeElement($).pipe((0,l.T)(ee=>ee.filter(ie=>!function I(R){if("characterData"===R.type&&R.target instanceof Comment)return!0;if("childList"===R.type){for(let z=0;z!!ee.length)).subscribe(j);return()=>{J.unsubscribe(),this._unobserveElement($)}})}_observeElement(W){if(this._observedElements.has(W))this._observedElements.get(W).count++;else{const $=new S.B,j=this._mutationObserverFactory.create(Q=>$.next(Q));j&&j.observe(W,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(W,{observer:j,stream:$,count:1})}return this._observedElements.get(W).stream}_unobserveElement(W){this._observedElements.has(W)&&(this._observedElements.get(W).count--,this._observedElements.get(W).count||this._cleanupObserver(W))}_cleanupObserver(W){if(this._observedElements.has(W)){const{observer:$,stream:j}=this._observedElements.get(W);$&&$.disconnect(),j.complete(),this._observedElements.delete(W)}}static#e=this.\u0275fac=function($){return new($||R)(t.KVO(d))};static#t=this.\u0275prov=t.jDH({token:R,factory:R.\u0275fac,providedIn:"root"})}return R})(),y=(()=>{class R{get disabled(){return this._disabled}set disabled(W){this._disabled=W,this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(W){this._debounce=(0,e.OE)(W),this._subscribe()}constructor(W,$,j){this._contentObserver=W,this._elementRef=$,this._ngZone=j,this.event=new t.bkB,this._disabled=!1,this._currentSubscription=null}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const W=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?W.pipe((0,f.B)(this.debounce)):W).subscribe(this.event)})}_unsubscribe(){this._currentSubscription?.unsubscribe()}static#e=this.\u0275fac=function($){return new($||R)(t.rXU(T),t.rXU(t.aKT),t.rXU(t.SKi))};static#t=this.\u0275dir=t.FsC({type:R,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[2,"cdkObserveContentDisabled","disabled",t.L39],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"],standalone:!0,features:[t.GFd]})}return R})(),F=(()=>{class R{static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275mod=t.$C({type:R});static#i=this.\u0275inj=t.G2t({providers:[d]})}return R})()},6969:(Qe,te,g)=>{"use strict";g.d(te,{WB:()=>Ze,$Q:()=>pe,rW:()=>ne,hJ:()=>mt,rR:()=>D,Sf:()=>r,z_:()=>pt,yY:()=>v});var e=g(5542),t=g(177),w=g(4438),S=g(4085),l=g(6860),x=g(5964),f=g(6697),I=g(6977),d=g(9974),T=g(4360),F=g(8203),R=g(6939),z=g(1413),W=g(8359),$=g(7786),j=g(7336);const Q=(0,l.CZ)();class J{constructor(ue,Ie){this._viewportRuler=ue,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=Ie}attach(){}enable(){if(this._canBeEnabled()){const ue=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=ue.style.left||"",this._previousHTMLStyles.top=ue.style.top||"",ue.style.left=(0,S.a1)(-this._previousScrollPosition.left),ue.style.top=(0,S.a1)(-this._previousScrollPosition.top),ue.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const ue=this._document.documentElement,He=ue.style,Xe=this._document.body.style,yt=He.scrollBehavior||"",Ye=Xe.scrollBehavior||"";this._isEnabled=!1,He.left=this._previousHTMLStyles.left,He.top=this._previousHTMLStyles.top,ue.classList.remove("cdk-global-scrollblock"),Q&&(He.scrollBehavior=Xe.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),Q&&(He.scrollBehavior=yt,Xe.scrollBehavior=Ye)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const Ie=this._document.body,He=this._viewportRuler.getViewportSize();return Ie.scrollHeight>He.height||Ie.scrollWidth>He.width}}class ie{constructor(ue,Ie,He,Xe){this._scrollDispatcher=ue,this._ngZone=Ie,this._viewportRuler=He,this._config=Xe,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(ue){this._overlayRef=ue}enable(){if(this._scrollSubscription)return;const ue=this._scrollDispatcher.scrolled(0).pipe((0,x.p)(Ie=>!Ie||!this._overlayRef.overlayElement.contains(Ie.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=ue.subscribe(()=>{const Ie=this._viewportRuler.getViewportScrollPosition().top;Math.abs(Ie-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=ue.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class ge{enable(){}disable(){}attach(){}}function ae(ye,ue){return ue.some(Ie=>ye.bottomIe.bottom||ye.rightIe.right)}function Me(ye,ue){return ue.some(Ie=>ye.topIe.bottom||ye.leftIe.right)}class Te{constructor(ue,Ie,He,Xe){this._scrollDispatcher=ue,this._viewportRuler=Ie,this._ngZone=He,this._config=Xe,this._scrollSubscription=null}attach(ue){this._overlayRef=ue}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 Ie=this._overlayRef.overlayElement.getBoundingClientRect(),{width:He,height:Xe}=this._viewportRuler.getViewportSize();ae(Ie,[{width:He,height:Xe,bottom:Xe,right:He,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 de=(()=>{class ye{constructor(Ie,He,Xe,yt){this._scrollDispatcher=Ie,this._viewportRuler=He,this._ngZone=Xe,this.noop=()=>new ge,this.close=Ye=>new ie(this._scrollDispatcher,this._ngZone,this._viewportRuler,Ye),this.block=()=>new J(this._viewportRuler,this._document),this.reposition=Ye=>new Te(this._scrollDispatcher,this._viewportRuler,this._ngZone,Ye),this._document=yt}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(e.R),w.KVO(e.Xj),w.KVO(w.SKi),w.KVO(t.qQ))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();class D{constructor(ue){if(this.scrollStrategy=new ge,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,ue){const Ie=Object.keys(ue);for(const He of Ie)void 0!==ue[He]&&(this[He]=ue[He])}}}class m{constructor(ue,Ie){this.connectionPair=ue,this.scrollableViewProperties=Ie}}let k=(()=>{class ye{constructor(Ie){this._attachedOverlays=[],this._document=Ie}ngOnDestroy(){this.detach()}add(Ie){this.remove(Ie),this._attachedOverlays.push(Ie)}remove(Ie){const He=this._attachedOverlays.indexOf(Ie);He>-1&&this._attachedOverlays.splice(He,1),0===this._attachedOverlays.length&&this.detach()}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),L=(()=>{class ye extends k{constructor(Ie,He){super(Ie),this._ngZone=He,this._keydownListener=Xe=>{const yt=this._attachedOverlays;for(let Ye=yt.length-1;Ye>-1;Ye--)if(yt[Ye]._keydownEvents.observers.length>0){const rt=yt[Ye]._keydownEvents;this._ngZone?this._ngZone.run(()=>rt.next(Xe)):rt.next(Xe);break}}}add(Ie){super.add(Ie),this._isAttached||(this._ngZone?this._ngZone.runOutsideAngular(()=>this._document.body.addEventListener("keydown",this._keydownListener)):this._document.body.addEventListener("keydown",this._keydownListener),this._isAttached=!0)}detach(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener),this._isAttached=!1)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ),w.KVO(w.SKi,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),_=(()=>{class ye extends k{constructor(Ie,He,Xe){super(Ie),this._platform=He,this._ngZone=Xe,this._cursorStyleIsSet=!1,this._pointerDownListener=yt=>{this._pointerDownEventTarget=(0,l.Fb)(yt)},this._clickListener=yt=>{const Ye=(0,l.Fb)(yt),rt="click"===yt.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:Ye;this._pointerDownEventTarget=null;const Yt=this._attachedOverlays.slice();for(let Nt=Yt.length-1;Nt>-1;Nt--){const Et=Yt[Nt];if(Et._outsidePointerEvents.observers.length<1||!Et.hasAttached())continue;if(Et.overlayElement.contains(Ye)||Et.overlayElement.contains(rt))break;const Vt=Et._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>Vt.next(yt)):Vt.next(yt)}}}add(Ie){if(super.add(Ie),!this._isAttached){const He=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(He)):this._addEventListeners(He),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=He.style.cursor,He.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const Ie=this._document.body;Ie.removeEventListener("pointerdown",this._pointerDownListener,!0),Ie.removeEventListener("click",this._clickListener,!0),Ie.removeEventListener("auxclick",this._clickListener,!0),Ie.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(Ie.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(Ie){Ie.addEventListener("pointerdown",this._pointerDownListener,!0),Ie.addEventListener("click",this._clickListener,!0),Ie.addEventListener("auxclick",this._clickListener,!0),Ie.addEventListener("contextmenu",this._clickListener,!0)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ),w.KVO(l.OD),w.KVO(w.SKi,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),r=(()=>{class ye{constructor(Ie,He){this._platform=He,this._document=Ie}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const Ie="cdk-overlay-container";if(this._platform.isBrowser||(0,l.v8)()){const Xe=this._document.querySelectorAll(`.${Ie}[platform="server"], .${Ie}[platform="test"]`);for(let yt=0;ytthis._backdropClick.next(Vt),this._backdropTransitionendHandler=Vt=>{this._disposeBackdrop(Vt.target)},this._keydownEvents=new z.B,this._outsidePointerEvents=new z.B,Xe.scrollStrategy&&(this._scrollStrategy=Xe.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=Xe.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(ue){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const Ie=this._portalOutlet.attach(ue);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,f.s)(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof Ie?.onDestroy&&Ie.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),Ie}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const ue=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),ue}dispose(){const ue=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._disposeBackdrop(this._backdropElement),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._previousHostParent=this._pane=this._host=null,ue&&this._detachments.next(),this._detachments.complete()}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(ue){ue!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=ue,this.hasAttached()&&(ue.attach(this),this.updatePosition()))}updateSize(ue){this._config={...this._config,...ue},this._updateElementSize()}setDirection(ue){this._config={...this._config,direction:ue},this._updateElementDirection()}addPanelClass(ue){this._pane&&this._toggleClasses(this._pane,ue,!0)}removePanelClass(ue){this._pane&&this._toggleClasses(this._pane,ue,!1)}getDirection(){const ue=this._config.direction;return ue?"string"==typeof ue?ue:ue.value:"ltr"}updateScrollStrategy(ue){ue!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=ue,this.hasAttached()&&(ue.attach(this),ue.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const ue=this._pane.style;ue.width=(0,S.a1)(this._config.width),ue.height=(0,S.a1)(this._config.height),ue.minWidth=(0,S.a1)(this._config.minWidth),ue.minHeight=(0,S.a1)(this._config.minHeight),ue.maxWidth=(0,S.a1)(this._config.maxWidth),ue.maxHeight=(0,S.a1)(this._config.maxHeight)}_togglePointerEvents(ue){this._pane.style.pointerEvents=ue?"":"none"}_attachBackdrop(){const ue="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._animationsDisabled&&this._backdropElement.classList.add("cdk-overlay-backdrop-noop-animation"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",this._backdropClickHandler),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(ue)})}):this._backdropElement.classList.add(ue)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const ue=this._backdropElement;if(ue){if(this._animationsDisabled)return void this._disposeBackdrop(ue);ue.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{ue.addEventListener("transitionend",this._backdropTransitionendHandler)}),ue.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(ue)},500))}}_toggleClasses(ue,Ie,He){const Xe=(0,S.FG)(Ie||[]).filter(yt=>!!yt);Xe.length&&(He?ue.classList.add(...Xe):ue.classList.remove(...Xe))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const ue=this._ngZone.onStable.pipe((0,I.Q)((0,$.h)(this._attachments,this._detachments))).subscribe(()=>{(!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()),ue.unsubscribe())})})}_disposeScrollStrategy(){const ue=this._scrollStrategy;ue&&(ue.disable(),ue.detach&&ue.detach())}_disposeBackdrop(ue){ue&&(ue.removeEventListener("click",this._backdropClickHandler),ue.removeEventListener("transitionend",this._backdropTransitionendHandler),ue.remove(),this._backdropElement===ue&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}const V="cdk-overlay-connected-position-bounding-box",N=/([A-Za-z%]+)$/;class ne{get positions(){return this._preferredPositions}constructor(ue,Ie,He,Xe,yt){this._viewportRuler=Ie,this._document=He,this._platform=Xe,this._overlayContainer=yt,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new z.B,this._resizeSubscription=W.yU.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges,this.setOrigin(ue)}attach(ue){this._validatePositions(),ue.hostElement.classList.add(V),this._overlayRef=ue,this._boundingBox=ue.hostElement,this._pane=ue.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 ue=this._originRect,Ie=this._overlayRect,He=this._viewportRect,Xe=this._containerRect,yt=[];let Ye;for(let rt of this._preferredPositions){let Yt=this._getOriginPoint(ue,Xe,rt),Nt=this._getOverlayPoint(Yt,Ie,rt),Et=this._getOverlayFit(Nt,Ie,He,rt);if(Et.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(rt,Yt);this._canFitWithFlexibleDimensions(Et,Nt,He)?yt.push({position:rt,origin:Yt,overlayRect:Ie,boundingBoxRect:this._calculateBoundingBoxRect(Yt,rt)}):(!Ye||Ye.overlayFit.visibleAreaYt&&(Yt=Et,rt=Nt)}return this._isPushed=!1,void this._applyPosition(rt.position,rt.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(Ye.position,Ye.originPoint);this._applyPosition(Ye.position,Ye.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Ee(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(V),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const ue=this._lastPosition;if(ue){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const Ie=this._getOriginPoint(this._originRect,this._containerRect,ue);this._applyPosition(ue,Ie)}else this.apply()}withScrollableContainers(ue){return this._scrollables=ue,this}withPositions(ue){return this._preferredPositions=ue,-1===ue.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(ue){return this._viewportMargin=ue,this}withFlexibleDimensions(ue=!0){return this._hasFlexibleDimensions=ue,this}withGrowAfterOpen(ue=!0){return this._growAfterOpen=ue,this}withPush(ue=!0){return this._canPush=ue,this}withLockedPosition(ue=!0){return this._positionLocked=ue,this}setOrigin(ue){return this._origin=ue,this}withDefaultOffsetX(ue){return this._offsetX=ue,this}withDefaultOffsetY(ue){return this._offsetY=ue,this}withTransformOriginOn(ue){return this._transformOriginSelector=ue,this}_getOriginPoint(ue,Ie,He){let Xe,yt;if("center"==He.originX)Xe=ue.left+ue.width/2;else{const Ye=this._isRtl()?ue.right:ue.left,rt=this._isRtl()?ue.left:ue.right;Xe="start"==He.originX?Ye:rt}return Ie.left<0&&(Xe-=Ie.left),yt="center"==He.originY?ue.top+ue.height/2:"top"==He.originY?ue.top:ue.bottom,Ie.top<0&&(yt-=Ie.top),{x:Xe,y:yt}}_getOverlayPoint(ue,Ie,He){let Xe,yt;return Xe="center"==He.overlayX?-Ie.width/2:"start"===He.overlayX?this._isRtl()?-Ie.width:0:this._isRtl()?0:-Ie.width,yt="center"==He.overlayY?-Ie.height/2:"top"==He.overlayY?0:-Ie.height,{x:ue.x+Xe,y:ue.y+yt}}_getOverlayFit(ue,Ie,He,Xe){const yt=qe(Ie);let{x:Ye,y:rt}=ue,Yt=this._getOffset(Xe,"x"),Nt=this._getOffset(Xe,"y");Yt&&(Ye+=Yt),Nt&&(rt+=Nt);let oe=0-rt,tt=rt+yt.height-He.height,$t=this._subtractOverflows(yt.width,0-Ye,Ye+yt.width-He.width),zt=this._subtractOverflows(yt.height,oe,tt),Jt=$t*zt;return{visibleArea:Jt,isCompletelyWithinViewport:yt.width*yt.height===Jt,fitsInViewportVertically:zt===yt.height,fitsInViewportHorizontally:$t==yt.width}}_canFitWithFlexibleDimensions(ue,Ie,He){if(this._hasFlexibleDimensions){const Xe=He.bottom-Ie.y,yt=He.right-Ie.x,Ye=ze(this._overlayRef.getConfig().minHeight),rt=ze(this._overlayRef.getConfig().minWidth);return(ue.fitsInViewportVertically||null!=Ye&&Ye<=Xe)&&(ue.fitsInViewportHorizontally||null!=rt&&rt<=yt)}return!1}_pushOverlayOnScreen(ue,Ie,He){if(this._previousPushAmount&&this._positionLocked)return{x:ue.x+this._previousPushAmount.x,y:ue.y+this._previousPushAmount.y};const Xe=qe(Ie),yt=this._viewportRect,Ye=Math.max(ue.x+Xe.width-yt.width,0),rt=Math.max(ue.y+Xe.height-yt.height,0),Yt=Math.max(yt.top-He.top-ue.y,0),Nt=Math.max(yt.left-He.left-ue.x,0);let Et=0,Vt=0;return Et=Xe.width<=yt.width?Nt||-Ye:ue.x$t&&!this._isInitialRender&&!this._growAfterOpen&&(Ye=ue.y-$t/2)}if("end"===Ie.overlayX&&!Xe||"start"===Ie.overlayX&&Xe)oe=He.width-ue.x+2*this._viewportMargin,Et=ue.x-this._viewportMargin;else if("start"===Ie.overlayX&&!Xe||"end"===Ie.overlayX&&Xe)Vt=ue.x,Et=He.right-ue.x;else{const tt=Math.min(He.right-ue.x+He.left,ue.x),$t=this._lastBoundingBoxSize.width;Et=2*tt,Vt=ue.x-tt,Et>$t&&!this._isInitialRender&&!this._growAfterOpen&&(Vt=ue.x-$t/2)}return{top:Ye,left:Vt,bottom:rt,right:oe,width:Et,height:yt}}_setBoundingBoxStyles(ue,Ie){const He=this._calculateBoundingBoxRect(ue,Ie);!this._isInitialRender&&!this._growAfterOpen&&(He.height=Math.min(He.height,this._lastBoundingBoxSize.height),He.width=Math.min(He.width,this._lastBoundingBoxSize.width));const Xe={};if(this._hasExactPosition())Xe.top=Xe.left="0",Xe.bottom=Xe.right=Xe.maxHeight=Xe.maxWidth="",Xe.width=Xe.height="100%";else{const yt=this._overlayRef.getConfig().maxHeight,Ye=this._overlayRef.getConfig().maxWidth;Xe.height=(0,S.a1)(He.height),Xe.top=(0,S.a1)(He.top),Xe.bottom=(0,S.a1)(He.bottom),Xe.width=(0,S.a1)(He.width),Xe.left=(0,S.a1)(He.left),Xe.right=(0,S.a1)(He.right),Xe.alignItems="center"===Ie.overlayX?"center":"end"===Ie.overlayX?"flex-end":"flex-start",Xe.justifyContent="center"===Ie.overlayY?"center":"bottom"===Ie.overlayY?"flex-end":"flex-start",yt&&(Xe.maxHeight=(0,S.a1)(yt)),Ye&&(Xe.maxWidth=(0,S.a1)(Ye))}this._lastBoundingBoxSize=He,Ee(this._boundingBox.style,Xe)}_resetBoundingBoxStyles(){Ee(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){Ee(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(ue,Ie){const He={},Xe=this._hasExactPosition(),yt=this._hasFlexibleDimensions,Ye=this._overlayRef.getConfig();if(Xe){const Et=this._viewportRuler.getViewportScrollPosition();Ee(He,this._getExactOverlayY(Ie,ue,Et)),Ee(He,this._getExactOverlayX(Ie,ue,Et))}else He.position="static";let rt="",Yt=this._getOffset(Ie,"x"),Nt=this._getOffset(Ie,"y");Yt&&(rt+=`translateX(${Yt}px) `),Nt&&(rt+=`translateY(${Nt}px)`),He.transform=rt.trim(),Ye.maxHeight&&(Xe?He.maxHeight=(0,S.a1)(Ye.maxHeight):yt&&(He.maxHeight="")),Ye.maxWidth&&(Xe?He.maxWidth=(0,S.a1)(Ye.maxWidth):yt&&(He.maxWidth="")),Ee(this._pane.style,He)}_getExactOverlayY(ue,Ie,He){let Xe={top:"",bottom:""},yt=this._getOverlayPoint(Ie,this._overlayRect,ue);return this._isPushed&&(yt=this._pushOverlayOnScreen(yt,this._overlayRect,He)),"bottom"===ue.overlayY?Xe.bottom=this._document.documentElement.clientHeight-(yt.y+this._overlayRect.height)+"px":Xe.top=(0,S.a1)(yt.y),Xe}_getExactOverlayX(ue,Ie,He){let Ye,Xe={left:"",right:""},yt=this._getOverlayPoint(Ie,this._overlayRect,ue);return this._isPushed&&(yt=this._pushOverlayOnScreen(yt,this._overlayRect,He)),Ye=this._isRtl()?"end"===ue.overlayX?"left":"right":"end"===ue.overlayX?"right":"left","right"===Ye?Xe.right=this._document.documentElement.clientWidth-(yt.x+this._overlayRect.width)+"px":Xe.left=(0,S.a1)(yt.x),Xe}_getScrollVisibility(){const ue=this._getOriginRect(),Ie=this._pane.getBoundingClientRect(),He=this._scrollables.map(Xe=>Xe.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Me(ue,He),isOriginOutsideView:ae(ue,He),isOverlayClipped:Me(Ie,He),isOverlayOutsideView:ae(Ie,He)}}_subtractOverflows(ue,...Ie){return Ie.reduce((He,Xe)=>He-Math.max(Xe,0),ue)}_getNarrowedViewportRect(){const ue=this._document.documentElement.clientWidth,Ie=this._document.documentElement.clientHeight,He=this._viewportRuler.getViewportScrollPosition();return{top:He.top+this._viewportMargin,left:He.left+this._viewportMargin,right:He.left+ue-this._viewportMargin,bottom:He.top+Ie-this._viewportMargin,width:ue-2*this._viewportMargin,height:Ie-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(ue,Ie){return"x"===Ie?null==ue.offsetX?this._offsetX:ue.offsetX:null==ue.offsetY?this._offsetY:ue.offsetY}_validatePositions(){}_addPanelClasses(ue){this._pane&&(0,S.FG)(ue).forEach(Ie=>{""!==Ie&&-1===this._appliedPanelClasses.indexOf(Ie)&&(this._appliedPanelClasses.push(Ie),this._pane.classList.add(Ie))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(ue=>{this._pane.classList.remove(ue)}),this._appliedPanelClasses=[])}_getOriginRect(){const ue=this._origin;if(ue instanceof w.aKT)return ue.nativeElement.getBoundingClientRect();if(ue instanceof Element)return ue.getBoundingClientRect();const Ie=ue.width||0,He=ue.height||0;return{top:ue.y,bottom:ue.y+He,left:ue.x,right:ue.x+Ie,height:He,width:Ie}}}function Ee(ye,ue){for(let Ie in ue)ue.hasOwnProperty(Ie)&&(ye[Ie]=ue[Ie]);return ye}function ze(ye){if("number"!=typeof ye&&null!=ye){const[ue,Ie]=ye.split(N);return Ie&&"px"!==Ie?null:parseFloat(ue)}return ye||null}function qe(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 me="cdk-global-overlay-wrapper";class ce{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._alignItems="",this._xPosition="",this._xOffset="",this._width="",this._height="",this._isDisposed=!1}attach(ue){const Ie=ue.getConfig();this._overlayRef=ue,this._width&&!Ie.width&&ue.updateSize({width:this._width}),this._height&&!Ie.height&&ue.updateSize({height:this._height}),ue.hostElement.classList.add(me),this._isDisposed=!1}top(ue=""){return this._bottomOffset="",this._topOffset=ue,this._alignItems="flex-start",this}left(ue=""){return this._xOffset=ue,this._xPosition="left",this}bottom(ue=""){return this._topOffset="",this._bottomOffset=ue,this._alignItems="flex-end",this}right(ue=""){return this._xOffset=ue,this._xPosition="right",this}start(ue=""){return this._xOffset=ue,this._xPosition="start",this}end(ue=""){return this._xOffset=ue,this._xPosition="end",this}width(ue=""){return this._overlayRef?this._overlayRef.updateSize({width:ue}):this._width=ue,this}height(ue=""){return this._overlayRef?this._overlayRef.updateSize({height:ue}):this._height=ue,this}centerHorizontally(ue=""){return this.left(ue),this._xPosition="center",this}centerVertically(ue=""){return this.top(ue),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const ue=this._overlayRef.overlayElement.style,Ie=this._overlayRef.hostElement.style,He=this._overlayRef.getConfig(),{width:Xe,height:yt,maxWidth:Ye,maxHeight:rt}=He,Yt=!("100%"!==Xe&&"100vw"!==Xe||Ye&&"100%"!==Ye&&"100vw"!==Ye),Nt=!("100%"!==yt&&"100vh"!==yt||rt&&"100%"!==rt&&"100vh"!==rt),Et=this._xPosition,Vt=this._xOffset,oe="rtl"===this._overlayRef.getConfig().direction;let tt="",$t="",zt="";Yt?zt="flex-start":"center"===Et?(zt="center",oe?$t=Vt:tt=Vt):oe?"left"===Et||"end"===Et?(zt="flex-end",tt=Vt):("right"===Et||"start"===Et)&&(zt="flex-start",$t=Vt):"left"===Et||"start"===Et?(zt="flex-start",tt=Vt):("right"===Et||"end"===Et)&&(zt="flex-end",$t=Vt),ue.position=this._cssPosition,ue.marginLeft=Yt?"0":tt,ue.marginTop=Nt?"0":this._topOffset,ue.marginBottom=this._bottomOffset,ue.marginRight=Yt?"0":$t,Ie.justifyContent=zt,Ie.alignItems=Nt?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const ue=this._overlayRef.overlayElement.style,Ie=this._overlayRef.hostElement,He=Ie.style;Ie.classList.remove(me),He.justifyContent=He.alignItems=ue.marginTop=ue.marginBottom=ue.marginLeft=ue.marginRight=ue.position="",this._overlayRef=null,this._isDisposed=!0}}let fe=(()=>{class ye{constructor(Ie,He,Xe,yt){this._viewportRuler=Ie,this._document=He,this._platform=Xe,this._overlayContainer=yt}global(){return new ce}flexibleConnectedTo(Ie){return new ne(Ie,this._viewportRuler,this._document,this._platform,this._overlayContainer)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(e.Xj),w.KVO(t.qQ),w.KVO(l.OD),w.KVO(r))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),ke=0,mt=(()=>{class ye{constructor(Ie,He,Xe,yt,Ye,rt,Yt,Nt,Et,Vt,oe,tt){this.scrollStrategies=Ie,this._overlayContainer=He,this._componentFactoryResolver=Xe,this._positionBuilder=yt,this._keyboardDispatcher=Ye,this._injector=rt,this._ngZone=Yt,this._document=Nt,this._directionality=Et,this._location=Vt,this._outsideClickDispatcher=oe,this._animationsModuleType=tt}create(Ie){const He=this._createHostElement(),Xe=this._createPaneElement(He),yt=this._createPortalOutlet(Xe),Ye=new D(Ie);return Ye.direction=Ye.direction||this._directionality.value,new v(yt,He,Xe,Ye,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher,"NoopAnimations"===this._animationsModuleType)}position(){return this._positionBuilder}_createPaneElement(Ie){const He=this._document.createElement("div");return He.id="cdk-overlay-"+ke++,He.classList.add("cdk-overlay-pane"),Ie.appendChild(He),He}_createHostElement(){const Ie=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(Ie),Ie}_createPortalOutlet(Ie){return this._appRef||(this._appRef=this._injector.get(w.o8S)),new R.aI(Ie,this._componentFactoryResolver,this._appRef,this._injector,this._document)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(de),w.KVO(r),w.KVO(w.OM3),w.KVO(fe),w.KVO(L),w.KVO(w.zZn),w.KVO(w.SKi),w.KVO(t.qQ),w.KVO(F.dS),w.KVO(t.aZ),w.KVO(_),w.KVO(w.bc$,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();const _e=[{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"}],be=new w.nKC("cdk-connected-overlay-scroll-strategy",{providedIn:"root",factory:()=>{const ye=(0,w.WQX)(mt);return()=>ye.scrollStrategies.reposition()}});let pe=(()=>{class ye{constructor(Ie){this.elementRef=Ie}static#e=this.\u0275fac=function(He){return new(He||ye)(w.rXU(w.aKT))};static#t=this.\u0275dir=w.FsC({type:ye,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"],standalone:!0})}return ye})(),Ze=(()=>{class ye{get offsetX(){return this._offsetX}set offsetX(Ie){this._offsetX=Ie,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(Ie){this._offsetY=Ie,this._position&&this._updatePositionStrategy(this._position)}get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(Ie){this._disposeOnNavigation=Ie}constructor(Ie,He,Xe,yt,Ye){this._overlay=Ie,this._dir=Ye,this._backdropSubscription=W.yU.EMPTY,this._attachSubscription=W.yU.EMPTY,this._detachSubscription=W.yU.EMPTY,this._positionSubscription=W.yU.EMPTY,this._disposeOnNavigation=!1,this._ngZone=(0,w.WQX)(w.SKi),this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.hasBackdrop=!1,this.lockPosition=!1,this.flexibleDimensions=!1,this.growAfterOpen=!1,this.push=!1,this.backdropClick=new w.bkB,this.positionChange=new w.bkB,this.attach=new w.bkB,this.detach=new w.bkB,this.overlayKeydown=new w.bkB,this.overlayOutsideClick=new w.bkB,this._templatePortal=new R.VA(He,Xe),this._scrollStrategyFactory=yt,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&&this._overlayRef.dispose()}ngOnChanges(Ie){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),Ie.origin&&this.open&&this._position.apply()),Ie.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=_e);const Ie=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=Ie.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=Ie.detachments().subscribe(()=>this.detach.emit()),Ie.keydownEvents().subscribe(He=>{this.overlayKeydown.next(He),He.keyCode===j._f&&!this.disableClose&&!(0,j.rp)(He)&&(He.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(He=>{const Xe=this._getOriginElement(),yt=(0,l.Fb)(He);(!Xe||Xe!==yt&&!Xe.contains(yt))&&this.overlayOutsideClick.next(He)})}_buildConfig(){const Ie=this._position=this.positionStrategy||this._createPositionStrategy(),He=new D({direction:this._dir,positionStrategy:Ie,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop,disposeOnNavigation:this.disposeOnNavigation});return(this.width||0===this.width)&&(He.width=this.width),(this.height||0===this.height)&&(He.height=this.height),(this.minWidth||0===this.minWidth)&&(He.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(He.minHeight=this.minHeight),this.backdropClass&&(He.backdropClass=this.backdropClass),this.panelClass&&(He.panelClass=this.panelClass),He}_updatePositionStrategy(Ie){const He=this.positions.map(Xe=>({originX:Xe.originX,originY:Xe.originY,overlayX:Xe.overlayX,overlayY:Xe.overlayY,offsetX:Xe.offsetX||this.offsetX,offsetY:Xe.offsetY||this.offsetY,panelClass:Xe.panelClass||void 0}));return Ie.setOrigin(this._getOrigin()).withPositions(He).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const Ie=this._overlay.position().flexibleConnectedTo(this._getOrigin());return this._updatePositionStrategy(Ie),Ie}_getOrigin(){return this.origin instanceof pe?this.origin.elementRef:this.origin}_getOriginElement(){return this.origin instanceof pe?this.origin.elementRef.nativeElement:this.origin instanceof w.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(Ie=>{this.backdropClick.emit(Ie)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function y(ye,ue=!1){return(0,d.N)((Ie,He)=>{let Xe=0;Ie.subscribe((0,T._)(He,yt=>{const Ye=ye(yt,Xe++);(Ye||ue)&&He.next(yt),!Ye&&He.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(Ie=>{this._ngZone.run(()=>this.positionChange.emit(Ie)),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}static#e=this.\u0275fac=function(He){return new(He||ye)(w.rXU(mt),w.rXU(w.C4Q),w.rXU(w.c1b),w.rXU(be),w.rXU(F.dS,8))};static#t=this.\u0275dir=w.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",w.L39],lockPosition:[2,"cdkConnectedOverlayLockPosition","lockPosition",w.L39],flexibleDimensions:[2,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",w.L39],growAfterOpen:[2,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen",w.L39],push:[2,"cdkConnectedOverlayPush","push",w.L39],disposeOnNavigation:[2,"cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",w.L39]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],standalone:!0,features:[w.GFd,w.OA$]})}return ye})();const at={provide:be,deps:[mt],useFactory:function _t(ye){return()=>ye.scrollStrategies.reposition()}};let pt=(()=>{class ye{static#e=this.\u0275fac=function(He){return new(He||ye)};static#t=this.\u0275mod=w.$C({type:ye});static#i=this.\u0275inj=w.G2t({providers:[mt,at],imports:[F.jI,R.jc,e.E9,e.E9]})}return ye})()},6860:(Qe,te,g)=>{"use strict";g.d(te,{BD:()=>$,BQ:()=>y,CZ:()=>W,Fb:()=>ie,KT:()=>J,MU:()=>I,OD:()=>S,r5:()=>F,v8:()=>ge,vc:()=>ee});var e=g(4438),t=g(177);let w;try{w=typeof Intl<"u"&&Intl.v8BreakIterator}catch{w=!1}let x,S=(()=>{class ae{constructor(Te){this._platformId=Te,this.isBrowser=this._platformId?(0,t.UE)(this._platformId):"object"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!w)&&typeof CSS<"u"&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(e.Agw))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();const f=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function I(){if(x)return x;if("object"!=typeof document||!document)return x=new Set(f),x;let ae=document.createElement("input");return x=new Set(f.filter(Me=>(ae.setAttribute("type",Me),ae.type===Me))),x}let d;function y(ae){return function T(){if(null==d&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>d=!0}))}finally{d=d||!1}return d}()?ae:!!ae.capture}var F=function(ae){return ae[ae.NORMAL=0]="NORMAL",ae[ae.NEGATED=1]="NEGATED",ae[ae.INVERTED=2]="INVERTED",ae}(F||{});let R,z,j;function W(){if(null==z){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return z=!1,z;if("scrollBehavior"in document.documentElement.style)z=!0;else{const ae=Element.prototype.scrollTo;z=!!ae&&!/\{\s*\[native code\]\s*\}/.test(ae.toString())}}return z}function $(){if("object"!=typeof document||!document)return F.NORMAL;if(null==R){const ae=document.createElement("div"),Me=ae.style;ae.dir="rtl",Me.width="1px",Me.overflow="auto",Me.visibility="hidden",Me.pointerEvents="none",Me.position="absolute";const Te=document.createElement("div"),de=Te.style;de.width="2px",de.height="1px",ae.appendChild(Te),document.body.appendChild(ae),R=F.NORMAL,0===ae.scrollLeft&&(ae.scrollLeft=1,R=0===ae.scrollLeft?F.NEGATED:F.INVERTED),ae.remove()}return R}function J(ae){if(function Q(){if(null==j){const ae=typeof document<"u"?document.head:null;j=!(!ae||!ae.createShadowRoot&&!ae.attachShadow)}return j}()){const Me=ae.getRootNode?ae.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&Me instanceof ShadowRoot)return Me}return null}function ee(){let ae=typeof document<"u"&&document?document.activeElement:null;for(;ae&&ae.shadowRoot;){const Me=ae.shadowRoot.activeElement;if(Me===ae)break;ae=Me}return ae}function ie(ae){return ae.composedPath?ae.composedPath()[0]:ae.target}function ge(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}},6939:(Qe,te,g)=>{"use strict";g.d(te,{A8:()=>T,I3:()=>J,VA:()=>y,aI:()=>W,bV:()=>j,jc:()=>ie,lb:()=>R});var e=g(4438),t=g(177);class d{attach(Me){return this._attachedHost=Me,Me.attach(this)}detach(){let Me=this._attachedHost;null!=Me&&(this._attachedHost=null,Me.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(Me){this._attachedHost=Me}}class T extends d{constructor(Me,Te,de,D,n){super(),this.component=Me,this.viewContainerRef=Te,this.injector=de,this.componentFactoryResolver=D,this.projectableNodes=n}}class y extends d{constructor(Me,Te,de,D){super(),this.templateRef=Me,this.viewContainerRef=Te,this.context=de,this.injector=D}get origin(){return this.templateRef.elementRef}attach(Me,Te=this.context){return this.context=Te,super.attach(Me)}detach(){return this.context=void 0,super.detach()}}class F extends d{constructor(Me){super(),this.element=Me instanceof e.aKT?Me.nativeElement:Me}}class R{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(Me){return Me instanceof T?(this._attachedPortal=Me,this.attachComponentPortal(Me)):Me instanceof y?(this._attachedPortal=Me,this.attachTemplatePortal(Me)):this.attachDomPortal&&Me instanceof F?(this._attachedPortal=Me,this.attachDomPortal(Me)):void 0}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(Me){this._disposeFn=Me}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class W extends R{constructor(Me,Te,de,D,n){super(),this.outletElement=Me,this._componentFactoryResolver=Te,this._appRef=de,this._defaultInjector=D,this.attachDomPortal=c=>{const m=c.element,h=this._document.createComment("dom-portal");m.parentNode.insertBefore(h,m),this.outletElement.appendChild(m),this._attachedPortal=c,super.setDisposeFn(()=>{h.parentNode&&h.parentNode.replaceChild(m,h)})},this._document=n}attachComponentPortal(Me){const de=(Me.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Me.component);let D;return Me.viewContainerRef?(D=Me.viewContainerRef.createComponent(de,Me.viewContainerRef.length,Me.injector||Me.viewContainerRef.injector,Me.projectableNodes||void 0),this.setDisposeFn(()=>D.destroy())):(D=de.create(Me.injector||this._defaultInjector||e.zZn.NULL),this._appRef.attachView(D.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(D.hostView),D.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(D)),this._attachedPortal=Me,D}attachTemplatePortal(Me){let Te=Me.viewContainerRef,de=Te.createEmbeddedView(Me.templateRef,Me.context,{injector:Me.injector});return de.rootNodes.forEach(D=>this.outletElement.appendChild(D)),de.detectChanges(),this.setDisposeFn(()=>{let D=Te.indexOf(de);-1!==D&&Te.remove(D)}),this._attachedPortal=Me,de}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(Me){return Me.hostView.rootNodes[0]}}let j=(()=>{class ae extends y{constructor(Te,de){super(Te,de)}static#e=this.\u0275fac=function(de){return new(de||ae)(e.rXU(e.C4Q),e.rXU(e.c1b))};static#t=this.\u0275dir=e.FsC({type:ae,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],standalone:!0,features:[e.Vt3]})}return ae})(),J=(()=>{class ae extends R{constructor(Te,de,D){super(),this._componentFactoryResolver=Te,this._viewContainerRef=de,this._isInitialized=!1,this.attached=new e.bkB,this.attachDomPortal=n=>{const c=n.element,m=this._document.createComment("dom-portal");n.setAttachedHost(this),c.parentNode.insertBefore(m,c),this._getRootNode().appendChild(c),this._attachedPortal=n,super.setDisposeFn(()=>{m.parentNode&&m.parentNode.replaceChild(c,m)})},this._document=D}get portal(){return this._attachedPortal}set portal(Te){this.hasAttached()&&!Te&&!this._isInitialized||(this.hasAttached()&&super.detach(),Te&&super.attach(Te),this._attachedPortal=Te||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(Te){Te.setAttachedHost(this);const de=null!=Te.viewContainerRef?Te.viewContainerRef:this._viewContainerRef,n=(Te.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Te.component),c=de.createComponent(n,de.length,Te.injector||de.injector,Te.projectableNodes||void 0);return de!==this._viewContainerRef&&this._getRootNode().appendChild(c.hostView.rootNodes[0]),super.setDisposeFn(()=>c.destroy()),this._attachedPortal=Te,this._attachedRef=c,this.attached.emit(c),c}attachTemplatePortal(Te){Te.setAttachedHost(this);const de=this._viewContainerRef.createEmbeddedView(Te.templateRef,Te.context,{injector:Te.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=Te,this._attachedRef=de,this.attached.emit(de),de}_getRootNode(){const Te=this._viewContainerRef.element.nativeElement;return Te.nodeType===Te.ELEMENT_NODE?Te:Te.parentNode}static#e=this.\u0275fac=function(de){return new(de||ae)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU(t.qQ))};static#t=this.\u0275dir=e.FsC({type:ae,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[0,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],standalone:!0,features:[e.Vt3]})}return ae})(),ie=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=e.$C({type:ae});static#i=this.\u0275inj=e.G2t({})}return ae})()},5542:(Qe,te,g)=>{"use strict";g.d(te,{uv:()=>m,Gj:()=>ze,R:()=>c,E9:()=>qe,Xj:()=>C});var e=g(4085),t=g(4438),w=g(1413),S=g(7673),l=g(1985),x=g(3726),f=g(6780),I=g(8359);const d={schedule(Ke){let se=requestAnimationFrame,X=cancelAnimationFrame;const{delegate:me}=d;me&&(se=me.requestAnimationFrame,X=me.cancelAnimationFrame);const ce=se(fe=>{X=void 0,Ke(fe)});return new I.yU(()=>X?.(ce))},requestAnimationFrame(...Ke){const{delegate:se}=d;return(se?.requestAnimationFrame||requestAnimationFrame)(...Ke)},cancelAnimationFrame(...Ke){const{delegate:se}=d;return(se?.cancelAnimationFrame||cancelAnimationFrame)(...Ke)},delegate:void 0};var y=g(9687);new class F extends y.q{flush(se){this._active=!0;const X=this._scheduled;this._scheduled=void 0;const{actions:me}=this;let ce;se=se||me.shift();do{if(ce=se.execute(se.state,se.delay))break}while((se=me[0])&&se.id===X&&me.shift());if(this._active=!1,ce){for(;(se=me[0])&&se.id===X&&me.shift();)se.unsubscribe();throw ce}}}(class T extends f.R{constructor(se,X){super(se,X),this.scheduler=se,this.work=X}requestAsyncId(se,X,me=0){return null!==me&&me>0?super.requestAsyncId(se,X,me):(se.actions.push(this),se._scheduled||(se._scheduled=d.requestAnimationFrame(()=>se.flush(void 0))))}recycleAsyncId(se,X,me=0){var ce;if(null!=me?me>0:this.delay>0)return super.recycleAsyncId(se,X,me);const{actions:fe}=se;null!=X&&(null===(ce=fe[fe.length-1])||void 0===ce?void 0:ce.id)!==X&&(d.cancelAnimationFrame(X),se._scheduled=void 0)}});g(5007);var $=g(3798),j=g(5964),Q=g(6977),J=g(6860),ee=g(177),ie=g(8203);let c=(()=>{class Ke{constructor(X,me,ce){this._ngZone=X,this._platform=me,this._scrolled=new w.B,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=ce}register(X){this.scrollContainers.has(X)||this.scrollContainers.set(X,X.elementScrolled().subscribe(()=>this._scrolled.next(X)))}deregister(X){const me=this.scrollContainers.get(X);me&&(me.unsubscribe(),this.scrollContainers.delete(X))}scrolled(X=20){return this._platform.isBrowser?new l.c(me=>{this._globalSubscription||this._addGlobalListener();const ce=X>0?this._scrolled.pipe((0,$.Z)(X)).subscribe(me):this._scrolled.subscribe(me);return this._scrolledCount++,()=>{ce.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,S.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((X,me)=>this.deregister(me)),this._scrolled.complete()}ancestorScrolled(X,me){const ce=this.getAncestorScrollContainers(X);return this.scrolled(me).pipe((0,j.p)(fe=>!fe||ce.indexOf(fe)>-1))}getAncestorScrollContainers(X){const me=[];return this.scrollContainers.forEach((ce,fe)=>{this._scrollableContainsElement(fe,X)&&me.push(fe)}),me}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(X,me){let ce=(0,e.i8)(me),fe=X.getElementRef().nativeElement;do{if(ce==fe)return!0}while(ce=ce.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const X=this._getWindow();return(0,x.R)(X.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.KVO(t.SKi),t.KVO(J.OD),t.KVO(ee.qQ,8))};static#t=this.\u0275prov=t.jDH({token:Ke,factory:Ke.\u0275fac,providedIn:"root"})}return Ke})(),m=(()=>{class Ke{constructor(X,me,ce,fe){this.elementRef=X,this.scrollDispatcher=me,this.ngZone=ce,this.dir=fe,this._destroyed=new w.B,this._elementScrolled=new l.c(ke=>this.ngZone.runOutsideAngular(()=>(0,x.R)(this.elementRef.nativeElement,"scroll").pipe((0,Q.Q)(this._destroyed)).subscribe(ke)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(X){const me=this.elementRef.nativeElement,ce=this.dir&&"rtl"==this.dir.value;null==X.left&&(X.left=ce?X.end:X.start),null==X.right&&(X.right=ce?X.start:X.end),null!=X.bottom&&(X.top=me.scrollHeight-me.clientHeight-X.bottom),ce&&(0,J.BD)()!=J.r5.NORMAL?(null!=X.left&&(X.right=me.scrollWidth-me.clientWidth-X.left),(0,J.BD)()==J.r5.INVERTED?X.left=X.right:(0,J.BD)()==J.r5.NEGATED&&(X.left=X.right?-X.right:X.right)):null!=X.right&&(X.left=me.scrollWidth-me.clientWidth-X.right),this._applyScrollToOptions(X)}_applyScrollToOptions(X){const me=this.elementRef.nativeElement;(0,J.CZ)()?me.scrollTo(X):(null!=X.top&&(me.scrollTop=X.top),null!=X.left&&(me.scrollLeft=X.left))}measureScrollOffset(X){const me="left",fe=this.elementRef.nativeElement;if("top"==X)return fe.scrollTop;if("bottom"==X)return fe.scrollHeight-fe.clientHeight-fe.scrollTop;const ke=this.dir&&"rtl"==this.dir.value;return"start"==X?X=ke?"right":me:"end"==X&&(X=ke?me:"right"),ke&&(0,J.BD)()==J.r5.INVERTED?X==me?fe.scrollWidth-fe.clientWidth-fe.scrollLeft:fe.scrollLeft:ke&&(0,J.BD)()==J.r5.NEGATED?X==me?fe.scrollLeft+fe.scrollWidth-fe.clientWidth:-fe.scrollLeft:X==me?fe.scrollLeft:fe.scrollWidth-fe.clientWidth-fe.scrollLeft}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.rXU(t.aKT),t.rXU(c),t.rXU(t.SKi),t.rXU(ie.dS,8))};static#t=this.\u0275dir=t.FsC({type:Ke,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]],standalone:!0})}return Ke})(),C=(()=>{class Ke{constructor(X,me,ce){this._platform=X,this._change=new w.B,this._changeListener=fe=>{this._change.next(fe)},this._document=ce,me.runOutsideAngular(()=>{if(X.isBrowser){const fe=this._getWindow();fe.addEventListener("resize",this._changeListener),fe.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const X=this._getWindow();X.removeEventListener("resize",this._changeListener),X.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const X={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),X}getViewportRect(){const X=this.getViewportScrollPosition(),{width:me,height:ce}=this.getViewportSize();return{top:X.top,left:X.left,bottom:X.top+ce,right:X.left+me,height:ce,width:me}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const X=this._document,me=this._getWindow(),ce=X.documentElement,fe=ce.getBoundingClientRect();return{top:-fe.top||X.body.scrollTop||me.scrollY||ce.scrollTop||0,left:-fe.left||X.body.scrollLeft||me.scrollX||ce.scrollLeft||0}}change(X=20){return X>0?this._change.pipe((0,$.Z)(X)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const X=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:X.innerWidth,height:X.innerHeight}:{width:0,height:0}}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.KVO(J.OD),t.KVO(t.SKi),t.KVO(ee.qQ,8))};static#t=this.\u0275prov=t.jDH({token:Ke,factory:Ke.\u0275fac,providedIn:"root"})}return Ke})(),ze=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=t.$C({type:Ke});static#i=this.\u0275inj=t.G2t({})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=t.$C({type:Ke});static#i=this.\u0275inj=t.G2t({imports:[ie.jI,ze,ie.jI,ze]})}return Ke})()},7768:(Qe,te,g)=>{"use strict";g.d(te,{FK:()=>ie,Up:()=>J,VI:()=>Q,nb:()=>R,oX:()=>F,uY:()=>ge,v5:()=>ee,x8:()=>j});var e=g(8617),t=g(8203),w=g(7336),S=g(4438),l=g(6860),x=g(1413),f=g(7673),I=g(9172),d=g(6977);const T=["*"];function y(ae,Me){1&ae&&S.SdG(0)}let F=(()=>{class ae{constructor(Te){this._elementRef=Te}focus(){this._elementRef.nativeElement.focus()}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(S.aKT))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"],standalone:!0})}return ae})(),R=(()=>{class ae{constructor(Te){this.template=Te}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["","cdkStepLabel",""]],standalone:!0})}return ae})(),z=0;const j=new S.nKC("STEPPER_GLOBAL_OPTIONS");let Q=(()=>{class ae{get completed(){return null==this._completedOverride?this._getDefaultCompleted():this._completedOverride}set completed(Te){this._completedOverride=Te}_getDefaultCompleted(){return this.stepControl?this.stepControl.valid&&this.interacted:this.interacted}get hasError(){return null==this._customError?this._getDefaultError():this._customError}set hasError(Te){this._customError=Te}_getDefaultError(){return this.stepControl&&this.stepControl.invalid&&this.interacted}constructor(Te,de){this._stepper=Te,this.interacted=!1,this.interactedStream=new S.bkB,this.editable=!0,this.optional=!1,this._completedOverride=null,this._customError=null,this._stepperOptions=de||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}select(){this._stepper.selected=this}reset(){this.interacted=!1,null!=this._completedOverride&&(this._completedOverride=!1),null!=this._customError&&(this._customError=!1),this.stepControl&&this.stepControl.reset()}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this.interacted||(this.interacted=!0,this.interactedStream.emit(this))}_showError(){return this._stepperOptions.showError??null!=this._customError}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU((0,S.Rfq)(()=>J)),S.rXU(j,8))};static#t=this.\u0275cmp=S.VBU({type:ae,selectors:[["cdk-step"]],contentQueries:function(de,D,n){if(1&de&&S.wni(n,R,5),2&de){let c;S.mGM(c=S.lsd())&&(D.stepLabel=c.first)}},viewQuery:function(de,D){if(1&de&&S.GBs(S.C4Q,7),2&de){let n;S.mGM(n=S.lsd())&&(D.content=n.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"],standalone:!0,features:[S.GFd,S.OA$,S.aNF],ngContentSelectors:T,decls:1,vars:0,template:function(de,D){1&de&&(S.NAR(),S.DNE(0,y,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}return ae})(),J=(()=>{class ae{get selectedIndex(){return this._selectedIndex}set selectedIndex(Te){this.steps&&this._steps?(this._isValidIndex(Te),this.selected?._markAsInteracted(),this._selectedIndex!==Te&&!this._anyControlsInvalidOrPending(Te)&&(Te>=this._selectedIndex||this.steps.toArray()[Te].editable)&&this._updateSelectedItemIndex(Te)):this._selectedIndex=Te}get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(Te){this.selectedIndex=Te&&this.steps?this.steps.toArray().indexOf(Te):-1}get orientation(){return this._orientation}set orientation(Te){this._orientation=Te,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===Te)}constructor(Te,de,D){this._dir=Te,this._changeDetectorRef=de,this._elementRef=D,this._destroyed=new x.B,this.steps=new S.rOR,this._sortedHeaders=new S.rOR,this.linear=!1,this._selectedIndex=0,this.selectionChange=new S.bkB,this.selectedIndexChange=new S.bkB,this._orientation="horizontal",this._groupId=z++}ngAfterContentInit(){this._steps.changes.pipe((0,I.Z)(this._steps),(0,d.Q)(this._destroyed)).subscribe(Te=>{this.steps.reset(Te.filter(de=>de._stepper===this)),this.steps.notifyOnChanges()})}ngAfterViewInit(){this._stepHeader.changes.pipe((0,I.Z)(this._stepHeader),(0,d.Q)(this._destroyed)).subscribe(Te=>{this._sortedHeaders.reset(Te.toArray().sort((de,D)=>de._elementRef.nativeElement.compareDocumentPosition(D._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new e.Bu(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),(this._dir?this._dir.change:(0,f.of)()).pipe((0,I.Z)(this._layoutDirection()),(0,d.Q)(this._destroyed)).subscribe(Te=>this._keyManager.withHorizontalOrientation(Te)),this._keyManager.updateActiveItem(this._selectedIndex),this.steps.changes.subscribe(()=>{this.selected||(this._selectedIndex=Math.max(this._selectedIndex-1,0))}),this._isValidIndex(this._selectedIndex)||(this._selectedIndex=0)}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(Te=>Te.reset()),this._stateChanged()}_getStepLabelId(Te){return`cdk-step-label-${this._groupId}-${Te}`}_getStepContentId(Te){return`cdk-step-content-${this._groupId}-${Te}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(Te){const de=Te-this._selectedIndex;return de<0?"rtl"===this._layoutDirection()?"next":"previous":de>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getIndicatorType(Te,de="number"){const D=this.steps.toArray()[Te],n=this._isCurrentStep(Te);return D._displayDefaultIndicatorType?this._getDefaultIndicatorLogic(D,n):this._getGuidelineLogic(D,n,de)}_getDefaultIndicatorLogic(Te,de){return Te._showError()&&Te.hasError&&!de?"error":!Te.completed||de?"number":Te.editable?"edit":"done"}_getGuidelineLogic(Te,de,D="number"){return Te._showError()&&Te.hasError&&!de?"error":Te.completed&&!de?"done":Te.completed&&de?D:Te.editable&&de?"edit":D}_isCurrentStep(Te){return this._selectedIndex===Te}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex}_updateSelectedItemIndex(Te){const de=this.steps.toArray();this.selectionChange.emit({selectedIndex:Te,previouslySelectedIndex:this._selectedIndex,selectedStep:de[Te],previouslySelectedStep:de[this._selectedIndex]}),this._containsFocus()?this._keyManager.setActiveItem(Te):this._keyManager.updateActiveItem(Te),this._selectedIndex=Te,this.selectedIndexChange.emit(this._selectedIndex),this._stateChanged()}_onKeydown(Te){const de=(0,w.rp)(Te),D=Te.keyCode,n=this._keyManager;null==n.activeItemIndex||de||D!==w.t6&&D!==w.Fm?n.setFocusOrigin("keyboard").onKeydown(Te):(this.selectedIndex=n.activeItemIndex,Te.preventDefault())}_anyControlsInvalidOrPending(Te){return!!(this.linear&&Te>=0)&&this.steps.toArray().slice(0,Te).some(de=>{const D=de.stepControl;return(D?D.invalid||D.pending||!de.interacted:!de.completed)&&!de.optional&&!de._completedOverride})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const Te=this._elementRef.nativeElement,de=(0,l.vc)();return Te===de||Te.contains(de)}_isValidIndex(Te){return Te>-1&&(!this.steps||Te{class ae{constructor(Te){this._stepper=Te,this.type="submit"}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(J))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(de,D){1&de&&S.bIt("click",function(){return D._stepper.next()}),2&de&&S.Mr5("type",D.type)},inputs:{type:"type"},standalone:!0})}return ae})(),ie=(()=>{class ae{constructor(Te){this._stepper=Te,this.type="button"}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(J))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(de,D){1&de&&S.bIt("click",function(){return D._stepper.previous()}),2&de&&S.Mr5("type",D.type)},inputs:{type:"type"},standalone:!0})}return ae})(),ge=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=S.$C({type:ae});static#i=this.\u0275inj=S.G2t({imports:[t.jI]})}return ae})()},4109:(Qe,te,g)=>{"use strict";g.d(te,{Dc:()=>C,Hy:()=>m,NL:()=>ae,Sz:()=>j,XO:()=>R,a$:()=>W,aI:()=>c,kZ:()=>z,s3:()=>D,xn:()=>Me});var e=g(5024),t=g(4402),w=g(1413),S=g(4412),l=g(7673),x=g(6697),f=g(5964),I=g(6977),d=g(4438),T=g(8203);class y{constructor(){this.expansionModel=new e.CB(!0)}toggle(L){this.expansionModel.toggle(this._trackByValue(L))}expand(L){this.expansionModel.select(this._trackByValue(L))}collapse(L){this.expansionModel.deselect(this._trackByValue(L))}isExpanded(L){return this.expansionModel.isSelected(this._trackByValue(L))}toggleDescendants(L){this.expansionModel.isSelected(this._trackByValue(L))?this.collapseDescendants(L):this.expandDescendants(L)}collapseAll(){this.expansionModel.clear()}expandDescendants(L){let _=[L];_.push(...this.getDescendants(L)),this.expansionModel.select(..._.map(r=>this._trackByValue(r)))}collapseDescendants(L){let _=[L];_.push(...this.getDescendants(L)),this.expansionModel.deselect(..._.map(r=>this._trackByValue(r)))}_trackByValue(L){return this.trackBy?this.trackBy(L):L}}class R extends y{constructor(L,_){super(),this.getChildren=L,this.options=_,this.options&&(this.trackBy=this.options.trackBy)}expandAll(){this.expansionModel.clear();const L=this.dataNodes.reduce((_,r)=>[..._,...this.getDescendants(r),r],[]);this.expansionModel.select(...L.map(_=>this._trackByValue(_)))}getDescendants(L){const _=[];return this._getDescendants(_,L),_.splice(1)}_getDescendants(L,_){L.push(_);const r=this.getChildren(_);Array.isArray(r)?r.forEach(v=>this._getDescendants(L,v)):(0,t.A)(r)&&r.pipe((0,x.s)(1),(0,f.p)(Boolean)).subscribe(v=>{for(const V of v)this._getDescendants(L,V)})}}const z=new d.nKC("CDK_TREE_NODE_OUTLET_NODE");let W=(()=>{class k{constructor(_,r){this.viewContainer=_,this._node=r}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.c1b),d.rXU(z,8))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeOutlet",""]],standalone:!0})}return k})();class ${constructor(L){this.$implicit=L}}let j=(()=>{class k{constructor(_){this.template=_}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.C4Q))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:[0,"cdkTreeNodeDefWhen","when"]},standalone:!0})}return k})(),ae=(()=>{class k{get dataSource(){return this._dataSource}set dataSource(_){this._dataSource!==_&&this._switchDataSource(_)}constructor(_,r){this._differs=_,this._changeDetectorRef=r,this._onDestroy=new w.B,this._levels=new Map,this.viewChange=new S.t({start:0,end:Number.MAX_VALUE})}ngOnInit(){this._dataDiffer=this._differs.find([]).create(this.trackBy)}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),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)}ngAfterContentChecked(){const _=this._nodeDefs.filter(r=>!r.when);this._defaultNodeDef=_[0],this.dataSource&&this._nodeDefs&&!this._dataSubscription&&this._observeRenderChanges()}_switchDataSource(_){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),_||this._nodeOutlet.viewContainer.clear(),this._dataSource=_,this._nodeDefs&&this._observeRenderChanges()}_observeRenderChanges(){let _;(0,e.y4)(this._dataSource)?_=this._dataSource.connect(this):(0,t.A)(this._dataSource)?_=this._dataSource:Array.isArray(this._dataSource)&&(_=(0,l.of)(this._dataSource)),_&&(this._dataSubscription=_.pipe((0,I.Q)(this._onDestroy)).subscribe(r=>this.renderNodeChanges(r)))}renderNodeChanges(_,r=this._dataDiffer,v=this._nodeOutlet.viewContainer,V){const N=r.diff(_);N&&(N.forEachOperation((ne,Ee,ze)=>{if(null==ne.previousIndex)this.insertNode(_[ze],ze,v,V);else if(null==ze)v.remove(Ee),this._levels.delete(ne.item);else{const qe=v.get(Ee);v.move(qe,ze)}}),this._changeDetectorRef.detectChanges())}_getNodeDef(_,r){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(V=>V.when&&V.when(r,_))||this._defaultNodeDef}insertNode(_,r,v,V){const N=this._getNodeDef(_,r),ne=new $(_);ne.level=this.treeControl.getLevel?this.treeControl.getLevel(_):typeof V<"u"&&this._levels.has(V)?this._levels.get(V)+1:0,this._levels.set(_,ne.level),(v||this._nodeOutlet.viewContainer).createEmbeddedView(N.template,ne,r),Me.mostRecentTreeNode&&(Me.mostRecentTreeNode.data=_)}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d._q3),d.rXU(d.gRc))};static#t=this.\u0275cmp=d.VBU({type:k,selectors:[["cdk-tree"]],contentQueries:function(r,v,V){if(1&r&&d.wni(V,j,5),2&r){let N;d.mGM(N=d.lsd())&&(v._nodeDefs=N)}},viewQuery:function(r,v){if(1&r&&d.GBs(W,7),2&r){let V;d.mGM(V=d.lsd())&&(v._nodeOutlet=V.first)}},hostAttrs:["role","tree",1,"cdk-tree"],inputs:{dataSource:"dataSource",treeControl:"treeControl",trackBy:"trackBy"},exportAs:["cdkTree"],standalone:!0,features:[d.aNF],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(r,v){1&r&&d.eu8(0,0)},dependencies:[W],encapsulation:2})}return k})(),Me=(()=>{class k{get role(){return"treeitem"}set role(_){this._elementRef.nativeElement.setAttribute("role",_)}static#e=this.mostRecentTreeNode=null;get data(){return this._data}set data(_){_!==this._data&&(this._data=_,this._setRoleFromData(),this._dataChanges.next())}get isExpanded(){return this._tree.treeControl.isExpanded(this._data)}get level(){return this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._data):this._parentNodeAriaLevel}constructor(_,r){this._elementRef=_,this._tree=r,this._destroyed=new w.B,this._dataChanges=new w.B,k.mostRecentTreeNode=this,this.role="treeitem"}ngOnInit(){this._parentNodeAriaLevel=function Te(k){let L=k.parentElement;for(;L&&!de(L);)L=L.parentElement;return L?L.classList.contains("cdk-nested-tree-node")?(0,d.Udg)(L.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._elementRef.nativeElement.setAttribute("aria-level",`${this.level+1}`)}ngOnDestroy(){k.mostRecentTreeNode===this&&(k.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}focus(){this._elementRef.nativeElement.focus()}_setRoleFromData(){this.role="treeitem"}static#t=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.aKT),d.rXU(ae))};static#i=this.\u0275dir=d.FsC({type:k,selectors:[["cdk-tree-node"]],hostAttrs:[1,"cdk-tree-node"],hostVars:1,hostBindings:function(r,v){2&r&&d.BMQ("aria-expanded",v.isExpanded)},inputs:{role:"role"},exportAs:["cdkTreeNode"],standalone:!0})}return k})();function de(k){const L=k.classList;return!(!L?.contains("cdk-nested-tree-node")&&!L?.contains("cdk-tree"))}let D=(()=>{class k extends Me{constructor(_,r,v){super(_,r),this._differs=v}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy);const _=this._tree.treeControl.getChildren(this.data);Array.isArray(_)?this.updateChildrenNodes(_):(0,t.A)(_)&&_.pipe((0,I.Q)(this._destroyed)).subscribe(r=>this.updateChildrenNodes(r)),this.nodeOutlet.changes.pipe((0,I.Q)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnInit(){super.ngOnInit()}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(_){const r=this._getNodeOutlet();_&&(this._children=_),r&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,r.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const _=this._getNodeOutlet();_&&(_.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const _=this.nodeOutlet;return _&&_.find(r=>!r._node||r._node===this)}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.aKT),d.rXU(ae),d.rXU(d._q3))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["cdk-nested-tree-node"]],contentQueries:function(r,v,V){if(1&r&&d.wni(V,W,5),2&r){let N;d.mGM(N=d.lsd())&&(v.nodeOutlet=N)}},hostAttrs:[1,"cdk-nested-tree-node"],exportAs:["cdkNestedTreeNode"],standalone:!0,features:[d.Jv_([{provide:Me,useExisting:k},{provide:z,useExisting:k}]),d.Vt3]})}return k})();const n=/([A-Za-z%]+)$/;let c=(()=>{class k{get level(){return this._level}set level(_){this._setLevelInput(_)}get indent(){return this._indent}set indent(_){this._setIndentInput(_)}constructor(_,r,v,V){this._treeNode=_,this._tree=r,this._element=v,this._dir=V,this._destroyed=new w.B,this.indentUnits="px",this._indent=40,this._setPadding(),V&&V.change.pipe((0,I.Q)(this._destroyed)).subscribe(()=>this._setPadding(!0)),_._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const _=this._treeNode.data&&this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._treeNode.data):null,r=null==this._level?_:this._level;return"number"==typeof r?`${r*this._indent}${this.indentUnits}`:null}_setPadding(_=!1){const r=this._paddingIndent();if(r!==this._currentPadding||_){const v=this._element.nativeElement,V=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",N="paddingLeft"===V?"paddingRight":"paddingLeft";v.style[V]=r||"",v.style[N]="",this._currentPadding=r}}_setLevelInput(_){this._level=isNaN(_)?null:_,this._setPadding()}_setIndentInput(_){let r=_,v="px";if("string"==typeof _){const V=_.split(n);r=V[0],v=V[1]||v}this.indentUnits=v,this._indent=(0,d.Udg)(r),this._setPadding()}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(Me),d.rXU(ae),d.rXU(d.aKT),d.rXU(T.dS,8))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:[2,"cdkTreeNodePadding","level",d.Udg],indent:[0,"cdkTreeNodePaddingIndent","indent"]},standalone:!0,features:[d.GFd]})}return k})(),m=(()=>{class k{constructor(_,r){this._tree=_,this._treeNode=r,this.recursive=!1}_toggle(_){this.recursive?this._tree.treeControl.toggleDescendants(this._treeNode.data):this._tree.treeControl.toggle(this._treeNode.data),_.stopPropagation()}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(ae),d.rXU(Me))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeToggle",""]],hostBindings:function(r,v){1&r&&d.bIt("click",function(N){return v._toggle(N)})},inputs:{recursive:[2,"cdkTreeNodeToggleRecursive","recursive",d.L39]},standalone:!0,features:[d.GFd]})}return k})(),C=(()=>{class k{static#e=this.\u0275fac=function(r){return new(r||k)};static#t=this.\u0275mod=d.$C({type:k});static#i=this.\u0275inj=d.G2t({})}return k})()},177:(Qe,te,g)=>{"use strict";g.d(te,{AJ:()=>zo,B3:()=>Oi,GH:()=>sr,Jj:()=>ar,MD:()=>wo,N0:()=>Br,P9:()=>Ta,PV:()=>or,Pc:()=>Xr,QT:()=>w,QX:()=>Sa,Sm:()=>$,Sq:()=>je,T3:()=>jt,TG:()=>Ea,UE:()=>ao,VF:()=>l,Vy:()=>Oa,Xr:()=>Fa,YU:()=>fn,ZD:()=>S,_b:()=>zi,aZ:()=>Q,bT:()=>ut,e1:()=>$n,fG:()=>Yn,fw:()=>j,hb:()=>z,hj:()=>d,lG:()=>ho,qQ:()=>f,ux:()=>Fn,vh:()=>xo});var e=g(4438);let t=null;function w(){return t}function S(Z){t??=Z}class l{}const f=new e.nKC("");let I=(()=>{class Z{historyGo(De){throw new Error("")}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>(0,e.WQX)(T),providedIn:"platform"})}return Z})();const d=new e.nKC("");let T=(()=>{class Z extends I{constructor(){super(),this._doc=(0,e.WQX)(f),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return w().getBaseHref(this._doc)}onPopState(De){const We=w().getGlobalEventTarget(this._doc,"window");return We.addEventListener("popstate",De,!1),()=>We.removeEventListener("popstate",De)}onHashChange(De){const We=w().getGlobalEventTarget(this._doc,"window");return We.addEventListener("hashchange",De,!1),()=>We.removeEventListener("hashchange",De)}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(De){this._location.pathname=De}pushState(De,We,Dt){this._history.pushState(De,We,Dt)}replaceState(De,We,Dt){this._history.replaceState(De,We,Dt)}forward(){this._history.forward()}back(){this._history.back()}historyGo(De=0){this._history.go(De)}getState(){return this._history.state}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>new Z,providedIn:"platform"})}return Z})();function y(Z,Ve){if(0==Z.length)return Ve;if(0==Ve.length)return Z;let De=0;return Z.endsWith("/")&&De++,Ve.startsWith("/")&&De++,2==De?Z+Ve.substring(1):1==De?Z+Ve:Z+"/"+Ve}function F(Z){const Ve=Z.match(/#|\?|$/),De=Ve&&Ve.index||Z.length;return Z.slice(0,De-("/"===Z[De-1]?1:0))+Z.slice(De)}function R(Z){return Z&&"?"!==Z[0]?"?"+Z:Z}let z=(()=>{class Z{historyGo(De){throw new Error("")}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>(0,e.WQX)($),providedIn:"root"})}return Z})();const W=new e.nKC("");let $=(()=>{class Z extends z{constructor(De,We){super(),this._platformLocation=De,this._removeListenerFns=[],this._baseHref=We??this._platformLocation.getBaseHrefFromDOM()??(0,e.WQX)(f).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(De){this._removeListenerFns.push(this._platformLocation.onPopState(De),this._platformLocation.onHashChange(De))}getBaseHref(){return this._baseHref}prepareExternalUrl(De){return y(this._baseHref,De)}path(De=!1){const We=this._platformLocation.pathname+R(this._platformLocation.search),Dt=this._platformLocation.hash;return Dt&&De?`${We}${Dt}`:We}pushState(De,We,Dt,ei){const pi=this.prepareExternalUrl(Dt+R(ei));this._platformLocation.pushState(De,We,pi)}replaceState(De,We,Dt,ei){const pi=this.prepareExternalUrl(Dt+R(ei));this._platformLocation.replaceState(De,We,pi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(De=0){this._platformLocation.historyGo?.(De)}static#e=this.\u0275fac=function(We){return new(We||Z)(e.KVO(I),e.KVO(W,8))};static#t=this.\u0275prov=e.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"})}return Z})(),j=(()=>{class Z extends z{constructor(De,We){super(),this._platformLocation=De,this._baseHref="",this._removeListenerFns=[],null!=We&&(this._baseHref=We)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(De){this._removeListenerFns.push(this._platformLocation.onPopState(De),this._platformLocation.onHashChange(De))}getBaseHref(){return this._baseHref}path(De=!1){const We=this._platformLocation.hash??"#";return We.length>0?We.substring(1):We}prepareExternalUrl(De){const We=y(this._baseHref,De);return We.length>0?"#"+We:We}pushState(De,We,Dt,ei){let pi=this.prepareExternalUrl(Dt+R(ei));0==pi.length&&(pi=this._platformLocation.pathname),this._platformLocation.pushState(De,We,pi)}replaceState(De,We,Dt,ei){let pi=this.prepareExternalUrl(Dt+R(ei));0==pi.length&&(pi=this._platformLocation.pathname),this._platformLocation.replaceState(De,We,pi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(De=0){this._platformLocation.historyGo?.(De)}static#e=this.\u0275fac=function(We){return new(We||Z)(e.KVO(I),e.KVO(W,8))};static#t=this.\u0275prov=e.jDH({token:Z,factory:Z.\u0275fac})}return Z})(),Q=(()=>{class Z{constructor(De){this._subject=new e.bkB,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=De;const We=this._locationStrategy.getBaseHref();this._basePath=function ge(Z){if(new RegExp("^(https?:)?//").test(Z)){const[,De]=Z.split(/\/\/[^\/]+/);return De}return Z}(F(ie(We))),this._locationStrategy.onPopState(Dt=>{this._subject.emit({url:this.path(!0),pop:!0,state:Dt.state,type:Dt.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(De=!1){return this.normalize(this._locationStrategy.path(De))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(De,We=""){return this.path()==this.normalize(De+R(We))}normalize(De){return Z.stripTrailingSlash(function ee(Z,Ve){if(!Z||!Ve.startsWith(Z))return Ve;const De=Ve.substring(Z.length);return""===De||["/",";","?","#"].includes(De[0])?De:Ve}(this._basePath,ie(De)))}prepareExternalUrl(De){return De&&"/"!==De[0]&&(De="/"+De),this._locationStrategy.prepareExternalUrl(De)}go(De,We="",Dt=null){this._locationStrategy.pushState(Dt,"",De,We),this._notifyUrlChangeListeners(this.prepareExternalUrl(De+R(We)),Dt)}replaceState(De,We="",Dt=null){this._locationStrategy.replaceState(Dt,"",De,We),this._notifyUrlChangeListeners(this.prepareExternalUrl(De+R(We)),Dt)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(De=0){this._locationStrategy.historyGo?.(De)}onUrlChange(De){return this._urlChangeListeners.push(De),this._urlChangeSubscription??=this.subscribe(We=>{this._notifyUrlChangeListeners(We.url,We.state)}),()=>{const We=this._urlChangeListeners.indexOf(De);this._urlChangeListeners.splice(We,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(De="",We){this._urlChangeListeners.forEach(Dt=>Dt(De,We))}subscribe(De,We,Dt){return this._subject.subscribe({next:De,error:We,complete:Dt})}static#e=this.normalizeQueryParams=R;static#t=this.joinWithSlash=y;static#i=this.stripTrailingSlash=F;static#n=this.\u0275fac=function(We){return new(We||Z)(e.KVO(z))};static#r=this.\u0275prov=e.jDH({token:Z,factory:()=>function J(){return new Q((0,e.KVO)(z))}(),providedIn:"root"})}return Z})();function ie(Z){return Z.replace(/\/index.html$/,"")}var Me=function(Z){return Z[Z.Decimal=0]="Decimal",Z[Z.Percent=1]="Percent",Z[Z.Currency=2]="Currency",Z[Z.Scientific=3]="Scientific",Z}(Me||{}),de=function(Z){return Z[Z.Format=0]="Format",Z[Z.Standalone=1]="Standalone",Z}(de||{}),D=function(Z){return Z[Z.Narrow=0]="Narrow",Z[Z.Abbreviated=1]="Abbreviated",Z[Z.Wide=2]="Wide",Z[Z.Short=3]="Short",Z}(D||{}),n=function(Z){return Z[Z.Short=0]="Short",Z[Z.Medium=1]="Medium",Z[Z.Long=2]="Long",Z[Z.Full=3]="Full",Z}(n||{});const c={Decimal:0,Group:1,List:2,PercentSign:3,PlusSign:4,MinusSign:5,Exponential:6,SuperscriptingExponent:7,PerMille:8,Infinity:9,NaN:10,TimeSeparator:11,CurrencyDecimal:12,CurrencyGroup:13};function V(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.DateFormat],Ve)}function N(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.TimeFormat],Ve)}function ne(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.DateTimeFormat],Ve)}function Ee(Z,Ve){const De=(0,e.H5H)(Z),We=De[e.KH2.NumberSymbols][Ve];if(typeof We>"u"){if(Ve===c.CurrencyDecimal)return De[e.KH2.NumberSymbols][c.Decimal];if(Ve===c.CurrencyGroup)return De[e.KH2.NumberSymbols][c.Group]}return We}function ce(Z){if(!Z[e.KH2.ExtraData])throw new Error(`Missing extra locale data for the locale "${Z[e.KH2.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function _e(Z,Ve){for(let De=Ve;De>-1;De--)if(typeof Z[De]<"u")return Z[De];throw new Error("Locale data API: locale data undefined")}function be(Z){const[Ve,De]=Z.split(":");return{hours:+Ve,minutes:+De}}const at=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,pt={},Xt=/((?:[^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]*)/;var ye=function(Z){return Z[Z.Short=0]="Short",Z[Z.ShortGMT=1]="ShortGMT",Z[Z.Long=2]="Long",Z[Z.Extended=3]="Extended",Z}(ye||{}),ue=function(Z){return Z[Z.FullYear=0]="FullYear",Z[Z.Month=1]="Month",Z[Z.Date=2]="Date",Z[Z.Hours=3]="Hours",Z[Z.Minutes=4]="Minutes",Z[Z.Seconds=5]="Seconds",Z[Z.FractionalSeconds=6]="FractionalSeconds",Z[Z.Day=7]="Day",Z}(ue||{}),Ie=function(Z){return Z[Z.DayPeriods=0]="DayPeriods",Z[Z.Days=1]="Days",Z[Z.Months=2]="Months",Z[Z.Eras=3]="Eras",Z}(Ie||{});function He(Z,Ve,De,We){let Dt=function gt(Z){if(Fe(Z))return Z;if("number"==typeof Z&&!isNaN(Z))return new Date(Z);if("string"==typeof Z){if(Z=Z.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(Z)){const[Dt,ei=1,pi=1]=Z.split("-").map(Di=>+Di);return Xe(Dt,ei-1,pi)}const De=parseFloat(Z);if(!isNaN(Z-De))return new Date(De);let We;if(We=Z.match(at))return function $e(Z){const Ve=new Date(0);let De=0,We=0;const Dt=Z[8]?Ve.setUTCFullYear:Ve.setFullYear,ei=Z[8]?Ve.setUTCHours:Ve.setHours;Z[9]&&(De=Number(Z[9]+Z[10]),We=Number(Z[9]+Z[11])),Dt.call(Ve,Number(Z[1]),Number(Z[2])-1,Number(Z[3]));const pi=Number(Z[4]||0)-De,Di=Number(Z[5]||0)-We,an=Number(Z[6]||0),gn=Math.floor(1e3*parseFloat("0."+(Z[7]||0)));return ei.call(Ve,pi,Di,an,gn),Ve}(We)}const Ve=new Date(Z);if(!Fe(Ve))throw new Error(`Unable to convert "${Z}" into a date`);return Ve}(Z);Ve=yt(De,Ve)||Ve;let Di,pi=[];for(;Ve;){if(Di=Xt.exec(Ve),!Di){pi.push(Ve);break}{pi=pi.concat(Di.slice(1));const yn=pi.pop();if(!yn)break;Ve=yn}}let an=Dt.getTimezoneOffset();We&&(an=q(We,an),Dt=function Ne(Z,Ve,De){const We=De?-1:1,Dt=Z.getTimezoneOffset();return function Re(Z,Ve){return(Z=new Date(Z.getTime())).setMinutes(Z.getMinutes()+Ve),Z}(Z,We*(q(Ve,Dt)-Dt))}(Dt,We,!0));let gn="";return pi.forEach(yn=>{const Dn=function he(Z){if(we[Z])return we[Z];let Ve;switch(Z){case"G":case"GG":case"GGG":Ve=Vt(Ie.Eras,D.Abbreviated);break;case"GGGG":Ve=Vt(Ie.Eras,D.Wide);break;case"GGGGG":Ve=Vt(Ie.Eras,D.Narrow);break;case"y":Ve=Nt(ue.FullYear,1,0,!1,!0);break;case"yy":Ve=Nt(ue.FullYear,2,0,!0,!0);break;case"yyy":Ve=Nt(ue.FullYear,3,0,!1,!0);break;case"yyyy":Ve=Nt(ue.FullYear,4,0,!1,!0);break;case"Y":Ve=Ae(1);break;case"YY":Ve=Ae(2,!0);break;case"YYY":Ve=Ae(3);break;case"YYYY":Ve=Ae(4);break;case"M":case"L":Ve=Nt(ue.Month,1,1);break;case"MM":case"LL":Ve=Nt(ue.Month,2,1);break;case"MMM":Ve=Vt(Ie.Months,D.Abbreviated);break;case"MMMM":Ve=Vt(Ie.Months,D.Wide);break;case"MMMMM":Ve=Vt(Ie.Months,D.Narrow);break;case"LLL":Ve=Vt(Ie.Months,D.Abbreviated,de.Standalone);break;case"LLLL":Ve=Vt(Ie.Months,D.Wide,de.Standalone);break;case"LLLLL":Ve=Vt(Ie.Months,D.Narrow,de.Standalone);break;case"w":Ve=dt(1);break;case"ww":Ve=dt(2);break;case"W":Ve=dt(1,!0);break;case"d":Ve=Nt(ue.Date,1);break;case"dd":Ve=Nt(ue.Date,2);break;case"c":case"cc":Ve=Nt(ue.Day,1);break;case"ccc":Ve=Vt(Ie.Days,D.Abbreviated,de.Standalone);break;case"cccc":Ve=Vt(Ie.Days,D.Wide,de.Standalone);break;case"ccccc":Ve=Vt(Ie.Days,D.Narrow,de.Standalone);break;case"cccccc":Ve=Vt(Ie.Days,D.Short,de.Standalone);break;case"E":case"EE":case"EEE":Ve=Vt(Ie.Days,D.Abbreviated);break;case"EEEE":Ve=Vt(Ie.Days,D.Wide);break;case"EEEEE":Ve=Vt(Ie.Days,D.Narrow);break;case"EEEEEE":Ve=Vt(Ie.Days,D.Short);break;case"a":case"aa":case"aaa":Ve=Vt(Ie.DayPeriods,D.Abbreviated);break;case"aaaa":Ve=Vt(Ie.DayPeriods,D.Wide);break;case"aaaaa":Ve=Vt(Ie.DayPeriods,D.Narrow);break;case"b":case"bb":case"bbb":Ve=Vt(Ie.DayPeriods,D.Abbreviated,de.Standalone,!0);break;case"bbbb":Ve=Vt(Ie.DayPeriods,D.Wide,de.Standalone,!0);break;case"bbbbb":Ve=Vt(Ie.DayPeriods,D.Narrow,de.Standalone,!0);break;case"B":case"BB":case"BBB":Ve=Vt(Ie.DayPeriods,D.Abbreviated,de.Format,!0);break;case"BBBB":Ve=Vt(Ie.DayPeriods,D.Wide,de.Format,!0);break;case"BBBBB":Ve=Vt(Ie.DayPeriods,D.Narrow,de.Format,!0);break;case"h":Ve=Nt(ue.Hours,1,-12);break;case"hh":Ve=Nt(ue.Hours,2,-12);break;case"H":Ve=Nt(ue.Hours,1);break;case"HH":Ve=Nt(ue.Hours,2);break;case"m":Ve=Nt(ue.Minutes,1);break;case"mm":Ve=Nt(ue.Minutes,2);break;case"s":Ve=Nt(ue.Seconds,1);break;case"ss":Ve=Nt(ue.Seconds,2);break;case"S":Ve=Nt(ue.FractionalSeconds,1);break;case"SS":Ve=Nt(ue.FractionalSeconds,2);break;case"SSS":Ve=Nt(ue.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":Ve=tt(ye.Short);break;case"ZZZZZ":Ve=tt(ye.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Ve=tt(ye.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":Ve=tt(ye.Long);break;default:return null}return we[Z]=Ve,Ve}(yn);gn+=Dn?Dn(Dt,De,an):"''"===yn?"'":yn.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),gn}function Xe(Z,Ve,De){const We=new Date(0);return We.setFullYear(Z,Ve,De),We.setHours(0,0,0),We}function yt(Z,Ve){const De=function h(Z){return(0,e.H5H)(Z)[e.KH2.LocaleId]}(Z);if(pt[De]??={},pt[De][Ve])return pt[De][Ve];let We="";switch(Ve){case"shortDate":We=V(Z,n.Short);break;case"mediumDate":We=V(Z,n.Medium);break;case"longDate":We=V(Z,n.Long);break;case"fullDate":We=V(Z,n.Full);break;case"shortTime":We=N(Z,n.Short);break;case"mediumTime":We=N(Z,n.Medium);break;case"longTime":We=N(Z,n.Long);break;case"fullTime":We=N(Z,n.Full);break;case"short":const Dt=yt(Z,"shortTime"),ei=yt(Z,"shortDate");We=Ye(ne(Z,n.Short),[Dt,ei]);break;case"medium":const pi=yt(Z,"mediumTime"),Di=yt(Z,"mediumDate");We=Ye(ne(Z,n.Medium),[pi,Di]);break;case"long":const an=yt(Z,"longTime"),gn=yt(Z,"longDate");We=Ye(ne(Z,n.Long),[an,gn]);break;case"full":const yn=yt(Z,"fullTime"),Dn=yt(Z,"fullDate");We=Ye(ne(Z,n.Full),[yn,Dn])}return We&&(pt[De][Ve]=We),We}function Ye(Z,Ve){return Ve&&(Z=Z.replace(/\{([^}]+)}/g,function(De,We){return null!=Ve&&We in Ve?Ve[We]:De})),Z}function rt(Z,Ve,De="-",We,Dt){let ei="";(Z<0||Dt&&Z<=0)&&(Dt?Z=1-Z:(Z=-Z,ei=De));let pi=String(Z);for(;pi.length0||Di>-De)&&(Di+=De),Z===ue.Hours)0===Di&&-12===De&&(Di=12);else if(Z===ue.FractionalSeconds)return function Yt(Z,Ve){return rt(Z,3).substring(0,Ve)}(Di,Ve);const an=Ee(pi,c.MinusSign);return rt(Di,Ve,an,We,Dt)}}function Vt(Z,Ve,De=de.Format,We=!1){return function(Dt,ei){return function oe(Z,Ve,De,We,Dt,ei){switch(De){case Ie.Months:return function L(Z,Ve,De){const We=(0,e.H5H)(Z),ei=_e([We[e.KH2.MonthsFormat],We[e.KH2.MonthsStandalone]],Ve);return _e(ei,De)}(Ve,Dt,We)[Z.getMonth()];case Ie.Days:return function k(Z,Ve,De){const We=(0,e.H5H)(Z),ei=_e([We[e.KH2.DaysFormat],We[e.KH2.DaysStandalone]],Ve);return _e(ei,De)}(Ve,Dt,We)[Z.getDay()];case Ie.DayPeriods:const pi=Z.getHours(),Di=Z.getMinutes();if(ei){const gn=function fe(Z){const Ve=(0,e.H5H)(Z);return ce(Ve),(Ve[e.KH2.ExtraData][2]||[]).map(We=>"string"==typeof We?be(We):[be(We[0]),be(We[1])])}(Ve),yn=function ke(Z,Ve,De){const We=(0,e.H5H)(Z);ce(We);const ei=_e([We[e.KH2.ExtraData][0],We[e.KH2.ExtraData][1]],Ve)||[];return _e(ei,De)||[]}(Ve,Dt,We),Dn=gn.findIndex(hr=>{if(Array.isArray(hr)){const[ir,br]=hr,gr=pi>=ir.hours&&Di>=ir.minutes,Cr=pi0?Math.floor(Dt/60):Math.ceil(Dt/60);switch(Z){case ye.Short:return(Dt>=0?"+":"")+rt(pi,2,ei)+rt(Math.abs(Dt%60),2,ei);case ye.ShortGMT:return"GMT"+(Dt>=0?"+":"")+rt(pi,1,ei);case ye.Long:return"GMT"+(Dt>=0?"+":"")+rt(pi,2,ei)+":"+rt(Math.abs(Dt%60),2,ei);case ye.Extended:return 0===We?"Z":(Dt>=0?"+":"")+rt(pi,2,ei)+":"+rt(Math.abs(Dt%60),2,ei);default:throw new Error(`Unknown zone width "${Z}"`)}}}const $t=0,zt=4;function St(Z){const Ve=Z.getDay(),De=0===Ve?-3:zt-Ve;return Xe(Z.getFullYear(),Z.getMonth(),Z.getDate()+De)}function dt(Z,Ve=!1){return function(De,We){let Dt;if(Ve){const ei=new Date(De.getFullYear(),De.getMonth(),1).getDay()-1,pi=De.getDate();Dt=1+Math.floor((pi+ei)/7)}else{const ei=St(De),pi=function Jt(Z){const Ve=Xe(Z,$t,1).getDay();return Xe(Z,0,1+(Ve<=zt?zt:zt+7)-Ve)}(ei.getFullYear()),Di=ei.getTime()-pi.getTime();Dt=1+Math.round(Di/6048e5)}return rt(Dt,Z,Ee(We,c.MinusSign))}}function Ae(Z,Ve=!1){return function(De,We){return rt(St(De).getFullYear(),Z,Ee(We,c.MinusSign),Ve)}}const we={};function q(Z,Ve){Z=Z.replace(/:/g,"");const De=Date.parse("Jan 01, 1970 00:00:00 "+Z)/6e4;return isNaN(De)?Ve:De}function Fe(Z){return Z instanceof Date&&!isNaN(Z.valueOf())}const Ge=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function ct(Z){const Ve=parseInt(Z);if(isNaN(Ve))throw new Error("Invalid integer literal when parsing "+Z);return Ve}function zi(Z,Ve){Ve=encodeURIComponent(Ve);for(const De of Z.split(";")){const We=De.indexOf("="),[Dt,ei]=-1==We?[De,""]:[De.slice(0,We),De.slice(We+1)];if(Dt.trim()===Ve)return decodeURIComponent(ei)}return null}const en=/\s+/,Ni=[];let fn=(()=>{class Z{constructor(De,We){this._ngEl=De,this._renderer=We,this.initialClasses=Ni,this.stateMap=new Map}set klass(De){this.initialClasses=null!=De?De.trim().split(en):Ni}set ngClass(De){this.rawClass="string"==typeof De?De.trim().split(en):De}ngDoCheck(){for(const We of this.initialClasses)this._updateState(We,!0);const De=this.rawClass;if(Array.isArray(De)||De instanceof Set)for(const We of De)this._updateState(We,!0);else if(null!=De)for(const We of Object.keys(De))this._updateState(We,!!De[We]);this._applyStateDiff()}_updateState(De,We){const Dt=this.stateMap.get(De);void 0!==Dt?(Dt.enabled!==We&&(Dt.changed=!0,Dt.enabled=We),Dt.touched=!0):this.stateMap.set(De,{enabled:We,changed:!0,touched:!0})}_applyStateDiff(){for(const De of this.stateMap){const We=De[0],Dt=De[1];Dt.changed?(this._toggleClass(We,Dt.enabled),Dt.changed=!1):Dt.touched||(Dt.enabled&&this._toggleClass(We,!1),this.stateMap.delete(We)),Dt.touched=!1}}_toggleClass(De,We){(De=De.trim()).length>0&&De.split(en).forEach(Dt=>{We?this._renderer.addClass(this._ngEl.nativeElement,Dt):this._renderer.removeClass(this._ngEl.nativeElement,Dt)})}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.aKT),e.rXU(e.sFG))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"},standalone:!0})}return Z})();class re{constructor(Ve,De,We,Dt){this.$implicit=Ve,this.ngForOf=De,this.index=We,this.count=Dt}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 je=(()=>{class Z{set ngForOf(De){this._ngForOf=De,this._ngForOfDirty=!0}set ngForTrackBy(De){this._trackByFn=De}get ngForTrackBy(){return this._trackByFn}constructor(De,We,Dt){this._viewContainer=De,this._template=We,this._differs=Dt,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForTemplate(De){De&&(this._template=De)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const De=this._ngForOf;!this._differ&&De&&(this._differ=this._differs.find(De).create(this.ngForTrackBy))}if(this._differ){const De=this._differ.diff(this._ngForOf);De&&this._applyChanges(De)}}_applyChanges(De){const We=this._viewContainer;De.forEachOperation((Dt,ei,pi)=>{if(null==Dt.previousIndex)We.createEmbeddedView(this._template,new re(Dt.item,this._ngForOf,-1,-1),null===pi?void 0:pi);else if(null==pi)We.remove(null===ei?void 0:ei);else if(null!==ei){const Di=We.get(ei);We.move(Di,pi),Ce(Di,Dt)}});for(let Dt=0,ei=We.length;Dt{Ce(We.get(Dt.currentIndex),Dt)})}static ngTemplateContextGuard(De,We){return!0}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(e._q3))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0})}return Z})();function Ce(Z,Ve){Z.context.$implicit=Ve.item}let ut=(()=>{class Z{constructor(De,We){this._viewContainer=De,this._context=new ii,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=We}set ngIf(De){this._context.$implicit=this._context.ngIf=De,this._updateView()}set ngIfThen(De){si("ngIfThen",De),this._thenTemplateRef=De,this._thenViewRef=null,this._updateView()}set ngIfElse(De){si("ngIfElse",De),this._elseTemplateRef=De,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 ngTemplateContextGuard(De,We){return!0}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0})}return Z})();class ii{constructor(){this.$implicit=null,this.ngIf=null}}function si(Z,Ve){if(Ve&&!Ve.createEmbeddedView)throw new Error(`${Z} must be a TemplateRef, but received '${(0,e.Tbb)(Ve)}'.`)}class mn{constructor(Ve,De){this._viewContainerRef=Ve,this._templateRef=De,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Ve){Ve&&!this._created?this.create():!Ve&&this._created&&this.destroy()}}let Fn=(()=>{class Z{constructor(){this._defaultViews=[],this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(De){this._ngSwitch=De,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(De){this._defaultViews.push(De)}_matchCase(De){const We=De===this._ngSwitch;return this._lastCasesMatched||=We,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),We}_updateDefaultCases(De){if(this._defaultViews.length>0&&De!==this._defaultUsed){this._defaultUsed=De;for(const We of this._defaultViews)We.enforceState(De)}}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"},standalone:!0})}return Z})(),$n=(()=>{class Z{constructor(De,We,Dt){this.ngSwitch=Dt,Dt._addCase(),this._view=new mn(De,We)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Fn,9))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"},standalone:!0})}return Z})(),Yn=(()=>{class Z{constructor(De,We,Dt){Dt._addDefault(new mn(De,We))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Fn,9))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitchDefault",""]],standalone:!0})}return Z})(),Oi=(()=>{class Z{constructor(De,We,Dt){this._ngEl=De,this._differs=We,this._renderer=Dt,this._ngStyle=null,this._differ=null}set ngStyle(De){this._ngStyle=De,!this._differ&&De&&(this._differ=this._differs.find(De).create())}ngDoCheck(){if(this._differ){const De=this._differ.diff(this._ngStyle);De&&this._applyChanges(De)}}_setStyle(De,We){const[Dt,ei]=De.split("."),pi=-1===Dt.indexOf("-")?void 0:e.czy.DashCase;null!=We?this._renderer.setStyle(this._ngEl.nativeElement,Dt,ei?`${We}${ei}`:We,pi):this._renderer.removeStyle(this._ngEl.nativeElement,Dt,pi)}_applyChanges(De){De.forEachRemovedItem(We=>this._setStyle(We.key,null)),De.forEachAddedItem(We=>this._setStyle(We.key,We.currentValue)),De.forEachChangedItem(We=>this._setStyle(We.key,We.currentValue))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.aKT),e.rXU(e.MKu),e.rXU(e.sFG))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0})}return Z})(),jt=(()=>{class Z{constructor(De){this._viewContainerRef=De,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(De){if(this._shouldRecreateView(De)){const We=this._viewContainerRef;if(this._viewRef&&We.remove(We.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const Dt=this._createContextForwardProxy();this._viewRef=We.createEmbeddedView(this.ngTemplateOutlet,Dt,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(De){return!!De.ngTemplateOutlet||!!De.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(De,We,Dt)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,We,Dt),get:(De,We,Dt)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,We,Dt)}})}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[e.OA$]})}return Z})();function hi(Z,Ve){return new e.wOt(2100,!1)}class yi{createSubscription(Ve,De){return(0,e.O8t)(()=>Ve.subscribe({next:De,error:We=>{throw We}}))}dispose(Ve){(0,e.O8t)(()=>Ve.unsubscribe())}}class Vi{createSubscription(Ve,De){return Ve.then(De,We=>{throw We})}dispose(Ve){}}const ji=new Vi,rn=new yi;let ar=(()=>{class Z{constructor(De){this._latestValue=null,this.markForCheckOnValueUpdate=!0,this._subscription=null,this._obj=null,this._strategy=null,this._ref=De}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(De){if(!this._obj){if(De)try{this.markForCheckOnValueUpdate=!1,this._subscribe(De)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return De!==this._obj?(this._dispose(),this.transform(De)):this._latestValue}_subscribe(De){this._obj=De,this._strategy=this._selectStrategy(De),this._subscription=this._strategy.createSubscription(De,We=>this._updateLatestValue(De,We))}_selectStrategy(De){if((0,e.jNT)(De))return ji;if((0,e.zjR)(De))return rn;throw hi()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(De,We){De===this._obj&&(this._latestValue=We,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.gRc,16))};static#t=this.\u0275pipe=e.EJ8({name:"async",type:Z,pure:!1,standalone:!0})}return Z})(),sr=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.toLowerCase()}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"lowercase",type:Z,pure:!0,standalone:!0})}return Z})();const nr=/(?:[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 or=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.replace(nr,We=>We[0].toUpperCase()+We.slice(1).toLowerCase())}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"titlecase",type:Z,pure:!0,standalone:!0})}return Z})(),Xr=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.toUpperCase()}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"uppercase",type:Z,pure:!0,standalone:!0})}return Z})();const zr=new e.nKC(""),Ho=new e.nKC("");let xo=(()=>{class Z{constructor(De,We,Dt){this.locale=De,this.defaultTimezone=We,this.defaultOptions=Dt}transform(De,We,Dt,ei){if(null==De||""===De||De!=De)return null;try{return He(De,We??this.defaultOptions?.dateFormat??"mediumDate",ei||this.locale,Dt??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(pi){throw hi()}}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.xe9,16),e.rXU(zr,24),e.rXU(Ho,24))};static#t=this.\u0275pipe=e.EJ8({name:"date",type:Z,pure:!0,standalone:!0})}return Z})(),Ea=(()=>{class Z{transform(De){return JSON.stringify(De,null,2)}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"json",type:Z,pure:!1,standalone:!0})}return Z})(),ho=(()=>{class Z{constructor(De){this.differs=De,this.keyValues=[],this.compareFn=xr}transform(De,We=xr){if(!De||!(De instanceof Map)&&"object"!=typeof De)return null;this.differ??=this.differs.find(De).create();const Dt=this.differ.diff(De),ei=We!==this.compareFn;return Dt&&(this.keyValues=[],Dt.forEachItem(pi=>{this.keyValues.push(function no(Z,Ve){return{key:Z,value:Ve}}(pi.key,pi.currentValue))})),(Dt||ei)&&(this.keyValues.sort(We),this.compareFn=We),this.keyValues}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.MKu,16))};static#t=this.\u0275pipe=e.EJ8({name:"keyvalue",type:Z,pure:!1,standalone:!0})}return Z})();function xr(Z,Ve){const De=Z.key,We=Ve.key;if(De===We)return 0;if(void 0===De)return 1;if(void 0===We)return-1;if(null===De)return 1;if(null===We)return-1;if("string"==typeof De&&"string"==typeof We)return De{class Z{constructor(De){this._locale=De}transform(De,We,Dt){if(!function hn(Z){return!(null==Z||""===Z||Z!=Z)}(De))return null;Dt||=this._locale;try{return function Li(Z,Ve,De){return function fi(Z,Ve,De,We,Dt,ei,pi=!1){let Di="",an=!1;if(isFinite(Z)){let gn=function Mt(Z){let We,Dt,ei,pi,Di,Ve=Math.abs(Z)+"",De=0;for((Dt=Ve.indexOf("."))>-1&&(Ve=Ve.replace(".","")),(ei=Ve.search(/e/i))>0?(Dt<0&&(Dt=ei),Dt+=+Ve.slice(ei+1),Ve=Ve.substring(0,ei)):Dt<0&&(Dt=Ve.length),ei=0;"0"===Ve.charAt(ei);ei++);if(ei===(Di=Ve.length))We=[0],Dt=1;else{for(Di--;"0"===Ve.charAt(Di);)Di--;for(Dt-=ei,We=[],pi=0;ei<=Di;ei++,pi++)We[pi]=Number(Ve.charAt(ei))}return Dt>22&&(We=We.splice(0,21),De=Dt-1,Dt=1),{digits:We,exponent:De,integerLen:Dt}}(Z);pi&&(gn=function Qt(Z){if(0===Z.digits[0])return Z;const Ve=Z.digits.length-Z.integerLen;return Z.exponent?Z.exponent+=2:(0===Ve?Z.digits.push(0,0):1===Ve&&Z.digits.push(0),Z.integerLen+=2),Z}(gn));let yn=Ve.minInt,Dn=Ve.minFrac,hr=Ve.maxFrac;if(ei){const Hn=ei.match(Ge);if(null===Hn)throw new Error(`${ei} is not a valid digit info`);const Bi=Hn[1],sn=Hn[3],fr=Hn[5];null!=Bi&&(yn=ct(Bi)),null!=sn&&(Dn=ct(sn)),null!=fr?hr=ct(fr):null!=sn&&Dn>hr&&(hr=Dn)}!function it(Z,Ve,De){if(Ve>De)throw new Error(`The minimum number of digits after fraction (${Ve}) is higher than the maximum (${De}).`);let We=Z.digits,Dt=We.length-Z.integerLen;const ei=Math.min(Math.max(Ve,Dt),De);let pi=ei+Z.integerLen,Di=We[pi];if(pi>0){We.splice(Math.max(Z.integerLen,pi));for(let Dn=pi;Dn=5)if(pi-1<0){for(let Dn=0;Dn>pi;Dn--)We.unshift(0),Z.integerLen++;We.unshift(1),Z.integerLen++}else We[pi-1]++;for(;Dt=gn?br.pop():an=!1),hr>=10?1:0},0);yn&&(We.unshift(yn),Z.integerLen++)}(gn,Dn,hr);let ir=gn.digits,br=gn.integerLen;const gr=gn.exponent;let Cr=[];for(an=ir.every(Hn=>!Hn);br0?Cr=ir.splice(br,ir.length):(Cr=ir,ir=[0]);const sa=[];for(ir.length>=Ve.lgSize&&sa.unshift(ir.splice(-Ve.lgSize,ir.length).join(""));ir.length>Ve.gSize;)sa.unshift(ir.splice(-Ve.gSize,ir.length).join(""));ir.length&&sa.unshift(ir.join("")),Di=sa.join(Ee(De,We)),Cr.length&&(Di+=Ee(De,Dt)+Cr.join("")),gr&&(Di+=Ee(De,c.Exponential)+"+"+gr)}else Di=Ee(De,c.Infinity);return Di=Z<0&&!an?Ve.negPre+Di+Ve.negSuf:Ve.posPre+Di+Ve.posSuf,Di}(Z,function Zi(Z,Ve="-"){const De={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},We=Z.split(";"),Dt=We[0],ei=We[1],pi=-1!==Dt.indexOf(".")?Dt.split("."):[Dt.substring(0,Dt.lastIndexOf("0")+1),Dt.substring(Dt.lastIndexOf("0")+1)],Di=pi[0],an=pi[1]||"";De.posPre=Di.substring(0,Di.indexOf("#"));for(let yn=0;yn{class Z{transform(De,We,Dt){if(null==De)return null;if(!this.supports(De))throw hi();return De.slice(We,Dt)}supports(De){return"string"==typeof De||Array.isArray(De)}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"slice",type:Z,pure:!1,standalone:!0})}return Z})(),wo=(()=>{class Z{static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275mod=e.$C({type:Z});static#i=this.\u0275inj=e.G2t({})}return Z})();const zo="browser",da="server";function ao(Z){return Z===zo}function Oa(Z){return Z===da}let Fa=(()=>{class Z{static#e=this.\u0275prov=(0,e.jDH)({token:Z,providedIn:"root",factory:()=>ao((0,e.WQX)(e.Agw))?new Ro((0,e.WQX)(f),window):new ha})}return Z})();class Ro{constructor(Ve,De){this.document=Ve,this.window=De,this.offset=()=>[0,0]}setOffset(Ve){this.offset=Array.isArray(Ve)?()=>Ve:Ve}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(Ve){this.window.scrollTo(Ve[0],Ve[1])}scrollToAnchor(Ve){const De=function kr(Z,Ve){const De=Z.getElementById(Ve)||Z.getElementsByName(Ve)[0];if(De)return De;if("function"==typeof Z.createTreeWalker&&Z.body&&"function"==typeof Z.body.attachShadow){const We=Z.createTreeWalker(Z.body,NodeFilter.SHOW_ELEMENT);let Dt=We.currentNode;for(;Dt;){const ei=Dt.shadowRoot;if(ei){const pi=ei.getElementById(Ve)||ei.querySelector(`[name="${Ve}"]`);if(pi)return pi}Dt=We.nextNode()}}return null}(this.document,Ve);De&&(this.scrollToElement(De),De.focus())}setHistoryScrollRestoration(Ve){this.window.history.scrollRestoration=Ve}scrollToElement(Ve){const De=Ve.getBoundingClientRect(),We=De.left+this.window.pageXOffset,Dt=De.top+this.window.pageYOffset,ei=this.offset();this.window.scrollTo(We-ei[0],Dt-ei[1])}}class ha{setOffset(Ve){}getScrollPosition(){return[0,0]}scrollToPosition(Ve){}scrollToAnchor(Ve){}setHistoryScrollRestoration(Ve){}}class Br{}},1626:(Qe,te,g)=>{"use strict";g.d(te,{Nl:()=>ge,Qq:()=>ne,a7:()=>mt,q1:()=>Pt});var e=g(467),t=g(4438),w=g(7673),S=g(1985),l=g(2806),x=g(274),f=g(5964),I=g(6354),d=g(980),T=g(5558),y=g(177);class F{}class R{}class z{constructor(re){this.normalizedNames=new Map,this.lazyUpdate=null,re?"string"==typeof re?this.lazyInit=()=>{this.headers=new Map,re.split("\n").forEach(je=>{const Ce=je.indexOf(":");if(Ce>0){const ot=je.slice(0,Ce),ut=ot.toLowerCase(),ii=je.slice(Ce+1).trim();this.maybeSetNormalizedName(ot,ut),this.headers.has(ut)?this.headers.get(ut).push(ii):this.headers.set(ut,[ii])}})}:typeof Headers<"u"&&re instanceof Headers?(this.headers=new Map,re.forEach((je,Ce)=>{this.setHeaderEntries(Ce,je)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(re).forEach(([je,Ce])=>{this.setHeaderEntries(je,Ce)})}:this.headers=new Map}has(re){return this.init(),this.headers.has(re.toLowerCase())}get(re){this.init();const je=this.headers.get(re.toLowerCase());return je&&je.length>0?je[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(re){return this.init(),this.headers.get(re.toLowerCase())||null}append(re,je){return this.clone({name:re,value:je,op:"a"})}set(re,je){return this.clone({name:re,value:je,op:"s"})}delete(re,je){return this.clone({name:re,value:je,op:"d"})}maybeSetNormalizedName(re,je){this.normalizedNames.has(je)||this.normalizedNames.set(je,re)}init(){this.lazyInit&&(this.lazyInit instanceof z?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(re=>this.applyUpdate(re)),this.lazyUpdate=null))}copyFrom(re){re.init(),Array.from(re.headers.keys()).forEach(je=>{this.headers.set(je,re.headers.get(je)),this.normalizedNames.set(je,re.normalizedNames.get(je))})}clone(re){const je=new z;return je.lazyInit=this.lazyInit&&this.lazyInit instanceof z?this.lazyInit:this,je.lazyUpdate=(this.lazyUpdate||[]).concat([re]),je}applyUpdate(re){const je=re.name.toLowerCase();switch(re.op){case"a":case"s":let Ce=re.value;if("string"==typeof Ce&&(Ce=[Ce]),0===Ce.length)return;this.maybeSetNormalizedName(re.name,je);const ot=("a"===re.op?this.headers.get(je):void 0)||[];ot.push(...Ce),this.headers.set(je,ot);break;case"d":const ut=re.value;if(ut){let ii=this.headers.get(je);if(!ii)return;ii=ii.filter(si=>-1===ut.indexOf(si)),0===ii.length?(this.headers.delete(je),this.normalizedNames.delete(je)):this.headers.set(je,ii)}else this.headers.delete(je),this.normalizedNames.delete(je)}}setHeaderEntries(re,je){const Ce=(Array.isArray(je)?je:[je]).map(ut=>ut.toString()),ot=re.toLowerCase();this.headers.set(ot,Ce),this.maybeSetNormalizedName(re,ot)}forEach(re){this.init(),Array.from(this.normalizedNames.keys()).forEach(je=>re(this.normalizedNames.get(je),this.headers.get(je)))}}class ${encodeKey(re){return ee(re)}encodeValue(re){return ee(re)}decodeKey(re){return decodeURIComponent(re)}decodeValue(re){return decodeURIComponent(re)}}const Q=/%(\d[a-f0-9])/gi,J={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ee(bt){return encodeURIComponent(bt).replace(Q,(re,je)=>J[je]??re)}function ie(bt){return`${bt}`}class ge{constructor(re={}){if(this.updates=null,this.cloneFrom=null,this.encoder=re.encoder||new $,re.fromString){if(re.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function j(bt,re){const je=new Map;return bt.length>0&&bt.replace(/^\?/,"").split("&").forEach(ot=>{const ut=ot.indexOf("="),[ii,si]=-1==ut?[re.decodeKey(ot),""]:[re.decodeKey(ot.slice(0,ut)),re.decodeValue(ot.slice(ut+1))],Pi=je.get(ii)||[];Pi.push(si),je.set(ii,Pi)}),je}(re.fromString,this.encoder)}else re.fromObject?(this.map=new Map,Object.keys(re.fromObject).forEach(je=>{const Ce=re.fromObject[je],ot=Array.isArray(Ce)?Ce.map(ie):[ie(Ce)];this.map.set(je,ot)})):this.map=null}has(re){return this.init(),this.map.has(re)}get(re){this.init();const je=this.map.get(re);return je?je[0]:null}getAll(re){return this.init(),this.map.get(re)||null}keys(){return this.init(),Array.from(this.map.keys())}append(re,je){return this.clone({param:re,value:je,op:"a"})}appendAll(re){const je=[];return Object.keys(re).forEach(Ce=>{const ot=re[Ce];Array.isArray(ot)?ot.forEach(ut=>{je.push({param:Ce,value:ut,op:"a"})}):je.push({param:Ce,value:ot,op:"a"})}),this.clone(je)}set(re,je){return this.clone({param:re,value:je,op:"s"})}delete(re,je){return this.clone({param:re,value:je,op:"d"})}toString(){return this.init(),this.keys().map(re=>{const je=this.encoder.encodeKey(re);return this.map.get(re).map(Ce=>je+"="+this.encoder.encodeValue(Ce)).join("&")}).filter(re=>""!==re).join("&")}clone(re){const je=new ge({encoder:this.encoder});return je.cloneFrom=this.cloneFrom||this,je.updates=(this.updates||[]).concat(re),je}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(re=>this.map.set(re,this.cloneFrom.map.get(re))),this.updates.forEach(re=>{switch(re.op){case"a":case"s":const je=("a"===re.op?this.map.get(re.param):void 0)||[];je.push(ie(re.value)),this.map.set(re.param,je);break;case"d":if(void 0===re.value){this.map.delete(re.param);break}{let Ce=this.map.get(re.param)||[];const ot=Ce.indexOf(ie(re.value));-1!==ot&&Ce.splice(ot,1),Ce.length>0?this.map.set(re.param,Ce):this.map.delete(re.param)}}}),this.cloneFrom=this.updates=null)}}class Me{constructor(){this.map=new Map}set(re,je){return this.map.set(re,je),this}get(re){return this.map.has(re)||this.map.set(re,re.defaultValue()),this.map.get(re)}delete(re){return this.map.delete(re),this}has(re){return this.map.has(re)}keys(){return this.map.keys()}}function de(bt){return typeof ArrayBuffer<"u"&&bt instanceof ArrayBuffer}function D(bt){return typeof Blob<"u"&&bt instanceof Blob}function n(bt){return typeof FormData<"u"&&bt instanceof FormData}class m{constructor(re,je,Ce,ot){let ut;if(this.url=je,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=re.toUpperCase(),function Te(bt){switch(bt){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||ot?(this.body=void 0!==Ce?Ce:null,ut=ot):ut=Ce,ut&&(this.reportProgress=!!ut.reportProgress,this.withCredentials=!!ut.withCredentials,ut.responseType&&(this.responseType=ut.responseType),ut.headers&&(this.headers=ut.headers),ut.context&&(this.context=ut.context),ut.params&&(this.params=ut.params),this.transferCache=ut.transferCache),this.headers??=new z,this.context??=new Me,this.params){const ii=this.params.toString();if(0===ii.length)this.urlWithParams=je;else{const si=je.indexOf("?");this.urlWithParams=je+(-1===si?"?":siYn.set(Qn,re.setHeaders[Qn]),mn)),re.setParams&&(Fn=Object.keys(re.setParams).reduce((Yn,Qn)=>Yn.set(Qn,re.setParams[Qn]),Fn)),new m(je,Ce,ii,{params:Fn,headers:mn,context:$n,reportProgress:Pi,responseType:ot,withCredentials:si,transferCache:ut})}}var h=function(bt){return bt[bt.Sent=0]="Sent",bt[bt.UploadProgress=1]="UploadProgress",bt[bt.ResponseHeader=2]="ResponseHeader",bt[bt.DownloadProgress=3]="DownloadProgress",bt[bt.Response=4]="Response",bt[bt.User=5]="User",bt}(h||{});class C{constructor(re,je=200,Ce="OK"){this.headers=re.headers||new z,this.status=void 0!==re.status?re.status:je,this.statusText=re.statusText||Ce,this.url=re.url||null,this.ok=this.status>=200&&this.status<300}}class k extends C{constructor(re={}){super(re),this.type=h.ResponseHeader}clone(re={}){return new k({headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class L extends C{constructor(re={}){super(re),this.type=h.Response,this.body=void 0!==re.body?re.body:null}clone(re={}){return new L({body:void 0!==re.body?re.body:this.body,headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class _ extends C{constructor(re){super(re,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${re.url||"(unknown url)"}`:`Http failure response for ${re.url||"(unknown url)"}: ${re.status} ${re.statusText}`,this.error=re.error||null}}function N(bt,re){return{body:re,headers:bt.headers,context:bt.context,observe:bt.observe,params:bt.params,reportProgress:bt.reportProgress,responseType:bt.responseType,withCredentials:bt.withCredentials,transferCache:bt.transferCache}}let ne=(()=>{class bt{constructor(je){this.handler=je}request(je,Ce,ot={}){let ut;if(je instanceof m)ut=je;else{let Pi,mn;Pi=ot.headers instanceof z?ot.headers:new z(ot.headers),ot.params&&(mn=ot.params instanceof ge?ot.params:new ge({fromObject:ot.params})),ut=new m(je,Ce,void 0!==ot.body?ot.body:null,{headers:Pi,context:ot.context,params:mn,reportProgress:ot.reportProgress,responseType:ot.responseType||"json",withCredentials:ot.withCredentials,transferCache:ot.transferCache})}const ii=(0,w.of)(ut).pipe((0,x.H)(Pi=>this.handler.handle(Pi)));if(je instanceof m||"events"===ot.observe)return ii;const si=ii.pipe((0,f.p)(Pi=>Pi instanceof L));switch(ot.observe||"body"){case"body":switch(ut.responseType){case"arraybuffer":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&!(Pi.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return Pi.body}));case"blob":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&!(Pi.body instanceof Blob))throw new Error("Response is not a Blob.");return Pi.body}));case"text":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&"string"!=typeof Pi.body)throw new Error("Response is not a string.");return Pi.body}));default:return si.pipe((0,I.T)(Pi=>Pi.body))}case"response":return si;default:throw new Error(`Unreachable: unhandled observe type ${ot.observe}}`)}}delete(je,Ce={}){return this.request("DELETE",je,Ce)}get(je,Ce={}){return this.request("GET",je,Ce)}head(je,Ce={}){return this.request("HEAD",je,Ce)}jsonp(je,Ce){return this.request("JSONP",je,{params:(new ge).append(Ce,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(je,Ce={}){return this.request("OPTIONS",je,Ce)}patch(je,Ce,ot={}){return this.request("PATCH",je,N(ot,Ce))}post(je,Ce,ot={}){return this.request("POST",je,N(ot,Ce))}put(je,Ce,ot={}){return this.request("PUT",je,N(ot,Ce))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(F))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const Ee=/^\)\]\}',?\n/;function qe(bt){if(bt.url)return bt.url;const re="X-Request-URL".toLocaleLowerCase();return bt.headers.get(re)}let Ke=(()=>{class bt{constructor(){this.fetchImpl=(0,t.WQX)(se,{optional:!0})?.fetch??fetch.bind(globalThis),this.ngZone=(0,t.WQX)(t.SKi)}handle(je){return new S.c(Ce=>{const ot=new AbortController;return this.doRequest(je,ot.signal,Ce).then(X,ut=>Ce.error(new _({error:ut}))),()=>ot.abort()})}doRequest(je,Ce,ot){var ut=this;return(0,e.A)(function*(){const ii=ut.createRequestInit(je);let si;try{const rr=ut.fetchImpl(je.urlWithParams,{signal:Ce,...ii});(function me(bt){bt.then(X,X)})(rr),ot.next({type:h.Sent}),si=yield rr}catch(rr){return void ot.error(new _({error:rr,status:rr.status??0,statusText:rr.statusText,url:je.urlWithParams,headers:rr.headers}))}const Pi=new z(si.headers),mn=si.statusText,Fn=qe(si)??je.urlWithParams;let $n=si.status,Yn=null;if(je.reportProgress&&ot.next(new k({headers:Pi,status:$n,statusText:mn,url:Fn})),si.body){const rr=si.headers.get("content-length"),Rn=[],_i=si.body.getReader();let jt,Ci,Oi=0;const hi=typeof Zone<"u"&&Zone.current;yield ut.ngZone.runOutsideAngular((0,e.A)(function*(){for(;;){const{done:Vi,value:ji}=yield _i.read();if(Vi)break;if(Rn.push(ji),Oi+=ji.length,je.reportProgress){Ci="text"===je.responseType?(Ci??"")+(jt??=new TextDecoder).decode(ji,{stream:!0}):void 0;const rn=()=>ot.next({type:h.DownloadProgress,total:rr?+rr:void 0,loaded:Oi,partialText:Ci});hi?hi.run(rn):rn()}}}));const yi=ut.concatChunks(Rn,Oi);try{const Vi=si.headers.get("Content-Type")??"";Yn=ut.parseBody(je,yi,Vi)}catch(Vi){return void ot.error(new _({error:Vi,headers:new z(si.headers),status:si.status,statusText:si.statusText,url:qe(si)??je.urlWithParams}))}}0===$n&&($n=Yn?200:0),$n>=200&&$n<300?(ot.next(new L({body:Yn,headers:Pi,status:$n,statusText:mn,url:Fn})),ot.complete()):ot.error(new _({error:Yn,headers:Pi,status:$n,statusText:mn,url:Fn}))})()}parseBody(je,Ce,ot){switch(je.responseType){case"json":const ut=(new TextDecoder).decode(Ce).replace(Ee,"");return""===ut?null:JSON.parse(ut);case"text":return(new TextDecoder).decode(Ce);case"blob":return new Blob([Ce],{type:ot});case"arraybuffer":return Ce.buffer}}createRequestInit(je){const Ce={},ot=je.withCredentials?"include":void 0;if(je.headers.forEach((ut,ii)=>Ce[ut]=ii.join(",")),Ce.Accept??="application/json, text/plain, */*",!Ce["Content-Type"]){const ut=je.detectContentTypeHeader();null!==ut&&(Ce["Content-Type"]=ut)}return{body:je.serializeBody(),method:je.method,headers:Ce,credentials:ot}}concatChunks(je,Ce){const ot=new Uint8Array(Ce);let ut=0;for(const ii of je)ot.set(ii,ut),ut+=ii.length;return ot}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();class se{}function X(){}function ce(bt,re){return re(bt)}function fe(bt,re){return(je,Ce)=>re.intercept(je,{handle:ot=>bt(ot,Ce)})}const mt=new t.nKC(""),_e=new t.nKC(""),be=new t.nKC(""),pe=new t.nKC("",{providedIn:"root",factory:()=>!0});function Ze(){let bt=null;return(re,je)=>{null===bt&&(bt=((0,t.WQX)(mt,{optional:!0})??[]).reduceRight(fe,ce));const Ce=(0,t.WQX)(t.TgB);if((0,t.WQX)(pe)){const ut=Ce.add();return bt(re,je).pipe((0,d.j)(()=>Ce.remove(ut)))}return bt(re,je)}}let pt=(()=>{class bt extends F{constructor(je,Ce){super(),this.backend=je,this.injector=Ce,this.chain=null,this.pendingTasks=(0,t.WQX)(t.TgB),this.contributeToStability=(0,t.WQX)(pe)}handle(je){if(null===this.chain){const Ce=Array.from(new Set([...this.injector.get(_e),...this.injector.get(be,[])]));this.chain=Ce.reduceRight((ot,ut)=>function ke(bt,re,je){return(Ce,ot)=>(0,t.N4e)(je,()=>re(Ce,ut=>bt(ut,ot)))}(ot,ut,this.injector),ce)}if(this.contributeToStability){const Ce=this.pendingTasks.add();return this.chain(je,ot=>this.backend.handle(ot)).pipe((0,d.j)(()=>this.pendingTasks.remove(Ce)))}return this.chain(je,Ce=>this.backend.handle(Ce))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(R),t.KVO(t.uvJ))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const Et=/^\)\]\}',?\n/;let oe=(()=>{class bt{constructor(je){this.xhrFactory=je}handle(je){if("JSONP"===je.method)throw new t.wOt(-2800,!1);const Ce=this.xhrFactory;return(Ce.\u0275loadImpl?(0,l.H)(Ce.\u0275loadImpl()):(0,w.of)(null)).pipe((0,T.n)(()=>new S.c(ut=>{const ii=Ce.build();if(ii.open(je.method,je.urlWithParams),je.withCredentials&&(ii.withCredentials=!0),je.headers.forEach((Rn,_i)=>ii.setRequestHeader(Rn,_i.join(","))),je.headers.has("Accept")||ii.setRequestHeader("Accept","application/json, text/plain, */*"),!je.headers.has("Content-Type")){const Rn=je.detectContentTypeHeader();null!==Rn&&ii.setRequestHeader("Content-Type",Rn)}if(je.responseType){const Rn=je.responseType.toLowerCase();ii.responseType="json"!==Rn?Rn:"text"}const si=je.serializeBody();let Pi=null;const mn=()=>{if(null!==Pi)return Pi;const Rn=ii.statusText||"OK",_i=new z(ii.getAllResponseHeaders()),Oi=function Vt(bt){return"responseURL"in bt&&bt.responseURL?bt.responseURL:/^X-Request-URL:/m.test(bt.getAllResponseHeaders())?bt.getResponseHeader("X-Request-URL"):null}(ii)||je.url;return Pi=new k({headers:_i,status:ii.status,statusText:Rn,url:Oi}),Pi},Fn=()=>{let{headers:Rn,status:_i,statusText:Oi,url:jt}=mn(),Ci=null;204!==_i&&(Ci=typeof ii.response>"u"?ii.responseText:ii.response),0===_i&&(_i=Ci?200:0);let hi=_i>=200&&_i<300;if("json"===je.responseType&&"string"==typeof Ci){const yi=Ci;Ci=Ci.replace(Et,"");try{Ci=""!==Ci?JSON.parse(Ci):null}catch(Vi){Ci=yi,hi&&(hi=!1,Ci={error:Vi,text:Ci})}}hi?(ut.next(new L({body:Ci,headers:Rn,status:_i,statusText:Oi,url:jt||void 0})),ut.complete()):ut.error(new _({error:Ci,headers:Rn,status:_i,statusText:Oi,url:jt||void 0}))},$n=Rn=>{const{url:_i}=mn(),Oi=new _({error:Rn,status:ii.status||0,statusText:ii.statusText||"Unknown Error",url:_i||void 0});ut.error(Oi)};let Yn=!1;const Qn=Rn=>{Yn||(ut.next(mn()),Yn=!0);let _i={type:h.DownloadProgress,loaded:Rn.loaded};Rn.lengthComputable&&(_i.total=Rn.total),"text"===je.responseType&&ii.responseText&&(_i.partialText=ii.responseText),ut.next(_i)},rr=Rn=>{let _i={type:h.UploadProgress,loaded:Rn.loaded};Rn.lengthComputable&&(_i.total=Rn.total),ut.next(_i)};return ii.addEventListener("load",Fn),ii.addEventListener("error",$n),ii.addEventListener("timeout",$n),ii.addEventListener("abort",$n),je.reportProgress&&(ii.addEventListener("progress",Qn),null!==si&&ii.upload&&ii.upload.addEventListener("progress",rr)),ii.send(si),ut.next({type:h.Sent}),()=>{ii.removeEventListener("error",$n),ii.removeEventListener("abort",$n),ii.removeEventListener("load",Fn),ii.removeEventListener("timeout",$n),je.reportProgress&&(ii.removeEventListener("progress",Qn),null!==si&&ii.upload&&ii.upload.removeEventListener("progress",rr)),ii.readyState!==ii.DONE&&ii.abort()}})))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(y.N0))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const tt=new t.nKC(""),zt=new t.nKC("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),St=new t.nKC("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class dt{}let Ae=(()=>{class bt{constructor(je,Ce,ot){this.doc=je,this.platform=Ce,this.cookieName=ot,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const je=this.doc.cookie||"";return je!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,y._b)(je,this.cookieName),this.lastCookieString=je),this.lastToken}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(y.qQ),t.KVO(t.Agw),t.KVO(zt))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();function we(bt,re){const je=bt.url.toLowerCase();if(!(0,t.WQX)(tt)||"GET"===bt.method||"HEAD"===bt.method||je.startsWith("http://")||je.startsWith("https://"))return re(bt);const Ce=(0,t.WQX)(dt).getToken(),ot=(0,t.WQX)(St);return null!=Ce&&!bt.headers.has(ot)&&(bt=bt.clone({headers:bt.headers.set(ot,Ce)})),re(bt)}var q=function(bt){return bt[bt.Interceptors=0]="Interceptors",bt[bt.LegacyInterceptors=1]="LegacyInterceptors",bt[bt.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",bt[bt.NoXsrfProtection=3]="NoXsrfProtection",bt[bt.JsonpSupport=4]="JsonpSupport",bt[bt.RequestsMadeViaParent=5]="RequestsMadeViaParent",bt[bt.Fetch=6]="Fetch",bt}(q||{});function Ne(...bt){const re=[ne,oe,pt,{provide:F,useExisting:pt},{provide:R,useFactory:()=>(0,t.WQX)(Ke,{optional:!0})??(0,t.WQX)(oe)},{provide:_e,useValue:we,multi:!0},{provide:tt,useValue:!0},{provide:dt,useClass:Ae}];for(const je of bt)re.push(...je.\u0275providers);return(0,t.EmA)(re)}const $e=new t.nKC("");function Fe(){return function Re(bt,re){return{\u0275kind:bt,\u0275providers:re}}(q.LegacyInterceptors,[{provide:$e,useFactory:Ze},{provide:_e,useExisting:$e,multi:!0}])}let Pt=(()=>{class bt{static#e=this.\u0275fac=function(Ce){return new(Ce||bt)};static#t=this.\u0275mod=t.$C({type:bt});static#i=this.\u0275inj=t.G2t({providers:[Ne(Fe())]})}return bt})()},4438:(Qe,te,g)=>{"use strict";function e(i,a){return Object.is(i,a)}g.d(te,{bc$:()=>hh,iLQ:()=>lp,sZ2:()=>f1,hnV:()=>D8,Hbi:()=>V9,o8S:()=>Al,BIS:()=>Ef,gRc:()=>T9,Ql9:()=>kC,OM3:()=>du,Ocv:()=>PC,abz:()=>ml,Z63:()=>Da,aKT:()=>pd,uvJ:()=>So,zcH:()=>Bs,bkB:()=>Us,y_5:()=>ao,$GK:()=>rn,nKC:()=>Ni,zZn:()=>go,_q3:()=>W8,MKu:()=>Pu,xe9:()=>G3,Co$:()=>c7,Vns:()=>u0,SKi:()=>Ha,Xx1:()=>Oa,Agw:()=>ed,PLl:()=>lh,rOR:()=>o1,sFG:()=>z5,_9s:()=>b3,czy:()=>Lc,WPN:()=>Kc,kdw:()=>Fa,C4Q:()=>D1,NYb:()=>SC,giA:()=>u9,RxE:()=>C8,c1b:()=>ko,gXe:()=>ri,mal:()=>Ai,Af3:()=>De,tdH:()=>hu,L39:()=>Mp,EWP:()=>X3,a0P:()=>Pw,Ol2:()=>Y6,w6W:()=>Vb,oH4:()=>F8,QZP:()=>lb,Rfq:()=>St,WQX:()=>hn,naY:()=>S9,Hps:()=>R6,QuC:()=>so,EmA:()=>Ss,Udg:()=>kw,fpN:()=>qC,HJs:()=>Vw,N4e:()=>Z,vPA:()=>Mm,O8t:()=>Iw,H3F:()=>Qv,H8p:()=>Js,KH2:()=>ku,TgB:()=>B1,wOt:()=>be,WHO:()=>h9,e01:()=>E8,lNU:()=>_e,h9k:()=>j2,$MX:()=>y1,ZF7:()=>Xc,Kcf:()=>nc,e5t:()=>Dh,UyX:()=>m4,cWb:()=>Pf,osQ:()=>Yc,H5H:()=>Tg,Zy3:()=>pe,mq5:()=>C_,JZv:()=>Yt,LfX:()=>it,plB:()=>Ln,jNT:()=>T8,zjR:()=>f9,TL$:()=>ch,Tbb:()=>tt,rcV:()=>Ws,Vt3:()=>H6,GFd:()=>G6,OA$:()=>Nr,Jv_:()=>l8,aNF:()=>wv,R7$:()=>V4,BMQ:()=>rg,HbH:()=>vg,ZvI:()=>s_,AVh:()=>_g,vxM:()=>m_,wni:()=>av,VBU:()=>lc,FsC:()=>fo,jDH:()=>Li,G2t:()=>Qt,$C:()=>jo,EJ8:()=>Is,rXU:()=>$2,nrm:()=>jm,eu8:()=>Mg,bVm:()=>Xm,qex:()=>Wm,k0s:()=>Gm,j41:()=>R3,RV6:()=>x_,xGo:()=>f2,Mr5:()=>Eg,KVO:()=>zn,kS0:()=>Kl,QTQ:()=>Op,bIt:()=>Vg,lsd:()=>sv,joV:()=>cl,qSk:()=>T0,XpG:()=>Ug,nI1:()=>Lv,bMT:()=>Iv,i5U:()=>Rv,brH:()=>Ov,SdG:()=>q_,NAR:()=>J_,Y8G:()=>mg,FS9:()=>Gg,Mz_:()=>qm,FCK:()=>jg,lJ4:()=>Mv,eq3:()=>Ev,l_i:()=>h8,sMw:()=>Sv,mGM:()=>Yg,sdS:()=>lv,Dyx:()=>Cg,Z7z:()=>g_,fX1:()=>xg,Njj:()=>q1,tSv:()=>un,eBV:()=>w0,npT:()=>Uf,n$t:()=>Uh,xc7:()=>gg,Kam:()=>Hg,zvX:()=>Sg,DNE:()=>mu,C5r:()=>Nv,EFF:()=>Jg,JRh:()=>t8,SpI:()=>tp,Lme:()=>ip,E5c:()=>i8,LHq:()=>np,DH7:()=>rp,mxI:()=>o8,R50:()=>a8,GBs:()=>ov});let t=null,w=!1,S=1;const l=Symbol("SIGNAL");function x(i){const a=t;return t=i,a}const T={version:0,lastCleanEpoch:0,dirty:!1,producerNode:void 0,producerLastReadVersion:void 0,producerIndexOfThis:void 0,nextProducerIndex:0,liveConsumerNode:void 0,liveConsumerIndexOfThis:void 0,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function y(i){if(w)throw new Error("");if(null===t)return;t.consumerOnSignalRead(i);const a=t.nextProducerIndex++;Me(t),ai.nextProducerIndex;)i.producerNode.pop(),i.producerLastReadVersion.pop(),i.producerIndexOfThis.pop()}}function J(i){Me(i);for(let a=0;a0}function Me(i){i.producerNode??=[],i.producerIndexOfThis??=[],i.producerLastReadVersion??=[]}function Te(i){i.liveConsumerNode??=[],i.liveConsumerIndexOfThis??=[]}const D=Symbol("UNSET"),n=Symbol("COMPUTING"),c=Symbol("ERRORED"),m={...T,value:D,dirty:!0,error:null,equal:e,producerMustRecompute:i=>i.value===D||i.value===n,producerRecomputeValue(i){if(i.value===n)throw new Error("Detected cycle in computations.");const a=i.value;i.value=n;const s=j(i);let p;try{p=i.computation()}catch(E){p=c,i.error=E}finally{Q(i,s)}a!==D&&a!==c&&p!==c&&i.equal(a,p)?i.value=a:(i.value=p,i.version++)}};let C=function h(){throw new Error};function k(){C()}let _=null;function N(i,a){W()||k(),i.equal(i.value,a)||(i.value=a,function ze(i){i.version++,function F(){S++}(),z(i),_?.()}(i))}const Ee={...T,equal:e,value:void 0};const Ke=()=>{},se={...T,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!1,consumerMarkedDirty:i=>{null!==i.schedule&&i.schedule(i.ref)},hasRun:!1,cleanupFn:Ke};var me=g(1413),ce=g(8359),fe=g(4412),ke=g(6354);const _e="https://g.co/ng/security#xss";class be extends Error{constructor(a,s){super(pe(a,s)),this.code=a}}function pe(i,a){return`NG0${Math.abs(i)}${a?": "+a:""}`}function ye(i){return{toString:i}.toString()}const Ie="__parameters__";function Ye(i,a,s){return ye(()=>{const p=function yt(i){return function(...s){if(i){const p=i(...s);for(const E in p)this[E]=p[E]}}}(a);function E(...P){if(this instanceof E)return p.apply(this,P),this;const K=new E(...P);return le.annotation=K,le;function le(Se,Je,vt){const Bt=Se.hasOwnProperty(Ie)?Se[Ie]:Object.defineProperty(Se,Ie,{value:[]})[Ie];for(;Bt.length<=vt;)Bt.push(null);return(Bt[vt]=Bt[vt]||[]).push(K),Se}}return s&&(E.prototype=Object.create(s.prototype)),E.prototype.ngMetadataName=i,E.annotationCls=E,E})}const Yt=globalThis;function Vt(i){for(let a in i)if(i[a]===Vt)return a;throw Error("Could not find renamed property on target object.")}function oe(i,a){for(const s in a)a.hasOwnProperty(s)&&!i.hasOwnProperty(s)&&(i[s]=a[s])}function tt(i){if("string"==typeof i)return i;if(Array.isArray(i))return"["+i.map(tt).join(", ")+"]";if(null==i)return""+i;if(i.overriddenName)return`${i.overriddenName}`;if(i.name)return`${i.name}`;const a=i.toString();if(null==a)return""+a;const s=a.indexOf("\n");return-1===s?a:a.substring(0,s)}function $t(i,a){return null==i||""===i?null===a?"":a:null==a||""===a?i:i+" "+a}const Jt=Vt({__forward_ref__:Vt});function St(i){return i.__forward_ref__=St,i.toString=function(){return tt(this())},i}function dt(i){return Ae(i)?i():i}function Ae(i){return"function"==typeof i&&i.hasOwnProperty(Jt)&&i.__forward_ref__===St}function Li(i){return{token:i.token,providedIn:i.providedIn||null,factory:i.factory,value:void 0}}function Qt(i){return{providers:i.providers||[],imports:i.imports||[]}}function Mt(i){return ct(i,xi)||ct(i,zi)}function it(i){return null!==Mt(i)}function ct(i,a){return i.hasOwnProperty(a)?i[a]:null}function Ut(i){return i&&(i.hasOwnProperty(Si)||i.hasOwnProperty(en))?i[Si]:null}const xi=Vt({\u0275prov:Vt}),Si=Vt({\u0275inj:Vt}),zi=Vt({ngInjectableDef:Vt}),en=Vt({ngInjectorDef:Vt});class Ni{constructor(a,s){this._desc=a,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof s?this.__NG_ELEMENT_ID__=s:void 0!==s&&(this.\u0275prov=Li({token:this,providedIn:s.providedIn||"root",factory:s.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}function Pi(i){return i&&!!i.\u0275providers}const mn=Vt({\u0275cmp:Vt}),Fn=Vt({\u0275dir:Vt}),$n=Vt({\u0275pipe:Vt}),Yn=Vt({\u0275mod:Vt}),Qn=Vt({\u0275fac:Vt}),rr=Vt({__NG_ELEMENT_ID__:Vt}),Rn=Vt({__NG_ENV_ID__:Vt});function _i(i){return"string"==typeof i?i:null==i?"":String(i)}function ji(i,a){throw new be(-201,!1)}var rn=function(i){return i[i.Default=0]="Default",i[i.Host=1]="Host",i[i.Self=2]="Self",i[i.SkipSelf=4]="SkipSelf",i[i.Optional=8]="Optional",i}(rn||{});let ar;function sr(){return ar}function nr(i){const a=ar;return ar=i,a}function or(i,a,s){const p=Mt(i);return p&&"root"==p.providedIn?void 0===p.value?p.value=p.factory():p.value:s&rn.Optional?null:void 0!==a?a:void ji()}const zr={},Ho="__NG_DI_FLAG__",xo="ngTempTokenPath",Rr=/\n/gm,Ea="__source";let no;function xr(i){const a=no;return no=i,a}function Sa(i,a=rn.Default){if(void 0===no)throw new be(-203,!1);return null===no?or(i,void 0,a):no.get(i,a&rn.Optional?null:void 0,a)}function zn(i,a=rn.Default){return(sr()||Sa)(dt(i),a)}function hn(i,a=rn.Default){return zn(i,Yr(a))}function Yr(i){return typeof i>"u"||"number"==typeof i?i:(i.optional&&8)|(i.host&&1)|(i.self&&2)|(i.skipSelf&&4)}function Ta(i){const a=[];for(let s=0;s({token:i})),-1),Oa=Co(Ye("Optional"),8),Fa=Co(Ye("SkipSelf"),4);function kr(i,a){return i.hasOwnProperty(Qn)?i[Qn]:null}function Ua(i,a){i.forEach(s=>Array.isArray(s)?Ua(s,a):a(s))}function rs(i,a,s){a>=i.length?i.push(s):i.splice(a,0,s)}function Ga(i,a){return a>=i.length-1?i.pop():i.splice(a,1)[0]}function ga(i,a,s){let p=Lr(i,a);return p>=0?i[1|p]=s:(p=~p,function Uo(i,a,s,p){let E=i.length;if(E==a)i.push(s,p);else if(1===E)i.push(p,i[0]),i[0]=s;else{for(E--,i.push(i[E-1],i[E]);E>a;)i[E]=i[E-2],E--;i[a]=s,i[a+1]=p}}(i,p,a,s)),p}function Za(i,a){const s=Lr(i,a);if(s>=0)return i[1|s]}function Lr(i,a){return function Oo(i,a,s){let p=0,E=i.length>>s;for(;E!==p;){const P=p+(E-p>>1),K=i[P<a?E=P:p=P+1}return~(E<a){K=P-1;break}}}for(;P-1){let P;for(;++EP?"":E[vt+1].toLowerCase(),2&p&&Je!==Bt){if(Ri(p))return!1;K=!0}}}}else{if(!K&&!Ri(p)&&!Ri(Se))return!1;if(K&&Ri(Se))continue;K=!1,p=Se|1&p}}return Ri(p)||K}function Ri(i){return!(1&i)}function lt(i,a,s,p){if(null===a)return-1;let E=0;if(p||!s){let P=!1;for(;E-1)for(s++;s0?'="'+le+'"':"")+"]"}else 8&p?E+="."+K:4&p&&(E+=" "+K);else""!==E&&!Ri(K)&&(a+=Zn(P,E),E=""),p=K,P=P||!Ri(p);s++}return""!==E&&(a+=Zn(P,E)),a}function lc(i){return ye(()=>{const a=Aa(i),s={...a,decls:i.decls,vars:i.vars,template:i.template,consts:i.consts||null,ngContentSelectors:i.ngContentSelectors,onPush:i.changeDetection===Ft.OnPush,directiveDefs:null,pipeDefs:null,dependencies:a.standalone&&i.dependencies||null,getStandaloneInjector:null,signals:i.signals??!1,data:i.data||{},encapsulation:i.encapsulation||ri.Emulated,styles:i.styles||Bn,_:null,schemas:i.schemas||null,tView:null,id:""};$s(s);const p=i.dependencies;return s.directiveDefs=dn(p,!1),s.pipeDefs=dn(p,!0),s.id=function uc(i){let a=0;const s=[i.selectors,i.ngContentSelectors,i.hostVars,i.hostAttrs,i.consts,i.vars,i.decls,i.encapsulation,i.standalone,i.signals,i.exportAs,JSON.stringify(i.inputs),JSON.stringify(i.outputs),Object.getOwnPropertyNames(i.type.prototype),!!i.contentQueries,!!i.viewQuery].join("|");for(const E of s)a=Math.imul(31,a)+E.charCodeAt(0)|0;return a+=2147483648,"c"+a}(s),s})}function dc(i){return Vn(i)||Kr(i)}function hc(i){return null!==i}function jo(i){return ye(()=>({type:i.type,bootstrap:i.bootstrap||Bn,declarations:i.declarations||Bn,imports:i.imports||Bn,exports:i.exports||Bn,transitiveCompileScopes:null,schemas:i.schemas||null,id:i.id||null}))}function Wo(i,a){if(null==i)return qr;const s={};for(const p in i)if(i.hasOwnProperty(p)){const E=i[p];let P,K,le=xt.None;Array.isArray(E)?(le=E[0],P=E[1],K=E[2]??P):(P=E,K=E),a?(s[P]=le!==xt.None?[p,le]:p,a[P]=K):s[P]=p}return s}function fo(i){return ye(()=>{const a=Aa(i);return $s(a),a})}function Is(i){return{type:i.type,name:i.name,factory:null,pure:!1!==i.pure,standalone:!0===i.standalone,onDestroy:i.type.prototype.ngOnDestroy||null}}function Vn(i){return i[mn]||null}function Kr(i){return i[Fn]||null}function ua(i){return i[$n]||null}function so(i){const a=Vn(i)||Kr(i)||ua(i);return null!==a&&a.standalone}function Ir(i,a){const s=i[Yn]||null;if(!s&&!0===a)throw new Error(`Type ${tt(i)} does not have '\u0275mod' property.`);return s}function Aa(i){const a={};return{type:i.type,providersResolver:null,factory:null,hostBindings:i.hostBindings||null,hostVars:i.hostVars||0,hostAttrs:i.hostAttrs||null,contentQueries:i.contentQueries||null,declaredInputs:a,inputTransforms:null,inputConfig:i.inputs||qr,exportAs:i.exportAs||null,standalone:!0===i.standalone,signals:!0===i.signals,selectors:i.selectors||Bn,viewQuery:i.viewQuery||null,features:i.features||null,setInput:null,findHostDirectiveDefs:null,hostDirectives:null,inputs:Wo(i.inputs,a),outputs:Wo(i.outputs),debugInfo:null}}function $s(i){i.features?.forEach(a=>a(i))}function dn(i,a){if(!i)return null;const s=a?ua:dc;return()=>("function"==typeof i?i():i).map(p=>s(p)).filter(hc)}function Ss(i){return{\u0275providers:i}}function fc(...i){return{\u0275providers:_s(0,i),\u0275fromNgModule:!0}}function _s(i,...a){const s=[],p=new Set;let E;const P=K=>{s.push(K)};return Ua(a,K=>{const le=K;vs(le,P,[],p)&&(E||=[],E.push(le))}),void 0!==E&&kl(E,P),s}function kl(i,a){for(let s=0;s{a(P,p)})}}function vs(i,a,s,p){if(!(i=dt(i)))return!1;let E=null,P=Ut(i);const K=!P&&Vn(i);if(P||K){if(K&&!K.standalone)return!1;E=i}else{const Se=i.ngModule;if(P=Ut(Se),!P)return!1;E=Se}const le=p.has(E);if(K){if(le)return!1;if(p.add(E),K.dependencies){const Se="function"==typeof K.dependencies?K.dependencies():K.dependencies;for(const Je of Se)vs(Je,a,s,p)}}else{if(!P)return!1;{if(null!=P.imports&&!le){let Je;p.add(E);try{Ua(P.imports,vt=>{vs(vt,a,s,p)&&(Je||=[],Je.push(vt))})}finally{}void 0!==Je&&kl(Je,a)}if(!le){const Je=kr(E)||(()=>new E);a({provide:E,useFactory:Je,deps:Bn},E),a({provide:Wa,useValue:E,multi:!0},E),a({provide:Da,useValue:()=>zn(E),multi:!0},E)}const Se=P.providers;if(null!=Se&&!le){const Je=i;mc(Se,vt=>{a(vt,Je)})}}}return E!==i&&void 0!==i.providers}function mc(i,a){for(let s of i)Pi(s)&&(s=s.\u0275providers),Array.isArray(s)?mc(s,a):a(s)}const el=Vt({provide:String,useValue:Vt});function Qs(i){return null!==i&&"object"==typeof i&&el in i}function Eo(i){return"function"==typeof i}const Js=new Ni(""),bs={},gc={};let _c;function os(){return void 0===_c&&(_c=new as),_c}class So{}class Os extends So{get destroyed(){return this._destroyed}constructor(a,s,p,E){super(),this.parent=s,this.source=p,this.scopes=E,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,kt(a,K=>this.processProvider(K)),this.records.set(Go,ss(void 0,this)),E.has("environment")&&this.records.set(So,ss(void 0,this));const P=this.records.get(Js);null!=P&&"string"==typeof P.value&&this.scopes.add(P.value),this.injectorDefTypes=new Set(this.get(Wa,Bn,rn.Self))}destroy(){this.assertNotDestroyed(),this._destroyed=!0;const a=x(null);try{for(const p of this._ngOnDestroyHooks)p.ngOnDestroy();const s=this._onDestroyHooks;this._onDestroyHooks=[];for(const p of s)p()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),x(a)}}onDestroy(a){return this.assertNotDestroyed(),this._onDestroyHooks.push(a),()=>this.removeOnDestroy(a)}runInContext(a){this.assertNotDestroyed();const s=xr(this),p=nr(void 0);try{return a()}finally{xr(s),nr(p)}}get(a,s=zr,p=rn.Default){if(this.assertNotDestroyed(),a.hasOwnProperty(Rn))return a[Rn](this);p=Yr(p);const P=xr(this),K=nr(void 0);try{if(!(p&rn.SkipSelf)){let Se=this.records.get(a);if(void 0===Se){const Je=function Rt(i){return"function"==typeof i||"object"==typeof i&&i instanceof Ni}(a)&&Mt(a);Se=Je&&this.injectableDefInScope(Je)?ss(tl(a),bs):null,this.records.set(a,Se)}if(null!=Se)return this.hydrate(a,Se)}return(p&rn.Self?os():this.parent).get(a,s=p&rn.Optional&&s===zr?null:s)}catch(le){if("NullInjectorError"===le.name){if((le[xo]=le[xo]||[]).unshift(tt(a)),P)throw le;return function zo(i,a,s,p){const E=i[xo];throw a[Ea]&&E.unshift(a[Ea]),i.message=function da(i,a,s,p=null){i=i&&"\n"===i.charAt(0)&&"\u0275"==i.charAt(1)?i.slice(2):i;let E=tt(a);if(Array.isArray(a))E=a.map(tt).join(" -> ");else if("object"==typeof a){let P=[];for(let K in a)if(a.hasOwnProperty(K)){let le=a[K];P.push(K+":"+("string"==typeof le?JSON.stringify(le):tt(le)))}E=`{${P.join(", ")}}`}return`${s}${p?"("+p+")":""}[${E}]: ${i.replace(Rr,"\n ")}`}("\n"+i.message,E,s,p),i.ngTokenPath=E,i[xo]=null,i}(le,a,"R3InjectorError",this.source)}throw le}finally{nr(K),xr(P)}}resolveInjectorInitializers(){const a=x(null),s=xr(this),p=nr(void 0);try{const P=this.get(Da,Bn,rn.Self);for(const K of P)K()}finally{xr(s),nr(p),x(a)}}toString(){const a=[],s=this.records;for(const p of s.keys())a.push(tt(p));return`R3Injector[${a.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new be(205,!1)}processProvider(a){let s=Eo(a=dt(a))?a:dt(a&&a.provide);const p=function Il(i){return Qs(i)?ss(void 0,i.useValue):ss(il(i),bs)}(a);if(!Eo(a)&&!0===a.multi){let E=this.records.get(s);E||(E=ss(void 0,bs,!0),E.factory=()=>Ta(E.multi),this.records.set(s,E)),s=a,E.multi.push(a)}this.records.set(s,p)}hydrate(a,s){const p=x(null);try{return s.value===bs&&(s.value=gc,s.value=s.factory()),"object"==typeof s.value&&s.value&&function nt(i){return null!==i&&"object"==typeof i&&"function"==typeof i.ngOnDestroy}(s.value)&&this._ngOnDestroyHooks.add(s.value),s.value}finally{x(p)}}injectableDefInScope(a){if(!a.providedIn)return!1;const s=dt(a.providedIn);return"string"==typeof s?"any"===s||this.scopes.has(s):this.injectorDefTypes.has(s)}removeOnDestroy(a){const s=this._onDestroyHooks.indexOf(a);-1!==s&&this._onDestroyHooks.splice(s,1)}}function tl(i){const a=Mt(i),s=null!==a?a.factory:kr(i);if(null!==s)return s;if(i instanceof Ni)throw new be(204,!1);if(i instanceof Function)return function Rc(i){if(i.length>0)throw new be(204,!1);const s=function wt(i){return i&&(i[xi]||i[zi])||null}(i);return null!==s?()=>s.factory(i):()=>new i}(i);throw new be(204,!1)}function il(i,a,s){let p;if(Eo(i)){const E=dt(i);return kr(E)||tl(E)}if(Qs(i))p=()=>dt(i.useValue);else if(function Rs(i){return!(!i||!i.useFactory)}(i))p=()=>i.useFactory(...Ta(i.deps||[]));else if(function Zs(i){return!(!i||!i.useExisting)}(i))p=()=>zn(dt(i.useExisting));else{const E=dt(i&&(i.useClass||i.provide));if(!function Fs(i){return!!i.deps}(i))return kr(E)||tl(E);p=()=>new E(...Ta(i.deps))}return p}function ss(i,a,s=!1){return{factory:i,value:a,multi:s?[]:void 0}}function kt(i,a){for(const s of i)Array.isArray(s)?kt(s,a):s&&Pi(s)?kt(s.\u0275providers,a):a(s)}function Z(i,a){i instanceof Os&&i.assertNotDestroyed();const p=xr(i),E=nr(void 0);try{return a()}finally{xr(p),nr(E)}}function Ve(){return void 0!==sr()||null!=function ho(){return no}()}function De(i){if(!Ve())throw new be(-203,!1)}const Hn=0,Bi=1,sn=2,fr=3,$r=4,fa=5,Ya=6,vc=7,Ur=8,va=9,cs=10,Wn=11,bc=12,Rl=13,yc=14,Qr=15,mo=16,To=17,qs=18,Oc=19,Ns=20,Gi=21,Fc=22,Ps=23,kn=25,nl=1,Xo=7,Nc=9,ea=10;var Fl=function(i){return i[i.None=0]="None",i[i.HasTransplantedViews=2]="HasTransplantedViews",i}(Fl||{});function ka(i){return Array.isArray(i)&&"object"==typeof i[nl]}function ba(i){return Array.isArray(i)&&!0===i[nl]}function Ts(i){return!!(4&i.flags)}function Vs(i){return i.componentOffset>-1}function Ja(i){return!(1&~i.flags)}function En(i){return!!i.template}function nn(i){return!!(512&i[sn])}class _r{constructor(a,s,p){this.previousValue=a,this.currentValue=s,this.firstChange=p}isFirstChange(){return this.firstChange}}function ys(i,a,s,p){null!==a?a.applyValueToInputSignal(a,p):i[s]=p}function Nr(){return Ka}function Ka(i){return i.type.prototype.ngOnChanges&&(i.setInput=xc),ls}function ls(){const i=Ko(this),a=i?.current;if(a){const s=i.previous;if(s===qr)i.previous=a;else for(let p in a)s[p]=a[p];i.current=null,this.ngOnChanges(a)}}function xc(i,a,s,p,E){const P=this.declaredInputs[p],K=Ko(i)||function Ds(i,a){return i[Pl]=a}(i,{previous:qr,current:null}),le=K.current||(K.current={}),Se=K.previous,Je=Se[P];le[P]=new _r(Je&&Je.currentValue,s,Se===qr),ys(i,a,E,s)}Nr.ngInherit=!0;const Pl="__ngSimpleChanges__";function Ko(i){return i[Pl]||null}const As=function(i,a,s){},Vl="svg";function wr(i){for(;Array.isArray(i);)i=i[Hn];return i}function La(i,a){return wr(a[i])}function po(i,a){return wr(a[i.index])}function ec(i,a){return i.data[a]}function Hl(i,a){return i[a]}function $o(i,a){const s=a[i];return ka(s)?s:s[Hn]}function zd(i){return!(128&~i[sn])}function qa(i,a){return null==a?null:i[a]}function Pc(i){i[To]=0}function y0(i){1024&i[sn]||(i[sn]|=1024,zd(i)&&Z1(i))}function al(i){return!!(9216&i[sn]||i[Ps]?.dirty)}function x0(i){i[cs].changeDetectionScheduler?.notify(7),64&i[sn]&&(i[sn]|=1024),al(i)&&Z1(i)}function Z1(i){i[cs].changeDetectionScheduler?.notify(0);let a=ol(i);for(;null!==a&&!(8192&a[sn])&&(a[sn]|=8192,zd(a));)a=ol(a)}function Bd(i,a){if(!(256&~i[sn]))throw new be(911,!1);null===i[Gi]&&(i[Gi]=[]),i[Gi].push(a)}function ol(i){const a=i[fr];return ba(a)?a[fr]:a}const Nn={lFrame:$u(null),bindingsEnabled:!0,skipHydrationRootTNode:null};let C0=!1;function ju(){return Nn.bindingsEnabled}function sl(){return null!==Nn.skipHydrationRootTNode}function Ii(){return Nn.lFrame.lView}function ur(){return Nn.lFrame.tView}function w0(i){return Nn.lFrame.contextLView=i,i[Ur]}function q1(i){return Nn.lFrame.contextLView=null,i}function jr(){let i=M0();for(;null!==i&&64===i.type;)i=i.parent;return i}function M0(){return Nn.lFrame.currentTNode}function Ia(i,a){const s=Nn.lFrame;s.currentTNode=i,s.isParent=a}function ds(){return Nn.lFrame.isParent}function Ra(){Nn.lFrame.isParent=!1}function Yu(){return C0}function jd(i){C0=i}function hs(){const i=Nn.lFrame;let a=i.bindingRootIndex;return-1===a&&(a=i.bindingRootIndex=i.tView.bindingStartIndex),a}function tc(){return Nn.lFrame.bindingIndex}function us(){return Nn.lFrame.bindingIndex++}function Mc(i){const a=Nn.lFrame,s=a.bindingIndex;return a.bindingIndex=a.bindingIndex+i,s}function xa(i,a){const s=Nn.lFrame;s.bindingIndex=s.bindingRootIndex=i,n2(a)}function n2(i){Nn.lFrame.currentDirectiveIndex=i}function Ca(i){const a=Nn.lFrame.currentDirectiveIndex;return-1===a?null:i[a]}function Vc(){return Nn.lFrame.currentQueryIndex}function ic(i){Nn.lFrame.currentQueryIndex=i}function Ul(i){const a=i[Bi];return 2===a.type?a.declTNode:1===a.type?i[fa]:null}function zs(i,a,s){if(s&rn.SkipSelf){let E=a,P=i;for(;!(E=E.parent,null!==E||s&rn.Host||(E=Ul(P),null===E||(P=P[yc],10&E.type))););if(null===E)return!1;a=E,i=P}const p=Nn.lFrame=Wd();return p.currentTNode=a,p.lView=i,!0}function E0(i){const a=Wd(),s=i[Bi];Nn.lFrame=a,a.currentTNode=s.firstChild,a.lView=i,a.tView=s,a.contextLView=i,a.bindingIndex=s.bindingStartIndex,a.inI18n=!1}function Wd(){const i=Nn.lFrame,a=null===i?null:i.child;return null===a?$u(i):a}function $u(i){const a={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:i,child:null,inI18n:!1};return null!==i&&(i.child=a),a}function Gl(){const i=Nn.lFrame;return Nn.lFrame=i.parent,i.currentTNode=null,i.lView=null,i}const Xd=Gl;function S0(){const i=Gl();i.isParent=!0,i.tView=null,i.selectedIndex=-1,i.contextLView=null,i.elementDepthCount=0,i.currentDirectiveIndex=-1,i.currentNamespace=null,i.bindingRootIndex=-1,i.bindingIndex=-1,i.currentQueryIndex=0}function Va(){return Nn.lFrame.selectedIndex}function Hc(i){Nn.lFrame.selectedIndex=i}function Pr(){const i=Nn.lFrame;return ec(i.tView,i.selectedIndex)}function T0(){Nn.lFrame.currentNamespace=Vl}function cl(){!function A0(){Nn.lFrame.currentNamespace=null}()}let Zu=!0;function Yd(){return Zu}function Ec(i){Zu=i}function r2(i,a){for(let s=a.directiveStart,p=a.directiveEnd;s=p)break}else a[Se]<0&&(i[To]+=65536),(le>14>16&&(3&i[sn])===a&&(i[sn]+=16384,L0(le,P)):L0(le,P)}const zc=-1;class Bc{constructor(a,s,p){this.factory=a,this.resolving=!1,this.canSeeViewProviders=s,this.injectImpl=p}}function hl(i){return i!==zc}function Sc(i){return 32767&i}function ul(i,a){let s=function Tr(i){return i>>16}(i),p=a;for(;s>0;)p=p[yc],s--;return p}let R0=!0;function hd(i){const a=R0;return R0=i,a}const $d=255,Qd=5;let jl=0;const Tc={};function Uc(i,a){const s=Zd(i,a);if(-1!==s)return s;const p=a[Bi];p.firstCreatePass&&(i.injectorIndex=a.length,O0(p.data,i),O0(a,null),O0(p.blueprint,null));const E=Wl(i,a),P=i.injectorIndex;if(hl(E)){const K=Sc(E),le=ul(E,a),Se=le[Bi].data;for(let Je=0;Je<8;Je++)a[P+Je]=le[K+Je]|Se[K+Je]}return a[P+8]=E,P}function O0(i,a){i.push(0,0,0,0,0,0,0,0,a)}function Zd(i,a){return-1===i.injectorIndex||i.parent&&i.parent.injectorIndex===i.injectorIndex||null===a[i.injectorIndex+8]?-1:i.injectorIndex}function Wl(i,a){if(i.parent&&-1!==i.parent.injectorIndex)return i.parent.injectorIndex;let s=0,p=null,E=a;for(;null!==E;){if(p=z0(E),null===p)return zc;if(s++,E=E[yc],-1!==p.injectorIndex)return p.injectorIndex|s<<16}return zc}function fl(i,a,s){!function l2(i,a,s){let p;"string"==typeof s?p=s.charCodeAt(0)||0:s.hasOwnProperty(rr)&&(p=s[rr]),null==p&&(p=s[rr]=jl++);const E=p&$d;a.data[i+(E>>Qd)]|=1<=0?a&$d:V0:a}(s);if("function"==typeof P){if(!zs(a,i,p))return p&rn.Host?d2(E,0,p):eo(a,s,p,E);try{let K;if(K=P(p),null!=K||p&rn.Optional)return K;ji()}finally{Xd()}}else if("number"==typeof P){let K=null,le=Zd(i,a),Se=zc,Je=p&rn.Host?a[Qr][fa]:null;for((-1===le||p&rn.SkipSelf)&&(Se=-1===le?Wl(i,a):a[le+8],Se!==zc&&u2(p,!1)?(K=a[Bi],le=Sc(Se),a=ul(Se,a)):le=-1);-1!==le;){const vt=a[Bi];if(P0(P,le,vt.data)){const Bt=Dr(le,a,s,K,p,Je);if(Bt!==Tc)return Bt}Se=a[le+8],Se!==zc&&u2(p,a[Bi].data[le+8]===Je)&&P0(P,le,a)?(K=vt,le=Sc(Se),a=ul(Se,a)):le=-1}}return E}function Dr(i,a,s,p,E,P){const K=a[Bi],le=K.data[i+8],vt=Jd(le,K,s,null==p?Vs(le)&&R0:p!=K&&!!(3&le.type),E&rn.Host&&P===le);return null!==vt?ks(a,K,vt,le):Tc}function Jd(i,a,s,p,E){const P=i.providerIndexes,K=a.data,le=1048575&P,Se=i.directiveStart,vt=P>>20,ti=E?le+vt:i.directiveEnd;for(let ui=p?le:le+vt;ui=Se&&bi.type===s)return ui}if(E){const ui=K[Se];if(ui&&En(ui)&&ui.type===s)return Se}return null}function ks(i,a,s,p){let E=i[s];const P=a.data;if(function I0(i){return i instanceof Bc}(E)){const K=E;K.resolving&&function hi(i,a){throw a&&a.join(" > "),new be(-200,i)}(function Oi(i){return"function"==typeof i?i.name||i.toString():"object"==typeof i&&null!=i&&"function"==typeof i.type?i.type.name||i.type.toString():_i(i)}(P[s]));const le=hd(K.canSeeViewProviders);K.resolving=!0;const Je=K.injectImpl?nr(K.injectImpl):null;zs(i,p,rn.Default);try{E=i[s]=K.factory(void 0,P,i,p),a.firstCreatePass&&s>=p.directiveStart&&function q3(i,a,s){const{ngOnChanges:p,ngOnInit:E,ngDoCheck:P}=a.type.prototype;if(p){const K=Ka(a);(s.preOrderHooks??=[]).push(i,K),(s.preOrderCheckHooks??=[]).push(i,K)}E&&(s.preOrderHooks??=[]).push(0-i,E),P&&((s.preOrderHooks??=[]).push(i,P),(s.preOrderCheckHooks??=[]).push(i,P))}(s,P[s],a)}finally{null!==Je&&nr(Je),hd(le),K.resolving=!1,Xd()}}return E}function P0(i,a,s){return!!(s[a+(i>>Qd)]&1<{const a=i.prototype.constructor,s=a[Qn]||m2(a),p=Object.prototype;let E=Object.getPrototypeOf(i.prototype).constructor;for(;E&&E!==p;){const P=E[Qn]||m2(E);if(P&&P!==s)return P;E=Object.getPrototypeOf(E)}return P=>new P})}function m2(i){return Ae(i)?()=>{const a=m2(dt(i));return a&&a()}:kr(i)}function z0(i){const a=i[Bi],s=a.type;return 2===s?a.declTNode:1===s?i[fa]:null}function Kl(i){return function F0(i,a){if("class"===a)return i.classes;if("style"===a)return i.styles;const s=i.attrs;if(s){const p=s.length;let E=0;for(;Ezn(Go)});static#n=this.__NG_ELEMENT_ID__=-1}new Ni("").__NG_ELEMENT_ID__=i=>{const a=jr();if(null===a)throw new be(204,!1);if(2&a.type)return a.value;if(i&rn.Optional)return null;throw new be(204,!1)};function n1(i){return i.ngOriginalError}class Bs{constructor(){this._console=console}handleError(a){const s=this._findOriginalError(a);this._console.error("ERROR",a),s&&this._console.error("ORIGINAL ERROR",s)}_findOriginalError(a){let s=a&&n1(a);for(;s&&n1(s);)s=n1(s);return s||null}}const r1=new Ni("",{providedIn:"root",factory:()=>hn(Bs).handleError.bind(void 0)});let ml=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=Y0;static#t=this.__NG_ENV_ID__=s=>s}return i})();class df extends ml{constructor(a){super(),this._lView=a}onDestroy(a){return Bd(this._lView,a),()=>function wc(i,a){if(null===i[Gi])return;const s=i[Gi].indexOf(a);-1!==s&&i[Gi].splice(s,1)}(this._lView,a)}}function Y0(){return new df(Ii())}function ff(){return $l(jr(),Ii())}function $l(i,a){return new pd(po(i,a))}let pd=(()=>{class i{constructor(s){this.nativeElement=s}static#e=this.__NG_ELEMENT_ID__=ff}return i})();function Ql(i){return i instanceof pd?i.nativeElement:i}function a1(i){return a=>{setTimeout(i,void 0,a)}}const Us=class mf extends me.B{constructor(a=!1){super(),this.destroyRef=void 0,this.__isAsync=a,Ve()&&(this.destroyRef=hn(ml,{optional:!0})??void 0)}emit(a){const s=x(null);try{super.next(a)}finally{x(s)}}subscribe(a,s,p){let E=a,P=s||(()=>null),K=p;if(a&&"object"==typeof a){const Se=a;E=Se.next?.bind(Se),P=Se.error?.bind(Se),K=Se.complete?.bind(Se)}this.__isAsync&&(P=a1(P),E&&(E=a1(E)),K&&(K=a1(K)));const le=super.subscribe({next:E,error:P,complete:K});return a instanceof ce.yU&&a.add(le),le}};function K0(){return this._results[Symbol.iterator]()}class o1{static#e=Symbol.iterator;get changes(){return this._changes??=new Us}constructor(a=!1){this._emitDistinctChangesOnly=a,this.dirty=!0,this._onDirty=void 0,this._results=[],this._changesDetected=!1,this._changes=void 0,this.length=0,this.first=void 0,this.last=void 0;const s=o1.prototype;s[Symbol.iterator]||(s[Symbol.iterator]=K0)}get(a){return this._results[a]}map(a){return this._results.map(a)}filter(a){return this._results.filter(a)}find(a){return this._results.find(a)}reduce(a,s){return this._results.reduce(a,s)}forEach(a){this._results.forEach(a)}some(a){return this._results.some(a)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(a,s){this.dirty=!1;const p=function Br(i){return i.flat(Number.POSITIVE_INFINITY)}(a);(this._changesDetected=!function ha(i,a,s){if(i.length!==a.length)return!1;for(let p=0;pk2}),k2="ng",lh=new Ni(""),ed=new Ni("",{providedIn:"platform",factory:()=>"unknown"}),hh=new Ni(""),Ef=new Ni("",{providedIn:"root",factory:()=>Dc().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null});let Tf=()=>null;function io(i,a,s=!1){return Tf(i,a,s)}const P2=new Ni("",{providedIn:"root",factory:()=>!1});let Sd,v1;function gl(i){return function V2(){if(void 0===Sd&&(Sd=null,Yt.trustedTypes))try{Sd=Yt.trustedTypes.createPolicy("angular",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return Sd}()?.createHTML(i)||i}function H2(){if(void 0===v1&&(v1=null,Yt.trustedTypes))try{v1=Yt.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return v1}function Eh(i){return H2()?.createHTML(i)||i}function Th(i){return H2()?.createScriptURL(i)||i}class _l{constructor(a){this.changingThisBreaksApplicationSecurity=a}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${_e})`}}class b1 extends _l{getTypeName(){return"HTML"}}class Rf extends _l{getTypeName(){return"Style"}}class Of extends _l{getTypeName(){return"Script"}}class Ff extends _l{getTypeName(){return"URL"}}class Nf extends _l{getTypeName(){return"ResourceURL"}}function Ws(i){return i instanceof _l?i.changingThisBreaksApplicationSecurity:i}function Xc(i,a){const s=function z2(i){return i instanceof _l&&i.getTypeName()||null}(i);if(null!=s&&s!==a){if("ResourceURL"===s&&"URL"===a)return!0;throw new Error(`Required a safe ${a}, got a ${s} (see ${_e})`)}return s===a}function nc(i){return new b1(i)}function Pf(i){return new Rf(i)}function m4(i){return new Of(i)}function Yc(i){return new Ff(i)}function Dh(i){return new Nf(i)}class kh{constructor(a){this.inertDocumentHelper=a}getInertBodyElement(a){a=""+a;try{const s=(new window.DOMParser).parseFromString(gl(a),"text/html").body;return null===s?this.inertDocumentHelper.getInertBodyElement(a):(s.removeChild(s.firstChild),s)}catch{return null}}}class Lh{constructor(a){this.defaultDoc=a,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(a){const s=this.inertDocument.createElement("template");return s.innerHTML=gl(a),s}}const Ih=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function y1(i){return(i=String(i)).match(Ih)?i:"unsafe:"+i}function kc(i){const a={};for(const s of i.split(","))a[s]=!0;return a}function Td(...i){const a={};for(const s of i)for(const p in s)s.hasOwnProperty(p)&&(a[p]=!0);return a}const Rh=kc("area,br,col,hr,img,wbr"),x1=kc("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Oh=kc("rp,rt"),B2=Td(Rh,Td(x1,kc("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")),Td(Oh,kc("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")),Td(Oh,x1)),U2=kc("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Nh=Td(U2,kc("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"),kc("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")),v4=kc("script,style,template");class Dd{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(a){let s=a.firstChild,p=!0,E=[];for(;s;)if(s.nodeType===Node.ELEMENT_NODE?p=this.startElement(s):s.nodeType===Node.TEXT_NODE?this.chars(s.nodeValue):this.sanitizedSomething=!0,p&&s.firstChild)E.push(s),s=y4(s);else for(;s;){s.nodeType===Node.ELEMENT_NODE&&this.endElement(s);let P=vl(s);if(P){s=P;break}s=E.pop()}return this.buf.join("")}startElement(a){const s=zf(a).toLowerCase();if(!B2.hasOwnProperty(s))return this.sanitizedSomething=!0,!v4.hasOwnProperty(s);this.buf.push("<"),this.buf.push(s);const p=a.attributes;for(let E=0;E"),!0}endElement(a){const s=zf(a).toLowerCase();B2.hasOwnProperty(s)&&!Rh.hasOwnProperty(s)&&(this.buf.push(""))}chars(a){this.buf.push(Vh(a))}}function vl(i){const a=i.nextSibling;if(a&&i!==a.previousSibling)throw Ph(a);return a}function y4(i){const a=i.firstChild;if(a&&function b4(i,a){return(i.compareDocumentPosition(a)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}(i,a))throw Ph(a);return a}function zf(i){const a=i.nodeName;return"string"==typeof a?a:"FORM"}function Ph(i){return new Error(`Failed to sanitize html because the element is clobbered: ${i.outerHTML}`)}const Bf=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,x4=/([^\#-~ |!])/g;function Vh(i){return i.replace(/&/g,"&").replace(Bf,function(a){return"&#"+(1024*(a.charCodeAt(0)-55296)+(a.charCodeAt(1)-56320)+65536)+";"}).replace(x4,function(a){return"&#"+a.charCodeAt(0)+";"}).replace(//g,">")}let G2;function j2(i,a){let s=null;try{G2=G2||function Ah(i){const a=new Lh(i);return function Vf(){try{return!!(new window.DOMParser).parseFromString(gl(""),"text/html")}catch{return!1}}()?new kh(a):a}(i);let p=a?String(a):"";s=G2.getInertBodyElement(p);let E=5,P=p;do{if(0===E)throw new Error("Failed to sanitize html because the input is unstable");E--,p=P,P=s.innerHTML,s=G2.getInertBodyElement(p)}while(p!==P);return gl((new Dd).sanitizeChildren(Hh(s)||s))}finally{if(s){const p=Hh(s)||s;for(;p.firstChild;)p.removeChild(p.firstChild)}}}function Hh(i){return"content"in i&&function C4(i){return i.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===i.nodeName}(i)?i.content:null}var Kc=function(i){return i[i.NONE=0]="NONE",i[i.HTML=1]="HTML",i[i.STYLE=2]="STYLE",i[i.SCRIPT=3]="SCRIPT",i[i.URL=4]="URL",i[i.RESOURCE_URL=5]="RESOURCE_URL",i}(Kc||{});function Uf(i){const a=Ad();return a?Eh(a.sanitize(Kc.HTML,i)||""):Xc(i,"HTML")?Eh(Ws(i)):j2(Dc(),_i(i))}function Gf(i){const a=Ad();return a?a.sanitize(Kc.URL,i)||"":Xc(i,"URL")?Ws(i):y1(_i(i))}function C1(i){const a=Ad();if(a)return Th(a.sanitize(Kc.RESOURCE_URL,i)||"");if(Xc(i,"ResourceURL"))return Th(Ws(i));throw new be(904,!1)}function Uh(i,a,s){return function Bh(i,a){return"src"===a&&("embed"===i||"frame"===i||"iframe"===i||"media"===i||"script"===i)||"href"===a&&("base"===i||"link"===i)?C1:Gf}(a,s)(i)}function Ad(){const i=Ii();return i&&i[cs].sanitizer}const jh=/^>|^->||--!>|)/g,Xh="\u200b$1\u200b";function un(i){return i.ownerDocument.defaultView}function An(i){return i instanceof Function?i():i}var Lc=function(i){return i[i.Important=1]="Important",i[i.DashCase=2]="DashCase",i}(Lc||{});let M1;function $c(i,a){return M1(i,a)}function bl(i,a,s,p,E){if(null!=p){let P,K=!1;ba(p)?P=p:ka(p)&&(K=!0,p=p[Hn]);const le=wr(p);0===i&&null!==s?null==E?Tp(a,s,le):E1(a,s,le,E||null,!0):1===i&&null!==s?E1(a,s,le,E||null,!0):2===i?function $h(i,a,s){const p=Qf(i,a);p&&function Dp(i,a,s,p){i.removeChild(a,s,p)}(i,p,a,s)}(a,le,K):3===i&&a.destroyNode(le),null!=P&&function P4(i,a,s,p,E){const P=s[Xo];P!==wr(s)&&bl(a,i,p,P,E);for(let le=ea;lea.replace(Wh,Xh))}(a))}function Gn(i,a,s){return i.createElement(a,s)}function ac(i,a){a[cs].changeDetectionScheduler?.notify(8),Qh(i,a,a[Wn],2,null,null)}function wa(i,a){const s=i[Nc],p=a[fr];(ka(p)||a[Qr]!==p[fr][Qr])&&(i[sn]|=Fl.HasTransplantedViews),null===s?i[Nc]=[a]:s.push(a)}function Y2(i,a){const s=i[Nc],p=s.indexOf(a);s.splice(p,1)}function kd(i,a){if(i.length<=ea)return;const s=ea+a,p=i[s];if(p){const E=p[mo];null!==E&&E!==i&&Y2(E,p),a>0&&(i[s-1][$r]=p[$r]);const P=Ga(i,ea+a);!function Mr(i,a){ac(i,a),a[Hn]=null,a[fa]=null}(p[Bi],p);const K=P[qs];null!==K&&K.detachView(P[Bi]),p[fr]=null,p[$r]=null,p[sn]&=-129}return p}function vo(i,a){if(!(256&a[sn])){const s=a[Wn];s.destroyNode&&Qh(i,a,s,3,null,null),function xs(i){let a=i[bc];if(!a)return Qc(i[Bi],i);for(;a;){let s=null;if(ka(a))s=a[bc];else{const p=a[ea];p&&(s=p)}if(!s){for(;a&&!a[$r]&&a!==i;)ka(a)&&Qc(a[Bi],a),a=a[fr];null===a&&(a=i),ka(a)&&Qc(a[Bi],a),s=a&&a[$r]}a=s}}(a)}}function Qc(i,a){if(256&a[sn])return;const s=x(null);try{a[sn]&=-129,a[sn]|=256,a[Ps]&&ee(a[Ps]),function Ld(i,a){let s;if(null!=i&&null!=(s=i.destroyHooks))for(let p=0;p=0?p[K]():p[-K].unsubscribe(),P+=2}else s[P].call(p[s[P+1]]);null!==p&&(a[vc]=null);const E=a[Gi];if(null!==E){a[Gi]=null;for(let P=0;P-1){const{encapsulation:P}=i.data[p.directiveStart+E];if(P===ri.None||P===ri.Emulated)return null}return po(p,s)}}(i,a.parent,s)}function E1(i,a,s,p,E){i.insertBefore(a,s,p,E)}function Tp(i,a,s){i.appendChild(a,s)}function A4(i,a,s,p,E){null!==p?E1(i,a,s,p,E):Tp(i,a,s)}function Qf(i,a){return i.parentNode(a)}function Ap(i,a,s){return L4(i,a,s)}let I4,L4=function k4(i,a,s){return 40&i.type?po(i,s):null};function Zf(i,a,s,p){const E=Id(i,p,a),P=a[Wn],le=Ap(p.parent||a[fa],p,a);if(null!=E)if(Array.isArray(s))for(let Se=0;Sekn&&Zh(i,a,kn,!1),As(K?2:0,E),s(p,E)}finally{Hc(P),As(K?3:1,E)}}function H4(i,a,s){if(Ts(a)){const p=x(null);try{const P=a.directiveEnd;for(let K=a.directiveStart;Knull;function e3(i,a,s,p,E){for(let P in a){if(!a.hasOwnProperty(P))continue;const K=a[P];if(void 0===K)continue;p??={};let le,Se=xt.None;Array.isArray(K)?(le=K[0],Se=K[1]):le=K;let Je=P;if(null!==E){if(!E.hasOwnProperty(P))continue;Je=E[P]}0===i?j4(p,s,Je,le,Se):j4(p,s,Je,le)}return p}function j4(i,a,s,p,E){let P;i.hasOwnProperty(s)?(P=i[s]).push(a,p):P=i[s]=[a,p],void 0!==E&&P.push(E)}function fs(i,a,s,p,E,P,K,le){const Se=po(a,s);let vt,Je=a.inputs;!le&&null!=Je&&(vt=Je[p])?($4(i,s,vt,p,E),Vs(a)&&function h5(i,a){const s=$o(a,i);16&s[sn]||(s[sn]|=64)}(s,a.index)):3&a.type&&(p=function Hp(i){return"class"===i?"className":"for"===i?"htmlFor":"formaction"===i?"formAction":"innerHtml"===i?"innerHTML":"readonly"===i?"readOnly":"tabindex"===i?"tabIndex":i}(p),E=null!=K?K(E,a.value||"",p):E,P.setProperty(Se,p,E))}function t3(i,a,s,p){if(ju()){const E=null===p?null:{"":-1},P=function Gp(i,a){const s=i.directiveRegistry;let p=null,E=null;if(s)for(let P=0;P0;){const s=i[--a];if("number"==typeof s&&s<0)return s}return 0})(K)!=le&&K.push(le),K.push(s,p,P)}}(i,a,p,Z2(i,s,E.hostVars,lr),E)}function xl(i,a,s,p,E,P){const K=po(i,a);!function Y4(i,a,s,p,E,P,K){if(null==P)i.removeAttribute(a,E,s);else{const le=null==K?_i(P):K(P,p||"",E);i.setAttribute(a,E,le,s)}}(a[Wn],K,P,i.value,s,p,E)}function Xp(i,a,s,p,E,P){const K=P[a];if(null!==K)for(let le=0;le0&&(s[E-1][$r]=a),p{Z1(i.lView)},consumerOnSignalRead(){this.lView[Ps]=this}},r3=100;function n0(i,a=!0,s=0){const p=i[cs],E=p.rendererFactory;E.begin?.();try{!function J4(i,a){const s=Yu();try{jd(!0),r0(i,a);let p=0;for(;al(i);){if(p===r3)throw new be(103,!1);p++,r0(i,1)}}finally{jd(s)}}(i,s)}catch(K){throw a&&q2(i,K),K}finally{E.end?.(),p.inlineEffectRunner?.flush()}}function e6(i,a,s,p){const E=a[sn];if(!(256&~E))return;a[cs].inlineEffectRunner?.flush(),E0(a);let le=null,Se=null;(function q4(i){return 2!==i.type})(i)&&(Se=function e0(i){return i[Ps]??function jn(i){const a=wl.pop()??Object.create(t0);return a.lView=i,a}(i)}(a),le=j(Se));try{Pc(a),function Ku(i){return Nn.lFrame.bindingIndex=i}(i.bindingStartIndex),null!==s&&Np(i,a,s,2,p);const Je=!(3&~E);if(Je){const ti=i.preOrderCheckHooks;null!==ti&&a2(a,ti,null)}else{const ti=i.preOrderHooks;null!==ti&&o2(a,ti,0,null),Kd(a,0)}if(function a3(i){for(let a=S2(i);null!==a;a=Jl(a)){if(!(a[sn]&Fl.HasTransplantedViews))continue;const s=a[Nc];for(let p=0;p-1&&(kd(a,p),Ga(s,p))}this._attachedToViewContainer=!1}vo(this._lView[Bi],this._lView)}onDestroy(a){Bd(this._lView,a)}markForCheck(){T1(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[sn]&=-129}reattach(){x0(this._lView),this._lView[sn]|=128}detectChanges(){this._lView[sn]|=1024,n0(this._lView,this.notifyErrorHandler)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new be(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;const a=nn(this._lView),s=this._lView[mo];null!==s&&!a&&Y2(s,this._lView),ac(this._lView[Bi],this._lView)}attachToAppRef(a){if(this._attachedToViewContainer)throw new be(902,!1);this._appRef=a;const s=nn(this._lView),p=this._lView[mo];null!==p&&!s&&wa(p,this._lView),x0(this._lView)}}let D1=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=tm}return i})();const s3=D1,ad=class extends s3{constructor(a,s,p){super(),this._declarationLView=a,this._declarationTContainer=s,this.elementRef=p}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(a,s){return this.createEmbeddedViewImpl(a,s)}createEmbeddedViewImpl(a,s,p){const E=Rd(this._declarationLView,this._declarationTContainer,a,{embeddedViewInjector:s,dehydratedView:p});return new Ys(E)}};function tm(){return A1(jr(),Ii())}function A1(i,a){return 4&i.type?new ad(a,i,$l(i,a)):null}let bm=()=>null;function F1(i,a){return bm(i,a)}class N1{}const Nd=new Ni("",{providedIn:"root",factory:()=>!1}),_6=new Ni("");class V5{}class v6{}class H5{resolveComponentFactory(a){throw function b6(i){const a=Error(`No component factory found for ${tt(i)}.`);return a.ngComponent=i,a}(a)}}class du{static#e=this.NULL=new H5}class b3{}let z5=(()=>{class i{constructor(){this.destroyNode=null}static#e=this.__NG_ELEMENT_ID__=()=>function B5(){const i=Ii(),s=$o(jr().index,i);return(ka(s)?s:i)[Wn]}()}return i})(),C6=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>null})}return i})();const y3={};function hu(i,a){if(null!==function f(){return t}())throw new be(-602,!1)}const w6=new Set;function oc(i){w6.has(i)||(w6.add(i),performance?.mark?.("mark_feature_usage",{detail:{feature:i}}))}function M6(i){let a=!0;return setTimeout(()=>{a&&(a=!1,i())}),"function"==typeof Yt.requestAnimationFrame&&Yt.requestAnimationFrame(()=>{a&&(a=!1,i())}),()=>{a=!1}}function E6(i){let a=!0;return queueMicrotask(()=>{a&&i()}),()=>{a=!1}}function x3(...i){}class Ha{constructor({enableLongStackTrace:a=!1,shouldCoalesceEventChangeDetection:s=!1,shouldCoalesceRunChangeDetection:p=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Us(!1),this.onMicrotaskEmpty=new Us(!1),this.onStable=new Us(!1),this.onError=new Us(!1),typeof Zone>"u")throw new be(908,!1);Zone.assertZonePatched();const E=this;E._nesting=0,E._outer=E._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(E._inner=E._inner.fork(new Zone.TaskTrackingZoneSpec)),a&&Zone.longStackTraceZoneSpec&&(E._inner=E._inner.fork(Zone.longStackTraceZoneSpec)),E.shouldCoalesceEventChangeDetection=!p&&s,E.shouldCoalesceRunChangeDetection=p,E.callbackScheduled=!1,function u(i){const a=()=>{!function G5(i){i.isCheckStableRunning||i.callbackScheduled||(i.callbackScheduled=!0,Zone.root.run(()=>{M6(()=>{i.callbackScheduled=!1,A(i),i.isCheckStableRunning=!0,C3(i),i.isCheckStableRunning=!1})}),A(i))}(i)};i._inner=i._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(s,p,E,P,K,le)=>{if(function Y(i){return Ct(i,"__ignore_ng_zone__")}(le))return s.invokeTask(E,P,K,le);try{return o(i),s.invokeTask(E,P,K,le)}finally{(i.shouldCoalesceEventChangeDetection&&"eventTask"===P.type||i.shouldCoalesceRunChangeDetection)&&a(),M(i)}},onInvoke:(s,p,E,P,K,le,Se)=>{try{return o(i),s.invoke(E,P,K,le,Se)}finally{i.shouldCoalesceRunChangeDetection&&!i.callbackScheduled&&!function Le(i){return Ct(i,"__scheduler_tick__")}(le)&&a(),M(i)}},onHasTask:(s,p,E,P)=>{s.hasTask(E,P),p===E&&("microTask"==P.change?(i._hasPendingMicrotasks=P.microTask,A(i),C3(i)):"macroTask"==P.change&&(i.hasPendingMacrotasks=P.macroTask))},onHandleError:(s,p,E,P)=>(s.handleError(E,P),i.runOutsideAngular(()=>i.onError.emit(P)),!1)})}(E)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!Ha.isInAngularZone())throw new be(909,!1)}static assertNotInAngularZone(){if(Ha.isInAngularZone())throw new be(909,!1)}run(a,s,p){return this._inner.run(a,s,p)}runTask(a,s,p,E){const P=this._inner,K=P.scheduleEventTask("NgZoneEvent: "+E,a,S6,x3,x3);try{return P.runTask(K,s,p)}finally{P.cancelTask(K)}}runGuarded(a,s,p){return this._inner.runGuarded(a,s,p)}runOutsideAngular(a){return this._outer.run(a)}}const S6={};function C3(i){if(0==i._nesting&&!i.hasPendingMicrotasks&&!i.isStable)try{i._nesting++,i.onMicrotaskEmpty.emit(null)}finally{if(i._nesting--,!i.hasPendingMicrotasks)try{i.runOutsideAngular(()=>i.onStable.emit(null))}finally{i.isStable=!0}}}function A(i){i.hasPendingMicrotasks=!!(i._hasPendingMicrotasks||(i.shouldCoalesceEventChangeDetection||i.shouldCoalesceRunChangeDetection)&&!0===i.callbackScheduled)}function o(i){i._nesting++,i.isStable&&(i.isStable=!1,i.onUnstable.emit(null))}function M(i){i._nesting--,C3(i)}class B{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Us,this.onMicrotaskEmpty=new Us,this.onStable=new Us,this.onError=new Us}run(a,s,p){return a.apply(s,p)}runGuarded(a,s,p){return a.apply(s,p)}runOutsideAngular(a){return a()}runTask(a,s,p,E){return a.apply(s,p)}}function Ct(i,a){return!(!Array.isArray(i)||1!==i.length)&&!0===i[0]?.data?.[a]}var Ht=function(i){return i[i.EarlyRead=0]="EarlyRead",i[i.Write=1]="Write",i[i.MixedReadWrite=2]="MixedReadWrite",i[i.Read=3]="Read",i}(Ht||{});const li={destroy(){}};function Ai(i,a){!a&&De();const s=a?.injector??hn(go);if(!function Un(i){return"browser"===(i??hn(go)).get(ed)}(s))return li;oc("NgAfterNextRender");const p=s.get(ki),E=p.handler??=new Tn,P=a?.phase??Ht.MixedReadWrite,K=()=>{E.unregister(Se),le()},le=s.get(ml).onDestroy(K),Se=Z(s,()=>new cn(P,()=>{K(),i()}));return E.register(Se),{destroy:K}}class cn{constructor(a,s){this.phase=a,this.callbackFn=s,this.zone=hn(Ha),this.errorHandler=hn(Bs,{optional:!0}),hn(N1,{optional:!0})?.notify(6)}invoke(){try{this.zone.runOutsideAngular(this.callbackFn)}catch(a){this.errorHandler?.handleError(a)}}}class Tn{constructor(){this.executingCallbacks=!1,this.buckets={[Ht.EarlyRead]:new Set,[Ht.Write]:new Set,[Ht.MixedReadWrite]:new Set,[Ht.Read]:new Set},this.deferredCallbacks=new Set}register(a){(this.executingCallbacks?this.deferredCallbacks:this.buckets[a.phase]).add(a)}unregister(a){this.buckets[a.phase].delete(a),this.deferredCallbacks.delete(a)}execute(){this.executingCallbacks=!0;for(const a of Object.values(this.buckets))for(const s of a)s.invoke();this.executingCallbacks=!1;for(const a of this.deferredCallbacks)this.buckets[a.phase].add(a);this.deferredCallbacks.clear()}destroy(){for(const a of Object.values(this.buckets))a.clear();this.deferredCallbacks.clear()}}let ki=(()=>{class i{constructor(){this.handler=null,this.internalCallbacks=[]}execute(){this.executeInternalCallbacks(),this.handler?.execute()}executeInternalCallbacks(){const s=[...this.internalCallbacks];this.internalCallbacks.length=0;for(const p of s)p()}ngOnDestroy(){this.handler?.destroy(),this.handler=null,this.internalCallbacks.length=0}static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>new i})}return i})();function Ln(i){return!!Ir(i)}function Er(i,a,s){let p=s?i.styles:null,E=s?i.classes:null,P=0;if(null!==a)for(let K=0;K0&&Rp(i,s,P.join(" "))}}(ui,ws,Fi,p),void 0!==s&&function V1(i,a,s){const p=i.projection=[];for(let E=0;E{class i{static#e=this.__NG_ELEMENT_ID__=Pd}return i})();function Pd(){return $a(jr(),Ii())}const Mn=ko,dr=class extends Mn{constructor(a,s,p){super(),this._lContainer=a,this._hostTNode=s,this._hostLView=p}get element(){return $l(this._hostTNode,this._hostLView)}get injector(){return new to(this._hostTNode,this._hostLView)}get parentInjector(){const a=Wl(this._hostTNode,this._hostLView);if(hl(a)){const s=ul(a,this._hostLView),p=Sc(a);return new to(s[Bi].data[p+8],s)}return new to(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(a){const s=yr(this._lContainer);return null!==s&&s[a]||null}get length(){return this._lContainer.length-ea}createEmbeddedView(a,s,p){let E,P;"number"==typeof p?E=p:null!=p&&(E=p.index,P=p.injector);const K=F1(this._lContainer,a.ssrId),le=a.createEmbeddedViewImpl(s||{},P,K);return this.insertImpl(le,E,Od(this._hostTNode,K)),le}createComponent(a,s,p,E,P){const K=a&&!function gn(i){return"function"==typeof i}(a);let le;if(K)le=s;else{const bi=s||{};le=bi.index,p=bi.injector,E=bi.projectableNodes,P=bi.environmentInjector||bi.ngModuleRef}const Se=K?a:new Do(Vn(a)),Je=p||this.parentInjector;if(!P&&null==Se.ngModule){const Fi=(K?Je:this.parentInjector).get(So,null);Fi&&(P=Fi)}const vt=Vn(Se.componentType??{}),Bt=F1(this._lContainer,vt?.id??null),ui=Se.create(Je,E,Bt?.firstChild??null,P);return this.insertImpl(ui.hostView,le,Od(this._hostTNode,Bt)),ui}insert(a,s){return this.insertImpl(a,s,!0)}insertImpl(a,s,p){const E=a._lView;if(function Wt(i){return ba(i[fr])}(E)){const le=this.indexOf(a);if(-1!==le)this.detach(le);else{const Se=E[fr],Je=new dr(Se,Se[fa],Se[fr]);Je.detach(Je.indexOf(a))}}const P=this._adjustIndex(s),K=this._lContainer;return S1(K,E,P,p),a.attachToViewContainerRef(),rs(tn(K),P,a),a}move(a,s){return this.insert(a,s)}indexOf(a){const s=yr(this._lContainer);return null!==s?s.indexOf(a):-1}remove(a){const s=this._adjustIndex(a,-1),p=kd(this._lContainer,s);p&&(Ga(tn(this._lContainer),s),vo(p[Bi],p))}detach(a){const s=this._adjustIndex(a,-1),p=kd(this._lContainer,s);return p&&null!=Ga(tn(this._lContainer),s)?new Ys(p):null}_adjustIndex(a,s=0){return a??this.length+s}};function yr(i){return i[8]}function tn(i){return i[8]||(i[8]=[])}function $a(i,a){let s;const p=a[i.index];return ba(p)?s=p:(s=Kp(p,a,null,i),a[i.index]=s,i3(a,s)),ps(s,a,i,p),new dr(s,i,a)}let ps=function Qa(i,a,s,p){if(i[Xo])return;let E;E=8&s.type?wr(p):function Wr(i,a){const s=i[Wn],p=s.createComment(""),E=po(a,i);return E1(s,Qf(s,E),p,function t5(i,a){return i.nextSibling(a)}(s,E),!1),p}(a,s),i[Xo]=E},Vo=()=>!1;class xm{constructor(a){this.queryList=a,this.matches=null}clone(){return new xm(this.queryList)}setDirty(){this.queryList.setDirty()}}class T6{constructor(a=[]){this.queries=a}createEmbeddedView(a){const s=a.queries;if(null!==s){const p=null!==a.contentQueries?a.contentQueries[0]:s.length,E=[];for(let P=0;Pa.trim())}(a):a}}class D6{constructor(a=[]){this.queries=a}elementStart(a,s){for(let p=0;p0)p.push(K[le/2]);else{const Je=P[le+1],vt=a[-Se];for(let Bt=ea;Bt(y(a),a.value);return s[l]=a,s}(i),p=s[l];return a?.equal&&(p.equal=a.equal),s.set=E=>N(p,E),s.update=E=>function ne(i,a){W()||k(),N(i,a(i.value))}(p,E),s.asReadonly=Q5.bind(s),s}function Q5(){const i=this[l];if(void 0===i.readonlyFn){const a=()=>this();a[l]=i,i.readonlyFn=a}return i.readonlyFn}function Z5(i){return R6(i)&&"function"==typeof i.set}function H6(i){let a=function a7(i){return Object.getPrototypeOf(i.prototype).constructor}(i.type),s=!0;const p=[i];for(;a;){let E;if(En(i))E=a.\u0275cmp||a.\u0275dir;else{if(a.\u0275cmp)throw new be(903,!1);E=a.\u0275dir}if(E){if(s){p.push(E);const K=i;K.inputs=Sm(i.inputs),K.inputTransforms=Sm(i.inputTransforms),K.declaredInputs=Sm(i.declaredInputs),K.outputs=Sm(i.outputs);const le=E.hostBindings;le&&M3(i,le);const Se=E.viewQuery,Je=E.contentQueries;if(Se&&Ib(i,Se),Je&&Rb(i,Je),z6(i,E),oe(i.outputs,E.outputs),En(E)&&E.data.animation){const vt=i.data;vt.animation=(vt.animation||[]).concat(E.data.animation)}}const P=E.features;if(P)for(let K=0;K=0;p--){const E=i[p];E.hostVars=a+=E.hostVars,E.hostAttrs=Or(E.hostAttrs,s=Or(s,E.hostAttrs))}}(p)}function z6(i,a){for(const s in a.inputs){if(!a.inputs.hasOwnProperty(s)||i.inputs.hasOwnProperty(s))continue;const p=a.inputs[s];if(void 0!==p&&(i.inputs[s]=p,i.declaredInputs[s]=a.declaredInputs[s],null!==a.inputTransforms)){const E=Array.isArray(p)?p[0]:p;if(!a.inputTransforms.hasOwnProperty(E))continue;i.inputTransforms??={},i.inputTransforms[E]=a.inputTransforms[E]}}}function Sm(i){return i===qr?{}:i===Bn?[]:i}function Ib(i,a){const s=i.viewQuery;i.viewQuery=s?(p,E)=>{a(p,E),s(p,E)}:a}function Rb(i,a){const s=i.contentQueries;i.contentQueries=s?(p,E,P)=>{a(p,E,P),s(p,E,P)}:a}function M3(i,a){const s=i.hostBindings;i.hostBindings=s?(p,E)=>{a(p,E),s(p,E)}:a}function G6(i){const a=i.inputConfig,s={};for(const p in a)if(a.hasOwnProperty(p)){const E=a[p];Array.isArray(E)&&E[3]&&(s[p]=E[3])}i.inputTransforms=s}class u0{}class c7{}function Vb(i,a){return new j6(i,a??null,[])}class j6 extends u0{constructor(a,s,p){super(),this._parent=s,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new aa(this);const E=Ir(a);this._bootstrapComponents=An(E.bootstrap),this._r3Injector=W0(a,s,[{provide:u0,useValue:this},{provide:du,useValue:this.componentFactoryResolver},...p],tt(a),new Set(["environment"])),this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(a)}get injector(){return this._r3Injector}destroy(){const a=this._r3Injector;!a.destroyed&&a.destroy(),this.destroyCbs.forEach(s=>s()),this.destroyCbs=null}onDestroy(a){this.destroyCbs.push(a)}}class W6 extends c7{constructor(a){super(),this.moduleType=a}create(a){return new j6(this.moduleType,a,[])}}class X6 extends u0{constructor(a){super(),this.componentFactoryResolver=new aa(this),this.instance=null;const s=new Os([...a.providers,{provide:u0,useValue:this},{provide:du,useValue:this.componentFactoryResolver}],a.parent||os(),a.debugName,new Set(["environment"]));this.injector=s,a.runEnvironmentInitializers&&s.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(a){this.injector.onDestroy(a)}}function Y6(i,a,s=null){return new X6({providers:i,parent:a,debugName:s,runEnvironmentInitializers:!0}).injector}let B1=(()=>{class i{constructor(){this.taskId=0,this.pendingTasks=new Set,this.hasPendingTasks=new fe.t(!1)}get _hasPendingTasks(){return this.hasPendingTasks.value}add(){this._hasPendingTasks||this.hasPendingTasks.next(!0);const s=this.taskId++;return this.pendingTasks.add(s),s}remove(s){this.pendingTasks.delete(s),0===this.pendingTasks.size&&this._hasPendingTasks&&this.hasPendingTasks.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this._hasPendingTasks&&this.hasPendingTasks.next(!1)}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function E3(i){return!!K6(i)&&(Array.isArray(i)||!(i instanceof Map)&&Symbol.iterator in i)}function K6(i){return null!==i&&("function"==typeof i||"object"==typeof i)}function Sl(i,a,s){return i[a]=s}function Lo(i,a,s){return!Object.is(i[a],s)&&(i[a]=s,!0)}function U1(i,a,s,p){const E=Lo(i,a,s);return Lo(i,a+1,p)||E}function Am(i,a,s,p,E){const P=U1(i,a,s,p);return Lo(i,a+2,E)||P}function T3(i,a,s,p,E,P,K,le,Se,Je){const vt=s+kn,Bt=a.firstCreatePass?function f7(i,a,s,p,E,P,K,le,Se){const Je=a.consts,vt=Q2(a,i,4,K||null,le||null);t3(a,s,vt,qa(Je,Se)),r2(a,vt);const Bt=vt.tView=U4(2,vt,p,E,P,a.directiveRegistry,a.pipeRegistry,null,a.schemas,Je,null);return null!==a.queries&&(a.queries.template(a,vt),Bt.queries=a.queries.embeddedTView(vt)),vt}(vt,a,i,p,E,P,K,le,Se):a.data[vt];Ia(Bt,!1);const ti=m7(a,i,Bt,s);Yd()&&Zf(a,i,ti,Bt),Zo(ti,i);const ui=Kp(ti,i,ti,Bt);return i[vt]=ui,i3(i,ui),function Kn(i,a,s){return Vo(i,a,s)}(ui,Bt,i),Ja(Bt)&&J2(a,i,Bt),null!=Se&&z4(i,Bt,Je),Bt}function mu(i,a,s,p,E,P,K,le){const Se=Ii(),Je=ur();return T3(Se,Je,i,a,s,p,E,qa(Je.consts,P),K,le),mu}let m7=function p7(i,a,s,p){return Ec(!0),a[Wn].createComment("")};function rg(i,a,s,p){const E=Ii();return Lo(E,us(),a)&&(ur(),xl(Pr(),E,i,a,s,p)),rg}function xu(i,a,s,p){return Lo(i,us(),s)?a+_i(s)+p:lr}function W1(i,a,s,p,E,P){const le=U1(i,tc(),s,E);return Mc(2),le?a+_i(s)+p+_i(E)+P:lr}function wu(i,a,s,p,E,P,K,le,Se,Je){const Bt=function Jc(i,a,s,p,E,P){const K=U1(i,a,s,p);return U1(i,a+2,E,P)||K}(i,tc(),s,E,K,Se);return Mc(4),Bt?a+_i(s)+p+_i(E)+P+_i(K)+le+_i(Se)+Je:lr}function Vm(i,a){return i<<17|a<<2}function Y1(i){return i>>17&32767}function lg(i){return 2|i}function p0(i){return(131068&i)>>2}function dg(i,a){return-131069&i|a<<2}function hg(i){return 1|i}function K7(i,a,s,p){const E=i[s+1],P=null===a;let K=p?Y1(E):p0(E),le=!1;for(;0!==K&&(!1===le||P);){const Je=i[K+1];ug(i[K],a)&&(le=!0,i[K+1]=p?hg(Je):lg(Je)),K=p?Y1(Je):p0(Je)}le&&(i[s+1]=p?lg(E):hg(E))}function ug(i,a){return null===i||null==a||(Array.isArray(i)?i[1]:i)===a||!(!Array.isArray(i)||"string"!=typeof a)&&Lr(i,a)>=0}const es={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function $7(i){return i.substring(es.key,es.keyEnd)}function fg(i,a){const s=es.textEnd;return s===a?-1:(a=es.keyEnd=function q7(i,a,s){for(;a32;)a++;return a}(i,es.key=a,s),Tu(i,a,s))}function Tu(i,a,s){for(;a=0;s=fg(a,s))ga(i,$7(a),!0)}function Tl(i,a,s,p){const E=Ii(),P=ur(),K=Mc(2);P.firstUpdatePass&&n_(P,i,K,p),a!==lr&&Lo(E,K,a)&&a_(P,P.data[Va()],E,E[Wn],i,E[K+1]=function Ty(i,a){return null==i||""===i||("string"==typeof a?i+=a:"object"==typeof i&&(i=tt(Ws(i)))),i}(a,s),p,K)}function Dl(i,a,s,p){const E=ur(),P=Mc(2);E.firstUpdatePass&&n_(E,null,P,p);const K=Ii();if(s!==lr&&Lo(K,P,s)){const le=E.data[Va()];if(o_(le,p)&&!zm(E,P)){let Se=p?le.classesWithoutHost:le.stylesWithoutHost;null!==Se&&(s=$t(Se,s||"")),pg(E,le,K,s,p)}else!function Sy(i,a,s,p,E,P,K,le){E===lr&&(E=Bn);let Se=0,Je=0,vt=0=i.expandoStartIndex}function n_(i,a,s,p){const E=i.data;if(null===E[s+1]){const P=E[Va()],K=zm(i,s);o_(P,p)&&null===a&&!K&&(a=!1),a=function xy(i,a,s,p){const E=Ca(i);let P=p?a.residualClasses:a.residualStyles;if(null===E)0===(p?a.classBindings:a.styleBindings)&&(s=L3(s=bg(null,i,a,s,p),a.attrs,p),P=null);else{const K=a.directiveStylingLast;if(-1===K||i[K]!==E)if(s=bg(E,i,a,s,p),null===P){let Se=function Cy(i,a,s){const p=s?a.classBindings:a.styleBindings;if(0!==p0(p))return i[Y1(p)]}(i,a,p);void 0!==Se&&Array.isArray(Se)&&(Se=bg(null,i,a,Se[1],p),Se=L3(Se,a.attrs,p),function wy(i,a,s,p){i[Y1(s?a.classBindings:a.styleBindings)]=p}(i,a,p,Se))}else P=function My(i,a,s){let p;const E=a.directiveEnd;for(let P=1+a.directiveStylingLast;P0)&&(Je=!0)):vt=s,E)if(0!==Se){const ti=Y1(i[le+1]);i[p+1]=Vm(ti,le),0!==ti&&(i[ti+1]=dg(i[ti+1],p)),i[le+1]=function my(i,a){return 131071&i|a<<17}(i[le+1],p)}else i[p+1]=Vm(le,0),0!==le&&(i[le+1]=dg(i[le+1],p)),le=p;else i[p+1]=Vm(Se,0),0===le?le=p:i[Se+1]=dg(i[Se+1],p),Se=p;Je&&(i[p+1]=lg(i[p+1])),K7(i,vt,p,!0),K7(i,vt,p,!1),function Y7(i,a,s,p,E){const P=E?i.residualClasses:i.residualStyles;null!=P&&"string"==typeof a&&Lr(P,a)>=0&&(s[p+1]=hg(s[p+1]))}(a,vt,i,p,P),K=Vm(le,Se),P?a.classBindings=K:a.styleBindings=K}(E,P,a,s,K,p)}}function bg(i,a,s,p,E){let P=null;const K=s.directiveEnd;let le=s.directiveStylingLast;for(-1===le?le=s.directiveStart:le++;le0;){const Se=i[E],Je=Array.isArray(Se),vt=Je?Se[1]:Se,Bt=null===vt;let ti=s[E+1];ti===lr&&(ti=Bt?Bn:void 0);let ui=Bt?Za(ti,p):vt===p?ti:void 0;if(Je&&!Bm(ui)&&(ui=Za(Se,p)),Bm(ui)&&(le=ui,K))return le;const bi=i[E+1];E=K?Y1(bi):p0(bi)}if(null!==a){let Se=P?a.residualClasses:a.residualStyles;null!=Se&&(le=Za(Se,p))}return le}function Bm(i){return void 0!==i}function o_(i,a){return!!(i.flags&(a?8:16))}function s_(i,a,s){Dl(ga,cd,xu(Ii(),i,a,s),!0)}class Oy{destroy(a){}updateValue(a,s){}swap(a,s){const p=Math.min(a,s),E=Math.max(a,s),P=this.detach(E);if(E-p>1){const K=this.detach(p);this.attach(p,P),this.attach(E,K)}else this.attach(p,P)}move(a,s){this.attach(s,this.detach(a))}}function I3(i,a,s,p,E){return i===s&&Object.is(a,p)?1:Object.is(E(i,a),E(s,p))?-1:0}function yg(i,a,s,p){return!(void 0===a||!a.has(p)||(i.attach(s,a.get(p)),a.delete(p),0))}function h_(i,a,s,p,E){if(yg(i,a,p,s(p,E)))i.updateValue(p,E);else{const P=i.create(p,E);i.attach(p,P)}}function u_(i,a,s,p){const E=new Set;for(let P=a;P<=s;P++)E.add(p(P,i.at(P)));return E}class f_{constructor(){this.kvMap=new Map,this._vMap=void 0}has(a){return this.kvMap.has(a)}delete(a){if(!this.has(a))return!1;const s=this.kvMap.get(a);return void 0!==this._vMap&&this._vMap.has(s)?(this.kvMap.set(a,this._vMap.get(s)),this._vMap.delete(s)):this.kvMap.delete(a),!0}get(a){return this.kvMap.get(a)}set(a,s){if(this.kvMap.has(a)){let p=this.kvMap.get(a);void 0===this._vMap&&(this._vMap=new Map);const E=this._vMap;for(;E.has(p);)p=E.get(p);E.set(p,s)}else this.kvMap.set(a,s)}forEach(a){for(let[s,p]of this.kvMap)if(a(p,s),void 0!==this._vMap){const E=this._vMap;for(;E.has(p);)p=E.get(p),a(p,s)}}}function m_(i,a){oc("NgControlFlow");const s=Ii(),p=us(),E=s[p]!==lr?s[p]:-1,P=-1!==E?Um(s,kn+E):void 0;if(Lo(s,p,i)){const le=x(null);try{if(void 0!==P&&n3(P,0),-1!==i){const Se=kn+i,Je=Um(s,Se),vt=wg(s[Bi],Se),Bt=F1(Je,vt.tView.ssrId);S1(Je,Rd(s,vt,a,{dehydratedView:Bt}),0,Od(vt,Bt))}}finally{x(le)}}else if(void 0!==P){const le=Cs(P,0);void 0!==le&&(le[Ur]=a)}}class Ny{constructor(a,s,p){this.lContainer=a,this.$implicit=s,this.$index=p}get $count(){return this.lContainer.length-ea}}function xg(i,a){return a}class Py{constructor(a,s,p){this.hasEmptyBlock=a,this.trackByFn=s,this.liveCollection=p}}function g_(i,a,s,p,E,P,K,le,Se,Je,vt,Bt,ti){oc("NgControlFlow");const ui=Ii(),bi=ur(),Fi=void 0!==Se,qi=Ii(),ln=le?K.bind(qi[Qr][Ur]):K,Hi=new Py(Fi,ln);qi[kn+i]=Hi,T3(ui,bi,i+1,a,s,p,E,qa(bi.consts,P)),Fi&&T3(ui,bi,i+2,Se,Je,vt,Bt,qa(bi.consts,ti))}class Hy extends Oy{constructor(a,s,p){super(),this.lContainer=a,this.hostLView=s,this.templateTNode=p,this.operationsCounter=void 0,this.needsIndexUpdate=!1}get length(){return this.lContainer.length-ea}at(a){return this.getLView(a)[Ur].$implicit}attach(a,s){const p=s[Ya];this.needsIndexUpdate||=a!==this.length,S1(this.lContainer,s,a,Od(this.templateTNode,p))}detach(a){return this.needsIndexUpdate||=a!==this.length-1,function zy(i,a){return kd(i,a)}(this.lContainer,a)}create(a,s){const p=F1(this.lContainer,this.templateTNode.tView.ssrId),E=Rd(this.hostLView,this.templateTNode,new Ny(this.lContainer,s,a),{dehydratedView:p});return this.operationsCounter?.recordCreate(),E}destroy(a){vo(a[Bi],a),this.operationsCounter?.recordDestroy()}updateValue(a,s){this.getLView(a)[Ur].$implicit=s}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let a=0;a{i.destroy(Se)})}(Se,i,P.trackByFn),Se.updateIndexes(),P.hasEmptyBlock){const Je=us(),vt=0===Se.length;if(Lo(p,Je,vt)){const Bt=s+2,ti=Um(p,Bt);if(vt){const ui=wg(E,Bt),bi=F1(ti,ui.tView.ssrId);S1(ti,Rd(p,ui,void 0,{dehydratedView:bi}),0,Od(ui,bi))}else n3(ti,0)}}}finally{x(a)}}function Um(i,a){return i[a]}function wg(i,a){return ec(i,a)}function R3(i,a,s,p){const E=Ii(),P=ur(),K=kn+i,le=E[Wn],Se=P.firstCreatePass?function Uy(i,a,s,p,E,P){const K=a.consts,Se=Q2(a,i,2,p,qa(K,E));return t3(a,s,Se,qa(K,P)),null!==Se.attrs&&Er(Se,Se.attrs,!1),null!==Se.mergedAttrs&&Er(Se,Se.mergedAttrs,!0),null!==a.queries&&a.queries.elementStart(a,Se),Se}(K,P,E,a,s,p):P.data[K],Je=__(P,E,Se,le,a,i);E[K]=Je;const vt=Ja(Se);return Ia(Se,!0),Jf(le,Je,Se),!function fu(i){return!(32&~i.flags)}(Se)&&Yd()&&Zf(P,E,Je,Se),0===function Ud(){return Nn.lFrame.elementDepthCount}()&&Zo(Je,E),function Uu(){Nn.lFrame.elementDepthCount++}(),vt&&(J2(P,E,Se),H4(P,Se,E)),null!==p&&z4(E,Se),R3}function Gm(){let i=jr();ds()?Ra():(i=i.parent,Ia(i,!1));const a=i;(function $3(i){return Nn.skipHydrationRootTNode===i})(a)&&function J3(){Nn.skipHydrationRootTNode=null}(),function Gu(){Nn.lFrame.elementDepthCount--}();const s=ur();return s.firstCreatePass&&(r2(s,i),Ts(i)&&s.queries.elementEnd(i)),null!=a.classesWithoutHost&&function Ju(i){return!!(8&i.flags)}(a)&&pg(s,a,Ii(),a.classesWithoutHost,!0),null!=a.stylesWithoutHost&&function qu(i){return!!(16&i.flags)}(a)&&pg(s,a,Ii(),a.stylesWithoutHost,!1),Gm}function jm(i,a,s,p){return R3(i,a,s,p),Gm(),jm}let __=(i,a,s,p,E,P)=>(Ec(!0),Gn(p,E,function k0(){return Nn.lFrame.currentNamespace}()));function Wm(i,a,s){const p=Ii(),E=ur(),P=i+kn,K=E.firstCreatePass?function jy(i,a,s,p,E){const P=a.consts,K=qa(P,p),le=Q2(a,i,8,"ng-container",K);return null!==K&&Er(le,K,!0),t3(a,s,le,qa(P,E)),null!==a.queries&&a.queries.elementStart(a,le),le}(P,E,p,a,s):E.data[P];Ia(K,!0);const le=b_(E,p,K,i);return p[P]=le,Yd()&&Zf(E,p,le,K),Zo(le,p),Ja(K)&&(J2(E,p,K),H4(E,K,p)),null!=s&&z4(p,K),Wm}function Xm(){let i=jr();const a=ur();return ds()?Ra():(i=i.parent,Ia(i,!1)),a.firstCreatePass&&(r2(a,i),Ts(i)&&a.queries.elementEnd(i)),Xm}function Mg(i,a,s){return Wm(i,a,s),Xm(),Mg}let b_=(i,a,s,p)=>(Ec(!0),On(a[Wn],""));function x_(){return Ii()}function Eg(i,a,s){const p=Ii();return Lo(p,us(),a)&&fs(ur(),Pr(),p,i,a,p[Wn],s,!0),Eg}function Sg(i,a,s){const p=Ii();if(Lo(p,us(),a)){const P=ur(),K=Pr();fs(P,K,p,i,a,Jp(Ca(P.data),K,p),s,!0)}return Sg}const K1=void 0;var Yy=["en",[["a","p"],["AM","PM"],K1],[["AM","PM"],K1,K1],[["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"]],K1,[["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"]],K1,[["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}",K1,"{1} 'at' {0}",K1],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function Xy(i){const s=Math.floor(Math.abs(i)),p=i.toString().replace(/^[^.]*\.?/,"").length;return 1===s&&0===p?1:5}];let Vd={};function Tg(i){const a=function Ky(i){return i.toLowerCase().replace(/_/g,"-")}(i);let s=w_(a);if(s)return s;const p=a.split("-")[0];if(s=w_(p),s)return s;if("en"===p)return Yy;throw new be(701,!1)}function C_(i){return Tg(i)[ku.PluralCase]}function w_(i){return i in Vd||(Vd[i]=Yt.ng&&Yt.ng.common&&Yt.ng.common.locales&&Yt.ng.common.locales[i]),Vd[i]}var ku=function(i){return i[i.LocaleId=0]="LocaleId",i[i.DayPeriodsFormat=1]="DayPeriodsFormat",i[i.DayPeriodsStandalone=2]="DayPeriodsStandalone",i[i.DaysFormat=3]="DaysFormat",i[i.DaysStandalone=4]="DaysStandalone",i[i.MonthsFormat=5]="MonthsFormat",i[i.MonthsStandalone=6]="MonthsStandalone",i[i.Eras=7]="Eras",i[i.FirstDayOfWeek=8]="FirstDayOfWeek",i[i.WeekendRange=9]="WeekendRange",i[i.DateFormat=10]="DateFormat",i[i.TimeFormat=11]="TimeFormat",i[i.DateTimeFormat=12]="DateTimeFormat",i[i.NumberSymbols=13]="NumberSymbols",i[i.NumberFormats=14]="NumberFormats",i[i.CurrencyCode=15]="CurrencyCode",i[i.CurrencySymbol=16]="CurrencySymbol",i[i.CurrencyName=17]="CurrencyName",i[i.Currencies=18]="Currencies",i[i.Directionality=19]="Directionality",i[i.PluralCase=20]="PluralCase",i[i.ExtraData=21]="ExtraData",i}(ku||{});const Lu="en-US";let Dg=Lu;let K_=(i,a,s)=>{};function Vg(i,a,s,p){const E=Ii(),P=ur(),K=jr();return Bg(P,E,E[Wn],K,i,a,p),Vg}function Hg(i,a){const s=jr(),p=Ii(),E=ur();return Bg(E,p,Jp(Ca(E.data),s,p),s,i,a),Hg}function Bg(i,a,s,p,E,P,K){const le=Ja(p),Je=i.firstCreatePass&&Zp(i),vt=a[Ur],Bt=Qp(a);let ti=!0;if(3&p.type||K){const Fi=po(p,a),qi=K?K(Fi):Fi,ln=Bt.length,Hi=K?Jr=>K(wr(Jr[p.index])):p.index;K_(Fi,E,P);let er=null;if(!K&&le&&(er=function zg(i,a,s,p){const E=i.cleanup;if(null!=E)for(let P=0;PSe?le[Se]:null}"string"==typeof K&&(P+=2)}return null}(i,a,E,p.index)),null!==er)(er.__ngLastListenerFn__||er).__ngNextListenerFn__=P,er.__ngLastListenerFn__=P,ti=!1;else{P=Z_(p,a,vt,P);const Jr=s.listen(qi,E,P);Bt.push(P,Jr),Je&&Je.push(E,Hi,ln,ln+1)}}else P=Z_(p,a,vt,P);const ui=p.outputs;let bi;if(ti&&null!==ui&&(bi=ui[E])){const Fi=bi.length;if(Fi)for(let qi=0;qi-1?$o(i.index,a):a,5);let le=Q_(a,s,p,P),Se=E.__ngNextListenerFn__;for(;Se;)le=Q_(a,s,Se,P)&&le,Se=Se.__ngNextListenerFn__;return le}}function Ug(i=1){return function Qu(i){return(Nn.lFrame.contextLView=function Bu(i,a){for(;i>0;)a=a[yc],i--;return a}(i,Nn.lFrame.contextLView))[Ur]}(i)}function xx(i,a){let s=null;const p=function Ue(i){const a=i.attrs;if(null!=a){const s=a.indexOf(5);if(!(1&s))return a[s+1]}return null}(i);for(let E=0;E(Ec(!0),function X2(i,a){return i.createText(a)}(a[Wn],p));function t8(i){return tp("",i,""),t8}function tp(i,a,s){const p=Ii(),E=xu(p,i,a,s);return E!==lr&&Zc(p,Va(),E),tp}function ip(i,a,s,p,E){const P=Ii(),K=W1(P,i,a,s,p,E);return K!==lr&&Zc(P,Va(),K),ip}function i8(i,a,s,p,E,P,K){const le=Ii(),Se=function Cu(i,a,s,p,E,P,K,le){const Je=Am(i,tc(),s,E,K);return Mc(3),Je?a+_i(s)+p+_i(E)+P+_i(K)+le:lr}(le,i,a,s,p,E,P,K);return Se!==lr&&Zc(le,Va(),Se),i8}function np(i,a,s,p,E,P,K,le,Se){const Je=Ii(),vt=wu(Je,i,a,s,p,E,P,K,le,Se);return vt!==lr&&Zc(Je,Va(),vt),np}function a8(i,a,s){Z5(a)&&(a=a());const p=Ii();return Lo(p,us(),a)&&fs(ur(),Pr(),p,i,a,p[Wn],s,!1),a8}function rp(i,a){const s=Z5(i);return s&&i.set(a),s}function o8(i,a){const s=Ii(),p=ur(),E=jr();return Bg(p,s,s[Wn],E,i,a),o8}function s8(i,a,s,p,E){if(i=dt(i),Array.isArray(i))for(let P=0;P>20;if(Eo(i)||!i.multi){const ui=new Bc(Je,E,$2),bi=c8(Se,a,E?vt:vt+ti,Bt);-1===bi?(fl(Uc(le,K),P,Se),g0(P,i,a.length),a.push(Se),le.directiveStart++,le.directiveEnd++,E&&(le.providerIndexes+=1048576),s.push(ui),K.push(ui)):(s[bi]=ui,K[bi]=ui)}else{const ui=c8(Se,a,vt+ti,Bt),bi=c8(Se,a,vt,vt+ti),qi=bi>=0&&s[bi];if(E&&!qi||!E&&!(ui>=0&&s[ui])){fl(Uc(le,K),P,Se);const ln=function Ox(i,a,s,p,E){const P=new Bc(i,s,$2);return P.multi=[],P.index=a,P.componentProviders=0,xv(P,E,p&&!s),P}(E?Cv:Rx,s.length,E,p,Je);!E&&qi&&(s[bi].providerFactory=ln),g0(P,i,a.length,0),a.push(Se),le.directiveStart++,le.directiveEnd++,E&&(le.providerIndexes+=1048576),s.push(ln),K.push(ln)}else g0(P,i,ui>-1?ui:bi,xv(s[E?bi:ui],Je,!E&&p));!E&&p&&qi&&s[bi].componentProviders++}}}function g0(i,a,s,p){const E=Eo(a),P=function pc(i){return!!i.useClass}(a);if(E||P){const Se=(P?dt(a.useClass):a).prototype.ngOnDestroy;if(Se){const Je=i.destroyHooks||(i.destroyHooks=[]);if(!E&&a.multi){const vt=Je.indexOf(s);-1===vt?Je.push(s,[p,Se]):Je[vt+1].push(p,Se)}else Je.push(s,Se)}}}function xv(i,a,s){return s&&i.componentProviders++,i.multi.push(a)-1}function c8(i,a,s,p){for(let E=s;E{s.providersResolver=(p,E)=>function Ix(i,a,s){const p=ur();if(p.firstCreatePass){const E=En(i);s8(s,p.data,p.blueprint,E,!0),s8(a,p.data,p.blueprint,E,!1)}}(p,E?E(i):i,a)}}let Fx=(()=>{class i{constructor(s){this._injector=s,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(s){if(!s.standalone)return null;if(!this.cachedInjectors.has(s)){const p=_s(0,s.type),E=p.length>0?Y6([p],this._injector,`Standalone[${s.type.name}]`):null;this.cachedInjectors.set(s,E)}return this.cachedInjectors.get(s)}ngOnDestroy(){try{for(const s of this.cachedInjectors.values())null!==s&&s.destroy()}finally{this.cachedInjectors.clear()}}static#e=this.\u0275prov=Li({token:i,providedIn:"environment",factory:()=>new i(zn(So))})}return i})();function wv(i){oc("NgStandalone"),i.getStandaloneInjector=a=>a.get(Fx).getOrCreateStandaloneInjector(i)}function Mv(i,a,s){const p=hs()+i,E=Ii();return E[p]===lr?Sl(E,p,s?a.call(s):a()):function S3(i,a){return i[a]}(E,p)}function Ev(i,a,s,p){return Ou(Ii(),hs(),i,a,s,p)}function h8(i,a,s,p,E){return Tv(Ii(),hs(),i,a,s,p,E)}function Sv(i,a,s,p,E,P){return Dv(Ii(),hs(),i,a,s,p,E,P)}function P3(i,a){const s=i[a];return s===lr?void 0:s}function Ou(i,a,s,p,E,P){const K=a+s;return Lo(i,K,E)?Sl(i,K+1,P?p.call(P,E):p(E)):P3(i,K+1)}function Tv(i,a,s,p,E,P,K){const le=a+s;return U1(i,le,E,P)?Sl(i,le+2,K?p.call(K,E,P):p(E,P)):P3(i,le+2)}function Dv(i,a,s,p,E,P,K,le){const Se=a+s;return Am(i,Se,E,P,K)?Sl(i,Se+3,le?p.call(le,E,P,K):p(E,P,K)):P3(i,Se+3)}function Lv(i,a){const s=ur();let p;const E=i+kn;s.firstCreatePass?(p=function jx(i,a){if(a)for(let s=a.length-1;s>=0;s--){const p=a[s];if(i===p.name)return p}}(a,s.pipeRegistry),s.data[E]=p,p.onDestroy&&(s.destroyHooks??=[]).push(E,p.onDestroy)):p=s.data[E];const P=p.factory||(p.factory=kr(p.type)),le=nr($2);try{const Se=hd(!1),Je=P();return hd(Se),function Mx(i,a,s,p){s>=i.data.length&&(i.data[s]=null,i.blueprint[s]=null),a[s]=p}(s,Ii(),E,Je),Je}finally{nr(le)}}function Iv(i,a,s){const p=i+kn,E=Ii(),P=Hl(E,p);return V3(E,p)?Ou(E,hs(),a,P.transform,s,P):P.transform(s)}function Rv(i,a,s,p){const E=i+kn,P=Ii(),K=Hl(P,E);return V3(P,E)?Tv(P,hs(),a,K.transform,s,p,K):K.transform(s,p)}function Ov(i,a,s,p,E){const P=i+kn,K=Ii(),le=Hl(K,P);return V3(K,P)?Dv(K,hs(),a,le.transform,s,p,E,le):le.transform(s,p,E)}function V3(i,a){return i[Bi].data[a].pure}function Nv(i,a){return A1(i,a)}class C8{constructor(a){this.full=a;const s=a.split(".");this.major=s[0],this.minor=s[1],this.patch=s.slice(2).join(".")}}let Qv=(()=>{class i{log(s){console.log(s)}warn(s){console.warn(s)}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();const h9=new Ni(""),E8=new Ni("");let S8,SC=(()=>{class i{constructor(s,p,E){this._ngZone=s,this.registry=p,this._isZoneStable=!0,this._callbacks=[],this.taskTrackingZone=null,S8||(function TC(i){S8=i}(E),E.addToWindow(p)),this._watchAngularEvents(),s.run(()=>{this.taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}isStable(){return this._isZoneStable&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let s=this._callbacks.pop();clearTimeout(s.timeoutId),s.doneCb()}});else{let s=this.getPendingTasks();this._callbacks=this._callbacks.filter(p=>!p.updateCb||!p.updateCb(s)||(clearTimeout(p.timeoutId),!1))}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(s=>({source:s.source,creationLocation:s.creationLocation,data:s.data})):[]}addCallback(s,p,E){let P=-1;p&&p>0&&(P=setTimeout(()=>{this._callbacks=this._callbacks.filter(K=>K.timeoutId!==P),s()},p)),this._callbacks.push({doneCb:s,timeoutId:P,updateCb:E})}whenStable(s,p,E){if(E&&!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(s,p,E),this._runCallbacksIfReady()}registerApplication(s){this.registry.registerApplication(s,this)}unregisterApplication(s){this.registry.unregisterApplication(s)}findProviders(s,p,E){return[]}static#e=this.\u0275fac=function(p){return new(p||i)(zn(Ha),zn(u9),zn(E8))};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac})}return i})(),u9=(()=>{class i{constructor(){this._applications=new Map}registerApplication(s,p){this._applications.set(s,p)}unregisterApplication(s){this._applications.delete(s)}unregisterAllApplications(){this._applications.clear()}getTestability(s){return this._applications.get(s)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(s,p=!0){return S8?.findTestabilityInTree(this,s,p)??null}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();function T8(i){return!!i&&"function"==typeof i.then}function f9(i){return!!i&&"function"==typeof i.subscribe}const D8=new Ni("");let A8=(()=>{class i{constructor(){this.initialized=!1,this.done=!1,this.donePromise=new Promise((s,p)=>{this.resolve=s,this.reject=p}),this.appInits=hn(D8,{optional:!0})??[]}runInitializers(){if(this.initialized)return;const s=[];for(const E of this.appInits){const P=E();if(T8(P))s.push(P);else if(f9(P)){const K=new Promise((le,Se)=>{P.subscribe({complete:le,error:Se})});s.push(K)}}const p=()=>{this.done=!0,this.resolve()};Promise.all(s).then(()=>{p()}).catch(E=>{this.reject(E)}),0===s.length&&p(),this.initialized=!0}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();const lp=new Ni("");function _9(i,a){return Array.isArray(a)?a.reduce(_9,i):{...i,...a}}let Al=(()=>{class i{constructor(){this._bootstrapListeners=[],this._runningTick=!1,this._destroyed=!1,this._destroyListeners=[],this._views=[],this.internalErrorHandler=hn(r1),this.afterRenderEffectManager=hn(ki),this.zonelessEnabled=hn(Nd),this.externalTestViews=new Set,this.beforeRender=new me.B,this.afterTick=new me.B,this.componentTypes=[],this.components=[],this.isStable=hn(B1).hasPendingTasks.pipe((0,ke.T)(s=>!s)),this._injector=hn(So)}get allViews(){return[...this.externalTestViews.keys(),...this._views]}get destroyed(){return this._destroyed}get injector(){return this._injector}bootstrap(s,p){const E=s instanceof v6;if(!this._injector.get(A8).done)throw!E&&so(s),new be(405,!1);let K;K=E?s:this._injector.get(du).resolveComponentFactory(s),this.componentTypes.push(K.componentType);const le=function p9(i){return i.isBoundToModule}(K)?void 0:this._injector.get(u0),Je=K.create(go.NULL,[],p||K.selector,le),vt=Je.location.nativeElement,Bt=Je.injector.get(h9,null);return Bt?.registerApplication(vt),Je.onDestroy(()=>{this.detachView(Je.hostView),B3(this.components,Je),Bt?.unregisterApplication(vt)}),this._loadComponent(Je),Je}tick(){this._tick(!0)}_tick(s){if(this._runningTick)throw new be(101,!1);const p=x(null);try{this._runningTick=!0,this.detectChangesInAttachedViews(s)}catch(E){this.internalErrorHandler(E)}finally{this._runningTick=!1,x(p),this.afterTick.next()}}detectChangesInAttachedViews(s){let p=null;this._injector.destroyed||(p=this._injector.get(b3,null,{optional:!0}));let E=0;const P=this.afterRenderEffectManager;for(;E<10;){const K=0===E;if(s||!K){this.beforeRender.next(K);for(let{_lView:le,notifyErrorHandler:Se}of this._views)DC(le,Se,K,this.zonelessEnabled)}else p?.begin?.(),p?.end?.();if(E++,P.executeInternalCallbacks(),!this.allViews.some(({_lView:le})=>al(le))&&(P.execute(),!this.allViews.some(({_lView:le})=>al(le))))break}}attachView(s){const p=s;this._views.push(p),p.attachToAppRef(this)}detachView(s){const p=s;B3(this._views,p),p.detachFromAppRef()}_loadComponent(s){this.attachView(s.hostView),this.tick(),this.components.push(s);const p=this._injector.get(lp,[]);[...this._bootstrapListeners,...p].forEach(E=>E(s))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(s=>s()),this._views.slice().forEach(s=>s.destroy())}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(s){return this._destroyListeners.push(s),()=>B3(this._destroyListeners,s)}destroy(){if(this._destroyed)throw new be(406,!1);const s=this._injector;s.destroy&&!s.destroyed&&s.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function B3(i,a){const s=i.indexOf(a);s>-1&&i.splice(s,1)}function DC(i,a,s,p){(s||al(i))&&n0(i,a,s&&!p?0:1)}class AC{constructor(a,s){this.ngModuleFactory=a,this.componentFactories=s}}let kC=(()=>{class i{compileModuleSync(s){return new W6(s)}compileModuleAsync(s){return Promise.resolve(this.compileModuleSync(s))}compileModuleAndAllComponentsSync(s){const p=this.compileModuleSync(s),P=An(Ir(s).declarations).reduce((K,le)=>{const Se=Vn(le);return Se&&K.push(new Do(Se)),K},[]);return new AC(p,P)}compileModuleAndAllComponentsAsync(s){return Promise.resolve(this.compileModuleAndAllComponentsSync(s))}clearCache(){}clearCacheFor(s){}getModuleId(s){}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})(),IC=(()=>{class i{constructor(){this.zone=hn(Ha),this.changeDetectionScheduler=hn(N1),this.applicationRef=hn(Al)}initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{this.applicationRef.tick()})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function hp({ngZoneFactory:i,ignoreChangesOutsideZone:a}){return i??=()=>new Ha(L8()),[{provide:Ha,useFactory:i},{provide:Da,multi:!0,useFactory:()=>{const s=hn(IC,{optional:!0});return()=>s.initialize()}},{provide:Da,multi:!0,useFactory:()=>{const s=hn(OC);return()=>{s.initialize()}}},{provide:r1,useFactory:RC},!0===a?{provide:_6,useValue:!0}:[]]}function RC(){const i=hn(Ha),a=hn(Bs);return s=>i.runOutsideAngular(()=>a.handleError(s))}function L8(i){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:i?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:i?.runCoalescing??!1}}let OC=(()=>{class i{constructor(){this.subscription=new ce.yU,this.initialized=!1,this.zone=hn(Ha),this.pendingTasks=hn(B1)}initialize(){if(this.initialized)return;this.initialized=!0;let s=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(s=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{null!==s&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(s),s=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{Ha.assertInAngularZone(),s??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})(),U3=(()=>{class i{constructor(){this.appRef=hn(Al),this.taskService=hn(B1),this.ngZone=hn(Ha),this.zonelessEnabled=hn(Nd),this.disableScheduling=hn(_6,{optional:!0})??!1,this.zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run,this.schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}],this.subscriptions=new ce.yU,this.cancelScheduledCallback=null,this.shouldRefreshViews=!1,this.useMicrotaskScheduler=!1,this.runningTick=!1,this.pendingRenderTaskId=null,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 B||!this.zoneIsDefined)}notify(s){if(!this.zonelessEnabled&&5===s)return;switch(s){case 3:case 2:case 0:case 4:case 5:case 1:this.shouldRefreshViews=!0}if(!this.shouldScheduleTick())return;const p=this.useMicrotaskScheduler?E6:M6;this.pendingRenderTaskId=this.taskService.add(),this.zoneIsDefined?Zone.root.run(()=>{this.cancelScheduledCallback=p(()=>{this.tick(this.shouldRefreshViews)})}):this.cancelScheduledCallback=p(()=>{this.tick(this.shouldRefreshViews)})}shouldScheduleTick(){return!(this.disableScheduling||null!==this.pendingRenderTaskId||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Ha.isInAngularZone())}tick(s){if(this.runningTick||this.appRef.destroyed)return;const p=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick(s)},void 0,this.schedulerTickApplyArgs)}catch(E){throw this.taskService.remove(p),E}finally{this.cleanup()}this.useMicrotaskScheduler=!0,E6(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(p)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.shouldRefreshViews=!1,this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,null!==this.pendingRenderTaskId){const s=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(s)}}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();const G3=new Ni("",{providedIn:"root",factory:()=>hn(G3,rn.Optional|rn.SkipSelf)||function NC(){return typeof $localize<"u"&&$localize.locale||Lu}()}),PC=new Ni("",{providedIn:"root",factory:()=>"USD"}),O8=new Ni("");let C9=(()=>{class i{constructor(s){this._injector=s,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(s,p){const E=function Gt(i="zone.js",a){return"noop"===i?new B:"zone.js"===i?new Ha(a):i}(p?.ngZone,L8({eventCoalescing:p?.ngZoneEventCoalescing,runCoalescing:p?.ngZoneRunCoalescing}));return E.run(()=>{const P=p?.ignoreChangesOutsideZone,K=function zb(i,a,s){return new j6(i,a,s)}(s.moduleType,this.injector,[...hp({ngZoneFactory:()=>E,ignoreChangesOutsideZone:P}),{provide:N1,useExisting:U3}]),le=K.injector.get(Bs,null);return E.runOutsideAngular(()=>{const Se=E.onError.subscribe({next:Je=>{le.handleError(Je)}});K.onDestroy(()=>{B3(this._modules,K),Se.unsubscribe()})}),function g9(i,a,s){try{const p=s();return T8(p)?p.catch(E=>{throw a.runOutsideAngular(()=>i.handleError(E)),E}):p}catch(p){throw a.runOutsideAngular(()=>i.handleError(p)),p}}(le,E,()=>{const Se=K.injector.get(A8);return Se.runInitializers(),Se.donePromise.then(()=>(function S_(i){"string"==typeof i&&(Dg=i.toLowerCase().replace(/_/g,"-"))}(K.injector.get(G3,Lu)||Lu),this._moduleDoBootstrap(K),K))})})}bootstrapModule(s,p=[]){const E=_9({},p);return function LC(i,a,s){const p=new W6(s);return Promise.resolve(p)}(0,0,s).then(P=>this.bootstrapModuleFactory(P,E))}_moduleDoBootstrap(s){const p=s.injector.get(Al);if(s._bootstrapComponents.length>0)s._bootstrapComponents.forEach(E=>p.bootstrap(E));else{if(!s.instance.ngDoBootstrap)throw new be(-403,!1);s.instance.ngDoBootstrap(p)}this._modules.push(s)}onDestroy(s){this._destroyListeners.push(s)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new be(404,!1);this._modules.slice().forEach(p=>p.destroy()),this._destroyListeners.forEach(p=>p());const s=this._injector.get(O8,null);s&&(s.forEach(p=>p()),s.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static#e=this.\u0275fac=function(p){return new(p||i)(zn(go))};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})(),$1=null;const w9=new Ni("");function F8(i,a,s=[]){const p=`Platform: ${a}`,E=new Ni(p);return(P=[])=>{let K=N8();if(!K||K.injector.get(w9,!1)){const le=[...s,...P,{provide:E,useValue:!0}];i?i(le):function VC(i){if($1&&!$1.get(w9,!1))throw new be(400,!1);(function m9(){!function L(i){C=i}(()=>{throw new be(600,!1)})})(),$1=i;const a=i.get(C9);(function P8(i){i.get(lh,null)?.forEach(s=>s())})(i)}(function M9(i=[],a){return go.create({name:a,providers:[{provide:Js,useValue:"platform"},{provide:O8,useValue:new Set([()=>$1=null])},...i]})}(le,p))}return function E9(i){const a=N8();if(!a)throw new be(401,!1);return a}()}}function N8(){return $1?.get(C9)??null}function S9(){return!1}let T9=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=zC}return i})();function zC(i){return function D9(i,a,s){if(Vs(i)&&!s){const p=$o(i.index,a);return new Ys(p,p)}return 47&i.type?new Ys(a[Qr],a):null}(jr(),Ii(),!(16&~i))}class R9{constructor(){}supports(a){return E3(a)}create(a){return new jC(a)}}const O9=(i,a)=>a;class jC{constructor(a){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=a||O9}forEachItem(a){let s;for(s=this._itHead;null!==s;s=s._next)a(s)}forEachOperation(a){let s=this._itHead,p=this._removalsHead,E=0,P=null;for(;s||p;){const K=!p||s&&s.currentIndex{K=this._trackByFn(E,le),null!==s&&Object.is(s.trackById,K)?(p&&(s=this._verifyReinsertion(s,le,K,E)),Object.is(s.item,le)||this._addIdentityChange(s,le)):(s=this._mismatch(s,le,K,E),p=!0),s=s._next,E++}),this.length=E;return this._truncate(s),this.collection=a,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let a;for(a=this._previousItHead=this._itHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._additionsHead;null!==a;a=a._nextAdded)a.previousIndex=a.currentIndex;for(this._additionsHead=this._additionsTail=null,a=this._movesHead;null!==a;a=a._nextMoved)a.previousIndex=a.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(a,s,p,E){let P;return null===a?P=this._itTail:(P=a._prev,this._remove(a)),null!==(a=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null))?(Object.is(a.item,s)||this._addIdentityChange(a,s),this._reinsertAfter(a,P,E)):null!==(a=null===this._linkedRecords?null:this._linkedRecords.get(p,E))?(Object.is(a.item,s)||this._addIdentityChange(a,s),this._moveAfter(a,P,E)):a=this._addAfter(new WC(s,p),P,E),a}_verifyReinsertion(a,s,p,E){let P=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null);return null!==P?a=this._reinsertAfter(P,a._prev,E):a.currentIndex!=E&&(a.currentIndex=E,this._addToMoves(a,E)),a}_truncate(a){for(;null!==a;){const s=a._next;this._addToRemovals(this._unlink(a)),a=s}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(a,s,p){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(a);const E=a._prevRemoved,P=a._nextRemoved;return null===E?this._removalsHead=P:E._nextRemoved=P,null===P?this._removalsTail=E:P._prevRemoved=E,this._insertAfter(a,s,p),this._addToMoves(a,p),a}_moveAfter(a,s,p){return this._unlink(a),this._insertAfter(a,s,p),this._addToMoves(a,p),a}_addAfter(a,s,p){return this._insertAfter(a,s,p),this._additionsTail=null===this._additionsTail?this._additionsHead=a:this._additionsTail._nextAdded=a,a}_insertAfter(a,s,p){const E=null===s?this._itHead:s._next;return a._next=E,a._prev=s,null===E?this._itTail=a:E._prev=a,null===s?this._itHead=a:s._next=a,null===this._linkedRecords&&(this._linkedRecords=new F9),this._linkedRecords.put(a),a.currentIndex=p,a}_remove(a){return this._addToRemovals(this._unlink(a))}_unlink(a){null!==this._linkedRecords&&this._linkedRecords.remove(a);const s=a._prev,p=a._next;return null===s?this._itHead=p:s._next=p,null===p?this._itTail=s:p._prev=s,a}_addToMoves(a,s){return a.previousIndex===s||(this._movesTail=null===this._movesTail?this._movesHead=a:this._movesTail._nextMoved=a),a}_addToRemovals(a){return null===this._unlinkedRecords&&(this._unlinkedRecords=new F9),this._unlinkedRecords.put(a),a.currentIndex=null,a._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=a,a._prevRemoved=null):(a._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=a),a}_addIdentityChange(a,s){return a.item=s,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=a:this._identityChangesTail._nextIdentityChange=a,a}}class WC{constructor(a,s){this.item=a,this.trackById=s,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class XC{constructor(){this._head=null,this._tail=null}add(a){null===this._head?(this._head=this._tail=a,a._nextDup=null,a._prevDup=null):(this._tail._nextDup=a,a._prevDup=this._tail,a._nextDup=null,this._tail=a)}get(a,s){let p;for(p=this._head;null!==p;p=p._nextDup)if((null===s||s<=p.currentIndex)&&Object.is(p.trackById,a))return p;return null}remove(a){const s=a._prevDup,p=a._nextDup;return null===s?this._head=p:s._nextDup=p,null===p?this._tail=s:p._prevDup=s,null===this._head}}class F9{constructor(){this.map=new Map}put(a){const s=a.trackById;let p=this.map.get(s);p||(p=new XC,this.map.set(s,p)),p.add(a)}get(a,s){const E=this.map.get(a);return E?E.get(a,s):null}remove(a){const s=a.trackById;return this.map.get(s).remove(a)&&this.map.delete(s),a}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function G8(i,a,s){const p=i.previousIndex;if(null===p)return p;let E=0;return s&&p{if(s&&s.key===E)this._maybeAddToChanges(s,p),this._appendAfter=s,s=s._next;else{const P=this._getOrCreateRecordForKey(E,p);s=this._insertBeforeOrAppend(s,P)}}),s){s._prev&&(s._prev._next=null),this._removalsHead=s;for(let p=s;null!==p;p=p._nextRemoved)p===this._mapHead&&(this._mapHead=null),this._records.delete(p.key),p._nextRemoved=p._next,p.previousValue=p.currentValue,p.currentValue=null,p._prev=null,p._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(a,s){if(a){const p=a._prev;return s._next=a,s._prev=p,a._prev=s,p&&(p._next=s),a===this._mapHead&&(this._mapHead=s),this._appendAfter=a,a}return this._appendAfter?(this._appendAfter._next=s,s._prev=this._appendAfter):this._mapHead=s,this._appendAfter=s,null}_getOrCreateRecordForKey(a,s){if(this._records.has(a)){const E=this._records.get(a);this._maybeAddToChanges(E,s);const P=E._prev,K=E._next;return P&&(P._next=K),K&&(K._prev=P),E._next=null,E._prev=null,E}const p=new KC(a);return this._records.set(a,p),p.currentValue=s,this._addToAdditions(p),p}_reset(){if(this.isDirty){let a;for(this._previousMapHead=this._mapHead,a=this._previousMapHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._changesHead;null!==a;a=a._nextChanged)a.previousValue=a.currentValue;for(a=this._additionsHead;null!=a;a=a._nextAdded)a.previousValue=a.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(a,s){Object.is(s,a.currentValue)||(a.previousValue=a.currentValue,a.currentValue=s,this._addToChanges(a))}_addToAdditions(a){null===this._additionsHead?this._additionsHead=this._additionsTail=a:(this._additionsTail._nextAdded=a,this._additionsTail=a)}_addToChanges(a){null===this._changesHead?this._changesHead=this._changesTail=a:(this._changesTail._nextChanged=a,this._changesTail=a)}_forEach(a,s){a instanceof Map?a.forEach(s):Object.keys(a).forEach(p=>s(a[p],p))}}class KC{constructor(a){this.key=a,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}function j8(){return new W8([new R9])}let W8=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:j8});constructor(s){this.factories=s}static create(s,p){if(null!=p){const E=p.factories.slice();s=s.concat(E)}return new i(s)}static extend(s){return{provide:i,useFactory:p=>i.create(s,p||j8()),deps:[[i,new Fa,new Oa]]}}find(s){const p=this.factories.find(E=>E.supports(s));if(null!=p)return p;throw new be(901,!1)}}return i})();function P9(){return new Pu([new N9])}let Pu=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:P9});constructor(s){this.factories=s}static create(s,p){if(p){const E=p.factories.slice();s=s.concat(E)}return new i(s)}static extend(s){return{provide:i,useFactory:p=>i.create(s,p||P9()),deps:[[i,new Fa,new Oa]]}}find(s){const p=this.factories.find(E=>E.supports(s));if(p)return p;throw new be(901,!1)}}return i})();const qC=F8(null,"core",[]);let V9=(()=>{class i{constructor(s){}static#e=this.\u0275fac=function(p){return new(p||i)(zn(Al))};static#t=this.\u0275mod=jo({type:i});static#i=this.\u0275inj=Qt({})}return i})();function Mp(i){return"boolean"==typeof i?i:null!=i&&"false"!==i}function kw(i,a=NaN){return isNaN(parseFloat(i))||isNaN(Number(i))?a:Number(i)}function X3(i,a){oc("NgSignals");const s=function de(i){const a=Object.create(m);a.computation=i;const s=()=>{if(R(a),y(a),a.value===c)throw a.error;return a.value};return s[l]=a,s}(i);return a?.equal&&(s[l].equal=a.equal),s}function Iw(i){const a=x(null);try{return i()}finally{x(a)}}const Rw=new Ni("",{providedIn:"root",factory:()=>hn(Ow)});let Ow=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>new Fw})}return i})();class Fw{constructor(){this.queuedEffectCount=0,this.queues=new Map,this.pendingTasks=hn(B1),this.taskId=null}scheduleEffect(a){if(this.enqueue(a),null===this.taskId){const s=this.taskId=this.pendingTasks.add();queueMicrotask(()=>{this.flush(),this.pendingTasks.remove(s),this.taskId=null})}}enqueue(a){const s=a.creationZone;this.queues.has(s)||this.queues.set(s,new Set);const p=this.queues.get(s);p.has(a)||(this.queuedEffectCount++,p.add(a))}flush(){for(;this.queuedEffectCount>0;)for(const[a,s]of this.queues)null===a?this.flushQueue(s):a.run(()=>this.flushQueue(s))}flushQueue(a){for(const s of a)a.delete(s),this.queuedEffectCount--,s.run()}}class Nw{constructor(a,s,p,E,P,K){this.scheduler=a,this.effectFn=s,this.creationZone=p,this.injector=P,this.watcher=function qe(i,a,s){const p=Object.create(se);s&&(p.consumerAllowSignalWrites=!0),p.fn=i,p.schedule=a;const E=Se=>{p.cleanupFn=Se};return p.ref={notify:()=>$(p),run:()=>{if(null===p.fn)return;if(function I(){return w}())throw new Error("Schedulers cannot synchronously execute watches while scheduling.");if(p.dirty=!1,p.hasRun&&!J(p))return;p.hasRun=!0;const Se=j(p);try{p.cleanupFn(),p.cleanupFn=Ke,p.fn(E)}finally{Q(p,Se)}},cleanup:()=>p.cleanupFn(),destroy:()=>function K(Se){(function P(Se){return null===Se.fn&&null===Se.schedule})(Se)||(ee(Se),Se.cleanupFn(),Se.fn=null,Se.schedule=null,Se.cleanupFn=Ke)}(p),[l]:p},p.ref}(le=>this.runEffect(le),()=>this.schedule(),K),this.unregisterOnDestroy=E?.onDestroy(()=>this.destroy())}runEffect(a){try{this.effectFn(a)}catch(s){this.injector.get(Bs,null,{optional:!0})?.handleError(s)}}run(){this.watcher.run()}schedule(){this.scheduler.scheduleEffect(this)}destroy(){this.watcher.destroy(),this.unregisterOnDestroy?.()}}function lb(i,a){oc("NgSignals"),!a?.injector&&De();const s=a?.injector??hn(go),p=!0!==a?.manualCleanup?s.get(ml):null,E=new Nw(s.get(Rw),i,typeof Zone>"u"?null:Zone.current,p,s,a?.allowSignalWrites??!1),P=s.get(T9,null,{optional:!0});return P&&8&P._lView[sn]?(P._lView[Fc]??=[]).push(E.watcher.notify):E.watcher.notify(),E}function Pw(i,a){const s=Vn(i),p=a.elementInjector||os();return new Do(s).create(p,a.projectableNodes,a.hostElement,a.environmentInjector)}function Vw(i){const a=Vn(i);if(!a)return null;const s=new Do(a);return{get selector(){return s.selector},get type(){return s.componentType},get inputs(){return s.inputs},get outputs(){return s.outputs},get ngContentSelectors(){return s.ngContentSelectors},get isStandalone(){return a.standalone},get isSignal(){return a.signals}}}},9079:(Qe,te,g)=>{"use strict";g.d(te,{ot:()=>f});var e=g(4438);function f(I,d){const T=!d?.manualCleanup;T&&!d?.injector&&(0,e.Af3)(f);const y=T?d?.injector?.get(e.abz)??(0,e.WQX)(e.abz):null;let F;F=(0,e.vPA)(d?.requireSync?{kind:0}:{kind:1,value:d?.initialValue});const R=I.subscribe({next:z=>F.set({kind:1,value:z}),error:z=>{if(d?.rejectErrors)throw z;F.set({kind:2,error:z})}});return y?.onDestroy(R.unsubscribe.bind(R)),(0,e.EWP)(()=>{const z=F();switch(z.kind){case 1:return z.value;case 2:throw z.error;case 0:throw new e.wOt(601,"`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.")}})}},4545:(Qe,te,g)=>{"use strict";function e(T){for(let y in T){let F=T[y]??"";switch(y){case"display":T.display="flex"===F?["-webkit-flex","flex"]:"inline-flex"===F?["-webkit-inline-flex","inline-flex"]:F;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":T["-webkit-"+y]=F;break;case"flex-direction":T["-webkit-flex-direction"]=F,T["flex-direction"]=F;break;case"order":T.order=T["-webkit-"+y]=isNaN(+F)?"0":F}}return T}g.d(te,{C5:()=>d,O5:()=>e,Uo:()=>w,Vc:()=>x,uG:()=>S});const t="inline",w=["row","column","row-reverse","column-reverse"];function S(T){let[y,F,R]=l(T);return function I(T,y=null,F=!1){return{display:F?"inline-flex":"flex","box-sizing":"border-box","flex-direction":T,"flex-wrap":y||null}}(y,F,R)}function l(T){T=T?.toLowerCase()??"";let[y,F,R]=T.split(" ");return w.find(z=>z===y)||(y=w[0]),F===t&&(F=R!==t?R:"",R=t),[y,f(F),!!R]}function x(T){let[y]=l(T);return y.indexOf("row")>-1}function f(T){if(T)switch(T.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":T="wrap-reverse";break;case"no":case"none":case"nowrap":T="nowrap";break;default:T="wrap"}return T}function d(T,...y){if(null==T)throw TypeError("Cannot convert undefined or null to object");for(let F of y)if(null!=F)for(let R in F)F.hasOwnProperty(R)&&(T[R]=F[R]);return T}},9340:(Qe,te,g)=>{"use strict";g.d(te,{Ce:()=>Q,DJ:()=>at,EA:()=>j,PV:()=>$,SL:()=>J,Ui:()=>R,ZH:()=>ge,cL:()=>Nt,hN:()=>Ye,qH:()=>Ze,r3:()=>ie});var e=g(4438),t=g(177),w=g(4412),S=g(1985),l=g(7786),x=g(1413),f=g(4545),I=g(5964),d=g(8141);const y={provide:e.iLQ,useFactory:function T(Et,Vt){return()=>{if((0,t.UE)(Vt)){const oe=Array.from(Et.querySelectorAll(`[class*=${F}]`)),tt=/\bflex-layout-.+?\b/g;oe.forEach($t=>{$t.classList.contains(`${F}ssr`)&&$t.parentNode?$t.parentNode.removeChild($t):$t.className.replace(tt,"")})}}},deps:[t.qQ,e.Agw],multi:!0},F="flex-layout-";let R=(()=>{class Et{}return Et.\u0275fac=function(oe){return new(oe||Et)},Et.\u0275mod=e.$C({type:Et}),Et.\u0275inj=e.G2t({providers:[y]}),Et})();class z{constructor(Vt=!1,oe="all",tt="",$t="",zt=0){this.matches=Vt,this.mediaQuery=oe,this.mqAlias=tt,this.suffix=$t,this.priority=zt,this.property=""}clone(){return new z(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let W=(()=>{class Et{constructor(){this.stylesheet=new Map}addStyleToElement(oe,tt,$t){const zt=this.stylesheet.get(oe);zt?zt.set(tt,$t):this.stylesheet.set(oe,new Map([[tt,$t]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(oe,tt){const $t=this.stylesheet.get(oe);let zt="";if($t){const Jt=$t.get(tt);("number"==typeof Jt||"string"==typeof Jt)&&(zt=Jt+"")}return zt}}return Et.\u0275fac=function(oe){return new(oe||Et)},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const $={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},j=new e.nKC("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>$}),Q=new e.nKC("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),J=new e.nKC("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function ee(Et,Vt){return Et=Et?.clone()??new z,Vt&&(Et.mqAlias=Vt.alias,Et.mediaQuery=Vt.mediaQuery,Et.suffix=Vt.suffix,Et.priority=Vt.priority),Et}class ie{constructor(){this.shouldCache=!0}sideEffect(Vt,oe,tt){}}let ge=(()=>{class Et{constructor(oe,tt,$t,zt){this._serverStylesheet=oe,this._serverModuleLoaded=tt,this._platformId=$t,this.layoutConfig=zt}applyStyleToElement(oe,tt,$t=null){let zt={};"string"==typeof tt&&(zt[tt]=$t,tt=zt),zt=this.layoutConfig.disableVendorPrefixes?tt:(0,f.O5)(tt),this._applyMultiValueStyleToElement(zt,oe)}applyStyleToElements(oe,tt=[]){const $t=this.layoutConfig.disableVendorPrefixes?oe:(0,f.O5)(oe);tt.forEach(zt=>{this._applyMultiValueStyleToElement($t,zt)})}getFlowDirection(oe){const tt="flex-direction";let $t=this.lookupStyle(oe,tt);return[$t||"row",this.lookupInlineStyle(oe,tt)||(0,t.Vy)(this._platformId)&&this._serverModuleLoaded?$t:""]}hasWrap(oe){return"wrap"===this.lookupStyle(oe,"flex-wrap")}lookupAttributeValue(oe,tt){return oe.getAttribute(tt)??""}lookupInlineStyle(oe,tt){return(0,t.UE)(this._platformId)?oe.style.getPropertyValue(tt):function ae(Et,Vt){return de(Et)[Vt]??""}(oe,tt)}lookupStyle(oe,tt,$t=!1){let zt="";return oe&&((zt=this.lookupInlineStyle(oe,tt))||((0,t.UE)(this._platformId)?$t||(zt=getComputedStyle(oe).getPropertyValue(tt)):this._serverModuleLoaded&&(zt=this._serverStylesheet.getStyleForElement(oe,tt)))),zt?zt.trim():""}_applyMultiValueStyleToElement(oe,tt){Object.keys(oe).sort().forEach($t=>{const zt=oe[$t],Jt=Array.isArray(zt)?zt:[zt];Jt.sort();for(let St of Jt)St=St?St+"":"",(0,t.UE)(this._platformId)||!this._serverModuleLoaded?(0,t.UE)(this._platformId)?tt.style.setProperty($t,St):Me(tt,$t,St):this._serverStylesheet.addStyleToElement(tt,$t,St)})}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(W),e.KVO(Q),e.KVO(e.Agw),e.KVO(j))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();function Me(Et,Vt,oe){Vt=Vt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const tt=de(Et);tt[Vt]=oe??"",function Te(Et,Vt){let oe="";for(const tt in Vt)Vt[tt]&&(oe+=`${tt}:${Vt[tt]};`);Et.setAttribute("style",oe)}(Et,tt)}function de(Et){const Vt={},oe=Et.getAttribute("style");if(oe){const tt=oe.split(/;+/g);for(let $t=0;$t0){const Jt=zt.indexOf(":");if(-1===Jt)throw new Error(`Invalid CSS style: ${zt}`);Vt[zt.substr(0,Jt).trim()]=zt.substr(Jt+1).trim()}}}return Vt}function D(Et,Vt){return(Vt&&Vt.priority||0)-(Et&&Et.priority||0)}function n(Et,Vt){return(Et.priority||0)-(Vt.priority||0)}let c=(()=>{class Et{constructor(oe,tt,$t){this._zone=oe,this._platformId=tt,this._document=$t,this.source=new w.t(new z(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const oe=[];return this.registry.forEach((tt,$t)=>{tt.matches&&oe.push($t)}),oe}isActive(oe){return this.registry.get(oe)?.matches??this.registerQuery(oe).some($t=>$t.matches)}observe(oe,tt=!1){if(oe&&oe.length){const $t=this._observable$.pipe((0,I.p)(Jt=>!tt||oe.indexOf(Jt.mediaQuery)>-1)),zt=new S.c(Jt=>{const St=this.registerQuery(oe);if(St.length){const dt=St.pop();St.forEach(Ae=>{Jt.next(Ae)}),this.source.next(dt)}Jt.complete()});return(0,l.h)(zt,$t)}return this._observable$}registerQuery(oe){const tt=Array.isArray(oe)?oe:[oe],$t=[];return function h(Et,Vt){const oe=Et.filter(tt=>!m[tt]);if(oe.length>0){const tt=oe.join(", ");try{const $t=Vt.createElement("style");$t.setAttribute("type","text/css"),$t.styleSheet||$t.appendChild(Vt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${tt} {.fx-query-test{ }}\n`)),Vt.head.appendChild($t),oe.forEach(zt=>m[zt]=$t)}catch($t){console.error($t)}}}(tt,this._document),tt.forEach(zt=>{const Jt=dt=>{this._zone.run(()=>this.source.next(new z(dt.matches,zt)))};let St=this.registry.get(zt);St||(St=this.buildMQL(zt),St.addListener(Jt),this.pendingRemoveListenerFns.push(()=>St.removeListener(Jt)),this.registry.set(zt,St)),St.matches&&$t.push(new z(!0,zt))}),$t}ngOnDestroy(){let oe;for(;oe=this.pendingRemoveListenerFns.pop();)oe()}buildMQL(oe){return function k(Et,Vt){return Vt&&window.matchMedia("all").addListener?window.matchMedia(Et):function C(Et){const Vt=new EventTarget;return Vt.matches="all"===Et||""===Et,Vt.media=Et,Vt.addListener=()=>{},Vt.removeListener=()=>{},Vt.addEventListener=()=>{},Vt.dispatchEvent=()=>!1,Vt.onchange=null,Vt}(Et)}(oe,(0,t.UE)(this._platformId))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(e.SKi),e.KVO(e.Agw),e.KVO(t.qQ))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const m={},L=[{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}],_="(orientation: portrait) and (max-width: 599.98px)",r="(orientation: landscape) and (max-width: 959.98px)",v="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",V="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",N="(orientation: portrait) and (min-width: 840px)",ne="(orientation: landscape) and (min-width: 1280px)",Ee={HANDSET:`${_}, ${r}`,TABLET:`${v} , ${V}`,WEB:`${N}, ${ne} `,HANDSET_PORTRAIT:`${_}`,TABLET_PORTRAIT:`${v} `,WEB_PORTRAIT:`${N}`,HANDSET_LANDSCAPE:`${r}`,TABLET_LANDSCAPE:`${V}`,WEB_LANDSCAPE:`${ne}`},ze=[{alias:"handset",priority:2e3,mediaQuery:Ee.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:Ee.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:Ee.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:Ee.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:Ee.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:Ee.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:Ee.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:Ee.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:Ee.WEB_PORTRAIT,overlapping:!0}],qe=/(\.|-|_)/g;function Ke(Et){let Vt=Et.length>0?Et.charAt(0):"",oe=Et.length>1?Et.slice(1):"";return Vt.toUpperCase()+oe}const ce=new e.nKC("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const Et=(0,e.WQX)(J),Vt=(0,e.WQX)(j),oe=[].concat.apply([],(Et||[]).map($t=>Array.isArray($t)?$t:[$t]));return function me(Et,Vt=[]){const oe={};return Et.forEach(tt=>{oe[tt.alias]=tt}),Vt.forEach(tt=>{oe[tt.alias]?(0,f.C5)(oe[tt.alias],tt):oe[tt.alias]=tt}),function X(Et){return Et.forEach(Vt=>{Vt.suffix||(Vt.suffix=function se(Et){return Et.replace(qe,"|").split("|").map(Ke).join("")}(Vt.alias),Vt.overlapping=!!Vt.overlapping)}),Et}(Object.keys(oe).map(tt=>oe[tt]))}((Vt.disableDefaultBps?[]:L).concat(Vt.addOrientationBps?ze:[]),oe)}});let fe=(()=>{class Et{constructor(oe){this.findByMap=new Map,this.items=[...oe].sort(n)}findByAlias(oe){return oe?this.findWithPredicate(oe,tt=>tt.alias===oe):null}findByQuery(oe){return this.findWithPredicate(oe,tt=>tt.mediaQuery===oe)}get overlappings(){return this.items.filter(oe=>oe.overlapping)}get aliases(){return this.items.map(oe=>oe.alias)}get suffixes(){return this.items.map(oe=>oe?.suffix??"")}findWithPredicate(oe,tt){let $t=this.findByMap.get(oe);return $t||($t=this.items.find(tt)??null,this.findByMap.set(oe,$t)),$t??null}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(ce))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const ke="print",mt={alias:ke,mediaQuery:ke,priority:1e3};let _e=(()=>{class Et{constructor(oe,tt,$t){this.breakpoints=oe,this.layoutConfig=tt,this._document=$t,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new be,this.deactivations=[]}withPrintQuery(oe){return[...oe,ke]}isPrintEvent(oe){return oe.mediaQuery.startsWith(ke)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(oe=>this.breakpoints.findByAlias(oe)).filter(oe=>null!==oe)}getEventBreakpoints({mediaQuery:oe}){const tt=this.breakpoints.findByQuery(oe);return(tt?[...this.printBreakPoints,tt]:this.printBreakPoints).sort(D)}updateEvent(oe){let tt=this.breakpoints.findByQuery(oe.mediaQuery);return this.isPrintEvent(oe)&&(tt=this.getEventBreakpoints(oe)[0],oe.mediaQuery=tt?.mediaQuery??""),ee(oe,tt)}registerBeforeAfterPrintHooks(oe){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const tt=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(oe,this.getEventBreakpoints(new z(!0,ke))),oe.updateStyles())},$t=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(oe),oe.updateStyles())};this._document.defaultView.addEventListener("beforeprint",tt),this._document.defaultView.addEventListener("afterprint",$t),this.beforePrintEventListeners.push(tt),this.afterPrintEventListeners.push($t)}interceptEvents(oe){return tt=>{this.isPrintEvent(tt)?tt.matches&&!this.isPrinting?(this.startPrinting(oe,this.getEventBreakpoints(tt)),oe.updateStyles()):!tt.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(oe),oe.updateStyles()):this.collectActivations(oe,tt)}}blockPropagation(){return oe=>!(this.isPrinting||this.isPrintEvent(oe))}startPrinting(oe,tt){this.isPrinting=!0,this.formerActivations=oe.activatedBreakpoints,oe.activatedBreakpoints=this.queue.addPrintBreakpoints(tt)}stopPrinting(oe){oe.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(oe,tt){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!tt.matches){const $t=this.breakpoints.findByQuery(tt.mediaQuery);if($t){const zt=this.formerActivations&&this.formerActivations.includes($t),Jt=!this.formerActivations&&oe.activatedBreakpoints.includes($t);(zt||Jt)&&(this.deactivations.push($t),this.deactivations.sort(D))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(oe=>this._document.defaultView.removeEventListener("beforeprint",oe)),this.afterPrintEventListeners.forEach(oe=>this._document.defaultView.removeEventListener("afterprint",oe)))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(fe),e.KVO(j),e.KVO(t.qQ))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();class be{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Vt){return Vt.push(mt),Vt.sort(D),Vt.forEach(oe=>this.addBreakpoint(oe)),this.printBreakpoints}addBreakpoint(Vt){Vt&&void 0===this.printBreakpoints.find(tt=>tt.mediaQuery===Vt.mediaQuery)&&(this.printBreakpoints=function pe(Et){return Et?.mediaQuery.startsWith(ke)??!1}(Vt)?[Vt,...this.printBreakpoints]:[...this.printBreakpoints,Vt])}clear(){this.printBreakpoints=[]}}let Ze=(()=>{class Et{constructor(oe,tt,$t){this.matchMedia=oe,this.breakpoints=tt,this.hook=$t,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 x.B,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(oe){this._activatedBreakpoints=[...oe]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(oe){this._useFallbacks=oe}onMediaChange(oe){const tt=this.findByQuery(oe.mediaQuery);if(tt){oe=ee(oe,tt);const $t=this.activatedBreakpoints.indexOf(tt);oe.matches&&-1===$t?(this._activatedBreakpoints.push(tt),this._activatedBreakpoints.sort(D),this.updateStyles()):!oe.matches&&-1!==$t&&(this._activatedBreakpoints.splice($t,1),this._activatedBreakpoints.sort(D),this.updateStyles())}}init(oe,tt,$t,zt,Jt=[]){_t(this.updateMap,oe,tt,$t),_t(this.clearMap,oe,tt,zt),this.buildElementKeyMap(oe,tt),this.watchExtraTriggers(oe,tt,Jt)}getValue(oe,tt,$t){const zt=this.elementMap.get(oe);if(zt){const Jt=void 0!==$t?zt.get($t):this.getActivatedValues(zt,tt);if(Jt)return Jt.get(tt)}}hasValue(oe,tt){const $t=this.elementMap.get(oe);if($t){const zt=this.getActivatedValues($t,tt);if(zt)return void 0!==zt.get(tt)||!1}return!1}setValue(oe,tt,$t,zt){let Jt=this.elementMap.get(oe);if(Jt){const dt=(Jt.get(zt)??new Map).set(tt,$t);Jt.set(zt,dt),this.elementMap.set(oe,Jt)}else Jt=(new Map).set(zt,(new Map).set(tt,$t)),this.elementMap.set(oe,Jt);const St=this.getValue(oe,tt);void 0!==St&&this.updateElement(oe,tt,St)}trackValue(oe,tt){return this.subject.asObservable().pipe((0,I.p)($t=>$t.element===oe&&$t.key===tt))}updateStyles(){this.elementMap.forEach((oe,tt)=>{const $t=new Set(this.elementKeyMap.get(tt));let zt=this.getActivatedValues(oe);zt&&zt.forEach((Jt,St)=>{this.updateElement(tt,St,Jt),$t.delete(St)}),$t.forEach(Jt=>{if(zt=this.getActivatedValues(oe,Jt),zt){const St=zt.get(Jt);this.updateElement(tt,Jt,St)}else this.clearElement(tt,Jt)})})}clearElement(oe,tt){const $t=this.clearMap.get(oe);if($t){const zt=$t.get(tt);zt&&(zt(),this.subject.next({element:oe,key:tt,value:""}))}}updateElement(oe,tt,$t){const zt=this.updateMap.get(oe);if(zt){const Jt=zt.get(tt);Jt&&(Jt($t),this.subject.next({element:oe,key:tt,value:$t}))}}releaseElement(oe){const tt=this.watcherMap.get(oe);tt&&(tt.forEach(zt=>zt.unsubscribe()),this.watcherMap.delete(oe));const $t=this.elementMap.get(oe);$t&&($t.forEach((zt,Jt)=>$t.delete(Jt)),this.elementMap.delete(oe))}triggerUpdate(oe,tt){const $t=this.elementMap.get(oe);if($t){const zt=this.getActivatedValues($t,tt);zt&&(tt?this.updateElement(oe,tt,zt.get(tt)):zt.forEach((Jt,St)=>this.updateElement(oe,St,Jt)))}}buildElementKeyMap(oe,tt){let $t=this.elementKeyMap.get(oe);$t||($t=new Set,this.elementKeyMap.set(oe,$t)),$t.add(tt)}watchExtraTriggers(oe,tt,$t){if($t&&$t.length){let zt=this.watcherMap.get(oe);if(zt||(zt=new Map,this.watcherMap.set(oe,zt)),!zt.get(tt)){const St=(0,l.h)(...$t).subscribe(()=>{const dt=this.getValue(oe,tt);this.updateElement(oe,tt,dt)});zt.set(tt,St)}}}findByQuery(oe){return this.breakpoints.findByQuery(oe)}getActivatedValues(oe,tt){for(let zt=0;zttt.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(oe)).pipe((0,d.M)(this.hook.interceptEvents(this)),(0,I.p)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(c),e.KVO(fe),e.KVO(_e))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();function _t(Et,Vt,oe,tt){if(void 0!==tt){const $t=Et.get(Vt)??new Map;$t.set(oe,tt),Et.set(Vt,$t)}}let at=(()=>{class Et{constructor(oe,tt,$t,zt){this.elementRef=oe,this.styleBuilder=tt,this.styler=$t,this.marshal=zt,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new x.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(oe){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,oe,this.marshal.activatedAlias)}ngOnChanges(oe){Object.keys(oe).forEach(tt=>{if(-1!==this.inputs.indexOf(tt)){const $t=tt.split(".").slice(1).join(".");this.setValue(oe[tt].currentValue,$t)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(oe=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),oe)}addStyles(oe,tt){const $t=this.styleBuilder,zt=$t.shouldCache;let Jt=this.styleCache.get(oe);(!Jt||!zt)&&(Jt=$t.buildStyles(oe,tt),zt&&this.styleCache.set(oe,Jt)),this.mru={...Jt},this.applyStyleToElement(Jt),$t.sideEffect(oe,Jt,tt)}clearStyles(){Object.keys(this.mru).forEach(oe=>{this.mru[oe]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(oe,tt=!1){if(oe){const[$t,zt]=this.styler.getFlowDirection(oe);if(!zt&&tt){const Jt=(0,f.uG)($t);this.styler.applyStyleToElements(Jt,[oe])}return $t.trim()}return"row"}hasWrap(oe){return this.styler.hasWrap(oe)}applyStyleToElement(oe,tt,$t=this.nativeElement){this.styler.applyStyleToElement($t,oe,tt)}setValue(oe,tt){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,oe,tt)}updateWithValue(oe){this.currentValue!==oe&&(this.addStyles(oe),this.currentValue=oe)}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.rXU(e.aKT),e.rXU(ie),e.rXU(ge),e.rXU(Ze))},Et.\u0275dir=e.FsC({type:Et,features:[e.OA$]}),Et})();function Ye(Et,Vt="1",oe="1"){let tt=[Vt,oe,Et],$t=Et.indexOf("calc");if($t>0){tt[2]=rt(Et.substring($t).trim());let zt=Et.substr(0,$t).trim().split(" ");2==zt.length&&(tt[0]=zt[0],tt[1]=zt[1])}else if(0==$t)tt[2]=rt(Et.trim());else{let zt=Et.split(" ");tt=3===zt.length?zt:[Vt,oe,Et]}return tt}function rt(Et){return Et.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}EventTarget;const Yt="x";function Nt(Et,Vt){if(void 0===Vt)return Et;const oe=tt=>{const $t=+tt.slice(0,-Yt.length);return Et.endsWith(Yt)&&!isNaN($t)?`${$t*Vt.value}${Vt.unit}`:Et};return Et.includes(" ")?Et.split(" ").map(oe).join(" "):oe(Et)}},6038:(Qe,te,g)=>{"use strict";g.d(te,{Cc:()=>r,PW:()=>$,eI:()=>k});var e=g(4438),t=g(9340),w=g(177),x=(g(4085),g(6977),g(345));let R=(()=>{class v extends t.DJ{constructor(N,ne,Ee,ze,qe,Ke,se){super(N,null,ne,Ee),this.ngClassInstance=se,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new w.YU(ze,qe,N,Ke)),this.init(),this.setValue("","")}set klass(N){this.ngClassInstance.klass=N,this.setValue(N,"")}updateWithValue(N){this.ngClassInstance.ngClass=N,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return v.\u0275fac=function(N){return new(N||v)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(e._q3),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(w.YU,10))},v.\u0275dir=e.FsC({type:v,inputs:{klass:[0,"class","klass"]},features:[e.Vt3]}),v})();const z=["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 $=(()=>{class v extends R{constructor(){super(...arguments),this.inputs=z}}return v.\u0275fac=(()=>{let V;return function(ne){return(V||(V=e.xGo(v)))(ne||v)}})(),v.\u0275dir=e.FsC({type:v,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"},features:[e.Vt3]}),v})();class ae{constructor(V,N,ne=!0){this.key=V,this.value=N,this.key=ne?V.replace(/['"]/g,"").trim():V.trim(),this.value=ne?N.replace(/['"]/g,"").trim():N.trim(),this.value=this.value.replace(/;/,"")}}function Me(v){let V=typeof v;return"object"===V?v.constructor===Array?"array":v.constructor===Set?"set":"object":V}function n(v){const[V,...N]=v.split(":");return new ae(V,N.join(":"))}function c(v,V){return V.key&&(v[V.key]=V.value),v}let m=(()=>{class v extends t.DJ{constructor(N,ne,Ee,ze,qe,Ke,se,X,me){super(N,null,ne,Ee),this.sanitizer=ze,this.ngStyleInstance=se,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new w.B3(N,qe,Ke)),this.init();const ce=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(ce),this.isServer=X&&(0,w.Vy)(me)}updateWithValue(N){const ne=this.buildStyleMap(N);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...ne},this.isServer&&this.applyStyleToElement(ne),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(N){const ne=Ee=>this.sanitizer.sanitize(e.WPN.STYLE,Ee)??"";if(N)switch(Me(N)){case"string":return L(function Te(v,V=";"){return String(v).trim().split(V).map(N=>N.trim()).filter(N=>""!==N)}(N),ne);case"array":return L(N,ne);default:return function D(v,V){let N=[];return"set"===Me(v)?v.forEach(ne=>N.push(ne)):Object.keys(v).forEach(ne=>{N.push(`${ne}:${v[ne]}`)}),function de(v,V){return v.map(n).filter(ne=>!!ne).map(ne=>(V&&(ne.value=V(ne.value)),ne)).reduce(c,{})}(N,V)}(N,ne)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return v.\u0275fac=function(N){return new(N||v)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(x.up),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(w.B3,10),e.rXU(t.Ce),e.rXU(e.Agw))},v.\u0275dir=e.FsC({type:v,features:[e.Vt3]}),v})();const h=["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 k=(()=>{class v extends m{constructor(){super(...arguments),this.inputs=h}}return v.\u0275fac=(()=>{let V;return function(ne){return(V||(V=e.xGo(v)))(ne||v)}})(),v.\u0275dir=e.FsC({type:v,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"},features:[e.Vt3]}),v})();function L(v,V){return v.map(n).filter(ne=>!!ne).map(ne=>(V&&(ne.value=V(ne.value)),ne)).reduce(c,{})}let r=(()=>{class v{}return v.\u0275fac=function(N){return new(N||v)},v.\u0275mod=e.$C({type:v}),v.\u0275inj=e.G2t({imports:[t.Ui]}),v})()},2920:(Qe,te,g)=>{"use strict";g.d(te,{DJ:()=>y,UI:()=>C,sA:()=>Ye,w2:()=>Jt});var e=g(4438),t=g(8203),w=g(9340),S=g(4545),x=(g(1413),g(6977));let f=(()=>{class St extends w.r3{buildStyles(Ae,{display:we}){const he=(0,S.uG)(Ae);return{...he,display:"none"===we?we:he.display}}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const I=["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 T=(()=>{class St extends w.DJ{constructor(Ae,we,he,q,Re){super(Ae,he,we,q),this._config=Re,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(Ae){const he=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=F.get(he)??new Map,F.set(he,this.styleCache),this.currentValue!==Ae&&(this.addStyles(Ae,{display:he}),this.currentValue=Ae)}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(f),e.rXU(w.qH),e.rXU(w.EA))},St.\u0275dir=e.FsC({type:St,features:[e.Vt3]}),St})(),y=(()=>{class St extends T{constructor(){super(...arguments),this.inputs=I}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,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"},features:[e.Vt3]}),St})();const F=new Map;let n=(()=>{class St extends w.r3{constructor(Ae){super(),this.layoutConfig=Ae}buildStyles(Ae,we){let[he,q,...Re]=Ae.split(" "),Ne=Re.join(" ");const gt=we.direction.indexOf("column")>-1?"column":"row",$e=(0,S.Vc)(gt)?"max-width":"max-height",Fe=(0,S.Vc)(gt)?"min-width":"min-height",Ge=String(Ne).indexOf("calc")>-1,et=Ge||"auto"===Ne,st=String(Ne).indexOf("%")>-1&&!Ge,Tt=String(Ne).indexOf("px")>-1||String(Ne).indexOf("rem")>-1||String(Ne).indexOf("em")>-1||String(Ne).indexOf("vw")>-1||String(Ne).indexOf("vh")>-1;let mi=Ge||Tt;he="0"==he?0:he,q="0"==q?0:q;const Kt=!he&&!q;let Pt={};const Xi={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Ne||""){case"":Ne="row"===gt?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":he=0,Ne="auto";break;case"grow":Ne="100%";break;case"noshrink":q=0,Ne="auto";break;case"auto":break;case"none":he=0,q=0,Ne="auto";break;default:!mi&&!st&&!isNaN(Ne)&&(Ne+="%"),"0%"===Ne&&(mi=!0),"0px"===Ne&&(Ne="0%"),Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":mi?Ne:"100%"}:{flex:`${he} ${q} ${mi?Ne:"100%"}`})}return Pt.flex||Pt["flex-grow"]||(Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":Ne}:{flex:`${he} ${q} ${Ne}`})),"0%"!==Ne&&"0px"!==Ne&&"0.000000001px"!==Ne&&"auto"!==Ne&&(Pt[Fe]=Kt||mi&&he?Ne:null,Pt[$e]=Kt||!et&&q?Ne:null),Pt[Fe]||Pt[$e]?we.hasWrap&&(Pt[Ge?"flex-basis":"flex"]=Pt[$e]?Ge?Pt[$e]:`${he} ${q} ${Pt[$e]}`:Ge?Pt[Fe]:`${he} ${q} ${Pt[Fe]}`):Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":Ne}:{flex:`${he} ${q} ${Ne}`}),(0,S.C5)(Pt,{"box-sizing":"border-box"})}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.KVO(w.EA))},St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const c=["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 h=(()=>{class St extends w.DJ{constructor(Ae,we,he,q,Re){super(Ae,q,we,Re),this.layoutConfig=he,this.marshal=Re,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(Ae){this.flexShrink=Ae||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(Ae){this.flexGrow=Ae||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,x.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,x.Q)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(Ae){const he=Ae.value.split(" ");this.direction=he[0],this.wrap=void 0!==he[1]&&"wrap"===he[1],this.triggerUpdate()}updateWithValue(Ae){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 he=this.direction,q=he.startsWith("row"),Re=this.wrap;q&&Re?this.styleCache=_:q&&!Re?this.styleCache=k:!q&&Re?this.styleCache=r:!q&&!Re&&(this.styleCache=L);const Ne=String(Ae).replace(";",""),gt=(0,w.hN)(Ne,this.flexGrow,this.flexShrink);this.addStyles(gt.join(" "),{direction:he,hasWrap:Re})}triggerReflow(){const Ae=this.activatedValue;if(void 0!==Ae){const we=(0,w.hN)(Ae+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,we.join(" "))}}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(w.EA),e.rXU(n),e.rXU(w.qH))},St.\u0275dir=e.FsC({type:St,inputs:{shrink:[0,"fxShrink","shrink"],grow:[0,"fxGrow","grow"]},features:[e.Vt3]}),St})(),C=(()=>{class St extends h{constructor(){super(...arguments),this.inputs=c}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,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"},features:[e.Vt3]}),St})();const k=new Map,L=new Map,_=new Map,r=new Map;let Ie=(()=>{class St extends w.r3{buildStyles(Ae,we){const he={},[q,Re]=Ae.split(" ");switch(q){case"center":he["justify-content"]="center";break;case"space-around":he["justify-content"]="space-around";break;case"space-between":he["justify-content"]="space-between";break;case"space-evenly":he["justify-content"]="space-evenly";break;case"end":case"flex-end":he["justify-content"]="flex-end";break;default:he["justify-content"]="flex-start"}switch(Re){case"start":case"flex-start":he["align-items"]=he["align-content"]="flex-start";break;case"center":he["align-items"]=he["align-content"]="center";break;case"end":case"flex-end":he["align-items"]=he["align-content"]="flex-end";break;case"space-between":he["align-content"]="space-between",he["align-items"]="stretch";break;case"space-around":he["align-content"]="space-around",he["align-items"]="stretch";break;case"baseline":he["align-content"]="stretch",he["align-items"]="baseline";break;default:he["align-items"]=he["align-content"]="stretch"}return(0,S.C5)(he,{display:we.inline?"inline-flex":"flex","flex-direction":we.layout,"box-sizing":"border-box","max-width":"stretch"===Re?(0,S.Vc)(we.layout)?null:"100%":null,"max-height":"stretch"===Re&&(0,S.Vc)(we.layout)?"100%":null})}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const He=["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 yt=(()=>{class St extends w.DJ{constructor(Ae,we,he,q){super(Ae,he,we,q),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,x.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(Ae){const we=this.layout||"row",he=this.inline;"row"===we&&he?this.styleCache=Vt:"row"!==we||he?"row-reverse"===we&&he?this.styleCache=tt:"row-reverse"!==we||he?"column"===we&&he?this.styleCache=oe:"column"!==we||he?"column-reverse"===we&&he?this.styleCache=$t:"column-reverse"===we&&!he&&(this.styleCache=Et):this.styleCache=Yt:this.styleCache=Nt:this.styleCache=rt,this.addStyles(Ae,{layout:we,inline:he})}onLayoutChange(Ae){const we=Ae.value.split(" ");this.layout=we[0],this.inline=Ae.value.includes("inline"),S.Uo.find(he=>he===this.layout)||(this.layout="row"),this.triggerUpdate()}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(Ie),e.rXU(w.qH))},St.\u0275dir=e.FsC({type:St,features:[e.Vt3]}),St})(),Ye=(()=>{class St extends yt{constructor(){super(...arguments),this.inputs=He}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,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"},features:[e.Vt3]}),St})();const rt=new Map,Yt=new Map,Nt=new Map,Et=new Map,Vt=new Map,oe=new Map,tt=new Map,$t=new Map;let Jt=(()=>{class St{}return St.\u0275fac=function(Ae){return new(Ae||St)},St.\u0275mod=e.$C({type:St}),St.\u0275inj=e.G2t({imports:[w.Ui,t.jI]}),St})()},9417:(Qe,te,g)=>{"use strict";g.d(te,{BC:()=>pe,JD:()=>wo,Q0:()=>Sr,VZ:()=>uo,X1:()=>Ri,YN:()=>oa,YS:()=>Lr,cV:()=>Yn,cb:()=>Ze,cz:()=>Q,hs:()=>_i,j4:()=>Sa,k0:()=>ie,kq:()=>d,l_:()=>ho,me:()=>W,ok:()=>Mo,qT:()=>or,vO:()=>ke,vS:()=>nr,xq:()=>_a,zX:()=>Bo,ze:()=>oo});var e=g(4438),t=g(177),w=g(2806),S=g(7468),l=g(1413),x=g(6354);let f=(()=>{class lt{constructor(Ue,At){this._renderer=Ue,this._elementRef=At,this.onChange=ni=>{},this.onTouched=()=>{}}setProperty(Ue,At){this._renderer.setProperty(this._elementRef.nativeElement,Ue,At)}registerOnTouched(Ue){this.onTouched=Ue}registerOnChange(Ue){this.onChange=Ue}setDisabledState(Ue){this.setProperty("disabled",Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(e.sFG),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:lt})}return lt})(),I=(()=>{class lt extends f{static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,features:[e.Vt3]})}return lt})();const d=new e.nKC(""),F={provide:d,useExisting:(0,e.Rfq)(()=>W),multi:!0},z=new e.nKC("");let W=(()=>{class lt extends f{constructor(Ue,At,ni){super(Ue,At),this._compositionMode=ni,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function R(){const lt=(0,t.QT)()?(0,t.QT)().getUserAgent():"";return/android (\d+)/.test(lt.toLowerCase())}())}writeValue(Ue){this.setProperty("value",Ue??"")}_handleInput(Ue){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(Ue)}_compositionStart(){this._composing=!0}_compositionEnd(Ue){this._composing=!1,this._compositionMode&&this.onChange(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(e.sFG),e.rXU(e.aKT),e.rXU(z,8))};static#t=this.\u0275dir=e.FsC({type:lt,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,ni){1&At&&e.bIt("input",function(Zn){return ni._handleInput(Zn.target.value)})("blur",function(){return ni.onTouched()})("compositionstart",function(){return ni._compositionStart()})("compositionend",function(Zn){return ni._compositionEnd(Zn.target.value)})},features:[e.Jv_([F]),e.Vt3]})}return lt})();function $(lt){return null==lt||("string"==typeof lt||Array.isArray(lt))&&0===lt.length}function j(lt){return null!=lt&&"number"==typeof lt.length}const Q=new e.nKC(""),J=new e.nKC(""),ee=/^(?=.{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 ie{static min(ht){return ge(ht)}static max(ht){return ae(ht)}static required(ht){return Me(ht)}static requiredTrue(ht){return Te(ht)}static email(ht){return function de(lt){return $(lt.value)||ee.test(lt.value)?null:{email:!0}}(ht)}static minLength(ht){return function D(lt){return ht=>$(ht.value)||!j(ht.value)?null:ht.value.lengthj(ht.value)&&ht.value.length>lt?{maxlength:{requiredLength:lt,actualLength:ht.value.length}}:null}(ht)}static pattern(ht){return function c(lt){if(!lt)return m;let ht,Ue;return"string"==typeof lt?(Ue="","^"!==lt.charAt(0)&&(Ue+="^"),Ue+=lt,"$"!==lt.charAt(lt.length-1)&&(Ue+="$"),ht=new RegExp(Ue)):(Ue=lt.toString(),ht=lt),At=>{if($(At.value))return null;const ni=At.value;return ht.test(ni)?null:{pattern:{requiredPattern:Ue,actualValue:ni}}}}(ht)}static nullValidator(ht){return null}static compose(ht){return v(ht)}static composeAsync(ht){return N(ht)}}function ge(lt){return ht=>{if($(ht.value)||$(lt))return null;const Ue=parseFloat(ht.value);return!isNaN(Ue)&&Ue{if($(ht.value)||$(lt))return null;const Ue=parseFloat(ht.value);return!isNaN(Ue)&&Ue>lt?{max:{max:lt,actual:ht.value}}:null}}function Me(lt){return $(lt.value)?{required:!0}:null}function Te(lt){return!0===lt.value?null:{required:!0}}function m(lt){return null}function h(lt){return null!=lt}function C(lt){return(0,e.jNT)(lt)?(0,w.H)(lt):lt}function k(lt){let ht={};return lt.forEach(Ue=>{ht=null!=Ue?{...ht,...Ue}:ht}),0===Object.keys(ht).length?null:ht}function L(lt,ht){return ht.map(Ue=>Ue(lt))}function r(lt){return lt.map(ht=>function _(lt){return!lt.validate}(ht)?ht:Ue=>ht.validate(Ue))}function v(lt){if(!lt)return null;const ht=lt.filter(h);return 0==ht.length?null:function(Ue){return k(L(Ue,ht))}}function V(lt){return null!=lt?v(r(lt)):null}function N(lt){if(!lt)return null;const ht=lt.filter(h);return 0==ht.length?null:function(Ue){const At=L(Ue,ht).map(C);return(0,S.p)(At).pipe((0,x.T)(k))}}function ne(lt){return null!=lt?N(r(lt)):null}function Ee(lt,ht){return null===lt?[ht]:Array.isArray(lt)?[...lt,ht]:[lt,ht]}function ze(lt){return lt._rawValidators}function qe(lt){return lt._rawAsyncValidators}function Ke(lt){return lt?Array.isArray(lt)?lt:[lt]:[]}function se(lt,ht){return Array.isArray(lt)?lt.includes(ht):lt===ht}function X(lt,ht){const Ue=Ke(ht);return Ke(lt).forEach(ni=>{se(Ue,ni)||Ue.push(ni)}),Ue}function me(lt,ht){return Ke(ht).filter(Ue=>!se(lt,Ue))}class ce{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}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}_setValidators(ht){this._rawValidators=ht||[],this._composedValidatorFn=V(this._rawValidators)}_setAsyncValidators(ht){this._rawAsyncValidators=ht||[],this._composedAsyncValidatorFn=ne(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(ht){this._onDestroyCallbacks.push(ht)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(ht=>ht()),this._onDestroyCallbacks=[]}reset(ht=void 0){this.control&&this.control.reset(ht)}hasError(ht,Ue){return!!this.control&&this.control.hasError(ht,Ue)}getError(ht,Ue){return this.control?this.control.getError(ht,Ue):null}}class fe extends ce{get formDirective(){return null}get path(){return null}}class ke extends ce{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class mt{constructor(ht){this._cd=ht}get isTouched(){return!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return!!this._cd?.submitted}}let pe=(()=>{class lt extends mt{constructor(Ue){super(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(ke,2))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(At,ni){2&At&&e.AVh("ng-untouched",ni.isUntouched)("ng-touched",ni.isTouched)("ng-pristine",ni.isPristine)("ng-dirty",ni.isDirty)("ng-valid",ni.isValid)("ng-invalid",ni.isInvalid)("ng-pending",ni.isPending)},features:[e.Vt3]})}return lt})(),Ze=(()=>{class lt extends mt{constructor(Ue){super(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,10))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(At,ni){2&At&&e.AVh("ng-untouched",ni.isUntouched)("ng-touched",ni.isTouched)("ng-pristine",ni.isPristine)("ng-dirty",ni.isDirty)("ng-valid",ni.isValid)("ng-invalid",ni.isInvalid)("ng-pending",ni.isPending)("ng-submitted",ni.isSubmitted)},features:[e.Vt3]})}return lt})();const $t="VALID",zt="INVALID",Jt="PENDING",St="DISABLED";class dt{}class Ae extends dt{constructor(ht,Ue){super(),this.value=ht,this.source=Ue}}class we extends dt{constructor(ht,Ue){super(),this.pristine=ht,this.source=Ue}}class he extends dt{constructor(ht,Ue){super(),this.touched=ht,this.source=Ue}}class q extends dt{constructor(ht,Ue){super(),this.status=ht,this.source=Ue}}class Re extends dt{constructor(ht){super(),this.source=ht}}class Ne extends dt{constructor(ht){super(),this.source=ht}}function gt(lt){return(et(lt)?lt.validators:lt)||null}function Fe(lt,ht){return(et(ht)?ht.asyncValidators:lt)||null}function et(lt){return null!=lt&&!Array.isArray(lt)&&"object"==typeof lt}function st(lt,ht,Ue){const At=lt.controls;if(!(ht?Object.keys(At):At).length)throw new e.wOt(1e3,"");if(!At[Ue])throw new e.wOt(1001,"")}function Tt(lt,ht,Ue){lt._forEachChild((At,ni)=>{if(void 0===Ue[ni])throw new e.wOt(1002,"")})}class mi{constructor(ht,Ue){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=null,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._events=new l.B,this.events=this._events.asObservable(),this._onDisabledChange=[],this._assignValidators(ht),this._assignAsyncValidators(Ue)}get validator(){return this._composedValidatorFn}set validator(ht){this._rawValidators=this._composedValidatorFn=ht}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(ht){this._rawAsyncValidators=this._composedAsyncValidatorFn=ht}get parent(){return this._parent}get valid(){return this.status===$t}get invalid(){return this.status===zt}get pending(){return this.status==Jt}get disabled(){return this.status===St}get enabled(){return this.status!==St}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(ht){this._assignValidators(ht)}setAsyncValidators(ht){this._assignAsyncValidators(ht)}addValidators(ht){this.setValidators(X(ht,this._rawValidators))}addAsyncValidators(ht){this.setAsyncValidators(X(ht,this._rawAsyncValidators))}removeValidators(ht){this.setValidators(me(ht,this._rawValidators))}removeAsyncValidators(ht){this.setAsyncValidators(me(ht,this._rawAsyncValidators))}hasValidator(ht){return se(this._rawValidators,ht)}hasAsyncValidator(ht){return se(this._rawAsyncValidators,ht)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(ht={}){const Ue=!1===this.touched;this.touched=!0;const At=ht.sourceControl??this;this._parent&&!ht.onlySelf&&this._parent.markAsTouched({...ht,sourceControl:At}),Ue&&!1!==ht.emitEvent&&this._events.next(new he(!0,At))}markAllAsTouched(ht={}){this.markAsTouched({onlySelf:!0,emitEvent:ht.emitEvent,sourceControl:this}),this._forEachChild(Ue=>Ue.markAllAsTouched(ht))}markAsUntouched(ht={}){const Ue=!0===this.touched;this.touched=!1,this._pendingTouched=!1;const At=ht.sourceControl??this;this._forEachChild(ni=>{ni.markAsUntouched({onlySelf:!0,emitEvent:ht.emitEvent,sourceControl:At})}),this._parent&&!ht.onlySelf&&this._parent._updateTouched(ht,At),Ue&&!1!==ht.emitEvent&&this._events.next(new he(!1,At))}markAsDirty(ht={}){const Ue=!0===this.pristine;this.pristine=!1;const At=ht.sourceControl??this;this._parent&&!ht.onlySelf&&this._parent.markAsDirty({...ht,sourceControl:At}),Ue&&!1!==ht.emitEvent&&this._events.next(new we(!1,At))}markAsPristine(ht={}){const Ue=!1===this.pristine;this.pristine=!0,this._pendingDirty=!1;const At=ht.sourceControl??this;this._forEachChild(ni=>{ni.markAsPristine({onlySelf:!0,emitEvent:ht.emitEvent})}),this._parent&&!ht.onlySelf&&this._parent._updatePristine(ht,At),Ue&&!1!==ht.emitEvent&&this._events.next(new we(!0,At))}markAsPending(ht={}){this.status=Jt;const Ue=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new q(this.status,Ue)),this.statusChanges.emit(this.status)),this._parent&&!ht.onlySelf&&this._parent.markAsPending({...ht,sourceControl:Ue})}disable(ht={}){const Ue=this._parentMarkedDirty(ht.onlySelf);this.status=St,this.errors=null,this._forEachChild(ni=>{ni.disable({...ht,onlySelf:!0})}),this._updateValue();const At=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new Ae(this.value,At)),this._events.next(new q(this.status,At)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...ht,skipPristineCheck:Ue},this),this._onDisabledChange.forEach(ni=>ni(!0))}enable(ht={}){const Ue=this._parentMarkedDirty(ht.onlySelf);this.status=$t,this._forEachChild(At=>{At.enable({...ht,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:ht.emitEvent}),this._updateAncestors({...ht,skipPristineCheck:Ue},this),this._onDisabledChange.forEach(At=>At(!1))}_updateAncestors(ht,Ue){this._parent&&!ht.onlySelf&&(this._parent.updateValueAndValidity(ht),ht.skipPristineCheck||this._parent._updatePristine({},Ue),this._parent._updateTouched({},Ue))}setParent(ht){this._parent=ht}getRawValue(){return this.value}updateValueAndValidity(ht={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){const At=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===$t||this.status===Jt)&&this._runAsyncValidator(At,ht.emitEvent)}const Ue=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new Ae(this.value,Ue)),this._events.next(new q(this.status,Ue)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!ht.onlySelf&&this._parent.updateValueAndValidity({...ht,sourceControl:Ue})}_updateTreeValidity(ht={emitEvent:!0}){this._forEachChild(Ue=>Ue._updateTreeValidity(ht)),this.updateValueAndValidity({onlySelf:!0,emitEvent:ht.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?St:$t}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(ht,Ue){if(this.asyncValidator){this.status=Jt,this._hasOwnPendingAsyncValidator={emitEvent:!1!==Ue};const At=C(this.asyncValidator(this));this._asyncValidationSubscription=At.subscribe(ni=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(ni,{emitEvent:Ue,shouldHaveEmitted:ht})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();const ht=this._hasOwnPendingAsyncValidator?.emitEvent??!1;return this._hasOwnPendingAsyncValidator=null,ht}return!1}setErrors(ht,Ue={}){this.errors=ht,this._updateControlsErrors(!1!==Ue.emitEvent,this,Ue.shouldHaveEmitted)}get(ht){let Ue=ht;return null==Ue||(Array.isArray(Ue)||(Ue=Ue.split(".")),0===Ue.length)?null:Ue.reduce((At,ni)=>At&&At._find(ni),this)}getError(ht,Ue){const At=Ue?this.get(Ue):this;return At&&At.errors?At.errors[ht]:null}hasError(ht,Ue){return!!this.getError(ht,Ue)}get root(){let ht=this;for(;ht._parent;)ht=ht._parent;return ht}_updateControlsErrors(ht,Ue,At){this.status=this._calculateStatus(),ht&&this.statusChanges.emit(this.status),(ht||At)&&this._events.next(new q(this.status,Ue)),this._parent&&this._parent._updateControlsErrors(ht,Ue,At)}_initObservables(){this.valueChanges=new e.bkB,this.statusChanges=new e.bkB}_calculateStatus(){return this._allControlsDisabled()?St:this.errors?zt:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Jt)?Jt:this._anyControlsHaveStatus(zt)?zt:$t}_anyControlsHaveStatus(ht){return this._anyControls(Ue=>Ue.status===ht)}_anyControlsDirty(){return this._anyControls(ht=>ht.dirty)}_anyControlsTouched(){return this._anyControls(ht=>ht.touched)}_updatePristine(ht,Ue){const At=!this._anyControlsDirty(),ni=this.pristine!==At;this.pristine=At,this._parent&&!ht.onlySelf&&this._parent._updatePristine(ht,Ue),ni&&this._events.next(new we(this.pristine,Ue))}_updateTouched(ht={},Ue){this.touched=this._anyControlsTouched(),this._events.next(new he(this.touched,Ue)),this._parent&&!ht.onlySelf&&this._parent._updateTouched(ht,Ue)}_registerOnCollectionChange(ht){this._onCollectionChange=ht}_setUpdateStrategy(ht){et(ht)&&null!=ht.updateOn&&(this._updateOn=ht.updateOn)}_parentMarkedDirty(ht){return!ht&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(ht){return null}_assignValidators(ht){this._rawValidators=Array.isArray(ht)?ht.slice():ht,this._composedValidatorFn=function $e(lt){return Array.isArray(lt)?V(lt):lt||null}(this._rawValidators)}_assignAsyncValidators(ht){this._rawAsyncValidators=Array.isArray(ht)?ht.slice():ht,this._composedAsyncValidatorFn=function Ge(lt){return Array.isArray(lt)?ne(lt):lt||null}(this._rawAsyncValidators)}}class Kt extends mi{constructor(ht,Ue,At){super(gt(Ue),Fe(At,Ue)),this.controls=ht,this._initObservables(),this._setUpdateStrategy(Ue),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(ht,Ue){return this.controls[ht]?this.controls[ht]:(this.controls[ht]=Ue,Ue.setParent(this),Ue._registerOnCollectionChange(this._onCollectionChange),Ue)}addControl(ht,Ue,At={}){this.registerControl(ht,Ue),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}removeControl(ht,Ue={}){this.controls[ht]&&this.controls[ht]._registerOnCollectionChange(()=>{}),delete this.controls[ht],this.updateValueAndValidity({emitEvent:Ue.emitEvent}),this._onCollectionChange()}setControl(ht,Ue,At={}){this.controls[ht]&&this.controls[ht]._registerOnCollectionChange(()=>{}),delete this.controls[ht],Ue&&this.registerControl(ht,Ue),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}contains(ht){return this.controls.hasOwnProperty(ht)&&this.controls[ht].enabled}setValue(ht,Ue={}){Tt(this,0,ht),Object.keys(ht).forEach(At=>{st(this,!0,At),this.controls[At].setValue(ht[At],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){null!=ht&&(Object.keys(ht).forEach(At=>{const ni=this.controls[At];ni&&ni.patchValue(ht[At],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue))}reset(ht={},Ue={}){this._forEachChild((At,ni)=>{At.reset(ht?ht[ni]:null,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this._updatePristine(Ue,this),this._updateTouched(Ue,this),this.updateValueAndValidity(Ue)}getRawValue(){return this._reduceChildren({},(ht,Ue,At)=>(ht[At]=Ue.getRawValue(),ht))}_syncPendingControls(){let ht=this._reduceChildren(!1,(Ue,At)=>!!At._syncPendingControls()||Ue);return ht&&this.updateValueAndValidity({onlySelf:!0}),ht}_forEachChild(ht){Object.keys(this.controls).forEach(Ue=>{const At=this.controls[Ue];At&&ht(At,Ue)})}_setUpControls(){this._forEachChild(ht=>{ht.setParent(this),ht._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(ht){for(const[Ue,At]of Object.entries(this.controls))if(this.contains(Ue)&&ht(At))return!0;return!1}_reduceValue(){return this._reduceChildren({},(Ue,At,ni)=>((At.enabled||this.disabled)&&(Ue[ni]=At.value),Ue))}_reduceChildren(ht,Ue){let At=ht;return this._forEachChild((ni,pn)=>{At=Ue(At,ni,pn)}),At}_allControlsDisabled(){for(const ht of Object.keys(this.controls))if(this.controls[ht].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(ht){return this.controls.hasOwnProperty(ht)?this.controls[ht]:null}}class fi extends Kt{}const Qi=new e.nKC("CallSetDisabledState",{providedIn:"root",factory:()=>Li}),Li="always";function Zi(lt,ht){return[...ht.path,lt]}function Qt(lt,ht,Ue=Li){wt(lt,ht),ht.valueAccessor.writeValue(lt.value),(lt.disabled||"always"===Ue)&&ht.valueAccessor.setDisabledState?.(lt.disabled),function xi(lt,ht){ht.valueAccessor.registerOnChange(Ue=>{lt._pendingValue=Ue,lt._pendingChange=!0,lt._pendingDirty=!0,"change"===lt.updateOn&&zi(lt,ht)})}(lt,ht),function en(lt,ht){const Ue=(At,ni)=>{ht.valueAccessor.writeValue(At),ni&&ht.viewToModelUpdate(At)};lt.registerOnChange(Ue),ht._registerOnDestroy(()=>{lt._unregisterOnChange(Ue)})}(lt,ht),function Si(lt,ht){ht.valueAccessor.registerOnTouched(()=>{lt._pendingTouched=!0,"blur"===lt.updateOn&<._pendingChange&&zi(lt,ht),"submit"!==lt.updateOn&<.markAsTouched()})}(lt,ht),function ct(lt,ht){if(ht.valueAccessor.setDisabledState){const Ue=At=>{ht.valueAccessor.setDisabledState(At)};lt.registerOnDisabledChange(Ue),ht._registerOnDestroy(()=>{lt._unregisterOnDisabledChange(Ue)})}}(lt,ht)}function Mt(lt,ht,Ue=!0){const At=()=>{};ht.valueAccessor&&(ht.valueAccessor.registerOnChange(At),ht.valueAccessor.registerOnTouched(At)),Ut(lt,ht),lt&&(ht._invokeOnDestroyCallbacks(),lt._registerOnCollectionChange(()=>{}))}function it(lt,ht){lt.forEach(Ue=>{Ue.registerOnValidatorChange&&Ue.registerOnValidatorChange(ht)})}function wt(lt,ht){const Ue=ze(lt);null!==ht.validator?lt.setValidators(Ee(Ue,ht.validator)):"function"==typeof Ue&<.setValidators([Ue]);const At=qe(lt);null!==ht.asyncValidator?lt.setAsyncValidators(Ee(At,ht.asyncValidator)):"function"==typeof At&<.setAsyncValidators([At]);const ni=()=>lt.updateValueAndValidity();it(ht._rawValidators,ni),it(ht._rawAsyncValidators,ni)}function Ut(lt,ht){let Ue=!1;if(null!==lt){if(null!==ht.validator){const ni=ze(lt);if(Array.isArray(ni)&&ni.length>0){const pn=ni.filter(Zn=>Zn!==ht.validator);pn.length!==ni.length&&(Ue=!0,lt.setValidators(pn))}}if(null!==ht.asyncValidator){const ni=qe(lt);if(Array.isArray(ni)&&ni.length>0){const pn=ni.filter(Zn=>Zn!==ht.asyncValidator);pn.length!==ni.length&&(Ue=!0,lt.setAsyncValidators(pn))}}}const At=()=>{};return it(ht._rawValidators,At),it(ht._rawAsyncValidators,At),Ue}function zi(lt,ht){lt._pendingDirty&<.markAsDirty(),lt.setValue(lt._pendingValue,{emitModelToViewChange:!1}),ht.viewToModelUpdate(lt._pendingValue),lt._pendingChange=!1}function Ni(lt,ht){wt(lt,ht)}function ot(lt,ht){if(!lt.hasOwnProperty("model"))return!1;const Ue=lt.model;return!!Ue.isFirstChange()||!Object.is(ht,Ue.currentValue)}function ii(lt,ht){lt._syncPendingControls(),ht.forEach(Ue=>{const At=Ue.control;"submit"===At.updateOn&&At._pendingChange&&(Ue.viewToModelUpdate(At._pendingValue),At._pendingChange=!1)})}function si(lt,ht){if(!ht)return null;let Ue,At,ni;return Array.isArray(ht),ht.forEach(pn=>{pn.constructor===W?Ue=pn:function ut(lt){return Object.getPrototypeOf(lt.constructor)===I}(pn)?At=pn:ni=pn}),ni||At||Ue||null}const Fn={provide:fe,useExisting:(0,e.Rfq)(()=>Yn)},$n=Promise.resolve();let Yn=(()=>{class lt extends fe{constructor(Ue,At,ni){super(),this.callSetDisabledState=ni,this.submitted=!1,this._directives=new Set,this.ngSubmit=new e.bkB,this.form=new Kt({},V(Ue),ne(At))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);Ue.control=At.registerControl(Ue.name,Ue.control),Qt(Ue.control,Ue,this.callSetDisabledState),Ue.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(Ue)})}getControl(Ue){return this.form.get(Ue.path)}removeControl(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);At&&At.removeControl(Ue.name),this._directives.delete(Ue)})}addFormGroup(Ue){$n.then(()=>{const At=this._findContainer(Ue.path),ni=new Kt({});Ni(ni,Ue),At.registerControl(Ue.name,ni),ni.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);At&&At.removeControl(Ue.name)})}getFormGroup(Ue){return this.form.get(Ue.path)}updateModel(Ue,At){$n.then(()=>{this.form.get(Ue.path).setValue(At)})}setValue(Ue){this.control.setValue(Ue)}onSubmit(Ue){return this.submitted=!0,ii(this.form,this._directives),this.ngSubmit.emit(Ue),"dialog"===Ue?.target?.method}onReset(){this.resetForm()}resetForm(Ue=void 0){this.form.reset(Ue),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(Ue){return Ue.pop(),Ue.length?this.form.get(Ue):this.form}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(At,ni){1&At&&e.bIt("submit",function(Zn){return ni.onSubmit(Zn)})("reset",function(){return ni.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([Fn]),e.Vt3]})}return lt})();function Qn(lt,ht){const Ue=lt.indexOf(ht);Ue>-1&<.splice(Ue,1)}function rr(lt){return"object"==typeof lt&&null!==lt&&2===Object.keys(lt).length&&"value"in lt&&"disabled"in lt}const Rn=class extends mi{constructor(ht=null,Ue,At){super(gt(Ue),Fe(At,Ue)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(ht),this._setUpdateStrategy(Ue),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),et(Ue)&&(Ue.nonNullable||Ue.initialValueIsDefault)&&(this.defaultValue=rr(ht)?ht.value:ht)}setValue(ht,Ue={}){this.value=this._pendingValue=ht,this._onChange.length&&!1!==Ue.emitModelToViewChange&&this._onChange.forEach(At=>At(this.value,!1!==Ue.emitViewToModelChange)),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){this.setValue(ht,Ue)}reset(ht=this.defaultValue,Ue={}){this._applyFormState(ht),this.markAsPristine(Ue),this.markAsUntouched(Ue),this.setValue(this.value,Ue),this._pendingChange=!1}_updateValue(){}_anyControls(ht){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(ht){this._onChange.push(ht)}_unregisterOnChange(ht){Qn(this._onChange,ht)}registerOnDisabledChange(ht){this._onDisabledChange.push(ht)}_unregisterOnDisabledChange(ht){Qn(this._onDisabledChange,ht)}_forEachChild(ht){}_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(ht){rr(ht)?(this.value=this._pendingValue=ht.value,ht.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=ht}},_i=Rn,ar={provide:ke,useExisting:(0,e.Rfq)(()=>nr)},sr=Promise.resolve();let nr=(()=>{class lt extends ke{constructor(Ue,At,ni,pn,Zn,Fo){super(),this._changeDetectorRef=Zn,this.callSetDisabledState=Fo,this.control=new Rn,this._registered=!1,this.name="",this.update=new e.bkB,this._parent=Ue,this._setValidators(At),this._setAsyncValidators(ni),this.valueAccessor=si(0,pn)}ngOnChanges(Ue){if(this._checkForErrors(),!this._registered||"name"in Ue){if(this._registered&&(this._checkName(),this.formDirective)){const At=Ue.name.previousValue;this.formDirective.removeControl({name:At,path:this._getPath(At)})}this._setUpControl()}"isDisabled"in Ue&&this._updateDisabled(Ue),ot(Ue,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(Ue){this.viewModel=Ue,this.update.emit(Ue)}_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(){Qt(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(Ue){sr.then(()=>{this.control.setValue(Ue,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(Ue){const At=Ue.isDisabled.currentValue,ni=0!==At&&(0,e.L39)(At);sr.then(()=>{ni&&!this.control.disabled?this.control.disable():!ni&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(Ue){return this._parent?Zi(Ue,this._parent):[Ue]}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,9),e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(e.gRc,8),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,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"],features:[e.Jv_([ar]),e.Vt3,e.OA$]})}return lt})(),or=(()=>{class lt{static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]})}return lt})();const Xr={provide:d,useExisting:(0,e.Rfq)(()=>Sr),multi:!0};let Sr=(()=>{class lt extends I{writeValue(Ue){this.setProperty("value",Ue??"")}registerOnChange(Ue){this.onChange=At=>{Ue(""==At?null:parseFloat(At))}}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(At,ni){1&At&&e.bIt("input",function(Zn){return ni.onChange(Zn.target.value)})("blur",function(){return ni.onTouched()})},features:[e.Jv_([Xr]),e.Vt3]})}return lt})();const Ea=new e.nKC(""),no={provide:ke,useExisting:(0,e.Rfq)(()=>ho)};let ho=(()=>{class lt extends ke{set isDisabled(Ue){}static#e=this._ngModelWarningSentOnce=!1;constructor(Ue,At,ni,pn,Zn){super(),this._ngModelWarningConfig=pn,this.callSetDisabledState=Zn,this.update=new e.bkB,this._ngModelWarningSent=!1,this._setValidators(Ue),this._setAsyncValidators(At),this.valueAccessor=si(0,ni)}ngOnChanges(Ue){if(this._isControlChanged(Ue)){const At=Ue.form.previousValue;At&&Mt(At,this,!1),Qt(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}ot(Ue,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&Mt(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(Ue){this.viewModel=Ue,this.update.emit(Ue)}_isControlChanged(Ue){return Ue.hasOwnProperty("form")}static#t=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(Ea,8),e.rXU(Qi,8))};static#i=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[e.Jv_([no]),e.Vt3,e.OA$]})}return lt})();const xr={provide:fe,useExisting:(0,e.Rfq)(()=>Sa)};let Sa=(()=>{class lt extends fe{constructor(Ue,At,ni){super(),this.callSetDisabledState=ni,this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new e.bkB,this._setValidators(Ue),this._setAsyncValidators(At)}ngOnChanges(Ue){this._checkFormPresent(),Ue.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(Ut(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(Ue){const At=this.form.get(Ue.path);return Qt(At,Ue,this.callSetDisabledState),At.updateValueAndValidity({emitEvent:!1}),this.directives.push(Ue),At}getControl(Ue){return this.form.get(Ue.path)}removeControl(Ue){Mt(Ue.control||null,Ue,!1),function Pi(lt,ht){const Ue=lt.indexOf(ht);Ue>-1&<.splice(Ue,1)}(this.directives,Ue)}addFormGroup(Ue){this._setUpFormContainer(Ue)}removeFormGroup(Ue){this._cleanUpFormContainer(Ue)}getFormGroup(Ue){return this.form.get(Ue.path)}addFormArray(Ue){this._setUpFormContainer(Ue)}removeFormArray(Ue){this._cleanUpFormContainer(Ue)}getFormArray(Ue){return this.form.get(Ue.path)}updateModel(Ue,At){this.form.get(Ue.path).setValue(At)}onSubmit(Ue){return this.submitted=!0,ii(this.form,this.directives),this.ngSubmit.emit(Ue),this.form._events.next(new Re(this.control)),"dialog"===Ue?.target?.method}onReset(){this.resetForm()}resetForm(Ue=void 0){this.form.reset(Ue),this.submitted=!1,this.form._events.next(new Ne(this.form))}_updateDomValue(){this.directives.forEach(Ue=>{const At=Ue.control,ni=this.form.get(Ue.path);At!==ni&&(Mt(At||null,Ue),(lt=>lt instanceof Rn)(ni)&&(Qt(ni,Ue,this.callSetDisabledState),Ue.control=ni))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(Ue){const At=this.form.get(Ue.path);Ni(At,Ue),At.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(Ue){if(this.form){const At=this.form.get(Ue.path);At&&function fn(lt,ht){return Ut(lt,ht)}(At,Ue)&&At.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){wt(this.form,this),this._oldForm&&Ut(this._oldForm,this)}_checkFormPresent(){}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formGroup",""]],hostBindings:function(At,ni){1&At&&e.bIt("submit",function(Zn){return ni.onSubmit(Zn)})("reset",function(){return ni.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([xr]),e.Vt3,e.OA$]})}return lt})();const Co={provide:ke,useExisting:(0,e.Rfq)(()=>wo)};let wo=(()=>{class lt extends ke{set isDisabled(Ue){}static#e=this._ngModelWarningSentOnce=!1;constructor(Ue,At,ni,pn,Zn){super(),this._ngModelWarningConfig=Zn,this._added=!1,this.name=null,this.update=new e.bkB,this._ngModelWarningSent=!1,this._parent=Ue,this._setValidators(At),this._setAsyncValidators(ni),this.valueAccessor=si(0,pn)}ngOnChanges(Ue){this._added||this._setUpControl(),ot(Ue,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(Ue){this.viewModel=Ue,this.update.emit(Ue)}get path(){return Zi(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this._added=!0}static#t=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,13),e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(Ea,8))};static#i=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},features:[e.Jv_([Co]),e.Vt3,e.OA$]})}return lt})();function Ga(lt){return"number"==typeof lt?lt:parseFloat(lt)}let Na=(()=>{class lt{constructor(){this._validator=m}ngOnChanges(Ue){if(this.inputName in Ue){const At=this.normalizeInput(Ue[this.inputName].currentValue);this._enabled=this.enabled(At),this._validator=this._enabled?this.createValidator(At):m,this._onChange&&this._onChange()}}validate(Ue){return this._validator(Ue)}registerOnValidatorChange(Ue){this._onChange=Ue}enabled(Ue){return null!=Ue}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275dir=e.FsC({type:lt,features:[e.OA$]})}return lt})();const ja={provide:Q,useExisting:(0,e.Rfq)(()=>Bo),multi:!0};let Bo=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=Ue=>Ga(Ue),this.createValidator=Ue=>ae(Ue)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("max",ni._enabled?ni.max:null)},inputs:{max:"max"},features:[e.Jv_([ja]),e.Vt3]})}return lt})();const Uo={provide:Q,useExisting:(0,e.Rfq)(()=>uo),multi:!0};let uo=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=Ue=>Ga(Ue),this.createValidator=Ue=>ge(Ue)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("min",ni._enabled?ni.min:null)},inputs:{min:"min"},features:[e.Jv_([Uo]),e.Vt3]})}return lt})();const ga={provide:Q,useExisting:(0,e.Rfq)(()=>Lr),multi:!0},Za={provide:Q,useExisting:(0,e.Rfq)(()=>_a),multi:!0};let Lr=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=e.L39,this.createValidator=Ue=>Me}enabled(Ue){return Ue}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("required",ni._enabled?"":null)},inputs:{required:"required"},features:[e.Jv_([ga]),e.Vt3]})}return lt})(),_a=(()=>{class lt extends Lr{constructor(){super(...arguments),this.createValidator=Ue=>Te}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("required",ni._enabled?"":null)},features:[e.Jv_([Za]),e.Vt3]})}return lt})(),Ei=(()=>{class lt{static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({})}return lt})();class Ki extends mi{constructor(ht,Ue,At){super(gt(Ue),Fe(At,Ue)),this.controls=ht,this._initObservables(),this._setUpdateStrategy(Ue),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(ht){return this.controls[this._adjustIndex(ht)]}push(ht,Ue={}){this.controls.push(ht),this._registerControl(ht),this.updateValueAndValidity({emitEvent:Ue.emitEvent}),this._onCollectionChange()}insert(ht,Ue,At={}){this.controls.splice(ht,0,Ue),this._registerControl(Ue),this.updateValueAndValidity({emitEvent:At.emitEvent})}removeAt(ht,Ue={}){let At=this._adjustIndex(ht);At<0&&(At=0),this.controls[At]&&this.controls[At]._registerOnCollectionChange(()=>{}),this.controls.splice(At,1),this.updateValueAndValidity({emitEvent:Ue.emitEvent})}setControl(ht,Ue,At={}){let ni=this._adjustIndex(ht);ni<0&&(ni=0),this.controls[ni]&&this.controls[ni]._registerOnCollectionChange(()=>{}),this.controls.splice(ni,1),Ue&&(this.controls.splice(ni,0,Ue),this._registerControl(Ue)),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(ht,Ue={}){Tt(this,0,ht),ht.forEach((At,ni)=>{st(this,!1,ni),this.at(ni).setValue(At,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){null!=ht&&(ht.forEach((At,ni)=>{this.at(ni)&&this.at(ni).patchValue(At,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue))}reset(ht=[],Ue={}){this._forEachChild((At,ni)=>{At.reset(ht[ni],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this._updatePristine(Ue,this),this._updateTouched(Ue,this),this.updateValueAndValidity(Ue)}getRawValue(){return this.controls.map(ht=>ht.getRawValue())}clear(ht={}){this.controls.length<1||(this._forEachChild(Ue=>Ue._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:ht.emitEvent}))}_adjustIndex(ht){return ht<0?ht+this.length:ht}_syncPendingControls(){let ht=this.controls.reduce((Ue,At)=>!!At._syncPendingControls()||Ue,!1);return ht&&this.updateValueAndValidity({onlySelf:!0}),ht}_forEachChild(ht){this.controls.forEach((Ue,At)=>{ht(Ue,At)})}_updateValue(){this.value=this.controls.filter(ht=>ht.enabled||this.disabled).map(ht=>ht.value)}_anyControls(ht){return this.controls.some(Ue=>Ue.enabled&&ht(Ue))}_setUpControls(){this._forEachChild(ht=>this._registerControl(ht))}_allControlsDisabled(){for(const ht of this.controls)if(ht.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(ht){ht.setParent(this),ht._registerOnCollectionChange(this._onCollectionChange)}_find(ht){return this.at(ht)??null}}function Fr(lt){return!!lt&&(void 0!==lt.asyncValidators||void 0!==lt.validators||void 0!==lt.updateOn)}let Mo=(()=>{class lt{constructor(){this.useNonNullable=!1}get nonNullable(){const Ue=new lt;return Ue.useNonNullable=!0,Ue}group(Ue,At=null){const ni=this._reduceControls(Ue);let pn={};return Fr(At)?pn=At:null!==At&&(pn.validators=At.validator,pn.asyncValidators=At.asyncValidator),new Kt(ni,pn)}record(Ue,At=null){const ni=this._reduceControls(Ue);return new fi(ni,At)}control(Ue,At,ni){let pn={};return this.useNonNullable?(Fr(At)?pn=At:(pn.validators=At,pn.asyncValidators=ni),new Rn(Ue,{...pn,nonNullable:!0})):new Rn(Ue,At,ni)}array(Ue,At,ni){const pn=Ue.map(Zn=>this._createControl(Zn));return new Ki(pn,At,ni)}_reduceControls(Ue){const At={};return Object.keys(Ue).forEach(ni=>{At[ni]=this._createControl(Ue[ni])}),At}_createControl(Ue){return Ue instanceof Rn||Ue instanceof mi?Ue:Array.isArray(Ue)?this.control(Ue[0],Ue.length>1?Ue[1]:null,Ue.length>2?Ue[2]:null):this.control(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275prov=e.jDH({token:lt,factory:lt.\u0275fac,providedIn:"root"})}return lt})(),oo=(()=>{class lt extends Mo{group(Ue,At=null){return super.group(Ue,At)}control(Ue,At,ni){return super.control(Ue,At,ni)}array(Ue,At,ni){return super.array(Ue,At,ni)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275prov=e.jDH({token:lt,factory:lt.\u0275fac,providedIn:"root"})}return lt})(),oa=(()=>{class lt{static withConfig(Ue){return{ngModule:lt,providers:[{provide:Qi,useValue:Ue.callSetDisabledState??Li}]}}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({imports:[Ei]})}return lt})(),Ri=(()=>{class lt{static withConfig(Ue){return{ngModule:lt,providers:[{provide:Ea,useValue:Ue.warnOnNgModelWithFormControl??"always"},{provide:Qi,useValue:Ue.callSetDisabledState??Li}]}}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({imports:[Ei]})}return lt})()},850:(Qe,te,g)=>{"use strict";g.d(te,{$3:()=>_,jL:()=>qe,pN:()=>ze});var e=g(4438),t=g(6600),w=g(177),S=g(5542),l=g(6969),x=g(8617),f=g(6860),I=g(9969),d=g(8359),T=g(1413),y=g(9030),F=g(7786),R=g(7673),z=g(3726),W=g(7336),$=g(6939),j=g(9417),Q=g(6467),J=g(9172),ee=g(5558),ie=g(6697),ge=g(5964),ae=g(6354),Me=g(8141),Te=g(5335),de=g(8203);const D=["panel"],n=["*"];function c(Ke,se){if(1&Ke){const X=e.RV6();e.j41(0,"div",1,0),e.bIt("@panelAnimation.done",function(ce){e.eBV(X);const fe=e.XpG();return e.Njj(fe._animationDone.next(ce))}),e.SdG(2),e.k0s()}if(2&Ke){const X=se.id,me=e.XpG();e.HbH(me._classList),e.AVh("mat-mdc-autocomplete-visible",me.showPanel)("mat-mdc-autocomplete-hidden",!me.showPanel)("mat-primary","primary"===me._color)("mat-accent","accent"===me._color)("mat-warn","warn"===me._color),e.Y8G("id",me.id)("@panelAnimation",me.isOpen?"visible":"hidden"),e.BMQ("aria-label",me.ariaLabel||null)("aria-labelledby",me._getPanelAriaLabelledby(X))}}const m=(0,I.hZ)("panelAnimation",[(0,I.wk)("void, hidden",(0,I.iF)({opacity:0,transform:"scaleY(0.8)"})),(0,I.kY)(":enter, hidden => visible",[(0,I.Os)([(0,I.i0)("0.03s linear",(0,I.iF)({opacity:1})),(0,I.i0)("0.12s cubic-bezier(0, 0, 0.2, 1)",(0,I.iF)({transform:"scaleY(1)"}))])]),(0,I.kY)(":leave, visible => hidden",[(0,I.i0)("0.075s linear",(0,I.iF)({opacity:0}))])]);let h=0;class C{constructor(se,X){this.source=se,this.option=X}}const k=new e.nKC("mat-autocomplete-default-options",{providedIn:"root",factory:function L(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1}}});let _=(()=>{class Ke{get isOpen(){return this._isOpen&&this.showPanel}_setColor(X){this._color=X,this._changeDetectorRef.markForCheck()}set classList(X){this._classList=X,this._elementRef.nativeElement.className=""}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(X){this._hideSingleSelectionIndicator=X,this._syncParentProperties()}_syncParentProperties(){if(this.options)for(const X of this.options)X._changeDetectorRef.markForCheck()}constructor(X,me,ce,fe){this._changeDetectorRef=X,this._elementRef=me,this._defaults=ce,this._activeOptionChanges=d.yU.EMPTY,this._animationDone=new e.bkB,this.showPanel=!1,this._isOpen=!1,this.displayWith=null,this.optionSelected=new e.bkB,this.opened=new e.bkB,this.closed=new e.bkB,this.optionActivated=new e.bkB,this.id="mat-autocomplete-"+h++,this.inertGroups=fe?.SAFARI||!1,this.autoActiveFirstOption=!!ce.autoActiveFirstOption,this.autoSelectActiveOption=!!ce.autoSelectActiveOption,this.requireSelection=!!ce.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new x.Au(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(X=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[X]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe(),this._animationDone.complete()}_setScrollTop(X){this.panel&&(this.panel.nativeElement.scrollTop=X)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options.length,this._changeDetectorRef.markForCheck()}_emitSelectEvent(X){const me=new C(this,X);this.optionSelected.emit(me)}_getPanelAriaLabelledby(X){return this.ariaLabel?null:this.ariaLabelledby?(X?X+" ":"")+this.ariaLabelledby:X}_skipPredicate(){return!1}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(k),e.rXU(f.OD))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-autocomplete"]],contentQueries:function(me,ce,fe){if(1&me&&(e.wni(fe,t.wT,5),e.wni(fe,t.QC,5)),2&me){let ke;e.mGM(ke=e.lsd())&&(ce.options=ke),e.mGM(ke=e.lsd())&&(ce.optionGroups=ke)}},viewQuery:function(me,ce){if(1&me&&(e.GBs(e.C4Q,7),e.GBs(D,5)),2&me){let fe;e.mGM(fe=e.lsd())&&(ce.template=fe.first),e.mGM(fe=e.lsd())&&(ce.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",e.L39],autoSelectActiveOption:[2,"autoSelectActiveOption","autoSelectActiveOption",e.L39],requireSelection:[2,"requireSelection","requireSelection",e.L39],panelWidth:"panelWidth",disableRipple:[2,"disableRipple","disableRipple",e.L39],classList:[0,"class","classList"],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",e.L39]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],standalone:!0,features:[e.Jv_([{provide:t.is,useExisting:Ke}]),e.GFd,e.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[["panel",""],["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id"]],template:function(me,ce){1&me&&(e.NAR(),e.DNE(0,c,3,16,"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:static;border-radius:var(--mat-autocomplete-container-shape);box-shadow:var(--mat-autocomplete-container-elevation-shadow);background-color:var(--mat-autocomplete-background-color)}.cdk-high-contrast-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}mat-autocomplete{display:none}"],encapsulation:2,data:{animation:[m]},changeDetection:0})}return Ke})();const v={provide:j.kq,useExisting:(0,e.Rfq)(()=>ze),multi:!0},N=new e.nKC("mat-autocomplete-scroll-strategy",{providedIn:"root",factory:()=>{const Ke=(0,e.WQX)(l.hJ);return()=>Ke.scrollStrategies.reposition()}}),Ee={provide:N,deps:[l.hJ],useFactory:function ne(Ke){return()=>Ke.scrollStrategies.reposition()}};let ze=(()=>{class Ke{constructor(X,me,ce,fe,ke,mt,_e,be,pe,Ze,_t){this._element=X,this._overlay=me,this._viewContainerRef=ce,this._zone=fe,this._changeDetectorRef=ke,this._dir=_e,this._formField=be,this._document=pe,this._viewportRuler=Ze,this._defaults=_t,this._componentDestroyed=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=d.yU.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new T.B,this._windowBlurHandler=()=>{this._canOpenOnNextFocus=this._document.activeElement!==this._element.nativeElement||this.panelOpen},this._onChange=()=>{},this._onTouched=()=>{},this.position="auto",this.autocompleteAttribute="off",this._aboveClass="mat-mdc-autocomplete-panel-above",this._overlayAttached=!1,this.optionSelections=(0,y.v)(()=>{const at=this.autocomplete?this.autocomplete.options:null;return at?at.changes.pipe((0,J.Z)(at),(0,ee.n)(()=>(0,F.h)(...at.map(pt=>pt.onSelectionChange)))):this._zone.onStable.pipe((0,ie.s)(1),(0,ee.n)(()=>this.optionSelections))}),this._handlePanelKeydown=at=>{(at.keyCode===W._f&&!(0,W.rp)(at)||at.keyCode===W.i7&&(0,W.rp)(at,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),at.stopPropagation(),at.preventDefault())},this._trackedModal=null,this._scrollStrategy=mt}ngAfterViewInit(){const X=this._getWindow();typeof X<"u"&&this._zone.runOutsideAngular(()=>X.addEventListener("blur",this._windowBlurHandler))}ngOnChanges(X){X.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){const X=this._getWindow();typeof X<"u"&&X.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}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,x.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id))}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,F.h)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,ge.p)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,ge.p)(()=>this._overlayAttached)):(0,R.of)()).pipe((0,ae.T)(X=>X instanceof t.MI?X:null))}get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return(0,F.h)((0,z.R)(this._document,"click"),(0,z.R)(this._document,"auxclick"),(0,z.R)(this._document,"touchend")).pipe((0,ge.p)(X=>{const me=(0,f.Fb)(X),ce=this._formField?this._formField.getConnectedOverlayOrigin().nativeElement:null,fe=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;return this._overlayAttached&&me!==this._element.nativeElement&&this._document.activeElement!==this._element.nativeElement&&(!ce||!ce.contains(me))&&(!fe||!fe.contains(me))&&!!this._overlayRef&&!this._overlayRef.overlayElement.contains(me)}))}writeValue(X){Promise.resolve(null).then(()=>this._assignOptionValue(X))}registerOnChange(X){this._onChange=X}registerOnTouched(X){this._onTouched=X}setDisabledState(X){this._element.nativeElement.disabled=X}_handleKeydown(X){const me=X.keyCode,ce=(0,W.rp)(X);if(me===W._f&&!ce&&X.preventDefault(),this._valueOnLastKeydown=this._element.nativeElement.value,this.activeOption&&me===W.Fm&&this.panelOpen&&!ce)this.activeOption._selectViaInteraction(),this._resetActiveItem(),X.preventDefault();else if(this.autocomplete){const fe=this.autocomplete._keyManager.activeItem,ke=me===W.i7||me===W.n6;me===W.wn||ke&&!ce&&this.panelOpen?this.autocomplete._keyManager.onKeydown(X):ke&&this._canOpen()&&this._openPanelInternal(this._valueOnLastKeydown),(ke||this.autocomplete._keyManager.activeItem!==fe)&&(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(X){let me=X.target,ce=me.value;if("number"===me.type&&(ce=""==ce?null:parseFloat(ce)),this._previousValue!==ce){if(this._previousValue=ce,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(ce),ce){if(this.panelOpen&&!this.autocomplete.requireSelection){const fe=this.autocomplete.options?.find(ke=>ke.selected);fe&&ce!==this._getDisplayValue(fe.value)&&fe.deselect(!1)}}else this._clearPreviousSelectedOption(null,!1);if(this._canOpen()&&this._document.activeElement===X.target){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()}_floatLabel(X=!1){this._formField&&"auto"===this._formField.floatLabel&&(X?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const X=this._zone.onStable.pipe((0,ie.s)(1)),me=this.autocomplete.options.changes.pipe((0,Me.M)(()=>this._positionStrategy.reapplyLastPosition()),(0,Te.c)(0));return(0,F.h)(X,me).pipe((0,ee.n)(()=>(this._zone.run(()=>{const ce=this.panelOpen;this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),ce!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit())}),this.panelClosingActions)),(0,ie.s)(1)).subscribe(ce=>this._setValueAndClose(ce))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_getDisplayValue(X){const me=this.autocomplete;return me&&me.displayWith?me.displayWith(X):X}_assignOptionValue(X){const me=this._getDisplayValue(X);null==X&&this._clearPreviousSelectedOption(null,!1),this._updateNativeInputValue(me??"")}_updateNativeInputValue(X){this._formField?this._formField._control.value=X:this._element.nativeElement.value=X,this._previousValue=X}_setValueAndClose(X){const me=this.autocomplete,ce=X?X.source:this._pendingAutoselectedOption;ce?(this._clearPreviousSelectedOption(ce),this._assignOptionValue(ce.value),this._onChange(ce.value),me._emitSelectEvent(ce),this._element.nativeElement.focus()):me.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),me._animationDone?me._animationDone.pipe((0,ie.s)(1)).subscribe(()=>this._onChange(null)):this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(X,me){this.autocomplete?.options?.forEach(ce=>{ce!==X&&ce.selected&&ce.deselect(me)})}_openPanelInternal(X=this._element.nativeElement.value){this._attachOverlay(X),this._floatLabel(),this._trackedModal&&(0,x.px)(this._trackedModal,"aria-owns",this.autocomplete.id)}_attachOverlay(X){let me=this._overlayRef;me?(this._positionStrategy.setOrigin(this._getConnectedElement()),me.updateSize({width:this._getPanelWidth()})):(this._portal=new $.VA(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),me=this._overlay.create(this._getOverlayConfig()),this._overlayRef=me,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&me&&me.updateSize({width:this._getPanelWidth()})})),me&&!me.hasAttached()&&(me.attach(this._portal),this._valueOnAttach=X,this._valueOnLastKeydown=null,this._closingActionsSubscription=this._subscribeToClosingActions());const ce=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._latestOpeningTrigger=this,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&ce!==this.panelOpen&&this._emitOpened()}_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const X=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=X.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=X.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new l.rR({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,panelClass:this._defaults?.overlayPanelClass})}_getOverlayPosition(){const X=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(X),this._positionStrategy=X,X}_setStrategyPositions(X){const me=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],ce=this._aboveClass,fe=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:ce},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:ce}];let ke;ke="above"===this.position?fe:"below"===this.position?me:[...me,...fe],X.withPositions(ke)}_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 X=this.autocomplete;if(X.autoActiveFirstOption){let me=-1;for(let ce=0;ce .cdk-overlay-container [aria-modal="true"]');if(!X)return;const me=this.autocomplete.id;this._trackedModal&&(0,x.Ae)(this._trackedModal,"aria-owns",me),(0,x.px)(X,"aria-owns",me),this._trackedModal=X}_clearFromModal(){this._trackedModal&&((0,x.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.aKT),e.rXU(l.hJ),e.rXU(e.c1b),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(N),e.rXU(de.dS,8),e.rXU(Q.xb,9),e.rXU(w.qQ,8),e.rXU(S.Xj),e.rXU(k,8))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(me,ce){1&me&&e.bIt("focusin",function(){return ce._handleFocus()})("blur",function(){return ce._onTouched()})("input",function(ke){return ce._handleInput(ke)})("keydown",function(ke){return ce._handleKeydown(ke)})("click",function(){return ce._handleClick()}),2&me&&e.BMQ("autocomplete",ce.autocompleteAttribute)("role",ce.autocompleteDisabled?null:"combobox")("aria-autocomplete",ce.autocompleteDisabled?null:"list")("aria-activedescendant",ce.panelOpen&&ce.activeOption?ce.activeOption.id:null)("aria-expanded",ce.autocompleteDisabled?null:ce.panelOpen.toString())("aria-controls",ce.autocompleteDisabled||!ce.panelOpen||null==ce.autocomplete?null:ce.autocomplete.id)("aria-haspopup",ce.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:[0,"matAutocomplete","autocomplete"],position:[0,"matAutocompletePosition","position"],connectedTo:[0,"matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:[0,"autocomplete","autocompleteAttribute"],autocompleteDisabled:[2,"matAutocompleteDisabled","autocompleteDisabled",e.L39]},exportAs:["matAutocompleteTrigger"],standalone:!0,features:[e.Jv_([v]),e.GFd,e.OA$]})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({providers:[Ee],imports:[l.z_,t.Sy,t.yE,w.MD,S.Gj,t.Sy,t.yE]})}return Ke})()},1975:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>T,k:()=>d});var e=g(4438),t=g(6600),w=g(8617),S=g(177);let l=0;const x="mat-badge-content",f=new Set;let I=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["ng-component"]],standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(z,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);color:var(--mat-badge-text-color);font-family:var(--mat-badge-text-font);font-weight:var(--mat-badge-text-weight);border-radius:var(--mat-badge-container-shape)}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.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%}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color);color:var(--mat-badge-disabled-state-text-color)}.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, unset);min-height:var(--mat-badge-small-size-container-size, unset);line-height:var(--mat-badge-legacy-small-size-container-size, var(--mat-badge-small-size-container-size));padding:var(--mat-badge-small-size-container-padding);font-size:var(--mat-badge-small-size-text-size);margin:var(--mat-badge-small-size-container-offset)}.mat-badge-small.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-small-size-container-overlap-offset)}.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, unset);min-height:var(--mat-badge-container-size, unset);line-height:var(--mat-badge-legacy-container-size, var(--mat-badge-container-size));padding:var(--mat-badge-container-padding);font-size:var(--mat-badge-text-size);margin:var(--mat-badge-container-offset)}.mat-badge-medium.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-container-overlap-offset)}.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, unset);min-height:var(--mat-badge-large-size-container-size, unset);line-height:var(--mat-badge-legacy-large-size-container-size, var(--mat-badge-large-size-container-size));padding:var(--mat-badge-large-size-container-padding);font-size:var(--mat-badge-large-size-text-size);margin:var(--mat-badge-large-size-container-offset)}.mat-badge-large.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-large-size-container-overlap-offset)}"],encapsulation:2,changeDetection:0})}return y})(),d=(()=>{class y{get color(){return this._color}set color(R){this._setColor(R),this._color=R}get content(){return this._content}set content(R){this._updateRenderedContent(R)}get description(){return this._description}set description(R){this._updateDescription(R)}constructor(R,z,W,$,j){this._ngZone=R,this._elementRef=z,this._ariaDescriber=W,this._renderer=$,this._animationMode=j,this._color="primary",this.overlap=!0,this.position="above after",this.size="medium",this._id=l++,this._isInitialized=!1,this._interactivityChecker=(0,e.WQX)(w.Z7),this._document=(0,e.WQX)(S.qQ);const Q=(0,e.WQX)(e.o8S);if(!f.has(Q)){f.add(Q);const J=(0,e.a0P)(I,{environmentInjector:(0,e.WQX)(e.uvJ)});Q.onDestroy(()=>{f.delete(Q),0===f.size&&J.destroy()})}}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 R=this._renderer.createElement("span"),z="mat-badge-active";return R.setAttribute("id",`mat-badge-content-${this._id}`),R.setAttribute("aria-hidden","true"),R.classList.add(x),"NoopAnimations"===this._animationMode&&R.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(R),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{R.classList.add(z)})}):R.classList.add(z),R}_updateRenderedContent(R){const z=`${R??""}`.trim();this._isInitialized&&z&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=z),this._content=z}_updateDescription(R){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!R||this._isHostInteractive())&&this._removeInlineDescription(),this._description=R,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,R):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(R){const z=this._elementRef.nativeElement.classList;z.remove(`mat-badge-${this._color}`),R&&z.add(`mat-badge-${R}`)}_clearExistingBadges(){const R=this._elementRef.nativeElement.querySelectorAll(`:scope > .${x}`);for(const z of Array.from(R))z!==this._badgeElement&&z.remove()}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(w.vr),e.rXU(e.sFG),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:y,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(z,W){2&z&&e.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]},standalone:!0,features:[e.GFd]})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[w.Pd,t.yE,t.yE]})}return y})()},8834:(Qe,te,g)=>{"use strict";g.d(te,{$0:()=>n,$z:()=>ge,Hl:()=>k,iY:()=>h});var e=g(6860),t=g(4438),w=g(8617),S=g(6600);const l=["mat-button",""],x=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],f=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],y=["mat-mini-fab",""],R=["mat-icon-button",""],z=["*"],$=new t.nKC("MAT_BUTTON_CONFIG"),Q=[{attribute:"mat-button",mdcClasses:["mdc-button","mat-mdc-button"]},{attribute:"mat-flat-button",mdcClasses:["mdc-button","mdc-button--unelevated","mat-mdc-unelevated-button"]},{attribute:"mat-raised-button",mdcClasses:["mdc-button","mdc-button--raised","mat-mdc-raised-button"]},{attribute:"mat-stroked-button",mdcClasses:["mdc-button","mdc-button--outlined","mat-mdc-outlined-button"]},{attribute:"mat-fab",mdcClasses:["mdc-fab","mat-mdc-fab"]},{attribute:"mat-mini-fab",mdcClasses:["mdc-fab","mdc-fab--mini","mat-mdc-mini-fab"]},{attribute:"mat-icon-button",mdcClasses:["mdc-icon-button","mat-mdc-icon-button"]}];let J=(()=>{class L{get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(r){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,r)}get disableRipple(){return this._disableRipple}set disableRipple(r){this._disableRipple=r,this._updateRippleDisabled()}get disabled(){return this._disabled}set disabled(r){this._disabled=r,this._updateRippleDisabled()}constructor(r,v,V,N){this._elementRef=r,this._platform=v,this._ngZone=V,this._animationMode=N,this._focusMonitor=(0,t.WQX)(w.FN),this._rippleLoader=(0,t.WQX)(S.Ej),this._isFab=!1,this._disableRipple=!1,this._disabled=!1;const ne=(0,t.WQX)($,{optional:!0}),Ee=r.nativeElement,ze=Ee.classList;this.disabledInteractive=ne?.disabledInteractive??!1,this._rippleLoader?.configureRipple(Ee,{className:"mat-mdc-button-ripple"});for(const{attribute:qe,mdcClasses:Ke}of Q)Ee.hasAttribute(qe)&&ze.add(...Ke)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(r="program",v){r?this._focusMonitor.focusVia(this._elementRef.nativeElement,r,v):this._elementRef.nativeElement.focus(v)}_getAriaDisabled(){return null!=this.ariaDisabled?this.ariaDisabled:!(!this.disabled||!this.disabledInteractive)||null}_getDisabledAttribute(){return!(this.disabledInteractive||!this.disabled)||null}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}static#e=this.\u0275fac=function(v){t.QTQ()};static#t=this.\u0275dir=t.FsC({type:L,inputs:{color:"color",disableRipple:[2,"disableRipple","disableRipple",t.L39],disabled:[2,"disabled","disabled",t.L39],ariaDisabled:[2,"aria-disabled","ariaDisabled",t.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",t.L39]},features:[t.GFd]})}return L})(),ge=(()=>{class L extends J{constructor(r,v,V,N){super(r,v,V,N)}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:l,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(x),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&v&&t.AVh("mdc-button__ripple",!V._isFab)("mdc-fab__ripple",V._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button{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;user-select:none;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0)}.mdc-button .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.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__icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top}[dir=rtl] .mdc-button .mdc-button__icon,.mdc-button .mdc-button__icon[dir=rtl]{margin-left:8px;margin-right:0}.mdc-button .mdc-button__progress-indicator{font-size:0;position:absolute;transform:translate(-50%, -50%);top:50%;left:50%;line-height:initial}.mdc-button .mdc-button__label{position:relative}.mdc-button .mdc-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px);display:none}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring{border-color:CanvasText}}.mdc-button .mdc-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring::after{border-color:CanvasText}}@media screen and (forced-colors: active){.mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__focus-ring,.mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__focus-ring{display:block}}.mdc-button .mdc-button__touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-button__label+.mdc-button__icon{margin-left:8px;margin-right:0}[dir=rtl] .mdc-button__label+.mdc-button__icon,.mdc-button__label+.mdc-button__icon[dir=rtl]{margin-left:0;margin-right:8px}svg.mdc-button__icon{fill:currentColor}.mdc-button--touch{margin-top:6px;margin-bottom:6px}.mdc-button{padding:0 8px 0 8px}.mdc-button--unelevated{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--unelevated.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--unelevated.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--raised{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--raised.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--raised.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--outlined{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button--outlined .mdc-button__ripple{border-style:solid;border-color:rgba(0,0,0,0)}.mat-mdc-button{font-family:var(--mdc-text-button-label-text-font);font-size:var(--mdc-text-button-label-text-size);letter-spacing:var(--mdc-text-button-label-text-tracking);font-weight:var(--mdc-text-button-label-text-weight);text-transform:var(--mdc-text-button-label-text-transform);height:var(--mdc-text-button-container-height);border-radius:var(--mdc-text-button-container-shape);padding:0 var(--mat-text-button-horizontal-padding, 8px)}.mat-mdc-button:not(:disabled){color:var(--mdc-text-button-label-text-color)}.mat-mdc-button:disabled{color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button .mdc-button__ripple{border-radius:var(--mdc-text-button-container-shape)}.mat-mdc-button:has(.material-icons,mat-icon,[matButtonIcon]){padding:0 var(--mat-text-button-with-icon-horizontal-padding, 8px)}.mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}[dir=rtl] .mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}.mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-text-button-ripple-color)}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-state-layer-color)}.mat-mdc-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-disabled-state-layer-color)}.mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-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-text-button-focus-state-layer-opacity)}.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-pressed-state-layer-opacity)}.mat-mdc-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-text-button-touch-target-display)}.mat-mdc-button[disabled],.mat-mdc-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-unelevated-button{font-family:var(--mdc-filled-button-label-text-font);font-size:var(--mdc-filled-button-label-text-size);letter-spacing:var(--mdc-filled-button-label-text-tracking);font-weight:var(--mdc-filled-button-label-text-weight);text-transform:var(--mdc-filled-button-label-text-transform);height:var(--mdc-filled-button-container-height);border-radius:var(--mdc-filled-button-container-shape);padding:0 var(--mat-filled-button-horizontal-padding, 16px)}.mat-mdc-unelevated-button:not(:disabled){background-color:var(--mdc-filled-button-container-color)}.mat-mdc-unelevated-button:disabled{background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mdc-filled-button-label-text-color)}.mat-mdc-unelevated-button:disabled{color:var(--mdc-filled-button-disabled-label-text-color)}.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mdc-filled-button-container-shape)}.mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-filled-button-ripple-color)}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-state-layer-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-disabled-state-layer-color)}.mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-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-filled-button-focus-state-layer-opacity)}.mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-pressed-state-layer-opacity)}.mat-mdc-unelevated-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-filled-button-touch-target-display)}.mat-mdc-unelevated-button[disabled],.mat-mdc-unelevated-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-filled-button-disabled-label-text-color);background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-raised-button{font-family:var(--mdc-protected-button-label-text-font);font-size:var(--mdc-protected-button-label-text-size);letter-spacing:var(--mdc-protected-button-label-text-tracking);font-weight:var(--mdc-protected-button-label-text-weight);text-transform:var(--mdc-protected-button-label-text-transform);height:var(--mdc-protected-button-container-height);border-radius:var(--mdc-protected-button-container-shape);padding:0 var(--mat-protected-button-horizontal-padding, 16px);box-shadow:var(--mdc-protected-button-container-elevation-shadow)}.mat-mdc-raised-button:not(:disabled){background-color:var(--mdc-protected-button-container-color)}.mat-mdc-raised-button:disabled{background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button:not(:disabled){color:var(--mdc-protected-button-label-text-color)}.mat-mdc-raised-button:disabled{color:var(--mdc-protected-button-disabled-label-text-color)}.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mdc-protected-button-container-shape)}.mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}.mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-protected-button-ripple-color)}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-state-layer-color)}.mat-mdc-raised-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-disabled-state-layer-color)}.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-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-protected-button-focus-state-layer-opacity)}.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-pressed-state-layer-opacity)}.mat-mdc-raised-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-protected-button-touch-target-display)}.mat-mdc-raised-button:hover{box-shadow:var(--mdc-protected-button-hover-container-elevation-shadow)}.mat-mdc-raised-button:focus{box-shadow:var(--mdc-protected-button-focus-container-elevation-shadow)}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:var(--mdc-protected-button-pressed-container-elevation-shadow)}.mat-mdc-raised-button[disabled],.mat-mdc-raised-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-protected-button-disabled-label-text-color);background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button[disabled].mat-mdc-button-disabled,.mat-mdc-raised-button.mat-mdc-button-disabled.mat-mdc-button-disabled{box-shadow:var(--mdc-protected-button-disabled-container-elevation-shadow)}.mat-mdc-raised-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-outlined-button{font-family:var(--mdc-outlined-button-label-text-font);font-size:var(--mdc-outlined-button-label-text-size);letter-spacing:var(--mdc-outlined-button-label-text-tracking);font-weight:var(--mdc-outlined-button-label-text-weight);text-transform:var(--mdc-outlined-button-label-text-transform);height:var(--mdc-outlined-button-container-height);border-radius:var(--mdc-outlined-button-container-shape);padding:0 15px 0 15px;border-width:var(--mdc-outlined-button-outline-width);padding:0 var(--mat-outlined-button-horizontal-padding, 15px)}.mat-mdc-outlined-button:not(:disabled){color:var(--mdc-outlined-button-label-text-color)}.mat-mdc-outlined-button:disabled{color:var(--mdc-outlined-button-disabled-label-text-color)}.mat-mdc-outlined-button .mdc-button__ripple{border-radius:var(--mdc-outlined-button-container-shape)}.mat-mdc-outlined-button:not(:disabled){border-color:var(--mdc-outlined-button-outline-color)}.mat-mdc-outlined-button:disabled{border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mdc-button--icon-trailing{padding:0 11px 0 15px}.mat-mdc-outlined-button.mdc-button--icon-leading{padding:0 15px 0 11px}.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:var(--mdc-outlined-button-outline-width)}.mat-mdc-outlined-button .mdc-button__touch{left:calc(-1 * var(--mdc-outlined-button-outline-width));width:calc(100% + 2 * var(--mdc-outlined-button-outline-width))}.mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-outlined-button-ripple-color)}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-state-layer-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-disabled-state-layer-color)}.mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-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-outlined-button-focus-state-layer-opacity)}.mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-pressed-state-layer-opacity)}.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-outlined-button-touch-target-display)}.mat-mdc-outlined-button[disabled],.mat-mdc-outlined-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-outlined-button-disabled-label-text-color);border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-button-base{text-decoration:none}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-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{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{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{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-outlined-button .mdc-button__label{z-index:1}.mat-mdc-button .mat-mdc-focus-indicator,.mat-mdc-unelevated-button .mat-mdc-focus-indicator,.mat-mdc-raised-button .mat-mdc-focus-indicator,.mat-mdc-outlined-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-unelevated-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-raised-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-outlined-button:focus .mat-mdc-focus-indicator::before{content:""}.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{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{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;border-width:-1px}.mat-mdc-unelevated-button .mat-mdc-focus-indicator::before,.mat-mdc-raised-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 3px)*-1)}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return L})();const Me=new t.nKC("mat-mdc-fab-default-options",{providedIn:"root",factory:Te});function Te(){return{color:"accent"}}const de=Te();let n=(()=>{class L extends J{constructor(r,v,V,N,ne){super(r,v,V,N),this._options=ne,this._isFab=!0,this._options=this._options||de,this.color=this._options.color||de.color}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8),t.rXU(Me,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-mini-fab",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:y,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(x),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&v&&t.AVh("mdc-button__ripple",!V._isFab)("mdc-fab__ripple",V._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-fab{position:relative;display:inline-flex;position:relative;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;user-select:none;-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)}.mdc-fab .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-fab[hidden]{display:none}.mdc-fab::-moz-focus-inner{padding:0;border:0}.mdc-fab .mdc-fab__focus-ring{position:absolute}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{border-color:CanvasText}}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{border-color:CanvasText}}.mdc-fab:active,.mdc-fab:focus{outline:none}.mdc-fab:hover{cursor:pointer}.mdc-fab>svg{width:100%}.mdc-fab--mini{width:40px;height:40px}.mdc-fab--extended{border-radius:24px;padding-left:20px;padding-right:20px;width:auto;max-width:100%;height:48px;line-height:normal}.mdc-fab--extended .mdc-fab__ripple{border-radius:24px}.mdc-fab--extended .mdc-fab__icon{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mdc-fab--extended .mdc-fab__icon,.mdc-fab--extended .mdc-fab__icon[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mdc-fab--extended .mdc-fab__label+.mdc-fab__icon,.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}.mdc-fab--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-fab--touch .mdc-fab__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mdc-fab::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}@media screen and (forced-colors: active){.mdc-fab::before{border-color:CanvasText}}.mdc-fab__label{justify-content:flex-start;text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden;overflow-y:visible}.mdc-fab__icon{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mdc-fab .mdc-fab__icon{display:inline-flex;align-items:center;justify-content:center}.mdc-fab--exited{transform:scale(0);opacity:0;transition:opacity 15ms linear 150ms,transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-fab--exited .mdc-fab__icon{transform:scale(0);transition:transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-fab{background-color:var(--mdc-fab-container-color)}.mat-mdc-fab .mdc-fab__icon{width:var(--mdc-fab-icon-size);height:var(--mdc-fab-icon-size);font-size:var(--mdc-fab-icon-size)}.mat-mdc-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-container-shape)}.mat-mdc-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-container-shape)}.mat-mdc-mini-fab{background-color:var(--mdc-fab-small-container-color)}.mat-mdc-mini-fab .mdc-fab__icon{width:var(--mdc-fab-small-icon-size);height:var(--mdc-fab-small-icon-size);font-size:var(--mdc-fab-small-icon-size)}.mat-mdc-mini-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-mini-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-extended-fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mdc-extended-fab-container-height);border-radius:var(--mdc-extended-fab-container-shape);font-family:var(--mdc-extended-fab-label-text-font);font-size:var(--mdc-extended-fab-label-text-size);font-weight:var(--mdc-extended-fab-label-text-weight);letter-spacing:var(--mdc-extended-fab-label-text-tracking)}.mat-mdc-extended-fab .mdc-fab__ripple{border-radius:var(--mdc-extended-fab-container-shape)}.mat-mdc-fab,.mat-mdc-mini-fab{-webkit-tap-highlight-color:rgba(0,0,0,0);flex-shrink:0}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple,.mat-mdc-mini-fab .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 .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab .mdc-button__label,.mat-mdc-mini-fab .mdc-button__label{z-index:1}.mat-mdc-fab .mat-mdc-focus-indicator,.mat-mdc-mini-fab .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab:focus .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-fab._mat-animation-noopable,.mat-mdc-mini-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-mini-fab:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}.mat-mdc-fab .mat-icon,.mat-mdc-fab .material-icons,.mat-mdc-mini-fab .mat-icon,.mat-mdc-mini-fab .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-fab[disabled],.mat-mdc-fab[disabled]:focus,.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-fab.mat-mdc-button-disabled:focus,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab[disabled]:focus,.mat-mdc-mini-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-fab.mat-mdc-button-disabled-interactive,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab{color:var(--mat-fab-foreground-color, inherit);box-shadow:var(--mdc-fab-container-elevation-shadow)}.mat-mdc-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-touch-target-display)}.mat-mdc-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color)}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color)}.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)}.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)}.mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity)}.mat-mdc-fab:hover{box-shadow:var(--mdc-fab-hover-container-elevation-shadow)}.mat-mdc-fab:focus{box-shadow:var(--mdc-fab-focus-container-elevation-shadow)}.mat-mdc-fab:active,.mat-mdc-fab:focus:active{box-shadow:var(--mdc-fab-pressed-container-elevation-shadow)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-disabled-state-foreground-color);background-color:var(--mat-fab-disabled-state-container-color)}.mat-mdc-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-mini-fab{color:var(--mat-fab-small-foreground-color, inherit);box-shadow:var(--mdc-fab-small-container-elevation-shadow)}.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-small-touch-target-display)}.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-small-ripple-color)}.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-state-layer-color)}.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)}.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)}.mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-pressed-state-layer-opacity)}.mat-mdc-mini-fab:hover{box-shadow:var(--mdc-fab-small-hover-container-elevation-shadow)}.mat-mdc-mini-fab:focus{box-shadow:var(--mdc-fab-small-focus-container-elevation-shadow)}.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:var(--mdc-fab-small-pressed-container-elevation-shadow)}.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);background-color:var(--mat-fab-small-disabled-state-container-color)}.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-extended-fab{box-shadow:var(--mdc-extended-fab-container-elevation-shadow)}.mat-mdc-extended-fab:hover{box-shadow:var(--mdc-extended-fab-hover-container-elevation-shadow)}.mat-mdc-extended-fab:focus{box-shadow:var(--mdc-extended-fab-focus-container-elevation-shadow)}.mat-mdc-extended-fab:active,.mat-mdc-extended-fab:focus:active{box-shadow:var(--mdc-extended-fab-pressed-container-elevation-shadow)}.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}.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons,.mat-mdc-extended-fab>.mat-icon[dir=rtl],.mat-mdc-extended-fab>.material-icons[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons{margin-left:12px;margin-right:calc(12px - 20px)}[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 .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-extended-fab .mdc-button__label+.material-icons[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}'],encapsulation:2,changeDetection:0})}return L})(),h=(()=>{class L extends J{constructor(r,v,V,N){super(r,v,V,N),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-icon-button",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:R,ngContentSelectors:z,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(),t.nrm(0,"span",0),t.SdG(1),t.nrm(2,"span",1)(3,"span",2))},styles:['.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}@media screen and (forced-colors: active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{display:block}}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button[hidden]{display:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;display:none}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring{border-color:CanvasText}}.mdc-icon-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring::after{border-color:CanvasText}}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.mat-mdc-icon-button{color:var(--mdc-icon-button-icon-color)}.mat-mdc-icon-button .mdc-button__icon{font-size:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button svg,.mat-mdc-icon-button img{width:var(--mdc-icon-button-icon-size);height:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button:disabled{color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button{border-radius:50%;flex-shrink:0;text-align:center;width:var(--mdc-icon-button-state-layer-size, 48px);height:var(--mdc-icon-button-state-layer-size, 48px);padding:calc(calc(var(--mdc-icon-button-state-layer-size, 48px) - var(--mdc-icon-button-icon-size, 24px)) / 2);font-size:var(--mdc-icon-button-icon-size);-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button svg{vertical-align:baseline}.mat-mdc-icon-button[disabled],.mat-mdc-icon-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.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{z-index:1}.mat-mdc-icon-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-icon-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color)}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color)}.mat-mdc-icon-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-disabled-state-layer-color)}.mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-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)}.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity)}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-icon-button-touch-target-display)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:50%}.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}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return L})(),k=(()=>{class L{static#e=this.\u0275fac=function(v){return new(v||L)};static#t=this.\u0275mod=t.$C({type:L});static#i=this.\u0275inj=t.G2t({imports:[S.yE,S.pZ,S.yE]})}return L})()},5596:(Qe,te,g)=>{"use strict";g.d(te,{Hu:()=>Te,Lc:()=>z,MM:()=>$,RN:()=>T,dh:()=>y,m2:()=>R});var e=g(4438),t=g(177),w=g(6600);const S=["*"],f=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],I=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],d=new e.nKC("MAT_CARD_CONFIG");let T=(()=>{class de{constructor(n){this.appearance=n?.appearance||"raised"}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU(d,8))};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:4,hostBindings:function(c,m){2&c&&e.AVh("mat-mdc-card-outlined","outlined"===m.appearance)("mdc-card--outlined","outlined"===m.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],standalone:!0,features:[e.aNF],ngContentSelectors:S,decls:1,vars:0,template:function(c,m){1&c&&(e.NAR(),e.SdG(0))},styles:['.mdc-card{display:flex;flex-direction:column;box-sizing:border-box}.mdc-card::after{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;pointer-events:none}@media screen and (forced-colors: active){.mdc-card::after{border-color:CanvasText}}.mdc-card--outlined::after{border:none}.mdc-card__content{border-radius:inherit;height:100%}.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}.mdc-card__media--square::before{margin-top:100%}.mdc-card__media--16-9::before{margin-top:56.25%}.mdc-card__media-content{position:absolute;top:0;right:0;bottom:0;left:0;box-sizing:border-box}.mdc-card__primary-action{display:flex;flex-direction:column;box-sizing:border-box;position:relative;outline:none;color:inherit;text-decoration:none;cursor:pointer;overflow:hidden}.mdc-card__primary-action:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__primary-action:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mdc-card__actions--full-bleed{padding:0}.mdc-card__action-buttons,.mdc-card__action-icons{display:flex;flex-direction:row;align-items:center;box-sizing:border-box}.mdc-card__action-icons{color:rgba(0, 0, 0, 0.6);flex-grow:1;justify-content:flex-end}.mdc-card__action-buttons+.mdc-card__action-icons{margin-left:16px;margin-right:0}[dir=rtl] .mdc-card__action-buttons+.mdc-card__action-icons,.mdc-card__action-buttons+.mdc-card__action-icons[dir=rtl]{margin-left:0;margin-right:16px}.mdc-card__action{display:inline-flex;flex-direction:row;align-items:center;box-sizing:border-box;justify-content:center;cursor:pointer;user-select:none}.mdc-card__action:focus{outline:none}.mdc-card__action--button{margin-left:0;margin-right:8px;padding:0 8px}[dir=rtl] .mdc-card__action--button,.mdc-card__action--button[dir=rtl]{margin-left:8px;margin-right:0}.mdc-card__action--button:last-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-card__action--button:last-child,.mdc-card__action--button:last-child[dir=rtl]{margin-left:0;margin-right:0}.mdc-card__actions--full-bleed .mdc-card__action--button{justify-content:space-between;width:100%;height:auto;max-height:none;margin:0;padding:8px 16px;text-align:left}[dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button,.mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl]{text-align:right}.mdc-card__action--icon{margin:-6px 0;padding:12px}.mdc-card__action--icon:not(:disabled){color:rgba(0, 0, 0, 0.6)}.mat-mdc-card{border-radius:var(--mdc-elevated-card-container-shape);background-color:var(--mdc-elevated-card-container-color);border-width:0;border-style:solid;border-color:var(--mdc-elevated-card-container-color);box-shadow:var(--mdc-elevated-card-container-elevation)}.mat-mdc-card .mdc-card::after{border-radius:var(--mdc-elevated-card-container-shape)}.mat-mdc-card-outlined{border-width:var(--mdc-outlined-card-outline-width);border-style:solid;border-color:var(--mdc-outlined-card-outline-color);border-radius:var(--mdc-outlined-card-container-shape);background-color:var(--mdc-outlined-card-container-color);box-shadow:var(--mdc-outlined-card-container-elevation)}.mat-mdc-card-outlined .mdc-card::after{border-radius:var(--mdc-outlined-card-container-shape)}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font);line-height:var(--mat-card-title-text-line-height);font-size:var(--mat-card-title-text-size);letter-spacing:var(--mat-card-title-text-tracking);font-weight:var(--mat-card-title-text-weight)}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color);font-family:var(--mat-card-subtitle-text-font);line-height:var(--mat-card-subtitle-text-line-height);font-size:var(--mat-card-subtitle-text-size);letter-spacing:var(--mat-card-subtitle-text-tracking);font-weight:var(--mat-card-subtitle-text-weight)}.mat-mdc-card{position:relative}.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}'],encapsulation:2,changeDetection:0})}return de})(),y=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"],standalone:!0})}return de})(),R=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"],standalone:!0})}return de})(),z=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"],standalone:!0})}return de})(),$=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],standalone:!0,features:[e.aNF],ngContentSelectors:I,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(c,m){1&c&&(e.NAR(f),e.SdG(0),e.j41(1,"div",0),e.SdG(2,1),e.k0s(),e.SdG(3,2))},encapsulation:2,changeDetection:0})}return de})(),Te=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275mod=e.$C({type:de});static#i=this.\u0275inj=e.G2t({imports:[w.yE,t.MD,w.yE]})}return de})()},2765:(Qe,te,g)=>{"use strict";g.d(te,{So:()=>z,g7:()=>Q});var e=g(4438),t=g(9417),w=g(6600);const S=["input"],l=["label"],x=["*"],f=new e.nKC("mat-checkbox-default-options",{providedIn:"root",factory:I});function I(){return{color:"accent",clickAction:"check-indeterminate"}}var d=function(J){return J[J.Init=0]="Init",J[J.Checked=1]="Checked",J[J.Unchecked=2]="Unchecked",J[J.Indeterminate=3]="Indeterminate",J}(d||{});const T={provide:t.kq,useExisting:(0,e.Rfq)(()=>z),multi:!0};class y{}let F=0;const R=I();let z=(()=>{class J{focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(ie){const ge=new y;return ge.source=this,ge.checked=ie,ge}_getAnimationTargetElement(){return this._inputElement?.nativeElement}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ie,ge,ae,Me,Te,de){this._elementRef=ie,this._changeDetectorRef=ge,this._ngZone=ae,this._animationMode=Te,this._options=de,this._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"},this.ariaLabel="",this.ariaLabelledby=null,this.labelPosition="after",this.name=null,this.change=new e.bkB,this.indeterminateChange=new e.bkB,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=d.Init,this._controlValueAccessorChangeFn=()=>{},this._validatorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||R,this.color=this._options.color||R.color,this.tabIndex=parseInt(Me)||0,this.id=this._uniqueId="mat-mdc-checkbox-"+ ++F}ngOnChanges(ie){ie.required&&this._validatorChangeFn()}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}get checked(){return this._checked}set checked(ie){ie!=this.checked&&(this._checked=ie,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(ie){ie!==this.disabled&&(this._disabled=ie,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(ie){const ge=ie!=this._indeterminate;this._indeterminate=ie,ge&&(this._transitionCheckState(this._indeterminate?d.Indeterminate:this.checked?d.Checked:d.Unchecked),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(ie){this.checked=!!ie}registerOnChange(ie){this._controlValueAccessorChangeFn=ie}registerOnTouched(ie){this._onTouched=ie}setDisabledState(ie){this.disabled=ie}validate(ie){return this.required&&!0!==ie.value?{required:!0}:null}registerOnValidatorChange(ie){this._validatorChangeFn=ie}_transitionCheckState(ie){let ge=this._currentCheckState,ae=this._getAnimationTargetElement();if(ge!==ie&&ae&&(this._currentAnimationClass&&ae.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(ge,ie),this._currentCheckState=ie,this._currentAnimationClass.length>0)){ae.classList.add(this._currentAnimationClass);const Me=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{ae.classList.remove(Me)},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 ie=this._options?.clickAction;this.disabled||"noop"===ie?!this.disabled&&"noop"===ie&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==ie&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?d.Checked:d.Unchecked),this._emitChangeEvent())}_onInteractionEvent(ie){ie.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(ie,ge){if("NoopAnimations"===this._animationMode)return"";switch(ie){case d.Init:if(ge===d.Checked)return this._animationClasses.uncheckedToChecked;if(ge==d.Indeterminate)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case d.Unchecked:return ge===d.Checked?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case d.Checked:return ge===d.Unchecked?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case d.Indeterminate:return ge===d.Checked?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(ie){const ge=this._inputElement;ge&&(ge.nativeElement.indeterminate=ie)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(ie){ie.target&&this._labelElement.nativeElement.contains(ie.target)&&ie.stopPropagation()}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.kS0("tabindex"),e.rXU(e.bc$,8),e.rXU(f,8))};static#t=this.\u0275cmp=e.VBU({type:J,selectors:[["mat-checkbox"]],viewQuery:function(ge,ae){if(1&ge&&(e.GBs(S,5),e.GBs(l,5),e.GBs(w.r6,5)),2&ge){let Me;e.mGM(Me=e.lsd())&&(ae._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ae._labelElement=Me.first),e.mGM(Me=e.lsd())&&(ae.ripple=Me.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:14,hostBindings:function(ge,ae){2&ge&&(e.Mr5("id",ae.id),e.BMQ("tabindex",null)("aria-label",null)("aria-labelledby",null),e.HbH(ae.color?"mat-"+ae.color:"mat-accent"),e.AVh("_mat-animation-noopable","NoopAnimations"===ae._animationMode)("mdc-checkbox--disabled",ae.disabled)("mat-mdc-checkbox-disabled",ae.disabled)("mat-mdc-checkbox-checked",ae.checked))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],id:"id",required:[2,"required","required",e.L39],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",ie=>null==ie?void 0:(0,e.Udg)(ie)],color:"color",checked:[2,"checked","checked",e.L39],disabled:[2,"disabled","disabled",e.L39],indeterminate:[2,"indeterminate","indeterminate",e.L39]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],standalone:!0,features:[e.Jv_([T,{provide:t.cz,useExisting:J,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:x,decls:15,vars:19,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-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"]],template:function(ge,ae){if(1&ge){const Me=e.RV6();e.NAR(),e.j41(0,"div",3),e.bIt("click",function(de){return e.eBV(Me),e.Njj(ae._preventBubblingFromLabel(de))}),e.j41(1,"div",4,0)(3,"div",5),e.bIt("click",function(){return e.eBV(Me),e.Njj(ae._onTouchTargetClick())}),e.k0s(),e.j41(4,"input",6,1),e.bIt("blur",function(){return e.eBV(Me),e.Njj(ae._onBlur())})("click",function(){return e.eBV(Me),e.Njj(ae._onInputClick())})("change",function(de){return e.eBV(Me),e.Njj(ae._onInteractionEvent(de))}),e.k0s(),e.nrm(6,"div",7),e.j41(7,"div",8),e.qSk(),e.j41(8,"svg",9),e.nrm(9,"path",10),e.k0s(),e.joV(),e.nrm(10,"div",11),e.k0s(),e.nrm(11,"div",12),e.k0s(),e.j41(12,"label",13,2),e.SdG(14),e.k0s()()}if(2&ge){const Me=e.sdS(2);e.Y8G("labelPosition",ae.labelPosition),e.R7$(4),e.AVh("mdc-checkbox--selected",ae.checked),e.Y8G("checked",ae.checked)("indeterminate",ae.indeterminate)("disabled",ae.disabled)("id",ae.inputId)("required",ae.required)("tabIndex",ae.disabled?-1:ae.tabIndex),e.BMQ("aria-label",ae.ariaLabel||null)("aria-labelledby",ae.ariaLabelledby)("aria-describedby",ae.ariaDescribedby)("aria-checked",ae.indeterminate?"mixed":null)("name",ae.name)("value",ae.value),e.R7$(7),e.Y8G("matRippleTrigger",Me)("matRippleDisabled",ae.disableRipple||ae.disabled)("matRippleCentered",!0),e.R7$(),e.Y8G("for",ae.inputId)}},dependencies:[w.r6,w.tO],styles:['.mdc-touch-target-wrapper{display:inline}@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:mdc-animation-deceleration-curve-timing-function;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}}.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}.mdc-checkbox[hidden]{display:none}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{border-color:CanvasText}}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{border-color:CanvasText}}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-checkbox__mixedmark{margin:0 1px}}.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 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--upgraded .mdc-checkbox__checkmark{opacity:1}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms 0ms 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 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.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 0s;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background{transition:border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit}.mdc-checkbox__native-control:disabled{cursor:default;pointer-events:none}.mdc-checkbox--touch{margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox--touch .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark{transition:opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 180ms 0ms 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,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__mixedmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark{transition:none}.mdc-checkbox{padding:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-disabled-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled]~.mdc-checkbox__background{border-color:transparent;background-color:var(--mdc-checkbox-disabled-selected-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}}.mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}@keyframes mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}}@keyframes mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}}.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:hover.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2)}.mdc-checkbox .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:focus:not(:checked):not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-focus-icon-color);background-color:var(--mdc-checkbox-selected-focus-icon-color)}.mdc-checkbox:hover .mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox:hover .mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox .mdc-checkbox__background{-webkit-print-color-adjust:exact;color-adjust:exact}.mat-mdc-checkbox._mat-animation-noopable *,.mat-mdc-checkbox._mat-animation-noopable *::before{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default;color:var(--mat-checkbox-disabled-label-color)}.mat-mdc-checkbox label:empty{display:none}.cdk-high-contrast-active .mat-mdc-checkbox.mat-mdc-checkbox-disabled{opacity:.5}.cdk-high-contrast-active .mat-mdc-checkbox .mdc-checkbox__checkmark{--mdc-checkbox-selected-checkmark-color: CanvasText;--mdc-checkbox-disabled-selected-checkmark-color: CanvasText}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.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-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%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-checkbox-touch-target-display)}.mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return J})(),Q=(()=>{class J{static#e=this.\u0275fac=function(ge){return new(ge||J)};static#t=this.\u0275mod=e.$C({type:J});static#i=this.\u0275inj=e.G2t({imports:[z,w.yE,w.yE]})}return J})()},6471:(Qe,te,g)=>{"use strict";g.d(te,{Jl:()=>qe,YN:()=>at});var e=g(4438),t=g(177),w=g(6600),S=g(8617),l=g(1413),x=g(7786),f=g(6697),y=(g(6977),g(9172),g(5558),g(7336));g(8203),g(9417),g(6467);const W=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],$=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"];function j(pt,Xt){1&pt&&(e.j41(0,"span",3),e.SdG(1,1),e.k0s())}function Q(pt,Xt){1&pt&&(e.j41(0,"span",6),e.SdG(1,2),e.k0s())}const k=new e.nKC("mat-chips-default-options",{providedIn:"root",factory:()=>({separatorKeyCodes:[y.Fm]})}),L=new e.nKC("MatChipAvatar"),_=new e.nKC("MatChipTrailingIcon"),r=new e.nKC("MatChipRemove"),v=new e.nKC("MatChip");let V=(()=>{class pt{get disabled(){return this._disabled||this._parentChip.disabled}set disabled(ye){this._disabled=ye}_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(ye,ue){this._elementRef=ye,this._parentChip=ue,this.isInteractive=!0,this._isPrimary=!0,this._disabled=!1,this.tabIndex=-1,this._allowFocusWhenDisabled=!1,"BUTTON"===ye.nativeElement.nodeName&&ye.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(ye){!this.disabled&&this.isInteractive&&this._isPrimary&&(ye.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(ye){(ye.keyCode===y.Fm||ye.keyCode===y.t6)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(ye.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static#e=this.\u0275fac=function(ue){return new(ue||pt)(e.rXU(e.aKT),e.rXU(v))};static#t=this.\u0275dir=e.FsC({type:pt,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:9,hostBindings:function(ue,Ie){1&ue&&e.bIt("click",function(Xe){return Ie._handleClick(Xe)})("keydown",function(Xe){return Ie._handleKeydown(Xe)}),2&ue&&(e.BMQ("tabindex",Ie._getTabindex())("disabled",Ie._getDisabledAttribute())("aria-disabled",Ie.disabled),e.AVh("mdc-evolution-chip__action--primary",Ie._isPrimary)("mdc-evolution-chip__action--presentational",!Ie.isInteractive)("mdc-evolution-chip__action--trailing",!Ie._isPrimary))},inputs:{isInteractive:"isInteractive",disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ye=>null==ye?-1:(0,e.Udg)(ye)],_allowFocusWhenDisabled:"_allowFocusWhenDisabled"},standalone:!0,features:[e.GFd]})}return pt})(),ze=0,qe=(()=>{class pt{_hasFocus(){return this._hasFocusInternal}get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(ye){this._value=ye}get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(ye){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,ye)}constructor(ye,ue,Ie,He,Xe,yt,Ye,rt){this._changeDetectorRef=ye,this._elementRef=ue,this._ngZone=Ie,this._focusMonitor=He,this._globalRippleOptions=Ye,this._onFocus=new l.B,this._onBlur=new l.B,this.role=null,this._hasFocusInternal=!1,this.id="mat-mdc-chip-"+ze++,this.ariaLabel=null,this.ariaDescription=null,this._ariaDescriptionId=`${this.id}-aria-description`,this.removable=!0,this.highlighted=!1,this.disableRipple=!1,this.disabled=!1,this.tabIndex=-1,this.removed=new e.bkB,this.destroyed=new e.bkB,this.basicChipAttrName="mat-basic-chip",this._rippleLoader=(0,e.WQX)(w.Ej),this._document=Xe,this._animationsDisabled="NoopAnimations"===yt,null!=rt&&(this.tabIndex=parseInt(rt)??-1),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){const ye=this._elementRef.nativeElement;this._isBasicChip=ye.hasAttribute(this.basicChipAttrName)||ye.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,x.h)(this._allLeadingIcons.changes,this._allTrailingIcons.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.removed.emit({chip:this})}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(ye){(ye.keyCode===y.G_&&!ye.repeat||ye.keyCode===y.SJ)&&(ye.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(ye){return this._getActions().find(ue=>{const Ie=ue._elementRef.nativeElement;return Ie===ye||Ie.contains(ye)})}_getActions(){const ye=[];return this.primaryAction&&ye.push(this.primaryAction),this.removeIcon&&ye.push(this.removeIcon),this.trailingIcon&&ye.push(this.trailingIcon),ye}_handlePrimaryActionInteraction(){}_getTabIndex(){return this.role?this.disabled?-1:this.tabIndex:null}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(ye=>{const ue=null!==ye;ue!==this._hasFocusInternal&&(this._hasFocusInternal=ue,ue?this._onFocus.next({chip:this}):this._ngZone.onStable.pipe((0,f.s)(1)).subscribe(()=>this._ngZone.run(()=>this._onBlur.next({chip:this}))))})}static#e=this.\u0275fac=function(ue){return new(ue||pt)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(S.FN),e.rXU(t.qQ),e.rXU(e.bc$,8),e.rXU(w.$E,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:pt,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(ue,Ie,He){if(1&ue&&(e.wni(He,L,5),e.wni(He,_,5),e.wni(He,r,5),e.wni(He,L,5),e.wni(He,_,5),e.wni(He,r,5)),2&ue){let Xe;e.mGM(Xe=e.lsd())&&(Ie.leadingIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie.trailingIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie.removeIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie._allLeadingIcons=Xe),e.mGM(Xe=e.lsd())&&(Ie._allTrailingIcons=Xe),e.mGM(Xe=e.lsd())&&(Ie._allRemoveIcons=Xe)}},viewQuery:function(ue,Ie){if(1&ue&&e.GBs(V,5),2&ue){let He;e.mGM(He=e.lsd())&&(Ie.primaryAction=He.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:32,hostBindings:function(ue,Ie){1&ue&&e.bIt("keydown",function(Xe){return Ie._handleKeydown(Xe)}),2&ue&&(e.Mr5("id",Ie.id),e.BMQ("role",Ie.role)("tabindex",Ie._getTabIndex())("aria-label",Ie.ariaLabel),e.HbH("mat-"+(Ie.color||"primary")),e.AVh("mdc-evolution-chip",!Ie._isBasicChip)("mdc-evolution-chip--disabled",Ie.disabled)("mdc-evolution-chip--with-trailing-action",Ie._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",Ie.leadingIcon)("mdc-evolution-chip--with-primary-icon",Ie.leadingIcon)("mdc-evolution-chip--with-avatar",Ie.leadingIcon)("mat-mdc-chip-with-avatar",Ie.leadingIcon)("mat-mdc-chip-highlighted",Ie.highlighted)("mat-mdc-chip-disabled",Ie.disabled)("mat-mdc-basic-chip",Ie._isBasicChip)("mat-mdc-standard-chip",!Ie._isBasicChip)("mat-mdc-chip-with-trailing-icon",Ie._hasTrailingIcon())("_mat-animation-noopable",Ie._animationsDisabled))},inputs:{role:"role",id:"id",ariaLabel:[0,"aria-label","ariaLabel"],ariaDescription:[0,"aria-description","ariaDescription"],value:"value",color:"color",removable:[2,"removable","removable",e.L39],highlighted:[2,"highlighted","highlighted",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ye=>null==ye?void 0:(0,e.Udg)(ye)]},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],standalone:!0,features:[e.Jv_([{provide:v,useExisting:pt}]),e.GFd,e.aNF],ngContentSelectors:$,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-mdc-focus-indicator"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(ue,Ie){1&ue&&(e.NAR(W),e.nrm(0,"span",0),e.j41(1,"span",1)(2,"span",2),e.DNE(3,j,2,0,"span",3),e.j41(4,"span",4),e.SdG(5),e.nrm(6,"span",5),e.k0s()()(),e.DNE(7,Q,2,0,"span",6)),2&ue&&(e.R7$(2),e.Y8G("isInteractive",!1),e.R7$(),e.vxM(Ie.leadingIcon?3:-1),e.R7$(4),e.vxM(Ie._hasTrailingIcon()?7:-1))},dependencies:[V],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 .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{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}.mdc-evolution-chip__action--primary{overflow-x:hidden}.mdc-evolution-chip__action--trailing{position:relative;overflow:visible}.mdc-evolution-chip__action--primary:before{box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1}.mdc-evolution-chip--touch{margin-top:8px;margin-bottom:8px}.mdc-evolution-chip__action-touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-evolution-chip__text-label{white-space:nowrap;user-select:none;text-overflow:ellipsis;overflow:hidden}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mdc-evolution-chip__checkmark-background{opacity:0}.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__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.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--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__graphic{transition:width 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark{transition:opacity 50ms 0ms linear,transform 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-50%, -50%)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@keyframes mdc-evolution-chip-enter{from{transform:scale(0.8);opacity:.4}to{transform:scale(1);opacity:1}}.mdc-evolution-chip--enter{animation:mdc-evolution-chip-enter 100ms 0ms cubic-bezier(0, 0, 0.2, 1)}@keyframes mdc-evolution-chip-exit{from{opacity:1}to{opacity:0}}.mdc-evolution-chip--exit{animation:mdc-evolution-chip-exit 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-evolution-chip--hidden{opacity:0;pointer-events:none;transition:width 150ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-standard-chip{border-radius:var(--mdc-chip-container-shape-radius);height:var(--mdc-chip-container-height)}.mat-mdc-standard-chip .mdc-evolution-chip__ripple{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mdc-chip-with-avatar-avatar-shape-radius)}.mat-mdc-standard-chip.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--with-primary-icon){--mdc-chip-graphic-selected-width:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{height:var(--mdc-chip-with-avatar-avatar-size);width:var(--mdc-chip-with-avatar-avatar-size);font-size:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational).mdc-ripple-upgraded--background-focused:before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational):not(.mdc-ripple-upgraded):focus:before{border-color:var(--mdc-chip-focus-outline-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-disabled-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-outline-width)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-selected-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-flat-disabled-selected-container-color)}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mdc-chip-label-text-font);line-height:var(--mdc-chip-label-text-line-height);font-size:var(--mdc-chip-label-text-size);font-weight:var(--mdc-chip-label-text-weight);letter-spacing:var(--mdc-chip-label-text-tracking)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-selected-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{height:var(--mdc-chip-with-icon-icon-size);width:var(--mdc-chip-with-icon-icon-size);font-size:var(--mdc-chip-with-icon-icon-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-selected-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-hover-state-layer-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-hover-state-layer-opacity)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-selected-hover-state-layer-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mat-mdc-chip-highlighted{--mdc-chip-with-icon-icon-color:var(--mdc-chip-with-icon-selected-icon-color);--mdc-chip-elevated-container-color:var(--mdc-chip-elevated-selected-container-color);--mdc-chip-label-text-color:var(--mdc-chip-selected-label-text-color);--mdc-chip-outline-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color)}.mat-mdc-chip-selected .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-focus-state-layer-color)}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-hover-state-layer-color);opacity:var(--mdc-chip-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(--mdc-chip-selected-hover-state-layer-color);opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color);opacity:var(--mdc-chip-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(--mdc-chip-selected-focus-state-layer-color);opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mdc-evolution-chip--disabled:not(.mdc-evolution-chip--selected) .mat-mdc-chip-avatar{opacity:var(--mdc-chip-with-avatar-disabled-avatar-opacity)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{opacity:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity)}.mdc-evolution-chip--disabled.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{opacity:var(--mdc-chip-with-icon-disabled-icon-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:var(--mat-chip-disabled-container-opacity)}.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)}.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)}.mat-mdc-chip-remove{opacity:var(--mat-chip-trailing-action-opacity)}.mat-mdc-chip-remove:focus{opacity:var(--mat-chip-trailing-action-focus-opacity)}.mat-mdc-chip-remove::after{background:var(--mat-chip-trailing-action-state-layer-color)}.mat-mdc-chip-remove:hover::after{opacity:var(--mat-chip-trailing-action-hover-state-layer-opacity)}.mat-mdc-chip-remove:focus::after{opacity:var(--mat-chip-trailing-action-focus-state-layer-opacity)}.mat-mdc-chip-selected .mat-mdc-chip-remove::after,.mat-mdc-chip-highlighted .mat-mdc-chip-remove::after{background:var(--mat-chip-selected-trailing-action-state-layer-color)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove{opacity:calc(var(--mat-chip-trailing-action-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove:focus{opacity:calc(var(--mat-chip-trailing-action-focus-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-style:solid}.mat-mdc-standard-chip .mdc-evolution-chip__checkmark{height:20px;width:20px}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.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,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.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,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:12px}.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}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{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__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.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,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{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__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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{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--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{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__ripple--trailing{left:8px;right:initial}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.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,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.cdk-high-contrast-active .mat-mdc-standard-chip{outline:solid 1px}.cdk-high-contrast-active .mat-mdc-standard-chip .mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}.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 .mdc-evolution-chip__cell--primary{flex-basis:100%}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit}.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-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.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(--mdc-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-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-remove::before{margin:calc(var(--mat-mdc-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-remove::after{content:"";display:block;opacity:0;position:absolute;top:-2px;bottom:-2px;left:6px;right:6px;border-radius:50%}.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}.cdk-high-contrast-active .mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}.mat-mdc-chip-action:focus .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return pt})(),at=(()=>{class pt{static#e=this.\u0275fac=function(ue){return new(ue||pt)};static#t=this.\u0275mod=e.$C({type:pt});static#i=this.\u0275inj=e.G2t({providers:[w.es,{provide:k,useValue:{separatorKeyCodes:[y.Fm]}}],imports:[w.yE,w.pZ,w.yE]})}return pt})()},6600:(Qe,te,g)=>{"use strict";g.d(te,{r5:()=>ie,ed:()=>ge,MJ:()=>V,es:()=>ce,de:()=>N,Ju:()=>r,QC:()=>Vt,is:()=>Nt,$E:()=>Xe,yE:()=>Te,Np:()=>_e,WX:()=>se,wT:()=>zt,Sy:()=>dt,MI:()=>$t,wg:()=>rt,O5:()=>Yt,r6:()=>yt,Ej:()=>gt,pZ:()=>Ye,xW:()=>ze,ug:()=>Ie,X0:()=>k,tO:()=>$e,jb:()=>Jt,TL:()=>St});var e=g(4438),t=g(8617),w=g(8203),l=g(177),x=g(6860),f=g(4085),I=g(1413),d=g(7336);const F=["text"],R=[[["mat-icon"]],"*"],z=["mat-icon","*"];function W(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",1),2&Fe){const et=e.XpG();e.Y8G("disabled",et.disabled)("state",et.selected?"checked":"unchecked")}}function $(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",3),2&Fe){const et=e.XpG();e.Y8G("disabled",et.disabled)}}function j(Fe,Ge){if(1&Fe&&(e.j41(0,"span",4),e.EFF(1),e.k0s()),2&Fe){const et=e.XpG();e.R7$(),e.SpI("(",et.group.label,")")}}const Q=["mat-internal-form-field",""],J=["*"];let ie=(()=>{class Fe{static#e=this.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)";static#t=this.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)";static#i=this.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)";static#n=this.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)"}return Fe})(),ge=(()=>{class Fe{static#e=this.COMPLEX="375ms";static#t=this.ENTERING="225ms";static#i=this.EXITING="195ms"}return Fe})();const Me=new e.nKC("mat-sanity-checks",{providedIn:"root",factory:function ae(){return!0}});let Te=(()=>{class Fe{constructor(et,st,Tt){this._sanityChecks=st,this._document=Tt,this._hasDoneGlobalChecks=!1,et._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(et){return!(0,x.v8)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[et])}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.KVO(t.Q_),e.KVO(Me,8),e.KVO(l.qQ))};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[w.jI,w.jI]})}return Fe})();class k{constructor(Ge,et,st,Tt,mi){this._defaultMatcher=Ge,this.ngControl=et,this._parentFormGroup=st,this._parentForm=Tt,this._stateChanges=mi,this.errorState=!1}updateErrorState(){const Ge=this.errorState,et=this._parentFormGroup||this._parentForm,st=this.matcher||this._defaultMatcher,Tt=this.ngControl?this.ngControl.control:null,mi=st?.isErrorState(Tt,et)??!1;mi!==Ge&&(this.errorState=mi,this._stateChanges.next())}}const r=new e.nKC("MAT_DATE_LOCALE",{providedIn:"root",factory:function v(){return(0,e.WQX)(e.xe9)}});class V{constructor(){this._localeChanges=new I.B,this.localeChanges=this._localeChanges}getValidDateOrNull(Ge){return this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:null}deserialize(Ge){return null==Ge||this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:this.invalid()}setLocale(Ge){this.locale=Ge,this._localeChanges.next()}compareDate(Ge,et){return this.getYear(Ge)-this.getYear(et)||this.getMonth(Ge)-this.getMonth(et)||this.getDate(Ge)-this.getDate(et)}sameDate(Ge,et){if(Ge&&et){let st=this.isValid(Ge),Tt=this.isValid(et);return st&&Tt?!this.compareDate(Ge,et):st==Tt}return Ge==et}clampDate(Ge,et,st){return et&&this.compareDate(Ge,et)<0?et:st&&this.compareDate(Ge,st)>0?st:Ge}}const N=new e.nKC("mat-date-formats"),ne=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/;function Ee(Fe,Ge){const et=Array(Fe);for(let st=0;st{class Fe extends V{constructor(et){super(),this.useUtcForDisplay=!1,this._matDateLocale=(0,e.WQX)(r,{optional:!0}),void 0!==et&&(this._matDateLocale=et),super.setLocale(this._matDateLocale)}getYear(et){return et.getFullYear()}getMonth(et){return et.getMonth()}getDate(et){return et.getDate()}getDayOfWeek(et){return et.getDay()}getMonthNames(et){const st=new Intl.DateTimeFormat(this.locale,{month:et,timeZone:"utc"});return Ee(12,Tt=>this._format(st,new Date(2017,Tt,1)))}getDateNames(){const et=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return Ee(31,st=>this._format(et,new Date(2017,0,st+1)))}getDayOfWeekNames(et){const st=new Intl.DateTimeFormat(this.locale,{weekday:et,timeZone:"utc"});return Ee(7,Tt=>this._format(st,new Date(2017,0,Tt+1)))}getYearName(et){const st=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(st,et)}getFirstDayOfWeek(){return 0}getNumDaysInMonth(et){return this.getDate(this._createDateWithOverflow(this.getYear(et),this.getMonth(et)+1,0))}clone(et){return new Date(et.getTime())}createDate(et,st,Tt){let mi=this._createDateWithOverflow(et,st,Tt);return mi.getMonth(),mi}today(){return new Date}parse(et,st){return"number"==typeof et?new Date(et):et?new Date(Date.parse(et)):null}format(et,st){if(!this.isValid(et))throw Error("NativeDateAdapter: Cannot format invalid date.");const Tt=new Intl.DateTimeFormat(this.locale,{...st,timeZone:"utc"});return this._format(Tt,et)}addCalendarYears(et,st){return this.addCalendarMonths(et,12*st)}addCalendarMonths(et,st){let Tt=this._createDateWithOverflow(this.getYear(et),this.getMonth(et)+st,this.getDate(et));return this.getMonth(Tt)!=((this.getMonth(et)+st)%12+12)%12&&(Tt=this._createDateWithOverflow(this.getYear(Tt),this.getMonth(Tt),0)),Tt}addCalendarDays(et,st){return this._createDateWithOverflow(this.getYear(et),this.getMonth(et),this.getDate(et)+st)}toIso8601(et){return[et.getUTCFullYear(),this._2digit(et.getUTCMonth()+1),this._2digit(et.getUTCDate())].join("-")}deserialize(et){if("string"==typeof et){if(!et)return null;if(ne.test(et)){let st=new Date(et);if(this.isValid(st))return st}}return super.deserialize(et)}isDateInstance(et){return et instanceof Date}isValid(et){return!isNaN(et.getTime())}invalid(){return new Date(NaN)}_createDateWithOverflow(et,st,Tt){const mi=new Date;return mi.setFullYear(et,st,Tt),mi.setHours(0,0,0,0),mi}_2digit(et){return("00"+et).slice(-2)}_format(et,st){const Tt=new Date;return Tt.setUTCFullYear(st.getFullYear(),st.getMonth(),st.getDate()),Tt.setUTCHours(st.getHours(),st.getMinutes(),st.getSeconds(),st.getMilliseconds()),et.format(Tt)}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.KVO(r,8))};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();const qe={parse:{dateInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"}}};let se=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({providers:[X()]})}return Fe})();function X(Fe=qe){return[{provide:V,useClass:ze},{provide:N,useValue:Fe}]}let ce=(()=>{class Fe{isErrorState(et,st){return!!(et&&et.invalid&&(et.touched||st&&st.submitted))}static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}return Fe})(),_e=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te,Te]})}return Fe})();var be=function(Fe){return Fe[Fe.FADING_IN=0]="FADING_IN",Fe[Fe.VISIBLE=1]="VISIBLE",Fe[Fe.FADING_OUT=2]="FADING_OUT",Fe[Fe.HIDDEN=3]="HIDDEN",Fe}(be||{});class pe{constructor(Ge,et,st,Tt=!1){this._renderer=Ge,this.element=et,this.config=st,this._animationForciblyDisabledThroughCss=Tt,this.state=be.HIDDEN}fadeOut(){this._renderer.fadeOutRipple(this)}}const Ze=(0,x.BQ)({passive:!0,capture:!0});class _t{constructor(){this._events=new Map,this._delegateEventHandler=Ge=>{const et=(0,x.Fb)(Ge);et&&this._events.get(Ge.type)?.forEach((st,Tt)=>{(Tt===et||Tt.contains(et))&&st.forEach(mi=>mi.handleEvent(Ge))})}}addHandler(Ge,et,st,Tt){const mi=this._events.get(et);if(mi){const Kt=mi.get(st);Kt?Kt.add(Tt):mi.set(st,new Set([Tt]))}else this._events.set(et,new Map([[st,new Set([Tt])]])),Ge.runOutsideAngular(()=>{document.addEventListener(et,this._delegateEventHandler,Ze)})}removeHandler(Ge,et,st){const Tt=this._events.get(Ge);if(!Tt)return;const mi=Tt.get(et);mi&&(mi.delete(st),0===mi.size&&Tt.delete(et),0===Tt.size&&(this._events.delete(Ge),document.removeEventListener(Ge,this._delegateEventHandler,Ze)))}}const at={enterDuration:225,exitDuration:150},Xt=(0,x.BQ)({passive:!0,capture:!0}),ye=["mousedown","touchstart"],ue=["mouseup","mouseleave","touchend","touchcancel"];class Ie{static#e=this._eventManager=new _t;constructor(Ge,et,st,Tt){this._target=Ge,this._ngZone=et,this._platform=Tt,this._isPointerDown=!1,this._activeRipples=new Map,this._pointerUpEventsRegistered=!1,Tt.isBrowser&&(this._containerElement=(0,f.i8)(st))}fadeInRipple(Ge,et,st={}){const Tt=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),mi={...at,...st.animation};st.centered&&(Ge=Tt.left+Tt.width/2,et=Tt.top+Tt.height/2);const Kt=st.radius||function He(Fe,Ge,et){const st=Math.max(Math.abs(Fe-et.left),Math.abs(Fe-et.right)),Tt=Math.max(Math.abs(Ge-et.top),Math.abs(Ge-et.bottom));return Math.sqrt(st*st+Tt*Tt)}(Ge,et,Tt),Pt=Ge-Tt.left,Xi=et-Tt.top,di=mi.enterDuration,fi=document.createElement("div");fi.classList.add("mat-ripple-element"),fi.style.left=Pt-Kt+"px",fi.style.top=Xi-Kt+"px",fi.style.height=2*Kt+"px",fi.style.width=2*Kt+"px",null!=st.color&&(fi.style.backgroundColor=st.color),fi.style.transitionDuration=`${di}ms`,this._containerElement.appendChild(fi);const vn=window.getComputedStyle(fi),Li=vn.transitionDuration,Zi="none"===vn.transitionProperty||"0s"===Li||"0s, 0s"===Li||0===Tt.width&&0===Tt.height,Qt=new pe(this,fi,st,Zi);fi.style.transform="scale3d(1, 1, 1)",Qt.state=be.FADING_IN,st.persistent||(this._mostRecentTransientRipple=Qt);let Mt=null;return!Zi&&(di||mi.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const it=()=>this._finishRippleTransition(Qt),ct=()=>this._destroyRipple(Qt);fi.addEventListener("transitionend",it),fi.addEventListener("transitioncancel",ct),Mt={onTransitionEnd:it,onTransitionCancel:ct}}),this._activeRipples.set(Qt,Mt),(Zi||!di)&&this._finishRippleTransition(Qt),Qt}fadeOutRipple(Ge){if(Ge.state===be.FADING_OUT||Ge.state===be.HIDDEN)return;const et=Ge.element,st={...at,...Ge.config.animation};et.style.transitionDuration=`${st.exitDuration}ms`,et.style.opacity="0",Ge.state=be.FADING_OUT,(Ge._animationForciblyDisabledThroughCss||!st.exitDuration)&&this._finishRippleTransition(Ge)}fadeOutAll(){this._getActiveRipples().forEach(Ge=>Ge.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(Ge=>{Ge.config.persistent||Ge.fadeOut()})}setupTriggerEvents(Ge){const et=(0,f.i8)(Ge);!this._platform.isBrowser||!et||et===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=et,ye.forEach(st=>{Ie._eventManager.addHandler(this._ngZone,st,et,this)}))}handleEvent(Ge){"mousedown"===Ge.type?this._onMousedown(Ge):"touchstart"===Ge.type?this._onTouchStart(Ge):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{ue.forEach(et=>{this._triggerElement.addEventListener(et,this,Xt)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(Ge){Ge.state===be.FADING_IN?this._startFadeOutTransition(Ge):Ge.state===be.FADING_OUT&&this._destroyRipple(Ge)}_startFadeOutTransition(Ge){const et=Ge===this._mostRecentTransientRipple,{persistent:st}=Ge.config;Ge.state=be.VISIBLE,!st&&(!et||!this._isPointerDown)&&Ge.fadeOut()}_destroyRipple(Ge){const et=this._activeRipples.get(Ge)??null;this._activeRipples.delete(Ge),this._activeRipples.size||(this._containerRect=null),Ge===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),Ge.state=be.HIDDEN,null!==et&&(Ge.element.removeEventListener("transitionend",et.onTransitionEnd),Ge.element.removeEventListener("transitioncancel",et.onTransitionCancel)),Ge.element.remove()}_onMousedown(Ge){const et=(0,t._G)(Ge),st=this._lastTouchStartEvent&&Date.now(){!Ge.config.persistent&&(Ge.state===be.VISIBLE||Ge.config.terminateOnPointerUp&&Ge.state===be.FADING_IN)&&Ge.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const Ge=this._triggerElement;Ge&&(ye.forEach(et=>Ie._eventManager.removeHandler(et,Ge,this)),this._pointerUpEventsRegistered&&(ue.forEach(et=>Ge.removeEventListener(et,this,Xt)),this._pointerUpEventsRegistered=!1))}}const Xe=new e.nKC("mat-ripple-global-options");let yt=(()=>{class Fe{get disabled(){return this._disabled}set disabled(et){et&&this.fadeOutAllNonPersistent(),this._disabled=et,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(et){this._trigger=et,this._setupTriggerEventsIfEnabled()}constructor(et,st,Tt,mi,Kt){this._elementRef=et,this._animationMode=Kt,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=mi||{},this._rippleRenderer=new Ie(this,st,et,Tt)}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,..."NoopAnimations"===this._animationMode?{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(et,st=0,Tt){return"number"==typeof et?this._rippleRenderer.fadeInRipple(et,st,{...this.rippleConfig,...Tt}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...et})}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(x.OD),e.rXU(Xe,8),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:Fe,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(st,Tt){2&st&&e.AVh("mat-ripple-unbounded",Tt.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"],standalone:!0})}return Fe})(),Ye=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te,Te]})}return Fe})(),rt=(()=>{class Fe{constructor(et){this._animationMode=et,this.state="unchecked",this.disabled=!1,this.appearance="full"}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(st,Tt){2&st&&e.AVh("mat-pseudo-checkbox-indeterminate","indeterminate"===Tt.state)("mat-pseudo-checkbox-checked","checked"===Tt.state)("mat-pseudo-checkbox-disabled",Tt.disabled)("mat-pseudo-checkbox-minimal","minimal"===Tt.appearance)("mat-pseudo-checkbox-full","full"===Tt.appearance)("_mat-animation-noopable","NoopAnimations"===Tt._animationMode)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(st,Tt){},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-minimal-pseudo-checkbox-selected-checkmark-color)}.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-minimal-pseudo-checkbox-disabled-selected-checkmark-color)}.mat-pseudo-checkbox-full{border-color:var(--mat-full-pseudo-checkbox-unselected-icon-color);border-width:2px;border-style:solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{border-color:var(--mat-full-pseudo-checkbox-disabled-unselected-icon-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{background-color:var(--mat-full-pseudo-checkbox-selected-icon-color);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-full-pseudo-checkbox-selected-checkmark-color)}.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-full-pseudo-checkbox-disabled-selected-icon-color)}.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-full-pseudo-checkbox-disabled-selected-checkmark-color)}.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}'],encapsulation:2,changeDetection:0})}return Fe})(),Yt=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te]})}return Fe})();const Nt=new e.nKC("MAT_OPTION_PARENT_COMPONENT"),Vt=new e.nKC("MatOptgroup");let tt=0;class $t{constructor(Ge,et=!1){this.source=Ge,this.isUserInput=et}}let zt=(()=>{class Fe{get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(et){this._disabled=et}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}constructor(et,st,Tt,mi){this._element=et,this._changeDetectorRef=st,this._parent=Tt,this.group=mi,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+tt++,this.onSelectionChange=new e.bkB,this._stateChanges=new I.B}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(et=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),et&&this._emitSelectionChangeEvent())}deselect(et=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),et&&this._emitSelectionChangeEvent())}focus(et,st){const Tt=this._getHostElement();"function"==typeof Tt.focus&&Tt.focus(st)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(et){(et.keyCode===d.Fm||et.keyCode===d.t6)&&!(0,d.rp)(et)&&(this._selectViaInteraction(),et.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 et=this.viewValue;et!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=et)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(et=!1){this.onSelectionChange.emit(new $t(this,et))}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(Nt,8),e.rXU(Vt,8))};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-option"]],viewQuery:function(st,Tt){if(1&st&&e.GBs(F,7),2&st){let mi;e.mGM(mi=e.lsd())&&(Tt._text=mi.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(st,Tt){1&st&&e.bIt("click",function(){return Tt._selectViaInteraction()})("keydown",function(Kt){return Tt._handleKeydown(Kt)}),2&st&&(e.Mr5("id",Tt.id),e.BMQ("aria-selected",Tt.selected)("aria-disabled",Tt.disabled.toString()),e.AVh("mdc-list-item--selected",Tt.selected)("mat-mdc-option-multiple",Tt.multiple)("mat-mdc-option-active",Tt.active)("mdc-list-item--disabled",Tt.disabled))},inputs:{value:"value",id:"id",disabled:[2,"disabled","disabled",e.L39]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:z,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-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled"]],template:function(st,Tt){1&st&&(e.NAR(R),e.DNE(0,W,1,2,"mat-pseudo-checkbox",1),e.SdG(1),e.j41(2,"span",2,0),e.SdG(4,1),e.k0s(),e.DNE(5,$,1,1,"mat-pseudo-checkbox",3)(6,j,2,1,"span",4),e.nrm(7,"div",5)),2&st&&(e.vxM(Tt.multiple?0:-1),e.R7$(5),e.vxM(Tt.multiple||!Tt.selected||Tt.hideSingleSelectionIndicator?-1:5),e.R7$(),e.vxM(Tt.group&&Tt.group._inert?6:-1),e.R7$(),e.Y8G("matRippleTrigger",Tt._getHostElement())("matRippleDisabled",Tt.disabled||Tt.disableRipple))},dependencies:[rt,yt],styles:['.mat-mdc-option{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color);font-family:var(--mat-option-label-text-font);line-height:var(--mat-option-label-text-line-height);font-size:var(--mat-option-label-text-size);letter-spacing:var(--mat-option-label-text-tracking);font-weight:var(--mat-option-label-text-weight);min-height:48px}.mat-mdc-option:focus{outline:none}[dir=rtl] .mat-mdc-option,.mat-mdc-option[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color)}.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)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color)}.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)}.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}.cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{right:auto;left:16px}.mat-mdc-option-multiple{--mdc-list-list-item-selected-container-color:var(--mdc-list-list-item-container-color, transparent)}.mat-mdc-option-active .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Fe})();function Jt(Fe,Ge,et){if(et.length){let st=Ge.toArray(),Tt=et.toArray(),mi=0;for(let Kt=0;Ktet+st?Math.max(0,Fe-st+Ge):et}let dt=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Ye,Te,Yt]})}return Fe})();const Ae={capture:!0},we=["focus","click","mouseenter","touchstart"],he="mat-ripple-loader-uninitialized",q="mat-ripple-loader-class-name",Re="mat-ripple-loader-centered",Ne="mat-ripple-loader-disabled";let gt=(()=>{class Fe{constructor(){this._document=(0,e.WQX)(l.qQ,{optional:!0}),this._animationMode=(0,e.WQX)(e.bc$,{optional:!0}),this._globalRippleOptions=(0,e.WQX)(Xe,{optional:!0}),this._platform=(0,e.WQX)(x.OD),this._ngZone=(0,e.WQX)(e.SKi),this._hosts=new Map,this._onInteraction=et=>{if(!(et.target instanceof HTMLElement))return;const Tt=et.target.closest(`[${he}]`);Tt&&this._createRipple(Tt)},this._ngZone.runOutsideAngular(()=>{for(const et of we)this._document?.addEventListener(et,this._onInteraction,Ae)})}ngOnDestroy(){const et=this._hosts.keys();for(const st of et)this.destroyRipple(st);for(const st of we)this._document?.removeEventListener(st,this._onInteraction,Ae)}configureRipple(et,st){et.setAttribute(he,""),(st.className||!et.hasAttribute(q))&&et.setAttribute(q,st.className||""),st.centered&&et.setAttribute(Re,""),st.disabled&&et.setAttribute(Ne,"")}getRipple(et){return this._hosts.get(et)||this._createRipple(et)}setDisabled(et,st){const Tt=this._hosts.get(et);Tt?Tt.disabled=st:st?et.setAttribute(Ne,""):et.removeAttribute(Ne)}_createRipple(et){if(!this._document)return;const st=this._hosts.get(et);if(st)return st;et.querySelector(".mat-ripple")?.remove();const Tt=this._document.createElement("span");Tt.classList.add("mat-ripple",et.getAttribute(q)),et.append(Tt);const mi=new yt(new e.aKT(Tt),this._ngZone,this._platform,this._globalRippleOptions?this._globalRippleOptions:void 0,this._animationMode?this._animationMode:void 0);return mi._isInitialized=!0,mi.trigger=et,mi.centered=et.hasAttribute(Re),mi.disabled=et.hasAttribute(Ne),this.attachRipple(et,mi),mi}attachRipple(et,st){et.removeAttribute(he),this._hosts.set(et,st)}destroyRipple(et){const st=this._hosts.get(et);st&&(st.ngOnDestroy(),this._hosts.delete(et))}static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}return Fe})(),$e=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["div","mat-internal-form-field",""]],hostAttrs:[1,"mdc-form-field","mat-internal-form-field"],hostVars:2,hostBindings:function(st,Tt){2&st&&e.AVh("mdc-form-field--align-end","before"===Tt.labelPosition)},inputs:{labelPosition:"labelPosition"},standalone:!0,features:[e.aNF],attrs:Q,ngContentSelectors:J,decls:1,vars:0,template:function(st,Tt){1&st&&(e.NAR(),e.SdG(0))},styles:[".mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.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>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-form-field{font-family:var(--mdc-form-field-label-text-font);line-height:var(--mdc-form-field-label-text-line-height);font-size:var(--mdc-form-field-label-text-size);font-weight:var(--mdc-form-field-label-text-weight);letter-spacing:var(--mdc-form-field-label-text-tracking);color:var(--mdc-form-field-label-text-color)}.mat-internal-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}"],encapsulation:2,changeDetection:0})}return Fe})()},5084:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>et,X6:()=>fn,bU:()=>fi,bZ:()=>Xi});var e=g(8617),t=g(6969),w=g(6939),S=g(177),l=g(4438),x=g(8834),f=g(5542),I=g(6600),d=g(1413),T=g(8359),y=g(7786),F=g(7673),R=g(7336),z=g(8203),W=g(6860),$=g(6697),j=g(9172),Q=g(5964),J=g(4085),ee=g(9969),ie=g(9417),ge=g(6467),ae=g(9631);const Me=["mat-calendar-body",""];function Te(Zt,bt){if(1&Zt&&(l.j41(0,"tr",0)(1,"td",3),l.EFF(2),l.k0s()()),2&Zt){const re=l.XpG();l.R7$(),l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re.numCols),l.R7$(),l.SpI(" ",re.label," ")}}function de(Zt,bt){if(1&Zt&&(l.j41(0,"td",3),l.EFF(1),l.k0s()),2&Zt){const re=l.XpG(2);l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re._firstRowOffset),l.R7$(),l.SpI(" ",re._firstRowOffset>=re.labelMinRequiredCells?re.label:""," ")}}function D(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"td",6)(1,"button",7),l.bIt("click",function(Ce){const ot=l.eBV(re).$implicit,ut=l.XpG(2);return l.Njj(ut._cellClicked(ot,Ce))})("focus",function(Ce){const ot=l.eBV(re).$implicit,ut=l.XpG(2);return l.Njj(ut._emitActiveDateChange(ot,Ce))}),l.j41(2,"span",8),l.EFF(3),l.k0s(),l.nrm(4,"span",9),l.k0s()()}if(2&Zt){const re=bt.$implicit,je=bt.$index,Ce=l.XpG().$index,ot=l.XpG();l.xc7("width",ot._cellWidth)("padding-top",ot._cellPadding)("padding-bottom",ot._cellPadding),l.BMQ("data-mat-row",Ce)("data-mat-col",je),l.R7$(),l.AVh("mat-calendar-body-disabled",!re.enabled)("mat-calendar-body-active",ot._isActiveCell(Ce,je))("mat-calendar-body-range-start",ot._isRangeStart(re.compareValue))("mat-calendar-body-range-end",ot._isRangeEnd(re.compareValue))("mat-calendar-body-in-range",ot._isInRange(re.compareValue))("mat-calendar-body-comparison-bridge-start",ot._isComparisonBridgeStart(re.compareValue,Ce,je))("mat-calendar-body-comparison-bridge-end",ot._isComparisonBridgeEnd(re.compareValue,Ce,je))("mat-calendar-body-comparison-start",ot._isComparisonStart(re.compareValue))("mat-calendar-body-comparison-end",ot._isComparisonEnd(re.compareValue))("mat-calendar-body-in-comparison-range",ot._isInComparisonRange(re.compareValue))("mat-calendar-body-preview-start",ot._isPreviewStart(re.compareValue))("mat-calendar-body-preview-end",ot._isPreviewEnd(re.compareValue))("mat-calendar-body-in-preview",ot._isInPreview(re.compareValue)),l.Y8G("ngClass",re.cssClasses)("tabindex",ot._isActiveCell(Ce,je)?0:-1),l.BMQ("aria-label",re.ariaLabel)("aria-disabled",!re.enabled||null)("aria-pressed",ot._isSelected(re.compareValue))("aria-current",ot.todayValue===re.compareValue?"date":null)("aria-describedby",ot._getDescribedby(re.compareValue)),l.R7$(),l.AVh("mat-calendar-body-selected",ot._isSelected(re.compareValue))("mat-calendar-body-comparison-identical",ot._isComparisonIdentical(re.compareValue))("mat-calendar-body-today",ot.todayValue===re.compareValue),l.R7$(),l.SpI(" ",re.displayValue," ")}}function n(Zt,bt){if(1&Zt&&(l.j41(0,"tr",1),l.DNE(1,de,2,6,"td",4),l.Z7z(2,D,5,48,"td",5,l.fX1),l.k0s()),2&Zt){const re=bt.$implicit,je=bt.$index,Ce=l.XpG();l.R7$(),l.vxM(0===je&&Ce._firstRowOffset?1:-1),l.R7$(),l.Dyx(re)}}function c(Zt,bt){if(1&Zt&&(l.j41(0,"th",2)(1,"span",6),l.EFF(2),l.k0s(),l.j41(3,"span",3),l.EFF(4),l.k0s()()),2&Zt){const re=bt.$implicit;l.R7$(2),l.JRh(re.long),l.R7$(2),l.JRh(re.narrow)}}const m=["*"];function h(Zt,bt){}function C(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-month-view",4),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("_userSelection",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dateSelected(Ce))})("dragStarted",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dragStarted(Ce))})("dragEnded",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dragEnded(Ce))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)("comparisonStart",re.comparisonStart)("comparisonEnd",re.comparisonEnd)("startDateAccessibleName",re.startDateAccessibleName)("endDateAccessibleName",re.endDateAccessibleName)("activeDrag",re._activeDrag)}}function k(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-year-view",5),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("monthSelected",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._monthSelectedInYearView(Ce))})("selectedChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._goToDateInView(Ce,"month"))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function L(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-multi-year-view",6),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("yearSelected",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._yearSelectedInMultiYearView(Ce))})("selectedChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._goToDateInView(Ce,"year"))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function _(Zt,bt){}const r=["button"],v=[[["","matDatepickerToggleIcon",""]]],V=["[matDatepickerToggleIcon]"];function N(Zt,bt){1&Zt&&(l.qSk(),l.j41(0,"svg",2),l.nrm(1,"path",3),l.k0s())}let Ke=(()=>{class Zt{constructor(){this.changes=new d.B,this.calendarLabel="Calendar",this.openCalendarLabel="Open calendar",this.closeCalendarLabel="Close calendar",this.prevMonthLabel="Previous month",this.nextMonthLabel="Next month",this.prevYearLabel="Previous year",this.nextYearLabel="Next year",this.prevMultiYearLabel="Previous 24 years",this.nextMultiYearLabel="Next 24 years",this.switchToMonthViewLabel="Choose date",this.switchToMultiYearViewLabel="Choose month and year",this.startDateLabel="Start date",this.endDateLabel="End date"}formatYearRange(re,je){return`${re} \u2013 ${je}`}formatYearRangeLabel(re,je){return`${re} to ${je}`}static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac,providedIn:"root"})}return Zt})();class se{constructor(bt,re,je,Ce,ot={},ut=bt,ii){this.value=bt,this.displayValue=re,this.ariaLabel=je,this.enabled=Ce,this.cssClasses=ot,this.compareValue=ut,this.rawValue=ii}}let X=1;const me=(0,W.BQ)({passive:!1,capture:!0}),ce=(0,W.BQ)({passive:!0,capture:!0}),fe=(0,W.BQ)({passive:!0});let ke=(()=>{class Zt{ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}constructor(re,je){this._elementRef=re,this._ngZone=je,this._platform=(0,l.WQX)(W.OD),this._focusActiveCellAfterViewChecked=!1,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new l.bkB,this.previewChange=new l.bkB,this.activeDateChange=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this._didDragSinceMouseDown=!1,this._enterHandler=Ce=>{if(this._skipNextFocus&&"focus"===Ce.type)this._skipNextFocus=!1;else if(Ce.target&&this.isRange){const ot=this._getCellFromElement(Ce.target);ot&&this._ngZone.run(()=>this.previewChange.emit({value:ot.enabled?ot:null,event:Ce}))}},this._touchmoveHandler=Ce=>{if(!this.isRange)return;const ot=_t(Ce),ut=ot?this._getCellFromElement(ot):null;ot!==Ce.target&&(this._didDragSinceMouseDown=!0),_e(Ce.target)&&Ce.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:ut?.enabled?ut:null,event:Ce}))},this._leaveHandler=Ce=>{null!==this.previewEnd&&this.isRange&&("blur"!==Ce.type&&(this._didDragSinceMouseDown=!0),Ce.target&&this._getCellFromElement(Ce.target)&&(!Ce.relatedTarget||!this._getCellFromElement(Ce.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:Ce})))},this._mousedownHandler=Ce=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const ot=Ce.target&&this._getCellFromElement(Ce.target);!ot||!this._isInRange(ot.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:ot.rawValue,event:Ce})})},this._mouseupHandler=Ce=>{if(!this.isRange)return;const ot=_e(Ce.target);ot?ot.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const ut=this._getCellFromElement(ot);this.dragEnded.emit({value:ut?.rawValue??null,event:Ce})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:Ce})})},this._touchendHandler=Ce=>{const ot=_t(Ce);ot&&this._mouseupHandler({target:ot})},this._id="mat-calendar-body-"+X++,this._startDateLabelId=`${this._id}-start-date`,this._endDateLabelId=`${this._id}-end-date`,je.runOutsideAngular(()=>{const Ce=re.nativeElement;Ce.addEventListener("touchmove",this._touchmoveHandler,me),Ce.addEventListener("mouseenter",this._enterHandler,ce),Ce.addEventListener("focus",this._enterHandler,ce),Ce.addEventListener("mouseleave",this._leaveHandler,ce),Ce.addEventListener("blur",this._leaveHandler,ce),Ce.addEventListener("mousedown",this._mousedownHandler,fe),Ce.addEventListener("touchstart",this._mousedownHandler,fe),this._platform.isBrowser&&(window.addEventListener("mouseup",this._mouseupHandler),window.addEventListener("touchend",this._touchendHandler))})}_cellClicked(re,je){this._didDragSinceMouseDown||re.enabled&&this.selectedValueChange.emit({value:re.value,event:je})}_emitActiveDateChange(re,je){re.enabled&&this.activeDateChange.emit({value:re.value,event:je})}_isSelected(re){return this.startValue===re||this.endValue===re}ngOnChanges(re){const je=re.numCols,{rows:Ce,numCols:ot}=this;(re.rows||je)&&(this._firstRowOffset=Ce&&Ce.length&&Ce[0].length?ot-Ce[0].length:0),(re.cellAspectRatio||je||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/ot+"%"),(je||!this._cellWidth)&&(this._cellWidth=100/ot+"%")}ngOnDestroy(){const re=this._elementRef.nativeElement;re.removeEventListener("touchmove",this._touchmoveHandler,me),re.removeEventListener("mouseenter",this._enterHandler,ce),re.removeEventListener("focus",this._enterHandler,ce),re.removeEventListener("mouseleave",this._leaveHandler,ce),re.removeEventListener("blur",this._leaveHandler,ce),re.removeEventListener("mousedown",this._mousedownHandler,fe),re.removeEventListener("touchstart",this._mousedownHandler,fe),this._platform.isBrowser&&(window.removeEventListener("mouseup",this._mouseupHandler),window.removeEventListener("touchend",this._touchendHandler))}_isActiveCell(re,je){let Ce=re*this.numCols+je;return re&&(Ce-=this._firstRowOffset),Ce==this.activeCell}_focusActiveCell(re=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,$.s)(1)).subscribe(()=>{setTimeout(()=>{const je=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");je&&(re||(this._skipNextFocus=!0),je.focus())})})})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(re){return be(re,this.startValue,this.endValue)}_isRangeEnd(re){return pe(re,this.startValue,this.endValue)}_isInRange(re){return Ze(re,this.startValue,this.endValue,this.isRange)}_isComparisonStart(re){return be(re,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(re,je,Ce){if(!this._isComparisonStart(re)||this._isRangeStart(re)||!this._isInRange(re))return!1;let ot=this.rows[je][Ce-1];if(!ot){const ut=this.rows[je-1];ot=ut&&ut[ut.length-1]}return ot&&!this._isRangeEnd(ot.compareValue)}_isComparisonBridgeEnd(re,je,Ce){if(!this._isComparisonEnd(re)||this._isRangeEnd(re)||!this._isInRange(re))return!1;let ot=this.rows[je][Ce+1];if(!ot){const ut=this.rows[je+1];ot=ut&&ut[0]}return ot&&!this._isRangeStart(ot.compareValue)}_isComparisonEnd(re){return pe(re,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(re){return Ze(re,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(re){return this.comparisonStart===this.comparisonEnd&&re===this.comparisonStart}_isPreviewStart(re){return be(re,this.previewStart,this.previewEnd)}_isPreviewEnd(re){return pe(re,this.previewStart,this.previewEnd)}_isInPreview(re){return Ze(re,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(re){return this.isRange?this.startValue===re&&this.endValue===re?`${this._startDateLabelId} ${this._endDateLabelId}`:this.startValue===re?this._startDateLabelId:this.endValue===re?this._endDateLabelId:null:null}_getCellFromElement(re){const je=_e(re);if(je){const Ce=je.getAttribute("data-mat-row"),ot=je.getAttribute("data-mat-col");if(Ce&&ot)return this.rows[parseInt(Ce)][parseInt(ot)]}return null}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(l.SKi))};static#t=this.\u0275cmp=l.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"],standalone:!0,features:[l.OA$,l.aNF],attrs:Me,decls:7,vars:5,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(je,Ce){1&je&&(l.DNE(0,Te,3,6,"tr",0),l.Z7z(1,n,4,1,"tr",1,l.fX1),l.j41(3,"label",2),l.EFF(4),l.k0s(),l.j41(5,"label",2),l.EFF(6),l.k0s()),2&je&&(l.vxM(Ce._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)}.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)}.cdk-high-contrast-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);border-color:var(--mat-datepicker-calendar-date-outline-color)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}.cdk-high-contrast-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)}@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)}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color);color:var(--mat-datepicker-calendar-date-selected-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color)}.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)}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.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) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 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) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 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)}.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)}.cdk-high-contrast-active .mat-datepicker-popup:not(:empty),.cdk-high-contrast-active .mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.cdk-high-contrast-active .mat-calendar-body-today{outline:dotted 1px}.cdk-high-contrast-active .mat-calendar-body-cell::before,.cdk-high-contrast-active .mat-calendar-body-cell::after,.cdk-high-contrast-active .mat-calendar-body-selected{background:none}.cdk-high-contrast-active .mat-calendar-body-in-range::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-start::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.cdk-high-contrast-active .mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}'],encapsulation:2,changeDetection:0})}return Zt})();function mt(Zt){return"TD"===Zt?.nodeName}function _e(Zt){let bt;return mt(Zt)?bt=Zt:mt(Zt.parentNode)?bt=Zt.parentNode:mt(Zt.parentNode?.parentNode)&&(bt=Zt.parentNode.parentNode),null!=bt?.getAttribute("data-mat-row")?bt:null}function be(Zt,bt,re){return null!==re&&bt!==re&&Zt=bt&&Zt===re}function Ze(Zt,bt,re,je){return je&&null!==bt&&null!==re&&bt!==re&&Zt>=bt&&Zt<=re}function _t(Zt){const bt=Zt.changedTouches[0];return document.elementFromPoint(bt.clientX,bt.clientY)}class at{constructor(bt,re){this.start=bt,this.end=re}}let pt=(()=>{class Zt{constructor(re,je){this.selection=re,this._adapter=je,this._selectionChanged=new d.B,this.selectionChanged=this._selectionChanged,this.selection=re}updateSelection(re,je){const Ce=this.selection;this.selection=re,this._selectionChanged.next({selection:re,source:je,oldValue:Ce})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(re){return this._adapter.isDateInstance(re)&&this._adapter.isValid(re)}static#e=this.\u0275fac=function(je){l.QTQ()};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac})}return Zt})(),Xt=(()=>{class Zt extends pt{constructor(re){super(null,re)}add(re){super.updateSelection(re,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const re=new Zt(this._adapter);return re.updateSelection(this.selection,this),re}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.KVO(I.MJ))};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac})}return Zt})();const Ie={provide:pt,deps:[[new l.Xx1,new l.kdw,pt],I.MJ],useFactory:function ue(Zt,bt){return Zt||new Xt(bt)}},yt=new l.nKC("MAT_DATE_RANGE_SELECTION_STRATEGY");let Et=(()=>{class Zt{get activeDate(){return this._activeDate}set activeDate(re){const je=this._activeDate,Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),this._hasSameMonthAndYear(je,this._activeDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setRanges(this._selected)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,je,Ce,ot,ut){this._changeDetectorRef=re,this._dateFormats=je,this._dateAdapter=Ce,this._dir=ot,this._rangeStrategy=ut,this._rerenderSubscription=T.yU.EMPTY,this.activeDrag=null,this.selectedChange=new l.bkB,this._userSelection=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnChanges(re){const je=re.comparisonStart||re.comparisonEnd;je&&!je.firstChange&&this._setRanges(this.selected),re.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(re){const je=re.value,Ce=this._getDateFromDayOfMonth(je);let ot,ut;this._selected instanceof at?(ot=this._getDateInCurrentMonth(this._selected.start),ut=this._getDateInCurrentMonth(this._selected.end)):ot=ut=this._getDateInCurrentMonth(this._selected),(ot!==je||ut!==je)&&this.selectedChange.emit(Ce),this._userSelection.emit({value:Ce,event:re.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case R.w_:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case R.dB:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case R.Fm:case R.t6:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&re.preventDefault());case R._f:return void(null!=this._previewEnd&&!(0,R.rp)(re)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:re}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:re})),re.preventDefault(),re.stopPropagation()));default:return}this._dateAdapter.compareDate(je,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate=this._getCellCompareValue(this._dateAdapter.today()),this._monthLabel=this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase();let re=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset=(7+this._dateAdapter.getDayOfWeek(re)-this._dateAdapter.getFirstDayOfWeek())%7,this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(re){this._matCalendarBody._focusActiveCell(re)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:re,value:je}){if(this._rangeStrategy){const Ce=je?je.rawValue:null,ot=this._rangeStrategy.createPreview(Ce,this.selected,re);if(this._previewStart=this._getCellCompareValue(ot.start),this._previewEnd=this._getCellCompareValue(ot.end),this.activeDrag&&Ce){const ut=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,Ce,re);ut&&(this._previewStart=this._getCellCompareValue(ut.start),this._previewEnd=this._getCellCompareValue(ut.end))}this._changeDetectorRef.detectChanges()}}_dragEnded(re){if(this.activeDrag)if(re.value){const je=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,re.value,re.event);this.dragEnded.emit({value:je??null,event:re.event})}else this.dragEnded.emit({value:null,event:re.event})}_getDateFromDayOfMonth(re){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),re)}_initWeekdays(){const re=this._dateAdapter.getFirstDayOfWeek(),je=this._dateAdapter.getDayOfWeekNames("narrow");let ot=this._dateAdapter.getDayOfWeekNames("long").map((ut,ii)=>({long:ut,narrow:je[ii]}));this._weekdays=ot.slice(re).concat(ot.slice(0,re))}_createWeekCells(){const re=this._dateAdapter.getNumDaysInMonth(this.activeDate),je=this._dateAdapter.getDateNames();this._weeks=[[]];for(let Ce=0,ot=this._firstWeekOffset;Ce=0)&&(!this.maxDate||this._dateAdapter.compareDate(re,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(re))}_getDateInCurrentMonth(re){return re&&this._hasSameMonthAndYear(re,this.activeDate)?this._dateAdapter.getDate(re):null}_hasSameMonthAndYear(re,je){return!(!re||!je||this._dateAdapter.getMonth(re)!=this._dateAdapter.getMonth(je)||this._dateAdapter.getYear(re)!=this._dateAdapter.getYear(je))}_getCellCompareValue(re){if(re){const je=this._dateAdapter.getYear(re),Ce=this._dateAdapter.getMonth(re),ot=this._dateAdapter.getDate(re);return new Date(je,Ce,ot).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(re){re instanceof at?(this._rangeStart=this._getCellCompareValue(re.start),this._rangeEnd=this._getCellCompareValue(re.end),this._isRange=!0):(this._rangeStart=this._rangeEnd=this._getCellCompareValue(re),this._isRange=!1),this._comparisonRangeStart=this._getCellCompareValue(this.comparisonStart),this._comparisonRangeEnd=this._getCellCompareValue(this.comparisonEnd)}_canSelect(re){return!this.dateFilter||this.dateFilter(re)}_clearPreview(){this._previewStart=this._previewEnd=null}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.gRc),l.rXU(I.de,8),l.rXU(I.MJ,8),l.rXU(z.dS,8),l.rXU(yt,8))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-month-view"]],viewQuery:function(je,Ce){if(1&je&&l.GBs(ke,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._matCalendarBody=ot.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"],standalone:!0,features:[l.OA$,l.aNF],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(je,Ce){1&je&&(l.j41(0,"table",0)(1,"thead",1)(2,"tr"),l.Z7z(3,c,5,2,"th",2,l.fX1),l.k0s(),l.j41(5,"tr",3),l.nrm(6,"th",4),l.k0s()(),l.j41(7,"tbody",5),l.bIt("selectedValueChange",function(ut){return Ce._dateSelected(ut)})("activeDateChange",function(ut){return Ce._updateActiveDate(ut)})("previewChange",function(ut){return Ce._previewChanged(ut)})("dragStarted",function(ut){return Ce.dragStarted.emit(ut)})("dragEnded",function(ut){return Ce._dragEnded(ut)})("keyup",function(ut){return Ce._handleCalendarBodyKeyup(ut)})("keydown",function(ut){return Ce._handleCalendarBodyKeydown(ut)}),l.k0s()()),2&je&&(l.R7$(3),l.Dyx(Ce._weekdays),l.R7$(4),l.Y8G("label",Ce._monthLabel)("rows",Ce._weeks)("todayValue",Ce._todayDate)("startValue",Ce._rangeStart)("endValue",Ce._rangeEnd)("comparisonStart",Ce._comparisonRangeStart)("comparisonEnd",Ce._comparisonRangeEnd)("previewStart",Ce._previewStart)("previewEnd",Ce._previewEnd)("isRange",Ce._isRange)("labelMinRequiredCells",3)("activeCell",Ce._dateAdapter.getDate(Ce.activeDate)-1)("startDateAccessibleName",Ce.startDateAccessibleName)("endDateAccessibleName",Ce.endDateAccessibleName))},dependencies:[ke],encapsulation:2,changeDetection:0})}return Zt})();const Vt=24;let tt=(()=>{class Zt{get activeDate(){return this._activeDate}set activeDate(re){let je=this._activeDate;const Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),$t(this._dateAdapter,je,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedYear(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,je,Ce){this._changeDetectorRef=re,this._dateAdapter=je,this._dir=Ce,this._rerenderSubscription=T.yU.EMPTY,this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const je=this._dateAdapter.getYear(this._activeDate)-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let Ce=0,ot=[];Cethis._createCellForYear(ut))),ot=[]);this._changeDetectorRef.markForCheck()}_yearSelected(re){const je=re.value,Ce=this._dateAdapter.createDate(je,0,1),ot=this._getDateFromYear(je);this.yearSelected.emit(Ce),this.selectedChange.emit(ot)}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromYear(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Vt-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case R.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*-Vt:-Vt);break;case R.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*Vt:Vt);break;case R.Fm:case R.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(je,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_getActiveCell(){return zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(re){const je=this._dateAdapter.getMonth(this.activeDate),Ce=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(re,je,1));return this._dateAdapter.createDate(re,je,Math.min(this._dateAdapter.getDate(this.activeDate),Ce))}_createCellForYear(re){const je=this._dateAdapter.createDate(re,0,1),Ce=this._dateAdapter.getYearName(je),ot=this.dateClass?this.dateClass(je,"multi-year"):void 0;return new se(re,Ce,Ce,this._shouldEnableYear(re),ot)}_shouldEnableYear(re){if(null==re||this.maxDate&&re>this._dateAdapter.getYear(this.maxDate)||this.minDate&&re{class Zt{get activeDate(){return this._activeDate}set activeDate(re){let je=this._activeDate;const Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),this._dateAdapter.getYear(je)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedMonth(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,je,Ce,ot){this._changeDetectorRef=re,this._dateFormats=je,this._dateAdapter=Ce,this._dir=ot,this._rerenderSubscription=T.yU.EMPTY,this.selectedChange=new l.bkB,this.monthSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(re){const je=re.value,Ce=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),je,1);this.monthSelected.emit(Ce);const ot=this._getDateFromMonth(je);this.selectedChange.emit(ot)}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromMonth(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case R.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?-10:-1);break;case R.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10:1);break;case R.Fm:case R.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(je,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth=this._getMonthInCurrentYear(this._dateAdapter.today()),this._yearLabel=this._dateAdapter.getYearName(this.activeDate);let re=this._dateAdapter.getMonthNames("short");this._months=[[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(je=>je.map(Ce=>this._createCellForMonth(Ce,re[Ce]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(re){return re&&this._dateAdapter.getYear(re)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(re):null}_getDateFromMonth(re){const je=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),Ce=this._dateAdapter.getNumDaysInMonth(je);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,Math.min(this._dateAdapter.getDate(this.activeDate),Ce))}_createCellForMonth(re,je){const Ce=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),ot=this._dateAdapter.format(Ce,this._dateFormats.display.monthYearA11yLabel),ut=this.dateClass?this.dateClass(Ce,"year"):void 0;return new se(re,je.toLocaleUpperCase(),ot,this._shouldEnableMonth(re),ut)}_shouldEnableMonth(re){const je=this._dateAdapter.getYear(this.activeDate);if(null==re||this._isYearAndMonthAfterMaxDate(je,re)||this._isYearAndMonthBeforeMinDate(je,re))return!1;if(!this.dateFilter)return!0;for(let ot=this._dateAdapter.createDate(je,re,1);this._dateAdapter.getMonth(ot)==re;ot=this._dateAdapter.addCalendarDays(ot,1))if(this.dateFilter(ot))return!0;return!1}_isYearAndMonthAfterMaxDate(re,je){if(this.maxDate){const Ce=this._dateAdapter.getYear(this.maxDate),ot=this._dateAdapter.getMonth(this.maxDate);return re>Ce||re===Ce&&je>ot}return!1}_isYearAndMonthBeforeMinDate(re,je){if(this.minDate){const Ce=this._dateAdapter.getYear(this.minDate),ot=this._dateAdapter.getMonth(this.minDate);return re{class Zt{constructor(re,je,Ce,ot,ut){this._intl=re,this.calendar=je,this._dateAdapter=Ce,this._dateFormats=ot,this._id="mat-calendar-header-"+Ae++,this._periodButtonLabelId=`${this._id}-period-label`,this.calendar.stateChanges.subscribe(()=>ut.markForCheck())}get periodButtonText(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRange(...this._formatMinAndMaxYearLabels())}get periodButtonDescription(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRangeLabel(...this._formatMinAndMaxYearLabels())}get periodButtonLabel(){return"month"==this.calendar.currentView?this._intl.switchToMultiYearViewLabel:this._intl.switchToMonthViewLabel}get prevButtonLabel(){return{month:this._intl.prevMonthLabel,year:this._intl.prevYearLabel,"multi-year":this._intl.prevMultiYearLabel}[this.calendar.currentView]}get nextButtonLabel(){return{month:this._intl.nextMonthLabel,year:this._intl.nextYearLabel,"multi-year":this._intl.nextMultiYearLabel}[this.calendar.currentView]}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){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:-Vt)}nextClicked(){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:Vt)}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)}_isSameView(re,je){return"month"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(je)&&this._dateAdapter.getMonth(re)==this._dateAdapter.getMonth(je):"year"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(je):$t(this._dateAdapter,re,je,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const je=this._dateAdapter.getYear(this.calendar.activeDate)-zt(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),Ce=je+Vt-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(je,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(Ce,0,1))]}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU((0,l.Rfq)(()=>he)),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(l.gRc))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],standalone:!0,features:[l.aNF],ngContentSelectors:m,decls:13,vars:11,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],[1,"cdk-visually-hidden",3,"id"],["mat-button","","type","button","aria-live","polite",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"],["mat-icon-button","","type","button",1,"mat-calendar-previous-button",3,"click","disabled"],["mat-icon-button","","type","button",1,"mat-calendar-next-button",3,"click","disabled"]],template:function(je,Ce){1&je&&(l.NAR(),l.j41(0,"div",0)(1,"div",1)(2,"label",2),l.EFF(3),l.k0s(),l.j41(4,"button",3),l.bIt("click",function(){return Ce.currentPeriodClicked()}),l.j41(5,"span",4),l.EFF(6),l.k0s(),l.qSk(),l.j41(7,"svg",5),l.nrm(8,"polygon",6),l.k0s()(),l.joV(),l.nrm(9,"div",7),l.SdG(10),l.j41(11,"button",8),l.bIt("click",function(){return Ce.previousClicked()}),l.k0s(),l.j41(12,"button",9),l.bIt("click",function(){return Ce.nextClicked()}),l.k0s()()()),2&je&&(l.R7$(2),l.Y8G("id",Ce._periodButtonLabelId),l.R7$(),l.JRh(Ce.periodButtonDescription),l.R7$(),l.BMQ("aria-label",Ce.periodButtonLabel)("aria-describedby",Ce._periodButtonLabelId),l.R7$(2),l.JRh(Ce.periodButtonText),l.R7$(),l.AVh("mat-calendar-invert","month"!==Ce.calendar.currentView),l.R7$(4),l.Y8G("disabled",!Ce.previousEnabled()),l.BMQ("aria-label",Ce.prevButtonLabel),l.R7$(),l.Y8G("disabled",!Ce.nextEnabled()),l.BMQ("aria-label",Ce.nextButtonLabel))},dependencies:[x.$z,x.iY],encapsulation:2,changeDetection:0})}return Zt})(),he=(()=>{class Zt{get startAt(){return this._startAt}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get activeDate(){return this._clampedActiveDate}set activeDate(re){this._clampedActiveDate=this._dateAdapter.clampDate(re,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}get currentView(){return this._currentView}set currentView(re){const je=this._currentView!==re?re:null;this._currentView=re,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),je&&this.viewChanged.emit(je)}constructor(re,je,Ce,ot){this._dateAdapter=je,this._dateFormats=Ce,this._changeDetectorRef=ot,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this._userSelection=new l.bkB,this._userDragDrop=new l.bkB,this._activeDrag=null,this.stateChanges=new d.B,this._intlChanges=re.changes.subscribe(()=>{ot.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new w.A8(this.headerComponent||we),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(re){const je=re.minDate&&!this._dateAdapter.sameDate(re.minDate.previousValue,re.minDate.currentValue)?re.minDate:void 0,Ce=re.maxDate&&!this._dateAdapter.sameDate(re.maxDate.previousValue,re.maxDate.currentValue)?re.maxDate:void 0,ot=je||Ce||re.dateFilter;if(ot&&!ot.firstChange){const ut=this._getCurrentViewComponent();ut&&(this._changeDetectorRef.detectChanges(),ut._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(re){const je=re.value;(this.selected instanceof at||je&&!this._dateAdapter.sameDate(je,this.selected))&&this.selectedChange.emit(je),this._userSelection.emit(re)}_yearSelectedInMultiYearView(re){this.yearSelected.emit(re)}_monthSelectedInYearView(re){this.monthSelected.emit(re)}_goToDateInView(re,je){this.activeDate=re,this.currentView=je}_dragStarted(re){this._activeDrag=re}_dragEnded(re){this._activeDrag&&(re.value&&this._userDragDrop.emit(re),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(l.gRc))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-calendar"]],viewQuery:function(je,Ce){if(1&je&&(l.GBs(Et,5),l.GBs(dt,5),l.GBs(tt,5)),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce.monthView=ot.first),l.mGM(ot=l.lsd())&&(Ce.yearView=ot.first),l.mGM(ot=l.lsd())&&(Ce.multiYearView=ot.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"],standalone:!0,features:[l.Jv_([Ie]),l.OA$,l.aNF],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(je,Ce){if(1&je&&(l.DNE(0,h,0,0,"ng-template",0),l.j41(1,"div",1),l.DNE(2,C,1,11,"mat-month-view",2)(3,k,1,6,"mat-year-view",3)(4,L,1,6,"mat-multi-year-view",3),l.k0s()),2&je){let ot;l.Y8G("cdkPortalOutlet",Ce._calendarHeaderPortal),l.R7$(2),l.vxM("month"===(ot=Ce.currentView)?2:"year"===ot?3:"multi-year"===ot?4:-1)}},dependencies:[w.I3,e.vR,Et,dt,tt],styles:['.mat-calendar{display:block;font-family:var(--mat-datepicker-calendar-text-font);font-size:var(--mat-datepicker-calendar-text-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);font-weight:var(--mat-datepicker-calendar-period-button-text-weight);--mdc-text-button-label-text-color:var(--mat-datepicker-calendar-period-button-text-color)}.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)}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.cdk-high-contrast-active .mat-calendar-arrow{fill:CanvasText}.mat-calendar-previous-button,.mat-calendar-next-button{position:relative}.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)}.mat-calendar-previous-button::after,.mat-calendar-next-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:"";margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.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);font-size:var(--mat-datepicker-calendar-header-text-size);font-weight:var(--mat-datepicker-calendar-header-text-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)}.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:""}'],encapsulation:2,changeDetection:0})}return Zt})();const q={transformPanel:(0,ee.hZ)("transformPanel",[(0,ee.kY)("void => enter-dropdown",(0,ee.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.i7)([(0,ee.iF)({opacity:0,transform:"scale(1, 0.8)"}),(0,ee.iF)({opacity:1,transform:"scale(1, 1)"})]))),(0,ee.kY)("void => enter-dialog",(0,ee.i0)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.i7)([(0,ee.iF)({opacity:0,transform:"scale(0.7)"}),(0,ee.iF)({transform:"none",opacity:1})]))),(0,ee.kY)("* => void",(0,ee.i0)("100ms linear",(0,ee.iF)({opacity:0})))]),fadeInCalendar:(0,ee.hZ)("fadeInCalendar",[(0,ee.wk)("void",(0,ee.iF)({opacity:0})),(0,ee.wk)("enter",(0,ee.iF)({opacity:1})),(0,ee.kY)("void => *",(0,ee.i0)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let Re=0;const Ne=new l.nKC("mat-datepicker-scroll-strategy",{providedIn:"root",factory:()=>{const Zt=(0,l.WQX)(t.hJ);return()=>Zt.scrollStrategies.reposition()}}),$e={provide:Ne,deps:[t.hJ],useFactory:function gt(Zt){return()=>Zt.scrollStrategies.reposition()}};let Fe=(()=>{class Zt{constructor(re,je,Ce,ot,ut,ii){this._elementRef=re,this._changeDetectorRef=je,this._globalModel=Ce,this._dateAdapter=ot,this._rangeSelectionStrategy=ut,this._subscriptions=new T.yU,this._animationDone=new d.B,this._isAnimating=!1,this._actionsPortal=null,this._closeButtonText=ii.closeCalendarLabel}ngOnInit(){this._animationState=this.datepicker.touchUi?"enter-dialog":"enter-dropdown"}ngAfterViewInit(){this._subscriptions.add(this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})),this._calendar.focusActiveCell()}ngOnDestroy(){this._subscriptions.unsubscribe(),this._animationDone.complete()}_handleUserSelection(re){const je=this._model.selection,Ce=re.value,ot=je instanceof at;if(ot&&this._rangeSelectionStrategy){const ut=this._rangeSelectionStrategy.selectionFinished(Ce,je,re.event);this._model.updateSelection(ut,this)}else Ce&&(ot||!this._dateAdapter.sameDate(Ce,je))&&this._model.add(Ce);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(re){this._model.updateSelection(re.value,this)}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_handleAnimationEvent(re){this._isAnimating="start"===re.phaseName,this._isAnimating||this._animationDone.next()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(re,je){this._model=re?this._globalModel.clone():this._globalModel,this._actionsPortal=re,je&&this._changeDetectorRef.detectChanges()}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(l.gRc),l.rXU(pt),l.rXU(I.MJ),l.rXU(yt,8),l.rXU(Ke))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker-content"]],viewQuery:function(je,Ce){if(1&je&&l.GBs(he,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._calendar=ot.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:5,hostBindings:function(je,Ce){1&je&&l.Kam("@transformPanel.start",function(ut){return Ce._handleAnimationEvent(ut)})("@transformPanel.done",function(ut){return Ce._handleAnimationEvent(ut)}),2&je&&(l.zvX("@transformPanel",Ce._animationState),l.HbH(Ce.color?"mat-"+Ce.color:""),l.AVh("mat-datepicker-content-touch",Ce.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],standalone:!0,features:[l.aNF],decls:5,vars:27,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","mat-raised-button","",1,"mat-datepicker-close-button",3,"focus","blur","click","color"]],template:function(je,Ce){if(1&je&&(l.j41(0,"div",0)(1,"mat-calendar",1),l.bIt("yearSelected",function(ut){return Ce.datepicker._selectYear(ut)})("monthSelected",function(ut){return Ce.datepicker._selectMonth(ut)})("viewChanged",function(ut){return Ce.datepicker._viewChanged(ut)})("_userSelection",function(ut){return Ce._handleUserSelection(ut)})("_userDragDrop",function(ut){return Ce._handleUserDragDrop(ut)}),l.k0s(),l.DNE(2,_,0,0,"ng-template",2),l.j41(3,"button",3),l.bIt("focus",function(){return Ce._closeButtonFocused=!0})("blur",function(){return Ce._closeButtonFocused=!1})("click",function(){return Ce.datepicker.close()}),l.EFF(4),l.k0s()()),2&je){let ot;l.AVh("mat-datepicker-content-container-with-custom-header",Ce.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",Ce._actionsPortal),l.BMQ("aria-modal",!0)("aria-labelledby",null!==(ot=Ce._dialogLabelId)&&void 0!==ot?ot:void 0),l.R7$(),l.HbH(Ce.datepicker.panelClass),l.Y8G("id",Ce.datepicker.id)("startAt",Ce.datepicker.startAt)("startView",Ce.datepicker.startView)("minDate",Ce.datepicker._getMinDate())("maxDate",Ce.datepicker._getMaxDate())("dateFilter",Ce.datepicker._getDateFilter())("headerComponent",Ce.datepicker.calendarHeaderComponent)("selected",Ce._getSelected())("dateClass",Ce.datepicker.dateClass)("comparisonStart",Ce.comparisonStart)("comparisonEnd",Ce.comparisonEnd)("@fadeInCalendar","enter")("startDateAccessibleName",Ce.startDateAccessibleName)("endDateAccessibleName",Ce.endDateAccessibleName),l.R7$(),l.Y8G("cdkPortalOutlet",Ce._actionsPortal),l.R7$(),l.AVh("cdk-visually-hidden",!Ce._closeButtonFocused),l.Y8G("color",Ce.color||"primary"),l.R7$(),l.JRh(Ce._closeButtonText)}},dependencies:[e.kB,he,w.I3,x.$z],styles:[".mat-datepicker-content{display:block;border-radius:4px;background-color:var(--mat-datepicker-calendar-container-background-color);color:var(--mat-datepicker-calendar-container-text-color);box-shadow:var(--mat-datepicker-calendar-container-elevation-shadow);border-radius:var(--mat-datepicker-calendar-container-shape)}.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}.ng-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);border-radius:var(--mat-datepicker-calendar-container-touch-shape);position:relative;overflow:visible}.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}@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}}"],encapsulation:2,data:{animation:[q.transformPanel,q.fadeInCalendar]},changeDetection:0})}return Zt})(),Ge=(()=>{class Zt{get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(re){this._color=re}get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(re){re!==this._disabled&&(this._disabled=re,this.stateChanges.next(void 0))}get panelClass(){return this._panelClass}set panelClass(re){this._panelClass=(0,J.cc)(re)}get opened(){return this._opened}set opened(re){re?this.open():this.close()}_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}constructor(re,je,Ce,ot,ut,ii,si){this._overlay=re,this._ngZone=je,this._viewContainerRef=Ce,this._dateAdapter=ut,this._dir=ii,this._model=si,this._inputStateChanges=T.yU.EMPTY,this._document=(0,l.WQX)(S.qQ),this.startView="month",this.touchUi=!1,this.xPosition="start",this.yPosition="below",this.restoreFocus=!0,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this.openedStream=new l.bkB,this.closedStream=new l.bkB,this._opened=!1,this.id="mat-datepicker-"+Re++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new d.B,this._scrollStrategy=ot}ngOnChanges(re){const je=re.xPosition||re.yPosition;if(je&&!je.firstChange&&this._overlayRef){const Ce=this._overlayRef.getConfig().positionStrategy;Ce instanceof t.rW&&(this._setConnectedPositions(Ce),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(re){this._model.add(re)}_selectYear(re){this.yearSelected.emit(re)}_selectMonth(re){this.monthSelected.emit(re)}_viewChanged(re){this.viewChanged.emit(re)}registerInput(re){return this._inputStateChanges.unsubscribe(),this.datepickerInput=re,this._inputStateChanges=re.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(re){this._actionsPortal=re,this._componentRef?.instance._assignActions(re,!0)}removeActions(re){re===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,W.vc)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const re=this.restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,je=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:Ce,location:ot}=this._componentRef;Ce._startExitAnimation(),Ce._animationDone.pipe((0,$.s)(1)).subscribe(()=>{const ut=this._document.activeElement;re&&(!ut||ut===this._document.activeElement||ot.nativeElement.contains(ut))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()})}re?setTimeout(je):je()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(re){re.datepicker=this,re.color=this.color,re._dialogLabelId=this.datepickerInput.getOverlayLabelId(),re._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const re=this.touchUi,je=new w.A8(Fe,this._viewContainerRef),Ce=this._overlayRef=this._overlay.create(new t.rR({positionStrategy:re?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[re?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir,scrollStrategy:re?this._overlay.scrollStrategies.block():this._scrollStrategy(),panelClass:"mat-datepicker-"+(re?"dialog":"popup")}));this._getCloseStream(Ce).subscribe(ot=>{ot&&ot.preventDefault(),this.close()}),Ce.keydownEvents().subscribe(ot=>{const ut=ot.keyCode;(ut===R.i7||ut===R.n6||ut===R.UQ||ut===R.LE||ut===R.w_||ut===R.dB)&&ot.preventDefault()}),this._componentRef=Ce.attach(je),this._forwardContentValues(this._componentRef.instance),re||this._ngZone.onStable.pipe((0,$.s)(1)).subscribe(()=>Ce.updatePosition())}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return this._overlay.position().global().centerHorizontally().centerVertically()}_getDropdownStrategy(){const re=this._overlay.position().flexibleConnectedTo(this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(re)}_setConnectedPositions(re){const je="end"===this.xPosition?"end":"start",Ce="start"===je?"end":"start",ot="above"===this.yPosition?"bottom":"top",ut="top"===ot?"bottom":"top";return re.withPositions([{originX:je,originY:ut,overlayX:je,overlayY:ot},{originX:je,originY:ot,overlayX:je,overlayY:ut},{originX:Ce,originY:ut,overlayX:Ce,overlayY:ot},{originX:Ce,originY:ot,overlayX:Ce,overlayY:ut}])}_getCloseStream(re){const je=["ctrlKey","shiftKey","metaKey"];return(0,y.h)(re.backdropClick(),re.detachments(),re.keydownEvents().pipe((0,Q.p)(Ce=>Ce.keyCode===R._f&&!(0,R.rp)(Ce)||this.datepickerInput&&(0,R.rp)(Ce,"altKey")&&Ce.keyCode===R.i7&&je.every(ot=>!(0,R.rp)(Ce,ot)))))}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(t.hJ),l.rXU(l.SKi),l.rXU(l.c1b),l.rXU(Ne),l.rXU(I.MJ,8),l.rXU(z.dS,8),l.rXU(pt))};static#t=this.\u0275dir=l.FsC({type:Zt,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:[2,"touchUi","touchUi",l.L39],disabled:[2,"disabled","disabled",l.L39],xPosition:"xPosition",yPosition:"yPosition",restoreFocus:[2,"restoreFocus","restoreFocus",l.L39],dateClass:"dateClass",panelClass:"panelClass",opened:[2,"opened","opened",l.L39]},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[l.GFd,l.OA$]})}return Zt})(),et=(()=>{class Zt extends Ge{static#e=this.\u0275fac=(()=>{let re;return function(Ce){return(re||(re=l.xGo(Zt)))(Ce||Zt)}})();static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],standalone:!0,features:[l.Jv_([Ie,{provide:Ge,useExisting:Zt}]),l.Vt3,l.aNF],decls:0,vars:0,template:function(je,Ce){},encapsulation:2,changeDetection:0})}return Zt})();class st{constructor(bt,re){this.target=bt,this.targetElement=re,this.value=this.target.value}}let Tt=(()=>{class Zt{get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(re){this._assignValueProgrammatically(re)}get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(re){const je=re,Ce=this._elementRef.nativeElement;this._disabled!==je&&(this._disabled=je,this.stateChanges.next(void 0)),je&&this._isInitialized&&Ce.blur&&Ce.blur()}_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(re){this._model=re,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(je=>{if(this._shouldHandleChangeEvent(je)){const Ce=this._getValueFromModel(je.selection);this._lastValueValid=this._isValidValue(Ce),this._cvaOnChange(Ce),this._onTouched(),this._formatValue(Ce),this.dateInput.emit(new st(this,this._elementRef.nativeElement)),this.dateChange.emit(new st(this,this._elementRef.nativeElement))}})}constructor(re,je,Ce){this._elementRef=re,this._dateAdapter=je,this._dateFormats=Ce,this.dateChange=new l.bkB,this.dateInput=new l.bkB,this.stateChanges=new d.B,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=T.yU.EMPTY,this._localeSubscription=T.yU.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value));return!ut||this._matchesFilter(ut)?null:{matDatepickerFilter:!0}},this._minValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value)),ii=this._getMinDate();return!ii||!ut||this._dateAdapter.compareDate(ii,ut)<=0?null:{matDatepickerMin:{min:ii,actual:ut}}},this._maxValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value)),ii=this._getMaxDate();return!ii||!ut||this._dateAdapter.compareDate(ii,ut)>=0?null:{matDatepickerMax:{max:ii,actual:ut}}},this._lastValueValid=!1,this._localeSubscription=je.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(re){(function mi(Zt,bt){const re=Object.keys(Zt);for(let je of re){const{previousValue:Ce,currentValue:ot}=Zt[je];if(!bt.isDateInstance(Ce)||!bt.isDateInstance(ot))return!0;if(!bt.sameDate(Ce,ot))return!0}return!1})(re,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(re){this._validatorOnChange=re}validate(re){return this._validator?this._validator(re):null}writeValue(re){this._assignValueProgrammatically(re)}registerOnChange(re){this._cvaOnChange=re}registerOnTouched(re){this._onTouched=re}setDisabledState(re){this.disabled=re}_onKeydown(re){(0,R.rp)(re,"altKey")&&re.keyCode===R.n6&&["ctrlKey","shiftKey","metaKey"].every(ot=>!(0,R.rp)(re,ot))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),re.preventDefault())}_onInput(re){const je=this._lastValueValid;let Ce=this._dateAdapter.parse(re,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(Ce),Ce=this._dateAdapter.getValidDateOrNull(Ce);const ot=!this._dateAdapter.sameDate(Ce,this.value);!Ce||ot?this._cvaOnChange(Ce):(re&&!this.value&&this._cvaOnChange(Ce),je!==this._lastValueValid&&this._validatorOnChange()),ot&&(this._assignValue(Ce),this.dateInput.emit(new st(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new st(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(re){this._elementRef.nativeElement.value=null!=re?this._dateAdapter.format(re,this._dateFormats.display.dateInput):""}_assignValue(re){this._model?(this._assignValueToModel(re),this._pendingValue=null):this._pendingValue=re}_isValidValue(re){return!re||this._dateAdapter.isValid(re)}_parentDisabled(){return!1}_assignValueProgrammatically(re){re=this._dateAdapter.deserialize(re),this._lastValueValid=this._isValidValue(re),re=this._dateAdapter.getValidDateOrNull(re),this._assignValue(re),this._formatValue(re)}_matchesFilter(re){const je=this._getDateFilter();return!je||je(re)}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(I.MJ,8),l.rXU(I.de,8))};static#t=this.\u0275dir=l.FsC({type:Zt,inputs:{value:"value",disabled:[2,"disabled","disabled",l.L39]},outputs:{dateChange:"dateChange",dateInput:"dateInput"},standalone:!0,features:[l.GFd,l.OA$]})}return Zt})();const Kt={provide:ie.kq,useExisting:(0,l.Rfq)(()=>Xi),multi:!0},Pt={provide:ie.cz,useExisting:(0,l.Rfq)(()=>Xi),multi:!0};let Xi=(()=>{class Zt extends Tt{set matDatepicker(re){re&&(this._datepicker=re,this._closedSubscription=re.closedStream.subscribe(()=>this._onTouched()),this._registerModel(re.registerInput(this)))}get min(){return this._min}set min(re){const je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(je,this._min)||(this._min=je,this._validatorOnChange())}get max(){return this._max}set max(re){const je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(je,this._max)||(this._max=je,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(re){const je=this._matchesFilter(this.value);this._dateFilter=re,this._matchesFilter(this.value)!==je&&this._validatorOnChange()}constructor(re,je,Ce,ot){super(re,je,Ce),this._formField=ot,this._closedSubscription=T.yU.EMPTY,this._validator=ie.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()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(re){return re}_assignValueToModel(re){this._model&&this._model.updateSelection(re,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(re){return re.source!==this}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(ge.xb,8))};static#t=this.\u0275dir=l.FsC({type:Zt,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(je,Ce){1&je&&l.bIt("input",function(ut){return Ce._onInput(ut.target.value)})("change",function(){return Ce._onChange()})("blur",function(){return Ce._onBlur()})("keydown",function(ut){return Ce._onKeydown(ut)}),2&je&&(l.Mr5("disabled",Ce.disabled),l.BMQ("aria-haspopup",Ce._datepicker?"dialog":null)("aria-owns",(null==Ce._datepicker?null:Ce._datepicker.opened)&&Ce._datepicker.id||null)("min",Ce.min?Ce._dateAdapter.toIso8601(Ce.min):null)("max",Ce.max?Ce._dateAdapter.toIso8601(Ce.max):null)("data-mat-calendar",Ce._datepicker?Ce._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[0,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],standalone:!0,features:[l.Jv_([Kt,Pt,{provide:ae.Oh,useExisting:Zt}]),l.Vt3]})}return Zt})(),di=(()=>{class Zt{static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275dir=l.FsC({type:Zt,selectors:[["","matDatepickerToggleIcon",""]],standalone:!0})}return Zt})(),fi=(()=>{class Zt{get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(re){this._disabled=re}constructor(re,je,Ce){this._intl=re,this._changeDetectorRef=je,this._stateChanges=T.yU.EMPTY;const ot=Number(Ce);this.tabIndex=ot||0===ot?ot:null}ngOnChanges(re){re.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(re){this.datepicker&&!this.disabled&&(this.datepicker.open(),re.stopPropagation())}_watchStateChanges(){const re=this.datepicker?this.datepicker.stateChanges:(0,F.of)(),je=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,F.of)(),Ce=this.datepicker?(0,y.h)(this.datepicker.openedStream,this.datepicker.closedStream):(0,F.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,y.h)(this._intl.changes,re,je,Ce).subscribe(()=>this._changeDetectorRef.markForCheck())}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU(l.gRc),l.kS0("tabindex"))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker-toggle"]],contentQueries:function(je,Ce,ot){if(1&je&&l.wni(ot,di,5),2&je){let ut;l.mGM(ut=l.lsd())&&(Ce._customIcon=ut.first)}},viewQuery:function(je,Ce){if(1&je&&l.GBs(r,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._button=ot.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(je,Ce){1&je&&l.bIt("click",function(ut){return Ce._open(ut)}),2&je&&(l.BMQ("tabindex",null)("data-mat-calendar",Ce.datepicker?Ce.datepicker.id:null),l.AVh("mat-datepicker-toggle-active",Ce.datepicker&&Ce.datepicker.opened)("mat-accent",Ce.datepicker&&"accent"===Ce.datepicker.color)("mat-warn",Ce.datepicker&&"warn"===Ce.datepicker.color))},inputs:{datepicker:[0,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[0,"aria-label","ariaLabel"],disabled:[2,"disabled","disabled",l.L39],disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],standalone:!0,features:[l.GFd,l.OA$,l.aNF],ngContentSelectors:V,decls:4,vars:6,consts:[["button",""],["mat-icon-button","","type","button",3,"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(je,Ce){1&je&&(l.NAR(v),l.j41(0,"button",1,0),l.DNE(2,N,2,0,":svg:svg",2),l.SdG(3),l.k0s()),2&je&&(l.Y8G("disabled",Ce.disabled)("disableRipple",Ce.disableRipple),l.BMQ("aria-haspopup",Ce.datepicker?"dialog":null)("aria-label",Ce.ariaLabel||Ce._intl.openCalendarLabel)("tabindex",Ce.disabled?-1:Ce.tabIndex),l.R7$(2),l.vxM(Ce._customIcon?-1:2))},dependencies:[x.iY],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color)}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color)}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}"],encapsulation:2,changeDetection:0})}return Zt})(),fn=(()=>{class Zt{static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275mod=l.$C({type:Zt});static#i=this.\u0275inj=l.G2t({providers:[Ke,$e],imports:[S.MD,x.Hl,t.z_,e.Pd,w.jc,I.yE,Fe,fi,we,f.Gj]})}return Zt})()},5351:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>X,di:()=>me,bZ:()=>_e,tx:()=>pe,hM:()=>ue,CP:()=>Ke});var e=g(6969),t=g(177),w=g(4438),S=g(8617),l=g(6860),x=g(6939),f=g(7336),I=g(1413),d=g(9030),T=g(7673),y=g(8203),F=g(9172);function R(Xe,yt){}class z{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.closeOnNavigation=!0,this.closeOnDestroy=!0,this.closeOnOverlayDetachments=!0}}let $=(()=>{class Xe extends x.lb{constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt){super(),this._elementRef=Ye,this._focusTrapFactory=rt,this._config=Nt,this._interactivityChecker=Et,this._ngZone=Vt,this._overlayRef=oe,this._focusMonitor=tt,this._platform=(0,w.WQX)(l.OD),this._focusTrap=null,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this._ariaLabelledByQueue=[],this._changeDetectorRef=(0,w.WQX)(w.gRc),this.attachDomPortal=$t=>{this._portalOutlet.hasAttached();const zt=this._portalOutlet.attachDomPortal($t);return this._contentAttached(),zt},this._document=Yt,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_addAriaLabelledBy(Ye){this._ariaLabelledByQueue.push(Ye),this._changeDetectorRef.markForCheck()}_removeAriaLabelledBy(Ye){const rt=this._ariaLabelledByQueue.indexOf(Ye);rt>-1&&(this._ariaLabelledByQueue.splice(rt,1),this._changeDetectorRef.markForCheck())}_contentAttached(){this._initializeFocusTrap(),this._handleBackdropClicks(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._restoreFocus()}attachComponentPortal(Ye){this._portalOutlet.hasAttached();const rt=this._portalOutlet.attachComponentPortal(Ye);return this._contentAttached(),rt}attachTemplatePortal(Ye){this._portalOutlet.hasAttached();const rt=this._portalOutlet.attachTemplatePortal(Ye);return this._contentAttached(),rt}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Ye,rt){this._interactivityChecker.isFocusable(Ye)||(Ye.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Yt=()=>{Ye.removeEventListener("blur",Yt),Ye.removeEventListener("mousedown",Yt),Ye.removeAttribute("tabindex")};Ye.addEventListener("blur",Yt),Ye.addEventListener("mousedown",Yt)})),Ye.focus(rt)}_focusByCssSelector(Ye,rt){let Yt=this._elementRef.nativeElement.querySelector(Ye);Yt&&this._forceFocus(Yt,rt)}_trapFocus(){const Ye=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||Ye.focus();break;case!0:case"first-tabbable":this._focusTrap?.focusInitialElementWhenReady().then(rt=>{rt||this._focusDialogContainer()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this._config.autoFocus)}}_restoreFocus(){const Ye=this._config.restoreFocus;let rt=null;if("string"==typeof Ye?rt=this._document.querySelector(Ye):"boolean"==typeof Ye?rt=Ye?this._elementFocusedBeforeDialogWasOpened:null:Ye&&(rt=Ye),this._config.restoreFocus&&rt&&"function"==typeof rt.focus){const Yt=(0,l.vc)(),Nt=this._elementRef.nativeElement;(!Yt||Yt===this._document.body||Yt===Nt||Nt.contains(Yt))&&(this._focusMonitor?(this._focusMonitor.focusVia(rt,this._closeInteractionType),this._closeInteractionType=null):rt.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const Ye=this._elementRef.nativeElement,rt=(0,l.vc)();return Ye===rt||Ye.contains(rt)}_initializeFocusTrap(){this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,l.vc)()))}_handleBackdropClicks(){this._overlayRef.backdropClick().subscribe(()=>{this._config.disableClose&&this._recaptureFocus()})}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(w.aKT),w.rXU(S.GX),w.rXU(t.qQ,8),w.rXU(z),w.rXU(S.Z7),w.rXU(w.SKi),w.rXU(e.yY),w.rXU(S.FN))};static#t=this.\u0275cmp=w.VBU({type:Xe,selectors:[["cdk-dialog-container"]],viewQuery:function(rt,Yt){if(1&rt&&w.GBs(x.I3,7),2&rt){let Nt;w.mGM(Nt=w.lsd())&&(Yt._portalOutlet=Nt.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(rt,Yt){2&rt&&w.BMQ("id",Yt._config.id||null)("role",Yt._config.role)("aria-modal",Yt._config.ariaModal)("aria-labelledby",Yt._config.ariaLabel?null:Yt._ariaLabelledByQueue[0])("aria-label",Yt._config.ariaLabel)("aria-describedby",Yt._config.ariaDescribedBy||null)},standalone:!0,features:[w.Vt3,w.aNF],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(rt,Yt){1&rt&&w.DNE(0,R,0,0,"ng-template",0)},dependencies:[x.I3],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}"],encapsulation:2})}return Xe})();class j{constructor(yt,Ye){this.overlayRef=yt,this.config=Ye,this.closed=new I.B,this.disableClose=Ye.disableClose,this.backdropClick=yt.backdropClick(),this.keydownEvents=yt.keydownEvents(),this.outsidePointerEvents=yt.outsidePointerEvents(),this.id=Ye.id,this.keydownEvents.subscribe(rt=>{rt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(rt)&&(rt.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{this.disableClose||this.close(void 0,{focusOrigin:"mouse"})}),this._detachSubscription=yt.detachments().subscribe(()=>{!1!==Ye.closeOnOverlayDetachments&&this.close()})}close(yt,Ye){if(this.containerInstance){const rt=this.closed;this.containerInstance._closeInteractionType=Ye?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),rt.next(yt),rt.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(yt="",Ye=""){return this.overlayRef.updateSize({width:yt,height:Ye}),this}addPanelClass(yt){return this.overlayRef.addPanelClass(yt),this}removePanelClass(yt){return this.overlayRef.removePanelClass(yt),this}}const Q=new w.nKC("DialogScrollStrategy",{providedIn:"root",factory:()=>{const Xe=(0,w.WQX)(e.hJ);return()=>Xe.scrollStrategies.block()}}),J=new w.nKC("DialogData"),ee=new w.nKC("DefaultDialogConfig");let ae=0,Me=(()=>{class Xe{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}constructor(Ye,rt,Yt,Nt,Et,Vt){this._overlay=Ye,this._injector=rt,this._defaultOptions=Yt,this._parentDialog=Nt,this._overlayContainer=Et,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new I.B,this._afterOpenedAtThisLevel=new I.B,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,d.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,F.Z)(void 0))),this._scrollStrategy=Vt}open(Ye,rt){(rt={...this._defaultOptions||new z,...rt}).id=rt.id||"cdk-dialog-"+ae++,rt.id&&this.getDialogById(rt.id);const Nt=this._getOverlayConfig(rt),Et=this._overlay.create(Nt),Vt=new j(Et,rt),oe=this._attachContainer(Et,Vt,rt);return Vt.containerInstance=oe,this._attachDialogContent(Ye,Vt,oe,rt),this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(Vt),Vt.closed.subscribe(()=>this._removeOpenDialog(Vt,!0)),this.afterOpened.next(Vt),Vt}closeAll(){Te(this.openDialogs,Ye=>Ye.close())}getDialogById(Ye){return this.openDialogs.find(rt=>rt.id===Ye)}ngOnDestroy(){Te(this._openDialogsAtThisLevel,Ye=>{!1===Ye.config.closeOnDestroy&&this._removeOpenDialog(Ye,!1)}),Te(this._openDialogsAtThisLevel,Ye=>Ye.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(Ye){const rt=new e.rR({positionStrategy:Ye.positionStrategy||this._overlay.position().global().centerHorizontally().centerVertically(),scrollStrategy:Ye.scrollStrategy||this._scrollStrategy(),panelClass:Ye.panelClass,hasBackdrop:Ye.hasBackdrop,direction:Ye.direction,minWidth:Ye.minWidth,minHeight:Ye.minHeight,maxWidth:Ye.maxWidth,maxHeight:Ye.maxHeight,width:Ye.width,height:Ye.height,disposeOnNavigation:Ye.closeOnNavigation});return Ye.backdropClass&&(rt.backdropClass=Ye.backdropClass),rt}_attachContainer(Ye,rt,Yt){const Nt=Yt.injector||Yt.viewContainerRef?.injector,Et=[{provide:z,useValue:Yt},{provide:j,useValue:rt},{provide:e.yY,useValue:Ye}];let Vt;Yt.container?"function"==typeof Yt.container?Vt=Yt.container:(Vt=Yt.container.type,Et.push(...Yt.container.providers(Yt))):Vt=$;const oe=new x.A8(Vt,Yt.viewContainerRef,w.zZn.create({parent:Nt||this._injector,providers:Et}),Yt.componentFactoryResolver);return Ye.attach(oe).instance}_attachDialogContent(Ye,rt,Yt,Nt){if(Ye instanceof w.C4Q){const Et=this._createInjector(Nt,rt,Yt,void 0);let Vt={$implicit:Nt.data,dialogRef:rt};Nt.templateContext&&(Vt={...Vt,..."function"==typeof Nt.templateContext?Nt.templateContext():Nt.templateContext}),Yt.attachTemplatePortal(new x.VA(Ye,null,Vt,Et))}else{const Et=this._createInjector(Nt,rt,Yt,this._injector),Vt=Yt.attachComponentPortal(new x.A8(Ye,Nt.viewContainerRef,Et,Nt.componentFactoryResolver));rt.componentRef=Vt,rt.componentInstance=Vt.instance}}_createInjector(Ye,rt,Yt,Nt){const Et=Ye.injector||Ye.viewContainerRef?.injector,Vt=[{provide:J,useValue:Ye.data},{provide:j,useValue:rt}];return Ye.providers&&("function"==typeof Ye.providers?Vt.push(...Ye.providers(rt,Ye,Yt)):Vt.push(...Ye.providers)),Ye.direction&&(!Et||!Et.get(y.dS,null,{optional:!0}))&&Vt.push({provide:y.dS,useValue:{value:Ye.direction,change:(0,T.of)()}}),w.zZn.create({parent:Et||Nt,providers:Vt})}_removeOpenDialog(Ye,rt){const Yt=this.openDialogs.indexOf(Ye);Yt>-1&&(this.openDialogs.splice(Yt,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Nt,Et)=>{Nt?Et.setAttribute("aria-hidden",Nt):Et.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),rt&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const Ye=this._overlayContainer.getContainerElement();if(Ye.parentElement){const rt=Ye.parentElement.children;for(let Yt=rt.length-1;Yt>-1;Yt--){const Nt=rt[Yt];Nt!==Ye&&"SCRIPT"!==Nt.nodeName&&"STYLE"!==Nt.nodeName&&!Nt.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Nt,Nt.getAttribute("aria-hidden")),Nt.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const Ye=this._parentDialog;return Ye?Ye._getAfterAllClosed():this._afterAllClosedAtThisLevel}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.KVO(e.hJ),w.KVO(w.zZn),w.KVO(ee,8),w.KVO(Xe,12),w.KVO(e.Sf),w.KVO(Q))};static#t=this.\u0275prov=w.jDH({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})();function Te(Xe,yt){let Ye=Xe.length;for(;Ye--;)yt(Xe[Ye])}let de=(()=>{class Xe{static#e=this.\u0275fac=function(rt){return new(rt||Xe)};static#t=this.\u0275mod=w.$C({type:Xe});static#i=this.\u0275inj=w.G2t({providers:[Me],imports:[e.z_,x.jc,S.Pd,x.jc]})}return Xe})();var D=g(4085),n=g(7786),c=g(5964),m=g(6697),h=g(6600);function k(Xe,yt){}g(9969);class L{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const _="mdc-dialog--open",r="mdc-dialog--opening",v="mdc-dialog--closing";let ne=(()=>{class Xe extends ${constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt,$t){super(Ye,rt,Yt,Nt,Et,Vt,oe,$t),this._animationMode=tt,this._animationStateChanged=new w.bkB,this._animationsEnabled="NoopAnimations"!==this._animationMode,this._actionSectionCount=0,this._hostElement=this._elementRef.nativeElement,this._enterAnimationDuration=this._animationsEnabled?ze(this._config.enterAnimationDuration)??150:0,this._exitAnimationDuration=this._animationsEnabled?ze(this._config.exitAnimationDuration)??75:0,this._animationTimer=null,this._finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)},this._finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})}}_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(Ee,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(r,_)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(_),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(_),this._animationsEnabled?(this._hostElement.style.setProperty(Ee,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(v)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_updateActionSectionCount(Ye){this._actionSectionCount+=Ye,this._changeDetectorRef.markForCheck()}_clearAnimationClasses(){this._hostElement.classList.remove(r,v)}_waitForAnimationToComplete(Ye,rt){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(rt,Ye)}_requestAnimationFrame(Ye){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(Ye):Ye()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(Ye){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Ye})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal(Ye){const rt=super.attachComponentPortal(Ye);return rt.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),rt}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(w.aKT),w.rXU(S.GX),w.rXU(t.qQ,8),w.rXU(L),w.rXU(S.Z7),w.rXU(w.SKi),w.rXU(e.yY),w.rXU(w.bc$,8),w.rXU(S.FN))};static#t=this.\u0275cmp=w.VBU({type:Xe,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:10,hostBindings:function(rt,Yt){2&rt&&(w.Mr5("id",Yt._config.id),w.BMQ("aria-modal",Yt._config.ariaModal)("role",Yt._config.role)("aria-labelledby",Yt._config.ariaLabel?null:Yt._ariaLabelledByQueue[0])("aria-label",Yt._config.ariaLabel)("aria-describedby",Yt._config.ariaDescribedBy||null),w.AVh("_mat-animation-noopable",!Yt._animationsEnabled)("mat-mdc-dialog-container-with-actions",Yt._actionSectionCount>0))},standalone:!0,features:[w.Vt3,w.aNF],decls:3,vars:0,consts:[[1,"mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(rt,Yt){1&rt&&(w.j41(0,"div",0)(1,"div",1),w.DNE(2,k,0,0,"ng-template",2),w.k0s()())},dependencies:[x.I3],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-dialog,.mdc-dialog__scrim{position:fixed;top:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.mdc-dialog{display:none;z-index:var(--mdc-dialog-z-index, 7)}.mdc-dialog .mdc-dialog__content{padding:20px 24px 20px 24px}.mdc-dialog .mdc-dialog__surface{min-width:280px}@media(max-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:calc(100vw - 32px)}}@media(min-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:560px}}.mdc-dialog .mdc-dialog__surface{max-height:calc(100% - 32px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-width:none}@media(max-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px;width:560px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 112px)}}@media(max-width: 720px)and (min-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:560px}}@media(max-width: 720px)and (max-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:calc(100vh - 160px)}}@media(max-width: 720px)and (min-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px}}@media(max-width: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-height: 400px),(max-width: 600px),(min-width: 720px)and (max-height: 400px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{height:100%;max-height:100vh;max-width:100vw;width:100vw;border-radius:0}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{order:-1;left:-12px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__header{padding:0 16px 9px;justify-content:flex-start}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__title{margin-left:calc(16px - 2 * 12px)}}@media(min-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 400px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}.mdc-dialog.mdc-dialog__scrim--hidden .mdc-dialog__scrim{opacity:0}.mdc-dialog__scrim{opacity:0;z-index:-1}.mdc-dialog__container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;pointer-events:none}.mdc-dialog__surface{position:relative;display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;max-width:100%;max-height:100%;pointer-events:auto;overflow-y:auto;outline:0;transform:scale(0.8)}.mdc-dialog__surface .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}[dir=rtl] .mdc-dialog__surface,.mdc-dialog__surface[dir=rtl]{text-align:right}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-dialog__surface{outline:2px solid windowText}}.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}@media screen and (forced-colors: active){.mdc-dialog__surface::before{border-color:CanvasText}}@media screen and (-ms-high-contrast: active),screen and (-ms-high-contrast: none){.mdc-dialog__surface::before{content:none}}.mdc-dialog__title{display:block;margin-top:0;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:0 24px 9px}.mdc-dialog__title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mdc-dialog__title,.mdc-dialog__title[dir=rtl]{text-align:right}.mdc-dialog--scrollable .mdc-dialog__title{margin-bottom:1px;padding-bottom:15px}.mdc-dialog--fullscreen .mdc-dialog__header{align-items:baseline;border-bottom:1px solid rgba(0,0,0,0);display:inline-flex;justify-content:space-between;padding:0 24px 9px;z-index:1}@media screen and (forced-colors: active){.mdc-dialog--fullscreen .mdc-dialog__header{border-bottom-color:CanvasText}}.mdc-dialog--fullscreen .mdc-dialog__header .mdc-dialog__close{right:-12px}.mdc-dialog--fullscreen .mdc-dialog__title{margin-bottom:0;padding:0;border-bottom:0}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__title{border-bottom:0;margin-bottom:0}.mdc-dialog--fullscreen .mdc-dialog__close{top:5px}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--fullscreen--titleless .mdc-dialog__close{margin-top:4px}.mdc-dialog--fullscreen--titleless.mdc-dialog--scrollable .mdc-dialog__close{margin-top:0}.mdc-dialog__content{flex-grow:1;box-sizing:border-box;margin:0;overflow:auto}.mdc-dialog__content>:first-child{margin-top:0}.mdc-dialog__content>:last-child{margin-bottom:0}.mdc-dialog__title+.mdc-dialog__content,.mdc-dialog__header+.mdc-dialog__content{padding-top:0}.mdc-dialog--scrollable .mdc-dialog__title+.mdc-dialog__content{padding-top:8px;padding-bottom:8px}.mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:6px 0 0}.mdc-dialog--scrollable .mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:0}.mdc-dialog__actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;box-sizing:border-box;min-height:52px;margin:0;padding:8px;border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--stacked .mdc-dialog__actions{flex-direction:column;align-items:flex-end}.mdc-dialog__button{margin-left:8px;margin-right:0;max-width:100%;text-align:right}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{margin-left:0;margin-right:8px}.mdc-dialog__button:first-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button:first-child,.mdc-dialog__button:first-child[dir=rtl]{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{text-align:left}.mdc-dialog--stacked .mdc-dialog__button:not(:first-child){margin-top:12px}.mdc-dialog--open,.mdc-dialog--opening,.mdc-dialog--closing{display:flex}.mdc-dialog--opening .mdc-dialog__scrim{transition:opacity 150ms linear}.mdc-dialog--opening .mdc-dialog__container{transition:opacity 75ms linear,transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-dialog--closing .mdc-dialog__scrim,.mdc-dialog--closing .mdc-dialog__container{transition:opacity 75ms linear}.mdc-dialog--closing .mdc-dialog__container{transform:none}.mdc-dialog--closing .mdc-dialog__surface{transform:none}.mdc-dialog--open .mdc-dialog__scrim{opacity:1}.mdc-dialog--open .mdc-dialog__container{opacity:1}.mdc-dialog--open .mdc-dialog__surface{transform:none}.mdc-dialog--open.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim{opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{transition:opacity 75ms linear}.mdc-dialog--open.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim{transition:opacity 150ms linear}.mdc-dialog__surface-scrim{display:none;opacity:0;position:absolute;width:100%;height:100%;z-index:1}.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{display:block}.mdc-dialog-scroll-lock{overflow:hidden}.mdc-dialog--no-content-padding .mdc-dialog__content{padding:0}.mdc-dialog--sheet .mdc-dialog__container .mdc-dialog__close{right:12px;top:9px;position:absolute;z-index:1}.mdc-dialog__scrim--removed{pointer-events:none}.mdc-dialog__scrim--removed .mdc-dialog__scrim,.mdc-dialog__scrim--removed .mdc-dialog__surface-scrim{display:none}.mat-mdc-dialog-content{max-height:65vh}.mat-mdc-dialog-container{position:static;display:block}.mat-mdc-dialog-container,.mat-mdc-dialog-container .mdc-dialog__container,.mat-mdc-dialog-container .mdc-dialog__surface{max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mat-mdc-dialog-container .mdc-dialog__surface{width:100%;height:100%}.mat-mdc-dialog-component-host{display:contents}.mat-mdc-dialog-container{--mdc-dialog-container-elevation: var(--mdc-dialog-container-elevation-shadow);outline:0}.mat-mdc-dialog-container .mdc-dialog__surface{background-color:var(--mdc-dialog-container-color, white)}.mat-mdc-dialog-container .mdc-dialog__surface{box-shadow:var(--mdc-dialog-container-elevation, 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12))}.mat-mdc-dialog-container .mdc-dialog__surface{border-radius:var(--mdc-dialog-container-shape, 4px)}.mat-mdc-dialog-container .mdc-dialog__title{font-family:var(--mdc-dialog-subhead-font, Roboto, sans-serif);line-height:var(--mdc-dialog-subhead-line-height, 1.5rem);font-size:var(--mdc-dialog-subhead-size, 1rem);font-weight:var(--mdc-dialog-subhead-weight, 400);letter-spacing:var(--mdc-dialog-subhead-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__title{color:var(--mdc-dialog-subhead-color, rgba(0, 0, 0, 0.87))}.mat-mdc-dialog-container .mdc-dialog__content{font-family:var(--mdc-dialog-supporting-text-font, Roboto, sans-serif);line-height:var(--mdc-dialog-supporting-text-line-height, 1.5rem);font-size:var(--mdc-dialog-supporting-text-size, 1rem);font-weight:var(--mdc-dialog-supporting-text-weight, 400);letter-spacing:var(--mdc-dialog-supporting-text-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__content{color:var(--mdc-dialog-supporting-text-color, rgba(0, 0, 0, 0.6))}.mat-mdc-dialog-container .mdc-dialog__container{transition:opacity linear var(--mat-dialog-transition-duration, 0ms)}.mat-mdc-dialog-container .mdc-dialog__surface{transition:transform var(--mat-dialog-transition-duration, 0ms) 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__container,.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__surface{transition:none}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 80vw);min-width:var(--mat-dialog-container-min-width, 0)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, 80vw)}}.mat-mdc-dialog-title{padding:var(--mat-dialog-headline-padding, 0 24px 9px)}.mat-mdc-dialog-content{display:block}.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)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{padding:var(--mat-dialog-actions-padding, 8px);justify-content:var(--mat-dialog-actions-alignment, start)}.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}'],encapsulation:2})}return Xe})();const Ee="--mat-dialog-transition-duration";function ze(Xe){return null==Xe?null:"number"==typeof Xe?Xe:Xe.endsWith("ms")?(0,D.OE)(Xe.substring(0,Xe.length-2)):Xe.endsWith("s")?1e3*(0,D.OE)(Xe.substring(0,Xe.length-1)):"0"===Xe?0:null}var qe=function(Xe){return Xe[Xe.OPEN=0]="OPEN",Xe[Xe.CLOSING=1]="CLOSING",Xe[Xe.CLOSED=2]="CLOSED",Xe}(qe||{});class Ke{constructor(yt,Ye,rt){this._ref=yt,this._containerInstance=rt,this._afterOpened=new I.B,this._beforeClosed=new I.B,this._state=qe.OPEN,this.disableClose=Ye.disableClose,this.id=yt.id,yt.addPanelClass("mat-mdc-dialog-panel"),rt._animationStateChanged.pipe((0,c.p)(Yt=>"opened"===Yt.state),(0,m.s)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),rt._animationStateChanged.pipe((0,c.p)(Yt=>"closed"===Yt.state),(0,m.s)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),yt.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,n.h)(this.backdropClick(),this.keydownEvents().pipe((0,c.p)(Yt=>Yt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(Yt)))).subscribe(Yt=>{this.disableClose||(Yt.preventDefault(),se(this,"keydown"===Yt.type?"keyboard":"mouse"))})}close(yt){this._result=yt,this._containerInstance._animationStateChanged.pipe((0,c.p)(Ye=>"closing"===Ye.state),(0,m.s)(1)).subscribe(Ye=>{this._beforeClosed.next(yt),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),Ye.totalTime+100)}),this._state=qe.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(yt){let Ye=this._ref.config.positionStrategy;return yt&&(yt.left||yt.right)?yt.left?Ye.left(yt.left):Ye.right(yt.right):Ye.centerHorizontally(),yt&&(yt.top||yt.bottom)?yt.top?Ye.top(yt.top):Ye.bottom(yt.bottom):Ye.centerVertically(),this._ref.updatePosition(),this}updateSize(yt="",Ye=""){return this._ref.updateSize(yt,Ye),this}addPanelClass(yt){return this._ref.addPanelClass(yt),this}removePanelClass(yt){return this._ref.removePanelClass(yt),this}getState(){return this._state}_finishDialogClose(){this._state=qe.CLOSED,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function se(Xe,yt,Ye){return Xe._closeInteractionType=yt,Xe.close(Ye)}const X=new w.nKC("MatMdcDialogData"),me=new w.nKC("mat-mdc-dialog-default-options"),ce=new w.nKC("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const Xe=(0,w.WQX)(e.hJ);return()=>Xe.scrollStrategies.block()}});let mt=0,_e=(()=>{class Xe{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Ye=this._parentDialog;return Ye?Ye._getAfterAllClosed():this._afterAllClosedAtThisLevel}constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt){this._overlay=Ye,this._defaultOptions=Nt,this._scrollStrategy=Et,this._parentDialog=Vt,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new I.B,this._afterOpenedAtThisLevel=new I.B,this.dialogConfigClass=L,this.afterAllClosed=(0,d.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,F.Z)(void 0))),this._dialog=rt.get(Me),this._dialogRefConstructor=Ke,this._dialogContainerType=ne,this._dialogDataToken=X}open(Ye,rt){let Yt;(rt={...this._defaultOptions||new L,...rt}).id=rt.id||"mat-mdc-dialog-"+mt++,rt.scrollStrategy=rt.scrollStrategy||this._scrollStrategy();const Nt=this._dialog.open(Ye,{...rt,positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically(),disableClose:!0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:rt},{provide:z,useValue:rt}]},templateContext:()=>({dialogRef:Yt}),providers:(Et,Vt,oe)=>(Yt=new this._dialogRefConstructor(Et,rt,oe),Yt.updatePosition(rt?.position),[{provide:this._dialogContainerType,useValue:oe},{provide:this._dialogDataToken,useValue:Vt.data},{provide:this._dialogRefConstructor,useValue:Yt}])});return Yt.componentRef=Nt.componentRef,Yt.componentInstance=Nt.componentInstance,this.openDialogs.push(Yt),this.afterOpened.next(Yt),Yt.afterClosed().subscribe(()=>{const Et=this.openDialogs.indexOf(Yt);Et>-1&&(this.openDialogs.splice(Et,1),this.openDialogs.length||this._getAfterAllClosed().next())}),Yt}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Ye){return this.openDialogs.find(rt=>rt.id===Ye)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(Ye){let rt=Ye.length;for(;rt--;)Ye[rt].close()}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.KVO(e.hJ),w.KVO(w.zZn),w.KVO(t.aZ,8),w.KVO(me,8),w.KVO(ce),w.KVO(Xe,12),w.KVO(e.Sf),w.KVO(w.bc$,8))};static#t=this.\u0275prov=w.jDH({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})(),pe=(()=>{class Xe{constructor(Ye,rt,Yt){this.dialogRef=Ye,this._elementRef=rt,this._dialog=Yt,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=function Xt(Xe,yt){let Ye=Xe.nativeElement.parentElement;for(;Ye&&!Ye.classList.contains("mat-mdc-dialog-container");)Ye=Ye.parentElement;return Ye?yt.find(rt=>rt.id===Ye.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Ye){const rt=Ye._matDialogClose||Ye._matDialogCloseResult;rt&&(this.dialogResult=rt.currentValue)}_onButtonClick(Ye){se(this.dialogRef,0===Ye.screenX&&0===Ye.screenY?"keyboard":"mouse",this.dialogResult)}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(Ke,8),w.rXU(w.aKT),w.rXU(_e))};static#t=this.\u0275dir=w.FsC({type:Xe,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(rt,Yt){1&rt&&w.bIt("click",function(Et){return Yt._onButtonClick(Et)}),2&rt&&w.BMQ("aria-label",Yt.ariaLabel||null)("type",Yt.type)},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],type:"type",dialogResult:[0,"mat-dialog-close","dialogResult"],_matDialogClose:[0,"matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],standalone:!0,features:[w.OA$]})}return Xe})();let ue=(()=>{class Xe{static#e=this.\u0275fac=function(rt){return new(rt||Xe)};static#t=this.\u0275mod=w.$C({type:Xe});static#i=this.\u0275inj=w.G2t({providers:[_e],imports:[de,e.z_,x.jc,h.yE,h.yE]})}return Xe})()},1997:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>S,w:()=>l});var e=g(4438),t=g(4085),w=g(6600);let S=(()=>{class x{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(I){this._vertical=(0,t.he)(I)}get inset(){return this._inset}set inset(I){this._inset=(0,t.he)(I)}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275cmp=e.VBU({type:x,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(d,T){2&d&&(e.BMQ("aria-orientation",T.vertical?"vertical":"horizontal"),e.AVh("mat-divider-vertical",T.vertical)("mat-divider-horizontal",!T.vertical)("mat-divider-inset",T.inset))},inputs:{vertical:"vertical",inset:"inset"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(d,T){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color);border-top-width:var(--mat-divider-width)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color);border-right-width:var(--mat-divider-width)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],encapsulation:2,changeDetection:0})}return x})(),l=(()=>{class x{static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275mod=e.$C({type:x});static#i=this.\u0275inj=e.G2t({imports:[w.yE,w.yE]})}return x})()},9454:(Qe,te,g)=>{"use strict";g.d(te,{BS:()=>ze,MY:()=>qe,GK:()=>r,Q6:()=>ne,Z2:()=>N,WN:()=>Ee});var e=g(4438),t=g(5024),w=g(1413),S=g(8359);let l=0;const x=new e.nKC("CdkAccordion");let f=(()=>{class Ke{constructor(){this._stateChanges=new w.B,this._openCloseAllActions=new w.B,this.id="cdk-accordion-"+l++,this.multi=!1}openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(X){this._stateChanges.next(X)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:[2,"multi","multi",e.L39]},exportAs:["cdkAccordion"],standalone:!0,features:[e.Jv_([{provide:x,useExisting:Ke}]),e.GFd,e.OA$]})}return Ke})(),I=0,d=(()=>{class Ke{get expanded(){return this._expanded}set expanded(X){this._expanded!==X&&(this._expanded=X,this.expandedChange.emit(X),X?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}constructor(X,me,ce){this.accordion=X,this._changeDetectorRef=me,this._expansionDispatcher=ce,this._openCloseAllSubscription=S.yU.EMPTY,this.closed=new e.bkB,this.opened=new e.bkB,this.destroyed=new e.bkB,this.expandedChange=new e.bkB,this.id="cdk-accordion-child-"+I++,this._expanded=!1,this.disabled=!1,this._removeUniqueSelectionListener=()=>{},this._removeUniqueSelectionListener=ce.listen((fe,ke)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===ke&&this.id!==fe&&(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(X=>{this.disabled||(this.expanded=X)})}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(x,12),e.rXU(e.gRc),e.rXU(t.zP))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:[2,"expanded","expanded",e.L39],disabled:[2,"disabled","disabled",e.L39]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],standalone:!0,features:[e.Jv_([{provide:x,useValue:void 0}]),e.GFd]})}return Ke})(),T=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({})}return Ke})();var y=g(6939),F=g(6600),R=g(8617),z=g(9172),W=g(5964),$=g(6697),j=g(7336),Q=g(983),J=g(7786),ee=g(9969),ie=g(177);const ge=["body"],ae=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],Me=["mat-expansion-panel-header","*","mat-action-row"];function Te(Ke,se){}const de=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],D=["mat-panel-title","mat-panel-description","*"];function n(Ke,se){if(1&Ke&&(e.j41(0,"span",1),e.qSk(),e.j41(1,"svg",2),e.nrm(2,"path",3),e.k0s()()),2&Ke){const X=e.XpG();e.Y8G("@indicatorRotate",X._getExpandedState())}}const c=new e.nKC("MAT_ACCORDION"),m="225ms cubic-bezier(0.4,0.0,0.2,1)",h={indicatorRotate:(0,ee.hZ)("indicatorRotate",[(0,ee.wk)("collapsed, void",(0,ee.iF)({transform:"rotate(0deg)"})),(0,ee.wk)("expanded",(0,ee.iF)({transform:"rotate(180deg)"})),(0,ee.kY)("expanded <=> collapsed, void => collapsed",(0,ee.i0)(m))]),bodyExpansion:(0,ee.hZ)("bodyExpansion",[(0,ee.wk)("collapsed, void",(0,ee.iF)({height:"0px",visibility:"hidden"})),(0,ee.wk)("expanded",(0,ee.iF)({height:"*",visibility:""})),(0,ee.kY)("expanded <=> collapsed, void => collapsed",(0,ee.i0)(m))])},C=new e.nKC("MAT_EXPANSION_PANEL");let k=(()=>{class Ke{constructor(X,me){this._template=X,this._expansionPanel=me}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.C4Q),e.rXU(C,8))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["ng-template","matExpansionPanelContent",""]],standalone:!0})}return Ke})(),L=0;const _=new e.nKC("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let r=(()=>{class Ke extends d{get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(X){this._hideToggle=X}get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(X){this._togglePosition=X}constructor(X,me,ce,fe,ke,mt,_e){super(X,me,ce),this._viewContainerRef=fe,this._animationMode=mt,this._hideToggle=!1,this.afterExpand=new e.bkB,this.afterCollapse=new e.bkB,this._inputChanges=new w.B,this._headerId="mat-expansion-panel-header-"+L++,this.accordion=X,this._document=ke,this._animationsDisabled="NoopAnimations"===mt,_e&&(this.hideToggle=_e.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,z.Z)(null),(0,W.p)(()=>this.expanded&&!this._portal),(0,$.s)(1)).subscribe(()=>{this._portal=new y.VA(this._lazyContent._template,this._viewContainerRef)})}ngOnChanges(X){this._inputChanges.next(X)}ngOnDestroy(){super.ngOnDestroy(),this._inputChanges.complete()}_containsFocus(){if(this._body){const X=this._document.activeElement,me=this._body.nativeElement;return X===me||me.contains(X)}return!1}_animationStarted(X){!v(X)&&!this._animationsDisabled&&this._body&&this._body?.nativeElement.setAttribute("inert","")}_animationDone(X){v(X)||("expanded"===X.toState?this.afterExpand.emit():"collapsed"===X.toState&&this.afterCollapse.emit(),!this._animationsDisabled&&this._body&&this._body.nativeElement.removeAttribute("inert"))}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(c,12),e.rXU(e.gRc),e.rXU(t.zP),e.rXU(e.c1b),e.rXU(ie.qQ),e.rXU(e.bc$,8),e.rXU(_,8))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-expansion-panel"]],contentQueries:function(me,ce,fe){if(1&me&&e.wni(fe,k,5),2&me){let ke;e.mGM(ke=e.lsd())&&(ce._lazyContent=ke.first)}},viewQuery:function(me,ce){if(1&me&&e.GBs(ge,5),2&me){let fe;e.mGM(fe=e.lsd())&&(ce._body=fe.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:6,hostBindings:function(me,ce){2&me&&e.AVh("mat-expanded",ce.expanded)("_mat-animation-noopable",ce._animationsDisabled)("mat-expansion-panel-spacing",ce._hasSpacing())},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],togglePosition:"togglePosition"},outputs:{afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],standalone:!0,features:[e.Jv_([{provide:c,useValue:void 0},{provide:C,useExisting:Ke}]),e.GFd,e.Vt3,e.OA$,e.aNF],ngContentSelectors:Me,decls:7,vars:4,consts:[["body",""],["role","region",1,"mat-expansion-panel-content",3,"id"],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(me,ce){if(1&me){const fe=e.RV6();e.NAR(ae),e.SdG(0),e.j41(1,"div",1,0),e.bIt("@bodyExpansion.start",function(mt){return e.eBV(fe),e.Njj(ce._animationStarted(mt))})("@bodyExpansion.done",function(mt){return e.eBV(fe),e.Njj(ce._animationDone(mt))}),e.j41(3,"div",2),e.SdG(4,1),e.DNE(5,Te,0,0,"ng-template",3),e.k0s(),e.SdG(6,2),e.k0s()}2&me&&(e.R7$(),e.Y8G("@bodyExpansion",ce._getExpandedState())("id",ce.id),e.BMQ("aria-labelledby",ce._headerId),e.R7$(4),e.Y8G("cdkPortalOutlet",ce._portal))},dependencies:[y.I3],styles:['.mat-expansion-panel{box-sizing:content-box;display:block;margin:0;overflow:hidden;transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);position:relative;background:var(--mat-expansion-container-background-color);color:var(--mat-expansion-container-text-color);border-radius:var(--mat-expansion-container-shape)}.mat-expansion-panel: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)}.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);border-top-left-radius:var(--mat-expansion-container-shape)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape);border-bottom-left-radius:var(--mat-expansion-container-shape)}.cdk-high-contrast-active .mat-expansion-panel{outline:solid 1px}.mat-expansion-panel.ng-animate-disabled,.ng-animate-disabled .mat-expansion-panel,.mat-expansion-panel._mat-animation-noopable{transition:none}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible;font-family:var(--mat-expansion-container-text-font);font-size:var(--mat-expansion-container-text-size);font-weight:var(--mat-expansion-container-text-weight);line-height:var(--mat-expansion-container-text-line-height);letter-spacing:var(--mat-expansion-container-text-tracking)}.mat-expansion-panel-content[style*="visibility: hidden"] *{visibility:hidden !important}.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)}.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}'],encapsulation:2,data:{animation:[h.bodyExpansion]},changeDetection:0})}return Ke})();function v(Ke){return"void"===Ke.fromState}let N=(()=>{class Ke{constructor(X,me,ce,fe,ke,mt,_e){this.panel=X,this._element=me,this._focusMonitor=ce,this._changeDetectorRef=fe,this._animationMode=mt,this._parentChangeSubscription=S.yU.EMPTY,this.tabIndex=0;const be=X.accordion?X.accordion._stateChanges.pipe((0,W.p)(pe=>!(!pe.hideToggle&&!pe.togglePosition))):Q.w;this.tabIndex=parseInt(_e||"")||0,this._parentChangeSubscription=(0,J.h)(X.opened,X.closed,be,X._inputChanges.pipe((0,W.p)(pe=>!!(pe.hideToggle||pe.disabled||pe.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),X.closed.pipe((0,W.p)(()=>X._containsFocus())).subscribe(()=>ce.focusVia(me,"program")),ke&&(this.expandedHeight=ke.expandedHeight,this.collapsedHeight=ke.collapsedHeight)}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 X=this._isExpanded();return X&&this.expandedHeight?this.expandedHeight:!X&&this.collapsedHeight?this.collapsedHeight:null}_keydown(X){switch(X.keyCode){case j.t6:case j.Fm:(0,j.rp)(X)||(X.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(X))}}focus(X,me){X?this._focusMonitor.focusVia(this._element,X,me):this._element.nativeElement.focus(me)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(X=>{X&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(r,1),e.rXU(e.aKT),e.rXU(R.FN),e.rXU(e.gRc),e.rXU(_,8),e.rXU(e.bc$,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:15,hostBindings:function(me,ce){1&me&&e.bIt("click",function(){return ce._toggle()})("keydown",function(ke){return ce._keydown(ke)}),2&me&&(e.BMQ("id",ce.panel._headerId)("tabindex",ce.disabled?-1:ce.tabIndex)("aria-controls",ce._getPanelId())("aria-expanded",ce._isExpanded())("aria-disabled",ce.panel.disabled),e.xc7("height",ce._getHeaderHeight()),e.AVh("mat-expanded",ce._isExpanded())("mat-expansion-toggle-indicator-after","after"===ce._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===ce._getTogglePosition())("_mat-animation-noopable","NoopAnimations"===ce._animationMode))},inputs:{expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight",tabIndex:[2,"tabIndex","tabIndex",X=>null==X?0:(0,e.Udg)(X)]},standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:D,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(me,ce){1&me&&(e.NAR(de),e.j41(0,"span",0),e.SdG(1),e.SdG(2,1),e.SdG(3,2),e.k0s(),e.DNE(4,n,3,1,"span",1)),2&me&&(e.AVh("mat-content-hide-toggle",!ce._showToggle()),e.R7$(4),e.vxM(ce._showToggle()?4:-1))},styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-expansion-header-collapsed-state-height);font-family:var(--mat-expansion-header-text-font);font-size:var(--mat-expansion-header-text-size);font-weight:var(--mat-expansion-header-text-weight);line-height:var(--mat-expansion-header-text-line-height);letter-spacing:var(--mat-expansion-header-text-tracking)}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color)}.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)}@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)}}.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)}.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)}.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)}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";display:inline-block;padding:3px;transform:rotate(45deg);vertical-align:middle;color:var(--mat-expansion-header-indicator-color);display:inline-block;display:var(--mat-expansion-legacy-header-indicator-display, inline-block)}.mat-expansion-indicator svg{width:24px;height:24px;margin:0 -8px;vertical-align:middle;fill:var(--mat-expansion-header-indicator-color);display:none;display:var(--mat-expansion-header-indicator-display, none)}.cdk-high-contrast-active .mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}'],encapsulation:2,data:{animation:[h.indicatorRotate]},changeDetection:0})}return Ke})(),ne=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"],standalone:!0})}return Ke})(),Ee=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"],standalone:!0})}return Ke})(),ze=(()=>{class Ke extends f{constructor(){super(...arguments),this._ownHeaders=new e.rOR,this.hideToggle=!1,this.displayMode="default",this.togglePosition="after"}ngAfterContentInit(){this._headers.changes.pipe((0,z.Z)(this._headers)).subscribe(X=>{this._ownHeaders.reset(X.filter(me=>me.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new R.Bu(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(X){this._keyManager.onKeydown(X)}_handleHeaderFocus(X){this._keyManager.updateActiveItem(X)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static#e=this.\u0275fac=(()=>{let X;return function(ce){return(X||(X=e.xGo(Ke)))(ce||Ke)}})();static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-accordion"]],contentQueries:function(me,ce,fe){if(1&me&&e.wni(fe,N,5),2&me){let ke;e.mGM(ke=e.lsd())&&(ce._headers=ke)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(me,ce){2&me&&e.AVh("mat-accordion-multi",ce.multi)},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:Ke}]),e.GFd,e.Vt3]})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({imports:[F.yE,T,y.jc]})}return Ke})()},6467:(Qe,te,g)=>{"use strict";g.d(te,{xb:()=>Yt,TL:()=>fe,rl:()=>zt,qT:()=>Xe,RG:()=>Jt,MV:()=>mt,nJ:()=>X,yw:()=>Ze});var e=g(4438),t=g(8203),w=g(6860),S=g(8359),l=g(1413),x=g(7786),f=g(6977),I=g(1985),d=g(5964),T=g(2771),y=g(7647);class z{constructor(dt){this._box=dt,this._destroyed=new l.B,this._resizeSubject=new l.B,this._elementObservables=new Map,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(Ae=>this._resizeSubject.next(Ae)))}observe(dt){return this._elementObservables.has(dt)||this._elementObservables.set(dt,new I.c(Ae=>{const we=this._resizeSubject.subscribe(Ae);return this._resizeObserver?.observe(dt,{box:this._box}),()=>{this._resizeObserver?.unobserve(dt),we.unsubscribe(),this._elementObservables.delete(dt)}}).pipe((0,d.p)(Ae=>Ae.some(we=>we.target===dt)),function F(St,dt,Ae){let we,he=!1;return St&&"object"==typeof St?({bufferSize:we=1/0,windowTime:dt=1/0,refCount:he=!1,scheduler:Ae}=St):we=St??1/0,(0,y.u)({connector:()=>new T.m(we,dt,Ae),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:he})}({bufferSize:1,refCount:!0}),(0,f.Q)(this._destroyed))),this._elementObservables.get(dt)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let W=(()=>{class St{constructor(){this._observers=new Map,this._ngZone=(0,e.WQX)(e.SKi)}ngOnDestroy(){for(const[,Ae]of this._observers)Ae.destroy();this._observers.clear()}observe(Ae,we){const he=we?.box||"content-box";return this._observers.has(he)||this._observers.set(he,new z(he)),this._observers.get(he).observe(Ae)}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})();var $=g(4085),j=g(9969),Q=g(177),J=g(2318),ee=g(6600);const ie=["notch"],ge=["matFormFieldNotchedOutline",""],ae=["*"],Me=["textField"],Te=["iconPrefixContainer"],de=["textPrefixContainer"],D=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],n=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];function c(St,dt){1&St&&e.nrm(0,"span",19)}function m(St,dt){if(1&St&&(e.j41(0,"label",18),e.SdG(1,1),e.DNE(2,c,1,0,"span",19),e.k0s()),2&St){const Ae=e.XpG(2);e.Y8G("floating",Ae._shouldLabelFloat())("monitorResize",Ae._hasOutline())("id",Ae._labelId),e.BMQ("for",Ae._control.disableAutomaticLabeling?null:Ae._control.id),e.R7$(2),e.vxM(!Ae.hideRequiredMarker&&Ae._control.required?2:-1)}}function h(St,dt){if(1&St&&e.DNE(0,m,3,5,"label",18),2&St){const Ae=e.XpG();e.vxM(Ae._hasFloatingLabel()?0:-1)}}function C(St,dt){1&St&&e.nrm(0,"div",5)}function k(St,dt){}function L(St,dt){if(1&St&&e.DNE(0,k,0,0,"ng-template",11),2&St){e.XpG(2);const Ae=e.sdS(1);e.Y8G("ngTemplateOutlet",Ae)}}function _(St,dt){if(1&St&&(e.j41(0,"div",7),e.DNE(1,L,1,1,null,11),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("matFormFieldNotchedOutlineOpen",Ae._shouldLabelFloat()),e.R7$(),e.vxM(Ae._forceDisplayInfixLabel()?-1:1)}}function r(St,dt){1&St&&(e.j41(0,"div",8,2),e.SdG(2,2),e.k0s())}function v(St,dt){1&St&&(e.j41(0,"div",9,3),e.SdG(2,3),e.k0s())}function V(St,dt){}function N(St,dt){if(1&St&&e.DNE(0,V,0,0,"ng-template",11),2&St){e.XpG();const Ae=e.sdS(1);e.Y8G("ngTemplateOutlet",Ae)}}function ne(St,dt){1&St&&(e.j41(0,"div",12),e.SdG(1,4),e.k0s())}function Ee(St,dt){1&St&&(e.j41(0,"div",13),e.SdG(1,5),e.k0s())}function ze(St,dt){1&St&&e.nrm(0,"div",14)}function qe(St,dt){if(1&St&&(e.j41(0,"div",16),e.SdG(1,6),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("@transitionMessages",Ae._subscriptAnimationState)}}function Ke(St,dt){if(1&St&&(e.j41(0,"mat-hint",20),e.EFF(1),e.k0s()),2&St){const Ae=e.XpG(2);e.Y8G("id",Ae._hintLabelId),e.R7$(),e.JRh(Ae.hintLabel)}}function se(St,dt){if(1&St&&(e.j41(0,"div",17),e.DNE(1,Ke,2,2,"mat-hint",20),e.SdG(2,7),e.nrm(3,"div",21),e.SdG(4,8),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("@transitionMessages",Ae._subscriptAnimationState),e.R7$(),e.vxM(Ae.hintLabel?1:-1)}}let X=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-label"]],standalone:!0})}return St})(),me=0;const ce=new e.nKC("MatError");let fe=(()=>{class St{constructor(Ae,we){this.id="mat-mdc-error-"+me++,Ae||we.nativeElement.setAttribute("aria-live","polite")}static#e=this.\u0275fac=function(we){return new(we||St)(e.kS0("aria-live"),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(we,he){2&we&&e.Mr5("id",he.id)},inputs:{id:"id"},standalone:!0,features:[e.Jv_([{provide:ce,useExisting:St}])]})}return St})(),ke=0,mt=(()=>{class St{constructor(){this.align="start",this.id="mat-mdc-hint-"+ke++}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(we,he){2&we&&(e.Mr5("id",he.id),e.BMQ("align",null),e.AVh("mat-mdc-form-field-hint-end","end"===he.align))},inputs:{align:"align",id:"id"},standalone:!0})}return St})();const _e=new e.nKC("MatPrefix"),pe=new e.nKC("MatSuffix");let Ze=(()=>{class St{constructor(){this._isText=!1}set _isTextSelector(Ae){this._isText=!0}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[0,"matTextSuffix","_isTextSelector"]},standalone:!0,features:[e.Jv_([{provide:pe,useExisting:St}])]})}return St})();const _t=new e.nKC("FloatingLabelParent");let at=(()=>{class St{get floating(){return this._floating}set floating(Ae){this._floating=Ae,this.monitorResize&&this._handleResize()}get monitorResize(){return this._monitorResize}set monitorResize(Ae){this._monitorResize=Ae,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}constructor(Ae){this._elementRef=Ae,this._floating=!1,this._monitorResize=!1,this._resizeObserver=(0,e.WQX)(W),this._ngZone=(0,e.WQX)(e.SKi),this._parent=(0,e.WQX)(_t),this._resizeSubscription=new S.yU}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function pt(St){if(null!==St.offsetParent)return St.scrollWidth;const Ae=St.cloneNode(!0);Ae.style.setProperty("position","absolute"),Ae.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(Ae);const we=Ae.scrollWidth;return Ae.remove(),we}(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#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(we,he){2&we&&e.AVh("mdc-floating-label--float-above",he.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"},standalone:!0})}return St})();const Xt="mdc-line-ripple--active",ye="mdc-line-ripple--deactivating";let ue=(()=>{class St{constructor(Ae,we){this._elementRef=Ae,this._handleTransitionEnd=he=>{const q=this._elementRef.nativeElement.classList,Re=q.contains(ye);"opacity"===he.propertyName&&Re&&q.remove(Xt,ye)},we.runOutsideAngular(()=>{Ae.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const Ae=this._elementRef.nativeElement.classList;Ae.remove(ye),Ae.add(Xt)}deactivate(){this._elementRef.nativeElement.classList.add(ye)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.SKi))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"],standalone:!0})}return St})(),Ie=(()=>{class St{constructor(Ae,we){this._elementRef=Ae,this._ngZone=we,this.open=!1}ngAfterViewInit(){const Ae=this._elementRef.nativeElement.querySelector(".mdc-floating-label");Ae?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(Ae.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>Ae.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(Ae){this._notch.nativeElement.style.width=this.open&&Ae?`calc(${Ae}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.SKi))};static#t=this.\u0275cmp=e.VBU({type:St,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(we,he){if(1&we&&e.GBs(ie,5),2&we){let q;e.mGM(q=e.lsd())&&(he._notch=q.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(we,he){2&we&&e.AVh("mdc-notched-outline--notched",he.open)},inputs:{open:[0,"matFormFieldNotchedOutlineOpen","open"]},standalone:!0,features:[e.aNF],attrs:ge,ngContentSelectors:ae,decls:5,vars:0,consts:[["notch",""],[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],[1,"mdc-notched-outline__trailing"]],template:function(we,he){1&we&&(e.NAR(),e.nrm(0,"div",1),e.j41(1,"div",2,0),e.SdG(3),e.k0s(),e.nrm(4,"div",3))},encapsulation:2,changeDetection:0})}return St})();const He={transitionMessages:(0,j.hZ)("transitionMessages",[(0,j.wk)("enter",(0,j.iF)({opacity:1,transform:"translateY(0%)"})),(0,j.kY)("void => enter",[(0,j.iF)({opacity:0,transform:"translateY(-5px)"}),(0,j.i0)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let Xe=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St})}return St})();const Yt=new e.nKC("MatFormField"),Nt=new e.nKC("MAT_FORM_FIELD_DEFAULT_OPTIONS");let Et=0,zt=(()=>{class St{get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(Ae){this._hideRequiredMarker=(0,$.he)(Ae)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(Ae){Ae!==this._floatLabel&&(this._floatLabel=Ae,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(Ae){const we=this._appearance;this._appearance=Ae||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==we&&(this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(Ae){this._subscriptSizing=Ae||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(Ae){this._hintLabel=Ae,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(Ae){this._explicitFormFieldControl=Ae}constructor(Ae,we,he,q,Re,Ne,gt,$e){this._elementRef=Ae,this._changeDetectorRef=we,this._ngZone=he,this._dir=q,this._platform=Re,this._defaults=Ne,this._animationMode=gt,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+Et++,this._hintLabelId="mat-mdc-hint-"+Et++,this._subscriptAnimationState="",this._destroyed=new l.B,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,Ne&&(Ne.appearance&&(this.appearance=Ne.appearance),this._hideRequiredMarker=!!Ne?.hideRequiredMarker,Ne.color&&(this.color=Ne.color))}ngAfterViewInit(){this._updateFocusState(),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const Ae=this._control;Ae.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${Ae.controlType}`),Ae.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),Ae.ngControl&&Ae.ngControl.valueChanges&&Ae.ngControl.valueChanges.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(Ae=>!Ae._isText),this._hasTextPrefix=!!this._prefixChildren.find(Ae=>Ae._isText),this._hasIconSuffix=!!this._suffixChildren.find(Ae=>!Ae._isText),this._hasTextSuffix=!!this._suffixChildren.find(Ae=>Ae._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,x.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(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,f.Q)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(Ae){const we=this._control?this._control.ngControl:null;return we&&we[Ae]}_getDisplayedMessages(){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 Ae=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&Ae.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const we=this._hintChildren?this._hintChildren.find(q=>"start"===q.align):null,he=this._hintChildren?this._hintChildren.find(q=>"end"===q.align):null;we?Ae.push(we.id):this._hintLabel&&Ae.push(this._hintLabelId),he&&Ae.push(he.id)}else this._errorChildren&&Ae.push(...this._errorChildren.map(we=>we.id));this._control.setDescribedByIds(Ae)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const Ae=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(Ae.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const we=this._iconPrefixContainer?.nativeElement,he=this._textPrefixContainer?.nativeElement,q=we?.getBoundingClientRect().width??0,Re=he?.getBoundingClientRect().width??0;Ae.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${q+Re}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const Ae=this._elementRef.nativeElement;if(Ae.getRootNode){const we=Ae.getRootNode();return we&&we!==Ae}return document.documentElement.contains(Ae)}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.rXU(t.dS),e.rXU(w.OD),e.rXU(Nt,8),e.rXU(e.bc$,8),e.rXU(Q.qQ))};static#t=this.\u0275cmp=e.VBU({type:St,selectors:[["mat-form-field"]],contentQueries:function(we,he,q){if(1&we&&(e.wni(q,X,5),e.wni(q,X,7),e.wni(q,Xe,5),e.wni(q,_e,5),e.wni(q,pe,5),e.wni(q,ce,5),e.wni(q,mt,5)),2&we){let Re;e.mGM(Re=e.lsd())&&(he._labelChildNonStatic=Re.first),e.mGM(Re=e.lsd())&&(he._labelChildStatic=Re.first),e.mGM(Re=e.lsd())&&(he._formFieldControl=Re.first),e.mGM(Re=e.lsd())&&(he._prefixChildren=Re),e.mGM(Re=e.lsd())&&(he._suffixChildren=Re),e.mGM(Re=e.lsd())&&(he._errorChildren=Re),e.mGM(Re=e.lsd())&&(he._hintChildren=Re)}},viewQuery:function(we,he){if(1&we&&(e.GBs(Me,5),e.GBs(Te,5),e.GBs(de,5),e.GBs(at,5),e.GBs(Ie,5),e.GBs(ue,5)),2&we){let q;e.mGM(q=e.lsd())&&(he._textField=q.first),e.mGM(q=e.lsd())&&(he._iconPrefixContainer=q.first),e.mGM(q=e.lsd())&&(he._textPrefixContainer=q.first),e.mGM(q=e.lsd())&&(he._floatingLabel=q.first),e.mGM(q=e.lsd())&&(he._notchedOutline=q.first),e.mGM(q=e.lsd())&&(he._lineRipple=q.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(we,he){2&we&&e.AVh("mat-mdc-form-field-label-always-float",he._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",he._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",he._hasIconSuffix)("mat-form-field-invalid",he._control.errorState)("mat-form-field-disabled",he._control.disabled)("mat-form-field-autofilled",he._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===he._animationMode)("mat-form-field-appearance-fill","fill"==he.appearance)("mat-form-field-appearance-outline","outline"==he.appearance)("mat-form-field-hide-placeholder",he._hasFloatingLabel()&&!he._shouldLabelFloat())("mat-focused",he._control.focused)("mat-primary","accent"!==he.color&&"warn"!==he.color)("mat-accent","accent"===he.color)("mat-warn","warn"===he.color)("ng-untouched",he._shouldForward("untouched"))("ng-touched",he._shouldForward("touched"))("ng-pristine",he._shouldForward("pristine"))("ng-dirty",he._shouldForward("dirty"))("ng-valid",he._shouldForward("valid"))("ng-invalid",he._shouldForward("invalid"))("ng-pending",he._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],standalone:!0,features:[e.Jv_([{provide:Yt,useExisting:St},{provide:_t,useExisting:St}]),e.aNF],ngContentSelectors:n,decls:18,vars:21,consts:[["labelTemplate",""],["textField",""],["iconPrefixContainer",""],["textPrefixContainer",""],[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",""],[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(we,he){if(1&we){const q=e.RV6();e.NAR(D),e.DNE(0,h,1,1,"ng-template",null,0,e.C5r),e.j41(2,"div",4,1),e.bIt("click",function(Ne){return e.eBV(q),e.Njj(he._control.onContainerClick(Ne))}),e.DNE(4,C,1,0,"div",5),e.j41(5,"div",6),e.DNE(6,_,2,2,"div",7)(7,r,3,0,"div",8)(8,v,3,0,"div",9),e.j41(9,"div",10),e.DNE(10,N,1,1,null,11),e.SdG(11),e.k0s(),e.DNE(12,ne,2,0,"div",12)(13,Ee,2,0,"div",13),e.k0s(),e.DNE(14,ze,1,0,"div",14),e.k0s(),e.j41(15,"div",15),e.DNE(16,qe,2,1,"div",16)(17,se,5,2,"div",17),e.k0s()}if(2&we){let q;e.R7$(2),e.AVh("mdc-text-field--filled",!he._hasOutline())("mdc-text-field--outlined",he._hasOutline())("mdc-text-field--no-label",!he._hasFloatingLabel())("mdc-text-field--disabled",he._control.disabled)("mdc-text-field--invalid",he._control.errorState),e.R7$(2),e.vxM(he._hasOutline()||he._control.disabled?-1:4),e.R7$(2),e.vxM(he._hasOutline()?6:-1),e.R7$(),e.vxM(he._hasIconPrefix?7:-1),e.R7$(),e.vxM(he._hasTextPrefix?8:-1),e.R7$(2),e.vxM(!he._hasOutline()||he._forceDisplayInfixLabel()?10:-1),e.R7$(2),e.vxM(he._hasTextSuffix?12:-1),e.R7$(),e.vxM(he._hasIconSuffix?13:-1),e.R7$(),e.vxM(he._hasOutline()?-1:14),e.R7$(),e.AVh("mat-mdc-form-field-subscript-dynamic-size","dynamic"===he.subscriptSizing),e.R7$(),e.vxM("error"===(q=he._getDisplayedMessages())?16:"hint"===q?17:-1)}},dependencies:[at,Ie,Q.T3,ue,mt],styles:['.mdc-text-field{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.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__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.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-floating-label--float-above{font-size:.75rem}.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-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 96px/0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;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,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after,.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)[dir=rtl]::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,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;pointer-events:none}.mdc-notched-outline__trailing{flex-grow:1}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.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-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,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{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}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{border-top:1px solid;border-bottom:1px solid}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{max-width:calc(100% - 12px*2)}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::after{border-bottom-width:2px}.mdc-text-field--filled{border-top-left-radius:var(--mdc-filled-text-field-container-shape);border-top-right-radius:var(--mdc-filled-text-field-container-shape);border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-caret-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-error-caret-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-filled-text-field-input-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-filled-text-field-disabled-input-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-focus-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-hover-label-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-disabled-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-focus-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-hover-label-text-color)}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mdc-filled-text-field-label-text-font);font-size:var(--mdc-filled-text-field-label-text-size);font-weight:var(--mdc-filled-text-field-label-text-weight);letter-spacing:var(--mdc-filled-text-field-label-text-tracking)}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mdc-filled-text-field-container-color)}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mdc-filled-text-field-disabled-container-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-hover-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-focus-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-disabled-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-hover-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-error-focus-active-indicator-color)}.mdc-text-field--filled .mdc-line-ripple::before{border-bottom-width:var(--mdc-filled-text-field-active-indicator-height)}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mdc-filled-text-field-focus-active-indicator-height)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-caret-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-error-caret-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-outlined-text-field-input-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-outlined-text-field-disabled-input-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-focus-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-hover-label-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-disabled-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-focus-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-hover-label-text-color)}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mdc-outlined-text-field-label-text-font);font-size:var(--mdc-outlined-text-field-label-text-size);font-weight:var(--mdc-outlined-text-field-label-text-weight);letter-spacing:var(--mdc-outlined-text-field-label-text-tracking)}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(.75*var(--mdc-outlined-text-field-label-text-size))}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mdc-outlined-text-field-label-text-size)}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-outlined-text-field-container-shape))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-hover-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-focus-outline-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-disabled-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-hover-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-focus-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-outline-width)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-focus-outline-width)}.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)}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.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-text-field-wrapper::before{content:none}.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);padding-top:var(--mat-form-field-filled-with-label-container-padding-top);padding-bottom:var(--mat-form-field-filled-with-label-container-padding-bottom)}.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);padding-bottom:var(--mat-form-field-container-vertical-padding)}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:calc(var(--mat-form-field-container-height)/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) / 2) * -1)) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}.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}.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)}.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);line-height:var(--mat-form-field-subscript-text-line-height);font-size:var(--mat-form-field-subscript-text-size);letter-spacing:var(--mat-form-field-subscript-text-tracking);font-weight:var(--mat-form-field-subscript-text-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)}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-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)}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)}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)}.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)}[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)}.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)}.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}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-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);line-height:var(--mat-form-field-container-text-line-height);font-size:var(--mat-form-field-container-text-size);letter-spacing:var(--mat-form-field-container-text-tracking);font-weight:var(--mat-form-field-container-text-weight)}[dir=rtl] .mat-mdc-form-field{text-align:right}.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)}.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)}.mat-form-field-disabled .mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-disabled-leading-icon-color)}.mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-trailing-icon-color)}.mat-form-field-disabled .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-disabled-trailing-icon-color)}.mat-form-field-invalid .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-trailing-icon-color)}.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)}.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)}.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 .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:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .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)}.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)}'],encapsulation:2,data:{animation:[He.transitionMessages]},changeDetection:0})}return St})(),Jt=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275mod=e.$C({type:St});static#i=this.\u0275inj=e.G2t({imports:[ee.yE,Q.MD,J.w5,ee.yE]})}return St})()},6195:(Qe,te,g)=>{"use strict";g.d(te,{B_:()=>Te,Fe:()=>de,NS:()=>F});var e=g(4438),t=g(6600),w=g(4085),S=g(8203);const l=["*"];class d{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const c=Math.max(...this.tracker);return c>1?this.rowCount+c-1:this.rowCount}update(c,m){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(c),this.tracker.fill(0,0,this.tracker.length),this.positions=m.map(h=>this._trackTile(h))}_trackTile(c){const m=this._findMatchingGap(c.colspan);return this._markTilePosition(m,c),this.columnIndex=m+c.colspan,new T(this.rowIndex,m)}_findMatchingGap(c){let m=-1,h=-1;do{this.columnIndex+c>this.tracker.length?(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(m)):(m=this.tracker.indexOf(0,this.columnIndex),-1!=m?(h=this._findGapEndIndex(m),this.columnIndex=m+1):(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(m)))}while(h-m{class n{constructor(m,h){this._element=m,this._gridList=h,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(m){this._rowspan=Math.round((0,w.OE)(m))}get colspan(){return this._colspan}set colspan(m){this._colspan=Math.round((0,w.OE)(m))}_setStyle(m,h){this._element.nativeElement.style[m]=h}static#e=this.\u0275fac=function(h){return new(h||n)(e.rXU(e.aKT),e.rXU(y,8))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(h,C){2&h&&e.BMQ("rowspan",C.rowspan)("colspan",C.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],standalone:!0,features:[e.aNF],ngContentSelectors:l,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(h,C){1&h&&(e.NAR(),e.j41(0,"div",0),e.SdG(1),e.k0s())},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)}.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)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.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)}.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}"],encapsulation:2,changeDetection:0})}return n})();const j=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Q{constructor(){this._rows=0,this._rowspan=0}init(c,m,h,C){this._gutterSize=ae(c),this._rows=m.rowCount,this._rowspan=m.rowspan,this._cols=h,this._direction=C}getBaseTileSize(c,m){return`(${c}% - (${this._gutterSize} * ${m}))`}getTilePosition(c,m){return 0===m?"0":ge(`(${c} + ${this._gutterSize}) * ${m}`)}getTileSize(c,m){return`(${c} * ${m}) + (${m-1} * ${this._gutterSize})`}setStyle(c,m,h){let C=100/this._cols,k=(this._cols-1)/this._cols;this.setColStyles(c,h,C,k),this.setRowStyles(c,m,C,k)}setColStyles(c,m,h,C){let k=this.getBaseTileSize(h,C);c._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(k,m)),c._setStyle("width",ge(this.getTileSize(k,c.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(c){return`${this._rowspan} * ${this.getTileSize(c,1)}`}getComputedHeight(){return null}}class J extends Q{constructor(c){super(),this.fixedRowHeight=c}init(c,m,h,C){super.init(c,m,h,C),this.fixedRowHeight=ae(this.fixedRowHeight),j.test(this.fixedRowHeight)}setRowStyles(c,m){c._setStyle("top",this.getTilePosition(this.fixedRowHeight,m)),c._setStyle("height",ge(this.getTileSize(this.fixedRowHeight,c.rowspan)))}getComputedHeight(){return["height",ge(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["height",null]),c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}class ee extends Q{constructor(c){super(),this._parseRatio(c)}setRowStyles(c,m,h,C){this.baseTileHeight=this.getBaseTileSize(h/this.rowHeightRatio,C),c._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,m)),c._setStyle("paddingTop",ge(this.getTileSize(this.baseTileHeight,c.rowspan)))}getComputedHeight(){return["paddingBottom",ge(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["paddingBottom",null]),c._tiles.forEach(m=>{m._setStyle("marginTop",null),m._setStyle("paddingTop",null)})}_parseRatio(c){const m=c.split(":");this.rowHeightRatio=parseFloat(m[0])/parseFloat(m[1])}}class ie extends Q{setRowStyles(c,m){let k=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);c._setStyle("top",this.getTilePosition(k,m)),c._setStyle("height",ge(this.getTileSize(k,c.rowspan)))}reset(c){c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}function ge(n){return`calc(${n})`}function ae(n){return n.match(/([A-Za-z%]+)$/)?n:`${n}px`}let Te=(()=>{class n{constructor(m,h){this._element=m,this._dir=h,this._gutter="1px"}get cols(){return this._cols}set cols(m){this._cols=Math.max(1,Math.round((0,w.OE)(m)))}get gutterSize(){return this._gutter}set gutterSize(m){this._gutter=`${m??""}`}get rowHeight(){return this._rowHeight}set rowHeight(m){const h=`${m??""}`;h!==this._rowHeight&&(this._rowHeight=h,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(m){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===m?new ie:m&&m.indexOf(":")>-1?new ee(m):new J(m)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new d);const m=this._tileCoordinator,h=this._tiles.filter(k=>!k._gridList||k._gridList===this),C=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,h),this._tileStyler.init(this.gutterSize,m,this.cols,C),h.forEach((k,L)=>{const _=m.positions[L];this._tileStyler.setStyle(k,_.row,_.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(m){m&&(this._element.nativeElement.style[m[0]]=m[1])}static#e=this.\u0275fac=function(h){return new(h||n)(e.rXU(e.aKT),e.rXU(S.dS,8))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-list"]],contentQueries:function(h,C,k){if(1&h&&e.wni(k,F,5),2&h){let L;e.mGM(L=e.lsd())&&(C._tiles=L)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(h,C){2&h&&e.BMQ("cols",C.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],standalone:!0,features:[e.Jv_([{provide:y,useExisting:n}]),e.aNF],ngContentSelectors:l,decls:2,vars:0,template:function(h,C){1&h&&(e.NAR(),e.j41(0,"div"),e.SdG(1),e.k0s())},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)}.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)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.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)}.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}"],encapsulation:2,changeDetection:0})}return n})(),de=(()=>{class n{static#e=this.\u0275fac=function(h){return new(h||n)};static#t=this.\u0275mod=e.$C({type:n});static#i=this.\u0275inj=e.G2t({imports:[t.Np,t.yE,t.Np,t.yE]})}return n})()},9213:(Qe,te,g)=>{"use strict";g.d(te,{An:()=>v,m_:()=>V});var e=g(4438),t=g(6600),w=g(177),S=g(7673),l=g(8810),x=g(7468),f=g(8359),I=g(8141),d=g(6354),T=g(9437),y=g(980),F=g(7647),R=g(6697),z=g(1626),W=g(345);const $=["*"];let j;function J(N){return function Q(){if(void 0===j&&(j=null,typeof window<"u")){const N=window;void 0!==N.trustedTypes&&(j=N.trustedTypes.createPolicy("angular#components",{createHTML:ne=>ne}))}return j}()?.createHTML(N)||N}function ee(N){return Error(`Unable to find icon with the name "${N}"`)}function ge(N){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${N}".`)}function ae(N){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${N}".`)}class Me{constructor(ne,Ee,ze){this.url=ne,this.svgText=Ee,this.options=ze}}let Te=(()=>{class N{constructor(Ee,ze,qe,Ke){this._httpClient=Ee,this._sanitizer=ze,this._errorHandler=Ke,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._resolvers=[],this._defaultFontSetClass=["material-icons","mat-ligature-font"],this._document=qe}addSvgIcon(Ee,ze,qe){return this.addSvgIconInNamespace("",Ee,ze,qe)}addSvgIconLiteral(Ee,ze,qe){return this.addSvgIconLiteralInNamespace("",Ee,ze,qe)}addSvgIconInNamespace(Ee,ze,qe,Ke){return this._addSvgIconConfig(Ee,ze,new Me(qe,null,Ke))}addSvgIconResolver(Ee){return this._resolvers.push(Ee),this}addSvgIconLiteralInNamespace(Ee,ze,qe,Ke){const se=this._sanitizer.sanitize(e.WPN.HTML,qe);if(!se)throw ae(qe);const X=J(se);return this._addSvgIconConfig(Ee,ze,new Me("",X,Ke))}addSvgIconSet(Ee,ze){return this.addSvgIconSetInNamespace("",Ee,ze)}addSvgIconSetLiteral(Ee,ze){return this.addSvgIconSetLiteralInNamespace("",Ee,ze)}addSvgIconSetInNamespace(Ee,ze,qe){return this._addSvgIconSetConfig(Ee,new Me(ze,null,qe))}addSvgIconSetLiteralInNamespace(Ee,ze,qe){const Ke=this._sanitizer.sanitize(e.WPN.HTML,ze);if(!Ke)throw ae(ze);const se=J(Ke);return this._addSvgIconSetConfig(Ee,new Me("",se,qe))}registerFontClassAlias(Ee,ze=Ee){return this._fontCssClassesByAlias.set(Ee,ze),this}classNameForFontAlias(Ee){return this._fontCssClassesByAlias.get(Ee)||Ee}setDefaultFontSetClass(...Ee){return this._defaultFontSetClass=Ee,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(Ee){const ze=this._sanitizer.sanitize(e.WPN.RESOURCE_URL,Ee);if(!ze)throw ge(Ee);const qe=this._cachedIconsByUrl.get(ze);return qe?(0,S.of)(n(qe)):this._loadSvgIconFromConfig(new Me(Ee,null)).pipe((0,I.M)(Ke=>this._cachedIconsByUrl.set(ze,Ke)),(0,d.T)(Ke=>n(Ke)))}getNamedSvgIcon(Ee,ze=""){const qe=c(ze,Ee);let Ke=this._svgIconConfigs.get(qe);if(Ke)return this._getSvgFromConfig(Ke);if(Ke=this._getIconConfigFromResolvers(ze,Ee),Ke)return this._svgIconConfigs.set(qe,Ke),this._getSvgFromConfig(Ke);const se=this._iconSetConfigs.get(ze);return se?this._getSvgFromIconSetConfigs(Ee,se):(0,l.$)(ee(qe))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(Ee){return Ee.svgText?(0,S.of)(n(this._svgElementFromConfig(Ee))):this._loadSvgIconFromConfig(Ee).pipe((0,d.T)(ze=>n(ze)))}_getSvgFromIconSetConfigs(Ee,ze){const qe=this._extractIconWithNameFromAnySet(Ee,ze);if(qe)return(0,S.of)(qe);const Ke=ze.filter(se=>!se.svgText).map(se=>this._loadSvgIconSetFromConfig(se).pipe((0,T.W)(X=>{const ce=`Loading icon set URL: ${this._sanitizer.sanitize(e.WPN.RESOURCE_URL,se.url)} failed: ${X.message}`;return this._errorHandler.handleError(new Error(ce)),(0,S.of)(null)})));return(0,x.p)(Ke).pipe((0,d.T)(()=>{const se=this._extractIconWithNameFromAnySet(Ee,ze);if(!se)throw ee(Ee);return se}))}_extractIconWithNameFromAnySet(Ee,ze){for(let qe=ze.length-1;qe>=0;qe--){const Ke=ze[qe];if(Ke.svgText&&Ke.svgText.toString().indexOf(Ee)>-1){const se=this._svgElementFromConfig(Ke),X=this._extractSvgIconFromSet(se,Ee,Ke.options);if(X)return X}}return null}_loadSvgIconFromConfig(Ee){return this._fetchIcon(Ee).pipe((0,I.M)(ze=>Ee.svgText=ze),(0,d.T)(()=>this._svgElementFromConfig(Ee)))}_loadSvgIconSetFromConfig(Ee){return Ee.svgText?(0,S.of)(null):this._fetchIcon(Ee).pipe((0,I.M)(ze=>Ee.svgText=ze))}_extractSvgIconFromSet(Ee,ze,qe){const Ke=Ee.querySelector(`[id="${ze}"]`);if(!Ke)return null;const se=Ke.cloneNode(!0);if(se.removeAttribute("id"),"svg"===se.nodeName.toLowerCase())return this._setSvgAttributes(se,qe);if("symbol"===se.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(se),qe);const X=this._svgElementFromString(J(""));return X.appendChild(se),this._setSvgAttributes(X,qe)}_svgElementFromString(Ee){const ze=this._document.createElement("DIV");ze.innerHTML=Ee;const qe=ze.querySelector("svg");if(!qe)throw Error(" tag not found");return qe}_toSvgElement(Ee){const ze=this._svgElementFromString(J("")),qe=Ee.attributes;for(let Ke=0;KeJ(ce)),(0,y.j)(()=>this._inProgressUrlFetches.delete(se)),(0,F.u)());return this._inProgressUrlFetches.set(se,me),me}_addSvgIconConfig(Ee,ze,qe){return this._svgIconConfigs.set(c(Ee,ze),qe),this}_addSvgIconSetConfig(Ee,ze){const qe=this._iconSetConfigs.get(Ee);return qe?qe.push(ze):this._iconSetConfigs.set(Ee,[ze]),this}_svgElementFromConfig(Ee){if(!Ee.svgElement){const ze=this._svgElementFromString(Ee.svgText);this._setSvgAttributes(ze,Ee.options),Ee.svgElement=ze}return Ee.svgElement}_getIconConfigFromResolvers(Ee,ze){for(let qe=0;qene?ne.pathname+ne.search:""}}}),L=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],_=L.map(N=>`[${N}]`).join(", "),r=/^url\(['"]?#(.*?)['"]?\)$/;let v=(()=>{class N{get color(){return this._color||this._defaultColor}set color(Ee){this._color=Ee}get svgIcon(){return this._svgIcon}set svgIcon(Ee){Ee!==this._svgIcon&&(Ee?this._updateSvgIcon(Ee):this._svgIcon&&this._clearSvgElement(),this._svgIcon=Ee)}get fontSet(){return this._fontSet}set fontSet(Ee){const ze=this._cleanupFontValue(Ee);ze!==this._fontSet&&(this._fontSet=ze,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(Ee){const ze=this._cleanupFontValue(Ee);ze!==this._fontIcon&&(this._fontIcon=ze,this._updateFontIconClasses())}constructor(Ee,ze,qe,Ke,se,X){this._elementRef=Ee,this._iconRegistry=ze,this._location=Ke,this._errorHandler=se,this.inline=!1,this._previousFontSetClass=[],this._currentIconFetch=f.yU.EMPTY,X&&(X.color&&(this.color=this._defaultColor=X.color),X.fontSet&&(this.fontSet=X.fontSet)),qe||Ee.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(Ee){if(!Ee)return["",""];const ze=Ee.split(":");switch(ze.length){case 1:return["",ze[0]];case 2:return ze;default:throw Error(`Invalid icon name: "${Ee}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const Ee=this._elementsWithExternalReferences;if(Ee&&Ee.size){const ze=this._location.getPathname();ze!==this._previousPath&&(this._previousPath=ze,this._prependPathToReferences(ze))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(Ee){this._clearSvgElement();const ze=this._location.getPathname();this._previousPath=ze,this._cacheChildrenWithExternalReferences(Ee),this._prependPathToReferences(ze),this._elementRef.nativeElement.appendChild(Ee)}_clearSvgElement(){const Ee=this._elementRef.nativeElement;let ze=Ee.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();ze--;){const qe=Ee.childNodes[ze];(1!==qe.nodeType||"svg"===qe.nodeName.toLowerCase())&&qe.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const Ee=this._elementRef.nativeElement,ze=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(qe=>qe.length>0);this._previousFontSetClass.forEach(qe=>Ee.classList.remove(qe)),ze.forEach(qe=>Ee.classList.add(qe)),this._previousFontSetClass=ze,this.fontIcon!==this._previousFontIconClass&&!ze.includes("mat-ligature-font")&&(this._previousFontIconClass&&Ee.classList.remove(this._previousFontIconClass),this.fontIcon&&Ee.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(Ee){return"string"==typeof Ee?Ee.trim().split(" ")[0]:Ee}_prependPathToReferences(Ee){const ze=this._elementsWithExternalReferences;ze&&ze.forEach((qe,Ke)=>{qe.forEach(se=>{Ke.setAttribute(se.name,`url('${Ee}#${se.value}')`)})})}_cacheChildrenWithExternalReferences(Ee){const ze=Ee.querySelectorAll(_),qe=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let Ke=0;Ke{const X=ze[Ke],me=X.getAttribute(se),ce=me?me.match(r):null;if(ce){let fe=qe.get(X);fe||(fe=[],qe.set(X,fe)),fe.push({name:se,value:ce[1]})}})}_updateSvgIcon(Ee){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),Ee){const[ze,qe]=this._splitIconName(Ee);ze&&(this._svgNamespace=ze),qe&&(this._svgName=qe),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(qe,ze).pipe((0,R.s)(1)).subscribe(Ke=>this._setSvgElement(Ke),Ke=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${ze}:${qe}! ${Ke.message}`))})}}static#e=this.\u0275fac=function(ze){return new(ze||N)(e.rXU(e.aKT),e.rXU(Te),e.kS0("aria-hidden"),e.rXU(C),e.rXU(e.zcH),e.rXU(h,8))};static#t=this.\u0275cmp=e.VBU({type:N,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:10,hostBindings:function(ze,qe){2&ze&&(e.BMQ("data-mat-icon-type",qe._usingFontIcon()?"font":"svg")("data-mat-icon-name",qe._svgName||qe.fontIcon)("data-mat-icon-namespace",qe._svgNamespace||qe.fontSet)("fontIcon",qe._usingFontIcon()?qe.fontIcon:null),e.HbH(qe.color?"mat-"+qe.color:""),e.AVh("mat-icon-inline",qe.inline)("mat-icon-no-color","primary"!==qe.color&&"accent"!==qe.color&&"warn"!==qe.color))},inputs:{color:"color",inline:[2,"inline","inline",e.L39],svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:$,decls:1,vars:0,template:function(ze,qe){1&ze&&(e.NAR(),e.SdG(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color)}.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}"],encapsulation:2,changeDetection:0})}return N})(),V=(()=>{class N{static#e=this.\u0275fac=function(ze){return new(ze||N)};static#t=this.\u0275mod=e.$C({type:N});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return N})()},9631:(Qe,te,g)=>{"use strict";g.d(te,{Oh:()=>W,fg:()=>Q,fS:()=>J});var e=g(4085),t=g(6860),w=g(4438),S=g(983),l=g(1413);const x=(0,t.BQ)({passive:!0});let f=(()=>{class ee{constructor(ge,ae){this._platform=ge,this._ngZone=ae,this._monitoredElements=new Map}monitor(ge){if(!this._platform.isBrowser)return S.w;const ae=(0,e.i8)(ge),Me=this._monitoredElements.get(ae);if(Me)return Me.subject;const Te=new l.B,de="cdk-text-field-autofilled",D=n=>{"cdk-text-field-autofill-start"!==n.animationName||ae.classList.contains(de)?"cdk-text-field-autofill-end"===n.animationName&&ae.classList.contains(de)&&(ae.classList.remove(de),this._ngZone.run(()=>Te.next({target:n.target,isAutofilled:!1}))):(ae.classList.add(de),this._ngZone.run(()=>Te.next({target:n.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{ae.addEventListener("animationstart",D,x),ae.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(ae,{subject:Te,unlisten:()=>{ae.removeEventListener("animationstart",D,x)}}),Te}stopMonitoring(ge){const ae=(0,e.i8)(ge),Me=this._monitoredElements.get(ae);Me&&(Me.unlisten(),Me.subject.complete(),ae.classList.remove("cdk-text-field-autofill-monitored"),ae.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(ae))}ngOnDestroy(){this._monitoredElements.forEach((ge,ae)=>this.stopMonitoring(ae))}static#e=this.\u0275fac=function(ae){return new(ae||ee)(w.KVO(t.OD),w.KVO(w.SKi))};static#t=this.\u0275prov=w.jDH({token:ee,factory:ee.\u0275fac,providedIn:"root"})}return ee})(),T=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=w.$C({type:ee});static#i=this.\u0275inj=w.G2t({})}return ee})();var y=g(9417),F=g(6600),R=g(6467);const W=new w.nKC("MAT_INPUT_VALUE_ACCESSOR"),$=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let j=0,Q=(()=>{class ee{get disabled(){return this._disabled}set disabled(ge){this._disabled=(0,e.he)(ge),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(ge){this._id=ge||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(ge){this._required=(0,e.he)(ge)}get type(){return this._type}set type(ge){this._type=ge||"text",this._validateType(),!this._isTextarea&&(0,t.MU)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(ge){this._errorStateTracker.matcher=ge}get value(){return this._inputValueAccessor.value}set value(ge){ge!==this.value&&(this._inputValueAccessor.value=ge,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(ge){this._readonly=(0,e.he)(ge)}get errorState(){return this._errorStateTracker.errorState}set errorState(ge){this._errorStateTracker.errorState=ge}constructor(ge,ae,Me,Te,de,D,n,c,m,h){this._elementRef=ge,this._platform=ae,this.ngControl=Me,this._autofillMonitor=c,this._formField=h,this._uid="mat-input-"+j++,this.focused=!1,this.stateChanges=new l.B,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(L=>(0,t.MU)().has(L)),this._iOSKeyupListener=L=>{const _=L.target;!_.value&&0===_.selectionStart&&0===_.selectionEnd&&(_.setSelectionRange(1,1),_.setSelectionRange(0,0))};const C=this._elementRef.nativeElement,k=C.nodeName.toLowerCase();this._inputValueAccessor=n||C,this._previousNativeValue=this.value,this.id=this.id,ae.IOS&&m.runOutsideAngular(()=>{ge.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._errorStateTracker=new F.X0(D,Me,de,Te,this.stateChanges),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===k,this._isTextarea="textarea"===k,this._isInFormField=!!h,this._isNativeSelect&&(this.controlType=C.multiple?"mat-native-select-multiple":"mat-native-select")}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(ge=>{this.autofilled=ge.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}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(ge){this._elementRef.nativeElement.focus(ge)}updateErrorState(){this._errorStateTracker.updateErrorState()}_focusChanged(ge){ge!==this.focused&&(this.focused=ge,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const ge=this._elementRef.nativeElement.value;this._previousNativeValue!==ge&&(this._previousNativeValue=ge,this.stateChanges.next())}_dirtyCheckPlaceholder(){const ge=this._getPlaceholder();if(ge!==this._previousPlaceholder){const ae=this._elementRef.nativeElement;this._previousPlaceholder=ge,ge?ae.setAttribute("placeholder",ge):ae.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){$.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let ge=this._elementRef.nativeElement.validity;return ge&&ge.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const ge=this._elementRef.nativeElement,ae=ge.options[0];return this.focused||ge.multiple||!this.empty||!!(ge.selectedIndex>-1&&ae&&ae.label)}return this.focused||!this.empty}setDescribedByIds(ge){ge.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ge.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const ge=this._elementRef.nativeElement;return this._isNativeSelect&&(ge.multiple||ge.size>1)}static#e=this.\u0275fac=function(ae){return new(ae||ee)(w.rXU(w.aKT),w.rXU(t.OD),w.rXU(y.vO,10),w.rXU(y.cV,8),w.rXU(y.j4,8),w.rXU(F.es),w.rXU(W,10),w.rXU(f),w.rXU(w.SKi),w.rXU(R.xb,8))};static#t=this.\u0275dir=w.FsC({type:ee,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(ae,Me){1&ae&&w.bIt("focus",function(){return Me._focusChanged(!0)})("blur",function(){return Me._focusChanged(!1)})("input",function(){return Me._onInput()}),2&ae&&(w.Mr5("id",Me.id)("disabled",Me.disabled)("required",Me.required),w.BMQ("name",Me.name||null)("readonly",Me.readonly&&!Me._isNativeSelect||null)("aria-invalid",Me.empty&&Me.required?null:Me.errorState)("aria-required",Me.required)("id",Me.id),w.AVh("mat-input-server",Me._isServer)("mat-mdc-form-field-textarea-control",Me._isInFormField&&Me._isTextarea)("mat-mdc-form-field-input-control",Me._isInFormField)("mdc-text-field__input",Me._isInFormField)("mat-mdc-native-select-inline",Me._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"},exportAs:["matInput"],standalone:!0,features:[w.Jv_([{provide:R.qT,useExisting:ee}]),w.OA$]})}return ee})(),J=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=w.$C({type:ee});static#i=this.\u0275inj=w.G2t({imports:[F.yE,R.RG,R.RG,T,F.yE]})}return ee})()},3902:(Qe,te,g)=>{"use strict";g.d(te,{Fg:()=>Ie,YE:()=>be,jt:()=>_e});var e=g(4438),t=g(4085),w=g(6860),S=g(6600),l=g(8359),x=g(7786),I=(g(1413),g(2318)),d=g(177),T=g(1997);g(8617),g(5024),g(7336),g(9417),g(6977);const $=["*"],Q=["unscopedContent"],J=["text"],ee=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],ie=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],N=new e.nKC("ListOption");let ne=(()=>{class He{constructor(yt){this._elementRef=yt}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"],standalone:!0})}return He})(),Ee=(()=>{class He{constructor(yt){this._elementRef=yt}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"],standalone:!0})}return He})(),ze=(()=>{class He{static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"],standalone:!0})}return He})(),qe=(()=>{class He{constructor(yt){this._listOption=yt}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(N,8))};static#t=this.\u0275dir=e.FsC({type:He,hostVars:4,hostBindings:function(Ye,rt){2&Ye&&e.AVh("mdc-list-item__start",rt._isAlignedAtStart())("mdc-list-item__end",!rt._isAlignedAtStart())},standalone:!0})}return He})(),Ke=(()=>{class He extends qe{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],standalone:!0,features:[e.Vt3]})}return He})(),se=(()=>{class He extends qe{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],standalone:!0,features:[e.Vt3]})}return He})();const X=new e.nKC("MAT_LIST_CONFIG");let me=(()=>{class He{constructor(){this._isNonInteractive=!0,this._disableRipple=!1,this._disabled=!1,this._defaultOptions=(0,e.WQX)(X,{optional:!0})}get disableRipple(){return this._disableRipple}set disableRipple(yt){this._disableRipple=(0,t.he)(yt)}get disabled(){return this._disabled}set disabled(yt){this._disabled=(0,t.he)(yt)}static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275dir=e.FsC({type:He,hostVars:1,hostBindings:function(Ye,rt){2&Ye&&e.BMQ("aria-disabled",rt.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}return He})(),ce=(()=>{class He{set lines(yt){this._explicitLines=(0,t.OE)(yt,null),this._updateItemLines(!1)}get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(yt){this._disableRipple=(0,t.he)(yt)}get disabled(){return this._disabled||!!this._listBase?.disabled}set disabled(yt){this._disabled=(0,t.he)(yt)}get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(yt,Ye,rt,Yt,Nt,Et){this._elementRef=yt,this._ngZone=Ye,this._listBase=rt,this._platform=Yt,this._explicitLines=null,this._disableRipple=!1,this._disabled=!1,this._subscriptions=new l.yU,this._rippleRenderer=null,this._hasUnscopedTextContent=!1,this.rippleConfig=Nt||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._noopAnimations="NoopAnimations"===Et,rt&&!rt._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 S.ug(this,this._ngZone,this._hostElement,this._platform),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,x.h)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(yt){if(!this._lines||!this._titles||!this._unscopedContent)return;yt&&this._checkDomForUnscopedTextContent();const Ye=this._explicitLines??this._inferLinesFromContent(),rt=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",Ye<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",Ye<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===Ye),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===Ye),this._hasUnscopedTextContent){const Yt=0===this._titles.length&&1===Ye;rt.classList.toggle("mdc-list-item__primary-text",Yt),rt.classList.toggle("mdc-list-item__secondary-text",!Yt)}else rt.classList.remove("mdc-list-item__primary-text"),rt.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let yt=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(yt+=1),yt}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(yt=>yt.nodeType!==yt.COMMENT_NODE).some(yt=>!(!yt.textContent||!yt.textContent.trim()))}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(me,8),e.rXU(w.OD),e.rXU(S.$E,8),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:He,contentQueries:function(Ye,rt,Yt){if(1&Ye&&(e.wni(Yt,Ke,4),e.wni(Yt,se,4)),2&Ye){let Nt;e.mGM(Nt=e.lsd())&&(rt._avatars=Nt),e.mGM(Nt=e.lsd())&&(rt._icons=Nt)}},hostVars:4,hostBindings:function(Ye,rt){2&Ye&&(e.BMQ("aria-disabled",rt.disabled)("disabled",rt._isButtonElement&&rt.disabled||null),e.AVh("mdc-list-item--disabled",rt.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}return He})(),_e=(()=>{class He extends me{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275cmp=e.VBU({type:He,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],standalone:!0,features:[e.Jv_([{provide:me,useExisting:He}]),e.Vt3,e.aNF],ngContentSelectors:$,decls:1,vars:0,template:function(Ye,rt){1&Ye&&(e.NAR(),e.SdG(0))},styles:['@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-list-divider::after{content:"";display:block;border-bottom-width:1px;border-bottom-style:solid}}.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item__wrapper{display:block}.mdc-list-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer}.mdc-list-item:focus{outline:none}.mdc-list-item.mdc-list-item--with-one-line{height:48px}.mdc-list-item.mdc-list-item--with-two-lines{height:64px}.mdc-list-item.mdc-list-item--with-three-lines{height:88px}.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-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.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-one-line .mdc-list-item__end{align-self:center;margin-top:0}.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 .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--disabled,.mdc-list-item.mdc-list-item--non-interactive{cursor:auto}.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::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}@media screen and (forced-colors: active){.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px double rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected:focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected:focus::before{border-color:CanvasText}}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.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__content[for]{pointer-events:none}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.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;line-height:normal}.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__overline-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:24px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start,.mdc-list-item--with-leading-avatar .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.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-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-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-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.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-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-leading-avatar.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-avatar .mdc-list-item__start{border-radius:50%}.mdc-list-item--with-leading-icon.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-leading-icon .mdc-list-item__start[dir=rtl]{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon.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-icon.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-icon.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-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.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-icon.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-leading-icon.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-thumbnail.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-thumbnail.mdc-list-item,.mdc-list-item--with-leading-thumbnail.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-thumbnail .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-thumbnail .mdc-list-item__start,.mdc-list-item--with-leading-thumbnail .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-thumbnail.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-thumbnail.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-thumbnail.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-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.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-thumbnail.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-leading-thumbnail.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-image.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-image.mdc-list-item,.mdc-list-item--with-leading-image.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-image .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-image .mdc-list-item__start,.mdc-list-item--with-leading-image .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-image.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-image.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-image.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-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.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-image.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-leading-image.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-video.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-video.mdc-list-item,.mdc-list-item--with-leading-video.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-video .mdc-list-item__start{margin-left:0;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-video .mdc-list-item__start,.mdc-list-item--with-leading-video .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:0}.mdc-list-item--with-leading-video.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-video.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-video.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-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.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-video.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-leading-video.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-checkbox.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.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-leading-checkbox.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-checkbox.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-checkbox.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-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.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-checkbox.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-leading-checkbox.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-radio.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-radio.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-radio .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-radio .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-radio.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{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{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__overline-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__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-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{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{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-switch.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-switch.mdc-list-item,.mdc-list-item--with-leading-switch.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-switch .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-switch .mdc-list-item__start,.mdc-list-item--with-leading-switch .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item--with-leading-switch.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-switch.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-switch.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-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.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-switch.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-leading-switch.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item,.mdc-list-item--with-trailing-icon.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-icon .mdc-list-item__end,.mdc-list-item--with-trailing-icon .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item,.mdc-list-item--with-trailing-meta.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-trailing-meta .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.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-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);line-height:var(--mdc-typography-caption-line-height);font-weight:var(--mdc-typography-caption-font-weight);letter-spacing:var(--mdc-typography-caption-letter-spacing);text-decoration:var(--mdc-typography-caption-text-decoration);text-transform:var(--mdc-typography-caption-text-transform)}.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.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-item--with-trailing-radio.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-radio.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-radio .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-radio .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-switch.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-switch.mdc-list-item,.mdc-list-item--with-trailing-switch.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-switch .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-switch .mdc-list-item__end,.mdc-list-item--with-trailing-switch .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-switch.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item{padding-left:16px;padding-right:16px}[dir=rtl] .mdc-list-item,.mdc-list-item[dir=rtl]{padding-left:16px;padding-right:16px}.mdc-list-group .mdc-deprecated-list{padding:0}.mdc-list-group__subheader{margin:calc((3rem - 1.5rem)/2) 16px}.mdc-list-divider{padding:0;background-clip:content-box}.mdc-list-divider.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset{padding-left:16px;padding-right:auto}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset,.mdc-list-divider.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:16px}.mdc-list-divider.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset{padding-left:auto;padding-right:16px}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset,.mdc-list-divider.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset[dir=rtl]{padding-left:16px;padding-right:auto}.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset{padding-left:0px;padding-right:auto}[dir=rtl] .mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:0px}[dir=rtl] .mdc-list-divider,.mdc-list-divider[dir=rtl]{padding:0}.mdc-list-item{background-color:var(--mdc-list-list-item-container-color)}.mdc-list-item.mdc-list-item--selected{background-color:var(--mdc-list-list-item-selected-container-color)}.mdc-list-item--with-one-line{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-avatar,.mdc-list-item--with-one-line.mdc-list-item--with-leading-icon,.mdc-list-item--with-one-line.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-one-line.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-one-line.mdc-list-item--with-leading-radio,.mdc-list-item--with-one-line.mdc-list-item--with-leading-switch{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-image,.mdc-list-item--with-one-line.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines.mdc-list-item--with-leading-avatar,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-icon,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-radio,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-switch,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-image,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-three-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mdc-list-list-item-one-line-container-height)}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mdc-list-list-item-two-line-container-height)}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mdc-list-list-item-three-line-container-height)}.mdc-list-item__primary-text{color:var(--mdc-list-list-item-label-text-color)}.mdc-list-item__primary-text{font-family:var(--mdc-list-list-item-label-text-font);line-height:var(--mdc-list-list-item-label-text-line-height);font-size:var(--mdc-list-list-item-label-text-size);font-weight:var(--mdc-list-list-item-label-text-weight);letter-spacing:var(--mdc-list-list-item-label-text-tracking)}.mdc-list-item__secondary-text{color:var(--mdc-list-list-item-supporting-text-color)}.mdc-list-item__secondary-text{font-family:var(--mdc-list-list-item-supporting-text-font);line-height:var(--mdc-list-list-item-supporting-text-line-height);font-size:var(--mdc-list-list-item-supporting-text-size);font-weight:var(--mdc-list-list-item-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-supporting-text-tracking)}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-leading-icon-color)}.mdc-list-item--with-leading-icon .mdc-list-item__start{width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start>i{font-size:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon{font-size:var(--mdc-list-list-item-leading-icon-size);width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon,.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mdc-list-list-item-leading-avatar-size);height:var(--mdc-list-list-item-leading-avatar-size)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-supporting-text-color)}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mdc-list-list-item-trailing-supporting-text-font);line-height:var(--mdc-list-list-item-trailing-supporting-text-line-height);font-size:var(--mdc-list-list-item-trailing-supporting-text-size);font-weight:var(--mdc-list-list-item-trailing-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-trailing-supporting-text-tracking)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-icon-color)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end>i{font-size:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon{font-size:var(--mdc-list-list-item-trailing-icon-size);width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon,.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-selected-trailing-icon-color)}.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,.mdc-list-item--disabled .mdc-list-item__overline-text{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-disabled-leading-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{opacity:var(--mdc-list-list-item-disabled-leading-icon-opacity)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-disabled-trailing-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{opacity:var(--mdc-list-list-item-disabled-trailing-icon-opacity)}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mdc-list-list-item-hover-label-text-color)}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mdc-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mdc-list-list-item-hover-trailing-icon-color)}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mdc-list-list-item-focus-label-text-color)}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-list-list-item-disabled-label-text-color)}.mdc-list-item:hover::before{background-color:var(--mdc-list-list-item-hover-state-layer-color);opacity:var(--mdc-list-list-item-hover-state-layer-opacity)}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mdc-list-list-item-disabled-state-layer-color);opacity:var(--mdc-list-list-item-disabled-state-layer-opacity)}.mdc-list-item:focus::before{background-color:var(--mdc-list-list-item-focus-state-layer-color);opacity:var(--mdc-list-list-item-focus-state-layer-opacity)}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mdc-list-list-item-leading-avatar-shape);background-color:var(--mdc-list-list-item-leading-avatar-color)}.mat-mdc-list-item-icon{font-size:var(--mdc-list-list-item-leading-icon-size)}.cdk-high-contrast-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}.cdk-high-contrast-active 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}.mat-mdc-list-item>.mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-mdc-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);margin-inline-end:var(--mat-list-list-item-leading-icon-end-space)}.mat-mdc-nav-list .mat-mdc-list-item{border-radius:var(--mat-list-active-indicator-shape);--mat-mdc-focus-indicator-border-radius:var(--mat-list-active-indicator-shape)}.mat-mdc-nav-list .mat-mdc-list-item.mdc-list-item--activated{background-color:var(--mat-list-active-indicator-color)}'],encapsulation:2,changeDetection:0})}return He})(),be=(()=>{class He extends ce{get activated(){return this._activated}set activated(yt){this._activated=(0,t.he)(yt)}constructor(yt,Ye,rt,Yt,Nt,Et){super(yt,Ye,rt,Yt,Nt,Et),this._activated=!1}_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(me,8),e.rXU(w.OD),e.rXU(S.$E,8),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:He,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(Ye,rt,Yt){if(1&Ye&&(e.wni(Yt,Ee,5),e.wni(Yt,ne,5),e.wni(Yt,ze,5)),2&Ye){let Nt;e.mGM(Nt=e.lsd())&&(rt._lines=Nt),e.mGM(Nt=e.lsd())&&(rt._titles=Nt),e.mGM(Nt=e.lsd())&&(rt._meta=Nt)}},viewQuery:function(Ye,rt){if(1&Ye&&(e.GBs(Q,5),e.GBs(J,5)),2&Ye){let Yt;e.mGM(Yt=e.lsd())&&(rt._unscopedContent=Yt.first),e.mGM(Yt=e.lsd())&&(rt._itemText=Yt.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:11,hostBindings:function(Ye,rt){2&Ye&&(e.BMQ("aria-current",rt._getAriaCurrent()),e.AVh("mdc-list-item--activated",rt.activated)("mdc-list-item--with-leading-avatar",0!==rt._avatars.length)("mdc-list-item--with-leading-icon",0!==rt._icons.length)("mdc-list-item--with-trailing-meta",0!==rt._meta.length)("_mat-animation-noopable",rt._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],standalone:!0,features:[e.Vt3,e.aNF],ngContentSelectors:ie,decls:10,vars:0,consts:[["unscopedContent",""],[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],[1,"mat-mdc-focus-indicator"]],template:function(Ye,rt){if(1&Ye){const Yt=e.RV6();e.NAR(ee),e.SdG(0),e.j41(1,"span",1),e.SdG(2,1),e.SdG(3,2),e.j41(4,"span",2,0),e.bIt("cdkObserveContent",function(){return e.eBV(Yt),e.Njj(rt._updateItemLines(!0))}),e.SdG(6,3),e.k0s()(),e.SdG(7,4),e.SdG(8,5),e.nrm(9,"div",3)}},dependencies:[I.Wv],encapsulation:2,changeDetection:0})}return He})(),Ie=(()=>{class He{static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275mod=e.$C({type:He});static#i=this.\u0275inj=e.G2t({imports:[I.w5,d.MD,S.yE,S.pZ,S.O5,T.w]})}return He})()},9115:(Qe,te,g)=>{"use strict";g.d(te,{Cn:()=>fe,Cp:()=>ce,fb:()=>m,kk:()=>ze});var e=g(4438),t=g(8617),w=g(7336),S=g(1413),l=g(7786),x=g(8359),f=g(7673),I=g(5007),d=g(9172),T=g(5558),y=g(6697),F=g(6977),R=g(5964),z=g(5335),W=g(177),$=g(6600),j=g(6939),Q=g(9969),J=g(8203),ee=g(6969),ie=g(6860),ge=g(5542);const ae=["mat-menu-item",""],Me=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],Te=["mat-icon, [matMenuItemIcon]","*"];function de(ke,mt){1&ke&&(e.qSk(),e.j41(0,"svg",2),e.nrm(1,"polygon",3),e.k0s())}const D=["*"];function n(ke,mt){if(1&ke){const _e=e.RV6();e.j41(0,"div",0),e.bIt("keydown",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._handleKeydown(pe))})("click",function(){e.eBV(_e);const pe=e.XpG();return e.Njj(pe.closed.emit("click"))})("@transformMenu.start",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._onAnimationStart(pe))})("@transformMenu.done",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._onAnimationDone(pe))}),e.j41(1,"div",1),e.SdG(2),e.k0s()()}if(2&ke){const _e=e.XpG();e.HbH(_e._classList),e.Y8G("id",_e.panelId)("@transformMenu",_e._panelAnimationState),e.BMQ("aria-label",_e.ariaLabel||null)("aria-labelledby",_e.ariaLabelledby||null)("aria-describedby",_e.ariaDescribedby||null)}}const c=new e.nKC("MAT_MENU_PANEL");let m=(()=>{class ke{constructor(_e,be,pe,Ze,_t){this._elementRef=_e,this._document=be,this._focusMonitor=pe,this._parentMenu=Ze,this._changeDetectorRef=_t,this.role="menuitem",this.disabled=!1,this.disableRipple=!1,this._hovered=new S.B,this._focused=new S.B,this._highlighted=!1,this._triggersSubmenu=!1,Ze?.addItem?.(this)}focus(_e,be){this._focusMonitor&&_e?this._focusMonitor.focusVia(this._getHostElement(),_e,be):this._getHostElement().focus(be),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(_e){this.disabled&&(_e.preventDefault(),_e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const _e=this._elementRef.nativeElement.cloneNode(!0),be=_e.querySelectorAll("mat-icon, .material-icons");for(let pe=0;pe enter",(0,Q.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,Q.iF)({opacity:1,transform:"scale(1)"}))),(0,Q.kY)("* => void",(0,Q.i0)("100ms 25ms linear",(0,Q.iF)({opacity:0})))]),fadeInItems:(0,Q.hZ)("fadeInItems",[(0,Q.wk)("showing",(0,Q.iF)({opacity:1})),(0,Q.kY)("void => *",[(0,Q.iF)({opacity:0}),(0,Q.i0)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let N=0;const ne=new e.nKC("mat-menu-default-options",{providedIn:"root",factory:function Ee(){return{overlapTrigger:!1,xPosition:"after",yPosition:"below",backdropClass:"cdk-overlay-transparent-backdrop"}}});let ze=(()=>{class ke{get xPosition(){return this._xPosition}set xPosition(_e){this._xPosition=_e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(_e){this._yPosition=_e,this.setPositionClasses()}set panelClass(_e){const be=this._previousPanelClass,pe={...this._classList};be&&be.length&&be.split(" ").forEach(Ze=>{pe[Ze]=!1}),this._previousPanelClass=_e,_e&&_e.length&&(_e.split(" ").forEach(Ze=>{pe[Ze]=!0}),this._elementRef.nativeElement.className=""),this._classList=pe}get classList(){return this.panelClass}set classList(_e){this.panelClass=_e}constructor(_e,be,pe,Ze){this._elementRef=_e,this._ngZone=be,this._changeDetectorRef=Ze,this._elevationPrefix="mat-elevation-z",this._baseElevation=8,this._directDescendantItems=new e.rOR,this._classList={},this._panelAnimationState="void",this._animationDone=new S.B,this.closed=new e.bkB,this.close=this.closed,this.panelId="mat-menu-panel-"+N++,this.overlayPanelClass=pe.overlayPanelClass||"",this._xPosition=pe.xPosition,this._yPosition=pe.yPosition,this.backdropClass=pe.backdropClass,this.overlapTrigger=pe.overlapTrigger,this.hasBackdrop=pe.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new t.Bu(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,d.Z)(this._directDescendantItems),(0,T.n)(_e=>(0,l.h)(..._e.map(be=>be._focused)))).subscribe(_e=>this._keyManager.updateActiveItem(_e)),this._directDescendantItems.changes.subscribe(_e=>{const be=this._keyManager;if("enter"===this._panelAnimationState&&be.activeItem?._hasFocus()){const pe=_e.toArray(),Ze=Math.max(0,Math.min(pe.length-1,be.activeItemIndex||0));pe[Ze]&&!pe[Ze].disabled?be.setActiveItem(Ze):be.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusSubscription?.unsubscribe()}_hovered(){return this._directDescendantItems.changes.pipe((0,d.Z)(this._directDescendantItems),(0,T.n)(be=>(0,l.h)(...be.map(pe=>pe._hovered))))}addItem(_e){}removeItem(_e){}_handleKeydown(_e){const be=_e.keyCode,pe=this._keyManager;switch(be){case w._f:(0,w.rp)(_e)||(_e.preventDefault(),this.closed.emit("keydown"));break;case w.UQ:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case w.LE:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(be===w.i7||be===w.n6)&&pe.setFocusOrigin("keyboard"),void pe.onKeydown(_e)}_e.stopPropagation()}focusFirstItem(_e="program"){this._firstItemFocusSubscription?.unsubscribe(),this._firstItemFocusSubscription=this._ngZone.onStable.pipe((0,y.s)(1)).subscribe(()=>{let be=null;if(this._directDescendantItems.length&&(be=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!be||!be.contains(document.activeElement)){const pe=this._keyManager;pe.setFocusOrigin(_e).setFirstItemActive(),!pe.activeItem&&be&&be.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(_e){const be=Math.min(this._baseElevation+_e,24),pe=`${this._elevationPrefix}${be}`,Ze=Object.keys(this._classList).find(_t=>_t.startsWith(this._elevationPrefix));if(!Ze||Ze===this._previousElevation){const _t={...this._classList};this._previousElevation&&(_t[this._previousElevation]=!1),_t[pe]=!0,this._previousElevation=pe,this._classList=_t}}setPositionClasses(_e=this.xPosition,be=this.yPosition){this._classList={...this._classList,"mat-menu-before":"before"===_e,"mat-menu-after":"after"===_e,"mat-menu-above":"above"===be,"mat-menu-below":"below"===be},this._changeDetectorRef?.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(_e){this._animationDone.next(_e),this._isAnimating=!1}_onAnimationStart(_e){this._isAnimating=!0,"enter"===_e.toState&&0===this._keyManager.activeItemIndex&&(_e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,d.Z)(this._allItems)).subscribe(_e=>{this._directDescendantItems.reset(_e.filter(be=>be._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}static#e=this.\u0275fac=function(be){return new(be||ke)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(ne),e.rXU(e.gRc))};static#t=this.\u0275cmp=e.VBU({type:ke,selectors:[["mat-menu"]],contentQueries:function(be,pe,Ze){if(1&be&&(e.wni(Ze,L,5),e.wni(Ze,m,5),e.wni(Ze,m,4)),2&be){let _t;e.mGM(_t=e.lsd())&&(pe.lazyContent=_t.first),e.mGM(_t=e.lsd())&&(pe._allItems=_t),e.mGM(_t=e.lsd())&&(pe.items=_t)}},viewQuery:function(be,pe){if(1&be&&e.GBs(e.C4Q,5),2&be){let Ze;e.mGM(Ze=e.lsd())&&(pe.templateRef=Ze.first)}},hostVars:3,hostBindings:function(be,pe){2&be&&e.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",e.L39],hasBackdrop:[2,"hasBackdrop","hasBackdrop",_e=>null==_e?null:(0,e.L39)(_e)],panelClass:[0,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:ke}]),e.GFd,e.aNF],ngContentSelectors:D,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel","mat-mdc-elevation-specific",3,"keydown","click","id"],[1,"mat-mdc-menu-content"]],template:function(be,pe){1&be&&(e.NAR(),e.DNE(0,n,3,7,"ng-template"))},styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;list-style-type:none}.mat-mdc-menu-content:focus{outline:none}.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);line-height:var(--mat-menu-item-label-text-line-height);font-size:var(--mat-menu-item-label-text-size);letter-spacing:var(--mat-menu-item-label-text-tracking);font-weight:var(--mat-menu-item-label-text-weight)}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;outline:0;border-radius:var(--mat-menu-container-shape);background-color:var(--mat-menu-container-color);will-change:transform,opacity}.mat-mdc-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-mdc-menu-panel{outline:solid 1px}.mat-divider{color:var(--mat-menu-divider-color);margin-bottom:var(--mat-menu-divider-bottom-spacing);margin-top:var(--mat-menu-divider-top-spacing)}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:var(--mat-menu-item-leading-spacing);padding-right:var(--mat-menu-item-trailing-spacing);-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;align-items:center;min-height:48px}.mat-mdc-menu-item:focus{outline:none}[dir=rtl] .mat-mdc-menu-item,.mat-mdc-menu-item[dir=rtl]{padding-left:var(--mat-menu-item-trailing-spacing);padding-right:var(--mat-menu-item-leading-spacing)}.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-leading-spacing);padding-right:var(--mat-menu-item-with-icon-trailing-spacing)}[dir=rtl] .mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]),.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon])[dir=rtl]{padding-left:var(--mat-menu-item-with-icon-trailing-spacing);padding-right:var(--mat-menu-item-with-icon-leading-spacing)}.mat-mdc-menu-item::-moz-focus-inner{border:0}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color)}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color)}.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 .mat-icon{flex-shrink:0;margin-right:var(--mat-menu-item-spacing);height:var(--mat-menu-item-icon-size);width:var(--mat-menu-item-icon-size)}[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)}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color)}.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)}.cdk-high-contrast-active .mat-mdc-menu-item{margin-top:1px}.mat-mdc-menu-submenu-icon{width:var(--mat-menu-item-icon-size);height:10px;fill:currentColor;padding-left:var(--mat-menu-item-spacing)}[dir=rtl] .mat-mdc-menu-submenu-icon{padding-right:var(--mat-menu-item-spacing);padding-left:0}[dir=rtl] .mat-mdc-menu-submenu-icon polygon{transform:scaleX(-1)}.cdk-high-contrast-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}'],encapsulation:2,data:{animation:[r.transformMenu,r.fadeInItems]},changeDetection:0})}return ke})();const qe=new e.nKC("mat-menu-scroll-strategy",{providedIn:"root",factory:()=>{const ke=(0,e.WQX)(ee.hJ);return()=>ke.scrollStrategies.reposition()}}),se={provide:qe,deps:[ee.hJ],useFactory:function Ke(ke){return()=>ke.scrollStrategies.reposition()}},X=(0,ie.BQ)({passive:!0});let ce=(()=>{class ke{get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(_e){this.menu=_e}get menu(){return this._menu}set menu(_e){_e!==this._menu&&(this._menu=_e,this._menuCloseSubscription.unsubscribe(),_e&&(this._menuCloseSubscription=_e.close.subscribe(be=>{this._destroyMenu(be),("click"===be||"tab"===be)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(be)})),this._menuItemInstance?._setTriggersSubmenu(this.triggersSubmenu()))}constructor(_e,be,pe,Ze,_t,at,pt,Xt,ye){this._overlay=_e,this._element=be,this._viewContainerRef=pe,this._menuItemInstance=at,this._dir=pt,this._focusMonitor=Xt,this._ngZone=ye,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=x.yU.EMPTY,this._hoverSubscription=x.yU.EMPTY,this._menuCloseSubscription=x.yU.EMPTY,this._changeDetectorRef=(0,e.WQX)(e.gRc),this._handleTouchStart=ue=>{(0,t.w6)(ue)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new e.bkB,this.onMenuOpen=this.menuOpened,this.menuClosed=new e.bkB,this.onMenuClose=this.menuClosed,this._scrollStrategy=Ze,this._parentMaterialMenu=_t instanceof ze?_t:void 0,be.nativeElement.addEventListener("touchstart",this._handleTouchStart,X)}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,X),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}triggersSubmenu(){return!!(this._menuItemInstance&&this._parentMaterialMenu&&this.menu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){const _e=this.menu;if(this._menuOpen||!_e)return;const be=this._createOverlay(_e),pe=be.getConfig(),Ze=pe.positionStrategy;this._setPosition(_e,Ze),pe.hasBackdrop=null==_e.hasBackdrop?!this.triggersSubmenu():_e.hasBackdrop,be.attach(this._getPortal(_e)),_e.lazyContent&&_e.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(_e),_e instanceof ze&&(_e._startAnimation(),_e._directDescendantItems.changes.pipe((0,F.Q)(_e.close)).subscribe(()=>{Ze.withLockedPosition(!1).reapplyLastPosition(),Ze.withLockedPosition(!0)}))}closeMenu(){this.menu?.close.emit()}focus(_e,be){this._focusMonitor&&_e?this._focusMonitor.focusVia(this._element,_e,be):this._element.nativeElement.focus(be)}updatePosition(){this._overlayRef?.updatePosition()}_destroyMenu(_e){if(!this._overlayRef||!this.menuOpen)return;const be=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===_e||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,be instanceof ze?(be._resetAnimation(),be.lazyContent?be._animationDone.pipe((0,R.p)(pe=>"void"===pe.toState),(0,y.s)(1),(0,F.Q)(be.lazyContent._attached)).subscribe({next:()=>be.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),be?.lazyContent?.detach())}_initMenu(_e){_e.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,_e.direction=this.dir,this._setMenuElevation(_e),_e.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(_e){if(_e.setElevation){let be=0,pe=_e.parentMenu;for(;pe;)be++,pe=pe.parentMenu;_e.setElevation(be)}}_setIsMenuOpen(_e){_e!==this._menuOpen&&(this._menuOpen=_e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(_e),this._changeDetectorRef.markForCheck())}_createOverlay(_e){if(!this._overlayRef){const be=this._getOverlayConfig(_e);this._subscribeToPositions(_e,be.positionStrategy),this._overlayRef=this._overlay.create(be),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(_e){return new ee.rR({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:_e.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:_e.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(_e,be){_e.setPositionClasses&&be.positionChanges.subscribe(pe=>{const Ze="start"===pe.connectionPair.overlayX?"after":"before",_t="top"===pe.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>_e.setPositionClasses(Ze,_t)):_e.setPositionClasses(Ze,_t)})}_setPosition(_e,be){let[pe,Ze]="before"===_e.xPosition?["end","start"]:["start","end"],[_t,at]="above"===_e.yPosition?["bottom","top"]:["top","bottom"],[pt,Xt]=[_t,at],[ye,ue]=[pe,Ze],Ie=0;if(this.triggersSubmenu()){if(ue=pe="before"===_e.xPosition?"start":"end",Ze=ye="end"===pe?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const He=this._parentMaterialMenu.items.first;this._parentInnerPadding=He?He._getHostElement().offsetTop:0}Ie="bottom"===_t?this._parentInnerPadding:-this._parentInnerPadding}}else _e.overlapTrigger||(pt="top"===_t?"bottom":"top",Xt="top"===at?"bottom":"top");be.withPositions([{originX:pe,originY:pt,overlayX:ye,overlayY:_t,offsetY:Ie},{originX:Ze,originY:pt,overlayX:ue,overlayY:_t,offsetY:Ie},{originX:pe,originY:Xt,overlayX:ye,overlayY:at,offsetY:-Ie},{originX:Ze,originY:Xt,overlayX:ue,overlayY:at,offsetY:-Ie}])}_menuClosingActions(){const _e=this._overlayRef.backdropClick(),be=this._overlayRef.detachments(),pe=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,f.of)(),Ze=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,R.p)(_t=>_t!==this._menuItemInstance),(0,R.p)(()=>this._menuOpen)):(0,f.of)();return(0,l.h)(_e,pe,Ze,be)}_handleMousedown(_e){(0,t._G)(_e)||(this._openedBy=0===_e.button?"mouse":void 0,this.triggersSubmenu()&&_e.preventDefault())}_handleKeydown(_e){const be=_e.keyCode;(be===w.Fm||be===w.t6)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(be===w.LE&&"ltr"===this.dir||be===w.UQ&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(_e){this.triggersSubmenu()?(_e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,R.p)(_e=>_e===this._menuItemInstance&&!_e.disabled),(0,z.c)(0,I.$)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof ze&&this.menu._isAnimating?this.menu._animationDone.pipe((0,y.s)(1),(0,z.c)(0,I.$),(0,F.Q)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(_e){return(!this._portal||this._portal.templateRef!==_e.templateRef)&&(this._portal=new j.VA(_e.templateRef,this._viewContainerRef)),this._portal}static#e=this.\u0275fac=function(be){return new(be||ke)(e.rXU(ee.hJ),e.rXU(e.aKT),e.rXU(e.c1b),e.rXU(qe),e.rXU(c,8),e.rXU(m,10),e.rXU(J.dS,8),e.rXU(t.FN),e.rXU(e.SKi))};static#t=this.\u0275dir=e.FsC({type:ke,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(be,pe){1&be&&e.bIt("click",function(_t){return pe._handleClick(_t)})("mousedown",function(_t){return pe._handleMousedown(_t)})("keydown",function(_t){return pe._handleKeydown(_t)}),2&be&&e.BMQ("aria-haspopup",pe.menu?"menu":null)("aria-expanded",pe.menuOpen)("aria-controls",pe.menuOpen?pe.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"],standalone:!0})}return ke})(),fe=(()=>{class ke{static#e=this.\u0275fac=function(be){return new(be||ke)};static#t=this.\u0275mod=e.$C({type:ke});static#i=this.\u0275inj=e.G2t({providers:[se],imports:[W.MD,$.pZ,$.yE,ee.z_,ge.Gj,$.yE]})}return ke})()},6695:(Qe,te,g)=>{"use strict";g.d(te,{Ou:()=>ae,iy:()=>ge,xX:()=>W});var e=g(4438),t=g(1413),w=g(2771),S=g(8834),l=g(2798),x=g(4823),f=g(6600),I=g(6467);function d(Me,Te){if(1&Me&&(e.j41(0,"mat-option",16),e.EFF(1),e.k0s()),2&Me){const de=Te.$implicit;e.Y8G("value",de),e.R7$(),e.SpI(" ",de," ")}}function T(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"mat-form-field",13)(1,"mat-select",15),e.bIt("selectionChange",function(n){e.eBV(de);const c=e.XpG(2);return e.Njj(c._changePageSize(n.value))}),e.Z7z(2,d,2,2,"mat-option",16,e.fX1),e.k0s()()}if(2&Me){const de=e.XpG(2);e.Y8G("appearance",de._formFieldAppearance)("color",de.color),e.R7$(),e.Y8G("value",de.pageSize)("disabled",de.disabled)("aria-labelledby",de._pageSizeLabelId)("panelClass",de.selectConfig.panelClass||"")("disableOptionCentering",de.selectConfig.disableOptionCentering),e.R7$(),e.Dyx(de._displayedPageSizeOptions)}}function y(Me,Te){if(1&Me&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&Me){const de=e.XpG(2);e.R7$(),e.JRh(de.pageSize)}}function F(Me,Te){if(1&Me&&(e.j41(0,"div",2)(1,"div",12),e.EFF(2),e.k0s(),e.DNE(3,T,4,7,"mat-form-field",13)(4,y,2,1,"div",14),e.k0s()),2&Me){const de=e.XpG();e.R7$(),e.BMQ("id",de._pageSizeLabelId),e.R7$(),e.SpI(" ",de._intl.itemsPerPageLabel," "),e.R7$(),e.vxM(de._displayedPageSizeOptions.length>1?3:-1),e.R7$(),e.vxM(de._displayedPageSizeOptions.length<=1?4:-1)}}function R(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"button",17),e.bIt("click",function(){e.eBV(de);const n=e.XpG();return e.Njj(n.firstPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",18),e.k0s()()}if(2&Me){const de=e.XpG();e.Y8G("matTooltip",de._intl.firstPageLabel)("matTooltipDisabled",de._previousButtonsDisabled())("matTooltipPosition","above")("disabled",de._previousButtonsDisabled()),e.BMQ("aria-label",de._intl.firstPageLabel)}}function z(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"button",19),e.bIt("click",function(){e.eBV(de);const n=e.XpG();return e.Njj(n.lastPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",20),e.k0s()()}if(2&Me){const de=e.XpG();e.Y8G("matTooltip",de._intl.lastPageLabel)("matTooltipDisabled",de._nextButtonsDisabled())("matTooltipPosition","above")("disabled",de._nextButtonsDisabled()),e.BMQ("aria-label",de._intl.lastPageLabel)}}let W=(()=>{class Me{constructor(){this.changes=new t.B,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(de,D,n)=>{if(0==n||0==D)return`0 of ${n}`;const c=de*D;return`${c+1} \u2013 ${c<(n=Math.max(n,0))?Math.min(c+D,n):c+D} of ${n}`}}static#e=this.\u0275fac=function(D){return new(D||Me)};static#t=this.\u0275prov=e.jDH({token:Me,factory:Me.\u0275fac,providedIn:"root"})}return Me})();const j={provide:W,deps:[[new e.Xx1,new e.kdw,W]],useFactory:function $(Me){return Me||new W}},ee=new e.nKC("MAT_PAGINATOR_DEFAULT_OPTIONS");let ie=0,ge=(()=>{class Me{get pageIndex(){return this._pageIndex}set pageIndex(de){this._pageIndex=Math.max(de||0,0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(de){this._length=de||0,this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(de){this._pageSize=Math.max(de||0,0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(de){this._pageSizeOptions=(de||[]).map(D=>(0,e.Udg)(D,0)),this._updateDisplayedPageSizeOptions()}constructor(de,D,n){if(this._intl=de,this._changeDetectorRef=D,this._pageSizeLabelId="mat-paginator-page-size-label-"+ie++,this._isInitialized=!1,this._initializedStream=new w.m(1),this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this.hidePageSize=!1,this.showFirstLastButtons=!1,this.selectConfig={},this.disabled=!1,this.page=new e.bkB,this.initialized=this._initializedStream,this._intlChanges=de.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),n){const{pageSize:c,pageSizeOptions:m,hidePageSize:h,showFirstLastButtons:C}=n;null!=c&&(this._pageSize=c),null!=m&&(this._pageSizeOptions=m),null!=h&&(this.hidePageSize=h),null!=C&&(this.showFirstLastButtons=C)}this._formFieldAppearance=n?.formFieldAppearance||"outline"}ngOnInit(){this._isInitialized=!0,this._updateDisplayedPageSizeOptions(),this._initializedStream.next()}ngOnDestroy(){this._initializedStream.complete(),this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const de=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(de)}previousPage(){if(!this.hasPreviousPage())return;const de=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(de)}firstPage(){if(!this.hasPreviousPage())return;const de=this.pageIndex;this.pageIndex=0,this._emitPageEvent(de)}lastPage(){if(!this.hasNextPage())return;const de=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(de)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const de=this.getNumberOfPages()-1;return this.pageIndexde-D),this._changeDetectorRef.markForCheck())}_emitPageEvent(de){this.page.emit({previousPageIndex:de,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}static#e=this.\u0275fac=function(D){return new(D||Me)(e.rXU(W),e.rXU(e.gRc),e.rXU(ee,8))};static#t=this.\u0275cmp=e.VBU({type:Me,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{color:"color",pageIndex:[2,"pageIndex","pageIndex",e.Udg],length:[2,"length","length",e.Udg],pageSize:[2,"pageSize","pageSize",e.Udg],pageSizeOptions:"pageSizeOptions",hidePageSize:[2,"hidePageSize","hidePageSize",e.L39],showFirstLastButtons:[2,"showFirstLastButtons","showFirstLastButtons",e.L39],selectConfig:"selectConfig",disabled:[2,"disabled","disabled",e.L39]},outputs:{page:"page"},exportAs:["matPaginator"],standalone:!0,features:[e.GFd,e.aNF],decls:14,vars:14,consts:[[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"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-previous",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["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"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-next",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],[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"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(D,n){1&D&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,F,5,4,"div",2),e.j41(3,"div",3)(4,"div",4),e.EFF(5),e.k0s(),e.DNE(6,R,3,5,"button",5),e.j41(7,"button",6),e.bIt("click",function(){return n.previousPage()}),e.qSk(),e.j41(8,"svg",7),e.nrm(9,"path",8),e.k0s()(),e.joV(),e.j41(10,"button",9),e.bIt("click",function(){return n.nextPage()}),e.qSk(),e.j41(11,"svg",7),e.nrm(12,"path",10),e.k0s()(),e.DNE(13,z,3,5,"button",11),e.k0s()()()),2&D&&(e.R7$(2),e.vxM(n.hidePageSize?-1:2),e.R7$(3),e.SpI(" ",n._intl.getRangeLabel(n.pageIndex,n.pageSize,n.length)," "),e.R7$(),e.vxM(n.showFirstLastButtons?6:-1),e.R7$(),e.Y8G("matTooltip",n._intl.previousPageLabel)("matTooltipDisabled",n._previousButtonsDisabled())("matTooltipPosition","above")("disabled",n._previousButtonsDisabled()),e.BMQ("aria-label",n._intl.previousPageLabel),e.R7$(3),e.Y8G("matTooltip",n._intl.nextPageLabel)("matTooltipDisabled",n._nextButtonsDisabled())("matTooltipPosition","above")("disabled",n._nextButtonsDisabled()),e.BMQ("aria-label",n._intl.nextPageLabel),e.R7$(3),e.vxM(n.showFirstLastButtons?13:-1))},dependencies:[I.rl,l.VO,f.wT,S.iY,x.oV],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color);background-color:var(--mat-paginator-container-background-color);font-family:var(--mat-paginator-container-text-font);line-height:var(--mat-paginator-container-text-line-height);font-size:var(--mat-paginator-container-text-size);font-weight:var(--mat-paginator-container-text-weight);letter-spacing:var(--mat-paginator-container-text-tracking);--mat-form-field-container-height:var(--mat-paginator-form-field-container-height);--mat-form-field-container-vertical-padding:var(--mat-paginator-form-field-container-vertical-padding)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-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)}.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: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)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color)}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon,.cdk-high-contrast-active .mat-mdc-paginator-icon{fill:currentColor;fill:CanvasText}.cdk-high-contrast-active .mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return Me})(),ae=(()=>{class Me{static#e=this.\u0275fac=function(D){return new(D||Me)};static#t=this.\u0275mod=e.$C({type:Me});static#i=this.\u0275inj=e.G2t({providers:[j],imports:[S.Hl,l.Ve,x.uc,ge]})}return Me})()},7575:(Qe,te,g)=>{"use strict";g.d(te,{HM:()=>I,PO:()=>T});var e=g(4438),w=(g(177),g(6600));function S(y,F){1&y&&e.nrm(0,"div",2)}const l=new e.nKC("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let I=(()=>{class y{constructor(R,z,W,$,j){this._elementRef=R,this._ngZone=z,this._changeDetectorRef=W,this._animationMode=$,this._isNoopAnimation=!1,this._defaultColor="primary",this._value=0,this._bufferValue=0,this.animationEnd=new e.bkB,this._mode="determinate",this._transitionendHandler=Q=>{0===this.animationEnd.observers.length||!Q.target||!Q.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))},this._isNoopAnimation="NoopAnimations"===$,j&&(j.color&&(this.color=this._defaultColor=j.color),this.mode=j.mode||this.mode)}get color(){return this._color||this._defaultColor}set color(R){this._color=R}get value(){return this._value}set value(R){this._value=d(R||0),this._changeDetectorRef.markForCheck()}get bufferValue(){return this._bufferValue||0}set bufferValue(R){this._bufferValue=d(R||0),this._changeDetectorRef.markForCheck()}get mode(){return this._mode}set mode(R){this._mode=R,this._changeDetectorRef.markForCheck()}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._elementRef.nativeElement.addEventListener("transitionend",this._transitionendHandler)})}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._transitionendHandler)}_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}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.bc$,8),e.rXU(l,8))};static#t=this.\u0275cmp=e.VBU({type:y,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(z,W){2&z&&(e.BMQ("aria-valuenow",W._isIndeterminate()?null:W.value)("mode",W.mode),e.HbH("mat-"+W.color),e.AVh("_mat-animation-noopable",W._isNoopAnimation)("mdc-linear-progress--animation-ready",!W._isNoopAnimation)("mdc-linear-progress--indeterminate",W._isIndeterminate()))},inputs:{color:"color",value:[2,"value","value",e.Udg],bufferValue:[2,"bufferValue","bufferValue",e.Udg],mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],standalone:!0,features:[e.GFd,e.aNF],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(z,W){1&z&&(e.j41(0,"div",0),e.nrm(1,"div",1),e.DNE(2,S,1,0,"div",2),e.k0s(),e.j41(3,"div",3),e.nrm(4,"span",4),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",4),e.k0s()),2&z&&(e.R7$(),e.xc7("flex-basis",W._getBufferBarFlexBasis()),e.R7$(),e.vxM("buffer"===W.mode?2:-1),e.R7$(),e.xc7("transform",W._getPrimaryBarTransform()))},styles:["@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(var(--mdc-linear-progress-primary-half))}100%{transform:translateX(var(--mdc-linear-progress-primary-full))}}@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(var(--mdc-linear-progress-secondary-quarter))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full))}}@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(var(--mdc-linear-progress-primary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-primary-full-neg))}}@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(var(--mdc-linear-progress-secondary-quarter-neg))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full-neg))}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}.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)}@media screen and (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)}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden}.mdc-linear-progress__buffer-dots{background-repeat:repeat-x;flex:auto;transform:rotate(180deg);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");animation:mdc-linear-progress-buffering 250ms infinite linear}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.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__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate 2s 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 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate 2s 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 2s infinite linear}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__bar{right:0;-webkit-transform-origin:center right;transform-origin:center right}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__buffer-dots,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse 250ms infinite linear;transform:rotate(0)}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}.mdc-linear-progress--closed{opacity:0}.mdc-linear-progress--closed-animation-off .mdc-linear-progress__buffer-dots{animation:none}.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar,.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar .mdc-linear-progress__bar-inner{animation:none}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height) * -2.5))}}.mdc-linear-progress__bar-inner{border-color:var(--mdc-linear-progress-active-indicator-color)}.mdc-linear-progress__buffer-dots{background-color:var(--mdc-linear-progress-track-color)}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(244, 67, 54, 0.25)'/%3E%3C/svg%3E\")}}.mdc-linear-progress__buffer-bar{background-color:var(--mdc-linear-progress-track-color)}.mdc-linear-progress{height:max(var(--mdc-linear-progress-track-height), var(--mdc-linear-progress-active-indicator-height))}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress{height:4px}}.mdc-linear-progress__bar{height:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__bar-inner{border-top-width:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__buffer{height:var(--mdc-linear-progress-track-height)}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-size:10px var(--mdc-linear-progress-track-height)}}.mdc-linear-progress__buffer{border-radius:var(--mdc-linear-progress-track-shape)}.mat-mdc-progress-bar{display:block;text-align:start;--mdc-linear-progress-primary-half: 83.67142%;--mdc-linear-progress-primary-full: 200.611057%;--mdc-linear-progress-secondary-quarter: 37.651913%;--mdc-linear-progress-secondary-half: 84.386165%;--mdc-linear-progress-secondary-full: 160.277782%;--mdc-linear-progress-primary-half-neg: -83.67142%;--mdc-linear-progress-primary-full-neg: -200.611057%;--mdc-linear-progress-secondary-quarter-neg: -37.651913%;--mdc-linear-progress-secondary-half-neg: -84.386165%;--mdc-linear-progress-secondary-full-neg: -160.277782%}.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}"],encapsulation:2,changeDetection:0})}return y})();function d(y,F=0,R=100){return Math.max(F,Math.min(R,y))}let T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[w.yE]})}return y})()},9183:(Qe,te,g)=>{"use strict";g.d(te,{D6:()=>F,LG:()=>T});var e=g(4438),t=g(177),w=g(6600);const S=["determinateSpinner"];function l(R,z){if(1&R&&(e.qSk(),e.j41(0,"svg",11),e.nrm(1,"circle",12),e.k0s()),2&R){const W=e.XpG();e.BMQ("viewBox",W._viewBox()),e.R7$(),e.xc7("stroke-dasharray",W._strokeCircumference(),"px")("stroke-dashoffset",W._strokeCircumference()/2,"px")("stroke-width",W._circleStrokeWidth(),"%"),e.BMQ("r",W._circleRadius())}}const x=new e.nKC("mat-progress-spinner-default-options",{providedIn:"root",factory:function f(){return{diameter:I}}}),I=100;let T=(()=>{class R{get color(){return this._color||this._defaultColor}set color(W){this._color=W}constructor(W,$,j){this._elementRef=W,this._defaultColor="primary",this._value=0,this._diameter=I,this._noopAnimations="NoopAnimations"===$&&!!j&&!j._forceAnimations,this.mode="mat-spinner"===W.nativeElement.nodeName.toLowerCase()?"indeterminate":"determinate",j&&(j.color&&(this.color=this._defaultColor=j.color),j.diameter&&(this.diameter=j.diameter),j.strokeWidth&&(this.strokeWidth=j.strokeWidth))}get value(){return"determinate"===this.mode?this._value:0}set value(W){this._value=Math.max(0,Math.min(100,W||0))}get diameter(){return this._diameter}set diameter(W){this._diameter=W||0}get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(W){this._strokeWidth=W||0}_circleRadius(){return(this.diameter-10)/2}_viewBox(){const W=2*this._circleRadius()+this.strokeWidth;return`0 0 ${W} ${W}`}_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#e=this.\u0275fac=function($){return new($||R)(e.rXU(e.aKT),e.rXU(e.bc$,8),e.rXU(x))};static#t=this.\u0275cmp=e.VBU({type:R,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function($,j){if(1&$&&e.GBs(S,5),2&$){let Q;e.mGM(Q=e.lsd())&&(j._determinateCircle=Q.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:18,hostBindings:function($,j){2&$&&(e.BMQ("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===j.mode?j.value:null)("mode",j.mode),e.HbH("mat-"+j.color),e.xc7("width",j.diameter,"px")("height",j.diameter,"px")("--mdc-circular-progress-size",j.diameter+"px")("--mdc-circular-progress-active-indicator-width",j.diameter+"px"),e.AVh("_mat-animation-noopable",j._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===j.mode))},inputs:{color:"color",mode:"mode",value:[2,"value","value",e.Udg],diameter:[2,"diameter","diameter",e.Udg],strokeWidth:[2,"strokeWidth","strokeWidth",e.Udg]},exportAs:["matProgressSpinner"],standalone:!0,features:[e.GFd,e.aNF],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($,j){if(1&$&&(e.DNE(0,l,2,8,"ng-template",null,0,e.C5r),e.j41(2,"div",2,1),e.qSk(),e.j41(4,"svg",3),e.nrm(5,"circle",4),e.k0s()(),e.joV(),e.j41(6,"div",5)(7,"div",6)(8,"div",7),e.eu8(9,8),e.k0s(),e.j41(10,"div",9),e.eu8(11,8),e.k0s(),e.j41(12,"div",10),e.eu8(13,8),e.k0s()()()),2&$){const Q=e.sdS(1);e.R7$(4),e.BMQ("viewBox",j._viewBox()),e.R7$(),e.xc7("stroke-dasharray",j._strokeCircumference(),"px")("stroke-dashoffset",j._strokeDashOffset(),"px")("stroke-width",j._circleStrokeWidth(),"%"),e.BMQ("r",j._circleRadius()),e.R7$(4),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q)}},dependencies:[t.T3],styles:["@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-color-1-fade-in-out{from{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@keyframes mdc-circular-progress-color-2-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-3-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-4-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@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)}}.mdc-circular-progress{display:inline-flex;position:relative;direction:ltr;line-height:0;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.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-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms 0ms 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{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.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__determinate-container{opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{animation:mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-1{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-2{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-3{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-4{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin 1333ms 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 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--closed{opacity:0}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mdc-circular-progress-active-indicator-color)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner circle{stroke-width:var(--mdc-circular-progress-active-indicator-width)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-1 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-2 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-3 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-4 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner .mdc-circular-progress{width:var(--mdc-circular-progress-size) !important;height:var(--mdc-circular-progress-size) !important}.mat-mdc-progress-spinner{display:block;overflow:hidden;line-height:0}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none}.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}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}"],encapsulation:2,changeDetection:0})}return R})(),F=(()=>{class R{static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275mod=e.$C({type:R});static#i=this.\u0275inj=e.G2t({imports:[t.MD,w.yE]})}return R})()},5951:(Qe,te,g)=>{"use strict";g.d(te,{VT:()=>$,Wk:()=>Q,_g:()=>j});var e=g(4438),t=g(6600),w=g(8617),S=g(5024),l=g(9417),x=g(177);const f=["input"],I=["formField"],d=["*"];let T=0;class y{constructor(ee,ie){this.source=ee,this.value=ie}}const F={provide:l.kq,useExisting:(0,e.Rfq)(()=>$),multi:!0},R=new e.nKC("MatRadioGroup"),z=new e.nKC("mat-radio-default-options",{providedIn:"root",factory:function W(){return{color:"accent"}}});let $=(()=>{class J{get name(){return this._name}set name(ie){this._name=ie,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(ie){this._labelPosition="before"===ie?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(ie){this._value!==ie&&(this._value=ie,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(ie){this._selected=ie,this.value=ie?ie.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(ie){this._disabled=ie,this._markRadiosForCheck()}get required(){return this._required}set required(ie){this._required=ie,this._markRadiosForCheck()}constructor(ie){this._changeDetector=ie,this._value=null,this._name="mat-radio-group-"+T++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new e.bkB}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(ie=>ie===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(ie=>{ie.name=this.name,ie._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(ge=>{ge.checked=this.value===ge.value,ge.checked&&(this._selected=ge)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new y(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(ie=>ie._markForCheck())}writeValue(ie){this.value=ie,this._changeDetector.markForCheck()}registerOnChange(ie){this._controlValueAccessorChangeFn=ie}registerOnTouched(ie){this.onTouched=ie}setDisabledState(ie){this.disabled=ie,this._changeDetector.markForCheck()}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(e.gRc))};static#t=this.\u0275dir=e.FsC({type:J,selectors:[["mat-radio-group"]],contentQueries:function(ge,ae,Me){if(1&ge&&e.wni(Me,j,5),2&ge){let Te;e.mGM(Te=e.lsd())&&(ae._radios=Te)}},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]},outputs:{change:"change"},exportAs:["matRadioGroup"],standalone:!0,features:[e.Jv_([F,{provide:R,useExisting:J}]),e.GFd]})}return J})(),j=(()=>{class J{get checked(){return this._checked}set checked(ie){this._checked!==ie&&(this._checked=ie,ie&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!ie&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),ie&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(ie){this._value!==ie&&(this._value=ie,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===ie),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(ie){this._labelPosition=ie}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(ie){this._setDisabled(ie)}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(ie){this._required=ie}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(ie){this._color=ie}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ie,ge,ae,Me,Te,de,D,n){this._elementRef=ge,this._changeDetector=ae,this._focusMonitor=Me,this._radioDispatcher=Te,this._providerOverride=D,this._uniqueId="mat-radio-"+ ++T,this.id=this._uniqueId,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=ie,this._noopAnimations="NoopAnimations"===de,n&&(this.tabIndex=(0,e.Udg)(n,0))}focus(ie,ge){ge?this._focusMonitor.focusVia(this._inputElement,ge,ie):this._inputElement.nativeElement.focus(ie)}_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((ie,ge)=>{ie!==this.id&&ge===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(ie=>{!ie&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new y(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(ie){ie.stopPropagation()}_onInputInteraction(ie){if(ie.stopPropagation(),!this.checked&&!this.disabled){const ge=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),ge&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(ie){this._onInputInteraction(ie),this.disabled||this._inputElement.nativeElement.focus()}_setDisabled(ie){this._disabled!==ie&&(this._disabled=ie,this._changeDetector.markForCheck())}_updateTabIndex(){const ie=this.radioGroup;let ge;if(ge=ie&&ie.selected&&!this.disabled?ie.selected===this?this.tabIndex:-1:this.tabIndex,ge!==this._previousTabIndex){const ae=this._inputElement?.nativeElement;ae&&(ae.setAttribute("tabindex",ge+""),this._previousTabIndex=ge)}}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(R,8),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(w.FN),e.rXU(S.zP),e.rXU(e.bc$,8),e.rXU(z,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:J,selectors:[["mat-radio-button"]],viewQuery:function(ge,ae){if(1&ge&&(e.GBs(f,5),e.GBs(I,7,e.aKT)),2&ge){let Me;e.mGM(Me=e.lsd())&&(ae._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ae._rippleTrigger=Me.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:15,hostBindings:function(ge,ae){1&ge&&e.bIt("focus",function(){return ae._inputElement.nativeElement.focus()}),2&ge&&(e.BMQ("id",ae.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),e.AVh("mat-primary","primary"===ae.color)("mat-accent","accent"===ae.color)("mat-warn","warn"===ae.color)("mat-mdc-radio-checked",ae.checked)("_mat-animation-noopable",ae._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",ie=>null==ie?0:(0,e.Udg)(ie)],checked:[2,"checked","checked",e.L39],value:"value",labelPosition:"labelPosition",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],color:"color"},outputs:{change:"change"},exportAs:["matRadioButton"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:d,decls:13,vars:16,consts:[["formField",""],["input",""],["mat-internal-form-field","",3,"labelPosition"],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio",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-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(ge,ae){if(1&ge){const Me=e.RV6();e.NAR(),e.j41(0,"div",2,0)(2,"div",3)(3,"div",4),e.bIt("click",function(de){return e.eBV(Me),e.Njj(ae._onTouchTargetClick(de))}),e.k0s(),e.j41(4,"input",5,1),e.bIt("change",function(de){return e.eBV(Me),e.Njj(ae._onInputInteraction(de))}),e.k0s(),e.j41(6,"div",6),e.nrm(7,"div",7)(8,"div",8),e.k0s(),e.j41(9,"div",9),e.nrm(10,"div",10),e.k0s()(),e.j41(11,"label",11),e.SdG(12),e.k0s()()}2&ge&&(e.Y8G("labelPosition",ae.labelPosition),e.R7$(2),e.AVh("mdc-radio--disabled",ae.disabled),e.R7$(2),e.Y8G("id",ae.inputId)("checked",ae.checked)("disabled",ae.disabled)("required",ae.required),e.BMQ("name",ae.name)("value",ae.value)("aria-label",ae.ariaLabel)("aria-labelledby",ae.ariaLabelledby)("aria-describedby",ae.ariaDescribedby),e.R7$(5),e.Y8G("matRippleTrigger",ae._rippleTrigger.nativeElement)("matRippleDisabled",ae._isRippleDisabled())("matRippleCentered",!0),e.R7$(2),e.Y8G("for",ae.inputId))},dependencies:[t.r6,t.tO],styles:['.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}.mdc-radio[hidden]{display:none}.mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.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 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0, 0);border-width:10px;border-style:solid;border-radius:50%;transition:transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1}.mdc-radio--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-radio--touch .mdc-radio__native-control{top:calc((40px - 48px) / 2);right:calc((40px - 48px) / 2);left:calc((40px - 48px) / 2);width:48px;height:48px}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{border-color:CanvasText}}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{border-color:CanvasText}}.mdc-radio__native-control:checked+.mdc-radio__background,.mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__outer-circle{transition:border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio--disabled{cursor:default;pointer-events:none}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle{transform:scale(0.5);transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:disabled+.mdc-radio__background,[aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background{cursor:default}.mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{padding:calc((var(--mdc-radio-state-layer-size) - 20px) / 2)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-unselected-icon-opacity)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{top:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);left:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control{top:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);right:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);left:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color)}.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.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color)}.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._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 .mdc-radio .mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-focus-icon-color, black)}.mat-mdc-radio-button.cdk-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-radio-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display)}[dir=rtl] .mat-mdc-radio-touch-target{left:0;right:50%;transform:translate(50%, -50%)}'],encapsulation:2,changeDetection:0})}return J})(),Q=(()=>{class J{static#e=this.\u0275fac=function(ge){return new(ge||J)};static#t=this.\u0275mod=e.$C({type:J});static#i=this.\u0275inj=e.G2t({imports:[t.yE,x.MD,t.pZ,j,t.yE]})}return J})()},2798:(Qe,te,g)=>{"use strict";g.d(te,{$2:()=>Ke,JO:()=>N,VO:()=>qe,Ve:()=>se});var e=g(6969),t=g(177),w=g(4438),S=g(6600),l=g(6467),x=g(5542),f=g(8617),I=g(8203),d=g(5024),T=g(7336),y=g(9417),F=g(1413),R=g(9030),z=g(7786),W=g(9172),$=g(5558),j=g(5964),Q=g(6354),J=g(3294),ee=g(6977),ie=g(6697),ge=g(9969);const ae=["trigger"],Me=["panel"],Te=[[["mat-select-trigger"]],"*"],de=["mat-select-trigger","*"];function D(X,me){if(1&X&&(w.j41(0,"span",4),w.EFF(1),w.k0s()),2&X){const ce=w.XpG();w.R7$(),w.JRh(ce.placeholder)}}function n(X,me){1&X&&w.SdG(0)}function c(X,me){if(1&X&&(w.j41(0,"span",11),w.EFF(1),w.k0s()),2&X){const ce=w.XpG(2);w.R7$(),w.JRh(ce.triggerValue)}}function m(X,me){if(1&X&&(w.j41(0,"span",5),w.DNE(1,n,1,0)(2,c,2,1,"span",11),w.k0s()),2&X){const ce=w.XpG();w.R7$(),w.vxM(ce.customTrigger?1:2)}}function h(X,me){if(1&X){const ce=w.RV6();w.j41(0,"div",12,1),w.bIt("@transformPanel.done",function(ke){w.eBV(ce);const mt=w.XpG();return w.Njj(mt._panelDoneAnimatingStream.next(ke.toState))})("keydown",function(ke){w.eBV(ce);const mt=w.XpG();return w.Njj(mt._handleKeydown(ke))}),w.SdG(2,1),w.k0s()}if(2&X){const ce=w.XpG();w.ZvI("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",ce._getPanelTheme(),""),w.Y8G("ngClass",ce.panelClass)("@transformPanel","showing"),w.BMQ("id",ce.id+"-panel")("aria-multiselectable",ce.multiple)("aria-label",ce.ariaLabel||null)("aria-labelledby",ce._getPanelAriaLabelledby())}}const C={transformPanelWrap:(0,ge.hZ)("transformPanelWrap",[(0,ge.kY)("* => void",(0,ge.P)("@transformPanel",[(0,ge.MA)()],{optional:!0}))]),transformPanel:(0,ge.hZ)("transformPanel",[(0,ge.wk)("void",(0,ge.iF)({opacity:0,transform:"scale(1, 0.8)"})),(0,ge.kY)("void => showing",(0,ge.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ge.iF)({opacity:1,transform:"scale(1, 1)"}))),(0,ge.kY)("* => void",(0,ge.i0)("100ms linear",(0,ge.iF)({opacity:0})))])};let r=0;const v=new w.nKC("mat-select-scroll-strategy",{providedIn:"root",factory:()=>{const X=(0,w.WQX)(e.hJ);return()=>X.scrollStrategies.reposition()}}),N=new w.nKC("MAT_SELECT_CONFIG"),ne={provide:v,deps:[e.hJ],useFactory:function V(X){return()=>X.scrollStrategies.reposition()}},Ee=new w.nKC("MatSelectTrigger");class ze{constructor(me,ce){this.source=me,this.value=ce}}let qe=(()=>{class X{_scrollOptionIntoView(ce){const fe=this.options.toArray()[ce];if(fe){const ke=this.panel.nativeElement,mt=(0,S.jb)(ce,this.options,this.optionGroups),_e=fe._getHostElement();ke.scrollTop=0===ce&&1===mt?0:(0,S.TL)(_e.offsetTop,_e.offsetHeight,ke.scrollTop,ke.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(ce){return new ze(this,ce)}get focused(){return this._focused||this._panelOpen}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(ce){this._hideSingleSelectionIndicator=ce,this._syncParentProperties()}get placeholder(){return this._placeholder}set placeholder(ce){this._placeholder=ce,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(ce){this._required=ce,this.stateChanges.next()}get multiple(){return this._multiple}set multiple(ce){this._multiple=ce}get compareWith(){return this._compareWith}set compareWith(ce){this._compareWith=ce,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(ce){this._assignValue(ce)&&this._onChange(ce)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(ce){this._errorStateTracker.matcher=ce}get id(){return this._id}set id(ce){this._id=ce||this._uid,this.stateChanges.next()}get errorState(){return this._errorStateTracker.errorState}set errorState(ce){this._errorStateTracker.errorState=ce}constructor(ce,fe,ke,mt,_e,be,pe,Ze,_t,at,pt,Xt,ye,ue){this._viewportRuler=ce,this._changeDetectorRef=fe,this._elementRef=_e,this._dir=be,this._parentFormField=_t,this.ngControl=at,this._liveAnnouncer=ye,this._defaultOptions=ue,this._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"}],this._panelOpen=!1,this._compareWith=(Ie,He)=>Ie===He,this._uid="mat-select-"+r++,this._triggerAriaLabelledBy=null,this._destroy=new F.B,this.stateChanges=new F.B,this.disableAutomaticLabeling=!0,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+r++,this._panelDoneAnimatingStream=new F.B,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this._hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1,this._multiple=!1,this.disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto",this._initialized=new F.B,this.optionSelectionChanges=(0,R.v)(()=>{const Ie=this.options;return Ie?Ie.changes.pipe((0,W.Z)(Ie),(0,$.n)(()=>(0,z.h)(...Ie.map(He=>He.onSelectionChange)))):this._initialized.pipe((0,$.n)(()=>this.optionSelectionChanges))}),this.openedChange=new w.bkB,this._openedStream=this.openedChange.pipe((0,j.p)(Ie=>Ie),(0,Q.T)(()=>{})),this._closedStream=this.openedChange.pipe((0,j.p)(Ie=>!Ie),(0,Q.T)(()=>{})),this.selectionChange=new w.bkB,this.valueChange=new w.bkB,this._trackedModal=null,this._skipPredicate=Ie=>!this.panelOpen&&Ie.disabled,this.ngControl&&(this.ngControl.valueAccessor=this),null!=ue?.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=ue.typeaheadDebounceInterval),this._errorStateTracker=new S.X0(mt,at,Ze,pe,this.stateChanges),this._scrollStrategyFactory=Xt,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(pt)||0,this.id=this.id}ngOnInit(){this._selectionModel=new d.CB(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,J.F)(),(0,ee.Q)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen)),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(ce=>{ce.added.forEach(fe=>fe.select()),ce.removed.forEach(fe=>fe.deselect())}),this.options.changes.pipe((0,W.Z)(null),(0,ee.Q)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const ce=this._getTriggerAriaLabelledby(),fe=this.ngControl;if(ce!==this._triggerAriaLabelledBy){const ke=this._elementRef.nativeElement;this._triggerAriaLabelledBy=ce,ce?ke.setAttribute("aria-labelledby",ce):ke.removeAttribute("aria-labelledby")}fe&&(this._previousControl!==fe.control&&(void 0!==this._previousControl&&null!==fe.disabled&&fe.disabled!==this.disabled&&(this.disabled=fe.disabled),this._previousControl=fe.control),this.updateErrorState())}ngOnChanges(ce){(ce.disabled||ce.userAriaDescribedBy)&&this.stateChanges.next(),ce.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this.typeaheadDebounceInterval)}ngOnDestroy(){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._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._applyModalPanelOwnership(),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_applyModalPanelOwnership(){const ce=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!ce)return;const fe=`${this.id}-panel`;this._trackedModal&&(0,f.Ae)(this._trackedModal,"aria-owns",fe),(0,f.px)(ce,"aria-owns",fe),this._trackedModal=ce}_clearFromModal(){this._trackedModal&&((0,f.Ae)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched(),this.stateChanges.next())}writeValue(ce){this._assignValue(ce)}registerOnChange(ce){this._onChange=ce}registerOnTouched(ce){this._onTouched=ce}setDisabledState(ce){this.disabled=ce,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 ce=this._selectionModel.selected.map(fe=>fe.viewValue);return this._isRtl()&&ce.reverse(),ce.join(", ")}return this._selectionModel.selected[0].viewValue}updateErrorState(){this._errorStateTracker.updateErrorState()}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(ce){this.disabled||(this.panelOpen?this._handleOpenKeydown(ce):this._handleClosedKeydown(ce))}_handleClosedKeydown(ce){const fe=ce.keyCode,ke=fe===T.n6||fe===T.i7||fe===T.UQ||fe===T.LE,mt=fe===T.Fm||fe===T.t6,_e=this._keyManager;if(!_e.isTyping()&&mt&&!(0,T.rp)(ce)||(this.multiple||ce.altKey)&&ke)ce.preventDefault(),this.open();else if(!this.multiple){const be=this.selected;_e.onKeydown(ce);const pe=this.selected;pe&&be!==pe&&this._liveAnnouncer.announce(pe.viewValue,1e4)}}_handleOpenKeydown(ce){const fe=this._keyManager,ke=ce.keyCode,mt=ke===T.n6||ke===T.i7,_e=fe.isTyping();if(mt&&ce.altKey)ce.preventDefault(),this.close();else if(_e||ke!==T.Fm&&ke!==T.t6||!fe.activeItem||(0,T.rp)(ce))if(!_e&&this._multiple&&ke===T.A&&ce.ctrlKey){ce.preventDefault();const be=this.options.some(pe=>!pe.disabled&&!pe.selected);this.options.forEach(pe=>{pe.disabled||(be?pe.select():pe.deselect())})}else{const be=fe.activeItemIndex;fe.onKeydown(ce),this._multiple&&mt&&ce.shiftKey&&fe.activeItem&&fe.activeItemIndex!==be&&fe.activeItem._selectViaInteraction()}else ce.preventDefault(),fe.activeItem._selectViaInteraction()}_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())}_onAttached(){this._overlayDir.positionChange.pipe((0,ie.s)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_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(ce){if(this.options.forEach(fe=>fe.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&ce)Array.isArray(ce),ce.forEach(fe=>this._selectOptionByValue(fe)),this._sortValues();else{const fe=this._selectOptionByValue(ce);fe?this._keyManager.updateActiveItem(fe):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(ce){const fe=this.options.find(ke=>{if(this._selectionModel.isSelected(ke))return!1;try{return null!=ke.value&&this._compareWith(ke.value,ce)}catch{return!1}});return fe&&this._selectionModel.select(fe),fe}_assignValue(ce){return!!(ce!==this._value||this._multiple&&Array.isArray(ce))&&(this.options&&this._setSelectionByValue(ce),this._value=ce,!0)}_getOverlayWidth(ce){return"auto"===this.panelWidth?(ce instanceof e.$Q?ce.elementRef:ce||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const ce of this.options)ce._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new f.Au(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 ce=(0,z.h)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,ee.Q)(ce)).subscribe(fe=>{this._onSelect(fe.source,fe.isUserInput),fe.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,z.h)(...this.options.map(fe=>fe._stateChanges)).pipe((0,ee.Q)(ce)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(ce,fe){const ke=this._selectionModel.isSelected(ce);null!=ce.value||this._multiple?(ke!==ce.selected&&(ce.selected?this._selectionModel.select(ce):this._selectionModel.deselect(ce)),fe&&this._keyManager.setActiveItem(ce),this.multiple&&(this._sortValues(),fe&&this.focus())):(ce.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(ce.value)),ke!==this._selectionModel.isSelected(ce)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const ce=this.options.toArray();this._selectionModel.sort((fe,ke)=>this.sortComparator?this.sortComparator(fe,ke,ce):ce.indexOf(fe)-ce.indexOf(ke)),this.stateChanges.next()}}_propagateChanges(ce){let fe;fe=this.multiple?this.selected.map(ke=>ke.value):this.selected?this.selected.value:ce,this._value=fe,this.valueChange.emit(fe),this._onChange(fe),this.selectionChange.emit(this._getChangeEvent(fe)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let ce=-1;for(let fe=0;fe0}focus(ce){this._elementRef.nativeElement.focus(ce)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const ce=this._parentFormField?.getLabelId();return this.ariaLabelledby?(ce?ce+" ":"")+this.ariaLabelledby:ce}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const ce=this._parentFormField?.getLabelId();let fe=(ce?ce+" ":"")+this._valueId;return this.ariaLabelledby&&(fe+=" "+this.ariaLabelledby),fe}_panelDoneAnimating(ce){this.openedChange.emit(ce)}setDescribedByIds(ce){ce.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ce.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static#e=this.\u0275fac=function(fe){return new(fe||X)(w.rXU(x.Xj),w.rXU(w.gRc),w.rXU(w.SKi),w.rXU(S.es),w.rXU(w.aKT),w.rXU(I.dS,8),w.rXU(y.cV,8),w.rXU(y.j4,8),w.rXU(l.xb,8),w.rXU(y.vO,10),w.kS0("tabindex"),w.rXU(v),w.rXU(f.Ai),w.rXU(N,8))};static#t=this.\u0275cmp=w.VBU({type:X,selectors:[["mat-select"]],contentQueries:function(fe,ke,mt){if(1&fe&&(w.wni(mt,Ee,5),w.wni(mt,S.wT,5),w.wni(mt,S.QC,5)),2&fe){let _e;w.mGM(_e=w.lsd())&&(ke.customTrigger=_e.first),w.mGM(_e=w.lsd())&&(ke.options=_e),w.mGM(_e=w.lsd())&&(ke.optionGroups=_e)}},viewQuery:function(fe,ke){if(1&fe&&(w.GBs(ae,5),w.GBs(Me,5),w.GBs(e.WB,5)),2&fe){let mt;w.mGM(mt=w.lsd())&&(ke.trigger=mt.first),w.mGM(mt=w.lsd())&&(ke.panel=mt.first),w.mGM(mt=w.lsd())&&(ke._overlayDir=mt.first)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:19,hostBindings:function(fe,ke){1&fe&&w.bIt("keydown",function(_e){return ke._handleKeydown(_e)})("focus",function(){return ke._onFocus()})("blur",function(){return ke._onBlur()}),2&fe&&(w.BMQ("id",ke.id)("tabindex",ke.disabled?-1:ke.tabIndex)("aria-controls",ke.panelOpen?ke.id+"-panel":null)("aria-expanded",ke.panelOpen)("aria-label",ke.ariaLabel||null)("aria-required",ke.required.toString())("aria-disabled",ke.disabled.toString())("aria-invalid",ke.errorState)("aria-activedescendant",ke._getAriaActiveDescendant()),w.AVh("mat-mdc-select-disabled",ke.disabled)("mat-mdc-select-invalid",ke.errorState)("mat-mdc-select-required",ke.required)("mat-mdc-select-empty",ke.empty)("mat-mdc-select-multiple",ke.multiple))},inputs:{userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",disabled:[2,"disabled","disabled",w.L39],disableRipple:[2,"disableRipple","disableRipple",w.L39],tabIndex:[2,"tabIndex","tabIndex",ce=>null==ce?0:(0,w.Udg)(ce)],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",w.L39],placeholder:"placeholder",required:[2,"required","required",w.L39],multiple:[2,"multiple","multiple",w.L39],disableOptionCentering:[2,"disableOptionCentering","disableOptionCentering",w.L39],compareWith:"compareWith",value:"value",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:[2,"typeaheadDebounceInterval","typeaheadDebounceInterval",w.Udg],sortComparator:"sortComparator",id:"id",panelWidth:"panelWidth"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],standalone:!0,features:[w.Jv_([{provide:l.qT,useExisting:X},{provide:S.is,useExisting:X}]),w.GFd,w.OA$,w.aNF],ngContentSelectors:de,decls:11,vars:8,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,"backdropClick","attach","detach","cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"keydown","ngClass"]],template:function(fe,ke){if(1&fe){const mt=w.RV6();w.NAR(Te),w.j41(0,"div",2,0),w.bIt("click",function(){return w.eBV(mt),w.Njj(ke.open())}),w.j41(3,"div",3),w.DNE(4,D,2,1,"span",4)(5,m,3,1,"span",5),w.k0s(),w.j41(6,"div",6)(7,"div",7),w.qSk(),w.j41(8,"svg",8),w.nrm(9,"path",9),w.k0s()()()(),w.DNE(10,h,3,9,"ng-template",10),w.bIt("backdropClick",function(){return w.eBV(mt),w.Njj(ke.close())})("attach",function(){return w.eBV(mt),w.Njj(ke._onAttached())})("detach",function(){return w.eBV(mt),w.Njj(ke.close())})}if(2&fe){const mt=w.sdS(1);w.R7$(3),w.BMQ("id",ke._valueId),w.R7$(),w.vxM(ke.empty?4:5),w.R7$(6),w.Y8G("cdkConnectedOverlayPanelClass",ke._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",ke._scrollStrategy)("cdkConnectedOverlayOrigin",ke._preferredOverlayOrigin||mt)("cdkConnectedOverlayOpen",ke.panelOpen)("cdkConnectedOverlayPositions",ke._positions)("cdkConnectedOverlayWidth",ke._overlayWidth)}},dependencies:[e.$Q,e.WB,t.YU],styles:['.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);font-family:var(--mat-select-trigger-text-font);line-height:var(--mat-select-trigger-text-line-height);font-size:var(--mat-select-trigger-text-size);font-weight:var(--mat-select-trigger-text-weight);letter-spacing:var(--mat-select-trigger-text-tracking)}div.mat-mdc-select-panel{box-shadow:var(--mat-select-container-elevation-shadow)}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color)}.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)}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color)}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color)}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .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:static;background-color:var(--mat-select-panel-background-color)}.cdk-high-contrast-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}div.mat-mdc-select-panel .mat-mdc-option{--mdc-list-list-item-container-color: var(--mat-select-panel-background-color)}.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)}._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)}'],encapsulation:2,data:{animation:[C.transformPanel]},changeDetection:0})}return X})(),Ke=(()=>{class X{static#e=this.\u0275fac=function(fe){return new(fe||X)};static#t=this.\u0275dir=w.FsC({type:X,selectors:[["mat-select-trigger"]],standalone:!0,features:[w.Jv_([{provide:Ee,useExisting:X}])]})}return X})(),se=(()=>{class X{static#e=this.\u0275fac=function(fe){return new(fe||X)};static#t=this.\u0275mod=w.$C({type:X});static#i=this.\u0275inj=w.G2t({providers:[ne],imports:[t.MD,e.z_,S.Sy,S.yE,x.Gj,l.RG,S.Sy,S.yE]})}return X})()},882:(Qe,te,g)=>{"use strict";g.d(te,{El:()=>Ee,LG:()=>ze,US:()=>qe,vg:()=>Ke});var e=g(5542),t=g(4438),w=g(6600),S=g(8617),l=g(8203),x=g(4085),f=g(7336),I=g(6860),d=g(177),T=g(1413),y=g(3726),F=g(7786),R=g(5964),z=g(6354),W=g(3703),$=g(6977),j=g(3294),Q=g(6697),J=g(9172),ee=g(152),ie=g(9969);const ge=["*"],ae=["content"],Me=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],Te=["mat-drawer","mat-drawer-content","*"];function de(se,X){if(1&se){const me=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(me);const fe=t.XpG();return t.Njj(fe._onBackdropClicked())}),t.k0s()}if(2&se){const me=t.XpG();t.AVh("mat-drawer-shown",me._isShowingBackdrop())}}function D(se,X){1&se&&(t.j41(0,"mat-drawer-content"),t.SdG(1,2),t.k0s())}const n=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],c=["mat-sidenav","mat-sidenav-content","*"];function m(se,X){if(1&se){const me=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(me);const fe=t.XpG();return t.Njj(fe._onBackdropClicked())}),t.k0s()}if(2&se){const me=t.XpG();t.AVh("mat-drawer-shown",me._isShowingBackdrop())}}function h(se,X){1&se&&(t.j41(0,"mat-sidenav-content"),t.SdG(1,2),t.k0s())}const k={transformDrawer:(0,ie.hZ)("transform",[(0,ie.wk)("open, open-instant",(0,ie.iF)({transform:"none",visibility:"visible"})),(0,ie.wk)("void",(0,ie.iF)({"box-shadow":"none",visibility:"hidden"})),(0,ie.kY)("void => open-instant",(0,ie.i0)("0ms")),(0,ie.kY)("void <=> open, open-instant => void",(0,ie.i0)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},_=new t.nKC("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function v(){return!1}}),r=new t.nKC("MAT_DRAWER_CONTAINER");let V=(()=>{class se extends e.uv{constructor(me,ce,fe,ke,mt){super(fe,ke,mt),this._changeDetectorRef=me,this._container=ce}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>ne)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:4,hostBindings:function(ce,fe){2&ce&&t.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:ge,decls:1,vars:0,template:function(ce,fe){1&ce&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}return se})(),N=(()=>{class se{get position(){return this._position}set position(me){(me="end"===me?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(me),this._position=me,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(me){this._mode=me,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(me){this._disableClose=(0,x.he)(me)}get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(me){("true"===me||"false"===me||null==me)&&(me=(0,x.he)(me)),this._autoFocus=me}get opened(){return this._opened}set opened(me){this.toggle((0,x.he)(me))}constructor(me,ce,fe,ke,mt,_e,be,pe){this._elementRef=me,this._focusTrapFactory=ce,this._focusMonitor=fe,this._platform=ke,this._ngZone=mt,this._interactivityChecker=_e,this._doc=be,this._container=pe,this._focusTrap=null,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new T.B,this._animationEnd=new T.B,this._animationState="void",this.openedChange=new t.bkB(!0),this._openedStream=this.openedChange.pipe((0,R.p)(Ze=>Ze),(0,z.T)(()=>{})),this.openedStart=this._animationStarted.pipe((0,R.p)(Ze=>Ze.fromState!==Ze.toState&&0===Ze.toState.indexOf("open")),(0,W.u)(void 0)),this._closedStream=this.openedChange.pipe((0,R.p)(Ze=>!Ze),(0,z.T)(()=>{})),this.closedStart=this._animationStarted.pipe((0,R.p)(Ze=>Ze.fromState!==Ze.toState&&"void"===Ze.toState),(0,W.u)(void 0)),this._destroyed=new T.B,this.onPositionChanged=new t.bkB,this._modeChanged=new T.B,this.openedChange.subscribe(Ze=>{Ze?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,y.R)(this._elementRef.nativeElement,"keydown").pipe((0,R.p)(Ze=>Ze.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(Ze)),(0,$.Q)(this._destroyed)).subscribe(Ze=>this._ngZone.run(()=>{this.close(),Ze.stopPropagation(),Ze.preventDefault()}))}),this._animationEnd.pipe((0,j.F)((Ze,_t)=>Ze.fromState===_t.fromState&&Ze.toState===_t.toState)).subscribe(Ze=>{const{fromState:_t,toState:at}=Ze;(0===at.indexOf("open")&&"void"===_t||"void"===at&&0===_t.indexOf("open"))&&this.openedChange.emit(this._opened)})}_forceFocus(me,ce){this._interactivityChecker.isFocusable(me)||(me.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const fe=()=>{me.removeEventListener("blur",fe),me.removeEventListener("mousedown",fe),me.removeAttribute("tabindex")};me.addEventListener("blur",fe),me.addEventListener("mousedown",fe)})),me.focus(ce)}_focusByCssSelector(me,ce){let fe=this._elementRef.nativeElement.querySelector(me);fe&&this._forceFocus(fe,ce)}_takeFocus(){if(!this._focusTrap)return;const me=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(ce=>{!ce&&"function"==typeof this._elementRef.nativeElement.focus&&me.focus()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(me){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,me):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const me=this._doc.activeElement;return!!me&&this._elementRef.nativeElement.contains(me)}ngAfterViewInit(){this._isAttached=!0,"end"===this._position&&this._updatePositionInParent("end"),this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState())}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){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(me){return this.toggle(!0,me)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(me=!this.opened,ce){me&&ce&&(this._openedVia=ce);const fe=this._setOpen(me,!me&&this._isFocusWithinDrawer(),this._openedVia||"program");return me||(this._openedVia=null),fe}_setOpen(me,ce,fe){return this._opened=me,me?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",ce&&this._restoreFocus(fe)),this._updateFocusTrapState(),new Promise(ke=>{this.openedChange.pipe((0,Q.s)(1)).subscribe(mt=>ke(mt?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop)}_updatePositionInParent(me){if(!this._platform.isBrowser)return;const ce=this._elementRef.nativeElement,fe=ce.parentNode;"end"===me?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),fe.insertBefore(this._anchor,ce)),fe.appendChild(ce)):this._anchor&&this._anchor.parentNode.insertBefore(ce,this._anchor)}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.aKT),t.rXU(S.GX),t.rXU(S.FN),t.rXU(I.OD),t.rXU(t.SKi),t.rXU(S.Z7),t.rXU(d.qQ,8),t.rXU(r,8))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer"]],viewQuery:function(ce,fe){if(1&ce&&t.GBs(ae,5),2&ce){let ke;t.mGM(ke=t.lsd())&&(fe._content=ke.first)}},hostAttrs:["tabIndex","-1",1,"mat-drawer"],hostVars:12,hostBindings:function(ce,fe){1&ce&&t.Kam("@transform.start",function(mt){return fe._animationStarted.next(mt)})("@transform.done",function(mt){return fe._animationEnd.next(mt)}),2&ce&&(t.zvX("@transform",fe._animationState),t.BMQ("align",null),t.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-drawer-opened",fe.opened))},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"],standalone:!0,features:[t.aNF],ngContentSelectors:ge,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ce,fe){1&ce&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[k.transformDrawer]},changeDetection:0})}return se})(),ne=(()=>{class se{get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(me){this._autosize=(0,x.he)(me)}get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(me){this._backdropOverride=null==me?null:(0,x.he)(me)}get scrollable(){return this._userContent||this._content}constructor(me,ce,fe,ke,mt,_e=!1,be){this._dir=me,this._element=ce,this._ngZone=fe,this._changeDetectorRef=ke,this._animationMode=be,this._drawers=new t.rOR,this.backdropClick=new t.bkB,this._destroyed=new T.B,this._doCheckSubject=new T.B,this._contentMargins={left:null,right:null},this._contentMarginChanges=new T.B,me&&me.change.pipe((0,$.Q)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),mt.change().pipe((0,$.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=_e}ngAfterContentInit(){this._allDrawers.changes.pipe((0,J.Z)(this._allDrawers),(0,$.Q)(this._destroyed)).subscribe(me=>{this._drawers.reset(me.filter(ce=>!ce._container||ce._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,J.Z)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(me=>{this._watchDrawerToggle(me),this._watchDrawerPosition(me),this._watchDrawerMode(me)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,ee.B)(10),(0,$.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(me=>me.open())}close(){this._drawers.forEach(me=>me.close())}updateContentMargins(){let me=0,ce=0;if(this._left&&this._left.opened)if("side"==this._left.mode)me+=this._left._getWidth();else if("push"==this._left.mode){const fe=this._left._getWidth();me+=fe,ce-=fe}if(this._right&&this._right.opened)if("side"==this._right.mode)ce+=this._right._getWidth();else if("push"==this._right.mode){const fe=this._right._getWidth();ce+=fe,me-=fe}me=me||null,ce=ce||null,(me!==this._contentMargins.left||ce!==this._contentMargins.right)&&(this._contentMargins={left:me,right:ce},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(me){me._animationStarted.pipe((0,R.p)(ce=>ce.fromState!==ce.toState),(0,$.Q)(this._drawers.changes)).subscribe(ce=>{"open-instant"!==ce.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==me.mode&&me.openedChange.pipe((0,$.Q)(this._drawers.changes)).subscribe(()=>this._setContainerClass(me.opened))}_watchDrawerPosition(me){me&&me.onPositionChanged.pipe((0,$.Q)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,Q.s)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(me){me&&me._modeChanged.pipe((0,$.Q)((0,F.h)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(me){const ce=this._element.nativeElement.classList,fe="mat-drawer-container-has-open";me?ce.add(fe):ce.remove(fe)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(me=>{"end"==me.position?this._end=me:this._start=me}),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(me=>me&&!me.disableClose&&this._drawerHasBackdrop(me)).forEach(me=>me._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(me){return null!=me&&me.opened}_drawerHasBackdrop(me){return null==this._backdropOverride?!!me&&"side"!==me.mode:this._backdropOverride}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(l.dS,8),t.rXU(t.aKT),t.rXU(t.SKi),t.rXU(t.gRc),t.rXU(e.Xj),t.rXU(_),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer-container"]],contentQueries:function(ce,fe,ke){if(1&ce&&(t.wni(ke,V,5),t.wni(ke,N,5)),2&ce){let mt;t.mGM(mt=t.lsd())&&(fe._content=mt.first),t.mGM(mt=t.lsd())&&(fe._allDrawers=mt)}},viewQuery:function(ce,fe){if(1&ce&&t.GBs(V,5),2&ce){let ke;t.mGM(ke=t.lsd())&&(fe._userContent=ke.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(ce,fe){2&ce&&t.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],standalone:!0,features:[t.Jv_([{provide:r,useExisting:se}]),t.aNF],ngContentSelectors:Te,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ce,fe){1&ce&&(t.NAR(Me),t.DNE(0,de,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,D,2,0,"mat-drawer-content")),2&ce&&(t.vxM(fe.hasBackdrop?0:-1),t.R7$(3),t.vxM(fe._content?-1:3))},dependencies:[V],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);box-sizing:border-box;-webkit-overflow-scrolling:touch;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)}.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}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.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);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);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)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .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);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);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);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);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);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);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return se})(),Ee=(()=>{class se extends V{constructor(me,ce,fe,ke,mt){super(me,ce,fe,ke,mt)}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>qe)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(ce,fe){2&ce&&t.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:ge,decls:1,vars:0,template:function(ce,fe){1&ce&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}return se})(),ze=(()=>{class se extends N{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(me){this._fixedInViewport=(0,x.he)(me)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(me){this._fixedTopGap=(0,x.OE)(me)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(me){this._fixedBottomGap=(0,x.OE)(me)}static#e=this.\u0275fac=(()=>{let me;return function(fe){return(me||(me=t.xGo(se)))(fe||se)}})();static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(ce,fe){2&ce&&(t.BMQ("align",null),t.xc7("top",fe.fixedInViewport?fe.fixedTopGap:null,"px")("bottom",fe.fixedInViewport?fe.fixedBottomGap:null,"px"),t.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-drawer-opened",fe.opened)("mat-sidenav-fixed",fe.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],standalone:!0,features:[t.Vt3,t.aNF],ngContentSelectors:ge,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ce,fe){1&ce&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[k.transformDrawer]},changeDetection:0})}return se})(),qe=(()=>{class se extends ne{constructor(){super(...arguments),this._allDrawers=void 0,this._content=void 0}static#e=this.\u0275fac=(()=>{let me;return function(fe){return(me||(me=t.xGo(se)))(fe||se)}})();static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav-container"]],contentQueries:function(ce,fe,ke){if(1&ce&&(t.wni(ke,Ee,5),t.wni(ke,ze,5)),2&ce){let mt;t.mGM(mt=t.lsd())&&(fe._content=mt.first),t.mGM(mt=t.lsd())&&(fe._allDrawers=mt)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(ce,fe){2&ce&&t.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},exportAs:["matSidenavContainer"],standalone:!0,features:[t.Jv_([{provide:r,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:c,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ce,fe){1&ce&&(t.NAR(n),t.DNE(0,m,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,h,2,0,"mat-sidenav-content")),2&ce&&(t.vxM(fe.hasBackdrop?0:-1),t.R7$(3),t.vxM(fe._content?-1:3))},dependencies:[Ee],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);box-sizing:border-box;-webkit-overflow-scrolling:touch;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)}.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}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.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);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);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)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .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);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);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);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);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);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);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return se})(),Ke=(()=>{class se{static#e=this.\u0275fac=function(ce){return new(ce||se)};static#t=this.\u0275mod=t.$C({type:se});static#i=this.\u0275inj=t.G2t({imports:[w.yE,e.Gj,e.Gj,w.yE]})}return se})()},450:(Qe,te,g)=>{"use strict";g.d(te,{mV:()=>$,sG:()=>F});var e=g(4438),t=g(9417),w=g(8617),S=g(6600);const l=["switch"],x=["*"];function f(j,Q){1&j&&(e.j41(0,"div",10),e.qSk(),e.j41(1,"svg",12),e.nrm(2,"path",13),e.k0s(),e.j41(3,"svg",14),e.nrm(4,"path",15),e.k0s()())}const I=new e.nKC("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1})}),d={provide:t.kq,useExisting:(0,e.Rfq)(()=>F),multi:!0};class T{constructor(Q,J){this.source=Q,this.checked=J}}let y=0,F=(()=>{class j{_createChangeEvent(J){return new T(this,J)}get buttonId(){return`${this.id||this._uniqueId}-button`}focus(){this._switchElement.nativeElement.focus()}get checked(){return this._checked}set checked(J){this._checked=J,this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(J,ee,ie,ge,ae,Me){this._elementRef=J,this._focusMonitor=ee,this._changeDetectorRef=ie,this.defaults=ae,this._onChange=Te=>{},this._onTouched=()=>{},this._validatorOnChange=()=>{},this._checked=!1,this.name=null,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this.toggleChange=new e.bkB,this.tabIndex=parseInt(ge)||0,this.color=ae.color||"accent",this._noopAnimations="NoopAnimations"===Me,this.id=this._uniqueId="mat-mdc-slide-toggle-"+ ++y,this.hideIcon=ae.hideIcon??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(J=>{"keyboard"===J||"program"===J?(this._focused=!0,this._changeDetectorRef.markForCheck()):J||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnChanges(J){J.required&&this._validatorOnChange()}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(J){this.checked=!!J}registerOnChange(J){this._onChange=J}registerOnTouched(J){this._onTouched=J}validate(J){return this.required&&!0!==J.value?{required:!0}:null}registerOnValidatorChange(J){this._validatorOnChange=J}setDisabledState(J){this.disabled=J,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.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new T(this,this.checked)))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static#e=this.\u0275fac=function(ee){return new(ee||j)(e.rXU(e.aKT),e.rXU(w.FN),e.rXU(e.gRc),e.kS0("tabindex"),e.rXU(I),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:j,selectors:[["mat-slide-toggle"]],viewQuery:function(ee,ie){if(1&ee&&e.GBs(l,5),2&ee){let ge;e.mGM(ge=e.lsd())&&(ie._switchElement=ge.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(ee,ie){2&ee&&(e.Mr5("id",ie.id),e.BMQ("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),e.HbH(ie.color?"mat-"+ie.color:""),e.AVh("mat-mdc-slide-toggle-focused",ie._focused)("mat-mdc-slide-toggle-checked",ie.checked)("_mat-animation-noopable",ie._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",e.L39],color:"color",disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",J=>null==J?0:(0,e.Udg)(J)],checked:[2,"checked","checked",e.L39],hideIcon:[2,"hideIcon","hideIcon",e.L39]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],standalone:!0,features:[e.Jv_([d,{provide:t.cz,useExisting:j,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:x,decls:13,vars:24,consts:[["switch",""],["mat-internal-form-field","",3,"labelPosition"],["role","switch","type","button",1,"mdc-switch",3,"click","tabIndex","disabled"],[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-mdc-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,ie){if(1&ee){const ge=e.RV6();e.NAR(),e.j41(0,"div",1)(1,"button",2,0),e.bIt("click",function(){return e.eBV(ge),e.Njj(ie._handleClick())}),e.nrm(3,"div",3),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"div",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"div",9),e.k0s(),e.DNE(10,f,5,0,"div",10),e.k0s()()(),e.j41(11,"label",11),e.bIt("click",function(Me){return e.eBV(ge),e.Njj(Me.stopPropagation())}),e.SdG(12),e.k0s()()}if(2&ee){const ge=e.sdS(2);e.Y8G("labelPosition",ie.labelPosition),e.R7$(),e.AVh("mdc-switch--selected",ie.checked)("mdc-switch--unselected",!ie.checked)("mdc-switch--checked",ie.checked)("mdc-switch--disabled",ie.disabled),e.Y8G("tabIndex",ie.disabled?-1:ie.tabIndex)("disabled",ie.disabled),e.BMQ("id",ie.buttonId)("name",ie.name)("aria-label",ie.ariaLabel)("aria-labelledby",ie._getAriaLabelledBy())("aria-describedby",ie.ariaDescribedby)("aria-required",ie.required||null)("aria-checked",ie.checked),e.R7$(8),e.Y8G("matRippleTrigger",ge)("matRippleDisabled",ie.disableRipple||ie.disabled)("matRippleCentered",!0),e.R7$(),e.vxM(ie.hideIcon?-1:10),e.R7$(),e.Y8G("for",ie.buttonId),e.BMQ("id",ie._labelId)}},dependencies:[S.r6,S.tO],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mdc-elevation-overlay-color)}.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}.mdc-switch[hidden]{display:none}.mdc-switch:disabled{cursor:default;pointer-events:none}.mdc-switch__track{overflow:hidden;position:relative;width:100%}.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%}@media screen and (forced-colors: active){.mdc-switch__track::before,.mdc-switch__track::after{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(-100%)}[dir=rtl] .mdc-switch__track::after,.mdc-switch__track[dir=rtl]::after{transform:translateX(100%)}.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__track::before,.mdc-switch--selected .mdc-switch__track[dir=rtl]::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.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)}[dir=rtl] .mdc-switch__handle-track,.mdc-switch__handle-track[dir=rtl]{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track,.mdc-switch--selected .mdc-switch__handle-track[dir=rtl]{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto}[dir=rtl] .mdc-switch__handle,.mdc-switch__handle[dir=rtl]{left:auto;right:0}.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 screen and (forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-elevation-overlay{bottom:0;left:0;right:0;top:0}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1}.mdc-switch:disabled .mdc-switch__ripple{display:none}.mdc-switch__icons{height:100%;position:relative;width:100%;z-index:1}.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--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 .mdc-switch--disabled+label{color:var(--mdc-switch-disabled-label-text-color)}.mdc-switch{width:var(--mdc-switch-track-width)}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-selected-handle-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-hover-handle-color)}.mdc-switch.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-focus-handle-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-selected-pressed-handle-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-selected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-unselected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-hover-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-focus-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-unselected-pressed-handle-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-unselected-handle-color)}.mdc-switch .mdc-switch__handle::before{background:var(--mdc-switch-handle-surface-color)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation)}.mdc-switch .mdc-switch__focus-ring-wrapper,.mdc-switch .mdc-switch__handle{height:var(--mdc-switch-handle-height)}.mdc-switch .mdc-switch__handle{border-radius:var(--mdc-switch-handle-shape)}.mdc-switch .mdc-switch__handle{width:var(--mdc-switch-handle-width)}.mdc-switch .mdc-switch__handle-track{width:calc(100% - var(--mdc-switch-handle-width))}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__icon{fill:var(--mdc-switch-selected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-selected-icon-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__icon{fill:var(--mdc-switch-unselected-icon-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-unselected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-selected-icon-opacity)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-unselected-icon-opacity)}.mdc-switch.mdc-switch--selected .mdc-switch__icon{width:var(--mdc-switch-selected-icon-size);height:var(--mdc-switch-selected-icon-size)}.mdc-switch.mdc-switch--unselected .mdc-switch__icon{width:var(--mdc-switch-unselected-icon-size);height:var(--mdc-switch-unselected-icon-size)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-hover-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-focus-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-pressed-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-hover-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-focus-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-pressed-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-selected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-selected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-unselected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-unselected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch .mdc-switch__ripple{height:var(--mdc-switch-state-layer-size);width:var(--mdc-switch-state-layer-size)}.mdc-switch .mdc-switch__track{height:var(--mdc-switch-track-height)}.mdc-switch:disabled .mdc-switch__track{opacity:var(--mdc-switch-disabled-track-opacity)}.mdc-switch:enabled .mdc-switch__track::after{background:var(--mdc-switch-selected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mdc-switch-selected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::after{background:var(--mdc-switch-disabled-selected-track-color)}.mdc-switch:enabled .mdc-switch__track::before{background:var(--mdc-switch-unselected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mdc-switch-unselected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::before{background:var(--mdc-switch-disabled-unselected-track-color)}.mdc-switch .mdc-switch__track{border-radius:var(--mdc-switch-track-shape)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation-shadow)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation-shadow)}.mat-mdc-slide-toggle{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 .mdc-switch__ripple::after{content:"";opacity:0}.mat-mdc-slide-toggle .mdc-switch:hover .mdc-switch__ripple::after{opacity:.04;transition:opacity 75ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mdc-switch .mdc-switch__ripple::after{opacity:.12}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-mdc-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-elevation-overlay,.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}.mdc-switch__handle{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)}.mdc-switch--selected .mdc-switch__track::before{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mdc-switch--selected .mdc-switch__track::after{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::before{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::after{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{width:var(--mat-switch-unselected-handle-size);height:var(--mat-switch-unselected-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{width:var(--mat-switch-selected-handle-size);height:var(--mat-switch-selected-handle-size)}.mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons){width:var(--mat-switch-with-icon-handle-size);height:var(--mat-switch-with-icon-handle-size)}.mat-mdc-slide-toggle:active .mdc-switch:not(.mdc-switch--disabled) .mdc-switch__handle{width:var(--mat-switch-pressed-handle-size);height:var(--mat-switch-pressed-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{margin:var(--mat-switch-selected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-selected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{margin:var(--mat-switch-unselected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-unselected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--selected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-selected-pressed-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--unselected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-unselected-pressed-handle-horizontal-margin)}.mdc-switch__track::after,.mdc-switch__track::before{border-width:var(--mat-switch-track-outline-width);border-color:var(--mat-switch-track-outline-color)}.mdc-switch--selected .mdc-switch__track::after,.mdc-switch--selected .mdc-switch__track::before{border-width:var(--mat-switch-selected-track-outline-width)}.mdc-switch--disabled .mdc-switch__track::after,.mdc-switch--disabled .mdc-switch__track::before{border-width:var(--mat-switch-disabled-unselected-track-outline-width);border-color:var(--mat-switch-disabled-unselected-track-outline-color)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-selected-handle-opacity)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-unselected-handle-opacity)}'],encapsulation:2,changeDetection:0})}return j})(),$=(()=>{class j{static#e=this.\u0275fac=function(ee){return new(ee||j)};static#t=this.\u0275mod=e.$C({type:j});static#i=this.\u0275inj=e.G2t({imports:[F,S.yE,S.yE]})}return j})()},5416:(Qe,te,g)=>{"use strict";g.d(te,{UG:()=>c,_T:()=>h,x6:()=>n});var e=g(4438),t=g(8834),w=g(1413),S=g(177),l=g(9969),x=g(6939),f=g(6860),I=g(8617),d=g(9327),T=g(6969),y=g(6977),F=g(6600);function R(C,k){if(1&C){const L=e.RV6();e.j41(0,"div",1)(1,"button",2),e.bIt("click",function(){e.eBV(L);const r=e.XpG();return e.Njj(r.action())}),e.EFF(2),e.k0s()()}if(2&C){const L=e.XpG();e.R7$(2),e.SpI(" ",L.data.action," ")}}const z=["label"];function W(C,k){}const $=Math.pow(2,31)-1;class j{constructor(k,L){this._overlayRef=L,this._afterDismissed=new w.B,this._afterOpened=new w.B,this._onAction=new w.B,this._dismissedByAction=!1,this.containerInstance=k,k._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(k){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(k,$))}_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 Q=new e.nKC("MatSnackBarData");class J{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}let ee=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"],standalone:!0})}return C})(),ie=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"],standalone:!0})}return C})(),ge=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"],standalone:!0})}return C})(),ae=(()=>{class C{constructor(L,_){this.snackBarRef=L,this.data=_}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static#e=this.\u0275fac=function(_){return new(_||C)(e.rXU(j),e.rXU(Q))};static#t=this.\u0275cmp=e.VBU({type:C,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],standalone:!0,features:[e.aNF],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["mat-button","","matSnackBarAction","",3,"click"]],template:function(_,r){1&_&&(e.j41(0,"div",0),e.EFF(1),e.k0s(),e.DNE(2,R,3,1,"div",1)),2&_&&(e.R7$(),e.SpI(" ",r.data.message,"\n"),e.R7$(),e.vxM(r.hasAction?2:-1))},dependencies:[t.$z,ee,ie,ge],styles:[".mat-mdc-simple-snack-bar{display:flex}"],encapsulation:2,changeDetection:0})}return C})();const Me={snackBarState:(0,l.hZ)("state",[(0,l.wk)("void, hidden",(0,l.iF)({transform:"scale(0.8)",opacity:0})),(0,l.wk)("visible",(0,l.iF)({transform:"scale(1)",opacity:1})),(0,l.kY)("* => visible",(0,l.i0)("150ms cubic-bezier(0, 0, 0.2, 1)")),(0,l.kY)("* => void, * => hidden",(0,l.i0)("75ms cubic-bezier(0.4, 0.0, 1, 1)",(0,l.iF)({opacity:0})))])};let Te=0,de=(()=>{class C extends x.lb{constructor(L,_,r,v,V){super(),this._ngZone=L,this._elementRef=_,this._changeDetectorRef=r,this._platform=v,this.snackBarConfig=V,this._document=(0,e.WQX)(S.qQ),this._trackedModals=new Set,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new w.B,this._onExit=new w.B,this._onEnter=new w.B,this._animationState="void",this._liveElementId="mat-snack-bar-container-live-"+Te++,this.attachDomPortal=N=>{this._assertNotAttached();const ne=this._portalOutlet.attachDomPortal(N);return this._afterPortalAttached(),ne},this._live="assertive"!==V.politeness||V.announcementMessage?"off"===V.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(L){this._assertNotAttached();const _=this._portalOutlet.attachComponentPortal(L);return this._afterPortalAttached(),_}attachTemplatePortal(L){this._assertNotAttached();const _=this._portalOutlet.attachTemplatePortal(L);return this._afterPortalAttached(),_}onAnimationEnd(L){const{fromState:_,toState:r}=L;if(("void"===r&&"void"!==_||"hidden"===r)&&this._completeExit(),"visible"===r){const v=this._onEnter;this._ngZone.run(()=>{v.next(),v.complete()})}}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.markForCheck(),this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce())}exit(){return this._ngZone.run(()=>{this._animationState="hidden",this._changeDetectorRef.markForCheck(),this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId)}),this._onExit}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){queueMicrotask(()=>{this._onExit.next(),this._onExit.complete()})}_afterPortalAttached(){const L=this._elementRef.nativeElement,_=this.snackBarConfig.panelClass;_&&(Array.isArray(_)?_.forEach(V=>L.classList.add(V)):L.classList.add(_)),this._exposeToModals();const r=this._label.nativeElement,v="mdc-snackbar__label";r.classList.toggle(v,!r.querySelector(`.${v}`))}_exposeToModals(){const L=this._liveElementId,_=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let r=0;r<_.length;r++){const v=_[r],V=v.getAttribute("aria-owns");this._trackedModals.add(v),V?-1===V.indexOf(L)&&v.setAttribute("aria-owns",V+" "+L):v.setAttribute("aria-owns",L)}}_clearFromModals(){this._trackedModals.forEach(L=>{const _=L.getAttribute("aria-owns");if(_){const r=_.replace(this._liveElementId,"").trim();r.length>0?L.setAttribute("aria-owns",r):L.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const L=this._elementRef.nativeElement.querySelector("[aria-hidden]"),_=this._elementRef.nativeElement.querySelector("[aria-live]");if(L&&_){let r=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&L.contains(document.activeElement)&&(r=document.activeElement),L.removeAttribute("aria-hidden"),_.appendChild(L),r?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static#e=this.\u0275fac=function(_){return new(_||C)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(f.OD),e.rXU(J))};static#t=this.\u0275cmp=e.VBU({type:C,selectors:[["mat-snack-bar-container"]],viewQuery:function(_,r){if(1&_&&(e.GBs(x.I3,7),e.GBs(z,7)),2&_){let v;e.mGM(v=e.lsd())&&(r._portalOutlet=v.first),e.mGM(v=e.lsd())&&(r._label=v.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container","mdc-snackbar--open"],hostVars:1,hostBindings:function(_,r){1&_&&e.Kam("@state.done",function(V){return r.onAnimationEnd(V)}),2&_&&e.zvX("@state",r._animationState)},standalone:!0,features:[e.Vt3,e.aNF],decls:6,vars:3,consts:[["label",""],[1,"mdc-snackbar__surface"],[1,"mat-mdc-snack-bar-label"],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(_,r){1&_&&(e.j41(0,"div",1)(1,"div",2,0)(3,"div",3),e.DNE(4,W,0,0,"ng-template",4),e.k0s(),e.nrm(5,"div"),e.k0s()()),2&_&&(e.R7$(5),e.BMQ("aria-live",r._live)("role",r._role)("id",r._liveElementId))},dependencies:[x.I3],styles:['.mdc-snackbar{display:none;position:fixed;right:0;bottom:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mdc-snackbar--opening,.mdc-snackbar--open,.mdc-snackbar--closing{display:flex}.mdc-snackbar--open .mdc-snackbar__label,.mdc-snackbar--open .mdc-snackbar__actions{visibility:visible}.mdc-snackbar__surface{padding-left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;transform:scale(0.8);opacity:0}.mdc-snackbar__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}@media screen and (forced-colors: active){.mdc-snackbar__surface::before{border-color:CanvasText}}[dir=rtl] .mdc-snackbar__surface,.mdc-snackbar__surface[dir=rtl]{padding-left:8px;padding-right:0}.mdc-snackbar--open .mdc-snackbar__surface{transform:scale(1);opacity:1;pointer-events:auto}.mdc-snackbar--closing .mdc-snackbar__surface{transform:scale(1)}.mdc-snackbar__label{padding-left:16px;padding-right:8px;width:100%;flex-grow:1;box-sizing:border-box;margin:0;visibility:hidden;padding-top:14px;padding-bottom:14px}[dir=rtl] .mdc-snackbar__label,.mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar__label::before{display:inline;content:attr(data-mdc-snackbar-label-text)}.mdc-snackbar__actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box;visibility:hidden}.mdc-snackbar__action+.mdc-snackbar__dismiss{margin-left:8px;margin-right:0}[dir=rtl] .mdc-snackbar__action+.mdc-snackbar__dismiss,.mdc-snackbar__action+.mdc-snackbar__dismiss[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-snack-bar-container{margin:8px;position:static}.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:344px}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:100%}}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container{width:100vw}}.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:672px}.mat-mdc-snack-bar-container .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)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{background-color:var(--mdc-snackbar-container-color)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{border-radius:var(--mdc-snackbar-container-shape)}.mat-mdc-snack-bar-container .mdc-snackbar__label{color:var(--mdc-snackbar-supporting-text-color)}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-size:var(--mdc-snackbar-supporting-text-size);font-family:var(--mdc-snackbar-supporting-text-font);font-weight:var(--mdc-snackbar-supporting-text-weight);line-height:var(--mdc-snackbar-supporting-text-line-height)}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){color:var(--mat-snack-bar-button-color);--mat-text-button-state-layer-color:currentColor;--mat-text-button-ripple-color:currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}.mat-mdc-snack-bar-container .mdc-snackbar__label::before{display:none}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-handset .mdc-snackbar__surface{width:100%}'],encapsulation:2,data:{animation:[Me.snackBarState]}})}return C})();const n=new e.nKC("mat-snack-bar-default-options",{providedIn:"root",factory:function D(){return new J}});let c=(()=>{class C{get _openedSnackBarRef(){const L=this._parentSnackBar;return L?L._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(L){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=L:this._snackBarRefAtThisLevel=L}constructor(L,_,r,v,V,N){this._overlay=L,this._live=_,this._injector=r,this._breakpointObserver=v,this._parentSnackBar=V,this._defaultConfig=N,this._snackBarRefAtThisLevel=null,this.simpleSnackBarComponent=ae,this.snackBarContainerComponent=de,this.handsetCssClass="mat-mdc-snack-bar-handset"}openFromComponent(L,_){return this._attach(L,_)}openFromTemplate(L,_){return this._attach(L,_)}open(L,_="",r){const v={...this._defaultConfig,...r};return v.data={message:L,action:_},v.announcementMessage===L&&(v.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,v)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(L,_){const v=e.zZn.create({parent:_&&_.viewContainerRef&&_.viewContainerRef.injector||this._injector,providers:[{provide:J,useValue:_}]}),V=new x.A8(this.snackBarContainerComponent,_.viewContainerRef,v),N=L.attach(V);return N.instance.snackBarConfig=_,N.instance}_attach(L,_){const r={...new J,...this._defaultConfig,..._},v=this._createOverlay(r),V=this._attachSnackBarContainer(v,r),N=new j(V,v);if(L instanceof e.C4Q){const ne=new x.VA(L,null,{$implicit:r.data,snackBarRef:N});N.instance=V.attachTemplatePortal(ne)}else{const ne=this._createInjector(r,N),Ee=new x.A8(L,void 0,ne),ze=V.attachComponentPortal(Ee);N.instance=ze.instance}return this._breakpointObserver.observe(d.Rp.HandsetPortrait).pipe((0,y.Q)(v.detachments())).subscribe(ne=>{v.overlayElement.classList.toggle(this.handsetCssClass,ne.matches)}),r.announcementMessage&&V._onAnnounce.subscribe(()=>{this._live.announce(r.announcementMessage,r.politeness)}),this._animateSnackBar(N,r),this._openedSnackBarRef=N,this._openedSnackBarRef}_animateSnackBar(L,_){L.afterDismissed().subscribe(()=>{this._openedSnackBarRef==L&&(this._openedSnackBarRef=null),_.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{L.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):L.containerInstance.enter(),_.duration&&_.duration>0&&L.afterOpened().subscribe(()=>L._dismissAfter(_.duration))}_createOverlay(L){const _=new T.rR;_.direction=L.direction;let r=this._overlay.position().global();const v="rtl"===L.direction,V="left"===L.horizontalPosition||"start"===L.horizontalPosition&&!v||"end"===L.horizontalPosition&&v,N=!V&&"center"!==L.horizontalPosition;return V?r.left("0"):N?r.right("0"):r.centerHorizontally(),"top"===L.verticalPosition?r.top("0"):r.bottom("0"),_.positionStrategy=r,this._overlay.create(_)}_createInjector(L,_){return e.zZn.create({parent:L&&L.viewContainerRef&&L.viewContainerRef.injector||this._injector,providers:[{provide:j,useValue:_},{provide:Q,useValue:L.data}]})}static#e=this.\u0275fac=function(_){return new(_||C)(e.KVO(T.hJ),e.KVO(I.Ai),e.KVO(e.zZn),e.KVO(d.QP),e.KVO(C,12),e.KVO(n))};static#t=this.\u0275prov=e.jDH({token:C,factory:C.\u0275fac,providedIn:"root"})}return C})(),h=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275mod=e.$C({type:C});static#i=this.\u0275inj=e.G2t({providers:[c],imports:[T.z_,x.jc,t.Hl,F.yE,ae,F.yE]})}return C})()},2042:(Qe,te,g)=>{"use strict";g.d(te,{B4:()=>j,NQ:()=>Te,aE:()=>Me});var e=g(4438),t=g(8617),w=g(7336),S=g(2771),l=g(1413),x=g(7786),f=g(9969),I=g(6600);const d=["mat-sort-header",""],T=["*"];function y(de,D){if(1&de){const n=e.RV6();e.j41(0,"div",2),e.bIt("@arrowPosition.start",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!0)})("@arrowPosition.done",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!1)}),e.nrm(1,"div",3),e.j41(2,"div",4),e.nrm(3,"div",5)(4,"div",6)(5,"div",7),e.k0s()()}if(2&de){const n=e.XpG();e.Y8G("@arrowOpacity",n._getArrowViewState())("@arrowPosition",n._getArrowViewState())("@allowChildren",n._getArrowDirectionState()),e.R7$(2),e.Y8G("@indicator",n._getArrowDirectionState()),e.R7$(),e.Y8G("@leftPointer",n._getArrowDirectionState()),e.R7$(),e.Y8G("@rightPointer",n._getArrowDirectionState())}}const $=new e.nKC("MAT_SORT_DEFAULT_OPTIONS");let j=(()=>{class de{get direction(){return this._direction}set direction(n){this._direction=n}constructor(n){this._defaultOptions=n,this._initializedStream=new S.m(1),this.sortables=new Map,this._stateChanges=new l.B,this.start="asc",this._direction="",this.disabled=!1,this.sortChange=new e.bkB,this.initialized=this._initializedStream}register(n){this.sortables.set(n.id,n)}deregister(n){this.sortables.delete(n.id)}sort(n){this.active!=n.id?(this.active=n.id,this.direction=n.start?n.start:this.start):this.direction=this.getNextSortDirection(n),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(n){if(!n)return"";let m=function Q(de,D){let n=["asc","desc"];return"desc"==de&&n.reverse(),D||n.push(""),n}(n.start||this.start,n?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),h=m.indexOf(this.direction)+1;return h>=m.length&&(h=0),m[h]}ngOnInit(){this._initializedStream.next()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete(),this._initializedStream.complete()}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU($,8))};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{active:[0,"matSortActive","active"],start:[0,"matSortStart","start"],direction:[0,"matSortDirection","direction"],disableClear:[2,"matSortDisableClear","disableClear",e.L39],disabled:[2,"matSortDisabled","disabled",e.L39]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],standalone:!0,features:[e.GFd,e.OA$]})}return de})();const J=I.ed.ENTERING+" "+I.r5.STANDARD_CURVE,ee={indicator:(0,f.hZ)("indicator",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"translateY(0px)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"translateY(10px)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),leftPointer:(0,f.hZ)("leftPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),rightPointer:(0,f.hZ)("rightPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),arrowOpacity:(0,f.hZ)("arrowOpacity",[(0,f.wk)("desc-to-active, asc-to-active, active",(0,f.iF)({opacity:1})),(0,f.wk)("desc-to-hint, asc-to-hint, hint",(0,f.iF)({opacity:.54})),(0,f.wk)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,f.iF)({opacity:0})),(0,f.kY)("* => asc, * => desc, * => active, * => hint, * => void",(0,f.i0)("0ms")),(0,f.kY)("* <=> *",(0,f.i0)(J))]),arrowPosition:(0,f.hZ)("arrowPosition",[(0,f.kY)("* => desc-to-hint, * => desc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(-25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-desc, * => active-to-desc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(25%)"})]))),(0,f.kY)("* => asc-to-hint, * => asc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-asc, * => active-to-asc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(-25%)"})]))),(0,f.wk)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,f.iF)({transform:"translateY(0)"})),(0,f.wk)("hint-to-desc, active-to-desc, desc",(0,f.iF)({transform:"translateY(-25%)"})),(0,f.wk)("hint-to-asc, active-to-asc, asc",(0,f.iF)({transform:"translateY(25%)"}))]),allowChildren:(0,f.hZ)("allowChildren",[(0,f.kY)("* <=> *",[(0,f.P)("@*",(0,f.MA)(),{optional:!0})])])};let ie=(()=>{class de{constructor(){this.changes=new l.B}static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275prov=e.jDH({token:de,factory:de.\u0275fac,providedIn:"root"})}return de})();const ae={provide:ie,deps:[[new e.Xx1,new e.kdw,ie]],useFactory:function ge(de){return de||new ie}};let Me=(()=>{class de{get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(n){this._updateSortActionDescription(n)}constructor(n,c,m,h,C,k,L,_){this._intl=n,this._changeDetectorRef=c,this._sort=m,this._columnDef=h,this._focusMonitor=C,this._elementRef=k,this._ariaDescriber=L,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this.disabled=!1,this._sortActionDescription="Sort",_?.arrowPosition&&(this.arrowPosition=_?.arrowPosition),this._handleStateChanges()}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(n=>{const c=!!n;c!==this._showIndicatorHint&&(this._setIndicatorHintVisible(c),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe(),this._sortButton&&this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription)}_setIndicatorHintVisible(n){this._isDisabled()&&n||(this._showIndicatorHint=n,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(n){this._viewState=n||{},this._disableViewStateAnimation&&(this._viewState={toState:n.toState})}_toggleOnInteraction(){this._sort.sort(this),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0)}_handleClick(){this._isDisabled()||this._sort.sort(this)}_handleKeydown(n){!this._isDisabled()&&(n.keyCode===w.t6||n.keyCode===w.Fm)&&(n.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_getArrowDirectionState(){return`${this._isSorted()?"active-":""}${this._arrowDirection}`}_getArrowViewState(){const n=this._viewState.fromState;return(n?`${n}-to-`:"")+this._viewState.toState}_updateArrowDirection(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start}_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(n){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,n)),this._sortActionDescription=n}_handleStateChanges(){this._rerenderSubscription=(0,x.h)(this._sort.sortChange,this._sort._stateChanges,this._intl.changes).subscribe(()=>{this._isSorted()&&(this._updateArrowDirection(),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0),this._setAnimationTransitionState({fromState:this._arrowDirection,toState:"active"}),this._showIndicatorHint=!1),!this._isSorted()&&this._viewState&&"active"===this._viewState.toState&&(this._disableViewStateAnimation=!1,this._setAnimationTransitionState({fromState:"active",toState:this._arrowDirection})),this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU(ie),e.rXU(e.gRc),e.rXU(j,8),e.rXU("MAT_SORT_HEADER_COLUMN_DEF",8),e.rXU(t.FN),e.rXU(e.aKT),e.rXU(t.vr,8),e.rXU($,8))};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(c,m){1&c&&e.bIt("click",function(){return m._handleClick()})("keydown",function(C){return m._handleKeydown(C)})("mouseenter",function(){return m._setIndicatorHintVisible(!0)})("mouseleave",function(){return m._setIndicatorHintVisible(!1)}),2&c&&(e.BMQ("aria-sort",m._getAriaSortAttribute()),e.AVh("mat-sort-header-disabled",m._isDisabled()))},inputs:{id:[0,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",disabled:[2,"disabled","disabled",e.L39],sortActionDescription:"sortActionDescription",disableClear:[2,"disableClear","disableClear",e.L39]},exportAs:["matSortHeader"],standalone:!0,features:[e.GFd,e.aNF],attrs:d,ngContentSelectors:T,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],[1,"mat-sort-header-arrow"],[1,"mat-sort-header-stem"],[1,"mat-sort-header-indicator"],[1,"mat-sort-header-pointer-left"],[1,"mat-sort-header-pointer-right"],[1,"mat-sort-header-pointer-middle"]],template:function(c,m){1&c&&(e.NAR(),e.j41(0,"div",0)(1,"div",1),e.SdG(2),e.k0s(),e.DNE(3,y,6,6,"div",2),e.k0s()),2&c&&(e.AVh("mat-sort-header-sorted",m._isSorted())("mat-sort-header-position-before","before"===m.arrowPosition),e.BMQ("tabindex",m._isDisabled()?null:0)("role",m._isDisabled()?null:"button"),e.R7$(3),e.vxM(m._renderArrow()?3:-1))},styles:[".mat-sort-header-container{display:flex;cursor:pointer;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-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-sort-header-content{text-align:center;display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;color:var(--mat-sort-arrow-color);opacity: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}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}.cdk-high-contrast-active .mat-sort-header-stem{width:0;border-left:solid 2px}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}.cdk-high-contrast-active .mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}.cdk-high-contrast-active .mat-sort-header-pointer-left,.cdk-high-contrast-active .mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}"],encapsulation:2,data:{animation:[ee.indicator,ee.leftPointer,ee.rightPointer,ee.arrowOpacity,ee.arrowPosition,ee.allowChildren]},changeDetection:0})}return de})(),Te=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275mod=e.$C({type:de});static#i=this.\u0275inj=e.G2t({providers:[ae],imports:[I.yE]})}return de})()},6013:(Qe,te,g)=>{"use strict";g.d(te,{F7:()=>pe,FR:()=>Ze,M6:()=>be,Ti:()=>ze,V5:()=>_e,aP:()=>_t,xJ:()=>ke});var e=g(6939),t=g(7768),w=g(177),S=g(4438),l=g(6600),x=g(9213),f=g(8617),I=g(1413),d=g(8359),T=g(8203),y=g(5558),F=g(6354),R=g(9172),z=g(6977),W=g(3294),$=g(9969),j=g(6860);function Q(at,pt){if(1&at&&S.eu8(0,2),2&at){const Xt=S.XpG();S.Y8G("ngTemplateOutlet",Xt.iconOverrides[Xt.state])("ngTemplateOutletContext",Xt._getIconContext())}}function J(at,pt){if(1&at&&(S.j41(0,"span",7),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(2);S.R7$(),S.JRh(Xt._getDefaultTextForState(Xt.state))}}function ee(at,pt){if(1&at&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(3);S.R7$(),S.JRh(Xt._intl.completedLabel)}}function ie(at,pt){if(1&at&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(3);S.R7$(),S.JRh(Xt._intl.editableLabel)}}function ge(at,pt){if(1&at&&(S.DNE(0,ee,2,1,"span",8)(1,ie,2,1,"span",8),S.j41(2,"mat-icon",7),S.EFF(3),S.k0s()),2&at){const Xt=S.XpG(2);S.vxM("done"===Xt.state?0:"edit"===Xt.state?1:-1),S.R7$(3),S.JRh(Xt._getDefaultTextForState(Xt.state))}}function ae(at,pt){if(1&at&&S.DNE(0,J,2,1,"span",7)(1,ge,4,2,"mat-icon",7),2&at){let Xt;const ye=S.XpG();S.vxM("number"===(Xt=ye.state)?0:1)}}function Me(at,pt){1&at&&(S.j41(0,"div",4),S.eu8(1,9),S.k0s()),2&at&&(S.R7$(),S.Y8G("ngTemplateOutlet",pt.template))}function Te(at,pt){if(1&at&&(S.j41(0,"div",4),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt.label)}}function de(at,pt){if(1&at&&(S.j41(0,"div",5),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt._intl.optionalLabel)}}function D(at,pt){if(1&at&&(S.j41(0,"div",6),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt.errorMessage)}}const n=["*"];function c(at,pt){}function m(at,pt){if(1&at&&(S.SdG(0),S.DNE(1,c,0,0,"ng-template",0)),2&at){const Xt=S.XpG();S.R7$(),S.Y8G("cdkPortalOutlet",Xt._portal)}}const h=(at,pt)=>({step:at,i:pt}),C=at=>({animationDuration:at}),k=(at,pt)=>({value:at,params:pt});function L(at,pt){1&at&&S.SdG(0)}function _(at,pt){1&at&&S.nrm(0,"div",6)}function r(at,pt){if(1&at&&(S.eu8(0,5),S.DNE(1,_,1,0,"div",6)),2&at){const Xt=pt.$implicit,ye=pt.$index,ue=pt.$count;S.XpG(2);const Ie=S.sdS(4);S.Y8G("ngTemplateOutlet",Ie)("ngTemplateOutletContext",S.l_i(3,h,Xt,ye)),S.R7$(),S.vxM(ye!==ue-1?1:-1)}}function v(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"div",7),S.bIt("@horizontalStepTransition.done",function(ue){S.eBV(Xt);const Ie=S.XpG(2);return S.Njj(Ie._animationDone.next(ue))}),S.eu8(1,8),S.k0s()}if(2&at){const Xt=pt.$implicit,ye=pt.$index,ue=S.XpG(2);S.AVh("mat-horizontal-stepper-content-inactive",ue.selectedIndex!==ye),S.Y8G("@horizontalStepTransition",S.l_i(8,k,ue._getAnimationDirection(ye),S.eq3(6,C,ue._getAnimationDuration())))("id",ue._getStepContentId(ye)),S.BMQ("aria-labelledby",ue._getStepLabelId(ye)),S.R7$(),S.Y8G("ngTemplateOutlet",Xt.content)}}function V(at,pt){if(1&at&&(S.j41(0,"div",1)(1,"div",2),S.Z7z(2,r,2,6,null,null,S.fX1),S.k0s(),S.j41(4,"div",3),S.Z7z(5,v,2,11,"div",4,S.fX1),S.k0s()()),2&at){const Xt=S.XpG();S.R7$(2),S.Dyx(Xt.steps),S.R7$(3),S.Dyx(Xt.steps)}}function N(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"div",9),S.eu8(1,5),S.j41(2,"div",10)(3,"div",11),S.bIt("@verticalStepTransition.done",function(ue){S.eBV(Xt);const Ie=S.XpG(2);return S.Njj(Ie._animationDone.next(ue))}),S.j41(4,"div",12),S.eu8(5,8),S.k0s()()()()}if(2&at){const Xt=pt.$implicit,ye=pt.$index,ue=pt.$count,Ie=S.XpG(2),He=S.sdS(4);S.R7$(),S.Y8G("ngTemplateOutlet",He)("ngTemplateOutletContext",S.l_i(10,h,Xt,ye)),S.R7$(),S.AVh("mat-stepper-vertical-line",ye!==ue-1),S.R7$(),S.AVh("mat-vertical-stepper-content-inactive",Ie.selectedIndex!==ye),S.Y8G("@verticalStepTransition",S.l_i(15,k,Ie._getAnimationDirection(ye),S.eq3(13,C,Ie._getAnimationDuration())))("id",Ie._getStepContentId(ye)),S.BMQ("aria-labelledby",Ie._getStepLabelId(ye)),S.R7$(2),S.Y8G("ngTemplateOutlet",Xt.content)}}function ne(at,pt){if(1&at&&S.Z7z(0,N,6,18,"div",9,S.fX1),2&at){const Xt=S.XpG();S.Dyx(Xt.steps)}}function Ee(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"mat-step-header",13),S.bIt("click",function(){const ue=S.eBV(Xt).step;return S.Njj(ue.select())})("keydown",function(ue){S.eBV(Xt);const Ie=S.XpG();return S.Njj(Ie._onKeydown(ue))}),S.k0s()}if(2&at){const Xt=pt.step,ye=pt.i,ue=S.XpG();S.AVh("mat-horizontal-stepper-header","horizontal"===ue.orientation)("mat-vertical-stepper-header","vertical"===ue.orientation),S.Y8G("tabIndex",ue._getFocusIndex()===ye?0:-1)("id",ue._getStepLabelId(ye))("index",ye)("state",ue._getIndicatorType(ye,Xt.state))("label",Xt.stepLabel||Xt.label)("selected",ue.selectedIndex===ye)("active",ue._stepIsNavigable(ye,Xt))("optional",Xt.optional)("errorMessage",Xt.errorMessage)("iconOverrides",ue._iconOverrides)("disableRipple",ue.disableRipple||!ue._stepIsNavigable(ye,Xt))("color",Xt.color||ue.color),S.BMQ("aria-posinset",ye+1)("aria-setsize",ue.steps.length)("aria-controls",ue._getStepContentId(ye))("aria-selected",ue.selectedIndex==ye)("aria-label",Xt.ariaLabel||null)("aria-labelledby",!Xt.ariaLabel&&Xt.ariaLabelledby?Xt.ariaLabelledby:null)("aria-disabled",!ue._stepIsNavigable(ye,Xt)||null)}}let ze=(()=>{class at extends t.nb{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["","matStepLabel",""]],standalone:!0,features:[S.Vt3]})}return at})(),qe=(()=>{class at{constructor(){this.changes=new I.B,this.optionalLabel="Optional",this.completedLabel="Completed",this.editableLabel="Editable"}static#e=this.\u0275fac=function(ye){return new(ye||at)};static#t=this.\u0275prov=S.jDH({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})();const se={provide:qe,deps:[[new S.Xx1,new S.kdw,qe]],useFactory:function Ke(at){return at||new qe}};let X=(()=>{class at extends t.oX{constructor(Xt,ye,ue,Ie){super(ue),this._intl=Xt,this._focusMonitor=ye,this._intlSubscription=Xt.changes.subscribe(()=>Ie.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(Xt,ye){Xt?this._focusMonitor.focusVia(this._elementRef,Xt,ye):this._elementRef.nativeElement.focus(ye)}_stringLabel(){return this.label instanceof ze?null:this.label}_templateLabel(){return this.label instanceof ze?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getIconContext(){return{index:this.index,active:this.active,optional:this.optional}}_getDefaultTextForState(Xt){return"number"==Xt?`${this.index+1}`:"edit"==Xt?"create":"error"==Xt?"warning":Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(qe),S.rXU(f.FN),S.rXU(S.aKT),S.rXU(S.gRc))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],hostVars:2,hostBindings:function(ye,ue){2&ye&&S.HbH("mat-"+(ue.color||"primary"))},inputs:{state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple",color:"color"},standalone:!0,features:[S.Vt3,S.aNF],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(ye,ue){if(1&ye&&(S.nrm(0,"div",0),S.j41(1,"div")(2,"div",1),S.DNE(3,Q,1,2,"ng-container",2)(4,ae,2,1),S.k0s()(),S.j41(5,"div",3),S.DNE(6,Me,2,1,"div",4)(7,Te,2,1,"div",4)(8,de,2,1,"div",5)(9,D,2,1,"div",6),S.k0s()),2&ye){let Ie;S.Y8G("matRippleTrigger",ue._getHostElement())("matRippleDisabled",ue.disableRipple),S.R7$(),S.ZvI("mat-step-icon-state-",ue.state," mat-step-icon"),S.AVh("mat-step-icon-selected",ue.selected),S.R7$(2),S.vxM(ue.iconOverrides&&ue.iconOverrides[ue.state]?3:4),S.R7$(2),S.AVh("mat-step-label-active",ue.active)("mat-step-label-selected",ue.selected)("mat-step-label-error","error"==ue.state),S.R7$(),S.vxM((Ie=ue._templateLabel())?6:ue._stringLabel()?7:-1,Ie),S.R7$(2),S.vxM(ue.optional&&"error"!=ue.state?8:-1),S.R7$(),S.vxM("error"===ue.state?9:-1)}},dependencies:[l.r6,w.T3,x.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);border-radius:var(--mat-stepper-header-hover-state-layer-shape)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color);border-radius:var(--mat-stepper-header-focus-state-layer-shape)}@media(hover: none){.mat-step-header:hover{background:none}}.cdk-high-contrast-active .mat-step-header{outline:solid 1px}.cdk-high-contrast-active .mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.cdk-high-contrast-active .mat-step-header[aria-disabled=true]{outline-color:GrayText}.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-label,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-icon,.cdk-high-contrast-active .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)}.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);background-color:var(--mat-stepper-header-icon-background-color)}.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);color:var(--mat-stepper-header-error-state-icon-foreground-color)}.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);font-size:var(--mat-stepper-header-label-text-size);font-weight:var(--mat-stepper-header-label-text-weight);color:var(--mat-stepper-header-label-text-color)}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color)}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color);font-size:var(--mat-stepper-header-error-state-label-text-size)}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size);font-weight:var(--mat-stepper-header-selected-state-label-text-weight)}.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);color:var(--mat-stepper-header-selected-state-icon-foreground-color)}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color);color:var(--mat-stepper-header-done-state-icon-foreground-color)}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color);color:var(--mat-stepper-header-edit-state-icon-foreground-color)}'],encapsulation:2,changeDetection:0})}return at})();const fe={horizontalStepTransition:(0,$.hZ)("horizontalStepTransition",[(0,$.wk)("previous",(0,$.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"})),(0,$.wk)("current",(0,$.iF)({transform:"none",visibility:"inherit"})),(0,$.wk)("next",(0,$.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"})),(0,$.kY)("* => *",(0,$.Os)([(0,$.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)"),(0,$.P)("@*",(0,$.MA)(),{optional:!0})]),{params:{animationDuration:"500ms"}})]),verticalStepTransition:(0,$.hZ)("verticalStepTransition",[(0,$.wk)("previous",(0,$.iF)({height:"0px",visibility:"hidden"})),(0,$.wk)("next",(0,$.iF)({height:"0px",visibility:"hidden"})),(0,$.wk)("current",(0,$.iF)({height:"*",visibility:"inherit"})),(0,$.kY)("* <=> current",(0,$.Os)([(0,$.i0)("{{animationDuration}} cubic-bezier(0.4, 0.0, 0.2, 1)"),(0,$.P)("@*",(0,$.MA)(),{optional:!0})]),{params:{animationDuration:"225ms"}})])};let ke=(()=>{class at{constructor(Xt){this.templateRef=Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:at,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:[0,"matStepperIcon","name"]},standalone:!0})}return at})(),mt=(()=>{class at{constructor(Xt){this._template=Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:at,selectors:[["ng-template","matStepContent",""]],standalone:!0})}return at})(),_e=(()=>{class at extends t.VI{constructor(Xt,ye,ue,Ie){super(Xt,Ie),this._errorStateMatcher=ye,this._viewContainerRef=ue,this._isSelected=d.yU.EMPTY,this.stepLabel=void 0}ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,y.n)(()=>this._stepper.selectionChange.pipe((0,F.T)(Xt=>Xt.selectedStep===this),(0,R.Z)(this._stepper.selected===this)))).subscribe(Xt=>{Xt&&this._lazyContent&&!this._portal&&(this._portal=new e.VA(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(Xt,ye){return this._errorStateMatcher.isErrorState(Xt,ye)||!!(Xt&&Xt.invalid&&this.interacted)}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU((0,S.Rfq)(()=>be)),S.rXU(l.es,4),S.rXU(S.c1b),S.rXU(t.x8,8))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-step"]],contentQueries:function(ye,ue,Ie){if(1&ye&&(S.wni(Ie,ze,5),S.wni(Ie,mt,5)),2&ye){let He;S.mGM(He=S.lsd())&&(ue.stepLabel=He.first),S.mGM(He=S.lsd())&&(ue._lazyContent=He.first)}},hostAttrs:["hidden",""],inputs:{color:"color"},exportAs:["matStep"],standalone:!0,features:[S.Jv_([{provide:l.es,useExisting:at},{provide:t.VI,useExisting:at}]),S.Vt3,S.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(ye,ue){1&ye&&(S.NAR(),S.DNE(0,m,2,1,"ng-template"))},dependencies:[e.I3],encapsulation:2,changeDetection:0})}return at})(),be=(()=>{class at extends t.Up{get animationDuration(){return this._animationDuration}set animationDuration(Xt){this._animationDuration=/^\d+$/.test(Xt)?Xt+"ms":Xt}constructor(Xt,ye,ue){super(Xt,ye,ue),this._stepHeader=void 0,this._steps=void 0,this.steps=new S.rOR,this.animationDone=new S.bkB,this.labelPosition="end",this.headerPosition="top",this._iconOverrides={},this._animationDone=new I.B,this._animationDuration="",this._isServer=!(0,S.WQX)(j.OD).isBrowser;const Ie=ue.nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===Ie?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:Xt,templateRef:ye})=>this._iconOverrides[Xt]=ye),this.steps.changes.pipe((0,z.Q)(this._destroyed)).subscribe(()=>{this._stateChanged()}),this._animationDone.pipe((0,W.F)((Xt,ye)=>Xt.fromState===ye.fromState&&Xt.toState===ye.toState),(0,z.Q)(this._destroyed)).subscribe(Xt=>{"current"===Xt.toState&&this.animationDone.emit()})}_stepIsNavigable(Xt,ye){return ye.completed||this.selectedIndex===Xt||!this.linear}_getAnimationDuration(){return this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(T.dS,8),S.rXU(S.gRc),S.rXU(S.aKT))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(ye,ue,Ie){if(1&ye&&(S.wni(Ie,_e,5),S.wni(Ie,ke,5)),2&ye){let He;S.mGM(He=S.lsd())&&(ue._steps=He),S.mGM(He=S.lsd())&&(ue._icons=He)}},viewQuery:function(ye,ue){if(1&ye&&S.GBs(X,5),2&ye){let Ie;S.mGM(Ie=S.lsd())&&(ue._stepHeader=Ie)}},hostAttrs:["role","tablist"],hostVars:11,hostBindings:function(ye,ue){2&ye&&(S.BMQ("aria-orientation",ue.orientation),S.AVh("mat-stepper-horizontal","horizontal"===ue.orientation)("mat-stepper-vertical","vertical"===ue.orientation)("mat-stepper-label-position-end","horizontal"===ue.orientation&&"end"==ue.labelPosition)("mat-stepper-label-position-bottom","horizontal"===ue.orientation&&"bottom"==ue.labelPosition)("mat-stepper-header-position-bottom","bottom"===ue.headerPosition))},inputs:{disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],standalone:!0,features:[S.Jv_([{provide:t.Up,useExisting:at}]),S.Vt3,S.aNF],ngContentSelectors:n,decls:5,vars:2,consts:[["stepTemplate",""],[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","mat-horizontal-stepper-content-inactive"],[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(ye,ue){if(1&ye&&(S.NAR(),S.DNE(0,L,1,0)(1,V,7,0,"div",1)(2,ne,2,0)(3,Ee,1,23,"ng-template",null,0,S.C5r)),2&ye){let Ie;S.vxM(ue._isServer?0:-1),S.R7$(),S.vxM("horizontal"===(Ie=ue.orientation)?1:"vertical"===Ie?2:-1)}},dependencies:[w.T3,X],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font);background:var(--mat-stepper-container-color)}.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)}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height) - 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;height:72px;overflow:hidden;align-items:center;padding:0 24px;height:var(--mat-stepper-header-height)}.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::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height) - 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) - 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) - 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{outline:0}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-inactive{height:0;overflow:hidden}.mat-horizontal-stepper-content:not(.mat-horizontal-stepper-content-inactive){visibility:inherit !important}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}.cdk-high-contrast-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{margin-left:36px;border:0;position:relative}.cdk-high-contrast-active .mat-vertical-content-container{outline:solid 1px}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}.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);top:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0}.mat-vertical-stepper-content:not(.mat-vertical-stepper-content-inactive){visibility:inherit !important}.mat-vertical-content{padding:0 24px 24px 24px}.mat-step:last-child .mat-vertical-content-container{border:none}'],encapsulation:2,data:{animation:[fe.horizontalStepTransition,fe.verticalStepTransition]},changeDetection:0})}return at})(),pe=(()=>{class at extends t.v5{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(ye,ue){2&ye&&S.Mr5("type",ue.type)},standalone:!0,features:[S.Vt3]})}return at})(),Ze=(()=>{class at extends t.FK{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(ye,ue){2&ye&&S.Mr5("type",ue.type)},standalone:!0,features:[S.Vt3]})}return at})(),_t=(()=>{class at{static#e=this.\u0275fac=function(ye){return new(ye||at)};static#t=this.\u0275mod=S.$C({type:at});static#i=this.\u0275inj=S.G2t({providers:[se,l.es],imports:[l.yE,w.MD,e.jc,t.uY,x.m_,l.pZ,be,X,l.yE]})}return at})()},9159:(Qe,te,g)=>{"use strict";g.d(te,{$R:()=>et,YV:()=>Re,cC:()=>$e,Qo:()=>Ge,Zq:()=>gt,iF:()=>Xi,xW:()=>mi,KS:()=>Fe,tL:()=>Ne,YZ:()=>Pt,ji:()=>Tt,NB:()=>di,iL:()=>Kt,Zl:()=>q,I6:()=>Qt,tP:()=>Li});var e=g(4438),t=g(8203),w=g(5024),S=g(6860),l=g(5542),x=g(177),f=g(1413),I=g(2806),d=g(4412),T=g(4402),y=g(7673),F=g(6977),R=g(6697);const z=[[["caption"]],[["colgroup"],["col"]],"*"],W=["caption","colgroup, col","*"];function $(Mt,it){1&Mt&&e.SdG(0,2)}function j(Mt,it){1&Mt&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",0),e.eu8(3,2)(4,3),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,4),e.k0s())}function Q(Mt,it){1&Mt&&e.eu8(0,1)(1,2)(2,3)(3,4)}const ie=new e.nKC("CDK_TABLE");let ae=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkCellDef",""]],standalone:!0})}return Mt})(),Me=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkHeaderCellDef",""]],standalone:!0})}return Mt})(),Te=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkFooterCellDef",""]],standalone:!0})}return Mt})(),de=(()=>{class Mt{get name(){return this._name}set name(ct){this._setNameInput(ct)}get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}get stickyEnd(){return this._stickyEnd}set stickyEnd(ct){ct!==this._stickyEnd&&(this._stickyEnd=ct,this._hasStickyChanged=!0)}constructor(ct){this._table=ct,this._hasStickyChanged=!1,this._sticky=!1,this._stickyEnd=!1}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(ct){ct&&(this._name=ct,this.cssClassFriendlyName=ct.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkColumnDef",""]],contentQueries:function(wt,Ut,xi){if(1&wt&&(e.wni(xi,ae,5),e.wni(xi,Me,5),e.wni(xi,Te,5)),2&wt){let Si;e.mGM(Si=e.lsd())&&(Ut.cell=Si.first),e.mGM(Si=e.lsd())&&(Ut.headerCell=Si.first),e.mGM(Si=e.lsd())&&(Ut.footerCell=Si.first)}},inputs:{name:[0,"cdkColumnDef","name"],sticky:[2,"sticky","sticky",e.L39],stickyEnd:[2,"stickyEnd","stickyEnd",e.L39]},standalone:!0,features:[e.Jv_([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Mt}]),e.GFd]})}return Mt})();class D{constructor(it,ct){ct.nativeElement.classList.add(...it._columnCssClassName)}}let n=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),c=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt);const Ut=ct._table?._getCellRole();Ut&&wt.nativeElement.setAttribute("role",Ut)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),m=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt);const Ut=ct._table?._getCellRole();Ut&&wt.nativeElement.setAttribute("role",Ut)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],standalone:!0,features:[e.Vt3]})}return Mt})();class h{constructor(){this.tasks=[],this.endTasks=[]}}const C=new e.nKC("_COALESCED_STYLE_SCHEDULER");let k=(()=>{class Mt{constructor(ct){this._ngZone=ct,this._currentSchedule=null,this._destroyed=new f.B}schedule(ct){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(ct)}scheduleEnd(ct){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(ct)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new h,this._getScheduleObservable().pipe((0,F.Q)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const ct=this._currentSchedule;this._currentSchedule=new h;for(const wt of ct.tasks)wt();for(const wt of ct.endTasks)wt()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,I.H)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,R.s)(1))}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.KVO(e.SKi))};static#t=this.\u0275prov=e.jDH({token:Mt,factory:Mt.\u0275fac})}return Mt})(),_=(()=>{class Mt{constructor(ct,wt){this.template=ct,this._differs=wt}ngOnChanges(ct){if(!this._columnsDiffer){const wt=ct.columns&&ct.columns.currentValue||[];this._columnsDiffer=this._differs.find(wt).create(),this._columnsDiffer.diff(wt)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(ct){return this instanceof r?ct.headerCell.template:this instanceof v?ct.footerCell.template:ct.cell.template}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3))};static#t=this.\u0275dir=e.FsC({type:Mt,features:[e.OA$]})}return Mt})(),r=(()=>{class Mt extends _{get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}constructor(ct,wt,Ut){super(ct,wt),this._table=Ut,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ct){super.ngOnChanges(ct)}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[0,"cdkHeaderRowDef","columns"],sticky:[2,"cdkHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}return Mt})(),v=(()=>{class Mt extends _{get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}constructor(ct,wt,Ut){super(ct,wt),this._table=Ut,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ct){super.ngOnChanges(ct)}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[0,"cdkFooterRowDef","columns"],sticky:[2,"cdkFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}return Mt})(),V=(()=>{class Mt extends _{constructor(ct,wt,Ut){super(ct,wt),this._table=Ut}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkRowDef",""]],inputs:{columns:[0,"cdkRowDefColumns","columns"],when:[0,"cdkRowDefWhen","when"]},standalone:!0,features:[e.Vt3]})}return Mt})(),N=(()=>{class Mt{static#e=this.mostRecentCellOutlet=null;constructor(ct){this._viewContainer=ct,Mt.mostRecentCellOutlet=this}ngOnDestroy(){Mt.mostRecentCellOutlet===this&&(Mt.mostRecentCellOutlet=null)}static#t=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b))};static#i=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkCellOutlet",""]],standalone:!0})}return Mt})(),ne=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Ee=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),ze=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),qe=(()=>{class Mt{constructor(ct){this.templateRef=ct,this._contentClassName="cdk-no-data-row"}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["ng-template","cdkNoDataRow",""]],standalone:!0})}return Mt})();const Ke=["top","bottom","left","right"];class se{constructor(it,ct,wt,Ut,xi=!0,Si=!0,zi){this._isNativeHtmlTable=it,this._stickCellCss=ct,this.direction=wt,this._coalescedStyleScheduler=Ut,this._isBrowser=xi,this._needsPositionStickyOnElement=Si,this._positionListener=zi,this._cachedCellWidths=[],this._borderCellCss={top:`${ct}-border-elem-top`,bottom:`${ct}-border-elem-bottom`,left:`${ct}-border-elem-left`,right:`${ct}-border-elem-right`}}clearStickyPositioning(it,ct){const wt=[];for(const Ut of it)if(Ut.nodeType===Ut.ELEMENT_NODE){wt.push(Ut);for(let xi=0;xi{for(const Ut of wt)this._removeStickyStyle(Ut,ct)})}updateStickyColumns(it,ct,wt,Ut=!0){it.length&&this._isBrowser&&(ct.some(xi=>xi)||wt.some(xi=>xi))?this._coalescedStyleScheduler.schedule(()=>{const xi=it[0],Si=xi.children.length,zi=this._getCellWidths(xi,Ut),en=this._getStickyStartColumnPositions(zi,ct),Ni=this._getStickyEndColumnPositions(zi,wt),fn=ct.lastIndexOf(!0),Zt=wt.indexOf(!0),bt="rtl"===this.direction,re=bt?"right":"left",je=bt?"left":"right";for(const Ce of it)for(let ot=0;otct[ot]?Ce:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===Zt?[]:zi.slice(Zt).map((Ce,ot)=>wt[ot+Zt]?Ce:null).reverse()}))}):this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]}))}stickRows(it,ct,wt){this._isBrowser&&this._coalescedStyleScheduler.schedule(()=>{const Ut="bottom"===wt?it.slice().reverse():it,xi="bottom"===wt?ct.slice().reverse():ct,Si=[],zi=[],en=[];for(let fn=0,Zt=0;fn{const wt=it.querySelector("tfoot");wt&&(ct.some(Ut=>!Ut)?this._removeStickyStyle(wt,["bottom"]):this._addStickyStyle(wt,"bottom",0,!1))})}_removeStickyStyle(it,ct){for(const Ut of ct)it.style[Ut]="",it.classList.remove(this._borderCellCss[Ut]);Ke.some(Ut=>-1===ct.indexOf(Ut)&&it.style[Ut])?it.style.zIndex=this._getCalculatedZIndex(it):(it.style.zIndex="",this._needsPositionStickyOnElement&&(it.style.position=""),it.classList.remove(this._stickCellCss))}_addStickyStyle(it,ct,wt,Ut){it.classList.add(this._stickCellCss),Ut&&it.classList.add(this._borderCellCss[ct]),it.style[ct]=`${wt}px`,it.style.zIndex=this._getCalculatedZIndex(it),this._needsPositionStickyOnElement&&(it.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(it){const ct={top:100,bottom:10,left:1,right:1};let wt=0;for(const Ut of Ke)it.style[Ut]&&(wt+=ct[Ut]);return wt?`${wt}`:""}_getCellWidths(it,ct=!0){if(!ct&&this._cachedCellWidths.length)return this._cachedCellWidths;const wt=[],Ut=it.children;for(let xi=0;xi0;xi--)ct[xi]&&(wt[xi]=Ut,Ut+=it[xi]);return wt}}const pe=new e.nKC("CDK_SPL");let _t=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._rowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","rowOutlet",""]],standalone:!0})}return Mt})(),at=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._headerRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","headerRowOutlet",""]],standalone:!0})}return Mt})(),pt=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._footerRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","footerRowOutlet",""]],standalone:!0})}return Mt})(),Xt=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._noDataRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","noDataRowOutlet",""]],standalone:!0})}return Mt})(),Ie=(()=>{class Mt{_getCellRole(){if(void 0===this._cellRoleInternal){const ct=this._elementRef.nativeElement.getAttribute("role"),wt="grid"===ct||"treegrid"===ct?"gridcell":"cell";this._cellRoleInternal=this._isNativeHtmlTable&&"cell"===wt?null:wt}return this._cellRoleInternal}get trackBy(){return this._trackByFn}set trackBy(ct){this._trackByFn=ct}get dataSource(){return this._dataSource}set dataSource(ct){this._dataSource!==ct&&this._switchDataSource(ct)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(ct){this._multiTemplateDataRows=ct,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(ct){this._fixedLayout=ct,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}constructor(ct,wt,Ut,xi,Si,zi,en,Ni,fn,Zt,bt,re){this._differs=ct,this._changeDetectorRef=wt,this._elementRef=Ut,this._dir=Si,this._platform=en,this._viewRepeater=Ni,this._coalescedStyleScheduler=fn,this._viewportRuler=Zt,this._stickyPositioningListener=bt,this._ngZone=re,this._onDestroy=new f.B,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._stickyColumnStylesNeedReset=!0,this._forceRecalculateCellWidths=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this.needsPositionStickyOnElement=!0,this._isShowingNoDataRow=!1,this._hasAllOutlets=!1,this._hasInitialized=!1,this._cellRoleInternal=void 0,this._multiTemplateDataRows=!1,this._fixedLayout=!1,this.contentChanged=new e.bkB,this.viewChange=new d.t({start:0,end:Number.MAX_VALUE}),xi||Ut.nativeElement.setAttribute("role","table"),this._document=zi,this._isServer=!en.isBrowser,this._isNativeHtmlTable="TABLE"===Ut.nativeElement.nodeName}ngOnInit(){this._setupStickyStyler(),this._dataDiffer=this._differs.find([]).create((ct,wt)=>this.trackBy?this.trackBy(wt.dataIndex,wt.data):wt),this._viewportRuler.change().pipe((0,F.Q)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentInit(){this._hasInitialized=!0}ngAfterContentChecked(){this._canRender()&&this._render()}ngOnDestroy(){[this._rowOutlet?.viewContainer,this._headerRowOutlet?.viewContainer,this._footerRowOutlet?.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(ct=>{ct?.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,w.y4)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const ct=this._dataDiffer.diff(this._renderRows);if(!ct)return this._updateNoDataRow(),void this.contentChanged.next();const wt=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(ct,wt,(Ut,xi,Si)=>this._getEmbeddedViewArgs(Ut.item,Si),Ut=>Ut.item.data,Ut=>{Ut.operation===w.Q3.INSERTED&&Ut.context&&this._renderCellTemplateForItem(Ut.record.item.rowDef,Ut.context)}),this._updateRowIndexContext(),ct.forEachIdentityChange(Ut=>{wt.get(Ut.currentIndex).context.$implicit=Ut.item.data}),this._updateNoDataRow(),this._ngZone&&e.SKi.isInAngularZone()?this._ngZone.onStable.pipe((0,R.s)(1),(0,F.Q)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(ct){this._customColumnDefs.add(ct)}removeColumnDef(ct){this._customColumnDefs.delete(ct)}addRowDef(ct){this._customRowDefs.add(ct)}removeRowDef(ct){this._customRowDefs.delete(ct)}addHeaderRowDef(ct){this._customHeaderRowDefs.add(ct),this._headerRowDefChanged=!0}removeHeaderRowDef(ct){this._customHeaderRowDefs.delete(ct),this._headerRowDefChanged=!0}addFooterRowDef(ct){this._customFooterRowDefs.add(ct),this._footerRowDefChanged=!0}removeFooterRowDef(ct){this._customFooterRowDefs.delete(ct),this._footerRowDefChanged=!0}setNoDataRow(ct){this._customNoDataRow=ct}updateStickyHeaderRowStyles(){const ct=this._getRenderedRows(this._headerRowOutlet);if(this._isNativeHtmlTable){const Ut=Xe(this._headerRowOutlet,"thead");Ut&&(Ut.style.display=ct.length?"":"none")}const wt=this._headerRowDefs.map(Ut=>Ut.sticky);this._stickyStyler.clearStickyPositioning(ct,["top"]),this._stickyStyler.stickRows(ct,wt,"top"),this._headerRowDefs.forEach(Ut=>Ut.resetStickyChanged())}updateStickyFooterRowStyles(){const ct=this._getRenderedRows(this._footerRowOutlet);if(this._isNativeHtmlTable){const Ut=Xe(this._footerRowOutlet,"tfoot");Ut&&(Ut.style.display=ct.length?"":"none")}const wt=this._footerRowDefs.map(Ut=>Ut.sticky);this._stickyStyler.clearStickyPositioning(ct,["bottom"]),this._stickyStyler.stickRows(ct,wt,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,wt),this._footerRowDefs.forEach(Ut=>Ut.resetStickyChanged())}updateStickyColumnStyles(){const ct=this._getRenderedRows(this._headerRowOutlet),wt=this._getRenderedRows(this._rowOutlet),Ut=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...ct,...wt,...Ut],["left","right"]),this._stickyColumnStylesNeedReset=!1),ct.forEach((xi,Si)=>{this._addStickyColumnStyles([xi],this._headerRowDefs[Si])}),this._rowDefs.forEach(xi=>{const Si=[];for(let zi=0;zi{this._addStickyColumnStyles([xi],this._footerRowDefs[Si])}),Array.from(this._columnDefsByName.values()).forEach(xi=>xi.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 wt=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||wt,this._forceRecalculateCellWidths=wt,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 ct=[],wt=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let Ut=0;Ut{const zi=Ut&&Ut.has(Si)?Ut.get(Si):[];if(zi.length){const en=zi.shift();return en.dataIndex=wt,en}return{data:ct,rowDef:Si,dataIndex:wt}})}_cacheColumnDefs(){this._columnDefsByName.clear(),He(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(wt=>{this._columnDefsByName.has(wt.name),this._columnDefsByName.set(wt.name,wt)})}_cacheRowDefs(){this._headerRowDefs=He(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=He(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=He(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const ct=this._rowDefs.filter(wt=>!wt.when);this._defaultRowDef=ct[0]}_renderUpdatedColumns(){const ct=(Si,zi)=>Si||!!zi.getColumnsDiff(),wt=this._rowDefs.reduce(ct,!1);wt&&this._forceRenderDataRows();const Ut=this._headerRowDefs.reduce(ct,!1);Ut&&this._forceRenderHeaderRows();const xi=this._footerRowDefs.reduce(ct,!1);return xi&&this._forceRenderFooterRows(),wt||Ut||xi}_switchDataSource(ct){this._data=[],(0,w.y4)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),ct||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet&&this._rowOutlet.viewContainer.clear()),this._dataSource=ct}_observeRenderChanges(){if(!this.dataSource)return;let ct;(0,w.y4)(this.dataSource)?ct=this.dataSource.connect(this):(0,T.A)(this.dataSource)?ct=this.dataSource:Array.isArray(this.dataSource)&&(ct=(0,y.of)(this.dataSource)),this._renderChangeSubscription=ct.pipe((0,F.Q)(this._onDestroy)).subscribe(wt=>{this._data=wt||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((ct,wt)=>this._renderRow(this._headerRowOutlet,ct,wt)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((ct,wt)=>this._renderRow(this._footerRowOutlet,ct,wt)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(ct,wt){const Ut=Array.from(wt.columns||[]).map(zi=>this._columnDefsByName.get(zi)),xi=Ut.map(zi=>zi.sticky),Si=Ut.map(zi=>zi.stickyEnd);this._stickyStyler.updateStickyColumns(ct,xi,Si,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(ct){const wt=[];for(let Ut=0;Ut!xi.when||xi.when(wt,ct));else{let xi=this._rowDefs.find(Si=>Si.when&&Si.when(wt,ct))||this._defaultRowDef;xi&&Ut.push(xi)}return Ut}_getEmbeddedViewArgs(ct,wt){return{templateRef:ct.rowDef.template,context:{$implicit:ct.data},index:wt}}_renderRow(ct,wt,Ut,xi={}){const Si=ct.viewContainer.createEmbeddedView(wt.template,xi,Ut);return this._renderCellTemplateForItem(wt,xi),Si}_renderCellTemplateForItem(ct,wt){for(let Ut of this._getCellTemplates(ct))N.mostRecentCellOutlet&&N.mostRecentCellOutlet._viewContainer.createEmbeddedView(Ut,wt);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const ct=this._rowOutlet.viewContainer;for(let wt=0,Ut=ct.length;wt{const Ut=this._columnDefsByName.get(wt);return ct.extractCellTemplate(Ut)}):[]}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const ct=(wt,Ut)=>wt||Ut.hasStickyChanged();this._headerRowDefs.reduce(ct,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(ct,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(ct,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new se(this._isNativeHtmlTable,this.stickyCssClass,this._dir?this._dir.value:"ltr",this._coalescedStyleScheduler,this._platform.isBrowser,this.needsPositionStickyOnElement,this._stickyPositioningListener),(this._dir?this._dir.change:(0,y.of)()).pipe((0,F.Q)(this._onDestroy)).subscribe(wt=>{this._stickyStyler.direction=wt,this.updateStickyColumnStyles()})}_getOwnDefs(ct){return ct.filter(wt=>!wt._table||wt._table===this)}_updateNoDataRow(){const ct=this._customNoDataRow||this._noDataRow;if(!ct)return;const wt=0===this._rowOutlet.viewContainer.length;if(wt===this._isShowingNoDataRow)return;const Ut=this._noDataRowOutlet.viewContainer;if(wt){const xi=Ut.createEmbeddedView(ct.templateRef),Si=xi.rootNodes[0];1===xi.rootNodes.length&&Si?.nodeType===this._document.ELEMENT_NODE&&(Si.setAttribute("role","row"),Si.classList.add(ct._contentClassName))}else Ut.clear();this._isShowingNoDataRow=wt,this._changeDetectorRef.markForCheck()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e._q3),e.rXU(e.gRc),e.rXU(e.aKT),e.kS0("role"),e.rXU(t.dS,8),e.rXU(x.qQ),e.rXU(S.OD),e.rXU(w.sL),e.rXU(C),e.rXU(l.Xj),e.rXU(pe,12),e.rXU(e.SKi,8))};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(wt,Ut,xi){if(1&wt&&(e.wni(xi,qe,5),e.wni(xi,de,5),e.wni(xi,V,5),e.wni(xi,r,5),e.wni(xi,v,5)),2&wt){let Si;e.mGM(Si=e.lsd())&&(Ut._noDataRow=Si.first),e.mGM(Si=e.lsd())&&(Ut._contentColumnDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentRowDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentHeaderRowDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentFooterRowDefs=Si)}},hostAttrs:[1,"cdk-table"],hostVars:2,hostBindings:function(wt,Ut){2&wt&&e.AVh("cdk-table-fixed-layout",Ut.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:[2,"multiTemplateDataRows","multiTemplateDataRows",e.L39],fixedLayout:[2,"fixedLayout","fixedLayout",e.L39]},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],standalone:!0,features:[e.Jv_([{provide:ie,useExisting:Mt},{provide:w.sL,useClass:w.xn},{provide:C,useClass:k},{provide:pe,useValue:null}]),e.GFd,e.aNF],ngContentSelectors:W,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(wt,Ut){1&wt&&(e.NAR(z),e.SdG(0),e.SdG(1,1),e.DNE(2,$,1,0)(3,j,7,0)(4,Q,4,0)),2&wt&&(e.R7$(2),e.vxM(Ut._isServer?2:-1),e.R7$(),e.vxM(Ut._isNativeHtmlTable?3:4))},dependencies:[at,_t,Xt,pt],styles:[".cdk-table-fixed-layout{table-layout:fixed}"],encapsulation:2})}return Mt})();function He(Mt,it){return Mt.concat(Array.from(it))}function Xe(Mt,it){const ct=it.toUpperCase();let wt=Mt.viewContainer.element.nativeElement;for(;wt;){const Ut=1===wt.nodeType?wt.nodeName:null;if(Ut===ct)return wt;if("TABLE"===Ut)break;wt=wt.parentNode}return null}let rt=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275mod=e.$C({type:Mt});static#i=this.\u0275inj=e.G2t({imports:[l.E9]})}return Mt})();var Nt=g(6600),Et=g(7786),Vt=g(4572),oe=g(4085),tt=g(6354);const $t=[[["caption"]],[["colgroup"],["col"]],"*"],zt=["caption","colgroup, col","*"];function Jt(Mt,it){1&Mt&&e.SdG(0,2)}function St(Mt,it){1&Mt&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",2),e.eu8(3,3)(4,4),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,5),e.k0s())}function dt(Mt,it){1&Mt&&e.eu8(0,1)(1,3)(2,4)(3,5)}let q=(()=>{class Mt extends Ie{constructor(){super(...arguments),this.stickyCssClass="mat-mdc-table-sticky",this.needsPositionStickyOnElement=!1}static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(wt,Ut){2&wt&&e.AVh("mdc-table-fixed-layout",Ut.fixedLayout)},exportAs:["matTable"],standalone:!0,features:[e.Jv_([{provide:Ie,useExisting:Mt},{provide:ie,useExisting:Mt},{provide:C,useClass:k},{provide:w.sL,useClass:w.xn},{provide:pe,useValue:null}]),e.Vt3,e.aNF],ngContentSelectors:zt,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["role","rowgroup",1,"mdc-data-table__content"],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(wt,Ut){1&wt&&(e.NAR($t),e.SdG(0),e.SdG(1,1),e.DNE(2,Jt,1,0)(3,St,7,0)(4,dt,4,0)),2&wt&&(e.R7$(2),e.vxM(Ut._isServer?2:-1),e.R7$(),e.vxM(Ut._isNativeHtmlTable?3:4))},dependencies:[at,_t,Xt,pt],styles:[".mat-mdc-table-sticky{position:sticky !important}.mdc-data-table{-webkit-overflow-scrolling:touch;display:inline-flex;flex-direction:column;box-sizing:border-box;position:relative}.mdc-data-table__table-container{-webkit-overflow-scrolling:touch;overflow-x:auto;width:100%}.mdc-data-table__table{min-width:100%;border:0;white-space:nowrap;border-spacing:0;table-layout:fixed}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell,.mdc-data-table__cell[dir=rtl]{text-align:right}.mdc-data-table__cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__cell--numeric,.mdc-data-table__cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell{box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mdc-data-table__header-cell,.mdc-data-table__header-cell[dir=rtl]{text-align:right}.mdc-data-table__header-cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__header-cell--numeric,.mdc-data-table__header-cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell-wrapper{align-items:center;display:inline-flex;vertical-align:middle}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px 0 16px}.mdc-data-table__header-cell--checkbox,.mdc-data-table__cell--checkbox{padding-left:4px;padding-right:0}[dir=rtl] .mdc-data-table__header-cell--checkbox,[dir=rtl] .mdc-data-table__cell--checkbox,.mdc-data-table__header-cell--checkbox[dir=rtl],.mdc-data-table__cell--checkbox[dir=rtl]{padding-left:0;padding-right:4px}mat-table{display:block}mat-header-row{min-height:56px}mat-row,mat-footer-row{min-height:48px}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{table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color)}.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, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-header-headline-font, Roboto, sans-serif);line-height:var(--mat-table-header-headline-line-height);font-size:var(--mat-table-header-headline-size, 14px);font-weight:var(--mat-table-header-headline-weight, 500)}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, 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, Roboto, sans-serif);line-height:var(--mat-table-row-item-label-text-line-height);font-size:var(--mat-table-row-item-label-text-size, 14px);font-weight:var(--mat-table-row-item-label-text-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, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-footer-supporting-text-font, Roboto, sans-serif);line-height:var(--mat-table-footer-supporting-text-line-height);font-size:var(--mat-table-footer-supporting-text-size, 14px);font-weight:var(--mat-table-footer-supporting-text-weight);letter-spacing:var(--mat-table-footer-supporting-text-tracking)}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, 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);font-weight:inherit;line-height:inherit}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, 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);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)}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}"],encapsulation:2})}return Mt})(),Re=(()=>{class Mt extends ae{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matCellDef",""]],standalone:!0,features:[e.Jv_([{provide:ae,useExisting:Mt}]),e.Vt3]})}return Mt})(),Ne=(()=>{class Mt extends Me{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matHeaderCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Me,useExisting:Mt}]),e.Vt3]})}return Mt})(),gt=(()=>{class Mt extends Te{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matFooterCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Te,useExisting:Mt}]),e.Vt3]})}return Mt})(),$e=(()=>{class Mt extends de{get name(){return this._name}set name(ct){this._setNameInput(ct)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matColumnDef",""]],inputs:{name:[0,"matColumnDef","name"]},standalone:!0,features:[e.Jv_([{provide:de,useExisting:Mt},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Mt}]),e.Vt3]})}return Mt})(),Fe=(()=>{class Mt extends n{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),Ge=(()=>{class Mt extends c{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),et=(()=>{class Mt extends m{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),Tt=(()=>{class Mt extends r{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[0,"matHeaderRowDef","columns"],sticky:[2,"matHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:r,useExisting:Mt}]),e.GFd,e.Vt3]})}return Mt})(),mi=(()=>{class Mt extends v{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matFooterRowDef",""]],inputs:{columns:[0,"matFooterRowDef","columns"],sticky:[2,"matFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:v,useExisting:Mt}]),e.GFd,e.Vt3]})}return Mt})(),Kt=(()=>{class Mt extends V{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matRowDef",""]],inputs:{columns:[0,"matRowDefColumns","columns"],when:[0,"matRowDefWhen","when"]},standalone:!0,features:[e.Jv_([{provide:V,useExisting:Mt}]),e.Vt3]})}return Mt})(),Pt=(()=>{class Mt extends ne{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],standalone:!0,features:[e.Jv_([{provide:ne,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Xi=(()=>{class Mt extends Ee{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],standalone:!0,features:[e.Jv_([{provide:Ee,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),di=(()=>{class Mt extends ze{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],standalone:!0,features:[e.Jv_([{provide:ze,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Li=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275mod=e.$C({type:Mt});static#i=this.\u0275inj=e.G2t({imports:[Nt.yE,rt,Nt.yE]})}return Mt})();class Qt extends w.qS{get data(){return this._data.value}set data(it){it=Array.isArray(it)?it:[],this._data.next(it),this._renderChangesSubscription||this._filterData(it)}get filter(){return this._filter.value}set filter(it){this._filter.next(it),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(it){this._sort=it,this._updateChangeSubscription()}get paginator(){return this._paginator}set paginator(it){this._paginator=it,this._updateChangeSubscription()}constructor(it=[]){super(),this._renderData=new d.t([]),this._filter=new d.t(""),this._internalPageChanges=new f.B,this._renderChangesSubscription=null,this.sortingDataAccessor=(ct,wt)=>{const Ut=ct[wt];if((0,oe.o1)(Ut)){const xi=Number(Ut);return xi<9007199254740991?xi:Ut}return Ut},this.sortData=(ct,wt)=>{const Ut=wt.active,xi=wt.direction;return Ut&&""!=xi?ct.sort((Si,zi)=>{let en=this.sortingDataAccessor(Si,Ut),Ni=this.sortingDataAccessor(zi,Ut);const fn=typeof en,Zt=typeof Ni;fn!==Zt&&("number"===fn&&(en+=""),"number"===Zt&&(Ni+=""));let bt=0;return null!=en&&null!=Ni?en>Ni?bt=1:en{const Ut=Object.keys(ct).reduce((Si,zi)=>Si+ct[zi]+"\u25ec","").toLowerCase(),xi=wt.trim().toLowerCase();return-1!=Ut.indexOf(xi)},this._data=new d.t(it),this._updateChangeSubscription()}_updateChangeSubscription(){const it=this._sort?(0,Et.h)(this._sort.sortChange,this._sort.initialized):(0,y.of)(null),ct=this._paginator?(0,Et.h)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,y.of)(null),Ut=(0,Vt.z)([this._data,this._filter]).pipe((0,tt.T)(([zi])=>this._filterData(zi))),xi=(0,Vt.z)([Ut,it]).pipe((0,tt.T)(([zi])=>this._orderData(zi))),Si=(0,Vt.z)([xi,ct]).pipe((0,tt.T)(([zi])=>this._pageData(zi)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=Si.subscribe(zi=>this._renderData.next(zi))}_filterData(it){return this.filteredData=null==this.filter||""===this.filter?it:it.filter(ct=>this.filterPredicate(ct,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(it){return this.sort?this.sortData(it.slice(),this.sort):it}_pageData(it){if(!this.paginator)return it;const ct=this.paginator.pageIndex*this.paginator.pageSize;return it.slice(ct,ct+this.paginator.pageSize)}_updatePaginator(it){Promise.resolve().then(()=>{const ct=this.paginator;if(ct&&(ct.length=it,ct.pageIndex>0)){const wt=Math.ceil(ct.length/ct.pageSize)-1||0,Ut=Math.min(ct.pageIndex,wt);Ut!==ct.pageIndex&&(ct.pageIndex=Ut,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},6850:(Qe,te,g)=>{"use strict";g.d(te,{Bu:()=>Jt,ES:()=>_e,Ql:()=>St,RI:()=>Ae,T8:()=>tt,hQ:()=>dt,mq:()=>pe});var e=g(4438),t=g(6600),w=g(6939),S=g(1413),l=g(3726),x=g(7673),f=g(7786),I=g(983),d=g(1985),T=g(1807),y=g(8359),F=g(4412),R=g(5542),z=g(6860),W=g(8203),$=g(8617),j=g(7336),Q=g(6977),J=g(6697),ee=g(9172),ie=g(5558),ge=g(5245),ae=g(5964),Me=g(3294),Te=g(2318),de=g(177),D=g(9969);const n=["*"];function c(we,he){1&we&&e.SdG(0)}const m=["tabListContainer"],h=["tabList"],C=["tabListInner"],k=["nextPaginator"],L=["previousPaginator"],_=we=>({animationDuration:we}),r=(we,he)=>({value:we,params:he});function v(we,he){}const V=["tabBodyWrapper"],N=["tabHeader"];function ne(we,he){}function Ee(we,he){if(1&we&&e.DNE(0,ne,0,0,"ng-template",12),2&we){const q=e.XpG().$implicit;e.Y8G("cdkPortalOutlet",q.templateLabel)}}function ze(we,he){if(1&we&&e.EFF(0),2&we){const q=e.XpG().$implicit;e.JRh(q.textLabel)}}function qe(we,he){if(1&we){const q=e.RV6();e.j41(0,"div",7,2),e.bIt("click",function(){const Ne=e.eBV(q),gt=Ne.$implicit,$e=Ne.$index,Fe=e.XpG(),Ge=e.sdS(1);return e.Njj(Fe._handleClick(gt,Ge,$e))})("cdkFocusChange",function(Ne){const gt=e.eBV(q).$index,$e=e.XpG();return e.Njj($e._tabFocusChanged(Ne,gt))}),e.nrm(2,"span",8)(3,"div",9),e.j41(4,"span",10)(5,"span",11),e.DNE(6,Ee,1,1,null,12)(7,ze,1,1),e.k0s()()()}if(2&we){const q=he.$implicit,Re=he.$index,Ne=e.sdS(1),gt=e.XpG();e.HbH(q.labelClass),e.AVh("mdc-tab--active",gt.selectedIndex===Re),e.Y8G("id",gt._getTabLabelId(Re))("disabled",q.disabled)("fitInkBarToContent",gt.fitInkBarToContent),e.BMQ("tabIndex",gt._getTabIndex(Re))("aria-posinset",Re+1)("aria-setsize",gt._tabs.length)("aria-controls",gt._getTabContentId(Re))("aria-selected",gt.selectedIndex===Re)("aria-label",q.ariaLabel||null)("aria-labelledby",!q.ariaLabel&&q.ariaLabelledby?q.ariaLabelledby:null),e.R7$(3),e.Y8G("matRippleTrigger",Ne)("matRippleDisabled",q.disabled||gt.disableRipple),e.R7$(3),e.vxM(q.templateLabel?6:7)}}function Ke(we,he){1&we&&e.SdG(0)}function se(we,he){if(1&we){const q=e.RV6();e.j41(0,"mat-tab-body",13),e.bIt("_onCentered",function(){e.eBV(q);const Ne=e.XpG();return e.Njj(Ne._removeTabBodyWrapperHeight())})("_onCentering",function(Ne){e.eBV(q);const gt=e.XpG();return e.Njj(gt._setTabBodyWrapperHeight(Ne))}),e.k0s()}if(2&we){const q=he.$implicit,Re=he.$index,Ne=e.XpG();e.HbH(q.bodyClass),e.AVh("mat-mdc-tab-body-active",Ne.selectedIndex===Re),e.Y8G("id",Ne._getTabContentId(Re))("content",q.content)("position",q.position)("origin",q.origin)("animationDuration",Ne.animationDuration)("preserveContent",Ne.preserveContent),e.BMQ("tabindex",null!=Ne.contentTabIndex&&Ne.selectedIndex===Re?Ne.contentTabIndex:null)("aria-labelledby",Ne._getTabLabelId(Re))("aria-hidden",Ne.selectedIndex!==Re)}}const X=["mat-tab-nav-bar",""],me=["mat-tab-link",""],ce=new e.nKC("MatTabContent");let fe=(()=>{class we{constructor(q){this.template=q}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabContent",""]],standalone:!0,features:[e.Jv_([{provide:ce,useExisting:we}])]})}return we})();const ke=new e.nKC("MatTabLabel"),mt=new e.nKC("MAT_TAB");let _e=(()=>{class we extends w.bV{constructor(q,Re,Ne){super(q,Re),this._closestTab=Ne}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.C4Q),e.rXU(e.c1b),e.rXU(mt,8))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],standalone:!0,features:[e.Jv_([{provide:ke,useExisting:we}]),e.Vt3]})}return we})();const be=new e.nKC("MAT_TAB_GROUP");let pe=(()=>{class we{get templateLabel(){return this._templateLabel}set templateLabel(q){this._setTemplateLabelInput(q)}get content(){return this._contentPortal}constructor(q,Re){this._viewContainerRef=q,this._closestTabGroup=Re,this.disabled=!1,this._explicitContent=void 0,this.textLabel="",this._contentPortal=null,this._stateChanges=new S.B,this.position=null,this.origin=null,this.isActive=!1}ngOnChanges(q){(q.hasOwnProperty("textLabel")||q.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new w.VA(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(q){q&&q._closestTab===this&&(this._templateLabel=q)}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.c1b),e.rXU(be,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab"]],contentQueries:function(Re,Ne,gt){if(1&Re&&(e.wni(gt,_e,5),e.wni(gt,fe,7,e.C4Q)),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne.templateLabel=$e.first),e.mGM($e=e.lsd())&&(Ne._explicitContent=$e.first)}},viewQuery:function(Re,Ne){if(1&Re&&e.GBs(e.C4Q,7),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._implicitContent=gt.first)}},hostAttrs:["hidden",""],inputs:{disabled:[2,"disabled","disabled",e.L39],textLabel:[0,"label","textLabel"],ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},exportAs:["matTab"],standalone:!0,features:[e.Jv_([{provide:mt,useExisting:we}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Ne){1&Re&&(e.NAR(),e.DNE(0,c,1,0,"ng-template"))},encapsulation:2})}return we})();const Ze="mdc-tab-indicator--active",_t="mdc-tab-indicator--no-transition";class at{constructor(he){this._items=he}hide(){this._items.forEach(he=>he.deactivateInkBar())}alignToElement(he){const q=this._items.find(Ne=>Ne.elementRef.nativeElement===he),Re=this._currentItem;if(q!==Re&&(Re?.deactivateInkBar(),q)){const Ne=Re?.elementRef.nativeElement.getBoundingClientRect?.();q.activateInkBar(Ne),this._currentItem=q}}}let pt=(()=>{class we{constructor(){this._elementRef=(0,e.WQX)(e.aKT),this._fitToContent=!1}get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(q){this._fitToContent!==q&&(this._fitToContent=q,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(q){const Re=this._elementRef.nativeElement;if(!q||!Re.getBoundingClientRect||!this._inkBarContentElement)return void Re.classList.add(Ze);const Ne=Re.getBoundingClientRect(),gt=q.width/Ne.width,$e=q.left-Ne.left;Re.classList.add(_t),this._inkBarContentElement.style.setProperty("transform",`translateX(${$e}px) scaleX(${gt})`),Re.getBoundingClientRect(),Re.classList.remove(_t),Re.classList.add(Ze),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this._elementRef.nativeElement.classList.remove(Ze)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const q=this._elementRef.nativeElement.ownerDocument||document,Re=this._inkBarElement=q.createElement("span"),Ne=this._inkBarContentElement=q.createElement("span");Re.className="mdc-tab-indicator",Ne.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",Re.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this._elementRef.nativeElement.querySelector(".mdc-tab__content"):this._elementRef.nativeElement).appendChild(this._inkBarElement)}static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275dir=e.FsC({type:we,inputs:{fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39]},features:[e.GFd]})}return we})(),ue=(()=>{class we extends pt{constructor(q){super(),this.elementRef=q,this.disabled=!1}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Re,Ne){2&Re&&(e.BMQ("aria-disabled",!!Ne.disabled),e.AVh("mat-mdc-tab-disabled",Ne.disabled))},inputs:{disabled:[2,"disabled","disabled",e.L39]},standalone:!0,features:[e.GFd,e.Vt3]})}return we})();const Ie=(0,z.BQ)({passive:!0});let yt=(()=>{class we{get selectedIndex(){return this._selectedIndex}set selectedIndex(q){const Re=isNaN(q)?0:q;this._selectedIndex!=Re&&(this._selectedIndexChanged=!0,this._selectedIndex=Re,this._keyManager&&this._keyManager.updateActiveItem(Re))}constructor(q,Re,Ne,gt,$e,Fe,Ge){this._elementRef=q,this._changeDetectorRef=Re,this._viewportRuler=Ne,this._dir=gt,this._ngZone=$e,this._platform=Fe,this._animationMode=Ge,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new S.B,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new S.B,this.disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new e.bkB,this.indexFocused=new e.bkB,$e.runOutsideAngular(()=>{(0,l.R)(q.nativeElement,"mouseleave").pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}ngAfterViewInit(){(0,l.R)(this._previousPaginator.nativeElement,"touchstart",Ie).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,l.R)(this._nextPaginator.nativeElement,"touchstart",Ie).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const q=this._dir?this._dir.change:(0,x.of)("ltr"),Re=this._viewportRuler.change(150),Ne=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new $.Bu(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,J.s)(1)).subscribe(Ne),(0,f.h)(q,Re,this._items.changes,this._itemsResized()).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ne()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(gt=>{this.indexFocused.emit(gt),this._setTabFocus(gt)})}_itemsResized(){return"function"!=typeof ResizeObserver?I.w:this._items.changes.pipe((0,ee.Z)(this._items),(0,ie.n)(q=>new d.c(Re=>this._ngZone.runOutsideAngular(()=>{const Ne=new ResizeObserver(gt=>Re.next(gt));return q.forEach(gt=>Ne.observe(gt.elementRef.nativeElement)),()=>{Ne.disconnect()}}))),(0,ge.i)(1),(0,ae.p)(q=>q.some(Re=>Re.contentRect.width>0&&Re.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._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(q){if(!(0,j.rp)(q))switch(q.keyCode){case j.Fm:case j.t6:if(this.focusIndex!==this.selectedIndex){const Re=this._items.get(this.focusIndex);Re&&!Re.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(q))}break;default:this._keyManager.onKeydown(q)}}_onContentChanges(){const q=this._elementRef.nativeElement.textContent;q!==this._currentTextContent&&(this._currentTextContent=q||"",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(q){!this._isValidIndex(q)||this.focusIndex===q||!this._keyManager||this._keyManager.setActiveItem(q)}_isValidIndex(q){return!this._items||!!this._items.toArray()[q]}_setTabFocus(q){if(this._showPaginationControls&&this._scrollToLabel(q),this._items&&this._items.length){this._items.toArray()[q].focus();const Re=this._tabListContainer.nativeElement;Re.scrollLeft="ltr"==this._getLayoutDirection()?0:Re.scrollWidth-Re.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const q=this.scrollDistance,Re="ltr"===this._getLayoutDirection()?-q:q;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Re)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(q){this._scrollTo(q)}_scrollHeader(q){return this._scrollTo(this._scrollDistance+("before"==q?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(q){this._stopInterval(),this._scrollHeader(q)}_scrollToLabel(q){if(this.disablePagination)return;const Re=this._items?this._items.toArray()[q]:null;if(!Re)return;const Ne=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:gt,offsetWidth:$e}=Re.elementRef.nativeElement;let Fe,Ge;"ltr"==this._getLayoutDirection()?(Fe=gt,Ge=Fe+$e):(Ge=this._tabListInner.nativeElement.offsetWidth-gt,Fe=Ge-$e);const et=this.scrollDistance,st=this.scrollDistance+Ne;Fest&&(this.scrollDistance+=Math.min(Ge-st,Fe-et))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const q=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;q||(this.scrollDistance=0),q!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=q}}_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 q=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Re=q?q.elementRef.nativeElement:null;Re?this._inkBar.alignToElement(Re):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(q,Re){Re&&null!=Re.button&&0!==Re.button||(this._stopInterval(),(0,T.O)(650,100).pipe((0,Q.Q)((0,f.h)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Ne,distance:gt}=this._scrollHeader(q);(0===gt||gt>=Ne)&&this._stopInterval()}))}_scrollTo(q){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Re=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Re,q)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Re,distance:this._scrollDistance}}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(R.Xj),e.rXU(W.dS,8),e.rXU(e.SKi),e.rXU(z.OD),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:we,inputs:{disablePagination:[2,"disablePagination","disablePagination",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg]},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[e.GFd]})}return we})(),Ye=(()=>{class we extends yt{constructor(q,Re,Ne,gt,$e,Fe,Ge){super(q,Re,Ne,gt,$e,Fe,Ge),this.disableRipple=!1}ngAfterContentInit(){this._inkBar=new at(this._items),super.ngAfterContentInit()}_itemSelected(q){q.preventDefault()}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(R.Xj),e.rXU(W.dS,8),e.rXU(e.SKi),e.rXU(z.OD),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-header"]],contentQueries:function(Re,Ne,gt){if(1&Re&&e.wni(gt,ue,4),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne._items=$e)}},viewQuery:function(Re,Ne){if(1&Re&&(e.GBs(m,7),e.GBs(h,7),e.GBs(C,7),e.GBs(k,5),e.GBs(L,5)),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._tabListContainer=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabList=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabListInner=gt.first),e.mGM(gt=e.lsd())&&(Ne._nextPaginator=gt.first),e.mGM(gt=e.lsd())&&(Ne._previousPaginator=gt.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(Re,Ne){2&Re&&e.AVh("mat-mdc-tab-header-pagination-controls-enabled",Ne._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==Ne._getLayoutDirection())},inputs:{disableRipple:[2,"disableRipple","disableRipple",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.aNF],ngContentSelectors:n,decls:13,vars:10,consts:[["previousPaginator",""],["tabListContainer",""],["tabList",""],["tabListInner",""],["nextPaginator",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"click","mousedown","touchend","matRippleDisabled","disabled"],[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"],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"mousedown","click","touchend","matRippleDisabled","disabled"]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.NAR(),e.j41(0,"button",5,0),e.bIt("click",function(){return e.eBV(gt),e.Njj(Ne._handlePaginatorClick("before"))})("mousedown",function(Fe){return e.eBV(gt),e.Njj(Ne._handlePaginatorPress("before",Fe))})("touchend",function(){return e.eBV(gt),e.Njj(Ne._stopInterval())}),e.nrm(2,"div",6),e.k0s(),e.j41(3,"div",7,1),e.bIt("keydown",function(Fe){return e.eBV(gt),e.Njj(Ne._handleKeydown(Fe))}),e.j41(5,"div",8,2),e.bIt("cdkObserveContent",function(){return e.eBV(gt),e.Njj(Ne._onContentChanges())}),e.j41(7,"div",9,3),e.SdG(9),e.k0s()()(),e.j41(10,"button",10,4),e.bIt("mousedown",function(Fe){return e.eBV(gt),e.Njj(Ne._handlePaginatorPress("after",Fe))})("click",function(){return e.eBV(gt),e.Njj(Ne._handlePaginatorClick("after"))})("touchend",function(){return e.eBV(gt),e.Njj(Ne._stopInterval())}),e.nrm(12,"div",6),e.k0s()}2&Re&&(e.AVh("mat-mdc-tab-header-pagination-disabled",Ne._disableScrollBefore),e.Y8G("matRippleDisabled",Ne._disableScrollBefore||Ne.disableRipple)("disabled",Ne._disableScrollBefore||null),e.R7$(3),e.AVh("_mat-animation-noopable","NoopAnimations"===Ne._animationMode),e.R7$(7),e.AVh("mat-mdc-tab-header-pagination-disabled",Ne._disableScrollAfter),e.Y8G("matRippleDisabled",Ne._disableScrollAfter||Ne.disableRipple)("disabled",Ne._disableScrollAfter||null))},dependencies:[t.r6,Te.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;background:none;border:none;outline:0;padding: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-header-inactive-ripple-color)}.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-header-pagination-icon-color)}.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-animation-noopable span.mdc-tab-indicator__content,._mat-animation-noopable span.mdc-tab__text-label{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-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-group-inverted-header .mat-mdc-tab-label-container{border-bottom:none;border-top-style:solid;border-top-width:var(--mat-tab-header-divider-height);border-top-color:var(--mat-tab-header-divider-color)}.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}.mat-mdc-tab::before{margin:5px}.cdk-high-contrast-active .mat-mdc-tab[aria-disabled=true]{color:GrayText}"],encapsulation:2})}return we})();const rt=new e.nKC("MAT_TABS_CONFIG"),Yt={translateTab:(0,D.hZ)("translateTab",[(0,D.wk)("center, void, left-origin-center, right-origin-center",(0,D.iF)({transform:"none"})),(0,D.wk)("left",(0,D.iF)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,D.wk)("right",(0,D.iF)({transform:"translate3d(100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,D.kY)("* => left, * => right, left => center, right => center",(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,D.kY)("void => left-origin-center",[(0,D.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"}),(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,D.kY)("void => right-origin-center",[(0,D.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"}),(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let Nt=(()=>{class we extends w.I3{constructor(q,Re,Ne,gt){super(q,Re,gt),this._host=Ne,this._centeringSub=y.yU.EMPTY,this._leavingSub=y.yU.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,ee.Z)(this._host._isCenterPosition(this._host._position))).subscribe(q=>{q&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU((0,e.Rfq)(()=>Et)),e.rXU(de.qQ))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabBodyHost",""]],standalone:!0,features:[e.Vt3]})}return we})(),Et=(()=>{class we{set position(q){this._positionIndex=q,this._computePositionAnimationState()}constructor(q,Re,Ne){this._elementRef=q,this._dir=Re,this._dirChangeSubscription=y.yU.EMPTY,this._translateTabComplete=new S.B,this._onCentering=new e.bkB,this._beforeCentering=new e.bkB,this._afterLeavingCenter=new e.bkB,this._onCentered=new e.bkB(!0),this.animationDuration="500ms",this.preserveContent=!1,Re&&(this._dirChangeSubscription=Re.change.subscribe(gt=>{this._computePositionAnimationState(gt),Ne.markForCheck()})),this._translateTabComplete.pipe((0,Me.F)((gt,$e)=>gt.fromState===$e.fromState&>.toState===$e.toState)).subscribe(gt=>{this._isCenterPosition(gt.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(gt.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(q){const Re=this._isCenterPosition(q.toState);this._beforeCentering.emit(Re),Re&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(q){return"center"==q||"left-origin-center"==q||"right-origin-center"==q}_computePositionAnimationState(q=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==q?"left":"right":this._positionIndex>0?"ltr"==q?"right":"left":"center"}_computePositionFromOrigin(q){const Re=this._getLayoutDirection();return"ltr"==Re&&q<=0||"rtl"==Re&&q>0?"left-origin-center":"right-origin-center"}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(W.dS,8),e.rXU(e.gRc))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-body"]],viewQuery:function(Re,Ne){if(1&Re&&e.GBs(w.I3,5),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._portalHost=gt.first)}},hostAttrs:[1,"mat-mdc-tab-body"],inputs:{_content:[0,"content","_content"],origin:"origin",animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"},standalone:!0,features:[e.aNF],decls:3,vars:6,consts:[["content",""],["cdkScrollable","",1,"mat-mdc-tab-body-content"],["matTabBodyHost",""]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.j41(0,"div",1,0),e.bIt("@translateTab.start",function(Fe){return e.eBV(gt),e.Njj(Ne._onTranslateTabStarted(Fe))})("@translateTab.done",function(Fe){return e.eBV(gt),e.Njj(Ne._translateTabComplete.next(Fe))}),e.DNE(2,v,0,0,"ng-template",2),e.k0s()}2&Re&&e.Y8G("@translateTab",e.l_i(3,r,Ne._position,e.eq3(1,_,Ne.animationDuration)))},dependencies:[Nt,R.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}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-mdc-tab-body-content[style*="visibility: hidden"]{display:none}'],encapsulation:2,data:{animation:[Yt.translateTab]}})}return we})(),Vt=0,tt=(()=>{class we{get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(q){this._fitInkBarToContent=q,this._changeDetectorRef.markForCheck()}get selectedIndex(){return this._selectedIndex}set selectedIndex(q){this._indexToSelect=isNaN(q)?null:q}get animationDuration(){return this._animationDuration}set animationDuration(q){const Re=q+"";this._animationDuration=/^\d+$/.test(Re)?q+"ms":Re}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(q){this._contentTabIndex=isNaN(q)?null:q}get backgroundColor(){return this._backgroundColor}set backgroundColor(q){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),q&&Re.add("mat-tabs-with-background",`mat-background-${q}`),this._backgroundColor=q}constructor(q,Re,Ne,gt){this._elementRef=q,this._changeDetectorRef=Re,this._animationMode=gt,this._tabs=new e.rOR,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=y.yU.EMPTY,this._tabLabelSubscription=y.yU.EMPTY,this._fitInkBarToContent=!1,this.stretchTabs=!0,this.dynamicHeight=!1,this._selectedIndex=null,this.headerPosition="above",this.disablePagination=!1,this.disableRipple=!1,this.preserveContent=!1,this.selectedIndexChange=new e.bkB,this.focusChange=new e.bkB,this.animationDone=new e.bkB,this.selectedTabChange=new e.bkB(!0),this._isServer=!(0,e.WQX)(z.OD).isBrowser,this._groupId=Vt++,this.animationDuration=Ne&&Ne.animationDuration?Ne.animationDuration:"500ms",this.disablePagination=!(!Ne||null==Ne.disablePagination)&&Ne.disablePagination,this.dynamicHeight=!(!Ne||null==Ne.dynamicHeight)&&Ne.dynamicHeight,null!=Ne?.contentTabIndex&&(this.contentTabIndex=Ne.contentTabIndex),this.preserveContent=!!Ne?.preserveContent,this.fitInkBarToContent=!(!Ne||null==Ne.fitInkBarToContent)&&Ne.fitInkBarToContent,this.stretchTabs=!Ne||null==Ne.stretchTabs||Ne.stretchTabs}ngAfterContentChecked(){const q=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=q){const Re=null==this._selectedIndex;if(!Re){this.selectedTabChange.emit(this._createChangeEvent(q));const Ne=this._tabBodyWrapper.nativeElement;Ne.style.minHeight=Ne.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Ne,gt)=>Ne.isActive=gt===q),Re||(this.selectedIndexChange.emit(q),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Re,Ne)=>{Re.position=Ne-q,null!=this._selectedIndex&&0==Re.position&&!Re.origin&&(Re.origin=q-this._selectedIndex)}),this._selectedIndex!==q&&(this._selectedIndex=q,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const q=this._clampTabIndex(this._indexToSelect);if(q===this._selectedIndex){const Re=this._tabs.toArray();let Ne;for(let gt=0;gt{Re[q].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(q))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,ee.Z)(this._allTabs)).subscribe(q=>{this._tabs.reset(q.filter(Re=>Re._closestTabGroup===this||!Re._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(q){const Re=this._tabHeader;Re&&(Re.focusIndex=q)}_focusChanged(q){this._lastFocusedTabIndex=q,this.focusChange.emit(this._createChangeEvent(q))}_createChangeEvent(q){const Re=new $t;return Re.index=q,this._tabs&&this._tabs.length&&(Re.tab=this._tabs.toArray()[q]),Re}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,f.h)(...this._tabs.map(q=>q._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(q){return Math.min(this._tabs.length-1,Math.max(q||0,0))}_getTabLabelId(q){return`mat-tab-label-${this._groupId}-${q}`}_getTabContentId(q){return`mat-tab-content-${this._groupId}-${q}`}_setTabBodyWrapperHeight(q){if(!this.dynamicHeight||!this._tabBodyWrapperHeight)return;const Re=this._tabBodyWrapper.nativeElement;Re.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Re.style.height=q+"px")}_removeTabBodyWrapperHeight(){const q=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=q.clientHeight,q.style.height="",this.animationDone.emit()}_handleClick(q,Re,Ne){Re.focusIndex=Ne,q.disabled||(this.selectedIndex=Ne)}_getTabIndex(q){return q===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(q,Re){q&&"mouse"!==q&&"touch"!==q&&(this._tabHeader.focusIndex=Re)}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(rt,8),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-group"]],contentQueries:function(Re,Ne,gt){if(1&Re&&e.wni(gt,pe,5),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne._allTabs=$e)}},viewQuery:function(Re,Ne){if(1&Re&&(e.GBs(V,5),e.GBs(N,5)),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._tabBodyWrapper=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabHeader=gt.first)}},hostAttrs:[1,"mat-mdc-tab-group"],hostVars:10,hostBindings:function(Re,Ne){2&Re&&(e.HbH("mat-"+(Ne.color||"primary")),e.xc7("--mat-tab-animation-duration",Ne.animationDuration),e.AVh("mat-mdc-tab-group-dynamic-height",Ne.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===Ne.headerPosition)("mat-mdc-tab-group-stretch-tabs",Ne.stretchTabs))},inputs:{color:"color",fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39],stretchTabs:[2,"mat-stretch-tabs","stretchTabs",e.L39],dynamicHeight:[2,"dynamicHeight","dynamicHeight",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg],headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:[2,"contentTabIndex","contentTabIndex",e.Udg],disablePagination:[2,"disablePagination","disablePagination",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],preserveContent:[2,"preserveContent","preserveContent",e.L39],backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],standalone:!0,features:[e.Jv_([{provide:be,useExisting:we}]),e.GFd,e.aNF],ngContentSelectors:n,decls:9,vars:6,consts:[["tabHeader",""],["tabBodyWrapper",""],["tabNode",""],[3,"indexFocused","selectFocusedIndex","selectedIndex","disableRipple","disablePagination"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"id","mdc-tab--active","class","disabled","fitInkBarToContent"],[1,"mat-mdc-tab-body-wrapper"],["role","tabpanel",3,"id","mat-mdc-tab-body-active","class","content","position","origin","animationDuration","preserveContent"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-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","id","content","position","origin","animationDuration","preserveContent"]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.NAR(),e.j41(0,"mat-tab-header",3,0),e.bIt("indexFocused",function(Fe){return e.eBV(gt),e.Njj(Ne._focusChanged(Fe))})("selectFocusedIndex",function(Fe){return e.eBV(gt),e.Njj(Ne.selectedIndex=Fe)}),e.Z7z(2,qe,8,17,"div",4,e.fX1),e.k0s(),e.DNE(4,Ke,1,0),e.j41(5,"div",5,1),e.Z7z(7,se,1,13,"mat-tab-body",6,e.fX1),e.k0s()}2&Re&&(e.Y8G("selectedIndex",Ne.selectedIndex||0)("disableRipple",Ne.disableRipple)("disablePagination",Ne.disablePagination),e.R7$(2),e.Dyx(Ne._tabs),e.R7$(2),e.vxM(Ne._isServer?4:-1),e.R7$(),e.AVh("_mat-animation-noopable","NoopAnimations"===Ne._animationMode),e.R7$(2),e.Dyx(Ne._tabs))},dependencies:[Ye,ue,$.vR,t.r6,w.I3,Et],styles:['.mdc-tab{min-width:90px;padding-right:24px;padding-left:24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;margin:0;padding-top:0;padding-bottom:0;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;-webkit-appearance:none;z-index:1}.mdc-tab::-moz-focus-inner{padding:0;border:0}.mdc-tab[hidden]{display:none}.mdc-tab--min-width{flex:0 1 auto}.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__icon{transition:150ms color linear;z-index:2}.mdc-tab--stacked .mdc-tab__content{flex-direction:column;align-items:center;justify-content:center}.mdc-tab--stacked .mdc-tab__text-label{padding-top:6px;padding-bottom:4px}.mdc-tab--active .mdc-tab__text-label,.mdc-tab--active .mdc-tab__icon{transition-delay:100ms}.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label{padding-left:8px;padding-right:0}[dir=rtl] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label,.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label[dir=rtl]{padding-left:0;padding-right:8px}.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{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__content--icon{align-self:center;margin:0 auto}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}.mdc-tab-indicator .mdc-tab-indicator__content{transition:250ms transform cubic-bezier(0.4, 0, 0.2, 1)}.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition:150ms opacity linear}.mdc-tab-indicator--active.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition-delay:100ms}.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;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.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-header-disabled-ripple-color)}.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-header-inactive-ripple-color)}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);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-header-inactive-ripple-color)}.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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-mdc-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-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-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-header-with-background-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-header-with-background-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}'],encapsulation:2})}return we})();class $t{}let zt=0,Jt=(()=>{class we extends yt{get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(q){this._fitInkBarToContent.next(q),this._changeDetectorRef.markForCheck()}get animationDuration(){return this._animationDuration}set animationDuration(q){const Re=q+"";this._animationDuration=/^\d+$/.test(Re)?q+"ms":Re}get backgroundColor(){return this._backgroundColor}set backgroundColor(q){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),q&&Re.add("mat-tabs-with-background",`mat-background-${q}`),this._backgroundColor=q}constructor(q,Re,Ne,gt,$e,Fe,Ge,et){super(q,gt,$e,Re,Ne,Fe,Ge),this._fitInkBarToContent=new F.t(!1),this.stretchTabs=!0,this.disableRipple=!1,this.color="primary",this.disablePagination=!(!et||null==et.disablePagination)&&et.disablePagination,this.fitInkBarToContent=!(!et||null==et.fitInkBarToContent)&&et.fitInkBarToContent,this.stretchTabs=!et||null==et.stretchTabs||et.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new at(this._items),this._items.changes.pipe((0,ee.Z)(null),(0,Q.Q)(this._destroyed)).subscribe(()=>{this.updateActiveLink()}),super.ngAfterContentInit()}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const q=this._items.toArray();for(let Re=0;Re.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}.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-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-header-with-background-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-mdc-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-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-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-header-with-background-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-header-with-background-foreground-color)}"],encapsulation:2})}return we})(),St=(()=>{class we extends pt{get active(){return this._isActive}set active(q){q!==this._isActive&&(this._isActive=q,this._tabNavBar.updateActiveLink())}get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}constructor(q,Re,Ne,gt,$e,Fe){super(),this._tabNavBar=q,this.elementRef=Re,this._focusMonitor=$e,this._destroyed=new S.B,this._isActive=!1,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.id="mat-tab-link-"+zt++,this.rippleConfig=Ne||{},this.tabIndex=parseInt(gt)||0,"NoopAnimations"===Fe&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),q._fitInkBarToContent.pipe((0,Q.Q)(this._destroyed)).subscribe(Ge=>{this.fitInkBarToContent=Ge})}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(q){(q.keyCode===j.t6||q.keyCode===j.Fm)&&(this.disabled?q.preventDefault():this._tabNavBar.tabPanel&&(q.keyCode===j.t6&&q.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")}_getTabIndex(){return this._tabNavBar.tabPanel?this._isActive&&!this.disabled?0:-1:this.disabled?-1:this.tabIndex}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(Jt),e.rXU(e.aKT),e.rXU(t.$E,8),e.kS0("tabindex"),e.rXU($.FN),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-mdc-focus-indicator"],hostVars:11,hostBindings:function(Re,Ne){1&Re&&e.bIt("focus",function(){return Ne._handleFocus()})("keydown",function($e){return Ne._handleKeydown($e)}),2&Re&&(e.BMQ("aria-controls",Ne._getAriaControls())("aria-current",Ne._getAriaCurrent())("aria-disabled",Ne.disabled)("aria-selected",Ne._getAriaSelected())("id",Ne.id)("tabIndex",Ne._getTabIndex())("role",Ne._getRole()),e.AVh("mat-mdc-tab-disabled",Ne.disabled)("mdc-tab--active",Ne.active))},inputs:{active:[2,"active","active",e.L39],disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",q=>null==q?0:(0,e.Udg)(q)],id:"id"},exportAs:["matTabLink"],standalone:!0,features:[e.GFd,e.Vt3,e.aNF],attrs:me,ngContentSelectors:n,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(Re,Ne){1&Re&&(e.NAR(),e.nrm(0,"span",0)(1,"div",1),e.j41(2,"span",2)(3,"span",3),e.SdG(4),e.k0s()()),2&Re&&(e.R7$(),e.Y8G("matRippleTrigger",Ne.elementRef.nativeElement)("matRippleDisabled",Ne.rippleDisabled))},dependencies:[t.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;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab-link:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab-link:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.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-header-active-ripple-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.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-header-disabled-ripple-color)}.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-header-inactive-ripple-color)}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);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-header-inactive-ripple-color)}.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}}'],encapsulation:2,changeDetection:0})}return we})(),dt=(()=>{class we{constructor(){this.id="mat-tab-nav-panel-"+zt++}static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function(Re,Ne){2&Re&&e.BMQ("aria-labelledby",Ne._activeTabId)("id",Ne.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],standalone:!0,features:[e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Ne){1&Re&&(e.NAR(),e.SdG(0))},encapsulation:2,changeDetection:0})}return we})(),Ae=(()=>{class we{static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275mod=e.$C({type:we});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return we})()},5911:(Qe,te,g)=>{"use strict";g.d(te,{KQ:()=>I,s5:()=>T});var e=g(4438),t=g(6600),w=g(6860),S=g(177);const l=["*",[["mat-toolbar-row"]]],x=["*","mat-toolbar-row"];let f=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275dir=e.FsC({type:y,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"],standalone:!0})}return y})(),I=(()=>{class y{constructor(R,z,W){this._elementRef=R,this._platform=z,this._document=W}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.aKT),e.rXU(w.OD),e.rXU(S.qQ))};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["mat-toolbar"]],contentQueries:function(z,W,$){if(1&z&&e.wni($,f,5),2&z){let j;e.mGM(j=e.lsd())&&(W._toolbarRows=j)}},hostAttrs:[1,"mat-toolbar"],hostVars:6,hostBindings:function(z,W){2&z&&(e.HbH(W.color?"mat-"+W.color:""),e.AVh("mat-toolbar-multiple-rows",W._toolbarRows.length>0)("mat-toolbar-single-row",0===W._toolbarRows.length))},inputs:{color:"color"},exportAs:["matToolbar"],standalone:!0,features:[e.aNF],ngContentSelectors:x,decls:2,vars:0,template:function(z,W){1&z&&(e.NAR(l),e.SdG(0),e.SdG(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color);color:var(--mat-toolbar-container-text-color)}.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);font-size:var(--mat-toolbar-title-text-size);line-height:var(--mat-toolbar-title-text-line-height);font-weight:var(--mat-toolbar-title-text-weight);letter-spacing:var(--mat-toolbar-title-text-tracking);margin:0}.cdk-high-contrast-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{--mdc-text-button-label-text-color:var(--mat-toolbar-container-text-color);--mdc-outlined-button-label-text-color:var(--mat-toolbar-container-text-color)}.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)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height)}}"],encapsulation:2,changeDetection:0})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return y})()},4823:(Qe,te,g)=>{"use strict";g.d(te,{oV:()=>h,uc:()=>L});var e=g(6977),t=g(6697),w=g(4085),S=g(7336),l=g(4438),x=g(177),f=g(6860),I=g(8617),d=g(8203),T=g(6969),y=g(5542),F=g(6939),R=g(1413),W=(g(9969),g(6600));const $=["tooltip"],J=new l.nKC("mat-tooltip-scroll-strategy",{providedIn:"root",factory:()=>{const _=(0,l.WQX)(T.hJ);return()=>_.scrollStrategies.reposition({scrollThrottle:20})}}),ie={provide:J,deps:[T.hJ],useFactory:function ee(_){return()=>_.scrollStrategies.reposition({scrollThrottle:20})}},ae=new l.nKC("mat-tooltip-default-options",{providedIn:"root",factory:function ge(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),Te="tooltip-panel",de=(0,f.BQ)({passive:!0});let h=(()=>{class _{get position(){return this._position}set position(v){v!==this._position&&(this._position=v,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(v){this._positionAtOrigin=(0,w.he)(v),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(v){this._disabled=(0,w.he)(v),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(v){this._showDelay=(0,w.OE)(v)}get hideDelay(){return this._hideDelay}set hideDelay(v){this._hideDelay=(0,w.OE)(v),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(v){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=v?String(v).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage(),this._ngZone.runOutsideAngular(()=>{Promise.resolve().then(()=>{this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")})}))}get tooltipClass(){return this._tooltipClass}set tooltipClass(v){this._tooltipClass=v,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}constructor(v,V,N,ne,Ee,ze,qe,Ke,se,X,me,ce){this._overlay=v,this._elementRef=V,this._scrollDispatcher=N,this._viewContainerRef=ne,this._ngZone=Ee,this._platform=ze,this._ariaDescriber=qe,this._focusMonitor=Ke,this._dir=X,this._defaultOptions=me,this._position="below",this._positionAtOrigin=!1,this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._tooltipComponent=C,this._viewportMargin=8,this._cssClassPrefix="mat-mdc",this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new R.B,this._scrollStrategy=se,this._document=ce,me&&(this._showDelay=me.showDelay,this._hideDelay=me.hideDelay,me.position&&(this.position=me.position),me.positionAtOrigin&&(this.positionAtOrigin=me.positionAtOrigin),me.touchGestures&&(this.touchGestures=me.touchGestures)),X.change.pipe((0,e.Q)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)}),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,e.Q)(this._destroyed)).subscribe(v=>{v?"keyboard"===v&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const v=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([V,N])=>{v.removeEventListener(V,N,de)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(v,this.message,"tooltip"),this._focusMonitor.stopMonitoring(v)}show(v=this.showDelay,V){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const N=this._createOverlay(V);this._detach(),this._portal=this._portal||new F.A8(this._tooltipComponent,this._viewContainerRef);const ne=this._tooltipInstance=N.attach(this._portal).instance;ne._triggerElement=this._elementRef.nativeElement,ne._mouseLeaveHideDelay=this._hideDelay,ne.afterHidden().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),ne.show(v)}hide(v=this.hideDelay){const V=this._tooltipInstance;V&&(V.isVisible()?V.hide(v):(V._cancelPendingAnimations(),this._detach()))}toggle(v){this._isTooltipVisible()?this.hide():this.show(void 0,v)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(v){if(this._overlayRef){const ne=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!v)&&ne._origin instanceof l.aKT)return this._overlayRef;this._detach()}const V=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),N=this._overlay.position().flexibleConnectedTo(this.positionAtOrigin&&v||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(V);return N.positionChanges.pipe((0,e.Q)(this._destroyed)).subscribe(ne=>{this._updateCurrentPositionClass(ne.connectionPair),this._tooltipInstance&&ne.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:N,panelClass:`${this._cssClassPrefix}-${Te}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,e.Q)(this._destroyed)).subscribe(ne=>{this._isTooltipVisible()&&ne.keyCode===S._f&&!(0,S.rp)(ne)&&(ne.preventDefault(),ne.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(v){const V=v.getConfig().positionStrategy,N=this._getOrigin(),ne=this._getOverlayPosition();V.withPositions([this._addOffset({...N.main,...ne.main}),this._addOffset({...N.fallback,...ne.fallback})])}_addOffset(v){const N=!this._dir||"ltr"==this._dir.value;return"top"===v.originY?v.offsetY=-8:"bottom"===v.originY?v.offsetY=8:"start"===v.originX?v.offsetX=N?-8:8:"end"===v.originX&&(v.offsetX=N?8:-8),v}_getOrigin(){const v=!this._dir||"ltr"==this._dir.value,V=this.position;let N;"above"==V||"below"==V?N={originX:"center",originY:"above"==V?"top":"bottom"}:"before"==V||"left"==V&&v||"right"==V&&!v?N={originX:"start",originY:"center"}:("after"==V||"right"==V&&v||"left"==V&&!v)&&(N={originX:"end",originY:"center"});const{x:ne,y:Ee}=this._invertPosition(N.originX,N.originY);return{main:N,fallback:{originX:ne,originY:Ee}}}_getOverlayPosition(){const v=!this._dir||"ltr"==this._dir.value,V=this.position;let N;"above"==V?N={overlayX:"center",overlayY:"bottom"}:"below"==V?N={overlayX:"center",overlayY:"top"}:"before"==V||"left"==V&&v||"right"==V&&!v?N={overlayX:"end",overlayY:"center"}:("after"==V||"right"==V&&v||"left"==V&&!v)&&(N={overlayX:"start",overlayY:"center"});const{x:ne,y:Ee}=this._invertPosition(N.overlayX,N.overlayY);return{main:N,fallback:{overlayX:ne,overlayY:Ee}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,t.s)(1),(0,e.Q)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(v){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=v,this._tooltipInstance._markForCheck())}_invertPosition(v,V){return"above"===this.position||"below"===this.position?"top"===V?V="bottom":"bottom"===V&&(V="top"):"end"===v?v="start":"start"===v&&(v="end"),{x:v,y:V}}_updateCurrentPositionClass(v){const{overlayY:V,originX:N,originY:ne}=v;let Ee;if(Ee="center"===V?this._dir&&"rtl"===this._dir.value?"end"===N?"left":"right":"start"===N?"left":"right":"bottom"===V&&"top"===ne?"above":"below",Ee!==this._currentPosition){const ze=this._overlayRef;if(ze){const qe=`${this._cssClassPrefix}-${Te}-`;ze.removePanelClass(qe+this._currentPosition),ze.addPanelClass(qe+Ee)}this._currentPosition=Ee}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",v=>{let V;this._setupPointerExitEventsIfNeeded(),void 0!==v.x&&void 0!==v.y&&(V=v),this.show(void 0,V)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",v=>{const V=v.targetTouches?.[0],N=V?{x:V.clientX,y:V.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(void 0,N),this._defaultOptions.touchLongPressShowDelay??500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const v=[];if(this._platformSupportsMouseEvents())v.push(["mouseleave",V=>{const N=V.relatedTarget;(!N||!this._overlayRef?.overlayElement.contains(N))&&this.hide()}],["wheel",V=>this._wheelListener(V)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const V=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};v.push(["touchend",V],["touchcancel",V])}this._addListeners(v),this._passiveListeners.push(...v)}_addListeners(v){v.forEach(([V,N])=>{this._elementRef.nativeElement.addEventListener(V,N,de)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(v){if(this._isTooltipVisible()){const V=this._document.elementFromPoint(v.clientX,v.clientY),N=this._elementRef.nativeElement;V!==N&&!N.contains(V)&&this.hide()}}_disableNativeGesturesIfNecessary(){const v=this.touchGestures;if("off"!==v){const V=this._elementRef.nativeElement,N=V.style;("on"===v||"INPUT"!==V.nodeName&&"TEXTAREA"!==V.nodeName)&&(N.userSelect=N.msUserSelect=N.webkitUserSelect=N.MozUserSelect="none"),("on"===v||!V.draggable)&&(N.webkitUserDrag="none"),N.touchAction="none",N.webkitTapHighlightColor="transparent"}}static#e=this.\u0275fac=function(V){return new(V||_)(l.rXU(T.hJ),l.rXU(l.aKT),l.rXU(y.R),l.rXU(l.c1b),l.rXU(l.SKi),l.rXU(f.OD),l.rXU(I.vr),l.rXU(I.FN),l.rXU(J),l.rXU(d.dS),l.rXU(ae,8),l.rXU(x.qQ))};static#t=this.\u0275dir=l.FsC({type:_,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(V,N){2&V&&l.AVh("mat-mdc-tooltip-disabled",N.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"],standalone:!0})}return _})(),C=(()=>{class _{constructor(v,V,N){this._changeDetectorRef=v,this._elementRef=V,this._isMultiline=!1,this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new R.B,this._showAnimation="mat-mdc-tooltip-show",this._hideAnimation="mat-mdc-tooltip-hide",this._animationsDisabled="NoopAnimations"===N}show(v){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},v)}hide(v){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},v)}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:v}){(!v||!this._triggerElement.contains(v))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const v=this._elementRef.nativeElement.getBoundingClientRect();return v.height>24&&v.width>=200}_handleAnimationEnd({animationName:v}){(v===this._showAnimation||v===this._hideAnimation)&&this._finalizeAnimation(v===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(v){v?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(v){const V=this._tooltip.nativeElement,N=this._showAnimation,ne=this._hideAnimation;if(V.classList.remove(v?ne:N),V.classList.add(v?N:ne),this._isVisible!==v&&(this._isVisible=v,this._changeDetectorRef.markForCheck()),v&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const Ee=getComputedStyle(V);("0s"===Ee.getPropertyValue("animation-duration")||"none"===Ee.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}v&&this._onShow(),this._animationsDisabled&&(V.classList.add("_mat-animation-noopable"),this._finalizeAnimation(v))}static#e=this.\u0275fac=function(V){return new(V||_)(l.rXU(l.gRc),l.rXU(l.aKT),l.rXU(l.bc$,8))};static#t=this.\u0275cmp=l.VBU({type:_,selectors:[["mat-tooltip-component"]],viewQuery:function(V,N){if(1&V&&l.GBs($,7),2&V){let ne;l.mGM(ne=l.lsd())&&(N._tooltip=ne.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(V,N){1&V&&l.bIt("mouseleave",function(Ee){return N._handleMouseLeave(Ee)}),2&V&&l.xc7("zoom",N.isVisible()?1:null)},standalone:!0,features:[l.aNF],decls:4,vars:4,consts:[["tooltip",""],[1,"mdc-tooltip","mdc-tooltip--shown","mat-mdc-tooltip",3,"animationend","ngClass"],[1,"mdc-tooltip__surface","mdc-tooltip__surface-animation"]],template:function(V,N){if(1&V){const ne=l.RV6();l.j41(0,"div",1,0),l.bIt("animationend",function(ze){return l.eBV(ne),l.Njj(N._handleAnimationEnd(ze))}),l.j41(2,"div",2),l.EFF(3),l.k0s()()}2&V&&(l.AVh("mdc-tooltip--multiline",N._isMultiline),l.Y8G("ngClass",N.tooltipClass),l.R7$(3),l.JRh(N.message))},dependencies:[x.YU],styles:['.mdc-tooltip__surface{word-break:break-all;word-break:var(--mdc-tooltip-word-break, normal);overflow-wrap:anywhere}.mdc-tooltip--showing-transition .mdc-tooltip__surface-animation{transition:opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-tooltip--hide-transition .mdc-tooltip__surface-animation{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-tooltip{position:fixed;display:none;z-index:9}.mdc-tooltip-wrapper--rich{position:relative}.mdc-tooltip--shown,.mdc-tooltip--showing,.mdc-tooltip--hide{display:inline-flex}.mdc-tooltip--shown.mdc-tooltip--rich,.mdc-tooltip--showing.mdc-tooltip--rich,.mdc-tooltip--hide.mdc-tooltip--rich{display:inline-block;left:-320px;position:absolute}.mdc-tooltip__surface{line-height:16px;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center}.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}@media screen and (forced-colors: active){.mdc-tooltip__surface::before{border-color:CanvasText}}.mdc-tooltip--rich .mdc-tooltip__surface{align-items:flex-start;display:flex;flex-direction:column;min-height:24px;min-width:40px;max-width:320px;position:relative}.mdc-tooltip--multiline .mdc-tooltip__surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mdc-tooltip__surface,.mdc-tooltip--multiline .mdc-tooltip__surface[dir=rtl]{text-align:right}.mdc-tooltip__surface .mdc-tooltip__title{margin:0 8px}.mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(200px - 2*8px);margin:8px;text-align:left}[dir=rtl] .mdc-tooltip__surface .mdc-tooltip__content,.mdc-tooltip__surface .mdc-tooltip__content[dir=rtl]{text-align:right}.mdc-tooltip--rich .mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(320px - 2*8px);align-self:stretch}.mdc-tooltip__surface .mdc-tooltip__content-link{text-decoration:none}.mdc-tooltip--rich-actions,.mdc-tooltip__content,.mdc-tooltip__title{z-index:1}.mdc-tooltip__surface-animation{opacity:0;transform:scale(0.8);will-change:transform,opacity}.mdc-tooltip--shown .mdc-tooltip__surface-animation{transform:scale(1);opacity:1}.mdc-tooltip--hide .mdc-tooltip__surface-animation{transform:scale(1)}.mdc-tooltip__caret-surface-top,.mdc-tooltip__caret-surface-bottom{position:absolute;height:24px;width:24px;transform:rotate(35deg) skewY(20deg) scaleX(0.9396926208)}.mdc-tooltip__caret-surface-top .mdc-elevation-overlay,.mdc-tooltip__caret-surface-bottom .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-tooltip__caret-surface-bottom{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);outline:1px solid rgba(0,0,0,0);z-index:-1}@media screen and (forced-colors: active){.mdc-tooltip__caret-surface-bottom{outline-color:CanvasText}}.mat-mdc-tooltip .mdc-tooltip__surface{background-color:var(--mdc-plain-tooltip-container-color)}.mat-mdc-tooltip .mdc-tooltip__surface{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__caret-surface-top,.mat-mdc-tooltip .mdc-tooltip__caret-surface-bottom{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__surface{color:var(--mdc-plain-tooltip-supporting-text-color)}.mat-mdc-tooltip .mdc-tooltip__surface{font-family:var(--mdc-plain-tooltip-supporting-text-font);line-height:var(--mdc-plain-tooltip-supporting-text-line-height);font-size:var(--mdc-plain-tooltip-supporting-text-size);font-weight:var(--mdc-plain-tooltip-supporting-text-weight);letter-spacing:var(--mdc-plain-tooltip-supporting-text-tracking)}.mat-mdc-tooltip{position:relative;transform:scale(0)}.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-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}'],encapsulation:2,changeDetection:0})}return _})(),L=(()=>{class _{static#e=this.\u0275fac=function(V){return new(V||_)};static#t=this.\u0275mod=l.$C({type:_});static#i=this.\u0275inj=l.G2t({providers:[ie],imports:[I.Pd,x.MD,T.z_,W.yE,W.yE,y.Gj]})}return _})()},7358:(Qe,te,g)=>{"use strict";g.d(te,{Zh:()=>J,d6:()=>I,jH:()=>$,lQ:()=>R,pO:()=>z,q1:()=>T,wx:()=>F,yI:()=>d});var e=g(4109),t=g(4438),w=g(6600),S=g(5024),l=g(4412),x=g(7786),f=g(6354);let I=(()=>{class ee extends e.xn{constructor(ge,ae,Me){super(ge,ae),this.disabled=!1,this.tabIndex=Number(Me)||0}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.aKT),t.rXU(e.NL),t.kS0("tabindex"))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],inputs:{disabled:[2,"disabled","disabled",t.L39],tabIndex:[2,"tabIndex","tabIndex",ge=>null==ge?0:(0,t.Udg)(ge)]},exportAs:["matTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.xn,useExisting:ee}]),t.GFd,t.Vt3]})}return ee})(),d=(()=>{class ee extends e.Sz{static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeDef",""]],inputs:{when:[0,"matTreeNodeDefWhen","when"],data:[0,"matTreeNode","data"]},standalone:!0,features:[t.Jv_([{provide:e.Sz,useExisting:ee}]),t.Vt3]})}return ee})(),T=(()=>{class ee extends e.s3{get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(ge){this._tabIndex=ge??0}constructor(ge,ae,Me,Te){super(ge,ae,Me),this.disabled=!1,this.tabIndex=Number(Te)||0}ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.aKT),t.rXU(e.NL),t.rXU(t._q3),t.kS0("tabindex"))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{node:[0,"matNestedTreeNode","node"],disabled:[2,"disabled","disabled",t.L39],tabIndex:"tabIndex"},exportAs:["matNestedTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.s3,useExisting:ee},{provide:e.xn,useExisting:ee},{provide:e.kZ,useExisting:ee}]),t.GFd,t.Vt3]})}return ee})(),F=(()=>{class ee{constructor(ge,ae){this.viewContainer=ge,this._node=ae}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.c1b),t.rXU(e.kZ,8))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeOutlet",""]],standalone:!0,features:[t.Jv_([{provide:e.a$,useExisting:ee}])]})}return ee})(),R=(()=>{class ee extends e.NL{constructor(){super(...arguments),this._nodeOutlet=void 0}static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275cmp=t.VBU({type:ee,selectors:[["mat-tree"]],viewQuery:function(ae,Me){if(1&ae&&t.GBs(F,7),2&ae){let Te;t.mGM(Te=t.lsd())&&(Me._nodeOutlet=Te.first)}},hostAttrs:["role","tree",1,"mat-tree"],exportAs:["matTree"],standalone:!0,features:[t.Jv_([{provide:e.NL,useExisting:ee}]),t.Vt3,t.aNF],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(ae,Me){1&ae&&t.eu8(0,0)},dependencies:[F],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color)}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color);font-family:var(--mat-tree-node-text-font);font-size:var(--mat-tree-node-text-size);font-weight:var(--mat-tree-node-text-weight)}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height)}.mat-nested-tree-node{border-bottom-width:0}"],encapsulation:2})}return ee})(),z=(()=>{class ee extends e.Hy{static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:[0,"matTreeNodeToggleRecursive","recursive"]},standalone:!0,features:[t.Jv_([{provide:e.Hy,useExisting:ee}]),t.Vt3]})}return ee})(),$=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=t.$C({type:ee});static#i=this.\u0275inj=t.G2t({imports:[e.Dc,w.yE,w.yE]})}return ee})();class J extends S.qS{constructor(){super(...arguments),this._data=new l.t([])}get data(){return this._data.value}set data(ie){this._data.next(ie)}connect(ie){return(0,x.h)(ie.viewChange,this._data).pipe((0,f.T)(()=>this.data))}disconnect(){}}},345:(Qe,te,g)=>{"use strict";g.d(te,{B7:()=>Te,Bb:()=>ke,fM:()=>rt,hE:()=>be,sG:()=>X,up:()=>Yt});var e=g(177),t=g(4438);class w extends e.VF{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class S extends w{static makeCurrent(){(0,e.ZD)(new S)}onAndCancel(we,he,q){return we.addEventListener(he,q),()=>{we.removeEventListener(he,q)}}dispatchEvent(we,he){we.dispatchEvent(he)}remove(we){we.parentNode&&we.parentNode.removeChild(we)}createElement(we,he){return(he=he||this.getDefaultDocument()).createElement(we)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(we){return we.nodeType===Node.ELEMENT_NODE}isShadowRoot(we){return we instanceof DocumentFragment}getGlobalEventTarget(we,he){return"window"===he?window:"document"===he?we:"body"===he?we.body:null}getBaseHref(we){const he=function x(){return l=l||document.querySelector("base"),l?l.getAttribute("href"):null}();return null==he?null:function f(Ae){return new URL(Ae,document.baseURI).pathname}(he)}resetBaseElement(){l=null}getUserAgent(){return window.navigator.userAgent}getCookie(we){return(0,e._b)(document.cookie,we)}}let l=null,d=(()=>{class Ae{build(){return new XMLHttpRequest}static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const T=new t.nKC("");let y=(()=>{class Ae{constructor(he,q){this._zone=q,this._eventNameToPlugin=new Map,he.forEach(Re=>{Re.manager=this}),this._plugins=he.slice().reverse()}addEventListener(he,q,Re){return this._findPluginFor(q).addEventListener(he,q,Re)}getZone(){return this._zone}_findPluginFor(he){let q=this._eventNameToPlugin.get(he);if(q)return q;if(q=this._plugins.find(Ne=>Ne.supports(he)),!q)throw new t.wOt(5101,!1);return this._eventNameToPlugin.set(he,q),q}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(T),t.KVO(t.SKi))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();class F{constructor(we){this._doc=we}}const R="ng-app-id";let z=(()=>{class Ae{constructor(he,q,Re,Ne={}){this.doc=he,this.appId=q,this.nonce=Re,this.platformId=Ne,this.styleRef=new Map,this.hostNodes=new Set,this.styleNodesInDOM=this.collectServerRenderedStyles(),this.platformIsServer=(0,e.Vy)(Ne),this.resetHostNodes()}addStyles(he){for(const q of he)1===this.changeUsageCount(q,1)&&this.onStyleAdded(q)}removeStyles(he){for(const q of he)this.changeUsageCount(q,-1)<=0&&this.onStyleRemoved(q)}ngOnDestroy(){const he=this.styleNodesInDOM;he&&(he.forEach(q=>q.remove()),he.clear());for(const q of this.getAllStyles())this.onStyleRemoved(q);this.resetHostNodes()}addHost(he){this.hostNodes.add(he);for(const q of this.getAllStyles())this.addStyleToHost(he,q)}removeHost(he){this.hostNodes.delete(he)}getAllStyles(){return this.styleRef.keys()}onStyleAdded(he){for(const q of this.hostNodes)this.addStyleToHost(q,he)}onStyleRemoved(he){const q=this.styleRef;q.get(he)?.elements?.forEach(Re=>Re.remove()),q.delete(he)}collectServerRenderedStyles(){const he=this.doc.head?.querySelectorAll(`style[${R}="${this.appId}"]`);if(he?.length){const q=new Map;return he.forEach(Re=>{null!=Re.textContent&&q.set(Re.textContent,Re)}),q}return null}changeUsageCount(he,q){const Re=this.styleRef;if(Re.has(he)){const Ne=Re.get(he);return Ne.usage+=q,Ne.usage}return Re.set(he,{usage:q,elements:[]}),q}getStyleElement(he,q){const Re=this.styleNodesInDOM,Ne=Re?.get(q);if(Ne?.parentNode===he)return Re.delete(q),Ne.removeAttribute(R),Ne;{const gt=this.doc.createElement("style");return this.nonce&>.setAttribute("nonce",this.nonce),gt.textContent=q,this.platformIsServer&>.setAttribute(R,this.appId),he.appendChild(gt),gt}}addStyleToHost(he,q){const Re=this.getStyleElement(he,q),Ne=this.styleRef,gt=Ne.get(q)?.elements;gt?gt.push(Re):Ne.set(q,{elements:[Re],usage:1})}resetHostNodes(){const he=this.hostNodes;he.clear(),he.add(this.doc.head)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ),t.KVO(t.sZ2),t.KVO(t.BIS,8),t.KVO(t.Agw))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const W={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"},$=/%COMP%/g,j="%COMP%",Q=`_nghost-${j}`,J=`_ngcontent-${j}`,ie=new t.nKC("",{providedIn:"root",factory:()=>!0});function Me(Ae,we){return we.map(he=>he.replace($,Ae))}let Te=(()=>{class Ae{constructor(he,q,Re,Ne,gt,$e,Fe,Ge=null){this.eventManager=he,this.sharedStylesHost=q,this.appId=Re,this.removeStylesOnCompDestroy=Ne,this.doc=gt,this.platformId=$e,this.ngZone=Fe,this.nonce=Ge,this.rendererByCompId=new Map,this.platformIsServer=(0,e.Vy)($e),this.defaultRenderer=new de(he,gt,Fe,this.platformIsServer)}createRenderer(he,q){if(!he||!q)return this.defaultRenderer;this.platformIsServer&&q.encapsulation===t.gXe.ShadowDom&&(q={...q,encapsulation:t.gXe.Emulated});const Re=this.getOrCreateRenderer(he,q);return Re instanceof C?Re.applyToHost(he):Re instanceof h&&Re.applyStyles(),Re}getOrCreateRenderer(he,q){const Re=this.rendererByCompId;let Ne=Re.get(q.id);if(!Ne){const gt=this.doc,$e=this.ngZone,Fe=this.eventManager,Ge=this.sharedStylesHost,et=this.removeStylesOnCompDestroy,st=this.platformIsServer;switch(q.encapsulation){case t.gXe.Emulated:Ne=new C(Fe,Ge,q,this.appId,et,gt,$e,st);break;case t.gXe.ShadowDom:return new m(Fe,Ge,he,q,gt,$e,this.nonce,st);default:Ne=new h(Fe,Ge,q,et,gt,$e,st)}Re.set(q.id,Ne)}return Ne}ngOnDestroy(){this.rendererByCompId.clear()}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(y),t.KVO(z),t.KVO(t.sZ2),t.KVO(ie),t.KVO(e.qQ),t.KVO(t.Agw),t.KVO(t.SKi),t.KVO(t.BIS))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();class de{constructor(we,he,q,Re){this.eventManager=we,this.doc=he,this.ngZone=q,this.platformIsServer=Re,this.data=Object.create(null),this.throwOnSyntheticProps=!0,this.destroyNode=null}destroy(){}createElement(we,he){return he?this.doc.createElementNS(W[he]||he,we):this.doc.createElement(we)}createComment(we){return this.doc.createComment(we)}createText(we){return this.doc.createTextNode(we)}appendChild(we,he){(c(we)?we.content:we).appendChild(he)}insertBefore(we,he,q){we&&(c(we)?we.content:we).insertBefore(he,q)}removeChild(we,he){we&&we.removeChild(he)}selectRootElement(we,he){let q="string"==typeof we?this.doc.querySelector(we):we;if(!q)throw new t.wOt(-5104,!1);return he||(q.textContent=""),q}parentNode(we){return we.parentNode}nextSibling(we){return we.nextSibling}setAttribute(we,he,q,Re){if(Re){he=Re+":"+he;const Ne=W[Re];Ne?we.setAttributeNS(Ne,he,q):we.setAttribute(he,q)}else we.setAttribute(he,q)}removeAttribute(we,he,q){if(q){const Re=W[q];Re?we.removeAttributeNS(Re,he):we.removeAttribute(`${q}:${he}`)}else we.removeAttribute(he)}addClass(we,he){we.classList.add(he)}removeClass(we,he){we.classList.remove(he)}setStyle(we,he,q,Re){Re&(t.czy.DashCase|t.czy.Important)?we.style.setProperty(he,q,Re&t.czy.Important?"important":""):we.style[he]=q}removeStyle(we,he,q){q&t.czy.DashCase?we.style.removeProperty(he):we.style[he]=""}setProperty(we,he,q){null!=we&&(we[he]=q)}setValue(we,he){we.nodeValue=he}listen(we,he,q){if("string"==typeof we&&!(we=(0,e.QT)().getGlobalEventTarget(this.doc,we)))throw new Error(`Unsupported event target ${we} for event ${he}`);return this.eventManager.addEventListener(we,he,this.decoratePreventDefault(q))}decoratePreventDefault(we){return he=>{if("__ngUnwrap__"===he)return we;!1===(this.platformIsServer?this.ngZone.runGuarded(()=>we(he)):we(he))&&he.preventDefault()}}}function c(Ae){return"TEMPLATE"===Ae.tagName&&void 0!==Ae.content}class m extends de{constructor(we,he,q,Re,Ne,gt,$e,Fe){super(we,Ne,gt,Fe),this.sharedStylesHost=he,this.hostEl=q,this.shadowRoot=q.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const Ge=Me(Re.id,Re.styles);for(const et of Ge){const st=document.createElement("style");$e&&st.setAttribute("nonce",$e),st.textContent=et,this.shadowRoot.appendChild(st)}}nodeOrShadowRoot(we){return we===this.hostEl?this.shadowRoot:we}appendChild(we,he){return super.appendChild(this.nodeOrShadowRoot(we),he)}insertBefore(we,he,q){return super.insertBefore(this.nodeOrShadowRoot(we),he,q)}removeChild(we,he){return super.removeChild(this.nodeOrShadowRoot(we),he)}parentNode(we){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(we)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class h extends de{constructor(we,he,q,Re,Ne,gt,$e,Fe){super(we,Ne,gt,$e),this.sharedStylesHost=he,this.removeStylesOnCompDestroy=Re,this.styles=Fe?Me(Fe,q.styles):q.styles}applyStyles(){this.sharedStylesHost.addStyles(this.styles)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles)}}class C extends h{constructor(we,he,q,Re,Ne,gt,$e,Fe){const Ge=Re+"-"+q.id;super(we,he,q,Ne,gt,$e,Fe,Ge),this.contentAttr=function ge(Ae){return J.replace($,Ae)}(Ge),this.hostAttr=function ae(Ae){return Q.replace($,Ae)}(Ge)}applyToHost(we){this.applyStyles(),this.setAttribute(we,this.hostAttr,"")}createElement(we,he){const q=super.createElement(we,he);return super.setAttribute(q,this.contentAttr,""),q}}let k=(()=>{class Ae extends F{constructor(he){super(he)}supports(he){return!0}addEventListener(he,q,Re){return he.addEventListener(q,Re,!1),()=>this.removeEventListener(he,q,Re)}removeEventListener(he,q,Re){return he.removeEventListener(q,Re)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const L=["alt","control","meta","shift"],_={"\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"},r={alt:Ae=>Ae.altKey,control:Ae=>Ae.ctrlKey,meta:Ae=>Ae.metaKey,shift:Ae=>Ae.shiftKey};let v=(()=>{class Ae extends F{constructor(he){super(he)}supports(he){return null!=Ae.parseEventName(he)}addEventListener(he,q,Re){const Ne=Ae.parseEventName(q),gt=Ae.eventCallback(Ne.fullKey,Re,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,e.QT)().onAndCancel(he,Ne.domEventName,gt))}static parseEventName(he){const q=he.toLowerCase().split("."),Re=q.shift();if(0===q.length||"keydown"!==Re&&"keyup"!==Re)return null;const Ne=Ae._normalizeKey(q.pop());let gt="",$e=q.indexOf("code");if($e>-1&&(q.splice($e,1),gt="code."),L.forEach(Ge=>{const et=q.indexOf(Ge);et>-1&&(q.splice(et,1),gt+=Ge+".")}),gt+=Ne,0!=q.length||0===Ne.length)return null;const Fe={};return Fe.domEventName=Re,Fe.fullKey=gt,Fe}static matchEventFullKeyCode(he,q){let Re=_[he.key]||he.key,Ne="";return q.indexOf("code.")>-1&&(Re=he.code,Ne="code."),!(null==Re||!Re)&&(Re=Re.toLowerCase()," "===Re?Re="space":"."===Re&&(Re="dot"),L.forEach(gt=>{gt!==Re&&(0,r[gt])(he)&&(Ne+=gt+".")}),Ne+=Re,Ne===q)}static eventCallback(he,q,Re){return Ne=>{Ae.matchEventFullKeyCode(Ne,he)&&Re.runGuarded(()=>q(Ne))}}static _normalizeKey(he){return"esc"===he?"escape":he}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const X=(0,t.oH4)(t.fpN,"browser",[{provide:t.Agw,useValue:e.AJ},{provide:t.PLl,useValue:function ze(){S.makeCurrent()},multi:!0},{provide:e.qQ,useFactory:function Ke(){return(0,t.TL$)(document),document},deps:[]}]),me=new t.nKC(""),ce=[{provide:t.e01,useClass:class I{addToWindow(we){t.JZv.getAngularTestability=(q,Re=!0)=>{const Ne=we.findTestabilityInTree(q,Re);if(null==Ne)throw new t.wOt(5103,!1);return Ne},t.JZv.getAllAngularTestabilities=()=>we.getAllTestabilities(),t.JZv.getAllAngularRootElements=()=>we.getAllRootElements(),t.JZv.frameworkStabilizers||(t.JZv.frameworkStabilizers=[]),t.JZv.frameworkStabilizers.push(q=>{const Re=t.JZv.getAllAngularTestabilities();let Ne=Re.length;const gt=function(){Ne--,0==Ne&&q()};Re.forEach($e=>{$e.whenStable(gt)})})}findTestabilityInTree(we,he,q){return null==he?null:we.getTestability(he)??(q?(0,e.QT)().isShadowRoot(he)?this.findTestabilityInTree(we,he.host,!0):this.findTestabilityInTree(we,he.parentElement,!0):null)}},deps:[]},{provide:t.WHO,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]},{provide:t.NYb,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]}],fe=[{provide:t.H8p,useValue:"root"},{provide:t.zcH,useFactory:function qe(){return new t.zcH},deps:[]},{provide:T,useClass:k,multi:!0,deps:[e.qQ,t.SKi,t.Agw]},{provide:T,useClass:v,multi:!0,deps:[e.qQ]},Te,z,y,{provide:t._9s,useExisting:Te},{provide:e.N0,useClass:d,deps:[]},[]];let ke=(()=>{class Ae{constructor(he){}static withServerTransition(he){return{ngModule:Ae,providers:[{provide:t.sZ2,useValue:he.appId}]}}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(me,12))};static#t=this.\u0275mod=t.$C({type:Ae});static#i=this.\u0275inj=t.G2t({providers:[...fe,...ce],imports:[e.MD,t.Hbi]})}return Ae})(),be=(()=>{class Ae{constructor(he){this._doc=he}getTitle(){return this._doc.title}setTitle(he){this._doc.title=he||""}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac,providedIn:"root"})}return Ae})();const Ie={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},He=new t.nKC("HammerGestureConfig"),Xe=new t.nKC("HammerLoader");let yt=(()=>{class Ae{constructor(){this.events=[],this.overrides={}}buildHammer(he){const q=new Hammer(he,this.options);q.get("pinch").set({enable:!0}),q.get("rotate").set({enable:!0});for(const Re in this.overrides)q.get(Re).set(this.overrides[Re]);return q}static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})(),Ye=(()=>{class Ae extends F{constructor(he,q,Re,Ne){super(he),this._config=q,this.console=Re,this.loader=Ne,this._loaderPromise=null}supports(he){return!(!Ie.hasOwnProperty(he.toLowerCase())&&!this.isCustomEvent(he)||!window.Hammer&&!this.loader)}addEventListener(he,q,Re){const Ne=this.manager.getZone();if(q=q.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||Ne.runOutsideAngular(()=>this.loader());let gt=!1,$e=()=>{gt=!0};return Ne.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?gt||($e=this.addEventListener(he,q,Re)):$e=()=>{}}).catch(()=>{$e=()=>{}})),()=>{$e()}}return Ne.runOutsideAngular(()=>{const gt=this._config.buildHammer(he),$e=function(Fe){Ne.runGuarded(function(){Re(Fe)})};return gt.on(q,$e),()=>{gt.off(q,$e),"function"==typeof gt.destroy&>.destroy()}})}isCustomEvent(he){return this._config.events.indexOf(he)>-1}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ),t.KVO(He),t.KVO(t.H3F),t.KVO(Xe,8))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})(),rt=(()=>{class Ae{static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275mod=t.$C({type:Ae});static#i=this.\u0275inj=t.G2t({providers:[{provide:T,useClass:Ye,multi:!0,deps:[e.qQ,He,t.H3F,[new t.Xx1,Xe]]},{provide:He,useClass:yt,deps:[]}]})}return Ae})(),Yt=(()=>{class Ae{static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:function(q){let Re=null;return Re=q?new(q||Ae):t.KVO(Nt),Re},providedIn:"root"})}return Ae})(),Nt=(()=>{class Ae extends Yt{constructor(he){super(),this._doc=he}sanitize(he,q){if(null==q)return null;switch(he){case t.WPN.NONE:return q;case t.WPN.HTML:return(0,t.ZF7)(q,"HTML")?(0,t.rcV)(q):(0,t.h9k)(this._doc,String(q)).toString();case t.WPN.STYLE:return(0,t.ZF7)(q,"Style")?(0,t.rcV)(q):q;case t.WPN.SCRIPT:if((0,t.ZF7)(q,"Script"))return(0,t.rcV)(q);throw new t.wOt(5200,!1);case t.WPN.URL:return(0,t.ZF7)(q,"URL")?(0,t.rcV)(q):(0,t.$MX)(String(q));case t.WPN.RESOURCE_URL:if((0,t.ZF7)(q,"ResourceURL"))return(0,t.rcV)(q);throw new t.wOt(5201,!1);default:throw new t.wOt(5202,!1)}}bypassSecurityTrustHtml(he){return(0,t.Kcf)(he)}bypassSecurityTrustStyle(he){return(0,t.cWb)(he)}bypassSecurityTrustScript(he){return(0,t.UyX)(he)}bypassSecurityTrustUrl(he){return(0,t.osQ)(he)}bypassSecurityTrustResourceUrl(he){return(0,t.e5t)(he)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac,providedIn:"root"})}return Ae})()},1188:(Qe,te,g)=>{"use strict";g.d(te,{nX:()=>Rr,j5:()=>si,wF:()=>ot,L6:()=>mn,Z:()=>Ce,gx:()=>rr,Ix:()=>sn,Wk:()=>fa,wQ:()=>Ya,iI:()=>En,n3:()=>hn});var e=g(467),t=g(4438),w=g(4402),S=g(2806),l=g(7673),x=g(4412),f=g(4572),I=g(9350),d=g(8793),T=g(9030),y=g(1203),F=g(8810),R=g(983),z=g(17),W=g(1413),$=g(8359),j=g(177),Q=g(6354),J=g(5558),ee=g(6697),ie=g(9172),ge=g(5964),ae=g(1397),Me=g(1594),Te=g(274),de=g(8141),D=g(9437),n=g(2816),c=g(9901),m=g(9974),h=g(4360);function C(ve){return ve<=0?()=>R.w:(0,m.N)((Pe,xe)=>{let Be=[];Pe.subscribe((0,h._)(xe,ft=>{Be.push(ft),ve{for(const ft of Be)xe.next(ft);xe.complete()},void 0,()=>{Be=null}))})}var k=g(3774),L=g(3669),r=g(3703),v=g(980),V=g(9898),N=g(6977),ne=g(6365),Ee=g(345);const ze="primary",qe=Symbol("RouteTitle");class Ke{constructor(Pe){this.params=Pe||{}}has(Pe){return Object.prototype.hasOwnProperty.call(this.params,Pe)}get(Pe){if(this.has(Pe)){const xe=this.params[Pe];return Array.isArray(xe)?xe[0]:xe}return null}getAll(Pe){if(this.has(Pe)){const xe=this.params[Pe];return Array.isArray(xe)?xe:[xe]}return[]}get keys(){return Object.keys(this.params)}}function se(ve){return new Ke(ve)}function X(ve,Pe,xe){const Be=xe.path.split("/");if(Be.length>ve.length||"full"===xe.pathMatch&&(Pe.hasChildren()||Be.lengthBe[Ot]===ft)}return ve===Pe}function mt(ve){return ve.length>0?ve[ve.length-1]:null}function _e(ve){return(0,w.A)(ve)?ve:(0,t.jNT)(ve)?(0,S.H)(Promise.resolve(ve)):(0,l.of)(ve)}const be={exact:function at(ve,Pe,xe){if(!Ye(ve.segments,Pe.segments)||!ue(ve.segments,Pe.segments,xe)||ve.numberOfChildren!==Pe.numberOfChildren)return!1;for(const Be in Pe.children)if(!ve.children[Be]||!at(ve.children[Be],Pe.children[Be],xe))return!1;return!0},subset:Xt},pe={exact:function _t(ve,Pe){return ce(ve,Pe)},subset:function pt(ve,Pe){return Object.keys(Pe).length<=Object.keys(ve).length&&Object.keys(Pe).every(xe=>ke(ve[xe],Pe[xe]))},ignored:()=>!0};function Ze(ve,Pe,xe){return be[xe.paths](ve.root,Pe.root,xe.matrixParams)&&pe[xe.queryParams](ve.queryParams,Pe.queryParams)&&!("exact"===xe.fragment&&ve.fragment!==Pe.fragment)}function Xt(ve,Pe,xe){return ye(ve,Pe,Pe.segments,xe)}function ye(ve,Pe,xe,Be){if(ve.segments.length>xe.length){const ft=ve.segments.slice(0,xe.length);return!(!Ye(ft,xe)||Pe.hasChildren()||!ue(ft,xe,Be))}if(ve.segments.length===xe.length){if(!Ye(ve.segments,xe)||!ue(ve.segments,xe,Be))return!1;for(const ft in Pe.children)if(!ve.children[ft]||!Xt(ve.children[ft],Pe.children[ft],Be))return!1;return!0}{const ft=xe.slice(0,ve.segments.length),Ot=xe.slice(ve.segments.length);return!!(Ye(ve.segments,ft)&&ue(ve.segments,ft,Be)&&ve.children[ze])&&ye(ve.children[ze],Pe,Ot,Be)}}function ue(ve,Pe,xe){return Pe.every((Be,ft)=>pe[xe](ve[ft].parameters,Be.parameters))}class Ie{constructor(Pe=new He([],{}),xe={},Be=null){this.root=Pe,this.queryParams=xe,this.fragment=Be}get queryParamMap(){return this._queryParamMap??=se(this.queryParams),this._queryParamMap}toString(){return Et.serialize(this)}}class He{constructor(Pe,xe){this.segments=Pe,this.children=xe,this.parent=null,Object.values(xe).forEach(Be=>Be.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Vt(this)}}class Xe{constructor(Pe,xe){this.path=Pe,this.parameters=xe}get parameterMap(){return this._parameterMap??=se(this.parameters),this._parameterMap}toString(){return Ae(this)}}function Ye(ve,Pe){return ve.length===Pe.length&&ve.every((xe,Be)=>xe.path===Pe[Be].path)}let Yt=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>new Nt,providedIn:"root"})}return ve})();class Nt{parse(Pe){const xe=new st(Pe);return new Ie(xe.parseRootSegment(),xe.parseQueryParams(),xe.parseFragment())}serialize(Pe){const xe=`/${oe(Pe.root,!0)}`,Be=function he(ve){const Pe=Object.entries(ve).map(([xe,Be])=>Array.isArray(Be)?Be.map(ft=>`${$t(xe)}=${$t(ft)}`).join("&"):`${$t(xe)}=${$t(Be)}`).filter(xe=>xe);return Pe.length?`?${Pe.join("&")}`:""}(Pe.queryParams);return`${xe}${Be}${"string"==typeof Pe.fragment?`#${function zt(ve){return encodeURI(ve)}(Pe.fragment)}`:""}`}}const Et=new Nt;function Vt(ve){return ve.segments.map(Pe=>Ae(Pe)).join("/")}function oe(ve,Pe){if(!ve.hasChildren())return Vt(ve);if(Pe){const xe=ve.children[ze]?oe(ve.children[ze],!1):"",Be=[];return Object.entries(ve.children).forEach(([ft,Ot])=>{ft!==ze&&Be.push(`${ft}:${oe(Ot,!1)}`)}),Be.length>0?`${xe}(${Be.join("//")})`:xe}{const xe=function rt(ve,Pe){let xe=[];return Object.entries(ve.children).forEach(([Be,ft])=>{Be===ze&&(xe=xe.concat(Pe(ft,Be)))}),Object.entries(ve.children).forEach(([Be,ft])=>{Be!==ze&&(xe=xe.concat(Pe(ft,Be)))}),xe}(ve,(Be,ft)=>ft===ze?[oe(ve.children[ze],!1)]:[`${ft}:${oe(Be,!1)}`]);return 1===Object.keys(ve.children).length&&null!=ve.children[ze]?`${Vt(ve)}/${xe[0]}`:`${Vt(ve)}/(${xe.join("//")})`}}function tt(ve){return encodeURIComponent(ve).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function $t(ve){return tt(ve).replace(/%3B/gi,";")}function Jt(ve){return tt(ve).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function St(ve){return decodeURIComponent(ve)}function dt(ve){return St(ve.replace(/\+/g,"%20"))}function Ae(ve){return`${Jt(ve.path)}${function we(ve){return Object.entries(ve).map(([Pe,xe])=>`;${Jt(Pe)}=${Jt(xe)}`).join("")}(ve.parameters)}`}const q=/^[^\/()?;#]+/;function Re(ve){const Pe=ve.match(q);return Pe?Pe[0]:""}const Ne=/^[^\/()?;=#]+/,$e=/^[^=?&#]+/,Ge=/^[^&#]+/;class st{constructor(Pe){this.url=Pe,this.remaining=Pe}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new He([],{}):new He([],this.parseChildren())}parseQueryParams(){const Pe={};if(this.consumeOptional("?"))do{this.parseQueryParam(Pe)}while(this.consumeOptional("&"));return Pe}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const Pe=[];for(this.peekStartsWith("(")||Pe.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),Pe.push(this.parseSegment());let xe={};this.peekStartsWith("/(")&&(this.capture("/"),xe=this.parseParens(!0));let Be={};return this.peekStartsWith("(")&&(Be=this.parseParens(!1)),(Pe.length>0||Object.keys(xe).length>0)&&(Be[ze]=new He(Pe,xe)),Be}parseSegment(){const Pe=Re(this.remaining);if(""===Pe&&this.peekStartsWith(";"))throw new t.wOt(4009,!1);return this.capture(Pe),new Xe(St(Pe),this.parseMatrixParams())}parseMatrixParams(){const Pe={};for(;this.consumeOptional(";");)this.parseParam(Pe);return Pe}parseParam(Pe){const xe=function gt(ve){const Pe=ve.match(Ne);return Pe?Pe[0]:""}(this.remaining);if(!xe)return;this.capture(xe);let Be="";if(this.consumeOptional("=")){const ft=Re(this.remaining);ft&&(Be=ft,this.capture(Be))}Pe[St(xe)]=St(Be)}parseQueryParam(Pe){const xe=function Fe(ve){const Pe=ve.match($e);return Pe?Pe[0]:""}(this.remaining);if(!xe)return;this.capture(xe);let Be="";if(this.consumeOptional("=")){const qt=function et(ve){const Pe=ve.match(Ge);return Pe?Pe[0]:""}(this.remaining);qt&&(Be=qt,this.capture(Be))}const ft=dt(xe),Ot=dt(Be);if(Pe.hasOwnProperty(ft)){let qt=Pe[ft];Array.isArray(qt)||(qt=[qt],Pe[ft]=qt),qt.push(Ot)}else Pe[ft]=Ot}parseParens(Pe){const xe={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const Be=Re(this.remaining),ft=this.remaining[Be.length];if("/"!==ft&&")"!==ft&&";"!==ft)throw new t.wOt(4010,!1);let Ot;Be.indexOf(":")>-1?(Ot=Be.slice(0,Be.indexOf(":")),this.capture(Ot),this.capture(":")):Pe&&(Ot=ze);const qt=this.parseChildren();xe[Ot]=1===Object.keys(qt).length?qt[ze]:new He([],qt),this.consumeOptional("//")}return xe}peekStartsWith(Pe){return this.remaining.startsWith(Pe)}consumeOptional(Pe){return!!this.peekStartsWith(Pe)&&(this.remaining=this.remaining.substring(Pe.length),!0)}capture(Pe){if(!this.consumeOptional(Pe))throw new t.wOt(4011,!1)}}function Tt(ve){return ve.segments.length>0?new He([],{[ze]:ve}):ve}function mi(ve){const Pe={};for(const[Be,ft]of Object.entries(ve.children)){const Ot=mi(ft);if(Be===ze&&0===Ot.segments.length&&Ot.hasChildren())for(const[qt,Mi]of Object.entries(Ot.children))Pe[qt]=Mi;else(Ot.segments.length>0||Ot.hasChildren())&&(Pe[Be]=Ot)}return function Kt(ve){if(1===ve.numberOfChildren&&ve.children[ze]){const Pe=ve.children[ze];return new He(ve.segments.concat(Pe.segments),Pe.children)}return ve}(new He(ve.segments,Pe))}function Pt(ve){return ve instanceof Ie}function di(ve){let Pe;const ft=Tt(function xe(Ot){const qt={};for(const vi of Ot.children){const on=xe(vi);qt[vi.outlet]=on}const Mi=new He(Ot.url,qt);return Ot===ve&&(Pe=Mi),Mi}(ve.root));return Pe??ft}function fi(ve,Pe,xe,Be){let ft=ve;for(;ft.parent;)ft=ft.parent;if(0===Pe.length)return Li(ft,ft,ft,xe,Be);const Ot=function Mt(ve){if("string"==typeof ve[0]&&1===ve.length&&"/"===ve[0])return new Qt(!0,0,ve);let Pe=0,xe=!1;const Be=ve.reduce((ft,Ot,qt)=>{if("object"==typeof Ot&&null!=Ot){if(Ot.outlets){const Mi={};return Object.entries(Ot.outlets).forEach(([vi,on])=>{Mi[vi]="string"==typeof on?on.split("/"):on}),[...ft,{outlets:Mi}]}if(Ot.segmentPath)return[...ft,Ot.segmentPath]}return"string"!=typeof Ot?[...ft,Ot]:0===qt?(Ot.split("/").forEach((Mi,vi)=>{0==vi&&"."===Mi||(0==vi&&""===Mi?xe=!0:".."===Mi?Pe++:""!=Mi&&ft.push(Mi))}),ft):[...ft,Ot]},[]);return new Qt(xe,Pe,Be)}(Pe);if(Ot.toRoot())return Li(ft,ft,new He([],{}),xe,Be);const qt=function ct(ve,Pe,xe){if(ve.isAbsolute)return new it(Pe,!0,0);if(!xe)return new it(Pe,!1,NaN);if(null===xe.parent)return new it(xe,!0,0);const Be=vn(ve.commands[0])?0:1;return function wt(ve,Pe,xe){let Be=ve,ft=Pe,Ot=xe;for(;Ot>ft;){if(Ot-=ft,Be=Be.parent,!Be)throw new t.wOt(4005,!1);ft=Be.segments.length}return new it(Be,!1,ft-Ot)}(xe,xe.segments.length-1+Be,ve.numberOfDoubleDots)}(Ot,ft,ve),Mi=qt.processChildren?Si(qt.segmentGroup,qt.index,Ot.commands):xi(qt.segmentGroup,qt.index,Ot.commands);return Li(ft,qt.segmentGroup,Mi,xe,Be)}function vn(ve){return"object"==typeof ve&&null!=ve&&!ve.outlets&&!ve.segmentPath}function Qi(ve){return"object"==typeof ve&&null!=ve&&ve.outlets}function Li(ve,Pe,xe,Be,ft){let qt,Ot={};Be&&Object.entries(Be).forEach(([vi,on])=>{Ot[vi]=Array.isArray(on)?on.map(Sn=>`${Sn}`):`${on}`}),qt=ve===Pe?xe:Zi(ve,Pe,xe);const Mi=Tt(mi(qt));return new Ie(Mi,Ot,ft)}function Zi(ve,Pe,xe){const Be={};return Object.entries(ve.children).forEach(([ft,Ot])=>{Be[ft]=Ot===Pe?xe:Zi(Ot,Pe,xe)}),new He(ve.segments,Be)}class Qt{constructor(Pe,xe,Be){if(this.isAbsolute=Pe,this.numberOfDoubleDots=xe,this.commands=Be,Pe&&Be.length>0&&vn(Be[0]))throw new t.wOt(4003,!1);const ft=Be.find(Qi);if(ft&&ft!==mt(Be))throw new t.wOt(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class it{constructor(Pe,xe,Be){this.segmentGroup=Pe,this.processChildren=xe,this.index=Be}}function xi(ve,Pe,xe){if(ve??=new He([],{}),0===ve.segments.length&&ve.hasChildren())return Si(ve,Pe,xe);const Be=function zi(ve,Pe,xe){let Be=0,ft=Pe;const Ot={match:!1,pathIndex:0,commandIndex:0};for(;ft=xe.length)return Ot;const qt=ve.segments[ft],Mi=xe[Be];if(Qi(Mi))break;const vi=`${Mi}`,on=Be0&&void 0===vi)break;if(vi&&on&&"object"==typeof on&&void 0===on.outlets){if(!Zt(vi,on,qt))return Ot;Be+=2}else{if(!Zt(vi,{},qt))return Ot;Be++}ft++}return{match:!0,pathIndex:ft,commandIndex:Be}}(ve,Pe,xe),ft=xe.slice(Be.commandIndex);if(Be.match&&Be.pathIndexOt!==ze)&&ve.children[ze]&&1===ve.numberOfChildren&&0===ve.children[ze].segments.length){const Ot=Si(ve.children[ze],Pe,xe);return new He(ve.segments,Ot.children)}return Object.entries(Be).forEach(([Ot,qt])=>{"string"==typeof qt&&(qt=[qt]),null!==qt&&(ft[Ot]=xi(ve.children[Ot],Pe,qt))}),Object.entries(ve.children).forEach(([Ot,qt])=>{void 0===Be[Ot]&&(ft[Ot]=qt)}),new He(ve.segments,ft)}}function en(ve,Pe,xe){const Be=ve.segments.slice(0,Pe);let ft=0;for(;ft{"string"==typeof Be&&(Be=[Be]),null!==Be&&(Pe[xe]=en(new He([],{}),0,Be))}),Pe}function fn(ve){const Pe={};return Object.entries(ve).forEach(([xe,Be])=>Pe[xe]=`${Be}`),Pe}function Zt(ve,Pe,xe){return ve==xe.path&&ce(Pe,xe.parameters)}const bt="imperative";var re=function(ve){return ve[ve.NavigationStart=0]="NavigationStart",ve[ve.NavigationEnd=1]="NavigationEnd",ve[ve.NavigationCancel=2]="NavigationCancel",ve[ve.NavigationError=3]="NavigationError",ve[ve.RoutesRecognized=4]="RoutesRecognized",ve[ve.ResolveStart=5]="ResolveStart",ve[ve.ResolveEnd=6]="ResolveEnd",ve[ve.GuardsCheckStart=7]="GuardsCheckStart",ve[ve.GuardsCheckEnd=8]="GuardsCheckEnd",ve[ve.RouteConfigLoadStart=9]="RouteConfigLoadStart",ve[ve.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",ve[ve.ChildActivationStart=11]="ChildActivationStart",ve[ve.ChildActivationEnd=12]="ChildActivationEnd",ve[ve.ActivationStart=13]="ActivationStart",ve[ve.ActivationEnd=14]="ActivationEnd",ve[ve.Scroll=15]="Scroll",ve[ve.NavigationSkipped=16]="NavigationSkipped",ve}(re||{});class je{constructor(Pe,xe){this.id=Pe,this.url=xe}}class Ce extends je{constructor(Pe,xe,Be="imperative",ft=null){super(Pe,xe),this.type=re.NavigationStart,this.navigationTrigger=Be,this.restoredState=ft}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class ot extends je{constructor(Pe,xe,Be){super(Pe,xe),this.urlAfterRedirects=Be,this.type=re.NavigationEnd}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var ut=function(ve){return ve[ve.Redirect=0]="Redirect",ve[ve.SupersededByNewNavigation=1]="SupersededByNewNavigation",ve[ve.NoDataFromResolver=2]="NoDataFromResolver",ve[ve.GuardRejected=3]="GuardRejected",ve}(ut||{}),ii=function(ve){return ve[ve.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",ve[ve.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",ve}(ii||{});class si extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.reason=Be,this.code=ft,this.type=re.NavigationCancel}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class Pi extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.reason=Be,this.code=ft,this.type=re.NavigationSkipped}}class mn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.error=Be,this.target=ft,this.type=re.NavigationError}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class Fn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.RoutesRecognized}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class $n extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.GuardsCheckStart}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Yn extends je{constructor(Pe,xe,Be,ft,Ot){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.shouldActivate=Ot,this.type=re.GuardsCheckEnd}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class Qn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.ResolveStart}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class rr extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.ResolveEnd}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Rn{constructor(Pe){this.route=Pe,this.type=re.RouteConfigLoadStart}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class _i{constructor(Pe){this.route=Pe,this.type=re.RouteConfigLoadEnd}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class Oi{constructor(Pe){this.snapshot=Pe,this.type=re.ChildActivationStart}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class jt{constructor(Pe){this.snapshot=Pe,this.type=re.ChildActivationEnd}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ci{constructor(Pe){this.snapshot=Pe,this.type=re.ActivationStart}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class hi{constructor(Pe){this.snapshot=Pe,this.type=re.ActivationEnd}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class yi{constructor(Pe,xe,Be){this.routerEvent=Pe,this.position=xe,this.anchor=Be,this.type=re.Scroll}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class Vi{}class ji{constructor(Pe,xe){this.url=Pe,this.navigationBehaviorOptions=xe}}class ar{constructor(Pe){this.injector=Pe,this.outlet=null,this.route=null,this.children=new sr(this.injector),this.attachRef=null}}let sr=(()=>{class ve{constructor(xe){this.parentInjector=xe,this.contexts=new Map}onChildOutletCreated(xe,Be){const ft=this.getOrCreateContext(xe);ft.outlet=Be,this.contexts.set(xe,ft)}onChildOutletDestroyed(xe){const Be=this.getContext(xe);Be&&(Be.outlet=null,Be.attachRef=null)}onOutletDeactivated(){const xe=this.contexts;return this.contexts=new Map,xe}onOutletReAttached(xe){this.contexts=xe}getOrCreateContext(xe){let Be=this.getContext(xe);return Be||(Be=new ar(this.parentInjector),this.contexts.set(xe,Be)),Be}getContext(xe){return this.contexts.get(xe)||null}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(t.uvJ))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();class nr{constructor(Pe){this._root=Pe}get root(){return this._root.value}parent(Pe){const xe=this.pathFromRoot(Pe);return xe.length>1?xe[xe.length-2]:null}children(Pe){const xe=or(Pe,this._root);return xe?xe.children.map(Be=>Be.value):[]}firstChild(Pe){const xe=or(Pe,this._root);return xe&&xe.children.length>0?xe.children[0].value:null}siblings(Pe){const xe=Xr(Pe,this._root);return xe.length<2?[]:xe[xe.length-2].children.map(ft=>ft.value).filter(ft=>ft!==Pe)}pathFromRoot(Pe){return Xr(Pe,this._root).map(xe=>xe.value)}}function or(ve,Pe){if(ve===Pe.value)return Pe;for(const xe of Pe.children){const Be=or(ve,xe);if(Be)return Be}return null}function Xr(ve,Pe){if(ve===Pe.value)return[Pe];for(const xe of Pe.children){const Be=Xr(ve,xe);if(Be.length)return Be.unshift(Pe),Be}return[]}class Sr{constructor(Pe,xe){this.value=Pe,this.children=xe}toString(){return`TreeNode(${this.value})`}}function zr(ve){const Pe={};return ve&&ve.children.forEach(xe=>Pe[xe.value.outlet]=xe),Pe}class Ho extends nr{constructor(Pe,xe){super(Pe),this.snapshot=xe,ho(this,Pe)}toString(){return this.snapshot.toString()}}function xo(ve){const Pe=function is(ve){const Ot=new Ea([],{},{},"",{},ze,ve,null,{});return new no("",new Sr(Ot,[]))}(ve),xe=new x.t([new Xe("",{})]),Be=new x.t({}),ft=new x.t({}),Ot=new x.t({}),qt=new x.t(""),Mi=new Rr(xe,Be,Ot,qt,ft,ze,ve,Pe.root);return Mi.snapshot=Pe.root,new Ho(new Sr(Mi,[]),Pe)}class Rr{constructor(Pe,xe,Be,ft,Ot,qt,Mi,vi){this.urlSubject=Pe,this.paramsSubject=xe,this.queryParamsSubject=Be,this.fragmentSubject=ft,this.dataSubject=Ot,this.outlet=qt,this.component=Mi,this._futureSnapshot=vi,this.title=this.dataSubject?.pipe((0,Q.T)(on=>on[qe]))??(0,l.of)(void 0),this.url=Pe,this.params=xe,this.queryParams=Be,this.fragment=ft,this.data=Ot}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,Q.T)(Pe=>se(Pe))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,Q.T)(Pe=>se(Pe))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function Ma(ve,Pe,xe="emptyOnly"){let Be;const{routeConfig:ft}=ve;return Be=null===Pe||"always"!==xe&&""!==ft?.path&&(Pe.component||Pe.routeConfig?.loadComponent)?{params:{...ve.params},data:{...ve.data},resolve:{...ve.data,...ve._resolvedData??{}}}:{params:{...Pe.params,...ve.params},data:{...Pe.data,...ve.data},resolve:{...ve.data,...Pe.data,...ft?.data,...ve._resolvedData}},ft&&ro(ft)&&(Be.resolve[qe]=ft.title),Be}class Ea{get title(){return this.data?.[qe]}constructor(Pe,xe,Be,ft,Ot,qt,Mi,vi,on){this.url=Pe,this.params=xe,this.queryParams=Be,this.fragment=ft,this.data=Ot,this.outlet=qt,this.component=Mi,this.routeConfig=vi,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??=se(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=se(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(Be=>Be.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class no extends nr{constructor(Pe,xe){super(xe),this.url=Pe,ho(this,xe)}toString(){return xr(this._root)}}function ho(ve,Pe){Pe.value._routerState=ve,Pe.children.forEach(xe=>ho(ve,xe))}function xr(ve){const Pe=ve.children.length>0?` { ${ve.children.map(xr).join(", ")} } `:"";return`${ve.value}${Pe}`}function Sa(ve){if(ve.snapshot){const Pe=ve.snapshot,xe=ve._futureSnapshot;ve.snapshot=xe,ce(Pe.queryParams,xe.queryParams)||ve.queryParamsSubject.next(xe.queryParams),Pe.fragment!==xe.fragment&&ve.fragmentSubject.next(xe.fragment),ce(Pe.params,xe.params)||ve.paramsSubject.next(xe.params),function me(ve,Pe){if(ve.length!==Pe.length)return!1;for(let xe=0;xece(xe.parameters,Pe[Be].parameters))}(ve.url,Pe.url);return xe&&!(!ve.parent!=!Pe.parent)&&(!ve.parent||zn(ve.parent,Pe.parent))}function ro(ve){return"string"==typeof ve.title||null===ve.title}let hn=(()=>{class ve{constructor(){this.activated=null,this._activatedRoute=null,this.name=ze,this.activateEvents=new t.bkB,this.deactivateEvents=new t.bkB,this.attachEvents=new t.bkB,this.detachEvents=new t.bkB,this.parentContexts=(0,t.WQX)(sr),this.location=(0,t.WQX)(t.c1b),this.changeDetector=(0,t.WQX)(t.gRc),this.inputBinder=(0,t.WQX)(Ta,{optional:!0}),this.supportsBindingToComponentInputs=!0}get activatedComponentRef(){return this.activated}ngOnChanges(xe){if(xe.name){const{firstChange:Be,previousValue:ft}=xe.name;if(Be)return;this.isTrackedInParentContexts(ft)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(ft)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(xe){return this.parentContexts.getContext(xe)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const xe=this.parentContexts.getContext(this.name);xe?.route&&(xe.attachRef?this.attach(xe.attachRef,xe.route):this.activateWith(xe.route,xe.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new t.wOt(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new t.wOt(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new t.wOt(4012,!1);this.location.detach();const xe=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(xe.instance),xe}attach(xe,Be){this.activated=xe,this._activatedRoute=Be,this.location.insert(xe.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(xe.instance)}deactivate(){if(this.activated){const xe=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(xe)}}activateWith(xe,Be){if(this.isActivated)throw new t.wOt(4013,!1);this._activatedRoute=xe;const ft=this.location,qt=xe.snapshot.component,Mi=this.parentContexts.getOrCreateContext(this.name).children,vi=new Yr(xe,Mi,ft.injector);this.activated=ft.createComponent(qt,{index:ft.length,injector:vi,environmentInjector:Be}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["router-outlet"]],inputs:{name:"name"},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],standalone:!0,features:[t.OA$]})}return ve})();class Yr{__ngOutletInjector(Pe){return new Yr(this.route,this.childContexts,Pe)}constructor(Pe,xe,Be){this.route=Pe,this.childContexts=xe,this.parent=Be}get(Pe,xe){return Pe===Rr?this.route:Pe===sr?this.childContexts:this.parent.get(Pe,xe)}}const Ta=new t.nKC("");let Co=(()=>{class ve{constructor(){this.outletDataSubscriptions=new Map}bindActivatedRouteToOutletComponent(xe){this.unsubscribeFromRouteData(xe),this.subscribeToRouteData(xe)}unsubscribeFromRouteData(xe){this.outletDataSubscriptions.get(xe)?.unsubscribe(),this.outletDataSubscriptions.delete(xe)}subscribeToRouteData(xe){const{activatedRoute:Be}=xe,ft=(0,f.z)([Be.queryParams,Be.params,Be.data]).pipe((0,J.n)(([Ot,qt,Mi],vi)=>(Mi={...Ot,...qt,...Mi},0===vi?(0,l.of)(Mi):Promise.resolve(Mi)))).subscribe(Ot=>{if(!xe.isActivated||!xe.activatedComponentRef||xe.activatedRoute!==Be||null===Be.component)return void this.unsubscribeFromRouteData(xe);const qt=(0,t.HJs)(Be.component);if(qt)for(const{templateName:Mi}of qt.inputs)xe.activatedComponentRef.setInput(Mi,Ot[Mi]);else this.unsubscribeFromRouteData(xe)});this.outletDataSubscriptions.set(xe,ft)}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac})}return ve})();function zo(ve,Pe,xe){if(xe&&ve.shouldReuseRoute(Pe.value,xe.value.snapshot)){const Be=xe.value;Be._futureSnapshot=Pe.value;const ft=function da(ve,Pe,xe){return Pe.children.map(Be=>{for(const ft of xe.children)if(ve.shouldReuseRoute(Be.value,ft.value.snapshot))return zo(ve,Be,ft);return zo(ve,Be)})}(ve,Pe,xe);return new Sr(Be,ft)}{if(ve.shouldAttach(Pe.value)){const Ot=ve.retrieve(Pe.value);if(null!==Ot){const qt=Ot.route;return qt.value._futureSnapshot=Pe.value,qt.children=Pe.children.map(Mi=>zo(ve,Mi)),qt}}const Be=function ao(ve){return new Rr(new x.t(ve.url),new x.t(ve.params),new x.t(ve.queryParams),new x.t(ve.fragment),new x.t(ve.data),ve.outlet,ve.component,ve)}(Pe.value),ft=Pe.children.map(Ot=>zo(ve,Ot));return new Sr(Be,ft)}}class Oa{constructor(Pe,xe){this.redirectTo=Pe,this.navigationBehaviorOptions=xe}}const ns="ngNavigationCancelingError";function Fa(ve,Pe){const{redirectTo:xe,navigationBehaviorOptions:Be}=Pt(Pe)?{redirectTo:Pe,navigationBehaviorOptions:void 0}:Pe,ft=Ro(!1,ut.Redirect);return ft.url=xe,ft.navigationBehaviorOptions=Be,ft}function Ro(ve,Pe){const xe=new Error(`NavigationCancelingError: ${ve||""}`);return xe[ns]=!0,xe.cancellationCode=Pe,xe}function ha(ve){return!!ve&&ve[ns]}let Br=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275cmp=t.VBU({type:ve,selectors:[["ng-component"]],standalone:!0,features:[t.aNF],decls:1,vars:0,template:function(Be,ft){1&Be&&t.nrm(0,"router-outlet")},dependencies:[hn],encapsulation:2})}return ve})();function Za(ve){const Pe=ve.children&&ve.children.map(Za),xe=Pe?{...ve,children:Pe}:{...ve};return!xe.component&&!xe.loadComponent&&(Pe||xe.loadChildren)&&xe.outlet&&xe.outlet!==ze&&(xe.component=Br),xe}function Lr(ve){return ve.outlet||ze}function Oo(ve){if(!ve)return null;if(ve.routeConfig?._injector)return ve.routeConfig._injector;for(let Pe=ve.parent;Pe;Pe=Pe.parent){const xe=Pe.routeConfig;if(xe?._loadedInjector)return xe._loadedInjector;if(xe?._injector)return xe._injector}return null}class Da{constructor(Pe,xe,Be,ft,Ot){this.routeReuseStrategy=Pe,this.futureState=xe,this.currState=Be,this.forwardEvent=ft,this.inputBindingEnabled=Ot}activate(Pe){const xe=this.futureState._root,Be=this.currState?this.currState._root:null;this.deactivateChildRoutes(xe,Be,Pe),Sa(this.futureState.root),this.activateChildRoutes(xe,Be,Pe)}deactivateChildRoutes(Pe,xe,Be){const ft=zr(xe);Pe.children.forEach(Ot=>{const qt=Ot.value.outlet;this.deactivateRoutes(Ot,ft[qt],Be),delete ft[qt]}),Object.values(ft).forEach(Ot=>{this.deactivateRouteAndItsChildren(Ot,Be)})}deactivateRoutes(Pe,xe,Be){const ft=Pe.value,Ot=xe?xe.value:null;if(ft===Ot)if(ft.component){const qt=Be.getContext(ft.outlet);qt&&this.deactivateChildRoutes(Pe,xe,qt.children)}else this.deactivateChildRoutes(Pe,xe,Be);else Ot&&this.deactivateRouteAndItsChildren(xe,Be)}deactivateRouteAndItsChildren(Pe,xe){Pe.value.component&&this.routeReuseStrategy.shouldDetach(Pe.value.snapshot)?this.detachAndStoreRouteSubtree(Pe,xe):this.deactivateRouteAndOutlet(Pe,xe)}detachAndStoreRouteSubtree(Pe,xe){const Be=xe.getContext(Pe.value.outlet),ft=Be&&Pe.value.component?Be.children:xe,Ot=zr(Pe);for(const qt of Object.values(Ot))this.deactivateRouteAndItsChildren(qt,ft);if(Be&&Be.outlet){const qt=Be.outlet.detach(),Mi=Be.children.onOutletDeactivated();this.routeReuseStrategy.store(Pe.value.snapshot,{componentRef:qt,route:Pe,contexts:Mi})}}deactivateRouteAndOutlet(Pe,xe){const Be=xe.getContext(Pe.value.outlet),ft=Be&&Pe.value.component?Be.children:xe,Ot=zr(Pe);for(const qt of Object.values(Ot))this.deactivateRouteAndItsChildren(qt,ft);Be&&(Be.outlet&&(Be.outlet.deactivate(),Be.children.onOutletDeactivated()),Be.attachRef=null,Be.route=null)}activateChildRoutes(Pe,xe,Be){const ft=zr(xe);Pe.children.forEach(Ot=>{this.activateRoutes(Ot,ft[Ot.value.outlet],Be),this.forwardEvent(new hi(Ot.value.snapshot))}),Pe.children.length&&this.forwardEvent(new jt(Pe.value.snapshot))}activateRoutes(Pe,xe,Be){const ft=Pe.value,Ot=xe?xe.value:null;if(Sa(ft),ft===Ot)if(ft.component){const qt=Be.getOrCreateContext(ft.outlet);this.activateChildRoutes(Pe,xe,qt.children)}else this.activateChildRoutes(Pe,xe,Be);else if(ft.component){const qt=Be.getOrCreateContext(ft.outlet);if(this.routeReuseStrategy.shouldAttach(ft.snapshot)){const Mi=this.routeReuseStrategy.retrieve(ft.snapshot);this.routeReuseStrategy.store(ft.snapshot,null),qt.children.onOutletReAttached(Mi.contexts),qt.attachRef=Mi.componentRef,qt.route=Mi.route.value,qt.outlet&&qt.outlet.attach(Mi.componentRef,Mi.route.value),Sa(Mi.route.value),this.activateChildRoutes(Pe,null,qt.children)}else{const Mi=Oo(ft.snapshot);qt.attachRef=null,qt.route=ft,qt.injector=Mi??qt.injector,qt.outlet&&qt.outlet.activateWith(ft,qt.injector),this.activateChildRoutes(Pe,null,qt.children)}}else this.activateChildRoutes(Pe,null,Be)}}class Go{constructor(Pe){this.path=Pe,this.route=this.path[this.path.length-1]}}class Wa{constructor(Pe,xe){this.component=Pe,this.route=xe}}function as(ve,Pe,xe){const Be=ve._root;return xt(Be,Pe?Pe._root:null,xe,[Be.value])}function ri(ve,Pe){const xe=Symbol(),Be=Pe.get(ve,xe);return Be===xe?"function"!=typeof ve||(0,t.LfX)(ve)?Pe.get(ve):ve:Be}function xt(ve,Pe,xe,Be,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Ot=zr(Pe);return ve.children.forEach(qt=>{(function ai(ve,Pe,xe,Be,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Ot=ve.value,qt=Pe?Pe.value:null,Mi=xe?xe.getContext(ve.value.outlet):null;if(qt&&Ot.routeConfig===qt.routeConfig){const vi=function Ei(ve,Pe,xe){if("function"==typeof xe)return xe(ve,Pe);switch(xe){case"pathParamsChange":return!Ye(ve.url,Pe.url);case"pathParamsOrQueryParamsChange":return!Ye(ve.url,Pe.url)||!ce(ve.queryParams,Pe.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!zn(ve,Pe)||!ce(ve.queryParams,Pe.queryParams);default:return!zn(ve,Pe)}}(qt,Ot,Ot.routeConfig.runGuardsAndResolvers);vi?ft.canActivateChecks.push(new Go(Be)):(Ot.data=qt.data,Ot._resolvedData=qt._resolvedData),xt(ve,Pe,Ot.component?Mi?Mi.children:null:xe,Be,ft),vi&&Mi&&Mi.outlet&&Mi.outlet.isActivated&&ft.canDeactivateChecks.push(new Wa(Mi.outlet.component,qt))}else qt&&Ki(Pe,Mi,ft),ft.canActivateChecks.push(new Go(Be)),xt(ve,null,Ot.component?Mi?Mi.children:null:xe,Be,ft)})(qt,Ot[qt.value.outlet],xe,Be.concat([qt.value]),ft),delete Ot[qt.value.outlet]}),Object.entries(Ot).forEach(([qt,Mi])=>Ki(Mi,xe.getContext(qt),ft)),ft}function Ki(ve,Pe,xe){const Be=zr(ve),ft=ve.value;Object.entries(Be).forEach(([Ot,qt])=>{Ki(qt,ft.component?Pe?Pe.children.getContext(Ot):null:Pe,xe)}),xe.canDeactivateChecks.push(new Wa(ft.component&&Pe&&Pe.outlet&&Pe.outlet.isActivated?Pe.outlet.component:null,ft))}function tr(ve){return"function"==typeof ve}function oa(ve){return ve instanceof I.G||"EmptyError"===ve?.name}const Ri=Symbol("INITIAL_VALUE");function lt(){return(0,J.n)(ve=>(0,f.z)(ve.map(Pe=>Pe.pipe((0,ee.s)(1),(0,ie.Z)(Ri)))).pipe((0,Q.T)(Pe=>{for(const xe of Pe)if(!0!==xe){if(xe===Ri)return Ri;if(!1===xe||ht(xe))return xe}return!0}),(0,ge.p)(Pe=>Pe!==Ri),(0,ee.s)(1)))}function ht(ve){return Pt(ve)||ve instanceof Oa}function dc(ve){return(0,y.F)((0,de.M)(Pe=>{if("boolean"!=typeof Pe)throw Fa(0,Pe)}),(0,Q.T)(Pe=>!0===Pe))}class jo{constructor(Pe){this.segmentGroup=Pe||null}}class Wo extends Error{constructor(Pe){super(),this.urlTree=Pe}}function fo(ve){return(0,F.$)(new jo(ve))}class ua{constructor(Pe,xe){this.urlSerializer=Pe,this.urlTree=xe}lineralizeSegments(Pe,xe){let Be=[],ft=xe.root;for(;;){if(Be=Be.concat(ft.segments),0===ft.numberOfChildren)return(0,l.of)(Be);if(ft.numberOfChildren>1||!ft.children[ze])return(0,F.$)(new t.wOt(4e3,!1));ft=ft.children[ze]}}applyRedirectCommands(Pe,xe,Be,ft,Ot){if("string"!=typeof xe){const Mi=xe,{queryParams:vi,fragment:on,routeConfig:Sn,url:Jn,outlet:_r,params:ys,data:Nr,title:Ka}=ft,ls=(0,t.N4e)(Ot,()=>Mi({params:ys,data:Nr,queryParams:vi,fragment:on,routeConfig:Sn,url:Jn,outlet:_r,title:Ka}));if(ls instanceof Ie)throw new Wo(ls);xe=ls}const qt=this.applyRedirectCreateUrlTree(xe,this.urlSerializer.parse(xe),Pe,Be);if("/"===xe[0])throw new Wo(qt);return qt}applyRedirectCreateUrlTree(Pe,xe,Be,ft){const Ot=this.createSegmentGroup(Pe,xe.root,Be,ft);return new Ie(Ot,this.createQueryParams(xe.queryParams,this.urlTree.queryParams),xe.fragment)}createQueryParams(Pe,xe){const Be={};return Object.entries(Pe).forEach(([ft,Ot])=>{if("string"==typeof Ot&&":"===Ot[0]){const Mi=Ot.substring(1);Be[ft]=xe[Mi]}else Be[ft]=Ot}),Be}createSegmentGroup(Pe,xe,Be,ft){const Ot=this.createSegments(Pe,xe.segments,Be,ft);let qt={};return Object.entries(xe.children).forEach(([Mi,vi])=>{qt[Mi]=this.createSegmentGroup(Pe,vi,Be,ft)}),new He(Ot,qt)}createSegments(Pe,xe,Be,ft){return xe.map(Ot=>":"===Ot.path[0]?this.findPosParam(Pe,Ot,ft):this.findOrReturn(Ot,Be))}findPosParam(Pe,xe,Be){const ft=Be[xe.path.substring(1)];if(!ft)throw new t.wOt(4001,!1);return ft}findOrReturn(Pe,xe){let Be=0;for(const ft of xe){if(ft.path===Pe.path)return xe.splice(Be),ft;Be++}return Pe}}const so={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Ir(ve,Pe,xe,Be,ft){const Ot=Aa(ve,Pe,xe);return Ot.matched?(Be=function Ua(ve,Pe){return ve.providers&&!ve._injector&&(ve._injector=(0,t.Ol2)(ve.providers,Pe,`Route: ${ve.path}`)),ve._injector??Pe}(Pe,Be),function hc(ve,Pe,xe,Be){const ft=Pe.canMatch;if(!ft||0===ft.length)return(0,l.of)(!0);const Ot=ft.map(qt=>{const Mi=ri(qt,ve);return _e(function Ms(ve){return ve&&tr(ve.canMatch)}(Mi)?Mi.canMatch(Pe,xe):(0,t.N4e)(ve,()=>Mi(Pe,xe)))});return(0,l.of)(Ot).pipe(lt(),dc())}(Be,Pe,xe).pipe((0,Q.T)(qt=>!0===qt?Ot:{...so}))):(0,l.of)(Ot)}function Aa(ve,Pe,xe){if("**"===Pe.path)return function $s(ve){return{matched:!0,parameters:ve.length>0?mt(ve).parameters:{},consumedSegments:ve,remainingSegments:[],positionalParamSegments:{}}}(xe);if(""===Pe.path)return"full"===Pe.pathMatch&&(ve.hasChildren()||xe.length>0)?{...so}:{matched:!0,consumedSegments:[],remainingSegments:xe,parameters:{},positionalParamSegments:{}};const ft=(Pe.matcher||X)(xe,ve,Pe);if(!ft)return{...so};const Ot={};Object.entries(ft.posParams??{}).forEach(([Mi,vi])=>{Ot[Mi]=vi.path});const qt=ft.consumed.length>0?{...Ot,...ft.consumed[ft.consumed.length-1].parameters}:Ot;return{matched:!0,consumedSegments:ft.consumed,remainingSegments:xe.slice(ft.consumed.length),parameters:qt,positionalParamSegments:ft.posParams??{}}}function dn(ve,Pe,xe,Be){return xe.length>0&&function Ss(ve,Pe,xe){return xe.some(Be=>_s(ve,Pe,Be)&&Lr(Be)!==ze)}(ve,xe,Be)?{segmentGroup:new He(Pe,uc(Be,new He(xe,ve.children))),slicedSegments:[]}:0===xe.length&&function fc(ve,Pe,xe){return xe.some(Be=>_s(ve,Pe,Be))}(ve,xe,Be)?{segmentGroup:new He(ve.segments,Es(ve,xe,Be,ve.children)),slicedSegments:xe}:{segmentGroup:new He(ve.segments,ve.children),slicedSegments:xe}}function Es(ve,Pe,xe,Be){const ft={};for(const Ot of xe)if(_s(ve,Pe,Ot)&&!Be[Lr(Ot)]){const qt=new He([],{});ft[Lr(Ot)]=qt}return{...Be,...ft}}function uc(ve,Pe){const xe={};xe[ze]=Pe;for(const Be of ve)if(""===Be.path&&Lr(Be)!==ze){const ft=new He([],{});xe[Lr(Be)]=ft}return xe}function _s(ve,Pe,xe){return(!(ve.hasChildren()||Pe.length>0)||"full"!==xe.pathMatch)&&""===xe.path}class Ll{}class Qs{constructor(Pe,xe,Be,ft,Ot,qt,Mi){this.injector=Pe,this.configLoader=xe,this.rootComponentType=Be,this.config=ft,this.urlTree=Ot,this.paramsInheritanceStrategy=qt,this.urlSerializer=Mi,this.applyRedirects=new ua(this.urlSerializer,this.urlTree),this.absoluteRedirectCount=0,this.allowRedirects=!0}noMatchError(Pe){return new t.wOt(4002,`'${Pe.segmentGroup}'`)}recognize(){const Pe=dn(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(Pe).pipe((0,Q.T)(({children:xe,rootSnapshot:Be})=>{const ft=new Sr(Be,xe),Ot=new no("",ft),qt=function Xi(ve,Pe,xe=null,Be=null){return fi(di(ve),Pe,xe,Be)}(Be,[],this.urlTree.queryParams,this.urlTree.fragment);return qt.queryParams=this.urlTree.queryParams,Ot.url=this.urlSerializer.serialize(qt),{state:Ot,tree:qt}}))}match(Pe){const xe=new Ea([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Object.freeze({}),ze,this.rootComponentType,null,{});return this.processSegmentGroup(this.injector,this.config,Pe,ze,xe).pipe((0,Q.T)(Be=>({children:Be,rootSnapshot:xe})),(0,D.W)(Be=>{if(Be instanceof Wo)return this.urlTree=Be.urlTree,this.match(Be.urlTree.root);throw Be instanceof jo?this.noMatchError(Be):Be}))}processSegmentGroup(Pe,xe,Be,ft,Ot){return 0===Be.segments.length&&Be.hasChildren()?this.processChildren(Pe,xe,Be,Ot):this.processSegment(Pe,xe,Be,Be.segments,ft,!0,Ot).pipe((0,Q.T)(qt=>qt instanceof Sr?[qt]:[]))}processChildren(Pe,xe,Be,ft){const Ot=[];for(const qt of Object.keys(Be.children))"primary"===qt?Ot.unshift(qt):Ot.push(qt);return(0,S.H)(Ot).pipe((0,Te.H)(qt=>{const Mi=Be.children[qt],vi=function _a(ve,Pe){const xe=ve.filter(Be=>Lr(Be)===Pe);return xe.push(...ve.filter(Be=>Lr(Be)!==Pe)),xe}(xe,qt);return this.processSegmentGroup(Pe,vi,Mi,qt,ft)}),(0,n.S)((qt,Mi)=>(qt.push(...Mi),qt)),(0,c.U)(null),function _(ve,Pe){const xe=arguments.length>=2;return Be=>Be.pipe(ve?(0,ge.p)((ft,Ot)=>ve(ft,Ot,Be)):L.D,C(1),xe?(0,c.U)(Pe):(0,k.v)(()=>new I.G))}(),(0,ae.Z)(qt=>{if(null===qt)return fo(Be);const Mi=Eo(qt);return function Zs(ve){ve.sort((Pe,xe)=>Pe.value.outlet===ze?-1:xe.value.outlet===ze?1:Pe.value.outlet.localeCompare(xe.value.outlet))}(Mi),(0,l.of)(Mi)}))}processSegment(Pe,xe,Be,ft,Ot,qt,Mi){return(0,S.H)(xe).pipe((0,Te.H)(vi=>this.processSegmentAgainstRoute(vi._injector??Pe,xe,vi,Be,ft,Ot,qt,Mi).pipe((0,D.W)(on=>{if(on instanceof jo)return(0,l.of)(null);throw on}))),(0,Me.$)(vi=>!!vi),(0,D.W)(vi=>{if(oa(vi))return function vs(ve,Pe,xe){return 0===Pe.length&&!ve.children[xe]}(Be,ft,Ot)?(0,l.of)(new Ll):fo(Be);throw vi}))}processSegmentAgainstRoute(Pe,xe,Be,ft,Ot,qt,Mi,vi){return function kl(ve,Pe,xe,Be){return!!(Lr(ve)===Be||Be!==ze&&_s(Pe,xe,ve))&&Aa(Pe,ve,xe).matched}(Be,ft,Ot,qt)?void 0===Be.redirectTo?this.matchSegmentAgainstRoute(Pe,ft,Be,Ot,qt,vi):this.allowRedirects&&Mi?this.expandSegmentAgainstRouteUsingRedirect(Pe,ft,xe,Be,Ot,qt,vi):fo(ft):fo(ft)}expandSegmentAgainstRouteUsingRedirect(Pe,xe,Be,ft,Ot,qt,Mi){const{matched:vi,parameters:on,consumedSegments:Sn,positionalParamSegments:Jn,remainingSegments:_r}=Aa(xe,ft,Ot);if(!vi)return fo(xe);"string"==typeof ft.redirectTo&&"/"===ft.redirectTo[0]&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const ys=new Ea(Ot,on,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Js(ft),Lr(ft),ft.component??ft._loadedComponent??null,ft,bs(ft)),Nr=Ma(ys,Mi,this.paramsInheritanceStrategy);ys.params=Object.freeze(Nr.params),ys.data=Object.freeze(Nr.data);const Ka=this.applyRedirects.applyRedirectCommands(Sn,ft.redirectTo,Jn,ys,Pe);return this.applyRedirects.lineralizeSegments(ft,Ka).pipe((0,ae.Z)(ls=>this.processSegment(Pe,Be,xe,ls.concat(_r),qt,!1,Mi)))}matchSegmentAgainstRoute(Pe,xe,Be,ft,Ot,qt){const Mi=Ir(xe,Be,ft,Pe);return"**"===Be.path&&(xe.children={}),Mi.pipe((0,J.n)(vi=>vi.matched?this.getChildConfig(Pe=Be._injector??Pe,Be,ft).pipe((0,J.n)(({routes:on})=>{const Sn=Be._loadedInjector??Pe,{parameters:Jn,consumedSegments:_r,remainingSegments:ys}=vi,Nr=new Ea(_r,Jn,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Js(Be),Lr(Be),Be.component??Be._loadedComponent??null,Be,bs(Be)),Ka=Ma(Nr,qt,this.paramsInheritanceStrategy);Nr.params=Object.freeze(Ka.params),Nr.data=Object.freeze(Ka.data);const{segmentGroup:ls,slicedSegments:xc}=dn(xe,_r,ys,on);if(0===xc.length&&ls.hasChildren())return this.processChildren(Sn,on,ls,Nr).pipe((0,Q.T)(Ko=>new Sr(Nr,Ko)));if(0===on.length&&0===xc.length)return(0,l.of)(new Sr(Nr,[]));const Pl=Lr(Be)===Ot;return this.processSegment(Sn,on,ls,xc,Pl?ze:Ot,!0,Nr).pipe((0,Q.T)(Ko=>new Sr(Nr,Ko instanceof Sr?[Ko]:[])))})):fo(xe)))}getChildConfig(Pe,xe,Be){return xe.children?(0,l.of)({routes:xe.children,injector:Pe}):xe.loadChildren?void 0!==xe._loadedRoutes?(0,l.of)({routes:xe._loadedRoutes,injector:xe._loadedInjector}):function lc(ve,Pe,xe,Be){const ft=Pe.canLoad;if(void 0===ft||0===ft.length)return(0,l.of)(!0);const Ot=ft.map(qt=>{const Mi=ri(qt,ve);return _e(function Fr(ve){return ve&&tr(ve.canLoad)}(Mi)?Mi.canLoad(Pe,xe):(0,t.N4e)(ve,()=>Mi(Pe,xe)))});return(0,l.of)(Ot).pipe(lt(),dc())}(Pe,xe,Be).pipe((0,ae.Z)(ft=>ft?this.configLoader.loadChildren(Pe,xe).pipe((0,de.M)(Ot=>{xe._loadedRoutes=Ot.routes,xe._loadedInjector=Ot.injector})):function Kr(ve){return(0,F.$)(Ro(!1,ut.GuardRejected))}())):(0,l.of)({routes:[],injector:Pe})}}function Rs(ve){const Pe=ve.value.routeConfig;return Pe&&""===Pe.path}function Eo(ve){const Pe=[],xe=new Set;for(const Be of ve){if(!Rs(Be)){Pe.push(Be);continue}const ft=Pe.find(Ot=>Be.value.routeConfig===Ot.value.routeConfig);void 0!==ft?(ft.children.push(...Be.children),xe.add(ft)):Pe.push(Be)}for(const Be of xe){const ft=Eo(Be.children);Pe.push(new Sr(Be.value,ft))}return Pe.filter(Be=>!xe.has(Be))}function Js(ve){return ve.data||{}}function bs(ve){return ve.resolve||{}}function os(ve){const Pe=ve.children.map(xe=>os(xe)).flat();return[ve,...Pe]}function Rc(ve){return(0,J.n)(Pe=>{const xe=ve(Pe);return xe?(0,S.H)(xe).pipe((0,Q.T)(()=>Pe)):(0,l.of)(Pe)})}let Il=(()=>{class ve{buildTitle(xe){let Be,ft=xe.root;for(;void 0!==ft;)Be=this.getResolvedTitleForRoute(ft)??Be,ft=ft.children.find(Ot=>Ot.outlet===ze);return Be}getResolvedTitleForRoute(xe){return xe.data[qe]}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(il),providedIn:"root"})}return ve})(),il=(()=>{class ve extends Il{constructor(xe){super(),this.title=xe}updateTitle(xe){const Be=this.buildTitle(xe);void 0!==Be&&this.title.setTitle(Be)}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(Ee.hE))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const ss=new t.nKC("",{providedIn:"root",factory:()=>({})}),Fs=new t.nKC("");let nt=(()=>{class ve{constructor(){this.componentLoaders=new WeakMap,this.childrenLoaders=new WeakMap,this.compiler=(0,t.WQX)(t.Ql9)}loadComponent(xe){if(this.componentLoaders.get(xe))return this.componentLoaders.get(xe);if(xe._loadedComponent)return(0,l.of)(xe._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(xe);const Be=_e(xe.loadComponent()).pipe((0,Q.T)(Z),(0,de.M)(Ot=>{this.onLoadEndListener&&this.onLoadEndListener(xe),xe._loadedComponent=Ot}),(0,v.j)(()=>{this.componentLoaders.delete(xe)})),ft=new z.G(Be,()=>new W.B).pipe((0,V.B)());return this.componentLoaders.set(xe,ft),ft}loadChildren(xe,Be){if(this.childrenLoaders.get(Be))return this.childrenLoaders.get(Be);if(Be._loadedRoutes)return(0,l.of)({routes:Be._loadedRoutes,injector:Be._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(Be);const Ot=function Rt(ve,Pe,xe,Be){return _e(ve.loadChildren()).pipe((0,Q.T)(Z),(0,ae.Z)(ft=>ft instanceof t.Co$||Array.isArray(ft)?(0,l.of)(ft):(0,S.H)(Pe.compileModuleAsync(ft))),(0,Q.T)(ft=>{Be&&Be(ve);let Ot,qt,Mi=!1;return Array.isArray(ft)?(qt=ft,!0):(Ot=ft.create(xe).injector,qt=Ot.get(Fs,[],{optional:!0,self:!0}).flat()),{routes:qt.map(Za),injector:Ot}}))}(Be,this.compiler,xe,this.onLoadEndListener).pipe((0,v.j)(()=>{this.childrenLoaders.delete(Be)})),qt=new z.G(Ot,()=>new W.B).pipe((0,V.B)());return this.childrenLoaders.set(Be,qt),qt}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();function Z(ve){return function kt(ve){return ve&&"object"==typeof ve&&"default"in ve}(ve)?ve.default:ve}let Ve=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(De),providedIn:"root"})}return ve})(),De=(()=>{class ve{shouldProcessUrl(xe){return!0}extract(xe){return xe}merge(xe,Be){return xe}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const We=new t.nKC(""),Dt=new t.nKC("");function ei(ve,Pe,xe){const Be=ve.get(Dt),ft=ve.get(j.qQ);return ve.get(t.SKi).runOutsideAngular(()=>{if(!ft.startViewTransition||Be.skipNextTransition)return Be.skipNextTransition=!1,new Promise(on=>setTimeout(on));let Ot;const qt=new Promise(on=>{Ot=on}),Mi=ft.startViewTransition(()=>(Ot(),function pi(ve){return new Promise(Pe=>{(0,t.mal)(Pe,{injector:ve})})}(ve))),{onViewTransitionCreated:vi}=Be;return vi&&(0,t.N4e)(ve,()=>vi({transition:Mi,from:Pe,to:xe})),qt})}const Di=new t.nKC("");let an=(()=>{class ve{get hasRequestedNavigation(){return 0!==this.navigationId}constructor(){this.currentNavigation=null,this.currentTransition=null,this.lastSuccessfulNavigation=null,this.events=new W.B,this.transitionAbortSubject=new W.B,this.configLoader=(0,t.WQX)(nt),this.environmentInjector=(0,t.WQX)(t.uvJ),this.urlSerializer=(0,t.WQX)(Yt),this.rootContexts=(0,t.WQX)(sr),this.location=(0,t.WQX)(j.aZ),this.inputBindingEnabled=null!==(0,t.WQX)(Ta,{optional:!0}),this.titleStrategy=(0,t.WQX)(Il),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly",this.urlHandlingStrategy=(0,t.WQX)(Ve),this.createViewTransition=(0,t.WQX)(We,{optional:!0}),this.navigationErrorHandler=(0,t.WQX)(Di,{optional:!0}),this.navigationId=0,this.afterPreactivation=()=>(0,l.of)(void 0),this.rootComponentType=null,this.configLoader.onLoadEndListener=ft=>this.events.next(new _i(ft)),this.configLoader.onLoadStartListener=ft=>this.events.next(new Rn(ft))}complete(){this.transitions?.complete()}handleNavigationRequest(xe){const Be=++this.navigationId;this.transitions?.next({...this.transitions.value,...xe,id:Be})}setupNavigations(xe,Be,ft){return this.transitions=new x.t({id:0,currentUrlTree:Be,currentRawUrl:Be,extractedUrl:this.urlHandlingStrategy.extract(Be),urlAfterRedirects:this.urlHandlingStrategy.extract(Be),rawUrl:Be,extras:{},resolve:()=>{},reject:()=>{},promise:Promise.resolve(!0),source:bt,restoredState:null,currentSnapshot:ft.snapshot,targetSnapshot:null,currentRouterState:ft,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.transitions.pipe((0,ge.p)(Ot=>0!==Ot.id),(0,Q.T)(Ot=>({...Ot,extractedUrl:this.urlHandlingStrategy.extract(Ot.rawUrl)})),(0,J.n)(Ot=>{let qt=!1,Mi=!1;return(0,l.of)(Ot).pipe((0,J.n)(vi=>{if(this.navigationId>Ot.id)return this.cancelNavigationTransition(Ot,"",ut.SupersededByNewNavigation),R.w;this.currentTransition=Ot,this.currentNavigation={id:vi.id,initialUrl:vi.rawUrl,extractedUrl:vi.extractedUrl,trigger:vi.source,extras:vi.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null};const on=!xe.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!on&&"reload"!==(vi.extras.onSameUrlNavigation??xe.onSameUrlNavigation)){const Jn="";return this.events.next(new Pi(vi.id,this.urlSerializer.serialize(vi.rawUrl),Jn,ii.IgnoredSameUrlNavigation)),vi.resolve(!1),R.w}if(this.urlHandlingStrategy.shouldProcessUrl(vi.rawUrl))return(0,l.of)(vi).pipe((0,J.n)(Jn=>{const _r=this.transitions?.getValue();return this.events.next(new Ce(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),Jn.source,Jn.restoredState)),_r!==this.transitions?.getValue()?R.w:Promise.resolve(Jn)}),function gc(ve,Pe,xe,Be,ft,Ot){return(0,ae.Z)(qt=>function mc(ve,Pe,xe,Be,ft,Ot,qt="emptyOnly"){return new Qs(ve,Pe,xe,Be,ft,qt,Ot).recognize()}(ve,Pe,xe,Be,qt.extractedUrl,ft,Ot).pipe((0,Q.T)(({state:Mi,tree:vi})=>({...qt,targetSnapshot:Mi,urlAfterRedirects:vi}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,xe.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,de.M)(Jn=>{Ot.targetSnapshot=Jn.targetSnapshot,Ot.urlAfterRedirects=Jn.urlAfterRedirects,this.currentNavigation={...this.currentNavigation,finalUrl:Jn.urlAfterRedirects};const _r=new Fn(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),this.urlSerializer.serialize(Jn.urlAfterRedirects),Jn.targetSnapshot);this.events.next(_r)}));if(on&&this.urlHandlingStrategy.shouldProcessUrl(vi.currentRawUrl)){const{id:Jn,extractedUrl:_r,source:ys,restoredState:Nr,extras:Ka}=vi,ls=new Ce(Jn,this.urlSerializer.serialize(_r),ys,Nr);this.events.next(ls);const xc=xo(this.rootComponentType).snapshot;return this.currentTransition=Ot={...vi,targetSnapshot:xc,urlAfterRedirects:_r,extras:{...Ka,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.finalUrl=_r,(0,l.of)(Ot)}{const Jn="";return this.events.next(new Pi(vi.id,this.urlSerializer.serialize(vi.extractedUrl),Jn,ii.IgnoredByUrlHandlingStrategy)),vi.resolve(!1),R.w}}),(0,de.M)(vi=>{const on=new $n(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects),vi.targetSnapshot);this.events.next(on)}),(0,Q.T)(vi=>(this.currentTransition=Ot={...vi,guards:as(vi.targetSnapshot,vi.currentSnapshot,this.rootContexts)},Ot)),function Ue(ve,Pe){return(0,ae.Z)(xe=>{const{targetSnapshot:Be,currentSnapshot:ft,guards:{canActivateChecks:Ot,canDeactivateChecks:qt}}=xe;return 0===qt.length&&0===Ot.length?(0,l.of)({...xe,guardsResult:!0}):function At(ve,Pe,xe,Be){return(0,S.H)(ve).pipe((0,ae.Z)(ft=>function Xa(ve,Pe,xe,Be,ft){const Ot=Pe&&Pe.routeConfig?Pe.routeConfig.canDeactivate:null;if(!Ot||0===Ot.length)return(0,l.of)(!0);const qt=Ot.map(Mi=>{const vi=Oo(Pe)??ft,on=ri(Mi,vi);return _e(function oo(ve){return ve&&tr(ve.canDeactivate)}(on)?on.canDeactivate(ve,Pe,xe,Be):(0,t.N4e)(vi,()=>on(ve,Pe,xe,Be))).pipe((0,Me.$)())});return(0,l.of)(qt).pipe(lt())}(ft.component,ft.route,xe,Pe,Be)),(0,Me.$)(ft=>!0!==ft,!0))}(qt,Be,ft,ve).pipe((0,ae.Z)(Mi=>Mi&&function Or(ve){return"boolean"==typeof ve}(Mi)?function ni(ve,Pe,xe,Be){return(0,S.H)(Pe).pipe((0,Te.H)(ft=>(0,d.x)(function Zn(ve,Pe){return null!==ve&&Pe&&Pe(new Oi(ve)),(0,l.of)(!0)}(ft.route.parent,Be),function pn(ve,Pe){return null!==ve&&Pe&&Pe(new Ci(ve)),(0,l.of)(!0)}(ft.route,Be),function vr(ve,Pe,xe){const Be=Pe[Pe.length-1],Ot=Pe.slice(0,Pe.length-1).reverse().map(qt=>function Ft(ve){const Pe=ve.routeConfig?ve.routeConfig.canActivateChild:null;return Pe&&0!==Pe.length?{node:ve,guards:Pe}:null}(qt)).filter(qt=>null!==qt).map(qt=>(0,T.v)(()=>{const Mi=qt.guards.map(vi=>{const on=Oo(qt.node)??xe,Sn=ri(vi,on);return _e(function gs(ve){return ve&&tr(ve.canActivateChild)}(Sn)?Sn.canActivateChild(Be,ve):(0,t.N4e)(on,()=>Sn(Be,ve))).pipe((0,Me.$)())});return(0,l.of)(Mi).pipe(lt())}));return(0,l.of)(Ot).pipe(lt())}(ve,ft.path,xe),function Fo(ve,Pe,xe){const Be=Pe.routeConfig?Pe.routeConfig.canActivate:null;if(!Be||0===Be.length)return(0,l.of)(!0);const ft=Be.map(Ot=>(0,T.v)(()=>{const qt=Oo(Pe)??xe,Mi=ri(Ot,qt);return _e(function Mo(ve){return ve&&tr(ve.canActivate)}(Mi)?Mi.canActivate(Pe,ve):(0,t.N4e)(qt,()=>Mi(Pe,ve))).pipe((0,Me.$)())}));return(0,l.of)(ft).pipe(lt())}(ve,ft.route,xe))),(0,Me.$)(ft=>!0!==ft,!0))}(Be,Ot,ve,Pe):(0,l.of)(Mi)),(0,Q.T)(Mi=>({...xe,guardsResult:Mi})))})}(this.environmentInjector,vi=>this.events.next(vi)),(0,de.M)(vi=>{if(Ot.guardsResult=vi.guardsResult,vi.guardsResult&&"boolean"!=typeof vi.guardsResult)throw Fa(0,vi.guardsResult);const on=new Yn(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects),vi.targetSnapshot,!!vi.guardsResult);this.events.next(on)}),(0,ge.p)(vi=>!!vi.guardsResult||(this.cancelNavigationTransition(vi,"",ut.GuardRejected),!1)),Rc(vi=>{if(vi.guards.canActivateChecks.length)return(0,l.of)(vi).pipe((0,de.M)(on=>{const Sn=new Qn(on.id,this.urlSerializer.serialize(on.extractedUrl),this.urlSerializer.serialize(on.urlAfterRedirects),on.targetSnapshot);this.events.next(Sn)}),(0,J.n)(on=>{let Sn=!1;return(0,l.of)(on).pipe(function _c(ve,Pe){return(0,ae.Z)(xe=>{const{targetSnapshot:Be,guards:{canActivateChecks:ft}}=xe;if(!ft.length)return(0,l.of)(xe);const Ot=new Set(ft.map(vi=>vi.route)),qt=new Set;for(const vi of Ot)if(!qt.has(vi))for(const on of os(vi))qt.add(on);let Mi=0;return(0,S.H)(qt).pipe((0,Te.H)(vi=>Ot.has(vi)?function So(ve,Pe,xe,Be){const ft=ve.routeConfig,Ot=ve._resolve;return void 0!==ft?.title&&!ro(ft)&&(Ot[qe]=ft.title),function Os(ve,Pe,xe,Be){const ft=fe(ve);if(0===ft.length)return(0,l.of)({});const Ot={};return(0,S.H)(ft).pipe((0,ae.Z)(qt=>function tl(ve,Pe,xe,Be){const ft=Oo(Pe)??Be,Ot=ri(ve,ft);return _e(Ot.resolve?Ot.resolve(Pe,xe):(0,t.N4e)(ft,()=>Ot(Pe,xe)))}(ve[qt],Pe,xe,Be).pipe((0,Me.$)(),(0,de.M)(Mi=>{if(Mi instanceof Oa)throw Fa(new Nt,Mi);Ot[qt]=Mi}))),C(1),(0,r.u)(Ot),(0,D.W)(qt=>oa(qt)?R.w:(0,F.$)(qt)))}(Ot,ve,Pe,Be).pipe((0,Q.T)(qt=>(ve._resolvedData=qt,ve.data=Ma(ve,ve.parent,xe).resolve,null)))}(vi,Be,ve,Pe):(vi.data=Ma(vi,vi.parent,ve).resolve,(0,l.of)(void 0))),(0,de.M)(()=>Mi++),C(1),(0,ae.Z)(vi=>Mi===qt.size?(0,l.of)(xe):R.w))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,de.M)({next:()=>Sn=!0,complete:()=>{Sn||this.cancelNavigationTransition(on,"",ut.NoDataFromResolver)}}))}),(0,de.M)(on=>{const Sn=new rr(on.id,this.urlSerializer.serialize(on.extractedUrl),this.urlSerializer.serialize(on.urlAfterRedirects),on.targetSnapshot);this.events.next(Sn)}))}),Rc(vi=>{const on=Sn=>{const Jn=[];Sn.routeConfig?.loadComponent&&!Sn.routeConfig._loadedComponent&&Jn.push(this.configLoader.loadComponent(Sn.routeConfig).pipe((0,de.M)(_r=>{Sn.component=_r}),(0,Q.T)(()=>{})));for(const _r of Sn.children)Jn.push(...on(_r));return Jn};return(0,f.z)(on(vi.targetSnapshot.root)).pipe((0,c.U)(null),(0,ee.s)(1))}),Rc(()=>this.afterPreactivation()),(0,J.n)(()=>{const{currentSnapshot:vi,targetSnapshot:on}=Ot,Sn=this.createViewTransition?.(this.environmentInjector,vi.root,on.root);return Sn?(0,S.H)(Sn).pipe((0,Q.T)(()=>Ot)):(0,l.of)(Ot)}),(0,Q.T)(vi=>{const on=function wo(ve,Pe,xe){const Be=zo(ve,Pe._root,xe?xe._root:void 0);return new Ho(Be,Pe)}(xe.routeReuseStrategy,vi.targetSnapshot,vi.currentRouterState);return this.currentTransition=Ot={...vi,targetRouterState:on},this.currentNavigation.targetRouterState=on,Ot}),(0,de.M)(()=>{this.events.next(new Vi)}),((ve,Pe,xe,Be)=>(0,Q.T)(ft=>(new Da(Pe,ft.targetRouterState,ft.currentRouterState,xe,Be).activate(ve),ft)))(this.rootContexts,xe.routeReuseStrategy,vi=>this.events.next(vi),this.inputBindingEnabled),(0,ee.s)(1),(0,de.M)({next:vi=>{qt=!0,this.lastSuccessfulNavigation=this.currentNavigation,this.events.next(new ot(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects))),this.titleStrategy?.updateTitle(vi.targetRouterState.snapshot),vi.resolve(!0)},complete:()=>{qt=!0}}),(0,N.Q)(this.transitionAbortSubject.pipe((0,de.M)(vi=>{throw vi}))),(0,v.j)(()=>{!qt&&!Mi&&this.cancelNavigationTransition(Ot,"",ut.SupersededByNewNavigation),this.currentTransition?.id===Ot.id&&(this.currentNavigation=null,this.currentTransition=null)}),(0,D.W)(vi=>{if(Mi=!0,ha(vi))this.events.next(new si(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),vi.message,vi.cancellationCode)),function kr(ve){return ha(ve)&&Pt(ve.url)}(vi)?this.events.next(new ji(vi.url,vi.navigationBehaviorOptions)):Ot.resolve(!1);else{const on=new mn(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),vi,Ot.targetSnapshot??void 0);try{const Sn=(0,t.N4e)(this.environmentInjector,()=>this.navigationErrorHandler?.(on));if(Sn instanceof Oa){const{message:Jn,cancellationCode:_r}=Fa(0,Sn);this.events.next(new si(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),Jn,_r)),this.events.next(new ji(Sn.redirectTo,Sn.navigationBehaviorOptions))}else{this.events.next(on);const Jn=xe.errorHandler(vi);Ot.resolve(!!Jn)}}catch(Sn){this.options.resolveNavigationPromiseOnError?Ot.resolve(!1):Ot.reject(Sn)}}return R.w}))}))}cancelNavigationTransition(xe,Be,ft){const Ot=new si(xe.id,this.urlSerializer.serialize(xe.extractedUrl),Be,ft);this.events.next(Ot),xe.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){return this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))).toString()!==this.currentTransition?.extractedUrl.toString()&&!this.currentTransition?.extras.skipLocationChange}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();function gn(ve){return ve!==bt}let yn=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(hr),providedIn:"root"})}return ve})();class Dn{shouldDetach(Pe){return!1}store(Pe,xe){}shouldAttach(Pe){return!1}retrieve(Pe){return null}shouldReuseRoute(Pe,xe){return Pe.routeConfig===xe.routeConfig}}let hr=(()=>{class ve extends Dn{static#e=this.\u0275fac=(()=>{let xe;return function(ft){return(xe||(xe=t.xGo(ve)))(ft||ve)}})();static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})(),ir=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(br),providedIn:"root"})}return ve})(),br=(()=>{class ve extends ir{constructor(){super(...arguments),this.location=(0,t.WQX)(j.aZ),this.urlSerializer=(0,t.WQX)(Yt),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.canceledNavigationResolution=this.options.canceledNavigationResolution||"replace",this.urlHandlingStrategy=(0,t.WQX)(Ve),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.currentUrlTree=new Ie,this.rawUrlTree=this.currentUrlTree,this.currentPageId=0,this.lastSuccessfulId=-1,this.routerState=xo(null),this.stateMemento=this.createStateMemento()}getCurrentUrlTree(){return this.currentUrlTree}getRawUrlTree(){return this.rawUrlTree}restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}getRouterState(){return this.routerState}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}registerNonRouterCurrentEntryChangeListener(xe){return this.location.subscribe(Be=>{"popstate"===Be.type&&xe(Be.url,Be.state)})}handleRouterEvent(xe,Be){if(xe instanceof Ce)this.stateMemento=this.createStateMemento();else if(xe instanceof Pi)this.rawUrlTree=Be.initialUrl;else if(xe instanceof Fn){if("eager"===this.urlUpdateStrategy&&!Be.extras.skipLocationChange){const ft=this.urlHandlingStrategy.merge(Be.finalUrl,Be.initialUrl);this.setBrowserUrl(ft,Be)}}else xe instanceof Vi?(this.currentUrlTree=Be.finalUrl,this.rawUrlTree=this.urlHandlingStrategy.merge(Be.finalUrl,Be.initialUrl),this.routerState=Be.targetRouterState,"deferred"===this.urlUpdateStrategy&&(Be.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,Be))):xe instanceof si&&(xe.code===ut.GuardRejected||xe.code===ut.NoDataFromResolver)?this.restoreHistory(Be):xe instanceof mn?this.restoreHistory(Be,!0):xe instanceof ot&&(this.lastSuccessfulId=xe.id,this.currentPageId=this.browserPageId)}setBrowserUrl(xe,Be){const ft=this.urlSerializer.serialize(xe);if(this.location.isCurrentPathEqualTo(ft)||Be.extras.replaceUrl){const qt={...Be.extras.state,...this.generateNgRouterState(Be.id,this.browserPageId)};this.location.replaceState(ft,"",qt)}else{const Ot={...Be.extras.state,...this.generateNgRouterState(Be.id,this.browserPageId+1)};this.location.go(ft,"",Ot)}}restoreHistory(xe,Be=!1){if("computed"===this.canceledNavigationResolution){const Ot=this.currentPageId-this.browserPageId;0!==Ot?this.location.historyGo(Ot):this.currentUrlTree===xe.finalUrl&&0===Ot&&(this.resetState(xe),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(Be&&this.resetState(xe),this.resetUrlToCurrentUrlTree())}resetState(xe){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,xe.finalUrl??this.rawUrlTree)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(xe,Be){return"computed"===this.canceledNavigationResolution?{navigationId:xe,\u0275routerPageId:Be}:{navigationId:xe}}static#e=this.\u0275fac=(()=>{let xe;return function(ft){return(xe||(xe=t.xGo(ve)))(ft||ve)}})();static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();var gr=function(ve){return ve[ve.COMPLETE=0]="COMPLETE",ve[ve.FAILED=1]="FAILED",ve[ve.REDIRECTING=2]="REDIRECTING",ve}(gr||{});function Cr(ve,Pe){ve.events.pipe((0,ge.p)(xe=>xe instanceof ot||xe instanceof si||xe instanceof mn||xe instanceof Pi),(0,Q.T)(xe=>xe instanceof ot||xe instanceof Pi?gr.COMPLETE:xe instanceof si&&(xe.code===ut.Redirect||xe.code===ut.SupersededByNewNavigation)?gr.REDIRECTING:gr.FAILED),(0,ge.p)(xe=>xe!==gr.REDIRECTING),(0,ee.s)(1)).subscribe(()=>{Pe()})}function sa(ve){throw ve}const Hn={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},Bi={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let sn=(()=>{class ve{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}constructor(){this.disposed=!1,this.console=(0,t.WQX)(t.H3F),this.stateManager=(0,t.WQX)(ir),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.pendingTasks=(0,t.WQX)(t.TgB),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.navigationTransitions=(0,t.WQX)(an),this.urlSerializer=(0,t.WQX)(Yt),this.location=(0,t.WQX)(j.aZ),this.urlHandlingStrategy=(0,t.WQX)(Ve),this._events=new W.B,this.errorHandler=this.options.errorHandler||sa,this.navigated=!1,this.routeReuseStrategy=(0,t.WQX)(yn),this.onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore",this.config=(0,t.WQX)(Fs,{optional:!0})?.flat()??[],this.componentInputBindingEnabled=!!(0,t.WQX)(Ta,{optional:!0}),this.eventsSubscription=new $.yU,this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this,this.currentUrlTree,this.routerState).subscribe({error:xe=>{this.console.warn(xe)}}),this.subscribeToNavigationEvents()}subscribeToNavigationEvents(){const xe=this.navigationTransitions.events.subscribe(Be=>{try{const ft=this.navigationTransitions.currentTransition,Ot=this.navigationTransitions.currentNavigation;if(null!==ft&&null!==Ot)if(this.stateManager.handleRouterEvent(Be,Ot),Be instanceof si&&Be.code!==ut.Redirect&&Be.code!==ut.SupersededByNewNavigation)this.navigated=!0;else if(Be instanceof ot)this.navigated=!0;else if(Be instanceof ji){const qt=Be.navigationBehaviorOptions,Mi=this.urlHandlingStrategy.merge(Be.url,ft.currentRawUrl),vi={info:ft.extras.info,skipLocationChange:ft.extras.skipLocationChange,replaceUrl:ft.extras.replaceUrl||"eager"===this.urlUpdateStrategy||gn(ft.source),...qt};this.scheduleNavigation(Mi,bt,null,vi,{resolve:ft.resolve,reject:ft.reject,promise:ft.promise})}(function $r(ve){return!(ve instanceof Vi||ve instanceof ji)})(Be)&&this._events.next(Be)}catch(ft){this.navigationTransitions.transitionAbortSubject.next(ft)}});this.eventsSubscription.add(xe)}resetRootComponentType(xe){this.routerState.root.component=xe,this.navigationTransitions.rootComponentType=xe}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),bt,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((xe,Be)=>{setTimeout(()=>{this.navigateToSyncWithBrowser(xe,"popstate",Be)},0)})}navigateToSyncWithBrowser(xe,Be,ft){const Ot={replaceUrl:!0},qt=ft?.navigationId?ft:null;if(ft){const vi={...ft};delete vi.navigationId,delete vi.\u0275routerPageId,0!==Object.keys(vi).length&&(Ot.state=vi)}const Mi=this.parseUrl(xe);this.scheduleNavigation(Mi,Be,qt,Ot)}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.navigationTransitions.currentNavigation}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(xe){this.config=xe.map(Za),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(xe,Be={}){const{relativeTo:ft,queryParams:Ot,fragment:qt,queryParamsHandling:Mi,preserveFragment:vi}=Be,on=vi?this.currentUrlTree.fragment:qt;let Jn,Sn=null;switch(Mi){case"merge":Sn={...this.currentUrlTree.queryParams,...Ot};break;case"preserve":Sn=this.currentUrlTree.queryParams;break;default:Sn=Ot||null}null!==Sn&&(Sn=this.removeEmptyProps(Sn));try{Jn=di(ft?ft.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof xe[0]||"/"!==xe[0][0])&&(xe=[]),Jn=this.currentUrlTree.root}return fi(Jn,xe,Sn,on??null)}navigateByUrl(xe,Be={skipLocationChange:!1}){const ft=Pt(xe)?xe:this.parseUrl(xe),Ot=this.urlHandlingStrategy.merge(ft,this.rawUrlTree);return this.scheduleNavigation(Ot,bt,null,Be)}navigate(xe,Be={skipLocationChange:!1}){return function fr(ve){for(let Pe=0;Pe(null!=Ot&&(Be[ft]=Ot),Be),{})}scheduleNavigation(xe,Be,ft,Ot,qt){if(this.disposed)return Promise.resolve(!1);let Mi,vi,on;qt?(Mi=qt.resolve,vi=qt.reject,on=qt.promise):on=new Promise((Jn,_r)=>{Mi=Jn,vi=_r});const Sn=this.pendingTasks.add();return Cr(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(Sn))}),this.navigationTransitions.handleNavigationRequest({source:Be,restoredState:ft,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:xe,extras:Ot,resolve:Mi,reject:vi,promise:on,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),on.catch(Jn=>Promise.reject(Jn))}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})(),fa=(()=>{class ve{constructor(xe,Be,ft,Ot,qt,Mi){this.router=xe,this.route=Be,this.tabIndexAttribute=ft,this.renderer=Ot,this.el=qt,this.locationStrategy=Mi,this.href=null,this.commands=null,this.onChanges=new W.B,this.preserveFragment=!1,this.skipLocationChange=!1,this.replaceUrl=!1;const vi=qt.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===vi||"area"===vi,this.isAnchorElement?this.subscription=xe.events.subscribe(on=>{on instanceof ot&&this.updateHref()}):this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(xe){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",xe)}ngOnChanges(xe){this.isAnchorElement&&this.updateHref(),this.onChanges.next(this)}set routerLink(xe){null!=xe?(this.commands=Array.isArray(xe)?xe:[xe],this.setTabIndexIfNotOnNativeEl("0")):(this.commands=null,this.setTabIndexIfNotOnNativeEl(null))}onClick(xe,Be,ft,Ot,qt){const Mi=this.urlTree;return!!(null===Mi||this.isAnchorElement&&(0!==xe||Be||ft||Ot||qt||"string"==typeof this.target&&"_self"!=this.target))||(this.router.navigateByUrl(Mi,{skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info}),!this.isAnchorElement)}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const xe=this.urlTree;this.href=null!==xe&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(xe)):null;const Be=null===this.href?null:(0,t.n$t)(this.href,this.el.nativeElement.tagName.toLowerCase(),"href");this.applyAttributeValue("href",Be)}applyAttributeValue(xe,Be){const ft=this.renderer,Ot=this.el.nativeElement;null!==Be?ft.setAttribute(Ot,xe,Be):ft.removeAttribute(Ot,xe)}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:this.preserveFragment})}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.rXU(sn),t.rXU(Rr),t.kS0("tabindex"),t.rXU(t.sFG),t.rXU(t.aKT),t.rXU(j.hb))};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["","routerLink",""]],hostVars:1,hostBindings:function(Be,ft){1&Be&&t.bIt("click",function(qt){return ft.onClick(qt.button,qt.ctrlKey,qt.shiftKey,qt.altKey,qt.metaKey)}),2&Be&&t.BMQ("target",ft.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"},standalone:!0,features:[t.GFd,t.OA$]})}return ve})(),Ya=(()=>{class ve{get isActive(){return this._isActive}constructor(xe,Be,ft,Ot,qt){this.router=xe,this.element=Be,this.renderer=ft,this.cdr=Ot,this.link=qt,this.classes=[],this._isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new t.bkB,this.routerEventsSubscription=xe.events.subscribe(Mi=>{Mi instanceof ot&&this.update()})}ngAfterContentInit(){(0,l.of)(this.links.changes,(0,l.of)(null)).pipe((0,ne.U)()).subscribe(xe=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const xe=[...this.links.toArray(),this.link].filter(Be=>!!Be).map(Be=>Be.onChanges);this.linkInputChangesSubscription=(0,S.H)(xe).pipe((0,ne.U)()).subscribe(Be=>{this._isActive!==this.isLinkActive(this.router)(Be)&&this.update()})}set routerLinkActive(xe){const Be=Array.isArray(xe)?xe:xe.split(" ");this.classes=Be.filter(ft=>!!ft)}ngOnChanges(xe){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const xe=this.hasActiveLinks();this.classes.forEach(Be=>{xe?this.renderer.addClass(this.element.nativeElement,Be):this.renderer.removeClass(this.element.nativeElement,Be)}),xe&&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!==xe&&(this._isActive=xe,this.cdr.markForCheck(),this.isActiveChange.emit(xe))})}isLinkActive(xe){const Be=function vc(ve){return!!ve.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return ft=>{const Ot=ft.urlTree;return!!Ot&&xe.isActive(Ot,Be)}}hasActiveLinks(){const xe=this.isLinkActive(this.router);return this.link&&xe(this.link)||this.links.some(xe)}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.rXU(sn),t.rXU(t.aKT),t.rXU(t.sFG),t.rXU(t.gRc),t.rXU(fa,8))};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["","routerLinkActive",""]],contentQueries:function(Be,ft,Ot){if(1&Be&&t.wni(Ot,fa,5),2&Be){let qt;t.mGM(qt=t.lsd())&&(ft.links=qt)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],standalone:!0,features:[t.OA$]})}return ve})();class Ur{}let Wn=(()=>{class ve{constructor(xe,Be,ft,Ot,qt){this.router=xe,this.injector=ft,this.preloadingStrategy=Ot,this.loader=qt}setUpPreloading(){this.subscription=this.router.events.pipe((0,ge.p)(xe=>xe instanceof ot),(0,Te.H)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(xe,Be){const ft=[];for(const Ot of Be){Ot.providers&&!Ot._injector&&(Ot._injector=(0,t.Ol2)(Ot.providers,xe,`Route: ${Ot.path}`));const qt=Ot._injector??xe,Mi=Ot._loadedInjector??qt;(Ot.loadChildren&&!Ot._loadedRoutes&&void 0===Ot.canLoad||Ot.loadComponent&&!Ot._loadedComponent)&&ft.push(this.preloadConfig(qt,Ot)),(Ot.children||Ot._loadedRoutes)&&ft.push(this.processRoutes(Mi,Ot.children??Ot._loadedRoutes))}return(0,S.H)(ft).pipe((0,ne.U)())}preloadConfig(xe,Be){return this.preloadingStrategy.preload(Be,()=>{let ft;ft=Be.loadChildren&&void 0===Be.canLoad?this.loader.loadChildren(xe,Be):(0,l.of)(null);const Ot=ft.pipe((0,ae.Z)(qt=>null===qt?(0,l.of)(void 0):(Be._loadedRoutes=qt.routes,Be._loadedInjector=qt.injector,this.processRoutes(qt.injector??xe,qt.routes))));if(Be.loadComponent&&!Be._loadedComponent){const qt=this.loader.loadComponent(Be);return(0,S.H)([Ot,qt]).pipe((0,ne.U)())}return Ot})}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(sn),t.KVO(t.Ql9),t.KVO(t.uvJ),t.KVO(Ur),t.KVO(nt))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const bc=new t.nKC("");let Rl=(()=>{class ve{constructor(xe,Be,ft,Ot,qt={}){this.urlSerializer=xe,this.transitions=Be,this.viewportScroller=ft,this.zone=Ot,this.options=qt,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},this.environmentInjector=(0,t.WQX)(t.uvJ),qt.scrollPositionRestoration||="disabled",qt.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(xe=>{xe instanceof Ce?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=xe.navigationTrigger,this.restoredId=xe.restoredState?xe.restoredState.navigationId:0):xe instanceof ot?(this.lastId=xe.id,this.scheduleScrollEvent(xe,this.urlSerializer.parse(xe.urlAfterRedirects).fragment)):xe instanceof Pi&&xe.code===ii.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(xe,this.urlSerializer.parse(xe.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(xe=>{xe instanceof yi&&(xe.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(xe.position):xe.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(xe.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(xe,Be){var ft=this;this.zone.runOutsideAngular((0,e.A)(function*(){yield new Promise(Ot=>{setTimeout(()=>{Ot()}),(0,t.mal)(()=>{Ot()},{injector:ft.environmentInjector})}),ft.zone.run(()=>{ft.transitions.events.next(new yi(xe,"popstate"===ft.lastSource?ft.store[ft.restoredId]:null,Be))})}))}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static#e=this.\u0275fac=function(Be){t.QTQ()};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac})}return ve})();function mo(ve,Pe){return{\u0275kind:ve,\u0275providers:Pe}}function Gi(){const ve=(0,t.WQX)(t.zZn);return Pe=>{const xe=ve.get(t.o8S);if(Pe!==xe.components[0])return;const Be=ve.get(sn),ft=ve.get(Fc);1===ve.get(Ps)&&Be.initialNavigation(),ve.get(Xo,null,t.$GK.Optional)?.setUpPreloading(),ve.get(bc,null,t.$GK.Optional)?.init(),Be.resetRootComponentType(xe.componentTypes[0]),ft.closed||(ft.next(),ft.complete(),ft.unsubscribe())}}const Fc=new t.nKC("",{factory:()=>new W.B}),Ps=new t.nKC("",{providedIn:"root",factory:()=>1}),Xo=new t.nKC("");function Ol(ve){return mo(0,[{provide:Xo,useExisting:Wn},{provide:Ur,useExisting:ve}])}function ba(ve){return mo(9,[{provide:We,useValue:ei},{provide:Dt,useValue:{skipNextTransition:!!ve?.skipInitialTransition,...ve}}])}const Vs=new t.nKC("ROUTER_FORROOT_GUARD"),Ja=[j.aZ,{provide:Yt,useClass:Nt},sn,sr,{provide:Rr,useFactory:function Qr(ve){return ve.routerState.root},deps:[sn]},nt,[]];let En=(()=>{class ve{constructor(xe){}static forRoot(xe,Be){return{ngModule:ve,providers:[Ja,[],{provide:Fs,multi:!0,useValue:xe},{provide:Vs,useFactory:$i,deps:[[sn,new t.Xx1,new t.kdw]]},{provide:ss,useValue:Be||{}},Be?.useHash?{provide:j.hb,useClass:j.fw}:{provide:j.hb,useClass:j.Sm},{provide:bc,useFactory:()=>{const ve=(0,t.WQX)(j.Xr),Pe=(0,t.WQX)(t.SKi),xe=(0,t.WQX)(ss),Be=(0,t.WQX)(an),ft=(0,t.WQX)(Yt);return xe.scrollOffset&&ve.setOffset(xe.scrollOffset),new Rl(ft,Be,ve,Pe,xe)}},Be?.preloadingStrategy?Ol(Be.preloadingStrategy).\u0275providers:[],Be?.initialNavigation?mr(Be):[],Be?.bindToComponentInputs?mo(8,[Co,{provide:Ta,useExisting:Co}]).\u0275providers:[],Be?.enableViewTransitions?ba().\u0275providers:[],[{provide:ca,useFactory:Gi},{provide:t.iLQ,multi:!0,useExisting:ca}]]}}static forChild(xe){return{ngModule:ve,providers:[{provide:Fs,multi:!0,useValue:xe}]}}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(Vs,8))};static#t=this.\u0275mod=t.$C({type:ve});static#i=this.\u0275inj=t.G2t({})}return ve})();function $i(ve){return"guarded"}function mr(ve){return["disabled"===ve.initialNavigation?mo(3,[{provide:t.hnV,multi:!0,useFactory:()=>{const Pe=(0,t.WQX)(sn);return()=>{Pe.setUpLocationChangeListener()}}},{provide:Ps,useValue:2}]).\u0275providers:[],"enabledBlocking"===ve.initialNavigation?mo(2,[{provide:Ps,useValue:0},{provide:t.hnV,multi:!0,deps:[t.zZn],useFactory:Pe=>{const xe=Pe.get(j.hj,Promise.resolve());return()=>xe.then(()=>new Promise(Be=>{const ft=Pe.get(sn),Ot=Pe.get(Fc);Cr(ft,()=>{Be(!0)}),Pe.get(an).afterPreactivation=()=>(Be(!0),Ot.closed?(0,l.of)(void 0):Ot),ft.initialNavigation()}))}}]).\u0275providers:[]]}const ca=new t.nKC("")},60:(Qe,te,g)=>{"use strict";g.d(te,{aY:()=>Os,dX:()=>Fs});var e=g(4438),t=g(177);function w(nt,Rt){var kt=Object.keys(nt);if(Object.getOwnPropertySymbols){var Z=Object.getOwnPropertySymbols(nt);Rt&&(Z=Z.filter(function(Ve){return Object.getOwnPropertyDescriptor(nt,Ve).enumerable})),kt.push.apply(kt,Z)}return kt}function S(nt){for(var Rt=1;Rtnt.length)&&(Rt=nt.length);for(var kt=0,Z=new Array(Rt);kt0;)Rt+=$e[62*Math.random()|0];return Rt}function Ge(nt){for(var Rt=[],kt=(nt||[]).length>>>0;kt--;)Rt[kt]=nt[kt];return Rt}function et(nt){return nt.classList?Ge(nt.classList):(nt.getAttribute("class")||"").split(" ").filter(function(Rt){return Rt})}function st(nt){return"".concat(nt).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function mi(nt){return Object.keys(nt||{}).reduce(function(Rt,kt){return Rt+"".concat(kt,": ").concat(nt[kt].trim(),";")},"")}function Kt(nt){return nt.size!==Ne.size||nt.x!==Ne.x||nt.y!==Ne.y||nt.rotate!==Ne.rotate||nt.flipX||nt.flipY}var di=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular";\n --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";\n --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\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.0714285705em;\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 margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\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: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\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 -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\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 -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\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 -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\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 -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\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 -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\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: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\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.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\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 -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\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 -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\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 -webkit-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 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 -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\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 -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\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 -webkit-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 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 -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\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 -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\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-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\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@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, 0));\n transform: rotate(var(--fa-rotate-angle, 0));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 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.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}';function fi(){var nt=se,Rt=X,kt=we.cssPrefix,Z=we.replacementClass,Ve=di;if(kt!==nt||Z!==Rt){var De=new RegExp("\\.".concat(nt,"\\-"),"g"),We=new RegExp("\\--".concat(nt,"\\-"),"g"),Dt=new RegExp("\\.".concat(Rt),"g");Ve=Ve.replace(De,".".concat(kt,"-")).replace(We,"--".concat(kt,"-")).replace(Dt,".".concat(Z))}return Ve}var vn=!1;function Qi(){we.autoAddCss&&!vn&&(function gt(nt){if(nt&&r){var Rt=C.createElement("style");Rt.setAttribute("type","text/css"),Rt.innerHTML=nt;for(var kt=C.head.childNodes,Z=null,Ve=kt.length-1;Ve>-1;Ve--){var De=kt[Ve],We=(De.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(We)>-1&&(Z=De)}C.head.insertBefore(Rt,Z)}}(fi()),vn=!0)}var Li={mixout:function(){return{dom:{css:fi,insertCss:Qi}}},hooks:function(){return{beforeDOMElementCreation:function(){Qi()},beforeI2svg:function(){Qi()}}}},Zi=h||{};Zi[qe]||(Zi[qe]={}),Zi[qe].styles||(Zi[qe].styles={}),Zi[qe].hooks||(Zi[qe].hooks={}),Zi[qe].shims||(Zi[qe].shims=[]);var Qt=Zi[qe],Mt=[],ct=!1;function Ut(nt){var Rt=nt.tag,kt=nt.attributes,Z=void 0===kt?{}:kt,Ve=nt.children,De=void 0===Ve?[]:Ve;return"string"==typeof nt?st(nt):"<".concat(Rt," ").concat(function Tt(nt){return Object.keys(nt||{}).reduce(function(Rt,kt){return Rt+"".concat(kt,'="').concat(st(nt[kt]),'" ')},"").trim()}(Z),">").concat(De.map(Ut).join(""),"")}function xi(nt,Rt,kt){if(nt&&nt[Rt]&&nt[Rt][kt])return{prefix:Rt,iconName:kt,icon:nt[Rt][kt]}}r&&((ct=(C.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(C.readyState))||C.addEventListener("DOMContentLoaded",function nt(){C.removeEventListener("DOMContentLoaded",nt),ct=1,Mt.map(function(Rt){return Rt()})}));var zi=function(Rt,kt,Z,Ve){var ei,pi,Di,De=Object.keys(Rt),We=De.length,Dt=void 0!==Ve?function(Rt,kt){return function(Z,Ve,De,We){return Rt.call(kt,Z,Ve,De,We)}}(kt,Ve):kt;for(void 0===Z?(ei=1,Di=Rt[De[0]]):(ei=0,Di=Z);ei=55296&&Ve<=56319&&kt2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,Ve=void 0!==Z&&Z,De=Zt(Rt);"function"!=typeof Qt.hooks.addPack||Ve?Qt.styles[nt]=S(S({},Qt.styles[nt]||{}),De):Qt.hooks.addPack(nt,Zt(Rt)),"fas"===nt&&bt("fa",Rt)}var je,Ce,ot,ut=Qt.styles,ii=Qt.shims,si=(T(je={},_t,Object.values(Ie[_t])),T(je,at,Object.values(Ie[at])),je),Pi=null,mn={},Fn={},$n={},Yn={},Qn={},rr=(T(Ce={},_t,Object.keys(ye[_t])),T(Ce,at,Object.keys(ye[at])),Ce);var Oi=function(){var Rt=function(De){return zi(ut,function(We,Dt,ei){return We[ei]=zi(Dt,De,{}),We},{})};mn=Rt(function(Ve,De,We){return De[3]&&(Ve[De[3]]=We),De[2]&&De[2].filter(function(ei){return"number"==typeof ei}).forEach(function(ei){Ve[ei.toString(16)]=We}),Ve}),Fn=Rt(function(Ve,De,We){return Ve[We]=We,De[2]&&De[2].filter(function(ei){return"string"==typeof ei}).forEach(function(ei){Ve[ei]=We}),Ve}),Qn=Rt(function(Ve,De,We){var Dt=De[2];return Ve[We]=We,Dt.forEach(function(ei){Ve[ei]=We}),Ve});var kt="far"in ut||we.autoFetchSvg,Z=zi(ii,function(Ve,De){var We=De[0],Dt=De[1],ei=De[2];return"far"===Dt&&!kt&&(Dt="fas"),"string"==typeof We&&(Ve.names[We]={prefix:Dt,iconName:ei}),"number"==typeof We&&(Ve.unicodes[We.toString(16)]={prefix:Dt,iconName:ei}),Ve},{names:{},unicodes:{}});$n=Z.names,Yn=Z.unicodes,Pi=ar(we.styleDefault,{family:we.familyDefault})};function jt(nt,Rt){return(mn[nt]||{})[Rt]}function hi(nt,Rt){return(Qn[nt]||{})[Rt]}function yi(nt){return $n[nt]||{prefix:null,iconName:null}}function ji(){return Pi}(function q(nt){he.push(nt)})(function(nt){Pi=ar(nt.styleDefault,{family:we.familyDefault})}),Oi();var rn=function(){return{prefix:null,iconName:null,rest:[]}};function ar(nt){var kt=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).family,Z=void 0===kt?_t:kt;return ue[Z][nt]||ue[Z][ye[Z][nt]]||(nt in Qt.styles?nt:null)||null}var sr=(T(ot={},_t,Object.keys(Ie[_t])),T(ot,at,Object.keys(Ie[at])),ot);function nr(nt){var Rt,Z=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).skipLookups,Ve=void 0!==Z&&Z,De=(T(Rt={},_t,"".concat(we.cssPrefix,"-").concat(_t)),T(Rt,at,"".concat(we.cssPrefix,"-").concat(at)),Rt),We=null,Dt=_t;(nt.includes(De[_t])||nt.some(function(pi){return sr[_t].includes(pi)}))&&(Dt=_t),(nt.includes(De[at])||nt.some(function(pi){return sr[at].includes(pi)}))&&(Dt=at);var ei=nt.reduce(function(pi,Di){var an=function _i(nt,Rt){var kt=Rt.split("-"),Z=kt[0],Ve=kt.slice(1).join("-");return Z!==nt||""===Ve||function Rn(nt){return~tt.indexOf(nt)}(Ve)?null:Ve}(we.cssPrefix,Di);if(ut[Di]?(Di=si[Dt].includes(Di)?He[Dt][Di]:Di,We=Di,pi.prefix=Di):rr[Dt].indexOf(Di)>-1?(We=Di,pi.prefix=ar(Di,{family:Dt})):an?pi.iconName=an:Di!==we.replacementClass&&Di!==De[_t]&&Di!==De[at]&&pi.rest.push(Di),!Ve&&pi.prefix&&pi.iconName){var gn="fa"===We?yi(pi.iconName):{},yn=hi(pi.prefix,pi.iconName);gn.prefix&&(We=null),pi.iconName=gn.iconName||yn||pi.iconName,pi.prefix=gn.prefix||pi.prefix,"far"===pi.prefix&&!ut.far&&ut.fas&&!we.autoFetchSvg&&(pi.prefix="fas")}return pi},rn());return(nt.includes("fa-brands")||nt.includes("fab"))&&(ei.prefix="fab"),(nt.includes("fa-duotone")||nt.includes("fad"))&&(ei.prefix="fad"),!ei.prefix&&Dt===at&&(ut.fass||we.autoFetchSvg)&&(ei.prefix="fass",ei.iconName=hi(ei.prefix,ei.iconName)||ei.iconName),("fa"===ei.prefix||"fa"===We)&&(ei.prefix=ji()||"fas"),ei}var or=function(){function nt(){(function f(nt,Rt){if(!(nt instanceof Rt))throw new TypeError("Cannot call a class as a function")})(this,nt),this.definitions={}}return function d(nt,Rt,kt){Rt&&I(nt.prototype,Rt),kt&&I(nt,kt),Object.defineProperty(nt,"prototype",{writable:!1})}(nt,[{key:"add",value:function(){for(var kt=this,Z=arguments.length,Ve=new Array(Z),De=0;De0&&Di.forEach(function(an){"string"==typeof an&&(kt[Dt][an]=pi)}),kt[Dt][ei]=pi}),kt}}]),nt}(),Xr=[],Sr={},zr={},Ho=Object.keys(zr);function is(nt,Rt){for(var kt=arguments.length,Z=new Array(kt>2?kt-2:0),Ve=2;Ve1?Rt-1:0),Z=1;Z0&&void 0!==arguments[0]?arguments[0]:{};return r?(Rr("beforeI2svg",Rt),Ma("pseudoElements2svg",Rt),Ma("i2svg",Rt)):Promise.reject("Operation requires a DOM of some kind.")},watch:function(){var Rt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},kt=Rt.autoReplaceSvgRoot;!1===we.autoReplaceSvg&&(we.autoReplaceSvg=!0),we.observeMutations=!0,function wt(nt){r&&(ct?setTimeout(nt,0):Mt.push(nt))}(function(){ro({autoReplaceSvgRoot:kt}),Rr("watch",Rt)})}},zn={noAuto:function(){we.autoReplaceSvg=!1,we.observeMutations=!1,Rr("noAuto")},config:we,dom:xr,parse:{icon:function(Rt){if(null===Rt)return null;if("object"===l(Rt)&&Rt.prefix&&Rt.iconName)return{prefix:Rt.prefix,iconName:hi(Rt.prefix,Rt.iconName)||Rt.iconName};if(Array.isArray(Rt)&&2===Rt.length){var kt=0===Rt[1].indexOf("fa-")?Rt[1].slice(3):Rt[1],Z=ar(Rt[0]);return{prefix:Z,iconName:hi(Z,kt)||kt}}if("string"==typeof Rt&&(Rt.indexOf("".concat(we.cssPrefix,"-"))>-1||Rt.match(Xe))){var Ve=nr(Rt.split(" "),{skipLookups:!0});return{prefix:Ve.prefix||ji(),iconName:hi(Ve.prefix,Ve.iconName)||Ve.iconName}}if("string"==typeof Rt){var De=ji();return{prefix:De,iconName:hi(De,Rt)||Rt}}}},library:no,findIconDefinition:Ea,toHtml:Ut},ro=function(){var kt=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).autoReplaceSvgRoot,Z=void 0===kt?C:kt;(Object.keys(Qt.styles).length>0||we.autoFetchSvg)&&r&&we.autoReplaceSvg&&zn.dom.i2svg({node:Z})};function hn(nt,Rt){return Object.defineProperty(nt,"abstract",{get:Rt}),Object.defineProperty(nt,"html",{get:function(){return nt.abstract.map(function(Z){return Ut(Z)})}}),Object.defineProperty(nt,"node",{get:function(){if(r){var Z=C.createElement("div");return Z.innerHTML=nt.html,Z.children}}}),nt}function Co(nt){var Rt=nt.icons,kt=Rt.main,Z=Rt.mask,Ve=nt.prefix,De=nt.iconName,We=nt.transform,Dt=nt.symbol,ei=nt.title,pi=nt.maskId,Di=nt.titleId,an=nt.extra,gn=nt.watchable,yn=void 0!==gn&&gn,Dn=Z.found?Z:kt,hr=Dn.width,ir=Dn.height,br="fak"===Ve,gr=[we.replacementClass,De?"".concat(we.cssPrefix,"-").concat(De):""].filter(function($r){return-1===an.classes.indexOf($r)}).filter(function($r){return""!==$r||!!$r}).concat(an.classes).join(" "),Cr={children:[],attributes:S(S({},an.attributes),{},{"data-prefix":Ve,"data-icon":De,class:gr,role:an.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(hr," ").concat(ir)})},sa=br&&!~an.classes.indexOf("fa-fw")?{width:"".concat(hr/ir*16*.0625,"em")}:{};yn&&(Cr.attributes[me]=""),ei&&(Cr.children.push({tag:"title",attributes:{id:Cr.attributes["aria-labelledby"]||"title-".concat(Di||Fe())},children:[ei]}),delete Cr.attributes.title);var Hn=S(S({},Cr),{},{prefix:Ve,iconName:De,main:kt,mask:Z,maskId:pi,transform:We,symbol:Dt,styles:S(S({},sa),an.styles)}),Bi=Z.found&&kt.found?Ma("generateAbstractMask",Hn)||{children:[],attributes:{}}:Ma("generateAbstractIcon",Hn)||{children:[],attributes:{}},fr=Bi.attributes;return Hn.children=Bi.children,Hn.attributes=fr,Dt?function Ta(nt){var kt=nt.iconName,Z=nt.children,Ve=nt.attributes,De=nt.symbol,We=!0===De?"".concat(nt.prefix,"-").concat(we.cssPrefix,"-").concat(kt):De;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:S(S({},Ve),{},{id:We}),children:Z}]}]}(Hn):function Yr(nt){var Rt=nt.children,kt=nt.main,Z=nt.mask,Ve=nt.attributes,De=nt.styles,We=nt.transform;if(Kt(We)&&kt.found&&!Z.found){var pi={x:kt.width/kt.height/2,y:.5};Ve.style=mi(S(S({},De),{},{"transform-origin":"".concat(pi.x+We.x/16,"em ").concat(pi.y+We.y/16,"em")}))}return[{tag:"svg",attributes:Ve,children:Rt}]}(Hn)}function wo(nt){var Rt=nt.content,kt=nt.width,Z=nt.height,Ve=nt.transform,De=nt.title,We=nt.extra,Dt=nt.watchable,ei=void 0!==Dt&&Dt,pi=S(S(S({},We.attributes),De?{title:De}:{}),{},{class:We.classes.join(" ")});ei&&(pi[me]="");var Di=S({},We.styles);Kt(Ve)&&(Di.transform=function Xi(nt){var Rt=nt.transform,kt=nt.width,Ve=nt.height,De=void 0===Ve?16:Ve,We=nt.startCentered,Dt=void 0!==We&&We,ei="";return ei+=Dt&&v?"translate(".concat(Rt.x/16-(void 0===kt?16:kt)/2,"em, ").concat(Rt.y/16-De/2,"em) "):Dt?"translate(calc(-50% + ".concat(Rt.x/16,"em), calc(-50% + ").concat(Rt.y/16,"em)) "):"translate(".concat(Rt.x/16,"em, ").concat(Rt.y/16,"em) "),(ei+="scale(".concat(Rt.size/16*(Rt.flipX?-1:1),", ").concat(Rt.size/16*(Rt.flipY?-1:1),") "))+"rotate(".concat(Rt.rotate,"deg) ")}({transform:Ve,startCentered:!0,width:kt,height:Z}),Di["-webkit-transform"]=Di.transform);var an=mi(Di);an.length>0&&(pi.style=an);var gn=[];return gn.push({tag:"span",attributes:pi,children:[Rt]}),De&&gn.push({tag:"span",attributes:{class:"sr-only"},children:[De]}),gn}var da=Qt.styles;function ao(nt){var Rt=nt[0],kt=nt[1],De=R(nt.slice(4),1)[0];return{found:!0,width:Rt,height:kt,icon:Array.isArray(De)?{tag:"g",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.GROUP)},children:[{tag:"path",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.SECONDARY),fill:"currentColor",d:De[0]}},{tag:"path",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.PRIMARY),fill:"currentColor",d:De[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:De}}}}var Oa={found:!1,width:512,height:512};function Fa(nt,Rt){var kt=Rt;return"fa"===Rt&&null!==we.styleDefault&&(Rt=ji()),new Promise(function(Z,Ve){if(Ma("missingIconAbstract"),"fa"===kt){var We=yi(nt)||{};nt=We.iconName||nt,Rt=We.prefix||Rt}if(nt&&Rt&&da[Rt]&&da[Rt][nt])return Z(ao(da[Rt][nt]));(function ns(nt,Rt){!Ze&&!we.showMissingIcons&&nt&&console.error('Icon with name "'.concat(nt,'" and prefix "').concat(Rt,'" is missing.'))})(nt,Rt),Z(S(S({},Oa),{},{icon:we.showMissingIcons&&nt&&Ma("missingIconAbstract")||{}}))})}var Ro=function(){},kr=we.measurePerformance&&L&&L.mark&&L.measure?L:{mark:Ro,measure:Ro},ha='FA "6.5.2"',Ua=function(Rt){kr.mark("".concat(ha," ").concat(Rt," ends")),kr.measure("".concat(ha," ").concat(Rt),"".concat(ha," ").concat(Rt," begins"),"".concat(ha," ").concat(Rt," ends"))},rs={begin:function(Rt){return kr.mark("".concat(ha," ").concat(Rt," begins")),function(){return Ua(Rt)}},end:Ua},Ga=function(){};function Na(nt){return"string"==typeof(nt.getAttribute?nt.getAttribute(me):null)}function uo(nt){return C.createElementNS("http://www.w3.org/2000/svg",nt)}function ga(nt){return C.createElement(nt)}function Za(nt){var kt=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).ceFn,Z=void 0===kt?"svg"===nt.tag?uo:ga:kt;if("string"==typeof nt)return C.createTextNode(nt);var Ve=Z(nt.tag);return Object.keys(nt.attributes||[]).forEach(function(We){Ve.setAttribute(We,nt.attributes[We])}),(nt.children||[]).forEach(function(We){Ve.appendChild(Za(We,{ceFn:Z}))}),Ve}var _a={replace:function(Rt){var kt=Rt[0];if(kt.parentNode)if(Rt[1].forEach(function(Ve){kt.parentNode.insertBefore(Za(Ve),kt)}),null===kt.getAttribute(me)&&we.keepOriginalSource){var Z=C.createComment(function Lr(nt){var Rt=" ".concat(nt.outerHTML," ");return"".concat(Rt,"Font Awesome fontawesome.com ")}(kt));kt.parentNode.replaceChild(Z,kt)}else kt.remove()},nest:function(Rt){var kt=Rt[0],Z=Rt[1];if(~et(kt).indexOf(we.replacementClass))return _a.replace(Rt);var Ve=new RegExp("".concat(we.cssPrefix,"-.*"));if(delete Z[0].attributes.id,Z[0].attributes.class){var De=Z[0].attributes.class.split(" ").reduce(function(Dt,ei){return ei===we.replacementClass||ei.match(Ve)?Dt.toSvg.push(ei):Dt.toNode.push(ei),Dt},{toNode:[],toSvg:[]});Z[0].attributes.class=De.toSvg.join(" "),0===De.toNode.length?kt.removeAttribute("class"):kt.setAttribute("class",De.toNode.join(" "))}var We=Z.map(function(Dt){return Ut(Dt)}).join("\n");kt.setAttribute(me,""),kt.innerHTML=We}};function Oo(nt){nt()}function qr(nt,Rt){var kt="function"==typeof Rt?Rt:Ga;if(0===nt.length)kt();else{var Z=Oo;we.mutateApproach===be&&(Z=h.requestAnimationFrame||Oo),Z(function(){var Ve=function Uo(){return!0===we.autoReplaceSvg?_a.replace:_a[we.autoReplaceSvg]||_a.replace}(),De=rs.begin("mutate");nt.map(Ve),De(),kt()})}}var Bn=!1;function Da(){Bn=!0}function Go(){Bn=!1}var Wa=null;function as(nt){if(k&&we.observeMutations){var Rt=nt.treeCallback,kt=void 0===Rt?Ga:Rt,Z=nt.nodeCallback,Ve=void 0===Z?Ga:Z,De=nt.pseudoElementsCallback,We=void 0===De?Ga:De,Dt=nt.observeMutationsRoot,ei=void 0===Dt?C:Dt;Wa=new k(function(pi){if(!Bn){var Di=ji();Ge(pi).forEach(function(an){if("childList"===an.type&&an.addedNodes.length>0&&!Na(an.addedNodes[0])&&(we.searchPseudoElements&&We(an.target),kt(an.target)),"attributes"===an.type&&an.target.parentNode&&we.searchPseudoElements&&We(an.target.parentNode),"attributes"===an.type&&Na(an.target)&&~Et.indexOf(an.attributeName))if("class"===an.attributeName&&function ja(nt){var Rt=nt.getAttribute?nt.getAttribute(ke):null,kt=nt.getAttribute?nt.getAttribute(mt):null;return Rt&&kt}(an.target)){var gn=nr(et(an.target)),Dn=gn.iconName;an.target.setAttribute(ke,gn.prefix||Di),Dn&&an.target.setAttribute(mt,Dn)}else(function Bo(nt){return nt&&nt.classList&&nt.classList.contains&&nt.classList.contains(we.replacementClass)})(an.target)&&Ve(an.target)})}}),r&&Wa.observe(ei,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Ki(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},kt=function xt(nt){var Rt=nt.getAttribute("data-prefix"),kt=nt.getAttribute("data-icon"),Z=void 0!==nt.innerText?nt.innerText.trim():"",Ve=nr(et(nt));return Ve.prefix||(Ve.prefix=ji()),Rt&&kt&&(Ve.prefix=Rt,Ve.iconName=kt),Ve.iconName&&Ve.prefix||(Ve.prefix&&Z.length>0&&(Ve.iconName=function Ci(nt,Rt){return(Fn[nt]||{})[Rt]}(Ve.prefix,nt.innerText)||jt(Ve.prefix,Ni(nt.innerText))),!Ve.iconName&&we.autoFetchSvg&&nt.firstChild&&nt.firstChild.nodeType===Node.TEXT_NODE&&(Ve.iconName=nt.firstChild.data)),Ve}(nt),Z=kt.iconName,Ve=kt.prefix,De=kt.rest,We=function ai(nt){var Rt=Ge(nt.attributes).reduce(function(Ve,De){return"class"!==Ve.name&&"style"!==Ve.name&&(Ve[De.name]=De.value),Ve},{}),kt=nt.getAttribute("title"),Z=nt.getAttribute("data-fa-title-id");return we.autoA11y&&(kt?Rt["aria-labelledby"]="".concat(we.replacementClass,"-title-").concat(Z||Fe()):(Rt["aria-hidden"]="true",Rt.focusable="false")),Rt}(nt),Dt=is("parseNodeAttributes",{},nt),ei=Rt.styleParser?function ri(nt){var Rt=nt.getAttribute("style"),kt=[];return Rt&&(kt=Rt.split(";").reduce(function(Z,Ve){var De=Ve.split(":"),We=De[0],Dt=De.slice(1);return We&&Dt.length>0&&(Z[We]=Dt.join(":").trim()),Z},{})),kt}(nt):[];return S({iconName:Z,title:nt.getAttribute("title"),titleId:nt.getAttribute("data-fa-title-id"),prefix:Ve,transform:Ne,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:De,styles:ei,attributes:We}},Dt)}var tr=Qt.styles;function Or(nt){var Rt="nest"===we.autoReplaceSvg?Ki(nt,{styleParser:!1}):Ki(nt);return~Rt.extra.classes.indexOf(yt)?Ma("generateLayersText",nt,Rt):Ma("generateSvgReplacementMutation",nt,Rt)}var Fr=new Set;function Mo(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!r)return Promise.resolve();var kt=C.documentElement.classList,Z=function(an){return kt.add("".concat(_e,"-").concat(an))},Ve=function(an){return kt.remove("".concat(_e,"-").concat(an))},De=we.autoFetchSvg?Fr:pt.map(function(Di){return"fa-".concat(Di)}).concat(Object.keys(tr));De.includes("fa")||De.push("fa");var We=[".".concat(yt,":not([").concat(me,"])")].concat(De.map(function(Di){return".".concat(Di,":not([").concat(me,"])")})).join(", ");if(0===We.length)return Promise.resolve();var Dt=[];try{Dt=Ge(nt.querySelectorAll(We))}catch{}if(!(Dt.length>0))return Promise.resolve();Z("pending"),Ve("complete");var ei=rs.begin("onTree"),pi=Dt.reduce(function(Di,an){try{var gn=Or(an);gn&&Di.push(gn)}catch(yn){Ze||"MissingIcon"===yn.name&&console.error(yn)}return Di},[]);return new Promise(function(Di,an){Promise.all(pi).then(function(gn){qr(gn,function(){Z("active"),Z("complete"),Ve("pending"),"function"==typeof Rt&&Rt(),ei(),Di()})}).catch(function(gn){ei(),an(gn)})})}function gs(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Or(nt).then(function(kt){kt&&qr([kt],Rt)})}pt.map(function(nt){Fr.add("fa-".concat(nt))}),Object.keys(ye[_t]).map(Fr.add.bind(Fr)),Object.keys(ye[at]).map(Fr.add.bind(Fr)),Fr=z(Fr);var Ms=function(Rt){var kt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=kt.transform,Ve=void 0===Z?Ne:Z,De=kt.symbol,We=void 0!==De&&De,Dt=kt.mask,ei=void 0===Dt?null:Dt,pi=kt.maskId,Di=void 0===pi?null:pi,an=kt.title,gn=void 0===an?null:an,yn=kt.titleId,Dn=void 0===yn?null:yn,hr=kt.classes,ir=void 0===hr?[]:hr,br=kt.attributes,gr=void 0===br?{}:br,Cr=kt.styles,sa=void 0===Cr?{}:Cr;if(Rt){var Hn=Rt.prefix,Bi=Rt.iconName,sn=Rt.icon;return hn(S({type:"icon"},Rt),function(){return Rr("beforeDOMElementCreation",{iconDefinition:Rt,params:kt}),we.autoA11y&&(gn?gr["aria-labelledby"]="".concat(we.replacementClass,"-title-").concat(Dn||Fe()):(gr["aria-hidden"]="true",gr.focusable="false")),Co({icons:{main:ao(sn),mask:ei?ao(ei.icon):{found:!1,width:null,height:null,icon:{}}},prefix:Hn,iconName:Bi,transform:S(S({},Ne),Ve),symbol:We,title:gn,maskId:Di,titleId:Dn,extra:{attributes:gr,styles:sa,classes:ir}})})}},oa={mixout:function(){return{icon:(nt=Ms,function(Rt){var kt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=(Rt||{}).icon?Rt:Ea(Rt||{}),Ve=kt.mask;return Ve&&(Ve=(Ve||{}).icon?Ve:Ea(Ve||{})),nt(Z,S(S({},kt),{},{mask:Ve}))})};var nt},hooks:function(){return{mutationObserverCallbacks:function(kt){return kt.treeCallback=Mo,kt.nodeCallback=gs,kt}}},provides:function(Rt){Rt.i2svg=function(kt){var Z=kt.node,De=kt.callback;return Mo(void 0===Z?C:Z,void 0===De?function(){}:De)},Rt.generateSvgReplacementMutation=function(kt,Z){var Ve=Z.iconName,De=Z.title,We=Z.titleId,Dt=Z.prefix,ei=Z.transform,pi=Z.symbol,Di=Z.mask,an=Z.maskId,gn=Z.extra;return new Promise(function(yn,Dn){Promise.all([Fa(Ve,Dt),Di.iconName?Fa(Di.iconName,Di.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(hr){var ir=R(hr,2);yn([kt,Co({icons:{main:ir[0],mask:ir[1]},prefix:Dt,iconName:Ve,transform:ei,symbol:pi,maskId:an,title:De,titleId:We,extra:gn,watchable:!0})])}).catch(Dn)})},Rt.generateAbstractIcon=function(kt){var pi,Z=kt.children,Ve=kt.attributes,De=kt.main,We=kt.transform,ei=mi(kt.styles);return ei.length>0&&(Ve.style=ei),Kt(We)&&(pi=Ma("generateAbstractTransformGrouping",{main:De,transform:We,containerWidth:De.width,iconWidth:De.width})),Z.push(pi||De.icon),{children:Z,attributes:Ve}}}},Ri={mixout:function(){return{layer:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.classes,De=void 0===Ve?[]:Ve;return hn({type:"layer"},function(){Rr("beforeDOMElementCreation",{assembler:kt,params:Z});var We=[];return kt(function(Dt){Array.isArray(Dt)?Dt.map(function(ei){We=We.concat(ei.abstract)}):We=We.concat(Dt.abstract)}),[{tag:"span",attributes:{class:["".concat(we.cssPrefix,"-layers")].concat(z(De)).join(" ")},children:We}]})}}}},lt={mixout:function(){return{counter:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.title,De=void 0===Ve?null:Ve,We=Z.classes,Dt=void 0===We?[]:We,ei=Z.attributes,pi=void 0===ei?{}:ei,Di=Z.styles,an=void 0===Di?{}:Di;return hn({type:"counter",content:kt},function(){return Rr("beforeDOMElementCreation",{content:kt,params:Z}),function zo(nt){var Rt=nt.content,kt=nt.title,Z=nt.extra,Ve=S(S(S({},Z.attributes),kt?{title:kt}:{}),{},{class:Z.classes.join(" ")}),De=mi(Z.styles);De.length>0&&(Ve.style=De);var We=[];return We.push({tag:"span",attributes:Ve,children:[Rt]}),kt&&We.push({tag:"span",attributes:{class:"sr-only"},children:[kt]}),We}({content:kt.toString(),title:De,extra:{attributes:pi,styles:an,classes:["".concat(we.cssPrefix,"-layers-counter")].concat(z(Dt))}})})}}}},ht={mixout:function(){return{text:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.transform,De=void 0===Ve?Ne:Ve,We=Z.title,Dt=void 0===We?null:We,ei=Z.classes,pi=void 0===ei?[]:ei,Di=Z.attributes,an=void 0===Di?{}:Di,gn=Z.styles,yn=void 0===gn?{}:gn;return hn({type:"text",content:kt},function(){return Rr("beforeDOMElementCreation",{content:kt,params:Z}),wo({content:kt,transform:S(S({},Ne),De),title:Dt,extra:{attributes:an,styles:yn,classes:["".concat(we.cssPrefix,"-layers-text")].concat(z(pi))}})})}}},provides:function(Rt){Rt.generateLayersText=function(kt,Z){var Ve=Z.title,De=Z.transform,We=Z.extra,Dt=null,ei=null;if(v){var pi=parseInt(getComputedStyle(kt).fontSize,10),Di=kt.getBoundingClientRect();Dt=Di.width/pi,ei=Di.height/pi}return we.autoA11y&&!Ve&&(We.attributes["aria-hidden"]="true"),Promise.resolve([kt,wo({content:kt.innerHTML,width:Dt,height:ei,transform:De,title:Ve,extra:We,watchable:!0})])}}},Ue=new RegExp('"',"ug"),At=[1105920,1112319];function pn(nt,Rt){var kt="".concat(fe).concat(Rt.replace(":","-"));return new Promise(function(Z,Ve){if(null!==nt.getAttribute(kt))return Z();var We=Ge(nt.children).filter(function(sn){return sn.getAttribute(ce)===Rt})[0],Dt=h.getComputedStyle(nt,Rt),ei=Dt.getPropertyValue("font-family").match(Ye),pi=Dt.getPropertyValue("font-weight"),Di=Dt.getPropertyValue("content");if(We&&!ei)return nt.removeChild(We),Z();if(ei&&"none"!==Di&&""!==Di){var an=Dt.getPropertyValue("content"),gn=~["Sharp"].indexOf(ei[2])?at:_t,yn=~["Solid","Regular","Light","Thin","Duotone","Brands","Kit"].indexOf(ei[2])?ue[gn][ei[2].toLowerCase()]:rt[gn][pi],Dn=function ni(nt){var Rt=nt.replace(Ue,""),kt=function fn(nt,Rt){var Ve,kt=nt.length,Z=nt.charCodeAt(Rt);return Z>=55296&&Z<=56319&&kt>Rt+1&&(Ve=nt.charCodeAt(Rt+1))>=56320&&Ve<=57343?1024*(Z-55296)+Ve-56320+65536:Z}(Rt,0),Z=kt>=At[0]&&kt<=At[1],Ve=2===Rt.length&&Rt[0]===Rt[1];return{value:Ni(Ve?Rt[0]:Rt),isSecondary:Z||Ve}}(an),hr=Dn.value,ir=Dn.isSecondary,br=ei[0].startsWith("FontAwesome"),gr=jt(yn,hr),Cr=gr;if(br){var sa=function Vi(nt){var Rt=Yn[nt],kt=jt("fas",nt);return Rt||(kt?{prefix:"fas",iconName:kt}:null)||{prefix:null,iconName:null}}(hr);sa.iconName&&sa.prefix&&(gr=sa.iconName,yn=sa.prefix)}if(!gr||ir||We&&We.getAttribute(ke)===yn&&We.getAttribute(mt)===Cr)Z();else{nt.setAttribute(kt,Cr),We&&nt.removeChild(We);var Hn=function Ei(){return{iconName:null,title:null,titleId:null,prefix:null,transform:Ne,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),Bi=Hn.extra;Bi.attributes[ce]=Rt,Fa(gr,yn).then(function(sn){var fr=Co(S(S({},Hn),{},{icons:{main:sn,mask:rn()},prefix:yn,iconName:Cr,extra:Bi,watchable:!0})),$r=C.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===Rt?nt.insertBefore($r,nt.firstChild):nt.appendChild($r),$r.outerHTML=fr.map(function(fa){return Ut(fa)}).join("\n"),nt.removeAttribute(kt),Z()}).catch(Ve)}}else Z()})}function Zn(nt){return Promise.all([pn(nt,"::before"),pn(nt,"::after")])}function Fo(nt){return!(nt.parentNode===document.head||~pe.indexOf(nt.tagName.toUpperCase())||nt.getAttribute(ce)||nt.parentNode&&"svg"===nt.parentNode.tagName)}function vr(nt){if(r)return new Promise(function(Rt,kt){var Z=Ge(nt.querySelectorAll("*")).filter(Fo).map(Zn),Ve=rs.begin("searchPseudoElements");Da(),Promise.all(Z).then(function(){Ve(),Go(),Rt()}).catch(function(){Ve(),Go(),kt()})})}var lc=!1,hc=function(Rt){return Rt.toLowerCase().split(" ").reduce(function(Z,Ve){var De=Ve.toLowerCase().split("-"),We=De[0],Dt=De.slice(1).join("-");if(We&&"h"===Dt)return Z.flipX=!0,Z;if(We&&"v"===Dt)return Z.flipY=!0,Z;if(Dt=parseFloat(Dt),isNaN(Dt))return Z;switch(We){case"grow":Z.size=Z.size+Dt;break;case"shrink":Z.size=Z.size-Dt;break;case"left":Z.x=Z.x-Dt;break;case"right":Z.x=Z.x+Dt;break;case"up":Z.y=Z.y-Dt;break;case"down":Z.y=Z.y+Dt;break;case"rotate":Z.rotate=Z.rotate+Dt}return Z},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},Wo={x:0,y:0,width:"100%",height:"100%"};function fo(nt){return nt.attributes&&(nt.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(nt.attributes.fill="black"),nt}!function xo(nt,Rt){var kt=Rt.mixoutsTo;Xr=nt,Sr={},Object.keys(zr).forEach(function(Z){-1===Ho.indexOf(Z)&&delete zr[Z]}),Xr.forEach(function(Z){var Ve=Z.mixout?Z.mixout():{};if(Object.keys(Ve).forEach(function(We){"function"==typeof Ve[We]&&(kt[We]=Ve[We]),"object"===l(Ve[We])&&Object.keys(Ve[We]).forEach(function(Dt){kt[We]||(kt[We]={}),kt[We][Dt]=Ve[We][Dt]})}),Z.hooks){var De=Z.hooks();Object.keys(De).forEach(function(We){Sr[We]||(Sr[We]=[]),Sr[We].push(De[We])})}Z.provides&&Z.provides(zr)})}([Li,oa,Ri,lt,ht,{hooks:function(){return{mutationObserverCallbacks:function(kt){return kt.pseudoElementsCallback=vr,kt}}},provides:function(Rt){Rt.pseudoElements2svg=function(kt){var Z=kt.node;we.searchPseudoElements&&vr(void 0===Z?C:Z)}}},{mixout:function(){return{dom:{unwatch:function(){Da(),lc=!0}}}},hooks:function(){return{bootstrap:function(){as(is("mutationObserverCallbacks",{}))},noAuto:function(){!function Ft(){Wa&&Wa.disconnect()}()},watch:function(kt){var Z=kt.observeMutationsRoot;lc?Go():as(is("mutationObserverCallbacks",{observeMutationsRoot:Z}))}}}},{mixout:function(){return{parse:{transform:function(kt){return hc(kt)}}}},hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-transform");return Ve&&(kt.transform=hc(Ve)),kt}}},provides:function(Rt){Rt.generateAbstractTransformGrouping=function(kt){var Z=kt.main,Ve=kt.transform,We=kt.iconWidth,Dt={transform:"translate(".concat(kt.containerWidth/2," 256)")},ei="translate(".concat(32*Ve.x,", ").concat(32*Ve.y,") "),pi="scale(".concat(Ve.size/16*(Ve.flipX?-1:1),", ").concat(Ve.size/16*(Ve.flipY?-1:1),") "),Di="rotate(".concat(Ve.rotate," 0 0)"),yn={outer:Dt,inner:{transform:"".concat(ei," ").concat(pi," ").concat(Di)},path:{transform:"translate(".concat(We/2*-1," -256)")}};return{tag:"g",attributes:S({},yn.outer),children:[{tag:"g",attributes:S({},yn.inner),children:[{tag:Z.icon.tag,children:Z.icon.children,attributes:S(S({},Z.icon.attributes),yn.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-mask"),De=Ve?nr(Ve.split(" ").map(function(We){return We.trim()})):rn();return De.prefix||(De.prefix=ji()),kt.mask=De,kt.maskId=Z.getAttribute("data-fa-mask-id"),kt}}},provides:function(Rt){Rt.generateAbstractMask=function(kt){var nt,Z=kt.children,Ve=kt.attributes,De=kt.main,We=kt.mask,Dt=kt.maskId,Di=De.icon,gn=We.icon,yn=function Pt(nt){var Rt=nt.transform,Z=nt.iconWidth,Ve={transform:"translate(".concat(nt.containerWidth/2," 256)")},De="translate(".concat(32*Rt.x,", ").concat(32*Rt.y,") "),We="scale(".concat(Rt.size/16*(Rt.flipX?-1:1),", ").concat(Rt.size/16*(Rt.flipY?-1:1),") "),Dt="rotate(".concat(Rt.rotate," 0 0)");return{outer:Ve,inner:{transform:"".concat(De," ").concat(We," ").concat(Dt)},path:{transform:"translate(".concat(Z/2*-1," -256)")}}}({transform:kt.transform,containerWidth:We.width,iconWidth:De.width}),Dn={tag:"rect",attributes:S(S({},Wo),{},{fill:"white"})},hr=Di.children?{children:Di.children.map(fo)}:{},ir={tag:"g",attributes:S({},yn.inner),children:[fo(S({tag:Di.tag,attributes:S(S({},Di.attributes),yn.path)},hr))]},br={tag:"g",attributes:S({},yn.outer),children:[ir]},gr="mask-".concat(Dt||Fe()),Cr="clip-".concat(Dt||Fe()),sa={tag:"mask",attributes:S(S({},Wo),{},{id:gr,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[Dn,br]},Hn={tag:"defs",children:[{tag:"clipPath",attributes:{id:Cr},children:(nt=gn,"g"===nt.tag?nt.children:[nt])},sa]};return Z.push(Hn,{tag:"rect",attributes:S({fill:"currentColor","clip-path":"url(#".concat(Cr,")"),mask:"url(#".concat(gr,")")},Wo)}),{children:Z,attributes:Ve}}}},{provides:function(Rt){var kt=!1;h.matchMedia&&(kt=h.matchMedia("(prefers-reduced-motion: reduce)").matches),Rt.missingIconAbstract=function(){var Z=[],Ve={fill:"currentColor"},De={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};Z.push({tag:"path",attributes:S(S({},Ve),{},{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 We=S(S({},De),{},{attributeName:"opacity"}),Dt={tag:"circle",attributes:S(S({},Ve),{},{cx:"256",cy:"364",r:"28"}),children:[]};return kt||Dt.children.push({tag:"animate",attributes:S(S({},De),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:S(S({},We),{},{values:"1;0;1;1;0;1;"})}),Z.push(Dt),Z.push({tag:"path",attributes:S(S({},Ve),{},{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:kt?[]:[{tag:"animate",attributes:S(S({},We),{},{values:"1;0;0;0;0;1;"})}]}),kt||Z.push({tag:"path",attributes:S(S({},Ve),{},{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:S(S({},We),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:Z}}}},{hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-symbol");return kt.symbol=null!==Ve&&(""===Ve||Ve),kt}}}}],{mixoutsTo:zn});var Aa=zn.config,dn=zn.dom,Es=zn.parse,fc=zn.icon,Ll=g(345);const mc=["*"],Zs=nt=>{const Rt={[`fa-${nt.animation}`]:null!=nt.animation&&!nt.animation.startsWith("spin"),"fa-spin":"spin"===nt.animation||"spin-reverse"===nt.animation,"fa-spin-pulse":"spin-pulse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-spin-reverse":"spin-reverse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-pulse":"spin-pulse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-fw":nt.fixedWidth,"fa-border":nt.border,"fa-inverse":nt.inverse,"fa-layers-counter":nt.counter,"fa-flip-horizontal":"horizontal"===nt.flip||"both"===nt.flip,"fa-flip-vertical":"vertical"===nt.flip||"both"===nt.flip,[`fa-${nt.size}`]:null!==nt.size,[`fa-rotate-${nt.rotate}`]:null!==nt.rotate,[`fa-pull-${nt.pull}`]:null!==nt.pull,[`fa-stack-${nt.stackItemSize}`]:null!=nt.stackItemSize};return Object.keys(Rt).map(kt=>Rt[kt]?kt:null).filter(kt=>kt)},Rs=new WeakSet,Eo="fa-auto-css";let gc=(()=>{class nt{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null,this._autoAddCss=!0}set autoAddCss(kt){Aa.autoAddCss=kt,this._autoAddCss=kt}get autoAddCss(){return this._autoAddCss}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275prov=e.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),_c=(()=>{class nt{constructor(){this.definitions={}}addIcons(...kt){for(const Z of kt){Z.prefix in this.definitions||(this.definitions[Z.prefix]={}),this.definitions[Z.prefix][Z.iconName]=Z;for(const Ve of Z.icon[2])"string"==typeof Ve&&(this.definitions[Z.prefix][Ve]=Z)}}addIconPacks(...kt){for(const Z of kt){const Ve=Object.keys(Z).map(De=>Z[De]);this.addIcons(...Ve)}}getIconDefinition(kt,Z){return kt in this.definitions&&Z in this.definitions[kt]?this.definitions[kt][Z]:null}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275prov=e.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),os=(()=>{class nt{constructor(){this.stackItemSize="1x"}ngOnChanges(kt){if("size"in kt)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#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275dir=e.FsC({type:nt,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},standalone:!0,features:[e.OA$]})}return nt})(),So=(()=>{class nt{constructor(kt,Z){this.renderer=kt,this.elementRef=Z}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(kt){"size"in kt&&(null!=kt.size.currentValue&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${kt.size.currentValue}`),null!=kt.size.previousValue&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${kt.size.previousValue}`))}static#e=this.\u0275fac=function(Z){return new(Z||nt)(e.rXU(e.sFG),e.rXU(e.aKT))};static#t=this.\u0275cmp=e.VBU({type:nt,selectors:[["fa-stack"]],inputs:{size:"size"},standalone:!0,features:[e.OA$,e.aNF],ngContentSelectors:mc,decls:1,vars:0,template:function(Z,Ve){1&Z&&(e.NAR(),e.SdG(0))},encapsulation:2})}return nt})(),Os=(()=>{class nt{constructor(kt,Z,Ve,De,We){this.sanitizer=kt,this.config=Z,this.iconLibrary=Ve,this.stackItem=De,this.document=(0,e.WQX)(t.qQ),null!=We&&null==De&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}ngOnChanges(kt){if(null!=this.icon||null!=this.config.fallbackIcon){if(kt){const Z=this.findIconDefinition(this.icon??this.config.fallbackIcon);if(null!=Z){const Ve=this.buildParams();!function pc(nt,Rt){if(!Rt.autoAddCss||Rs.has(nt))return;if(null!=nt.getElementById(Eo))return Rt.autoAddCss=!1,void Rs.add(nt);const kt=nt.createElement("style");kt.setAttribute("type","text/css"),kt.setAttribute("id",Eo),kt.innerHTML=dn.css();const Z=nt.head.childNodes;let Ve=null;for(let De=Z.length-1;De>-1;De--){const We=Z[De],Dt=We.nodeName.toUpperCase();["STYLE","LINK"].indexOf(Dt)>-1&&(Ve=We)}nt.head.insertBefore(kt,Ve),Rt.autoAddCss=!1,Rs.add(nt)}(this.document,this.config);const De=fc(Z,Ve);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(De.html.join("\n"))}}}else(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})()}render(){this.ngOnChanges({})}findIconDefinition(kt){const Z=((nt,Rt)=>(nt=>void 0!==nt.prefix&&void 0!==nt.iconName)(nt)?nt:Array.isArray(nt)&&2===nt.length?{prefix:nt[0],iconName:nt[1]}:{prefix:Rt,iconName:nt})(kt,this.config.defaultPrefix);return"icon"in Z?Z:this.iconLibrary.getIconDefinition(Z.prefix,Z.iconName)??((nt=>{throw new Error(`Could not find icon with iconName=${nt.iconName} and prefix=${nt.prefix} in the icon library.`)})(Z),null)}buildParams(){const kt={flip:this.flip,animation:this.animation,border:this.border,inverse:this.inverse,size:this.size||null,pull:this.pull||null,rotate:this.rotate||null,fixedWidth:"boolean"==typeof this.fixedWidth?this.fixedWidth:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize:null},Z="string"==typeof this.transform?Es.transform(this.transform):this.transform;return{title:this.title,transform:Z,classes:Zs(kt),mask:null!=this.mask?this.findIconDefinition(this.mask):null,symbol:this.symbol,attributes:{role:this.a11yRole}}}static#e=this.\u0275fac=function(Z){return new(Z||nt)(e.rXU(Ll.up),e.rXU(gc),e.rXU(_c),e.rXU(os,8),e.rXU(So,8))};static#t=this.\u0275cmp=e.VBU({type:nt,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(Z,Ve){2&Z&&(e.Mr5("innerHTML",Ve.renderedIconHTML,e.npT),e.BMQ("title",Ve.title))},inputs:{icon:"icon",title:"title",animation:"animation",mask:"mask",flip:"flip",size:"size",pull:"pull",border:"border",inverse:"inverse",symbol:"symbol",rotate:"rotate",fixedWidth:"fixedWidth",transform:"transform",a11yRole:"a11yRole"},standalone:!0,features:[e.OA$,e.aNF],decls:0,vars:0,template:function(Z,Ve){},encapsulation:2})}return nt})(),Fs=(()=>{class nt{static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275mod=e.$C({type:nt});static#i=this.\u0275inj=e.G2t({})}return nt})()},5383:(Qe,te,g)=>{"use strict";g.d(te,{$$g:()=>da,$Fj:()=>pl,$sC:()=>N6,BA1:()=>o0,C8j:()=>b9,CQO:()=>Lg,Ccf:()=>h7,D6w:()=>dl,DW4:()=>ei,EvL:()=>R4,FYJ:()=>Dm,GR4:()=>BC,GRI:()=>Cv,HEq:()=>jo,If6:()=>d_,Int:()=>e9,JKM:()=>Zh,Kcb:()=>JC,M29:()=>kh,McB:()=>Gt,Mf0:()=>Ng,MjD:()=>Og,Oh6:()=>Ci,QLR:()=>rp,TBz:()=>f3,Tq9:()=>Wg,Vpi:()=>q8,VwO:()=>U6,W1p:()=>J2,WKo:()=>Uv,WxX:()=>oe,Xbc:()=>s0,_eQ:()=>Dt,_qq:()=>Y8,aAJ:()=>p_,aFw:()=>rh,cbP:()=>ng,dB:()=>yo,e4L:()=>Gd,eGi:()=>q6,f6_:()=>Au,gdJ:()=>yc,hb3:()=>Mp,iW_:()=>yb,iy8:()=>E3,jPR:()=>qg,jTw:()=>N4,k02:()=>Wr,k6j:()=>Qr,knH:()=>Wp,ld_:()=>yp,njF:()=>f5,nsx:()=>Yp,o97:()=>Zm,pCJ:()=>ii,pS3:()=>d6,peG:()=>Hf,qFF:()=>Jg,qIE:()=>Ui,s5m:()=>js,vfE:()=>g1,xiI:()=>L_,ymQ:()=>Mc,zPk:()=>Du,zjW:()=>f7,zm_:()=>zm,zpE:()=>j3});var oe={prefix:"fas",iconName:"angles-down",icon:[448,512,["angle-double-down"],"f103","M246.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 0L224 402.7 361.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 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},ii={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},Ci={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z"]},da={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z"]},jo={prefix:"fas",iconName:"unlock-keyhole",icon:[448,512,["unlock-alt"],"f13e","M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z"]},Dt={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"]},ei={prefix:"fas",iconName:"lock",icon:[448,512,[128274],"f023","M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z"]},yc={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z"]},Qr={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z"]},Gd={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z"]},Mc={prefix:"fas",iconName:"money-bill-wave",icon:[576,512,[],"f53a","M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z"]},dl={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zm280 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"]},pl={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-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 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},rh={prefix:"fas",iconName:"window-restore",icon:[512,512,[],"f2d2","M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z"]},js={prefix:"fas",iconName:"euro-sign",icon:[320,512,[8364,"eur","euro"],"f153","M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z"]},g1={prefix:"fas",iconName:"sterling-sign",icon:[320,512,[163,"gbp","pound-sign"],"f154","M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1C104.1 390 112 361.5 112 332.5V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z"]},kh={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-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.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z"]},Hf={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M297.4 9.4c12.5-12.5 32.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 0s-12.5-32.8 0-45.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.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 0s-12.5-32.8 0-45.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},Ui={prefix:"fas",iconName:"layer-group",icon:[576,512,[],"f5fd","M264.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 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.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 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.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 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z"]},R4={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M80 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"]},N4={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M392.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.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"]},Zh={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z"]},J2={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M304 240V16.6c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16H304zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4V288L412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288H558.4z"]},f5={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 320H48c-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-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"]},Wp={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M224 32H64C46.3 32 32 46.3 32 64v64c0 17.7 14.3 32 32 32H441.4c4.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.7H288c0-17.7-14.3-32-32-32s-32 14.3-32 32zM480 256c0-17.7-14.3-32-32-32H288V192H224v32H70.6c-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.7H448c17.7 0 32-14.3 32-32V256zM288 480V384H224v96c0 17.7 14.3 32 32 32s32-14.3 32-32z"]},Yp={prefix:"fas",iconName:"screwdriver-wrench",icon:[512,512,["tools"],"f7d9","M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},o0={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},s0={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.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 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"]},f3={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-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.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-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"]},d6={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"]},Gt={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v17.7c0 7.8 4.8 14.8 11.6 18.7c6.8 3.9 15.1 4.5 21.8 .6l13.8-7.9c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-14.4 8.3c-6.5 3.7-10 10.9-10 18.4s3.5 14.7 10 18.4l14.4 8.3c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-13.8-7.9c-6.7-3.9-15.1-3.3-21.8 .6c-6.8 3.9-11.6 10.9-11.6 18.7v17.7c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V467.8c0-7.9-4.9-14.9-11.7-18.9c-6.8-3.9-15.2-4.5-22-.6l-13.5 7.8c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l14-8.1c6.5-3.8 10.1-11.1 10.1-18.6s-3.5-14.8-10.1-18.6l-14-8.1c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l13.6 7.8c6.8 3.9 15.2 3.3 22-.6c6.9-3.9 11.7-11 11.7-18.9V218.2zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z"]},Wr={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},N6={prefix:"fas",iconName:"angles-up",icon:[448,512,["angle-double-up"],"f102","M246.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 0L224 109.3 361.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 0L224 301.3 361.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},yb={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},U6={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V224v64V448c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H96V64zm448 0v64h32c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H544v64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z"]},Dm={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.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 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z"]},h7={prefix:"fas",iconName:"money-bill-1",icon:[576,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z"]},E3=h7,f7={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},yo={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z"]},q6={prefix:"fas",iconName:"network-wired",icon:[640,512,[],"f6ff","M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z"]},ng={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},zm={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288H175.5L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H272.5L349.4 44.6z"]},Du={prefix:"fas",iconName:"yen-sign",icon:[320,512,[165,"cny","jpy","rmb","yen"],"f157","M58.6 46.2C48.8 31.5 29 27.6 14.3 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z"]},Au={prefix:"fas",iconName:"ruble-sign",icon:[384,512,[8381,"rouble","rub","ruble"],"f158","M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},d_={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[512,512,[],"e4c1","M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.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-80zm13.3 256l80 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 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z"]},p_={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},L_={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-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"]},Zm={prefix:"fas",iconName:"bars-staggered",icon:[512,512,["reorder","stream"],"f550","M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"]},Lg={prefix:"fas",iconName:"link",icon:[640,512,[128279,"chain"],"f0c1","M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"]},Og={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 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},Ng={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.3-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L192 471.6l-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 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z"]},Wg={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z"]},Jg={prefix:"fas",iconName:"diagram-project",icon:[576,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z"]},qg={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M208 0H332.1c12.7 0 24.9 5.1 33.9 14.1l67.9 67.9c9 9 14.1 21.2 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48zM48 128h80v64H64V448H256V416h64v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48z"]},rp={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"]},Cv={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"]},Uv={prefix:"fas",iconName:"percent",icon:[384,512,[62101,62785,"percentage"],"25","M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"]},e9={prefix:"fas",iconName:"clock-rotate-left",icon:[512,512,["history"],"f1da","M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 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-65V152c0-13.3-10.7-24-24-24z"]},b9={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z"]},BC={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-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.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.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.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z"]},JC={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z"]},j3={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},Y8={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z"]},yp={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z"]},Mp={prefix:"fas",iconName:"turkish-lira-sign",icon:[384,512,["try","turkish-lira"],"e2bb","M96 32c17.7 0 32 14.3 32 32V99.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32z"]},q8={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M160 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3c-16.1-7.2-23.4-26.1-16.2-42.2s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7 0 0C119.4 279.3 84.4 270 58.4 253c-14.2-9.3-27.5-22-35.8-39.6c-8.4-17.9-10.1-37.9-6.1-59.2C23.7 116 52.3 91.2 84.8 78.3c13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32z"]}},4054:(Qe,te,g)=>{"use strict";g.d(te,{En:()=>Ke,Vm:()=>oe,EH:()=>C,gp:()=>se});var e=g(7673);g(274),g(3993);var x=g(7786),f=g(1985),I=g(1413),d=g(3557),T=g(983),y=g(8810),F=g(8071);class z{constructor(Ae,we,he){this.kind=Ae,this.value=we,this.error=he,this.hasValue="N"===Ae}observe(Ae){return W(this,Ae)}do(Ae,we,he){const{kind:q,value:Re,error:Ne}=this;return"N"===q?Ae?.(Re):"E"===q?we?.(Ne):he?.()}accept(Ae,we,he){var q;return(0,F.T)(null===(q=Ae)||void 0===q?void 0:q.next)?this.observe(Ae):this.do(Ae,we,he)}toObservable(){const{kind:Ae,value:we,error:he}=this,q="N"===Ae?(0,e.of)(we):"E"===Ae?(0,y.$)(()=>he):"C"===Ae?T.w:0;if(!q)throw new TypeError(`Unexpected notification kind ${Ae}`);return q}static createNext(Ae){return new z("N",Ae)}static createError(Ae){return new z("E",void 0,Ae)}static createComplete(){return z.completeNotification}}function W(dt,Ae){var we,he,q;const{kind:Re,value:Ne,error:gt}=dt;if("string"!=typeof Re)throw new TypeError('Invalid notification, missing "kind"');"N"===Re?null===(we=Ae.next)||void 0===we||we.call(Ae,Ne):"E"===Re?null===(he=Ae.error)||void 0===he||he.call(Ae,gt):null===(q=Ae.complete)||void 0===q||q.call(Ae)}z.completeNotification=new z("C");var $=g(9974),j=g(4360),J=g(6354),ee=g(9437),ie=g(5964),ge=g(8750);function ae(dt,Ae,we,he){return(0,$.N)((q,Re)=>{let Ne;Ae&&"function"!=typeof Ae?({duration:we,element:Ne,connector:he}=Ae):Ne=Ae;const gt=new Map,$e=mi=>{gt.forEach(mi),mi(Re)},Fe=mi=>$e(Kt=>Kt.error(mi));let Ge=0,et=!1;const st=new j.H(Re,mi=>{try{const Kt=dt(mi);let Pt=gt.get(Kt);if(!Pt){gt.set(Kt,Pt=he?he():new I.B);const Xi=function Tt(mi,Kt){const Pt=new f.c(Xi=>{Ge++;const di=Kt.subscribe(Xi);return()=>{di.unsubscribe(),0==--Ge&&et&&st.unsubscribe()}});return Pt.key=mi,Pt}(Kt,Pt);if(Re.next(Xi),we){const di=(0,j._)(Pt,()=>{Pt.complete(),di?.unsubscribe()},void 0,void 0,()=>gt.delete(Kt));st.add((0,ge.Tg)(we(Xi)).subscribe(di))}}Pt.next(Ne?Ne(mi):mi)}catch(Kt){Fe(Kt)}},()=>$e(mi=>mi.complete()),Fe,()=>gt.clear(),()=>(et=!0,0===Ge));q.subscribe(st)})}var Me=g(1397);function Te(dt,Ae){return Ae?we=>we.pipe(Te((he,q)=>(0,ge.Tg)(dt(he,q)).pipe((0,J.T)((Re,Ne)=>Ae(he,Re,q,Ne))))):(0,$.N)((we,he)=>{let q=0,Re=null,Ne=!1;we.subscribe((0,j._)(he,gt=>{Re||(Re=(0,j._)(he,void 0,()=>{Re=null,Ne&&he.complete()}),(0,ge.Tg)(dt(gt,q++)).subscribe(Re))},()=>{Ne=!0,!Re&&he.complete()}))})}var D=g(6697),n=g(4438),c=g(9640);const m={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},h="__@ngrx/effects_create__";function C(dt,Ae={}){const we=Ae.functional?dt:dt(),he={...m,...Ae};return Object.defineProperty(we,h,{value:he}),we}function r(dt){return Object.getPrototypeOf(dt)}function V(dt){return"function"==typeof dt}function N(dt){return dt.filter(V)}function Ee(dt,Ae,we){const he=r(dt),Re=he&&"Object"!==he.constructor.name?he.constructor.name:null,Ne=function _(dt){return function k(dt){return Object.getOwnPropertyNames(dt).filter(he=>!(!dt[he]||!dt[he].hasOwnProperty(h))&&dt[he][h].hasOwnProperty("dispatch")).map(he=>({propertyName:he,...dt[he][h]}))}(dt)}(dt).map(({propertyName:gt,dispatch:$e,useEffectsErrorHandler:Fe})=>{const Ge="function"==typeof dt[gt]?dt[gt]():dt[gt],et=Fe?we(Ge,Ae):Ge;return!1===$e?et.pipe((0,d.w)()):et.pipe(function Q(){return(0,$.N)((dt,Ae)=>{dt.subscribe((0,j._)(Ae,we=>{Ae.next(z.createNext(we))},()=>{Ae.next(z.createComplete()),Ae.complete()},we=>{Ae.next(z.createError(we)),Ae.complete()}))})}()).pipe((0,J.T)(Tt=>({effect:dt[gt],notification:Tt,propertyName:gt,sourceName:Re,sourceInstance:dt})))});return(0,x.h)(...Ne)}function qe(dt,Ae,we=10){return dt.pipe((0,ee.W)(he=>(Ae&&Ae.handleError(he),we<=1?dt:qe(dt,Ae,we-1))))}let Ke=(()=>{class dt extends f.c{constructor(we){super(),we&&(this.source=we)}lift(we){const he=new dt;return he.source=this,he.operator=we,he}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(c.sA))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})();function se(...dt){return(0,ie.p)(Ae=>dt.some(we=>"string"==typeof we?we===Ae.type:we.type===Ae.type))}const X=new n.nKC("@ngrx/effects Internal Root Guard"),me=new n.nKC("@ngrx/effects User Provided Effects"),ce=new n.nKC("@ngrx/effects Internal Root Effects"),fe=new n.nKC("@ngrx/effects Internal Root Effects Instances"),ke=new n.nKC("@ngrx/effects Internal Feature Effects"),mt=new n.nKC("@ngrx/effects Internal Feature Effects Instance Groups"),_e=new n.nKC("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>qe}),be="@ngrx/effects/init";(0,c.VP)(be);function Xe(dt){return yt(dt,"ngrxOnInitEffects")}function yt(dt,Ae){return dt&&Ae in dt&&"function"==typeof dt[Ae]}let Ye=(()=>{class dt extends I.B{constructor(we,he){super(),this.errorHandler=we,this.effectsErrorHandler=he}addEffects(we){this.next(we)}toActions(){return this.pipe(ae(we=>function v(dt){return!!dt.constructor&&"Object"!==dt.constructor.name&&"Function"!==dt.constructor.name}(we)?r(we):we),(0,Me.Z)(we=>we.pipe(ae(rt))),(0,Me.Z)(we=>{const he=we.pipe(Te(Re=>function Yt(dt,Ae){return we=>{const he=Ee(we,dt,Ae);return function Ie(dt){return yt(dt,"ngrxOnRunEffects")}(we)?we.ngrxOnRunEffects(he):he}}(this.errorHandler,this.effectsErrorHandler)(Re)),(0,J.T)(Re=>(function Ze(dt,Ae){if("N"===dt.notification.kind){const we=dt.notification.value;!function _t(dt){return"function"!=typeof dt&&dt&&dt.type&&"string"==typeof dt.type}(we)&&Ae.handleError(new Error(`Effect ${function at({propertyName:dt,sourceInstance:Ae,sourceName:we}){const he="function"==typeof Ae[dt];return we?`"${we}.${String(dt)}${he?"()":""}"`:`"${String(dt)}()"`}(dt)} dispatched an invalid action: ${function pt(dt){try{return JSON.stringify(dt)}catch{return dt}}(we)}`))}}(Re,this.errorHandler),Re.notification)),(0,ie.p)(Re=>"N"===Re.kind&&null!=Re.value),function de(){return(0,$.N)((dt,Ae)=>{dt.subscribe((0,j._)(Ae,we=>W(we,Ae)))})}()),q=we.pipe((0,D.s)(1),(0,ie.p)(Xe),(0,J.T)(Re=>Re.ngrxOnInitEffects()));return(0,x.h)(he,q)}))}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(n.zcH),n.KVO(_e))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})();function rt(dt){return function ye(dt){return yt(dt,"ngrxOnIdentifyEffects")}(dt)?dt.ngrxOnIdentifyEffects():""}let Nt=(()=>{class dt{get isStarted(){return!!this.effectsSubscription}constructor(we,he){this.effectSources=we,this.store=he,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=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Ye),n.KVO(c.il))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})(),Et=(()=>{class dt{constructor(we,he,q,Re,Ne,gt,$e){this.sources=we,he.start();for(const Fe of Re)we.addEffects(Fe);q.dispatch({type:be})}addEffects(we){this.sources.addEffects(we)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Ye),n.KVO(Nt),n.KVO(c.il),n.KVO(fe),n.KVO(c.wc,8),n.KVO(c.ae,8),n.KVO(X,8))};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})(),Vt=(()=>{class dt{constructor(we,he,q,Re){const Ne=he.flat();for(const gt of Ne)we.addEffects(gt)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Et),n.KVO(mt),n.KVO(c.wc,8),n.KVO(c.ae,8))};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})(),oe=(()=>{class dt{static forFeature(...we){const he=we.flat(),q=N(he);return{ngModule:Vt,providers:[q,{provide:ke,multi:!0,useValue:he},{provide:me,multi:!0,useValue:[]},{provide:mt,multi:!0,useFactory:tt,deps:[ke,me]}]}}static forRoot(...we){const he=we.flat(),q=N(he);return{ngModule:Et,providers:[q,{provide:ce,useValue:[he]},{provide:X,useFactory:$t},{provide:me,multi:!0,useValue:[]},{provide:fe,useFactory:tt,deps:[ce,me]}]}}static#e=this.\u0275fac=function(he){return new(he||dt)};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})();function tt(dt,Ae){const we=[];for(const he of dt)we.push(...he);for(const he of Ae)we.push(...he);return we.map(he=>function ne(dt){return dt instanceof n.nKC||V(dt)}(he)?(0,n.WQX)(he):he)}function $t(){const dt=(0,n.WQX)(Nt,{optional:!0,skipSelf:!0}),Ae=(0,n.WQX)(ce,{self:!0});if((1!==Ae.length||0!==Ae[0].length)&&dt)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9640:(Qe,te,g)=>{"use strict";g.d(te,{SS:()=>de,Zz:()=>Te,N_:()=>m,Bh:()=>at,QU:()=>_t,sA:()=>ue,h1:()=>He,il:()=>rt,ae:()=>rr,md:()=>Rn,wc:()=>Qn,q6:()=>pt,VP:()=>W,UX:()=>Kt,vy:()=>Oi,Mz:()=>st,on:()=>_i,xk:()=>$});var e=g(4438),t=g(4412),w=g(1985),S=g(1413),l=g(7242),x=g(941),f=g(3993),I=g(2816),d=g(6354),y=g(3294),F=g(9079);const R={};function W(jt,Ci){if(R[jt]=(R[jt]||0)+1,"function"==typeof Ci)return Q(jt,(...yi)=>({...Ci(...yi),type:jt}));switch(Ci?Ci._as:"empty"){case"empty":return Q(jt,()=>({type:jt}));case"props":return Q(jt,yi=>({...yi,type:jt}));default:throw new Error("Unexpected config.")}}function $(){return{_as:"props",_p:void 0}}function Q(jt,Ci){return Object.defineProperty(Ci,"type",{value:jt,writable:!1})}const Te="@ngrx/store/init";let de=(()=>{class jt extends t.t{constructor(){super({type:Te})}next(hi){if("function"==typeof hi)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 hi>"u")throw new TypeError("Actions must be objects");if(typeof hi.type>"u")throw new TypeError("Actions must have a type property");super.next(hi)}complete(){}ngOnDestroy(){super.complete()}static#e=this.\u0275fac=function(yi){return new(yi||jt)};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const D=[de],n=new e.nKC("@ngrx/store Internal Root Guard"),c=new e.nKC("@ngrx/store Internal Initial State"),m=new e.nKC("@ngrx/store Initial State"),h=new e.nKC("@ngrx/store Reducer Factory"),C=new e.nKC("@ngrx/store Internal Reducer Factory Provider"),k=new e.nKC("@ngrx/store Initial Reducers"),L=new e.nKC("@ngrx/store Internal Initial Reducers"),_=new e.nKC("@ngrx/store Store Features"),r=new e.nKC("@ngrx/store Internal Store Reducers"),v=new e.nKC("@ngrx/store Internal Feature Reducers"),V=new e.nKC("@ngrx/store Internal Feature Configs"),N=new e.nKC("@ngrx/store Internal Store Features"),ne=new e.nKC("@ngrx/store Internal Feature Reducers Token"),Ee=new e.nKC("@ngrx/store Feature Reducers"),ze=new e.nKC("@ngrx/store User Provided Meta Reducers"),qe=new e.nKC("@ngrx/store Meta Reducers"),Ke=new e.nKC("@ngrx/store Internal Resolved Meta Reducers"),se=new e.nKC("@ngrx/store User Runtime Checks Config"),X=new e.nKC("@ngrx/store Internal User Runtime Checks Config"),me=new e.nKC("@ngrx/store Internal Runtime Checks"),ce=new e.nKC("@ngrx/store Check if Action types are unique");function mt(jt,Ci={}){const hi=Object.keys(jt),yi={};for(let ji=0;jiji(Vi),hi(Ci))}}function pe(jt,Ci){return Array.isArray(Ci)&&Ci.length>0&&(jt=be.apply(null,[...Ci,jt])),(hi,yi)=>{const Vi=jt(hi);return(ji,rn)=>Vi(ji=void 0===ji?yi:ji,rn)}}new e.nKC("@ngrx/store Root Store Provider"),new e.nKC("@ngrx/store Feature State Provider");class _t extends w.c{}class at extends de{}const pt="@ngrx/store/update-reducers";let Xt=(()=>{class jt extends t.t{get currentReducers(){return this.reducers}constructor(hi,yi,Vi,ji){super(ji(Vi,yi)),this.dispatcher=hi,this.initialState=yi,this.reducers=Vi,this.reducerFactory=ji}addFeature(hi){this.addFeatures([hi])}addFeatures(hi){const yi=hi.reduce((Vi,{reducers:ji,reducerFactory:rn,metaReducers:ar,initialState:sr,key:nr})=>{const or="function"==typeof ji?function Ze(jt){const Ci=Array.isArray(jt)&&jt.length>0?be(...jt):hi=>hi;return(hi,yi)=>(hi=Ci(hi),(Vi,ji)=>hi(Vi=void 0===Vi?yi:Vi,ji))}(ar)(ji,sr):pe(rn,ar)(ji,sr);return Vi[nr]=or,Vi},{});this.addReducers(yi)}removeFeature(hi){this.removeFeatures([hi])}removeFeatures(hi){this.removeReducers(hi.map(yi=>yi.key))}addReducer(hi,yi){this.addReducers({[hi]:yi})}addReducers(hi){this.reducers={...this.reducers,...hi},this.updateReducers(Object.keys(hi))}removeReducer(hi){this.removeReducers([hi])}removeReducers(hi){hi.forEach(yi=>{this.reducers=function _e(jt,Ci){return Object.keys(jt).filter(hi=>hi!==Ci).reduce((hi,yi)=>Object.assign(hi,{[yi]:jt[yi]}),{})}(this.reducers,yi)}),this.updateReducers(hi)}updateReducers(hi){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:pt,features:hi})}ngOnDestroy(){this.complete()}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(at),e.KVO(m),e.KVO(k),e.KVO(h))};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const ye=[Xt,{provide:_t,useExisting:Xt},{provide:at,useExisting:de}];let ue=(()=>{class jt extends S.B{ngOnDestroy(){this.complete()}static#e=this.\u0275fac=(()=>{let hi;return function(Vi){return(hi||(hi=e.xGo(jt)))(Vi||jt)}})();static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const Ie=[ue];class He extends w.c{}let Xe=(()=>{class jt extends t.t{static#e=this.INIT=Te;constructor(hi,yi,Vi,ji){super(ji);const nr=hi.pipe((0,x.Q)(l.T)).pipe((0,f.E)(yi)).pipe((0,I.S)(yt,{state:ji}));this.stateSubscription=nr.subscribe(({state:or,action:Xr})=>{this.next(or),Vi.next(Xr)}),this.state=(0,F.ot)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static#t=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(de),e.KVO(_t),e.KVO(ue),e.KVO(m))};static#i=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();function yt(jt={state:void 0},[Ci,hi]){const{state:yi}=jt;return{state:hi(yi,Ci),action:Ci}}const Ye=[Xe,{provide:He,useExisting:Xe}];let rt=(()=>{class jt extends w.c{constructor(hi,yi,Vi){super(),this.actionsObserver=yi,this.reducerManager=Vi,this.source=hi,this.state=hi.state}select(hi,...yi){return Nt.call(null,hi,...yi)(this)}selectSignal(hi,yi){return(0,e.EWP)(()=>hi(this.state()),yi)}lift(hi){const yi=new jt(this,this.actionsObserver,this.reducerManager);return yi.operator=hi,yi}dispatch(hi){this.actionsObserver.next(hi)}next(hi){this.actionsObserver.next(hi)}error(hi){this.actionsObserver.error(hi)}complete(){this.actionsObserver.complete()}addReducer(hi,yi){this.reducerManager.addReducer(hi,yi)}removeReducer(hi){this.reducerManager.removeReducer(hi)}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(He),e.KVO(de),e.KVO(Xt))};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const Yt=[rt];function Nt(jt,Ci,...hi){return function(Vi){let ji;if("string"==typeof jt){const rn=[Ci,...hi].filter(Boolean);ji=Vi.pipe(function T(...jt){const Ci=jt.length;if(0===Ci)throw new Error("list of properties cannot be empty.");return(0,d.T)(hi=>{let yi=hi;for(let Vi=0;Vijt(rn,Ci)))}return ji.pipe((0,y.F)())}}const Et="https://ngrx.io/guide/store/configuration/runtime-checks";function Vt(jt){return void 0===jt}function oe(jt){return null===jt}function tt(jt){return Array.isArray(jt)}function St(jt){return"object"==typeof jt&&null!==jt}function we(jt){return"function"==typeof jt}let Re=!1;function $e(jt,Ci){return jt===Ci}function et(jt,Ci=$e,hi=$e){let ji,yi=null,Vi=null;return{memoized:function nr(){if(void 0!==ji)return ji.result;if(!yi)return Vi=jt.apply(null,arguments),yi=arguments,Vi;if(!function Fe(jt,Ci,hi){for(let yi=0;yi"function"==typeof Ci)}(yi[0])&&(yi=function Xi(jt){const Ci=Object.values(jt),hi=Object.keys(jt);return[...Ci,(...Vi)=>hi.reduce((ji,rn,ar)=>({...ji,[rn]:Vi[ar]}),{})]}(yi[0]));const Vi=yi.slice(0,yi.length-1),ji=yi[yi.length-1],rn=Vi.filter(or=>or.release&&"function"==typeof or.release),ar=jt(function(...or){return ji.apply(null,or)}),sr=et(function(or,Xr){return Ci.stateFn.apply(null,[or,Vi,Xr,ar])});return Object.assign(sr.memoized,{release:function nr(){sr.reset(),ar.reset(),rn.forEach(or=>or.release())},projector:ar.memoized,setResult:sr.setResult,clearResult:sr.clearResult})}}(et)(...jt)}function Tt(jt,Ci,hi,yi){if(void 0===hi){const ji=Ci.map(rn=>rn(jt));return yi.memoized.apply(null,ji)}const Vi=Ci.map(ji=>ji(jt,hi));return yi.memoized.apply(null,[...Vi,hi])}function Kt(jt){return st(Ci=>{const hi=Ci[jt];return!function gt(){return Re}()&&(0,e.naY)()&&!(jt in Ci)&&console.warn(`@ngrx/store: The feature name "${jt}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${jt}', ...) or StoreModule.forFeature('${jt}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),hi},Ci=>Ci)}function Qi(jt){return jt instanceof e.nKC?(0,e.WQX)(jt):jt}function Li(jt,Ci){return Ci.map((hi,yi)=>{if(jt[yi]instanceof e.nKC){const Vi=(0,e.WQX)(jt[yi]);return{key:hi.key,reducerFactory:Vi.reducerFactory?Vi.reducerFactory:mt,metaReducers:Vi.metaReducers?Vi.metaReducers:[],initialState:Vi.initialState}}return hi})}function Zi(jt){return jt.map(Ci=>Ci instanceof e.nKC?(0,e.WQX)(Ci):Ci)}function Qt(jt){return"function"==typeof jt?jt():jt}function Mt(jt,Ci){return jt.concat(Ci)}function it(){if((0,e.WQX)(rt,{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 wt(jt){Object.freeze(jt);const Ci=we(jt);return Object.getOwnPropertyNames(jt).forEach(hi=>{if(!hi.startsWith("\u0275")&&function q(jt,Ci){return Object.prototype.hasOwnProperty.call(jt,Ci)}(jt,hi)&&(!Ci||"caller"!==hi&&"callee"!==hi&&"arguments"!==hi)){const yi=jt[hi];(St(yi)||we(yi))&&!Object.isFrozen(yi)&&wt(yi)}}),jt}function xi(jt,Ci=[]){return(Vt(jt)||oe(jt))&&0===Ci.length?{path:["root"],value:jt}:Object.keys(jt).reduce((yi,Vi)=>{if(yi)return yi;const ji=jt[Vi];return function he(jt){return we(jt)&&jt.hasOwnProperty("\u0275cmp")}(ji)?yi:!(Vt(ji)||oe(ji)||function Jt(jt){return"number"==typeof jt}(ji)||function zt(jt){return"boolean"==typeof jt}(ji)||function $t(jt){return"string"==typeof jt}(ji)||tt(ji))&&(function Ae(jt){if(!function dt(jt){return St(jt)&&!tt(jt)}(jt))return!1;const Ci=Object.getPrototypeOf(jt);return Ci===Object.prototype||null===Ci}(ji)?xi(ji,[...Ci,Vi]):{path:[...Ci,Vi],value:ji})},!1)}function Si(jt,Ci){if(!1===jt)return;const hi=jt.path.join("."),yi=new Error(`Detected unserializable ${Ci} at "${hi}". ${Et}#strict${Ci}serializability`);throw yi.value=jt.value,yi.unserializablePath=hi,yi}function en(jt){return(0,e.naY)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...jt}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function Ni({strictActionSerializability:jt,strictStateSerializability:Ci}){return hi=>jt||Ci?function Ut(jt,Ci){return function(hi,yi){Ci.action(yi)&&Si(xi(yi),"action");const Vi=jt(hi,yi);return Ci.state()&&Si(xi(Vi),"state"),Vi}}(hi,{action:yi=>jt&&!Zt(yi),state:()=>Ci}):hi}function fn({strictActionImmutability:jt,strictStateImmutability:Ci}){return hi=>jt||Ci?function ct(jt,Ci){return function(hi,yi){const Vi=Ci.action(yi)?wt(yi):yi,ji=jt(hi,Vi);return Ci.state()?wt(ji):ji}}(hi,{action:yi=>jt&&!Zt(yi),state:()=>Ci}):hi}function Zt(jt){return jt.type.startsWith("@ngrx")}function bt({strictActionWithinNgZone:jt}){return Ci=>jt?function zi(jt,Ci){return function(hi,yi){if(Ci.action(yi)&&!e.SKi.isInAngularZone())throw new Error(`Action '${yi.type}' running outside NgZone. ${Et}#strictactionwithinngzone`);return jt(hi,yi)}}(Ci,{action:hi=>jt&&!Zt(hi)}):Ci}function re(jt){return[{provide:X,useValue:jt},{provide:se,useFactory:Ce,deps:[X]},{provide:me,deps:[se],useFactory:en},{provide:qe,multi:!0,deps:[me],useFactory:fn},{provide:qe,multi:!0,deps:[me],useFactory:Ni},{provide:qe,multi:!0,deps:[me],useFactory:bt}]}function je(){return[{provide:ce,multi:!0,deps:[me],useFactory:ot}]}function Ce(jt){return jt}function ot(jt){if(!jt.strictActionTypeUniqueness)return;const Ci=Object.entries(R).filter(([,hi])=>hi>1).map(([hi])=>hi);if(Ci.length)throw new Error(`Action types are registered more than once, ${Ci.map(hi=>`"${hi}"`).join(", ")}. ${Et}#strictactiontypeuniqueness`)}function ii(jt={},Ci={}){return[{provide:n,useFactory:it},{provide:c,useValue:Ci.initialState},{provide:m,useFactory:Qt,deps:[c]},{provide:L,useValue:jt},{provide:r,useExisting:jt instanceof e.nKC?jt:L},{provide:k,deps:[L,[new e.y_5(r)]],useFactory:Qi},{provide:ze,useValue:Ci.metaReducers?Ci.metaReducers:[]},{provide:Ke,deps:[qe,ze],useFactory:Mt},{provide:C,useValue:Ci.reducerFactory?Ci.reducerFactory:mt},{provide:h,deps:[C,Ke],useFactory:pe},D,ye,Ie,Ye,Yt,re(Ci.runtimeChecks),je()]}function Yn(jt,Ci,hi={}){return[{provide:V,multi:!0,useValue:jt instanceof Object?{}:hi},{provide:_,multi:!0,useValue:{key:jt instanceof Object?jt.name:jt,reducerFactory:hi instanceof e.nKC||!hi.reducerFactory?mt:hi.reducerFactory,metaReducers:hi instanceof e.nKC||!hi.metaReducers?[]:hi.metaReducers,initialState:hi instanceof e.nKC||!hi.initialState?void 0:hi.initialState}},{provide:N,deps:[V,_],useFactory:Li},{provide:v,multi:!0,useValue:jt instanceof Object?jt.reducer:Ci},{provide:ne,multi:!0,useExisting:Ci instanceof e.nKC?Ci:v},{provide:Ee,multi:!0,deps:[v,[new e.y_5(ne)]],useFactory:Zi},je()]}let Qn=(()=>{class jt{constructor(hi,yi,Vi,ji,rn,ar){}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(de),e.KVO(_t),e.KVO(ue),e.KVO(rt),e.KVO(n,8),e.KVO(ce,8))};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})(),rr=(()=>{class jt{constructor(hi,yi,Vi,ji,rn){this.features=hi,this.featureReducers=yi,this.reducerManager=Vi;const ar=hi.map((sr,nr)=>{const Xr=yi.shift()[nr];return{...sr,reducers:Xr,initialState:Qt(sr.initialState)}});Vi.addFeatures(ar)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(N),e.KVO(Ee),e.KVO(Xt),e.KVO(Qn),e.KVO(ce,8))};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})(),Rn=(()=>{class jt{static forRoot(hi,yi){return{ngModule:Qn,providers:[...ii(hi,yi)]}}static forFeature(hi,yi,Vi={}){return{ngModule:rr,providers:[...Yn(hi,yi,Vi)]}}static#e=this.\u0275fac=function(yi){return new(yi||jt)};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})();function _i(...jt){return{reducer:jt.pop(),types:jt.map(yi=>yi.type)}}function Oi(jt,...Ci){const hi=new Map;for(const yi of Ci)for(const Vi of yi.types){const ji=hi.get(Vi);hi.set(Vi,ji?(ar,sr)=>yi.reducer(ji(ar,sr),sr):yi.reducer)}return function(yi=jt,Vi){const ji=hi.get(Vi.type);return ji?ji(yi,Vi):yi}}},6064:(Qe,te,g)=>{"use strict";g.d(te,{Dl:()=>c6,L8:()=>um,dV:()=>C3});var e=g(4438),t=g(177),w=g(1635),S=g(6939),l=g(3726),x=g(152),f=g(9969);function I(){}function d(u){return null==u?I:function(){return this.querySelector(u)}}function F(){return[]}function R(u){return null==u?F:function(){return this.querySelectorAll(u)}}function $(u){return function(){return this.matches(u)}}function j(u){return function(A){return A.matches(u)}}var Q=Array.prototype.find;function ee(){return this.firstElementChild}var ge=Array.prototype.filter;function ae(){return Array.from(this.children)}function D(u){return new Array(u.length)}function c(u,A){this.ownerDocument=u.ownerDocument,this.namespaceURI=u.namespaceURI,this._next=null,this._parent=u,this.__data__=A}function h(u,A,o,M,B,Y){for(var Ct,Le=0,Gt=A.length,Ht=Y.length;LeA?1:u>=A?0:NaN}c.prototype={constructor:c,appendChild:function(u){return this._parent.insertBefore(u,this._next)},insertBefore:function(u,A){return this._parent.insertBefore(u,A)},querySelector:function(u){return this._parent.querySelector(u)},querySelectorAll:function(u){return this._parent.querySelectorAll(u)}};var ce="http://www.w3.org/1999/xhtml";const fe={svg:"http://www.w3.org/2000/svg",xhtml:ce,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function ke(u){var A=u+="",o=A.indexOf(":");return o>=0&&"xmlns"!==(A=u.slice(0,o))&&(u=u.slice(o+1)),fe.hasOwnProperty(A)?{space:fe[A],local:u}:u}function mt(u){return function(){this.removeAttribute(u)}}function _e(u){return function(){this.removeAttributeNS(u.space,u.local)}}function be(u,A){return function(){this.setAttribute(u,A)}}function pe(u,A){return function(){this.setAttributeNS(u.space,u.local,A)}}function Ze(u,A){return function(){var o=A.apply(this,arguments);null==o?this.removeAttribute(u):this.setAttribute(u,o)}}function _t(u,A){return function(){var o=A.apply(this,arguments);null==o?this.removeAttributeNS(u.space,u.local):this.setAttributeNS(u.space,u.local,o)}}function pt(u){return u.ownerDocument&&u.ownerDocument.defaultView||u.document&&u||u.defaultView}function Xt(u){return function(){this.style.removeProperty(u)}}function ye(u,A,o){return function(){this.style.setProperty(u,A,o)}}function ue(u,A,o){return function(){var M=A.apply(this,arguments);null==M?this.style.removeProperty(u):this.style.setProperty(u,M,o)}}function He(u,A){return u.style.getPropertyValue(A)||pt(u).getComputedStyle(u,null).getPropertyValue(A)}function Xe(u){return function(){delete this[u]}}function yt(u,A){return function(){this[u]=A}}function Ye(u,A){return function(){var o=A.apply(this,arguments);null==o?delete this[u]:this[u]=o}}function Yt(u){return u.trim().split(/^|\s+/)}function Nt(u){return u.classList||new Et(u)}function Et(u){this._node=u,this._names=Yt(u.getAttribute("class")||"")}function Vt(u,A){for(var o=Nt(u),M=-1,B=A.length;++M=0&&(this._names.splice(A,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(u){return this._names.indexOf(u)>=0}};var en=[null];function Ni(u,A){this._groups=u,this._parents=A}function fn(){return new Ni([[document.documentElement]],en)}Ni.prototype=fn.prototype={constructor:Ni,select:function T(u){"function"!=typeof u&&(u=d(u));for(var A=this._groups,o=A.length,M=new Array(o),B=0;B=_n&&(_n=Ln+1);!(Xn=ki[_n])&&++_n=0;)(Le=M[B])&&(Y&&4^Le.compareDocumentPosition(Y)&&Y.parentNode.insertBefore(Le,Y),Y=Le);return this},sort:function ne(u){function A(gi,wi){return gi&&wi?u(gi.__data__,wi.__data__):!gi-!wi}u||(u=Ee);for(var o=this._groups,M=o.length,B=new Array(M),Y=0;Y1?this.each((null==A?Xt:"function"==typeof A?ue:ye)(u,A,o??"")):He(this.node(),u)},property:function rt(u,A){return arguments.length>1?this.each((null==A?Xe:"function"==typeof A?Ye:yt)(u,A)):this.node()[u]},classed:function Jt(u,A){var o=Yt(u+"");if(arguments.length<2){for(var M=Nt(this.node()),B=-1,Y=o.length;++B=0&&(o=A.slice(M+1),A=A.slice(0,M)),{type:A,name:o}})}(u+""),Y=M.length;if(!(arguments.length<2)){for(Ct=A?it:Mt,B=0;B{}};function Ce(){for(var M,u=0,A=arguments.length,o={};u=0&&(M=o.slice(B+1),o=o.slice(0,B)),o&&!A.hasOwnProperty(o))throw new Error("unknown type: "+o);return{type:o,name:M}})}(u+"",o),Y=-1,Le=M.length;if(!(arguments.length<2)){if(null!=A&&"function"!=typeof A)throw new Error("invalid callback: "+A);for(;++Y0)for(var B,Y,o=new Array(B),M=0;M>8&15|A>>4&240,A>>4&15|240&A,(15&A)<<4|15&A,1):8===o?Ea(A>>24&255,A>>16&255,A>>8&255,(255&A)/255):4===o?Ea(A>>12&15|A>>8&240,A>>8&15|A>>4&240,A>>4&15|240&A,((15&A)<<4|15&A)/255):null):(A=rn.exec(u))?new xr(A[1],A[2],A[3],1):(A=ar.exec(u))?new xr(255*A[1]/100,255*A[2]/100,255*A[3]/100,1):(A=sr.exec(u))?Ea(A[1],A[2],A[3],A[4]):(A=nr.exec(u))?Ea(255*A[1]/100,255*A[2]/100,255*A[3]/100,A[4]):(A=or.exec(u))?Co(A[1],A[2]/100,A[3]/100,1):(A=Xr.exec(u))?Co(A[1],A[2]/100,A[3]/100,A[4]):Sr.hasOwnProperty(u)?Ma(Sr[u]):"transparent"===u?new xr(NaN,NaN,NaN,0):null}function Ma(u){return new xr(u>>16&255,u>>8&255,255&u,1)}function Ea(u,A,o,M){return M<=0&&(u=A=o=NaN),new xr(u,A,o,M)}function ho(u,A,o,M){return 1===arguments.length?function no(u){return u instanceof Oi||(u=Rr(u)),u?new xr((u=u.rgb()).r,u.g,u.b,u.opacity):new xr}(u):new xr(u,A,o,M??1)}function xr(u,A,o,M){this.r=+u,this.g=+A,this.b=+o,this.opacity=+M}function Sa(){return`#${Ta(this.r)}${Ta(this.g)}${Ta(this.b)}`}function ro(){const u=hn(this.opacity);return`${1===u?"rgb(":"rgba("}${Yr(this.r)}, ${Yr(this.g)}, ${Yr(this.b)}${1===u?")":`, ${u})`}`}function hn(u){return isNaN(u)?1:Math.max(0,Math.min(1,u))}function Yr(u){return Math.max(0,Math.min(255,Math.round(u)||0))}function Ta(u){return((u=Yr(u))<16?"0":"")+u.toString(16)}function Co(u,A,o,M){return M<=0?u=A=o=NaN:o<=0||o>=1?u=A=NaN:A<=0&&(u=NaN),new da(u,A,o,M)}function wo(u){if(u instanceof da)return new da(u.h,u.s,u.l,u.opacity);if(u instanceof Oi||(u=Rr(u)),!u)return new da;if(u instanceof da)return u;var A=(u=u.rgb()).r/255,o=u.g/255,M=u.b/255,B=Math.min(A,o,M),Y=Math.max(A,o,M),Le=NaN,Ct=Y-B,Gt=(Y+B)/2;return Ct?(Le=A===Y?(o-M)/Ct+6*(o0&&Gt<1?0:Le,new da(Le,Ct,Gt,u.opacity)}function da(u,A,o,M){this.h=+u,this.s=+A,this.l=+o,this.opacity=+M}function ao(u){return(u=(u||0)%360)<0?u+360:u}function Oa(u){return Math.max(0,Math.min(1,u||0))}function ns(u,A,o){return 255*(u<60?A+(o-A)*u/60:u<180?o:u<240?A+(o-A)*(240-u)/60:A)}function Fa(u,A,o,M,B){var Y=u*u,Le=Y*u;return((1-3*u+3*Y-Le)*A+(4-6*Y+3*Le)*o+(1+3*u+3*Y-3*Le)*M+Le*B)/6}Rn(Oi,Rr,{copy(u){return Object.assign(new this.constructor,this,u)},displayable(){return this.rgb().displayable()},hex:zr,formatHex:zr,formatHex8:function Ho(){return this.rgb().formatHex8()},formatHsl:function xo(){return wo(this).formatHsl()},formatRgb:is,toString:is}),Rn(xr,ho,_i(Oi,{brighter(u){return u=null==u?Ci:Math.pow(Ci,u),new xr(this.r*u,this.g*u,this.b*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new xr(this.r*u,this.g*u,this.b*u,this.opacity)},rgb(){return this},clamp(){return new xr(Yr(this.r),Yr(this.g),Yr(this.b),hn(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:Sa,formatHex:Sa,formatHex8:function zn(){return`#${Ta(this.r)}${Ta(this.g)}${Ta(this.b)}${Ta(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:ro,toString:ro})),Rn(da,function zo(u,A,o,M){return 1===arguments.length?wo(u):new da(u,A,o,M??1)},_i(Oi,{brighter(u){return u=null==u?Ci:Math.pow(Ci,u),new da(this.h,this.s,this.l*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new da(this.h,this.s,this.l*u,this.opacity)},rgb(){var u=this.h%360+360*(this.h<0),A=isNaN(u)||isNaN(this.s)?0:this.s,o=this.l,M=o+(o<.5?o:1-o)*A,B=2*o-M;return new xr(ns(u>=240?u-240:u+120,B,M),ns(u,B,M),ns(u<120?u+240:u-120,B,M),this.opacity)},clamp(){return new da(ao(this.h),Oa(this.s),Oa(this.l),hn(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 u=hn(this.opacity);return`${1===u?"hsl(":"hsla("}${ao(this.h)}, ${100*Oa(this.s)}%, ${100*Oa(this.l)}%${1===u?")":`, ${u})`}`}}));const ha=u=>()=>u;function Na(u,A){var o=A-u;return o?function Br(u,A){return function(o){return u+o*A}}(u,o):ha(isNaN(u)?A:u)}const ja=function u(A){var o=function Ga(u){return 1==(u=+u)?Na:function(A,o){return o-A?function Ua(u,A,o){return u=Math.pow(u,o),A=Math.pow(A,o)-u,o=1/o,function(M){return Math.pow(u+M*A,o)}}(A,o,u):ha(isNaN(A)?o:A)}}(A);function M(B,Y){var Le=o((B=ho(B)).r,(Y=ho(Y)).r),Ct=o(B.g,Y.g),Gt=o(B.b,Y.b),Ht=Na(B.opacity,Y.opacity);return function(li){return B.r=Le(li),B.g=Ct(li),B.b=Gt(li),B.opacity=Ht(li),B+""}}return M.gamma=u,M}(1);function Bo(u){return function(A){var Le,Ct,o=A.length,M=new Array(o),B=new Array(o),Y=new Array(o);for(Le=0;Le=1?(o=1,A-1):Math.floor(o*A),B=u[M],Y=u[M+1];return Fa((o-M/A)*A,M>0?u[M-1]:2*B-Y,B,Y,Mo&&(Y=A.slice(o,Y),Ct[Le]?Ct[Le]+=Y:Ct[++Le]=Y),(M=M[0])===(B=B[0])?Ct[Le]?Ct[Le]+=B:Ct[++Le]=B:(Ct[++Le]=null,Gt.push({i:Le,x:_a(M,B)})),o=Bn.lastIndex;return o=0&&u._call.call(void 0,A),u=u._next;--Ei}()}finally{Ei=0,function Fo(){for(var u,o,A=Fr,M=1/0;A;)A._call?(M>A._time&&(M=A._time),u=A,A=A._next):(o=A._next,A._next=null,A=u?u._next=o:Fr=o);Mo=u,vr(M)}(),oo=0}}function Zn(){var u=oa.now(),A=u-gs;A>Or&&(Ms-=A,gs=u)}function vr(u){Ei||(Ki&&(Ki=clearTimeout(Ki)),u-oo>24?(u<1/0&&(Ki=setTimeout(pn,u-oa.now()-Ms)),tr&&(tr=clearInterval(tr))):(tr||(gs=oa.now(),tr=setInterval(Zn,Or)),Ei=1,Ri(pn)))}function Xa(u,A,o){var M=new Ue;return M.restart(B=>{M.stop(),u(B+A)},A=null==A?0:+A,o),M}Ue.prototype=At.prototype={constructor:Ue,restart:function(u,A,o){if("function"!=typeof u)throw new TypeError("callback is not a function");o=(null==o?lt():+o)+(null==A?0:+A),!this._next&&Mo!==this&&(Mo?Mo._next=this:Fr=this,Mo=this),this._call=u,this._time=o,vr()},stop:function(){this._call&&(this._call=null,this._time=1/0,vr())}};var lc=Pi("start","end","cancel","interrupt"),dc=[],hc=0,fo=3;function ua(u,A,o,M,B,Y){var Le=u.__transition;if(Le){if(o in Le)return}else u.__transition={};!function $s(u,A,o){var B,M=u.__transition;function Le(Ht){var li,gi,wi,Ai;if(1!==o.state)return Gt();for(li in M)if((Ai=M[li]).name===o.name){if(Ai.state===fo)return Xa(Le);4===Ai.state?(Ai.state=6,Ai.timer.stop(),Ai.on.call("interrupt",u,u.__data__,Ai.index,Ai.group),delete M[li]):+lihc)throw new Error("too late; already scheduled");return o}function Ir(u,A){var o=Aa(u,A);if(o.state>fo)throw new Error("too late; already running");return o}function Aa(u,A){var o=u.__transition;if(!o||!(o=o[A]))throw new Error("transition not found");return o}var _s,uc=180/Math.PI,Ss={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function fc(u,A,o,M,B,Y){var Le,Ct,Gt;return(Le=Math.sqrt(u*u+A*A))&&(u/=Le,A/=Le),(Gt=u*o+A*M)&&(o-=u*Gt,M-=A*Gt),(Ct=Math.sqrt(o*o+M*M))&&(o/=Ct,M/=Ct,Gt/=Ct),u*M180?li+=360:li-Ht>180&&(Ht+=360),wi.push({i:gi.push(B(gi)+"rotate(",null,M)-2,x:_a(Ht,li)})):li&&gi.push(B(gi)+"rotate("+li+M)}(Ht.rotate,li.rotate,gi,wi),function Ct(Ht,li,gi,wi){Ht!==li?wi.push({i:gi.push(B(gi)+"skewX(",null,M)-2,x:_a(Ht,li)}):li&&gi.push(B(gi)+"skewX("+li+M)}(Ht.skewX,li.skewX,gi,wi),function Gt(Ht,li,gi,wi,Ai,cn){if(Ht!==gi||li!==wi){var Tn=Ai.push(B(Ai)+"scale(",null,",",null,")");cn.push({i:Tn-4,x:_a(Ht,gi)},{i:Tn-2,x:_a(li,wi)})}else(1!==gi||1!==wi)&&Ai.push(B(Ai)+"scale("+gi+","+wi+")")}(Ht.scaleX,Ht.scaleY,li.scaleX,li.scaleY,gi,wi),Ht=li=null,function(Ai){for(var ki,cn=-1,Tn=wi.length;++cn=0&&(A=A.slice(0,o)),!A||"start"===A})}(A)?so:Ir;return function(){var Le=Y(this,u),Ct=Le.on;Ct!==M&&(B=(M=Ct).copy()).on(A,o),Le.on=B}}(o,u,A))},attr:function Os(u,A){var o=ke(u),M="transform"===o?el:pc;return this.attrTween(u,"function"==typeof A?(o.local?So:os)(o,M,Eo(this,"attr."+u,A)):null==A?(o.local?bs:Js)(o):(o.local?_c:gc)(o,M,A))},attrTween:function ss(u,A){var o="attr."+u;if(arguments.length<2)return(o=this.tween(o))&&o._value;if(null==A)return this.tween(o,null);if("function"!=typeof A)throw new Error;var M=ke(u);return this.tween(o,(M.local?Il:il)(M,A))},style:function $r(u,A,o){var M="transform"==(u+="")?mc:pc;return null==A?this.styleTween(u,function sa(u,A){var o,M,B;return function(){var Y=He(this,u),Le=(this.style.removeProperty(u),He(this,u));return Y===Le?null:Y===o&&Le===M?B:B=A(o=Y,M=Le)}}(u,M)).on("end.style."+u,Hn(u)):"function"==typeof A?this.styleTween(u,function sn(u,A,o){var M,B,Y;return function(){var Le=He(this,u),Ct=o(this),Gt=Ct+"";return null==Ct&&(this.style.removeProperty(u),Gt=Ct=He(this,u)),Le===Gt?null:Le===M&&Gt===B?Y:(B=Gt,Y=A(M=Le,Ct))}}(u,M,Eo(this,"style."+u,A))).each(function fr(u,A){var o,M,B,Ct,Y="style."+A,Le="end."+Y;return function(){var Gt=Ir(this,u),Ht=Gt.on,li=null==Gt.value[Y]?Ct||(Ct=Hn(A)):void 0;(Ht!==o||B!==li)&&(M=(o=Ht).copy()).on(Le,B=li),Gt.on=M}}(this._id,u)):this.styleTween(u,function Bi(u,A,o){var M,Y,B=o+"";return function(){var Le=He(this,u);return Le===B?null:Le===M?Y:Y=A(M=Le,o)}}(u,M,A),o).on("end.style."+u,null)},styleTween:function vc(u,A,o){var M="style."+(u+="");if(arguments.length<2)return(M=this.tween(M))&&M._value;if(null==A)return this.tween(M,null);if("function"!=typeof A)throw new Error;return this.tween(M,function Ya(u,A,o){var M,B;function Y(){var Le=A.apply(this,arguments);return Le!==B&&(M=(B=Le)&&function fa(u,A,o){return function(M){this.style.setProperty(u,A.call(this,M),o)}}(u,Le,o)),M}return Y._value=A,Y}(u,A,o??""))},text:function cs(u){return this.tween("text","function"==typeof u?function va(u){return function(){var A=u(this);this.textContent=A??""}}(Eo(this,"text",u)):function Ur(u){return function(){this.textContent=u}}(null==u?"":u+""))},textTween:function Rl(u){var A="text";if(arguments.length<1)return(A=this.tween(A))&&A._value;if(null==u)return this.tween(A,null);if("function"!=typeof u)throw new Error;return this.tween(A,function bc(u){var A,o;function M(){var B=u.apply(this,arguments);return B!==o&&(A=(o=B)&&function Wn(u){return function(A){this.textContent=u.call(this,A)}}(B)),A}return M._value=u,M}(u))},remove:function hr(){return this.on("end.remove",function Dn(u){return function(){var A=this.parentNode;for(var o in this.__transition)if(+o!==u)return;A&&A.removeChild(this)}}(this._id))},tween:function Rs(u,A){var o=this._id;if(u+="",arguments.length<2){for(var Le,M=Aa(this.node(),o).tween,B=0,Y=M.length;B2&&M.state<5,M.state=6,M.timer.stop(),M.on.call(B?"interrupt":"cancel",u,u.__data__,M.index,M.group),delete o[Le]):Y=!1;Y&&delete u.__transition}}(this,u)})},bt.prototype.transition=function rl(u){var A,o;u instanceof To?(A=u._id,u=u._name):(A=Oc(),(o=kn).time=lt(),u=null==u?null:u+"");for(var M=this._groups,B=M.length,Y=0;YA?1:u>=A?0:NaN}function on(u,A){return null==u||null==A?NaN:Au?1:A>=u?0:NaN}function Sn(u){let A,o,M;function B(Ct,Gt,Ht=0,li=Ct.length){if(Ht>>1;o(Ct[gi],Gt)<0?Ht=gi+1:li=gi}while(Htvi(u(Ct),Gt),M=(Ct,Gt)=>u(Ct)-Gt):(A=u===vi||u===on?u:Jn,o=u,M=u),{left:B,center:function Le(Ct,Gt,Ht=0,li=Ct.length){const gi=B(Ct,Gt,Ht,li-1);return gi>Ht&&M(Ct[gi-1],Gt)>-M(Ct[gi],Gt)?gi-1:gi},right:function Y(Ct,Gt,Ht=0,li=Ct.length){if(Ht>>1;o(Ct[gi],Gt)<=0?Ht=gi+1:li=gi}while(Ht=_r?10:Y>=ys?5:Y>=Nr?2:1;let Ct,Gt,Ht;return B<0?(Ht=Math.pow(10,-B)/Le,Ct=Math.round(u*Ht),Gt=Math.round(A*Ht),Ct/HtA&&--Gt,Ht=-Ht):(Ht=Math.pow(10,B)*Le,Ct=Math.round(u/Ht),Gt=Math.round(A/Ht),Ct*HtA&&--Gt),Gt(u(Y=new Date(+Y)),Y),B.ceil=Y=>(u(Y=new Date(Y-1)),A(Y,1),u(Y),Y),B.round=Y=>{const Le=B(Y),Ct=B.ceil(Y);return Y-Le(A(Y=new Date(+Y),null==Le?1:Math.floor(Le)),Y),B.range=(Y,Le,Ct)=>{const Gt=[];if(Y=B.ceil(Y),Ct=null==Ct?1:Math.floor(Ct),!(Y0))return Gt;let Ht;do{Gt.push(Ht=new Date(+Y)),A(Y,Ct),u(Y)}while(HtLa(Le=>{if(Le>=Le)for(;u(Le),!Y(Le);)Le.setTime(Le-1)},(Le,Ct)=>{if(Le>=Le)if(Ct<0)for(;++Ct<=0;)for(;A(Le,-1),!Y(Le););else for(;--Ct>=0;)for(;A(Le,1),!Y(Le););}),o&&(B.count=(Y,Le)=>(wr.setTime(+Y),ld.setTime(+Le),u(wr),u(ld),Math.floor(o(wr,ld))),B.every=Y=>(Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?B.filter(M?Le=>M(Le)%Y==0:Le=>B.count(0,Le)%Y==0):B:null)),B}const po=La(()=>{},(u,A)=>{u.setTime(+u+A)},(u,A)=>A-u);po.every=u=>(u=Math.floor(u),isFinite(u)&&u>0?u>1?La(A=>{A.setTime(Math.floor(A/u)*u)},(A,o)=>{A.setTime(+A+o*u)},(A,o)=>(o-A)/u):po:null);const ec=La(u=>{u.setTime(u-u.getMilliseconds())},(u,A)=>{u.setTime(+u+A*Ko)},(u,A)=>(A-u)/Ko,u=>u.getUTCSeconds()),$o=La(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Ko)},(u,A)=>{u.setTime(+u+A*Ds)},(u,A)=>(A-u)/Ds,u=>u.getMinutes()),zd=La(u=>{u.setUTCSeconds(0,0)},(u,A)=>{u.setTime(+u+A*Ds)},(u,A)=>(A-u)/Ds,u=>u.getUTCMinutes()),qa=La(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Ko-u.getMinutes()*Ds)},(u,A)=>{u.setTime(+u+A*Hs)},(u,A)=>(A-u)/Hs,u=>u.getHours()),y0=La(u=>{u.setUTCMinutes(0,0,0)},(u,A)=>{u.setTime(+u+A*Hs)},(u,A)=>(A-u)/Hs,u=>u.getUTCHours()),al=La(u=>u.setHours(0,0,0,0),(u,A)=>u.setDate(u.getDate()+A),(u,A)=>(A-u-(A.getTimezoneOffset()-u.getTimezoneOffset())*Ds)/Cc,u=>u.getDate()-1),wc=(La(u=>{u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCDate(u.getUTCDate()+A)},(u,A)=>(A-u)/Cc,u=>u.getUTCDate()-1),La(u=>{u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCDate(u.getUTCDate()+A)},(u,A)=>(A-u)/Cc,u=>Math.floor(u/Cc)));function Nn(u){return La(A=>{A.setDate(A.getDate()-(A.getDay()+7-u)%7),A.setHours(0,0,0,0)},(A,o)=>{A.setDate(A.getDate()+7*o)},(A,o)=>(o-A-(o.getTimezoneOffset()-A.getTimezoneOffset())*Ds)/As)}const zl=Nn(0);function Ii(u){return La(A=>{A.setUTCDate(A.getUTCDate()-(A.getUTCDay()+7-u)%7),A.setUTCHours(0,0,0,0)},(A,o)=>{A.setUTCDate(A.getUTCDate()+7*o)},(A,o)=>(o-A)/As)}Nn(1),Nn(2),Nn(3),Nn(4),Nn(5),Nn(6);const ur=Ii(0),jd=(Ii(1),Ii(2),Ii(3),Ii(4),Ii(5),Ii(6),La(u=>{u.setDate(1),u.setHours(0,0,0,0)},(u,A)=>{u.setMonth(u.getMonth()+A)},(u,A)=>A.getMonth()-u.getMonth()+12*(A.getFullYear()-u.getFullYear()),u=>u.getMonth())),tc=La(u=>{u.setUTCDate(1),u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCMonth(u.getUTCMonth()+A)},(u,A)=>A.getUTCMonth()-u.getUTCMonth()+12*(A.getUTCFullYear()-u.getUTCFullYear()),u=>u.getUTCMonth()),us=La(u=>{u.setMonth(0,1),u.setHours(0,0,0,0)},(u,A)=>{u.setFullYear(u.getFullYear()+A)},(u,A)=>A.getFullYear()-u.getFullYear(),u=>u.getFullYear());us.every=u=>isFinite(u=Math.floor(u))&&u>0?La(A=>{A.setFullYear(Math.floor(A.getFullYear()/u)*u),A.setMonth(0,1),A.setHours(0,0,0,0)},(A,o)=>{A.setFullYear(A.getFullYear()+o*u)}):null;const dd=La(u=>{u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCFullYear(u.getUTCFullYear()+A)},(u,A)=>A.getUTCFullYear()-u.getUTCFullYear(),u=>u.getUTCFullYear());function xa(u,A,o,M,B,Y){const Le=[[ec,1,Ko],[ec,5,5e3],[ec,15,15e3],[ec,30,3e4],[Y,1,Ds],[Y,5,5*Ds],[Y,15,15*Ds],[Y,30,30*Ds],[B,1,Hs],[B,3,3*Hs],[B,6,6*Hs],[B,12,12*Hs],[M,1,Cc],[M,2,2*Cc],[o,1,As],[A,1,Vl],[A,3,3*Vl],[u,1,Hd]];function Gt(Ht,li,gi){const wi=Math.abs(li-Ht)/gi,Ai=Sn(([,,ki])=>ki).right(Le,wi);if(Ai===Le.length)return u.every(Pl(Ht/Hd,li/Hd,gi));if(0===Ai)return po.every(Math.max(Pl(Ht,li,gi),1));const[cn,Tn]=Le[wi/Le[Ai-1][2]isFinite(u=Math.floor(u))&&u>0?La(A=>{A.setUTCFullYear(Math.floor(A.getUTCFullYear()/u)*u),A.setUTCMonth(0,1),A.setUTCHours(0,0,0,0)},(A,o)=>{A.setUTCFullYear(A.getUTCFullYear()+o*u)}):null;const[Pa,n2]=xa(dd,tc,ur,wc,y0,zd),[Ca,Vc]=xa(us,jd,zl,al,qa,$o);var ic=new Date,Ul=new Date;function zs(u,A,o,M){function B(Y){return u(Y=0===arguments.length?new Date:new Date(+Y)),Y}return B.floor=function(Y){return u(Y=new Date(+Y)),Y},B.ceil=function(Y){return u(Y=new Date(Y-1)),A(Y,1),u(Y),Y},B.round=function(Y){var Le=B(Y),Ct=B.ceil(Y);return Y-Le0))return Gt;do{Gt.push(Ht=new Date(+Y)),A(Y,Ct),u(Y)}while(Ht=Le)for(;u(Le),!Y(Le);)Le.setTime(Le-1)},function(Le,Ct){if(Le>=Le)if(Ct<0)for(;++Ct<=0;)for(;A(Le,-1),!Y(Le););else for(;--Ct>=0;)for(;A(Le,1),!Y(Le););})},o&&(B.count=function(Y,Le){return ic.setTime(+Y),Ul.setTime(+Le),u(ic),u(Ul),Math.floor(o(ic,Ul))},B.every=function(Y){return Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?B.filter(M?function(Le){return M(Le)%Y==0}:function(Le){return B.count(0,Le)%Y==0}):B:null}),B}const Gl=864e5,Xd=7*Gl;function Va(u){return zs(function(A){A.setUTCDate(A.getUTCDate()-(A.getUTCDay()+7-u)%7),A.setUTCHours(0,0,0,0)},function(A,o){A.setUTCDate(A.getUTCDate()+7*o)},function(A,o){return(o-A)/Xd})}var Hc=Va(0),Pr=Va(1),cl=(Va(2),Va(3),Va(4));const s2=(Va(5),Va(6),zs(function(u){u.setUTCHours(0,0,0,0)},function(u,A){u.setUTCDate(u.getUTCDate()+A)},function(u,A){return(A-u)/Gl},function(u){return u.getUTCDate()-1}));function ll(u){return zs(function(A){A.setDate(A.getDate()-(A.getDay()+7-u)%7),A.setHours(0,0,0,0)},function(A,o){A.setDate(A.getDate()+7*o)},function(A,o){return(o-A-6e4*(o.getTimezoneOffset()-A.getTimezoneOffset()))/Xd})}var zc=ll(0),Bc=ll(1),dl=(ll(2),ll(3),ll(4));const nf=(ll(5),ll(6),zs(u=>u.setHours(0,0,0,0),(u,A)=>u.setDate(u.getDate()+A),(u,A)=>(A-u-6e4*(A.getTimezoneOffset()-u.getTimezoneOffset()))/Gl,u=>u.getDate()-1));var Qd=zs(function(u){u.setMonth(0,1),u.setHours(0,0,0,0)},function(u,A){u.setFullYear(u.getFullYear()+A)},function(u,A){return A.getFullYear()-u.getFullYear()},function(u){return u.getFullYear()});Qd.every=function(u){return isFinite(u=Math.floor(u))&&u>0?zs(function(A){A.setFullYear(Math.floor(A.getFullYear()/u)*u),A.setMonth(0,1),A.setHours(0,0,0,0)},function(A,o){A.setFullYear(A.getFullYear()+o*u)}):null};const jl=Qd;var l2=zs(function(u){u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},function(u,A){u.setUTCFullYear(u.getUTCFullYear()+A)},function(u,A){return A.getUTCFullYear()-u.getUTCFullYear()},function(u){return u.getUTCFullYear()});l2.every=function(u){return isFinite(u=Math.floor(u))&&u>0?zs(function(A){A.setUTCFullYear(Math.floor(A.getUTCFullYear()/u)*u),A.setUTCMonth(0,1),A.setUTCHours(0,0,0,0)},function(A,o){A.setUTCFullYear(A.getUTCFullYear()+o*u)}):null};const Uc=l2;function Zd(u){if(0<=u.y&&u.y<100){var A=new Date(-1,u.m,u.d,u.H,u.M,u.S,u.L);return A.setFullYear(u.y),A}return new Date(u.y,u.m,u.d,u.H,u.M,u.S,u.L)}function Wl(u){if(0<=u.y&&u.y<100){var A=new Date(Date.UTC(-1,u.m,u.d,u.H,u.M,u.S,u.L));return A.setUTCFullYear(u.y),A}return new Date(Date.UTC(u.y,u.m,u.d,u.H,u.M,u.S,u.L))}function fl(u,A,o){return{y:u,m:A,d:o,H:0,M:0,S:0,L:0}}var d2={"-":"",_:" ",0:"0"},eo=/^\s*\d+/,N0=/^%/,h2=/[\\^$*+?|[\]().{}]/g;function Dr(u,A,o){var M=u<0?"-":"",B=(M?-u:u)+"",Y=B.length;return M+(Y[A.toLowerCase(),o]))}function P0(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.w=+M[0],o+M[0].length):-1}function u2(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.u=+M[0],o+M[0].length):-1}function Xl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.U=+M[0],o+M[0].length):-1}function Yl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.V=+M[0],o+M[0].length):-1}function to(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.W=+M[0],o+M[0].length):-1}function V0(u,A,o){var M=eo.exec(A.slice(o,o+4));return M?(u.y=+M[0],o+M[0].length):-1}function f2(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.y=+M[0]+(+M[0]>68?1900:2e3),o+M[0].length):-1}function m2(u,A,o){var M=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(A.slice(o,o+6));return M?(u.Z=M[1]?0:-(M[2]+(M[3]||"00")),o+M[0].length):-1}function H0(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.q=3*M[0]-3,o+M[0].length):-1}function z0(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.m=M[0]-1,o+M[0].length):-1}function Kl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.d=+M[0],o+M[0].length):-1}function rf(u,A,o){var M=eo.exec(A.slice(o,o+3));return M?(u.m=0,u.d=+M[0],o+M[0].length):-1}function qd(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.H=+M[0],o+M[0].length):-1}function p2(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.M=+M[0],o+M[0].length):-1}function e1(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.S=+M[0],o+M[0].length):-1}function B0(u,A,o){var M=eo.exec(A.slice(o,o+3));return M?(u.L=+M[0],o+M[0].length):-1}function af(u,A,o){var M=eo.exec(A.slice(o,o+6));return M?(u.L=Math.floor(M[0]/1e3),o+M[0].length):-1}function U0(u,A,o){var M=N0.exec(A.slice(o,o+1));return M?o+M[0].length:-1}function G0(u,A,o){var M=eo.exec(A.slice(o));return M?(u.Q=+M[0],o+M[0].length):-1}function t1(u,A,o){var M=eo.exec(A.slice(o));return M?(u.s=+M[0],o+M[0].length):-1}function fd(u,A){return Dr(u.getDate(),A,2)}function g2(u,A){return Dr(u.getHours(),A,2)}function sf(u,A){return Dr(u.getHours()%12||12,A,2)}function cf(u,A){return Dr(1+nf.count(jl(u),u),A,3)}function lf(u,A){return Dr(u.getMilliseconds(),A,3)}function j0(u,A){return lf(u,A)+"000"}function W0(u,A){return Dr(u.getMonth()+1,A,2)}function go(u,A){return Dr(u.getMinutes(),A,2)}function e4(u,A){return Dr(u.getSeconds(),A,2)}function X0(u){var A=u.getDay();return 0===A?7:A}function t4(u,A){return Dr(zc.count(jl(u)-1,u),A,2)}function _2(u){var A=u.getDay();return A>=4||0===A?dl(u):dl.ceil(u)}function i4(u,A){return u=_2(u),Dr(dl.count(jl(u),u)+(4===jl(u).getDay()),A,2)}function n1(u){return u.getDay()}function Bs(u,A){return Dr(Bc.count(jl(u)-1,u),A,2)}function r1(u,A){return Dr(u.getFullYear()%100,A,2)}function ml(u,A){return Dr((u=_2(u)).getFullYear()%100,A,2)}function df(u,A){return Dr(u.getFullYear()%1e4,A,4)}function Y0(u,A){var o=u.getDay();return Dr((u=o>=4||0===o?dl(u):dl.ceil(u)).getFullYear()%1e4,A,4)}function v2(u){var A=u.getTimezoneOffset();return(A>0?"-":(A*=-1,"+"))+Dr(A/60|0,"0",2)+Dr(A%60,"0",2)}function md(u,A){return Dr(u.getUTCDate(),A,2)}function hf(u,A){return Dr(u.getUTCHours(),A,2)}function n4(u,A){return Dr(u.getUTCHours()%12||12,A,2)}function r4(u,A){return Dr(1+s2.count(Uc(u),u),A,3)}function uf(u,A){return Dr(u.getUTCMilliseconds(),A,3)}function ff(u,A){return uf(u,A)+"000"}function $l(u,A){return Dr(u.getUTCMonth()+1,A,2)}function pd(u,A){return Dr(u.getUTCMinutes(),A,2)}function Ql(u,A){return Dr(u.getUTCSeconds(),A,2)}function mf(u){var A=u.getUTCDay();return 0===A?7:A}function a1(u,A){return Dr(Hc.count(Uc(u)-1,u),A,2)}function Us(u){var A=u.getUTCDay();return A>=4||0===A?cl(u):cl.ceil(u)}function K0(u,A){return u=Us(u),Dr(cl.count(Uc(u),u)+(4===Uc(u).getUTCDay()),A,2)}function o1(u){return u.getUTCDay()}function gd(u,A){return Dr(Pr.count(Uc(u)-1,u),A,2)}function $0(u,A){return Dr(u.getUTCFullYear()%100,A,2)}function Q0(u,A){return Dr((u=Us(u)).getUTCFullYear()%100,A,2)}function Z0(u,A){return Dr(u.getUTCFullYear()%1e4,A,4)}function _d(u,A){var o=u.getUTCDay();return Dr((u=o>=4||0===o?cl(u):cl.ceil(u)).getUTCFullYear()%1e4,A,4)}function s1(){return"+0000"}function c1(){return"%"}function J0(u){return+u}function q0(u){return Math.floor(+u/1e3)}function l1(u){return null===u?NaN:+u}!function y2(u){(function F0(u){var A=u.dateTime,o=u.date,M=u.time,B=u.periods,Y=u.days,Le=u.shortDays,Ct=u.months,Gt=u.shortMonths,Ht=ks(B),li=ud(B),gi=ks(Y),wi=ud(Y),Ai=ks(Le),cn=ud(Le),Tn=ks(Ct),ki=ud(Ct),xn=ks(Gt),Ln=ud(Gt),_n={a:function pa(Mn){return Le[Mn.getDay()]},A:function Do(Mn){return Y[Mn.getDay()]},b:function Zr(Mn){return Gt[Mn.getMonth()]},B:function Ao(Mn){return Ct[Mn.getMonth()]},c:null,d:fd,e:fd,f:j0,g:ml,G:Y0,H:g2,I:sf,j:cf,L:lf,m:W0,M:go,p:function co(Mn){return B[+(Mn.getHours()>=12)]},q:function lo(Mn){return 1+~~(Mn.getMonth()/3)},Q:J0,s:q0,S:e4,u:X0,U:t4,V:i4,w:n1,W:Bs,x:null,X:null,y:r1,Y:df,Z:v2,"%":c1},qn={a:function h0(Mn){return Le[Mn.getUTCDay()]},A:function P1(Mn){return Y[Mn.getUTCDay()]},b:function V1(Mn){return Gt[Mn.getUTCMonth()]},B:function H1(Mn){return Ct[Mn.getUTCMonth()]},c:null,d:md,e:md,f:ff,g:Q0,G:_d,H:hf,I:n4,j:r4,L:uf,m:$l,M:pd,p:function ko(Mn){return B[+(Mn.getUTCHours()>=12)]},q:function Pd(Mn){return 1+~~(Mn.getUTCMonth()/3)},Q:J0,s:q0,S:Ql,u:mf,U:a1,V:K0,w:o1,W:gd,x:null,X:null,y:$0,Y:Z0,Z:s1,"%":c1},Xn={a:function Hr(Mn,dr,yr){var tn=Ai.exec(dr.slice(yr));return tn?(Mn.w=cn.get(tn[0].toLowerCase()),yr+tn[0].length):-1},A:function Pn(Mn,dr,yr){var tn=gi.exec(dr.slice(yr));return tn?(Mn.w=wi.get(tn[0].toLowerCase()),yr+tn[0].length):-1},b:function Po(Mn,dr,yr){var tn=xn.exec(dr.slice(yr));return tn?(Mn.m=Ln.get(tn[0].toLowerCase()),yr+tn[0].length):-1},B:function Er(Mn,dr,yr){var tn=Tn.exec(dr.slice(yr));return tn?(Mn.m=ki.get(tn[0].toLowerCase()),yr+tn[0].length):-1},c:function aa(Mn,dr,yr){return ra(Mn,A,dr,yr)},d:Kl,e:Kl,f:af,g:f2,G:V0,H:qd,I:qd,j:rf,L:B0,m:z0,M:p2,p:function ms(Mn,dr,yr){var tn=Ht.exec(dr.slice(yr));return tn?(Mn.p=li.get(tn[0].toLowerCase()),yr+tn[0].length):-1},q:H0,Q:G0,s:t1,S:e1,u:u2,U:Xl,V:Yl,w:P0,W:to,x:function Ls(Mn,dr,yr){return ra(Mn,o,dr,yr)},X:function za(Mn,dr,yr){return ra(Mn,M,dr,yr)},y:f2,Y:V0,Z:m2,"%":U0};function In(Mn,dr){return function(yr){var Vo,Kn,Qa,tn=[],$a=-1,Wr=0,ps=Mn.length;for(yr instanceof Date||(yr=new Date(+yr));++$a53)return null;"w"in tn||(tn.w=1),"Z"in tn?(ps=(Wr=Wl(fl(tn.y,0,1))).getUTCDay(),Wr=ps>4||0===ps?Pr.ceil(Wr):Pr(Wr),Wr=s2.offset(Wr,7*(tn.V-1)),tn.y=Wr.getUTCFullYear(),tn.m=Wr.getUTCMonth(),tn.d=Wr.getUTCDate()+(tn.w+6)%7):(ps=(Wr=Zd(fl(tn.y,0,1))).getDay(),Wr=ps>4||0===ps?Bc.ceil(Wr):Bc(Wr),Wr=nf.offset(Wr,7*(tn.V-1)),tn.y=Wr.getFullYear(),tn.m=Wr.getMonth(),tn.d=Wr.getDate()+(tn.w+6)%7)}else("W"in tn||"U"in tn)&&("w"in tn||(tn.w="u"in tn?tn.u%7:"W"in tn?1:0),ps="Z"in tn?Wl(fl(tn.y,0,1)).getUTCDay():Zd(fl(tn.y,0,1)).getDay(),tn.m=0,tn.d="W"in tn?(tn.w+6)%7+7*tn.W-(ps+5)%7:tn.w+7*tn.U-(ps+6)%7);return"Z"in tn?(tn.H+=tn.Z/100|0,tn.M+=tn.Z%100,Wl(tn)):Zd(tn)}}function ra(Mn,dr,yr,tn){for(var Vo,Kn,$a=0,Wr=dr.length,ps=yr.length;$a=ps)return-1;if(37===(Vo=dr.charCodeAt($a++))){if(Vo=dr.charAt($a++),!(Kn=Xn[Vo in d2?dr.charAt($a++):Vo])||(tn=Kn(Mn,yr,tn))<0)return-1}else if(Vo!=yr.charCodeAt(tn++))return-1}return tn}return _n.x=In(o,_n),_n.X=In(M,_n),_n.c=In(A,_n),qn.x=In(o,qn),qn.X=In(M,qn),qn.c=In(A,qn),{format:function(Mn){var dr=In(Mn+="",_n);return dr.toString=function(){return Mn},dr},parse:function(Mn){var dr=na(Mn+="",!1);return dr.toString=function(){return Mn},dr},utcFormat:function(Mn){var dr=In(Mn+="",qn);return dr.toString=function(){return Mn},dr},utcParse:function(Mn){var dr=na(Mn+="",!0);return dr.toString=function(){return Mn},dr}}})(u)}({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 a4=Sn(vi).right,C2=(Sn(l1),a4);function w2(u,A){return u=+u,A=+A,function(o){return Math.round(u*(1-o)+A*o)}}function th(u){return+u}var ih=[0,1];function Gc(u){return u}function M2(u,A){return(A-=u=+u)?function(o){return(o-u)/A}:function _f(u){return function(){return u}}(isNaN(A)?NaN:.5)}function vf(u,A,o){var M=u[0],B=u[1],Y=A[0],Le=A[1];return BA&&(o=u,u=A,A=o),function(M){return Math.max(u,Math.min(A,M))}}(u[0],u[wi-1])),Ct=wi>2?rh:vf,Gt=Ht=null,gi}function gi(wi){return null==wi||isNaN(wi=+wi)?Y:(Gt||(Gt=Ct(u.map(M),A,o)))(M(Le(wi)))}return gi.invert=function(wi){return Le(B((Ht||(Ht=Ct(A,u.map(M),_a)))(wi)))},gi.domain=function(wi){return arguments.length?(u=Array.from(wi,th),li()):u.slice()},gi.range=function(wi){return arguments.length?(A=Array.from(wi),li()):A.slice()},gi.rangeRound=function(wi){return A=Array.from(wi),o=w2,li()},gi.clamp=function(wi){return arguments.length?(Le=!!wi||Gc,li()):Le!==Gc},gi.interpolate=function(wi){return arguments.length?(o=wi,li()):o},gi.unknown=function(wi){return arguments.length?(Y=wi,gi):Y},function(wi,Ai){return M=wi,B=Ai,li()}}()(Gc,Gc)}function Jl(u,A){switch(arguments.length){case 0:break;case 1:this.range(u);break;default:this.range(A).domain(u)}return this}var A2,xf=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function h1(u){if(!(A=xf.exec(u)))throw new Error("invalid format: "+u);var A;return new D2({fill:A[1],align:A[2],sign:A[3],symbol:A[4],zero:A[5],width:A[6],comma:A[7],precision:A[8]&&A[8].slice(1),trim:A[9],type:A[10]})}function D2(u){this.fill=void 0===u.fill?" ":u.fill+"",this.align=void 0===u.align?">":u.align+"",this.sign=void 0===u.sign?"-":u.sign+"",this.symbol=void 0===u.symbol?"":u.symbol+"",this.zero=!!u.zero,this.width=void 0===u.width?void 0:+u.width,this.comma=!!u.comma,this.precision=void 0===u.precision?void 0:+u.precision,this.trim=!!u.trim,this.type=void 0===u.type?"":u.type+""}function ql(u,A){if((o=(u=A?u.toExponential(A-1):u.toExponential()).indexOf("e"))<0)return null;var o,M=u.slice(0,o);return[M.length>1?M[0]+M.slice(2):M,+u.slice(o+1)]}function vd(u){return(u=ql(Math.abs(u)))?u[1]:NaN}function u1(u,A){var o=ql(u,A);if(!o)return u+"";var M=o[0],B=o[1];return B<0?"0."+new Array(-B).join("0")+M:M.length>B+1?M.slice(0,B+1)+"."+M.slice(B+1):M+new Array(B-M.length+2).join("0")}h1.prototype=D2.prototype,D2.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 ch={"%":(u,A)=>(100*u).toFixed(A),b:u=>Math.round(u).toString(2),c:u=>u+"",d:function Cf(u){return Math.abs(u=Math.round(u))>=1e21?u.toLocaleString("en").replace(/,/g,""):u.toString(10)},e:(u,A)=>u.toExponential(A),f:(u,A)=>u.toFixed(A),g:(u,A)=>u.toPrecision(A),o:u=>Math.round(u).toString(8),p:(u,A)=>u1(100*u,A),r:u1,s:function sh(u,A){var o=ql(u,A);if(!o)return u+"";var M=o[0],B=o[1],Y=B-(A2=3*Math.max(-8,Math.min(8,Math.floor(B/3))))+1,Le=M.length;return Y===Le?M:Y>Le?M+new Array(Y-Le+1).join("0"):Y>0?M.slice(0,Y)+"."+M.slice(Y):"0."+new Array(1-Y).join("0")+ql(u,Math.max(0,A+Y-1))[0]},X:u=>Math.round(u).toString(16).toUpperCase(),x:u=>Math.round(u).toString(16)};function Dc(u){return u}var ed,dh,hh,f1=Array.prototype.map,k2=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function c4(u){var A=u.domain;return u.ticks=function(o){var M=A();return function ls(u,A,o){if(!((o=+o)>0))return[];if((u=+u)==(A=+A))return[u];const M=A=B))return[];const Ct=Y-B+1,Gt=new Array(Ct);if(M)if(Le<0)for(let Ht=0;Ht0;){if((Ht=xc(Le,Ct,o))===Gt)return M[B]=Le,M[Y]=Ct,A(M);if(Ht>0)Le=Math.floor(Le/Ht)*Ht,Ct=Math.ceil(Ct/Ht)*Ht;else{if(!(Ht<0))break;Le=Math.ceil(Le*Ht)/Ht,Ct=Math.floor(Ct*Ht)/Ht}Gt=Ht}return u},u}function Gs(){var u=S2();return u.copy=function(){return function E2(u,A){return A.domain(u.domain()).range(u.range()).interpolate(u.interpolate()).clamp(u.clamp()).unknown(u.unknown())}(u,Gs())},Jl.apply(u,arguments),c4(u)}function fh(u,A,o){u=+u,A=+A,o=(B=arguments.length)<2?(A=u,u=0,1):B<3?1:+o;for(var M=-1,B=0|Math.max(0,Math.ceil((A-u)/o)),Y=new Array(B);++M0&&Ct>0&&(Gt+Ct+1>M&&(Ct=Math.max(1,M-Gt)),Y.push(o.substring(B-=Ct,B+Ct)),!((Gt+=Ct+1)>M));)Ct=u[Le=(Le+1)%u.length];return Y.reverse().join(A)}}(f1.call(u.grouping,Number),u.thousands+""),o=void 0===u.currency?"":u.currency[0]+"",M=void 0===u.currency?"":u.currency[1]+"",B=void 0===u.decimal?".":u.decimal+"",Y=void 0===u.numerals?Dc:function Mf(u){return function(A){return A.replace(/[0-9]/g,function(o){return u[+o]})}}(f1.call(u.numerals,String)),Le=void 0===u.percent?"%":u.percent+"",Ct=void 0===u.minus?"\u2212":u.minus+"",Gt=void 0===u.nan?"NaN":u.nan+"";function Ht(gi){var wi=(gi=h1(gi)).fill,Ai=gi.align,cn=gi.sign,Tn=gi.symbol,ki=gi.zero,xn=gi.width,Ln=gi.comma,_n=gi.precision,qn=gi.trim,Xn=gi.type;"n"===Xn?(Ln=!0,Xn="g"):ch[Xn]||(void 0===_n&&(_n=12),qn=!0,Xn="g"),(ki||"0"===wi&&"="===Ai)&&(ki=!0,wi="0",Ai="=");var In="$"===Tn?o:"#"===Tn&&/[boxX]/.test(Xn)?"0"+Xn.toLowerCase():"",na="$"===Tn?M:/[%p]/.test(Xn)?Le:"",ra=ch[Xn],ms=/[defgprs%]/.test(Xn);function Hr(Pn){var aa,Ls,za,Po=In,Er=na;if("c"===Xn)Er=ra(Pn)+Er,Pn="";else{var pa=(Pn=+Pn)<0||1/Pn<0;if(Pn=isNaN(Pn)?Gt:ra(Math.abs(Pn),_n),qn&&(Pn=function o4(u){e:for(var B,A=u.length,o=1,M=-1;o0&&(M=0)}return M>0?u.slice(0,M)+u.slice(B+1):u}(Pn)),pa&&0==+Pn&&"+"!==cn&&(pa=!1),Po=(pa?"("===cn?cn:Ct:"-"===cn||"("===cn?"":cn)+Po,Er=("s"===Xn?k2[8+A2/3]:"")+Er+(pa&&"("===cn?")":""),ms)for(aa=-1,Ls=Pn.length;++aa(za=Pn.charCodeAt(aa))||za>57){Er=(46===za?B+Pn.slice(aa+1):Pn.slice(aa))+Er,Pn=Pn.slice(0,aa);break}}Ln&&!ki&&(Pn=A(Pn,1/0));var Do=Po.length+Pn.length+Er.length,Zr=Do>1)+Po+Pn+Er+Zr.slice(Do);break;default:Pn=Zr+Po+Pn+Er}return Y(Pn)}return _n=void 0===_n?6:/[gprs]/.test(Xn)?Math.max(1,Math.min(21,_n)):Math.max(0,Math.min(20,_n)),Hr.toString=function(){return gi+""},Hr}return{format:Ht,formatPrefix:function li(gi,wi){var Ai=Ht(((gi=h1(gi)).type="f",gi)),cn=3*Math.max(-8,Math.min(8,Math.floor(vd(wi)/3))),Tn=Math.pow(10,-cn),ki=k2[8+cn/3];return function(xn){return Ai(Tn*xn)+ki}}}}(u),dh=ed.format,hh=ed.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class m1 extends Map{constructor(A,o=td){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:o}}),null!=A)for(const[M,B]of A)this.set(M,B)}get(A){return super.get(js(this,A))}has(A){return super.has(js(this,A))}set(A,o){return super.set(function yd({_intern:u,_key:A},o){const M=A(o);return u.has(M)?u.get(M):(u.set(M,o),o)}(this,A),o)}delete(A){return super.delete(function p1({_intern:u,_key:A},o){const M=A(o);return u.has(M)&&(o=u.get(M),u.delete(M)),o}(this,A))}}function js({_intern:u,_key:A},o){const M=A(o);return u.has(M)?u.get(M):o}function td(u){return null!==u&&"object"==typeof u?u.valueOf():u}Set;const id=Symbol("implicit");function Wc(){var u=new m1,A=[],o=[],M=id;function B(Y){let Le=u.get(Y);if(void 0===Le){if(M!==id)return M;u.set(Y,Le=A.push(Y)-1)}return o[Le%o.length]}return B.domain=function(Y){if(!arguments.length)return A.slice();A=[],u=new m1;for(const Le of Y)u.has(Le)||u.set(Le,A.push(Le)-1);return B},B.range=function(Y){return arguments.length?(o=Array.from(Y),B):o.slice()},B.unknown=function(Y){return arguments.length?(M=Y,B):M},B.copy=function(){return Wc(A,o).unknown(M)},Jl.apply(B,arguments),B}function Ac(){var Y,Le,u=Wc().unknown(void 0),A=u.domain,o=u.range,M=0,B=1,Ct=!1,Gt=0,Ht=0,li=.5;function gi(){var wi=A().length,Ai=B=1)return+o(u[M-1],M-1,u);var M,B=(M-1)*A,Y=Math.floor(B),Le=+o(u[Y],Y,u);return Le+(+o(u[Y+1],Y+1,u)-Le)*(B-Y)}}function Cd(){var M,u=[],A=[],o=[];function B(){var Le=0,Ct=Math.max(1,A.length);for(o=new Array(Ct-1);++Le0?o[Ct-1]:u[0],Ct({model:u});function Df(u,A){}function io(u,A){if(1&u&&(e.j41(0,"span"),e.DNE(1,Df,0,0,"ng-template",5),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngTemplateOutlet",o.template)("ngTemplateOutletContext",e.eq3(2,h4,o.context))}}function _h(u,A){if(1&u&&e.nrm(0,"span",6),2&u){const o=e.XpG();e.Y8G("innerHTML",o.title,e.npT)}}function Af(u,A){if(1&u&&(e.j41(0,"header",4)(1,"span",5),e.EFF(2),e.k0s()()),2&u){const o=e.XpG();e.R7$(2),e.JRh(o.title)}}function vh(u,A){if(1&u){const o=e.RV6();e.j41(0,"li",6)(1,"ngx-charts-legend-entry",7),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.labelClick.emit(B))})("activate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.activate(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.deactivate(B))}),e.k0s()()}if(2&u){const o=A.$implicit,M=e.XpG();e.R7$(),e.Y8G("label",o.label)("formattedLabel",o.formattedLabel)("color",o.color)("isActive",M.isActive(o))}}const rd=["*"];function bh(u,A){if(1&u&&e.nrm(0,"ngx-charts-scale-legend",4),2&u){const o=e.XpG();e.Y8G("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("valueRange",o.legendOptions.domain)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)}}function L2(u,A){if(1&u){const o=e.RV6();e.j41(0,"ngx-charts-legend",5),e.bIt("labelClick",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelClick.emit(B))})("labelActivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelActivate.emit(B))})("labelDeactivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelDeactivate.emit(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("data",o.legendOptions.domain)("title",o.legendOptions.title)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)("activeEntries",o.activeEntries)}}const kf=["ngx-charts-axis-label",""],g1=["ticksel"],u4=["ngx-charts-x-axis-ticks",""];function wd(u,A){1&u&&(e.qSk(),e.eu8(0))}function Lf(u,A){if(1&u&&(e.qSk(),e.j41(0,"tspan",10),e.EFF(1),e.k0s()),2&u){const o=A.$implicit;e.BMQ("y",12*A.index),e.R7$(),e.SpI(" ",o," ")}}function _1(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,Lf,2,2,"tspan",9),e.bVm()),2&u){const o=A.ngIf;e.R7$(),e.Y8G("ngForOf",o)}}function I2(u,A){if(1&u&&e.DNE(0,_1,2,1,"ng-container",6),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(o))}}function R2(u,A){if(1&u&&e.EFF(0),2&u){const o=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(o)," ")}}function No(u,A){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",7),e.DNE(4,wd,1,0,"ng-container",8),e.k0s(),e.DNE(5,I2,1,1,"ng-template",null,1,e.C5r)(7,R2,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const o=A.ngIf,M=e.sdS(6),B=e.sdS(8),Y=e.XpG(2);e.R7$(2),e.JRh(o),e.R7$(),e.BMQ("text-anchor",Y.textAnchor)("transform",Y.textTransform),e.R7$(),e.Y8G("ngIf",Y.isWrapTicksSupported)("ngIfThen",M)("ngIfElse",B)}}function O2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g",5),e.DNE(1,No,9,6,"ng-container",6),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(o)),e.R7$(),e.Y8G("ngIf",M.tickFormat(o))}}function F2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",11),e.k0s()),2&u){const o=e.XpG(2);e.BMQ("transform",o.gridLineTransform()),e.R7$(),e.BMQ("y1",-o.gridLineHeight)}}function N2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,F2,2,2,"g",6),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(o)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}const Md=["ngx-charts-x-axis",""];function yh(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.emitTicksHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("trimTicks",o.trimTicks)("rotateTicks",o.rotateTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickStroke",o.tickStroke)("scale",o.xScale)("orient",o.xOrient)("showGridLines",o.showGridLines)("gridLineHeight",o.dims.height)("width",o.dims.width)("tickValues",o.ticks)("wrapTicks",o.wrapTicks)}}function Ed(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const o=e.XpG();e.Y8G("label",o.labelText)("offset",o.labelOffset)("orient",o.orientation.Bottom)("height",o.dims.height)("width",o.dims.width)}}const xh=["ngx-charts-y-axis-ticks",""];function P2(u,A){1&u&&(e.qSk(),e.eu8(0))}function Ch(u,A){if(1&u&&(e.qSk(),e.j41(0,"tspan",12),e.EFF(1),e.k0s()),2&u){const o=A.$implicit,M=A.index,B=e.XpG(6);e.BMQ("y",M*(8+B.tickSpacing)),e.R7$(),e.SpI(" ",o," ")}}function wh(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,Ch,2,2,"tspan",11),e.bVm()),2&u){const o=e.XpG().ngIf;e.R7$(),e.Y8G("ngForOf",o)}}function Sd(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,wh,2,1,"ng-container",10),e.bVm()),2&u){const o=A.ngIf;e.XpG(2);const M=e.sdS(8);e.R7$(),e.Y8G("ngIf",o.length>1)("ngIfElse",M)}}function V2(u,A){if(1&u&&e.DNE(0,Sd,2,2,"ng-container",7),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(o))}}function gl(u,A){if(1&u&&e.EFF(0),2&u){const o=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(o)," ")}}function If(u,A){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",8),e.DNE(4,P2,1,0,"ng-container",9),e.k0s(),e.DNE(5,V2,1,1,"ng-template",null,1,e.C5r)(7,gl,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const o=A.ngIf,M=e.sdS(6),B=e.sdS(8),Y=e.XpG(2);e.R7$(2),e.JRh(o),e.R7$(),e.xc7("font-size","12px"),e.BMQ("dy",Y.dy)("x",Y.x1)("y",Y.y1)("text-anchor",Y.textAnchor),e.R7$(),e.Y8G("ngIf",Y.wrapTicks)("ngIfThen",M)("ngIfElse",B)}}function Mh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g",6),e.DNE(1,If,9,10,"ng-container",7),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.transform(o)),e.R7$(),e.Y8G("ngIf",M.tickFormat(o))}}function f4(u,A){if(1&u&&(e.qSk(),e.nrm(0,"path",13)),2&u){const o=e.XpG();e.BMQ("d",o.referenceAreaPath)("transform",o.gridLineTransform())}}function v1(u,A){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const o=e.XpG(3);e.BMQ("x2",o.gridLineWidth)}}function H2(u,A){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const o=e.XpG(3);e.BMQ("x2",-o.gridLineWidth)}}function Eh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,v1,1,1,"line",14)(2,H2,1,1,"line",14),e.k0s()),2&u){const o=e.XpG(2);e.BMQ("transform",o.gridLineTransform()),e.R7$(),e.Y8G("ngIf",o.orient===o.Orientation.Left),e.R7$(),e.Y8G("ngIf",o.orient===o.Orientation.Right)}}function Sh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Eh,3,3,"g",7),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.transform(o)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}function Th(u,A){if(1&u&&(e.qSk(),e.j41(0,"g")(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",17),e.EFF(4),e.k0s()()),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.R7$(2),e.JRh(M.tickTrim(M.tickFormat(o.value))),e.R7$(),e.BMQ("dy",M.dy)("y",-6)("x",M.gridLineWidth)("text-anchor",M.textAnchor),e.R7$(),e.SpI(" ",o.name," ")}}function _l(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",16),e.DNE(2,Th,5,6,"g",7),e.k0s()),2&u){const o=e.XpG().$implicit,M=e.XpG();e.BMQ("transform",M.transform(o.value)),e.R7$(),e.BMQ("x2",M.gridLineWidth)("transform",M.gridLineTransform()),e.R7$(),e.Y8G("ngIf",M.showRefLabels)}}function b1(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,_l,3,4,"g",7),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngIf",o.showRefLines)}}const Rf=["ngx-charts-y-axis",""];function Of(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.emitTicksWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("trimTicks",o.trimTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickValues",o.ticks)("tickStroke",o.tickStroke)("scale",o.yScale)("orient",o.yOrient)("showGridLines",o.showGridLines)("gridLineWidth",o.dims.width)("referenceLines",o.referenceLines)("showRefLines",o.showRefLines)("showRefLabels",o.showRefLabels)("height",o.dims.height)("wrapTicks",o.wrapTicks)}}function Ff(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const o=e.XpG();e.Y8G("label",o.labelText)("offset",o.labelOffset)("orient",o.yOrient)("height",o.dims.height)("width",o.dims.width)}}const Nf=["ngx-charts-svg-linear-gradient",""];function Ws(u,A){if(1&u&&(e.qSk(),e.nrm(0,"stop")),2&u){const o=A.$implicit;e.xc7("stop-color",o.color)("stop-opacity",o.opacity),e.BMQ("offset",o.offset+"%")}}const Dh=["ngx-charts-grid-panel",""],Ah=["ngx-charts-grid-panel-series",""];function kh(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",1)),2&u){const o=A.$implicit;e.AVh("grid-panel",!0)("odd","odd"===o.class)("even","even"===o.class),e.Y8G("height",o.height)("width",o.width)("x",o.x)("y",o.y)}}const Dd=["tooltipTemplate"],vl=(u,A)=>[u,A],C1=".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",Ad=["ngx-charts-bar",""];function jh(u,A){if(1&u&&(e.qSk(),e.j41(0,"defs"),e.nrm(1,"g",2),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("orientation",o.orientation)("name",o.gradientId)("stops",o.gradientStops)}}const Wh=["ngx-charts-bar-label",""],bn=["ngx-charts-series-vertical",""];function Yi(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.onClick(B))})("activate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.activate.emit(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.deactivate.emit(B))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("@.disabled",!M.animations)("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",M.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",M.gradient)("ariaLabel",o.ariaLabel)("isActive",M.isActive(o.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function Ji(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Yi,1,22,"g",1),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function An(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.onClick(B))})("activate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.activate.emit(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.deactivate.emit(B))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",M.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",M.gradient)("ariaLabel",o.ariaLabel)("isActive",M.isActive(o.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function Un(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,An,1,20,"g",1),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function Vr(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",4),e.bIt("dimensionsChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.dataLabelHeightChanged.emit({size:B,index:Y}))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("barX",o.x)("barY",o.y)("barWidth",o.width)("barHeight",o.height)("value",o.total)("valueFormatting",M.dataLabelFormatting)("orientation",M.barOrientation.Vertical)}}function la(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Vr,1,7,"g",3),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.barsForDataLabels)("ngForTrackBy",o.trackDataLabelBy)}}function cr(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",5),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateXAxisHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("xScale",o.xScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function ta(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateYAxisWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("yScale",o.yScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function Ar(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateXAxisHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("xScale",o.groupScale)("dims",o.dims)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function ma(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",7),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateYAxisWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("yScale",o.valueScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function ia(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onClick(B,Y))})("activate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onActivate(B,Y))})("deactivate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onDeactivate(B,Y))})("dataLabelHeightChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.onDataLabelMaxHeightChanged(B,Y))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",o.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",o.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(o))}}function rc(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,ia,1,17,"g",8),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function Lc(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onClick(B,Y))})("activate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onActivate(B,Y))})("deactivate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onDeactivate(B,Y))})("dataLabelHeightChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.onDataLabelMaxHeightChanged(B,Y))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",o.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",o.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(o))}}function M1(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Lc,1,16,"g",8),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function Zc(u,A,o){o=o||{};let M,B,Y,Le=null,Ct=0;function Gt(){Ct=!1===o.leading?0:+new Date,Le=null,Y=u.apply(M,B)}return function(){const Ht=+new Date;!Ct&&!1===o.leading&&(Ct=Ht);const li=A-(Ht-Ct);return M=this,B=arguments,li<=0?(clearTimeout(Le),Le=null,Ct=Ht,Y=u.apply(M,B)):!Le&&!1!==o.trailing&&(Le=setTimeout(Gt,li)),Y}}function qp(u,A){return function(M,B,Y){return{configurable:!0,enumerable:Y.enumerable,get:function(){return Object.defineProperty(this,B,{configurable:!0,enumerable:Y.enumerable,value:Zc(Y.value,u,A)}),this[B]}}}}var pr=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u.Center="center",u}(pr||{});function Q4(u,A,o){return o===pr.Top?u.top-7:o===pr.Bottom?u.top+u.height-A.height+7:o===pr.Center?u.top+u.height/2-A.height/2:void 0}function Rd(u,A,o){return o===pr.Left?u.left-7:o===pr.Right?u.left+u.width-A.width+7:o===pr.Center?u.left+u.width/2-A.width/2:void 0}class Cs{static calculateVerticalAlignment(A,o,M){let B=Q4(A,o,M);return B+o.height>window.innerHeight&&(B=window.innerHeight-o.height),B}static calculateVerticalCaret(A,o,M,B){let Y;B===pr.Top&&(Y=A.height/2-M.height/2+7),B===pr.Bottom&&(Y=o.height-A.height/2-M.height/2-7),B===pr.Center&&(Y=o.height/2-M.height/2);const Le=Q4(A,o,B);return Le+o.height>window.innerHeight&&(Y+=Le+o.height-window.innerHeight),Y}static calculateHorizontalAlignment(A,o,M){let B=Rd(A,o,M);return B+o.width>window.innerWidth&&(B=window.innerWidth-o.width),B}static calculateHorizontalCaret(A,o,M,B){let Y;B===pr.Left&&(Y=A.width/2-M.width/2+7),B===pr.Right&&(Y=o.width-A.width/2-M.width/2-7),B===pr.Center&&(Y=o.width/2-M.width/2);const Le=Rd(A,o,B);return Le+o.width>window.innerWidth&&(Y+=Le+o.width-window.innerWidth),Y}static shouldFlip(A,o,M,B){let Y=!1;return M===pr.Right&&A.left+A.width+o.width+B>window.innerWidth&&(Y=!0),M===pr.Left&&A.left-o.width-B<0&&(Y=!0),M===pr.Top&&A.top-o.height-B<0&&(Y=!0),M===pr.Bottom&&A.top+A.height+o.height+B>window.innerHeight&&(Y=!0),Y}static positionCaret(A,o,M,B,Y){let Le=0,Ct=0;return A===pr.Right?(Ct=-7,Le=Cs.calculateVerticalCaret(M,o,B,Y)):A===pr.Left?(Ct=o.width,Le=Cs.calculateVerticalCaret(M,o,B,Y)):A===pr.Top?(Le=o.height,Ct=Cs.calculateHorizontalCaret(M,o,B,Y)):A===pr.Bottom&&(Le=-7,Ct=Cs.calculateHorizontalCaret(M,o,B,Y)),{top:Le,left:Ct}}static positionContent(A,o,M,B,Y){let Le=0,Ct=0;return A===pr.Right?(Ct=M.left+M.width+B,Le=Cs.calculateVerticalAlignment(M,o,Y)):A===pr.Left?(Ct=M.left-o.width-B,Le=Cs.calculateVerticalAlignment(M,o,Y)):A===pr.Top?(Le=M.top-o.height-B,Ct=Cs.calculateHorizontalAlignment(M,o,Y)):A===pr.Bottom&&(Le=M.top+M.height+B,Ct=Cs.calculateHorizontalAlignment(M,o,Y)),{top:Le,left:Ct}}static determinePlacement(A,o,M,B){if(Cs.shouldFlip(M,o,A,B)){if(A===pr.Right)return pr.Left;if(A===pr.Left)return pr.Right;if(A===pr.Top)return pr.Bottom;if(A===pr.Bottom)return pr.Top}return A}}let Od=(()=>{class u{constructor(o,M,B){this.element=o,this.renderer=M,this.platformId=B}get cssClasses(){let o="ngx-charts-tooltip-content";return o+=` position-${this.placement}`,o+=` type-${this.type}`,o+=` ${this.cssClass}`,o}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,t.UE)(this.platformId))return;const o=this.element.nativeElement,M=this.host.nativeElement.getBoundingClientRect();if(!M.height&&!M.width)return;const B=o.getBoundingClientRect();this.checkFlip(M,B),this.positionContent(o,M,B),this.showCaret&&this.positionCaret(M,B),setTimeout(()=>this.renderer.addClass(o,"animate"),1)}positionContent(o,M,B){const{top:Y,left:Le}=Cs.positionContent(this.placement,B,M,this.spacing,this.alignment);this.renderer.setStyle(o,"top",`${Y}px`),this.renderer.setStyle(o,"left",`${Le}px`)}positionCaret(o,M){const B=this.caretElm.nativeElement,Y=B.getBoundingClientRect(),{top:Le,left:Ct}=Cs.positionCaret(this.placement,M,o,Y,this.alignment);this.renderer.setStyle(B,"top",`${Le}px`),this.renderer.setStyle(B,"left",`${Ct}px`)}checkFlip(o,M){this.placement=Cs.determinePlacement(this.placement,M,o,this.spacing)}onWindowResize(){this.position()}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.sFG),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-tooltip-content"]],viewQuery:function(o,M){if(1&o&&e.GBs(Tf,5),2&o){let B;e.mGM(B=e.lsd())&&(M.caretElm=B.first)}},hostVars:2,hostBindings:function(o,M){1&o&&e.bIt("resize",function(){return M.onWindowResize()},!1,e.tSv),2&o&&e.HbH(M.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},decls:6,vars:6,consts:[["caretElm",""],[3,"hidden"],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(o,M){1&o&&(e.j41(0,"div"),e.nrm(1,"span",1,0),e.j41(3,"div",2),e.DNE(4,io,2,4,"span",3)(5,_h,1,1,"span",4),e.k0s()()),2&o&&(e.R7$(),e.ZvI("tooltip-caret position-",M.placement,""),e.Y8G("hidden",!M.showCaret),e.R7$(3),e.Y8G("ngIf",!M.title),e.R7$(),e.Y8G("ngIf",M.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:rgba(0,0,0,.75);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:translate(10px)}.ngx-charts-tooltip-content.position-left{transform:translate(-10px)}.ngx-charts-tooltip-content.position-top{transform:translateY(-10px)}.ngx-charts-tooltip-content.position-bottom{transform:translateY(10px)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translate(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}),(0,w.Cg)([qp(100)],u.prototype,"onWindowResize",null),u})();class S1{constructor(A){this.injectionService=A,this.defaults={},this.components=new Map}getByType(A=this.type){return this.components.get(A)}create(A){return this.createByType(this.type,A)}createByType(A,o){o=this.assignDefaults(o);const M=this.injectComponent(A,o);return this.register(A,M),M}destroy(A){const o=this.components.get(A.componentType);if(o&&o.length){const M=o.indexOf(A);M>-1&&(o[M].destroy(),o.splice(M,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(A){const o=this.components.get(A);if(o&&o.length){let M=o.length-1;for(;M>=0;)this.destroy(o[M--])}}injectComponent(A,o){return this.injectionService.appendComponent(A,o)}assignDefaults(A){const o={...this.defaults.inputs},M={...this.defaults.outputs};return!A.inputs&&!A.outputs&&(A={inputs:A}),o&&(A.inputs={...o,...A.inputs}),M&&(A.outputs={...M,...A.outputs}),A}register(A,o){this.components.has(A)||this.components.set(A,[]),this.components.get(A).push(o)}}let Cl=(()=>{class u{constructor(o,M,B){this.applicationRef=o,this.componentFactoryResolver=M,this.injector=B}static setGlobalRootViewContainer(o){u.globalRootViewContainer=o}getRootViewContainer(){if(this._container)return this._container;if(u.globalRootViewContainer)return u.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(o){this._container=o}getComponentRootNode(o){return function n3(u){return u.element}(o)?o.element.nativeElement:o.hostView&&o.hostView.rootNodes.length>0?o.hostView.rootNodes[0]:o.location.nativeElement}getRootViewContainerNode(o){return this.getComponentRootNode(o)}projectComponentBindings(o,M){if(M){if(void 0!==M.inputs){const B=Object.getOwnPropertyNames(M.inputs);for(const Y of B)o.instance[Y]=M.inputs[Y]}if(void 0!==M.outputs){const B=Object.getOwnPropertyNames(M.outputs);for(const Y of B)o.instance[Y]=M.outputs[Y]}}return o}appendComponent(o,M={},B){B||(B=this.getRootViewContainer());const Y=this.getComponentRootNode(B),Le=new S.aI(Y,this.componentFactoryResolver,this.applicationRef,this.injector),Ct=new S.A8(o),Gt=Le.attach(Ct);return this.projectComponentBindings(Gt,M),Gt}}return u.globalRootViewContainer=null,u.\u0275fac=function(o){return new(o||u)(e.KVO(e.o8S),e.KVO(e.OM3),e.KVO(e.zZn))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})(),qh=(()=>{class u extends S1{constructor(o){super(o),this.type=Od}}return u.\u0275fac=function(o){return new(o||u)(e.KVO(Cl))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})();var wl=function(u){return u.Right="right",u.Below="below",u}(wl||{}),e0=function(u){return u.ScaleLegend="scaleLegend",u.Legend="legend",u}(e0||{}),jn=function(u){return u.Time="time",u.Linear="linear",u.Ordinal="ordinal",u.Quantile="quantile",u}(jn||{});let Z4=(()=>{class u{constructor(){this.horizontal=!1}ngOnChanges(o){const M=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${M})`}gradientString(o,M){M.push(1);const B=[];return o.reverse().forEach((Y,Le)=>{B.push(`${Y} ${Math.round(100*M[Le])}%`)}),B.join(", ")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},features:[e.OA$],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(o,M){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"span"),e.EFF(3),e.k0s()(),e.nrm(4,"div",2),e.j41(5,"div",1)(6,"span"),e.EFF(7),e.k0s()()()),2&o&&(e.xc7("height",M.horizontal?void 0:M.height,"px")("width",M.width,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(3),e.JRh(M.valueRange[1].toLocaleString()),e.R7$(),e.xc7("background",M.gradient),e.R7$(3),e.JRh(M.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}),u})();function t0(u){return u instanceof Date?u.toLocaleDateString():u.toLocaleString()}let n0=(()=>{class u{constructor(){this.isActive=!1,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.toggle=new e.bkB}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(o,M){1&o&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},decls:4,vars:6,consts:[["tabindex","-1",3,"click","title"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(o,M){1&o&&(e.j41(0,"span",0),e.bIt("click",function(){return M.select.emit(M.formattedLabel)}),e.j41(1,"span",1),e.bIt("click",function(){return M.toggle.emit(M.formattedLabel)}),e.k0s(),e.j41(2,"span",2),e.EFF(3),e.k0s()()),2&o&&(e.AVh("active",M.isActive),e.Y8G("title",M.formattedLabel),e.R7$(),e.xc7("background-color",M.color),e.R7$(2),e.SpI(" ",M.trimmedLabel," "))},encapsulation:2,changeDetection:0}),u})(),J4=(()=>{class u{constructor(o){this.cd=o,this.horizontal=!1,this.labelClick=new e.bkB,this.labelActivate=new e.bkB,this.labelDeactivate=new e.bkB,this.legendEntries=[]}ngOnChanges(o){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const o=[];for(const M of this.data){const B=t0(M);-1===o.findIndex(Le=>Le.label===B)&&o.push({label:M,formattedLabel:B,color:this.colors.getColor(M)})}return o}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(B=>o.label===B.name)}activate(o){this.labelActivate.emit(o)}deactivate(o){this.labelDeactivate.emit(o)}trackBy(o,M){return M.label}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.gRc))},u.\u0275cmp=e.VBU({type:u,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"},features:[e.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(o,M){1&o&&(e.j41(0,"div"),e.DNE(1,Af,3,1,"header",0),e.j41(2,"div",1)(3,"ul",2),e.DNE(4,vh,2,4,"li",3),e.k0s()()()),2&o&&(e.xc7("width",M.width,"px"),e.R7$(),e.Y8G("ngIf",(null==M.title?null:M.title.length)>0),e.R7$(2),e.xc7("max-height",M.height-45,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(),e.Y8G("ngForOf",M.legendEntries)("ngForTrackBy",M.trackBy))},dependencies:[n0,t.bT,t.Sq],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:rgba(0,0,0,.05)}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;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}),u})(),eu=(()=>{class u{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new e.bkB,this.legendLabelActivate=new e.bkB,this.legendLabelDeactivate=new e.bkB,this.LegendPosition=wl,this.LegendType=e0}ngOnChanges(o){this.update()}update(){let o=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===wl.Right)&&(o=this.legendType===e0.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-o)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==wl.Right?this.chartWidth:Math.floor(this.view[0]*o/12)}getLegendType(){return this.legendOptions.scaleType===jn.Linear?e0.ScaleLegend:e0.Legend}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},features:[e.Jv_([qh]),e.OA$],ngContentSelectors:rd,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(o,M){1&o&&(e.NAR(),e.j41(0,"div",0),e.qSk(),e.j41(1,"svg",1),e.SdG(2),e.k0s(),e.DNE(3,bh,1,5,"ngx-charts-scale-legend",2)(4,L2,1,7,"ngx-charts-legend",3),e.k0s()),2&o&&(e.xc7("width",M.view[0],"px")("height",M.view[1],"px"),e.R7$(),e.BMQ("width",M.chartWidth)("height",M.view[1]),e.R7$(2),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.ScaleLegend),e.R7$(),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.Legend))},dependencies:[Z4,J4,t.bT],encapsulation:2,changeDetection:0}),u})(),e6=(()=>{class u{constructor(o,M){this.element=o,this.zone=M,this.visible=new e.bkB,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const o=()=>{if(!this.element)return;const{offsetHeight:M,offsetWidth:B}=this.element.nativeElement;M&&B?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o())})}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.SKi))},u.\u0275dir=e.FsC({type:u,selectors:[["visibility-observer"]],outputs:{visible:"visible"}}),u})();function q4(u){return"[object Date]"===toString.call(u)}let a3=(()=>{class u{constructor(o,M,B,Y){this.chartElement=o,this.zone=M,this.cd=B,this.platformId=Y,this.scheme="cool",this.schemeType=jn.Ordinal,this.animations=!0,this.select=new e.bkB}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new e6(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(o){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 o=this.getContainerDims();o&&(this.width=o.width,this.height=o.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 o,M;const B=this.chartElement.nativeElement;if((0,t.UE)(this.platformId)&&null!==B.parentNode){const Y=B.parentNode.getBoundingClientRect();o=Y.width,M=Y.height}return o&&M?{width:o,height:M}:null}formatDates(){for(let o=0;o{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=M}cloneData(o){const M=[];for(const B of o){const Y={};if(void 0!==B.name&&(Y.name=B.name),void 0!==B.value&&(Y.value=B.value),void 0!==B.series){Y.series=[];for(const Le of B.series){const Ct=Object.assign({},Le);Y.series.push(Ct)}}void 0!==B.extra&&(Y.extra=JSON.parse(JSON.stringify(B.extra))),void 0!==B.source&&(Y.source=B.source),void 0!==B.target&&(Y.target=B.target),M.push(Y)}return M}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},features:[e.OA$],decls:1,vars:0,template:function(o,M){1&o&&e.nrm(0,"div")},encapsulation:2}),u})();var Jo=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u}(Jo||{});let tu=(()=>{class u{constructor(o){this.textHeight=25,this.margin=5,this.element=o.nativeElement}ngOnChanges(o){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case Jo.Top:case Jo.Bottom:this.y=this.offset,this.x=this.width/2;break;case Jo.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Jo.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},features:[e.OA$],attrs:kf,decls:2,vars:6,template:function(o,M){1&o&&(e.qSk(),e.j41(0,"text"),e.EFF(1),e.k0s()),2&o&&(e.BMQ("stroke-width",M.strokeWidth)("x",M.x)("y",M.y)("text-anchor",M.textAnchor)("transform",M.transform),e.R7$(),e.SpI(" ",M.label," "))},encapsulation:2,changeDetection:0}),u})();function r0(u,A=16){return"string"!=typeof u?"number"==typeof u?u+"":"":(u=u.trim()).length<=A?u:`${u.slice(0,A)}...`}function o3(u,A){if(u.length>A){const o=[],M=Math.floor(u.length/A);for(let B=0;B{const Ct=(Y.pop()||"")+" ";return Ct.length+Le.length>A?[...Y,Ct.trim(),Le.trim()]:[...Y,Ct+Le]},[]);else{let Y=0;for(;Yo&&(B=B.splice(0,o),B[B.length-1]+="..."),B}var Ys=function(u){return u.Start="start",u.Middle="middle",u.End="end",u}(Ys||{});let D1=(()=>{class u{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=Ys.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16}get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);o!==this.height&&(this.height=o,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const o=this.scale;this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(B){return"Date"===B.constructor.name?B.toLocaleDateString():B.toLocaleString()};const M=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.adjustedScale=this.scale.bandwidth?function(B){return this.scale(B)+.5*this.scale.bandwidth()}:this.scale,this.textTransform="",M&&0!==M?(this.textTransform=`rotate(${M})`,this.textAnchor=Ys.End,this.verticalSpacing=10):this.textAnchor=Ys.Middle,setTimeout(()=>this.updateDims())}getRotationAngle(o){let M=0;this.maxTicksLength=0;for(let gi=0;githis.maxTicksLength&&(this.maxTicksLength=Ai)}const Le=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let Ct=Le;const Gt=Math.floor(this.width/o.length);for(;Ct>Gt&&M>-90;)M-=30,Ct=Math.cos(M*(Math.PI/180))*Le;let Ht=14;if(this.isWrapTicksSupported){const gi=this.ticks.reduce((Ai,cn)=>cn.length>Ai.length?cn:Ai,"");Ht=14*(this.tickChunks(gi).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(gi)}const li=0!==M?Math.max(Math.abs(Math.sin(M*Math.PI/180))*this.maxTickLength*7,10):Ht;return this.approxHeight=Math.min(li,200),M}getTicks(){let o;const M=this.getMaxTicks(20),B=this.getMaxTicks(100);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[B]):(o=this.scale.domain(),o=o3(o,M)),o}getMaxTicks(o){return Math.floor(this.width/o)}tickTransform(o){return"translate("+this.adjustedScale(o)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(o){return this.trimTicks?r0(o,this.maxTickLength):o}getMaxPossibleLengthForTick(o){if(this.scale.bandwidth){const B=Math.floor(this.scale.bandwidth()/7),Y=o.slice(0,B);return Math.max(Y.length,this.maxTickLength)}return this.maxTickLength}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){let B=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(B<=1)return[this.tickTrim(o)];let Y=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,t.UE)(this.platformId)||(Y=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),B=Math.min(B,5),T1(o,Y,B<1?1:B)}return[this.tickTrim(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(o,M){if(1&o&&e.GBs(g1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksElement=B.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"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:u4,decls:4,vars:2,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],[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"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,O2,2,2,"g",3),e.k0s(),e.DNE(3,N2,2,2,"g",4)),2&o&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.ticks))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),s3=(()=>{class u{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Jo.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.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=Jo}ngOnChanges(o){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:o}){const M=o+25+5;M!==this.labelOffset&&(this.labelOffset=M,setTimeout(()=>{this.dimensionsChanged.emit({height:o})},0))}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(o,M){if(1&o&&e.GBs(D1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksComponent=B.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",xAxisOffset:"xAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Md,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","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","width","tickValues","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g"),e.DNE(1,yh,1,13,"g",0)(2,Ed,1,5,"g",1),e.k0s()),2&o&&(e.BMQ("class",M.xAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[D1,tu,t.bT],encapsulation:2,changeDetection:0}),u})();function ad(u,A,o,M,B,[Y,Le,Ct,Gt]){let Ht="";return Ht=`M${[u+B,A]}`,Ht+="h"+((o=0===(o=Math.floor(o))?1:o)-2*B),Ht+=Le?`a${[B,B]} 0 0 1 ${[B,B]}`:`h${B}v${B}`,Ht+="v"+((M=0===(M=Math.floor(M))?1:M)-2*B),Ht+=Gt?`a${[B,B]} 0 0 1 ${[-B,B]}`:`v${B}h${-B}`,Ht+="h"+(2*B-o),Ht+=Ct?`a${[B,B]} 0 0 1 ${[-B,-B]}`:`h${-B}v${-B}`,Ht+="v"+(2*B-M),Ht+=Y?`a${[B,B]} 0 0 1 ${[B,-B]}`:`v${-B}h${B}`,Ht+="z",Ht}let tm=(()=>{class u{constructor(o){this.platformId=o,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 e.bkB,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=Ys.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Jo}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);o!==this.width&&(this.width=o,this.dimensionsChanged.emit({width:o}),setTimeout(()=>this.updateDims()))}update(){const o=this.scale,M=this.orient===Jo.Top||this.orient===Jo.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(B){return"Date"===B.constructor.name?B.toLocaleDateString():B.toLocaleString()},this.adjustedScale=o.bandwidth?B=>{const Y=o(B)+.5*o.bandwidth();if(this.wrapTicks&&B.toString().length>this.maxTickLength){const Le=this.tickChunks(B).length;if(1===Le)return Y;const Ht=.5*o.bandwidth()-8*Le*.5;return o(B)+Ht}return Y}:o,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Jo.Top:case Jo.Bottom:this.transform=function(B){return"translate("+this.adjustedScale(B)+",0)"},this.textAnchor=Ys.Middle,this.y2=this.innerTickSize*M,this.y1=this.tickSpacing*M,this.dy=M<0?"0em":".71em";break;case Jo.Left:this.transform=function(B){return"translate(0,"+this.adjustedScale(B)+")"},this.textAnchor=Ys.End,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,this.dy=".32em";break;case Jo.Right:this.transform=function(B){return"translate(0,"+this.adjustedScale(B)+")"},this.textAnchor=Ys.Start,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(o=>o.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(o=>o.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=ad(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let o;const M=this.getMaxTicks(20),B=this.getMaxTicks(50);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[B]):(o=this.scale.domain(),o=o3(o,M)),o}getMaxTicks(o){return Math.floor(this.height/o)}tickTransform(o){return`translate(${this.adjustedScale(o)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(o){return this.trimTicks?r0(o,this.maxTickLength):o}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(B=>this.tickTrim(this.tickFormat(B)).length))}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){const M=this.maxTickLength,B=Math.floor(this.scale.bandwidth()/15);return B<=1?[this.tickTrim(o)]:T1(o,M,Math.min(B,5))}return[this.tickFormat(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(o,M){if(1&o&&e.GBs(g1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksElement=B.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"},features:[e.OA$],attrs:xh,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[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"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,Mh,2,2,"g",3),e.k0s(),e.DNE(3,f4,1,2,"path",4)(4,Sh,2,2,"g",5)(5,b1,2,1,"g",5)),2&o&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngIf",M.referenceLineLength>1&&M.refMax&&M.refMin&&M.showRefLines),e.R7$(),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.referenceLines))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),A1=(()=>{class u{constructor(){this.showGridLines=!1,this.yOrient=Jo.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(o){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===Jo.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:o}){o!==this.labelOffset&&this.yOrient===Jo.Right?(this.labelOffset=o+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0)):o!==this.labelOffset&&(this.labelOffset=o,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0))}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(o,M){if(1&o&&e.GBs(tm,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksComponent=B.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"},features:[e.OA$],attrs:Rf,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(o,M){1&o&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Of,1,15,"g",0)(2,Ff,1,5,"g",1),e.k0s()),2&o&&(e.BMQ("class",M.yAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.yScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[tm,tu,t.bT],encapsulation:2,changeDetection:0}),u})(),iu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD]]}),u})();var k1=function(u){return u.popover="popover",u.tooltip="tooltip",u}(k1||{}),a0=function(u){return u[u.all="all"]="all",u[u.focus="focus"]="focus",u[u.mouseover="mouseover"]="mouseover",u}(a0||{});let c3=(()=>{class u{constructor(o,M,B){this.tooltipService=o,this.viewContainerRef=M,this.renderer=B,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=pr.Top,this.tooltipAlignment=pr.Center,this.tooltipType=k1.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=a0.all,this.tooltipImmediateExit=!1,this.show=new e.bkB,this.hide=new e.bkB}get listensForFocus(){return this.tooltipShowEvent===a0.all||this.tooltipShowEvent===a0.focus}get listensForHover(){return this.tooltipShowEvent===a0.all||this.tooltipShowEvent===a0.mouseover}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(o){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(o))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(o){if(this.component||this.tooltipDisabled)return;const M=o?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const B=this.createBoundOptions();this.component=this.tooltipService.create(B),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},M)}addHideListeners(o){this.mouseEnterContentEvent=this.renderer.listen(o,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(o,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",M=>{o.contains(M.target)||this.hideTooltip()}))}hideTooltip(o=!1){if(!this.component)return;const M=()=>{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),o?M():this.timeout=setTimeout(M,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}}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(qh),e.rXU(e.c1b),e.rXU(e.sFG))},u.\u0275dir=e.FsC({type:u,selectors:[["","ngx-tooltip",""]],hostBindings:function(o,M){1&o&&e.bIt("focusin",function(){return M.onFocus()})("blur",function(){return M.onBlur()})("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(Y){return M.onMouseLeave(Y.target)})("click",function(){return M.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"}}),u})(),im=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({providers:[Cl,qh],imports:[[t.MD]]}),u})();const nm={};function o0(){let u=("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4);return u=`a${u}`,nm[u]?o0():(nm[u]=!0,u)}var bo=function(u){return u.Vertical="vertical",u.Horizontal="horizontal",u}(bo||{});let l3=(()=>{class u{constructor(){this.orientation=bo.Vertical}ngOnChanges(o){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===bo.Horizontal?this.x2="100%":this.orientation===bo.Vertical&&(this.y1="100%")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},features:[e.OA$],attrs:Nf,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"linearGradient",0),e.DNE(1,Ws,1,5,"stop",1),e.k0s()),2&o&&(e.Y8G("id",M.name),e.BMQ("x1",M.x1)("y1",M.y1)("x2",M.x2)("y2",M.y2),e.R7$(),e.Y8G("ngForOf",M.stops))},dependencies:[t.Sq],encapsulation:2,changeDetection:0}),u})(),ru=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},attrs:Dh,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(o,M){1&o&&(e.qSk(),e.nrm(0,"rect",0)),2&o&&e.BMQ("height",M.height)("width",M.width)("x",M.x)("y",M.y)},encapsulation:2,changeDetection:0}),u})();var Ml=function(u){return u.Odd="odd",u.Even="even",u}(Ml||{});let s0,au=(()=>{class u{ngOnChanges(o){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(o=>{let M,B,Y,Le,Ct,Gt=Ml.Odd;if(this.orient===bo.Vertical){const Ht=this.xScale(o.name);Number.parseInt((Ht/this.xScale.step()).toString(),10)%2==1&&(Gt=Ml.Even),M=this.xScale.bandwidth()*this.xScale.paddingInner(),B=this.xScale.bandwidth()+M,Y=this.dims.height,Le=this.xScale(o.name)-M/2,Ct=0}else if(this.orient===bo.Horizontal){const Ht=this.yScale(o.name);Number.parseInt((Ht/this.yScale.step()).toString(),10)%2==1&&(Gt=Ml.Even),M=this.yScale.bandwidth()*this.yScale.paddingInner(),B=this.dims.width,Y=this.yScale.bandwidth()+M,Le=0,Ct=this.yScale(o.name)-M/2}return{name:o.name,class:Gt,height:Y,width:B,x:Le,y:Ct}})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},features:[e.OA$],attrs:Ah,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(o,M){1&o&&e.DNE(0,kh,1,10,"g",0),2&o&&e.Y8G("ngForOf",M.gridPanels)},dependencies:[ru,t.Sq],encapsulation:2,changeDetection:0}),u})();typeof window<"u"?s0=window:typeof global<"u"&&(s0=global);let qo=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD,iu,im],t.MD,iu,im]}),u})();function om({width:u,height:A,margins:o,showXAxis:M=!1,showYAxis:B=!1,xAxisHeight:Y=0,yAxisWidth:Le=0,showXLabel:Ct=!1,showYLabel:Gt=!1,showLegend:Ht=!1,legendType:li=jn.Ordinal,legendPosition:gi=wl.Right,columns:wi=12}){let Ai=o[3],cn=u,Tn=A-o[0]-o[2];return Ht&&gi===wl.Right&&(wi-=li===jn.Ordinal?2:1),cn=cn*wi/12,cn=cn-o[1]-o[3],M&&(Tn-=5,Tn-=Y,Ct&&(Tn-=30)),B&&(cn-=5,cn-=Le,Ai+=Le,Ai+=10,Gt&&(cn-=30,Ai+=30)),cn=Math.max(0,cn),Tn=Math.max(0,Tn),{width:Math.floor(cn),height:Math.floor(Tn),xOffset:Math.floor(Ai)}}const f3=[{name:"vivid",selectable:!0,group:jn.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:jn.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:jn.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:jn.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:jn.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:jn.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:jn.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:jn.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:jn.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:jn.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:jn.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:jn.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:jn.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:jn.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:jn.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class sm{constructor(A,o,M,B){"string"==typeof A&&(A=f3.find(Y=>Y.name===A)),this.colorDomain=A.domain,this.scaleType=o,this.domain=M,this.customColors=B,this.scale=this.generateColorScheme(A,o,this.domain)}generateColorScheme(A,o,M){let B;switch("string"==typeof A&&(A=f3.find(Y=>Y.name===A)),o){case jn.Quantile:B=Cd().range(A.domain).domain(M);break;case jn.Ordinal:B=Wc().range(A.domain).domain(M);break;case jn.Linear:{const Y=[...A.domain];1===Y.length&&(Y.push(Y[0]),this.colorDomain=Y);const Le=fh(0,1,1/Y.length);B=Gs().range(Y).domain(Le)}}return B}getColor(A){if(null==A)throw new Error("Value can not be null");if(this.scaleType===jn.Linear){const o=Gs().domain(this.domain).range([0,1]);return this.scale(o(A))}{if("function"==typeof this.customColors)return this.customColors(A);const o=A.toString();let M;return this.customColors&&this.customColors.length>0&&(M=this.customColors.find(B=>B.name.toLowerCase()===o.toLowerCase())),M?M.value:this.scale(A)}}getLinearGradientStops(A,o){void 0===o&&(o=this.domain[0]);const M=Gs().domain(this.domain).range([0,1]),B=Ac().domain(this.colorDomain).range([0,1]),Y=this.getColor(A),Le=M(o),Ct=this.getColor(o),Gt=M(A);let Ht=1,li=Le;const gi=[];for(gi.push({color:Ct,offset:Le,originalOffset:Le,opacity:1});li=(Gt-B.bandwidth()).toFixed(4))break;gi.push({color:wi,offset:Ai,opacity:1}),li=Ai,Ht++}}if(gi[gi.length-1].offset<100&&gi.push({color:Y,offset:Gt,opacity:1}),Gt===Le)gi[0].offset=0,gi[1].offset=100;else if(100!==gi[gi.length-1].offset)for(const wi of gi)wi.offset=(wi.offset-Le)/(Gt-Le)*100;return gi}}let cu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),c0=(()=>{class u{constructor(o){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.hasGradient=!1,this.hideBar=!1,this.element=o.nativeElement}ngOnChanges(o){o.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+o0().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 o=function re(u){return"string"==typeof u?new Ni([[document.querySelector(u)]],[document.documentElement]):new Ni([[u]],en)}(this.element).select(".bar"),M=this.getPath();this.animations?o.transition().duration(500).attr("d",M):o.attr("d",M)}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 M,o=this.getRadius();return this.roundEdges?this.orientation===bo.Vertical?(o=Math.min(this.height,o),M=ad(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===bo.Horizontal&&(o=Math.min(this.width,o),M=ad(this.x,this.y,1,this.height,0,this.edges)):this.orientation===bo.Vertical?M=ad(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===bo.Horizontal&&(M=ad(this.x,this.y,1,this.height,0,this.edges)),M}getPath(){let M,o=this.getRadius();return this.roundEdges?this.orientation===bo.Vertical?(o=Math.min(this.height,o),M=ad(this.x,this.y,this.width,this.height,o,this.edges)):this.orientation===bo.Horizontal&&(o=Math.min(this.width,o),M=ad(this.x,this.y,this.width,this.height,o,this.edges)):M=ad(this.x,this.y,this.width,this.height,o,this.edges),M}getRadius(){let o=0;return this.roundEdges&&this.height>5&&this.width>5&&(o=Math.floor(Math.min(5,this.height/2,this.width/2))),o}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let o=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===bo.Vertical?o=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===bo.Horizontal&&(o=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),o}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===bo.Vertical&&0===this.height||this.orientation===bo.Horizontal&&0===this.width)}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(o,M){1&o&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.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"},features:[e.OA$],attrs:Ad,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(o,M){1&o&&(e.DNE(0,jh,2,3,"defs",0),e.qSk(),e.j41(1,"path",1),e.bIt("click",function(){return M.select.emit(M.data)}),e.k0s()),2&o&&(e.Y8G("ngIf",M.hasGradient),e.R7$(),e.AVh("active",M.isActive)("hidden",M.hideBar),e.BMQ("d",M.path)("aria-label",M.ariaLabel)("fill",M.hasGradient?M.gradientFill:M.fill))},dependencies:[l3,t.bT],encapsulation:2,changeDetection:0}),u})();var El=function(u){return u.Standard="standard",u.Normalized="normalized",u.Stacked="stacked",u}(El||{}),Fd=function(u){return u.positive="positive",u.negative="negative",u}(Fd||{});let l0=(()=>{class u{constructor(o){this.dimensionsChanged=new e.bkB,this.horizontalPadding=2,this.verticalPadding=5,this.element=o.nativeElement}ngOnChanges(o){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):t0(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})`)}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Wh,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"text",0),e.EFF(1),e.k0s()),2&o&&(e.BMQ("text-anchor",M.textAnchor)("transform",M.transform)("x",M.x)("y",M.y),e.R7$(),e.SpI(" ",M.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}),u})(),hm=(()=>{class u{constructor(o){this.platformId=o,this.type=El.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.dataLabelHeightChanged=new e.bkB,this.barsForDataLabels=[],this.barOrientation=bo,this.isSSR=!1}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(o){this.update()}update(){let o;this.updateTooltipSettings(),this.series.length&&(o=this.xScale.bandwidth()),o=Math.round(o);const M=Math.max(this.yScale.domain()[0],0),B={[Fd.positive]:0,[Fd.negative]:0};let Le,Y=Fd.positive;this.type===El.Normalized&&(Le=this.series.map(Ct=>Ct.value).reduce((Ct,Gt)=>Ct+Gt,0)),this.bars=this.series.map((Ct,Gt)=>{let Ht=Ct.value;const li=this.getLabel(Ct),gi=t0(li);Y=Ht>0?Fd.positive:Fd.negative;const Ai={value:Ht,label:li,roundEdges:this.roundEdges,data:Ct,width:o,formattedLabel:gi,height:0,x:0,y:0};if(this.type===El.Standard)Ai.height=Math.abs(this.yScale(Ht)-this.yScale(M)),Ai.x=this.xScale(li),Ai.y=this.yScale(Ht<0?0:Ht);else if(this.type===El.Stacked){const Tn=B[Y],ki=Tn+Ht;B[Y]+=Ht,Ai.height=this.yScale(Tn)-this.yScale(ki),Ai.x=0,Ai.y=this.yScale(ki),Ai.offset0=Tn,Ai.offset1=ki}else if(this.type===El.Normalized){let Tn=B[Y],ki=Tn+Ht;B[Y]+=Ht,Le>0?(Tn=100*Tn/Le,ki=100*ki/Le):(Tn=0,ki=0),Ai.height=this.yScale(Tn)-this.yScale(ki),Ai.x=0,Ai.y=this.yScale(ki),Ai.offset0=Tn,Ai.offset1=ki,Ht=(ki-Tn).toFixed(2)+"%"}this.colors.scaleType===jn.Ordinal?Ai.color=this.colors.getColor(li):this.type===El.Standard?(Ai.color=this.colors.getColor(Ht),Ai.gradientStops=this.colors.getLinearGradientStops(Ht)):(Ai.color=this.colors.getColor(Ai.offset1),Ai.gradientStops=this.colors.getLinearGradientStops(Ai.offset1,Ai.offset0));let cn=gi;return Ai.ariaLabel=gi+" "+Ht.toLocaleString(),null!=this.seriesName&&(cn=`${this.seriesName} \u2022 ${gi}`,Ai.data.series=this.seriesName,Ai.ariaLabel=this.seriesName+" "+Ai.ariaLabel),Ai.tooltipText=this.tooltipDisabled?void 0:`\n ${function r3(u){return u.toLocaleString().replace(/[&'`"<>]/g,A=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[A]))}(cn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(Ht):Ht.toLocaleString()}\n `,Ai}),this.updateDataLabels()}updateDataLabels(){if(this.type===El.Stacked){this.barsForDataLabels=[];const o={};o.series=this.seriesName;const M=this.series.map(Y=>Y.value).reduce((Y,Le)=>Le>0?Y+Le:Y,0),B=this.series.map(Y=>Y.value).reduce((Y,Le)=>Le<0?Y+Le:Y,0);o.total=M+B,o.x=0,o.y=0,o.height=this.yScale(o.total>0?M:B),o.width=this.xScale.bandwidth(),this.barsForDataLabels.push(o)}else this.barsForDataLabels=this.series.map(o=>{const M={};return M.series=this.seriesName??o.label,M.total=o.value,M.x=this.xScale(o.label),M.y=this.yScale(0),M.height=this.yScale(M.total)-this.yScale(0),M.width=this.xScale.bandwidth(),M})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:pr.Top,this.tooltipType=this.tooltipDisabled?void 0:k1.tooltip}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(B=>o.name===B.name&&o.value===B.value)}onClick(o){this.select.emit(o)}getLabel(o){return o.label?o.label:o.name}trackBy(o,M){return M.label}trackDataLabelBy(o,M){return o+"#"+M.series+"#"+M.total}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,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"},features:[e.OA$],attrs:bn,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(o,M){1&o&&e.DNE(0,Ji,2,2,"g",0)(1,Un,2,2,"g",0)(2,la,2,2,"g",0),2&o&&(e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR),e.R7$(),e.Y8G("ngIf",M.showDataLabel))},dependencies:[c0,l0,t.bT,t.Sq,c3],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1}),(0,f.i0)(500,(0,f.iF)({opacity:0}))])])]},changeDetection:0}),u})(),um=(()=>{class u extends a3{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=wl.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 e.bkB,this.deactivate=new e.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive: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=om({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})`}getXScale(){this.xDomain=this.getXDomain();const o=this.xDomain.length/(this.dims.width/this.barPadding+1);return Ac().range([0,this.dims.width]).paddingInner(o).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const o=Gs().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?o.nice():o}getXDomain(){return this.results.map(o=>o.label)}getYDomain(){const o=this.results.map(Y=>Y.value);let M=this.yScaleMin?Math.min(this.yScaleMin,...o):Math.min(0,...o);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(M=Math.min(M,...this.yAxisTicks));let B=this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(B=Math.max(B,...this.yAxisTicks)),[M,B]}onClick(o){this.select.emit(o)}setColors(){let o;o=this.schemeType===jn.Ordinal?this.xDomain:this.yDomain,this.colors=new sm(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===jn.Ordinal?(o.domain=this.xDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.yDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onDataLabelMaxHeightChanged(o){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),o.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(o,M=!1){o=this.results.find(Y=>M?Y.label===o.name:Y.name===o.name),!(this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.series===o.series)>-1)&&(this.activeEntries=[o,...this.activeEntries],this.activate.emit({value:o,entries:this.activeEntries}))}onDeactivate(o,M=!1){o=this.results.find(Y=>M?Y.label===o.name:Y.name===o.name);const B=this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.series===o.series);this.activeEntries.splice(B,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:o,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let A;return function(M){return(A||(A=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(o,M,B){if(1&o&&e.wni(B,Dd,5),2&o){let Y;e.mGM(Y=e.lsd())&&(M.tooltipTemplate=Y.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",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",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.Vt3],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","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","wrapTicks"]],template:function(o,M){1&o&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelClick",function(Y){return M.onClick(Y)})("legendLabelActivate",function(Y){return M.onActivate(Y,!0)})("legendLabelDeactivate",function(Y){return M.onDeactivate(Y,!0)}),e.qSk(),e.j41(1,"g",1),e.DNE(2,cr,1,12,"g",2)(3,ta,1,10,"g",3),e.j41(4,"g",4),e.bIt("activate",function(Y){return M.onActivate(Y)})("deactivate",function(Y){return M.onDeactivate(Y)})("select",function(Y){return M.onClick(Y)})("dataLabelHeightChanged",function(Y){return M.onDataLabelMaxHeightChanged(Y)}),e.k0s()()()),2&o&&(e.Y8G("view",e.l_i(22,vl,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("xScale",M.xScale)("yScale",M.yScale)("colors",M.colors)("series",M.results)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("activeEntries",M.activeEntries)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero))},dependencies:[eu,s3,A1,hm,t.bT],styles:[C1],encapsulation:2,changeDetection:0}),u})(),c6=(()=>{class u extends a3{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=wl.Right,this.tooltipDisabled=!1,this.scaleType=jn.Ordinal,this.showGridLines=!0,this.activeEntries=[],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 e.bkB,this.deactivate=new e.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=bo,this.trackBy=(o,M)=>M.name}ngOnInit(){(0,t.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=om({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(o,M){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),M===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const o=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return Ac().rangeRound([0,this.dims.width]).paddingInner(o).paddingOuter(o/2).domain(this.groupDomain)}getInnerScale(){const o=this.groupScale.bandwidth(),M=this.innerDomain.length/(o/this.barPadding+1);return Ac().rangeRound([0,o]).paddingInner(M).domain(this.innerDomain)}getValueScale(){const o=Gs().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?o.nice():o}getGroupDomain(){const o=[];for(const M of this.results)o.includes(M.label)||o.push(M.label);return o}getInnerDomain(){const o=[];for(const M of this.results)for(const B of M.series)o.includes(B.label)||o.push(B.label);return o}getValueDomain(){const o=[];for(const Y of this.results)for(const Le of Y.series)o.includes(Le.value)||o.push(Le.value);return[Math.min(0,...o),this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o)]}groupTransform(o){return`translate(${this.groupScale(o.label)}, 0)`}onClick(o,M){M&&(o.series=M.name),this.select.emit(o)}setColors(){let o;o=this.schemeType===jn.Ordinal?this.innerDomain:this.valueDomain,this.colors=new sm(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===jn.Ordinal?(o.domain=this.innerDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.valueDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onActivate(o,M,B=!1){const Y=Object.assign({},o);M&&(Y.series=M.name);const Le=this.results.map(Ct=>Ct.series).flat().filter(Ct=>B?Ct.label===Y.name:Ct.name===Y.name&&Ct.series===Y.series);this.activeEntries=[...Le],this.activate.emit({value:Y,entries:this.activeEntries})}onDeactivate(o,M,B=!1){const Y=Object.assign({},o);M&&(Y.series=M.name),this.activeEntries=this.activeEntries.filter(Le=>B?Le.label!==Y.name:!(Le.name===Y.name&&Le.series===Y.series)),this.deactivate.emit({value:Y,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let A;return function(M){return(A||(A=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(o,M,B){if(1&o&&e.wni(B,Dd,5),2&o){let Y;e.mGM(Y=e.lsd())&&(M.tooltipTemplate=Y.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"},features:[e.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(o,M){1&o&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelActivate",function(Y){return M.onActivate(Y,void 0,!0)})("legendLabelDeactivate",function(Y){return M.onDeactivate(Y,void 0,!0)})("legendLabelClick",function(Y){return M.onClick(Y)}),e.qSk(),e.j41(1,"g",1),e.nrm(2,"g",2),e.DNE(3,Ar,1,11,"g",3)(4,ma,1,10,"g",4)(5,rc,2,2,"g",5),e.k0s(),e.DNE(6,M1,2,2,"g",5),e.k0s()),2&o&&(e.Y8G("view",e.l_i(15,vl,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("xScale",M.groupScale)("yScale",M.valueScale)("data",M.results)("dims",M.dims)("orient",M.barOrientation.Vertical),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR))},dependencies:[eu,au,s3,A1,hm,t.bT,t.Sq],styles:[C1],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1,transform:"*"}),(0,f.i0)(500,(0,f.iF)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}),u})(),g3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})();d4();let u6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),d0=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),O1=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),v3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})();Math;let Nd=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),g6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo,Nd,v3]]}),u})(),b3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),y3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),x3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo,Nd,g3]]}),u})(),S6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),C3=(()=>{class u{constructor(){!function U5(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[qo,cu,g3,u6,d0,O1,S6,v3,g6,b3,Nd,y3,x3]}),u})()},8288:(Qe,te,g)=>{"use strict";g.d(te,{Um:()=>d,XK:()=>T});var e=g(467),t=g(4438),w=g(177),S=g(8314);function l(y,F){if(1&y&&t.nrm(0,"canvas",1),2&y){const R=t.XpG();t.HbH(R.styleClass),t.Y8G("qrCode",R.value)("qrCodeErrorCorrectionLevel",R.errorCorrectionLevel)("qrCodeCenterImageSrc",R.centerImageSrc)("qrCodeCenterImageWidth",R.centerImageSize)("qrCodeCenterImageHeight",R.centerImageSize)("qrCodeMargin",R.margin)("width",R.size)("height",R.size)("ngStyle",R.style)("darkColor",R.darkColor)("lightColor",R.lightColor)}}const x=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/;let f=(()=>{class y{static#e=this.DEFAULT_ERROR_CORRECTION_LEVEL="M";static#t=this.DEFAULT_CENTER_IMAGE_SIZE=40;constructor(R){this.viewContainerRef=R,this.errorCorrectionLevel=y.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var R=this;return(0,e.A)(function*(){if(!R.value)return;R.version&&R.version>40?(console.warn("[qrCode] max version is 40, clamping"),R.version=40):R.version&&R.version<1?(console.warn("[qrCode] min version is 1, clamping"),R.version=1):void 0!==R.version&&isNaN(R.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),R.version=void 0);const z=R.viewContainerRef.element.nativeElement;if(!z)return;const W=z.getContext("2d");W&&W.clearRect(0,0,W.canvas.width,W.canvas.height);const $=R.errorCorrectionLevel??y.DEFAULT_ERROR_CORRECTION_LEVEL,j=x.test(R.darkColor)?R.darkColor:void 0,Q=x.test(R.lightColor)?R.lightColor:void 0;(0,t.naY)()&&(!j&&R.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!Q&&R.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield S.toCanvas(z,R.value,{version:R.version,errorCorrectionLevel:$,width:R.width,margin:R.margin,color:{dark:j,light:Q}});const J=R.centerImageSrc,ee=I(R.centerImageWidth,y.DEFAULT_CENTER_IMAGE_SIZE),ie=I(R.centerImageHeight,y.DEFAULT_CENTER_IMAGE_SIZE);if(J&&W){R.centerImage||(R.centerImage=new Image(ee,ie));const ge=R.centerImage;J!==R.centerImage.src&&(ge.src=J),ee!==R.centerImage.width&&(ge.width=ee),ie!==R.centerImage.height&&(ge.height=ie);const ae=()=>{W.drawImage(ge,z.width/2-ee/2,z.height/2-ie/2,ee,ie)};ge.onload=ae,ge.complete&&ae()}})()}static#i=this.\u0275fac=function(z){return new(z||y)(t.rXU(t.c1b))};static#n=this.\u0275dir=t.FsC({type:y,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"]},features:[t.OA$]})}return y})();function I(y,F){return void 0===y||""===y?F:"string"==typeof y?parseInt(y,10):y}let d=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275cmp=t.VBU({type:y,selectors:[["qr-code"]],inputs:{value:"value",size:"size",style:"style",styleClass:"styleClass",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","class","ngStyle","darkColor","lightColor"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","ngStyle","darkColor","lightColor"]],template:function(z,W){1&z&&t.DNE(0,l,1,13,"canvas",0),2&z&&t.vxM(W.value?0:-1)},dependencies:[w.B3,f],encapsulation:2})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=t.$C({type:y});static#i=this.\u0275inj=t.G2t({imports:[w.MD]})}return y})()},497:(Qe,te,g)=>{"use strict";g.d(te,{kU:()=>St,ZF:()=>Re,Ld:()=>q,U$:()=>gt});var e=g(1413),t=g(3726),w=g(7786),S=g(3798),l=g(6977),x=g(3294),f=g(3703),I=g(4438),d=g(177);function T($e){return getComputedStyle($e)}function y($e,Fe){for(var Ge in Fe){var et=Fe[Ge];"number"==typeof et&&(et+="px"),$e.style[Ge]=et}return $e}function F($e){var Fe=document.createElement("div");return Fe.className=$e,Fe}var R=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function z($e,Fe){if(!R)throw new Error("No element matching method supported");return R.call($e,Fe)}function W($e){$e.remove?$e.remove():$e.parentNode&&$e.parentNode.removeChild($e)}function $($e,Fe){return Array.prototype.filter.call($e.children,function(Ge){return z(Ge,Fe)})}var j={main:"ps",rtl:"ps__rtl",element:{thumb:function($e){return"ps__thumb-"+$e},rail:function($e){return"ps__rail-"+$e},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function($e){return"ps--active-"+$e},scrolling:function($e){return"ps--scrolling-"+$e}}},Q={x:null,y:null};function J($e,Fe){var Ge=$e.element.classList,et=j.state.scrolling(Fe);Ge.contains(et)?clearTimeout(Q[Fe]):Ge.add(et)}function ee($e,Fe){Q[Fe]=setTimeout(function(){return $e.isAlive&&$e.element.classList.remove(j.state.scrolling(Fe))},$e.settings.scrollingThreshold)}var ge=function(Fe){this.element=Fe,this.handlers={}},ae={isEmpty:{configurable:!0}};ge.prototype.bind=function(Fe,Ge){typeof this.handlers[Fe]>"u"&&(this.handlers[Fe]=[]),this.handlers[Fe].push(Ge),this.element.addEventListener(Fe,Ge,!1)},ge.prototype.unbind=function(Fe,Ge){var et=this;this.handlers[Fe]=this.handlers[Fe].filter(function(st){return!(!Ge||st===Ge)||(et.element.removeEventListener(Fe,st,!1),!1)})},ge.prototype.unbindAll=function(){for(var Fe in this.handlers)this.unbind(Fe)},ae.isEmpty.get=function(){var $e=this;return Object.keys(this.handlers).every(function(Fe){return 0===$e.handlers[Fe].length})},Object.defineProperties(ge.prototype,ae);var Me=function(){this.eventElements=[]};function Te($e){if("function"==typeof window.CustomEvent)return new CustomEvent($e);var Fe=document.createEvent("CustomEvent");return Fe.initCustomEvent($e,!1,!1,void 0),Fe}function de($e,Fe,Ge,et,st){var Tt;if(void 0===et&&(et=!0),void 0===st&&(st=!1),"top"===Fe)Tt=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==Fe)throw new Error("A proper axis should be provided");Tt=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function D($e,Fe,Ge,et,st){var Tt=Ge[0],mi=Ge[1],Kt=Ge[2],Pt=Ge[3],Xi=Ge[4],di=Ge[5];void 0===et&&(et=!0),void 0===st&&(st=!1);var fi=$e.element;$e.reach[Pt]=null,fi[Kt]<1&&($e.reach[Pt]="start"),fi[Kt]>$e[Tt]-$e[mi]-1&&($e.reach[Pt]="end"),Fe&&(fi.dispatchEvent(Te("ps-scroll-"+Pt)),Fe<0?fi.dispatchEvent(Te("ps-scroll-"+Xi)):Fe>0&&fi.dispatchEvent(Te("ps-scroll-"+di)),et&&function ie($e,Fe){J($e,Fe),ee($e,Fe)}($e,Pt)),$e.reach[Pt]&&(Fe||st)&&fi.dispatchEvent(Te("ps-"+Pt+"-reach-"+$e.reach[Pt]))}($e,Ge,Tt,et,st)}function n($e){return parseInt($e,10)||0}Me.prototype.eventElement=function(Fe){var Ge=this.eventElements.filter(function(et){return et.element===Fe})[0];return Ge||(Ge=new ge(Fe),this.eventElements.push(Ge)),Ge},Me.prototype.bind=function(Fe,Ge,et){this.eventElement(Fe).bind(Ge,et)},Me.prototype.unbind=function(Fe,Ge,et){var st=this.eventElement(Fe);st.unbind(Ge,et),st.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(st),1)},Me.prototype.unbindAll=function(){this.eventElements.forEach(function(Fe){return Fe.unbindAll()}),this.eventElements=[]},Me.prototype.once=function(Fe,Ge,et){var st=this.eventElement(Fe),Tt=function(mi){st.unbind(Ge,Tt),et(mi)};st.bind(Ge,Tt)};var h={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 C($e){var Fe=$e.element,Ge=Math.floor(Fe.scrollTop),et=Fe.getBoundingClientRect();$e.containerWidth=Math.round(et.width),$e.containerHeight=Math.round(et.height),$e.contentWidth=Fe.scrollWidth,$e.contentHeight=Fe.scrollHeight,Fe.contains($e.scrollbarXRail)||($(Fe,j.element.rail("x")).forEach(function(st){return W(st)}),Fe.appendChild($e.scrollbarXRail)),Fe.contains($e.scrollbarYRail)||($(Fe,j.element.rail("y")).forEach(function(st){return W(st)}),Fe.appendChild($e.scrollbarYRail)),!$e.settings.suppressScrollX&&$e.containerWidth+$e.settings.scrollXMarginOffset<$e.contentWidth?($e.scrollbarXActive=!0,$e.railXWidth=$e.containerWidth-$e.railXMarginWidth,$e.railXRatio=$e.containerWidth/$e.railXWidth,$e.scrollbarXWidth=k($e,n($e.railXWidth*$e.containerWidth/$e.contentWidth)),$e.scrollbarXLeft=n(($e.negativeScrollAdjustment+Fe.scrollLeft)*($e.railXWidth-$e.scrollbarXWidth)/($e.contentWidth-$e.containerWidth))):$e.scrollbarXActive=!1,!$e.settings.suppressScrollY&&$e.containerHeight+$e.settings.scrollYMarginOffset<$e.contentHeight?($e.scrollbarYActive=!0,$e.railYHeight=$e.containerHeight-$e.railYMarginHeight,$e.railYRatio=$e.containerHeight/$e.railYHeight,$e.scrollbarYHeight=k($e,n($e.railYHeight*$e.containerHeight/$e.contentHeight)),$e.scrollbarYTop=n(Ge*($e.railYHeight-$e.scrollbarYHeight)/($e.contentHeight-$e.containerHeight))):$e.scrollbarYActive=!1,$e.scrollbarXLeft>=$e.railXWidth-$e.scrollbarXWidth&&($e.scrollbarXLeft=$e.railXWidth-$e.scrollbarXWidth),$e.scrollbarYTop>=$e.railYHeight-$e.scrollbarYHeight&&($e.scrollbarYTop=$e.railYHeight-$e.scrollbarYHeight),function L($e,Fe){var Ge={width:Fe.railXWidth},et=Math.floor($e.scrollTop);Ge.left=Fe.isRtl?Fe.negativeScrollAdjustment+$e.scrollLeft+Fe.containerWidth-Fe.contentWidth:$e.scrollLeft,Fe.isScrollbarXUsingBottom?Ge.bottom=Fe.scrollbarXBottom-et:Ge.top=Fe.scrollbarXTop+et,y(Fe.scrollbarXRail,Ge);var st={top:et,height:Fe.railYHeight};Fe.isScrollbarYUsingRight?st.right=Fe.isRtl?Fe.contentWidth-(Fe.negativeScrollAdjustment+$e.scrollLeft)-Fe.scrollbarYRight-Fe.scrollbarYOuterWidth-9:Fe.scrollbarYRight-$e.scrollLeft:st.left=Fe.isRtl?Fe.negativeScrollAdjustment+$e.scrollLeft+2*Fe.containerWidth-Fe.contentWidth-Fe.scrollbarYLeft-Fe.scrollbarYOuterWidth:Fe.scrollbarYLeft+$e.scrollLeft,y(Fe.scrollbarYRail,st),y(Fe.scrollbarX,{left:Fe.scrollbarXLeft,width:Fe.scrollbarXWidth-Fe.railBorderXWidth}),y(Fe.scrollbarY,{top:Fe.scrollbarYTop,height:Fe.scrollbarYHeight-Fe.railBorderYWidth})}(Fe,$e),$e.scrollbarXActive?Fe.classList.add(j.state.active("x")):(Fe.classList.remove(j.state.active("x")),$e.scrollbarXWidth=0,$e.scrollbarXLeft=0,Fe.scrollLeft=!0===$e.isRtl?$e.contentWidth:0),$e.scrollbarYActive?Fe.classList.add(j.state.active("y")):(Fe.classList.remove(j.state.active("y")),$e.scrollbarYHeight=0,$e.scrollbarYTop=0,Fe.scrollTop=0)}function k($e,Fe){return $e.settings.minScrollbarLength&&(Fe=Math.max(Fe,$e.settings.minScrollbarLength)),$e.settings.maxScrollbarLength&&(Fe=Math.min(Fe,$e.settings.maxScrollbarLength)),Fe}function v($e,Fe){var Ge=Fe[0],et=Fe[1],st=Fe[2],Tt=Fe[3],mi=Fe[4],Kt=Fe[5],Pt=Fe[6],Xi=Fe[7],di=Fe[8],fi=$e.element,vn=null,Qi=null,Li=null;function Zi(it){it.touches&&it.touches[0]&&(it[st]=it.touches[0].pageY),fi[Pt]=vn+Li*(it[st]-Qi),J($e,Xi),C($e),it.stopPropagation(),it.type.startsWith("touch")&&it.changedTouches.length>1&&it.preventDefault()}function Qt(){ee($e,Xi),$e[di].classList.remove(j.state.clicking),$e.event.unbind($e.ownerDocument,"mousemove",Zi)}function Mt(it,ct){vn=fi[Pt],ct&&it.touches&&(it[st]=it.touches[0].pageY),Qi=it[st],Li=($e[et]-$e[Ge])/($e[Tt]-$e[Kt]),ct?$e.event.bind($e.ownerDocument,"touchmove",Zi):($e.event.bind($e.ownerDocument,"mousemove",Zi),$e.event.once($e.ownerDocument,"mouseup",Qt),it.preventDefault()),$e[di].classList.add(j.state.clicking),it.stopPropagation()}$e.event.bind($e[mi],"mousedown",function(it){Mt(it)}),$e.event.bind($e[mi],"touchstart",function(it){Mt(it,!0)})}var ze={"click-rail":function _($e){$e.event.bind($e.scrollbarY,"mousedown",function(Ge){return Ge.stopPropagation()}),$e.event.bind($e.scrollbarYRail,"mousedown",function(Ge){var et=Ge.pageY-window.pageYOffset-$e.scrollbarYRail.getBoundingClientRect().top;$e.element.scrollTop+=(et>$e.scrollbarYTop?1:-1)*$e.containerHeight,C($e),Ge.stopPropagation()}),$e.event.bind($e.scrollbarX,"mousedown",function(Ge){return Ge.stopPropagation()}),$e.event.bind($e.scrollbarXRail,"mousedown",function(Ge){var et=Ge.pageX-window.pageXOffset-$e.scrollbarXRail.getBoundingClientRect().left;$e.element.scrollLeft+=(et>$e.scrollbarXLeft?1:-1)*$e.containerWidth,C($e),Ge.stopPropagation()})},"drag-thumb":function r($e){v($e,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),v($e,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function V($e){var Fe=$e.element;$e.event.bind($e.ownerDocument,"keydown",function(Tt){if(!(Tt.isDefaultPrevented&&Tt.isDefaultPrevented()||Tt.defaultPrevented)&&(z(Fe,":hover")||z($e.scrollbarX,":focus")||z($e.scrollbarY,":focus"))){var mi=document.activeElement?document.activeElement:$e.ownerDocument.activeElement;if(mi){if("IFRAME"===mi.tagName)mi=mi.contentDocument.activeElement;else for(;mi.shadowRoot;)mi=mi.shadowRoot.activeElement;if(function c($e){return z($e,"input,[contenteditable]")||z($e,"select,[contenteditable]")||z($e,"textarea,[contenteditable]")||z($e,"button,[contenteditable]")}(mi))return}var Kt=0,Pt=0;switch(Tt.which){case 37:Kt=Tt.metaKey?-$e.contentWidth:Tt.altKey?-$e.containerWidth:-30;break;case 38:Pt=Tt.metaKey?$e.contentHeight:Tt.altKey?$e.containerHeight:30;break;case 39:Kt=Tt.metaKey?$e.contentWidth:Tt.altKey?$e.containerWidth:30;break;case 40:Pt=Tt.metaKey?-$e.contentHeight:Tt.altKey?-$e.containerHeight:-30;break;case 32:Pt=Tt.shiftKey?$e.containerHeight:-$e.containerHeight;break;case 33:Pt=$e.containerHeight;break;case 34:Pt=-$e.containerHeight;break;case 36:Pt=$e.contentHeight;break;case 35:Pt=-$e.contentHeight;break;default:return}$e.settings.suppressScrollX&&0!==Kt||$e.settings.suppressScrollY&&0!==Pt||(Fe.scrollTop-=Pt,Fe.scrollLeft+=Kt,C($e),function st(Tt,mi){var Kt=Math.floor(Fe.scrollTop);if(0===Tt){if(!$e.scrollbarYActive)return!1;if(0===Kt&&mi>0||Kt>=$e.contentHeight-$e.containerHeight&&mi<0)return!$e.settings.wheelPropagation}var Pt=Fe.scrollLeft;if(0===mi){if(!$e.scrollbarXActive)return!1;if(0===Pt&&Tt<0||Pt>=$e.contentWidth-$e.containerWidth&&Tt>0)return!$e.settings.wheelPropagation}return!0}(Kt,Pt)&&Tt.preventDefault())}})},wheel:function N($e){var Fe=$e.element;function Tt(mi){var Kt=function et(mi){var Kt=mi.deltaX,Pt=-1*mi.deltaY;return(typeof Kt>"u"||typeof Pt>"u")&&(Kt=-1*mi.wheelDeltaX/6,Pt=mi.wheelDeltaY/6),mi.deltaMode&&1===mi.deltaMode&&(Kt*=10,Pt*=10),Kt!=Kt&&Pt!=Pt&&(Kt=0,Pt=mi.wheelDelta),mi.shiftKey?[-Pt,-Kt]:[Kt,Pt]}(mi),Pt=Kt[0],Xi=Kt[1];if(!function st(mi,Kt,Pt){if(!h.isWebKit&&Fe.querySelector("select:focus"))return!0;if(!Fe.contains(mi))return!1;for(var Xi=mi;Xi&&Xi!==Fe;){if(Xi.classList.contains(j.element.consuming))return!0;var di=T(Xi);if(Pt&&di.overflowY.match(/(scroll|auto)/)){var fi=Xi.scrollHeight-Xi.clientHeight;if(fi>0&&(Xi.scrollTop>0&&Pt<0||Xi.scrollTop0))return!0}if(Kt&&di.overflowX.match(/(scroll|auto)/)){var vn=Xi.scrollWidth-Xi.clientWidth;if(vn>0&&(Xi.scrollLeft>0&&Kt<0||Xi.scrollLeft0))return!0}Xi=Xi.parentNode}return!1}(mi.target,Pt,Xi)){var di=!1;$e.settings.useBothWheelAxes?$e.scrollbarYActive&&!$e.scrollbarXActive?(Xi?Fe.scrollTop-=Xi*$e.settings.wheelSpeed:Fe.scrollTop+=Pt*$e.settings.wheelSpeed,di=!0):$e.scrollbarXActive&&!$e.scrollbarYActive&&(Pt?Fe.scrollLeft+=Pt*$e.settings.wheelSpeed:Fe.scrollLeft-=Xi*$e.settings.wheelSpeed,di=!0):(Fe.scrollTop-=Xi*$e.settings.wheelSpeed,Fe.scrollLeft+=Pt*$e.settings.wheelSpeed),C($e),di=di||function Ge(mi,Kt){var Pt=Math.floor(Fe.scrollTop),Xi=0===Fe.scrollTop,di=Pt+Fe.offsetHeight===Fe.scrollHeight,fi=0===Fe.scrollLeft,vn=Fe.scrollLeft+Fe.offsetWidth===Fe.scrollWidth;return!(Math.abs(Kt)>Math.abs(mi)?Xi||di:fi||vn)||!$e.settings.wheelPropagation}(Pt,Xi),di&&!mi.ctrlKey&&(mi.stopPropagation(),mi.preventDefault())}}typeof window.onwheel<"u"?$e.event.bind(Fe,"wheel",Tt):typeof window.onmousewheel<"u"&&$e.event.bind(Fe,"mousewheel",Tt)},touch:function ne($e){if(h.supportsTouch||h.supportsIePointer){var Fe=$e.element,st={},Tt=0,mi={},Kt=null;h.supportsTouch?($e.event.bind(Fe,"touchstart",di),$e.event.bind(Fe,"touchmove",vn),$e.event.bind(Fe,"touchend",Qi)):h.supportsIePointer&&(window.PointerEvent?($e.event.bind(Fe,"pointerdown",di),$e.event.bind(Fe,"pointermove",vn),$e.event.bind(Fe,"pointerup",Qi)):window.MSPointerEvent&&($e.event.bind(Fe,"MSPointerDown",di),$e.event.bind(Fe,"MSPointerMove",vn),$e.event.bind(Fe,"MSPointerUp",Qi)))}function et(Li,Zi){Fe.scrollTop-=Zi,Fe.scrollLeft-=Li,C($e)}function Pt(Li){return Li.targetTouches?Li.targetTouches[0]:Li}function Xi(Li){return!(Li.pointerType&&"pen"===Li.pointerType&&0===Li.buttons||!(Li.targetTouches&&1===Li.targetTouches.length||Li.pointerType&&"mouse"!==Li.pointerType&&Li.pointerType!==Li.MSPOINTER_TYPE_MOUSE))}function di(Li){if(Xi(Li)){var Zi=Pt(Li);st.pageX=Zi.pageX,st.pageY=Zi.pageY,Tt=(new Date).getTime(),null!==Kt&&clearInterval(Kt)}}function vn(Li){if(Xi(Li)){var Zi=Pt(Li),Qt={pageX:Zi.pageX,pageY:Zi.pageY},Mt=Qt.pageX-st.pageX,it=Qt.pageY-st.pageY;if(function fi(Li,Zi,Qt){if(!Fe.contains(Li))return!1;for(var Mt=Li;Mt&&Mt!==Fe;){if(Mt.classList.contains(j.element.consuming))return!0;var it=T(Mt);if(Qt&&it.overflowY.match(/(scroll|auto)/)){var ct=Mt.scrollHeight-Mt.clientHeight;if(ct>0&&(Mt.scrollTop>0&&Qt<0||Mt.scrollTop0))return!0}if(Zi&&it.overflowX.match(/(scroll|auto)/)){var wt=Mt.scrollWidth-Mt.clientWidth;if(wt>0&&(Mt.scrollLeft>0&&Zi<0||Mt.scrollLeft0))return!0}Mt=Mt.parentNode}return!1}(Li.target,Mt,it))return;et(Mt,it),st=Qt;var ct=(new Date).getTime(),wt=ct-Tt;wt>0&&(mi.x=Mt/wt,mi.y=it/wt,Tt=ct),function Ge(Li,Zi){var Qt=Math.floor(Fe.scrollTop),Mt=Fe.scrollLeft,it=Math.abs(Li),ct=Math.abs(Zi);if(ct>it){if(Zi<0&&Qt===$e.contentHeight-$e.containerHeight||Zi>0&&0===Qt)return 0===window.scrollY&&Zi>0&&h.isChrome}else if(it>ct&&(Li<0&&Mt===$e.contentWidth-$e.containerWidth||Li>0&&0===Mt))return!0;return!0}(Mt,it)&&Li.preventDefault()}}function Qi(){$e.settings.swipeEasing&&(clearInterval(Kt),Kt=setInterval(function(){$e.isInitialized?clearInterval(Kt):mi.x||mi.y?Math.abs(mi.x)<.01&&Math.abs(mi.y)<.01?clearInterval(Kt):$e.element?(et(30*mi.x,30*mi.y),mi.x*=.8,mi.y*=.8):clearInterval(Kt):clearInterval(Kt)},10))}}},qe=function(Fe,Ge){var et=this;if(void 0===Ge&&(Ge={}),"string"==typeof Fe&&(Fe=document.querySelector(Fe)),!Fe||!Fe.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var st in this.element=Fe,Fe.classList.add(j.main),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},Ge)this.settings[st]=Ge[st];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var di,Xi,Tt=function(){return Fe.classList.add(j.state.focus)},mi=function(){return Fe.classList.remove(j.state.focus)};this.isRtl="rtl"===T(Fe).direction,!0===this.isRtl&&Fe.classList.add(j.rtl),this.isNegativeScroll=(Xi=Fe.scrollLeft,Fe.scrollLeft=-1,di=Fe.scrollLeft<0,Fe.scrollLeft=Xi,di),this.negativeScrollAdjustment=this.isNegativeScroll?Fe.scrollWidth-Fe.clientWidth:0,this.event=new Me,this.ownerDocument=Fe.ownerDocument||document,this.scrollbarXRail=F(j.element.rail("x")),Fe.appendChild(this.scrollbarXRail),this.scrollbarX=F(j.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",Tt),this.event.bind(this.scrollbarX,"blur",mi),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var Kt=T(this.scrollbarXRail);this.scrollbarXBottom=parseInt(Kt.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=n(Kt.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=n(Kt.borderLeftWidth)+n(Kt.borderRightWidth),y(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=n(Kt.marginLeft)+n(Kt.marginRight),y(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=F(j.element.rail("y")),Fe.appendChild(this.scrollbarYRail),this.scrollbarY=F(j.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",Tt),this.event.bind(this.scrollbarY,"blur",mi),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var Pt=T(this.scrollbarYRail);this.scrollbarYRight=parseInt(Pt.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=n(Pt.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function m($e){var Fe=T($e);return n(Fe.width)+n(Fe.paddingLeft)+n(Fe.paddingRight)+n(Fe.borderLeftWidth)+n(Fe.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=n(Pt.borderTopWidth)+n(Pt.borderBottomWidth),y(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=n(Pt.marginTop)+n(Pt.marginBottom),y(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:Fe.scrollLeft<=0?"start":Fe.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:Fe.scrollTop<=0?"start":Fe.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(Xi){return ze[Xi](et)}),this.lastScrollTop=Math.floor(Fe.scrollTop),this.lastScrollLeft=Fe.scrollLeft,this.event.bind(this.element,"scroll",function(Xi){return et.onScroll(Xi)}),C(this)};qe.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,y(this.scrollbarXRail,{display:"block"}),y(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=n(T(this.scrollbarXRail).marginLeft)+n(T(this.scrollbarXRail).marginRight),this.railYMarginHeight=n(T(this.scrollbarYRail).marginTop)+n(T(this.scrollbarYRail).marginBottom),y(this.scrollbarXRail,{display:"none"}),y(this.scrollbarYRail,{display:"none"}),C(this),de(this,"top",0,!1,!0),de(this,"left",0,!1,!0),y(this.scrollbarXRail,{display:""}),y(this.scrollbarYRail,{display:""}))},qe.prototype.onScroll=function(Fe){this.isAlive&&(C(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)},qe.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),W(this.scrollbarX),W(this.scrollbarY),W(this.scrollbarXRail),W(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},qe.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(Fe){return!Fe.match(/^ps([-_].+|)$/)}).join(" ")};const Ke=qe;var se=function(){if(typeof Map<"u")return Map;function $e(Fe,Ge){var et=-1;return Fe.some(function(st,Tt){return st[0]===Ge&&(et=Tt,!0)}),et}return function(){function Fe(){this.__entries__=[]}return Object.defineProperty(Fe.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),Fe.prototype.get=function(Ge){var et=$e(this.__entries__,Ge),st=this.__entries__[et];return st&&st[1]},Fe.prototype.set=function(Ge,et){var st=$e(this.__entries__,Ge);~st?this.__entries__[st][1]=et:this.__entries__.push([Ge,et])},Fe.prototype.delete=function(Ge){var et=this.__entries__,st=$e(et,Ge);~st&&et.splice(st,1)},Fe.prototype.has=function(Ge){return!!~$e(this.__entries__,Ge)},Fe.prototype.clear=function(){this.__entries__.splice(0)},Fe.prototype.forEach=function(Ge,et){void 0===et&&(et=null);for(var st=0,Tt=this.__entries__;st0},$e.prototype.connect_=function(){!X||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),be?(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)},$e.prototype.disconnect_=function(){!X||!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)},$e.prototype.onTransitionEnd_=function(Fe){var Ge=Fe.propertyName,et=void 0===Ge?"":Ge;_e.some(function(Tt){return!!~et.indexOf(Tt)})&&this.refresh()},$e.getInstance=function(){return this.instance_||(this.instance_=new $e),this.instance_},$e.instance_=null,$e}(),Ze=function($e,Fe){for(var Ge=0,et=Object.keys(Fe);Ge"u")&&Element instanceof Object){if(!(Fe instanceof _t(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)||(Ge.set(Fe,new Yt(Fe)),this.controller_.addObserver(this),this.controller_.refresh())}},$e.prototype.unobserve=function(Fe){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!(Fe instanceof _t(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)&&(Ge.delete(Fe),Ge.size||this.controller_.removeObserver(this))}},$e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},$e.prototype.gatherActive=function(){var Fe=this;this.clearActive(),this.observations_.forEach(function(Ge){Ge.isActive()&&Fe.activeObservations_.push(Ge)})},$e.prototype.broadcastActive=function(){if(this.hasActive()){var Fe=this.callbackCtx_,Ge=this.activeObservations_.map(function(et){return new Nt(et.target,et.broadcastRect())});this.callback_.call(Fe,Ge,Fe),this.clearActive()}},$e.prototype.clearActive=function(){this.activeObservations_.splice(0)},$e.prototype.hasActive=function(){return this.activeObservations_.length>0},$e}(),Vt=typeof WeakMap<"u"?new WeakMap:new se,oe=function(){return function $e(Fe){if(!(this instanceof $e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var Ge=pe.getInstance(),et=new Et(Fe,Ge,this);Vt.set(this,et)}}();["observe","unobserve","disconnect"].forEach(function($e){oe.prototype[$e]=function(){var Fe;return(Fe=Vt.get(this))[$e].apply(Fe,arguments)}});const $t=typeof me.ResizeObserver<"u"?me.ResizeObserver:oe,zt=["*"];function Jt($e,Fe){if(1&$e&&(I.j41(0,"div",3),I.nrm(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),I.k0s()),2&$e){const Ge=I.XpG();I.AVh("ps-at-top",Ge.states.top)("ps-at-left",Ge.states.left)("ps-at-right",Ge.states.right)("ps-at-bottom",Ge.states.bottom),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction)}}const St=new I.nKC("PERFECT_SCROLLBAR_CONFIG");class dt{constructor(Fe,Ge,et,st){this.x=Fe,this.y=Ge,this.w=et,this.h=st}}class Ae{constructor(Fe,Ge){this.x=Fe,this.y=Ge}}const we=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class he{constructor(Fe={}){this.assign(Fe)}assign(Fe={}){for(const Ge in Fe)this[Ge]=Fe[Ge]}}let q=(()=>{class $e{constructor(Ge,et,st,Tt,mi){this.zone=Ge,this.differs=et,this.elementRef=st,this.platformId=Tt,this.defaults=mi,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new e.B,this.disabled=!1,this.psScrollY=new I.bkB,this.psScrollX=new I.bkB,this.psScrollUp=new I.bkB,this.psScrollDown=new I.bkB,this.psScrollLeft=new I.bkB,this.psScrollRight=new I.bkB,this.psYReachEnd=new I.bkB,this.psYReachStart=new I.bkB,this.psXReachEnd=new I.bkB,this.psXReachStart=new I.bkB}ngOnInit(){if(!this.disabled&&(0,d.UE)(this.platformId)){const Ge=new he(this.defaults);Ge.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new Ke(this.elementRef.nativeElement,Ge)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new $t(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{we.forEach(et=>{const st=et.replace(/([A-Z])/g,Tt=>`-${Tt.toLowerCase()}`);(0,t.R)(this.elementRef.nativeElement,st).pipe((0,S.Z)(20),(0,l.Q)(this.ngDestroy)).subscribe(Tt=>{this[et].emit(Tt)})})})}}ngOnDestroy(){(0,d.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,d.UE)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(Ge){Ge.disabled&&!Ge.disabled.isFirstChange()&&(0,d.UE)(this.platformId)&&Ge.disabled.currentValue!==Ge.disabled.previousValue&&(!0===Ge.disabled.currentValue?this.ngOnDestroy():!1===Ge.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(Ge="scroll"){return new dt(this.elementRef.nativeElement[Ge+"Left"],this.elementRef.nativeElement[Ge+"Top"],this.elementRef.nativeElement[Ge+"Width"],this.elementRef.nativeElement[Ge+"Height"])}position(Ge=!1){return!Ge&&this.instance?new Ae(this.instance.reach.x||0,this.instance.reach.y||0):new Ae(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(Ge="any"){const et=this.elementRef.nativeElement;return"any"===Ge?et.classList.contains("ps--active-x")||et.classList.contains("ps--active-y"):"both"===Ge?et.classList.contains("ps--active-x")&&et.classList.contains("ps--active-y"):et.classList.contains("ps--active-"+Ge)}scrollTo(Ge,et,st){this.disabled||(null==et&&null==st?this.animateScrolling("scrollTop",Ge,st):(null!=Ge&&this.animateScrolling("scrollLeft",Ge,st),null!=et&&this.animateScrolling("scrollTop",et,st)))}scrollToX(Ge,et){this.animateScrolling("scrollLeft",Ge,et)}scrollToY(Ge,et){this.animateScrolling("scrollTop",Ge,et)}scrollToTop(Ge,et){this.animateScrolling("scrollTop",Ge||0,et)}scrollToLeft(Ge,et){this.animateScrolling("scrollLeft",Ge||0,et)}scrollToRight(Ge,et){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(Ge||0),et)}scrollToBottom(Ge,et){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(Ge||0),et)}scrollToElement(Ge,et,st){if("string"==typeof Ge&&(Ge=this.elementRef.nativeElement.querySelector(Ge)),Ge){const Tt=Ge.getBoundingClientRect(),mi=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",Tt.left-mi.left+this.elementRef.nativeElement.scrollLeft+(et||0),st),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",Tt.top-mi.top+this.elementRef.nativeElement.scrollTop+(et||0),st)}}animateScrolling(Ge,et,st){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!st||typeof window>"u")this.elementRef.nativeElement[Ge]=et;else if(et!==this.elementRef.nativeElement[Ge]){let Tt=0,mi=0,Kt=performance.now(),Pt=this.elementRef.nativeElement[Ge];const Xi=(Pt-et)/2,di=fi=>{mi+=Math.PI/(st/(fi-Kt)),Tt=Math.round(et+Xi+Xi*Math.cos(mi)),this.elementRef.nativeElement[Ge]===Pt&&(mi>=Math.PI?this.animateScrolling(Ge,et,0):(this.elementRef.nativeElement[Ge]=Tt,Pt=this.elementRef.nativeElement[Ge],Kt=fi,this.animation=window.requestAnimationFrame(di)))};window.requestAnimationFrame(di)}}}return $e.\u0275fac=function(Ge){return new(Ge||$e)(I.rXU(I.SKi),I.rXU(I.MKu),I.rXU(I.aKT),I.rXU(I.Agw),I.rXU(St,8))},$e.\u0275dir=I.FsC({type:$e,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"],features:[I.OA$]}),$e})(),Re=(()=>{class $e{constructor(Ge,et,st){this.zone=Ge,this.cdRef=et,this.platformId=st,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 e.B,this.stateUpdate=new e.B,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new I.bkB,this.psScrollX=new I.bkB,this.psScrollUp=new I.bkB,this.psScrollDown=new I.bkB,this.psScrollLeft=new I.bkB,this.psScrollRight=new I.bkB,this.psYReachEnd=new I.bkB,this.psYReachStart=new I.bkB,this.psXReachEnd=new I.bkB,this.psXReachStart=new I.bkB}ngOnInit(){(0,d.UE)(this.platformId)&&(this.stateUpdate.pipe((0,l.Q)(this.ngDestroy),(0,x.F)((Ge,et)=>Ge===et&&!this.stateTimeout)).subscribe(Ge=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===Ge||"y"===Ge?(this.interaction=!1,"x"===Ge?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===Ge&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===Ge||"right"===Ge?(this.states.left=!1,this.states.right=!1,this.states[Ge]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===Ge||"bottom"===Ge)&&(this.states.top=!1,this.states.bottom=!1,this.states[Ge]=!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 Ge=this.directiveRef.elementRef.nativeElement;(0,t.R)(Ge,"wheel").pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(et,et.deltaX,et.deltaY)}),(0,t.R)(Ge,"touchmove").pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{if(!this.disabled&&this.autoPropagation){const st=et.touches[0].clientX,Tt=et.touches[0].clientY;this.checkPropagation(et,st-this.scrollPositionX,Tt-this.scrollPositionY),this.scrollPositionX=st,this.scrollPositionY=Tt}}),(0,w.h)((0,t.R)(Ge,"ps-scroll-x").pipe((0,f.u)("x")),(0,t.R)(Ge,"ps-scroll-y").pipe((0,f.u)("y")),(0,t.R)(Ge,"ps-x-reach-end").pipe((0,f.u)("right")),(0,t.R)(Ge,"ps-y-reach-end").pipe((0,f.u)("bottom")),(0,t.R)(Ge,"ps-x-reach-start").pipe((0,f.u)("left")),(0,t.R)(Ge,"ps-y-reach-start").pipe((0,f.u)("top"))).pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(et)})}}),window.setTimeout(()=>{we.forEach(Ge=>{this.directiveRef&&(this.directiveRef[Ge]=this[Ge])})},0))}ngOnDestroy(){(0,d.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,d.UE)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const Ge=this.directiveRef.elementRef.nativeElement;this.usePropagationX=Ge.classList.contains("ps--active-x"),this.usePropagationY=Ge.classList.contains("ps--active-y")}}checkPropagation(Ge,et,st){this.interaction=!0;const Tt=et<0?-1:1,mi=st<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==Tt)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==mi))&&(Ge.preventDefault(),Ge.stopPropagation()),et&&(this.scrollDirectionX=Tt),st&&(this.scrollDirectionY=mi),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return $e.\u0275fac=function(Ge){return new(Ge||$e)(I.rXU(I.SKi),I.rXU(I.gRc),I.rXU(I.Agw))},$e.\u0275cmp=I.VBU({type:$e,selectors:[["perfect-scrollbar"]],viewQuery:function(Ge,et){if(1&Ge&&I.GBs(q,7),2&Ge){let st;I.mGM(st=I.lsd())&&(et.directiveRef=st.first)}},hostVars:4,hostBindings:function(Ge,et){2&Ge&&I.AVh("ps-show-limits",et.autoPropagation)("ps-show-active",et.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"],ngContentSelectors:zt,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(Ge,et){1&Ge&&(I.NAR(),I.j41(0,"div",0)(1,"div",1),I.SdG(2),I.k0s(),I.DNE(3,Jt,5,16,"div",2),I.k0s()),2&Ge&&(I.AVh("ps",et.usePSClass),I.Y8G("perfectScrollbar",et.config)("disabled",et.disabled),I.R7$(3),I.Y8G("ngIf",et.scrollIndicators))},dependencies:[q,d.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}),$e})(),gt=(()=>{class $e{}return $e.\u0275fac=function(Ge){return new(Ge||$e)},$e.\u0275mod=I.$C({type:$e}),$e.\u0275inj=I.G2t({imports:[[d.MD],d.MD]}),$e})()},467:(Qe,te,g)=>{"use strict";function e(w,S,l,x,f,I,d){try{var T=w[I](d),y=T.value}catch(F){return void l(F)}T.done?S(y):Promise.resolve(y).then(x,f)}function t(w){return function(){var S=this,l=arguments;return new Promise(function(x,f){var I=w.apply(S,l);function d(y){e(I,x,f,d,T,"next",y)}function T(y){e(I,x,f,d,T,"throw",y)}d(void 0)})}}g.d(te,{A:()=>t})},1635:(Qe,te,g)=>{"use strict";function l(r,v,V,N){var ze,ne=arguments.length,Ee=ne<3?v:null===N?N=Object.getOwnPropertyDescriptor(v,V):N;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Ee=Reflect.decorate(r,v,V,N);else for(var qe=r.length-1;qe>=0;qe--)(ze=r[qe])&&(Ee=(ne<3?ze(Ee):ne>3?ze(v,V,Ee):ze(v,V))||Ee);return ne>3&&Ee&&Object.defineProperty(v,V,Ee),Ee}function F(r,v,V,N){return new(V||(V=Promise))(function(Ee,ze){function qe(X){try{se(N.next(X))}catch(me){ze(me)}}function Ke(X){try{se(N.throw(X))}catch(me){ze(me)}}function se(X){X.done?Ee(X.value):function ne(Ee){return Ee instanceof V?Ee:new V(function(ze){ze(Ee)})}(X.value).then(qe,Ke)}se((N=N.apply(r,v||[])).next())})}function ie(r){return this instanceof ie?(this.v=r,this):new ie(r)}function ge(r,v,V){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var ne,N=V.apply(r,v||[]),Ee=[];return ne={},qe("next"),qe("throw"),qe("return",function ze(fe){return function(ke){return Promise.resolve(ke).then(fe,me)}}),ne[Symbol.asyncIterator]=function(){return this},ne;function qe(fe,ke){N[fe]&&(ne[fe]=function(mt){return new Promise(function(_e,be){Ee.push([fe,mt,_e,be])>1||Ke(fe,mt)})},ke&&(ne[fe]=ke(ne[fe])))}function Ke(fe,ke){try{!function se(fe){fe.value instanceof ie?Promise.resolve(fe.value.v).then(X,me):ce(Ee[0][2],fe)}(N[fe](ke))}catch(mt){ce(Ee[0][3],mt)}}function X(fe){Ke("next",fe)}function me(fe){Ke("throw",fe)}function ce(fe,ke){fe(ke),Ee.shift(),Ee.length&&Ke(Ee[0][0],Ee[0][1])}}function Me(r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var V,v=r[Symbol.asyncIterator];return v?v.call(r):(r=function $(r){var v="function"==typeof Symbol&&Symbol.iterator,V=v&&r[v],N=0;if(V)return V.call(r);if(r&&"number"==typeof r.length)return{next:function(){return r&&N>=r.length&&(r=void 0),{value:r&&r[N++],done:!r}}};throw new TypeError(v?"Object is not iterable.":"Symbol.iterator is not defined.")}(r),V={},N("next"),N("throw"),N("return"),V[Symbol.asyncIterator]=function(){return this},V);function N(Ee){V[Ee]=r[Ee]&&function(ze){return new Promise(function(qe,Ke){!function ne(Ee,ze,qe,Ke){Promise.resolve(Ke).then(function(se){Ee({value:se,done:qe})},ze)}(qe,Ke,(ze=r[Ee](ze)).done,ze.value)})}}}g.d(te,{AQ:()=>ge,Cg:()=>l,N3:()=>ie,sH:()=>F,xN:()=>Me}),"function"==typeof SuppressedError&&SuppressedError},3219:Qe=>{"use strict";Qe.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"}}')},2951:Qe=>{"use strict";Qe.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"}}')},4589:Qe=>{"use strict";Qe.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"}')},3241:Qe=>{"use strict";Qe.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"}}')},1636:Qe=>{"use strict";Qe.exports={rE:"6.5.5"}},5579:Qe=>{"use strict";Qe.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"}')}},Qe=>{Qe(Qe.s=3471)}]); \ No newline at end of file diff --git a/frontend/polyfills.277648f7b3e820e3.js b/frontend/polyfills.277648f7b3e820e3.js deleted file mode 100644 index b1e72783..00000000 --- a/frontend/polyfills.277648f7b3e820e3.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[461],{4050:(Ce,D,Y)=>{window.global=window,window.global.Buffer=window.global.Buffer||Y(3838).Buffer,window.global.process=window.global.process||Y(573)},3981:(Ce,D)=>{"use strict";D.byteLength=function l(w){var v=B(w),R=v[1];return 3*(v[0]+R)/4-R},D.toByteArray=function ke(w){var v,he,V=B(w),R=V[0],xe=V[1],ae=new ue(function se(w,v,V){return 3*(v+V)/4-V}(0,R,xe)),K=0,Ge=xe>0?R-4:R;for(he=0;he>16&255,ae[K++]=v>>8&255,ae[K++]=255&v;return 2===xe&&(v=P[w.charCodeAt(he)]<<2|P[w.charCodeAt(he+1)]>>4,ae[K++]=255&v),1===xe&&(v=P[w.charCodeAt(he)]<<10|P[w.charCodeAt(he+1)]<<4|P[w.charCodeAt(he+2)]>>2,ae[K++]=v>>8&255,ae[K++]=255&v),ae},D.fromByteArray=function me(w){for(var v,V=w.length,R=V%3,xe=[],K=0,Ge=V-R;KGe?Ge:K+16383));return 1===R?xe.push(Y[(v=w[V-1])>>2]+Y[v<<4&63]+"=="):2===R&&xe.push(Y[(v=(w[V-2]<<8)+w[V-1])>>10]+Y[v>>4&63]+Y[v<<2&63]+"="),xe.join("")};for(var Y=[],P=[],ue=typeof Uint8Array<"u"?Uint8Array:Array,Te="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ne=0;ne<64;++ne)Y[ne]=Te[ne],P[Te.charCodeAt(ne)]=ne;function B(w){var v=w.length;if(v%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var V=w.indexOf("=");return-1===V&&(V=v),[V,V===v?0:4-V%4]}function le(w){return Y[w>>18&63]+Y[w>>12&63]+Y[w>>6&63]+Y[63&w]}function te(w,v,V){for(var xe=[],ae=v;ae{"use strict";var P=Y(3981),ue=Y(2020),Te="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;D.Buffer=l,D.SlowBuffer=function ae(r){return+r!=r&&(r=0),l.alloc(+r)},D.INSPECT_MAX_BYTES=50;var ne=2147483647;function B(r){if(r>ne)throw new RangeError('The value "'+r+'" is invalid for option "size"');var e=new Uint8Array(r);return Object.setPrototypeOf(e,l.prototype),e}function l(r,e,t){if("number"==typeof r){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return te(r)}return se(r,e,t)}function se(r,e,t){if("string"==typeof r)return function me(r,e){if(("string"!=typeof e||""===e)&&(e="utf8"),!l.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var t=0|K(r,e),n=B(t),c=n.write(r,e);return c!==t&&(n=n.slice(0,c)),n}(r,e);if(ArrayBuffer.isView(r))return function v(r){if(Ne(r,Uint8Array)){var e=new Uint8Array(r);return V(e.buffer,e.byteOffset,e.byteLength)}return w(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(Ne(r,ArrayBuffer)||r&&Ne(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ne(r,SharedArrayBuffer)||r&&Ne(r.buffer,SharedArrayBuffer)))return V(r,e,t);if("number"==typeof r)throw new TypeError('The "value" argument must not be of type number. Received type number');var n=r.valueOf&&r.valueOf();if(null!=n&&n!==r)return l.from(n,e,t);var c=function R(r){if(l.isBuffer(r)){var e=0|xe(r.length),t=B(e);return 0===t.length||r.copy(t,0,0,e),t}return void 0!==r.length?"number"!=typeof r.length||st(r.length)?B(0):w(r):"Buffer"===r.type&&Array.isArray(r.data)?w(r.data):void 0}(r);if(c)return c;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof r[Symbol.toPrimitive])return l.from(r[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}function ke(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 te(r){return ke(r),B(r<0?0:0|xe(r))}function w(r){for(var e=r.length<0?0:0|xe(r.length),t=B(e),n=0;n=ne)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+ne.toString(16)+" bytes");return 0|r}function K(r,e){if(l.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||Ne(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);var t=r.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===t)return 0;for(var c=!1;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return $e(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*t;case"hex":return t>>>1;case"base64":return ot(r).length;default:if(c)return n?-1:$e(r).length;e=(""+e).toLowerCase(),c=!0}}function Ge(r,e,t){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length||((void 0===t||t>this.length)&&(t=this.length),t<=0)||(t>>>=0)<=(e>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return wt(this,e,t);case"utf8":case"utf-8":return nt(this,e,t);case"ascii":return We(this,e,t);case"latin1":case"binary":return Oe(this,e,t);case"base64":return ft(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ue(this,e,t);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function he(r,e,t){var n=r[e];r[e]=r[t],r[t]=n}function ct(r,e,t,n,c){if(0===r.length)return-1;if("string"==typeof t?(n=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),st(t=+t)&&(t=c?0:r.length-1),t<0&&(t=r.length+t),t>=r.length){if(c)return-1;t=r.length-1}else if(t<0){if(!c)return-1;t=0}if("string"==typeof e&&(e=l.from(e,n)),l.isBuffer(e))return 0===e.length?-1:tt(r,e,t,n,c);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?c?Uint8Array.prototype.indexOf.call(r,e,t):Uint8Array.prototype.lastIndexOf.call(r,e,t):tt(r,[e],t,n,c);throw new TypeError("val must be string, number or Buffer")}function tt(r,e,t,n,c){var ce,d=1,E=r.length,J=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||e.length<2)return-1;d=2,E/=2,J/=2,t/=2}function ie(Et,mt){return 1===d?Et[mt]:Et.readUInt16BE(mt*d)}if(c){var Fe=-1;for(ce=t;ceE&&(t=E-J),ce=t;ce>=0;ce--){for(var pe=!0,Ke=0;Kec&&(n=c):n=c;var d=e.length;n>d/2&&(n=d/2);for(var E=0;E>8,d.push(t%256),d.push(n);return d}(e,r.length-t),r,t,n)}function ft(r,e,t){return P.fromByteArray(0===e&&t===r.length?r:r.slice(e,t))}function nt(r,e,t){t=Math.min(r.length,t);for(var n=[],c=e;c239?4:d>223?3:d>191?2:1;if(c+J<=t)switch(J){case 1:d<128&&(E=d);break;case 2:128==(192&(ie=r[c+1]))&&(pe=(31&d)<<6|63&ie)>127&&(E=pe);break;case 3:ce=r[c+2],128==(192&(ie=r[c+1]))&&128==(192&ce)&&(pe=(15&d)<<12|(63&ie)<<6|63&ce)>2047&&(pe<55296||pe>57343)&&(E=pe);break;case 4:ce=r[c+2],Fe=r[c+3],128==(192&(ie=r[c+1]))&&128==(192&ce)&&128==(192&Fe)&&(pe=(15&d)<<18|(63&ie)<<12|(63&ce)<<6|63&Fe)>65535&&pe<1114112&&(E=pe)}null===E?(E=65533,J=1):E>65535&&(n.push((E-=65536)>>>10&1023|55296),E=56320|1023&E),n.push(E),c+=J}return function Le(r){var e=r.length;if(e<=it)return String.fromCharCode.apply(String,r);for(var t="",n=0;nc.length?l.from(E).copy(c,d):Uint8Array.prototype.set.call(c,E,d);else{if(!l.isBuffer(E))throw new TypeError('"list" argument must be an Array of Buffers');E.copy(c,d)}d+=E.length}return c},l.byteLength=K,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tt&&(e+=" ... "),""},Te&&(l.prototype[Te]=l.prototype.inspect),l.prototype.compare=function(e,t,n,c,d){if(Ne(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),!l.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===c&&(c=0),void 0===d&&(d=this.length),t<0||n>e.length||c<0||d>this.length)throw new RangeError("out of range index");if(c>=d&&t>=n)return 0;if(c>=d)return-1;if(t>=n)return 1;if(this===e)return 0;for(var E=(d>>>=0)-(c>>>=0),J=(n>>>=0)-(t>>>=0),ie=Math.min(E,J),ce=this.slice(c,d),Fe=e.slice(t,n),pe=0;pe>>=0,isFinite(n)?(n>>>=0,void 0===c&&(c="utf8")):(c=n,n=void 0)}var d=this.length-t;if((void 0===n||n>d)&&(n=d),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");c||(c="utf8");for(var E=!1;;)switch(c){case"hex":return ut(this,e,t,n);case"utf8":case"utf-8":return qe(this,e,t,n);case"ascii":case"latin1":case"binary":return rt(this,e,t,n);case"base64":return lt(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ye(this,e,t,n);default:if(E)throw new TypeError("Unknown encoding: "+c);c=(""+c).toLowerCase(),E=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var it=4096;function We(r,e,t){var n="";t=Math.min(r.length,t);for(var c=e;cn)&&(t=n);for(var c="",d=e;dt)throw new RangeError("Trying to access beyond buffer length")}function Se(r,e,t,n,c,d){if(!l.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>c||er.length)throw new RangeError("Index out of range")}function ht(r,e,t,n,c,d){if(t+n>r.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function pt(r,e,t,n,c){return e=+e,t>>>=0,c||ht(r,0,t,4),ue.write(r,e,t,n,23,4),t+4}function Ve(r,e,t,n,c){return e=+e,t>>>=0,c||ht(r,0,t,8),ue.write(r,e,t,n,52,8),t+8}l.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e],d=1,E=0;++E>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e+--t],d=1;t>0&&(d*=256);)c+=this[e+--t]*d;return c},l.prototype.readUint8=l.prototype.readUInt8=function(e,t){return e>>>=0,t||be(e,1,this.length),this[e]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(e,t){return e>>>=0,t||be(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(e,t){return e>>>=0,t||be(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(e,t){return e>>>=0,t||be(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(e,t){return e>>>=0,t||be(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e],d=1,E=0;++E=(d*=128)&&(c-=Math.pow(2,8*t)),c},l.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||be(e,t,this.length);for(var c=t,d=1,E=this[e+--c];c>0&&(d*=256);)E+=this[e+--c]*d;return E>=(d*=128)&&(E-=Math.pow(2,8*t)),E},l.prototype.readInt8=function(e,t){return e>>>=0,t||be(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){e>>>=0,t||be(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){e>>>=0,t||be(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return e>>>=0,t||be(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return e>>>=0,t||be(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return e>>>=0,t||be(e,4,this.length),ue.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return e>>>=0,t||be(e,4,this.length),ue.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return e>>>=0,t||be(e,8,this.length),ue.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return e>>>=0,t||be(e,8,this.length),ue.read(this,e,!1,52,8)},l.prototype.writeUintLE=l.prototype.writeUIntLE=function(e,t,n,c){e=+e,t>>>=0,n>>>=0,c||Se(this,e,t,n,Math.pow(2,8*n)-1,0);var E=1,J=0;for(this[t]=255&e;++J>>=0,n>>>=0,c||Se(this,e,t,n,Math.pow(2,8*n)-1,0);var E=n-1,J=1;for(this[t+E]=255&e;--E>=0&&(J*=256);)this[t+E]=e/J&255;return t+n},l.prototype.writeUint8=l.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,1,255,0),this[t]=255&e,t+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeIntLE=function(e,t,n,c){if(e=+e,t>>>=0,!c){var d=Math.pow(2,8*n-1);Se(this,e,t,n,d-1,-d)}var E=0,J=1,ie=0;for(this[t]=255&e;++E>>=0,!c){var d=Math.pow(2,8*n-1);Se(this,e,t,n,d-1,-d)}var E=n-1,J=1,ie=0;for(this[t+E]=255&e;--E>=0&&(J*=256);)e<0&&0===ie&&0!==this[t+E+1]&&(ie=1),this[t+E]=(e/J|0)-ie&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeFloatLE=function(e,t,n){return pt(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return pt(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return Ve(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return Ve(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,c){if(!l.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!c&&0!==c&&(c=this.length),t>=e.length&&(t=e.length),t||(t=0),c>0&&c=this.length)throw new RangeError("Index out of range");if(c<0)throw new RangeError("sourceEnd out of bounds");c>this.length&&(c=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(E=t;E55295&&t<57344){if(!c){if(t>56319){(e-=3)>-1&&d.push(239,191,189);continue}if(E+1===n){(e-=3)>-1&&d.push(239,191,189);continue}c=t;continue}if(t<56320){(e-=3)>-1&&d.push(239,191,189),c=t;continue}t=65536+(c-55296<<10|t-56320)}else c&&(e-=3)>-1&&d.push(239,191,189);if(c=null,t<128){if((e-=1)<0)break;d.push(t)}else if(t<2048){if((e-=2)<0)break;d.push(t>>6|192,63&t|128)}else if(t<65536){if((e-=3)<0)break;d.push(t>>12|224,t>>6&63|128,63&t|128)}else{if(!(t<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;d.push(t>>18|240,t>>12&63|128,t>>6&63|128,63&t|128)}}return d}function ot(r){return P.toByteArray(function Be(r){if((r=(r=r.split("=")[0]).trim().replace(vt,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function Je(r,e,t,n){for(var c=0;c=e.length||c>=r.length);++c)e[c+t]=r[c];return c}function Ne(r,e){return r instanceof e||null!=r&&null!=r.constructor&&null!=r.constructor.name&&r.constructor.name===e.name}function st(r){return r!=r}var kt=function(){for(var r="0123456789abcdef",e=new Array(256),t=0;t<16;++t)for(var n=16*t,c=0;c<16;++c)e[n+c]=r[t]+r[c];return e}()},2020:(Ce,D)=>{D.read=function(Y,P,ue,Te,ne){var _e,B,l=8*ne-Te-1,se=(1<>1,le=-7,te=ue?ne-1:0,me=ue?-1:1,w=Y[P+te];for(te+=me,_e=w&(1<<-le)-1,w>>=-le,le+=l;le>0;_e=256*_e+Y[P+te],te+=me,le-=8);for(B=_e&(1<<-le)-1,_e>>=-le,le+=Te;le>0;B=256*B+Y[P+te],te+=me,le-=8);if(0===_e)_e=1-ke;else{if(_e===se)return B?NaN:1/0*(w?-1:1);B+=Math.pow(2,Te),_e-=ke}return(w?-1:1)*B*Math.pow(2,_e-Te)},D.write=function(Y,P,ue,Te,ne,_e){var B,l,se,ke=8*_e-ne-1,le=(1<>1,me=23===ne?Math.pow(2,-24)-Math.pow(2,-77):0,w=Te?0:_e-1,v=Te?1:-1,V=P<0||0===P&&1/P<0?1:0;for(P=Math.abs(P),isNaN(P)||P===1/0?(l=isNaN(P)?1:0,B=le):(B=Math.floor(Math.log(P)/Math.LN2),P*(se=Math.pow(2,-B))<1&&(B--,se*=2),(P+=B+te>=1?me/se:me*Math.pow(2,1-te))*se>=2&&(B++,se/=2),B+te>=le?(l=0,B=le):B+te>=1?(l=(P*se-1)*Math.pow(2,ne),B+=te):(l=P*Math.pow(2,te-1)*Math.pow(2,ne),B=0));ne>=8;Y[ue+w]=255&l,w+=v,l/=256,ne-=8);for(B=B<0;Y[ue+w]=255&B,w+=v,B/=256,ke-=8);Y[ue+w-v]|=128*V}},573:Ce=>{var Y,P,D=Ce.exports={};function ue(){throw new Error("setTimeout has not been defined")}function Te(){throw new Error("clearTimeout has not been defined")}function ne(v){if(Y===setTimeout)return setTimeout(v,0);if((Y===ue||!Y)&&setTimeout)return Y=setTimeout,setTimeout(v,0);try{return Y(v,0)}catch{try{return Y.call(null,v,0)}catch{return Y.call(this,v,0)}}}!function(){try{Y="function"==typeof setTimeout?setTimeout:ue}catch{Y=ue}try{P="function"==typeof clearTimeout?clearTimeout:Te}catch{P=Te}}();var se,B=[],l=!1,ke=-1;function le(){!l||!se||(l=!1,se.length?B=se.concat(B):ke=-1,B.length&&te())}function te(){if(!l){var v=ne(le);l=!0;for(var V=B.length;V;){for(se=B,B=[];++ke1)for(var R=1;R{"use strict";const Ce=globalThis;function D(o){return(Ce.__Zone_symbol_prefix||"__zone_symbol__")+o}const ue=Object.getOwnPropertyDescriptor,Te=Object.defineProperty,ne=Object.getPrototypeOf,_e=Object.create,B=Array.prototype.slice,l="addEventListener",se="removeEventListener",ke=D(l),le=D(se),te="true",me="false",w=D("");function v(o,a){return Zone.current.wrap(o,a)}function V(o,a,p,s,h){return Zone.current.scheduleMacroTask(o,a,p,s,h)}const R=D,xe=typeof window<"u",ae=xe?window:void 0,K=xe&&ae||globalThis,Ge="removeAttribute";function he(o,a){for(let p=o.length-1;p>=0;p--)"function"==typeof o[p]&&(o[p]=v(o[p],a+"_"+p));return o}function tt(o){return!o||!1!==o.writable&&!("function"==typeof o.get&&typeof o.set>"u")}const ut=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,qe=!("nw"in K)&&typeof K.process<"u"&&"[object process]"===K.process.toString(),rt=!qe&&!ut&&!(!xe||!ae.HTMLElement),lt=typeof K.process<"u"&&"[object process]"===K.process.toString()&&!ut&&!(!xe||!ae.HTMLElement),Ye={},ft=function(o){if(!(o=o||K.event))return;let a=Ye[o.type];a||(a=Ye[o.type]=R("ON_PROPERTY"+o.type));const p=this||o.target||K,s=p[a];let h;return rt&&p===ae&&"error"===o.type?(h=s&&s.call(this,o.message,o.filename,o.lineno,o.colno,o.error),!0===h&&o.preventDefault()):(h=s&&s.apply(this,arguments),null!=h&&!h&&o.preventDefault()),h};function nt(o,a,p){let s=ue(o,a);if(!s&&p&&ue(p,a)&&(s={enumerable:!0,configurable:!0}),!s||!s.configurable)return;const h=R("on"+a+"patched");if(o.hasOwnProperty(h)&&o[h])return;delete s.writable,delete s.value;const m=s.get,x=s.set,b=a.slice(2);let I=Ye[b];I||(I=Ye[b]=R("ON_PROPERTY"+b)),s.set=function(H){let C=this;!C&&o===K&&(C=K),C&&("function"==typeof C[I]&&C.removeEventListener(b,ft),x&&x.call(C,null),C[I]=H,"function"==typeof H&&C.addEventListener(b,ft,!1))},s.get=function(){let H=this;if(!H&&o===K&&(H=K),!H)return null;const C=H[I];if(C)return C;if(m){let $=m.call(this);if($)return s.set.call(this,$),"function"==typeof H[Ge]&&H.removeAttribute(a),$}return null},Te(o,a,s),o[h]=!0}function it(o,a,p){if(a)for(let s=0;sfunction(x,b){const I=p(x,b);return I.cbIdx>=0&&"function"==typeof b[I.cbIdx]?V(I.name,b[I.cbIdx],I,h):m.apply(x,b)})}function Ue(o,a){o[R("OriginalDelegate")]=a}let be=!1,Se=!1;function pt(){if(be)return Se;be=!0;try{const o=ae.navigator.userAgent;(-1!==o.indexOf("MSIE ")||-1!==o.indexOf("Trident/")||-1!==o.indexOf("Edge/"))&&(Se=!0)}catch{}return Se}let Ve=!1;if(typeof window<"u")try{const o=Object.defineProperty({},"passive",{get:function(){Ve=!0}});window.addEventListener("test",o,o),window.removeEventListener("test",o,o)}catch{Ve=!1}const vt={useG:!0},Be={},$e={},dt=new RegExp("^"+w+"(\\w+)(true|false)$"),yt=R("propagationStopped");function ot(o,a){const p=(a?a(o):o)+me,s=(a?a(o):o)+te,h=w+p,m=w+s;Be[o]={},Be[o][me]=h,Be[o][te]=m}function Je(o,a,p,s){const h=s&&s.add||l,m=s&&s.rm||se,x=s&&s.listeners||"eventListeners",b=s&&s.rmAll||"removeAllListeners",I=R(h),H="."+h+":",C="prependListener",$="."+C+":",U=function(N,g,fe){if(N.isRemoved)return;const we=N.callback;let Re;"object"==typeof we&&we.handleEvent&&(N.callback=A=>we.handleEvent(A),N.originalDelegate=we);try{N.invoke(N,g,[fe])}catch(A){Re=A}const de=N.options;return de&&"object"==typeof de&&de.once&&g[m].call(g,fe.type,N.originalDelegate?N.originalDelegate:N.callback,de),Re};function re(N,g,fe){if(!(g=g||o.event))return;const we=N||g.target||o,Re=we[Be[g.type][fe?te:me]];if(Re){const de=[];if(1===Re.length){const A=U(Re[0],we,g);A&&de.push(A)}else{const A=Re.slice();for(let ye=0;ye{throw ye})}}}const ge=function(N){return re(this,N,!1)},oe=function(N){return re(this,N,!0)};function Ze(N,g){if(!N)return!1;let fe=!0;g&&void 0!==g.useG&&(fe=g.useG);const we=g&&g.vh;let Re=!0;g&&void 0!==g.chkDup&&(Re=g.chkDup);let de=!1;g&&void 0!==g.rt&&(de=g.rt);let A=N;for(;A&&!A.hasOwnProperty(h);)A=ne(A);if(!A&&N[h]&&(A=N),!A||A[I])return!1;const ye=g&&g.eventNameToString,q={},Z=A[I]=A[h],L=A[R(m)]=A[m],W=A[R(x)]=A[x],Pe=A[R(b)]=A[b];let ve;g&&g.prepend&&(ve=A[R(g.prepend)]=A[g.prepend]);const Ie=fe?function(f){if(!q.isExisting)return Z.call(q.target,q.eventName,q.capture?oe:ge,q.options)}:function(f){return Z.call(q.target,q.eventName,f.invoke,q.options)},Q=fe?function(f){if(!f.isRemoved){const y=Be[f.eventName];let _;y&&(_=y[f.capture?te:me]);const M=_&&f.target[_];if(M)for(let j=0;jHe.zone.cancelTask(He);f.call(Qe,"abort",je,{once:!0}),Xe&&(Xe.removeAbortListener=()=>Qe.removeEventListener("abort",je))}return q.target=null,Xe&&(Xe.taskData=null),At&&(Me.once=!0),!Ve&&"boolean"==typeof He.options||(He.options=Me),He.target=O,He.capture=xt,He.eventName=G,Ee&&(He.originalDelegate=ee),F?et.unshift(He):et.push(He),j?O:void 0}};return A[h]=T(Z,H,Ie,Q,de),ve&&(A[C]=T(ve,$,function(f){return ve.call(q.target,q.eventName,f.invoke,q.options)},Q,de,!0)),A[m]=function(){const f=this||o;let y=arguments[0];g&&g.transferEventName&&(y=g.transferEventName(y));const _=arguments[2],M=!!_&&("boolean"==typeof _||_.capture),j=arguments[1];if(!j)return L.apply(this,arguments);if(we&&!we(L,j,f,arguments))return;const F=Be[y];let O;F&&(O=F[M?te:me]);const G=O&&f[O];if(G)for(let ee=0;eefunction(h,m){h[yt]=!0,s&&s.apply(h,m)})}const r=R("zoneTask");function e(o,a,p,s){let h=null,m=null;p+=s;const x={};function b(H){const C=H.data;return C.args[0]=function(){return H.invoke.apply(this,arguments)},C.handleId=h.apply(o,C.args),H}function I(H){return m.call(o,H.data.handleId)}h=Oe(o,a+=s,H=>function(C,$){if("function"==typeof $[0]){const U={isPeriodic:"Interval"===s,delay:"Timeout"===s||"Interval"===s?$[1]||0:void 0,args:$},re=$[0];$[0]=function(){try{return re.apply(this,arguments)}finally{U.isPeriodic||("number"==typeof U.handleId?delete x[U.handleId]:U.handleId&&(U.handleId[r]=null))}};const ge=V(a,$[0],U,b,I);if(!ge)return ge;const oe=ge.data.handleId;return"number"==typeof oe?x[oe]=ge:oe&&(oe[r]=ge),oe&&oe.ref&&oe.unref&&"function"==typeof oe.ref&&"function"==typeof oe.unref&&(ge.ref=oe.ref.bind(oe),ge.unref=oe.unref.bind(oe)),"number"==typeof oe||oe?oe:ge}return H.apply(o,$)}),m=Oe(o,p,H=>function(C,$){const U=$[0];let re;"number"==typeof U?re=x[U]:(re=U&&U[r],re||(re=U)),re&&"string"==typeof re.type?"notScheduled"!==re.state&&(re.cancelFn&&re.data.isPeriodic||0===re.runCount)&&("number"==typeof U?delete x[U]:U&&(U[r]=null),re.zone.cancelTask(re)):H.apply(o,$)})}function d(o,a,p){if(!p||0===p.length)return a;const s=p.filter(m=>m.target===o);if(!s||0===s.length)return a;const h=s[0].ignoreProperties;return a.filter(m=>-1===h.indexOf(m))}function E(o,a,p,s){o&&it(o,d(o,a,p),s)}function J(o){return Object.getOwnPropertyNames(o).filter(a=>a.startsWith("on")&&a.length>2).map(a=>a.substring(2))}function Ke(o,a,p,s,h){const m=Zone.__symbol__(s);if(a[m])return;const x=a[m]=a[s];a[s]=function(b,I,H){return I&&I.prototype&&h.forEach(function(C){const $=`${p}.${s}::`+C,U=I.prototype;try{if(U.hasOwnProperty(C)){const re=o.ObjectGetOwnPropertyDescriptor(U,C);re&&re.value?(re.value=o.wrapWithCurrentZone(re.value,$),o._redefineProperty(I.prototype,C,re)):U[C]&&(U[C]=o.wrapWithCurrentZone(U[C],$))}else U[C]&&(U[C]=o.wrapWithCurrentZone(U[C],$))}catch{}}),x.call(a,b,I,H)},o.attachOriginToPatched(a[s],x)}const Ct=function P(){const o=globalThis,a=!0===o[D("forceDuplicateZoneCheck")];if(o.Zone&&(a||"function"!=typeof o.Zone.__symbol__))throw new Error("Zone already loaded.");return o.Zone??=function Y(){const o=Ce.performance;function a(X){o&&o.mark&&o.mark(X)}function p(X,k){o&&o.measure&&o.measure(X,k)}a("Zone");let s=(()=>{class X{static#e=this.__symbol__=D;static assertZonePatched(){if(Ce.Promise!==q.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 i=X.current;for(;i.parent;)i=i.parent;return i}static get current(){return L.zone}static get currentTask(){return W}static __load_patch(i,u,S=!1){if(q.hasOwnProperty(i)){const z=!0===Ce[D("forceDuplicateZoneCheck")];if(!S&&z)throw Error("Already loaded patch: "+i)}else if(!Ce["__Zone_disable_"+i]){const z="Zone:"+i;a(z),q[i]=u(Ce,X,Z),p(z,z)}}get parent(){return this._parent}get name(){return this._name}constructor(i,u){this._parent=i,this._name=u?u.name||"unnamed":"",this._properties=u&&u.properties||{},this._zoneDelegate=new m(this,this._parent&&this._parent._zoneDelegate,u)}get(i){const u=this.getZoneWith(i);if(u)return u._properties[i]}getZoneWith(i){let u=this;for(;u;){if(u._properties.hasOwnProperty(i))return u;u=u._parent}return null}fork(i){if(!i)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,i)}wrap(i,u){if("function"!=typeof i)throw new Error("Expecting function got: "+i);const S=this._zoneDelegate.intercept(this,i,u),z=this;return function(){return z.runGuarded(S,this,arguments,u)}}run(i,u,S,z){L={parent:L,zone:this};try{return this._zoneDelegate.invoke(this,i,u,S,z)}finally{L=L.parent}}runGuarded(i,u=null,S,z){L={parent:L,zone:this};try{try{return this._zoneDelegate.invoke(this,i,u,S,z)}catch(Ie){if(this._zoneDelegate.handleError(this,Ie))throw Ie}}finally{L=L.parent}}runTask(i,u,S){if(i.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(i.zone||Ze).name+"; Execution: "+this.name+")");if(i.state===Ae&&(i.type===ye||i.type===A))return;const z=i.state!=fe;z&&i._transitionTo(fe,g),i.runCount++;const Ie=W;W=i,L={parent:L,zone:this};try{i.type==A&&i.data&&!i.data.isPeriodic&&(i.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,i,u,S)}catch(Q){if(this._zoneDelegate.handleError(this,Q))throw Q}}finally{i.state!==Ae&&i.state!==Re&&(i.type==ye||i.data&&i.data.isPeriodic?z&&i._transitionTo(g,fe):(i.runCount=0,this._updateTaskCount(i,-1),z&&i._transitionTo(Ae,fe,Ae))),L=L.parent,W=Ie}}scheduleTask(i){if(i.zone&&i.zone!==this){let S=this;for(;S;){if(S===i.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${i.zone.name}`);S=S.parent}}i._transitionTo(N,Ae);const u=[];i._zoneDelegates=u,i._zone=this;try{i=this._zoneDelegate.scheduleTask(this,i)}catch(S){throw i._transitionTo(Re,N,Ae),this._zoneDelegate.handleError(this,S),S}return i._zoneDelegates===u&&this._updateTaskCount(i,1),i.state==N&&i._transitionTo(g,N),i}scheduleMicroTask(i,u,S,z){return this.scheduleTask(new x(de,i,u,S,z,void 0))}scheduleMacroTask(i,u,S,z,Ie){return this.scheduleTask(new x(A,i,u,S,z,Ie))}scheduleEventTask(i,u,S,z,Ie){return this.scheduleTask(new x(ye,i,u,S,z,Ie))}cancelTask(i){if(i.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(i.zone||Ze).name+"; Execution: "+this.name+")");if(i.state===g||i.state===fe){i._transitionTo(we,g,fe);try{this._zoneDelegate.cancelTask(this,i)}catch(u){throw i._transitionTo(Re,we),this._zoneDelegate.handleError(this,u),u}return this._updateTaskCount(i,-1),i._transitionTo(Ae,we),i.runCount=0,i}}_updateTaskCount(i,u){const S=i._zoneDelegates;-1==u&&(i._zoneDelegates=null);for(let z=0;zX.hasTask(i,u),onScheduleTask:(X,k,i,u)=>X.scheduleTask(i,u),onInvokeTask:(X,k,i,u,S,z)=>X.invokeTask(i,u,S,z),onCancelTask:(X,k,i,u)=>X.cancelTask(i,u)};class m{get zone(){return this._zone}constructor(k,i,u){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this._zone=k,this._parentDelegate=i,this._forkZS=u&&(u&&u.onFork?u:i._forkZS),this._forkDlgt=u&&(u.onFork?i:i._forkDlgt),this._forkCurrZone=u&&(u.onFork?this._zone:i._forkCurrZone),this._interceptZS=u&&(u.onIntercept?u:i._interceptZS),this._interceptDlgt=u&&(u.onIntercept?i:i._interceptDlgt),this._interceptCurrZone=u&&(u.onIntercept?this._zone:i._interceptCurrZone),this._invokeZS=u&&(u.onInvoke?u:i._invokeZS),this._invokeDlgt=u&&(u.onInvoke?i:i._invokeDlgt),this._invokeCurrZone=u&&(u.onInvoke?this._zone:i._invokeCurrZone),this._handleErrorZS=u&&(u.onHandleError?u:i._handleErrorZS),this._handleErrorDlgt=u&&(u.onHandleError?i:i._handleErrorDlgt),this._handleErrorCurrZone=u&&(u.onHandleError?this._zone:i._handleErrorCurrZone),this._scheduleTaskZS=u&&(u.onScheduleTask?u:i._scheduleTaskZS),this._scheduleTaskDlgt=u&&(u.onScheduleTask?i:i._scheduleTaskDlgt),this._scheduleTaskCurrZone=u&&(u.onScheduleTask?this._zone:i._scheduleTaskCurrZone),this._invokeTaskZS=u&&(u.onInvokeTask?u:i._invokeTaskZS),this._invokeTaskDlgt=u&&(u.onInvokeTask?i:i._invokeTaskDlgt),this._invokeTaskCurrZone=u&&(u.onInvokeTask?this._zone:i._invokeTaskCurrZone),this._cancelTaskZS=u&&(u.onCancelTask?u:i._cancelTaskZS),this._cancelTaskDlgt=u&&(u.onCancelTask?i:i._cancelTaskDlgt),this._cancelTaskCurrZone=u&&(u.onCancelTask?this._zone:i._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const S=u&&u.onHasTask;(S||i&&i._hasTaskZS)&&(this._hasTaskZS=S?u:h,this._hasTaskDlgt=i,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=this._zone,u.onScheduleTask||(this._scheduleTaskZS=h,this._scheduleTaskDlgt=i,this._scheduleTaskCurrZone=this._zone),u.onInvokeTask||(this._invokeTaskZS=h,this._invokeTaskDlgt=i,this._invokeTaskCurrZone=this._zone),u.onCancelTask||(this._cancelTaskZS=h,this._cancelTaskDlgt=i,this._cancelTaskCurrZone=this._zone))}fork(k,i){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,k,i):new s(k,i)}intercept(k,i,u){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,k,i,u):i}invoke(k,i,u,S,z){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,k,i,u,S,z):i.apply(u,S)}handleError(k,i){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,k,i)}scheduleTask(k,i){let u=i;if(this._scheduleTaskZS)this._hasTaskZS&&u._zoneDelegates.push(this._hasTaskDlgtOwner),u=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,k,i),u||(u=i);else if(i.scheduleFn)i.scheduleFn(i);else{if(i.type!=de)throw new Error("Task is missing scheduleFn.");ge(i)}return u}invokeTask(k,i,u,S){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,k,i,u,S):i.callback.apply(u,S)}cancelTask(k,i){let u;if(this._cancelTaskZS)u=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,k,i);else{if(!i.cancelFn)throw Error("Task is not cancelable");u=i.cancelFn(i)}return u}hasTask(k,i){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,k,i)}catch(u){this.handleError(k,u)}}_updateTaskCount(k,i){const u=this._taskCounts,S=u[k],z=u[k]=S+i;if(z<0)throw new Error("More tasks executed then were scheduled.");0!=S&&0!=z||this.hasTask(this._zone,{microTask:u.microTask>0,macroTask:u.macroTask>0,eventTask:u.eventTask>0,change:k})}}class x{constructor(k,i,u,S,z,Ie){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=k,this.source=i,this.data=S,this.scheduleFn=z,this.cancelFn=Ie,!u)throw new Error("callback is not defined");this.callback=u;const Q=this;this.invoke=k===ye&&S&&S.useG?x.invokeTask:function(){return x.invokeTask.call(Ce,Q,this,arguments)}}static invokeTask(k,i,u){k||(k=this),Pe++;try{return k.runCount++,k.zone.runTask(k,i,u)}finally{1==Pe&&oe(),Pe--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(Ae,N)}_transitionTo(k,i,u){if(this._state!==i&&this._state!==u)throw new Error(`${this.type} '${this.source}': can not transition to '${k}', expecting state '${i}'${u?" or '"+u+"'":""}, was '${this._state}'.`);this._state=k,k==Ae&&(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 b=D("setTimeout"),I=D("Promise"),H=D("then");let U,C=[],$=!1;function re(X){if(U||Ce[I]&&(U=Ce[I].resolve(0)),U){let k=U[H];k||(k=U.then),k.call(U,X)}else Ce[b](X,0)}function ge(X){0===Pe&&0===C.length&&re(oe),X&&C.push(X)}function oe(){if(!$){for($=!0;C.length;){const X=C;C=[];for(let k=0;kL,onUnhandledError:ve,microtaskDrainDone:ve,scheduleMicroTask:ge,showUncaughtError:()=>!s[D("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:ve,patchMethod:()=>ve,bindArguments:()=>[],patchThen:()=>ve,patchMacroTask:()=>ve,patchEventPrototype:()=>ve,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>ve,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>ve,wrapWithCurrentZone:()=>ve,filterProperties:()=>[],attachOriginToPatched:()=>ve,_redefineProperty:()=>ve,patchCallbacks:()=>ve,nativeScheduleMicroTask:re};let L={parent:null,zone:new s(null,null)},W=null,Pe=0;function ve(){}return p("Zone","Zone"),s}(),o.Zone}();(function mt(o){(function Fe(o){o.__load_patch("ZoneAwarePromise",(a,p,s)=>{const h=Object.getOwnPropertyDescriptor,m=Object.defineProperty,b=s.symbol,I=[],H=!1!==a[b("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],C=b("Promise"),$=b("then"),U="__creationTrace__";s.onUnhandledError=T=>{if(s.showUncaughtError()){const f=T&&T.rejection;f?console.error("Unhandled Promise rejection:",f instanceof Error?f.message:f,"; Zone:",T.zone.name,"; Task:",T.task&&T.task.source,"; Value:",f,f instanceof Error?f.stack:void 0):console.error(T)}},s.microtaskDrainDone=()=>{for(;I.length;){const T=I.shift();try{T.zone.runGuarded(()=>{throw T.throwOriginal?T.rejection:T})}catch(f){ge(f)}}};const re=b("unhandledPromiseRejectionHandler");function ge(T){s.onUnhandledError(T);try{const f=p[re];"function"==typeof f&&f.call(this,T)}catch{}}function oe(T){return T&&T.then}function Ze(T){return T}function Ae(T){return Q.reject(T)}const N=b("state"),g=b("value"),fe=b("finally"),we=b("parentPromiseValue"),Re=b("parentPromiseState"),de="Promise.then",A=null,ye=!0,q=!1,Z=0;function L(T,f){return y=>{try{X(T,f,y)}catch(_){X(T,!1,_)}}}const W=function(){let T=!1;return function(y){return function(){T||(T=!0,y.apply(null,arguments))}}},Pe="Promise resolved with itself",ve=b("currentTaskTrace");function X(T,f,y){const _=W();if(T===y)throw new TypeError(Pe);if(T[N]===A){let M=null;try{("object"==typeof y||"function"==typeof y)&&(M=y&&y.then)}catch(j){return _(()=>{X(T,!1,j)})(),T}if(f!==q&&y instanceof Q&&y.hasOwnProperty(N)&&y.hasOwnProperty(g)&&y[N]!==A)i(y),X(T,y[N],y[g]);else if(f!==q&&"function"==typeof M)try{M.call(y,_(L(T,f)),_(L(T,!1)))}catch(j){_(()=>{X(T,!1,j)})()}else{T[N]=f;const j=T[g];if(T[g]=y,T[fe]===fe&&f===ye&&(T[N]=T[Re],T[g]=T[we]),f===q&&y instanceof Error){const F=p.currentTask&&p.currentTask.data&&p.currentTask.data[U];F&&m(y,ve,{configurable:!0,enumerable:!1,writable:!0,value:F})}for(let F=0;F{try{const O=T[g],G=!!y&&fe===y[fe];G&&(y[we]=O,y[Re]=j);const ee=f.run(F,void 0,G&&F!==Ae&&F!==Ze?[]:[O]);X(y,!0,ee)}catch(O){X(y,!1,O)}},y)}const z=function(){},Ie=a.AggregateError;class Q{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(f){return f instanceof Q?f:X(new this(null),ye,f)}static reject(f){return X(new this(null),q,f)}static withResolvers(){const f={};return f.promise=new Q((y,_)=>{f.resolve=y,f.reject=_}),f}static any(f){if(!f||"function"!=typeof f[Symbol.iterator])return Promise.reject(new Ie([],"All promises were rejected"));const y=[];let _=0;try{for(let F of f)_++,y.push(Q.resolve(F))}catch{return Promise.reject(new Ie([],"All promises were rejected"))}if(0===_)return Promise.reject(new Ie([],"All promises were rejected"));let M=!1;const j=[];return new Q((F,O)=>{for(let G=0;G{M||(M=!0,F(ee))},ee=>{j.push(ee),_--,0===_&&(M=!0,O(new Ie(j,"All promises were rejected")))})})}static race(f){let y,_,M=new this((O,G)=>{y=O,_=G});function j(O){y(O)}function F(O){_(O)}for(let O of f)oe(O)||(O=this.resolve(O)),O.then(j,F);return M}static all(f){return Q.allWithCallback(f)}static allSettled(f){return(this&&this.prototype instanceof Q?this:Q).allWithCallback(f,{thenCallback:_=>({status:"fulfilled",value:_}),errorCallback:_=>({status:"rejected",reason:_})})}static allWithCallback(f,y){let _,M,j=new this((ee,Ee)=>{_=ee,M=Ee}),F=2,O=0;const G=[];for(let ee of f){oe(ee)||(ee=this.resolve(ee));const Ee=O;try{ee.then(De=>{G[Ee]=y?y.thenCallback(De):De,F--,0===F&&_(G)},De=>{y?(G[Ee]=y.errorCallback(De),F--,0===F&&_(G)):M(De)})}catch(De){M(De)}F++,O++}return F-=2,0===F&&_(G),j}constructor(f){const y=this;if(!(y instanceof Q))throw new Error("Must be an instanceof Promise.");y[N]=A,y[g]=[];try{const _=W();f&&f(_(L(y,ye)),_(L(y,q)))}catch(_){X(y,!1,_)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return Q}then(f,y){let _=this.constructor?.[Symbol.species];(!_||"function"!=typeof _)&&(_=this.constructor||Q);const M=new _(z),j=p.current;return this[N]==A?this[g].push(j,M,f,y):u(this,j,M,f,y),M}catch(f){return this.then(null,f)}finally(f){let y=this.constructor?.[Symbol.species];(!y||"function"!=typeof y)&&(y=Q);const _=new y(z);_[fe]=fe;const M=p.current;return this[N]==A?this[g].push(M,_,f,f):u(this,M,_,f,f),_}}Q.resolve=Q.resolve,Q.reject=Q.reject,Q.race=Q.race,Q.all=Q.all;const Tt=a[C]=a.Promise;a.Promise=Q;const at=b("thenPatched");function ze(T){const f=T.prototype,y=h(f,"then");if(y&&(!1===y.writable||!y.configurable))return;const _=f.then;f[$]=_,T.prototype.then=function(M,j){return new Q((O,G)=>{_.call(this,O,G)}).then(M,j)},T[at]=!0}return s.patchThen=ze,Tt&&(ze(Tt),Oe(a,"fetch",T=>function _t(T){return function(f,y){let _=T.apply(f,y);if(_ instanceof Q)return _;let M=_.constructor;return M[at]||ze(M),_}}(T))),Promise[p.__symbol__("uncaughtPromiseErrors")]=I,Q})})(o),function pe(o){o.__load_patch("toString",a=>{const p=Function.prototype.toString,s=R("OriginalDelegate"),h=R("Promise"),m=R("Error"),x=function(){if("function"==typeof this){const C=this[s];if(C)return"function"==typeof C?p.call(C):Object.prototype.toString.call(C);if(this===Promise){const $=a[h];if($)return p.call($)}if(this===Error){const $=a[m];if($)return p.call($)}}return p.call(this)};x[s]=p,Function.prototype.toString=x;const b=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":b.call(this)}})}(o),function Et(o){o.__load_patch("util",(a,p,s)=>{const h=J(a);s.patchOnProperties=it,s.patchMethod=Oe,s.bindArguments=he,s.patchMacroTask=wt;const m=p.__symbol__("BLACK_LISTED_EVENTS"),x=p.__symbol__("UNPATCHED_EVENTS");a[x]&&(a[m]=a[x]),a[m]&&(p[m]=p[x]=a[m]),s.patchEventPrototype=st,s.patchEventTarget=Je,s.isIEOrEdge=pt,s.ObjectDefineProperty=Te,s.ObjectGetOwnPropertyDescriptor=ue,s.ObjectCreate=_e,s.ArraySlice=B,s.patchClass=We,s.wrapWithCurrentZone=v,s.filterProperties=d,s.attachOriginToPatched=Ue,s._redefineProperty=Object.defineProperty,s.patchCallbacks=Ke,s.getGlobalObjects=()=>({globalSources:$e,zoneSymbolEventNames:Be,eventNames:h,isBrowser:rt,isMix:lt,isNode:qe,TRUE_STR:te,FALSE_STR:me,ZONE_SYMBOL_PREFIX:w,ADD_EVENT_LISTENER_STR:l,REMOVE_EVENT_LISTENER_STR:se})})}(o)})(Ct),function ce(o){o.__load_patch("legacy",a=>{const p=a[o.__symbol__("legacyPatch")];p&&p()}),o.__load_patch("timers",a=>{const p="set",s="clear";e(a,p,s,"Timeout"),e(a,p,s,"Interval"),e(a,p,s,"Immediate")}),o.__load_patch("requestAnimationFrame",a=>{e(a,"request","cancel","AnimationFrame"),e(a,"mozRequest","mozCancel","AnimationFrame"),e(a,"webkitRequest","webkitCancel","AnimationFrame")}),o.__load_patch("blocking",(a,p)=>{const s=["alert","prompt","confirm"];for(let h=0;hfunction(H,C){return p.current.run(x,a,C,I)})}),o.__load_patch("EventTarget",(a,p,s)=>{(function c(o,a){a.patchEventPrototype(o,a)})(a,s),function n(o,a){if(Zone[a.symbol("patchEventTarget")])return;const{eventNames:p,zoneSymbolEventNames:s,TRUE_STR:h,FALSE_STR:m,ZONE_SYMBOL_PREFIX:x}=a.getGlobalObjects();for(let I=0;I{We("MutationObserver"),We("WebKitMutationObserver")}),o.__load_patch("IntersectionObserver",(a,p,s)=>{We("IntersectionObserver")}),o.__load_patch("FileReader",(a,p,s)=>{We("FileReader")}),o.__load_patch("on_property",(a,p,s)=>{!function ie(o,a){if(qe&&!lt||Zone[o.symbol("patchEvents")])return;const p=a.__Zone_ignore_on_properties;let s=[];if(rt){const h=window;s=s.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const m=function ht(){try{const o=ae.navigator.userAgent;if(-1!==o.indexOf("MSIE ")||-1!==o.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:h,ignoreProperties:["error"]}]:[];E(h,J(h),p&&p.concat(m),ne(h))}s=s.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let h=0;h{!function t(o,a){const{isBrowser:p,isMix:s}=a.getGlobalObjects();(p||s)&&o.customElements&&"customElements"in o&&a.patchCallbacks(a,o.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(a,s)}),o.__load_patch("XHR",(a,p)=>{!function H(C){const $=C.XMLHttpRequest;if(!$)return;const U=$.prototype;let ge=U[ke],oe=U[le];if(!ge){const Z=C.XMLHttpRequestEventTarget;if(Z){const L=Z.prototype;ge=L[ke],oe=L[le]}}const Ze="readystatechange",Ae="scheduled";function N(Z){const L=Z.data,W=L.target;W[x]=!1,W[I]=!1;const Pe=W[m];ge||(ge=W[ke],oe=W[le]),Pe&&oe.call(W,Ze,Pe);const ve=W[m]=()=>{if(W.readyState===W.DONE)if(!L.aborted&&W[x]&&Z.state===Ae){const k=W[p.__symbol__("loadfalse")];if(0!==W.status&&k&&k.length>0){const i=Z.invoke;Z.invoke=function(){const u=W[p.__symbol__("loadfalse")];for(let S=0;Sfunction(Z,L){return Z[h]=0==L[2],Z[b]=L[1],we.apply(Z,L)}),de=R("fetchTaskAborting"),A=R("fetchTaskScheduling"),ye=Oe(U,"send",()=>function(Z,L){if(!0===p.current[A]||Z[h])return ye.apply(Z,L);{const W={target:Z,url:Z[b],isPeriodic:!1,args:L,aborted:!1},Pe=V("XMLHttpRequest.send",g,W,N,fe);Z&&!0===Z[I]&&!W.aborted&&Pe.state===Ae&&Pe.invoke()}}),q=Oe(U,"abort",()=>function(Z,L){const W=function re(Z){return Z[s]}(Z);if(W&&"string"==typeof W.type){if(null==W.cancelFn||W.data&&W.data.aborted)return;W.zone.cancelTask(W)}else if(!0===p.current[de])return q.apply(Z,L)})}(a);const s=R("xhrTask"),h=R("xhrSync"),m=R("xhrListener"),x=R("xhrScheduled"),b=R("xhrURL"),I=R("xhrErrorBeforeScheduled")}),o.__load_patch("geolocation",a=>{a.navigator&&a.navigator.geolocation&&function ct(o,a){const p=o.constructor.name;for(let s=0;s{const I=function(){return b.apply(this,he(arguments,p+"."+h))};return Ue(I,b),I})(m)}}}(a.navigator.geolocation,["getCurrentPosition","watchPosition"])}),o.__load_patch("PromiseRejectionEvent",(a,p)=>{function s(h){return function(m){Ne(a,h).forEach(b=>{const I=a.PromiseRejectionEvent;if(I){const H=new I(h,{promise:m.promise,reason:m.rejection});b.invoke(H)}})}}a.PromiseRejectionEvent&&(p[R("unhandledPromiseRejectionHandler")]=s("unhandledrejection"),p[R("rejectionHandledHandler")]=s("rejectionhandled"))}),o.__load_patch("queueMicrotask",(a,p,s)=>{!function kt(o,a){a.patchMethod(o,"queueMicrotask",p=>function(s,h){Zone.current.scheduleMicroTask("queueMicrotask",h[0])})}(a,s)})}(Ct)}},Ce=>{var D=P=>Ce(Ce.s=P);D(6935),D(4050)}]); \ No newline at end of file diff --git a/frontend/polyfills.2fc68655e9a361e8.js b/frontend/polyfills.2fc68655e9a361e8.js new file mode 100644 index 00000000..4001d7f2 --- /dev/null +++ b/frontend/polyfills.2fc68655e9a361e8.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[461],{4050:(Se,B,$)=>{window.global=window,window.global.Buffer=window.global.Buffer||$(3838).Buffer,window.global.process=window.global.process||$(573)},3981:(Se,B)=>{"use strict";B.byteLength=function l(w){var k=N(w),R=k[1];return 3*(k[0]+R)/4-R},B.toByteArray=function be(w){var k,Ee,G=N(w),R=G[0],Ce=G[1],le=new de(function ue(w,k,G){return 3*(k+G)/4-G}(0,R,Ce)),K=0,Ve=Ce>0?R-4:R;for(Ee=0;Ee>16&255,le[K++]=k>>8&255,le[K++]=255&k;return 2===Ce&&(k=L[w.charCodeAt(Ee)]<<2|L[w.charCodeAt(Ee+1)]>>4,le[K++]=255&k),1===Ce&&(k=L[w.charCodeAt(Ee)]<<10|L[w.charCodeAt(Ee+1)]<<4|L[w.charCodeAt(Ee+2)]>>2,le[K++]=k>>8&255,le[K++]=255&k),le},B.fromByteArray=function ge(w){for(var k,G=w.length,R=G%3,Ce=[],K=0,Ve=G-R;KVe?Ve:K+16383));return 1===R?Ce.push($[(k=w[G-1])>>2]+$[k<<4&63]+"=="):2===R&&Ce.push($[(k=(w[G-2]<<8)+w[G-1])>>10]+$[k>>4&63]+$[k<<2&63]+"="),Ce.join("")};for(var $=[],L=[],de=typeof Uint8Array<"u"?Uint8Array:Array,we="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",re=0;re<64;++re)$[re]=we[re],L[we.charCodeAt(re)]=re;function N(w){var k=w.length;if(k%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var G=w.indexOf("=");return-1===G&&(G=k),[G,G===k?0:4-G%4]}function ye(w){return $[w>>18&63]+$[w>>12&63]+$[w>>6&63]+$[63&w]}function te(w,k,G){for(var Ce=[],le=k;le{"use strict";var L=$(3981),de=$(2020),we="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;B.Buffer=l,B.SlowBuffer=function le(r){return+r!=r&&(r=0),l.alloc(+r)},B.INSPECT_MAX_BYTES=50;var re=2147483647;function N(r){if(r>re)throw new RangeError('The value "'+r+'" is invalid for option "size"');var e=new Uint8Array(r);return Object.setPrototypeOf(e,l.prototype),e}function l(r,e,t){if("number"==typeof r){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return te(r)}return ue(r,e,t)}function ue(r,e,t){if("string"==typeof r)return function ge(r,e){if(("string"!=typeof e||""===e)&&(e="utf8"),!l.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var t=0|K(r,e),n=N(t),a=n.write(r,e);return a!==t&&(n=n.slice(0,a)),n}(r,e);if(ArrayBuffer.isView(r))return function k(r){if(Me(r,Uint8Array)){var e=new Uint8Array(r);return G(e.buffer,e.byteOffset,e.byteLength)}return w(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(Me(r,ArrayBuffer)||r&&Me(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Me(r,SharedArrayBuffer)||r&&Me(r.buffer,SharedArrayBuffer)))return G(r,e,t);if("number"==typeof r)throw new TypeError('The "value" argument must not be of type number. Received type number');var n=r.valueOf&&r.valueOf();if(null!=n&&n!==r)return l.from(n,e,t);var a=function R(r){if(l.isBuffer(r)){var e=0|Ce(r.length),t=N(e);return 0===t.length||r.copy(t,0,0,e),t}return void 0!==r.length?"number"!=typeof r.length||et(r.length)?N(0):w(r):"Buffer"===r.type&&Array.isArray(r.data)?w(r.data):void 0}(r);if(a)return a;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof r[Symbol.toPrimitive])return l.from(r[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}function be(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 te(r){return be(r),N(r<0?0:0|Ce(r))}function w(r){for(var e=r.length<0?0:0|Ce(r.length),t=N(e),n=0;n=re)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+re.toString(16)+" bytes");return 0|r}function K(r,e){if(l.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||Me(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);var t=r.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===t)return 0;for(var a=!1;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return He(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*t;case"hex":return t>>>1;case"base64":return ct(r).length;default:if(a)return n?-1:He(r).length;e=(""+e).toLowerCase(),a=!0}}function Ve(r,e,t){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length||((void 0===t||t>this.length)&&(t=this.length),t<=0)||(t>>>=0)<=(e>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return Oe(this,e,t);case"utf8":case"utf-8":return st(this,e,t);case"ascii":return Ne(this,e,t);case"latin1":case"binary":return Ye(this,e,t);case"base64":return wt(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return kt(this,e,t);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function Ee(r,e,t){var n=r[e];r[e]=r[t],r[t]=n}function lt(r,e,t,n,a){if(0===r.length)return-1;if("string"==typeof t?(n=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),et(t=+t)&&(t=a?0:r.length-1),t<0&&(t=r.length+t),t>=r.length){if(a)return-1;t=r.length-1}else if(t<0){if(!a)return-1;t=0}if("string"==typeof e&&(e=l.from(e,n)),l.isBuffer(e))return 0===e.length?-1:it(r,e,t,n,a);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?a?Uint8Array.prototype.indexOf.call(r,e,t):Uint8Array.prototype.lastIndexOf.call(r,e,t):it(r,[e],t,n,a);throw new TypeError("val must be string, number or Buffer")}function it(r,e,t,n,a){var ce,d=1,y=r.length,Q=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||e.length<2)return-1;d=2,y/=2,Q/=2,t/=2}function ne(Tt,mt){return 1===d?Tt[mt]:Tt.readUInt16BE(mt*d)}if(a){var Ie=-1;for(ce=t;cey&&(t=y-Q),ce=t;ce>=0;ce--){for(var _e=!0,tt=0;tta&&(n=a):n=a;var d=e.length;n>d/2&&(n=d/2);for(var y=0;y>8,d.push(t%256),d.push(n);return d}(e,r.length-t),r,t,n)}function wt(r,e,t){return L.fromByteArray(0===e&&t===r.length?r:r.slice(e,t))}function st(r,e,t){t=Math.min(r.length,t);for(var n=[],a=e;a239?4:d>223?3:d>191?2:1;if(a+Q<=t)switch(Q){case 1:d<128&&(y=d);break;case 2:128==(192&(ne=r[a+1]))&&(_e=(31&d)<<6|63&ne)>127&&(y=_e);break;case 3:ce=r[a+2],128==(192&(ne=r[a+1]))&&128==(192&ce)&&(_e=(15&d)<<12|(63&ne)<<6|63&ce)>2047&&(_e<55296||_e>57343)&&(y=_e);break;case 4:ce=r[a+2],Ie=r[a+3],128==(192&(ne=r[a+1]))&&128==(192&ce)&&128==(192&Ie)&&(_e=(15&d)<<18|(63&ne)<<12|(63&ce)<<6|63&Ie)>65535&&_e<1114112&&(y=_e)}null===y?(y=65533,Q=1):y>65535&&(n.push((y-=65536)>>>10&1023|55296),y=56320|1023&y),n.push(y),a+=Q}return function pt(r){var e=r.length;if(e<=at)return String.fromCharCode.apply(String,r);for(var t="",n=0;na.length?l.from(y).copy(a,d):Uint8Array.prototype.set.call(a,y,d);else{if(!l.isBuffer(y))throw new TypeError('"list" argument must be an Array of Buffers');y.copy(a,d)}d+=y.length}return a},l.byteLength=K,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tt&&(e+=" ... "),""},we&&(l.prototype[we]=l.prototype.inspect),l.prototype.compare=function(e,t,n,a,d){if(Me(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),!l.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===a&&(a=0),void 0===d&&(d=this.length),t<0||n>e.length||a<0||d>this.length)throw new RangeError("out of range index");if(a>=d&&t>=n)return 0;if(a>=d)return-1;if(t>=n)return 1;if(this===e)return 0;for(var y=(d>>>=0)-(a>>>=0),Q=(n>>>=0)-(t>>>=0),ne=Math.min(y,Q),ce=this.slice(a,d),Ie=e.slice(t,n),_e=0;_e>>=0,isFinite(n)?(n>>>=0,void 0===a&&(a="utf8")):(a=n,n=void 0)}var d=this.length-t;if((void 0===n||n>d)&&(n=d),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");a||(a="utf8");for(var y=!1;;)switch(a){case"hex":return ft(this,e,t,n);case"utf8":case"utf-8":return Je(this,e,t,n);case"ascii":case"latin1":case"binary":return ot(this,e,t,n);case"base64":return ht(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ke(this,e,t,n);default:if(y)throw new TypeError("Unknown encoding: "+a);a=(""+a).toLowerCase(),y=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var at=4096;function Ne(r,e,t){var n="";t=Math.min(r.length,t);for(var a=e;an)&&(t=n);for(var a="",d=e;dt)throw new RangeError("Trying to access beyond buffer length")}function Fe(r,e,t,n,a,d){if(!l.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>a||er.length)throw new RangeError("Index out of range")}function Qe(r,e,t,n,a,d){if(t+n>r.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function dt(r,e,t,n,a){return e=+e,t>>>=0,a||Qe(r,0,t,4),de.write(r,e,t,n,23,4),t+4}function yt(r,e,t,n,a){return e=+e,t>>>=0,a||Qe(r,0,t,8),de.write(r,e,t,n,52,8),t+8}l.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||oe(e,t,this.length);for(var a=this[e],d=1,y=0;++y>>=0,t>>>=0,n||oe(e,t,this.length);for(var a=this[e+--t],d=1;t>0&&(d*=256);)a+=this[e+--t]*d;return a},l.prototype.readUint8=l.prototype.readUInt8=function(e,t){return e>>>=0,t||oe(e,1,this.length),this[e]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(e,t){return e>>>=0,t||oe(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(e,t){return e>>>=0,t||oe(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(e,t){return e>>>=0,t||oe(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(e,t){return e>>>=0,t||oe(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||oe(e,t,this.length);for(var a=this[e],d=1,y=0;++y=(d*=128)&&(a-=Math.pow(2,8*t)),a},l.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||oe(e,t,this.length);for(var a=t,d=1,y=this[e+--a];a>0&&(d*=256);)y+=this[e+--a]*d;return y>=(d*=128)&&(y-=Math.pow(2,8*t)),y},l.prototype.readInt8=function(e,t){return e>>>=0,t||oe(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){e>>>=0,t||oe(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){e>>>=0,t||oe(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return e>>>=0,t||oe(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return e>>>=0,t||oe(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return e>>>=0,t||oe(e,4,this.length),de.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return e>>>=0,t||oe(e,4,this.length),de.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return e>>>=0,t||oe(e,8,this.length),de.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return e>>>=0,t||oe(e,8,this.length),de.read(this,e,!1,52,8)},l.prototype.writeUintLE=l.prototype.writeUIntLE=function(e,t,n,a){e=+e,t>>>=0,n>>>=0,a||Fe(this,e,t,n,Math.pow(2,8*n)-1,0);var y=1,Q=0;for(this[t]=255&e;++Q>>=0,n>>>=0,a||Fe(this,e,t,n,Math.pow(2,8*n)-1,0);var y=n-1,Q=1;for(this[t+y]=255&e;--y>=0&&(Q*=256);)this[t+y]=e/Q&255;return t+n},l.prototype.writeUint8=l.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,1,255,0),this[t]=255&e,t+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeIntLE=function(e,t,n,a){if(e=+e,t>>>=0,!a){var d=Math.pow(2,8*n-1);Fe(this,e,t,n,d-1,-d)}var y=0,Q=1,ne=0;for(this[t]=255&e;++y>>=0,!a){var d=Math.pow(2,8*n-1);Fe(this,e,t,n,d-1,-d)}var y=n-1,Q=1,ne=0;for(this[t+y]=255&e;--y>=0&&(Q*=256);)e<0&&0===ne&&0!==this[t+y+1]&&(ne=1),this[t+y]=(e/Q|0)-ne&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Fe(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeFloatLE=function(e,t,n){return dt(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return dt(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return yt(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return yt(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,a){if(!l.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!a&&0!==a&&(a=this.length),t>=e.length&&(t=e.length),t||(t=0),a>0&&a=this.length)throw new RangeError("Index out of range");if(a<0)throw new RangeError("sourceEnd out of bounds");a>this.length&&(a=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(y=t;y55295&&t<57344){if(!a){if(t>56319){(e-=3)>-1&&d.push(239,191,189);continue}if(y+1===n){(e-=3)>-1&&d.push(239,191,189);continue}a=t;continue}if(t<56320){(e-=3)>-1&&d.push(239,191,189),a=t;continue}t=65536+(a-55296<<10|t-56320)}else a&&(e-=3)>-1&&d.push(239,191,189);if(a=null,t<128){if((e-=1)<0)break;d.push(t)}else if(t<2048){if((e-=2)<0)break;d.push(t>>6|192,63&t|128)}else if(t<65536){if((e-=3)<0)break;d.push(t>>12|224,t>>6&63|128,63&t|128)}else{if(!(t<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;d.push(t>>18|240,t>>12&63|128,t>>6&63|128,63&t|128)}}return d}function ct(r){return L.toByteArray(function _t(r){if((r=(r=r.split("=")[0]).trim().replace(Et,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function $e(r,e,t,n){for(var a=0;a=e.length||a>=r.length);++a)e[a+t]=r[a];return a}function Me(r,e){return r instanceof e||null!=r&&null!=r.constructor&&null!=r.constructor.name&&r.constructor.name===e.name}function et(r){return r!=r}var xt=function(){for(var r="0123456789abcdef",e=new Array(256),t=0;t<16;++t)for(var n=16*t,a=0;a<16;++a)e[n+a]=r[t]+r[a];return e}()},2020:(Se,B)=>{B.read=function($,L,de,we,re){var ke,N,l=8*re-we-1,ue=(1<>1,ye=-7,te=de?re-1:0,ge=de?-1:1,w=$[L+te];for(te+=ge,ke=w&(1<<-ye)-1,w>>=-ye,ye+=l;ye>0;ke=256*ke+$[L+te],te+=ge,ye-=8);for(N=ke&(1<<-ye)-1,ke>>=-ye,ye+=we;ye>0;N=256*N+$[L+te],te+=ge,ye-=8);if(0===ke)ke=1-be;else{if(ke===ue)return N?NaN:1/0*(w?-1:1);N+=Math.pow(2,we),ke-=be}return(w?-1:1)*N*Math.pow(2,ke-we)},B.write=function($,L,de,we,re,ke){var N,l,ue,be=8*ke-re-1,ye=(1<>1,ge=23===re?Math.pow(2,-24)-Math.pow(2,-77):0,w=we?0:ke-1,k=we?1:-1,G=L<0||0===L&&1/L<0?1:0;for(L=Math.abs(L),isNaN(L)||L===1/0?(l=isNaN(L)?1:0,N=ye):(N=Math.floor(Math.log(L)/Math.LN2),L*(ue=Math.pow(2,-N))<1&&(N--,ue*=2),(L+=N+te>=1?ge/ue:ge*Math.pow(2,1-te))*ue>=2&&(N++,ue/=2),N+te>=ye?(l=0,N=ye):N+te>=1?(l=(L*ue-1)*Math.pow(2,re),N+=te):(l=L*Math.pow(2,te-1)*Math.pow(2,re),N=0));re>=8;$[de+w]=255&l,w+=k,l/=256,re-=8);for(N=N<0;$[de+w]=255&N,w+=k,N/=256,be-=8);$[de+w-k]|=128*G}},573:Se=>{var $,L,B=Se.exports={};function de(){throw new Error("setTimeout has not been defined")}function we(){throw new Error("clearTimeout has not been defined")}function re(k){if($===setTimeout)return setTimeout(k,0);if(($===de||!$)&&setTimeout)return $=setTimeout,setTimeout(k,0);try{return $(k,0)}catch{try{return $.call(null,k,0)}catch{return $.call(this,k,0)}}}!function(){try{$="function"==typeof setTimeout?setTimeout:de}catch{$=de}try{L="function"==typeof clearTimeout?clearTimeout:we}catch{L=we}}();var ue,N=[],l=!1,be=-1;function ye(){!l||!ue||(l=!1,ue.length?N=ue.concat(N):be=-1,N.length&&te())}function te(){if(!l){var k=re(ye);l=!0;for(var G=N.length;G;){for(ue=N,N=[];++be1)for(var R=1;R{"use strict";const Se=globalThis;function B(i){return(Se.__Zone_symbol_prefix||"__zone_symbol__")+i}const de=Object.getOwnPropertyDescriptor,we=Object.defineProperty,re=Object.getPrototypeOf,ke=Object.create,N=Array.prototype.slice,l="addEventListener",ue="removeEventListener",be=B(l),ye=B(ue),te="true",ge="false",w=B("");function k(i,c){return Zone.current.wrap(i,c)}function G(i,c,p,o,h){return Zone.current.scheduleMacroTask(i,c,p,o,h)}const R=B,Ce=typeof window<"u",le=Ce?window:void 0,K=Ce&&le||globalThis,Ve="removeAttribute";function Ee(i,c){for(let p=i.length-1;p>=0;p--)"function"==typeof i[p]&&(i[p]=k(i[p],c+"_"+p));return i}function it(i){return!i||!1!==i.writable&&!("function"==typeof i.get&&typeof i.set>"u")}const ft=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,Je=!("nw"in K)&&typeof K.process<"u"&&"[object process]"===K.process.toString(),ot=!Je&&!ft&&!(!Ce||!le.HTMLElement),ht=typeof K.process<"u"&&"[object process]"===K.process.toString()&&!ft&&!(!Ce||!le.HTMLElement),Ke={},wt=R("enable_beforeunload"),st=function(i){if(!(i=i||K.event))return;let c=Ke[i.type];c||(c=Ke[i.type]=R("ON_PROPERTY"+i.type));const p=this||i.target||K,o=p[c];let h;return ot&&p===le&&"error"===i.type?(h=o&&o.call(this,i.message,i.filename,i.lineno,i.colno,i.error),!0===h&&i.preventDefault()):(h=o&&o.apply(this,arguments),"beforeunload"===i.type&&K[wt]&&"string"==typeof h?i.returnValue=h:null!=h&&!h&&i.preventDefault()),h};function at(i,c,p){let o=de(i,c);if(!o&&p&&de(p,c)&&(o={enumerable:!0,configurable:!0}),!o||!o.configurable)return;const h=R("on"+c+"patched");if(i.hasOwnProperty(h)&&i[h])return;delete o.writable,delete o.value;const T=o.get,b=o.set,C=c.slice(2);let S=Ke[C];S||(S=Ke[C]=R("ON_PROPERTY"+C)),o.set=function(j){let v=this;!v&&i===K&&(v=K),v&&("function"==typeof v[S]&&v.removeEventListener(C,st),b&&b.call(v,null),v[S]=j,"function"==typeof j&&v.addEventListener(C,st,!1))},o.get=function(){let j=this;if(!j&&i===K&&(j=K),!j)return null;const v=j[S];if(v)return v;if(T){let U=T.call(this);if(U)return o.set.call(this,U),"function"==typeof j[Ve]&&j.removeAttribute(c),U}return null},we(i,c,o),i[h]=!0}function pt(i,c,p){if(c)for(let o=0;ofunction(b,C){const S=p(b,C);return S.cbIdx>=0&&"function"==typeof C[S.cbIdx]?G(S.name,C[S.cbIdx],S,h):T.apply(b,C)})}function oe(i,c){i[R("OriginalDelegate")]=c}let Fe=!1,Qe=!1;function yt(){if(Fe)return Qe;Fe=!0;try{const i=le.navigator.userAgent;(-1!==i.indexOf("MSIE ")||-1!==i.indexOf("Trident/")||-1!==i.indexOf("Edge/"))&&(Qe=!0)}catch{}return Qe}function Et(i){return"function"==typeof i}function _t(i){return"number"==typeof i}let He=!1;if(typeof window<"u")try{const i=Object.defineProperty({},"passive",{get:function(){He=!0}});window.addEventListener("test",i,i),window.removeEventListener("test",i,i)}catch{He=!1}const vt={useG:!0},Le={},ct={},$e=new RegExp("^"+w+"(\\w+)(true|false)$"),Me=R("propagationStopped");function et(i,c){const p=(c?c(i):i)+ge,o=(c?c(i):i)+te,h=w+p,T=w+o;Le[i]={},Le[i][ge]=h,Le[i][te]=T}function xt(i,c,p,o){const h=o&&o.add||l,T=o&&o.rm||ue,b=o&&o.listeners||"eventListeners",C=o&&o.rmAll||"removeAllListeners",S=R(h),j="."+h+":",v="prependListener",U="."+v+":",J=function(D,g,ie){if(D.isRemoved)return;const ae=D.callback;let Ae;"object"==typeof ae&&ae.handleEvent&&(D.callback=A=>ae.handleEvent(A),D.originalDelegate=ae);try{D.invoke(D,g,[ie])}catch(A){Ae=A}const fe=D.options;return fe&&"object"==typeof fe&&fe.once&&g[T].call(g,ie.type,D.originalDelegate?D.originalDelegate:D.callback,fe),Ae};function se(D,g,ie){if(!(g=g||i.event))return;const ae=D||g.target||i,Ae=ae[Le[g.type][ie?te:ge]];if(Ae){const fe=[];if(1===Ae.length){const A=J(Ae[0],ae,g);A&&fe.push(A)}else{const A=Ae.slice();for(let me=0;me{throw me})}}}const Te=function(D){return se(this,D,!1)},De=function(D){return se(this,D,!0)};function Pe(D,g){if(!D)return!1;let ie=!0;g&&void 0!==g.useG&&(ie=g.useG);const ae=g&&g.vh;let Ae=!0;g&&void 0!==g.chkDup&&(Ae=g.chkDup);let fe=!1;g&&void 0!==g.rt&&(fe=g.rt);let A=D;for(;A&&!A.hasOwnProperty(h);)A=re(A);if(!A&&D[h]&&(A=D),!A||A[S])return!1;const me=g&&g.eventNameToString,W={},Z=A[S]=A[h],M=A[R(T)]=A[T],V=A[R(b)]=A[b],Be=A[R(C)]=A[C];let ve;g&&g.prepend&&(ve=A[R(g.prepend)]=A[g.prepend]);const xe=ie?function(f){if(!W.isExisting)return Z.call(W.target,W.eventName,W.capture?De:Te,W.options)}:function(f){return Z.call(W.target,W.eventName,f.invoke,W.options)},ee=ie?function(f){if(!f.isRemoved){const _=Le[f.eventName];let P;_&&(P=_[f.capture?te:ge]);const H=P&&f.target[P];if(H)for(let I=0;IZe.zone.cancelTask(Ze);f.call(rt,"abort",Ge,{once:!0}),Ze.removeAbortListener=()=>rt.removeEventListener("abort",Ge)}return W.target=null,ut&&(ut.taskData=null),At&&(W.options.once=!0),!He&&"boolean"==typeof Ze.options||(Ze.options=je),Ze.target=q,Ze.capture=bt,Ze.eventName=Y,pe&&(Ze.originalDelegate=he),X?nt.unshift(Ze):nt.push(Ze),I?q:void 0}};return A[h]=E(Z,j,xe,ee,fe),ve&&(A[v]=E(ve,U,function(f){return ve.call(W.target,W.eventName,f.invoke,W.options)},ee,fe,!0)),A[T]=function(){const f=this||i;let _=arguments[0];g&&g.transferEventName&&(_=g.transferEventName(_));const P=arguments[2],H=!!P&&("boolean"==typeof P||P.capture),I=arguments[1];if(!I)return M.apply(this,arguments);if(ae&&!ae(M,I,f,arguments))return;const X=Le[_];let q;X&&(q=X[H?te:ge]);const Y=q&&f[q];if(Y)for(let he=0;hefunction(h,T){h[Me]=!0,o&&o.apply(h,T)})}const n=R("zoneTask");function a(i,c,p,o){let h=null,T=null;p+=o;const b={};function C(j){const v=j.data;v.args[0]=function(){return j.invoke.apply(this,arguments)};const U=h.apply(i,v.args);return _t(U)?v.handleId=U:(v.handle=U,v.isRefreshable=Et(U.refresh)),j}function S(j){const{handle:v,handleId:U}=j.data;return T.call(i,v??U)}h=Oe(i,c+=o,j=>function(v,U){if(Et(U[0])){const J={isRefreshable:!1,isPeriodic:"Interval"===o,delay:"Timeout"===o||"Interval"===o?U[1]||0:void 0,args:U},se=U[0];U[0]=function(){try{return se.apply(this,arguments)}finally{const{handle:ie,handleId:ae,isPeriodic:Ae,isRefreshable:fe}=J;!Ae&&!fe&&(ae?delete b[ae]:ie&&(ie[n]=null))}};const Te=G(c,U[0],J,C,S);if(!Te)return Te;const{handleId:De,handle:Pe,isRefreshable:Re,isPeriodic:D}=Te.data;if(De)b[De]=Te;else if(Pe&&(Pe[n]=Te,Re&&!D)){const g=Pe.refresh;Pe.refresh=function(){const{zone:ie,state:ae}=Te;return"notScheduled"===ae?(Te._state="scheduled",ie._updateTaskCount(Te,1)):"running"===ae&&(Te._state="scheduling"),g.call(this)}}return Pe??De??Te}return j.apply(i,U)}),T=Oe(i,p,j=>function(v,U){const J=U[0];let se;_t(J)?(se=b[J],delete b[J]):(se=J?.[n],se?J[n]=null:se=J),se?.type?se.cancelFn&&se.zone.cancelTask(se):j.apply(i,U)})}function ne(i,c,p){if(!p||0===p.length)return c;const o=p.filter(T=>T.target===i);if(!o||0===o.length)return c;const h=o[0].ignoreProperties;return c.filter(T=>-1===h.indexOf(T))}function ce(i,c,p,o){i&&pt(i,ne(i,c,p),o)}function Ie(i){return Object.getOwnPropertyNames(i).filter(c=>c.startsWith("on")&&c.length>2).map(c=>c.substring(2))}function Pt(i,c,p,o,h){const T=Zone.__symbol__(o);if(c[T])return;const b=c[T]=c[o];c[o]=function(C,S,j){return S&&S.prototype&&h.forEach(function(v){const U=`${p}.${o}::`+v,J=S.prototype;try{if(J.hasOwnProperty(v)){const se=i.ObjectGetOwnPropertyDescriptor(J,v);se&&se.value?(se.value=i.wrapWithCurrentZone(se.value,U),i._redefineProperty(S.prototype,v,se)):J[v]&&(J[v]=i.wrapWithCurrentZone(J[v],U))}else J[v]&&(J[v]=i.wrapWithCurrentZone(J[v],U))}catch{}}),b.call(c,C,S,j)},i.attachOriginToPatched(c[o],b)}const Rt=function L(){const i=globalThis,c=!0===i[B("forceDuplicateZoneCheck")];if(i.Zone&&(c||"function"!=typeof i.Zone.__symbol__))throw new Error("Zone already loaded.");return i.Zone??=function $(){const i=Se.performance;function c(z){i&&i.mark&&i.mark(z)}function p(z,x){i&&i.measure&&i.measure(z,x)}c("Zone");let o=(()=>{class z{static{this.__symbol__=B}static assertZonePatched(){if(Se.Promise!==W.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 s=z.current;for(;s.parent;)s=s.parent;return s}static get current(){return M.zone}static get currentTask(){return V}static __load_patch(s,u,F=!1){if(W.hasOwnProperty(s)){const O=!0===Se[B("forceDuplicateZoneCheck")];if(!F&&O)throw Error("Already loaded patch: "+s)}else if(!Se["__Zone_disable_"+s]){const O="Zone:"+s;c(O),W[s]=u(Se,z,Z),p(O,O)}}get parent(){return this._parent}get name(){return this._name}constructor(s,u){this._parent=s,this._name=u?u.name||"unnamed":"",this._properties=u&&u.properties||{},this._zoneDelegate=new T(this,this._parent&&this._parent._zoneDelegate,u)}get(s){const u=this.getZoneWith(s);if(u)return u._properties[s]}getZoneWith(s){let u=this;for(;u;){if(u._properties.hasOwnProperty(s))return u;u=u._parent}return null}fork(s){if(!s)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,s)}wrap(s,u){if("function"!=typeof s)throw new Error("Expecting function got: "+s);const F=this._zoneDelegate.intercept(this,s,u),O=this;return function(){return O.runGuarded(F,this,arguments,u)}}run(s,u,F,O){M={parent:M,zone:this};try{return this._zoneDelegate.invoke(this,s,u,F,O)}finally{M=M.parent}}runGuarded(s,u=null,F,O){M={parent:M,zone:this};try{try{return this._zoneDelegate.invoke(this,s,u,F,O)}catch(xe){if(this._zoneDelegate.handleError(this,xe))throw xe}}finally{M=M.parent}}runTask(s,u,F){if(s.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(s.zone||Pe).name+"; Execution: "+this.name+")");const O=s,{type:xe,data:{isPeriodic:ee=!1,isRefreshable:Xe=!1}={}}=s;if(s.state===Re&&(xe===me||xe===A))return;const We=s.state!=ie;We&&O._transitionTo(ie,g);const ze=V;V=O,M={parent:M,zone:this};try{xe==A&&s.data&&!ee&&!Xe&&(s.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,O,u,F)}catch(Ue){if(this._zoneDelegate.handleError(this,Ue))throw Ue}}finally{const Ue=s.state;if(Ue!==Re&&Ue!==Ae)if(xe==me||ee||Xe&&Ue===D)We&&O._transitionTo(g,ie,D);else{const m=O._zoneDelegates;this._updateTaskCount(O,-1),We&&O._transitionTo(Re,ie,Re),Xe&&(O._zoneDelegates=m)}M=M.parent,V=ze}}scheduleTask(s){if(s.zone&&s.zone!==this){let F=this;for(;F;){if(F===s.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${s.zone.name}`);F=F.parent}}s._transitionTo(D,Re);const u=[];s._zoneDelegates=u,s._zone=this;try{s=this._zoneDelegate.scheduleTask(this,s)}catch(F){throw s._transitionTo(Ae,D,Re),this._zoneDelegate.handleError(this,F),F}return s._zoneDelegates===u&&this._updateTaskCount(s,1),s.state==D&&s._transitionTo(g,D),s}scheduleMicroTask(s,u,F,O){return this.scheduleTask(new b(fe,s,u,F,O,void 0))}scheduleMacroTask(s,u,F,O,xe){return this.scheduleTask(new b(A,s,u,F,O,xe))}scheduleEventTask(s,u,F,O,xe){return this.scheduleTask(new b(me,s,u,F,O,xe))}cancelTask(s){if(s.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(s.zone||Pe).name+"; Execution: "+this.name+")");if(s.state===g||s.state===ie){s._transitionTo(ae,g,ie);try{this._zoneDelegate.cancelTask(this,s)}catch(u){throw s._transitionTo(Ae,ae),this._zoneDelegate.handleError(this,u),u}return this._updateTaskCount(s,-1),s._transitionTo(Re,ae),s.runCount=-1,s}}_updateTaskCount(s,u){const F=s._zoneDelegates;-1==u&&(s._zoneDelegates=null);for(let O=0;Oz.hasTask(s,u),onScheduleTask:(z,x,s,u)=>z.scheduleTask(s,u),onInvokeTask:(z,x,s,u,F,O)=>z.invokeTask(s,u,F,O),onCancelTask:(z,x,s,u)=>z.cancelTask(s,u)};class T{get zone(){return this._zone}constructor(x,s,u){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this._zone=x,this._parentDelegate=s,this._forkZS=u&&(u&&u.onFork?u:s._forkZS),this._forkDlgt=u&&(u.onFork?s:s._forkDlgt),this._forkCurrZone=u&&(u.onFork?this._zone:s._forkCurrZone),this._interceptZS=u&&(u.onIntercept?u:s._interceptZS),this._interceptDlgt=u&&(u.onIntercept?s:s._interceptDlgt),this._interceptCurrZone=u&&(u.onIntercept?this._zone:s._interceptCurrZone),this._invokeZS=u&&(u.onInvoke?u:s._invokeZS),this._invokeDlgt=u&&(u.onInvoke?s:s._invokeDlgt),this._invokeCurrZone=u&&(u.onInvoke?this._zone:s._invokeCurrZone),this._handleErrorZS=u&&(u.onHandleError?u:s._handleErrorZS),this._handleErrorDlgt=u&&(u.onHandleError?s:s._handleErrorDlgt),this._handleErrorCurrZone=u&&(u.onHandleError?this._zone:s._handleErrorCurrZone),this._scheduleTaskZS=u&&(u.onScheduleTask?u:s._scheduleTaskZS),this._scheduleTaskDlgt=u&&(u.onScheduleTask?s:s._scheduleTaskDlgt),this._scheduleTaskCurrZone=u&&(u.onScheduleTask?this._zone:s._scheduleTaskCurrZone),this._invokeTaskZS=u&&(u.onInvokeTask?u:s._invokeTaskZS),this._invokeTaskDlgt=u&&(u.onInvokeTask?s:s._invokeTaskDlgt),this._invokeTaskCurrZone=u&&(u.onInvokeTask?this._zone:s._invokeTaskCurrZone),this._cancelTaskZS=u&&(u.onCancelTask?u:s._cancelTaskZS),this._cancelTaskDlgt=u&&(u.onCancelTask?s:s._cancelTaskDlgt),this._cancelTaskCurrZone=u&&(u.onCancelTask?this._zone:s._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const F=u&&u.onHasTask;(F||s&&s._hasTaskZS)&&(this._hasTaskZS=F?u:h,this._hasTaskDlgt=s,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=this._zone,u.onScheduleTask||(this._scheduleTaskZS=h,this._scheduleTaskDlgt=s,this._scheduleTaskCurrZone=this._zone),u.onInvokeTask||(this._invokeTaskZS=h,this._invokeTaskDlgt=s,this._invokeTaskCurrZone=this._zone),u.onCancelTask||(this._cancelTaskZS=h,this._cancelTaskDlgt=s,this._cancelTaskCurrZone=this._zone))}fork(x,s){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,x,s):new o(x,s)}intercept(x,s,u){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,x,s,u):s}invoke(x,s,u,F,O){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,x,s,u,F,O):s.apply(u,F)}handleError(x,s){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,x,s)}scheduleTask(x,s){let u=s;if(this._scheduleTaskZS)this._hasTaskZS&&u._zoneDelegates.push(this._hasTaskDlgtOwner),u=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,x,s),u||(u=s);else if(s.scheduleFn)s.scheduleFn(s);else{if(s.type!=fe)throw new Error("Task is missing scheduleFn.");Te(s)}return u}invokeTask(x,s,u,F){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,x,s,u,F):s.callback.apply(u,F)}cancelTask(x,s){let u;if(this._cancelTaskZS)u=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,x,s);else{if(!s.cancelFn)throw Error("Task is not cancelable");u=s.cancelFn(s)}return u}hasTask(x,s){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,x,s)}catch(u){this.handleError(x,u)}}_updateTaskCount(x,s){const u=this._taskCounts,F=u[x],O=u[x]=F+s;if(O<0)throw new Error("More tasks executed then were scheduled.");0!=F&&0!=O||this.hasTask(this._zone,{microTask:u.microTask>0,macroTask:u.macroTask>0,eventTask:u.eventTask>0,change:x})}}class b{constructor(x,s,u,F,O,xe){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=x,this.source=s,this.data=F,this.scheduleFn=O,this.cancelFn=xe,!u)throw new Error("callback is not defined");this.callback=u;const ee=this;this.invoke=x===me&&F&&F.useG?b.invokeTask:function(){return b.invokeTask.call(Se,ee,this,arguments)}}static invokeTask(x,s,u){x||(x=this),Be++;try{return x.runCount++,x.zone.runTask(x,s,u)}finally{1==Be&&De(),Be--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(Re,D)}_transitionTo(x,s,u){if(this._state!==s&&this._state!==u)throw new Error(`${this.type} '${this.source}': can not transition to '${x}', expecting state '${s}'${u?" or '"+u+"'":""}, was '${this._state}'.`);this._state=x,x==Re&&(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 C=B("setTimeout"),S=B("Promise"),j=B("then");let J,v=[],U=!1;function se(z){if(J||Se[S]&&(J=Se[S].resolve(0)),J){let x=J[j];x||(x=J.then),x.call(J,z)}else Se[C](z,0)}function Te(z){0===Be&&0===v.length&&se(De),z&&v.push(z)}function De(){if(!U){for(U=!0;v.length;){const z=v;v=[];for(let x=0;xM,onUnhandledError:ve,microtaskDrainDone:ve,scheduleMicroTask:Te,showUncaughtError:()=>!o[B("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:ve,patchMethod:()=>ve,bindArguments:()=>[],patchThen:()=>ve,patchMacroTask:()=>ve,patchEventPrototype:()=>ve,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>ve,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>ve,wrapWithCurrentZone:()=>ve,filterProperties:()=>[],attachOriginToPatched:()=>ve,_redefineProperty:()=>ve,patchCallbacks:()=>ve,nativeScheduleMicroTask:se};let M={parent:null,zone:new o(null,null)},V=null,Be=0;function ve(){}return p("Zone","Zone"),o}(),i.Zone}();(function Lt(i){(function Tt(i){i.__load_patch("ZoneAwarePromise",(c,p,o)=>{const h=Object.getOwnPropertyDescriptor,T=Object.defineProperty,C=o.symbol,S=[],j=!1!==c[C("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],v=C("Promise"),U=C("then"),J="__creationTrace__";o.onUnhandledError=m=>{if(o.showUncaughtError()){const E=m&&m.rejection;E?console.error("Unhandled Promise rejection:",E instanceof Error?E.message:E,"; Zone:",m.zone.name,"; Task:",m.task&&m.task.source,"; Value:",E,E instanceof Error?E.stack:void 0):console.error(m)}},o.microtaskDrainDone=()=>{for(;S.length;){const m=S.shift();try{m.zone.runGuarded(()=>{throw m.throwOriginal?m.rejection:m})}catch(E){Te(E)}}};const se=C("unhandledPromiseRejectionHandler");function Te(m){o.onUnhandledError(m);try{const E=p[se];"function"==typeof E&&E.call(this,m)}catch{}}function De(m){return m&&m.then}function Pe(m){return m}function Re(m){return ee.reject(m)}const D=C("state"),g=C("value"),ie=C("finally"),ae=C("parentPromiseValue"),Ae=C("parentPromiseState"),fe="Promise.then",A=null,me=!0,W=!1,Z=0;function M(m,E){return f=>{try{z(m,E,f)}catch(_){z(m,!1,_)}}}const V=function(){let m=!1;return function(f){return function(){m||(m=!0,f.apply(null,arguments))}}},Be="Promise resolved with itself",ve=C("currentTaskTrace");function z(m,E,f){const _=V();if(m===f)throw new TypeError(Be);if(m[D]===A){let P=null;try{("object"==typeof f||"function"==typeof f)&&(P=f&&f.then)}catch(H){return _(()=>{z(m,!1,H)})(),m}if(E!==W&&f instanceof ee&&f.hasOwnProperty(D)&&f.hasOwnProperty(g)&&f[D]!==A)s(f),z(m,f[D],f[g]);else if(E!==W&&"function"==typeof P)try{P.call(f,_(M(m,E)),_(M(m,!1)))}catch(H){_(()=>{z(m,!1,H)})()}else{m[D]=E;const H=m[g];if(m[g]=f,m[ie]===ie&&E===me&&(m[D]=m[Ae],m[g]=m[ae]),E===W&&f instanceof Error){const I=p.currentTask&&p.currentTask.data&&p.currentTask.data[J];I&&T(f,ve,{configurable:!0,enumerable:!1,writable:!0,value:I})}for(let I=0;I{try{const X=m[g],q=!!f&&ie===f[ie];q&&(f[ae]=X,f[Ae]=H);const Y=E.run(I,void 0,q&&I!==Re&&I!==Pe?[]:[X]);z(f,!0,Y)}catch(X){z(f,!1,X)}},f)}const O=function(){},xe=c.AggregateError;class ee{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(E){return E instanceof ee?E:z(new this(null),me,E)}static reject(E){return z(new this(null),W,E)}static withResolvers(){const E={};return E.promise=new ee((f,_)=>{E.resolve=f,E.reject=_}),E}static any(E){if(!E||"function"!=typeof E[Symbol.iterator])return Promise.reject(new xe([],"All promises were rejected"));const f=[];let _=0;try{for(let I of E)_++,f.push(ee.resolve(I))}catch{return Promise.reject(new xe([],"All promises were rejected"))}if(0===_)return Promise.reject(new xe([],"All promises were rejected"));let P=!1;const H=[];return new ee((I,X)=>{for(let q=0;q{P||(P=!0,I(Y))},Y=>{H.push(Y),_--,0===_&&(P=!0,X(new xe(H,"All promises were rejected")))})})}static race(E){let f,_,P=new this((X,q)=>{f=X,_=q});function H(X){f(X)}function I(X){_(X)}for(let X of E)De(X)||(X=this.resolve(X)),X.then(H,I);return P}static all(E){return ee.allWithCallback(E)}static allSettled(E){return(this&&this.prototype instanceof ee?this:ee).allWithCallback(E,{thenCallback:_=>({status:"fulfilled",value:_}),errorCallback:_=>({status:"rejected",reason:_})})}static allWithCallback(E,f){let _,P,H=new this((Y,he)=>{_=Y,P=he}),I=2,X=0;const q=[];for(let Y of E){De(Y)||(Y=this.resolve(Y));const he=X;try{Y.then(pe=>{q[he]=f?f.thenCallback(pe):pe,I--,0===I&&_(q)},pe=>{f?(q[he]=f.errorCallback(pe),I--,0===I&&_(q)):P(pe)})}catch(pe){P(pe)}I++,X++}return I-=2,0===I&&_(q),H}constructor(E){const f=this;if(!(f instanceof ee))throw new Error("Must be an instanceof Promise.");f[D]=A,f[g]=[];try{const _=V();E&&E(_(M(f,me)),_(M(f,W)))}catch(_){z(f,!1,_)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return ee}then(E,f){let _=this.constructor?.[Symbol.species];(!_||"function"!=typeof _)&&(_=this.constructor||ee);const P=new _(O),H=p.current;return this[D]==A?this[g].push(H,P,E,f):u(this,H,P,E,f),P}catch(E){return this.then(null,E)}finally(E){let f=this.constructor?.[Symbol.species];(!f||"function"!=typeof f)&&(f=ee);const _=new f(O);_[ie]=ie;const P=p.current;return this[D]==A?this[g].push(P,_,E,E):u(this,P,_,E,E),_}}ee.resolve=ee.resolve,ee.reject=ee.reject,ee.race=ee.race,ee.all=ee.all;const Xe=c[v]=c.Promise;c.Promise=ee;const We=C("thenPatched");function ze(m){const E=m.prototype,f=h(E,"then");if(f&&(!1===f.writable||!f.configurable))return;const _=E.then;E[U]=_,m.prototype.then=function(P,H){return new ee((X,q)=>{_.call(this,X,q)}).then(P,H)},m[We]=!0}return o.patchThen=ze,Xe&&(ze(Xe),Oe(c,"fetch",m=>function Ue(m){return function(E,f){let _=m.apply(E,f);if(_ instanceof ee)return _;let P=_.constructor;return P[We]||ze(P),_}}(m))),Promise[p.__symbol__("uncaughtPromiseErrors")]=S,ee})})(i),function mt(i){i.__load_patch("toString",c=>{const p=Function.prototype.toString,o=R("OriginalDelegate"),h=R("Promise"),T=R("Error"),b=function(){if("function"==typeof this){const v=this[o];if(v)return"function"==typeof v?p.call(v):Object.prototype.toString.call(v);if(this===Promise){const U=c[h];if(U)return p.call(U)}if(this===Error){const U=c[T];if(U)return p.call(U)}}return p.call(this)};b[o]=p,Function.prototype.toString=b;const C=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":C.call(this)}})}(i),function Bt(i){i.__load_patch("util",(c,p,o)=>{const h=Ie(c);o.patchOnProperties=pt,o.patchMethod=Oe,o.bindArguments=Ee,o.patchMacroTask=kt;const T=p.__symbol__("BLACK_LISTED_EVENTS"),b=p.__symbol__("UNPATCHED_EVENTS");c[b]&&(c[T]=c[b]),c[T]&&(p[T]=p[b]=c[T]),o.patchEventPrototype=e,o.patchEventTarget=xt,o.isIEOrEdge=yt,o.ObjectDefineProperty=we,o.ObjectGetOwnPropertyDescriptor=de,o.ObjectCreate=ke,o.ArraySlice=N,o.patchClass=Ye,o.wrapWithCurrentZone=k,o.filterProperties=ne,o.attachOriginToPatched=oe,o._redefineProperty=Object.defineProperty,o.patchCallbacks=Pt,o.getGlobalObjects=()=>({globalSources:ct,zoneSymbolEventNames:Le,eventNames:h,isBrowser:ot,isMix:ht,isNode:Je,TRUE_STR:te,FALSE_STR:ge,ZONE_SYMBOL_PREFIX:w,ADD_EVENT_LISTENER_STR:l,REMOVE_EVENT_LISTENER_STR:ue})})}(i)})(Rt),function tt(i){i.__load_patch("legacy",c=>{const p=c[i.__symbol__("legacyPatch")];p&&p()}),i.__load_patch("timers",c=>{const p="set",o="clear";a(c,p,o,"Timeout"),a(c,p,o,"Interval"),a(c,p,o,"Immediate")}),i.__load_patch("requestAnimationFrame",c=>{a(c,"request","cancel","AnimationFrame"),a(c,"mozRequest","mozCancel","AnimationFrame"),a(c,"webkitRequest","webkitCancel","AnimationFrame")}),i.__load_patch("blocking",(c,p)=>{const o=["alert","prompt","confirm"];for(let h=0;hfunction(j,v){return p.current.run(b,c,v,S)})}),i.__load_patch("EventTarget",(c,p,o)=>{(function Q(i,c){c.patchEventPrototype(i,c)})(c,o),function y(i,c){if(Zone[c.symbol("patchEventTarget")])return;const{eventNames:p,zoneSymbolEventNames:o,TRUE_STR:h,FALSE_STR:T,ZONE_SYMBOL_PREFIX:b}=c.getGlobalObjects();for(let S=0;S{Ye("MutationObserver"),Ye("WebKitMutationObserver")}),i.__load_patch("IntersectionObserver",(c,p,o)=>{Ye("IntersectionObserver")}),i.__load_patch("FileReader",(c,p,o)=>{Ye("FileReader")}),i.__load_patch("on_property",(c,p,o)=>{!function _e(i,c){if(Je&&!ht||Zone[i.symbol("patchEvents")])return;const p=c.__Zone_ignore_on_properties;let o=[];if(ot){const h=window;o=o.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const T=function dt(){try{const i=le.navigator.userAgent;if(-1!==i.indexOf("MSIE ")||-1!==i.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:h,ignoreProperties:["error"]}]:[];ce(h,Ie(h),p&&p.concat(T),re(h))}o=o.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let h=0;h{!function d(i,c){const{isBrowser:p,isMix:o}=c.getGlobalObjects();(p||o)&&i.customElements&&"customElements"in i&&c.patchCallbacks(c,i.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(c,o)}),i.__load_patch("XHR",(c,p)=>{!function j(v){const U=v.XMLHttpRequest;if(!U)return;const J=U.prototype;let Te=J[be],De=J[ye];if(!Te){const Z=v.XMLHttpRequestEventTarget;if(Z){const M=Z.prototype;Te=M[be],De=M[ye]}}const Pe="readystatechange",Re="scheduled";function D(Z){const M=Z.data,V=M.target;V[b]=!1,V[S]=!1;const Be=V[T];Te||(Te=V[be],De=V[ye]),Be&&De.call(V,Pe,Be);const ve=V[T]=()=>{if(V.readyState===V.DONE)if(!M.aborted&&V[b]&&Z.state===Re){const x=V[p.__symbol__("loadfalse")];if(0!==V.status&&x&&x.length>0){const s=Z.invoke;Z.invoke=function(){const u=V[p.__symbol__("loadfalse")];for(let F=0;Ffunction(Z,M){return Z[h]=0==M[2],Z[C]=M[1],ae.apply(Z,M)}),fe=R("fetchTaskAborting"),A=R("fetchTaskScheduling"),me=Oe(J,"send",()=>function(Z,M){if(!0===p.current[A]||Z[h])return me.apply(Z,M);{const V={target:Z,url:Z[C],isPeriodic:!1,args:M,aborted:!1},Be=G("XMLHttpRequest.send",g,V,D,ie);Z&&!0===Z[S]&&!V.aborted&&Be.state===Re&&Be.invoke()}}),W=Oe(J,"abort",()=>function(Z,M){const V=function se(Z){return Z[o]}(Z);if(V&&"string"==typeof V.type){if(null==V.cancelFn||V.data&&V.data.aborted)return;V.zone.cancelTask(V)}else if(!0===p.current[fe])return W.apply(Z,M)})}(c);const o=R("xhrTask"),h=R("xhrSync"),T=R("xhrListener"),b=R("xhrScheduled"),C=R("xhrURL"),S=R("xhrErrorBeforeScheduled")}),i.__load_patch("geolocation",c=>{c.navigator&&c.navigator.geolocation&&function lt(i,c){const p=i.constructor.name;for(let o=0;o{const S=function(){return C.apply(this,Ee(arguments,p+"."+h))};return oe(S,C),S})(T)}}}(c.navigator.geolocation,["getCurrentPosition","watchPosition"])}),i.__load_patch("PromiseRejectionEvent",(c,p)=>{function o(h){return function(T){r(c,h).forEach(C=>{const S=c.PromiseRejectionEvent;if(S){const j=new S(h,{promise:T.promise,reason:T.rejection});C.invoke(j)}})}}c.PromiseRejectionEvent&&(p[R("unhandledPromiseRejectionHandler")]=o("unhandledrejection"),p[R("rejectionHandledHandler")]=o("rejectionhandled"))}),i.__load_patch("queueMicrotask",(c,p,o)=>{!function t(i,c){c.patchMethod(i,"queueMicrotask",p=>function(o,h){Zone.current.scheduleMicroTask("queueMicrotask",h[0])})}(c,o)})}(Rt)}},Se=>{var B=L=>Se(Se.s=L);B(6935),B(4050)}]); \ No newline at end of file diff --git a/frontend/runtime.738cba8440999ebd.js b/frontend/runtime.738cba8440999ebd.js deleted file mode 100644 index 19415555..00000000 --- a/frontend/runtime.738cba8440999ebd.js +++ /dev/null @@ -1 +0,0 @@ -(()=>{"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:"d00d31d08d7bad32",190:"88ca997666a3998a",193:"b1206fbf24aa1327",853:"c4ce8a9a0bef2bb7"}[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{"use strict";var e,v={},m={};function r(e){var f=m[e];if(void 0!==f)return f.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=(f,t,i,d)=>{if(!t){var a=1/0;for(n=0;n=d)&&Object.keys(r.O).every(b=>r.O[b](t[o]))?t.splice(o--,1):(c=!1,d0&&e[n-1][2]>d;n--)e[n]=e[n-1];e[n]=[t,i,d]},r.d=(e,f)=>{for(var t in f)r.o(f,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:f[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((f,t)=>(r.f[t](e,f),f),[])),r.u=e=>e+"."+{17:"6fa7154eb6e447e2",190:"03f035c34a56c8be",193:"0e1a81316bbc29da",853:"50b06a24091d386f"}[e]+".js",r.miniCssF=e=>{},r.o=(e,f)=>Object.prototype.hasOwnProperty.call(e,f),(()=>{var e={},f="RTLApp:";r.l=(t,i,d,n)=>{if(e[t])e[t].push(i);else{var a,c;if(void 0!==d)for(var o=document.getElementsByTagName("script"),u=0;u{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:f=>f},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,d)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)d.push(n[2]);else if(121!=i){var a=new Promise((l,s)=>n=e[i]=[l,s]);d.push(n[2]=a);var c=r.p+r.u(i),o=new Error;r.l(c,l=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var s=l&&("load"===l.type?"missing":l.type),p=l&&l.target&&l.target.src;o.message="Loading chunk "+i+" failed.\n("+s+": "+p+")",o.name="ChunkLoadError",o.type=s,o.request=p,n[1](o)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var f=(i,d)=>{var o,u,[n,a,c]=d,l=0;if(n.some(p=>0!==e[p])){for(o in a)r.o(a,o)&&(r.m[o]=a[o]);if(c)var s=c(r)}for(i&&i(d);l.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}}html{--mat-ripple-color: rgba(0, 0, 0, .1)}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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}.mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html,.mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}html{--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px}html{--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54)}html{--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}html{--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px}html{--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff}html{--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px}html{--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08}.mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}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{--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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{--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6)}.mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mdc-chip-container-height: 32px}html{--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent}html{--mdc-switch-selected-focus-state-layer-color: #56479d;--mdc-switch-selected-handle-color: #56479d;--mdc-switch-selected-hover-state-layer-color: #56479d;--mdc-switch-selected-pressed-state-layer-color: #56479d;--mdc-switch-selected-focus-handle-color: #312579;--mdc-switch-selected-hover-handle-color: #312579;--mdc-switch-selected-pressed-handle-color: #312579;--mdc-switch-selected-focus-track-color: #8e83c0;--mdc-switch-selected-hover-track-color: #8e83c0;--mdc-switch-selected-pressed-track-color: #8e83c0;--mdc-switch-selected-track-color: #8e83c0;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38)}html .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}html .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}html .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}html{--mdc-switch-state-layer-size: 40px}html{--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px}.mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}html{--mdc-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}html{--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6}html{--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .6}html .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}html .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}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}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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12)}html{--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px}html{--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-list-list-item-one-line-container-height: 48px;--mdc-list-list-item-two-line-container-height: 64px;--mdc-list-list-item-three-line-container-height: 88px;--mat-list-list-item-leading-icon-start-space: 16px;--mat-list-list-item-leading-icon-end-space: 32px}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-state-layer-size: 40px}.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-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: rgba(0, 0, 0, .12)}html{--mat-paginator-container-size: 56px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px}html{--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-header{--mdc-secondary-navigation-tab-container-height: 48px}html{--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16}html{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}html{--mdc-checkbox-state-layer-size: 40px;--mat-checkbox-touch-target-display: block}html{--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px}html{--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}html{--mdc-text-button-container-height: 36px;--mdc-filled-button-container-height: 36px;--mdc-outlined-button-container-height: 36px;--mdc-protected-button-container-height: 36px;--mat-text-button-touch-target-display: block;--mat-filled-button-touch-target-display: block;--mat-protected-button-touch-target-display: block;--mat-outlined-button-touch-target-display: block}html{--mdc-icon-button-icon-size: 24px}html{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}html .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}html .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}html .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}html{--mat-icon-button-touch-target-display: block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:12px}html{--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px}html{--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000}html .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html{--mat-fab-touch-target-display: block;--mat-fab-small-touch-target-display: block}html{--mdc-snackbar-container-shape: 4px}html{--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242}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{--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px}html{--mdc-circular-progress-active-indicator-color: #5e4ea5}html .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}html .mat-warn{--mdc-circular-progress-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: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38)}.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-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12}html{--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0}html{--mat-standard-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-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--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-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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-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-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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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}html .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}html .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: #757575}html{--mat-toolbar-container-background-color: whitesmoke;--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: white}.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}.rtl-container .mat-ripple{overflow:hidden;position:relative}.rtl-container .mat-ripple:not(:empty){transform:translateZ(0)}.rtl-container .mat-ripple.mat-ripple-unbounded{overflow:visible}.rtl-container .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.cdk-high-contrast-active .rtl-container .mat-ripple-element{display:none}.rtl-container .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] .rtl-container .cdk-visually-hidden{left:auto;right:0}.rtl-container .cdk-overlay-container,.rtl-container .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.rtl-container .cdk-overlay-container{position:fixed;z-index:1000}.rtl-container .cdk-overlay-container:empty{display:none}.rtl-container .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.rtl-container .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.rtl-container .cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.rtl-container .cdk-overlay-dark-backdrop{background:#00000052}.rtl-container .cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.rtl-container .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.rtl-container .cdk-overlay-backdrop-noop-animation{transition:none}.rtl-container .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.rtl-container .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.rtl-container textarea.cdk-textarea-autosize{resize:none}.rtl-container textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}.rtl-container 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{}.rtl-container .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.rtl-container .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.rtl-container .mat-focus-indicator{position:relative}.rtl-container .mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.rtl-container .mat-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-focus-indicator-display: block}.rtl-container .mat-mdc-focus-indicator{position:relative}.rtl-container .mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.rtl-container .mat-mdc-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.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:#424242}.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:#424242}.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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.purple.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8e83c0;--mdc-switch-selected-handle-color: #8e83c0;--mdc-switch-selected-hover-state-layer-color: #8e83c0;--mdc-switch-selected-pressed-state-layer-color: #8e83c0;--mdc-switch-selected-focus-handle-color: #afa7d2;--mdc-switch-selected-hover-handle-color: #afa7d2;--mdc-switch-selected-pressed-handle-color: #afa7d2;--mdc-switch-selected-focus-track-color: #56479d;--mdc-switch-selected-hover-track-color: #56479d;--mdc-switch-selected-pressed-track-color: #56479d;--mdc-switch-selected-track-color: #56479d;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #5e4ea5;--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;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-elevation-z0,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-elevation-z1,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z2,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z3,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z4,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-elevation-z5,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.purple.night .mat-elevation-z6,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-elevation-z7,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.purple.night .mat-elevation-z8,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z9,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z10,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z11,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z12,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z13,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z14,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z15,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z16,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z17,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z18,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z19,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z20,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z21,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z22,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z23,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z24,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.purple.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.purple.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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 #eeeeee}.rtl-container.purple.night .border-warn{border:1px solid #ff343b}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#eee}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.purple.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.purple.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.purple.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #1e88e5;--mdc-switch-selected-handle-color: #1e88e5;--mdc-switch-selected-hover-state-layer-color: #1e88e5;--mdc-switch-selected-pressed-state-layer-color: #1e88e5;--mdc-switch-selected-focus-handle-color: #0d47a1;--mdc-switch-selected-hover-handle-color: #0d47a1;--mdc-switch-selected-pressed-handle-color: #0d47a1;--mdc-switch-selected-focus-track-color: #64b5f6;--mdc-switch-selected-hover-track-color: #64b5f6;--mdc-switch-selected-pressed-track-color: #64b5f6;--mdc-switch-selected-track-color: #64b5f6;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--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;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-elevation-z0,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-elevation-z1,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z2,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z3,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z4,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-elevation-z5,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.day .mat-elevation-z6,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-elevation-z7,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.day .mat-elevation-z8,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z9,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z10,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z11,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z12,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z13,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z14,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z15,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z16,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z17,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z18,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z19,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z20,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z21,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z22,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z23,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z24,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.blue.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#1976d2;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:#1976d2}.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:#424242}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#1976d2}.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:#1976d2;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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#424242}.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:#1976d2}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#1976d2;font-weight:500;cursor:pointer;fill:#1976d2}.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:#1976d2;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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .dashboard-capacity-header,.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#1976d2!important}.rtl-container.blue.day .dot-primary{background-color:#1976d2!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:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .border-primary{border:1px solid #1976d2}.rtl-container.blue.day .border-accent{border:1px solid #424242}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#1976d2}.rtl-container.blue.day .material-icons.accent{color:#424242}.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:#424242}.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:#1976d2}.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:#1976d2}.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:#1976d2;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.blue.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.blue.day .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.day .fa-icon-primary{color:#1976d2}.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:#1976d2;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 #1976d2;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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #64b5f6;--mdc-switch-selected-handle-color: #64b5f6;--mdc-switch-selected-hover-state-layer-color: #64b5f6;--mdc-switch-selected-pressed-state-layer-color: #64b5f6;--mdc-switch-selected-focus-handle-color: #90caf9;--mdc-switch-selected-hover-handle-color: #90caf9;--mdc-switch-selected-pressed-handle-color: #90caf9;--mdc-switch-selected-focus-track-color: #1e88e5;--mdc-switch-selected-hover-track-color: #1e88e5;--mdc-switch-selected-pressed-track-color: #1e88e5;--mdc-switch-selected-track-color: #1e88e5;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--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;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-elevation-z0,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-elevation-z1,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z2,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z3,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z4,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-elevation-z5,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.night .mat-elevation-z6,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-elevation-z7,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.night .mat-elevation-z8,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z9,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z10,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z11,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z12,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z13,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z14,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z15,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z16,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z17,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z18,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z19,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z20,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z21,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z22,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z23,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z24,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.blue.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.blue.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#1976d2;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:#ff343b}.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:#eee}.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:#eee}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#1976d2}.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:#ff343b}.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:#1976d2!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:#1976d2}.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:#1976d2}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.night .border-primary{border:1px solid #1976d2}.rtl-container.blue.night .border-accent{border:1px solid #eeeeee}.rtl-container.blue.night .border-warn{border:1px solid #ff343b}.rtl-container.blue.night .material-icons.primary{color:#1976d2}.rtl-container.blue.night .material-icons.accent{color:#eee}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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:#1976d2}.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:#1976d2}.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:#1976d2;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.blue.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.blue.night .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.blue.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.blue.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.blue.night .svg-fill-primary{fill:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.night .fa-icon-primary{color:#1976d2}.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:#1976d2;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 #1976d2;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #3949ab;--mdc-switch-selected-handle-color: #3949ab;--mdc-switch-selected-hover-state-layer-color: #3949ab;--mdc-switch-selected-pressed-state-layer-color: #3949ab;--mdc-switch-selected-focus-handle-color: #1a237e;--mdc-switch-selected-hover-handle-color: #1a237e;--mdc-switch-selected-pressed-handle-color: #1a237e;--mdc-switch-selected-focus-track-color: #7986cb;--mdc-switch-selected-hover-track-color: #7986cb;--mdc-switch-selected-pressed-track-color: #7986cb;--mdc-switch-selected-track-color: #7986cb;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--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;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-elevation-z0,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-elevation-z1,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z2,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z3,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z4,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-elevation-z5,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.day .mat-elevation-z6,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-elevation-z7,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.day .mat-elevation-z8,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z9,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z10,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z11,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z12,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z13,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z14,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z15,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z16,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z17,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z18,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z19,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z20,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z21,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z22,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z23,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z24,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.indigo.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.indigo.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #7986cb;--mdc-switch-selected-handle-color: #7986cb;--mdc-switch-selected-hover-state-layer-color: #7986cb;--mdc-switch-selected-pressed-state-layer-color: #7986cb;--mdc-switch-selected-focus-handle-color: #9fa8da;--mdc-switch-selected-hover-handle-color: #9fa8da;--mdc-switch-selected-pressed-handle-color: #9fa8da;--mdc-switch-selected-focus-track-color: #3949ab;--mdc-switch-selected-hover-track-color: #3949ab;--mdc-switch-selected-pressed-track-color: #3949ab;--mdc-switch-selected-track-color: #3949ab;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--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;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-elevation-z0,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-elevation-z1,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z2,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z3,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z4,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-elevation-z5,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.night .mat-elevation-z6,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-elevation-z7,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.night .mat-elevation-z8,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z9,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z10,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z11,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z12,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z13,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z14,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z15,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z16,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z17,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z18,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z19,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z20,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z21,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z22,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z23,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z24,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.indigo.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.indigo.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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 #eeeeee}.rtl-container.indigo.night .border-warn{border:1px solid #ff343b}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#eee}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.indigo.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.indigo.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.indigo.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #154a23;--mdc-switch-selected-handle-color: #154a23;--mdc-switch-selected-hover-state-layer-color: #154a23;--mdc-switch-selected-pressed-state-layer-color: #154a23;--mdc-switch-selected-focus-handle-color: #08270e;--mdc-switch-selected-hover-handle-color: #08270e;--mdc-switch-selected-pressed-handle-color: #08270e;--mdc-switch-selected-focus-track-color: #5d8568;--mdc-switch-selected-hover-track-color: #5d8568;--mdc-switch-selected-pressed-track-color: #5d8568;--mdc-switch-selected-track-color: #5d8568;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--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;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-elevation-z0,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-elevation-z1,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.day .mat-elevation-z2,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-elevation-z3,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.day .mat-elevation-z4,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-elevation-z5,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.day .mat-elevation-z6,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-elevation-z7,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.day .mat-elevation-z8,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-elevation-z9,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.day .mat-elevation-z10,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.day .mat-elevation-z11,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.day .mat-elevation-z12,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.day .mat-elevation-z13,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.day .mat-elevation-z14,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.day .mat-elevation-z15,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.day .mat-elevation-z16,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.day .mat-elevation-z17,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.day .mat-elevation-z18,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.day .mat-elevation-z19,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.day .mat-elevation-z20,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.day .mat-elevation-z21,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.day .mat-elevation-z22,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.day .mat-elevation-z23,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.day .mat-elevation-z24,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.green.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.green.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #5d8568;--mdc-switch-selected-handle-color: #5d8568;--mdc-switch-selected-hover-state-layer-color: #5d8568;--mdc-switch-selected-pressed-state-layer-color: #5d8568;--mdc-switch-selected-focus-handle-color: #8ca893;--mdc-switch-selected-hover-handle-color: #8ca893;--mdc-switch-selected-pressed-handle-color: #8ca893;--mdc-switch-selected-focus-track-color: #154a23;--mdc-switch-selected-hover-track-color: #154a23;--mdc-switch-selected-pressed-track-color: #154a23;--mdc-switch-selected-track-color: #154a23;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--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;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-elevation-z0,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-elevation-z1,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.night .mat-elevation-z2,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-elevation-z3,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.night .mat-elevation-z4,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-elevation-z5,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.night .mat-elevation-z6,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-elevation-z7,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.night .mat-elevation-z8,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-elevation-z9,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.night .mat-elevation-z10,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.night .mat-elevation-z11,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.night .mat-elevation-z12,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.night .mat-elevation-z13,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.night .mat-elevation-z14,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.night .mat-elevation-z15,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.night .mat-elevation-z16,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.night .mat-elevation-z17,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.night .mat-elevation-z18,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.night .mat-elevation-z19,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.night .mat-elevation-z20,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.night .mat-elevation-z21,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.night .mat-elevation-z22,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.night .mat-elevation-z23,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.night .mat-elevation-z24,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.green.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.green.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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 #eeeeee}.rtl-container.green.night .border-warn{border:1px solid #ff343b}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#eee}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.green.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.green.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.green.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #00897b;--mdc-switch-selected-handle-color: #00897b;--mdc-switch-selected-hover-state-layer-color: #00897b;--mdc-switch-selected-pressed-state-layer-color: #00897b;--mdc-switch-selected-focus-handle-color: #004d40;--mdc-switch-selected-hover-handle-color: #004d40;--mdc-switch-selected-pressed-handle-color: #004d40;--mdc-switch-selected-focus-track-color: #4db6ac;--mdc-switch-selected-hover-track-color: #4db6ac;--mdc-switch-selected-pressed-track-color: #4db6ac;--mdc-switch-selected-track-color: #4db6ac;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--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;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-elevation-z0,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-elevation-z1,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z2,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z3,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z4,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-elevation-z5,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.day .mat-elevation-z6,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-elevation-z7,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.day .mat-elevation-z8,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z9,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z10,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z11,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z12,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z13,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z14,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z15,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z16,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z17,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z18,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z19,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z20,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z21,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z22,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z23,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z24,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.teal.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#00695c;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:#00695c}.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:#424242}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#00695c}.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:#00695c;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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#424242}.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:#00695c}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#00695c;font-weight:500;cursor:pointer;fill:#00695c}.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:#00695c;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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .dashboard-capacity-header,.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#00695c!important}.rtl-container.teal.day .dot-primary{background-color:#00695c!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:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#00695c}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .border-primary{border:1px solid #00695c}.rtl-container.teal.day .border-accent{border:1px solid #424242}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#00695c}.rtl-container.teal.day .material-icons.accent{color:#424242}.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:#424242}.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:#00695c}.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:#00695c}.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:#00695c;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.teal.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.teal.day .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.day .fa-icon-primary{color:#00695c}.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:#00695c;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 #00695c;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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #4db6ac;--mdc-switch-selected-handle-color: #4db6ac;--mdc-switch-selected-hover-state-layer-color: #4db6ac;--mdc-switch-selected-pressed-state-layer-color: #4db6ac;--mdc-switch-selected-focus-handle-color: #80cbc4;--mdc-switch-selected-hover-handle-color: #80cbc4;--mdc-switch-selected-pressed-handle-color: #80cbc4;--mdc-switch-selected-focus-track-color: #00897b;--mdc-switch-selected-hover-track-color: #00897b;--mdc-switch-selected-pressed-track-color: #00897b;--mdc-switch-selected-track-color: #00897b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--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;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-elevation-z0,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-elevation-z1,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z2,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z3,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z4,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-elevation-z5,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.night .mat-elevation-z6,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-elevation-z7,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.night .mat-elevation-z8,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z9,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z10,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z11,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z12,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z13,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z14,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z15,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z16,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z17,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z18,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z19,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z20,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z21,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z22,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z23,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z24,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.teal.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.teal.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#00695c;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:#ff343b}.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:#eee}.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:#eee}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#00695c}.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:#ff343b}.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:#00695c!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:#00695c}.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:#00695c}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.night .border-primary{border:1px solid #00695c}.rtl-container.teal.night .border-accent{border:1px solid #eeeeee}.rtl-container.teal.night .border-warn{border:1px solid #ff343b}.rtl-container.teal.night .material-icons.primary{color:#00695c}.rtl-container.teal.night .material-icons.accent{color:#eee}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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:#00695c}.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:#00695c}.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:#00695c;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.teal.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.teal.night .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.teal.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.teal.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.teal.night .svg-fill-primary{fill:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.night .fa-icon-primary{color:#00695c}.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:#00695c;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 #00695c;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #d81b60;--mdc-switch-selected-handle-color: #d81b60;--mdc-switch-selected-hover-state-layer-color: #d81b60;--mdc-switch-selected-pressed-state-layer-color: #d81b60;--mdc-switch-selected-focus-handle-color: #880e4f;--mdc-switch-selected-hover-handle-color: #880e4f;--mdc-switch-selected-pressed-handle-color: #880e4f;--mdc-switch-selected-focus-track-color: #f06292;--mdc-switch-selected-hover-track-color: #f06292;--mdc-switch-selected-pressed-track-color: #f06292;--mdc-switch-selected-track-color: #f06292;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--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;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-elevation-z0,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-elevation-z1,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z2,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z3,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z4,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-elevation-z5,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.day .mat-elevation-z6,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-elevation-z7,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.day .mat-elevation-z8,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z9,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z10,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z11,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z12,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z13,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z14,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z15,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z16,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z17,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z18,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z19,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z20,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z21,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z22,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z23,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z24,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.pink.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.pink.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #f06292;--mdc-switch-selected-handle-color: #f06292;--mdc-switch-selected-hover-state-layer-color: #f06292;--mdc-switch-selected-pressed-state-layer-color: #f06292;--mdc-switch-selected-focus-handle-color: #f48fb1;--mdc-switch-selected-hover-handle-color: #f48fb1;--mdc-switch-selected-pressed-handle-color: #f48fb1;--mdc-switch-selected-focus-track-color: #d81b60;--mdc-switch-selected-hover-track-color: #d81b60;--mdc-switch-selected-pressed-track-color: #d81b60;--mdc-switch-selected-track-color: #d81b60;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--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;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-elevation-z0,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-elevation-z1,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z2,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z3,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z4,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-elevation-z5,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.night .mat-elevation-z6,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-elevation-z7,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.night .mat-elevation-z8,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z9,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z10,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z11,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z12,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z13,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z14,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z15,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z16,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z17,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z18,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z19,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z20,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z21,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z22,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z23,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z24,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.pink.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.pink.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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 #eeeeee}.rtl-container.pink.night .border-warn{border:1px solid #ff343b}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#eee}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.pink.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.pink.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.pink.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8c571b;--mdc-switch-selected-handle-color: #8c571b;--mdc-switch-selected-hover-state-layer-color: #8c571b;--mdc-switch-selected-pressed-state-layer-color: #8c571b;--mdc-switch-selected-focus-handle-color: #65320a;--mdc-switch-selected-hover-handle-color: #65320a;--mdc-switch-selected-pressed-handle-color: #65320a;--mdc-switch-selected-focus-track-color: #b48f62;--mdc-switch-selected-hover-track-color: #b48f62;--mdc-switch-selected-pressed-track-color: #b48f62;--mdc-switch-selected-track-color: #b48f62;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--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;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-elevation-z0,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-elevation-z1,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z2,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z3,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z4,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-elevation-z5,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.day .mat-elevation-z6,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-elevation-z7,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.day .mat-elevation-z8,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z9,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z10,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z11,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z12,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z13,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z14,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z15,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z16,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z17,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z18,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z19,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z20,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z21,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z22,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z23,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z24,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.yellow.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.yellow.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #b48f62;--mdc-switch-selected-handle-color: #b48f62;--mdc-switch-selected-hover-state-layer-color: #b48f62;--mdc-switch-selected-pressed-state-layer-color: #b48f62;--mdc-switch-selected-focus-handle-color: #caaf8f;--mdc-switch-selected-hover-handle-color: #caaf8f;--mdc-switch-selected-pressed-handle-color: #caaf8f;--mdc-switch-selected-focus-track-color: #8c571b;--mdc-switch-selected-hover-track-color: #8c571b;--mdc-switch-selected-pressed-track-color: #8c571b;--mdc-switch-selected-track-color: #8c571b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--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;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-elevation-z0,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-elevation-z1,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z2,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z3,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z4,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-elevation-z5,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.night .mat-elevation-z6,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-elevation-z7,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.night .mat-elevation-z8,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z9,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z10,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z11,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z12,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z13,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z14,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z15,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z16,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z17,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z18,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z19,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z20,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z21,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z22,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z23,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z24,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.yellow.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.yellow.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.yellow.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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 #eeeeee}.rtl-container.yellow.night .border-warn{border:1px solid #ff343b}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#eee}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.yellow.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.yellow.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.yellow.night .material-icons.icon-failed-status{fill:#ff343b;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.e57f489d97a0d3fc.css b/frontend/styles.e57f489d97a0d3fc.css deleted file mode 100644 index d9deb60c..00000000 --- a/frontend/styles.e57f489d97a0d3fc.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}}html{--mat-ripple-color: rgba(0, 0, 0, .1)}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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}.mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html,.mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}html{--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px}html{--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54)}html{--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}html{--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px}html{--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff}html{--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px}html{--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08}.mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}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{--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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{--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6)}.mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mdc-chip-container-height: 32px}html{--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent}html{--mdc-switch-selected-focus-state-layer-color: #56479d;--mdc-switch-selected-handle-color: #56479d;--mdc-switch-selected-hover-state-layer-color: #56479d;--mdc-switch-selected-pressed-state-layer-color: #56479d;--mdc-switch-selected-focus-handle-color: #312579;--mdc-switch-selected-hover-handle-color: #312579;--mdc-switch-selected-pressed-handle-color: #312579;--mdc-switch-selected-focus-track-color: #8e83c0;--mdc-switch-selected-hover-track-color: #8e83c0;--mdc-switch-selected-pressed-track-color: #8e83c0;--mdc-switch-selected-track-color: #8e83c0;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38)}html .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}html .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}html .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}html{--mdc-switch-state-layer-size: 40px}html{--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px}.mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}html{--mdc-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}html{--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6}html{--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .6}html .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}html .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}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}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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12)}html{--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px}html{--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-list-list-item-one-line-container-height: 48px;--mdc-list-list-item-two-line-container-height: 64px;--mdc-list-list-item-three-line-container-height: 88px;--mat-list-list-item-leading-icon-start-space: 16px;--mat-list-list-item-leading-icon-end-space: 32px}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-state-layer-size: 40px}.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-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: rgba(0, 0, 0, .12)}html{--mat-paginator-container-size: 56px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px}html{--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-header{--mdc-secondary-navigation-tab-container-height: 48px}html{--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16}html{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}html{--mdc-checkbox-state-layer-size: 40px;--mat-checkbox-touch-target-display: block}html{--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px}html{--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}html{--mdc-text-button-container-height: 36px;--mdc-filled-button-container-height: 36px;--mdc-outlined-button-container-height: 36px;--mdc-protected-button-container-height: 36px;--mat-text-button-touch-target-display: block;--mat-filled-button-touch-target-display: block;--mat-protected-button-touch-target-display: block;--mat-outlined-button-touch-target-display: block}html{--mdc-icon-button-icon-size: 24px}html{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}html .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}html .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}html .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}html{--mat-icon-button-touch-target-display: block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:12px}html{--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px}html{--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000}html .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html{--mat-fab-touch-target-display: block;--mat-fab-small-touch-target-display: block}html{--mdc-snackbar-container-shape: 4px}html{--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242}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{--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px}html{--mdc-circular-progress-active-indicator-color: #5e4ea5}html .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}html .mat-warn{--mdc-circular-progress-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: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38)}.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-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12}html{--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0}html{--mat-standard-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-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--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-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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-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-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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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}html .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}html .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: #757575}html{--mat-toolbar-container-background-color: whitesmoke;--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: white}.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}.rtl-container .mat-ripple{overflow:hidden;position:relative}.rtl-container .mat-ripple:not(:empty){transform:translateZ(0)}.rtl-container .mat-ripple.mat-ripple-unbounded{overflow:visible}.rtl-container .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.cdk-high-contrast-active .rtl-container .mat-ripple-element{display:none}.rtl-container .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] .rtl-container .cdk-visually-hidden{left:auto;right:0}.rtl-container .cdk-overlay-container,.rtl-container .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.rtl-container .cdk-overlay-container{position:fixed;z-index:1000}.rtl-container .cdk-overlay-container:empty{display:none}.rtl-container .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.rtl-container .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.rtl-container .cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.rtl-container .cdk-overlay-dark-backdrop{background:#00000052}.rtl-container .cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.rtl-container .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.rtl-container .cdk-overlay-backdrop-noop-animation{transition:none}.rtl-container .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.rtl-container .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.rtl-container textarea.cdk-textarea-autosize{resize:none}.rtl-container textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}.rtl-container 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{}.rtl-container .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.rtl-container .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.rtl-container .mat-focus-indicator{position:relative}.rtl-container .mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.rtl-container .mat-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-focus-indicator-display: block}.rtl-container .mat-mdc-focus-indicator{position:relative}.rtl-container .mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.rtl-container .mat-mdc-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.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:#424242}.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:#424242}.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 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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.purple.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8e83c0;--mdc-switch-selected-handle-color: #8e83c0;--mdc-switch-selected-hover-state-layer-color: #8e83c0;--mdc-switch-selected-pressed-state-layer-color: #8e83c0;--mdc-switch-selected-focus-handle-color: #afa7d2;--mdc-switch-selected-hover-handle-color: #afa7d2;--mdc-switch-selected-pressed-handle-color: #afa7d2;--mdc-switch-selected-focus-track-color: #56479d;--mdc-switch-selected-hover-track-color: #56479d;--mdc-switch-selected-pressed-track-color: #56479d;--mdc-switch-selected-track-color: #56479d;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #5e4ea5;--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;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-elevation-z0,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-elevation-z1,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z2,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z3,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z4,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-elevation-z5,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.purple.night .mat-elevation-z6,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-elevation-z7,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.purple.night .mat-elevation-z8,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z9,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z10,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z11,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z12,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z13,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z14,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z15,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z16,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z17,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z18,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z19,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z20,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z21,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z22,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z23,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z24,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.purple.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.purple.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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{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 #eeeeee}.rtl-container.purple.night .border-warn{border:1px solid #ff343b}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#eee}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.purple.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.purple.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.purple.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #1e88e5;--mdc-switch-selected-handle-color: #1e88e5;--mdc-switch-selected-hover-state-layer-color: #1e88e5;--mdc-switch-selected-pressed-state-layer-color: #1e88e5;--mdc-switch-selected-focus-handle-color: #0d47a1;--mdc-switch-selected-hover-handle-color: #0d47a1;--mdc-switch-selected-pressed-handle-color: #0d47a1;--mdc-switch-selected-focus-track-color: #64b5f6;--mdc-switch-selected-hover-track-color: #64b5f6;--mdc-switch-selected-pressed-track-color: #64b5f6;--mdc-switch-selected-track-color: #64b5f6;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--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;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-elevation-z0,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-elevation-z1,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z2,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z3,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z4,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-elevation-z5,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.day .mat-elevation-z6,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-elevation-z7,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.day .mat-elevation-z8,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z9,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z10,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z11,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z12,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z13,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z14,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z15,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z16,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z17,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z18,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z19,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z20,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z21,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z22,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z23,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z24,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.blue.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#1976d2;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:#1976d2}.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:#424242}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#1976d2}.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:#1976d2;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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#424242}.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:#1976d2}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#1976d2;font-weight:500;cursor:pointer;fill:#1976d2}.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:#1976d2;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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .dashboard-capacity-header,.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#1976d2!important}.rtl-container.blue.day .dot-primary{background-color:#1976d2!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:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#1976d2}.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:#1976d2}.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:#1976d2}.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 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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .border-primary{border:1px solid #1976d2}.rtl-container.blue.day .border-accent{border:1px solid #424242}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#1976d2}.rtl-container.blue.day .material-icons.accent{color:#424242}.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:#424242}.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:#1976d2}.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:#1976d2}.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:#1976d2;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.blue.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.blue.day .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.day .fa-icon-primary{color:#1976d2}.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:#1976d2;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 #1976d2;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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #64b5f6;--mdc-switch-selected-handle-color: #64b5f6;--mdc-switch-selected-hover-state-layer-color: #64b5f6;--mdc-switch-selected-pressed-state-layer-color: #64b5f6;--mdc-switch-selected-focus-handle-color: #90caf9;--mdc-switch-selected-hover-handle-color: #90caf9;--mdc-switch-selected-pressed-handle-color: #90caf9;--mdc-switch-selected-focus-track-color: #1e88e5;--mdc-switch-selected-hover-track-color: #1e88e5;--mdc-switch-selected-pressed-track-color: #1e88e5;--mdc-switch-selected-track-color: #1e88e5;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--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;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-elevation-z0,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-elevation-z1,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z2,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z3,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z4,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-elevation-z5,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.night .mat-elevation-z6,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-elevation-z7,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.night .mat-elevation-z8,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z9,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z10,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z11,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z12,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z13,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z14,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z15,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z16,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z17,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z18,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z19,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z20,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z21,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z22,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z23,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z24,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.blue.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.blue.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#1976d2;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:#ff343b}.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:#eee}.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:#eee}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#1976d2}.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:#ff343b}.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:#1976d2!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:#1976d2}.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:#1976d2}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#1976d2}.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{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:#1976d2}.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:#1976d2}.rtl-container.blue.night .border-primary{border:1px solid #1976d2}.rtl-container.blue.night .border-accent{border:1px solid #eeeeee}.rtl-container.blue.night .border-warn{border:1px solid #ff343b}.rtl-container.blue.night .material-icons.primary{color:#1976d2}.rtl-container.blue.night .material-icons.accent{color:#eee}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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:#1976d2}.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:#1976d2}.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:#1976d2;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.blue.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.blue.night .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.blue.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.blue.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.blue.night .svg-fill-primary{fill:#1976d2}.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:#1976d2}.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:#1976d2}.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:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.night .fa-icon-primary{color:#1976d2}.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:#1976d2;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 #1976d2;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #3949ab;--mdc-switch-selected-handle-color: #3949ab;--mdc-switch-selected-hover-state-layer-color: #3949ab;--mdc-switch-selected-pressed-state-layer-color: #3949ab;--mdc-switch-selected-focus-handle-color: #1a237e;--mdc-switch-selected-hover-handle-color: #1a237e;--mdc-switch-selected-pressed-handle-color: #1a237e;--mdc-switch-selected-focus-track-color: #7986cb;--mdc-switch-selected-hover-track-color: #7986cb;--mdc-switch-selected-pressed-track-color: #7986cb;--mdc-switch-selected-track-color: #7986cb;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--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;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-elevation-z0,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-elevation-z1,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z2,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z3,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z4,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-elevation-z5,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.day .mat-elevation-z6,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-elevation-z7,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.day .mat-elevation-z8,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z9,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z10,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z11,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z12,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z13,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z14,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z15,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z16,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z17,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z18,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z19,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z20,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z21,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z22,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z23,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z24,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.indigo.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.indigo.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #7986cb;--mdc-switch-selected-handle-color: #7986cb;--mdc-switch-selected-hover-state-layer-color: #7986cb;--mdc-switch-selected-pressed-state-layer-color: #7986cb;--mdc-switch-selected-focus-handle-color: #9fa8da;--mdc-switch-selected-hover-handle-color: #9fa8da;--mdc-switch-selected-pressed-handle-color: #9fa8da;--mdc-switch-selected-focus-track-color: #3949ab;--mdc-switch-selected-hover-track-color: #3949ab;--mdc-switch-selected-pressed-track-color: #3949ab;--mdc-switch-selected-track-color: #3949ab;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--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;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-elevation-z0,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-elevation-z1,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z2,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z3,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z4,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-elevation-z5,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.night .mat-elevation-z6,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-elevation-z7,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.night .mat-elevation-z8,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z9,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z10,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z11,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z12,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z13,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z14,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z15,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z16,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z17,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z18,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z19,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z20,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z21,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z22,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z23,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z24,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.indigo.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.indigo.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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{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 #eeeeee}.rtl-container.indigo.night .border-warn{border:1px solid #ff343b}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#eee}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.indigo.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.indigo.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.indigo.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #154a23;--mdc-switch-selected-handle-color: #154a23;--mdc-switch-selected-hover-state-layer-color: #154a23;--mdc-switch-selected-pressed-state-layer-color: #154a23;--mdc-switch-selected-focus-handle-color: #08270e;--mdc-switch-selected-hover-handle-color: #08270e;--mdc-switch-selected-pressed-handle-color: #08270e;--mdc-switch-selected-focus-track-color: #5d8568;--mdc-switch-selected-hover-track-color: #5d8568;--mdc-switch-selected-pressed-track-color: #5d8568;--mdc-switch-selected-track-color: #5d8568;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--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;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-elevation-z0,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-elevation-z1,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.day .mat-elevation-z2,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-elevation-z3,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.day .mat-elevation-z4,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-elevation-z5,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.day .mat-elevation-z6,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-elevation-z7,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.day .mat-elevation-z8,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-elevation-z9,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.day .mat-elevation-z10,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.day .mat-elevation-z11,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.day .mat-elevation-z12,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.day .mat-elevation-z13,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.day .mat-elevation-z14,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.day .mat-elevation-z15,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.day .mat-elevation-z16,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.day .mat-elevation-z17,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.day .mat-elevation-z18,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.day .mat-elevation-z19,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.day .mat-elevation-z20,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.day .mat-elevation-z21,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.day .mat-elevation-z22,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.day .mat-elevation-z23,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.day .mat-elevation-z24,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.green.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.green.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #5d8568;--mdc-switch-selected-handle-color: #5d8568;--mdc-switch-selected-hover-state-layer-color: #5d8568;--mdc-switch-selected-pressed-state-layer-color: #5d8568;--mdc-switch-selected-focus-handle-color: #8ca893;--mdc-switch-selected-hover-handle-color: #8ca893;--mdc-switch-selected-pressed-handle-color: #8ca893;--mdc-switch-selected-focus-track-color: #154a23;--mdc-switch-selected-hover-track-color: #154a23;--mdc-switch-selected-pressed-track-color: #154a23;--mdc-switch-selected-track-color: #154a23;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--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;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-elevation-z0,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-elevation-z1,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.night .mat-elevation-z2,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-elevation-z3,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.night .mat-elevation-z4,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-elevation-z5,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.night .mat-elevation-z6,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-elevation-z7,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.night .mat-elevation-z8,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-elevation-z9,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.night .mat-elevation-z10,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.night .mat-elevation-z11,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.night .mat-elevation-z12,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.night .mat-elevation-z13,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.night .mat-elevation-z14,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.night .mat-elevation-z15,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.night .mat-elevation-z16,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.night .mat-elevation-z17,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.night .mat-elevation-z18,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.night .mat-elevation-z19,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.night .mat-elevation-z20,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.night .mat-elevation-z21,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.night .mat-elevation-z22,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.night .mat-elevation-z23,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.night .mat-elevation-z24,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.green.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.green.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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{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 #eeeeee}.rtl-container.green.night .border-warn{border:1px solid #ff343b}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#eee}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.green.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.green.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.green.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #00897b;--mdc-switch-selected-handle-color: #00897b;--mdc-switch-selected-hover-state-layer-color: #00897b;--mdc-switch-selected-pressed-state-layer-color: #00897b;--mdc-switch-selected-focus-handle-color: #004d40;--mdc-switch-selected-hover-handle-color: #004d40;--mdc-switch-selected-pressed-handle-color: #004d40;--mdc-switch-selected-focus-track-color: #4db6ac;--mdc-switch-selected-hover-track-color: #4db6ac;--mdc-switch-selected-pressed-track-color: #4db6ac;--mdc-switch-selected-track-color: #4db6ac;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--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;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-elevation-z0,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-elevation-z1,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z2,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z3,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z4,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-elevation-z5,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.day .mat-elevation-z6,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-elevation-z7,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.day .mat-elevation-z8,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z9,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z10,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z11,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z12,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z13,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z14,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z15,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z16,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z17,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z18,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z19,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z20,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z21,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z22,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z23,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z24,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.teal.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#00695c;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:#00695c}.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:#424242}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#00695c}.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:#00695c;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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#424242}.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:#00695c}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#00695c;font-weight:500;cursor:pointer;fill:#00695c}.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:#00695c;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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .dashboard-capacity-header,.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#00695c!important}.rtl-container.teal.day .dot-primary{background-color:#00695c!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:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#00695c}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#00695c}.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:#00695c}.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:#00695c}.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 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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .border-primary{border:1px solid #00695c}.rtl-container.teal.day .border-accent{border:1px solid #424242}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#00695c}.rtl-container.teal.day .material-icons.accent{color:#424242}.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:#424242}.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:#00695c}.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:#00695c}.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:#00695c;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.teal.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.teal.day .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.day .fa-icon-primary{color:#00695c}.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:#00695c;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 #00695c;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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #4db6ac;--mdc-switch-selected-handle-color: #4db6ac;--mdc-switch-selected-hover-state-layer-color: #4db6ac;--mdc-switch-selected-pressed-state-layer-color: #4db6ac;--mdc-switch-selected-focus-handle-color: #80cbc4;--mdc-switch-selected-hover-handle-color: #80cbc4;--mdc-switch-selected-pressed-handle-color: #80cbc4;--mdc-switch-selected-focus-track-color: #00897b;--mdc-switch-selected-hover-track-color: #00897b;--mdc-switch-selected-pressed-track-color: #00897b;--mdc-switch-selected-track-color: #00897b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--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;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-elevation-z0,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-elevation-z1,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z2,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z3,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z4,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-elevation-z5,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.night .mat-elevation-z6,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-elevation-z7,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.night .mat-elevation-z8,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z9,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z10,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z11,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z12,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z13,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z14,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z15,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z16,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z17,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z18,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z19,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z20,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z21,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z22,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z23,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z24,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.teal.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.teal.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#00695c;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:#ff343b}.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:#eee}.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:#eee}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#00695c}.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:#ff343b}.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:#00695c!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:#00695c}.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:#00695c}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#00695c}.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{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:#00695c}.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:#00695c}.rtl-container.teal.night .border-primary{border:1px solid #00695c}.rtl-container.teal.night .border-accent{border:1px solid #eeeeee}.rtl-container.teal.night .border-warn{border:1px solid #ff343b}.rtl-container.teal.night .material-icons.primary{color:#00695c}.rtl-container.teal.night .material-icons.accent{color:#eee}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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:#00695c}.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:#00695c}.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:#00695c;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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.teal.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.teal.night .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.teal.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.teal.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.teal.night .svg-fill-primary{fill:#00695c}.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:#00695c}.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:#00695c}.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:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.night .fa-icon-primary{color:#00695c}.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:#00695c;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 #00695c;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #d81b60;--mdc-switch-selected-handle-color: #d81b60;--mdc-switch-selected-hover-state-layer-color: #d81b60;--mdc-switch-selected-pressed-state-layer-color: #d81b60;--mdc-switch-selected-focus-handle-color: #880e4f;--mdc-switch-selected-hover-handle-color: #880e4f;--mdc-switch-selected-pressed-handle-color: #880e4f;--mdc-switch-selected-focus-track-color: #f06292;--mdc-switch-selected-hover-track-color: #f06292;--mdc-switch-selected-pressed-track-color: #f06292;--mdc-switch-selected-track-color: #f06292;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--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;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-elevation-z0,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-elevation-z1,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z2,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z3,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z4,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-elevation-z5,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.day .mat-elevation-z6,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-elevation-z7,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.day .mat-elevation-z8,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z9,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z10,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z11,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z12,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z13,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z14,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z15,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z16,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z17,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z18,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z19,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z20,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z21,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z22,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z23,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z24,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.pink.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.pink.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #f06292;--mdc-switch-selected-handle-color: #f06292;--mdc-switch-selected-hover-state-layer-color: #f06292;--mdc-switch-selected-pressed-state-layer-color: #f06292;--mdc-switch-selected-focus-handle-color: #f48fb1;--mdc-switch-selected-hover-handle-color: #f48fb1;--mdc-switch-selected-pressed-handle-color: #f48fb1;--mdc-switch-selected-focus-track-color: #d81b60;--mdc-switch-selected-hover-track-color: #d81b60;--mdc-switch-selected-pressed-track-color: #d81b60;--mdc-switch-selected-track-color: #d81b60;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--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;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-elevation-z0,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-elevation-z1,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z2,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z3,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z4,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-elevation-z5,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.night .mat-elevation-z6,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-elevation-z7,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.night .mat-elevation-z8,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z9,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z10,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z11,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z12,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z13,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z14,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z15,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z16,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z17,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z18,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z19,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z20,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z21,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z22,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z23,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z24,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.pink.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.pink.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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{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 #eeeeee}.rtl-container.pink.night .border-warn{border:1px solid #ff343b}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#eee}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.pink.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.pink.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.pink.night .material-icons.icon-failed-status{fill:#ff343b;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-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-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);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--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: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--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);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--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);--mat-autocomplete-background-color: white;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8c571b;--mdc-switch-selected-handle-color: #8c571b;--mdc-switch-selected-hover-state-layer-color: #8c571b;--mdc-switch-selected-pressed-state-layer-color: #8c571b;--mdc-switch-selected-focus-handle-color: #65320a;--mdc-switch-selected-hover-handle-color: #65320a;--mdc-switch-selected-pressed-handle-color: #65320a;--mdc-switch-selected-focus-track-color: #b48f62;--mdc-switch-selected-hover-track-color: #b48f62;--mdc-switch-selected-pressed-track-color: #b48f62;--mdc-switch-selected-track-color: #b48f62;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-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-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .6;--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-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: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-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: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--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;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--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: black;--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, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--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: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--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-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;--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: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--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: #757575;--mat-toolbar-container-background-color: whitesmoke;--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)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.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: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-elevation-z0,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-elevation-z1,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z2,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z3,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z4,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-elevation-z5,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.day .mat-elevation-z6,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-elevation-z7,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.day .mat-elevation-z8,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z9,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z10,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z11,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z12,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z13,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z14,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z15,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z16,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z17,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z18,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z19,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z20,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z21,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z22,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z23,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z24,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.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: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.yellow.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.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--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-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-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #424242;--mat-tab-header-with-background-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-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mdc-circular-progress-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{--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: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-warn{--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: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.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: white}.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:#424242}.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:#424242}.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 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 #424242}.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:#424242}.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:#424242}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.yellow.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-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);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-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-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--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, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--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);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--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);--mat-autocomplete-background-color: #424242;--mdc-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);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--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;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #b48f62;--mdc-switch-selected-handle-color: #b48f62;--mdc-switch-selected-hover-state-layer-color: #b48f62;--mdc-switch-selected-pressed-state-layer-color: #b48f62;--mdc-switch-selected-focus-handle-color: #caaf8f;--mdc-switch-selected-hover-handle-color: #caaf8f;--mdc-switch-selected-pressed-handle-color: #caaf8f;--mdc-switch-selected-focus-track-color: #8c571b;--mdc-switch-selected-hover-track-color: #8c571b;--mdc-switch-selected-pressed-track-color: #8c571b;--mdc-switch-selected-track-color: #8c571b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-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);--mdc-switch-handle-shadow-color: black;--mdc-switch-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);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-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-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .9;--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-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-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);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-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);--mdc-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);--mdc-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);--mdc-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);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-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);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--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);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--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;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--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);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--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: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--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, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--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: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--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-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;--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(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--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: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.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: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-elevation-z0,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-elevation-z1,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z2,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z3,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z4,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-elevation-z5,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.night .mat-elevation-z6,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-elevation-z7,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.night .mat-elevation-z8,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z9,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z10,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z11,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z12,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z13,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z14,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z15,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z16,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z17,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z18,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z19,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z20,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z21,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z22,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z23,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z24,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.yellow.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.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{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.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{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.yellow.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.yellow.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-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--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .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{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.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-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.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-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.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-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.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: #ff343b}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--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: white}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--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:#ff343b}.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:#eee}.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:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#ff343b}.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:#ff343b}.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{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 #eeeeee}.rtl-container.yellow.night .border-warn{border:1px solid #ff343b}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#eee}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.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:#eee}.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 .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.yellow.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.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{right:unset;margin-left:.5rem!important}@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:#ff343b}.rtl-container.yellow.night .fill-warn{fill:#ff343b}.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:#ff343b}.rtl-container.yellow.night .material-icons.icon-failed-status{fill:#ff343b;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 cafc98ff..e679e3f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rtl", - "version": "0.15.2-beta", + "version": "0.15.3-beta", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rtl", - "version": "0.15.2-beta", + "version": "0.15.3-beta", "license": "MIT", "dependencies": { "@ngrx/effects": "^17.2.0", @@ -100,12 +100,12 @@ } }, "node_modules/@angular-devkit/architect": { - "version": "0.1800.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1800.5.tgz", - "integrity": "sha512-KliFJTqwAIyRvW10JnJLlpXK86yx683unTgwgvkg9V4gUc/7cNCmWJiOCmYh1+gATpFq+3d3o36EdTzb4QS03g==", + "version": "0.1802.11", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1802.11.tgz", + "integrity": "sha512-p+XIc/j51aI83ExNdeZwvkm1F4wkuKMGUUoj0MVUUi5E6NoiMlXYm6uU8+HbRvPBzGy5+3KOiGp3Fks0UmDSAA==", "dev": true, "dependencies": { - "@angular-devkit/core": "18.0.5", + "@angular-devkit/core": "18.2.11", "rxjs": "7.8.1" }, "engines": { @@ -115,74 +115,72 @@ } }, "node_modules/@angular-devkit/build-angular": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-18.0.5.tgz", - "integrity": "sha512-itZN5tAZ+66bHZ4JNxIiPxfbSvQP6Gk4hcCzfGzcs3G0VsahR0rpX0Rg+1CRX1bpDzan3z8AVfwIxlLPKSOBbg==", + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-18.2.11.tgz", + "integrity": "sha512-09Ln3NAdlMw/wMLgnwYU5VgWV5TPBEHolZUIvE9D8b6SFWBCowk3B3RWeAMgg7Peuf9SKwqQHBz2b1C7RTP/8g==", "dev": true, "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1800.5", - "@angular-devkit/build-webpack": "0.1800.5", - "@angular-devkit/core": "18.0.5", - "@angular/build": "18.0.5", - "@babel/core": "7.24.5", - "@babel/generator": "7.24.5", - "@babel/helper-annotate-as-pure": "7.22.5", - "@babel/helper-split-export-declaration": "7.24.5", - "@babel/plugin-transform-async-generator-functions": "7.24.3", - "@babel/plugin-transform-async-to-generator": "7.24.1", - "@babel/plugin-transform-runtime": "7.24.3", - "@babel/preset-env": "7.24.5", - "@babel/runtime": "7.24.5", - "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "18.0.5", + "@angular-devkit/architect": "0.1802.11", + "@angular-devkit/build-webpack": "0.1802.11", + "@angular-devkit/core": "18.2.11", + "@angular/build": "18.2.11", + "@babel/core": "7.25.2", + "@babel/generator": "7.25.0", + "@babel/helper-annotate-as-pure": "7.24.7", + "@babel/helper-split-export-declaration": "7.24.7", + "@babel/plugin-transform-async-generator-functions": "7.25.0", + "@babel/plugin-transform-async-to-generator": "7.24.7", + "@babel/plugin-transform-runtime": "7.24.7", + "@babel/preset-env": "7.25.3", + "@babel/runtime": "7.25.0", + "@discoveryjs/json-ext": "0.6.1", + "@ngtools/webpack": "18.2.11", "@vitejs/plugin-basic-ssl": "1.1.0", "ansi-colors": "4.1.3", - "autoprefixer": "10.4.19", + "autoprefixer": "10.4.20", "babel-loader": "9.1.3", "browserslist": "^4.21.5", - "copy-webpack-plugin": "11.0.0", - "critters": "0.0.22", - "css-loader": "7.1.1", - "esbuild-wasm": "0.21.3", + "copy-webpack-plugin": "12.0.2", + "critters": "0.0.24", + "css-loader": "7.1.2", + "esbuild-wasm": "0.23.0", "fast-glob": "3.3.2", - "http-proxy-middleware": "3.0.0", - "https-proxy-agent": "7.0.4", - "inquirer": "9.2.22", - "istanbul-lib-instrument": "6.0.2", - "jsonc-parser": "3.2.1", + "http-proxy-middleware": "3.0.3", + "https-proxy-agent": "7.0.5", + "istanbul-lib-instrument": "6.0.3", + "jsonc-parser": "3.3.1", "karma-source-map-support": "1.4.0", "less": "4.2.0", "less-loader": "12.2.0", "license-webpack-plugin": "4.0.2", - "loader-utils": "3.2.1", - "magic-string": "0.30.10", + "loader-utils": "3.3.1", + "magic-string": "0.30.11", "mini-css-extract-plugin": "2.9.0", "mrmime": "2.0.0", - "open": "8.4.2", + "open": "10.1.0", "ora": "5.4.1", "parse5-html-rewriting-stream": "7.0.0", "picomatch": "4.0.2", - "piscina": "4.5.0", - "postcss": "8.4.38", + "piscina": "4.6.1", + "postcss": "8.4.41", "postcss-loader": "8.1.1", "resolve-url-loader": "5.0.0", "rxjs": "7.8.1", - "sass": "1.77.2", - "sass-loader": "14.2.1", - "semver": "7.6.2", + "sass": "1.77.6", + "sass-loader": "16.0.0", + "semver": "7.6.3", "source-map-loader": "5.0.0", "source-map-support": "0.5.21", - "terser": "5.31.0", + "terser": "5.31.6", "tree-kill": "1.2.2", - "tslib": "2.6.2", - "undici": "6.18.0", - "vite": "5.2.11", + "tslib": "2.6.3", + "vite": "5.4.6", "watchpack": "2.4.1", - "webpack": "5.91.0", - "webpack-dev-middleware": "7.2.1", + "webpack": "5.94.0", + "webpack-dev-middleware": "7.4.2", "webpack-dev-server": "5.0.4", - "webpack-merge": "5.10.0", + "webpack-merge": "6.0.1", "webpack-subresource-integrity": "5.1.0" }, "engines": { @@ -191,7 +189,7 @@ "yarn": ">= 1.13.0" }, "optionalDependencies": { - "esbuild": "0.21.3" + "esbuild": "0.23.0" }, "peerDependencies": { "@angular/compiler-cli": "^18.0.0", @@ -206,7 +204,7 @@ "ng-packagr": "^18.0.0", "protractor": "^7.0.0", "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=5.4 <5.5" + "typescript": ">=5.4 <5.6" }, "peerDependenciesMeta": { "@angular/localize": { @@ -245,18 +243,18 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", "dev": true }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1800.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1800.5.tgz", - "integrity": "sha512-/eiIwlQJBZlCWLsfaoSOsSGFY24cLKCCY4fs/fvcBXxG5/g1FFx24Zt73j0qRoNeK3soUg9+lmCAiRvO6cGpJg==", + "version": "0.1802.11", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1802.11.tgz", + "integrity": "sha512-G76rNsyn1iQk7qjyr+K4rnDzfalmEswmwXQorypSDGaHYzIDY1SZXMoP4225WMq5fJNBOJrk82FA0PSfnPE+zQ==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1800.5", + "@angular-devkit/architect": "0.1802.11", "rxjs": "7.8.1" }, "engines": { @@ -270,14 +268,14 @@ } }, "node_modules/@angular-devkit/core": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-18.0.5.tgz", - "integrity": "sha512-sGtrS0SqkcBvyuv0QkIfyadwPgDhMroz1r51lMh1hwzJaJ0LNuVMLviEeYIybeBnvAdp9YvYC8I1WgB/FUEFBw==", + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-18.2.11.tgz", + "integrity": "sha512-H9P1shRGigORWJHUY2BRa2YurT+DVminrhuaYHsbhXBRsPmgB2Dx/30YLTnC1s5XmR9QIRUCsg/d3kyT1wd5Zg==", "dev": true, "dependencies": { - "ajv": "8.13.0", + "ajv": "8.17.1", "ajv-formats": "3.0.1", - "jsonc-parser": "3.2.1", + "jsonc-parser": "3.3.1", "picomatch": "4.0.2", "rxjs": "7.8.1", "source-map": "0.7.4" @@ -297,14 +295,14 @@ } }, "node_modules/@angular-devkit/schematics": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.0.5.tgz", - "integrity": "sha512-hZwAq3hwuJzCuh7uqO/7T9IMERhYVxz+ganJlEykpyr58o0IjUM1Q4ZSH5UOYlGRPdBCZJbfiafZ0Sg5w5xBww==", + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.2.11.tgz", + "integrity": "sha512-efRK3FotTFp4KD5u42jWfXpHUALXB9kJNsWiB4wEImKFH6CN+vjBspJQuLqk2oeBFh/7D2qRMc5P+2tZHM5hdw==", "dev": true, "dependencies": { - "@angular-devkit/core": "18.0.5", - "jsonc-parser": "3.2.1", - "magic-string": "0.30.10", + "@angular-devkit/core": "18.2.11", + "jsonc-parser": "3.3.1", + "magic-string": "0.30.11", "ora": "5.4.1", "rxjs": "7.8.1" }, @@ -315,69 +313,64 @@ } }, "node_modules/@angular-eslint/builder": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.0.1.tgz", - "integrity": "sha512-b/VUeTQznAmGdwP4OyPWyegqSRWub7E8/WXBqojrSFyLkFhpTiHpk/3/5G3LsgTb0zBfyAsqkA0yaadsHu9pjA==", + "version": "18.4.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.4.0.tgz", + "integrity": "sha512-FOzGHX/nHSV1wSduSsabsx3aqC1nfde0opEpEDSOJhxExDxKCwoS1XPy1aERGyKip4ZVA6phC3dLtoBH3QMkVQ==", "dev": true, - "dependencies": { - "@nx/devkit": "^19.0.6", - "nx": "^19.0.6" - }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.0.1.tgz", - "integrity": "sha512-lr4Ysoo28FBOKcJFQUGTMpbWDcak+gyuYvyggp37ERvazE6EDomPFxzEHNqVT9EI9sZ+GDBOoPR+EdFh0ALGNw==", + "version": "18.4.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.4.0.tgz", + "integrity": "sha512-HlFHt2qgdd+jqyVIkCXmrjHauXo/XY3Rp0UNabk83ejGi/raM/6lEFI7iFWzHxLyiAKk4OgGI5W26giSQw991A==", "dev": true }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-18.0.1.tgz", - "integrity": "sha512-pS3SYLa9DA+ENklGxEUlcw6/xCxgDk9fgjyaheuSjDxL3TIh1pTa4V2TptODdcPh7XCYXiVmy+e/w79mXlGzOw==", + "version": "18.4.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-18.4.0.tgz", + "integrity": "sha512-Saz9lkWPN3da7ZKW17UsOSN7DeY+TPh+wz/6GCNZCh67Uw2wvMC9agb+4hgpZNXYCP5+u7erqzxQmBoWnS/A+A==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "@angular-eslint/utils": "18.0.1" + "@angular-eslint/bundled-angular-compiler": "18.4.0", + "@angular-eslint/utils": "18.4.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.0.1.tgz", - "integrity": "sha512-u/eov/CFBb8l35D8dW78Dx5fBLd8FZFibKN9XQknhzXnDMpISuUOMny5g5/wvYYjqLgqEySXMiHKEAxEup7xtA==", + "version": "18.4.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.4.0.tgz", + "integrity": "sha512-n3uZFCy76DnggPqjSVFV3gYD1ik7jCG28o2/HO4kobcMNKnwW8XAlFUagQ4TipNQh7fQiAefsEqvv2quMsYDVw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "@angular-eslint/utils": "18.0.1", - "aria-query": "5.3.0", - "axobject-query": "4.0.0" + "@angular-eslint/bundled-angular-compiler": "18.4.0", + "@angular-eslint/utils": "18.4.0", + "aria-query": "5.3.2", + "axobject-query": "4.1.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@typescript-eslint/types": "^7.11.0 || ^8.0.0", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/schematics": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-18.0.1.tgz", - "integrity": "sha512-G9PgFrjyvBaQR8enMnP2scnQDLk99GMpifh3voiOmdEkxaQHRWqhCWncV7GATwpXDzeyj9J9XT9iHGJjnZTpJQ==", + "version": "18.4.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-18.4.0.tgz", + "integrity": "sha512-ssqe+0YCfekbWIXNdCrHfoPK/bPZAWybs0Bn/b99dfd8h8uyXkERo9AzIOx4Uyj/08SkP9aPL/0uOOEHDsRGwQ==", "dev": true, "dependencies": { - "@angular-eslint/eslint-plugin": "18.0.1", - "@angular-eslint/eslint-plugin-template": "18.0.1", - "@nx/devkit": "^19.0.6", - "ignore": "5.3.1", - "nx": "^19.0.6", - "semver": "7.6.2", + "@angular-eslint/eslint-plugin": "18.4.0", + "@angular-eslint/eslint-plugin-template": "18.4.0", + "ignore": "5.3.2", + "semver": "7.6.3", "strip-json-comments": "3.1.1" }, "peerDependencies": { @@ -386,13 +379,13 @@ } }, "node_modules/@angular-eslint/template-parser": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-18.0.1.tgz", - "integrity": "sha512-22fKzkWo9Ts8aY/WHL1A6seS2tpltgRRXVfnZnnqvQRyRiuPnx1FC0ly7+QPZkThh8vdLwxU+BvtLq9Uiqh9OQ==", + "version": "18.4.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-18.4.0.tgz", + "integrity": "sha512-VTep3Xd3IOaRIPL+JN/TV4/2DqUPbjtF3TNY15diD/llnrEhqFnmsvMihexbQyTqzOG+zU554oK44YfvAtHOrw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "eslint-scope": "^8.0.0" + "@angular-eslint/bundled-angular-compiler": "18.4.0", + "eslint-scope": "^8.0.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", @@ -400,24 +393,23 @@ } }, "node_modules/@angular-eslint/utils": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.0.1.tgz", - "integrity": "sha512-Q9lCySqg+9h2cz08+SoWj48cY1i04tL1k3bsQJmF2TsylAw2mSsNGX2X3h9WkdxY7sUoY0mP7MVW1iU54Gobcg==", + "version": "18.4.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.4.0.tgz", + "integrity": "sha512-At1yS8GRviGBoaupiQwEOL4/IcZJCE/+2vpXdItMWPGB1HWetxlKAUZTMmIBX/r5Z7CoXxl+LbqpGhrhyzIQAg==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1" + "@angular-eslint/bundled-angular-compiler": "18.4.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular/animations": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-18.0.4.tgz", - "integrity": "sha512-xbdtBUvpTGEmVQkCoOad26LBMRy9ddM9pvCidMZBWXiM7NEuc3dfVT99a1cU4MZFiJeiQEvOWQn03iXskbBMGQ==", - "dev": true, + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-18.2.10.tgz", + "integrity": "sha512-LT5+CocFZJ4t5jXsXLx5w/sBuWSxOEjmNTYga13usRcLOblrAB902pjUdFCHEZyrCUgm4MH8vov9fMS+Ks2GCw==", "dependencies": { "tslib": "^2.3.0" }, @@ -425,39 +417,39 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/core": "18.0.4" + "@angular/core": "18.2.10" } }, "node_modules/@angular/build": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.0.5.tgz", - "integrity": "sha512-6C+azPDYqPWX9/+53OTyvzmAKxrGwgQcDnueC/Sc6NZJOAs2VsOIn5ULPtcRDlrf/Rbo0dGM4OvKCM2q1BRuBg==", + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.2.11.tgz", + "integrity": "sha512-AgirvSCmqUKiDE3C0rl3JA68OkOqQWDKUvjqRHXCkhxldLVOVoeIl87+jBYK/v9gcmk+K+ju+5wbGEfu1FjhiQ==", "dev": true, "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1800.5", - "@babel/core": "7.24.5", - "@babel/helper-annotate-as-pure": "7.22.5", - "@babel/helper-split-export-declaration": "7.24.5", + "@angular-devkit/architect": "0.1802.11", + "@babel/core": "7.25.2", + "@babel/helper-annotate-as-pure": "7.24.7", + "@babel/helper-split-export-declaration": "7.24.7", + "@babel/plugin-syntax-import-attributes": "7.24.7", + "@inquirer/confirm": "3.1.22", "@vitejs/plugin-basic-ssl": "1.1.0", - "ansi-colors": "4.1.3", "browserslist": "^4.23.0", - "critters": "0.0.22", - "esbuild": "0.21.3", + "critters": "0.0.24", + "esbuild": "0.23.0", "fast-glob": "3.3.2", - "https-proxy-agent": "7.0.4", - "inquirer": "9.2.22", - "lmdb": "3.0.8", - "magic-string": "0.30.10", + "https-proxy-agent": "7.0.5", + "listr2": "8.2.4", + "lmdb": "3.0.13", + "magic-string": "0.30.11", "mrmime": "2.0.0", - "ora": "5.4.1", "parse5-html-rewriting-stream": "7.0.0", "picomatch": "4.0.2", - "piscina": "4.5.0", - "sass": "1.77.2", - "semver": "7.6.2", - "undici": "6.18.0", - "vite": "5.2.11", + "piscina": "4.6.1", + "rollup": "4.22.4", + "sass": "1.77.6", + "semver": "7.6.3", + "vite": "5.4.6", "watchpack": "2.4.1" }, "engines": { @@ -473,7 +465,7 @@ "less": "^4.2.0", "postcss": "^8.4.0", "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=5.4 <5.5" + "typescript": ">=5.4 <5.6" }, "peerDependenciesMeta": { "@angular/localize": { @@ -500,7 +492,6 @@ "version": "17.3.10", "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.3.10.tgz", "integrity": "sha512-b1qktT2c1TTTe5nTji/kFAVW92fULK0YhYAvJ+BjZTPKu2FniZNe8o4qqQ0pUuvtMu+ZQxp/QqFYoidIVCjScg==", - "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -514,26 +505,26 @@ } }, "node_modules/@angular/cli": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.0.5.tgz", - "integrity": "sha512-w3NOdj6T7QhBmFleavc+AEhcAMyPkt7RsyWW2saufD6x55gzynGQZb9UBZwKDUAR6UtqchBX/HEBWCLNnjbiHg==", + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.2.11.tgz", + "integrity": "sha512-0JI1xjOLRemBPjdT/yVlabxc3Zkjqa/lhvVxxVC1XhKoW7yGxIGwNrQ4pka4CcQtCuktO6KPMmTGIu8YgC3cpw==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1800.5", - "@angular-devkit/core": "18.0.5", - "@angular-devkit/schematics": "18.0.5", - "@schematics/angular": "18.0.5", + "@angular-devkit/architect": "0.1802.11", + "@angular-devkit/core": "18.2.11", + "@angular-devkit/schematics": "18.2.11", + "@inquirer/prompts": "5.3.8", + "@listr2/prompt-adapter-inquirer": "2.0.15", + "@schematics/angular": "18.2.11", "@yarnpkg/lockfile": "1.1.0", - "ansi-colors": "4.1.3", - "ini": "4.1.2", - "inquirer": "9.2.22", - "jsonc-parser": "3.2.1", - "npm-package-arg": "11.0.2", - "npm-pick-manifest": "9.0.1", - "ora": "5.4.1", + "ini": "4.1.3", + "jsonc-parser": "3.3.1", + "listr2": "8.2.4", + "npm-package-arg": "11.0.3", + "npm-pick-manifest": "9.1.0", "pacote": "18.0.6", "resolve": "1.22.8", - "semver": "7.6.2", + "semver": "7.6.3", "symbol-observable": "4.0.0", "yargs": "17.7.2" }, @@ -546,20 +537,10 @@ "yarn": ">= 1.13.0" } }, - "node_modules/@angular/cli/node_modules/ini": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz", - "integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, "node_modules/@angular/common": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-18.0.4.tgz", - "integrity": "sha512-7WxZKLzSu5QtyLGrtlZrtUQlP3WfDR++yHr5jF9DJZ3IY35UutwiPCegCcq4Qh5X2xWqnRKGm20TLlKVoj0t5Q==", - "dev": true, + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-18.2.10.tgz", + "integrity": "sha512-YzTCmuqLiOuT+Yv07vuKymDWiebOVZ8BuXakJiz4EM7FMoOw5gICHJ04jepZSjDNWpA16e7kJSdt5ucnmvCFDQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -567,15 +548,14 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/core": "18.0.4", + "@angular/core": "18.2.10", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-18.0.4.tgz", - "integrity": "sha512-OVPXtJo5SkGQUCioCVxKcRfEw48tz8xCtJGDXjVKWtyOkXnmWl8Y/e54mteiJd1KybXHvPLW0LPtWZYB06Qy7g==", - "dev": true, + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-18.2.10.tgz", + "integrity": "sha512-cu+Uq1nnyl00Glg0+2uvm+Xpaq5b4YvWpaLGGtit7uGETAJ4L/frlBVeaTRhEoaIAGBI+RRlyuFLae+etQDA0w==", "dependencies": { "tslib": "^2.3.0" }, @@ -583,7 +563,7 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/core": "18.0.4" + "@angular/core": "18.2.10" }, "peerDependenciesMeta": { "@angular/core": { @@ -592,14 +572,14 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-18.0.4.tgz", - "integrity": "sha512-pUv664JCZHKHsLDvO8iNjWXVHOB2ggKxVoxiowOMNpR4dqxrK/oOLGkPGltYUW/xF6Eajc7Zs0lK/R5uljoYQg==", + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-18.2.10.tgz", + "integrity": "sha512-CNFStKWMB89MFKAZZFUOhoQi+fHqRLgNOOrI73LjizXixvngEh3BDZJRtK9hbSGG+giujBrummEA60CWAw69MA==", "dev": true, "dependencies": { - "@babel/core": "7.24.7", + "@babel/core": "7.25.2", "@jridgewell/sourcemap-codec": "^1.4.14", - "chokidar": "^3.0.0", + "chokidar": "^4.0.0", "convert-source-map": "^1.5.1", "reflect-metadata": "^0.2.0", "semver": "^7.0.0", @@ -615,75 +595,14 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/compiler": "18.0.4", - "typescript": ">=5.4 <5.5" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", - "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helpers": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@angular/compiler-cli/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", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" + "@angular/compiler": "18.2.10", + "typescript": ">=5.4 <5.6" } }, "node_modules/@angular/core": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-18.0.4.tgz", - "integrity": "sha512-k0AUZbJc0eyzRexvKlR1sR0qNhe54Om9ln6lRn7y1+gAsg+OwFDyF427fFuzqpZVe/MmpvX3CXWdl0twZAYEiA==", - "dev": true, + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-18.2.10.tgz", + "integrity": "sha512-EfxVz0pLaxnOppOYkdhnaUkk8HZT+uxaAGpJD3ppAa7YAWTE9xIGoNJmtS33cZNNOnvriMkdv7yn6pDtV4ct+Q==", "dependencies": { "tslib": "^2.3.0" }, @@ -692,7 +611,7 @@ }, "peerDependencies": { "rxjs": "^6.5.3 || ^7.4.0", - "zone.js": "~0.14.0" + "zone.js": "~0.14.10" } }, "node_modules/@angular/flex-layout": { @@ -713,10 +632,9 @@ } }, "node_modules/@angular/forms": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-18.0.4.tgz", - "integrity": "sha512-LM2rVIuJa2fGxP0oCy0uFSGY6h9tyL64gtGp02QqKaVszG4oJ8wue0/VSbBtKyH0xEN4eOXDzOXbiahbtFhRZA==", - "dev": true, + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-18.2.10.tgz", + "integrity": "sha512-2VprGB+enJIeqfz2oALmP/G/UiFzpZW6PHgyZXhk/0J/UMsa26JoYxwDFvfdm/WGTrB+VaQEG7in5xwiFPAFtQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -724,9 +642,9 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "18.0.4", - "@angular/core": "18.0.4", - "@angular/platform-browser": "18.0.4", + "@angular/common": "18.2.10", + "@angular/core": "18.2.10", + "@angular/platform-browser": "18.2.10", "rxjs": "^6.5.3 || ^7.4.0" } }, @@ -796,10 +714,9 @@ } }, "node_modules/@angular/platform-browser": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-18.0.4.tgz", - "integrity": "sha512-8TJEPzIRV89s1ZP9T+7g9K7PFNfec+4Xyw5BLaTRBOqjXHmMzk+miRx0L18Lr66rp5r2vbNEE9vojMVHQRwhVA==", - "dev": true, + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-18.2.10.tgz", + "integrity": "sha512-zKyRKFr3AaEA4SE/DEeb5FWHJutT26avHZog6ZGDkMeMN12zMtSqjPuTSgmDXCWleoOkzbb+nhAQ+fK/EyGyPA==", "dependencies": { "tslib": "^2.3.0" }, @@ -807,9 +724,9 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/animations": "18.0.4", - "@angular/common": "18.0.4", - "@angular/core": "18.0.4" + "@angular/animations": "18.2.10", + "@angular/common": "18.2.10", + "@angular/core": "18.2.10" }, "peerDependenciesMeta": { "@angular/animations": { @@ -818,10 +735,9 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.0.4.tgz", - "integrity": "sha512-K36/gamqs8etGlmWew7IwZ/bDJdI5ZeUqvOUmkKjJ9F2I/g5P/zZrB1qExwN/zsxzxd9idkvEhwY+YDeiZEEJg==", - "dev": true, + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.2.10.tgz", + "integrity": "sha512-syKyOTgfQnMxfpDRP1khTSPZ5dsMgA8YQwNF6KsB3eZQl15CKSka7bzjMOUWeZ8M3WShOp1AzTf0MfwNeh0UBA==", "dependencies": { "tslib": "^2.3.0" }, @@ -829,16 +745,16 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "18.0.4", - "@angular/compiler": "18.0.4", - "@angular/core": "18.0.4", - "@angular/platform-browser": "18.0.4" + "@angular/common": "18.2.10", + "@angular/compiler": "18.2.10", + "@angular/core": "18.2.10", + "@angular/platform-browser": "18.2.10" } }, "node_modules/@angular/router": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-18.0.4.tgz", - "integrity": "sha512-nr1ZI3lynKBtr3a75APuVkIaiXRG5mEnW/RIyxwzxbKBB14901mby46o0jm9Y/CPb2rH5UpuwZhTKRE6QS/xLw==", + "version": "18.2.10", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-18.2.10.tgz", + "integrity": "sha512-ZqJgOGOfvW0epsc7pIo7DffZqYHo3O9aUCVepZAhOxqtjF/sfhX2fy+A0xopTIiR0eM3LrT823V+2hjlBHj+CA==", "dev": true, "dependencies": { "tslib": "^2.3.0" @@ -847,19 +763,20 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "18.0.4", - "@angular/core": "18.0.4", - "@angular/platform-browser": "18.0.4", + "@angular/common": "18.2.10", + "@angular/core": "18.2.10", + "@angular/platform-browser": "18.2.10", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dev": true, "dependencies": { - "@babel/highlight": "^7.24.7", + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", "picocolors": "^1.0.0" }, "engines": { @@ -867,30 +784,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", - "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", + "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -921,12 +838,12 @@ } }, "node_modules/@babel/generator": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", - "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", "dev": true, "dependencies": { - "@babel/types": "^7.24.5", + "@babel/types": "^7.25.0", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" @@ -936,39 +853,39 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", - "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, "dependencies": { - "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", - "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz", + "integrity": "sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "browserslist": "^4.22.2", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -986,19 +903,17 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", - "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", - "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", "semver": "^6.3.1" }, "engines": { @@ -1009,24 +924,12 @@ } }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1042,13 +945,13 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", - "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.9.tgz", + "integrity": "sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "regexpu-core": "^5.3.1", + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.1.1", "semver": "^6.3.1" }, "engines": { @@ -1059,12 +962,12 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1095,80 +998,41 @@ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", - "dev": true, - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", - "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "dev": true, "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "dev": true, "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", - "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1177,7 +1041,100 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration": { + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz", + "integrity": "sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", @@ -1189,186 +1146,68 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", - "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", - "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", - "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-wrap-function": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", - "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", - "@babel/helper-optimise-call-expression": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", - "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", - "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", - "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", - "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", + "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", "dev": true, "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", + "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", "dev": true, + "dependencies": { + "@babel/types": "^7.26.0" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -1377,13 +1216,28 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", - "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1393,12 +1247,12 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.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.24.7.tgz", - "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", + "version": "7.25.9", + "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.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1408,14 +1262,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", - "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1425,13 +1279,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", - "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1516,12 +1370,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", - "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1688,12 +1542,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", - "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1703,15 +1557,15 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", - "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz", + "integrity": "sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -1721,14 +1575,14 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", - "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1738,12 +1592,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", - "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1753,12 +1607,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", - "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1768,13 +1622,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", - "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1784,14 +1638,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", - "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1801,18 +1654,16 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", - "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", "globals": "^11.1.0" }, "engines": { @@ -1823,37 +1674,25 @@ } }, "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", - "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/template": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1863,12 +1702,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", - "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1878,13 +1717,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", - "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1894,12 +1733,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", - "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1908,14 +1747,29 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", - "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1925,13 +1779,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", - "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz", + "integrity": "sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1941,13 +1795,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", - "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1957,13 +1810,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", - "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1973,14 +1826,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", - "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1990,13 +1843,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", - "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2006,12 +1858,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", - "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2021,13 +1873,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", - "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2037,12 +1888,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", - "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2052,13 +1903,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", - "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2068,14 +1919,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", - "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz", + "integrity": "sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-simple-access": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2085,15 +1936,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", - "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2103,13 +1954,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", - "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2119,13 +1970,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", - "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2135,12 +1986,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", - "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2150,13 +2001,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", - "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2166,13 +2016,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", - "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2182,15 +2031,14 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", - "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.7" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2200,13 +2048,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", - "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2216,13 +2064,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", - "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2232,14 +2079,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", - "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2249,12 +2095,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", - "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2264,13 +2110,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", - "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2280,15 +2126,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", - "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2298,24 +2143,24 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", - "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2325,12 +2170,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", - "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-plugin-utils": "^7.25.9", "regenerator-transform": "^0.15.2" }, "engines": { @@ -2341,12 +2186,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", - "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2356,13 +2201,13 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.3.tgz", - "integrity": "sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", + "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.10.1", "babel-plugin-polyfill-regenerator": "^0.6.1", @@ -2385,12 +2230,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", - "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2400,13 +2245,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", - "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2416,12 +2261,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", - "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2431,12 +2276,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", - "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2446,12 +2291,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", - "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2461,12 +2306,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", - "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2476,13 +2321,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", - "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2492,13 +2337,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", - "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2508,13 +2353,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", - "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2524,27 +2369,28 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", - "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.3.tgz", + "integrity": "sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "@babel/compat-data": "^7.25.2", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.1", - "@babel/plugin-syntax-import-attributes": "^7.24.1", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -2556,59 +2402,60 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.1", - "@babel/plugin-transform-async-generator-functions": "^7.24.3", - "@babel/plugin-transform-async-to-generator": "^7.24.1", - "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.5", - "@babel/plugin-transform-class-properties": "^7.24.1", - "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.5", - "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.5", - "@babel/plugin-transform-dotall-regex": "^7.24.1", - "@babel/plugin-transform-duplicate-keys": "^7.24.1", - "@babel/plugin-transform-dynamic-import": "^7.24.1", - "@babel/plugin-transform-exponentiation-operator": "^7.24.1", - "@babel/plugin-transform-export-namespace-from": "^7.24.1", - "@babel/plugin-transform-for-of": "^7.24.1", - "@babel/plugin-transform-function-name": "^7.24.1", - "@babel/plugin-transform-json-strings": "^7.24.1", - "@babel/plugin-transform-literals": "^7.24.1", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", - "@babel/plugin-transform-member-expression-literals": "^7.24.1", - "@babel/plugin-transform-modules-amd": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-modules-systemjs": "^7.24.1", - "@babel/plugin-transform-modules-umd": "^7.24.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.24.1", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", - "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.5", - "@babel/plugin-transform-object-super": "^7.24.1", - "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.5", - "@babel/plugin-transform-parameters": "^7.24.5", - "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.5", - "@babel/plugin-transform-property-literals": "^7.24.1", - "@babel/plugin-transform-regenerator": "^7.24.1", - "@babel/plugin-transform-reserved-words": "^7.24.1", - "@babel/plugin-transform-shorthand-properties": "^7.24.1", - "@babel/plugin-transform-spread": "^7.24.1", - "@babel/plugin-transform-sticky-regex": "^7.24.1", - "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.5", - "@babel/plugin-transform-unicode-escapes": "^7.24.1", - "@babel/plugin-transform-unicode-property-regex": "^7.24.1", - "@babel/plugin-transform-unicode-regex": "^7.24.1", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.0", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.0", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.10.4", "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", + "core-js-compat": "^3.37.1", "semver": "^6.3.1" }, "engines": { @@ -2641,16 +2488,10 @@ "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, "node_modules/@babel/runtime": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", - "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", + "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", "dev": true, "dependencies": { "regenerator-runtime": "^0.14.0" @@ -2660,33 +2501,30 @@ } }, "node_modules/@babel/template": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", - "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", - "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", + "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7", + "@babel/code-frame": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/template": "^7.25.9", + "@babel/types": "^7.25.9", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -2695,41 +2533,41 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", + "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", "dev": true, "dependencies": { - "@babel/types": "^7.24.7", + "@babel/parser": "^7.26.2", + "@babel/types": "^7.26.0", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/traverse/node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "node_modules/@babel/traverse/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=6.9.0" + "node": ">=6" } }, "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", + "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2767,18 +2605,18 @@ } }, "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.1.tgz", + "integrity": "sha512-boghen8F0Q8D+0/Q1/1r6DUEieUJ8w2a1gIknExMSHBsJFOr2+0KUfHiVYBvucPwl3+RU5PFBK833FjFCh3BhA==", "dev": true, "engines": { - "node": ">=10.0.0" + "node": ">=14.17.0" } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.3.tgz", - "integrity": "sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.0.tgz", + "integrity": "sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==", "cpu": [ "ppc64" ], @@ -2788,13 +2626,13 @@ "aix" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-arm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.3.tgz", - "integrity": "sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.0.tgz", + "integrity": "sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==", "cpu": [ "arm" ], @@ -2804,13 +2642,13 @@ "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.3.tgz", - "integrity": "sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.0.tgz", + "integrity": "sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==", "cpu": [ "arm64" ], @@ -2820,13 +2658,13 @@ "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.3.tgz", - "integrity": "sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.0.tgz", + "integrity": "sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==", "cpu": [ "x64" ], @@ -2836,13 +2674,13 @@ "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", - "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.0.tgz", + "integrity": "sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==", "cpu": [ "arm64" ], @@ -2852,13 +2690,13 @@ "darwin" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.3.tgz", - "integrity": "sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.0.tgz", + "integrity": "sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==", "cpu": [ "x64" ], @@ -2868,13 +2706,13 @@ "darwin" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.3.tgz", - "integrity": "sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.0.tgz", + "integrity": "sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==", "cpu": [ "arm64" ], @@ -2884,13 +2722,13 @@ "freebsd" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.3.tgz", - "integrity": "sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.0.tgz", + "integrity": "sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==", "cpu": [ "x64" ], @@ -2900,13 +2738,13 @@ "freebsd" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-arm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.3.tgz", - "integrity": "sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.0.tgz", + "integrity": "sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==", "cpu": [ "arm" ], @@ -2916,13 +2754,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.3.tgz", - "integrity": "sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.0.tgz", + "integrity": "sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==", "cpu": [ "arm64" ], @@ -2932,13 +2770,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.3.tgz", - "integrity": "sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.0.tgz", + "integrity": "sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==", "cpu": [ "ia32" ], @@ -2948,13 +2786,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.3.tgz", - "integrity": "sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.0.tgz", + "integrity": "sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==", "cpu": [ "loong64" ], @@ -2964,13 +2802,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.3.tgz", - "integrity": "sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.0.tgz", + "integrity": "sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==", "cpu": [ "mips64el" ], @@ -2980,13 +2818,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.3.tgz", - "integrity": "sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.0.tgz", + "integrity": "sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==", "cpu": [ "ppc64" ], @@ -2996,13 +2834,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.3.tgz", - "integrity": "sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.0.tgz", + "integrity": "sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==", "cpu": [ "riscv64" ], @@ -3012,13 +2850,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.3.tgz", - "integrity": "sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.0.tgz", + "integrity": "sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==", "cpu": [ "s390x" ], @@ -3028,13 +2866,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.3.tgz", - "integrity": "sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.0.tgz", + "integrity": "sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==", "cpu": [ "x64" ], @@ -3044,13 +2882,13 @@ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.3.tgz", - "integrity": "sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.0.tgz", + "integrity": "sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==", "cpu": [ "x64" ], @@ -3060,13 +2898,29 @@ "netbsd" ], "engines": { - "node": ">=12" + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.0.tgz", + "integrity": "sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.3.tgz", - "integrity": "sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.0.tgz", + "integrity": "sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==", "cpu": [ "x64" ], @@ -3076,13 +2930,13 @@ "openbsd" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.3.tgz", - "integrity": "sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.0.tgz", + "integrity": "sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==", "cpu": [ "x64" ], @@ -3092,13 +2946,13 @@ "sunos" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.3.tgz", - "integrity": "sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.0.tgz", + "integrity": "sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==", "cpu": [ "arm64" ], @@ -3108,13 +2962,13 @@ "win32" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.3.tgz", - "integrity": "sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.0.tgz", + "integrity": "sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==", "cpu": [ "ia32" ], @@ -3124,13 +2978,13 @@ "win32" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.3.tgz", - "integrity": "sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.0.tgz", + "integrity": "sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==", "cpu": [ "x64" ], @@ -3140,47 +2994,59 @@ "win32" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz", - "integrity": "sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/config-array": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.16.0.tgz", - "integrity": "sha512-/jmuSd74i4Czf1XXn7wGRWZCuyaUZ330NH1Bek0Pplatt4Sy1S5haN21SCLLdbeKslQ+S0wEJ+++v5YibSi+Lg==", + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.18.0.tgz", + "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", "dev": true, "dependencies": { "@eslint/object-schema": "^2.1.4", "debug": "^4.3.1", - "minimatch": "^3.0.5" + "minimatch": "^3.1.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/@eslint/core": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.7.0.tgz", + "integrity": "sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, "node_modules/@eslint/eslintrc": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", @@ -3239,9 +3105,9 @@ "dev": true }, "node_modules/@eslint/js": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.5.0.tgz", - "integrity": "sha512-A7+AOT2ICkodvtsWnxZP4Xxk3NbZ3VMHd8oihydLRGrJgqqdEz1qSeEgXYyT/Cu8h1TWWsQRejIx48mtjZ5y1w==", + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.14.0.tgz", + "integrity": "sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3256,6 +3122,18 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.2.tgz", + "integrity": "sha512-CXtq5nR4Su+2I47WPOlWud98Y5Lv8Kyxp2ukhgFx/eW6Blm18VXJO5WuQylPugRo8nbluoi6GvvxBLqHcvqUUw==", + "dev": true, + "dependencies": { + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, "node_modules/@foliojs-fork/fontkit": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@foliojs-fork/fontkit/-/fontkit-1.9.2.tgz", @@ -3286,13 +3164,14 @@ "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" }, "node_modules/@foliojs-fork/pdfkit": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@foliojs-fork/pdfkit/-/pdfkit-0.14.0.tgz", - "integrity": "sha512-nMOiQAv6id89MT3tVTCgc7HxD5ZMANwio2o5yvs5sexQkC0KI3BLaLakpsrHmFfeGFAhqPmZATZGbJGXTUebpg==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/@foliojs-fork/pdfkit/-/pdfkit-0.15.1.tgz", + "integrity": "sha512-4Cq2onHZAhThIfzv3/AFTPALqHzbmV8uNvgRELULWNbsZATgVeqEL4zHOzCyblLfX6tMXVO2BVaPcXboIxGjiw==", "dependencies": { - "@foliojs-fork/fontkit": "^1.9.1", + "@foliojs-fork/fontkit": "^1.9.2", "@foliojs-fork/linebreak": "^1.1.1", "crypto-js": "^4.2.0", + "jpeg-exif": "^1.1.4", "png-js": "^1.0.0" } }, @@ -3315,54 +3194,85 @@ } }, "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.5.2.tgz", - "integrity": "sha512-gBxPg3aVO6J0kpfHNILc+NMhXnqHumFxOmjYCFfOiLZfwhnnfhtsdA2hfJlDnj+8PjAs6kKQPenOTKj3Rf7zHw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.6.0.tgz", + "integrity": "sha512-xyX0X9mc0kyz9plIyryrRbl7ngsA9jz77mCZJsUkLl+ZKs0KWObgaEBoSgQiYWAsSmjz/yjl0F++Got0Mdp4Rw==", "dev": true, - "hasInstallScript": true, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.5.2.tgz", - "integrity": "sha512-5CdaCBGl8Rh9ohNdxeeTMxIj8oc3KNBgIeLMvJosBMdslK/UnEB8rzyDRrbKdL1kDweqBPo4GT9wvnakHWucZw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.6.0.tgz", + "integrity": "sha512-KHwPkCk6oRT4HADE7smhfsKudt9N/9lm6EJ5BVg0tD1yPA5hht837fB87F8pn15D8JfTqQOjhKTktwmLMiD7Kg==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.2" + "@fortawesome/fontawesome-common-types": "6.6.0" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-regular-svg-icons": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.5.2.tgz", - "integrity": "sha512-iabw/f5f8Uy2nTRtJ13XZTS1O5+t+anvlamJ3zJGLEVE2pKsAWhPv2lq01uQlfgCX7VaveT3EVs515cCN9jRbw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.6.0.tgz", + "integrity": "sha512-Yv9hDzL4aI73BEwSEh20clrY8q/uLxawaQ98lekBx6t9dQKDHcDzzV1p2YtBGTtolYtNqcWdniOnhzB+JPnQEQ==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.2" + "@fortawesome/fontawesome-common-types": "6.6.0" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.5.2.tgz", - "integrity": "sha512-QWFZYXFE7O1Gr1dTIp+D6UcFUF0qElOnZptpi7PBUMylJh+vFmIedVe1Ir6RM1t2tEQLLSV1k7bR4o92M+uqlw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.6.0.tgz", + "integrity": "sha512-IYv/2skhEDFc2WGUcqvFJkeK39Q+HyPf5GHUrT/l2pKbtgEIv1al1TKd6qStR5OIwQdN1GZP54ci3y4mroJWjA==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.2" + "@fortawesome/fontawesome-common-types": "6.6.0" }, "engines": { "node": ">=6" } }, + "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==", + "dev": true, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", @@ -3377,9 +3287,9 @@ } }, "node_modules/@humanwhocodes/retry": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", - "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", + "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", "dev": true, "engines": { "node": ">=18.18" @@ -3389,11 +3299,230 @@ "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@inquirer/figures": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.3.tgz", - "integrity": "sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==", + "node_modules/@inquirer/checkbox": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-2.5.0.tgz", + "integrity": "sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA==", "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/figures": "^1.0.5", + "@inquirer/type": "^1.5.3", + "ansi-escapes": "^4.3.2", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/confirm": { + "version": "3.1.22", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.22.tgz", + "integrity": "sha512-gsAKIOWBm2Q87CDfs9fEo7wJT3fwWIJfnDGMn9Qy74gBnNFOACDNfhUzovubbJjWnKLGBln7/NcSmZwj5DuEXg==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.0.10", + "@inquirer/type": "^1.5.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-9.2.1.tgz", + "integrity": "sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==", + "dev": true, + "dependencies": { + "@inquirer/figures": "^1.0.6", + "@inquirer/type": "^2.0.0", + "@types/mute-stream": "^0.0.4", + "@types/node": "^22.5.5", + "@types/wrap-ansi": "^3.0.0", + "ansi-escapes": "^4.3.2", + "cli-width": "^4.1.0", + "mute-stream": "^1.0.0", + "signal-exit": "^4.1.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core/node_modules/@inquirer/type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-2.0.0.tgz", + "integrity": "sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==", + "dev": true, + "dependencies": { + "mute-stream": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core/node_modules/@types/node": { + "version": "22.9.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.0.tgz", + "integrity": "sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==", + "dev": true, + "dependencies": { + "undici-types": "~6.19.8" + } + }, + "node_modules/@inquirer/editor": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-2.2.0.tgz", + "integrity": "sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/type": "^1.5.3", + "external-editor": "^3.1.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/expand": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-2.3.0.tgz", + "integrity": "sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/type": "^1.5.3", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.7.tgz", + "integrity": "sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/input": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.3.0.tgz", + "integrity": "sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/type": "^1.5.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/number": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-1.1.0.tgz", + "integrity": "sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/type": "^1.5.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/password": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-2.2.0.tgz", + "integrity": "sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/type": "^1.5.3", + "ansi-escapes": "^4.3.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/prompts": { + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-5.3.8.tgz", + "integrity": "sha512-b2BudQY/Si4Y2a0PdZZL6BeJtl8llgeZa7U2j47aaJSCeAl1e4UI7y8a9bSkO3o/ZbZrgT5muy/34JbsjfIWxA==", + "dev": true, + "dependencies": { + "@inquirer/checkbox": "^2.4.7", + "@inquirer/confirm": "^3.1.22", + "@inquirer/editor": "^2.1.22", + "@inquirer/expand": "^2.1.22", + "@inquirer/input": "^2.2.9", + "@inquirer/number": "^1.0.10", + "@inquirer/password": "^2.1.22", + "@inquirer/rawlist": "^2.2.4", + "@inquirer/search": "^1.0.7", + "@inquirer/select": "^2.4.7" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/rawlist": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-2.3.0.tgz", + "integrity": "sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/type": "^1.5.3", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/search": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-1.1.0.tgz", + "integrity": "sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/figures": "^1.0.5", + "@inquirer/type": "^1.5.3", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/select": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.5.0.tgz", + "integrity": "sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/figures": "^1.0.5", + "@inquirer/type": "^1.5.3", + "ansi-escapes": "^4.3.2", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/type": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.5.5.tgz", + "integrity": "sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==", + "dev": true, + "dependencies": { + "mute-stream": "^1.0.0" + }, "engines": { "node": ">=18" } @@ -3416,9 +3545,9 @@ } }, "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, "engines": { "node": ">=12" @@ -3503,18 +3632,6 @@ "node": ">=8" } }, - "node_modules/@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", - "dev": true, - "dependencies": { - "@sinclair/typebox": "^0.27.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", @@ -3558,9 +3675,9 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", "dev": true }, "node_modules/@jridgewell/trace-mapping": { @@ -3590,9 +3707,9 @@ } }, "node_modules/@jsonjoy.com/json-pack": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.0.4.tgz", - "integrity": "sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz", + "integrity": "sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==", "dev": true, "dependencies": { "@jsonjoy.com/base64": "^1.1.1", @@ -3612,9 +3729,9 @@ } }, "node_modules/@jsonjoy.com/util": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.2.0.tgz", - "integrity": "sha512-4B8B+3vFsY4eo33DMKyJPlQ3sBMpPFUZK2dr3O3rXrOGKKbYG44J0XSFkDo1VOQiri5HFEhIeVvItjR2xcazmg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.5.0.tgz", + "integrity": "sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==", "dev": true, "engines": { "node": ">=10.0" @@ -3633,22 +3750,25 @@ "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", "dev": true }, - "node_modules/@ljharb/through": { - "version": "2.3.13", - "resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.13.tgz", - "integrity": "sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==", + "node_modules/@listr2/prompt-adapter-inquirer": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.15.tgz", + "integrity": "sha512-MZrGem/Ujjd4cPTLYDfCZK2iKKeiO/8OX13S6jqxldLs0Prf2aGqVlJ77nMBqMv7fzqgXEgjrNHLXcKR8l9lOg==", "dev": true, "dependencies": { - "call-bind": "^1.0.7" + "@inquirer/type": "^1.5.1" }, "engines": { - "node": ">= 0.4" + "node": ">=18.0.0" + }, + "peerDependencies": { + "@inquirer/prompts": ">= 3 < 6" } }, "node_modules/@lmdb/lmdb-darwin-arm64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.0.8.tgz", - "integrity": "sha512-+lFwFvU+zQ9zVIFETNtmW++syh3Ps5JS8MPQ8zOYtQZoU+dTR8ivWHTaE2QVk1JG2payGDLUAvpndLAjGMdeeA==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.0.13.tgz", + "integrity": "sha512-uiKPB0Fv6WEEOZjruu9a6wnW/8jrjzlZbxXscMB8kuCJ1k6kHpcBnuvaAWcqhbI7rqX5GKziwWEdD+wi2gNLfA==", "cpu": [ "arm64" ], @@ -3659,9 +3779,9 @@ ] }, "node_modules/@lmdb/lmdb-darwin-x64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.0.8.tgz", - "integrity": "sha512-T98rfsgfdQMS5/mqdsPb6oHSJ+iBYNa+PQDLtXLh6rzTEBsYP9x2uXxIj6VS4qXVDWXVi8rv85NCOG+UBOsHXQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.0.13.tgz", + "integrity": "sha512-bEVIIfK5mSQoG1R19qA+fJOvCB+0wVGGnXHT3smchBVahYBdlPn2OsZZKzlHWfb1E+PhLBmYfqB5zQXFP7hJig==", "cpu": [ "x64" ], @@ -3672,9 +3792,9 @@ ] }, "node_modules/@lmdb/lmdb-linux-arm": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.0.8.tgz", - "integrity": "sha512-gVNCi3bYWatdPMeFpFjuZl6bzVL55FkeZU3sPeU+NsMRXC+Zl3qOx3M6cM4OMlJWbhHjYjf2b8q83K0mczaiWQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.0.13.tgz", + "integrity": "sha512-Yml1KlMzOnXj/tnW7yX8U78iAzTk39aILYvCPbqeewAq1kSzl+w59k/fiVkTBfvDi/oW/5YRxL+Fq+Y1Fr1r2Q==", "cpu": [ "arm" ], @@ -3685,9 +3805,9 @@ ] }, "node_modules/@lmdb/lmdb-linux-arm64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.0.8.tgz", - "integrity": "sha512-uEBGCQIChsixpykL0pjCxfF64btv64vzsb1NoM5u0qvabKvKEvErhXGoqovyldDu9u1T/fswD8Kf6ih0vJEvDQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.0.13.tgz", + "integrity": "sha512-afbVrsMgZ9dUTNUchFpj5VkmJRxvht/u335jUJ7o23YTbNbnpmXif3VKQGCtnjSh+CZaqm6N3CPG8KO3zwyZ1Q==", "cpu": [ "arm64" ], @@ -3698,9 +3818,9 @@ ] }, "node_modules/@lmdb/lmdb-linux-x64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.0.8.tgz", - "integrity": "sha512-6v0B4sa9ulNezmDZtVpLjNHmA0qZzUl3001YJ2RF0naxsuv/Jq/xEwNYpOzfcdizHfpCE0oBkWzk/r+Slr+0zw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.0.13.tgz", + "integrity": "sha512-vOtxu0xC0SLdQ2WRXg8Qgd8T32ak4SPqk5zjItRszrJk2BdeXqfGxBJbP7o4aOvSPSmSSv46Lr1EP4HXU8v7Kg==", "cpu": [ "x64" ], @@ -3711,9 +3831,9 @@ ] }, "node_modules/@lmdb/lmdb-win32-x64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.8.tgz", - "integrity": "sha512-lDLGRIMqdwYD39vinwNqqZUxCdL2m2iIdn+0HyQgIHEiT0g5rIAlzaMKzoGWon5NQumfxXFk9y0DarttkR7C1w==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.13.tgz", + "integrity": "sha512-UCrMJQY/gJnOl3XgbWRZZUvGGBuKy6i0YNSptgMzHBjs+QYDYR1Mt/RLTOPy4fzzves65O1EDmlL//OzEqoLlA==", "cpu": [ "x64" ], @@ -4654,9 +4774,9 @@ } }, "node_modules/@ngtools/webpack": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-18.0.5.tgz", - "integrity": "sha512-Dx386WZZn0RwUaBHQYhDW8oi254SxEu8Ty5LHnStqBP6xXdcnsdGel+h9qvJ67He9iu8Rj0PB64EFE4PiklMdQ==", + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-18.2.11.tgz", + "integrity": "sha512-iTdUGJ5O7yMm1DyCzyoMDMxBJ68emUSSXPWbQzEEdcqmtifRebn+VAq4vHN8OmtGM1mtuKeLEsbiZP8ywrw7Ug==", "dev": true, "engines": { "node": "^18.19.1 || ^20.11.1 || >=22.0.0", @@ -4665,7 +4785,7 @@ }, "peerDependencies": { "@angular/compiler-cli": "^18.0.0", - "typescript": ">=5.4 <5.5", + "typescript": ">=5.4 <5.6", "webpack": "^5.54.0" } }, @@ -4721,13 +4841,10 @@ } }, "node_modules/@npmcli/agent/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true }, "node_modules/@npmcli/fs": { "version": "3.1.1", @@ -4742,12 +4859,13 @@ } }, "node_modules/@npmcli/git": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz", - "integrity": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.8.tgz", + "integrity": "sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==", "dev": true, "dependencies": { "@npmcli/promise-spawn": "^7.0.0", + "ini": "^4.1.3", "lru-cache": "^10.0.1", "npm-pick-manifest": "^9.0.0", "proc-log": "^4.0.0", @@ -4770,13 +4888,10 @@ } }, "node_modules/@npmcli/git/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true }, "node_modules/@npmcli/git/node_modules/which": { "version": "4.0.0", @@ -4819,9 +4934,9 @@ } }, "node_modules/@npmcli/package-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz", - "integrity": "sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.1.tgz", + "integrity": "sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==", "dev": true, "dependencies": { "@npmcli/git": "^5.0.0", @@ -4846,9 +4961,9 @@ } }, "node_modules/@npmcli/package-json/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", @@ -4861,17 +4976,14 @@ "bin": { "glob": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@npmcli/package-json/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -4969,232 +5081,6 @@ "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/@nrwl/devkit": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-19.3.1.tgz", - "integrity": "sha512-SUS4P+yOwqGIZYlGMiHyU8Lav6ofal77cNTHuI5g/tHjewA6oSoi7xlrsJpzT6F5dtsoTtrilStfOIp50HkOLw==", - "dev": true, - "dependencies": { - "@nx/devkit": "19.3.1" - } - }, - "node_modules/@nrwl/tao": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-19.3.1.tgz", - "integrity": "sha512-K3VqTNwJ5/4vAaExIVmESWnQgO95MiJEgo+OzkmfkFvYTCOH2006OwvgCJFTQdjyONJ8Ao/lUPrHSDfsoevSeA==", - "dev": true, - "dependencies": { - "nx": "19.3.1", - "tslib": "^2.3.0" - }, - "bin": { - "tao": "index.js" - } - }, - "node_modules/@nx/devkit": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-19.3.1.tgz", - "integrity": "sha512-sMMPGy6xivhipajvyfR96RMDJiKdmhIRgRxAVW298nKSKwrkRrxW48EtxYqUtI8MZkUPQigNVvqN8fyZ/gE7CA==", - "dev": true, - "dependencies": { - "@nrwl/devkit": "19.3.1", - "ejs": "^3.1.7", - "enquirer": "~2.3.6", - "ignore": "^5.0.4", - "minimatch": "9.0.3", - "semver": "^7.5.3", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs-parser": "21.1.1" - }, - "peerDependencies": { - "nx": ">= 17 <= 20" - } - }, - "node_modules/@nx/devkit/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@nx/devkit/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nx/nx-darwin-arm64": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-19.3.1.tgz", - "integrity": "sha512-B8kpnfBBJJE4YfSvpNPNdKLi63cyd41dZJRePkBrW/7Va/wUiHuKoyAEQZEI2WmH9ZM3RNmw7dp5vESr05Sw5g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-darwin-x64": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-19.3.1.tgz", - "integrity": "sha512-XKY76oi7hLQAKZzGlEsqPxNWx7BOS8E801CA9k+hKNVqNJdD6Vz/1hkhzKo/TwBrPkyhdvrq+BqBMLS7ZDefKw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-freebsd-x64": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-19.3.1.tgz", - "integrity": "sha512-ZXDmzosPEq1DKC9r7UxPxF9I2GE11TmmYePcwN2xE1/you9+NUd14+SVW/jh/uH1j1n/41w0g35oNA6X0U+fGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-19.3.1.tgz", - "integrity": "sha512-2Ls+08J14BmkHpkQ6DhHGdW97IcY3vvqmuwogTBrt5ATmJIim3o/O4Kp4Sq+uuotf0kae0NP986BuoFw/WW/xg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm64-gnu": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-19.3.1.tgz", - "integrity": "sha512-+UbThXaqKmctAavcwdYxmtZIjrojGLK4PJKdivR0awjPEJ9qXnxA0bOQk/GdbD8nse66LR2NnPeNDxxqfsh8tw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm64-musl": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-19.3.1.tgz", - "integrity": "sha512-JMuBbg2Zqdz4N7i+hiJGr2QdsDarDZ8vyzzeoevFq3b8nhZfqKh/lno7+Y0WkXNpH7aT05GHaUA1r1NXf/5BeQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-x64-gnu": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-19.3.1.tgz", - "integrity": "sha512-cVmDMtolaqK7PziWxvjus1nCyj2wMNM+N0/4+rBEjG4v47gTtBxlZJoxK02jApdV+XELehsTjd0Z/xVfO4Rl1Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-x64-musl": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-19.3.1.tgz", - "integrity": "sha512-UGujK/TLMz9TNJ6+6HLhoOV7pdlgPVosSyeNZcoXCHOg/Mg9NGM7Hgk9jDodtcAY+TP6QMDJIMVGuXBsCE7NLQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-win32-arm64-msvc": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-19.3.1.tgz", - "integrity": "sha512-q+2aaRXarh/+HOOW/JXRwEnEEwPdGipsfzXBPDuDDJ7aOYKuyG7g1DlSERKdzI/aEBP+joneZbcbZHaDcEv2xw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-win32-x64-msvc": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-19.3.1.tgz", - "integrity": "sha512-TG4DP1lodTnIwY/CiSsc9Pk7o9/JZXgd1pP/xdHNTkrZYjE//z6TbSm+facBLuryuMhp6s/WlJaAlW241qva0Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, "node_modules/@otplib/core": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/@otplib/core/-/core-12.0.1.tgz", @@ -5248,9 +5134,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", - "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz", + "integrity": "sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==", "cpu": [ "arm" ], @@ -5261,9 +5147,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", - "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz", + "integrity": "sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==", "cpu": [ "arm64" ], @@ -5274,9 +5160,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", - "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz", + "integrity": "sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==", "cpu": [ "arm64" ], @@ -5287,9 +5173,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", - "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz", + "integrity": "sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==", "cpu": [ "x64" ], @@ -5300,9 +5186,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", - "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz", + "integrity": "sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==", "cpu": [ "arm" ], @@ -5313,9 +5199,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", - "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz", + "integrity": "sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==", "cpu": [ "arm" ], @@ -5326,9 +5212,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", - "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz", + "integrity": "sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==", "cpu": [ "arm64" ], @@ -5339,9 +5225,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", - "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz", + "integrity": "sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==", "cpu": [ "arm64" ], @@ -5352,9 +5238,9 @@ ] }, "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", - "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz", + "integrity": "sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==", "cpu": [ "ppc64" ], @@ -5365,9 +5251,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", - "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz", + "integrity": "sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==", "cpu": [ "riscv64" ], @@ -5378,9 +5264,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", - "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz", + "integrity": "sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==", "cpu": [ "s390x" ], @@ -5391,9 +5277,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", - "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz", + "integrity": "sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==", "cpu": [ "x64" ], @@ -5404,9 +5290,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", - "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz", + "integrity": "sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==", "cpu": [ "x64" ], @@ -5417,9 +5303,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", - "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz", + "integrity": "sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==", "cpu": [ "arm64" ], @@ -5430,9 +5316,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", - "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz", + "integrity": "sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==", "cpu": [ "ia32" ], @@ -5443,9 +5329,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", - "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz", + "integrity": "sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==", "cpu": [ "x64" ], @@ -5456,14 +5342,14 @@ ] }, "node_modules/@schematics/angular": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-18.0.5.tgz", - "integrity": "sha512-dV50GIEGl6S5wE6xtAhmHWdLhsOlnNUpAx/v3BPR2AOr90zJvIM03TqAQTzAlnPatxK2WLelRgqVMbPfAVvLAg==", + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-18.2.11.tgz", + "integrity": "sha512-jT54mc9+hPOwie9bji/g2krVuK1kkNh2PNFGwfgCg3Ofmt3hcyOBai1DKuot5uLTX4VCCbvfwiVR/hJniQl2SA==", "dev": true, "dependencies": { - "@angular-devkit/core": "18.0.5", - "@angular-devkit/schematics": "18.0.5", - "jsonc-parser": "3.2.1" + "@angular-devkit/core": "18.2.11", + "@angular-devkit/schematics": "18.2.11", + "jsonc-parser": "3.3.1" }, "engines": { "node": "^18.19.1 || ^20.11.1 || >=22.0.0", @@ -5545,11 +5431,17 @@ "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/@socket.io/component-emitter": { "version": "3.1.2", @@ -5644,9 +5536,9 @@ } }, "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -5711,30 +5603,10 @@ "@types/node": "*" } }, - "node_modules/@types/eslint": { - "version": "8.56.10", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", - "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", - "dev": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "dev": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true }, "node_modules/@types/express": { @@ -5750,9 +5622,21 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.19.5", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", - "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.1.tgz", + "integrity": "sha512-CRICJIl0N5cXDONAdlTv5ShATZ4HEwk6kDDIW2/w9qOWKg+NU/5F8wYRWCrONad0/UKkloNSmmyN/wX4rtpbVA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", "dev": true, "dependencies": { "@types/node": "*", @@ -5768,9 +5652,9 @@ "dev": true }, "node_modules/@types/http-proxy": { - "version": "1.17.14", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", - "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -5794,13 +5678,22 @@ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, - "node_modules/@types/node": { - "version": "20.14.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.8.tgz", - "integrity": "sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==", + "node_modules/@types/mute-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/@types/mute-stream/-/mute-stream-0.0.4.tgz", + "integrity": "sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==", "dev": true, "dependencies": { - "undici-types": "~5.26.4" + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "20.17.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.6.tgz", + "integrity": "sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==", + "dev": true, + "dependencies": { + "undici-types": "~6.19.2" } }, "node_modules/@types/node-forge": { @@ -5819,9 +5712,9 @@ "dev": true }, "node_modules/@types/qs": { - "version": "6.9.15", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", - "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", + "version": "6.9.17", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", + "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", "dev": true }, "node_modules/@types/range-parser": { @@ -5881,26 +5774,32 @@ "@types/node": "*" } }, + "node_modules/@types/wrap-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz", + "integrity": "sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==", + "dev": true + }, "node_modules/@types/ws": { - "version": "8.5.10", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", - "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", + "version": "8.5.13", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz", + "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.14.1.tgz", - "integrity": "sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==", + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz", + "integrity": "sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/type-utils": "7.14.1", - "@typescript-eslint/utils": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/type-utils": "7.18.0", + "@typescript-eslint/utils": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -5923,59 +5822,14 @@ } } }, - "node_modules/@typescript-eslint/parser": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.14.1.tgz", - "integrity": "sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz", + "integrity": "sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.14.1.tgz", - "integrity": "sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.14.1.tgz", - "integrity": "sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/utils": "7.14.1", + "@typescript-eslint/typescript-estree": "7.18.0", + "@typescript-eslint/utils": "7.18.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -5995,10 +5849,10 @@ } } }, - "node_modules/@typescript-eslint/types": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.14.1.tgz", - "integrity": "sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", "dev": true, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -6008,14 +5862,121 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.14.1.tgz", - "integrity": "sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz", + "integrity": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.18.0.tgz", + "integrity": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz", + "integrity": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.13.0.tgz", + "integrity": "sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==", + "dev": true, + "peer": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz", + "integrity": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -6036,6 +5997,19 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -6046,9 +6020,9 @@ } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -6061,15 +6035,127 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.14.1.tgz", - "integrity": "sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==", + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.13.0.tgz", + "integrity": "sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==", "dev": true, + "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1" + "@typescript-eslint/scope-manager": "8.13.0", + "@typescript-eslint/types": "8.13.0", + "@typescript-eslint/typescript-estree": "8.13.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.13.0.tgz", + "integrity": "sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "8.13.0", + "@typescript-eslint/visitor-keys": "8.13.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.13.0.tgz", + "integrity": "sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "8.13.0", + "@typescript-eslint/visitor-keys": "8.13.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.13.0.tgz", + "integrity": "sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "8.13.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz", + "integrity": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -6077,20 +6163,13 @@ "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.14.1.tgz", - "integrity": "sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==", + "node_modules/@typescript-eslint/visitor-keys/node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.14.1", - "eslint-visitor-keys": "^3.4.3" - }, "engines": { "node": "^18.18.0 || >=20.0.0" }, @@ -6275,59 +6354,6 @@ "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", "dev": true }, - "node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=14.15.0" - } - }, - "node_modules/@yarnpkg/parsers/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@yarnpkg/parsers/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@yarnpkg/parsers/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/@zkochan/js-yaml": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.7.tgz", - "integrity": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/abbrev": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", @@ -6350,9 +6376,9 @@ } }, "node_modules/acorn": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", - "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -6361,10 +6387,10 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", "dev": true, "peerDependencies": { "acorn": "^8" @@ -6380,9 +6406,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.3.3", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", - "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", "dev": true, "dependencies": { "acorn": "^8.11.0" @@ -6419,9 +6445,9 @@ } }, "node_modules/adm-zip": { - "version": "0.5.14", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.14.tgz", - "integrity": "sha512-DnyqqifT4Jrcvb8USYjp6FHtBpEIz1mnXu6pTRHZ0RL69LbQYiO+0lDFg5+OKA7U29oWSs3a/i8fhn8ZcceIWg==", + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz", + "integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==", "dev": true, "engines": { "node": ">=12.0" @@ -6453,15 +6479,15 @@ } }, "node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -6555,15 +6581,17 @@ } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { @@ -6604,12 +6632,12 @@ "dev": true }, "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", "dev": true, - "dependencies": { - "dequal": "^2.0.3" + "engines": { + "node": ">= 0.4" } }, "node_modules/array-flatten": { @@ -6675,12 +6703,6 @@ "node": ">=0.8" } }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true - }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -6698,9 +6720,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.19", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", - "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", "dev": true, "funding": [ { @@ -6717,11 +6739,11 @@ } ], "dependencies": { - "browserslist": "^4.23.0", - "caniuse-lite": "^1.0.30001599", + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", + "picocolors": "^1.0.1", "postcss-value-parser": "^4.2.0" }, "bin": { @@ -6743,28 +6765,17 @@ } }, "node_modules/aws4": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.0.tgz", - "integrity": "sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==" - }, - "node_modules/axios": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", - "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz", + "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==" }, "node_modules/axobject-query": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz", - "integrity": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", "dev": true, - "dependencies": { - "dequal": "^2.0.3" + "engines": { + "node": ">= 0.4" } }, "node_modules/babel-loader": { @@ -6808,13 +6819,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -6952,9 +6963,9 @@ "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" }, "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", @@ -6964,7 +6975,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.11.0", + "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -7096,12 +7107,16 @@ } }, "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", + "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" + "bn.js": "^5.2.1", + "randombytes": "^2.1.0", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 0.10" } }, "node_modules/browserify-sign": { @@ -7125,9 +7140,9 @@ } }, "node_modules/browserslist": { - "version": "4.23.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", - "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "funding": [ { @@ -7144,10 +7159,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" @@ -7263,9 +7278,9 @@ } }, "node_modules/cacache": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.3.tgz", - "integrity": "sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==", + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz", + "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==", "dev": true, "dependencies": { "@npmcli/fs": "^3.1.0", @@ -7295,9 +7310,9 @@ } }, "node_modules/cacache/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", @@ -7310,26 +7325,20 @@ "bin": { "glob": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/cacache/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true }, "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -7377,9 +7386,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001636", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", - "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", + "version": "1.0.30001677", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001677.tgz", + "integrity": "sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==", "dev": true, "funding": [ { @@ -7402,17 +7411,19 @@ "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" }, "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/chardet": { @@ -7422,27 +7433,18 @@ "dev": true }, "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", "dev": true, "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "readdirp": "^4.0.1" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 14.16.0" }, "funding": { "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" } }, "node_modules/chownr": { @@ -7482,21 +7484,24 @@ } }, "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", "dev": true, "dependencies": { - "restore-cursor": "^3.1.0" + "restore-cursor": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/cli-spinners": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", - "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", "dev": true, "engines": { "node": ">=6" @@ -7505,6 +7510,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/cli-truncate": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", + "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/cli-width": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", @@ -7528,39 +7549,35 @@ "node": ">=12" } }, - "node_modules/cliui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/cliui/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 + }, + "node_modules/cliui/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/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, "dependencies": { - "color-convert": "^2.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/cliui/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cliui/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/cliui/node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -7600,20 +7617,33 @@ "node": ">=6" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "color-name": "1.1.3" + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/colorette": { "version": "2.0.20", @@ -7666,32 +7696,23 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", + "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", "dev": true, "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", + "negotiator": "~0.6.4", "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -7707,11 +7728,14 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/compression/node_modules/safe-buffer": { - "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 + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } }, "node_modules/concat-map": { "version": "0.0.1", @@ -7752,6 +7776,15 @@ "ms": "2.0.0" } }, + "node_modules/connect/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/connect/node_modules/finalhandler": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", @@ -7833,19 +7866,19 @@ "integrity": "sha512-1KX9ESmtl8xpT2LN2tFnKSbV4NiarbVi8DVb39ZriijvtTklyrT+4dT1wsGMHKD3CJUjXgvJzstm9qL9ICojGA==" }, "node_modules/cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-parser": { - "version": "1.4.6", - "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", - "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.7.tgz", + "integrity": "sha512-nGUvgXnotP3BsjiLX2ypbQnWoGUPIIfHQNZkkC668ntrzGWEZVW70HDEB1qnNGMicPje6EttlIgzo51YSwNQGw==", "dependencies": { - "cookie": "0.4.1", + "cookie": "0.7.2", "cookie-signature": "1.0.6" }, "engines": { @@ -7870,20 +7903,20 @@ } }, "node_modules/copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-12.0.2.tgz", + "integrity": "sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==", "dev": true, "dependencies": { - "fast-glob": "^3.2.11", + "fast-glob": "^3.3.2", "glob-parent": "^6.0.1", - "globby": "^13.1.1", + "globby": "^14.0.0", "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "schema-utils": "^4.2.0", + "serialize-javascript": "^6.0.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", @@ -7893,41 +7926,30 @@ "webpack": "^5.1.0" } }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", - "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", "dev": true, "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.3.0", + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", "ignore": "^5.2.4", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "node_modules/copy-webpack-plugin/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, "engines": { "node": ">=12" @@ -7936,13 +7958,25 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/core-js-compat": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", - "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", "dev": true, "dependencies": { - "browserslist": "^4.23.0" + "browserslist": "^4.24.2" }, "funding": { "type": "opencollective", @@ -8039,9 +8073,10 @@ "dev": true }, "node_modules/critters": { - "version": "0.0.22", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.22.tgz", - "integrity": "sha512-NU7DEcQZM2Dy8XTKFHxtdnIM/drE312j2T4PCVaSUcS0oBeyT/NImpRw/Ap0zOr/1SE7SgPK9tGPg1WK/sVakw==", + "version": "0.0.24", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.24.tgz", + "integrity": "sha512-Oyqew0FGM0wYUSNqR0L6AteO5MpMoUU0rhKRieXeiKs+PmRTxiJMyaunYB2KF6fQ3dzChXKCpbFOEJx3OQ1v/Q==", + "deprecated": "Ownership of Critters has moved to the Nuxt team, who will be maintaining the project going forward. If you'd like to keep using Critters, please switch to the actively-maintained fork at https://github.com/danielroe/beasties", "dev": true, "dependencies": { "chalk": "^4.1.0", @@ -8053,76 +8088,6 @@ "postcss-media-query-parser": "^0.2.3" } }, - "node_modules/critters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/critters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/critters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/critters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/critters/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/critters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -8138,24 +8103,28 @@ } }, "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", + "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" + "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": "*" + "node": ">= 0.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/crypto-js": { @@ -8177,9 +8146,9 @@ } }, "node_modules/css-loader": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.1.tgz", - "integrity": "sha512-OxIR5P2mjO1PSXk44bWuQ8XtMK4dpEqpIyERCx3ewOo3I8EmbcxMPUc5ScLtQfgXtOojoMv57So4V/C02HQLsw==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", + "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", "dev": true, "dependencies": { "icss-utils": "^5.1.0", @@ -8533,11 +8502,11 @@ } }, "node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -8650,12 +8619,15 @@ } }, "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/define-properties": { @@ -8750,15 +8722,6 @@ "node": ">= 0.8" } }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/des.js": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", @@ -8812,15 +8775,6 @@ "node": ">=0.3.1" } }, - "node_modules/diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, "node_modules/diffie-hellman": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", @@ -8944,21 +8898,6 @@ "url": "https://dotenvx.com" } }, - "node_modules/dotenv-expand": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", - "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", @@ -8992,31 +8931,16 @@ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, - "node_modules/ejs": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", - "dev": true, - "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/electron-to-chromium": { - "version": "1.4.811", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.811.tgz", - "integrity": "sha512-CDyzcJ5XW78SHzsIOdn27z8J4ist8eaFLhdto2hSMSJQgsiwvbv2fbizcKUICryw1Wii1TI/FEkvzvJsR3awrA==", + "version": "1.5.52", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.52.tgz", + "integrity": "sha512-xtoijJTZ+qeucLBDNztDOuQBE1ksqjvNjvqFoST3nGC7fSpqJ+X6BdTBaY5BHG+IhWWmpc6b/KfpeuEDupEPOQ==", "dev": true }, "node_modules/elliptic": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz", - "integrity": "sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.0.tgz", + "integrity": "sha512-dpwoQcLc/2WLQvJvLRHKZ+f9FgOdjnq11rurqwekGQygGPsYSK29OMMD2WalatiqQ+XGFDglTNixpPfI+lpaAA==", "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", @@ -9033,9 +8957,10 @@ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "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==" + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true }, "node_modules/emojis-list": { "version": "3.0.0", @@ -9046,15 +8971,10 @@ "node": ">= 4" } }, - "node_modules/encode-utf8": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz", - "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==" - }, "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "engines": { "node": ">= 0.8" } @@ -9082,19 +9002,10 @@ "node": ">=0.10.0" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, "node_modules/engine.io": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz", - "integrity": "sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==", + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.2.tgz", + "integrity": "sha512-gmNvsYi9C8iErnZdVcJnvCpSKbWTt1E8+JZo8b+daLninywUWi5NQ5STSHZ9rFjFO7imNcvb8Pc5pe/wMR5xEw==", "dev": true, "dependencies": { "@types/cookie": "^0.4.1", @@ -9102,7 +9013,7 @@ "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", - "cookie": "~0.4.1", + "cookie": "~0.7.2", "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.2.1", @@ -9113,29 +9024,70 @@ } }, "node_modules/engine.io-client": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.4.tgz", - "integrity": "sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==", + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.2.tgz", + "integrity": "sha512-TAr+NKeoVTjEVW8P3iHguO1LO6RlUz9O5Y8o7EY0fU+gY1NYqas7NN3slpFtbXEsLMHk0h90fJMfKjRkQ0qUIw==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.2.1", "ws": "~8.17.1", - "xmlhttprequest-ssl": "~2.0.0" + "xmlhttprequest-ssl": "~2.1.1" + } + }, + "node_modules/engine.io-client/node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "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.2", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.2.tgz", - "integrity": "sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", + "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==", "engines": { "node": ">=10.0.0" } }, + "node_modules/engine.io/node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "dev": true, + "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.17.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", - "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -9145,18 +9097,6 @@ "node": ">=10.13.0" } }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, "node_modules/ent": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.1.tgz", @@ -9173,7 +9113,7 @@ "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, + "devOptional": true, "engines": { "node": ">=0.12" }, @@ -9190,6 +9130,18 @@ "node": ">=6" } }, + "node_modules/environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "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", @@ -9259,59 +9211,60 @@ } }, "node_modules/esbuild": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz", - "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.0.tgz", + "integrity": "sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==", "dev": true, "hasInstallScript": true, "bin": { "esbuild": "bin/esbuild" }, "engines": { - "node": ">=12" + "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.3", - "@esbuild/android-arm": "0.21.3", - "@esbuild/android-arm64": "0.21.3", - "@esbuild/android-x64": "0.21.3", - "@esbuild/darwin-arm64": "0.21.3", - "@esbuild/darwin-x64": "0.21.3", - "@esbuild/freebsd-arm64": "0.21.3", - "@esbuild/freebsd-x64": "0.21.3", - "@esbuild/linux-arm": "0.21.3", - "@esbuild/linux-arm64": "0.21.3", - "@esbuild/linux-ia32": "0.21.3", - "@esbuild/linux-loong64": "0.21.3", - "@esbuild/linux-mips64el": "0.21.3", - "@esbuild/linux-ppc64": "0.21.3", - "@esbuild/linux-riscv64": "0.21.3", - "@esbuild/linux-s390x": "0.21.3", - "@esbuild/linux-x64": "0.21.3", - "@esbuild/netbsd-x64": "0.21.3", - "@esbuild/openbsd-x64": "0.21.3", - "@esbuild/sunos-x64": "0.21.3", - "@esbuild/win32-arm64": "0.21.3", - "@esbuild/win32-ia32": "0.21.3", - "@esbuild/win32-x64": "0.21.3" + "@esbuild/aix-ppc64": "0.23.0", + "@esbuild/android-arm": "0.23.0", + "@esbuild/android-arm64": "0.23.0", + "@esbuild/android-x64": "0.23.0", + "@esbuild/darwin-arm64": "0.23.0", + "@esbuild/darwin-x64": "0.23.0", + "@esbuild/freebsd-arm64": "0.23.0", + "@esbuild/freebsd-x64": "0.23.0", + "@esbuild/linux-arm": "0.23.0", + "@esbuild/linux-arm64": "0.23.0", + "@esbuild/linux-ia32": "0.23.0", + "@esbuild/linux-loong64": "0.23.0", + "@esbuild/linux-mips64el": "0.23.0", + "@esbuild/linux-ppc64": "0.23.0", + "@esbuild/linux-riscv64": "0.23.0", + "@esbuild/linux-s390x": "0.23.0", + "@esbuild/linux-x64": "0.23.0", + "@esbuild/netbsd-x64": "0.23.0", + "@esbuild/openbsd-arm64": "0.23.0", + "@esbuild/openbsd-x64": "0.23.0", + "@esbuild/sunos-x64": "0.23.0", + "@esbuild/win32-arm64": "0.23.0", + "@esbuild/win32-ia32": "0.23.0", + "@esbuild/win32-x64": "0.23.0" } }, "node_modules/esbuild-wasm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.21.3.tgz", - "integrity": "sha512-DMOV+eeVra0yVq3XIojfczdEQsz+RiFnpEj7lqs8Gux9mlTpN7yIbw0a4KzLspn0Uhw6UVEH3nUAidSqc/rcQg==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.23.0.tgz", + "integrity": "sha512-6jP8UmWy6R6TUUV8bMuC3ZyZ6lZKI56x0tkxyCIqWwRRJ/DgeQKneh/Oid5EoGoPFLrGNkz47ZEtWAYuiY/u9g==", "dev": true, "bin": { "esbuild": "bin/esbuild" }, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "engines": { "node": ">=6" @@ -9323,36 +9276,43 @@ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { - "node": ">=0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.5.0.tgz", - "integrity": "sha512-+NAOZFrW/jFTS3dASCGBxX1pkFD0/fsO+hfAkJ4TyYKwgsXZbqzrw+seCYFCcPCYXvnD67tAnglU7GQTz6kcVw==", + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.14.0.tgz", + "integrity": "sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/config-array": "^0.16.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.18.0", + "@eslint/core": "^0.7.0", "@eslint/eslintrc": "^3.1.0", - "@eslint/js": "9.5.0", + "@eslint/js": "9.14.0", + "@eslint/plugin-kit": "^0.2.0", + "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.3.0", - "@nodelib/fs.walk": "^1.2.8", + "@humanwhocodes/retry": "^0.4.0", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.0.1", - "eslint-visitor-keys": "^4.0.0", - "espree": "^10.0.1", + "eslint-scope": "^8.2.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -9362,14 +9322,11 @@ "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, "bin": { @@ -9380,6 +9337,14 @@ }, "funding": { "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } } }, "node_modules/eslint-plugin-deprecation": { @@ -9397,10 +9362,45 @@ "typescript": "^4.2.4 || ^5.0.0" } }, + "node_modules/eslint-plugin-deprecation/node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/@typescript-eslint/utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz", + "integrity": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + } + }, "node_modules/eslint-scope": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz", - "integrity": "sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", + "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", @@ -9441,71 +9441,10 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", - "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -9514,54 +9453,21 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/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==", "dev": true }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/espree": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", - "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", "dev": true, "dependencies": { - "acorn": "^8.12.0", + "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.0.0" + "eslint-visitor-keys": "^4.2.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -9571,9 +9477,9 @@ } }, "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", - "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -9582,23 +9488,10 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "dependencies": { "estraverse": "^5.1.0" @@ -9692,6 +9585,27 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/execa/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/execa/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", @@ -9708,36 +9622,36 @@ "dev": true }, "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", + "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.2", + "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.6.0", + "cookie": "0.7.1", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.2.0", + "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", + "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", + "path-to-regexp": "0.1.10", "proxy-addr": "~2.0.7", - "qs": "6.11.0", + "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", + "send": "0.19.0", + "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", @@ -9749,11 +9663,11 @@ } }, "node_modules/express-session": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz", - "integrity": "sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==", + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.1.tgz", + "integrity": "sha512-a5mtTqEaZvBCL9A9aqkrtfz+3SMDhOVUnjafjo+s7A9Txkq+SVX2DLvSp1Zrv4uCXa3lMSK3viWnh9Gg07PBUA==", "dependencies": { - "cookie": "0.6.0", + "cookie": "0.7.2", "cookie-signature": "1.0.7", "debug": "2.6.9", "depd": "~2.0.0", @@ -9766,14 +9680,6 @@ "node": ">= 0.8.0" } }, - "node_modules/express-session/node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/express-session/node_modules/cookie-signature": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", @@ -9793,9 +9699,9 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/express/node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "engines": { "node": ">= 0.6" } @@ -9855,18 +9761,6 @@ "node": ">=4" } }, - "node_modules/external-editor/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, "node_modules/extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", @@ -9896,6 +9790,18 @@ "node": ">=8.6.0" } }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -9907,6 +9813,12 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "node_modules/fast-uri": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", + "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", + "dev": true + }, "node_modules/fastq": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", @@ -9928,21 +9840,6 @@ "node": ">=0.8.0" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/file-entry-cache": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", @@ -9955,36 +9852,6 @@ "node": ">=16.0.0" } }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, - "dependencies": { - "minimatch": "^5.0.1" - } - }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/fill-range": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", @@ -9998,12 +9865,12 @@ } }, "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dependencies": { "debug": "2.6.9", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", @@ -10088,9 +9955,9 @@ "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "dev": true, "funding": [ { @@ -10108,9 +9975,9 @@ } }, "node_modules/foreground-child": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", - "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", "dev": true, "dependencies": { "cross-spawn": "^7.0.0", @@ -10123,18 +9990,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "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", @@ -10144,17 +9999,16 @@ } }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dependencies": { "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", + "combined-stream": "^1.0.6", "mime-types": "^2.1.12" }, "engines": { - "node": ">= 6" + "node": ">= 0.12" } }, "node_modules/forwarded": { @@ -10186,61 +10040,18 @@ "node": ">= 0.6" } }, - "node_modules/front-matter": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz", - "integrity": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==", - "dev": true, - "dependencies": { - "js-yaml": "^3.13.1" - } - }, - "node_modules/front-matter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/front-matter/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/front-matter/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" }, "engines": { - "node": ">=14.14" + "node": ">=6 <7 || >=8" } }, "node_modules/fs-minipass": { @@ -10308,6 +10119,18 @@ "node": "6.* || 8.* || >= 10.*" } }, + "node_modules/get-east-asian-width": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz", + "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/get-intrinsic": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", @@ -10368,15 +10191,15 @@ } }, "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "is-glob": "^4.0.3" }, "engines": { - "node": ">= 6" + "node": ">=10.13.0" } }, "node_modules/glob-to-regexp": { @@ -10506,12 +10329,12 @@ } }, "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/has-property-descriptors": { @@ -10621,13 +10444,10 @@ } }, "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true }, "node_modules/hpack.js": { "version": "2.1.6", @@ -10764,17 +10584,17 @@ } }, "node_modules/http-proxy-middleware": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.0.tgz", - "integrity": "sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.3.tgz", + "integrity": "sha512-usY0HG5nyDUwtqpiZdETNbmKtw3QQ1jwYFZ9wi5iHzX2BcILwQKtYDJPo7XHTsu5Z0B2Hj3W9NNnbd+AjFWjqg==", "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.10", - "debug": "^4.3.4", + "@types/http-proxy": "^1.17.15", + "debug": "^4.3.6", "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.5" + "is-glob": "^4.0.3", + "is-plain-object": "^5.0.0", + "micromatch": "^4.0.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -10795,9 +10615,9 @@ } }, "node_modules/https-proxy-agent": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", - "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", "dev": true, "dependencies": { "agent-base": "^7.0.2", @@ -10869,9 +10689,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "engines": { "node": ">= 4" @@ -10905,9 +10725,9 @@ } }, "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -10939,9 +10759,9 @@ "dev": true }, "node_modules/immutable": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", - "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", "dev": true }, "node_modules/import-fresh": { @@ -11002,44 +10822,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/inquirer": { - "version": "9.2.22", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.22.tgz", - "integrity": "sha512-SqLLa/Oe5rZUagTR9z+Zd6izyatHglbmbvVofo1KzuVB54YHleWzeHNLoR7FOICGOeQSqeLh1cordb3MzhGcEw==", - "dev": true, - "dependencies": { - "@inquirer/figures": "^1.0.2", - "@ljharb/through": "^2.3.13", - "ansi-escapes": "^4.3.2", - "chalk": "^5.3.0", - "cli-cursor": "^3.1.0", - "cli-width": "^4.1.0", - "external-editor": "^3.1.0", - "lodash": "^4.17.21", - "mute-stream": "1.0.0", - "ora": "^5.4.1", - "run-async": "^3.0.0", - "rxjs": "^7.8.1", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/internmap": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", @@ -11103,9 +10885,9 @@ } }, "node_modules/is-core-module": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", - "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", "dev": true, "dependencies": { "hasown": "^2.0.2" @@ -11132,15 +10914,15 @@ } }, "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", "dev": true, "bin": { "is-docker": "cli.js" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -11156,11 +10938,15 @@ } }, "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==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-glob": { @@ -11193,21 +10979,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-inside-container/node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", @@ -11265,7 +11036,7 @@ "node": ">=0.10.0" } }, - "node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "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==", @@ -11277,15 +11048,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", @@ -11299,13 +11061,10 @@ } }, "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, "engines": { "node": ">=0.10.0" } @@ -11361,15 +11120,18 @@ "dev": true }, "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", "dev": true, "dependencies": { - "is-docker": "^2.0.0" + "is-inside-container": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/isarray": { @@ -11419,9 +11181,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz", - "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, "dependencies": { "@babel/core": "^7.23.9", @@ -11448,27 +11210,6 @@ "node": ">=10" } }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", @@ -11506,16 +11247,13 @@ } }, "node_modules/jackspeak": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", - "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, "dependencies": { "@isaacs/cliui": "^8.0.2" }, - "engines": { - "node": ">=14" - }, "funding": { "url": "https://github.com/sponsors/isaacs" }, @@ -11523,94 +11261,6 @@ "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/jake": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", - "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", - "dev": true, - "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jake/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jasmine": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz", @@ -11626,9 +11276,9 @@ } }, "node_modules/jasmine-core": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.1.2.tgz", - "integrity": "sha512-2oIUMGn00FdUiqz6epiiJr7xcFyNYj3rDcfmnzfkBnHyBQ3cBQUs4mmyGsOb7TTLb9kxk7dBcmEmqhDKkBoDyA==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.4.0.tgz", + "integrity": "sha512-T4fio3W++llLd7LGSGsioriDHgWyhoL6YTu4k37uwJLF7DzOzspz7mNxRoM3cQdLWtL/ebazQpIf/yZGJx/gzg==", "dev": true }, "node_modules/jasmine-spec-reporter": { @@ -11655,100 +11305,6 @@ "node": ">= 6.9.x" } }, - "node_modules/jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -11763,15 +11319,6 @@ "node": ">= 10.13.0" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", @@ -11796,6 +11343,11 @@ "jiti": "bin/jiti.js" } }, + "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==" + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -11882,19 +11434,16 @@ } }, "node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", "dev": true }, "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -11975,9 +11524,9 @@ } }, "node_modules/karma": { - "version": "6.4.3", - "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.3.tgz", - "integrity": "sha512-LuucC/RE92tJ8mlCwqEoRWXP38UMAqpnq98vktmS9SznSoUPPUJQbc91dHcxcunROvfQjdORVA/YFviH+Xci9Q==", + "version": "6.4.4", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.4.tgz", + "integrity": "sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w==", "dev": true, "dependencies": { "@colors/colors": "1.5.0", @@ -12116,19 +11665,28 @@ "source-map-support": "^0.5.5" } }, - "node_modules/karma/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/karma/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": ">=8" + "node": ">= 8.10.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, "node_modules/karma/node_modules/cliui": { @@ -12142,23 +11700,56 @@ "wrap-ansi": "^7.0.0" } }, - "node_modules/karma/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/karma/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 + }, + "node_modules/karma/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">= 6" } }, - "node_modules/karma/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/karma/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, + "engines": { + "node": ">=8" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/karma/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } }, "node_modules/karma/node_modules/source-map": { "version": "0.6.1", @@ -12169,6 +11760,29 @@ "node": ">=0.10.0" } }, + "node_modules/karma/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, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/karma/node_modules/tmp": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "dev": true, + "engines": { + "node": ">=14.14" + } + }, "node_modules/karma/node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -12232,9 +11846,9 @@ } }, "node_modules/launch-editor": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.0.tgz", - "integrity": "sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==", + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz", + "integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==", "dev": true, "dependencies": { "picocolors": "^1.0.0", @@ -12390,24 +12004,100 @@ } }, "node_modules/lines-and-columns": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz", - "integrity": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/listr2": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.2.4.tgz", + "integrity": "sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==", + "dev": true, + "dependencies": { + "cli-truncate": "^4.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.1.0", + "rfdc": "^1.4.1", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/listr2/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/listr2/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/listr2/node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, + "node_modules/listr2/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/lmdb": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.0.8.tgz", - "integrity": "sha512-9rp8JT4jPhCRJUL7vRARa2N06OLSYzLwQsEkhC6Qu5XbcLyM/XBLMzDlgS/K7l7c5CdURLdDk9uE+hPFIogHTQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.0.13.tgz", + "integrity": "sha512-UGe+BbaSUQtAMZobTb4nHvFMrmvuAQKSeaqAX2meTEQjfsbpl5sxdHD8T72OnwD4GU9uwNhYXIVe4QGs8N9Zyw==", "dev": true, "hasInstallScript": true, "dependencies": { - "msgpackr": "^1.9.9", + "msgpackr": "^1.10.2", "node-addon-api": "^6.1.0", - "node-gyp-build-optional-packages": "5.1.1", + "node-gyp-build-optional-packages": "5.2.2", "ordered-binary": "^1.4.1", "weak-lru-cache": "^1.2.2" }, @@ -12415,12 +12105,12 @@ "download-lmdb-prebuilds": "bin/download-prebuilds.js" }, "optionalDependencies": { - "@lmdb/lmdb-darwin-arm64": "3.0.8", - "@lmdb/lmdb-darwin-x64": "3.0.8", - "@lmdb/lmdb-linux-arm": "3.0.8", - "@lmdb/lmdb-linux-arm64": "3.0.8", - "@lmdb/lmdb-linux-x64": "3.0.8", - "@lmdb/lmdb-win32-x64": "3.0.8" + "@lmdb/lmdb-darwin-arm64": "3.0.13", + "@lmdb/lmdb-darwin-x64": "3.0.13", + "@lmdb/lmdb-linux-arm": "3.0.13", + "@lmdb/lmdb-linux-arm64": "3.0.13", + "@lmdb/lmdb-linux-x64": "3.0.13", + "@lmdb/lmdb-win32-x64": "3.0.13" } }, "node_modules/loader-runner": { @@ -12433,9 +12123,9 @@ } }, "node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "dev": true, "engines": { "node": ">= 12.13.0" @@ -12524,74 +12214,125 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/log-update": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", + "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "ansi-escapes": "^7.0.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^7.1.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-escapes": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", + "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", + "dev": true, + "dependencies": { + "environment": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", + "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "get-east-asian-width": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", + "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/log-update/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/log4js": { @@ -12620,12 +12361,12 @@ } }, "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", "dev": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@jridgewell/sourcemap-codec": "^1.5.0" } }, "node_modules/make-dir": { @@ -12697,13 +12438,13 @@ } }, "node_modules/memfs": { - "version": "4.9.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.9.3.tgz", - "integrity": "sha512-bsYSSnirtYTWi1+OPMFb0M048evMKyUYe0EbtuGQgq6BVQM1g1W8/KIUJCCvjgI/El0j6Q4WsmMiBwLUBSw8LA==", + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.14.0.tgz", + "integrity": "sha512-JUeY0F/fQZgIod31Ja1eJgiSxLn7BfQlCnqhwXFBzFHEw63OdLK7VJUJ7bnzNsWgCyoUP5tEp1VRY8rDaYzqOA==", "dev": true, "dependencies": { "@jsonjoy.com/json-pack": "^1.0.3", - "@jsonjoy.com/util": "^1.1.2", + "@jsonjoy.com/util": "^1.3.0", "tree-dump": "^1.0.1", "tslib": "^2.0.0" }, @@ -12716,9 +12457,12 @@ } }, "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/merge-stream": { "version": "2.0.0", @@ -12744,9 +12488,9 @@ } }, "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "dependencies": { "braces": "^3.0.3", @@ -12825,6 +12569,18 @@ "node": ">=6" } }, + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/mini-css-extract-plugin": { "version": "2.9.0", "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", @@ -13057,14 +12813,14 @@ } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/msgpackr": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.10.2.tgz", - "integrity": "sha512-L60rsPynBvNE+8BWipKKZ9jHcSGbtyJYIwjRq0VrIvQ08cRjntGXJYW/tmciZ2IHWIY8WEW32Qa2xbh5+SKBZA==", + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.2.tgz", + "integrity": "sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==", "dev": true, "optionalDependencies": { "msgpackr-extract": "^3.0.2" @@ -13092,21 +12848,6 @@ "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" } }, - "node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", - "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", - "dev": true, - "optional": true, - "dependencies": { - "detect-libc": "^2.0.1" - }, - "bin": { - "node-gyp-build-optional-packages": "bin.js", - "node-gyp-build-optional-packages-optional": "optional.js", - "node-gyp-build-optional-packages-test": "build-test.js" - } - }, "node_modules/multicast-dns": { "version": "7.2.5", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", @@ -13262,9 +13003,9 @@ } }, "node_modules/node-gyp": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz", - "integrity": "sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.2.0.tgz", + "integrity": "sha512-sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw==", "dev": true, "dependencies": { "env-paths": "^2.2.0", @@ -13273,9 +13014,9 @@ "graceful-fs": "^4.2.6", "make-fetch-happen": "^13.0.0", "nopt": "^7.0.0", - "proc-log": "^3.0.0", + "proc-log": "^4.1.0", "semver": "^7.3.5", - "tar": "^6.1.2", + "tar": "^6.2.1", "which": "^4.0.0" }, "bin": { @@ -13286,9 +13027,9 @@ } }, "node_modules/node-gyp-build": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", - "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", + "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", "dev": true, "optional": true, "bin": { @@ -13298,9 +13039,9 @@ } }, "node_modules/node-gyp-build-optional-packages": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz", - "integrity": "sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", + "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", "dev": true, "dependencies": { "detect-libc": "^2.0.1" @@ -13321,9 +13062,9 @@ } }, "node_modules/node-gyp/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", @@ -13336,9 +13077,6 @@ "bin": { "glob": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } @@ -13353,9 +13091,9 @@ } }, "node_modules/node-gyp/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -13367,15 +13105,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/node-gyp/node_modules/proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, "node_modules/node-gyp/node_modules/which": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", @@ -13391,22 +13120,16 @@ "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/node-machine-id": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz", - "integrity": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==", - "dev": true - }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", "dev": true }, "node_modules/nodemon": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.4.tgz", - "integrity": "sha512-wjPBbFhtpJwmIeY2yP7QF+UKzPfltVGtfce1g/bB15/8vCGZj8uxD62b/b9M9/WVgme0NZudpownKN+c0plXlQ==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz", + "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==", "dev": true, "dependencies": { "chokidar": "^3.5.2", @@ -13431,6 +13154,87 @@ "url": "https://opencollective.com/nodemon" } }, + "node_modules/nodemon/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/nodemon/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/nodemon/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/nodemon/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/nodemon/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/nopt": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", @@ -13447,13 +13251,12 @@ } }, "node_modules/normalize-package-data": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz", - "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz", + "integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==", "dev": true, "dependencies": { "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" }, @@ -13513,9 +13316,9 @@ } }, "node_modules/npm-package-arg": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz", - "integrity": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz", + "integrity": "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==", "dev": true, "dependencies": { "hosted-git-info": "^7.0.0", @@ -13540,9 +13343,9 @@ } }, "node_modules/npm-pick-manifest": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz", - "integrity": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz", + "integrity": "sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==", "dev": true, "dependencies": { "npm-install-checks": "^6.0.0", @@ -13597,211 +13400,6 @@ "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/nx": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/nx/-/nx-19.3.1.tgz", - "integrity": "sha512-dDkhnXMpnDN5/ZJxJXz7wPlKA3pQwQmwNQ3YmTrCwucNbpwNRdwXiDgbLpjlGCtaeE9yZh2E/dAH1HNbgViJ6g==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@nrwl/tao": "19.3.1", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.7", - "axios": "^1.6.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^8.0.1", - "dotenv": "~16.3.1", - "dotenv-expand": "~10.0.0", - "enquirer": "~2.3.6", - "figures": "3.2.0", - "flat": "^5.0.2", - "front-matter": "^4.0.2", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "jest-diff": "^29.4.1", - "jsonc-parser": "3.2.0", - "lines-and-columns": "~2.0.3", - "minimatch": "9.0.3", - "node-machine-id": "1.1.12", - "npm-run-path": "^4.0.1", - "open": "^8.4.0", - "ora": "5.3.0", - "semver": "^7.5.3", - "string-width": "^4.2.3", - "strong-log-transformer": "^2.1.0", - "tar-stream": "~2.2.0", - "tmp": "~0.2.1", - "tsconfig-paths": "^4.1.2", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js", - "nx-cloud": "bin/nx-cloud.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "19.3.1", - "@nx/nx-darwin-x64": "19.3.1", - "@nx/nx-freebsd-x64": "19.3.1", - "@nx/nx-linux-arm-gnueabihf": "19.3.1", - "@nx/nx-linux-arm64-gnu": "19.3.1", - "@nx/nx-linux-arm64-musl": "19.3.1", - "@nx/nx-linux-x64-gnu": "19.3.1", - "@nx/nx-linux-x64-musl": "19.3.1", - "@nx/nx-win32-arm64-msvc": "19.3.1", - "@nx/nx-win32-x64-msvc": "19.3.1" - }, - "peerDependencies": { - "@swc-node/register": "^1.8.0", - "@swc/core": "^1.3.85" - }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } - } - }, - "node_modules/nx/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/nx/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/nx/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/nx/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/nx/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/nx/node_modules/dotenv": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.2.tgz", - "integrity": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/nx/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/nx/node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "node_modules/nx/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/nx/node_modules/ora": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz", - "integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "log-symbols": "^4.0.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nx/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/oauth-sign": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", @@ -13888,32 +13486,33 @@ } }, "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", "dev": true, "dependencies": { - "mimic-fn": "^2.1.0" + "mimic-function": "^5.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", "dev": true, "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -13959,80 +13558,56 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/ora/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "restore-cursor": "^3.1.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/ora/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/ora/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/ora/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/ordered-binary": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.1.tgz", - "integrity": "sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.3.tgz", + "integrity": "sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==", "dev": true }, "node_modules/os-tmpdir": { @@ -14134,9 +13709,9 @@ } }, "node_modules/package-json-from-dist": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", - "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "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 }, "node_modules/pacote": { @@ -14228,12 +13803,6 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "node_modules/parse-json/node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, "node_modules/parse-node-version": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", @@ -14244,12 +13813,12 @@ } }, "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dev": true, + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz", + "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==", + "devOptional": true, "dependencies": { - "entities": "^4.4.0" + "entities": "^4.5.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" @@ -14344,18 +13913,15 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true }, "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==" }, "node_modules/path-type": { "version": "4.0.0", @@ -14382,17 +13948,17 @@ } }, "node_modules/pdfmake": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.10.tgz", - "integrity": "sha512-doipFnmE1UHSk+Z3wfQuVweVQqx2pE/Ns2G5gCqZmWwqjDj+mZHnZYH/ryXWoIfD+iVdZUAutgI/VHkTCN+Xrw==", + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.15.tgz", + "integrity": "sha512-Ryef9mjxo6q8dthhbssAK0zwCsPZ6Pl7kCHnIEXOvQdd79LUGZD6SHGi21YryFXczPjvw6V009uxQwp5iritcA==", "dependencies": { - "@foliojs-fork/linebreak": "^1.1.1", - "@foliojs-fork/pdfkit": "^0.14.0", + "@foliojs-fork/linebreak": "^1.1.2", + "@foliojs-fork/pdfkit": "^0.15.1", "iconv-lite": "^0.6.3", - "xmldoc": "^1.1.2" + "xmldoc": "^1.3.0" }, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/pdfmake/node_modules/iconv-lite": { @@ -14417,9 +13983,9 @@ "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "node_modules/picomatch": { @@ -14465,9 +14031,9 @@ } }, "node_modules/piscina": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.5.0.tgz", - "integrity": "sha512-iBaLWI56PFP81cfBSomWTmhOo9W2/yhIOL+Tk8O1vBCpK39cM0tGxB+wgYjG31qq4ohGvysfXSdnj8h7g4rZxA==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.6.1.tgz", + "integrity": "sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA==", "dev": true, "optionalDependencies": { "nice-napi": "^1.0.2" @@ -14559,9 +14125,9 @@ } }, "node_modules/pkg-dir/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", "dev": true, "engines": { "node": ">=12.20" @@ -14584,9 +14150,9 @@ } }, "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "version": "8.4.41", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", + "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", "dev": true, "funding": [ { @@ -14604,7 +14170,7 @@ ], "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.0", + "picocolors": "^1.0.1", "source-map-js": "^1.2.0" }, "engines": { @@ -14708,9 +14274,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -14735,32 +14301,6 @@ "node": ">= 0.8.0" } }, - "node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/proc-log": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", @@ -14899,6 +14439,21 @@ "node": ">=8" } }, + "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 + }, + "node_modules/protractor/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/protractor/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", @@ -14912,6 +14467,15 @@ "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, + "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", @@ -14969,6 +14533,41 @@ "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, + "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/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/protractor/node_modules/string-width/node_modules/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, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/protractor/node_modules/strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", @@ -15043,12 +14642,6 @@ "node": ">= 0.10" } }, - "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==", - "dev": true - }, "node_modules/prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", @@ -15112,12 +14705,11 @@ } }, "node_modules/qrcode": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz", - "integrity": "sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz", + "integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==", "dependencies": { "dijkstrajs": "^1.0.1", - "encode-utf8": "^1.0.3", "pngjs": "^5.0.0", "yargs": "^15.3.1" }, @@ -15138,6 +14730,11 @@ "wrap-ansi": "^6.2.0" } }, + "node_modules/qrcode/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==" + }, "node_modules/qrcode/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", @@ -15150,6 +14747,14 @@ "node": ">=8" } }, + "node_modules/qrcode/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==", + "engines": { + "node": ">=8" + } + }, "node_modules/qrcode/node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -15186,6 +14791,19 @@ "node": ">=8" } }, + "node_modules/qrcode/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==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/qrcode/node_modules/y18n": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", @@ -15225,11 +14843,11 @@ } }, "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" @@ -15328,12 +14946,6 @@ "node": ">=0.6" } }, - "node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, "node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -15354,27 +14966,16 @@ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/readdirp/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", "dev": true, "engines": { - "node": ">=8.6" + "node": ">= 14.16.0" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "type": "individual", + "url": "https://paulmillr.com/funding/" } }, "node_modules/reflect-metadata": { @@ -15390,9 +14991,9 @@ "dev": true }, "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dev": true, "dependencies": { "regenerate": "^1.4.2" @@ -15423,14 +15024,14 @@ "dev": true }, "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", "dependencies": { - "call-bind": "^1.0.6", + "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" + "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -15440,15 +15041,15 @@ } }, "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.1.1.tgz", + "integrity": "sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==", "dev": true, "dependencies": { - "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.11.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" }, @@ -15456,25 +15057,34 @@ "node": ">=4" } }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "dev": true + }, "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.11.2.tgz", + "integrity": "sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA==", "dev": true, "dependencies": { - "jsesc": "~0.5.0" + "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true, "bin": { "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" } }, "node_modules/request": { @@ -15540,19 +15150,6 @@ "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==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, "node_modules/request/node_modules/qs": { "version": "6.5.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", @@ -15660,16 +15257,19 @@ } }, "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", "dev": true, "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/retry": { @@ -15733,9 +15333,9 @@ "dev": true }, "node_modules/rollup": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", - "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.22.4.tgz", + "integrity": "sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==", "dev": true, "dependencies": { "@types/estree": "1.0.5" @@ -15748,25 +15348,31 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.18.0", - "@rollup/rollup-android-arm64": "4.18.0", - "@rollup/rollup-darwin-arm64": "4.18.0", - "@rollup/rollup-darwin-x64": "4.18.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", - "@rollup/rollup-linux-arm-musleabihf": "4.18.0", - "@rollup/rollup-linux-arm64-gnu": "4.18.0", - "@rollup/rollup-linux-arm64-musl": "4.18.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", - "@rollup/rollup-linux-riscv64-gnu": "4.18.0", - "@rollup/rollup-linux-s390x-gnu": "4.18.0", - "@rollup/rollup-linux-x64-gnu": "4.18.0", - "@rollup/rollup-linux-x64-musl": "4.18.0", - "@rollup/rollup-win32-arm64-msvc": "4.18.0", - "@rollup/rollup-win32-ia32-msvc": "4.18.0", - "@rollup/rollup-win32-x64-msvc": "4.18.0", + "@rollup/rollup-android-arm-eabi": "4.22.4", + "@rollup/rollup-android-arm64": "4.22.4", + "@rollup/rollup-darwin-arm64": "4.22.4", + "@rollup/rollup-darwin-x64": "4.22.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.22.4", + "@rollup/rollup-linux-arm-musleabihf": "4.22.4", + "@rollup/rollup-linux-arm64-gnu": "4.22.4", + "@rollup/rollup-linux-arm64-musl": "4.22.4", + "@rollup/rollup-linux-powerpc64le-gnu": "4.22.4", + "@rollup/rollup-linux-riscv64-gnu": "4.22.4", + "@rollup/rollup-linux-s390x-gnu": "4.22.4", + "@rollup/rollup-linux-x64-gnu": "4.22.4", + "@rollup/rollup-linux-x64-musl": "4.22.4", + "@rollup/rollup-win32-arm64-msvc": "4.22.4", + "@rollup/rollup-win32-ia32-msvc": "4.22.4", + "@rollup/rollup-win32-x64-msvc": "4.22.4", "fsevents": "~2.3.2" } }, + "node_modules/rollup/node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, "node_modules/run-applescript": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", @@ -15779,15 +15385,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/run-async": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", - "integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -15850,9 +15447,9 @@ "dev": true }, "node_modules/sass": { - "version": "1.77.2", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.2.tgz", - "integrity": "sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==", + "version": "1.77.6", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.6.tgz", + "integrity": "sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -15867,9 +15464,9 @@ } }, "node_modules/sass-loader": { - "version": "14.2.1", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.2.1.tgz", - "integrity": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==", + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.0.tgz", + "integrity": "sha512-n13Z+3rU9A177dk4888czcVFiC8CL9dii4qpXWUg3YIIgZEvi9TCFKjOQcbK0kJM7DJu9VucrZFddvNfYCPwtw==", "dev": true, "dependencies": { "neo-async": "^2.6.2" @@ -15906,6 +15503,66 @@ } } }, + "node_modules/sass/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/sass/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sass/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/sass/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, "node_modules/saucelabs": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.5.0.tgz", @@ -16053,9 +15710,9 @@ } }, "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "bin": { "semver": "bin/semver.js" }, @@ -16064,9 +15721,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -16099,6 +15756,14 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/send/node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", @@ -16125,11 +15790,6 @@ "node": ">=4" } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, "node_modules/send/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -16226,14 +15886,14 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" @@ -16366,10 +16026,16 @@ } }, "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, "node_modules/sigstore": { "version": "2.3.1", @@ -16409,6 +16075,34 @@ "node": ">=8" } }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", @@ -16420,16 +16114,16 @@ } }, "node_modules/socket.io": { - "version": "4.7.5", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz", - "integrity": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.1.tgz", + "integrity": "sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==", "dev": true, "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "cors": "~2.8.5", "debug": "~4.3.2", - "engine.io": "~6.5.2", + "engine.io": "~6.6.0", "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.4" }, @@ -16447,14 +16141,35 @@ "ws": "~8.17.1" } }, + "node_modules/socket.io-adapter/node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "dev": true, + "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/socket.io-client": { - "version": "4.7.5", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.5.tgz", - "integrity": "sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.1.tgz", + "integrity": "sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.5.2", + "engine.io-client": "~6.6.1", "socket.io-parser": "~4.2.4" }, "engines": { @@ -16508,14 +16223,14 @@ } }, "node_modules/socks-proxy-agent": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz", - "integrity": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", + "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", "dev": true, "dependencies": { "agent-base": "^7.1.1", "debug": "^4.3.4", - "socks": "^2.7.1" + "socks": "^2.8.3" }, "engines": { "node": ">= 14" @@ -16531,9 +16246,9 @@ } }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, "engines": { "node": ">=0.10.0" @@ -16617,9 +16332,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.18", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", - "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", "dev": true }, "node_modules/spdy": { @@ -16765,38 +16480,6 @@ "node": ">=8.0" } }, - "node_modules/streamroller/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/streamroller/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/streamroller/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -16811,16 +16494,20 @@ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "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==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/string-width-cjs": { @@ -16838,6 +16525,48 @@ "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 + }, + "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, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -16862,15 +16591,6 @@ "node": ">=8" } }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", @@ -16892,33 +16612,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/strong-log-transformer": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", - "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", - "dev": true, - "dependencies": { - "duplexer": "^0.1.1", - "minimist": "^1.2.0", - "through": "^2.3.4" - }, - "bin": { - "sl-log-transformer": "bin/sl-log-transformer.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { @@ -16968,36 +16671,6 @@ "node": ">=10" } }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar-stream/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==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/tar/node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -17050,9 +16723,9 @@ "dev": true }, "node_modules/terser": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", - "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", + "version": "5.31.6", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", + "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -17176,12 +16849,6 @@ "node": ">=0.2.6" } }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", @@ -17194,21 +16861,15 @@ "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==" }, "node_modules/tmp": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", - "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, "engines": { - "node": ">=14.14" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" + "node": ">=0.6.0" } }, "node_modules/to-regex-range": { @@ -17286,9 +16947,9 @@ } }, "node_modules/ts-api-utils": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", - "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.0.tgz", + "integrity": "sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==", "dev": true, "engines": { "node": ">=16" @@ -17340,24 +17001,10 @@ } } }, - "node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", - "dev": true, - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "node_modules/tsscmp": { "version": "1.0.6", @@ -17453,9 +17100,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.38", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.38.tgz", - "integrity": "sha512-fYmIy7fKTSFAhG3fuPlubeGaMoAd6r0rSnfEsO5nEY55i26KSLt9EH7PLQiiqPUhNqYIJvSkTy1oArIcXAbPbA==", + "version": "0.7.39", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.39.tgz", + "integrity": "sha512-IZ6acm6RhQHNibSt7+c09hhvsKy9WUr4DVbeq9U8o71qxyYtJpQeDxQnMrVqnIFMLcQjHO0I9wgfO2vIahht4w==", "dev": true, "funding": [ { @@ -17471,6 +17118,9 @@ "url": "https://github.com/sponsors/faisalman" } ], + "bin": { + "ua-parser-js": "script/cli.js" + }, "engines": { "node": "*" } @@ -17492,25 +17142,16 @@ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", "dev": true }, - "node_modules/undici": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-6.18.0.tgz", - "integrity": "sha512-nT8jjv/fE9Et1ilR6QoW8ingRTY2Pp4l2RUrdzV5Yz35RJDrtPc1DXvuNqcpsJSGIRHFdt3YKKktTzJA6r0fTA==", - "dev": true, - "engines": { - "node": ">=18.17" - } - }, "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", "dev": true }, "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", "dev": true, "engines": { "node": ">=4" @@ -17530,9 +17171,9 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", "dev": true, "engines": { "node": ">=4" @@ -17570,6 +17211,18 @@ "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==" }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/unique-filename": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", @@ -17595,12 +17248,12 @@ } }, "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, "engines": { - "node": ">= 10.0.0" + "node": ">= 4.0.0" } }, "node_modules/unpipe": { @@ -17612,9 +17265,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dev": true, "funding": [ { @@ -17631,8 +17284,8 @@ } ], "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" @@ -17731,14 +17384,14 @@ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" }, "node_modules/vite": { - "version": "5.2.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", - "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", + "version": "5.4.6", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.6.tgz", + "integrity": "sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==", "dev": true, "dependencies": { - "esbuild": "^0.20.1", - "postcss": "^8.4.38", - "rollup": "^4.13.0" + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" }, "bin": { "vite": "bin/vite.js" @@ -17757,6 +17410,7 @@ "less": "*", "lightningcss": "^1.21.0", "sass": "*", + "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" @@ -17774,6 +17428,9 @@ "sass": { "optional": true }, + "sass-embedded": { + "optional": true + }, "stylus": { "optional": true }, @@ -17786,9 +17443,9 @@ } }, "node_modules/vite/node_modules/@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", "cpu": [ "ppc64" ], @@ -17802,9 +17459,9 @@ } }, "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", "cpu": [ "arm" ], @@ -17818,9 +17475,9 @@ } }, "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", "cpu": [ "arm64" ], @@ -17834,9 +17491,9 @@ } }, "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", "cpu": [ "x64" ], @@ -17850,9 +17507,9 @@ } }, "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", "cpu": [ "arm64" ], @@ -17866,9 +17523,9 @@ } }, "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", "cpu": [ "x64" ], @@ -17882,9 +17539,9 @@ } }, "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", "cpu": [ "arm64" ], @@ -17898,9 +17555,9 @@ } }, "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", "cpu": [ "x64" ], @@ -17914,9 +17571,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", "cpu": [ "arm" ], @@ -17930,9 +17587,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", "cpu": [ "arm64" ], @@ -17946,9 +17603,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", "cpu": [ "ia32" ], @@ -17962,9 +17619,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", "cpu": [ "loong64" ], @@ -17978,9 +17635,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", "cpu": [ "mips64el" ], @@ -17994,9 +17651,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", "cpu": [ "ppc64" ], @@ -18010,9 +17667,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", "cpu": [ "riscv64" ], @@ -18026,9 +17683,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", "cpu": [ "s390x" ], @@ -18042,9 +17699,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", "cpu": [ "x64" ], @@ -18058,9 +17715,9 @@ } }, "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", "cpu": [ "x64" ], @@ -18074,9 +17731,9 @@ } }, "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", "cpu": [ "x64" ], @@ -18090,9 +17747,9 @@ } }, "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", "cpu": [ "x64" ], @@ -18106,9 +17763,9 @@ } }, "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", "cpu": [ "arm64" ], @@ -18122,9 +17779,9 @@ } }, "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", "cpu": [ "ia32" ], @@ -18138,9 +17795,9 @@ } }, "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", "cpu": [ "x64" ], @@ -18154,9 +17811,9 @@ } }, "node_modules/vite/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", "dev": true, "hasInstallScript": true, "bin": { @@ -18166,29 +17823,57 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vite/node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, "node_modules/vm-browserify": { @@ -18314,6 +17999,15 @@ "node": ">=0.10.0" } }, + "node_modules/webdriver-manager/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/webdriver-manager/node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", @@ -18364,21 +18058,20 @@ } }, "node_modules/webpack": { - "version": "5.91.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", - "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", + "version": "5.94.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", + "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", "dev": true, "dependencies": { - "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.5", "@webassemblyjs/ast": "^1.12.1", "@webassemblyjs/wasm-edit": "^1.12.1", "@webassemblyjs/wasm-parser": "^1.12.1", "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", + "acorn-import-attributes": "^1.9.5", "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.16.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", @@ -18411,9 +18104,9 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.2.1.tgz", - "integrity": "sha512-hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==", + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.2.tgz", + "integrity": "sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==", "dev": true, "dependencies": { "colorette": "^2.0.10", @@ -18507,22 +18200,34 @@ "balanced-match": "^1.0.0" } }, - "node_modules/webpack-dev-server/node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, "engines": { - "node": ">=12" + "node": ">= 8.10.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, "node_modules/webpack-dev-server/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", @@ -18535,17 +18240,26 @@ "bin": { "glob": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/webpack-dev-server/node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", + "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", "dev": true, "dependencies": { "@types/http-proxy": "^1.17.8", @@ -18575,25 +18289,10 @@ "node": ">= 10" } }, - "node_modules/webpack-dev-server/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==", - "dev": true, - "dependencies": { - "is-inside-container": "^1.0.0" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/webpack-dev-server/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -18605,28 +18304,34 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/webpack-dev-server/node_modules/open": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", - "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "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==", "dev": true, - "dependencies": { - "default-browser": "^5.2.1", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^3.1.0" - }, "engines": { - "node": ">=18" + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, "node_modules/webpack-dev-server/node_modules/rimraf": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz", - "integrity": "sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==", + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", "dev": true, "dependencies": { "glob": "^10.3.7" @@ -18634,25 +18339,22 @@ "bin": { "rimraf": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=14.18" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/webpack-merge": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", - "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", "dev": true, "dependencies": { "clone-deep": "^4.0.1", "flat": "^5.0.2", - "wildcard": "^2.0.0" + "wildcard": "^2.0.1" }, "engines": { - "node": ">=10.0.0" + "node": ">=18.0.0" } }, "node_modules/webpack-sources": { @@ -18851,69 +18553,61 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "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 }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "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, + "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, "dependencies": { - "color-convert": "^2.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "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", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/wrap-ansi/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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/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==", "dependencies": { - "color-name": "~1.1.4" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -18921,9 +18615,9 @@ "dev": true }, "node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "engines": { "node": ">=10.0.0" }, @@ -18971,9 +18665,9 @@ } }, "node_modules/xmlhttprequest-ssl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz", - "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz", + "integrity": "sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==", "engines": { "node": ">=0.4.0" } @@ -19020,6 +18714,35 @@ "node": ">=12" } }, + "node_modules/yargs/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 + }, + "node_modules/yargs/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/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, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", @@ -19041,10 +18764,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz", + "integrity": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/zone.js": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.7.tgz", - "integrity": "sha512-0w6DGkX2BPuiK/NLf+4A8FLE43QwBfuqz2dVgi/40Rj1WmqUskCqj329O/pwrqFJLG5X8wkeG2RhIAro441xtg==" + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.10.tgz", + "integrity": "sha512-YGAhaO7J5ywOXW6InXNlLmfU194F8lVgu7bRntUF3TiG8Y3nBK0x1UJJuHUP/e8IyihkjCYqhCScpSwnlaSRkQ==" } } } diff --git a/package.json b/package.json index b8dc11a4..5fbe1a8f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rtl", - "version": "0.15.2-beta", + "version": "0.15.3-beta", "license": "MIT", "type": "module", "scripts": { diff --git a/server/controllers/cln/invoices.ts b/server/controllers/cln/invoices.ts index 7ff9eee5..225ceeed 100644 --- a/server/controllers/cln/invoices.ts +++ b/server/controllers/cln/invoices.ts @@ -9,11 +9,11 @@ export const deleteExpiredInvoice = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Deleting Expired Invoices..' }); 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/delexpiredinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/autoclean-once'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoices Deleted', data: body }); - res.status(204).json({ status: 'Invoice Deleted Successfully' }); + res.status(201).json({ status: 'Cleaned Invoices: ' + body.autoclean.expiredinvoices.cleaned + ', Uncleaned Invoices: ' + body.autoclean.expiredinvoices.uncleaned }); }).catch((errRes) => { const err = common.handleError(errRes, 'Invoice', 'Delete Invoice Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/server/controllers/cln/offers.ts b/server/controllers/cln/offers.ts index 993b852c..a515db41 100644 --- a/server/controllers/cln/offers.ts +++ b/server/controllers/cln/offers.ts @@ -82,7 +82,7 @@ export const disableOffer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Disabling Offer..' }); 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/disableOffer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableoffer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Disabled', data: body }); diff --git a/server/controllers/eclair/channels.ts b/server/controllers/eclair/channels.ts index 2451d34c..733ad381 100644 --- a/server/controllers/eclair/channels.ts +++ b/server/controllers/eclair/channels.ts @@ -31,7 +31,7 @@ export const simplifyAllChannels = (selNode: SelectedNode, channels) => { }); channelNodeIds = channelNodeIds.substring(1); options.url = selNode.settings.lnServerUrl + '/nodes'; - options.form = { nodeIds: channelNodeIds }; + options.form = channelNodeIds; logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Node Ids to find alias', data: channelNodeIds }); return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Filtered Nodes Received', data: nodes }); diff --git a/server/controllers/lnd/channels.ts b/server/controllers/lnd/channels.ts index 76e196c4..b5e104d9 100644 --- a/server/controllers/lnd/channels.ts +++ b/server/controllers/lnd/channels.ts @@ -155,37 +155,6 @@ export const postChannel = (req, res, next) => { }); }; -export const postTransactions = (req, res, next) => { - const { paymentReq, paymentAmount, feeLimit, outgoingChannel, allowSelfPayment, lastHopPubkey } = req.body; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sending Payment..' }); - 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/channels/transaction-stream'; - options.form = { payment_request: paymentReq }; - if (paymentAmount) { - options.form.amt = paymentAmount; - } - if (feeLimit) { options.form.fee_limit = feeLimit; } - if (outgoingChannel) { options.form.outgoing_chan_id = outgoingChannel; } - if (allowSelfPayment) { options.form.allow_self_payment = allowSelfPayment; } - if (lastHopPubkey) { options.form.last_hop_pubkey = Buffer.from(lastHopPubkey, 'hex').toString('base64'); } - options.form = JSON.stringify(options.form); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Send Payment Options', data: options.form }); - request.post(options).then((body) => { - body = body.result ? body.result : body; - if (body.payment_error) { - const err = common.handleError(body.payment_error, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Payment Sent', data: body }); - res.status(201).json(body); - } - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); -}; - export const closeChannel = (req, res, next) => { try { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closing Channel..' }); diff --git a/server/controllers/lnd/payments.ts b/server/controllers/lnd/payments.ts index dd927271..211a91f7 100644 --- a/server/controllers/lnd/payments.ts +++ b/server/controllers/lnd/payments.ts @@ -96,3 +96,32 @@ export const paymentLookup = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }; + +export const sendPayment = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Payment..' }); + 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/send'; + if (req.body.last_hop_pubkey) { + 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; + 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) => { + 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') { + const err = common.handleError(common.titleCase(body.result.failure_reason.replace(/_/g, ' ').replace('FAILURE REASON ', '')), 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + if (body.result.status === 'SUCCEEDED') { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent', data: body.result }); + res.status(201).json(body.result); + } + }).catch((errRes) => { + const err = common.handleError(errRes, 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; diff --git a/server/routes/lnd/channels.ts b/server/routes/lnd/channels.ts index d7f2745c..f1d2d9b8 100644 --- a/server/routes/lnd/channels.ts +++ b/server/routes/lnd/channels.ts @@ -1,7 +1,7 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, postTransactions, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; +import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; const router = Router(); @@ -9,7 +9,6 @@ router.get('/', isAuthenticated, getAllChannels); router.get('/pending', isAuthenticated, getPendingChannels); router.get('/closed', isAuthenticated, getClosedChannels); router.post('/', isAuthenticated, postChannel); -router.post('/transactions', isAuthenticated, postTransactions); router.delete('/:channelPoint', isAuthenticated, closeChannel); router.post('/chanPolicy', isAuthenticated, postChanPolicy); diff --git a/server/routes/lnd/payments.ts b/server/routes/lnd/payments.ts index 272c62ba..7db776c8 100644 --- a/server/routes/lnd/payments.ts +++ b/server/routes/lnd/payments.ts @@ -1,7 +1,7 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup } from '../../controllers/lnd/payments.js'; +import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup, sendPayment } from '../../controllers/lnd/payments.js'; const router = Router(); @@ -10,5 +10,6 @@ router.get('/alltransactions', isAuthenticated, getAllLightningTransactions); router.get('/decode/:payRequest', isAuthenticated, decodePayment); router.get('/lookup/:paymentHash', isAuthenticated, paymentLookup); router.post('/', isAuthenticated, decodePayments); +router.post('/send', isAuthenticated, sendPayment); export default router; diff --git a/server/utils/common.ts b/server/utils/common.ts index 165d6df5..d3f8e34d 100644 --- a/server/utils/common.ts +++ b/server/utils/common.ts @@ -413,7 +413,8 @@ export class CommonService { }); }; - public readCookie = () => { + public readCookie = (config) => { + this.appConfig.SSO = config.SSO; const exists = fs.existsSync(this.appConfig.SSO.rtlCookiePath); if (exists) { try { diff --git a/server/utils/config.ts b/server/utils/config.ts index 362a722a..a8abab3e 100644 --- a/server/utils/config.ts +++ b/server/utils/config.ts @@ -150,7 +150,7 @@ export class ConfigService { this.common.nodes[idx] = { settings: { blockExplorerUrl: '' }, authentication: {} }; this.common.nodes[idx].index = node.index; this.common.nodes[idx].lnNode = node.lnNode; - this.common.nodes[idx].lnImplementation = (process?.env?.lnImplementation) ? process?.env?.lnImplementation : node.lnImplementation ? node.lnImplementation : 'LND'; + this.common.nodes[idx].lnImplementation = (process?.env?.LN_IMPLEMENTATION) ? process?.env?.LN_IMPLEMENTATION : node.lnImplementation ? node.lnImplementation : 'LND'; if (this.common.nodes[idx].lnImplementation === 'CLT') { this.common.nodes[idx].lnImplementation = 'CLN'; } switch (this.common.nodes[idx].lnImplementation) { case 'CLN': @@ -321,7 +321,7 @@ export class ConfigService { if (!config.SSO.rtlCookiePath || config.SSO.rtlCookiePath.trim() === '') { this.errMsg = 'Please set rtlCookiePath value for single sign on option!'; } else { - this.common.readCookie(); + this.common.readCookie(config); } } }; 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 ce79e989..322d1409 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 @@ -6,7 +6,20 @@ - + +
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
Bitcoin Address diff --git a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 0fe835f6..fac9e571 100644 --- a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -8,7 +8,7 @@ import { Actions } from '@ngrx/effects'; import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { MatSnackBar } from '@angular/material/snack-bar'; import { MatStepper } from '@angular/material/stepper'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import * as sha256 from 'sha256'; import { Node, RTLConfiguration } from '../../../shared/models/RTLconfig'; @@ -25,6 +25,8 @@ import { setChannelTransaction } from '../../store/cln.actions'; import { rootAppConfig, rootSelectedNode } from '../../../store/rtl.selector'; import { clnNodeInformation, utxoBalances } from '../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; +import { DataService } from 'src/app/shared/services/data.service'; +import { RecommendedFeeRates } from 'src/app/shared/models/rtlModels'; @Component({ selector: 'rtl-cln-on-chain-send-modal', @@ -37,6 +39,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('formSweepAll', { static: false }) formSweepAll: any; @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public sweepAll = false; public selNode: Node | null; public appConfig: RTLConfiguration; @@ -65,6 +68,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { public advancedTitle = 'Advanced Options'; public flgValidated = false; public flgEditable = true; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; public passwordFormLabel = 'Authenticate with your RTL password'; public sendFundFormLabel = 'Sweep funds'; public confirmFormLabel = 'Confirm sweep'; @@ -74,12 +78,13 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { confirmFormGroup: UntypedFormGroup; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor( public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNOnChainSendFunds, private logger: LoggerService, + private dataService: DataService, private store: Store, private commonService: CommonService, private decimalPipe: DecimalPipe, @@ -91,6 +96,13 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { } ngOnInit() { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[0])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); this.sweepAll = this.data.sweepAll; this.passwordFormGroup = this.formBuilder.group({ hiddenPassword: ['', [Validators.required]], @@ -104,7 +116,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { minConfValue: [{ value: null, disabled: true }] }); this.confirmFormGroup = this.formBuilder.group({}); - this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe(takeUntil(this.unSubs[0])).subscribe((flg) => { + this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((flg) => { if (flg) { this.sendFundFormGroup.controls.selFeeRate.disable(); this.sendFundFormGroup.controls.selFeeRate.setValue(null); @@ -121,7 +133,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundFormGroup.controls.minConfValue.setErrors(null); } }); - this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((feeRate) => { + this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe(takeUntil(this.unSubs[2])).subscribe((feeRate) => { this.sendFundFormGroup.controls.customFeeRate.setValue(null); this.sendFundFormGroup.controls.customFeeRate.reset(); if (feeRate === 'customperkb' && !this.sendFundFormGroup.controls.flgMinConf.value) { @@ -130,23 +142,23 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundFormGroup.controls.customFeeRate.setValidators(null); } }); - combineLatest([this.store.select(rootSelectedNode), this.store.select(rootAppConfig)]).pipe(takeUntil(this.unSubs[1])). + combineLatest([this.store.select(rootSelectedNode), this.store.select(rootAppConfig)]).pipe(takeUntil(this.unSubs[3])). subscribe(([selNode, appConfig]) => { this.fiatConversion = selNode.settings.fiatConversion; this.amountUnits = selNode.settings.currencyUnits; this.appConfig = appConfig; }); - this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[2])). + this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[4])). subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(utxoBalances).pipe(takeUntil(this.unSubs[3])). + this.store.select(utxoBalances).pipe(takeUntil(this.unSubs[5])). subscribe((utxoBalancesSeletor: { utxos: UTXO[], balance: Balance, localRemoteBalance: LocalRemoteBalance, apiCallStatus: ApiCallStatusPayload }) => { this.utxos = this.commonService.sortAscByKey(utxoBalancesSeletor.utxos?.filter((utxo) => utxo.status === 'confirmed'), 'value'); this.logger.info(utxoBalancesSeletor); }); this.actions.pipe( - takeUntil(this.unSubs[4]), + takeUntil(this.unSubs[6]), filter((action) => action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN || action.type === CLNActions.SET_CHANNEL_TRANSACTION_RES_CLN)). subscribe((action: any) => { if (action.type === CLNActions.SET_CHANNEL_TRANSACTION_RES_CLN) { @@ -219,7 +231,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { } if (this.transaction.satoshi && this.transaction.satoshi !== 'all' && this.selAmountUnit !== CurrencyUnitEnum.SATS) { this.commonService.convertCurrency(+this.transaction.satoshi, this.selAmountUnit === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : this.selAmountUnit, CurrencyUnitEnum.SATS, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[5])). + pipe(takeUntil(this.unSubs[7])). subscribe({ next: (data) => { this.transaction.satoshi = data[CurrencyUnitEnum.SATS]; @@ -307,7 +319,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { let currSelectedUnit = event.value === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : event.value; if (this.transaction.satoshi && this.selAmountUnit !== event.value) { this.commonService.convertCurrency(+this.transaction.satoshi, prevSelectedUnit, currSelectedUnit, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[6])). + pipe(takeUntil(this.unSubs[8])). subscribe({ next: (data) => { this.selAmountUnit = event.value; 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 e9baec0d..bf306587 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 @@ -58,7 +58,7 @@
Fee Rate - + {{feeRateType.feeRateType}} diff --git a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts index 25c7de35..44360f9f 100644 --- a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts +++ b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts @@ -168,6 +168,13 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { } } else { this.advancedTitle = 'Advanced Options'; + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); } } @@ -209,19 +216,6 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { this.store.dispatch(saveNewChannel({ payload: newChannel })); } - onSelFeeRateChanged(event) { - this.customFeeRate = null; - if (event.value === 'customperkb') { - this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ - next: (rfRes: RecommendedFeeRates) => { - this.recommendedFee = rfRes; - }, error: (err) => { - this.logger.error(err); - } - }); - } - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/cln/store/cln.effects.ts b/src/app/cln/store/cln.effects.ts index e7fba95b..312013db 100644 --- a/src/app/cln/store/cln.effects.ts +++ b/src/app/cln/store/cln.effects.ts @@ -14,7 +14,7 @@ import { WebSocketClientService } from '../../shared/services/web-socket.service import { ErrorMessageComponent } from '../../shared/components/data-modal/error-message/error-message.component'; import { CLNInvoiceInformationComponent } from '../transactions/invoices/invoice-information-modal/invoice-information.component'; import { GetInfo, Payment, FeeRates, ListInvoices, Invoice, Peer, OnChain, QueryRoutes, SaveChannel, GetNewAddress, DetachPeer, UpdateChannel, CloseChannel, SendPayment, GetQueryRoutes, ChannelLookup, Channel, OfferInvoice, Offer } from '../../shared/models/clnModels'; -import { API_URL, API_END_POINTS, AlertTypeEnum, APICallStatusEnum, UI_MESSAGES, CLNWSEventTypeEnum, CLNActions, RTLActions, CLNForwardingEventsStatusEnum } from '../../shared/services/consts-enums-functions'; +import { API_URL, API_END_POINTS, SECS_IN_YEAR, AlertTypeEnum, APICallStatusEnum, UI_MESSAGES, CLNWSEventTypeEnum, CLNActions, RTLActions, CLNForwardingEventsStatusEnum } from '../../shared/services/consts-enums-functions'; import { closeAllDialogs, closeSpinner, logout, openAlert, openSnackBar, openSpinner, setApiUrl, setNodeData } from '../../store/rtl.actions'; import { RTLState } from '../../store/rtl.state'; @@ -114,8 +114,8 @@ export class CLNEffects implements OnDestroy { }), catchError((err) => { const code = this.commonService.extractErrorCode(err); - const msg = (code === 'ETIMEDOUT') ? 'Unable to Connect to Core Lightning Server.' : this.commonService.extractErrorMessage(err); - this.router.navigate(['/login'], { state: { logoutReason: JSON.stringify(msg) } }); + const msg = (code === 503) ? 'Unable to Connect to Core Lightning Server.' : this.commonService.extractErrorMessage(err); + this.router.navigate(['/error'], { state: { errorCode: code, errorMessage: msg } }); this.handleErrorWithoutAlert('FetchInfo', UI_MESSAGES.GET_NODE_INFO, 'Fetching Node Info Failed.', { status: code, error: msg }); return of({ type: RTLActions.VOID }); }) @@ -608,12 +608,12 @@ export class CLNEffects implements OnDestroy { ofType(CLNActions.DELETE_EXPIRED_INVOICE_CLN), mergeMap((action: { type: string, payload: number }) => { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.DELETE_INVOICE })); - return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.INVOICES_API + '/delete', { maxexpiry: action.payload }). + return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.INVOICES_API + '/delete', { subsystem: 'expiredinvoices', age: SECS_IN_YEAR }). pipe( map((postRes: any) => { this.logger.info(postRes); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.DELETE_INVOICE })); - this.store.dispatch(openSnackBar({ payload: 'Invoices Deleted Successfully!' })); + this.store.dispatch(openSnackBar({ payload: postRes.status })); return { type: CLNActions.FETCH_INVOICES_CLN }; }), catchError((err: any) => { 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 d69dcd82..a5de950b 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 @@ -6,7 +6,20 @@
- + +
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
Bitcoin Address diff --git a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 3ba5857e..3e91234f 100644 --- a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -5,7 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { MatDialogRef } from '@angular/material/dialog'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { Node } from '../../../shared/models/RTLconfig'; import { GetInfo, OnChainBalance, SendPaymentOnChain } from '../../../shared/models/eclModels'; @@ -17,6 +17,8 @@ import { RTLState } from '../../../store/rtl.state'; import { openSnackBar } from '../../../store/rtl.actions'; import { sendOnchainFunds } from '../../store/ecl.actions'; import { rootSelectedNode } from '../../../store/rtl.selector'; +import { DataService } from 'src/app/shared/services/data.service'; +import { RecommendedFeeRates } from 'src/app/shared/models/rtlModels'; @Component({ selector: 'rtl-ecl-on-chain-send-modal', @@ -27,6 +29,7 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public selNode: Node | null; public addressTypes = []; public selectedAddress = ADDRESS_TYPES[1]; @@ -41,19 +44,27 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { public currConvertorRate = {}; public unitConversionValue = 0; public currencyUnitFormats = CURRENCY_UNIT_FORMATS; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; public amountError = 'Amount is Required.'; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, private logger: LoggerService, private store: Store, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions) { } + constructor(public dialogRef: MatDialogRef, private logger: LoggerService, private dataService: DataService, private store: Store, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions) { } ngOnInit() { - this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((selNode) => { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[0])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])).subscribe((selNode) => { this.fiatConversion = selNode.settings.fiatConversion; this.amountUnits = selNode.settings.currencyUnits; this.logger.info(selNode); }); this.actions.pipe( - takeUntil(this.unSubs[1]), + takeUntil(this.unSubs[2]), filter((action) => action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL || action.type === ECLActions.SEND_ONCHAIN_FUNDS_RES_ECL) ). subscribe((action: any) => { @@ -74,7 +85,7 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundError = ''; if (this.transaction.amount && this.selAmountUnit !== CurrencyUnitEnum.SATS) { this.commonService.convertCurrency(this.transaction.amount, this.selAmountUnit === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : this.selAmountUnit, CurrencyUnitEnum.SATS, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[2])). + pipe(takeUntil(this.unSubs[3])). subscribe({ next: (data) => { this.transaction.amount = parseInt(data[CurrencyUnitEnum.SATS]); @@ -107,7 +118,7 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { let currSelectedUnit = event.value === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : event.value; if (this.transaction.amount && this.selAmountUnit !== event.value) { this.commonService.convertCurrency(this.transaction.amount, prevSelectedUnit, currSelectedUnit, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[3])). + pipe(takeUntil(this.unSubs[4])). subscribe({ next: (data) => { this.selAmountUnit = event.value; 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 a5365c67..c9e26bed 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 @@ -6,8 +6,21 @@ - - + +
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
+ Bitcoin Address diff --git a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 6199bd1a..d9c481a8 100644 --- a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -8,7 +8,7 @@ import { Actions } from '@ngrx/effects'; import { MatSnackBar } from '@angular/material/snack-bar'; import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { MatStepper } from '@angular/material/stepper'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { OnChainSendFunds } from '../../../shared/models/alertData'; import { Node, RTLConfiguration } from '../../../shared/models/RTLconfig'; @@ -23,6 +23,8 @@ import { RTLState } from '../../../store/rtl.state'; import { isAuthorized, openSnackBar } from '../../../store/rtl.actions'; import { setChannelTransaction } from '../../store/lnd.actions'; import { rootAppConfig, rootSelectedNode } from '../../../store/rtl.selector'; +import { DataService } from 'src/app/shared/services/data.service'; +import { RecommendedFeeRates } from 'src/app/shared/models/rtlModels'; @Component({ selector: 'rtl-on-chain-send-modal', @@ -35,6 +37,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('formSweepAll', { static: false }) formSweepAll: any; @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public sweepAll = false; public selNode: Node | null; public appConfig: RTLConfiguration; @@ -58,6 +61,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { public sendFundError = ''; public flgValidated = false; public flgEditable = true; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; public passwordFormLabel = 'Authenticate with your RTL password'; public sendFundFormLabel = 'Sweep funds'; public confirmFormLabel = 'Confirm sweep'; @@ -65,12 +69,13 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { passwordFormGroup: UntypedFormGroup; sendFundFormGroup: UntypedFormGroup; confirmFormGroup: UntypedFormGroup; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor( public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: OnChainSendFunds, private logger: LoggerService, + private dataService: DataService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, @@ -80,6 +85,13 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { private formBuilder: UntypedFormBuilder) { } ngOnInit() { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[0])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); this.sweepAll = this.data.sweepAll; this.passwordFormGroup = this.formBuilder.group({ hiddenPassword: ['', [Validators.required]], @@ -92,7 +104,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { selTransType: ['1', Validators.required] }); this.confirmFormGroup = this.formBuilder.group({}); - this.sendFundFormGroup.controls.selTransType.valueChanges.pipe(takeUntil(this.unSubs[0])).subscribe((transType) => { + this.sendFundFormGroup.controls.selTransType.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((transType) => { if (transType === '1') { this.sendFundFormGroup.controls.transactionBlocks.setValidators([Validators.required]); this.sendFundFormGroup.controls.transactionBlocks.setValue(null); @@ -105,16 +117,16 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundFormGroup.controls.transactionFees.setValue(null); } }); - this.store.select(rootAppConfig).pipe(takeUntil(this.unSubs[1])).subscribe((appConfig) => { + this.store.select(rootAppConfig).pipe(takeUntil(this.unSubs[2])).subscribe((appConfig) => { this.appConfig = appConfig; }); - this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[2])).subscribe((selNode) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[3])).subscribe((selNode) => { this.fiatConversion = selNode.settings.fiatConversion; this.amountUnits = selNode.settings.currencyUnits; this.logger.info(selNode); }); this.actions.pipe( - takeUntil(this.unSubs[3]), + takeUntil(this.unSubs[4]), filter((action) => action.type === LNDActions.UPDATE_API_CALL_STATUS_LND || action.type === LNDActions.SET_CHANNEL_TRANSACTION_RES_LND)). subscribe((action: any) => { if (action.type === LNDActions.SET_CHANNEL_TRANSACTION_RES_LND) { @@ -173,7 +185,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { } if (this.transactionAmount && this.selAmountUnit !== CurrencyUnitEnum.SATS) { this.commonService.convertCurrency(this.transactionAmount, this.selAmountUnit === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : this.selAmountUnit, CurrencyUnitEnum.SATS, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe({ next: (data) => { this.selAmountUnit = CurrencyUnitEnum.SATS; @@ -254,7 +266,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { if (this.transactionAmount && this.selAmountUnit !== event.value) { const amount = this.transactionAmount ? this.transactionAmount : 0; this.commonService.convertCurrency(amount, prevSelectedUnit, currSelectedUnit, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[5])). + pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { this.selAmountUnit = event.value; 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 6e426681..ab3980ed 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 @@ -89,7 +89,7 @@ View Info Label Lease - Bump Fee + Bump Fee diff --git a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts index 0d790326..7b703783 100644 --- a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts +++ b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts @@ -12,8 +12,8 @@ import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { ChannelRebalanceAlert } from '../../../../shared/models/alertData'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; -import { Channel, QueryRoutes, ListInvoices } from '../../../../shared/models/lndModels'; -import { DEFAULT_INVOICE_EXPIRY, FEE_LIMIT_TYPES, LNDActions, PAGE_SIZE, ScreenSizeEnum, UI_MESSAGES } from '../../../../shared/services/consts-enums-functions'; +import { Channel, QueryRoutes, ListInvoices, SendPayment } from '../../../../shared/models/lndModels'; +import { DEFAULT_INVOICE_EXPIRY, FEE_LIMIT_TYPES, LNDActions, PAGE_SIZE, ScreenSizeEnum, UI_MESSAGES, getFeeLimitSat } from '../../../../shared/services/consts-enums-functions'; import { RTLState } from '../../../../store/rtl.state'; import { saveNewInvoice, sendPayment } from '../../../store/lnd.actions'; @@ -239,13 +239,29 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { this.flgInvoiceGenerated = true; this.paymentRequest = payReq; if (this.feeFormGroup.controls.selFeeLimitType.value.id === 'percent' && !(+this.feeFormGroup.controls.feeLimit.value % 1 === 0)) { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, - feeLimitType: 'fixed', feeLimit: Math.ceil((+this.feeFormGroup.controls.feeLimit.value * +this.inputFormGroup.controls.rebalanceAmount.value) / 100), - allowSelfPayment: true, lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.NO_SPINNER, + payment_request: payReq, + amp: false, + outgoing_chan_ids: this.selChannel?.chan_id ? [this.selChannel?.chan_id] : undefined, + fee_limit_sat: Math.ceil(getFeeLimitSat('fixed', this.feeFormGroup.controls.feeLimit.value, (this.inputFormGroup.controls.rebalanceAmount.value || 0))), + allow_self_payment: true, + last_hop_pubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } else { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, - feeLimitType: this.feeFormGroup.controls.selFeeLimitType.value.id, feeLimit: this.feeFormGroup.controls.feeLimit.value, allowSelfPayment: true, - lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.NO_SPINNER, + payment_request: payReq, + amp: false, + outgoing_chan_ids: this.selChannel?.chan_id ? [this.selChannel?.chan_id] : undefined, + fee_limit_sat: getFeeLimitSat(this.feeFormGroup.controls.selFeeLimitType.value.id, this.feeFormGroup.controls.feeLimit.value, (this.inputFormGroup.controls.rebalanceAmount.value || 0)), + allow_self_payment: true, + last_hop_pubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } } diff --git a/src/app/lnd/store/lnd.effects.ts b/src/app/lnd/store/lnd.effects.ts index 2f4c1ef3..a8493af8 100644 --- a/src/app/lnd/store/lnd.effects.ts +++ b/src/app/lnd/store/lnd.effects.ts @@ -691,31 +691,16 @@ export class LNDEffects implements OnDestroy { mergeMap((action: { type: string, payload: SendPayment }) => { this.store.dispatch(openSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.INITIATED } })); - const queryHeaders = {}; - queryHeaders['paymentReq'] = action.payload.paymentReq; - if (action.payload.paymentAmount) { - queryHeaders['paymentAmount'] = action.payload.paymentAmount; - } - if (action.payload.outgoingChannel) { - queryHeaders['outgoingChannel'] = action.payload.outgoingChannel.chan_id; - } - if (action.payload.allowSelfPayment) { - queryHeaders['allowSelfPayment'] = action.payload.allowSelfPayment; - } // Channel Rebalancing - if (action.payload.lastHopPubkey) { - queryHeaders['lastHopPubkey'] = action.payload.lastHopPubkey; - } - if (action.payload.feeLimitType && action.payload.feeLimitType !== FEE_LIMIT_TYPES[0].id) { - queryHeaders['feeLimit'] = {}; - queryHeaders['feeLimit'][action.payload.feeLimitType] = action.payload.feeLimit; - } - return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.CHANNELS_API + '/transactions', queryHeaders).pipe( + const queryParams = JSON.parse(JSON.stringify(action.payload)); + delete queryParams.uiMessage; + delete queryParams.fromDialog; + return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.PAYMENTS_API + '/send', queryParams).pipe( map((sendRes: any) => { this.logger.info(sendRes); this.store.dispatch(closeSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.COMPLETED } })); if (sendRes.payment_error) { - if (action.payload.allowSelfPayment) { + if (action.payload.allow_self_payment) { this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSettings?.recordsPerPage, reversed: true } })); return { type: LNDActions.SEND_PAYMENT_STATUS_LND, @@ -734,7 +719,7 @@ export class LNDEffects implements OnDestroy { this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.COMPLETED } })); this.store.dispatch(fetchChannels()); this.store.dispatch(fetchPayments({ payload: { max_payments: this.paymentsPageSettings?.recordsPerPage, reversed: true } })); - if (action.payload.allowSelfPayment) { + if (action.payload.allow_self_payment) { this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSettings?.recordsPerPage, reversed: true } })); } else { let msg = 'Payment Sent Successfully.'; @@ -751,7 +736,7 @@ export class LNDEffects implements OnDestroy { }), catchError((err: any) => { this.logger.error('Error: ' + JSON.stringify(err)); - if (action.payload.allowSelfPayment) { + if (action.payload.allow_self_payment) { this.handleErrorWithoutAlert('SendPayment', action.payload.uiMessage, 'Send Payment Failed.', err); this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSettings?.recordsPerPage, reversed: true } })); return of({ diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.ts b/src/app/lnd/transactions/payments/lightning-payments.component.ts index 6e9cf859..c0e15ea0 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.ts +++ b/src/app/lnd/transactions/payments/lightning-payments.component.ts @@ -195,7 +195,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest subscribe((confirmRes) => { if (confirmRes) { this.paymentDecoded.num_satoshis = confirmRes[0].inputValue; - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, paymentAmount: confirmRes[0].inputValue, fromDialog: false } })); + this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, payment_request: this.paymentRequest, amp: false, amt: confirmRes[0].inputValue, fromDialog: false } })); this.resetData(); } }); @@ -224,7 +224,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest pipe(take(1)). subscribe((confirmRes) => { if (confirmRes) { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, fromDialog: false } })); + this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, payment_request: this.paymentRequest, amp: false, fromDialog: false } })); this.resetData(); } }); diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.html b/src/app/lnd/transactions/send-payment-modal/send-payment.component.html index d9b1975e..b317e6b1 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.html +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.html @@ -4,7 +4,7 @@
Send Payment
- + @@ -56,6 +56,7 @@ Channel not found in the list.
+ AMP Payment
@@ -63,8 +64,8 @@ {{paymentError}}
- - + +
diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts b/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts index 828e2a69..e30c9977 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts @@ -90,8 +90,8 @@ describe('LightningSendPaymentsComponent', () => { const sendButton = fixture.debugElement.nativeElement.querySelector('#sendBtn'); sendButton.click(); const expectedSendPaymentPayload: SendPayment = { - uiMessage: UI_MESSAGES.SEND_PAYMENT, outgoingChannel: null, feeLimitType: 'none', feeLimit: null, fromDialog: true, - paymentReq: 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq' + + uiMessage: UI_MESSAGES.SEND_PAYMENT, outgoing_chan_ids: undefined, fee_limit_sat: 1000000, fromDialog: true, amp: false, + payment_request: 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq' + '6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5c' + 'qqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq' + '38j0s3hrgpv4eel3' diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts b/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts index 27b6c6d1..47d6a8cb 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts @@ -9,8 +9,8 @@ import { MatDialogRef } from '@angular/material/dialog'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { Node } from '../../../shared/models/RTLconfig'; -import { PayRequest, Channel, ChannelsSummary, LightningBalance } from '../../../shared/models/lndModels'; -import { APICallStatusEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, FEE_LIMIT_TYPES, LNDActions, UI_MESSAGES } from '../../../shared/services/consts-enums-functions'; +import { PayRequest, Channel, ChannelsSummary, LightningBalance, SendPayment } from '../../../shared/models/lndModels'; +import { APICallStatusEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, FEE_LIMIT_TYPES, LNDActions, UI_MESSAGES, getFeeLimitSat } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; import { LoggerService } from '../../../shared/services/logger.service'; import { DataService } from '../../../shared/services/data.service'; @@ -43,6 +43,7 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { public activeChannels: Channel[] = []; public filteredMinAmtActvChannels: Channel[] = []; public selectedChannelCtrl = new UntypedFormControl(); + public isAmp = false; public feeLimit: number | null = null; public selFeeLimitType = FEE_LIMIT_TYPES[0]; public feeLimitTypes = FEE_LIMIT_TYPES; @@ -142,10 +143,27 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { if (!this.paymentDecoded.num_satoshis || this.paymentDecoded.num_satoshis === '' || this.paymentDecoded.num_satoshis === '0') { this.zeroAmtInvoice = true; this.paymentDecoded.num_satoshis = this.paymentAmount?.toString() || ''; - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, paymentAmount: this.paymentAmount || 0, outgoingChannel: this.selectedChannelCtrl.value, feeLimitType: this.selFeeLimitType.id, feeLimit: this.feeLimit, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.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] : undefined, + fee_limit_sat: getFeeLimitSat(this.selFeeLimitType.id, this.feeLimit, (this.paymentAmount || 0)), + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } else { this.zeroAmtInvoice = false; - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, outgoingChannel: this.selectedChannelCtrl.value, feeLimitType: this.selFeeLimitType.id, feeLimit: this.feeLimit, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.SEND_PAYMENT, + payment_request: this.paymentRequest, + amp: this.isAmp, + outgoing_chan_ids: this.selectedChannelCtrl.value?.chan_id ? [this.selectedChannelCtrl.value.chan_id] : undefined, + fee_limit_sat: getFeeLimitSat(this.selFeeLimitType.id, this.feeLimit, (+this.paymentDecoded.num_satoshis || 0)), + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } } @@ -231,6 +249,7 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { resetData() { this.paymentDecoded = {}; this.paymentRequest = ''; + this.isAmp = false; this.selectedChannelCtrl.setValue(null); this.filteredMinAmtActvChannels = this.activeChannels; if (this.filteredMinAmtActvChannels.length && this.filteredMinAmtActvChannels.length > 0) { diff --git a/src/app/shared/components/data-modal/alert-message/alert-message.component.html b/src/app/shared/components/data-modal/alert-message/alert-message.component.html index 022c356b..8e98de2f 100644 --- a/src/app/shared/components/data-modal/alert-message/alert-message.component.html +++ b/src/app/shared/components/data-modal/alert-message/alert-message.component.html @@ -21,8 +21,8 @@
@@ -50,7 +50,9 @@ - + + + {{(obj.value * 1000) | date:'dd/MMM/y HH:mm'}} {{obj.value | number: obj.digitsInfo ? obj.digitsInfo : '1.0-3'}} diff --git a/src/app/shared/models/lndModels.ts b/src/app/shared/models/lndModels.ts index 85da15a8..a3f3c21f 100644 --- a/src/app/shared/models/lndModels.ts +++ b/src/app/shared/models/lndModels.ts @@ -552,13 +552,13 @@ export interface FetchPayments { export interface SendPayment { uiMessage: string; fromDialog: boolean; - paymentReq: string; - paymentAmount?: number; - outgoingChannel?: Channel | null; - feeLimitType?: string; - feeLimit?: number | null; - allowSelfPayment?: boolean; - lastHopPubkey?: string; + payment_request: string; + amp: boolean; + amt?: number; + outgoing_chan_ids?: string[] | []; + fee_limit_sat?: number | null; + allow_self_payment?: boolean; + last_hop_pubkey?: string; } export interface GetNewAddress { diff --git a/src/app/shared/services/consts-enums-functions.ts b/src/app/shared/services/consts-enums-functions.ts index e93b0b7f..45e7000e 100644 --- a/src/app/shared/services/consts-enums-functions.ts +++ b/src/app/shared/services/consts-enums-functions.ts @@ -12,10 +12,11 @@ export function getPaginatorLabel(field: string) { } export const HOUR_SECONDS = 3600; +export const SECS_IN_YEAR = 31536000; export const DEFAULT_INVOICE_EXPIRY = HOUR_SECONDS * 24 * 7; -export const VERSION = '0.15.2-beta'; +export const VERSION = '0.15.3-beta'; export const API_URL = isDevMode() ? 'http://localhost:3000/rtl/api' : './api'; @@ -69,7 +70,7 @@ export const TRANS_TYPES = [ export const FEE_LIMIT_TYPES = [ { 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 Payment Amount', placeholder: 'Percentage Limit' } + { id: 'percent', name: 'Percentage of Amount', placeholder: 'Percentage Limit' } ]; export const FEE_RATE_TYPES = [ @@ -1396,3 +1397,14 @@ export function getSelectedCurrency(currencyID: string) { } return foundCurrency; } + + +export function getFeeLimitSat(selFeeLimitTypeID: string, feeLimit: number, amount?: number) { + if (selFeeLimitTypeID === 'fixed') { + return feeLimit; + } + if (selFeeLimitTypeID === 'percent') { + return Math.ceil(((amount || 0) * feeLimit) / 100); + } + return 1000000; +} diff --git a/src/app/shared/theme/styles/theme-mode-dark.scss b/src/app/shared/theme/styles/theme-mode-dark.scss index 695d2a69..4e0a9213 100644 --- a/src/app/shared/theme/styles/theme-mode-dark.scss +++ b/src/app/shared/theme/styles/theme-mode-dark.scss @@ -402,7 +402,7 @@ &.info-icon-primary { color: $primary-darker; } - &.info-icon-text { + &.info-icon-text, &.arrow-downward, &.arrow-upward { color: $foreground-text; } } diff --git a/src/app/shared/theme/styles/theme-mode-light.scss b/src/app/shared/theme/styles/theme-mode-light.scss index 76802ae8..9ad4d3af 100644 --- a/src/app/shared/theme/styles/theme-mode-light.scss +++ b/src/app/shared/theme/styles/theme-mode-light.scss @@ -323,6 +323,10 @@ &.info-icon-text { color: $foreground-secondary-text; } + &.arrow-downward, &.arrow-upward { + font-size: 150%; + color: $background-color; + } } }